From 7bfe1fcadbcf0559b4f10df13b5d5c8898104206 Mon Sep 17 00:00:00 2001 From: AlexAlexandre Date: Wed, 14 Jul 2021 11:39:26 -0300 Subject: [PATCH 01/90] chore: setup initial libs for using typescript --- .eslintrc.js | 4 +- android/app/build.gradle | 2 +- package.json | 11 +- tsconfig.json | 72 +++++++ yarn.lock | 401 ++++++++++++++++++++++++++++++++++++++- 5 files changed, 485 insertions(+), 5 deletions(-) create mode 100644 tsconfig.json diff --git a/.eslintrc.js b/.eslintrc.js index 409efb70a7..ceb371ef3c 100644 --- a/.eslintrc.js +++ b/.eslintrc.js @@ -2,7 +2,7 @@ module.exports = { "settings": { "import/resolver": { "node": { - "extensions": [".js", ".ios.js", ".android.js", ".native.js", ".tsx"] + "extensions": [".js", ".ios.js", ".android.js", ".native.js", ".ts", ".tsx"], } } }, @@ -34,7 +34,7 @@ module.exports = { }, "rules": { "react/jsx-filename-extension": [1, { - "extensions": [".js", ".jsx"] + "extensions": [".js", ".jsx", ".ts", ".tsx"] }], "react/require-default-props": [0], "react/no-unused-prop-types": [2, { diff --git a/android/app/build.gradle b/android/app/build.gradle index 95628ac2fd..5112c16b14 100644 --- a/android/app/build.gradle +++ b/android/app/build.gradle @@ -25,7 +25,7 @@ import com.android.build.OutputFile * bundleAssetName: "index.android.bundle", * * // the entry file for bundle generation. If none specified and - * // "index.android.js" exists, it will be used. Otherwise "index.js" is + * // "index.android.js" exists, it will be used. Otherwise "index.tsx" is * // default. Can be overridden with ENTRY_FILE environment variable. * entryFile: "index.android.js", * diff --git a/package.json b/package.json index f338cbadbe..e60404c673 100644 --- a/package.json +++ b/package.json @@ -137,7 +137,15 @@ "@babel/runtime": "^7.8.4", "@storybook/addon-storyshots": "5.3.19", "@storybook/react-native": "5.3.19", + "@types/jest": "^26.0.24", + "@types/react": "^17.0.14", "@types/react-native": "^0.62.7", + "@types/react-native-config-reader": "^4.1.0", + "@types/react-native-platform-touchable": "^1.1.2", + "@types/react-redux": "^7.1.18", + "@types/react-test-renderer": "^17.0.1", + "@typescript-eslint/eslint-plugin": "^4.28.3", + "@typescript-eslint/parser": "^4.28.3", "axios": "^0.19.2", "babel-core": "^6.26.3", "babel-jest": "^25.1.0", @@ -162,7 +170,8 @@ "react-dom": "16.13.1", "react-test-renderer": "16.13.1", "reactotron-redux": "3.1.3", - "reactotron-redux-saga": "4.2.3" + "reactotron-redux-saga": "4.2.3", + "typescript": "^4.3.5" }, "jest": { "testPathIgnorePatterns": [ diff --git a/tsconfig.json b/tsconfig.json new file mode 100644 index 0000000000..2f3fbd9081 --- /dev/null +++ b/tsconfig.json @@ -0,0 +1,72 @@ +{ + "compilerOptions": { + /* Visit https://aka.ms/tsconfig.json to read more about this file */ + + /* Basic Options */ + // "incremental": true, /* Enable incremental compilation */ + "target": "esnext", /* Specify ECMAScript target version: 'ES3' (default), 'ES5', 'ES2015', 'ES2016', 'ES2017', 'ES2018', 'ES2019', 'ES2020', 'ES2021', or 'ESNEXT'. */ + "module": "commonjs", /* Specify module code generation: 'none', 'commonjs', 'amd', 'system', 'umd', 'es2015', 'es2020', or 'ESNext'. */ + // "lib": [], /* Specify library files to be included in the compilation. */ + "allowJs": true, /* Allow javascript files to be compiled. */ + // "checkJs": true, /* Report errors in .js files. */ + "jsx": "react-native", /* Specify JSX code generation: 'preserve', 'react-native', 'react', 'react-jsx' or 'react-jsxdev'. */ + // "declaration": true, /* Generates corresponding '.d.ts' file. */ + // "declarationMap": true, /* Generates a sourcemap for each corresponding '.d.ts' file. */ + // "sourceMap": true, /* Generates corresponding '.map' file. */ + // "outFile": "./", /* Concatenate and emit output to single file. */ + // "outDir": "./", /* Redirect output structure to the directory. */ + // "rootDir": "./", /* Specify the root directory of input files. Use to control the output directory structure with --outDir. */ + // "composite": true, /* Enable project compilation */ + // "tsBuildInfoFile": "./", /* Specify file to store incremental compilation information */ + // "removeComments": true, /* Do not emit comments to output. */ + "noEmit": true, /* Do not emit outputs. */ + // "importHelpers": true, /* Import emit helpers from 'tslib'. */ + // "downlevelIteration": true, /* Provide full support for iterables in 'for-of', spread, and destructuring when targeting 'ES5' or 'ES3'. */ + // "isolatedModules": true, /* Transpile each file as a separate module (similar to 'ts.transpileModule'). */ + + /* Strict Type-Checking Options */ + "strict": true, /* Enable all strict type-checking options. */ + // "noImplicitAny": true, /* Raise error on expressions and declarations with an implied 'any' type. */ + // "strictNullChecks": true, /* Enable strict null checks. */ + // "strictFunctionTypes": true, /* Enable strict checking of function types. */ + // "strictBindCallApply": true, /* Enable strict 'bind', 'call', and 'apply' methods on functions. */ + // "strictPropertyInitialization": true, /* Enable strict checking of property initialization in classes. */ + // "noImplicitThis": true, /* Raise error on 'this' expressions with an implied 'any' type. */ + // "alwaysStrict": true, /* Parse in strict mode and emit "use strict" for each source file. */ + + /* Additional Checks */ + // "noUnusedLocals": true, /* Report errors on unused locals. */ + // "noUnusedParameters": true, /* Report errors on unused parameters. */ + // "noImplicitReturns": true, /* Report error when not all code paths in function return a value. */ + // "noFallthroughCasesInSwitch": true, /* Report errors for fallthrough cases in switch statement. */ + // "noUncheckedIndexedAccess": true, /* Include 'undefined' in index signature results */ + // "noImplicitOverride": true, /* Ensure overriding members in derived classes are marked with an 'override' modifier. */ + // "noPropertyAccessFromIndexSignature": true, /* Require undeclared properties from index signatures to use element accesses. */ + + /* Module Resolution Options */ + "moduleResolution": "node", /* Specify module resolution strategy: 'node' (Node.js) or 'classic' (TypeScript pre-1.6). */ + "baseUrl": "app", /* Base directory to resolve non-absolute module names. */ + // "paths": {}, /* A series of entries which re-map imports to lookup locations relative to the 'baseUrl'. */ + // "rootDirs": [], /* List of root folders whose combined content represents the structure of the project at runtime. */ + // "typeRoots": [], /* List of folders to include type definitions from. */ + // "types": [], /* Type declaration files to be included in compilation. */ + "allowSyntheticDefaultImports": true, /* Allow default imports from modules with no default export. This does not affect code emit, just typechecking. */ + "esModuleInterop": true, /* Enables emit interoperability between CommonJS and ES Modules via creation of namespace objects for all imports. Implies 'allowSyntheticDefaultImports'. */ + // "preserveSymlinks": true, /* Do not resolve the real path of symlinks. */ + // "allowUmdGlobalAccess": true, /* Allow accessing UMD globals from modules. */ + + /* Source Map Options */ + // "sourceRoot": "", /* Specify the location where debugger should locate TypeScript files instead of source locations. */ + // "mapRoot": "", /* Specify the location where debugger should locate map files instead of generated locations. */ + // "inlineSourceMap": true, /* Emit a single file with source maps instead of having a separate file. */ + // "inlineSources": true, /* Emit the source alongside the sourcemaps within a single file; requires '--inlineSourceMap' or '--sourceMap' to be set. */ + + /* Experimental Options */ + // "experimentalDecorators": true, /* Enables experimental support for ES7 decorators. */ + // "emitDecoratorMetadata": true, /* Enables experimental support for emitting type metadata for decorators. */ + + /* Advanced Options */ + "skipLibCheck": true, /* Skip type checking of declaration files. */ + "forceConsistentCasingInFileNames": true /* Disallow inconsistently-cased references to the same file. */ + } +} diff --git a/yarn.lock b/yarn.lock index 0fc1c6c53d..31a4ad7a50 100644 --- a/yarn.lock +++ b/yarn.lock @@ -1630,6 +1630,17 @@ "@types/yargs" "^15.0.0" chalk "^3.0.0" +"@jest/types@^26.6.2": + version "26.6.2" + resolved "https://registry.yarnpkg.com/@jest/types/-/types-26.6.2.tgz#bef5a532030e1d88a2f5a6d933f84e97226ed48e" + integrity sha512-fC6QCp7Sc5sX6g8Tvbmj4XUTbyrik0akgRy03yjXbQaBWWNWGE7SGtJk98m0N8nzegD/7SggrUlivxo5ax4KWQ== + dependencies: + "@types/istanbul-lib-coverage" "^2.0.0" + "@types/istanbul-reports" "^3.0.0" + "@types/node" "*" + "@types/yargs" "^15.0.0" + chalk "^4.0.0" + "@jimp/bmp@^0.14.0": version "0.14.0" resolved "https://registry.yarnpkg.com/@jimp/bmp/-/bmp-0.14.0.tgz#6df246026554f276f7b354047c6fff9f5b2b5182" @@ -1928,11 +1939,32 @@ call-me-maybe "^1.0.1" glob-to-regexp "^0.3.0" +"@nodelib/fs.scandir@2.1.5": + version "2.1.5" + resolved "https://registry.yarnpkg.com/@nodelib/fs.scandir/-/fs.scandir-2.1.5.tgz#7619c2eb21b25483f6d167548b4cfd5a7488c3d5" + integrity sha512-vq24Bq3ym5HEQm2NKCr3yXDwjc7vTsEThRDnkp2DK9p1uqLR+DHurm/NOTo0KG7HYHU7eppKZj3MyqYuMBf62g== + dependencies: + "@nodelib/fs.stat" "2.0.5" + run-parallel "^1.1.9" + +"@nodelib/fs.stat@2.0.5", "@nodelib/fs.stat@^2.0.2": + version "2.0.5" + resolved "https://registry.yarnpkg.com/@nodelib/fs.stat/-/fs.stat-2.0.5.tgz#5bd262af94e9d25bd1e71b05deed44876a222e8b" + integrity sha512-RkhPPp2zrqDAQA/2jNhnztcPAlv64XdhIp7a7454A5ovI7Bukxgt7MX7udwAu3zg1DcpPU0rz3VV1SeaqvY4+A== + "@nodelib/fs.stat@^1.1.2": version "1.1.3" resolved "https://registry.yarnpkg.com/@nodelib/fs.stat/-/fs.stat-1.1.3.tgz#2b5a3ab3f918cca48a8c754c08168e3f03eba61b" integrity sha512-shAmDyaQC4H92APFoIaVDHCx5bStIocgvbwQyxPRrbUY20V1EYTbSDchWbuwlMG3V17cprZhA6+78JfB+3DTPw== +"@nodelib/fs.walk@^1.2.3": + version "1.2.8" + resolved "https://registry.yarnpkg.com/@nodelib/fs.walk/-/fs.walk-1.2.8.tgz#e95737e8bb6746ddedf69c556953494f196fe69a" + integrity sha512-oGB+UxlgWcgQkgwo8GcEGwemoTFt3FIO9ababBmaGwXIoBKZ+GTy0pP185beGg7Llih/NSHSV2XAs1lnznocSg== + dependencies: + "@nodelib/fs.scandir" "2.1.5" + fastq "^1.6.0" + "@nozbe/sqlite@3.31.1": version "3.31.1" resolved "https://registry.yarnpkg.com/@nozbe/sqlite/-/sqlite-3.31.1.tgz#ffd394ad7c188c6b73f89fd6e1ccb849a1b96dba" @@ -2712,6 +2744,14 @@ resolved "https://registry.yarnpkg.com/@types/history/-/history-4.7.6.tgz#ed8fc802c45b8e8f54419c2d054e55c9ea344356" integrity sha512-GRTZLeLJ8ia00ZH8mxMO8t0aC9M1N9bN461Z2eaRurJo6Fpa+utgCwLzI4jQHcrdzuzp5WPN9jRwpsCQ1VhJ5w== +"@types/hoist-non-react-statics@^3.3.0": + version "3.3.1" + resolved "https://registry.yarnpkg.com/@types/hoist-non-react-statics/-/hoist-non-react-statics-3.3.1.tgz#1124aafe5118cb591977aeb1ceaaed1070eb039f" + integrity sha512-iMIqiko6ooLrTh1joXodJK5X9xeEALT1kM5G3ZLhD3hszxBdIEd5C75U834D9mLcINgD4OyZf5uQXjkuYydWvA== + dependencies: + "@types/react" "*" + hoist-non-react-statics "^3.3.0" + "@types/html-minifier-terser@^5.0.0": version "5.1.0" resolved "https://registry.yarnpkg.com/@types/html-minifier-terser/-/html-minifier-terser-5.1.0.tgz#551a4589b6ee2cc9c1dff08056128aec29b94880" @@ -2747,6 +2787,13 @@ "@types/istanbul-lib-coverage" "*" "@types/istanbul-lib-report" "*" +"@types/istanbul-reports@^3.0.0": + version "3.0.1" + resolved "https://registry.yarnpkg.com/@types/istanbul-reports/-/istanbul-reports-3.0.1.tgz#9153fe98bba2bd565a63add9436d6f0d7f8468ff" + integrity sha512-c3mAZEuK0lvBp8tmuL74XRKn1+y2dcwOUpH7x4WrF6gk1GIgiluDRgMYQtw2OFcBvAJWlt6ASU3tSqxp0Uu0Aw== + dependencies: + "@types/istanbul-lib-report" "*" + "@types/jest-specific-snapshot@^0.5.3": version "0.5.4" resolved "https://registry.yarnpkg.com/@types/jest-specific-snapshot/-/jest-specific-snapshot-0.5.4.tgz#997364c39a59ddeff0ee790a19415e79dd061d1e" @@ -2769,6 +2816,19 @@ dependencies: jest-diff "^24.3.0" +"@types/jest@^26.0.24": + version "26.0.24" + resolved "https://registry.yarnpkg.com/@types/jest/-/jest-26.0.24.tgz#943d11976b16739185913a1936e0de0c4a7d595a" + integrity sha512-E/X5Vib8BWqZNRlDxj9vYXhsDwPYbPINqKF9BsnSoon4RQ0D9moEuLD8txgyypFLH7J4+Lho9Nr/c8H0Fi+17w== + dependencies: + jest-diff "^26.0.0" + pretty-format "^26.0.0" + +"@types/json-schema@^7.0.7": + version "7.0.8" + resolved "https://registry.yarnpkg.com/@types/json-schema/-/json-schema-7.0.8.tgz#edf1bf1dbf4e04413ca8e5b17b3b7d7d54b59818" + integrity sha512-YSBPTLTVm2e2OoQIDYx8HaeWJ5tTToLH67kXR7zYNGupXMEHa2++G8k+DczX2cFVgalypqtyZIcU19AFcmOpmg== + "@types/json5@^0.0.29": version "0.0.29" resolved "https://registry.yarnpkg.com/@types/json5/-/json5-0.0.29.tgz#ee28707ae94e11d2b827bcbe5270bcea7f3e71ee" @@ -2817,6 +2877,26 @@ "@types/history" "*" "@types/react" "*" +"@types/react-native-config-reader@^4.1.0": + version "4.1.0" + resolved "https://registry.yarnpkg.com/@types/react-native-config-reader/-/react-native-config-reader-4.1.0.tgz#33066cd0452b86b605b41bed47b38470dd85d428" + integrity sha512-meRB7e21CUmeS+so51CthLRQxZBymHZoDpq3UaDQHP9ucYbdeA7E0WFoI9vQE1h6kX3Mau3wyU2wQTZiD2674Q== + +"@types/react-native-platform-touchable@^1.1.2": + version "1.1.2" + resolved "https://registry.yarnpkg.com/@types/react-native-platform-touchable/-/react-native-platform-touchable-1.1.2.tgz#c0060f679ffe2ff96960cfde8b60c0fe87168ebf" + integrity sha512-nRA5GuDdG1e2I3f5Ukwdlbw1d0H2GbBU+j0H16/cNelVYPz3zLoxcCHhkNdZ9Wr8LVgVcvqK7vKXG+mzepvpMw== + dependencies: + "@types/react" "*" + "@types/react-native" "*" + +"@types/react-native@*": + version "0.64.12" + resolved "https://registry.yarnpkg.com/@types/react-native/-/react-native-0.64.12.tgz#1c6a3226c26d7a5949cdf8878e6cfe95fe0951d6" + integrity sha512-sw6WGSaL219zqrgdb4kQUtFB9iGXC/LmecLZ+UUWEgwYvD0YH81FqWYmONa2HuTkOFAsxu2bK4DspkWRUHIABQ== + dependencies: + "@types/react" "*" + "@types/react-native@^0.62.7": version "0.62.10" resolved "https://registry.yarnpkg.com/@types/react-native/-/react-native-0.62.10.tgz#82c481df21db4e7460755dc3fc7091e333a1d2bd" @@ -2824,6 +2904,16 @@ dependencies: "@types/react" "*" +"@types/react-redux@^7.1.18": + version "7.1.18" + resolved "https://registry.yarnpkg.com/@types/react-redux/-/react-redux-7.1.18.tgz#2bf8fd56ebaae679a90ebffe48ff73717c438e04" + integrity sha512-9iwAsPyJ9DLTRH+OFeIrm9cAbIj1i2ANL3sKQFATqnPWRbg+jEFXyZOKHiQK/N86pNRXbb4HRxAxo0SIX1XwzQ== + dependencies: + "@types/hoist-non-react-statics" "^3.3.0" + "@types/react" "*" + hoist-non-react-statics "^3.3.0" + redux "^4.0.0" + "@types/react-syntax-highlighter@11.0.4": version "11.0.4" resolved "https://registry.yarnpkg.com/@types/react-syntax-highlighter/-/react-syntax-highlighter-11.0.4.tgz#d86d17697db62f98046874f62fdb3e53a0bbc4cd" @@ -2831,6 +2921,13 @@ dependencies: "@types/react" "*" +"@types/react-test-renderer@^17.0.1": + version "17.0.1" + resolved "https://registry.yarnpkg.com/@types/react-test-renderer/-/react-test-renderer-17.0.1.tgz#3120f7d1c157fba9df0118dae20cb0297ee0e06b" + integrity sha512-3Fi2O6Zzq/f3QR9dRnlnHso9bMl7weKCviFmfF6B4LS1Uat6Hkm15k0ZAQuDz+UBq6B3+g+NM6IT2nr5QgPzCw== + dependencies: + "@types/react" "*" + "@types/react-textarea-autosize@^4.3.3": version "4.3.5" resolved "https://registry.yarnpkg.com/@types/react-textarea-autosize/-/react-textarea-autosize-4.3.5.tgz#6c4d2753fa1864c98c0b2b517f67bb1f6e4c46de" @@ -2846,6 +2943,20 @@ "@types/prop-types" "*" csstype "^2.2.0" +"@types/react@^17.0.14": + version "17.0.14" + resolved "https://registry.yarnpkg.com/@types/react/-/react-17.0.14.tgz#f0629761ca02945c4e8fea99b8177f4c5c61fb0f" + integrity sha512-0WwKHUbWuQWOce61UexYuWTGuGY/8JvtUe/dtQ6lR4sZ3UiylHotJeWpf3ArP9+DSGUoLY3wbU59VyMrJps5VQ== + dependencies: + "@types/prop-types" "*" + "@types/scheduler" "*" + csstype "^3.0.2" + +"@types/scheduler@*": + version "0.16.2" + resolved "https://registry.yarnpkg.com/@types/scheduler/-/scheduler-0.16.2.tgz#1a62f89525723dde24ba1b01b092bf5df8ad4d39" + integrity sha512-hppQEBDmlwhFAXKJX2KnWLYu5yMfi91yazPb2l+lbJiwW+wdo1gNeRA+3RgNSO39WYX2euey41KEwnqesU2Jew== + "@types/source-list-map@*": version "0.1.2" resolved "https://registry.yarnpkg.com/@types/source-list-map/-/source-list-map-0.1.2.tgz#0078836063ffaf17412349bba364087e0ac02ec9" @@ -2920,6 +3031,75 @@ dependencies: "@types/yargs-parser" "*" +"@typescript-eslint/eslint-plugin@^4.28.3": + version "4.28.3" + resolved "https://registry.yarnpkg.com/@typescript-eslint/eslint-plugin/-/eslint-plugin-4.28.3.tgz#36cdcd9ca6f9e5cb49b9f61b970b1976708d084b" + integrity sha512-jW8sEFu1ZeaV8xzwsfi6Vgtty2jf7/lJmQmDkDruBjYAbx5DA8JtbcMnP0rNPUG+oH5GoQBTSp+9613BzuIpYg== + dependencies: + "@typescript-eslint/experimental-utils" "4.28.3" + "@typescript-eslint/scope-manager" "4.28.3" + debug "^4.3.1" + functional-red-black-tree "^1.0.1" + regexpp "^3.1.0" + semver "^7.3.5" + tsutils "^3.21.0" + +"@typescript-eslint/experimental-utils@4.28.3": + version "4.28.3" + resolved "https://registry.yarnpkg.com/@typescript-eslint/experimental-utils/-/experimental-utils-4.28.3.tgz#976f8c1191b37105fd06658ed57ddfee4be361ca" + integrity sha512-zZYl9TnrxwEPi3FbyeX0ZnE8Hp7j3OCR+ELoUfbwGHGxWnHg9+OqSmkw2MoCVpZksPCZYpQzC559Ee9pJNHTQw== + dependencies: + "@types/json-schema" "^7.0.7" + "@typescript-eslint/scope-manager" "4.28.3" + "@typescript-eslint/types" "4.28.3" + "@typescript-eslint/typescript-estree" "4.28.3" + eslint-scope "^5.1.1" + eslint-utils "^3.0.0" + +"@typescript-eslint/parser@^4.28.3": + version "4.28.3" + resolved "https://registry.yarnpkg.com/@typescript-eslint/parser/-/parser-4.28.3.tgz#95f1d475c08268edffdcb2779993c488b6434b44" + integrity sha512-ZyWEn34bJexn/JNYvLQab0Mo5e+qqQNhknxmc8azgNd4XqspVYR5oHq9O11fLwdZMRcj4by15ghSlIEq+H5ltQ== + dependencies: + "@typescript-eslint/scope-manager" "4.28.3" + "@typescript-eslint/types" "4.28.3" + "@typescript-eslint/typescript-estree" "4.28.3" + debug "^4.3.1" + +"@typescript-eslint/scope-manager@4.28.3": + version "4.28.3" + resolved "https://registry.yarnpkg.com/@typescript-eslint/scope-manager/-/scope-manager-4.28.3.tgz#c32ad4491b3726db1ba34030b59ea922c214e371" + integrity sha512-/8lMisZ5NGIzGtJB+QizQ5eX4Xd8uxedFfMBXOKuJGP0oaBBVEMbJVddQKDXyyB0bPlmt8i6bHV89KbwOelJiQ== + dependencies: + "@typescript-eslint/types" "4.28.3" + "@typescript-eslint/visitor-keys" "4.28.3" + +"@typescript-eslint/types@4.28.3": + version "4.28.3" + resolved "https://registry.yarnpkg.com/@typescript-eslint/types/-/types-4.28.3.tgz#8fffd436a3bada422c2c1da56060a0566a9506c7" + integrity sha512-kQFaEsQBQVtA9VGVyciyTbIg7S3WoKHNuOp/UF5RG40900KtGqfoiETWD/v0lzRXc+euVE9NXmfer9dLkUJrkA== + +"@typescript-eslint/typescript-estree@4.28.3": + version "4.28.3" + resolved "https://registry.yarnpkg.com/@typescript-eslint/typescript-estree/-/typescript-estree-4.28.3.tgz#253d7088100b2a38aefe3c8dd7bd1f8232ec46fb" + integrity sha512-YAb1JED41kJsqCQt1NcnX5ZdTA93vKFCMP4lQYG6CFxd0VzDJcKttRlMrlG+1qiWAw8+zowmHU1H0OzjWJzR2w== + dependencies: + "@typescript-eslint/types" "4.28.3" + "@typescript-eslint/visitor-keys" "4.28.3" + debug "^4.3.1" + globby "^11.0.3" + is-glob "^4.0.1" + semver "^7.3.5" + tsutils "^3.21.0" + +"@typescript-eslint/visitor-keys@4.28.3": + version "4.28.3" + resolved "https://registry.yarnpkg.com/@typescript-eslint/visitor-keys/-/visitor-keys-4.28.3.tgz#26ac91e84b23529968361045829da80a4e5251c4" + integrity sha512-ri1OzcLnk1HH4gORmr1dllxDzzrN6goUIz/P4MHFV0YZJDCADPR3RvYNp0PW2SetKTThar6wlbFTL00hV2Q+fg== + dependencies: + "@typescript-eslint/types" "4.28.3" + eslint-visitor-keys "^2.0.0" + "@unimodules/core@~5.3.0": version "5.3.0" resolved "https://registry.yarnpkg.com/@unimodules/core/-/core-5.3.0.tgz#c425e59b1f9c1e2c91b235b6192e5f622a47d833" @@ -3519,6 +3699,11 @@ array-union@^1.0.1: dependencies: array-uniq "^1.0.1" +array-union@^2.1.0: + version "2.1.0" + resolved "https://registry.yarnpkg.com/array-union/-/array-union-2.1.0.tgz#b798420adbeb1de828d84acd8a2e23d3efe85e8d" + integrity sha512-HGyxoOTYUyCM6stUe6EJgnd4EoewAI7zMdfqO+kGjnlZmBDz/cR5pf8r/cR4Wq60sL/p0IkcjUEEPwS3GFrIyw== + array-uniq@^1.0.1: version "1.0.3" resolved "https://registry.yarnpkg.com/array-uniq/-/array-uniq-1.0.3.tgz#af6ac877a25cc7f74e058894753858dfdb24fdb6" @@ -4836,6 +5021,14 @@ chalk@^3.0.0: ansi-styles "^4.1.0" supports-color "^7.1.0" +chalk@^4.0.0: + version "4.1.1" + resolved "https://registry.yarnpkg.com/chalk/-/chalk-4.1.1.tgz#c80b3fab28bf6371e6863325eee67e618b77e6ad" + integrity sha512-diHzdDKxcU+bAsUboHLPEDQiw0qEe0qd7SYUn3HgcFlWgbDcfLGswOHYeGrHKzG9z6UYf01d9VFMfZxPM1xZSg== + dependencies: + ansi-styles "^4.1.0" + supports-color "^7.1.0" + character-entities-legacy@^1.0.0: version "1.1.4" resolved "https://registry.yarnpkg.com/character-entities-legacy/-/character-entities-legacy-1.1.4.tgz#94bc1845dce70a5bb9d2ecc748725661293d8fc1" @@ -5662,6 +5855,11 @@ csstype@^2.2.0, csstype@^2.5.7: resolved "https://registry.yarnpkg.com/csstype/-/csstype-2.6.10.tgz#e63af50e66d7c266edb6b32909cfd0aabe03928b" integrity sha512-D34BqZU4cIlMCY93rZHbrq9pjTAQJ3U8S8rfBqjwHxkGPThWFjzZDQpgMJY0QViLxth6ZKYiwFBo14RdN44U/w== +csstype@^3.0.2: + version "3.0.8" + resolved "https://registry.yarnpkg.com/csstype/-/csstype-3.0.8.tgz#d2266a792729fb227cd216fb572f43728e1ad340" + integrity sha512-jXKhWqXPmlUeoQnF/EhTtTl4C9SnrxSH/jZUih3jmO6lBKr99rP3/+FmrMj4EFpOXzMtXHAZkd3x0E6h6Fgflw== + currently-unhandled@^0.4.1: version "0.4.1" resolved "https://registry.yarnpkg.com/currently-unhandled/-/currently-unhandled-0.4.1.tgz#988df33feab191ef799a61369dd76c17adf957ea" @@ -5728,6 +5926,13 @@ debug@=3.1.0: dependencies: ms "2.0.0" +debug@^4.3.1: + version "4.3.2" + resolved "https://registry.yarnpkg.com/debug/-/debug-4.3.2.tgz#f0a49c18ac8779e31d4a0c6029dfb76873c7428b" + integrity sha512-mOp8wKcvj7XxC78zLgw/ZA+6TSgkoE2C/ienthhRD298T7UNwAg9diBpLRxC0mOezLl4B0xV7M0cCO6P/O0Xhw== + dependencies: + ms "2.1.2" + decamelize@^1.1.1, decamelize@^1.1.2, decamelize@^1.2.0: version "1.2.0" resolved "https://registry.yarnpkg.com/decamelize/-/decamelize-1.2.0.tgz#f6534d15148269b20352e7bee26f501f9a191290" @@ -5963,6 +6168,11 @@ diff-sequences@^25.2.6: resolved "https://registry.yarnpkg.com/diff-sequences/-/diff-sequences-25.2.6.tgz#5f467c00edd35352b7bca46d7927d60e687a76dd" integrity sha512-Hq8o7+6GaZeoFjtpgvRBUknSXNeJiCx7V9Fr94ZMljNiCr9n9L8H8aJqgWOQiDDGdyn29fRNcDdRVJ5fdyihfg== +diff-sequences@^26.6.2: + version "26.6.2" + resolved "https://registry.yarnpkg.com/diff-sequences/-/diff-sequences-26.6.2.tgz#48ba99157de1923412eed41db6b6d4aa9ca7c0b1" + integrity sha512-Mv/TDa3nZ9sbc5soK+OoA74BsS3mL37yixCvUAQkiuA4Wz6YtwP/K47n2rv2ovzHZvoiQeA5FTQOschKkEwB0Q== + diff@3.5.0, diff@^3.2.0: version "3.5.0" resolved "https://registry.yarnpkg.com/diff/-/diff-3.5.0.tgz#800c0dd1e0a8bfbc95835c202ad220fe317e5a12" @@ -5985,6 +6195,13 @@ dir-glob@2.0.0: arrify "^1.0.1" path-type "^3.0.0" +dir-glob@^3.0.1: + version "3.0.1" + resolved "https://registry.yarnpkg.com/dir-glob/-/dir-glob-3.0.1.tgz#56dbf73d992a4a93ba1584f4534063fd2e41717f" + integrity sha512-WkrWp9GR4KXfKGYzOLmTuGVi1UWFfws377n9cc55/tb6DuqyF6pcQ5AbiHEshaDpY9v6oaSr2XCDidGmMwdzIA== + dependencies: + path-type "^4.0.0" + doctrine@1.5.0: version "1.5.0" resolved "https://registry.yarnpkg.com/doctrine/-/doctrine-1.5.0.tgz#379dce730f6166f76cefa4e6707a159b02c5a6fa" @@ -6521,6 +6738,14 @@ eslint-scope@^5.0.0: esrecurse "^4.1.0" estraverse "^4.1.1" +eslint-scope@^5.1.1: + version "5.1.1" + resolved "https://registry.yarnpkg.com/eslint-scope/-/eslint-scope-5.1.1.tgz#e786e59a66cb92b3f6c1fb0d508aab174848f48c" + integrity sha512-2NxwbF/hZ0KpepYN0cNbo+FN6XoK7GaHlQhgx/hIZl6Va0bF45RQOOwhLIy8lQDbuCiadSLCBnH2CFYquit5bw== + dependencies: + esrecurse "^4.3.0" + estraverse "^4.1.1" + eslint-utils@^1.4.3: version "1.4.3" resolved "https://registry.yarnpkg.com/eslint-utils/-/eslint-utils-1.4.3.tgz#74fec7c54d0776b6f67e0251040b5806564e981f" @@ -6528,6 +6753,13 @@ eslint-utils@^1.4.3: dependencies: eslint-visitor-keys "^1.1.0" +eslint-utils@^3.0.0: + version "3.0.0" + resolved "https://registry.yarnpkg.com/eslint-utils/-/eslint-utils-3.0.0.tgz#8aebaface7345bb33559db0a1f13a1d2d48c3672" + integrity sha512-uuQC43IGctw68pJA1RgbQS8/NP7rch6Cwd4j3ZBtgo4/8Flj4eGE7ZYSZRN3iq5pVUv6GPdW5Z1RFleo84uLDA== + dependencies: + eslint-visitor-keys "^2.0.0" + eslint-visitor-keys@^1.1.0: version "1.1.0" resolved "https://registry.yarnpkg.com/eslint-visitor-keys/-/eslint-visitor-keys-1.1.0.tgz#e2a82cea84ff246ad6fb57f9bde5b46621459ec2" @@ -6538,6 +6770,11 @@ eslint-visitor-keys@^1.3.0: resolved "https://registry.yarnpkg.com/eslint-visitor-keys/-/eslint-visitor-keys-1.3.0.tgz#30ebd1ef7c2fdff01c3a4f151044af25fab0523e" integrity sha512-6J72N8UNa462wa/KFODt/PJ3IU60SDpC3QXC1Hjc1BXXpfL2C9R5+AU7jhe0F6GREqVMh4Juu+NY7xn+6dipUQ== +eslint-visitor-keys@^2.0.0: + version "2.1.0" + resolved "https://registry.yarnpkg.com/eslint-visitor-keys/-/eslint-visitor-keys-2.1.0.tgz#f65328259305927392c938ed44eb0a5c9b2bd303" + integrity sha512-0rSmRBzXgDzIsD6mGdJgevzgezI534Cer5L/vyMX0kHzT/jiB43jRhd9YUlMGYLQy2zprNmoT8qasCGtY+QaKw== + eslint@6.8.0: version "6.8.0" resolved "https://registry.yarnpkg.com/eslint/-/eslint-6.8.0.tgz#62262d6729739f9275723824302fb227c8c93ffb" @@ -6609,6 +6846,13 @@ esrecurse@^4.1.0: dependencies: estraverse "^4.1.0" +esrecurse@^4.3.0: + version "4.3.0" + resolved "https://registry.yarnpkg.com/esrecurse/-/esrecurse-4.3.0.tgz#7ad7964d679abb28bee72cec63758b1c5d2c9921" + integrity sha512-KmfKL3b6G+RXvP8N1vr3Tq1kL/oCFgn2NYXEtqP8/L3pKapUA4G8cFVaoF3SU323CD4XypR/ffioHmkti6/Tag== + dependencies: + estraverse "^5.2.0" + estraverse@^4.1.0, estraverse@^4.1.1, estraverse@^4.2.0: version "4.3.0" resolved "https://registry.yarnpkg.com/estraverse/-/estraverse-4.3.0.tgz#398ad3f3c5a24948be7725e83d11a7de28cdbd1d" @@ -6619,6 +6863,11 @@ estraverse@^5.1.0: resolved "https://registry.yarnpkg.com/estraverse/-/estraverse-5.1.0.tgz#374309d39fd935ae500e7b92e8a6b4c720e59642" integrity sha512-FyohXK+R0vE+y1nHLoBM7ZTyqRpqAlhdZHCWIWEviFLiGB8b04H6bQs8G+XTthacvT8VuwvteiP7RJSxMs8UEw== +estraverse@^5.2.0: + version "5.2.0" + resolved "https://registry.yarnpkg.com/estraverse/-/estraverse-5.2.0.tgz#307df42547e6cc7324d3cf03c155d5cdb8c53880" + integrity sha512-BxbNGGNm0RyRYvUdHpIwv9IWzeM9XClbOxwoATuFdOE7ZE6wHL+HQ5T8hoPM+zHvmKzzsEqhgy0GrQ5X13afiQ== + esutils@^2.0.2: version "2.0.3" resolved "https://registry.yarnpkg.com/esutils/-/esutils-2.0.3.tgz#74d2eb4de0b8da1293711910d50775b9b710ef64" @@ -7023,6 +7272,17 @@ fast-glob@^2.0.2: merge2 "^1.2.3" micromatch "^3.1.10" +fast-glob@^3.1.1: + version "3.2.7" + resolved "https://registry.yarnpkg.com/fast-glob/-/fast-glob-3.2.7.tgz#fd6cb7a2d7e9aa7a7846111e85a196d6b2f766a1" + integrity sha512-rYGMRwip6lUMvYD3BTScMwT1HtAs2d71SMv66Vrxs0IekGZEjhM0pcMfjQPnknBt2zeCwQMEupiN02ZP4DiT1Q== + dependencies: + "@nodelib/fs.stat" "^2.0.2" + "@nodelib/fs.walk" "^1.2.3" + glob-parent "^5.1.2" + merge2 "^1.3.0" + micromatch "^4.0.4" + fast-json-stable-stringify@^2.0.0: version "2.1.0" resolved "https://registry.yarnpkg.com/fast-json-stable-stringify/-/fast-json-stable-stringify-2.1.0.tgz#874bf69c6f404c2b5d99c481341399fd55892633" @@ -7033,6 +7293,13 @@ fast-levenshtein@~2.0.6: resolved "https://registry.yarnpkg.com/fast-levenshtein/-/fast-levenshtein-2.0.6.tgz#3d8a5c66883a16a30ca8643e851f19baa7797917" integrity sha1-PYpcZog6FqMMqGQ+hR8Zuqd5eRc= +fastq@^1.6.0: + version "1.11.1" + resolved "https://registry.yarnpkg.com/fastq/-/fastq-1.11.1.tgz#5d8175aae17db61947f8b162cfc7f63264d22807" + integrity sha512-HOnr8Mc60eNYl1gzwp6r5RoUyAn5/glBolUzP/Ez6IFVPMPirxn/9phgL6zhOtaTy7ISwPvQ+wT+hfcRZh/bzw== + dependencies: + reusify "^1.0.4" + fault@^1.0.2: version "1.0.4" resolved "https://registry.yarnpkg.com/fault/-/fault-1.0.4.tgz#eafcfc0a6d214fc94601e170df29954a4f842f13" @@ -7665,6 +7932,13 @@ glob-parent@^5.0.0, glob-parent@~5.1.0: dependencies: is-glob "^4.0.1" +glob-parent@^5.1.2: + version "5.1.2" + resolved "https://registry.yarnpkg.com/glob-parent/-/glob-parent-5.1.2.tgz#869832c58034fe68a4093c17dc15e8340d8401c4" + integrity sha512-AOIgSQCepiJYwP3ARnGx+5VnTu2HBYdzbGP45eLw1vr3zB3vZLeyed1sC9hnbcOc9/SrMyM5RPQrkGz4aS9Zow== + dependencies: + is-glob "^4.0.1" + glob-to-regexp@^0.3.0: version "0.3.0" resolved "https://registry.yarnpkg.com/glob-to-regexp/-/glob-to-regexp-0.3.0.tgz#8c5a1494d2066c570cc3bfe4496175acc4d502ab" @@ -7786,6 +8060,18 @@ globby@8.0.2: pify "^3.0.0" slash "^1.0.0" +globby@^11.0.3: + version "11.0.4" + resolved "https://registry.yarnpkg.com/globby/-/globby-11.0.4.tgz#2cbaff77c2f2a62e71e9b2813a67b97a3a3001a5" + integrity sha512-9O4MVG9ioZJ08ffbcyVYyLOJLk5JQ688pJ4eMGLpdWLHq/Wr1D9BlriLQyL0E+jbkuePVZXYFj47QM/v093wHg== + dependencies: + array-union "^2.1.0" + dir-glob "^3.0.1" + fast-glob "^3.1.1" + ignore "^5.1.4" + merge2 "^1.3.0" + slash "^3.0.0" + good-listener@^1.2.2: version "1.2.2" resolved "https://registry.yarnpkg.com/good-listener/-/good-listener-1.2.2.tgz#d53b30cdf9313dffb7dc9a0d477096aa6d145c50" @@ -8214,6 +8500,11 @@ ignore@^4.0.6: resolved "https://registry.yarnpkg.com/ignore/-/ignore-4.0.6.tgz#750e3db5862087b4737ebac8207ffd1ef27b25fc" integrity sha512-cyFDKrqc/YdcWFniJhzI42+AzS+gNwmUzOSFcRCQYwySuBBBy/KjuxWLZ/FHEH6Moq1NizMOBWyTcv8O4OZIMg== +ignore@^5.1.4: + version "5.1.8" + resolved "https://registry.yarnpkg.com/ignore/-/ignore-5.1.8.tgz#f150a8b50a34289b33e22f5889abd4d8016f0e57" + integrity sha512-BMpfD7PpiETpBl/A6S498BaIJ6Y/ABT93ETbby2fP00v4EbvPBXWEoaR1UBPKs3iR53pJY7EtZk5KACI57i1Uw== + image-q@^1.1.1: version "1.1.1" resolved "https://registry.yarnpkg.com/image-q/-/image-q-1.1.1.tgz#fc84099664460b90ca862d9300b6bfbbbfbf8056" @@ -9157,6 +9448,16 @@ jest-diff@^25.2.1, jest-diff@^25.5.0: jest-get-type "^25.2.6" pretty-format "^25.5.0" +jest-diff@^26.0.0: + version "26.6.2" + resolved "https://registry.yarnpkg.com/jest-diff/-/jest-diff-26.6.2.tgz#1aa7468b52c3a68d7d5c5fdcdfcd5e49bd164394" + integrity sha512-6m+9Z3Gv9wN0WFVasqjCL/06+EFCMTqDEUl/b87HYK2rAPTyfz4ZIuSlPhY51PIQRWx5TaxeF1qmXKe9gfN3sA== + dependencies: + chalk "^4.0.0" + diff-sequences "^26.6.2" + jest-get-type "^26.3.0" + pretty-format "^26.6.2" + jest-docblock@^23.2.0: version "23.2.0" resolved "https://registry.yarnpkg.com/jest-docblock/-/jest-docblock-23.2.0.tgz#f085e1f18548d99fdd69b20207e6fd55d91383a7" @@ -9246,6 +9547,11 @@ jest-get-type@^25.2.6: resolved "https://registry.yarnpkg.com/jest-get-type/-/jest-get-type-25.2.6.tgz#0b0a32fab8908b44d508be81681487dbabb8d877" integrity sha512-DxjtyzOHjObRM+sM1knti6or+eOgcGU4xVSb2HNP1TqO4ahsT+rqZg+nyqHWJSvWgKC5cG3QjGFBqxLghiF/Ig== +jest-get-type@^26.3.0: + version "26.3.0" + resolved "https://registry.yarnpkg.com/jest-get-type/-/jest-get-type-26.3.0.tgz#e97dc3c3f53c2b406ca7afaed4493b1d099199e0" + integrity sha512-TpfaviN1R2pQWkIihlfEanwOXK0zcxrKEE4MlU6Tn7keoXdN6/3gK/xl0yEh8DOunn5pOVGKf8hB4R9gVh04ig== + jest-haste-map@^23.6.0: version "23.6.0" resolved "https://registry.yarnpkg.com/jest-haste-map/-/jest-haste-map-23.6.0.tgz#2e3eb997814ca696d62afdb3f2529f5bbc935e16" @@ -10426,6 +10732,13 @@ lru-cache@^5.1.1: dependencies: yallist "^3.0.2" +lru-cache@^6.0.0: + version "6.0.0" + resolved "https://registry.yarnpkg.com/lru-cache/-/lru-cache-6.0.0.tgz#6d6fe6570ebd96aaf90fcad1dafa3b2566db3a94" + integrity sha512-Jo6dJ04CmSjuznwJSS3pUeWmd/H0ffTlkXXgwZi+eq1UCmqQwCh+eLsYOYCwY991i2Fah4h1BEMCx4qThGbsiA== + dependencies: + yallist "^4.0.0" + make-dir@^2.0.0, make-dir@^2.1.0: version "2.1.0" resolved "https://registry.yarnpkg.com/make-dir/-/make-dir-2.1.0.tgz#5f0310e18b8be898cc07009295a30ae41e91e6f5" @@ -10591,6 +10904,11 @@ merge2@^1.2.3: resolved "https://registry.yarnpkg.com/merge2/-/merge2-1.3.0.tgz#5b366ee83b2f1582c48f87e47cf1a9352103ca81" integrity sha512-2j4DAdlBOkiSZIsaXk4mTE3sRS02yBHAtfy127xRV3bQUFqXkjHCHLW6Scv7DwNRbIWNHH8zpnz9zMaKXIdvYw== +merge2@^1.3.0: + version "1.4.1" + resolved "https://registry.yarnpkg.com/merge2/-/merge2-1.4.1.tgz#4368892f885e907455a6fd7dc55c0c9d404990ae" + integrity sha512-8q7VEgMJW4J8tcfVPy8g09NcQwZdbwFEqhe/WZkoIzjn/3TGDwtOCYtXGxA3O8tPzpczCCDgv+P2P5y00ZJOOg== + merge@^1.2.0: version "1.2.1" resolved "https://registry.yarnpkg.com/merge/-/merge-1.2.1.tgz#38bebf80c3220a8a487b6fcfb3941bb11720c145" @@ -10974,6 +11292,14 @@ micromatch@^4.0.2: braces "^3.0.1" picomatch "^2.0.5" +micromatch@^4.0.4: + version "4.0.4" + resolved "https://registry.yarnpkg.com/micromatch/-/micromatch-4.0.4.tgz#896d519dfe9db25fce94ceb7a500919bf881ebf9" + integrity sha512-pRmzw/XUcwXGpD9aI9q/0XOwLNygjETJ8y0ao0wdqprrzDa4YnxLcz7fQRZr8voh8V10kGhABbNcHVk5wHgWwg== + dependencies: + braces "^3.0.1" + picomatch "^2.2.3" + miller-rabin@^4.0.0: version "4.0.1" resolved "https://registry.yarnpkg.com/miller-rabin/-/miller-rabin-4.0.1.tgz#f080351c865b0dc562a8462966daa53543c78a4d" @@ -11199,7 +11525,7 @@ ms@2.1.1: resolved "https://registry.yarnpkg.com/ms/-/ms-2.1.1.tgz#30a5864eb3ebb0a66f2ebe6d727af06a09d86e0a" integrity sha512-tgp+dl5cGk28utYktBsrFqA7HKgrhgPsg6Z/EfhWI4gl1Hwq8B/GmY/0oXZ6nF8hDVesS/FpnYaD/kOWhYQvyg== -ms@^2.1.1: +ms@2.1.2, ms@^2.1.1: version "2.1.2" resolved "https://registry.yarnpkg.com/ms/-/ms-2.1.2.tgz#d09d1f357b443f493382a8eb3ccd183872ae6009" integrity sha512-sGkPx+VjMtmA6MX27oA4FBFELFCZZ4S4XqeGOXCv68tT+jb3vk/RyaKWP0PTKyWtmLSM0b+adUTEvbs1PEaH2w== @@ -12105,6 +12431,11 @@ picomatch@^2.0.4, picomatch@^2.0.5, picomatch@^2.2.1: resolved "https://registry.yarnpkg.com/picomatch/-/picomatch-2.2.2.tgz#21f333e9b6b8eaff02468f5146ea406d345f4dad" integrity sha512-q0M/9eZHzmr0AulXyPwNfZjtwZ/RBZlbN3K3CErVrk50T2ASYI7Bye0EvekFY3IP1Nt2DHu0re+V2ZHIpMkuWg== +picomatch@^2.2.3: + version "2.3.0" + resolved "https://registry.yarnpkg.com/picomatch/-/picomatch-2.3.0.tgz#f1f061de8f6a4bf022892e2d128234fb98302972" + integrity sha512-lY1Q/PiJGC2zOv/z391WOTD+Z02bCgsFfvxoXXf6h7kv9o+WmsmzYqrAwY63sNgOxE4xEdq0WyUnXfKeBrSvYw== + pify@^2.0.0: version "2.3.0" resolved "https://registry.yarnpkg.com/pify/-/pify-2.3.0.tgz#ed141a6ac043a849ea588498e7dca8b15330e90c" @@ -12377,6 +12708,16 @@ pretty-format@^25.1.0, pretty-format@^25.2.0, pretty-format@^25.2.1, pretty-form ansi-styles "^4.0.0" react-is "^16.12.0" +pretty-format@^26.0.0, pretty-format@^26.6.2: + version "26.6.2" + resolved "https://registry.yarnpkg.com/pretty-format/-/pretty-format-26.6.2.tgz#e35c2705f14cb7fe2fe94fa078345b444120fc93" + integrity sha512-7AeGuCYNGmycyQbCqd/3PWH4eOoX/OiCa0uphp57NVTeAGdJGaAliecxwBDHYQCIvrW7aDBZCYeNTP/WX69mkg== + dependencies: + "@jest/types" "^26.6.2" + ansi-regex "^5.0.0" + ansi-styles "^4.0.0" + react-is "^17.0.1" + pretty-hrtime@^1.0.3: version "1.0.3" resolved "https://registry.yarnpkg.com/pretty-hrtime/-/pretty-hrtime-1.0.3.tgz#b7e3ea42435a4c9b2759d99e0f201eb195802ee1" @@ -12643,6 +12984,11 @@ querystringify@^2.1.1: resolved "https://registry.yarnpkg.com/querystringify/-/querystringify-2.1.1.tgz#60e5a5fd64a7f8bfa4d2ab2ed6fdf4c85bad154e" integrity sha512-w7fLxIRCRT7U8Qu53jQnJyPkYZIaR4n5151KMfcJlO/A9397Wxb1amJvROTK6TOnp7PfoAmg/qXiNHI+08jRfA== +queue-microtask@^1.2.2: + version "1.2.3" + resolved "https://registry.yarnpkg.com/queue-microtask/-/queue-microtask-1.2.3.tgz#4929228bbc724dfac43e0efb058caf7b6cfb6243" + integrity sha512-NuaNSa6flKT5JaSYQzJok04JzTL1CA6aGhv5rfLW3PgqA+M2ChpZQnAC8h8i4ZFkBS8X5RqkDBHA7r4hej3K9A== + rambdax@2.15.0: version "2.15.0" resolved "https://registry.yarnpkg.com/rambdax/-/rambdax-2.15.0.tgz#34fb481cea1a88e64a25e3a25e34a258fa18ca12" @@ -12824,6 +13170,11 @@ react-is@^16.12.0, react-is@^16.13.0, react-is@^16.7.0, react-is@^16.8.1, react- resolved "https://registry.yarnpkg.com/react-is/-/react-is-16.13.1.tgz#789729a4dc36de2999dc156dd6c1d9c18cea56a4" integrity sha512-24e6ynE2H+OKt4kqsOvNd8kBpV65zoxbA4BVsEOB3ARVWQki/DHzaUoC5KuON/BiccDaCCTZBuOcfZs70kR8bQ== +react-is@^17.0.1: + version "17.0.2" + resolved "https://registry.yarnpkg.com/react-is/-/react-is-17.0.2.tgz#e691d4a8e9c789365655539ab372762b0efb54f0" + integrity sha512-w2GsyukL62IJnlaff/nRegPQR94C/XXamvMWmSHRJ4y7Ts/4ocGRmTHvOs8PSE6pB3dWOrD/nueuU5sduBsQ4w== + react-lifecycles-compat@^3.0.4: version "3.0.4" resolved "https://registry.yarnpkg.com/react-lifecycles-compat/-/react-lifecycles-compat-3.0.4.tgz#4f1a273afdfc8f3488a8c516bfda78f872352362" @@ -13508,6 +13859,13 @@ redux@4.0.5, redux@^4.0.4: loose-envify "^1.4.0" symbol-observable "^1.2.0" +redux@^4.0.0: + version "4.1.0" + resolved "https://registry.yarnpkg.com/redux/-/redux-4.1.0.tgz#eb049679f2f523c379f1aff345c8612f294c88d4" + integrity sha512-uI2dQN43zqLWCt6B/BMGRMY6db7TTY4qeHHfGeKb3EOhmOKjU3KdWvNLJyqaHRksv/ErdNH7cFZWg9jXtewy4g== + dependencies: + "@babel/runtime" "^7.9.2" + refractor@^2.4.1: version "2.10.1" resolved "https://registry.yarnpkg.com/refractor/-/refractor-2.10.1.tgz#166c32f114ed16fd96190ad21d5193d3afc7d34e" @@ -13575,6 +13933,11 @@ regexpp@^2.0.1: resolved "https://registry.yarnpkg.com/regexpp/-/regexpp-2.0.1.tgz#8d19d31cf632482b589049f8281f93dbcba4d07f" integrity sha512-lv0M6+TkDVniA3aD1Eg0DVpfU/booSu7Eev3TDO/mZKHBfVjgCGTV4t4buppESEYDtkArYFOxTJWv6S5C+iaNw== +regexpp@^3.1.0: + version "3.2.0" + resolved "https://registry.yarnpkg.com/regexpp/-/regexpp-3.2.0.tgz#0425a2768d8f23bad70ca4b90461fa2f1213e1b2" + integrity sha512-pq2bWo9mVD43nbts2wGv17XLiNLya+GklZ8kaDLV2Z08gDCsGpnKn9BFMepvWuHCbyVvY7J5o5+BVvoQbmlJLg== + regexpu-core@^4.7.0: version "4.7.0" resolved "https://registry.yarnpkg.com/regexpu-core/-/regexpu-core-4.7.0.tgz#fcbf458c50431b0bb7b45d6967b8192d91f3d938" @@ -13786,6 +14149,11 @@ retry@^0.12.0: resolved "https://registry.yarnpkg.com/retry/-/retry-0.12.0.tgz#1b42a6266a21f07421d1b0b54b7dc167b01c013b" integrity sha1-G0KmJmoh8HQh0bC1S33BZ7AcATs= +reusify@^1.0.4: + version "1.0.4" + resolved "https://registry.yarnpkg.com/reusify/-/reusify-1.0.4.tgz#90da382b1e126efc02146e90845a88db12925d76" + integrity sha512-U9nH88a3fc/ekCF1l0/UP1IosiuIjyTh7hBvXVMHYgVcfGvt897Xguj2UOLDeI5BG2m7/uwyaLVT6fbtCwTyzw== + rimraf@2.6.3: version "2.6.3" resolved "https://registry.yarnpkg.com/rimraf/-/rimraf-2.6.3.tgz#b2d104fe0d8fb27cf9e0a1cda8262dd3833c6cab" @@ -13874,6 +14242,13 @@ run-parallel-limit@^1.0.5: resolved "https://registry.yarnpkg.com/run-parallel-limit/-/run-parallel-limit-1.0.5.tgz#c29a4fd17b4df358cb52a8a697811a63c984f1b7" integrity sha512-NsY+oDngvrvMxKB3G8ijBzIema6aYbQMD2bHOamvN52BysbIGTnEY2xsNyfrcr9GhY995/t/0nQN3R3oZvaDlg== +run-parallel@^1.1.9: + version "1.2.0" + resolved "https://registry.yarnpkg.com/run-parallel/-/run-parallel-1.2.0.tgz#66d1368da7bdf921eb9d95bd1a9229e7f21a43ee" + integrity sha512-5l4VyZR86LZ/lDxZTR6jqL8AFE2S0IFLMP26AbjsLVADxHdhB/c0GUsH+y39UfCi3dzz8OlQuPmnaJOMoDHQBA== + dependencies: + queue-microtask "^1.2.2" + run-queue@^1.0.0, run-queue@^1.0.3: version "1.0.3" resolved "https://registry.yarnpkg.com/run-queue/-/run-queue-1.0.3.tgz#e848396f057d223f24386924618e25694161ec47" @@ -14049,6 +14424,13 @@ semver@^6.0.0, semver@^6.1.2, semver@^6.2.0, semver@^6.3.0: resolved "https://registry.yarnpkg.com/semver/-/semver-6.3.0.tgz#ee0a64c8af5e8ceea67687b133761e1becbd1d3d" integrity sha512-b39TBaTSfV6yBrapU89p5fKekE2m/NwnDocOVruQFS1/veMgdzuPcnOM34M6CwxW8jH/lxEa5rBoDeUwu5HHTw== +semver@^7.3.5: + version "7.3.5" + resolved "https://registry.yarnpkg.com/semver/-/semver-7.3.5.tgz#0b621c879348d8998e4b0e4be94b3f12e6018ef7" + integrity sha512-PoeGJYh8HK4BTO/a9Tf6ZG3veo/A7ZVsYrSA6J8ny9nb3B1VrpkuN+z9OE5wfE5p6H4LchYZsegiQgbJD94ZFQ== + dependencies: + lru-cache "^6.0.0" + send@0.17.1: version "0.17.1" resolved "https://registry.yarnpkg.com/send/-/send-0.17.1.tgz#c1d8b059f7900f7466dd4938bdc44e11ddb376c8" @@ -15305,6 +15687,18 @@ tslib@^1.10.0, tslib@^1.9.0, tslib@^1.9.3: resolved "https://registry.yarnpkg.com/tslib/-/tslib-1.13.0.tgz#c881e13cc7015894ed914862d276436fa9a47043" integrity sha512-i/6DQjL8Xf3be4K/E6Wgpekn5Qasl1usyw++dAA35Ue5orEn65VIxOA+YvNNl9HV3qv70T7CNwjODHZrLwvd1Q== +tslib@^1.8.1: + version "1.14.1" + resolved "https://registry.yarnpkg.com/tslib/-/tslib-1.14.1.tgz#cf2d38bdc34a134bcaf1091c41f6619e2f672d00" + integrity sha512-Xni35NKzjgMrwevysHTCArtLDpPvye8zV/0E4EyYn43P7/7qvQwPh9BGkHewbMulVntbigmcT7rdX3BNo9wRJg== + +tsutils@^3.21.0: + version "3.21.0" + resolved "https://registry.yarnpkg.com/tsutils/-/tsutils-3.21.0.tgz#b48717d394cea6c1e096983eed58e9d61715b623" + integrity sha512-mHKK3iUXL+3UF6xL5k0PEhKRUBKPBCv/+RkEOpjRWxxx27KKRBmmA60A9pgOUvMi8GKhRMPEmjBRPzs2W7O1OA== + dependencies: + tslib "^1.8.1" + tty-browserify@0.0.0: version "0.0.0" resolved "https://registry.yarnpkg.com/tty-browserify/-/tty-browserify-0.0.0.tgz#a157ba402da24e9bf957f9aa69d524eed42901a6" @@ -15403,6 +15797,11 @@ typescript-tuple@^2.2.1: dependencies: typescript-compare "^0.0.2" +typescript@^4.3.5: + version "4.3.5" + resolved "https://registry.yarnpkg.com/typescript/-/typescript-4.3.5.tgz#4d1c37cc16e893973c45a06886b7113234f119f4" + integrity sha512-DqQgihaQ9cUrskJo9kIyW/+g0Vxsk8cDtZ52a3NGh0YNTfpUSArXSohyUGnvbPazEPLu398C0UxmKSOrPumUzA== + typical@^2.6.0: version "2.6.1" resolved "https://registry.yarnpkg.com/typical/-/typical-2.6.1.tgz#5c080e5d661cbbe38259d2e70a3c7253e873881d" From 8a1dc781eb538b335720063c5f1389860581f103 Mon Sep 17 00:00:00 2001 From: AlexAlexandre Date: Thu, 15 Jul 2021 10:47:21 -0300 Subject: [PATCH 02/90] [IMPROVE] migrate the HeaderButton component and the colors constant --- app/constants/{colors.js => colors.ts} | 2 +- .../HeaderButton/{Common.js => Common.tsx} | 53 +++++-------------- ...Container.js => HeaderButtonContainer.tsx} | 17 +++--- ...aderButtonItem.js => HeaderButtonItem.tsx} | 23 ++++---- ...ItemBadge.js => HeaderButtonItemBadge.tsx} | 0 .../HeaderButton/{index.js => index.ts} | 0 6 files changed, 30 insertions(+), 65 deletions(-) rename app/constants/{colors.js => colors.ts} (99%) rename app/containers/HeaderButton/{Common.js => Common.tsx} (52%) rename app/containers/HeaderButton/{HeaderButtonContainer.js => HeaderButtonContainer.tsx} (66%) rename app/containers/HeaderButton/{HeaderButtonItem.js => HeaderButtonItem.tsx} (78%) rename app/containers/HeaderButton/{HeaderButtonItemBadge.js => HeaderButtonItemBadge.tsx} (100%) rename app/containers/HeaderButton/{index.js => index.ts} (100%) diff --git a/app/constants/colors.js b/app/constants/colors.ts similarity index 99% rename from app/constants/colors.js rename to app/constants/colors.ts index 1172b4bc92..53b723cbff 100644 --- a/app/constants/colors.js +++ b/app/constants/colors.ts @@ -19,7 +19,7 @@ const mentions = { mentionOtherColor: '#F3BE08' }; -export const themes = { +export const themes: any = { light: { backgroundColor: '#ffffff', focusedBackground: '#ffffff', diff --git a/app/containers/HeaderButton/Common.js b/app/containers/HeaderButton/Common.tsx similarity index 52% rename from app/containers/HeaderButton/Common.js rename to app/containers/HeaderButton/Common.tsx index a1d55bd4e6..7d0ed587c5 100644 --- a/app/containers/HeaderButton/Common.js +++ b/app/containers/HeaderButton/Common.tsx @@ -1,27 +1,30 @@ import React from 'react'; -import PropTypes from 'prop-types'; import { isIOS } from '../../utils/deviceInfo'; import I18n from '../../i18n'; import Container from './HeaderButtonContainer'; import Item from './HeaderButtonItem'; +interface IHeaderButtonCommon { + navigation: any; + onPress(): void; + testID: string; +} + // Left -export const Drawer = React.memo(({ navigation, testID, ...props }) => ( +export const Drawer = React.memo(({ navigation, testID, ...props }: Partial) => ( navigation.toggleDrawer()} testID={testID} {...props} /> )); -export const CloseModal = React.memo(({ - navigation, testID, onPress = () => navigation.pop(), ...props -}) => ( +export const CloseModal = React.memo(({navigation, testID, onPress = () => navigation.pop(), ...props}: IHeaderButtonCommon) => ( )); -export const CancelModal = React.memo(({ onPress, testID }) => ( +export const CancelModal = React.memo(({ onPress, testID }: Partial) => ( {isIOS ? @@ -31,54 +34,24 @@ export const CancelModal = React.memo(({ onPress, testID }) => ( )); // Right -export const More = React.memo(({ onPress, testID }) => ( +export const More = React.memo(({ onPress, testID }: Partial) => ( )); -export const Download = React.memo(({ onPress, testID, ...props }) => ( +export const Download = React.memo(({ onPress, testID, ...props }: Partial) => ( )); -export const Preferences = React.memo(({ onPress, testID, ...props }) => ( +export const Preferences = React.memo(({ onPress, testID, ...props }: Partial) => ( )); -export const Legal = React.memo(({ navigation, testID }) => ( +export const Legal = React.memo(({ navigation, testID }: Partial) => ( navigation.navigate('LegalView')} testID={testID} /> )); - -Drawer.propTypes = { - navigation: PropTypes.object.isRequired, - testID: PropTypes.string.isRequired -}; -CloseModal.propTypes = { - navigation: PropTypes.object.isRequired, - testID: PropTypes.string.isRequired, - onPress: PropTypes.func -}; -CancelModal.propTypes = { - onPress: PropTypes.func.isRequired, - testID: PropTypes.string.isRequired -}; -More.propTypes = { - onPress: PropTypes.func.isRequired, - testID: PropTypes.string.isRequired -}; -Download.propTypes = { - onPress: PropTypes.func.isRequired, - testID: PropTypes.string.isRequired -}; -Preferences.propTypes = { - onPress: PropTypes.func.isRequired, - testID: PropTypes.string.isRequired -}; -Legal.propTypes = { - navigation: PropTypes.object.isRequired, - testID: PropTypes.string.isRequired -}; diff --git a/app/containers/HeaderButton/HeaderButtonContainer.js b/app/containers/HeaderButton/HeaderButtonContainer.tsx similarity index 66% rename from app/containers/HeaderButton/HeaderButtonContainer.js rename to app/containers/HeaderButton/HeaderButtonContainer.tsx index 1521faa95d..3f704ebdca 100644 --- a/app/containers/HeaderButton/HeaderButtonContainer.js +++ b/app/containers/HeaderButton/HeaderButtonContainer.tsx @@ -1,6 +1,10 @@ import React from 'react'; import { View, StyleSheet } from 'react-native'; -import PropTypes from 'prop-types'; + +interface IHeaderButtonContainer { + children: JSX.Element; + left?: boolean; +} const styles = StyleSheet.create({ container: { @@ -16,21 +20,12 @@ const styles = StyleSheet.create({ } }); -const Container = ({ children, left }) => ( +const Container = ({ children, left }: IHeaderButtonContainer) => ( {children} ); -Container.propTypes = { - children: PropTypes.arrayOf(PropTypes.element), - left: PropTypes.bool -}; - -Container.defaultProps = { - left: false -}; - Container.displayName = 'HeaderButton.Container'; export default Container; diff --git a/app/containers/HeaderButton/HeaderButtonItem.js b/app/containers/HeaderButton/HeaderButtonItem.tsx similarity index 78% rename from app/containers/HeaderButton/HeaderButtonItem.js rename to app/containers/HeaderButton/HeaderButtonItem.tsx index 5e9bb86318..5688953ffa 100644 --- a/app/containers/HeaderButton/HeaderButtonItem.js +++ b/app/containers/HeaderButton/HeaderButtonItem.tsx @@ -1,6 +1,5 @@ import React from 'react'; import { Text, StyleSheet, Platform } from 'react-native'; -import PropTypes from 'prop-types'; import Touchable from 'react-native-platform-touchable'; import { CustomIcon } from '../../lib/Icons'; @@ -8,6 +7,15 @@ import { withTheme } from '../../theme'; import { themes } from '../../constants/colors'; import sharedStyles from '../../views/Styles'; +interface IHeaderButtonItem { + title: string; + iconName: string; + onPress(): void; + testID: string; + theme: string; + badge(): void; +} + export const BUTTON_HIT_SLOP = { top: 5, right: 5, bottom: 5, left: 5 }; @@ -29,9 +37,7 @@ const styles = StyleSheet.create({ } }); -const Item = ({ - title, iconName, onPress, testID, theme, badge -}) => ( +const Item = ({title, iconName, onPress, testID, theme, badge}: IHeaderButtonItem) => ( <> { @@ -44,15 +50,6 @@ const Item = ({ ); -Item.propTypes = { - onPress: PropTypes.func.isRequired, - title: PropTypes.string, - iconName: PropTypes.string, - testID: PropTypes.string, - theme: PropTypes.string, - badge: PropTypes.func -}; - Item.displayName = 'HeaderButton.Item'; export default withTheme(Item); diff --git a/app/containers/HeaderButton/HeaderButtonItemBadge.js b/app/containers/HeaderButton/HeaderButtonItemBadge.tsx similarity index 100% rename from app/containers/HeaderButton/HeaderButtonItemBadge.js rename to app/containers/HeaderButton/HeaderButtonItemBadge.tsx diff --git a/app/containers/HeaderButton/index.js b/app/containers/HeaderButton/index.ts similarity index 100% rename from app/containers/HeaderButton/index.js rename to app/containers/HeaderButton/index.ts From fdcfd3e0eee2562f560e257eba37473846fac3d9 Mon Sep 17 00:00:00 2001 From: AlexAlexandre Date: Thu, 15 Jul 2021 10:48:57 -0300 Subject: [PATCH 03/90] [IMPROVE] Create a new file for export external modules --- app/externalModules.d.ts | 1 + 1 file changed, 1 insertion(+) create mode 100644 app/externalModules.d.ts diff --git a/app/externalModules.d.ts b/app/externalModules.d.ts new file mode 100644 index 0000000000..7d5f6c94b7 --- /dev/null +++ b/app/externalModules.d.ts @@ -0,0 +1 @@ +declare module 'rn-extensions-share'; From b6577de7c20e39578ec5a60cc0990f8d27dc8adf Mon Sep 17 00:00:00 2001 From: AlexAlexandre Date: Thu, 15 Jul 2021 10:54:47 -0300 Subject: [PATCH 04/90] [IMPROVE] migrate some navigation files, our index/share and low level files --- app/{AppContainer.js => AppContainer.tsx} | 10 +-- app/{dimensions.js => dimensions.tsx} | 16 +++-- app/{emojis.js => emojis.ts} | 0 app/{index.js => index.tsx} | 67 +++++++++-------- app/lib/Navigation.js | 25 ------- app/lib/Navigation.ts | 25 +++++++ app/lib/ShareNavigation.js | 9 --- app/lib/ShareNavigation.ts | 11 +++ app/{share.js => share.tsx} | 72 +++++++++---------- app/theme.js | 16 ----- app/theme.tsx | 25 +++++++ app/utils/navigation/{index.js => index.ts} | 10 +-- ...tServersView.js => WithoutServersView.tsx} | 11 +-- 13 files changed, 151 insertions(+), 146 deletions(-) rename app/{AppContainer.js => AppContainer.tsx} (93%) rename app/{dimensions.js => dimensions.tsx} (53%) rename app/{emojis.js => emojis.ts} (100%) rename app/{index.js => index.tsx} (81%) delete mode 100644 app/lib/Navigation.js create mode 100644 app/lib/Navigation.ts delete mode 100644 app/lib/ShareNavigation.js create mode 100644 app/lib/ShareNavigation.ts rename app/{share.js => share.tsx} (80%) delete mode 100644 app/theme.js create mode 100644 app/theme.tsx rename app/utils/navigation/{index.js => index.ts} (80%) rename app/views/{WithoutServersView.js => WithoutServersView.tsx} (86%) diff --git a/app/AppContainer.js b/app/AppContainer.tsx similarity index 93% rename from app/AppContainer.js rename to app/AppContainer.tsx index 9ec17ad433..51ccba5f72 100644 --- a/app/AppContainer.js +++ b/app/AppContainer.tsx @@ -1,5 +1,4 @@ import React from 'react'; -import PropTypes from 'prop-types'; import { NavigationContainer } from '@react-navigation/native'; import { createStackNavigator } from '@react-navigation/stack'; import { connect } from 'react-redux'; @@ -35,7 +34,7 @@ const SetUsernameStack = () => ( // App const Stack = createStackNavigator(); -const App = React.memo(({ root, isMasterDetail }) => { +const App = React.memo(({ root, isMasterDetail }: {root: string, isMasterDetail: boolean}) => { if (!root) { return null; } @@ -100,15 +99,10 @@ const App = React.memo(({ root, isMasterDetail }) => { ); }); -const mapStateToProps = state => ({ +const mapStateToProps = (state: any) => ({ root: state.app.root, isMasterDetail: state.app.isMasterDetail }); -App.propTypes = { - root: PropTypes.string, - isMasterDetail: PropTypes.bool -}; - const AppContainer = connect(mapStateToProps)(App); export default AppContainer; diff --git a/app/dimensions.js b/app/dimensions.tsx similarity index 53% rename from app/dimensions.js rename to app/dimensions.tsx index 50f5c7b9af..32ccb93c3a 100644 --- a/app/dimensions.js +++ b/app/dimensions.tsx @@ -2,10 +2,18 @@ import React from 'react'; import { Dimensions } from 'react-native'; import hoistNonReactStatics from 'hoist-non-react-statics'; -export const DimensionsContext = React.createContext(Dimensions.get('window')); +interface IDimensionsContextProps { + width: number; + height: number; + scale: number; + fontScale: number; + setDimensions: ({ width, height, scale, fontScale }: { width: number; height: number; scale: number; fontScale: number; }) => void; +} + +export const DimensionsContext = React.createContext>(Dimensions.get('window')); -export function withDimensions(Component) { - const DimensionsComponent = props => ( +export function withDimensions(Component: any) { + const DimensionsComponent = (props: any) => ( {contexts => } @@ -18,7 +26,7 @@ export const useDimensions = () => React.useContext(DimensionsContext); export const useOrientation = () => { const { width, height } = React.useContext(DimensionsContext); - const isPortrait = height > width; + const isPortrait = (height)! > (width)!; return { isPortrait, isLandscape: !isPortrait diff --git a/app/emojis.js b/app/emojis.ts similarity index 100% rename from app/emojis.js rename to app/emojis.ts diff --git a/app/index.js b/app/index.tsx similarity index 81% rename from app/index.js rename to app/index.tsx index efcf1557e3..c9aca4711e 100644 --- a/app/index.js +++ b/app/index.tsx @@ -6,12 +6,7 @@ import { KeyCommandsEmitter } from 'react-native-keycommands'; import RNScreens from 'react-native-screens'; import { SafeAreaProvider, initialWindowMetrics } from 'react-native-safe-area-context'; -import { - defaultTheme, - newThemeState, - subscribeTheme, - unsubscribeTheme -} from './utils/theme'; +import { defaultTheme, newThemeState, subscribeTheme, unsubscribeTheme } from './utils/theme'; import UserPreferences from './lib/userPreferences'; import EventEmitter from './utils/events'; import { appInit, appInitLocalSettings, setMasterDetail as setMasterDetailAction } from './actions/app'; @@ -24,9 +19,7 @@ import { ThemeContext } from './theme'; import { DimensionsContext } from './dimensions'; import RocketChat, { THEME_PREFERENCES_KEY } from './lib/rocketchat'; import { MIN_WIDTH_MASTER_DETAIL_LAYOUT } from './constants/tablet'; -import { - isTablet, supportSystemTheme -} from './utils/deviceInfo'; +import { isTablet, supportSystemTheme } from './utils/deviceInfo'; import { KEY_COMMAND } from './commands'; import AppContainer from './AppContainer'; import TwoFactor from './containers/TwoFactor'; @@ -40,7 +33,26 @@ import { isFDroidBuild } from './constants/environment'; RNScreens.enableScreens(); -const parseDeepLinking = (url) => { +type TDimensions = { + width: number, + height: number, + scale: number, + fontScale: number +} +interface IProps {} +interface IState { + theme: string, + themePreferences: { + currentTheme: 'automatic' | 'light', + darkLevel: string + }, + width: number; + height: number; + scale: number; + fontScale: number; +} + +const parseDeepLinking = (url: string) => { if (url) { url = url.replace(/rocketchat:\/\/|https:\/\/go.rocket.chat\//, ''); const regex = /^(room|auth|invite)\?/; @@ -61,16 +73,17 @@ const parseDeepLinking = (url) => { return null; }; -export default class Root extends React.Component { - constructor(props) { +export default class Root extends React.Component { + private listenerTimeout!: NodeJS.Timeout; + private onKeyCommands: any; + + constructor(props: IProps) { super(props); this.init(); if (!isFDroidBuild) { this.initCrashReport(); } - const { - width, height, scale, fontScale - } = Dimensions.get('window'); + const { width, height, scale, fontScale } = Dimensions.get('window'); this.state = { theme: defaultTheme(), themePreferences: { @@ -111,7 +124,7 @@ export default class Root extends React.Component { } init = async() => { - UserPreferences.getMapAsync(THEME_PREFERENCES_KEY).then(this.setTheme); + UserPreferences.getMapAsync(THEME_PREFERENCES_KEY).then(() => this.setTheme()); store.dispatch(appInitLocalSettings()); // Open app from push notification @@ -123,7 +136,7 @@ export default class Root extends React.Component { // Open app from deep linking const deepLinking = await Linking.getInitialURL(); - const parsedDeepLinkingURL = parseDeepLinking(deepLinking); + const parsedDeepLinkingURL = parseDeepLinking(deepLinking!); if (parsedDeepLinkingURL) { store.dispatch(deepLinkingOpen(parsedDeepLinkingURL)); return; @@ -133,14 +146,14 @@ export default class Root extends React.Component { store.dispatch(appInit()); } - getMasterDetail = (width) => { + getMasterDetail = (width: number) => { if (!isTablet) { return false; } return width > MIN_WIDTH_MASTER_DETAIL_LAYOUT; } - setMasterDetail = (width) => { + setMasterDetail = (width: number) => { const isMasterDetail = this.getMasterDetail(width); store.dispatch(setMasterDetailAction(isMasterDetail)); }; @@ -150,7 +163,7 @@ export default class Root extends React.Component { window: { width, height, scale, fontScale } - }) => { + }: {window: TDimensions}) => { this.setDimensions({ width, height, scale, fontScale }); @@ -166,12 +179,8 @@ export default class Root extends React.Component { }); } - setDimensions = ({ - width, height, scale, fontScale - }) => { - this.setState({ - width, height, scale, fontScale - }); + setDimensions = ({width, height, scale, fontScale}: TDimensions) => { + this.setState({width, height, scale, fontScale}); } initTablet = () => { @@ -179,7 +188,7 @@ export default class Root extends React.Component { this.setMasterDetail(width); this.onKeyCommands = KeyCommandsEmitter.addListener( 'onKeyCommand', - (command) => { + (command: unknown) => { EventEmitter.emit(KEY_COMMAND, { event: command }); } ); @@ -197,9 +206,7 @@ export default class Root extends React.Component { } render() { - const { - themePreferences, theme, width, height, scale, fontScale - } = this.state; + const { themePreferences, theme, width, height, scale, fontScale } = this.state; return ( diff --git a/app/lib/Navigation.js b/app/lib/Navigation.js deleted file mode 100644 index 34aba17699..0000000000 --- a/app/lib/Navigation.js +++ /dev/null @@ -1,25 +0,0 @@ -import * as React from 'react'; -import { CommonActions, StackActions } from '@react-navigation/native'; - -const navigationRef = React.createRef(); -const routeNameRef = React.createRef(); - -function navigate(name, params) { - navigationRef.current?.navigate(name, params); -} - -function back() { - navigationRef.current?.dispatch(CommonActions.goBack()); -} - -function replace(name, params) { - navigationRef.current?.dispatch(StackActions.replace(name, params)); -} - -export default { - navigationRef, - routeNameRef, - navigate, - back, - replace -}; diff --git a/app/lib/Navigation.ts b/app/lib/Navigation.ts new file mode 100644 index 0000000000..7b7cb1a21b --- /dev/null +++ b/app/lib/Navigation.ts @@ -0,0 +1,25 @@ +import * as React from 'react'; +import { CommonActions, StackActions, NavigationContainerRef } from '@react-navigation/native'; + +const navigationRef = React.createRef(); +const routeNameRef: React.MutableRefObject = React.createRef(); + +function navigate(name: string, params: any) { + navigationRef.current?.navigate(name, params); +} + +function back() { + navigationRef.current?.dispatch(CommonActions.goBack()); +} + +function replace(name: string, params: any) { + navigationRef.current?.dispatch(StackActions.replace(name, params)); +} + +export default { + navigationRef, + routeNameRef, + navigate, + back, + replace +}; diff --git a/app/lib/ShareNavigation.js b/app/lib/ShareNavigation.js deleted file mode 100644 index 6cc77eac23..0000000000 --- a/app/lib/ShareNavigation.js +++ /dev/null @@ -1,9 +0,0 @@ -import { createRef } from 'react'; - -const navigationRef = createRef(); -const routeNameRef = createRef(); - -export default { - navigationRef, - routeNameRef -}; diff --git a/app/lib/ShareNavigation.ts b/app/lib/ShareNavigation.ts new file mode 100644 index 0000000000..c0f5a9ad5d --- /dev/null +++ b/app/lib/ShareNavigation.ts @@ -0,0 +1,11 @@ +import * as React from 'react'; +import { NavigationContainerRef } from '@react-navigation/native'; + + +const navigationRef = React.createRef(); +const routeNameRef: React.MutableRefObject = React.createRef(); + +export default { + navigationRef, + routeNameRef +}; diff --git a/app/share.js b/app/share.tsx similarity index 80% rename from app/share.js rename to app/share.tsx index dbf0bfbffa..e3448563d7 100644 --- a/app/share.js +++ b/app/share.tsx @@ -1,24 +1,16 @@ import React, { useContext } from 'react'; import { Dimensions } from 'react-native'; -import PropTypes from 'prop-types'; import { NavigationContainer } from '@react-navigation/native'; import { AppearanceProvider } from 'react-native-appearance'; import { createStackNavigator } from '@react-navigation/stack'; import { Provider } from 'react-redux'; -import { - defaultTheme, - newThemeState, - subscribeTheme, - unsubscribeTheme -} from './utils/theme'; +import { defaultTheme, newThemeState, subscribeTheme, unsubscribeTheme } from './utils/theme'; import UserPreferences from './lib/userPreferences'; import Navigation from './lib/ShareNavigation'; import store from './lib/createStore'; import { supportSystemTheme } from './utils/deviceInfo'; -import { - defaultHeader, themedHeader, getActiveRouteName, navigationTheme -} from './utils/navigation'; +import { defaultHeader, themedHeader, getActiveRouteName, navigationTheme } from './utils/navigation'; import RocketChat, { THEME_PREFERENCES_KEY } from './lib/rocketchat'; import { ThemeContext } from './theme'; import { localAuthenticate } from './utils/localAuthentication'; @@ -36,6 +28,26 @@ import AuthLoadingView from './views/AuthLoadingView'; import { DimensionsContext } from './dimensions'; import debounce from './utils/debounce'; +type TDimensions = { + width: number, + height: number, + scale: number, + fontScale: number +} +interface IProps {} +interface IState { + theme: string, + themePreferences: { + currentTheme: 'automatic' | 'light', + darkLevel: string + }, + root: any; + width: number; + height: number; + scale: number; + fontScale: number; +} + const Inside = createStackNavigator(); const InsideStack = () => { const { theme } = useContext(ThemeContext); @@ -44,10 +56,7 @@ const InsideStack = () => { ...defaultHeader, ...themedHeader(theme) }; - screenOptions.headerStyle = { - ...screenOptions.headerStyle, - height: 57 - }; + screenOptions.headerStyle = {...screenOptions.headerStyle, height: 57}; return ( @@ -85,7 +94,7 @@ const OutsideStack = () => { // App const Stack = createStackNavigator(); -export const App = ({ root }) => ( +export const App = ({ root }: any) => ( <> {!root ? ( @@ -110,16 +119,10 @@ export const App = ({ root }) => ( ); -App.propTypes = { - root: PropTypes.string -}; - -class Root extends React.Component { - constructor(props) { +class Root extends React.Component { + constructor(props: any) { super(props); - const { - width, height, scale, fontScale - } = Dimensions.get('screen'); + const { width, height, scale, fontScale } = Dimensions.get('screen'); this.state = { theme: defaultTheme(), themePreferences: { @@ -141,7 +144,7 @@ class Root extends React.Component { } init = async() => { - UserPreferences.getMapAsync(THEME_PREFERENCES_KEY).then(this.setTheme); + UserPreferences.getMapAsync(THEME_PREFERENCES_KEY).then(() => this.setTheme()); const currentServer = await UserPreferences.getStringAsync(RocketChat.CURRENT_SERVER); @@ -169,29 +172,18 @@ class Root extends React.Component { } // Dimensions update fires twice - onDimensionsChange = debounce(({ - window: { - width, height, scale, fontScale - } - }) => { - this.setDimensions({ - width, height, scale, fontScale - }); - this.setMasterDetail(width); + onDimensionsChange = debounce(({window: { width, height, scale, fontScale}}: {window: TDimensions}) => { + this.setDimensions({ width, height, scale, fontScale }); }) - setDimensions = ({ - width, height, scale, fontScale - }) => { + setDimensions = ({ width, height, scale, fontScale }: TDimensions) => { this.setState({ width, height, scale, fontScale }); } render() { - const { - theme, root, width, height, scale, fontScale - } = this.state; + const { theme, root, width, height, scale, fontScale } = this.state; const navTheme = navigationTheme(theme); return ( diff --git a/app/theme.js b/app/theme.js deleted file mode 100644 index c34f56de06..0000000000 --- a/app/theme.js +++ /dev/null @@ -1,16 +0,0 @@ -import React from 'react'; -import hoistNonReactStatics from 'hoist-non-react-statics'; - -export const ThemeContext = React.createContext({ theme: 'light' }); - -export function withTheme(Component) { - const ThemedComponent = props => ( - - {contexts => } - - ); - hoistNonReactStatics(ThemedComponent, Component); - return ThemedComponent; -} - -export const useTheme = () => React.useContext(ThemeContext); diff --git a/app/theme.tsx b/app/theme.tsx new file mode 100644 index 0000000000..641ee3fc12 --- /dev/null +++ b/app/theme.tsx @@ -0,0 +1,25 @@ +import React from 'react'; +import hoistNonReactStatics from 'hoist-non-react-statics'; + +interface IThemeContextProps { + theme: string, + themePreferences: { + currentTheme: 'automatic' | 'light', + darkLevel: string + }, + setTheme: (newTheme?: {}) => void; +} + +export const ThemeContext = React.createContext>({ theme: 'light' }); + +export function withTheme(Component: any) { + const ThemedComponent = (props: any) => ( + + {contexts => } + + ); + hoistNonReactStatics(ThemedComponent, Component); + return ThemedComponent; +} + +export const useTheme = () => React.useContext(ThemeContext); diff --git a/app/utils/navigation/index.js b/app/utils/navigation/index.ts similarity index 80% rename from app/utils/navigation/index.js rename to app/utils/navigation/index.ts index 6f4faf6c13..8d269e5668 100644 --- a/app/utils/navigation/index.js +++ b/app/utils/navigation/index.ts @@ -16,13 +16,13 @@ export const cardStyle = { backgroundColor: 'rgba(0,0,0,0)' }; -export const borderBottom = theme => ({ +export const borderBottom: any = (theme: any) => ({ borderBottomWidth: StyleSheet.hairlineWidth, borderBottomColor: themes[theme].headerBorder, elevation: 0 }); -export const themedHeader = theme => ({ +export const themedHeader = (theme: any) => ({ headerStyle: { ...borderBottom(theme), backgroundColor: themes[theme].headerBackground @@ -31,7 +31,7 @@ export const themedHeader = theme => ({ headerTitleStyle: { color: themes[theme].headerTitleColor } }); -export const navigationTheme = (theme) => { +export const navigationTheme = (theme: any) => { const defaultNavTheme = theme === 'light' ? DefaultTheme : DarkTheme; return { @@ -45,7 +45,7 @@ export const navigationTheme = (theme) => { }; // Gets the current screen from navigation state -export const getActiveRoute = (state) => { +export const getActiveRoute: any = (state: any) => { const route = state?.routes[state?.index]; if (route?.state) { @@ -56,4 +56,4 @@ export const getActiveRoute = (state) => { return route; }; -export const getActiveRouteName = state => getActiveRoute(state)?.name; +export const getActiveRouteName = (state: any) => getActiveRoute(state)?.name; diff --git a/app/views/WithoutServersView.js b/app/views/WithoutServersView.tsx similarity index 86% rename from app/views/WithoutServersView.js rename to app/views/WithoutServersView.tsx index b4f101a695..b0c8e61284 100644 --- a/app/views/WithoutServersView.js +++ b/app/views/WithoutServersView.tsx @@ -1,8 +1,5 @@ import React from 'react'; -import { - StyleSheet, View, Text -} from 'react-native'; -import PropTypes from 'prop-types'; +import { StyleSheet, View, Text } from 'react-native'; import ShareExtension from 'rn-extensions-share'; import * as HeaderButton from '../containers/HeaderButton'; @@ -29,7 +26,7 @@ const styles = StyleSheet.create({ } }); -class WithoutServerView extends React.Component { +class WithoutServerView extends React.Component { static navigationOptions = () => ({ title: 'Rocket.Chat', headerLeft: () => ( @@ -40,10 +37,6 @@ class WithoutServerView extends React.Component { ) }) - static propTypes = { - theme: PropTypes.string - } - render() { const { theme } = this.props; return ( From eadbb59e09a5e98d4b58ebdd10e27cbea9ac5344 Mon Sep 17 00:00:00 2001 From: AlexAlexandre Date: Thu, 15 Jul 2021 11:57:48 -0300 Subject: [PATCH 05/90] [IMPROVE] migrate all constants file --- app/constants/{environment.js => environment.ts} | 0 app/constants/{links.js => links.ts} | 0 app/constants/{localAuthentication.js => localAuthentication.ts} | 0 app/constants/{messageTypeLoad.js => messageTypeLoad.ts} | 0 app/constants/{messagesStatus.js => messagesStatus.ts} | 0 app/constants/{settings.js => settings.ts} | 0 app/constants/{tablet.js => tablet.ts} | 0 7 files changed, 0 insertions(+), 0 deletions(-) rename app/constants/{environment.js => environment.ts} (100%) rename app/constants/{links.js => links.ts} (100%) rename app/constants/{localAuthentication.js => localAuthentication.ts} (100%) rename app/constants/{messageTypeLoad.js => messageTypeLoad.ts} (100%) rename app/constants/{messagesStatus.js => messagesStatus.ts} (100%) rename app/constants/{settings.js => settings.ts} (100%) rename app/constants/{tablet.js => tablet.ts} (100%) diff --git a/app/constants/environment.js b/app/constants/environment.ts similarity index 100% rename from app/constants/environment.js rename to app/constants/environment.ts diff --git a/app/constants/links.js b/app/constants/links.ts similarity index 100% rename from app/constants/links.js rename to app/constants/links.ts diff --git a/app/constants/localAuthentication.js b/app/constants/localAuthentication.ts similarity index 100% rename from app/constants/localAuthentication.js rename to app/constants/localAuthentication.ts diff --git a/app/constants/messageTypeLoad.js b/app/constants/messageTypeLoad.ts similarity index 100% rename from app/constants/messageTypeLoad.js rename to app/constants/messageTypeLoad.ts diff --git a/app/constants/messagesStatus.js b/app/constants/messagesStatus.ts similarity index 100% rename from app/constants/messagesStatus.js rename to app/constants/messagesStatus.ts diff --git a/app/constants/settings.js b/app/constants/settings.ts similarity index 100% rename from app/constants/settings.js rename to app/constants/settings.ts diff --git a/app/constants/tablet.js b/app/constants/tablet.ts similarity index 100% rename from app/constants/tablet.js rename to app/constants/tablet.ts From 99b6c3d0732603f40543bb5432da270ecf34b3b7 Mon Sep 17 00:00:00 2001 From: AlexAlexandre Date: Thu, 15 Jul 2021 16:47:30 -0300 Subject: [PATCH 06/90] [IMPROVE] migrate the ActivityIndicator and the Button component --- ...vityIndicator.js => ActivityIndicator.tsx} | 23 ++++++------ app/containers/Button/{index.js => index.tsx} | 36 ++++++++----------- 2 files changed, 26 insertions(+), 33 deletions(-) rename app/containers/{ActivityIndicator.js => ActivityIndicator.tsx} (52%) rename app/containers/Button/{index.js => index.tsx} (72%) diff --git a/app/containers/ActivityIndicator.js b/app/containers/ActivityIndicator.tsx similarity index 52% rename from app/containers/ActivityIndicator.js rename to app/containers/ActivityIndicator.tsx index 964d9c267e..3f21cac6a9 100644 --- a/app/containers/ActivityIndicator.js +++ b/app/containers/ActivityIndicator.tsx @@ -1,8 +1,13 @@ import React from 'react'; -import { ActivityIndicator, StyleSheet } from 'react-native'; -import { PropTypes } from 'prop-types'; +import { ActivityIndicator, ActivityIndicatorProps, StyleSheet } from 'react-native'; import { themes } from '../constants/colors'; +interface IActivityIndicator extends ActivityIndicatorProps{ + theme?: 'light' | 'dark' | 'black', + absolute?: boolean, + props?: object +} + const styles = StyleSheet.create({ indicator: { padding: 16, @@ -19,7 +24,7 @@ const styles = StyleSheet.create({ } }); -const RCActivityIndicator = ({ theme, absolute, ...props }) => ( +const RCActivityIndicator = ({ theme = 'light', absolute, ...props }: IActivityIndicator) => ( ( /> ); -RCActivityIndicator.propTypes = { - theme: PropTypes.string, - absolute: PropTypes.bool, - props: PropTypes.object -}; -RCActivityIndicator.defaultProps = { - theme: 'light' -}; +// TODO - test the app without the theme default +// RCActivityIndicator.defaultProps = { +// theme: 'light' +// }; export default RCActivityIndicator; diff --git a/app/containers/Button/index.js b/app/containers/Button/index.tsx similarity index 72% rename from app/containers/Button/index.js rename to app/containers/Button/index.tsx index 75a09290f6..55f40c2072 100644 --- a/app/containers/Button/index.js +++ b/app/containers/Button/index.tsx @@ -1,5 +1,4 @@ import React from 'react'; -import PropTypes from 'prop-types'; import { StyleSheet, Text } from 'react-native'; import Touchable from 'react-native-platform-touchable'; @@ -7,6 +6,19 @@ import { themes } from '../../constants/colors'; import sharedStyles from '../../views/Styles'; import ActivityIndicator from '../ActivityIndicator'; +interface IButton { + title: string; + type: string + onPress(): void; + disabled: boolean; + backgroundColor: string + loading: boolean; + theme: string + color: string + fontSize: any + style: any +} + const styles = StyleSheet.create({ container: { paddingHorizontal: 14, @@ -25,27 +37,7 @@ const styles = StyleSheet.create({ } }); -export default class Button extends React.PureComponent { - static propTypes = { - title: PropTypes.oneOfType([PropTypes.string, PropTypes.element]), - type: PropTypes.string, - onPress: PropTypes.func, - disabled: PropTypes.bool, - backgroundColor: PropTypes.string, - loading: PropTypes.bool, - theme: PropTypes.string, - color: PropTypes.string, - fontSize: PropTypes.string, - style: PropTypes.any - } - - static defaultProps = { - title: 'Press me!', - type: 'primary', - onPress: () => alert('It works!'), - disabled: false, - loading: false - } +export default class Button extends React.PureComponent { render() { const { From 802c7b2b28c1e06a2b540a8a3ade78a8a0a3fe88 Mon Sep 17 00:00:00 2001 From: AlexAlexandre Date: Thu, 15 Jul 2021 16:47:53 -0300 Subject: [PATCH 07/90] [IMPROVE] migrate the ActionSheet component --- .../{ActionSheet.js => ActionSheet.tsx} | 47 +++++++++---------- .../ActionSheet/{Button.js => Button.ts} | 0 .../ActionSheet/{Handle.js => Handle.tsx} | 6 +-- .../ActionSheet/{Item.js => Item.tsx} | 30 ++++++------ .../ActionSheet/{Provider.js => Provider.tsx} | 6 +-- .../ActionSheet/{index.js => index.ts} | 0 .../ActionSheet/{styles.js => styles.ts} | 0 app/dimensions.tsx | 4 +- 8 files changed, 43 insertions(+), 50 deletions(-) rename app/containers/ActionSheet/{ActionSheet.js => ActionSheet.tsx} (81%) rename app/containers/ActionSheet/{Button.js => Button.ts} (100%) rename app/containers/ActionSheet/{Handle.js => Handle.tsx} (73%) rename app/containers/ActionSheet/{Item.js => Item.tsx} (72%) rename app/containers/ActionSheet/{Provider.js => Provider.tsx} (86%) rename app/containers/ActionSheet/{index.js => index.ts} (100%) rename app/containers/ActionSheet/{styles.js => styles.ts} (100%) diff --git a/app/containers/ActionSheet/ActionSheet.js b/app/containers/ActionSheet/ActionSheet.tsx similarity index 81% rename from app/containers/ActionSheet/ActionSheet.js rename to app/containers/ActionSheet/ActionSheet.tsx index af98a75ce8..c465076c22 100644 --- a/app/containers/ActionSheet/ActionSheet.js +++ b/app/containers/ActionSheet/ActionSheet.tsx @@ -7,17 +7,11 @@ import React, { useCallback, isValidElement } from 'react'; -import PropTypes from 'prop-types'; import { Keyboard, Text } from 'react-native'; import { useSafeAreaInsets } from 'react-native-safe-area-context'; import { TapGestureHandler, State } from 'react-native-gesture-handler'; import ScrollBottomSheet from 'react-native-scroll-bottom-sheet'; -import Animated, { - Extrapolate, - interpolate, - Value, - Easing -} from 'react-native-reanimated'; +import Animated, { Extrapolate, interpolate, Value, Easing} from 'react-native-reanimated'; import * as Haptics from 'expo-haptics'; import { useBackHandler } from '@react-native-community/hooks'; @@ -29,9 +23,16 @@ import styles, { ITEM_HEIGHT } from './styles'; import { isTablet, isIOS } from '../../utils/deviceInfo'; import * as List from '../List'; import I18n from '../../i18n'; -import { useOrientation, useDimensions } from '../../dimensions'; +import { useOrientation, useDimensions, IDimensionsContextProps } from '../../dimensions'; -const getItemLayout = (data, index) => ({ length: ITEM_HEIGHT, offset: ITEM_HEIGHT * index, index }); +type TActionSheetData = { + options: any; + headerHeight?: number; + hasCancel?: boolean; + customHeader: any; +} + +const getItemLayout = (data: any, index: number) => ({ length: ITEM_HEIGHT, offset: ITEM_HEIGHT * index, index }); const HANDLE_HEIGHT = isIOS ? 40 : 56; const MAX_SNAP_HEIGHT = 16; @@ -45,17 +46,17 @@ const ANIMATION_CONFIG = { easing: Easing.bezier(0.645, 0.045, 0.355, 1.0) }; -const ActionSheet = React.memo(forwardRef(({ children, theme }, ref) => { - const bottomSheetRef = useRef(); - const [data, setData] = useState({}); +const ActionSheet = React.memo(forwardRef(({ children, theme }: {children: JSX.Element; theme: string}, ref) => { + const bottomSheetRef: any = useRef(); + const [data, setData] = useState({} as TActionSheetData); const [isVisible, setVisible] = useState(false); - const { height } = useDimensions(); + const { height }: Partial = useDimensions(); const { isLandscape } = useOrientation(); const insets = useSafeAreaInsets(); const maxSnap = Math.max( ( - height + height! // Items height - (ITEM_HEIGHT * (data?.options?.length || 0)) // Handle height @@ -77,7 +78,7 @@ const ActionSheet = React.memo(forwardRef(({ children, theme }, ref) => { * we'll provide more one snap * that point 50% of the whole screen */ - const snaps = (height - maxSnap > height * 0.6) && !isLandscape ? [maxSnap, height * 0.5, height] : [maxSnap, height]; + const snaps: any = (height! - maxSnap > height! * 0.6) && !isLandscape ? [maxSnap, height! * 0.5, height] : [maxSnap, height]; const openedSnapIndex = snaps.length > 2 ? 1 : 0; const closedSnapIndex = snaps.length - 1; @@ -87,12 +88,12 @@ const ActionSheet = React.memo(forwardRef(({ children, theme }, ref) => { bottomSheetRef.current?.snapTo(closedSnapIndex); }; - const show = (options) => { + const show = (options: any) => { setData(options); toggleVisible(); }; - const onBackdropPressed = ({ nativeEvent }) => { + const onBackdropPressed = ({ nativeEvent }: any) => { if (nativeEvent.oldState === State.ACTIVE) { hide(); } @@ -128,7 +129,7 @@ const ActionSheet = React.memo(forwardRef(({ children, theme }, ref) => { {isValidElement(data?.customHeader) ? data.customHeader : null} - )); + ), [theme, data]); const renderFooter = useCallback(() => (data?.hasCancel ? ( - ) : null)); + ) : null), [theme, data, hide()]); - const renderItem = useCallback(({ item }) => ); + const renderItem = useCallback(({ item }) => , []); const animatedPosition = React.useRef(new Value(0)); const opacity = interpolate(animatedPosition.current, { @@ -168,7 +169,7 @@ const ActionSheet = React.memo(forwardRef(({ children, theme }, ref) => { ]} /> - testID='action-sheet' ref={bottomSheetRef} componentType='FlatList' @@ -200,9 +201,5 @@ const ActionSheet = React.memo(forwardRef(({ children, theme }, ref) => { ); })); -ActionSheet.propTypes = { - children: PropTypes.node, - theme: PropTypes.string -}; export default ActionSheet; diff --git a/app/containers/ActionSheet/Button.js b/app/containers/ActionSheet/Button.ts similarity index 100% rename from app/containers/ActionSheet/Button.js rename to app/containers/ActionSheet/Button.ts diff --git a/app/containers/ActionSheet/Handle.js b/app/containers/ActionSheet/Handle.tsx similarity index 73% rename from app/containers/ActionSheet/Handle.js rename to app/containers/ActionSheet/Handle.tsx index 0f19ce3f2f..1e00208463 100644 --- a/app/containers/ActionSheet/Handle.js +++ b/app/containers/ActionSheet/Handle.tsx @@ -1,15 +1,11 @@ import React from 'react'; -import PropTypes from 'prop-types'; import { View } from 'react-native'; import styles from './styles'; import { themes } from '../../constants/colors'; -export const Handle = React.memo(({ theme }) => ( +export const Handle = React.memo(({ theme }: {theme: string}) => ( )); -Handle.propTypes = { - theme: PropTypes.string -}; diff --git a/app/containers/ActionSheet/Item.js b/app/containers/ActionSheet/Item.tsx similarity index 72% rename from app/containers/ActionSheet/Item.js rename to app/containers/ActionSheet/Item.tsx index 2cacd0855b..aca9dc2152 100644 --- a/app/containers/ActionSheet/Item.js +++ b/app/containers/ActionSheet/Item.tsx @@ -1,13 +1,25 @@ import React from 'react'; -import PropTypes from 'prop-types'; import { Text, View } from 'react-native'; import { themes } from '../../constants/colors'; import { CustomIcon } from '../../lib/Icons'; -import styles from './styles'; import { Button } from './Button'; +import styles from './styles'; + +interface IActionSheetItem { + item: { + title: string; + icon: string; + danger: boolean; + testID: string; + onPress(): void; + right: Function; + }; + theme: string + hide(): void; +} -export const Item = React.memo(({ item, hide, theme }) => { +export const Item = React.memo(({ item, hide, theme }: IActionSheetItem) => { const onPress = () => { hide(); item?.onPress(); @@ -37,15 +49,3 @@ export const Item = React.memo(({ item, hide, theme }) => { ); }); -Item.propTypes = { - item: PropTypes.shape({ - title: PropTypes.string, - icon: PropTypes.string, - danger: PropTypes.bool, - onPress: PropTypes.func, - right: PropTypes.func, - testID: PropTypes.string - }), - hide: PropTypes.func, - theme: PropTypes.string -}; diff --git a/app/containers/ActionSheet/Provider.js b/app/containers/ActionSheet/Provider.tsx similarity index 86% rename from app/containers/ActionSheet/Provider.js rename to app/containers/ActionSheet/Provider.tsx index 3708e6744b..de2a64ebf5 100644 --- a/app/containers/ActionSheet/Provider.js +++ b/app/containers/ActionSheet/Provider.tsx @@ -13,18 +13,18 @@ export const useActionSheet = () => useContext(context); const { Provider, Consumer } = context; -export const withActionSheet = Component => forwardRef((props, ref) => ( +export const withActionSheet = (Component: any) => forwardRef((props, ref) => ( {contexts => } )); export const ActionSheetProvider = React.memo(({ children }) => { - const ref = useRef(); + const ref: any = useRef(); const { theme } = useTheme(); const getContext = () => ({ - showActionSheet: (options) => { + showActionSheet: (options: any) => { ref.current?.showActionSheet(options); }, hideActionSheet: () => { diff --git a/app/containers/ActionSheet/index.js b/app/containers/ActionSheet/index.ts similarity index 100% rename from app/containers/ActionSheet/index.js rename to app/containers/ActionSheet/index.ts diff --git a/app/containers/ActionSheet/styles.js b/app/containers/ActionSheet/styles.ts similarity index 100% rename from app/containers/ActionSheet/styles.js rename to app/containers/ActionSheet/styles.ts diff --git a/app/dimensions.tsx b/app/dimensions.tsx index 32ccb93c3a..a67cf0479e 100644 --- a/app/dimensions.tsx +++ b/app/dimensions.tsx @@ -2,9 +2,9 @@ import React from 'react'; import { Dimensions } from 'react-native'; import hoistNonReactStatics from 'hoist-non-react-statics'; -interface IDimensionsContextProps { +export interface IDimensionsContextProps { width: number; - height: number; + height?: number; scale: number; fontScale: number; setDimensions: ({ width, height, scale, fontScale }: { width: number; height: number; scale: number; fontScale: number; }) => void; From acdc2ce8f54bb834ee6bd5e97cce0db9380cda56 Mon Sep 17 00:00:00 2001 From: AlexAlexandre Date: Thu, 15 Jul 2021 18:46:31 -0300 Subject: [PATCH 08/90] [IMPROVE] fix some typing erros --- app/containers/ActionSheet/ActionSheet.tsx | 2 +- app/containers/ActionSheet/Provider.tsx | 23 +++++++++++----------- app/containers/ActivityIndicator.tsx | 6 ------ 3 files changed, 13 insertions(+), 18 deletions(-) diff --git a/app/containers/ActionSheet/ActionSheet.tsx b/app/containers/ActionSheet/ActionSheet.tsx index c465076c22..8551d5dbf2 100644 --- a/app/containers/ActionSheet/ActionSheet.tsx +++ b/app/containers/ActionSheet/ActionSheet.tsx @@ -182,7 +182,7 @@ const ActionSheet = React.memo(forwardRef(({ children, theme }: {children: JSX.E styles.container, { backgroundColor: themes[theme].focusedBackground }, (isLandscape || isTablet) && styles.bottomSheet - ]} + ] as any} animationConfig={ANIMATION_CONFIG} // FlatList props data={data?.options} diff --git a/app/containers/ActionSheet/Provider.tsx b/app/containers/ActionSheet/Provider.tsx index de2a64ebf5..c8715b6133 100644 --- a/app/containers/ActionSheet/Provider.tsx +++ b/app/containers/ActionSheet/Provider.tsx @@ -1,10 +1,14 @@ -import React, { useRef, useContext, forwardRef } from 'react'; -import PropTypes from 'prop-types'; +import React, {useRef, useContext, forwardRef, ForwardedRef} from 'react'; import ActionSheet from './ActionSheet'; import { useTheme } from '../../theme'; -const context = React.createContext({ +interface IActionSheetProvider { + Provider: any; + Consumer: any; +} + +const context: IActionSheetProvider = React.createContext({ showActionSheet: () => {}, hideActionSheet: () => {} }); @@ -13,15 +17,15 @@ export const useActionSheet = () => useContext(context); const { Provider, Consumer } = context; -export const withActionSheet = (Component: any) => forwardRef((props, ref) => ( +export const withActionSheet = (Component: React.FC) => forwardRef((props: any, ref: ForwardedRef) => ( - {contexts => } + {(contexts: any) => } )); -export const ActionSheetProvider = React.memo(({ children }) => { - const ref: any = useRef(); - const { theme } = useTheme(); +export const ActionSheetProvider = React.memo(({ children }: {children: JSX.Element}) => { + const ref: ForwardedRef = useRef(); + const { theme }: any = useTheme(); const getContext = () => ({ showActionSheet: (options: any) => { @@ -40,6 +44,3 @@ export const ActionSheetProvider = React.memo(({ children }) => { ); }); -ActionSheetProvider.propTypes = { - children: PropTypes.node -}; diff --git a/app/containers/ActivityIndicator.tsx b/app/containers/ActivityIndicator.tsx index 3f21cac6a9..50a60f0c32 100644 --- a/app/containers/ActivityIndicator.tsx +++ b/app/containers/ActivityIndicator.tsx @@ -32,10 +32,4 @@ const RCActivityIndicator = ({ theme = 'light', absolute, ...props }: IActivityI /> ); - -// TODO - test the app without the theme default -// RCActivityIndicator.defaultProps = { -// theme: 'light' -// }; - export default RCActivityIndicator; From 0354b49b08929c7bf466cfa1bcc8afe7f64ad5ab Mon Sep 17 00:00:00 2001 From: AlexAlexandre Date: Thu, 15 Jul 2021 18:56:37 -0300 Subject: [PATCH 09/90] [IMPROVE] trying remove an IGTM error --- app/containers/ActionSheet/ActionSheet.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/containers/ActionSheet/ActionSheet.tsx b/app/containers/ActionSheet/ActionSheet.tsx index 8551d5dbf2..84d304eb8d 100644 --- a/app/containers/ActionSheet/ActionSheet.tsx +++ b/app/containers/ActionSheet/ActionSheet.tsx @@ -141,7 +141,7 @@ const ActionSheet = React.memo(forwardRef(({ children, theme }: {children: JSX.E {I18n.t('Cancel')} - ) : null), [theme, data, hide()]); + ) : null), [theme, data, hide]); const renderItem = useCallback(({ item }) => , []); From a18b13c06b1e0ac7de01e309312605a4ff321659 Mon Sep 17 00:00:00 2001 From: AlexAlexandre Date: Thu, 15 Jul 2021 20:15:59 -0300 Subject: [PATCH 10/90] [IMPROVE] migrate Avatar component --- .../Avatar/{Avatar.js => Avatar.tsx} | 63 +++++++++---------- app/containers/Avatar/{index.js => index.tsx} | 29 +++------ .../{CustomEmoji.js => CustomEmoji.tsx} | 19 +++--- .../markdown/{Emoji.js => Emoji.tsx} | 27 ++++---- 4 files changed, 64 insertions(+), 74 deletions(-) rename app/containers/Avatar/{Avatar.js => Avatar.tsx} (68%) rename app/containers/Avatar/{index.js => index.tsx} (78%) rename app/containers/EmojiPicker/{CustomEmoji.js => CustomEmoji.tsx} (71%) rename app/containers/markdown/{Emoji.js => Emoji.tsx} (67%) diff --git a/app/containers/Avatar/Avatar.js b/app/containers/Avatar/Avatar.tsx similarity index 68% rename from app/containers/Avatar/Avatar.js rename to app/containers/Avatar/Avatar.tsx index 0b898a3c8e..c5f33d9369 100644 --- a/app/containers/Avatar/Avatar.js +++ b/app/containers/Avatar/Avatar.tsx @@ -1,5 +1,4 @@ import React from 'react'; -import PropTypes from 'prop-types'; import { View } from 'react-native'; import FastImage from '@rocket.chat/react-native-fast-image'; import Touchable from 'react-native-platform-touchable'; @@ -8,6 +7,30 @@ import { settings as RocketChatSettings } from '@rocket.chat/sdk'; import { avatarURL } from '../../utils/avatar'; import Emoji from '../markdown/Emoji'; +export interface IAvatar { + server?: string; + style?: any, + text?: string; + avatar?: string; + emoji?: string; + size?: number; + borderRadius?: number; + type?: string; + children?: JSX.Element; + user?: { + id: string; + token: string; + }; + theme: string; + onPress?(): void; + getCustomEmoji(): any; + avatarETag?: string; + isStatic?: boolean; + rid?: string; + blockUnauthenticatedAccess?: boolean; + serverVersion?: string; +} + const Avatar = React.memo(({ text, size, @@ -27,7 +50,7 @@ const Avatar = React.memo(({ rid, blockUnauthenticatedAccess, serverVersion -}) => { +}: Partial) => { if ((!text && !avatar && !emoji && !rid) || !server) { return null; } @@ -96,35 +119,11 @@ const Avatar = React.memo(({ ); }); -Avatar.propTypes = { - server: PropTypes.string, - style: PropTypes.any, - text: PropTypes.string, - avatar: PropTypes.string, - emoji: PropTypes.string, - size: PropTypes.number, - borderRadius: PropTypes.number, - type: PropTypes.string, - children: PropTypes.object, - user: PropTypes.shape({ - id: PropTypes.string, - token: PropTypes.string - }), - theme: PropTypes.string, - onPress: PropTypes.func, - getCustomEmoji: PropTypes.func, - avatarETag: PropTypes.string, - isStatic: PropTypes.bool, - rid: PropTypes.string, - blockUnauthenticatedAccess: PropTypes.bool, - serverVersion: PropTypes.string -}; - -Avatar.defaultProps = { - text: '', - size: 25, - type: 'd', - borderRadius: 4 -}; +// Avatar.defaultProps = { +// text: '', +// size: 25, +// type: 'd', +// borderRadius: 4 +// }; export default Avatar; diff --git a/app/containers/Avatar/index.js b/app/containers/Avatar/index.tsx similarity index 78% rename from app/containers/Avatar/index.js rename to app/containers/Avatar/index.tsx index 4d7c6d7a50..3fb84d216d 100644 --- a/app/containers/Avatar/index.js +++ b/app/containers/Avatar/index.tsx @@ -1,27 +1,16 @@ import React from 'react'; -import PropTypes from 'prop-types'; import { connect } from 'react-redux'; import { Q } from '@nozbe/watermelondb'; import database from '../../lib/database'; import { getUserSelector } from '../../selectors/login'; -import Avatar from './Avatar'; +import Avatar, {IAvatar} from './Avatar'; -class AvatarContainer extends React.Component { - static propTypes = { - rid: PropTypes.string, - text: PropTypes.string, - type: PropTypes.string, - blockUnauthenticatedAccess: PropTypes.bool, - serverVersion: PropTypes.string - }; +class AvatarContainer extends React.Component, any> { + private mounted: boolean; + private subscription!: any; - static defaultProps = { - text: '', - type: 'd' - }; - - constructor(props) { + constructor(props: Partial) { super(props); this.mounted = false; this.state = { avatarETag: '' }; @@ -32,7 +21,7 @@ class AvatarContainer extends React.Component { this.mounted = true; } - componentDidUpdate(prevProps) { + componentDidUpdate(prevProps: any) { const { text, type } = this.props; if (prevProps.text !== text || prevProps.type !== type) { this.init(); @@ -59,7 +48,7 @@ class AvatarContainer extends React.Component { try { if (this.isDirect) { const { text } = this.props; - const [user] = await usersCollection.query(Q.where('username', text)).fetch(); + const [user] = await usersCollection.query(Q.where('username', text!)).fetch(); record = user; } else { const { rid } = this.props; @@ -71,7 +60,7 @@ class AvatarContainer extends React.Component { if (record) { const observable = record.observe(); - this.subscription = observable.subscribe((r) => { + this.subscription = observable.subscribe((r: any) => { const { avatarETag } = r; if (this.mounted) { this.setState({ avatarETag }); @@ -95,7 +84,7 @@ class AvatarContainer extends React.Component { } } -const mapStateToProps = state => ({ +const mapStateToProps = (state: any) => ({ user: getUserSelector(state), server: state.share.server.server || state.server.server, serverVersion: state.share.server.version || state.server.version, diff --git a/app/containers/EmojiPicker/CustomEmoji.js b/app/containers/EmojiPicker/CustomEmoji.tsx similarity index 71% rename from app/containers/EmojiPicker/CustomEmoji.js rename to app/containers/EmojiPicker/CustomEmoji.tsx index 934155fecf..cb9a9b0ddb 100644 --- a/app/containers/EmojiPicker/CustomEmoji.js +++ b/app/containers/EmojiPicker/CustomEmoji.tsx @@ -1,8 +1,17 @@ import React from 'react'; import FastImage from '@rocket.chat/react-native-fast-image'; -import PropTypes from 'prop-types'; -const CustomEmoji = React.memo(({ baseUrl, emoji, style }) => ( +interface ICustomEmoji { + baseUrl: string, + emoji: { + content: any; + name: string; + extension: any; + }, + style: any +} + +const CustomEmoji = React.memo(({ baseUrl, emoji, style }: ICustomEmoji) => ( ( return prevEmoji === nextEmoji; }); -CustomEmoji.propTypes = { - baseUrl: PropTypes.string.isRequired, - emoji: PropTypes.object.isRequired, - style: PropTypes.any -}; - export default CustomEmoji; diff --git a/app/containers/markdown/Emoji.js b/app/containers/markdown/Emoji.tsx similarity index 67% rename from app/containers/markdown/Emoji.js rename to app/containers/markdown/Emoji.tsx index 800db1735d..e4ac13bff9 100644 --- a/app/containers/markdown/Emoji.js +++ b/app/containers/markdown/Emoji.tsx @@ -1,5 +1,4 @@ import React from 'react'; -import PropTypes from 'prop-types'; import { Text } from 'react-native'; import shortnameToUnicode from '../../utils/shortnameToUnicode'; @@ -8,11 +7,21 @@ import { themes } from '../../constants/colors'; import styles from './styles'; +interface IEmoji { + literal: string; + isMessageContainsOnlyEmoji: boolean; + getCustomEmoji?({}: any): string; + baseUrl: string; + customEmojis?: boolean; + style: object; + theme?: string; +} + const Emoji = React.memo(({ literal, isMessageContainsOnlyEmoji, getCustomEmoji, baseUrl, customEmojis = true, style = {}, theme -}) => { +}: IEmoji) => { const emojiUnicode = shortnameToUnicode(literal); - const emoji = getCustomEmoji && getCustomEmoji(literal.replace(/:/g, '')); + const emoji: any = getCustomEmoji && getCustomEmoji(literal.replace(/:/g, '')); if (emoji && customEmojis) { return ( Date: Thu, 15 Jul 2021 23:31:43 -0300 Subject: [PATCH 11/90] [IMPROVE] migrate BackgroundContainer component --- .../{index.stories.js => index.stories.tsx} | 2 +- .../{index.js => index.tsx} | 22 +++++++++---------- 2 files changed, 12 insertions(+), 12 deletions(-) rename app/containers/BackgroundContainer/{index.stories.js => index.stories.tsx} (95%) rename app/containers/BackgroundContainer/{index.js => index.tsx} (61%) diff --git a/app/containers/BackgroundContainer/index.stories.js b/app/containers/BackgroundContainer/index.stories.tsx similarity index 95% rename from app/containers/BackgroundContainer/index.stories.js rename to app/containers/BackgroundContainer/index.stories.tsx index 0b6c9a1c64..95546ae271 100644 --- a/app/containers/BackgroundContainer/index.stories.js +++ b/app/containers/BackgroundContainer/index.stories.tsx @@ -24,7 +24,7 @@ stories.add('long text', () => ( )); -const ThemeStory = ({ theme, ...props }) => ( +const ThemeStory = ({ theme, ...props }: any) => ( diff --git a/app/containers/BackgroundContainer/index.js b/app/containers/BackgroundContainer/index.tsx similarity index 61% rename from app/containers/BackgroundContainer/index.js rename to app/containers/BackgroundContainer/index.tsx index ed4716b74e..b6580de21c 100644 --- a/app/containers/BackgroundContainer/index.js +++ b/app/containers/BackgroundContainer/index.tsx @@ -1,13 +1,16 @@ import React from 'react'; -import { - ImageBackground, StyleSheet, Text, View, ActivityIndicator -} from 'react-native'; -import PropTypes from 'prop-types'; +import { ImageBackground, StyleSheet, Text, View, ActivityIndicator } from 'react-native'; import { withTheme } from '../../theme'; import sharedStyles from '../../views/Styles'; import { themes } from '../../constants/colors'; +interface IBackgroundContainer { + text: string; + theme: string; + loading: boolean; +} + const styles = StyleSheet.create({ container: { flex: 1 @@ -29,17 +32,14 @@ const styles = StyleSheet.create({ } }); -const BackgroundContainer = ({ theme, text, loading }) => ( +const BackgroundContainer = ({ theme, text, loading }: IBackgroundContainer) => ( {text ? {text} : null} - {loading ? : null} + {/*{loading ? : null}*/} + {loading ? : null} + ); -BackgroundContainer.propTypes = { - text: PropTypes.string, - theme: PropTypes.string, - loading: PropTypes.bool -}; export default withTheme(BackgroundContainer); From 19d8ab1a570ea4363c35383ecfa5948914e8bc0f Mon Sep 17 00:00:00 2001 From: AlexAlexandre Date: Thu, 15 Jul 2021 23:33:57 -0300 Subject: [PATCH 12/90] [IMPROVE] migrate EmojiPicker component (in progress) --- .../{EmojiCategory.js => EmojiCategory.tsx} | 24 +++++++++---------- .../EmojiPicker/{TabBar.js => TabBar.tsx} | 24 +++++++++---------- .../{categories.js => categories.ts} | 0 .../EmojiPicker/{index.js => index.tsx} | 0 .../EmojiPicker/{styles.js => styles.ts} | 0 package.json | 2 ++ yarn.lock | 13 ++++++++++ 7 files changed, 38 insertions(+), 25 deletions(-) rename app/containers/EmojiPicker/{EmojiCategory.js => EmojiCategory.tsx} (82%) rename app/containers/EmojiPicker/{TabBar.js => TabBar.tsx} (70%) rename app/containers/EmojiPicker/{categories.js => categories.ts} (100%) rename app/containers/EmojiPicker/{index.js => index.tsx} (100%) rename app/containers/EmojiPicker/{styles.js => styles.ts} (100%) diff --git a/app/containers/EmojiPicker/EmojiCategory.js b/app/containers/EmojiPicker/EmojiCategory.tsx similarity index 82% rename from app/containers/EmojiPicker/EmojiCategory.js rename to app/containers/EmojiPicker/EmojiCategory.tsx index 8e1a124ffa..7c6fbce762 100644 --- a/app/containers/EmojiPicker/EmojiCategory.js +++ b/app/containers/EmojiPicker/EmojiCategory.tsx @@ -1,5 +1,4 @@ import React from 'react'; -import PropTypes from 'prop-types'; import { Text, TouchableOpacity, FlatList } from 'react-native'; import shortnameToUnicode from '../../utils/shortnameToUnicode'; @@ -7,9 +6,17 @@ import styles from './styles'; import CustomEmoji from './CustomEmoji'; import scrollPersistTaps from '../../utils/scrollPersistTaps'; -const EMOJI_SIZE = 50; +const EMOJI_SIZE: number = 50; -const renderEmoji = (emoji, size, baseUrl) => { +interface IEmoji { + baseUrl: string; + emojis: any; + onEmojiSelected({}: any): void; + emojisPerRow: number; + width: number; +} + +const renderEmoji = (emoji: any, size: number, baseUrl: string) => { if (emoji && emoji.isCustom) { return ; } @@ -20,16 +27,9 @@ const renderEmoji = (emoji, size, baseUrl) => { ); }; -class EmojiCategory extends React.Component { - static propTypes = { - baseUrl: PropTypes.string.isRequired, - emojis: PropTypes.any, - onEmojiSelected: PropTypes.func, - emojisPerRow: PropTypes.number, - width: PropTypes.number - } +class EmojiCategory extends React.Component { - renderItem(emoji) { + renderItem(emoji: any) { const { baseUrl, onEmojiSelected } = this.props; return ( { - shouldComponentUpdate(nextProps) { + shouldComponentUpdate(nextProps: any) { const { activeTab, theme } = this.props; if (nextProps.activeTab !== activeTab) { return true; @@ -25,9 +25,7 @@ export default class TabBar extends React.Component { } render() { - const { - tabs, goToPage, tabEmojiStyle, activeTab, theme - } = this.props; + const { tabs, goToPage, tabEmojiStyle, activeTab, theme } = this.props; return ( diff --git a/app/containers/EmojiPicker/categories.js b/app/containers/EmojiPicker/categories.ts similarity index 100% rename from app/containers/EmojiPicker/categories.js rename to app/containers/EmojiPicker/categories.ts diff --git a/app/containers/EmojiPicker/index.js b/app/containers/EmojiPicker/index.tsx similarity index 100% rename from app/containers/EmojiPicker/index.js rename to app/containers/EmojiPicker/index.tsx diff --git a/app/containers/EmojiPicker/styles.js b/app/containers/EmojiPicker/styles.ts similarity index 100% rename from app/containers/EmojiPicker/styles.js rename to app/containers/EmojiPicker/styles.ts diff --git a/package.json b/package.json index e60404c673..a621a1d7fa 100644 --- a/package.json +++ b/package.json @@ -138,10 +138,12 @@ "@storybook/addon-storyshots": "5.3.19", "@storybook/react-native": "5.3.19", "@types/jest": "^26.0.24", + "@types/lodash": "^4.14.171", "@types/react": "^17.0.14", "@types/react-native": "^0.62.7", "@types/react-native-config-reader": "^4.1.0", "@types/react-native-platform-touchable": "^1.1.2", + "@types/react-native-scrollable-tab-view": "^0.10.2", "@types/react-redux": "^7.1.18", "@types/react-test-renderer": "^17.0.1", "@typescript-eslint/eslint-plugin": "^4.28.3", diff --git a/yarn.lock b/yarn.lock index 31a4ad7a50..cefceb60d0 100644 --- a/yarn.lock +++ b/yarn.lock @@ -2834,6 +2834,11 @@ resolved "https://registry.yarnpkg.com/@types/json5/-/json5-0.0.29.tgz#ee28707ae94e11d2b827bcbe5270bcea7f3e71ee" integrity sha1-7ihweulOEdK4J7y+UnC86n8+ce4= +"@types/lodash@^4.14.171": + version "4.14.171" + resolved "https://registry.yarnpkg.com/@types/lodash/-/lodash-4.14.171.tgz#f01b3a5fe3499e34b622c362a46a609fdb23573b" + integrity sha512-7eQ2xYLLI/LsicL2nejW9Wyko3lcpN6O/z0ZLHrEQsg280zIdCv1t/0m6UtBjUHokCGBQ3gYTbHzDkZ1xOBwwg== + "@types/minimatch@*": version "3.0.3" resolved "https://registry.yarnpkg.com/@types/minimatch/-/minimatch-3.0.3.tgz#3dca0e3f33b200fc7d1139c0cd96c1268cadfd9d" @@ -2890,6 +2895,14 @@ "@types/react" "*" "@types/react-native" "*" +"@types/react-native-scrollable-tab-view@^0.10.2": + version "0.10.2" + resolved "https://registry.yarnpkg.com/@types/react-native-scrollable-tab-view/-/react-native-scrollable-tab-view-0.10.2.tgz#a6006efcad320b9dffd23b080cfe153cebcbc1a6" + integrity sha512-N6IObGTHFKIi2/lFqMLcUICjzqA8phbNWUC6apAdfBnJSrGWkHjTctPt28qpYaQA6KqtCsmhZ19RpzszDje0pg== + dependencies: + "@types/react" "*" + "@types/react-native" "*" + "@types/react-native@*": version "0.64.12" resolved "https://registry.yarnpkg.com/@types/react-native/-/react-native-0.64.12.tgz#1c6a3226c26d7a5949cdf8878e6cfe95fe0951d6" From 66a4627fec5491526378bac12128f87a5d328d2d Mon Sep 17 00:00:00 2001 From: AlexAlexandre Date: Fri, 16 Jul 2021 16:31:28 -0300 Subject: [PATCH 13/90] =?UTF-8?q?[IMPROVE]=20fix=20typescript=20error=20?= =?UTF-8?q?=E2=80=9CNo=20overload=20matches=20this=20call=E2=80=9D=20with?= =?UTF-8?q?=20some=20@ts-ignore=20for=20not=20changing=20the=20implementat?= =?UTF-8?q?ion?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- app/containers/Avatar/index.tsx | 1 + app/containers/BackgroundContainer/index.tsx | 5 ++--- app/containers/EmojiPicker/EmojiCategory.tsx | 1 + 3 files changed, 4 insertions(+), 3 deletions(-) diff --git a/app/containers/Avatar/index.tsx b/app/containers/Avatar/index.tsx index 3fb84d216d..e9a3541ac7 100644 --- a/app/containers/Avatar/index.tsx +++ b/app/containers/Avatar/index.tsx @@ -65,6 +65,7 @@ class AvatarContainer extends React.Component, any> { if (this.mounted) { this.setState({ avatarETag }); } else { + // @ts-ignore this.state.avatarETag = avatarETag; } }); diff --git a/app/containers/BackgroundContainer/index.tsx b/app/containers/BackgroundContainer/index.tsx index b6580de21c..21324d7917 100644 --- a/app/containers/BackgroundContainer/index.tsx +++ b/app/containers/BackgroundContainer/index.tsx @@ -36,9 +36,8 @@ const BackgroundContainer = ({ theme, text, loading }: IBackgroundContainer) => {text ? {text} : null} - {/*{loading ? : null}*/} - {loading ? : null} - + {/*@ts-ignore*/} + {loading ? : null} ); diff --git a/app/containers/EmojiPicker/EmojiCategory.tsx b/app/containers/EmojiPicker/EmojiCategory.tsx index 7c6fbce762..69feafc939 100644 --- a/app/containers/EmojiPicker/EmojiCategory.tsx +++ b/app/containers/EmojiPicker/EmojiCategory.tsx @@ -54,6 +54,7 @@ class EmojiCategory extends React.Component { const marginHorizontal = (width - (numColumns * EMOJI_SIZE)) / 2; return ( + // @ts-ignore Date: Mon, 19 Jul 2021 12:06:45 -0300 Subject: [PATCH 14/90] [IMPROVE] migrate the emoji component --- app/containers/EmojiPicker/CustomEmoji.tsx | 7 +-- app/containers/EmojiPicker/EmojiCategory.tsx | 8 ++- app/containers/EmojiPicker/TabBar.tsx | 8 +-- app/containers/EmojiPicker/index.tsx | 58 +++++++++++--------- app/containers/markdown/Emoji.tsx | 8 ++- app/emojis.ts | 2 +- 6 files changed, 50 insertions(+), 41 deletions(-) diff --git a/app/containers/EmojiPicker/CustomEmoji.tsx b/app/containers/EmojiPicker/CustomEmoji.tsx index cb9a9b0ddb..ea848cbd79 100644 --- a/app/containers/EmojiPicker/CustomEmoji.tsx +++ b/app/containers/EmojiPicker/CustomEmoji.tsx @@ -1,13 +1,10 @@ import React from 'react'; import FastImage from '@rocket.chat/react-native-fast-image'; +import {TEmoji} from "./index"; interface ICustomEmoji { baseUrl: string, - emoji: { - content: any; - name: string; - extension: any; - }, + emoji: TEmoji, style: any } diff --git a/app/containers/EmojiPicker/EmojiCategory.tsx b/app/containers/EmojiPicker/EmojiCategory.tsx index 69feafc939..2da9ae7c47 100644 --- a/app/containers/EmojiPicker/EmojiCategory.tsx +++ b/app/containers/EmojiPicker/EmojiCategory.tsx @@ -14,6 +14,8 @@ interface IEmoji { onEmojiSelected({}: any): void; emojisPerRow: number; width: number; + style: any; + tabLabel: string; } const renderEmoji = (emoji: any, size: number, baseUrl: string) => { @@ -27,7 +29,7 @@ const renderEmoji = (emoji: any, size: number, baseUrl: string) => { ); }; -class EmojiCategory extends React.Component { +class EmojiCategory extends React.Component> { renderItem(emoji: any) { const { baseUrl, onEmojiSelected } = this.props; @@ -35,10 +37,10 @@ class EmojiCategory extends React.Component { onEmojiSelected(emoji)} + onPress={() => onEmojiSelected!(emoji)} testID={`reaction-picker-${ emoji && emoji.isCustom ? emoji.content : emoji }`} > - {renderEmoji(emoji, EMOJI_SIZE, baseUrl)} + {renderEmoji(emoji, EMOJI_SIZE, baseUrl!)} ); } diff --git a/app/containers/EmojiPicker/TabBar.tsx b/app/containers/EmojiPicker/TabBar.tsx index b0bf102669..1f6303c144 100644 --- a/app/containers/EmojiPicker/TabBar.tsx +++ b/app/containers/EmojiPicker/TabBar.tsx @@ -11,7 +11,7 @@ interface ITabBar { theme: string } -export default class TabBar extends React.Component { +export default class TabBar extends React.Component> { shouldComponentUpdate(nextProps: any) { const { activeTab, theme } = this.props; @@ -29,16 +29,16 @@ export default class TabBar extends React.Component { return ( - {tabs.map((tab, i) => ( + {tabs!.map((tab, i) => ( goToPage(i)} + onPress={() => goToPage!(i)} style={styles.tab} testID={`reaction-picker-${ tab }`} > {tab} - {activeTab === i ? : } + {activeTab === i ? : } ))} diff --git a/app/containers/EmojiPicker/index.tsx b/app/containers/EmojiPicker/index.tsx index 89446c067a..4ef376a951 100644 --- a/app/containers/EmojiPicker/index.tsx +++ b/app/containers/EmojiPicker/index.tsx @@ -1,6 +1,5 @@ import React, { Component } from 'react'; import { View } from 'react-native'; -import PropTypes from 'prop-types'; import ScrollableTabView from 'react-native-scrollable-tab-view'; import { dequal } from 'dequal'; import { connect } from 'react-redux'; @@ -18,22 +17,30 @@ import shortnameToUnicode from '../../utils/shortnameToUnicode'; import log from '../../utils/log'; import { themes } from '../../constants/colors'; import { withTheme } from '../../theme'; +import {IEmoji} from "../markdown/Emoji"; const scrollProps = { keyboardShouldPersistTaps: 'always', keyboardDismissMode: 'none' }; -class EmojiPicker extends Component { - static propTypes = { - baseUrl: PropTypes.string.isRequired, - customEmojis: PropTypes.object, - onEmojiSelected: PropTypes.func, - tabEmojiStyle: PropTypes.object, - theme: PropTypes.string - }; +export type TEmoji = { + content: any; + name: string; + extension: any; + isCustom: boolean; +} + +interface IEmojiPickerState { + frequentlyUsed: []; + customEmojis: any; + show: boolean; + width: number | null; +} + +class EmojiPicker extends Component { - constructor(props) { + constructor(props: IEmoji) { super(props); const customEmojis = Object.keys(props.customEmojis) .filter(item => item === props.customEmojis[item].name) @@ -55,7 +62,7 @@ class EmojiPicker extends Component { this.setState({ show: true }); } - shouldComponentUpdate(nextProps, nextState) { + shouldComponentUpdate(nextProps: any, nextState: any) { const { frequentlyUsed, show, width } = this.state; const { theme } = this.props; if (nextProps.theme !== theme) { @@ -73,19 +80,19 @@ class EmojiPicker extends Component { return false; } - onEmojiSelected = (emoji) => { + onEmojiSelected = (emoji: TEmoji) => { try { const { onEmojiSelected } = this.props; if (emoji.isCustom) { this._addFrequentlyUsed({ content: emoji.content, extension: emoji.extension, isCustom: true }); - onEmojiSelected(`:${ emoji.content }:`); + onEmojiSelected!(`:${ emoji.content }:`); } else { const content = emoji; this._addFrequentlyUsed({ content, isCustom: false }); const shortname = `:${ emoji }:`; - onEmojiSelected(shortnameToUnicode(shortname), shortname); + onEmojiSelected!(shortnameToUnicode(shortname), shortname); } } catch (e) { log(e); @@ -93,10 +100,10 @@ class EmojiPicker extends Component { } // eslint-disable-next-line react/sort-comp - _addFrequentlyUsed = protectedFunction(async(emoji) => { + _addFrequentlyUsed = protectedFunction(async(emoji: TEmoji) => { const db = database.active; const freqEmojiCollection = db.get('frequently_used_emojis'); - let freqEmojiRecord; + let freqEmojiRecord: any; try { freqEmojiRecord = await freqEmojiCollection.find(emoji.content); } catch (error) { @@ -105,11 +112,11 @@ class EmojiPicker extends Component { await db.action(async() => { if (freqEmojiRecord) { - await freqEmojiRecord.update((f) => { + await freqEmojiRecord.update((f: any) => { f.count += 1; }); } else { - await freqEmojiCollection.create((f) => { + await freqEmojiCollection.create((f: any) => { f._raw = sanitizedRaw({ id: emoji.content }, freqEmojiCollection.schema); Object.assign(f, emoji); f.count = 1; @@ -121,8 +128,8 @@ class EmojiPicker extends Component { updateFrequentlyUsed = async() => { const db = database.active; const frequentlyUsedRecords = await db.get('frequently_used_emojis').query().fetch(); - let frequentlyUsed = orderBy(frequentlyUsedRecords, ['count'], ['desc']); - frequentlyUsed = frequentlyUsed.map((item) => { + let frequentlyUsed: any = orderBy(frequentlyUsedRecords, ['count'], ['desc']); + frequentlyUsed = frequentlyUsed.map((item: TEmoji) => { if (item.isCustom) { return { content: item.content, extension: item.extension, isCustom: item.isCustom }; } @@ -131,9 +138,9 @@ class EmojiPicker extends Component { this.setState({ frequentlyUsed }); } - onLayout = ({ nativeEvent: { layout: { width } } }) => this.setState({ width }); + onLayout = ({ nativeEvent: { layout: { width } } }: any) => this.setState({ width }); - renderCategory(category, i, label) { + renderCategory(category: any, i: number, label: string) { const { frequentlyUsed, customEmojis, width } = this.state; const { baseUrl } = this.props; @@ -150,7 +157,7 @@ class EmojiPicker extends Component { emojis={emojis} onEmojiSelected={emoji => this.onEmojiSelected(emoji)} style={styles.categoryContainer} - width={width} + width={width!} baseUrl={baseUrl} tabLabel={label} /> @@ -168,8 +175,9 @@ class EmojiPicker extends Component { } + /*@ts-ignore*/ contentProps={scrollProps} - style={{ backgroundColor: themes[theme].focusedBackground }} + style={{ backgroundColor: themes[theme!].focusedBackground }} > { categories.tabs.map((tab, i) => ( @@ -184,7 +192,7 @@ class EmojiPicker extends Component { } } -const mapStateToProps = state => ({ +const mapStateToProps = (state: IEmojiPickerState) => ({ customEmojis: state.customEmojis }); diff --git a/app/containers/markdown/Emoji.tsx b/app/containers/markdown/Emoji.tsx index e4ac13bff9..16cb190ea7 100644 --- a/app/containers/markdown/Emoji.tsx +++ b/app/containers/markdown/Emoji.tsx @@ -7,14 +7,16 @@ import { themes } from '../../constants/colors'; import styles from './styles'; -interface IEmoji { +export interface IEmoji { literal: string; isMessageContainsOnlyEmoji: boolean; - getCustomEmoji?({}: any): string; + getCustomEmoji?: Function; baseUrl: string; - customEmojis?: boolean; + customEmojis?: any; style: object; theme?: string; + onEmojiSelected?: Function; + tabEmojiStyle?: object; } const Emoji = React.memo(({ diff --git a/app/emojis.ts b/app/emojis.ts index b5ed98f520..172d15adf7 100644 --- a/app/emojis.ts +++ b/app/emojis.ts @@ -1,4 +1,4 @@ -export const emojisByCategory = { +export const emojisByCategory: any = { people: [ 'grinning', 'grimacing', From d060edb05f64b6b33e1c380581aa55fdb8f33319 Mon Sep 17 00:00:00 2001 From: AlexAlexandre Date: Mon, 19 Jul 2021 16:52:45 -0300 Subject: [PATCH 15/90] [IMPROVE] keeping migrate some files and fix some lint errors --- .../{AppVersion.js => AppVersion.tsx} | 7 +---- app/containers/{Check.js => Check.tsx} | 12 +++---- .../{FormContainer.js => FormContainer.tsx} | 24 ++++++-------- app/containers/Header/{index.js => index.tsx} | 31 +++++++++++-------- ...fierComponent.js => NotifierComponent.tsx} | 25 +++++++-------- .../InAppNotification/{index.js => index.tsx} | 12 ++----- app/lib/Navigation.ts | 2 +- 7 files changed, 48 insertions(+), 65 deletions(-) rename app/containers/{AppVersion.js => AppVersion.tsx} (83%) rename app/containers/{Check.js => Check.tsx} (52%) rename app/containers/{FormContainer.js => FormContainer.tsx} (78%) rename app/containers/Header/{index.js => index.tsx} (77%) rename app/containers/InAppNotification/{NotifierComponent.js => NotifierComponent.tsx} (89%) rename app/containers/InAppNotification/{index.js => index.tsx} (84%) diff --git a/app/containers/AppVersion.js b/app/containers/AppVersion.tsx similarity index 83% rename from app/containers/AppVersion.js rename to app/containers/AppVersion.tsx index 2e679d968a..69ea690646 100644 --- a/app/containers/AppVersion.js +++ b/app/containers/AppVersion.tsx @@ -1,6 +1,5 @@ import React from 'react'; import { StyleSheet, View, Text } from 'react-native'; -import PropTypes from 'prop-types'; import { themes } from '../constants/colors'; import sharedStyles from '../views/Styles'; @@ -21,14 +20,10 @@ const styles = StyleSheet.create({ } }); -const AppVersion = React.memo(({ theme }) => ( +const AppVersion = React.memo(({ theme }: {theme: string}) => ( {I18n.t('Version_no', { version: '' })}{getReadableVersion} )); -AppVersion.propTypes = { - theme: PropTypes.string -}; - export default AppVersion; diff --git a/app/containers/Check.js b/app/containers/Check.tsx similarity index 52% rename from app/containers/Check.js rename to app/containers/Check.tsx index e9a6b73b8b..42ecfa9b6c 100644 --- a/app/containers/Check.js +++ b/app/containers/Check.tsx @@ -1,10 +1,13 @@ import React from 'react'; import { StyleSheet } from 'react-native'; -import PropTypes from 'prop-types'; import { CustomIcon } from '../lib/Icons'; import { themes } from '../constants/colors'; +type TCheck = { + style: object, + theme: string +} const styles = StyleSheet.create({ icon: { width: 22, @@ -13,11 +16,6 @@ const styles = StyleSheet.create({ } }); -const Check = React.memo(({ theme, style }) => ); - -Check.propTypes = { - style: PropTypes.object, - theme: PropTypes.string -}; +const Check = React.memo(({ theme, style }: TCheck) => ); export default Check; diff --git a/app/containers/FormContainer.js b/app/containers/FormContainer.tsx similarity index 78% rename from app/containers/FormContainer.js rename to app/containers/FormContainer.tsx index ac58502c7f..f552e9dd10 100644 --- a/app/containers/FormContainer.js +++ b/app/containers/FormContainer.tsx @@ -1,6 +1,5 @@ import React from 'react'; import { ScrollView, StyleSheet, View } from 'react-native'; -import PropTypes from 'prop-types'; import { themes } from '../constants/colors'; import sharedStyles from '../views/Styles'; @@ -11,27 +10,32 @@ import AppVersion from './AppVersion'; import { isTablet } from '../utils/deviceInfo'; import SafeAreaView from './SafeAreaView'; +interface IFormContainer { + theme: string; + testID: string; + children: JSX.Element; +} + const styles = StyleSheet.create({ scrollView: { minHeight: '100%' } }); -export const FormContainerInner = ({ children }) => ( +export const FormContainerInner = ({ children }: {children: JSX.Element}) => ( {children} ); -const FormContainer = ({ - children, theme, testID, ...props -}) => ( +const FormContainer = ({ children, theme, testID, ...props }: IFormContainer) => ( + {/*@ts-ignore*/} ); -FormContainer.propTypes = { - theme: PropTypes.string, - testID: PropTypes.string, - children: PropTypes.element -}; - -FormContainerInner.propTypes = { - children: PropTypes.element -}; - export default FormContainer; diff --git a/app/containers/Header/index.js b/app/containers/Header/index.tsx similarity index 77% rename from app/containers/Header/index.js rename to app/containers/Header/index.tsx index 4663c7d434..19d26e028a 100644 --- a/app/containers/Header/index.js +++ b/app/containers/Header/index.tsx @@ -1,5 +1,4 @@ import React from 'react'; -import PropTypes from 'prop-types'; import { SafeAreaView } from 'react-native-safe-area-context'; import { View, StyleSheet } from 'react-native'; import { themes } from '../../constants/colors'; @@ -10,7 +9,7 @@ import { withTheme } from '../../theme'; // Get from https://github.com/react-navigation/react-navigation/blob/master/packages/stack/src/views/Header/HeaderSegment.tsx#L69 export const headerHeight = isIOS ? 44 : 56; -export const getHeaderHeight = (isLandscape) => { +export const getHeaderHeight = (isLandscape: boolean) => { if (isIOS) { if (isLandscape && !isTablet) { return 32; @@ -21,7 +20,15 @@ export const getHeaderHeight = (isLandscape) => { return 56; }; -export const getHeaderTitlePosition = ({ insets, numIconsRight }) => ({ +type THeaderTitlePosition = { + insets: { + left: number; + right: number; + }; + numIconsRight: number; +} + +export const getHeaderTitlePosition = ({ insets, numIconsRight }: THeaderTitlePosition) => ({ left: insets.left + 60, right: insets.right + Math.max(45 * numIconsRight, 15) }); @@ -35,9 +42,14 @@ const styles = StyleSheet.create({ } }); -const Header = ({ - theme, headerLeft, headerTitle, headerRight -}) => ( +interface IHeader { + theme: string; + headerLeft(): void; + headerTitle(): void; + headerRight(): void; +} + +const Header = ({ theme, headerLeft, headerTitle, headerRight }: IHeader) => ( {headerLeft ? headerLeft() : null} @@ -47,11 +59,4 @@ const Header = ({ ); -Header.propTypes = { - theme: PropTypes.string, - headerLeft: PropTypes.element, - headerTitle: PropTypes.element, - headerRight: PropTypes.element -}; - export default withTheme(Header); diff --git a/app/containers/InAppNotification/NotifierComponent.js b/app/containers/InAppNotification/NotifierComponent.tsx similarity index 89% rename from app/containers/InAppNotification/NotifierComponent.js rename to app/containers/InAppNotification/NotifierComponent.tsx index 6268cd0981..c537ae1cef 100644 --- a/app/containers/InAppNotification/NotifierComponent.js +++ b/app/containers/InAppNotification/NotifierComponent.tsx @@ -1,6 +1,5 @@ import React from 'react'; import { StyleSheet, View, Text } from 'react-native'; -import PropTypes from 'prop-types'; import Touchable from 'react-native-platform-touchable'; import { connect } from 'react-redux'; import { Notifier } from 'react-native-notifier'; @@ -16,10 +15,13 @@ import { goRoom } from '../../utils/goRoom'; import Navigation from '../../lib/Navigation'; import { useOrientation } from '../../dimensions'; +interface INotifierComponent { + notification: object; + isMasterDetail: boolean; +} + const AVATAR_SIZE = 48; -const BUTTON_HIT_SLOP = { - top: 12, right: 12, bottom: 12, left: 12 -}; +const BUTTON_HIT_SLOP = { top: 12, right: 12, bottom: 12, left: 12 }; const styles = StyleSheet.create({ container: { @@ -64,16 +66,16 @@ const styles = StyleSheet.create({ const hideNotification = () => Notifier.hideNotification(); -const NotifierComponent = React.memo(({ notification, isMasterDetail }) => { - const { theme } = useTheme(); +const NotifierComponent = React.memo(({ notification, isMasterDetail }: INotifierComponent) => { + const { theme }: any = useTheme(); const insets = useSafeAreaInsets(); const { isLandscape } = useOrientation(); - const { text, payload } = notification; + const { text, payload }: any = notification; const { type, rid } = payload; const name = type === 'd' ? payload.sender.username : payload.name; // if sub is not on local database, title and avatar will be null, so we use payload from notification - const { title = name, avatar = name } = notification; + const { title = name, avatar = name }: any = notification; const onPress = () => { const { prid, _id } = payload; @@ -129,12 +131,7 @@ const NotifierComponent = React.memo(({ notification, isMasterDetail }) => { ); }); -NotifierComponent.propTypes = { - notification: PropTypes.object, - isMasterDetail: PropTypes.bool -}; - -const mapStateToProps = state => ({ +const mapStateToProps = (state: any) => ({ isMasterDetail: state.app.isMasterDetail }); diff --git a/app/containers/InAppNotification/index.js b/app/containers/InAppNotification/index.tsx similarity index 84% rename from app/containers/InAppNotification/index.js rename to app/containers/InAppNotification/index.tsx index 7d22b127ad..d00f80879a 100644 --- a/app/containers/InAppNotification/index.js +++ b/app/containers/InAppNotification/index.tsx @@ -1,5 +1,4 @@ import React, { memo, useEffect } from 'react'; -import PropTypes from 'prop-types'; import { NotifierRoot, Notifier, Easing } from 'react-native-notifier'; import { connect } from 'react-redux'; import { dequal } from 'dequal'; @@ -11,8 +10,8 @@ import { getActiveRoute } from '../../utils/navigation'; export const INAPP_NOTIFICATION_EMITTER = 'NotificationInApp'; -const InAppNotification = memo(({ rooms, appState }) => { - const show = (notification) => { +const InAppNotification = memo(({ rooms, appState }: {rooms: any, appState: string}) => { + const show = (notification: any) => { if (appState !== 'foreground') { return; } @@ -44,14 +43,9 @@ const InAppNotification = memo(({ rooms, appState }) => { return ; }, (prevProps, nextProps) => dequal(prevProps.rooms, nextProps.rooms)); -const mapStateToProps = state => ({ +const mapStateToProps = (state: any) => ({ rooms: state.room.rooms, appState: state.app.ready && state.app.foreground ? 'foreground' : 'background' }); -InAppNotification.propTypes = { - rooms: PropTypes.array, - appState: PropTypes.string -}; - export default connect(mapStateToProps)(InAppNotification); diff --git a/app/lib/Navigation.ts b/app/lib/Navigation.ts index 7b7cb1a21b..b3bddf9c6f 100644 --- a/app/lib/Navigation.ts +++ b/app/lib/Navigation.ts @@ -4,7 +4,7 @@ import { CommonActions, StackActions, NavigationContainerRef } from '@react-navi const navigationRef = React.createRef(); const routeNameRef: React.MutableRefObject = React.createRef(); -function navigate(name: string, params: any) { +function navigate(name: string, params?: any) { navigationRef.current?.navigate(name, params); } From 8ef11eab495f677bf3697a93f2881fe7a1c4fd4a Mon Sep 17 00:00:00 2001 From: AlexAlexandre Date: Tue, 20 Jul 2021 15:14:36 -0300 Subject: [PATCH 16/90] [IMPROVE] enable jsx compiler --- jsconfig.json | 1 + 1 file changed, 1 insertion(+) diff --git a/jsconfig.json b/jsconfig.json index b65649bb27..49b83ca08b 100644 --- a/jsconfig.json +++ b/jsconfig.json @@ -1,5 +1,6 @@ { "compilerOptions": { + "jsx": "react", "allowSyntheticDefaultImports": true, "experimentalDecorators": true }, From b795b6fc5aa24f29f534dc3efb5d4a03e84693a5 Mon Sep 17 00:00:00 2001 From: AlexAlexandre Date: Tue, 20 Jul 2021 17:01:35 -0300 Subject: [PATCH 17/90] [IMPROVE] migrating component the Header to reduce lint errors --- .../MessageActions/{Header.js => Header.tsx} | 68 +++++----- .../MessageActions/{index.js => index.tsx} | 121 ++++++++++-------- 2 files changed, 99 insertions(+), 90 deletions(-) rename app/containers/MessageActions/{Header.js => Header.tsx} (75%) rename app/containers/MessageActions/{index.js => index.tsx} (82%) diff --git a/app/containers/MessageActions/Header.js b/app/containers/MessageActions/Header.tsx similarity index 75% rename from app/containers/MessageActions/Header.js rename to app/containers/MessageActions/Header.tsx index 78aa9ae3d5..2330d72892 100644 --- a/app/containers/MessageActions/Header.js +++ b/app/containers/MessageActions/Header.tsx @@ -1,8 +1,5 @@ import React, { useEffect, useState, useCallback } from 'react'; -import PropTypes from 'prop-types'; -import { - View, Text, FlatList, StyleSheet -} from 'react-native'; +import { View, Text, FlatList, StyleSheet } from 'react-native'; import { withTheme } from '../../theme'; import { themes } from '../../constants/colors'; @@ -13,6 +10,27 @@ import database from '../../lib/database'; import { Button } from '../ActionSheet'; import { useDimensions } from '../../dimensions'; import sharedStyles from '../../views/Styles'; +import {TEmoji} from "../EmojiPicker"; + +interface IHeader { + handleReaction: Function; + server: string; + message: object; + isMasterDetail: boolean; + theme: string; +} + +interface THeaderItem { + item: TEmoji; + onReaction: Function; + server: string; + theme: string; +} + +interface THeaderFooter { + onReaction: any; + theme: string; +} export const HEADER_HEIGHT = 36; const ITEM_SIZE = 36; @@ -43,13 +61,11 @@ const styles = StyleSheet.create({ } }); -const keyExtractor = item => item?.id || item; +const keyExtractor = (item: any) => item?.id || item; const DEFAULT_EMOJIS = ['clap', '+1', 'heart_eyes', 'grinning', 'thinking_face', 'smiley']; -const HeaderItem = React.memo(({ - item, onReaction, server, theme -}) => ( +const HeaderItem = React.memo(({ item, onReaction, server, theme }: THeaderItem) => ( )); -HeaderItem.propTypes = { - item: PropTypes.string, - onReaction: PropTypes.func, - server: PropTypes.string, - theme: PropTypes.string -}; - -const HeaderFooter = React.memo(({ onReaction, theme }) => ( + +const HeaderFooter = React.memo(({ onReaction, theme }: THeaderFooter) => ( )); -HeaderFooter.propTypes = { - onReaction: PropTypes.func, - theme: PropTypes.string -}; - -const Header = React.memo(({ - handleReaction, server, message, isMasterDetail, theme -}) => { + +const Header = React.memo(({ handleReaction, server, message, isMasterDetail, theme }: IHeader) => { const [items, setItems] = useState([]); - const { width, height } = useDimensions(); + const { width, height }: any = useDimensions(); const setEmojis = async() => { try { @@ -114,11 +118,11 @@ const Header = React.memo(({ setEmojis(); }, []); - const onReaction = ({ emoji }) => handleReaction(emoji, message); + const onReaction = ({ emoji }: {emoji: TEmoji}) => handleReaction(emoji, message); - const renderItem = useCallback(({ item }) => ); + const renderItem = useCallback(({ item }) => , []); - const renderFooter = useCallback(() => ); + const renderFooter = useCallback(() => , []); return ( @@ -135,11 +139,5 @@ const Header = React.memo(({ ); }); -Header.propTypes = { - handleReaction: PropTypes.func, - server: PropTypes.string, - message: PropTypes.object, - isMasterDetail: PropTypes.bool, - theme: PropTypes.string -}; + export default withTheme(Header); diff --git a/app/containers/MessageActions/index.js b/app/containers/MessageActions/index.tsx similarity index 82% rename from app/containers/MessageActions/index.js rename to app/containers/MessageActions/index.tsx index cf0ba69188..d5779809a5 100644 --- a/app/containers/MessageActions/index.js +++ b/app/containers/MessageActions/index.tsx @@ -17,6 +17,37 @@ import { useActionSheet } from '../ActionSheet'; import Header, { HEADER_HEIGHT } from './Header'; import events from '../../utils/log/events'; +interface IMessageActions { + room: { + rid: string | number; + autoTranslateLanguage: any; + autoTranslate: any; + reactWhenReadOnly: any; + }; + tmid: string; + user: { + id: string | number; + }; + editInit: Function; + reactionInit: Function; + onReactionPress: Function; + replyInit: Function; + isMasterDetail: boolean; + isReadOnly: boolean; + Message_AllowDeleting: boolean; + Message_AllowDeleting_BlockDeleteInMinutes: number; + Message_AllowEditing: boolean; + Message_AllowEditing_BlockEditInMinutes: number; + Message_AllowPinning: boolean; + Message_AllowStarring: boolean; + Message_Read_Receipt_Store_Users: boolean; + server: string; + editMessagePermission: []; + deleteMessagePermission: []; + forceDeleteMessagePermission: []; + pinMessagePermission: []; +} + const MessageActions = React.memo(forwardRef(({ room, tmid, @@ -39,9 +70,9 @@ const MessageActions = React.memo(forwardRef(({ deleteMessagePermission, forceDeleteMessagePermission, pinMessagePermission -}, ref) => { - let permissions = {}; - const { showActionSheet, hideActionSheet } = useActionSheet(); +}: IMessageActions, ref): any => { + let permissions: any = {}; + const { showActionSheet, hideActionSheet }: any = useActionSheet(); const getPermissions = async() => { try { @@ -58,9 +89,9 @@ const MessageActions = React.memo(forwardRef(({ } }; - const isOwn = message => message.u && message.u._id === user.id; + const isOwn = (message: any) => message.u && message.u._id === user.id; - const allowEdit = (message) => { + const allowEdit = (message: any) => { if (isReadOnly) { return false; } @@ -75,7 +106,7 @@ const MessageActions = React.memo(forwardRef(({ if (message.ts != null) { msgTs = moment(message.ts); } - let currentTsDiff; + let currentTsDiff: any; if (msgTs != null) { currentTsDiff = moment().diff(msgTs, 'minutes'); } @@ -84,7 +115,7 @@ const MessageActions = React.memo(forwardRef(({ return true; }; - const allowDelete = (message) => { + const allowDelete = (message: any) => { if (isReadOnly) { return false; } @@ -106,7 +137,7 @@ const MessageActions = React.memo(forwardRef(({ if (message.ts != null) { msgTs = moment(message.ts); } - let currentTsDiff; + let currentTsDiff: any; if (msgTs != null) { currentTsDiff = moment().diff(msgTs, 'minutes'); } @@ -115,19 +146,19 @@ const MessageActions = React.memo(forwardRef(({ return true; }; - const getPermalink = message => RocketChat.getPermalinkMessage(message); + const getPermalink = (message: any) => RocketChat.getPermalinkMessage(message); - const handleReply = (message) => { + const handleReply = (message: any) => { logEvent(events.ROOM_MSG_ACTION_REPLY); replyInit(message, true); }; - const handleEdit = (message) => { + const handleEdit = (message: any) => { logEvent(events.ROOM_MSG_ACTION_EDIT); editInit(message); }; - const handleCreateDiscussion = (message) => { + const handleCreateDiscussion = (message: any) => { logEvent(events.ROOM_MSG_ACTION_DISCUSSION); const params = { message, channel: room, showCloseModal: true }; if (isMasterDetail) { @@ -137,7 +168,7 @@ const MessageActions = React.memo(forwardRef(({ } }; - const handleUnread = async(message) => { + const handleUnread = async(message: any) => { logEvent(events.ROOM_MSG_ACTION_UNREAD); const { id: messageId, ts } = message; const { rid } = room; @@ -149,7 +180,7 @@ const MessageActions = React.memo(forwardRef(({ const subRecord = await subCollection.find(rid); await db.action(async() => { try { - await subRecord.update(sub => sub.lastOpen = ts); + await subRecord.update((sub: any) => sub.lastOpen = ts); } catch { // do nothing } @@ -162,10 +193,10 @@ const MessageActions = React.memo(forwardRef(({ } }; - const handlePermalink = async(message) => { + const handlePermalink = async(message: any) => { logEvent(events.ROOM_MSG_ACTION_PERMALINK); try { - const permalink = await getPermalink(message); + const permalink: any = await getPermalink(message); Clipboard.setString(permalink); EventEmitter.emit(LISTENER, { message: I18n.t('Permalink_copied_to_clipboard') }); } catch { @@ -173,28 +204,28 @@ const MessageActions = React.memo(forwardRef(({ } }; - const handleCopy = async(message) => { + const handleCopy = async(message: any) => { logEvent(events.ROOM_MSG_ACTION_COPY); await Clipboard.setString(message?.attachments?.[0]?.description || message.msg); EventEmitter.emit(LISTENER, { message: I18n.t('Copied_to_clipboard') }); }; - const handleShare = async(message) => { + const handleShare = async(message: any) => { logEvent(events.ROOM_MSG_ACTION_SHARE); try { - const permalink = await getPermalink(message); + const permalink: any = await getPermalink(message); Share.share({ message: permalink }); } catch { logEvent(events.ROOM_MSG_ACTION_SHARE_F); } }; - const handleQuote = (message) => { + const handleQuote = (message: any) => { logEvent(events.ROOM_MSG_ACTION_QUOTE); replyInit(message, false); }; - const handleStar = async(message) => { + const handleStar = async(message: any) => { logEvent(message.starred ? events.ROOM_MSG_ACTION_UNSTAR : events.ROOM_MSG_ACTION_STAR); try { await RocketChat.toggleStarMessage(message.id, message.starred); @@ -205,7 +236,7 @@ const MessageActions = React.memo(forwardRef(({ } }; - const handlePin = async(message) => { + const handlePin = async(message: any) => { logEvent(events.ROOM_MSG_ACTION_PIN); try { await RocketChat.togglePinMessage(message.id, message.pinned); @@ -215,7 +246,7 @@ const MessageActions = React.memo(forwardRef(({ } }; - const handleReaction = (shortname, message) => { + const handleReaction = (shortname: any, message: any) => { logEvent(events.ROOM_MSG_ACTION_REACTION); if (shortname) { onReactionPress(shortname, message.id); @@ -226,7 +257,7 @@ const MessageActions = React.memo(forwardRef(({ hideActionSheet(); }; - const handleReadReceipt = (message) => { + const handleReadReceipt = (message: any) => { if (isMasterDetail) { Navigation.navigate('ModalStackNavigator', { screen: 'ReadReceiptsView', params: { messageId: message.id } }); } else { @@ -234,11 +265,11 @@ const MessageActions = React.memo(forwardRef(({ } }; - const handleToggleTranslation = async(message) => { + const handleToggleTranslation = async(message: any) => { try { const db = database.active; await db.action(async() => { - await message.update((m) => { + await message.update((m: any) => { m.autoTranslate = !m.autoTranslate; m._updatedAt = new Date(); }); @@ -258,7 +289,7 @@ const MessageActions = React.memo(forwardRef(({ } }; - const handleReport = async(message) => { + const handleReport = async(message: any) => { logEvent(events.ROOM_MSG_ACTION_REPORT); try { await RocketChat.reportMessage(message.id); @@ -269,7 +300,9 @@ const MessageActions = React.memo(forwardRef(({ } }; - const handleDelete = (message) => { + const handleDelete = (message: any) => { + // TODO - migrate this function for ts when fix the lint erros + // @ts-ignore showConfirmationAlert({ message: I18n.t('You_will_not_be_able_to_recover_this_message'), confirmationText: I18n.t('Delete'), @@ -285,8 +318,8 @@ const MessageActions = React.memo(forwardRef(({ }); }; - const getOptions = (message) => { - let options = []; + const getOptions = (message: any) => { + let options: any = []; // Reply if (!isReadOnly) { @@ -409,7 +442,7 @@ const MessageActions = React.memo(forwardRef(({ return options; }; - const showMessageActions = async(message) => { + const showMessageActions = async(message: any) => { logEvent(events.ROOM_SHOW_MSG_ACTIONS); await getPermissions(); showActionSheet({ @@ -428,30 +461,8 @@ const MessageActions = React.memo(forwardRef(({ useImperativeHandle(ref, () => ({ showMessageActions })); })); -MessageActions.propTypes = { - room: PropTypes.object, - tmid: PropTypes.string, - user: PropTypes.object, - editInit: PropTypes.func, - reactionInit: PropTypes.func, - onReactionPress: PropTypes.func, - replyInit: PropTypes.func, - isReadOnly: PropTypes.bool, - Message_AllowDeleting: PropTypes.bool, - Message_AllowDeleting_BlockDeleteInMinutes: PropTypes.number, - Message_AllowEditing: PropTypes.bool, - Message_AllowEditing_BlockEditInMinutes: PropTypes.number, - Message_AllowPinning: PropTypes.bool, - Message_AllowStarring: PropTypes.bool, - Message_Read_Receipt_Store_Users: PropTypes.bool, - server: PropTypes.string, - editMessagePermission: PropTypes.array, - deleteMessagePermission: PropTypes.array, - forceDeleteMessagePermission: PropTypes.array, - pinMessagePermission: PropTypes.array -}; - -const mapStateToProps = state => ({ + +const mapStateToProps = (state: any) => ({ server: state.server.server, Message_AllowDeleting: state.settings.Message_AllowDeleting, Message_AllowDeleting_BlockDeleteInMinutes: state.settings.Message_AllowDeleting_BlockDeleteInMinutes, From 4d07101a5663a9fa02e057687b91134ff682291a Mon Sep 17 00:00:00 2001 From: AlexAlexandre Date: Tue, 20 Jul 2021 17:31:08 -0300 Subject: [PATCH 18/90] [IMPROVE] disable the "missing file extension" rule at eslintrc --- .eslintrc.js | 10 ++++++++++ 1 file changed, 10 insertions(+) diff --git a/.eslintrc.js b/.eslintrc.js index ceb371ef3c..81232dfbd6 100644 --- a/.eslintrc.js +++ b/.eslintrc.js @@ -33,6 +33,16 @@ module.exports = { "mocha": true }, "rules": { + "import/extensions": [ + "error", + "ignorePackages", + { + "js": "warning", + "jsx": "warning", + "ts": "warning", + "tsx": "warning" + } + ], "react/jsx-filename-extension": [1, { "extensions": [".js", ".jsx", ".ts", ".tsx"] }], From e0930466b4fc2765f049f7d6aea8455f07e55a2c Mon Sep 17 00:00:00 2001 From: AlexAlexandre Date: Wed, 21 Jul 2021 10:54:39 -0300 Subject: [PATCH 19/90] [IMPROVE] migrate the List component --- .../{ListContainer.js => ListContainer.tsx} | 11 ++- .../List/{ListHeader.js => ListHeader.tsx} | 19 ++-- .../List/{ListIcon.js => ListIcon.tsx} | 25 ++---- .../List/{ListInfo.js => ListInfo.tsx} | 19 ++-- .../List/{ListItem.js => ListItem.tsx} | 89 ++++++++----------- .../List/{ListSection.js => ListSection.tsx} | 15 ++-- .../{ListSeparator.js => ListSeparator.tsx} | 12 ++- .../List/{constants.js => constants.ts} | 0 app/containers/List/{index.js => index.ts} | 0 app/containers/List/{styles.js => styles.ts} | 0 10 files changed, 77 insertions(+), 113 deletions(-) rename app/containers/List/{ListContainer.js => ListContainer.tsx} (78%) rename app/containers/List/{ListHeader.js => ListHeader.tsx} (73%) rename app/containers/List/{ListIcon.js => ListIcon.tsx} (69%) rename app/containers/List/{ListInfo.js => ListInfo.tsx} (73%) rename app/containers/List/{ListItem.js => ListItem.tsx} (67%) rename app/containers/List/{ListSection.js => ListSection.tsx} (74%) rename app/containers/List/{ListSeparator.js => ListSeparator.tsx} (72%) rename app/containers/List/{constants.js => constants.ts} (100%) rename app/containers/List/{index.js => index.ts} (100%) rename app/containers/List/{styles.js => styles.ts} (100%) diff --git a/app/containers/List/ListContainer.js b/app/containers/List/ListContainer.tsx similarity index 78% rename from app/containers/List/ListContainer.js rename to app/containers/List/ListContainer.tsx index f1be3705a5..dac7604729 100644 --- a/app/containers/List/ListContainer.js +++ b/app/containers/List/ListContainer.tsx @@ -1,6 +1,5 @@ import React from 'react'; import { ScrollView, StyleSheet } from 'react-native'; -import PropTypes from 'prop-types'; import { withTheme } from '../../theme'; import scrollPersistTaps from '../../utils/scrollPersistTaps'; @@ -10,7 +9,11 @@ const styles = StyleSheet.create({ } }); -const ListContainer = React.memo(({ children, ...props }) => ( +type TListContainer = { + children: JSX.Element; +} +const ListContainer = React.memo(({ children, ...props }: TListContainer) => ( + // @ts-ignore ( )); -ListContainer.propTypes = { - children: PropTypes.array.isRequired -}; - ListContainer.displayName = 'List.Container'; export default withTheme(ListContainer); diff --git a/app/containers/List/ListHeader.js b/app/containers/List/ListHeader.tsx similarity index 73% rename from app/containers/List/ListHeader.js rename to app/containers/List/ListHeader.tsx index 1166e25bdf..54d8b009bb 100644 --- a/app/containers/List/ListHeader.js +++ b/app/containers/List/ListHeader.tsx @@ -1,6 +1,5 @@ import React from 'react'; import { View, Text, StyleSheet } from 'react-native'; -import PropTypes from 'prop-types'; import sharedStyles from '../../views/Styles'; import { themes } from '../../constants/colors'; @@ -19,22 +18,18 @@ const styles = StyleSheet.create({ } }); -const ListHeader = React.memo(({ title, theme, translateTitle }) => ( +interface IListHeader { + title: string; + theme: string; + translateTitle: boolean; +} + +const ListHeader = React.memo(({ title, theme, translateTitle = true }: IListHeader) => ( {translateTitle ? I18n.t(title) : title} )); -ListHeader.propTypes = { - title: PropTypes.string, - theme: PropTypes.string, - translateTitle: PropTypes.bool -}; - -ListHeader.defaultProps = { - translateTitle: true -}; - ListHeader.displayName = 'List.Header'; export default withTheme(ListHeader); diff --git a/app/containers/List/ListIcon.js b/app/containers/List/ListIcon.tsx similarity index 69% rename from app/containers/List/ListIcon.js rename to app/containers/List/ListIcon.tsx index 44941f2ca5..2fc41e850c 100644 --- a/app/containers/List/ListIcon.js +++ b/app/containers/List/ListIcon.tsx @@ -1,12 +1,19 @@ import React from 'react'; import { View, StyleSheet } from 'react-native'; -import PropTypes from 'prop-types'; import { themes } from '../../constants/colors'; import { CustomIcon } from '../../lib/Icons'; import { withTheme } from '../../theme'; import { ICON_SIZE } from './constants'; +interface IListIcon { + theme: string; + name: string; + color: string; + style: object; + testID: string; +} + const styles = StyleSheet.create({ icon: { alignItems: 'center', @@ -14,13 +21,7 @@ const styles = StyleSheet.create({ } }); -const ListIcon = React.memo(({ - theme, - name, - color, - style, - testID -}) => ( +const ListIcon = React.memo(({ theme, name, color, style, testID }: IListIcon) => ( )); -ListIcon.propTypes = { - theme: PropTypes.string, - name: PropTypes.string, - color: PropTypes.string, - style: PropTypes.object, - testID: PropTypes.string -}; - ListIcon.displayName = 'List.Icon'; export default withTheme(ListIcon); diff --git a/app/containers/List/ListInfo.js b/app/containers/List/ListInfo.tsx similarity index 73% rename from app/containers/List/ListInfo.js rename to app/containers/List/ListInfo.tsx index e0cb9eae74..5f75258e08 100644 --- a/app/containers/List/ListInfo.js +++ b/app/containers/List/ListInfo.tsx @@ -1,6 +1,5 @@ import React from 'react'; import { View, Text, StyleSheet } from 'react-native'; -import PropTypes from 'prop-types'; import sharedStyles from '../../views/Styles'; import { themes } from '../../constants/colors'; @@ -19,22 +18,18 @@ const styles = StyleSheet.create({ } }); -const ListInfo = React.memo(({ info, translateInfo, theme }) => ( +interface IListHeader { + info: string; + theme: string; + translateInfo: boolean; +} + +const ListInfo = React.memo(({ info, theme, translateInfo = true }: IListHeader) => ( {translateInfo ? I18n.t(info) : info} )); -ListInfo.propTypes = { - info: PropTypes.string, - theme: PropTypes.string, - translateInfo: PropTypes.bool -}; - -ListInfo.defaultProps = { - translateInfo: true -}; - ListInfo.displayName = 'List.Info'; export default withTheme(ListInfo); diff --git a/app/containers/List/ListItem.js b/app/containers/List/ListItem.tsx similarity index 67% rename from app/containers/List/ListItem.js rename to app/containers/List/ListItem.tsx index aa3ecbdf01..fa943da0db 100644 --- a/app/containers/List/ListItem.js +++ b/app/containers/List/ListItem.tsx @@ -1,8 +1,5 @@ import React from 'react'; -import { - View, Text, StyleSheet, I18nManager -} from 'react-native'; -import PropTypes from 'prop-types'; +import { View, Text, StyleSheet, I18nManager } from 'react-native'; import Touch from '../../utils/touch'; import { themes } from '../../constants/colors'; @@ -58,10 +55,26 @@ const styles = StyleSheet.create({ } }); +interface IListItemContent { + title?: string; + subtitle?: string; + left?: Function; + right?: Function; + disabled?: boolean; + testID?: string; + theme: string; + color?: string; + translateTitle?: boolean; + translateSubtitle?: boolean; + showActionIndicator?: boolean; + fontScale?: number; + alert?: boolean; +} + const Content = React.memo(({ - title, subtitle, disabled, testID, left, right, color, theme, translateTitle, translateSubtitle, showActionIndicator, fontScale, alert -}) => ( - + title, subtitle, disabled, testID, left, right, color, theme, fontScale, alert, translateTitle = true, translateSubtitle = true, showActionIndicator = false +}: IListItemContent) => ( + {left ? ( @@ -92,9 +105,16 @@ const Content = React.memo(({ )); -const Button = React.memo(({ - onPress, backgroundColor, underlayColor, ...props -}) => ( +interface IListItemButton { + title?: string; + onPress: Function; + disabled?: boolean; + theme: string; + backgroundColor: string; + underlayColor?: string; +} + +const Button = React.memo(({ onPress, backgroundColor, underlayColor, ...props }: IListItemButton) => ( onPress(props.title)} style={{ backgroundColor: backgroundColor || themes[props.theme].backgroundColor }} @@ -106,7 +126,13 @@ const Button = React.memo(({ )); -const ListItem = React.memo(({ ...props }) => { +interface IListItem { + onPress: Function; + theme: string; + backgroundColor: string; +} + +const ListItem = React.memo(({ ...props }: IListItem) => { if (props.onPress) { return @@ -68,26 +85,8 @@ const ImageContainer = React.memo(({ ); }, (prevProps, nextProps) => dequal(prevProps.file, nextProps.file) && prevProps.theme === nextProps.theme); -ImageContainer.propTypes = { - file: PropTypes.object, - imageUrl: PropTypes.string, - showAttachment: PropTypes.func, - theme: PropTypes.string, - getCustomEmoji: PropTypes.func -}; ImageContainer.displayName = 'MessageImageContainer'; - -MessageImage.propTypes = { - img: PropTypes.string, - theme: PropTypes.string -}; ImageContainer.displayName = 'MessageImage'; - -Button.propTypes = { - children: PropTypes.node, - onPress: PropTypes.func, - theme: PropTypes.string -}; ImageContainer.displayName = 'MessageButton'; export default ImageContainer; diff --git a/app/containers/message/Reactions.js b/app/containers/message/Reactions.tsx similarity index 75% rename from app/containers/message/Reactions.js rename to app/containers/message/Reactions.tsx index 7502057f69..5a399cf1bf 100644 --- a/app/containers/message/Reactions.js +++ b/app/containers/message/Reactions.tsx @@ -1,6 +1,5 @@ import React, { useContext } from 'react'; import { View, Text } from 'react-native'; -import PropTypes from 'prop-types'; import Touchable from './Touchable'; import { CustomIcon } from '../../lib/Icons'; @@ -11,7 +10,26 @@ import { themes } from '../../constants/colors'; import { withTheme } from '../../theme'; import MessageContext from './Context'; -const AddReaction = React.memo(({ theme }) => { +type TMessageAddReaction = { + theme: string +}; + +type TMessageReaction = { + reaction: { + usernames: []; + emoji: object; + }; + getCustomEmoji: Function; + theme: string; +}; + +interface IMessageReactions { + reactions: object[]; + getCustomEmoji: Function; + theme: string; +} + +const AddReaction = React.memo(({ theme }: TMessageAddReaction) => { const { reactionInit } = useContext(MessageContext); return ( { ); }); -const Reaction = React.memo(({ - reaction, getCustomEmoji, theme -}) => { - const { - onReactionPress, onReactionLongPress, baseUrl, user - } = useContext(MessageContext); - const reacted = reaction.usernames.findIndex(item => item === user.username) !== -1; +const Reaction = React.memo(({reaction, getCustomEmoji, theme}: TMessageReaction) => { + const { onReactionPress, onReactionLongPress, baseUrl, user } = useContext(MessageContext); + const reacted = reaction.usernames.findIndex((item: TMessageReaction) => item === user.username) !== -1; return ( onReactionPress(reaction.emoji)} @@ -60,15 +74,13 @@ const Reaction = React.memo(({ ); }); -const Reactions = React.memo(({ - reactions, getCustomEmoji, theme -}) => { +const Reactions = React.memo(({ reactions, getCustomEmoji, theme }: IMessageReactions) => { if (!Array.isArray(reactions) || reactions.length === 0) { return null; } return ( - {reactions.map(reaction => ( + {reactions.map((reaction: any) => ( { +const RCTouchable: any = React.memo(({ children, ...props }: any) => { const { onLongPress } = useContext(MessageContext); return ( @@ -16,10 +15,9 @@ const RCTouchable = React.memo(({ children, ...props }) => { ); }); -RCTouchable.propTypes = { - children: PropTypes.node -}; -RCTouchable.Ripple = (...args) => Touchable.Ripple(...args); + +// @ts-ignore +RCTouchable.Ripple = (...args: any[]) => Touchable.Ripple(...args); RCTouchable.SelectableBackgroundBorderless = () => Touchable.SelectableBackgroundBorderless(); export default RCTouchable; diff --git a/app/containers/message/constants.js b/app/containers/message/constants.ts similarity index 100% rename from app/containers/message/constants.js rename to app/containers/message/constants.ts diff --git a/app/containers/message/styles.js b/app/containers/message/styles.ts similarity index 98% rename from app/containers/message/styles.js rename to app/containers/message/styles.ts index dd0dff627d..3d4334f7c9 100644 --- a/app/containers/message/styles.js +++ b/app/containers/message/styles.ts @@ -3,7 +3,7 @@ import { StyleSheet } from 'react-native'; import sharedStyles from '../../views/Styles'; import { isTablet } from '../../utils/deviceInfo'; -export default StyleSheet.create({ +export default StyleSheet.create({ root: { flexDirection: 'row' }, diff --git a/app/containers/message/utils.js b/app/containers/message/utils.ts similarity index 89% rename from app/containers/message/utils.js rename to app/containers/message/utils.ts index 22f4d90ca9..e793daf902 100644 --- a/app/containers/message/utils.js +++ b/app/containers/message/utils.ts @@ -1,7 +1,7 @@ import I18n from '../../i18n'; import { DISCUSSION } from './constants'; -export const formatMessageCount = (count, type) => { +export const formatMessageCount = (count: number, type: string) => { const discussion = type === DISCUSSION; let text = discussion ? I18n.t('No_messages_yet') : null; if (count === 1) { @@ -60,9 +60,13 @@ export const SYSTEM_MESSAGE_TYPES_WITH_AUTHOR_NAME = [ SYSTEM_MESSAGE_TYPES.USER_LEFT_CHANNEL ]; -export const getInfoMessage = ({ - type, role, msg, author -}) => { +type TInfoMessage = { + type: string; + role: string; + msg: string; + author: { username: string }; +} +export const getInfoMessage = ({type, role, msg, author}: TInfoMessage) => { const { username } = author; if (type === 'rm') { return I18n.t('Message_removed'); @@ -110,13 +114,13 @@ export const getInfoMessage = ({ return ''; }; -export const getMessageTranslation = (message, autoTranslateLanguage) => { +export const getMessageTranslation = (message: {translations: any}, autoTranslateLanguage: string) => { if (!autoTranslateLanguage) { return null; } const { translations } = message; if (translations) { - const translation = translations.find(trans => trans.language === autoTranslateLanguage); + const translation = translations.find((trans: any) => trans.language === autoTranslateLanguage); return translation && translation.value; } return null; diff --git a/app/externalModules.d.ts b/app/externalModules.d.ts index 2a8d0014c7..b87ff6322e 100644 --- a/app/externalModules.d.ts +++ b/app/externalModules.d.ts @@ -2,3 +2,4 @@ declare module 'rn-extensions-share'; declare module 'commonmark'; declare module 'commonmark-react-renderer'; declare module 'remove-markdown'; +declare module 'react-native-image-progress' From d3986689e5cb3f5c74338f18f35509b10a3d040c Mon Sep 17 00:00:00 2001 From: AlexAlexandre Date: Thu, 22 Jul 2021 15:30:37 -0300 Subject: [PATCH 24/90] [IMPROVE] fix the Reply message errors --- app/containers/message/Reply.tsx | 85 +++++++++++++++++++------------- 1 file changed, 50 insertions(+), 35 deletions(-) diff --git a/app/containers/message/Reply.tsx b/app/containers/message/Reply.tsx index 5dcf0447fc..b7b402c997 100644 --- a/app/containers/message/Reply.tsx +++ b/app/containers/message/Reply.tsx @@ -1,6 +1,5 @@ import React, { useContext } from 'react'; import { View, Text, StyleSheet } from 'react-native'; -import PropTypes from 'prop-types'; import moment from 'moment'; import { transparentize } from 'color2k'; import { dequal } from 'dequal'; @@ -69,7 +68,49 @@ const styles = StyleSheet.create({ } }); -const Title = React.memo(({ attachment, timeFormat, theme }) => { +type TAttachment = { + author_name: string; + message_link: string; + ts: string; + text: string; + title: string; + short: boolean; + value: string; + title_link: string; + author_link: string; + type: string; + color: string; + description: string; + fields: TAttachment[]; +} + +type TMessageTitle = { + attachment: Partial + timeFormat: string; + theme: string; +}; + +type TMessageDescription = { + attachment: Partial + getCustomEmoji: Function; + theme: string; +}; + +type TMessageFields = { + attachment: Partial; + theme: string; + getCustomEmoji: Function; +}; + +interface IMessageReply { + attachment: Partial + timeFormat: string; + index: number; + theme: string; + getCustomEmoji: Function; +} + +const Title = React.memo(({ attachment, timeFormat, theme }: TMessageTitle) => { if (!attachment.author_name) { return null; } @@ -82,15 +123,14 @@ const Title = React.memo(({ attachment, timeFormat, theme }) => { ); }); -const Description = React.memo(({ - attachment, getCustomEmoji, theme -}) => { +const Description = React.memo(({ attachment, getCustomEmoji, theme }: TMessageDescription) => { const text = attachment.text || attachment.title; if (!text) { return null; } const { baseUrl, user } = useContext(MessageContext); return ( + // @ts-ignore { +const Fields = React.memo(({ attachment, theme, getCustomEmoji }: TMessageFields) => { if (!attachment.fields) { return null; } @@ -123,6 +163,7 @@ const Fields = React.memo(({ attachment, theme, getCustomEmoji }) => { {attachment.fields.map(field => ( {field.title} + {/*@ts-ignore*/} { ); }, (prevProps, nextProps) => dequal(prevProps.attachment.fields, nextProps.attachment.fields) && prevProps.theme === nextProps.theme); -const Reply = React.memo(({ - attachment, timeFormat, index, getCustomEmoji, theme -}) => { +const Reply = React.memo(({ attachment, timeFormat, index, getCustomEmoji, theme }: IMessageReply) => { if (!attachment) { return null; } @@ -203,8 +242,9 @@ const Reply = React.memo(({ /> + {/*@ts-ignore*/} dequal(prevProps.attachment, nextProps.attachment) && prevProps.theme === nextProps.theme); -Reply.propTypes = { - attachment: PropTypes.object, - timeFormat: PropTypes.string, - index: PropTypes.number, - theme: PropTypes.string, - getCustomEmoji: PropTypes.func -}; Reply.displayName = 'MessageReply'; - -Title.propTypes = { - attachment: PropTypes.object, - timeFormat: PropTypes.string, - theme: PropTypes.string -}; Title.displayName = 'MessageReplyTitle'; - -Description.propTypes = { - attachment: PropTypes.object, - getCustomEmoji: PropTypes.func, - theme: PropTypes.string -}; Description.displayName = 'MessageReplyDescription'; - -Fields.propTypes = { - attachment: PropTypes.object, - theme: PropTypes.string, - getCustomEmoji: PropTypes.func -}; Fields.displayName = 'MessageReplyFields'; export default Reply; From 43c4234f73db7db61500ecd9b9da7a5818b7b858 Mon Sep 17 00:00:00 2001 From: AlexAlexandre Date: Thu, 22 Jul 2021 15:59:48 -0300 Subject: [PATCH 25/90] [IMPROVE] fix some errors pointed out in LGTM --- app/containers/message/Image.tsx | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/app/containers/message/Image.tsx b/app/containers/message/Image.tsx index 9c3a97cbce..c5dbaedc35 100644 --- a/app/containers/message/Image.tsx +++ b/app/containers/message/Image.tsx @@ -1,6 +1,5 @@ import React, { useContext } from 'react'; import { View } from 'react-native'; -import PropTypes from 'prop-types'; import FastImage from '@rocket.chat/react-native-fast-image'; import { dequal } from 'dequal'; import { createImageProgress } from 'react-native-image-progress'; @@ -86,7 +85,6 @@ const ImageContainer = React.memo(({file, imageUrl, showAttachment, getCustomEmo }, (prevProps, nextProps) => dequal(prevProps.file, nextProps.file) && prevProps.theme === nextProps.theme); ImageContainer.displayName = 'MessageImageContainer'; -ImageContainer.displayName = 'MessageImage'; -ImageContainer.displayName = 'MessageButton'; +MessageImage.displayName = 'MessageImage'; export default ImageContainer; From 6db54e992062887ed77c0b0fd43c800421dc00aa Mon Sep 17 00:00:00 2001 From: AlexAlexandre Date: Thu, 22 Jul 2021 17:09:06 -0300 Subject: [PATCH 26/90] [IMPROVE] - migrating the message container (in progress) --- .../{Attachments.js => Attachments.tsx} | 20 +++---- .../message/{Blocks.js => Blocks.ts} | 20 +++---- .../message/{CallButton.js => CallButton.tsx} | 14 ++--- app/containers/message/Image.tsx | 2 +- .../{MessageAvatar.js => MessageAvatar.tsx} | 27 +++++---- .../{MessageError.js => MessageError.tsx} | 12 ++-- .../{ReadReceipt.js => ReadReceipt.tsx} | 15 +++-- .../{RepliedThread.js => RepliedThread.tsx} | 23 ++++---- .../message/{Thread.js => Thread.tsx} | 22 ++++--- app/containers/message/{Urls.js => Urls.tsx} | 58 +++++++++---------- app/containers/message/{User.js => User.tsx} | 37 ++++++------ .../message/{Video.js => Video.tsx} | 26 +++++---- 12 files changed, 139 insertions(+), 137 deletions(-) rename app/containers/message/{Attachments.js => Attachments.tsx} (81%) rename app/containers/message/{Blocks.js => Blocks.ts} (62%) rename app/containers/message/{CallButton.js => CallButton.tsx} (83%) rename app/containers/message/{MessageAvatar.js => MessageAvatar.tsx} (74%) rename app/containers/message/{MessageError.js => MessageError.tsx} (81%) rename app/containers/message/{ReadReceipt.js => ReadReceipt.tsx} (74%) rename app/containers/message/{RepliedThread.js => RepliedThread.tsx} (83%) rename app/containers/message/{Thread.js => Thread.tsx} (80%) rename app/containers/message/{Urls.js => Urls.tsx} (82%) rename app/containers/message/{User.js => User.tsx} (84%) rename app/containers/message/{Video.js => Video.tsx} (81%) diff --git a/app/containers/message/Attachments.js b/app/containers/message/Attachments.tsx similarity index 81% rename from app/containers/message/Attachments.js rename to app/containers/message/Attachments.tsx index 0d068e9fdf..74be125523 100644 --- a/app/containers/message/Attachments.js +++ b/app/containers/message/Attachments.tsx @@ -1,20 +1,27 @@ import React from 'react'; import { dequal } from 'dequal'; -import PropTypes from 'prop-types'; import Image from './Image'; import Audio from './Audio'; import Video from './Video'; import Reply from './Reply'; +interface IMessageAttachments { + attachments: any; + timeFormat: string; + showAttachment: Function; + getCustomEmoji: Function; + theme: string; +} + const Attachments = React.memo(({ attachments, timeFormat, showAttachment, getCustomEmoji, theme -}) => { +}: IMessageAttachments) => { if (!attachments || attachments.length === 0) { return null; } - return attachments.map((file, index) => { + return attachments.map((file: any, index: number) => { if (file.image_url) { return ; } @@ -30,13 +37,6 @@ const Attachments = React.memo(({ }); }, (prevProps, nextProps) => dequal(prevProps.attachments, nextProps.attachments) && prevProps.theme === nextProps.theme); -Attachments.propTypes = { - attachments: PropTypes.array, - timeFormat: PropTypes.string, - showAttachment: PropTypes.func, - getCustomEmoji: PropTypes.func, - theme: PropTypes.string -}; Attachments.displayName = 'MessageAttachments'; export default Attachments; diff --git a/app/containers/message/Blocks.js b/app/containers/message/Blocks.ts similarity index 62% rename from app/containers/message/Blocks.js rename to app/containers/message/Blocks.ts index ba74ebe205..62b1f2d22f 100644 --- a/app/containers/message/Blocks.js +++ b/app/containers/message/Blocks.ts @@ -1,15 +1,19 @@ import React from 'react'; -import PropTypes from 'prop-types'; import { messageBlockWithContext } from '../UIKit/MessageBlock'; -const Blocks = React.memo(({ - blocks, id: mid, rid, blockAction -}) => { +interface IMessageBlocks { + blocks: any; + id: string; + rid: string; + blockAction: Function; +} + +const Blocks = React.memo(({ blocks, id: mid, rid, blockAction }: IMessageBlocks) => { if (blocks && blocks.length > 0) { const appId = blocks[0]?.appId || ''; return React.createElement( messageBlockWithContext({ - action: async({ actionId, value, blockId }) => { + action: async({ actionId, value, blockId }: any) => { await blockAction({ actionId, appId, @@ -27,12 +31,6 @@ const Blocks = React.memo(({ return null; }); -Blocks.propTypes = { - blocks: PropTypes.array, - id: PropTypes.string, - rid: PropTypes.string, - blockAction: PropTypes.func -}; Blocks.displayName = 'MessageBlocks'; export default Blocks; diff --git a/app/containers/message/CallButton.js b/app/containers/message/CallButton.tsx similarity index 83% rename from app/containers/message/CallButton.js rename to app/containers/message/CallButton.tsx index 4c701a6c8f..a0ba95d32a 100644 --- a/app/containers/message/CallButton.js +++ b/app/containers/message/CallButton.tsx @@ -1,6 +1,5 @@ import React from 'react'; import { View, Text } from 'react-native'; -import PropTypes from 'prop-types'; import Touchable from './Touchable'; import { BUTTON_HIT_SLOP } from './utils'; @@ -9,9 +8,12 @@ import I18n from '../../i18n'; import { CustomIcon } from '../../lib/Icons'; import { themes } from '../../constants/colors'; -const CallButton = React.memo(({ - theme, callJitsi -}) => ( +interface IMessageCallButton { + theme: string; + callJitsi: Function; +} + +const CallButton = React.memo(({ theme, callJitsi }: IMessageCallButton) => ( )); -CallButton.propTypes = { - theme: PropTypes.string, - callJitsi: PropTypes.func -}; CallButton.displayName = 'CallButton'; export default CallButton; diff --git a/app/containers/message/Image.tsx b/app/containers/message/Image.tsx index c5dbaedc35..36b9d0f4ad 100644 --- a/app/containers/message/Image.tsx +++ b/app/containers/message/Image.tsx @@ -25,7 +25,7 @@ type TMessageImage = { interface IMessageImage { file: { image_url: string; description: string; }; - imageUrl: string; + imageUrl?: string; showAttachment: Function; theme: string; getCustomEmoji: Function; diff --git a/app/containers/message/MessageAvatar.js b/app/containers/message/MessageAvatar.tsx similarity index 74% rename from app/containers/message/MessageAvatar.js rename to app/containers/message/MessageAvatar.tsx index 7fcdffb552..26a2969934 100644 --- a/app/containers/message/MessageAvatar.js +++ b/app/containers/message/MessageAvatar.tsx @@ -1,13 +1,26 @@ import React, { useContext } from 'react'; -import PropTypes from 'prop-types'; import Avatar from '../Avatar'; import styles from './styles'; import MessageContext from './Context'; +interface IMessageAvatar { + isHeader: boolean; + avatar: string; + emoji: string; + author: { + username: string + _id: string; + }; + small: boolean; + navToRoomInfo: Function; + getCustomEmoji(): void; + theme: string; +} + const MessageAvatar = React.memo(({ isHeader, avatar, author, small, navToRoomInfo, emoji, getCustomEmoji, theme -}) => { +}: IMessageAvatar) => { const { user } = useContext(MessageContext); if (isHeader && author) { const navParam = { @@ -31,16 +44,6 @@ const MessageAvatar = React.memo(({ return null; }); -MessageAvatar.propTypes = { - isHeader: PropTypes.bool, - avatar: PropTypes.string, - emoji: PropTypes.string, - author: PropTypes.obj, - small: PropTypes.bool, - navToRoomInfo: PropTypes.func, - getCustomEmoji: PropTypes.func, - theme: PropTypes.string -}; MessageAvatar.displayName = 'MessageAvatar'; export default MessageAvatar; diff --git a/app/containers/message/MessageError.js b/app/containers/message/MessageError.tsx similarity index 81% rename from app/containers/message/MessageError.js rename to app/containers/message/MessageError.tsx index b3e3969a1b..ed525fd78b 100644 --- a/app/containers/message/MessageError.js +++ b/app/containers/message/MessageError.tsx @@ -1,5 +1,4 @@ import React, { useContext } from 'react'; -import PropTypes from 'prop-types'; import Touchable from './Touchable'; import { CustomIcon } from '../../lib/Icons'; @@ -8,7 +7,12 @@ import { BUTTON_HIT_SLOP } from './utils'; import { themes } from '../../constants/colors'; import MessageContext from './Context'; -const MessageError = React.memo(({ hasError, theme }) => { +interface IMessageError { + hasError: boolean; + theme: string; +} + +const MessageError = React.memo(({ hasError, theme }: IMessageError) => { if (!hasError) { return null; } @@ -20,10 +24,6 @@ const MessageError = React.memo(({ hasError, theme }) => { ); }, (prevProps, nextProps) => prevProps.hasError === nextProps.hasError && prevProps.theme === nextProps.theme); -MessageError.propTypes = { - hasError: PropTypes.bool, - theme: PropTypes.string -}; MessageError.displayName = 'MessageError'; export default MessageError; diff --git a/app/containers/message/ReadReceipt.js b/app/containers/message/ReadReceipt.tsx similarity index 74% rename from app/containers/message/ReadReceipt.js rename to app/containers/message/ReadReceipt.tsx index 5ca392f6d1..8a5298eea8 100644 --- a/app/containers/message/ReadReceipt.js +++ b/app/containers/message/ReadReceipt.tsx @@ -1,11 +1,16 @@ import React from 'react'; -import PropTypes from 'prop-types'; import { themes } from '../../constants/colors'; import { CustomIcon } from '../../lib/Icons'; import styles from './styles'; -const ReadReceipt = React.memo(({ isReadReceiptEnabled, unread, theme }) => { +interface IMessageReadReceipt { + isReadReceiptEnabled: boolean; + unread: boolean; + theme: string; +} + +const ReadReceipt = React.memo(({ isReadReceiptEnabled, unread, theme }: IMessageReadReceipt) => { if (isReadReceiptEnabled && !unread && unread !== null) { return ; } @@ -13,10 +18,4 @@ const ReadReceipt = React.memo(({ isReadReceiptEnabled, unread, theme }) => { }); ReadReceipt.displayName = 'MessageReadReceipt'; -ReadReceipt.propTypes = { - isReadReceiptEnabled: PropTypes.bool, - unread: PropTypes.bool, - theme: PropTypes.bool -}; - export default ReadReceipt; diff --git a/app/containers/message/RepliedThread.js b/app/containers/message/RepliedThread.tsx similarity index 83% rename from app/containers/message/RepliedThread.js rename to app/containers/message/RepliedThread.tsx index 46be5b1f63..d91c3f0080 100644 --- a/app/containers/message/RepliedThread.js +++ b/app/containers/message/RepliedThread.tsx @@ -1,6 +1,5 @@ import React, { memo, useEffect, useState } from 'react'; import { View } from 'react-native'; -import PropTypes from 'prop-types'; import { CustomIcon } from '../../lib/Icons'; import styles from './styles'; @@ -8,9 +7,19 @@ import { themes } from '../../constants/colors'; import I18n from '../../i18n'; import Markdown from '../markdown'; +interface IMessageRepliedThread { + tmid: string; + tmsg: string; + id: string; + isHeader: boolean; + theme: string; + fetchThreadName: Function; + isEncrypted: boolean; +} + const RepliedThread = memo(({ tmid, tmsg, isHeader, fetchThreadName, id, isEncrypted, theme -}) => { +}: IMessageRepliedThread) => { if (!tmid || !isHeader) { return null; } @@ -34,6 +43,7 @@ const RepliedThread = memo(({ return ( + {/*@ts-ignore*/} { +interface IMessageThread { + msg: string; + tcount: number; + theme: string; + tlm: string; + isThreadRoom: boolean; + id: string; +} + +const Thread = React.memo(({ msg, tcount, tlm, isThreadRoom, theme, id }: IMessageThread) => { if (!tlm || isThreadRoom || tcount === 0) { return null; } @@ -50,14 +56,6 @@ const Thread = React.memo(({ return true; }); -Thread.propTypes = { - msg: PropTypes.string, - tcount: PropTypes.string, - theme: PropTypes.string, - tlm: PropTypes.string, - isThreadRoom: PropTypes.bool, - id: PropTypes.string -}; Thread.displayName = 'MessageThread'; export default Thread; diff --git a/app/containers/message/Urls.js b/app/containers/message/Urls.tsx similarity index 82% rename from app/containers/message/Urls.js rename to app/containers/message/Urls.tsx index b82d029afc..0e9ab765b2 100644 --- a/app/containers/message/Urls.js +++ b/app/containers/message/Urls.tsx @@ -1,8 +1,5 @@ import React, { useContext } from 'react'; -import { - View, Text, StyleSheet, Clipboard -} from 'react-native'; -import PropTypes from 'prop-types'; +import { View, Text, StyleSheet, Clipboard } from 'react-native'; import FastImage from '@rocket.chat/react-native-fast-image'; import { dequal } from 'dequal'; @@ -52,7 +49,30 @@ const styles = StyleSheet.create({ } }); -const UrlImage = React.memo(({ image }) => { +type TMessageUrlContent = { + title: string; + description: string; + theme: string; +}; + +type TMessageUrl = { + url: { + ignoreParse: boolean; + url: string; + image: string; + title: string; + description: string; + }; + index: number; + theme: string; +}; + +interface IMessageUrls { + urls: any; + theme: string; +} + +const UrlImage = React.memo(({ image }: {image: string}) => { if (!image) { return null; } @@ -61,7 +81,7 @@ const UrlImage = React.memo(({ image }) => { return ; }, (prevProps, nextProps) => prevProps.image === nextProps.image); -const UrlContent = React.memo(({ title, description, theme }) => ( +const UrlContent = React.memo(({ title, description, theme }: TMessageUrlContent) => ( {title ? {title} : null} {description ? {description} : null} @@ -79,7 +99,7 @@ const UrlContent = React.memo(({ title, description, theme }) => ( return true; }); -const Url = React.memo(({ url, index, theme }) => { +const Url = React.memo(({ url, index, theme }: TMessageUrl) => { if (!url || url?.ignoreParse) { return null; } @@ -114,39 +134,19 @@ const Url = React.memo(({ url, index, theme }) => { ); }, (oldProps, newProps) => dequal(oldProps.url, newProps.url) && oldProps.theme === newProps.theme); -const Urls = React.memo(({ urls, theme }) => { +const Urls = React.memo(({ urls, theme }: IMessageUrls) => { if (!urls || urls.length === 0) { return null; } - return urls.map((url, index) => ( + return urls.map((url: any, index: number) => ( )); }, (oldProps, newProps) => dequal(oldProps.urls, newProps.urls) && oldProps.theme === newProps.theme); -UrlImage.propTypes = { - image: PropTypes.string -}; UrlImage.displayName = 'MessageUrlImage'; - -UrlContent.propTypes = { - title: PropTypes.string, - description: PropTypes.string, - theme: PropTypes.string -}; UrlContent.displayName = 'MessageUrlContent'; - -Url.propTypes = { - url: PropTypes.object.isRequired, - index: PropTypes.number, - theme: PropTypes.string -}; Url.displayName = 'MessageUrl'; - -Urls.propTypes = { - urls: PropTypes.array, - theme: PropTypes.string -}; Urls.displayName = 'MessageUrls'; export default withTheme(Urls); diff --git a/app/containers/message/User.js b/app/containers/message/User.tsx similarity index 84% rename from app/containers/message/User.js rename to app/containers/message/User.tsx index 98b4498498..14c86a4146 100644 --- a/app/containers/message/User.js +++ b/app/containers/message/User.tsx @@ -1,8 +1,5 @@ import React, { useContext } from 'react'; -import PropTypes from 'prop-types'; -import { - View, Text, StyleSheet, TouchableOpacity -} from 'react-native'; +import { View, Text, StyleSheet, TouchableOpacity } from 'react-native'; import moment from 'moment'; import { themes } from '../../constants/colors'; @@ -41,9 +38,26 @@ const styles = StyleSheet.create({ } }); +interface IMessageUser { + isHeader: boolean; + hasError: boolean; + useRealName: boolean; + author: { + _id: string; + name: string; + username: string; + }; + alias: string; + ts: Date; + timeFormat: string; + theme: string; + navToRoomInfo: Function; + type: string; +} + const User = React.memo(({ isHeader, useRealName, author, alias, ts, timeFormat, hasError, theme, navToRoomInfo, type, ...props -}) => { +}: IMessageUser) => { if (isHeader || hasError) { const navParam = { t: 'd', @@ -68,6 +82,7 @@ const User = React.memo(({ {textContent} @@ -94,18 +109,6 @@ const User = React.memo(({ return null; }); -User.propTypes = { - isHeader: PropTypes.bool, - hasError: PropTypes.bool, - useRealName: PropTypes.bool, - author: PropTypes.object, - alias: PropTypes.string, - ts: PropTypes.instanceOf(Date), - timeFormat: PropTypes.string, - theme: PropTypes.string, - navToRoomInfo: PropTypes.func, - type: PropTypes.string -}; User.displayName = 'MessageUser'; export default withTheme(User); diff --git a/app/containers/message/Video.js b/app/containers/message/Video.tsx similarity index 81% rename from app/containers/message/Video.js rename to app/containers/message/Video.tsx index fed0c67f27..93a5342781 100644 --- a/app/containers/message/Video.js +++ b/app/containers/message/Video.tsx @@ -1,5 +1,4 @@ import React, { useContext } from 'react'; -import PropTypes from 'prop-types'; import { StyleSheet } from 'react-native'; import { dequal } from 'dequal'; @@ -13,7 +12,7 @@ import { themes } from '../../constants/colors'; import MessageContext from './Context'; const SUPPORTED_TYPES = ['video/quicktime', 'video/mp4', ...(isIOS ? [] : ['video/3gp', 'video/mkv'])]; -const isTypeSupported = type => SUPPORTED_TYPES.indexOf(type) !== -1; +const isTypeSupported = (type: any) => SUPPORTED_TYPES.indexOf(type) !== -1; const styles = StyleSheet.create({ button: { @@ -26,9 +25,18 @@ const styles = StyleSheet.create({ } }); -const Video = React.memo(({ - file, showAttachment, getCustomEmoji, theme -}) => { +interface IMessageVideo { + file: { + video_type: string; + video_url: string; + description: string; + }; + showAttachment: Function; + getCustomEmoji: Function; + theme: string; +} + +const Video = React.memo(({ file, showAttachment, getCustomEmoji, theme }: IMessageVideo) => { const { baseUrl, user } = useContext(MessageContext); if (!baseUrl) { return null; @@ -54,16 +62,10 @@ const Video = React.memo(({ color={themes[theme].buttonText} /> + {/*@ts-ignore*/} ); }, (prevProps, nextProps) => dequal(prevProps.file, nextProps.file) && prevProps.theme === nextProps.theme); -Video.propTypes = { - file: PropTypes.object, - showAttachment: PropTypes.func, - getCustomEmoji: PropTypes.func, - theme: PropTypes.string -}; - export default Video; From 024c744615d51d510528fc3134bd885c371ac24a Mon Sep 17 00:00:00 2001 From: AlexAlexandre Date: Thu, 22 Jul 2021 22:59:16 -0300 Subject: [PATCH 27/90] [IMPROVE] - migrating the message container (finished) --- app/containers/ActivityIndicator.tsx | 2 +- app/containers/message/Attachments.tsx | 2 +- .../message/{Audio.js => Audio.tsx} | 73 +++++----- app/containers/message/Blocks.ts | 2 +- .../message/{Broadcast.js => Broadcast.tsx} | 18 +-- app/containers/message/CallButton.tsx | 2 +- .../message/{Content.js => Content.tsx} | 43 +++--- app/containers/message/Context.js | 4 - app/containers/message/Context.ts | 5 + app/containers/message/Discussion.tsx | 2 +- .../message/{Message.js => Message.tsx} | 94 ++++++------ app/containers/message/MessageAvatar.tsx | 4 +- app/containers/message/RepliedThread.tsx | 2 +- app/containers/message/Thread.tsx | 2 +- .../message/{index.js => index.tsx} | 136 ++++++++---------- app/externalModules.d.ts | 3 +- 16 files changed, 200 insertions(+), 194 deletions(-) rename app/containers/message/{Audio.js => Audio.tsx} (84%) rename app/containers/message/{Broadcast.js => Broadcast.tsx} (84%) rename app/containers/message/{Content.js => Content.tsx} (82%) delete mode 100644 app/containers/message/Context.js create mode 100644 app/containers/message/Context.ts rename app/containers/message/{Message.js => Message.tsx} (64%) rename app/containers/message/{index.js => index.tsx} (76%) diff --git a/app/containers/ActivityIndicator.tsx b/app/containers/ActivityIndicator.tsx index 50a60f0c32..e2eb33926d 100644 --- a/app/containers/ActivityIndicator.tsx +++ b/app/containers/ActivityIndicator.tsx @@ -3,7 +3,7 @@ import { ActivityIndicator, ActivityIndicatorProps, StyleSheet } from 'react-nat import { themes } from '../constants/colors'; interface IActivityIndicator extends ActivityIndicatorProps{ - theme?: 'light' | 'dark' | 'black', + theme?: 'light' | 'dark' | 'black' | string, absolute?: boolean, props?: object } diff --git a/app/containers/message/Attachments.tsx b/app/containers/message/Attachments.tsx index 74be125523..07d0c05475 100644 --- a/app/containers/message/Attachments.tsx +++ b/app/containers/message/Attachments.tsx @@ -6,7 +6,7 @@ import Audio from './Audio'; import Video from './Video'; import Reply from './Reply'; -interface IMessageAttachments { +export interface IMessageAttachments { attachments: any; timeFormat: string; showAttachment: Function; diff --git a/app/containers/message/Audio.js b/app/containers/message/Audio.tsx similarity index 84% rename from app/containers/message/Audio.js rename to app/containers/message/Audio.tsx index e22dff4088..9bf783ff8b 100644 --- a/app/containers/message/Audio.js +++ b/app/containers/message/Audio.tsx @@ -1,8 +1,5 @@ import React from 'react'; -import PropTypes from 'prop-types'; -import { - View, StyleSheet, Text, Easing -} from 'react-native'; +import { View, StyleSheet, Text, Easing } from 'react-native'; import { Audio } from 'expo-av'; import Slider from '@react-native-community/slider'; import moment from 'moment'; @@ -19,6 +16,30 @@ import MessageContext from './Context'; import ActivityIndicator from '../ActivityIndicator'; import { withDimensions } from '../../dimensions'; +type TButton = { + loading: boolean; + paused: boolean; + theme: string; + onPress: Function; +}; + +interface IMessageAudioProps { + file: { + audio_url: string; + description: string; + }; + theme: string; + getCustomEmoji: Function; + scale: number; +} + +interface IMessageAudioState { + loading: boolean, + currentTime: number, + duration: number, + paused: boolean +} + const mode = { allowsRecordingIOS: false, playsInSilentModeIOS: true, @@ -57,19 +78,17 @@ const styles = StyleSheet.create({ } }); -const formatTime = seconds => moment.utc(seconds * 1000).format('mm:ss'); -const BUTTON_HIT_SLOP = { - top: 12, right: 12, bottom: 12, left: 12 -}; +const formatTime = (seconds: number) => moment.utc(seconds * 1000).format('mm:ss'); + +const BUTTON_HIT_SLOP = { top: 12, right: 12, bottom: 12, left: 12 }; + const sliderAnimationConfig = { duration: 250, easing: Easing.linear, delay: 0 }; -const Button = React.memo(({ - loading, paused, onPress, theme -}) => ( +const Button = React.memo(({ loading, paused, onPress, theme }: TButton) => ( )); -Button.propTypes = { - loading: PropTypes.bool, - paused: PropTypes.bool, - theme: PropTypes.string, - onPress: PropTypes.func -}; Button.displayName = 'MessageAudioButton'; -class MessageAudio extends React.Component { +class MessageAudio extends React.Component { static contextType = MessageContext; + private sound: any; - static propTypes = { - file: PropTypes.object.isRequired, - theme: PropTypes.string, - getCustomEmoji: PropTypes.func, - scale: PropTypes.number - } - - constructor(props) { + constructor(props: IMessageAudioProps) { super(props); this.state = { loading: false, @@ -133,7 +140,7 @@ class MessageAudio extends React.Component { this.setState({ loading: false }); } - shouldComponentUpdate(nextProps, nextState) { + shouldComponentUpdate(nextProps: any, nextState: any) { const { currentTime, duration, paused, loading } = this.state; @@ -176,7 +183,7 @@ class MessageAudio extends React.Component { } } - onPlaybackStatusUpdate = (status) => { + onPlaybackStatusUpdate = (status: any) => { if (status) { this.onLoad(status); this.onProgress(status); @@ -184,12 +191,12 @@ class MessageAudio extends React.Component { } } - onLoad = (data) => { + onLoad = (data: any) => { const duration = data.durationMillis / 1000; this.setState({ duration: duration > 0 ? duration : 0 }); } - onProgress = (data) => { + onProgress = (data: any) => { const { duration } = this.state; const currentTime = data.positionMillis / 1000; if (currentTime <= duration) { @@ -197,7 +204,7 @@ class MessageAudio extends React.Component { } } - onEnd = async(data) => { + onEnd = async(data: any) => { if (data.didJustFinish) { try { await this.sound.stopAsync(); @@ -232,7 +239,7 @@ class MessageAudio extends React.Component { } } - onValueChange = async(value) => { + onValueChange = async(value: any) => { try { this.setState({ currentTime: value }); await this.sound.setPositionAsync(value * 1000); @@ -275,10 +282,12 @@ class MessageAudio extends React.Component { minimumTrackTintColor={themes[theme].tintColor} maximumTrackTintColor={themes[theme].auxiliaryText} onValueChange={this.onValueChange} + /*@ts-ignore*/ thumbImage={isIOS && { uri: 'audio_thumb', scale }} /> {this.duration} + {/*@ts-ignore*/} ); diff --git a/app/containers/message/Blocks.ts b/app/containers/message/Blocks.ts index 62b1f2d22f..5f22d9ca95 100644 --- a/app/containers/message/Blocks.ts +++ b/app/containers/message/Blocks.ts @@ -1,7 +1,7 @@ import React from 'react'; import { messageBlockWithContext } from '../UIKit/MessageBlock'; -interface IMessageBlocks { +export interface IMessageBlocks { blocks: any; id: string; rid: string; diff --git a/app/containers/message/Broadcast.js b/app/containers/message/Broadcast.tsx similarity index 84% rename from app/containers/message/Broadcast.js rename to app/containers/message/Broadcast.tsx index 58de1d0dc2..106ed80588 100644 --- a/app/containers/message/Broadcast.js +++ b/app/containers/message/Broadcast.tsx @@ -1,6 +1,5 @@ import React, { useContext } from 'react'; import { View, Text } from 'react-native'; -import PropTypes from 'prop-types'; import Touchable from './Touchable'; import { CustomIcon } from '../../lib/Icons'; @@ -10,9 +9,15 @@ import I18n from '../../i18n'; import { themes } from '../../constants/colors'; import MessageContext from './Context'; -const Broadcast = React.memo(({ - author, broadcast, theme -}) => { +export interface IMessageBroadcast { + author: { + _id: string + }; + broadcast: boolean; + theme: string +} + +const Broadcast = React.memo(({ author, broadcast, theme }: IMessageBroadcast) => { const { user, replyBroadcast } = useContext(MessageContext); const isOwn = author._id === user.id; if (broadcast && !isOwn) { @@ -36,11 +41,6 @@ const Broadcast = React.memo(({ return null; }); -Broadcast.propTypes = { - author: PropTypes.object, - broadcast: PropTypes.bool, - theme: PropTypes.string -}; Broadcast.displayName = 'MessageBroadcast'; export default Broadcast; diff --git a/app/containers/message/CallButton.tsx b/app/containers/message/CallButton.tsx index a0ba95d32a..19ee3ad957 100644 --- a/app/containers/message/CallButton.tsx +++ b/app/containers/message/CallButton.tsx @@ -8,7 +8,7 @@ import I18n from '../../i18n'; import { CustomIcon } from '../../lib/Icons'; import { themes } from '../../constants/colors'; -interface IMessageCallButton { +export interface IMessageCallButton { theme: string; callJitsi: Function; } diff --git a/app/containers/message/Content.js b/app/containers/message/Content.tsx similarity index 82% rename from app/containers/message/Content.js rename to app/containers/message/Content.tsx index 90af48acdf..2f1f542f00 100644 --- a/app/containers/message/Content.js +++ b/app/containers/message/Content.tsx @@ -1,6 +1,5 @@ import React, { useContext } from 'react'; import { Text, View } from 'react-native'; -import PropTypes from 'prop-types'; import { dequal } from 'dequal'; import I18n from '../../i18n'; @@ -12,9 +11,29 @@ import { themes } from '../../constants/colors'; import MessageContext from './Context'; import Encrypted from './Encrypted'; import { E2E_MESSAGE_TYPE } from '../../lib/encryption/constants'; +import {TChannel} from "../markdown/Hashtag"; -const Content = React.memo((props) => { +export interface IMessageContent { + isTemp: boolean; + isInfo: boolean; + tmid: string; + isThreadRoom: boolean; + msg: string; + theme: string; + isEdited: boolean; + isEncrypted: boolean; + getCustomEmoji: Function; + channels: TChannel[]; + mentions: object[]; + navToRoomInfo: Function; + useRealName: boolean; + isIgnored: boolean; + type: string; +} + +const Content = React.memo((props: IMessageContent) => { if (props.isInfo) { + // @ts-ignore const infoMessage = getInfoMessage({ ...props }); const renderMessageContent = ( @@ -37,7 +56,7 @@ const Content = React.memo((props) => { return renderMessageContent; } - const isPreview = props.tmid && !props.isThreadRoom; + const isPreview: any = props.tmid && !props.isThreadRoom; let content = null; if (props.tmid && !props.msg) { @@ -47,6 +66,7 @@ const Content = React.memo((props) => { } else { const { baseUrl, user, onLinkPress } = useContext(MessageContext); content = ( + // @ts-ignore { return true; }); -Content.propTypes = { - isTemp: PropTypes.bool, - isInfo: PropTypes.bool, - tmid: PropTypes.string, - isThreadRoom: PropTypes.bool, - msg: PropTypes.string, - theme: PropTypes.string, - isEdited: PropTypes.bool, - isEncrypted: PropTypes.bool, - getCustomEmoji: PropTypes.func, - channels: PropTypes.oneOfType([PropTypes.array, PropTypes.object]), - mentions: PropTypes.oneOfType([PropTypes.array, PropTypes.object]), - navToRoomInfo: PropTypes.func, - useRealName: PropTypes.bool, - isIgnored: PropTypes.bool, - type: PropTypes.string -}; Content.displayName = 'MessageContent'; export default Content; diff --git a/app/containers/message/Context.js b/app/containers/message/Context.js deleted file mode 100644 index 407904b4ef..0000000000 --- a/app/containers/message/Context.js +++ /dev/null @@ -1,4 +0,0 @@ -import React from 'react'; - -const MessageContext = React.createContext(); -export default MessageContext; diff --git a/app/containers/message/Context.ts b/app/containers/message/Context.ts new file mode 100644 index 0000000000..eee35a6c77 --- /dev/null +++ b/app/containers/message/Context.ts @@ -0,0 +1,5 @@ +import React from 'react'; + +// @ts-ignore +const MessageContext = React.createContext(); +export default MessageContext; diff --git a/app/containers/message/Discussion.tsx b/app/containers/message/Discussion.tsx index 7d7d207a97..34a88263db 100644 --- a/app/containers/message/Discussion.tsx +++ b/app/containers/message/Discussion.tsx @@ -11,7 +11,7 @@ import { themes } from '../../constants/colors'; import MessageContext from './Context'; import { formatDateThreads } from '../../utils/room'; -interface IMessageDiscussion { +export interface IMessageDiscussion { msg: string; dcount: number; dlm: string; diff --git a/app/containers/message/Message.js b/app/containers/message/Message.tsx similarity index 64% rename from app/containers/message/Message.js rename to app/containers/message/Message.tsx index 4bc03c000e..2870ff4a55 100644 --- a/app/containers/message/Message.js +++ b/app/containers/message/Message.tsx @@ -1,5 +1,4 @@ import React, { useContext } from 'react'; -import PropTypes from 'prop-types'; import { View } from 'react-native'; import Touchable from 'react-native-platform-touchable'; @@ -7,21 +6,59 @@ import MessageContext from './Context'; import User from './User'; import styles from './styles'; -import RepliedThread from './RepliedThread'; -import MessageAvatar from './MessageAvatar'; -import Attachments from './Attachments'; +import RepliedThread, {IMessageRepliedThread} from './RepliedThread'; +import MessageAvatar, {IMessageAvatar} from './MessageAvatar'; +import Attachments, {IMessageAttachments} from './Attachments'; import Urls from './Urls'; -import Thread from './Thread'; -import Blocks from './Blocks'; +import Thread, {IMessageThread} from './Thread'; +import Blocks, {IMessageBlocks} from './Blocks'; import Reactions from './Reactions'; -import Broadcast from './Broadcast'; -import Discussion from './Discussion'; -import Content from './Content'; +import Broadcast, {IMessageBroadcast} from './Broadcast'; +import Discussion, {IMessageDiscussion} from './Discussion'; +import Content, {IMessageContent} from './Content'; import ReadReceipt from './ReadReceipt'; -import CallButton from './CallButton'; +import CallButton, {IMessageCallButton} from './CallButton'; import { themes } from '../../constants/colors'; -const MessageInner = React.memo((props) => { + +type TMessageInner = { + type: string; + blocks: []; +} & IMessageDiscussion & IMessageContent & IMessageCallButton & IMessageBlocks + & IMessageThread & IMessageAttachments & IMessageBroadcast; + +type TMessage = { + isThreadReply: boolean; + isThreadSequential: boolean; + isInfo: boolean; + isTemp: boolean; + isHeader: boolean; + hasError: boolean; + style: any; + onLongPress: Function; + isReadReceiptEnabled: boolean; + unread: boolean; + theme: string; + isIgnored: boolean; +} & IMessageRepliedThread & IMessageAvatar & IMessageContent & TMessageInner; + +interface IMessageTouchable { + hasError: boolean; + isInfo: boolean; + isThreadReply: boolean; + isTemp: boolean; + archived: boolean; + highlighted: boolean; + theme: string; + ts?: any + urls?: any; + reactions?: any; + alias?: any; + role?: any; + drid?: any; +} + +const MessageInner = React.memo((props: TMessageInner) => { if (props.type === 'discussion-created') { return ( <> @@ -63,7 +100,7 @@ const MessageInner = React.memo((props) => { }); MessageInner.displayName = 'MessageInner'; -const Message = React.memo((props) => { +const Message = React.memo((props: TMessage) => { if (props.isThreadReply || props.isThreadSequential || props.isInfo || props.isIgnored) { const thread = props.isThreadReply ? : null; return ( @@ -107,7 +144,7 @@ const Message = React.memo((props) => { }); Message.displayName = 'Message'; -const MessageTouchable = React.memo((props) => { +const MessageTouchable = React.memo((props: IMessageTouchable & TMessage) => { if (props.hasError) { return ( @@ -129,36 +166,7 @@ const MessageTouchable = React.memo((props) => { ); }); -MessageTouchable.displayName = 'MessageTouchable'; - -MessageTouchable.propTypes = { - hasError: PropTypes.bool, - isInfo: PropTypes.bool, - isThreadReply: PropTypes.bool, - isTemp: PropTypes.bool, - archived: PropTypes.bool, - highlighted: PropTypes.bool, - theme: PropTypes.string -}; -Message.propTypes = { - isThreadReply: PropTypes.bool, - isThreadSequential: PropTypes.bool, - isInfo: PropTypes.bool, - isTemp: PropTypes.bool, - isHeader: PropTypes.bool, - hasError: PropTypes.bool, - style: PropTypes.any, - onLongPress: PropTypes.func, - isReadReceiptEnabled: PropTypes.bool, - unread: PropTypes.bool, - theme: PropTypes.string, - isIgnored: PropTypes.bool -}; - -MessageInner.propTypes = { - type: PropTypes.string, - blocks: PropTypes.array -}; +MessageTouchable.displayName = 'MessageTouchable'; export default MessageTouchable; diff --git a/app/containers/message/MessageAvatar.tsx b/app/containers/message/MessageAvatar.tsx index 26a2969934..cb7f718005 100644 --- a/app/containers/message/MessageAvatar.tsx +++ b/app/containers/message/MessageAvatar.tsx @@ -4,7 +4,7 @@ import Avatar from '../Avatar'; import styles from './styles'; import MessageContext from './Context'; -interface IMessageAvatar { +export interface IMessageAvatar { isHeader: boolean; avatar: string; emoji: string; @@ -12,7 +12,7 @@ interface IMessageAvatar { username: string _id: string; }; - small: boolean; + small?: boolean; navToRoomInfo: Function; getCustomEmoji(): void; theme: string; diff --git a/app/containers/message/RepliedThread.tsx b/app/containers/message/RepliedThread.tsx index d91c3f0080..4e832a961e 100644 --- a/app/containers/message/RepliedThread.tsx +++ b/app/containers/message/RepliedThread.tsx @@ -7,7 +7,7 @@ import { themes } from '../../constants/colors'; import I18n from '../../i18n'; import Markdown from '../markdown'; -interface IMessageRepliedThread { +export interface IMessageRepliedThread { tmid: string; tmsg: string; id: string; diff --git a/app/containers/message/Thread.tsx b/app/containers/message/Thread.tsx index adbcd89e5c..361a51805f 100644 --- a/app/containers/message/Thread.tsx +++ b/app/containers/message/Thread.tsx @@ -7,7 +7,7 @@ import MessageContext from './Context'; import ThreadDetails from '../ThreadDetails'; import I18n from '../../i18n'; -interface IMessageThread { +export interface IMessageThread { msg: string; tcount: number; theme: string; diff --git a/app/containers/message/index.js b/app/containers/message/index.tsx similarity index 76% rename from app/containers/message/index.js rename to app/containers/message/index.tsx index 467c634a66..9e92ccb631 100644 --- a/app/containers/message/index.js +++ b/app/containers/message/index.tsx @@ -11,75 +11,62 @@ import messagesStatus from '../../constants/messagesStatus'; import { withTheme } from '../../theme'; import openLink from '../../utils/openLink'; -class MessageContainer extends React.Component { - static propTypes = { - item: PropTypes.object.isRequired, - user: PropTypes.shape({ - id: PropTypes.string.isRequired, - username: PropTypes.string.isRequired, - token: PropTypes.string.isRequired - }), - rid: PropTypes.string, - timeFormat: PropTypes.string, - style: PropTypes.any, - archived: PropTypes.bool, - broadcast: PropTypes.bool, - previousItem: PropTypes.object, - baseUrl: PropTypes.string, - Message_GroupingPeriod: PropTypes.number, - isReadReceiptEnabled: PropTypes.bool, - isThreadRoom: PropTypes.bool, - useRealName: PropTypes.bool, - autoTranslateRoom: PropTypes.bool, - autoTranslateLanguage: PropTypes.string, - status: PropTypes.number, - isIgnored: PropTypes.bool, - highlighted: PropTypes.bool, - getCustomEmoji: PropTypes.func, - onLongPress: PropTypes.func, - onReactionPress: PropTypes.func, - onEncryptedPress: PropTypes.func, - onDiscussionPress: PropTypes.func, - onThreadPress: PropTypes.func, - errorActionsShow: PropTypes.func, - replyBroadcast: PropTypes.func, - reactionInit: PropTypes.func, - fetchThreadName: PropTypes.func, - showAttachment: PropTypes.func, - onReactionLongPress: PropTypes.func, - navToRoomInfo: PropTypes.func, - callJitsi: PropTypes.func, - blockAction: PropTypes.func, - theme: PropTypes.string, - threadBadgeColor: PropTypes.string, - toggleFollowThread: PropTypes.func, - jumpToMessage: PropTypes.func, - onPress: PropTypes.func - } +interface IMessageContainerProps { + item: any; + user: { + id: string; + username: string; + token: string; + }; + rid: string; + timeFormat: string; + style: any; + archived: boolean; + broadcast: boolean; + previousItem: { + ts: any; + u: any; + groupable: any; + id: any; + tmid: any; + status: any + }; + baseUrl: string; + Message_GroupingPeriod: number; + isReadReceiptEnabled: boolean; + isThreadRoom: boolean; + useRealName: boolean; + autoTranslateRoom: boolean; + autoTranslateLanguage: string; + status: number; + isIgnored: boolean; + highlighted: boolean; + getCustomEmoji(): void; + onLongPress: Function; + onReactionPress: Function; + onEncryptedPress: Function; + onDiscussionPress: Function; + onThreadPress: Function; + errorActionsShow: Function; + replyBroadcast: Function; + reactionInit: Function; + fetchThreadName: Function; + showAttachment: Function; + onReactionLongPress: Function; + navToRoomInfo: Function; + callJitsi: Function; + blockAction: Function; + theme: string; + threadBadgeColor: string; + toggleFollowThread: Function; + jumpToMessage: Function; + onPress: Function; +} - static defaultProps = { - getCustomEmoji: () => {}, - onLongPress: () => {}, - onReactionPress: () => {}, - onEncryptedPress: () => {}, - onDiscussionPress: () => {}, - onThreadPress: () => {}, - errorActionsShow: () => {}, - replyBroadcast: () => {}, - reactionInit: () => {}, - fetchThreadName: () => {}, - showAttachment: () => {}, - onReactionLongPress: () => {}, - navToRoomInfo: () => {}, - callJitsi: () => {}, - blockAction: () => {}, - archived: false, - broadcast: false, - isIgnored: false, - theme: 'light' - } +class MessageContainer extends React.Component { state = { isManualUnignored: false }; + private subscription: any; componentDidMount() { const { item } = this.props; @@ -91,7 +78,7 @@ class MessageContainer extends React.Component { } } - shouldComponentUpdate(nextProps, nextState) { + shouldComponentUpdate(nextProps: any, nextState: any) { const { isManualUnignored } = this.state; const { theme, threadBadgeColor, isIgnored, highlighted @@ -155,7 +142,7 @@ class MessageContainer extends React.Component { } } - onReactionPress = (emoji) => { + onReactionPress = (emoji: any) => { const { onReactionPress, item } = this.props; if (onReactionPress) { onReactionPress(emoji, item.id); @@ -195,9 +182,7 @@ class MessageContainer extends React.Component { } get isHeader() { - const { - item, previousItem, broadcast, Message_GroupingPeriod - } = this.props; + const { item, previousItem, broadcast, Message_GroupingPeriod } = this.props; if (this.hasError || (previousItem && previousItem.status === messagesStatus.ERROR)) { return true; } @@ -218,9 +203,7 @@ class MessageContainer extends React.Component { } get isThreadReply() { - const { - item, previousItem, isThreadRoom - } = this.props; + const { item, previousItem, isThreadRoom } = this.props; if (isThreadRoom) { return false; } @@ -279,9 +262,9 @@ class MessageContainer extends React.Component { } } - onLinkPress = (link) => { + onLinkPress = (link: any) => { const { item, theme, jumpToMessage } = this.props; - const isMessageLink = item?.attachments?.findIndex(att => att?.message_link === link) !== -1; + const isMessageLink = item?.attachments?.findIndex((att: any) => att?.message_link === link) !== -1; if (isMessageLink) { return jumpToMessage(link); } @@ -372,6 +355,7 @@ class MessageContainer extends React.Component { replies }} > + {/*@ts-ignore*/} Date: Thu, 22 Jul 2021 23:14:21 -0300 Subject: [PATCH 28/90] [IMPROVE] - remove unused PropTypes --- app/containers/message/index.tsx | 1 - 1 file changed, 1 deletion(-) diff --git a/app/containers/message/index.tsx b/app/containers/message/index.tsx index 9e92ccb631..86a6a6e3d7 100644 --- a/app/containers/message/index.tsx +++ b/app/containers/message/index.tsx @@ -1,5 +1,4 @@ import React from 'react'; -import PropTypes from 'prop-types'; import { Keyboard } from 'react-native'; import Message from './Message'; From 0182853fdb26a5db1e41471600d3302ba5c7fa28 Mon Sep 17 00:00:00 2001 From: AlexAlexandre Date: Thu, 22 Jul 2021 23:59:46 -0300 Subject: [PATCH 29/90] [IMPROVE] - migrating the MessageBox container (in progress) --- .../CommandsPreview/{Item.js => Item.tsx} | 17 +++++----- .../CommandsPreview/{index.js => index.tsx} | 16 +++++----- app/containers/MessageBox/Context.js | 4 --- app/containers/MessageBox/Context.ts | 5 +++ ...xedMentionItem.js => FixedMentionItem.tsx} | 17 +++++----- .../{MentionEmoji.js => MentionEmoji.tsx} | 7 ++++- .../{MentionItem.js => MentionItem.tsx} | 31 ++++++++++--------- .../Mentions/{index.js => index.tsx} | 15 +++++---- .../{ActionsButton.js => ActionsButton.tsx} | 14 ++++----- .../buttons/{BaseButton.js => BaseButton.tsx} | 26 +++++++--------- ...itingButton.js => CancelEditingButton.tsx} | 14 ++++----- .../buttons/{SendButton.js => SendButton.tsx} | 14 ++++----- ...leEmojiButton.js => ToggleEmojiButton.tsx} | 20 +++++------- .../MessageBox/buttons/{index.js => index.ts} | 0 .../MessageBox/{constants.js => constants.ts} | 0 15 files changed, 99 insertions(+), 101 deletions(-) rename app/containers/MessageBox/CommandsPreview/{Item.js => Item.tsx} (86%) rename app/containers/MessageBox/CommandsPreview/{index.js => index.tsx} (84%) delete mode 100644 app/containers/MessageBox/Context.js create mode 100644 app/containers/MessageBox/Context.ts rename app/containers/MessageBox/Mentions/{FixedMentionItem.js => FixedMentionItem.tsx} (78%) rename app/containers/MessageBox/Mentions/{MentionEmoji.js => MentionEmoji.tsx} (82%) rename app/containers/MessageBox/Mentions/{MentionItem.js => MentionItem.tsx} (82%) rename app/containers/MessageBox/Mentions/{index.js => index.tsx} (78%) rename app/containers/MessageBox/buttons/{ActionsButton.js => ActionsButton.tsx} (55%) rename app/containers/MessageBox/buttons/{BaseButton.js => BaseButton.tsx} (57%) rename app/containers/MessageBox/buttons/{CancelEditingButton.js => CancelEditingButton.tsx} (55%) rename app/containers/MessageBox/buttons/{SendButton.js => SendButton.tsx} (64%) rename app/containers/MessageBox/buttons/{ToggleEmojiButton.js => ToggleEmojiButton.tsx} (63%) rename app/containers/MessageBox/buttons/{index.js => index.ts} (100%) rename app/containers/MessageBox/{constants.js => constants.ts} (100%) diff --git a/app/containers/MessageBox/CommandsPreview/Item.js b/app/containers/MessageBox/CommandsPreview/Item.tsx similarity index 86% rename from app/containers/MessageBox/CommandsPreview/Item.js rename to app/containers/MessageBox/CommandsPreview/Item.tsx index 9fa026dd5d..2321fbbe48 100644 --- a/app/containers/MessageBox/CommandsPreview/Item.js +++ b/app/containers/MessageBox/CommandsPreview/Item.tsx @@ -1,5 +1,4 @@ import React, { useContext, useState } from 'react'; -import PropTypes from 'prop-types'; import { TouchableOpacity } from 'react-native'; import FastImage from '@rocket.chat/react-native-fast-image'; @@ -9,7 +8,16 @@ import { themes } from '../../../constants/colors'; import MessageboxContext from '../Context'; import ActivityIndicator from '../../ActivityIndicator'; -const Item = ({ item, theme }) => { +interface IMessageBoxCommandsPreviewItem { + item: { + type: string; + id: string; + value: string; + }; + theme: string; +} + +const Item = ({ item, theme }: IMessageBoxCommandsPreviewItem) => { const context = useContext(MessageboxContext); const { onPressCommandPreview } = context; const [loading, setLoading] = useState(true); @@ -38,9 +46,4 @@ const Item = ({ item, theme }) => { ); }; -Item.propTypes = { - item: PropTypes.object, - theme: PropTypes.string -}; - export default Item; diff --git a/app/containers/MessageBox/CommandsPreview/index.js b/app/containers/MessageBox/CommandsPreview/index.tsx similarity index 84% rename from app/containers/MessageBox/CommandsPreview/index.js rename to app/containers/MessageBox/CommandsPreview/index.tsx index 1bb03ca8b1..4bae91ca4a 100644 --- a/app/containers/MessageBox/CommandsPreview/index.js +++ b/app/containers/MessageBox/CommandsPreview/index.tsx @@ -8,7 +8,13 @@ import styles from '../styles'; import { themes } from '../../../constants/colors'; import { withTheme } from '../../../theme'; -const CommandsPreview = React.memo(({ theme, commandPreview, showCommandPreview }) => { +interface IMessageBoxCommandsPreview { + commandPreview: []; + showCommandPreview: boolean; + theme: string; +} + +const CommandsPreview = React.memo(({ theme, commandPreview, showCommandPreview }: IMessageBoxCommandsPreview) => { if (!showCommandPreview) { return null; } @@ -18,7 +24,7 @@ const CommandsPreview = React.memo(({ theme, commandPreview, showCommandPreview style={[styles.mentionList, { backgroundColor: themes[theme].messageboxBackground }]} data={commandPreview} renderItem={({ item }) => } - keyExtractor={item => item.id} + keyExtractor={(item: any) => item.id} keyboardShouldPersistTaps='always' horizontal showsHorizontalScrollIndicator={false} @@ -37,10 +43,4 @@ const CommandsPreview = React.memo(({ theme, commandPreview, showCommandPreview return true; }); -CommandsPreview.propTypes = { - commandPreview: PropTypes.array, - showCommandPreview: PropTypes.bool, - theme: PropTypes.string -}; - export default withTheme(CommandsPreview); diff --git a/app/containers/MessageBox/Context.js b/app/containers/MessageBox/Context.js deleted file mode 100644 index 3ed07ad43c..0000000000 --- a/app/containers/MessageBox/Context.js +++ /dev/null @@ -1,4 +0,0 @@ -import React from 'react'; - -const MessageboxContext = React.createContext(); -export default MessageboxContext; diff --git a/app/containers/MessageBox/Context.ts b/app/containers/MessageBox/Context.ts new file mode 100644 index 0000000000..4978b78dbb --- /dev/null +++ b/app/containers/MessageBox/Context.ts @@ -0,0 +1,5 @@ +import React from 'react'; + +// @ts-ignore +const MessageboxContext = React.createContext(); +export default MessageboxContext; diff --git a/app/containers/MessageBox/Mentions/FixedMentionItem.js b/app/containers/MessageBox/Mentions/FixedMentionItem.tsx similarity index 78% rename from app/containers/MessageBox/Mentions/FixedMentionItem.js rename to app/containers/MessageBox/Mentions/FixedMentionItem.tsx index dc29013184..1aef1c6b0b 100644 --- a/app/containers/MessageBox/Mentions/FixedMentionItem.js +++ b/app/containers/MessageBox/Mentions/FixedMentionItem.tsx @@ -1,12 +1,19 @@ import React from 'react'; import { TouchableOpacity, Text } from 'react-native'; -import PropTypes from 'prop-types'; import styles from '../styles'; import I18n from '../../../i18n'; import { themes } from '../../../constants/colors'; -const FixedMentionItem = ({ item, onPress, theme }) => ( +interface IMessageBoxFixedMentionItem { + item: { + username: string; + }; + onPress({}): void; + theme: string; +} + +const FixedMentionItem = ({ item, onPress, theme }: IMessageBoxFixedMentionItem) => ( ( ); -FixedMentionItem.propTypes = { - item: PropTypes.object, - onPress: PropTypes.func, - theme: PropTypes.string -}; - export default FixedMentionItem; diff --git a/app/containers/MessageBox/Mentions/MentionEmoji.js b/app/containers/MessageBox/Mentions/MentionEmoji.tsx similarity index 82% rename from app/containers/MessageBox/Mentions/MentionEmoji.js rename to app/containers/MessageBox/Mentions/MentionEmoji.tsx index 3d25729e2b..7a601786c3 100644 --- a/app/containers/MessageBox/Mentions/MentionEmoji.js +++ b/app/containers/MessageBox/Mentions/MentionEmoji.tsx @@ -6,8 +6,13 @@ import shortnameToUnicode from '../../../utils/shortnameToUnicode'; import styles from '../styles'; import MessageboxContext from '../Context'; import CustomEmoji from '../../EmojiPicker/CustomEmoji'; +import {TEmoji} from "../../EmojiPicker"; -const MentionEmoji = ({ item }) => { +interface IMessageBoxMentionEmoji { + item: TEmoji; +} + +const MentionEmoji = ({ item }: IMessageBoxMentionEmoji) => { const context = useContext(MessageboxContext); const { baseUrl } = context; diff --git a/app/containers/MessageBox/Mentions/MentionItem.js b/app/containers/MessageBox/Mentions/MentionItem.tsx similarity index 82% rename from app/containers/MessageBox/Mentions/MentionItem.js rename to app/containers/MessageBox/Mentions/MentionItem.tsx index 36144de6f5..b5dc0dbb7c 100644 --- a/app/containers/MessageBox/Mentions/MentionItem.js +++ b/app/containers/MessageBox/Mentions/MentionItem.tsx @@ -1,25 +1,32 @@ import React, { useContext } from 'react'; import { TouchableOpacity, Text } from 'react-native'; -import PropTypes from 'prop-types'; import styles from '../styles'; import Avatar from '../../Avatar'; import MessageboxContext from '../Context'; import FixedMentionItem from './FixedMentionItem'; import MentionEmoji from './MentionEmoji'; -import { - MENTIONS_TRACKING_TYPE_EMOJIS, - MENTIONS_TRACKING_TYPE_COMMANDS -} from '../constants'; +import { MENTIONS_TRACKING_TYPE_EMOJIS, MENTIONS_TRACKING_TYPE_COMMANDS } from '../constants'; import { themes } from '../../../constants/colors'; +import {TEmoji} from "../../EmojiPicker"; -const MentionItem = ({ - item, trackingType, theme -}) => { +interface IMessageBoxMentionItem { + item: { + name: string; + command: string; + username: string; + t: string; + id: string; + } & TEmoji; + trackingType: string; + theme: string; +} + +const MentionItem = ({ item, trackingType, theme }: IMessageBoxMentionItem) => { const context = useContext(MessageboxContext); const { onPressMention } = context; - const defineTestID = (type) => { + const defineTestID = (type: string) => { switch (type) { case MENTIONS_TRACKING_TYPE_EMOJIS: return `mention-item-${ item.name || item }`; @@ -83,10 +90,4 @@ const MentionItem = ({ ); }; -MentionItem.propTypes = { - item: PropTypes.object, - trackingType: PropTypes.string, - theme: PropTypes.string -}; - export default MentionItem; diff --git a/app/containers/MessageBox/Mentions/index.js b/app/containers/MessageBox/Mentions/index.tsx similarity index 78% rename from app/containers/MessageBox/Mentions/index.js rename to app/containers/MessageBox/Mentions/index.tsx index cb99dcdd71..5056ac079d 100644 --- a/app/containers/MessageBox/Mentions/index.js +++ b/app/containers/MessageBox/Mentions/index.tsx @@ -7,7 +7,12 @@ import styles from '../styles'; import MentionItem from './MentionItem'; import { themes } from '../../../constants/colors'; -const Mentions = React.memo(({ mentions, trackingType, theme }) => { +interface IMessageBoxMentions { + mentions: []; + trackingType: string; + theme: string; +} +const Mentions = React.memo(({ mentions, trackingType, theme }: IMessageBoxMentions) => { if (!trackingType) { return null; } @@ -18,7 +23,7 @@ const Mentions = React.memo(({ mentions, trackingType, theme }) => { data={mentions} extraData={mentions} renderItem={({ item }) => } - keyExtractor={item => item.rid || item.name || item.command || item} + keyExtractor={(item: any) => item.rid || item.name || item.command || item} keyboardShouldPersistTaps='always' /> @@ -36,10 +41,4 @@ const Mentions = React.memo(({ mentions, trackingType, theme }) => { return true; }); -Mentions.propTypes = { - mentions: PropTypes.array, - trackingType: PropTypes.string, - theme: PropTypes.string -}; - export default Mentions; diff --git a/app/containers/MessageBox/buttons/ActionsButton.js b/app/containers/MessageBox/buttons/ActionsButton.tsx similarity index 55% rename from app/containers/MessageBox/buttons/ActionsButton.js rename to app/containers/MessageBox/buttons/ActionsButton.tsx index 5738e71ba3..6b230d3e5f 100644 --- a/app/containers/MessageBox/buttons/ActionsButton.js +++ b/app/containers/MessageBox/buttons/ActionsButton.tsx @@ -1,9 +1,12 @@ import React from 'react'; -import PropTypes from 'prop-types'; - import BaseButton from './BaseButton'; -const ActionsButton = React.memo(({ theme, onPress }) => ( +interface IActionsButton { + theme: string; + onPress(): void; +} + +const ActionsButton = React.memo(({ theme, onPress }: IActionsButton) => ( ( /> )); -ActionsButton.propTypes = { - theme: PropTypes.string, - onPress: PropTypes.func.isRequired -}; - export default ActionsButton; diff --git a/app/containers/MessageBox/buttons/BaseButton.js b/app/containers/MessageBox/buttons/BaseButton.tsx similarity index 57% rename from app/containers/MessageBox/buttons/BaseButton.js rename to app/containers/MessageBox/buttons/BaseButton.tsx index b2d374451f..bf4b99292f 100644 --- a/app/containers/MessageBox/buttons/BaseButton.js +++ b/app/containers/MessageBox/buttons/BaseButton.tsx @@ -1,33 +1,31 @@ import React from 'react'; import { BorderlessButton } from 'react-native-gesture-handler'; -import PropTypes from 'prop-types'; import { themes } from '../../../constants/colors'; import { CustomIcon } from '../../../lib/Icons'; import styles from '../styles'; import I18n from '../../../i18n'; -const BaseButton = React.memo(({ - onPress, testID, accessibilityLabel, icon, theme, color -}) => ( +interface IBaseButton { + theme: string; + onPress(): void; + testID: string; + accessibilityLabel: string; + icon: string; + color: string; +} + +const BaseButton = React.memo(({ onPress, testID, accessibilityLabel, icon, theme, color }: Partial) => ( - + )); -BaseButton.propTypes = { - theme: PropTypes.string, - onPress: PropTypes.func.isRequired, - testID: PropTypes.string.isRequired, - accessibilityLabel: PropTypes.string.isRequired, - icon: PropTypes.string.isRequired, - color: PropTypes.string -}; - export default BaseButton; diff --git a/app/containers/MessageBox/buttons/CancelEditingButton.js b/app/containers/MessageBox/buttons/CancelEditingButton.tsx similarity index 55% rename from app/containers/MessageBox/buttons/CancelEditingButton.js rename to app/containers/MessageBox/buttons/CancelEditingButton.tsx index 1a6e69bb15..f57a2ac613 100644 --- a/app/containers/MessageBox/buttons/CancelEditingButton.js +++ b/app/containers/MessageBox/buttons/CancelEditingButton.tsx @@ -1,9 +1,12 @@ import React from 'react'; -import PropTypes from 'prop-types'; - import BaseButton from './BaseButton'; -const CancelEditingButton = React.memo(({ theme, onPress }) => ( +interface ICancelEditingButton { + theme: string; + onPress():void; +} + +const CancelEditingButton = React.memo(({ theme, onPress }: ICancelEditingButton) => ( ( /> )); -CancelEditingButton.propTypes = { - theme: PropTypes.string, - onPress: PropTypes.func.isRequired -}; - export default CancelEditingButton; diff --git a/app/containers/MessageBox/buttons/SendButton.js b/app/containers/MessageBox/buttons/SendButton.tsx similarity index 64% rename from app/containers/MessageBox/buttons/SendButton.js rename to app/containers/MessageBox/buttons/SendButton.tsx index 7f465db8bd..b144d49829 100644 --- a/app/containers/MessageBox/buttons/SendButton.js +++ b/app/containers/MessageBox/buttons/SendButton.tsx @@ -1,10 +1,13 @@ import React from 'react'; -import PropTypes from 'prop-types'; - import BaseButton from './BaseButton'; import { themes } from '../../../constants/colors'; -const SendButton = React.memo(({ theme, onPress }) => ( +interface ISendButton { + theme: string; + onPress(): void; +} + +const SendButton = React.memo(({ theme, onPress }: ISendButton) => ( ( /> )); -SendButton.propTypes = { - theme: PropTypes.string, - onPress: PropTypes.func.isRequired -}; - export default SendButton; diff --git a/app/containers/MessageBox/buttons/ToggleEmojiButton.js b/app/containers/MessageBox/buttons/ToggleEmojiButton.tsx similarity index 63% rename from app/containers/MessageBox/buttons/ToggleEmojiButton.js rename to app/containers/MessageBox/buttons/ToggleEmojiButton.tsx index 86206b3c12..c1914d9e15 100644 --- a/app/containers/MessageBox/buttons/ToggleEmojiButton.js +++ b/app/containers/MessageBox/buttons/ToggleEmojiButton.tsx @@ -1,11 +1,14 @@ import React from 'react'; -import PropTypes from 'prop-types'; - import BaseButton from './BaseButton'; -const ToggleEmojiButton = React.memo(({ - theme, show, open, close -}) => { +interface IToggleEmojiButton { + theme: string; + show: boolean; + open(): void; + close(): void; +} + +const ToggleEmojiButton = React.memo(({ theme, show, open, close }: IToggleEmojiButton) => { if (show) { return ( Date: Fri, 23 Jul 2021 01:15:16 -0300 Subject: [PATCH 30/90] [IMPROVE] - migrating the MessageBox container (in progress) --- .../{EmojiKeyboard.js => EmojiKeyboard.tsx} | 14 ++++---- ...ons.android.js => LeftButtons.android.tsx} | 22 ++++++------ ...LeftButtons.ios.js => LeftButtons.ios.tsx} | 19 +++++----- .../{RecordAudio.js => RecordAudio.tsx} | 27 ++++++++------ .../{ReplyPreview.js => ReplyPreview.tsx} | 36 ++++++++++--------- ...ns.android.js => RightButtons.android.tsx} | 19 +++++----- app/containers/MessageBox/RightButtons.ios.js | 19 ---------- .../MessageBox/RightButtons.ios.tsx | 17 +++++++++ .../MessageBox/{styles.js => styles.ts} | 0 app/externalModules.d.ts | 1 + 10 files changed, 89 insertions(+), 85 deletions(-) rename app/containers/MessageBox/{EmojiKeyboard.js => EmojiKeyboard.tsx} (77%) rename app/containers/MessageBox/{LeftButtons.android.js => LeftButtons.android.tsx} (61%) rename app/containers/MessageBox/{LeftButtons.ios.js => LeftButtons.ios.tsx} (68%) rename app/containers/MessageBox/{RecordAudio.js => RecordAudio.tsx} (92%) rename app/containers/MessageBox/{ReplyPreview.js => ReplyPreview.tsx} (77%) rename app/containers/MessageBox/{RightButtons.android.js => RightButtons.android.tsx} (67%) delete mode 100644 app/containers/MessageBox/RightButtons.ios.js create mode 100644 app/containers/MessageBox/RightButtons.ios.tsx rename app/containers/MessageBox/{styles.js => styles.ts} (100%) diff --git a/app/containers/MessageBox/EmojiKeyboard.js b/app/containers/MessageBox/EmojiKeyboard.tsx similarity index 77% rename from app/containers/MessageBox/EmojiKeyboard.js rename to app/containers/MessageBox/EmojiKeyboard.tsx index bbffa4a92f..f7ac0b9edf 100644 --- a/app/containers/MessageBox/EmojiKeyboard.js +++ b/app/containers/MessageBox/EmojiKeyboard.tsx @@ -1,7 +1,6 @@ import React from 'react'; import { View } from 'react-native'; import { KeyboardRegistry } from 'react-native-ui-lib/keyboard'; -import PropTypes from 'prop-types'; import store from '../../lib/createStore'; import EmojiPicker from '../EmojiPicker'; @@ -9,18 +8,19 @@ import styles from './styles'; import { themes } from '../../constants/colors'; import { withTheme } from '../../theme'; -export default class EmojiKeyboard extends React.PureComponent { - static propTypes = { - theme: PropTypes.string - }; +interface IMessageBoxEmojiKeyboard { + theme: string +} +export default class EmojiKeyboard extends React.PureComponent { + private readonly baseUrl: any; - constructor(props) { + constructor(props: IMessageBoxEmojiKeyboard) { super(props); const state = store.getState(); this.baseUrl = state.share.server.server || state.server.server; } - onEmojiSelected = (emoji) => { + onEmojiSelected = (emoji: any) => { KeyboardRegistry.onItemSelected('EmojiKeyboard', { emoji }); } diff --git a/app/containers/MessageBox/LeftButtons.android.js b/app/containers/MessageBox/LeftButtons.android.tsx similarity index 61% rename from app/containers/MessageBox/LeftButtons.android.js rename to app/containers/MessageBox/LeftButtons.android.tsx index f118ccf6e1..cf6934b772 100644 --- a/app/containers/MessageBox/LeftButtons.android.js +++ b/app/containers/MessageBox/LeftButtons.android.tsx @@ -1,11 +1,18 @@ import React from 'react'; -import PropTypes from 'prop-types'; - import { CancelEditingButton, ToggleEmojiButton } from './buttons'; +interface IMessageBoxLeftButtons { + theme: string; + showEmojiKeyboard: boolean; + openEmoji(): void; + closeEmoji(): void; + editing: boolean; + editCancel(): void; +} + const LeftButtons = React.memo(({ theme, showEmojiKeyboard, editing, editCancel, openEmoji, closeEmoji -}) => { +}: IMessageBoxLeftButtons) => { if (editing) { return ; } @@ -19,13 +26,4 @@ const LeftButtons = React.memo(({ ); }); -LeftButtons.propTypes = { - theme: PropTypes.string, - showEmojiKeyboard: PropTypes.bool, - openEmoji: PropTypes.func.isRequired, - closeEmoji: PropTypes.func.isRequired, - editing: PropTypes.bool, - editCancel: PropTypes.func.isRequired -}; - export default LeftButtons; diff --git a/app/containers/MessageBox/LeftButtons.ios.js b/app/containers/MessageBox/LeftButtons.ios.tsx similarity index 68% rename from app/containers/MessageBox/LeftButtons.ios.js rename to app/containers/MessageBox/LeftButtons.ios.tsx index 29c0384661..2064a909bd 100644 --- a/app/containers/MessageBox/LeftButtons.ios.js +++ b/app/containers/MessageBox/LeftButtons.ios.tsx @@ -1,13 +1,20 @@ import React from 'react'; -import PropTypes from 'prop-types'; import { View } from 'react-native'; import { CancelEditingButton, ActionsButton } from './buttons'; import styles from './styles'; +interface IMessageBoxLeftButtons { + theme: string; + showMessageBoxActions(): void; + editing: boolean; + editCancel(): void; + isActionsEnabled: boolean; +} + const LeftButtons = React.memo(({ theme, showMessageBoxActions, editing, editCancel, isActionsEnabled -}) => { +}: IMessageBoxLeftButtons) => { if (editing) { return ; } @@ -17,12 +24,4 @@ const LeftButtons = React.memo(({ return ; }); -LeftButtons.propTypes = { - theme: PropTypes.string, - showMessageBoxActions: PropTypes.func.isRequired, - editing: PropTypes.bool, - editCancel: PropTypes.func.isRequired, - isActionsEnabled: PropTypes.bool -}; - export default LeftButtons; diff --git a/app/containers/MessageBox/RecordAudio.js b/app/containers/MessageBox/RecordAudio.tsx similarity index 92% rename from app/containers/MessageBox/RecordAudio.js rename to app/containers/MessageBox/RecordAudio.tsx index fca259f333..56a5a2b9a3 100644 --- a/app/containers/MessageBox/RecordAudio.js +++ b/app/containers/MessageBox/RecordAudio.tsx @@ -1,5 +1,4 @@ import React from 'react'; -import PropTypes from 'prop-types'; import { View, Text } from 'react-native'; import { Audio } from 'expo-av'; import { BorderlessButton } from 'react-native-gesture-handler'; @@ -12,6 +11,12 @@ import { themes } from '../../constants/colors'; import { CustomIcon } from '../../lib/Icons'; import { logEvent, events } from '../../utils/log'; +interface IMessageBoxRecordAudioProps { + theme: string; + recordingCallback({}): void; + onFinish({}): void; +} + const RECORDING_EXTENSION = '.aac'; const RECORDING_SETTINGS = { android: { @@ -41,22 +46,19 @@ const RECORDING_MODE = { interruptionModeAndroid: Audio.INTERRUPTION_MODE_ANDROID_DO_NOT_MIX }; -const formatTime = function(seconds) { - let minutes = Math.floor(seconds / 60); +const formatTime = function(seconds: any) { + let minutes: any = Math.floor(seconds / 60); seconds %= 60; if (minutes < 10) { minutes = `0${ minutes }`; } if (seconds < 10) { seconds = `0${ seconds }`; } return `${ minutes }:${ seconds }`; }; -export default class RecordAudio extends React.PureComponent { - static propTypes = { - theme: PropTypes.string, - recordingCallback: PropTypes.func, - onFinish: PropTypes.func - } +export default class RecordAudio extends React.PureComponent { + private isRecorderBusy: boolean; + private recording: any; - constructor(props) { + constructor(props: IMessageBoxRecordAudioProps) { super(props); this.isRecorderBusy = false; this.state = { @@ -96,7 +98,7 @@ export default class RecordAudio extends React.PureComponent { return false; } - onRecordingStatusUpdate = (status) => { + onRecordingStatusUpdate = (status: any) => { this.setState({ isRecording: status.isRecording, recordingDurationMillis: status.durationMillis @@ -183,6 +185,7 @@ export default class RecordAudio extends React.PureComponent { onPress={this.startRecordingAudio} style={styles.actionButton} testID='messagebox-send-audio' + // @ts-ignore accessibilityLabel={I18n.t('Send_audio_message')} accessibilityTraits='button' > @@ -196,6 +199,7 @@ export default class RecordAudio extends React.PureComponent { { +}: IMessageBoxReplyPreview) => { if (!replying) { return null; } @@ -61,6 +76,7 @@ const ReplyPreview = React.memo(({ {useRealName ? message.u?.name : message.u?.username} {time} + {/*@ts-ignore*/} ); -}, (prevProps, nextProps) => prevProps.replying === nextProps.replying && prevProps.theme === nextProps.theme && prevProps.message.id === nextProps.message.id); - -ReplyPreview.propTypes = { - replying: PropTypes.bool, - message: PropTypes.object.isRequired, - Message_TimeFormat: PropTypes.string.isRequired, - close: PropTypes.func.isRequired, - baseUrl: PropTypes.string.isRequired, - username: PropTypes.string.isRequired, - getCustomEmoji: PropTypes.func, - theme: PropTypes.string, - useRealName: PropTypes.bool -}; +}, (prevProps: any, nextProps: any) => prevProps.replying === nextProps.replying && prevProps.theme === nextProps.theme && prevProps.message.id === nextProps.message.id); -const mapStateToProps = state => ({ +const mapStateToProps = (state: any) => ({ Message_TimeFormat: state.settings.Message_TimeFormat, baseUrl: state.server.server, useRealName: state.settings.UI_Use_Real_Name diff --git a/app/containers/MessageBox/RightButtons.android.js b/app/containers/MessageBox/RightButtons.android.tsx similarity index 67% rename from app/containers/MessageBox/RightButtons.android.js rename to app/containers/MessageBox/RightButtons.android.tsx index 6da835642e..db4d9e9131 100644 --- a/app/containers/MessageBox/RightButtons.android.js +++ b/app/containers/MessageBox/RightButtons.android.tsx @@ -1,13 +1,20 @@ import React from 'react'; -import PropTypes from 'prop-types'; import { View } from 'react-native'; import { SendButton, ActionsButton } from './buttons'; import styles from './styles'; +interface IMessageBoxRightButtons { + theme: string; + showSend: boolean; + submit(): void; + showMessageBoxActions(): void; + isActionsEnabled: boolean; +} + const RightButtons = React.memo(({ theme, showSend, submit, showMessageBoxActions, isActionsEnabled -}) => { +}: IMessageBoxRightButtons) => { if (showSend) { return ; } @@ -18,12 +25,4 @@ const RightButtons = React.memo(({ return ; }); -RightButtons.propTypes = { - theme: PropTypes.string, - showSend: PropTypes.bool, - submit: PropTypes.func.isRequired, - showMessageBoxActions: PropTypes.func.isRequired, - isActionsEnabled: PropTypes.bool -}; - export default RightButtons; diff --git a/app/containers/MessageBox/RightButtons.ios.js b/app/containers/MessageBox/RightButtons.ios.js deleted file mode 100644 index 9ea5fc74e8..0000000000 --- a/app/containers/MessageBox/RightButtons.ios.js +++ /dev/null @@ -1,19 +0,0 @@ -import React from 'react'; -import PropTypes from 'prop-types'; - -import { SendButton } from './buttons'; - -const RightButtons = React.memo(({ theme, showSend, submit }) => { - if (showSend) { - return ; - } - return null; -}); - -RightButtons.propTypes = { - theme: PropTypes.string, - showSend: PropTypes.bool, - submit: PropTypes.func.isRequired -}; - -export default RightButtons; diff --git a/app/containers/MessageBox/RightButtons.ios.tsx b/app/containers/MessageBox/RightButtons.ios.tsx new file mode 100644 index 0000000000..8db0e68ee7 --- /dev/null +++ b/app/containers/MessageBox/RightButtons.ios.tsx @@ -0,0 +1,17 @@ +import React from 'react'; +import { SendButton } from './buttons'; + +interface IMessageBoxRightButtons { + theme: string; + showSend: boolean; + submit(): void; +} + +const RightButtons = React.memo(({ theme, showSend, submit }: IMessageBoxRightButtons) => { + if (showSend) { + return ; + } + return null; +}); + +export default RightButtons; diff --git a/app/containers/MessageBox/styles.js b/app/containers/MessageBox/styles.ts similarity index 100% rename from app/containers/MessageBox/styles.js rename to app/containers/MessageBox/styles.ts diff --git a/app/externalModules.d.ts b/app/externalModules.d.ts index 4fe98fd98c..90fe398067 100644 --- a/app/externalModules.d.ts +++ b/app/externalModules.d.ts @@ -4,3 +4,4 @@ declare module 'commonmark-react-renderer'; declare module 'remove-markdown'; declare module 'react-native-image-progress'; declare module 'react-native-platform-touchable'; +declare module 'react-native-ui-lib/keyboard'; \ No newline at end of file From 9e0154c43603733c01d8c14e829996a3d6ca3d9c Mon Sep 17 00:00:00 2001 From: AlexAlexandre Date: Fri, 23 Jul 2021 15:54:46 -0300 Subject: [PATCH 31/90] [IMPROVE] - migrating the MessageBox container (in progress) --- .../MessageBox/{index.js => index.tsx} | 204 ++++++++++-------- 1 file changed, 117 insertions(+), 87 deletions(-) rename app/containers/MessageBox/{index.js => index.tsx} (88%) diff --git a/app/containers/MessageBox/index.js b/app/containers/MessageBox/index.tsx similarity index 88% rename from app/containers/MessageBox/index.js rename to app/containers/MessageBox/index.tsx index 213f27d517..1693afdced 100644 --- a/app/containers/MessageBox/index.js +++ b/app/containers/MessageBox/index.tsx @@ -1,8 +1,5 @@ import React, { Component } from 'react'; -import PropTypes from 'prop-types'; -import { - View, Alert, Keyboard, NativeModules, Text -} from 'react-native'; +import { View, Alert, Keyboard, Text } from 'react-native'; import { connect } from 'react-redux'; import { KeyboardAccessoryView } from 'react-native-ui-lib/keyboard'; import ImagePicker from 'react-native-image-crop-picker'; @@ -24,7 +21,9 @@ import I18n from '../../i18n'; import ReplyPreview from './ReplyPreview'; import debounce from '../../utils/debounce'; import { themes } from '../../constants/colors'; +// @ts-ignore import LeftButtons from './LeftButtons'; +// @ts-ignore import RightButtons from './RightButtons'; import { isAndroid, isTablet } from '../../utils/deviceInfo'; import { canUploadFile } from '../../utils/media'; @@ -72,54 +71,79 @@ const videoPickerConfig = { mediaType: 'video' }; -class MessageBox extends Component { - static propTypes = { - rid: PropTypes.string.isRequired, - baseUrl: PropTypes.string.isRequired, - message: PropTypes.object, - replying: PropTypes.bool, - editing: PropTypes.bool, - threadsEnabled: PropTypes.bool, - isFocused: PropTypes.func, - user: PropTypes.shape({ - id: PropTypes.string, - username: PropTypes.string, - token: PropTypes.string - }), - roomType: PropTypes.string, - tmid: PropTypes.string, - replyWithMention: PropTypes.bool, - FileUpload_MediaTypeWhiteList: PropTypes.string, - FileUpload_MaxFileSize: PropTypes.number, - Message_AudioRecorderEnabled: PropTypes.bool, - getCustomEmoji: PropTypes.func, - editCancel: PropTypes.func.isRequired, - editRequest: PropTypes.func.isRequired, - onSubmit: PropTypes.func.isRequired, - typing: PropTypes.func, - theme: PropTypes.string, - replyCancel: PropTypes.func, - showSend: PropTypes.bool, - navigation: PropTypes.object, - children: PropTypes.node, - isMasterDetail: PropTypes.bool, - showActionSheet: PropTypes.func, - iOSScrollBehavior: PropTypes.number, - sharing: PropTypes.bool, - isActionsEnabled: PropTypes.bool - } - - static defaultProps = { - message: { - id: '' - }, - sharing: false, - iOSScrollBehavior: NativeModules.KeyboardTrackingViewTempManager?.KeyboardTrackingScrollBehaviorFixedOffset, - isActionsEnabled: true, - getCustomEmoji: () => {} - } +interface IMessageBoxProps { + rid: string; + baseUrl: string; + message: { + u: { + username: string; + }; + id: any; + }; + replying: boolean; + editing: boolean; + threadsEnabled: boolean; + isFocused(): boolean; + user: { + id: string; + username: string; + token: string; + }; + roomType: string; + tmid: string; + replyWithMention: boolean; + FileUpload_MediaTypeWhiteList: string; + FileUpload_MaxFileSize: number; + Message_AudioRecorderEnabled: boolean; + getCustomEmoji(): void; + editCancel(): void; + editRequest({}): void; + onSubmit({}, {}?, {}?): void; + typing({}, {}): void; + theme: string; + replyCancel(): void; + showSend: boolean; + navigation: any; + children: JSX.Element; + isMasterDetail: boolean; + showActionSheet({}): void; + iOSScrollBehavior: number; + sharing: boolean; + isActionsEnabled: boolean; +} +interface IMessageBoxState { + mentions: any[]; + showEmojiKeyboard: boolean; + showSend: any; + recording: boolean; + trackingType: string; + commandPreview: []; + showCommandPreview: boolean; + command: { + appId?: any + }; + tshow: boolean; +} - constructor(props) { +class MessageBox extends Component { + + private text: string; + private selection: { start: number; end: number }; + private focused: boolean; + private options: any; + private imagePickerConfig: any; + private libraryPickerConfig: any; + private videoPickerConfig: any; + private room: any; + private thread: any; + private unsubscribeFocus: any; + private trackingTimeout: any; + private tracking: any; + private unsubscribeBlur: any; + private component: any; + private typingTimeout: any; + + constructor(props: IMessageBoxProps) { super(props); this.state = { mentions: [], @@ -170,14 +194,17 @@ class MessageBox extends Component { cropperCancelText: I18n.t('Cancel'), loadingLabelText: I18n.t('Processing') }; + this.imagePickerConfig = { ...imagePickerConfig, ...libPickerLabels }; + this.libraryPickerConfig = { ...libraryPickerConfig, ...libPickerLabels }; + this.videoPickerConfig = { ...videoPickerConfig, ...libPickerLabels @@ -186,9 +213,7 @@ class MessageBox extends Component { async componentDidMount() { const db = database.active; - const { - rid, tmid, navigation, sharing - } = this.props; + const { rid, tmid, navigation, sharing } = this.props; let msg; try { const threadsCollection = db.get('threads'); @@ -238,10 +263,8 @@ class MessageBox extends Component { }); } - UNSAFE_componentWillReceiveProps(nextProps) { - const { - isFocused, editing, replying, sharing - } = this.props; + UNSAFE_componentWillReceiveProps(nextProps: any) { + const { isFocused, editing, replying, sharing } = this.props; if (!isFocused?.()) { return; } @@ -266,7 +289,7 @@ class MessageBox extends Component { } } - shouldComponentUpdate(nextProps, nextState) { + shouldComponentUpdate(nextProps: any, nextState: any) { const { showEmojiKeyboard, showSend, recording, mentions, commandPreview, tshow } = this.state; @@ -274,6 +297,7 @@ class MessageBox extends Component { const { roomType, replying, editing, isFocused, message, theme } = this.props; + if (nextProps.theme !== theme) { return true; } @@ -341,19 +365,19 @@ class MessageBox extends Component { } } - onChangeText = (text) => { + onChangeText: any = (text: string): void => { const isTextEmpty = text.length === 0; this.setShowSend(!isTextEmpty); this.debouncedOnChangeText(text); this.setInput(text); } - onSelectionChange = (e) => { + onSelectionChange = (e: any) => { this.selection = e.nativeEvent.selection; } // eslint-disable-next-line react/sort-comp - debouncedOnChangeText = debounce(async(text) => { + debouncedOnChangeText = debounce(async(text: any) => { const { sharing } = this.props; const isTextEmpty = text.length === 0; if (isTextEmpty) { @@ -404,7 +428,7 @@ class MessageBox extends Component { this.closeEmoji(); } - onPressMention = (item) => { + onPressMention = (item: any) => { if (!this.component) { return; } @@ -418,16 +442,18 @@ class MessageBox extends Component { ? `${ item.name || item }:` : (item.username || item.name || item.command); const text = `${ result }${ mentionName } ${ msg.slice(cursor) }`; + if ((trackingType === MENTIONS_TRACKING_TYPE_COMMANDS) && item.providesPreview) { this.setState({ showCommandPreview: true }); } + const newCursor = cursor + mentionName.length; this.setInput(text, { start: newCursor, end: newCursor }); this.focus(); requestAnimationFrame(() => this.stopTrackingMention()); } - onPressCommandPreview = (item) => { + onPressCommandPreview = (item: any) => { const { command } = this.state; const { rid, tmid, message: { id: messageTmid }, replyCancel @@ -449,7 +475,7 @@ class MessageBox extends Component { } } - onEmojiSelected = (keyboardId, params) => { + onEmojiSelected = (keyboardId: any, params: any) => { const { text } = this; const { emoji } = params; let newText = ''; @@ -463,7 +489,7 @@ class MessageBox extends Component { this.setShowSend(true); } - getPermalink = async(message) => { + getPermalink = async(message: any) => { try { return await RocketChat.getPermalinkMessage(message); } catch (error) { @@ -471,8 +497,8 @@ class MessageBox extends Component { } } - getFixedMentions = (keyword) => { - let result = []; + getFixedMentions = (keyword: any) => { + let result: any = []; if ('all'.indexOf(keyword) !== -1) { result = [{ rid: -1, username: 'all' }]; } @@ -482,7 +508,7 @@ class MessageBox extends Component { return result; } - getUsers = debounce(async(keyword) => { + getUsers = debounce(async(keyword: any) => { let res = await RocketChat.search({ text: keyword, filterRooms: false, filterUsers: true }); res = [...this.getFixedMentions(keyword), ...res]; this.setState({ mentions: res }); @@ -493,7 +519,7 @@ class MessageBox extends Component { this.setState({ mentions: res }); }, 300) - getEmojis = debounce(async(keyword) => { + getEmojis = debounce(async(keyword: any) => { const db = database.active; const customEmojisCollection = db.get('custom_emojis'); const likeString = sanitizeLikeString(keyword); @@ -508,7 +534,7 @@ class MessageBox extends Component { this.setState({ mentions: mergedEmojis || [] }); }, 300) - getSlashCommands = debounce(async(keyword) => { + getSlashCommands = debounce(async(keyword: any) => { const db = database.active; const commandsCollection = db.get('slash_commands'); const likeString = sanitizeLikeString(keyword); @@ -524,7 +550,7 @@ class MessageBox extends Component { } } - handleTyping = (isTyping) => { + handleTyping = (isTyping: boolean) => { const { typing, rid, sharing } = this.props; if (sharing) { return; @@ -548,7 +574,7 @@ class MessageBox extends Component { }, 1000); } - setCommandPreview = async(command, name, params) => { + setCommandPreview = async(command: any, name: string, params: any) => { const { rid } = this.props; try { const { success, preview } = await RocketChat.getCommandPreview(name, rid, params); @@ -561,7 +587,7 @@ class MessageBox extends Component { this.setState({ commandPreview: [], showCommandPreview: true, command: {} }); } - setInput = (text, selection) => { + setInput = (text: any, selection?: any) => { this.text = text; if (selection) { return this.component.setTextAndSelection(text, selection); @@ -569,7 +595,7 @@ class MessageBox extends Component { this.component.setNativeProps({ text }); } - setShowSend = (showSend) => { + setShowSend = (showSend: any) => { const { showSend: prevShowSend } = this.state; const { showSend: propShowSend } = this.props; if (prevShowSend !== showSend && !propShowSend) { @@ -583,7 +609,7 @@ class MessageBox extends Component { this.setState({ tshow: false }); } - canUploadFile = (file) => { + canUploadFile = (file: any) => { const { FileUpload_MediaTypeWhiteList, FileUpload_MaxFileSize } = this.props; const result = canUploadFile(file, FileUpload_MediaTypeWhiteList, FileUpload_MaxFileSize); if (result.success) { @@ -650,7 +676,7 @@ class MessageBox extends Component { } } - openShareView = (attachments) => { + openShareView = (attachments: any) => { const { message, replyCancel, replyWithMention } = this.props; // Start a thread with an attachment let { thread } = this; @@ -689,11 +715,11 @@ class MessageBox extends Component { this.setState({ showEmojiKeyboard: true }); } - recordingCallback = (recording) => { + recordingCallback = (recording: any) => { this.setState({ recording }); } - finishAudioMessage = async(fileInfo) => { + finishAudioMessage = async(fileInfo: any) => { const { rid, tmid, baseUrl: server, user } = this.props; @@ -767,6 +793,7 @@ class MessageBox extends Component { // Edit if (editing) { const { message: editingMessage, editRequest } = this.props; + // @ts-ignore const { id, subscription: { id: rid } } = editingMessage; editRequest({ id, msg: message, rid }); @@ -798,11 +825,12 @@ class MessageBox extends Component { // Normal message } else { + // @ts-ignore onSubmit(message, undefined, tshow); } } - updateMentions = (keyword, type) => { + updateMentions = (keyword: any, type: string) => { if (type === MENTIONS_TRACKING_TYPE_USERS) { this.getUsers(keyword); } else if (type === MENTIONS_TRACKING_TYPE_EMOJIS) { @@ -814,7 +842,7 @@ class MessageBox extends Component { } } - identifyMentionKeyword = (keyword, type) => { + identifyMentionKeyword = (keyword: any, type: string) => { this.setState({ showEmojiKeyboard: false, trackingType: type @@ -835,7 +863,7 @@ class MessageBox extends Component { }); } - handleCommands = ({ event }) => { + handleCommands = ({ event }: {event: any}) => { if (handleCommandTyping(event)) { if (this.focused) { Keyboard.dismiss(); @@ -896,12 +924,14 @@ class MessageBox extends Component { const commandsPreviewAndMentions = !recording ? ( <> + {/*@ts-ignore*/} ) : null; const replyPreview = !recording ? ( this.component = component} + //@ts-ignore style={[styles.textBoxInput, { color: themes[theme].bodyText }]} returnKeyType='default' keyboardType='twitter' @@ -989,14 +1020,13 @@ class MessageBox extends Component { }} > this.tracking = ref} + ref={(ref: any) => this.tracking = ref} renderContent={this.renderContent} kbInputRef={this.component} kbComponent={showEmojiKeyboard ? 'EmojiKeyboard' : null} onKeyboardResigned={this.onKeyboardResigned} onItemSelected={this.onEmojiSelected} trackInteractive - // revealKeyboardInteractive requiresSameParentToManageScrollView addBottomView bottomViewColor={themes[theme].messageboxBackground} @@ -1007,7 +1037,7 @@ class MessageBox extends Component { } } -const mapStateToProps = state => ({ +const mapStateToProps = (state: any) => ({ isMasterDetail: state.app.isMasterDetail, baseUrl: state.server.server, threadsEnabled: state.settings.Threads_enabled, @@ -1018,7 +1048,7 @@ const mapStateToProps = state => ({ }); const dispatchToProps = ({ - typing: (rid, status) => userTypingAction(rid, status) + typing: (rid: any, status: any) => userTypingAction(rid, status) }); - +// @ts-ignore export default connect(mapStateToProps, dispatchToProps, null, { forwardRef: true })(withActionSheet(MessageBox)); From 4f65c1b37141c53ffa3f3d856db8940501a68311 Mon Sep 17 00:00:00 2001 From: AlexAlexandre Date: Fri, 23 Jul 2021 16:14:32 -0300 Subject: [PATCH 32/90] [IMPROVE] - removing unused proptypes --- .../MessageBox/CommandsPreview/index.tsx | 1 - app/containers/MessageBox/Mentions/index.tsx | 1 - yarn.lock | 4376 ++++++----------- 3 files changed, 1606 insertions(+), 2772 deletions(-) diff --git a/app/containers/MessageBox/CommandsPreview/index.tsx b/app/containers/MessageBox/CommandsPreview/index.tsx index 4bae91ca4a..270ce7e139 100644 --- a/app/containers/MessageBox/CommandsPreview/index.tsx +++ b/app/containers/MessageBox/CommandsPreview/index.tsx @@ -1,6 +1,5 @@ import React from 'react'; import { FlatList } from 'react-native'; -import PropTypes from 'prop-types'; import { dequal } from 'dequal'; import Item from './Item'; diff --git a/app/containers/MessageBox/Mentions/index.tsx b/app/containers/MessageBox/Mentions/index.tsx index 5056ac079d..c9d564d982 100644 --- a/app/containers/MessageBox/Mentions/index.tsx +++ b/app/containers/MessageBox/Mentions/index.tsx @@ -1,6 +1,5 @@ import React from 'react'; import { FlatList, View } from 'react-native'; -import PropTypes from 'prop-types'; import { dequal } from 'dequal'; import styles from '../styles'; diff --git a/yarn.lock b/yarn.lock index a1b14878f7..3288dc65d0 100644 --- a/yarn.lock +++ b/yarn.lock @@ -9,95 +9,32 @@ dependencies: "@babel/highlight" "^7.0.0" -"@babel/code-frame@^7.0.0", "@babel/code-frame@^7.0.0-beta.35", "@babel/code-frame@^7.8.3": - version "7.8.3" - resolved "https://registry.yarnpkg.com/@babel/code-frame/-/code-frame-7.8.3.tgz#33e25903d7481181534e12ec0a25f16b6fcf419e" - integrity sha512-a9gxpmdXtZEInkCSHUJDLHZVBgb1QS0jhss4cPP93EW7s+uC5bikET2twEF3KV+7rDblJcmNvTR7VJejqd2C2g== - dependencies: - "@babel/highlight" "^7.8.3" - -"@babel/code-frame@^7.10.4": - version "7.10.4" - resolved "https://registry.yarnpkg.com/@babel/code-frame/-/code-frame-7.10.4.tgz#168da1a36e90da68ae8d49c0f1b48c7c6249213a" - integrity sha512-vG6SvB6oYEhvgisZNFRmRCUkLz11c7rp+tbNTynGqc6mS1d5ATd/sGyV6W0KZZnXRKMTzZDRgQT3Ou9jhpAfUg== - dependencies: - "@babel/highlight" "^7.10.4" - -"@babel/code-frame@^7.14.5": +"@babel/code-frame@^7.0.0", "@babel/code-frame@^7.0.0-beta.35", "@babel/code-frame@^7.14.5": version "7.14.5" resolved "https://registry.yarnpkg.com/@babel/code-frame/-/code-frame-7.14.5.tgz#23b08d740e83f49c5e59945fbf1b43e80bbf4edb" integrity sha512-9pzDqyc6OLDaqe+zbACgFkb6fKMNG6CObKpnYXChRsvYGyEdc7CA2BaqeOM+vOtCS5ndmJicPJhKAwYRI6UfFw== dependencies: "@babel/highlight" "^7.14.5" -"@babel/compat-data@^7.13.11", "@babel/compat-data@^7.14.5": - version "7.14.5" - resolved "https://registry.yarnpkg.com/@babel/compat-data/-/compat-data-7.14.5.tgz#8ef4c18e58e801c5c95d3c1c0f2874a2680fadea" - integrity sha512-kixrYn4JwfAVPa0f2yfzc2AWti6WRRyO3XjWW5PJAvtE11qhSayrrcrEnee05KAtNaPC+EwehE8Qt1UedEVB8w== - -"@babel/compat-data@^7.14.7": +"@babel/compat-data@^7.13.11", "@babel/compat-data@^7.14.5", "@babel/compat-data@^7.14.7": version "7.14.7" resolved "https://registry.yarnpkg.com/@babel/compat-data/-/compat-data-7.14.7.tgz#7b047d7a3a89a67d2258dc61f604f098f1bc7e08" integrity sha512-nS6dZaISCXJ3+518CWiBfEr//gHyMO02uDxBkXTKZDN5POruCnOZ1N4YBRZDCabwF8nZMWBpRxIicmXtBs+fvw== -"@babel/core@^7.0.0", "@babel/core@^7.1.0": - version "7.9.6" - resolved "https://registry.yarnpkg.com/@babel/core/-/core-7.9.6.tgz#d9aa1f580abf3b2286ef40b6904d390904c63376" - integrity sha512-nD3deLvbsApbHAHttzIssYqgb883yU/d9roe4RZymBCDaZryMJDbptVpEpeQuRh4BJ+SYI8le9YGxKvFEvl1Wg== - dependencies: - "@babel/code-frame" "^7.8.3" - "@babel/generator" "^7.9.6" - "@babel/helper-module-transforms" "^7.9.0" - "@babel/helpers" "^7.9.6" - "@babel/parser" "^7.9.6" - "@babel/template" "^7.8.6" - "@babel/traverse" "^7.9.6" - "@babel/types" "^7.9.6" - convert-source-map "^1.7.0" - debug "^4.1.0" - gensync "^1.0.0-beta.1" - json5 "^2.1.2" - lodash "^4.17.13" - resolve "^1.3.2" - semver "^5.4.1" - source-map "^0.5.0" - -"@babel/core@^7.7.5": - version "7.10.4" - resolved "https://registry.yarnpkg.com/@babel/core/-/core-7.10.4.tgz#780e8b83e496152f8dd7df63892b2e052bf1d51d" - integrity sha512-3A0tS0HWpy4XujGc7QtOIHTeNwUgWaZc/WuS5YQrfhU67jnVmsD6OGPc1AKHH0LJHQICGncy3+YUjIhVlfDdcA== - dependencies: - "@babel/code-frame" "^7.10.4" - "@babel/generator" "^7.10.4" - "@babel/helper-module-transforms" "^7.10.4" - "@babel/helpers" "^7.10.4" - "@babel/parser" "^7.10.4" - "@babel/template" "^7.10.4" - "@babel/traverse" "^7.10.4" - "@babel/types" "^7.10.4" - convert-source-map "^1.7.0" - debug "^4.1.0" - gensync "^1.0.0-beta.1" - json5 "^2.1.2" - lodash "^4.17.13" - resolve "^1.3.2" - semver "^5.4.1" - source-map "^0.5.0" - -"@babel/core@^7.8.4": - version "7.14.6" - resolved "https://registry.yarnpkg.com/@babel/core/-/core-7.14.6.tgz#e0814ec1a950032ff16c13a2721de39a8416fcab" - integrity sha512-gJnOEWSqTk96qG5BoIrl5bVtc23DCycmIePPYnamY9RboYdI4nFy5vAQMSl81O5K/W0sLDWfGysnOECC+KUUCA== +"@babel/core@^7.0.0", "@babel/core@^7.1.0", "@babel/core@^7.7.5", "@babel/core@^7.8.4": + version "7.14.8" + resolved "https://registry.yarnpkg.com/@babel/core/-/core-7.14.8.tgz#20cdf7c84b5d86d83fac8710a8bc605a7ba3f010" + integrity sha512-/AtaeEhT6ErpDhInbXmjHcUQXH0L0TEgscfcxk1qbOvLuKCa5aZT0SOOtDKFY96/CLROwbLSKyFor6idgNaU4Q== dependencies: "@babel/code-frame" "^7.14.5" - "@babel/generator" "^7.14.5" + "@babel/generator" "^7.14.8" "@babel/helper-compilation-targets" "^7.14.5" - "@babel/helper-module-transforms" "^7.14.5" - "@babel/helpers" "^7.14.6" - "@babel/parser" "^7.14.6" + "@babel/helper-module-transforms" "^7.14.8" + "@babel/helpers" "^7.14.8" + "@babel/parser" "^7.14.8" "@babel/template" "^7.14.5" - "@babel/traverse" "^7.14.5" - "@babel/types" "^7.14.5" + "@babel/traverse" "^7.14.8" + "@babel/types" "^7.14.8" convert-source-map "^1.7.0" debug "^4.1.0" gensync "^1.0.0-beta.2" @@ -121,33 +58,13 @@ dependencies: eslint-rule-composer "^0.3.0" -"@babel/generator@^7.10.4": - version "7.10.4" - resolved "https://registry.yarnpkg.com/@babel/generator/-/generator-7.10.4.tgz#e49eeed9fe114b62fa5b181856a43a5e32f5f243" - integrity sha512-toLIHUIAgcQygFZRAQcsLQV3CBuX6yOIru1kJk/qqqvcRmZrYe6WavZTSG+bB8MxhnL9YPf+pKQfuiP161q7ng== +"@babel/generator@^7.14.8", "@babel/generator@^7.4.0", "@babel/generator@^7.5.0": + version "7.14.8" + resolved "https://registry.yarnpkg.com/@babel/generator/-/generator-7.14.8.tgz#bf86fd6af96cf3b74395a8ca409515f89423e070" + integrity sha512-cYDUpvIzhBVnMzRoY1fkSEhK/HmwEVwlyULYgn/tMQYd6Obag3ylCjONle3gdErfXBW61SVTlR9QR7uWlgeIkg== dependencies: - "@babel/types" "^7.10.4" + "@babel/types" "^7.14.8" jsesc "^2.5.1" - lodash "^4.17.13" - source-map "^0.5.0" - -"@babel/generator@^7.14.5", "@babel/generator@^7.4.0": - version "7.14.5" - resolved "https://registry.yarnpkg.com/@babel/generator/-/generator-7.14.5.tgz#848d7b9f031caca9d0cd0af01b063f226f52d785" - integrity sha512-y3rlP+/G25OIX3mYKKIOlQRcqj7YgrvHxOLbVmyLJ9bPmi5ttvUmpydVjcFjZphOktWuA7ovbx91ECloWTfjIA== - dependencies: - "@babel/types" "^7.14.5" - jsesc "^2.5.1" - source-map "^0.5.0" - -"@babel/generator@^7.5.0", "@babel/generator@^7.9.6": - version "7.9.6" - resolved "https://registry.yarnpkg.com/@babel/generator/-/generator-7.9.6.tgz#5408c82ac5de98cda0d77d8124e99fa1f2170a43" - integrity sha512-+htwWKJbH2bL72HRluF8zumBxzuX0ZZUFl3JLNyoUjM/Ho8wnVpPXM6aUz8cfKDqQ/h7zHqKt4xzJteUosckqQ== - dependencies: - "@babel/types" "^7.9.6" - jsesc "^2.5.1" - lodash "^4.17.13" source-map "^0.5.0" "@babel/helper-annotate-as-pure@^7.14.5": @@ -157,13 +74,6 @@ dependencies: "@babel/types" "^7.14.5" -"@babel/helper-annotate-as-pure@^7.8.3": - version "7.8.3" - resolved "https://registry.yarnpkg.com/@babel/helper-annotate-as-pure/-/helper-annotate-as-pure-7.8.3.tgz#60bc0bc657f63a0924ff9a4b4a0b24a13cf4deee" - integrity sha512-6o+mJrZBxOoEX77Ezv9zwW7WV8DdluouRKNY/IR5u/YTMuKHgugHOzYWlYvYLpLA9nPsQCAAASpCIbjI9Mv+Uw== - dependencies: - "@babel/types" "^7.8.3" - "@babel/helper-builder-binary-assignment-operator-visitor@^7.14.5": version "7.14.5" resolved "https://registry.yarnpkg.com/@babel/helper-builder-binary-assignment-operator-visitor/-/helper-builder-binary-assignment-operator-visitor-7.14.5.tgz#b939b43f8c37765443a19ae74ad8b15978e0a191" @@ -172,31 +82,6 @@ "@babel/helper-explode-assignable-expression" "^7.14.5" "@babel/types" "^7.14.5" -"@babel/helper-builder-binary-assignment-operator-visitor@^7.8.3": - version "7.8.3" - resolved "https://registry.yarnpkg.com/@babel/helper-builder-binary-assignment-operator-visitor/-/helper-builder-binary-assignment-operator-visitor-7.8.3.tgz#c84097a427a061ac56a1c30ebf54b7b22d241503" - integrity sha512-5eFOm2SyFPK4Rh3XMMRDjN7lBH0orh3ss0g3rTYZnBQ+r6YPj7lgDyCvPphynHvUrobJmeMignBr6Acw9mAPlw== - dependencies: - "@babel/helper-explode-assignable-expression" "^7.8.3" - "@babel/types" "^7.8.3" - -"@babel/helper-builder-react-jsx-experimental@^7.9.0": - version "7.9.5" - resolved "https://registry.yarnpkg.com/@babel/helper-builder-react-jsx-experimental/-/helper-builder-react-jsx-experimental-7.9.5.tgz#0b4b3e04e6123f03b404ca4dfd6528fe6bb92fe3" - integrity sha512-HAagjAC93tk748jcXpZ7oYRZH485RCq/+yEv9SIWezHRPv9moZArTnkUNciUNzvwHUABmiWKlcxJvMcu59UwTg== - dependencies: - "@babel/helper-annotate-as-pure" "^7.8.3" - "@babel/helper-module-imports" "^7.8.3" - "@babel/types" "^7.9.5" - -"@babel/helper-builder-react-jsx@^7.9.0": - version "7.9.0" - resolved "https://registry.yarnpkg.com/@babel/helper-builder-react-jsx/-/helper-builder-react-jsx-7.9.0.tgz#16bf391990b57732700a3278d4d9a81231ea8d32" - integrity sha512-weiIo4gaoGgnhff54GQ3P5wsUQmnSwpkvU0r6ZHq6TzoSzKy4JxHEgnxNytaKbov2a9z/CVNyzliuCOUPEX3Jw== - dependencies: - "@babel/helper-annotate-as-pure" "^7.8.3" - "@babel/types" "^7.9.0" - "@babel/helper-compilation-targets@^7.13.0", "@babel/helper-compilation-targets@^7.14.5": version "7.14.5" resolved "https://registry.yarnpkg.com/@babel/helper-compilation-targets/-/helper-compilation-targets-7.14.5.tgz#7a99c5d0967911e972fe2c3411f7d5b498498ecf" @@ -207,30 +92,18 @@ browserslist "^4.16.6" semver "^6.3.0" -"@babel/helper-create-class-features-plugin@^7.14.5": - version "7.14.5" - resolved "https://registry.yarnpkg.com/@babel/helper-create-class-features-plugin/-/helper-create-class-features-plugin-7.14.5.tgz#8842ec495516dd1ed8f6c572be92ba78b1e9beef" - integrity sha512-Uq9z2e7ZtcnDMirRqAGLRaLwJn+Lrh388v5ETrR3pALJnElVh2zqQmdbz4W2RUJYohAPh2mtyPUgyMHMzXMncQ== +"@babel/helper-create-class-features-plugin@^7.14.5", "@babel/helper-create-class-features-plugin@^7.14.6": + version "7.14.8" + resolved "https://registry.yarnpkg.com/@babel/helper-create-class-features-plugin/-/helper-create-class-features-plugin-7.14.8.tgz#a6f8c3de208b1e5629424a9a63567f56501955fc" + integrity sha512-bpYvH8zJBWzeqi1o+co8qOrw+EXzQ/0c74gVmY205AWXy9nifHrOg77y+1zwxX5lXE7Icq4sPlSQ4O2kWBrteQ== dependencies: "@babel/helper-annotate-as-pure" "^7.14.5" "@babel/helper-function-name" "^7.14.5" - "@babel/helper-member-expression-to-functions" "^7.14.5" + "@babel/helper-member-expression-to-functions" "^7.14.7" "@babel/helper-optimise-call-expression" "^7.14.5" "@babel/helper-replace-supers" "^7.14.5" "@babel/helper-split-export-declaration" "^7.14.5" -"@babel/helper-create-class-features-plugin@^7.8.3", "@babel/helper-create-class-features-plugin@^7.9.6": - version "7.9.6" - resolved "https://registry.yarnpkg.com/@babel/helper-create-class-features-plugin/-/helper-create-class-features-plugin-7.9.6.tgz#965c8b0a9f051801fd9d3b372ca0ccf200a90897" - integrity sha512-6N9IeuyHvMBRyjNYOMJHrhwtu4WJMrYf8hVbEHD3pbbbmNOk1kmXSQs7bA4dYDUaIx4ZEzdnvo6NwC3WHd/Qow== - dependencies: - "@babel/helper-function-name" "^7.9.5" - "@babel/helper-member-expression-to-functions" "^7.8.3" - "@babel/helper-optimise-call-expression" "^7.8.3" - "@babel/helper-plugin-utils" "^7.8.3" - "@babel/helper-replace-supers" "^7.9.6" - "@babel/helper-split-export-declaration" "^7.8.3" - "@babel/helper-create-regexp-features-plugin@^7.14.5": version "7.14.5" resolved "https://registry.yarnpkg.com/@babel/helper-create-regexp-features-plugin/-/helper-create-regexp-features-plugin-7.14.5.tgz#c7d5ac5e9cf621c26057722fb7a8a4c5889358c4" @@ -239,24 +112,6 @@ "@babel/helper-annotate-as-pure" "^7.14.5" regexpu-core "^4.7.1" -"@babel/helper-create-regexp-features-plugin@^7.8.3", "@babel/helper-create-regexp-features-plugin@^7.8.8": - version "7.8.8" - resolved "https://registry.yarnpkg.com/@babel/helper-create-regexp-features-plugin/-/helper-create-regexp-features-plugin-7.8.8.tgz#5d84180b588f560b7864efaeea89243e58312087" - integrity sha512-LYVPdwkrQEiX9+1R29Ld/wTrmQu1SSKYnuOk3g0CkcZMA1p0gsNxJFj/3gBdaJ7Cg0Fnek5z0DsMULePP7Lrqg== - dependencies: - "@babel/helper-annotate-as-pure" "^7.8.3" - "@babel/helper-regex" "^7.8.3" - regexpu-core "^4.7.0" - -"@babel/helper-define-map@^7.8.3": - version "7.8.3" - resolved "https://registry.yarnpkg.com/@babel/helper-define-map/-/helper-define-map-7.8.3.tgz#a0655cad5451c3760b726eba875f1cd8faa02c15" - integrity sha512-PoeBYtxoZGtct3md6xZOCWPcKuMuk3IHhgxsRRNtnNShebf4C8YonTSblsK4tvDbm+eJAw2HAPOfCr+Q/YRG/g== - dependencies: - "@babel/helper-function-name" "^7.8.3" - "@babel/types" "^7.8.3" - lodash "^4.17.13" - "@babel/helper-define-polyfill-provider@^0.2.2": version "0.2.3" resolved "https://registry.yarnpkg.com/@babel/helper-define-polyfill-provider/-/helper-define-polyfill-provider-0.2.3.tgz#0525edec5094653a282688d34d846e4c75e9c0b6" @@ -278,23 +133,6 @@ dependencies: "@babel/types" "^7.14.5" -"@babel/helper-explode-assignable-expression@^7.8.3": - version "7.8.3" - resolved "https://registry.yarnpkg.com/@babel/helper-explode-assignable-expression/-/helper-explode-assignable-expression-7.8.3.tgz#a728dc5b4e89e30fc2dfc7d04fa28a930653f982" - integrity sha512-N+8eW86/Kj147bO9G2uclsg5pwfs/fqqY5rwgIL7eTBklgXjcOJ3btzS5iM6AitJcftnY7pm2lGsrJVYLGjzIw== - dependencies: - "@babel/traverse" "^7.8.3" - "@babel/types" "^7.8.3" - -"@babel/helper-function-name@^7.10.4": - version "7.10.4" - resolved "https://registry.yarnpkg.com/@babel/helper-function-name/-/helper-function-name-7.10.4.tgz#d2d3b20c59ad8c47112fa7d2a94bc09d5ef82f1a" - integrity sha512-YdaSyz1n8gY44EmN7x44zBn9zQ1Ry2Y+3GTA+3vH6Mizke1Vw0aWDM66FOYEPw8//qKkmqOckrGgTYa+6sceqQ== - dependencies: - "@babel/helper-get-function-arity" "^7.10.4" - "@babel/template" "^7.10.4" - "@babel/types" "^7.10.4" - "@babel/helper-function-name@^7.14.5": version "7.14.5" resolved "https://registry.yarnpkg.com/@babel/helper-function-name/-/helper-function-name-7.14.5.tgz#89e2c474972f15d8e233b52ee8c480e2cfcd50c4" @@ -304,22 +142,6 @@ "@babel/template" "^7.14.5" "@babel/types" "^7.14.5" -"@babel/helper-function-name@^7.8.3", "@babel/helper-function-name@^7.9.5": - version "7.9.5" - resolved "https://registry.yarnpkg.com/@babel/helper-function-name/-/helper-function-name-7.9.5.tgz#2b53820d35275120e1874a82e5aabe1376920a5c" - integrity sha512-JVcQZeXM59Cd1qanDUxv9fgJpt3NeKUaqBqUEvfmQ+BCOKq2xUgaWZW2hr0dkbyJgezYuplEoh5knmrnS68efw== - dependencies: - "@babel/helper-get-function-arity" "^7.8.3" - "@babel/template" "^7.8.3" - "@babel/types" "^7.9.5" - -"@babel/helper-get-function-arity@^7.10.4": - version "7.10.4" - resolved "https://registry.yarnpkg.com/@babel/helper-get-function-arity/-/helper-get-function-arity-7.10.4.tgz#98c1cbea0e2332f33f9a4661b8ce1505b2c19ba2" - integrity sha512-EkN3YDB+SRDgiIUnNgcmiD361ti+AVbL3f3Henf6dqqUyr5dMsorno0lJWJuLhDhkI5sYEpgj6y9kB8AOU1I2A== - dependencies: - "@babel/types" "^7.10.4" - "@babel/helper-get-function-arity@^7.14.5": version "7.14.5" resolved "https://registry.yarnpkg.com/@babel/helper-get-function-arity/-/helper-get-function-arity-7.14.5.tgz#25fbfa579b0937eee1f3b805ece4ce398c431815" @@ -327,13 +149,6 @@ dependencies: "@babel/types" "^7.14.5" -"@babel/helper-get-function-arity@^7.8.3": - version "7.8.3" - resolved "https://registry.yarnpkg.com/@babel/helper-get-function-arity/-/helper-get-function-arity-7.8.3.tgz#b894b947bd004381ce63ea1db9f08547e920abd5" - integrity sha512-FVDR+Gd9iLjUMY1fzE2SR0IuaJToR4RkCDARVfsBBPSP53GEqSFjD8gNyxg246VUyc/ALRxFaAK8rVG7UT7xRA== - dependencies: - "@babel/types" "^7.8.3" - "@babel/helper-hoist-variables@^7.14.5": version "7.14.5" resolved "https://registry.yarnpkg.com/@babel/helper-hoist-variables/-/helper-hoist-variables-7.14.5.tgz#e0dd27c33a78e577d7c8884916a3e7ef1f7c7f8d" @@ -341,94 +156,33 @@ dependencies: "@babel/types" "^7.14.5" -"@babel/helper-member-expression-to-functions@^7.10.4": - version "7.10.4" - resolved "https://registry.yarnpkg.com/@babel/helper-member-expression-to-functions/-/helper-member-expression-to-functions-7.10.4.tgz#7cd04b57dfcf82fce9aeae7d4e4452fa31b8c7c4" - integrity sha512-m5j85pK/KZhuSdM/8cHUABQTAslV47OjfIB9Cc7P+PvlAoBzdb79BGNfw8RhT5Mq3p+xGd0ZfAKixbrUZx0C7A== - dependencies: - "@babel/types" "^7.10.4" - -"@babel/helper-member-expression-to-functions@^7.14.5": - version "7.14.5" - resolved "https://registry.yarnpkg.com/@babel/helper-member-expression-to-functions/-/helper-member-expression-to-functions-7.14.5.tgz#d5c70e4ad13b402c95156c7a53568f504e2fb7b8" - integrity sha512-UxUeEYPrqH1Q/k0yRku1JE7dyfyehNwT6SVkMHvYvPDv4+uu627VXBckVj891BO8ruKBkiDoGnZf4qPDD8abDQ== +"@babel/helper-member-expression-to-functions@^7.14.5", "@babel/helper-member-expression-to-functions@^7.14.7": + version "7.14.7" + resolved "https://registry.yarnpkg.com/@babel/helper-member-expression-to-functions/-/helper-member-expression-to-functions-7.14.7.tgz#97e56244beb94211fe277bd818e3a329c66f7970" + integrity sha512-TMUt4xKxJn6ccjcOW7c4hlwyJArizskAhoSTOCkA0uZ+KghIaci0Qg9R043kUMWI9mtQfgny+NQ5QATnZ+paaA== dependencies: "@babel/types" "^7.14.5" -"@babel/helper-member-expression-to-functions@^7.8.3": - version "7.8.3" - resolved "https://registry.yarnpkg.com/@babel/helper-member-expression-to-functions/-/helper-member-expression-to-functions-7.8.3.tgz#659b710498ea6c1d9907e0c73f206eee7dadc24c" - integrity sha512-fO4Egq88utkQFjbPrSHGmGLFqmrshs11d46WI+WZDESt7Wu7wN2G2Iu+NMMZJFDOVRHAMIkB5SNh30NtwCA7RA== - dependencies: - "@babel/types" "^7.8.3" - -"@babel/helper-module-imports@^7.0.0", "@babel/helper-module-imports@^7.8.3": - version "7.8.3" - resolved "https://registry.yarnpkg.com/@babel/helper-module-imports/-/helper-module-imports-7.8.3.tgz#7fe39589b39c016331b6b8c3f441e8f0b1419498" - integrity sha512-R0Bx3jippsbAEtzkpZ/6FIiuzOURPcMjHp+Z6xPe6DtApDJx+w7UYyOLanZqO8+wKR9G10s/FmHXvxaMd9s6Kg== - dependencies: - "@babel/types" "^7.8.3" - -"@babel/helper-module-imports@^7.10.4": - version "7.10.4" - resolved "https://registry.yarnpkg.com/@babel/helper-module-imports/-/helper-module-imports-7.10.4.tgz#4c5c54be04bd31670a7382797d75b9fa2e5b5620" - integrity sha512-nEQJHqYavI217oD9+s5MUBzk6x1IlvoS9WTPfgG43CbMEeStE0v+r+TucWdx8KFGowPGvyOkDT9+7DHedIDnVw== - dependencies: - "@babel/types" "^7.10.4" - -"@babel/helper-module-imports@^7.12.13", "@babel/helper-module-imports@^7.14.5": +"@babel/helper-module-imports@^7.0.0", "@babel/helper-module-imports@^7.12.13", "@babel/helper-module-imports@^7.14.5": version "7.14.5" resolved "https://registry.yarnpkg.com/@babel/helper-module-imports/-/helper-module-imports-7.14.5.tgz#6d1a44df6a38c957aa7c312da076429f11b422f3" integrity sha512-SwrNHu5QWS84XlHwGYPDtCxcA0hrSlL2yhWYLgeOc0w7ccOl2qv4s/nARI0aYZW+bSwAL5CukeXA47B/1NKcnQ== dependencies: "@babel/types" "^7.14.5" -"@babel/helper-module-transforms@^7.10.4": - version "7.10.4" - resolved "https://registry.yarnpkg.com/@babel/helper-module-transforms/-/helper-module-transforms-7.10.4.tgz#ca1f01fdb84e48c24d7506bb818c961f1da8805d" - integrity sha512-Er2FQX0oa3nV7eM1o0tNCTx7izmQtwAQsIiaLRWtavAAEcskb0XJ5OjJbVrYXWOTr8om921Scabn4/tzlx7j1Q== - dependencies: - "@babel/helper-module-imports" "^7.10.4" - "@babel/helper-replace-supers" "^7.10.4" - "@babel/helper-simple-access" "^7.10.4" - "@babel/helper-split-export-declaration" "^7.10.4" - "@babel/template" "^7.10.4" - "@babel/types" "^7.10.4" - lodash "^4.17.13" - -"@babel/helper-module-transforms@^7.14.5": - version "7.14.5" - resolved "https://registry.yarnpkg.com/@babel/helper-module-transforms/-/helper-module-transforms-7.14.5.tgz#7de42f10d789b423eb902ebd24031ca77cb1e10e" - integrity sha512-iXpX4KW8LVODuAieD7MzhNjmM6dzYY5tfRqT+R9HDXWl0jPn/djKmA+G9s/2C2T9zggw5tK1QNqZ70USfedOwA== +"@babel/helper-module-transforms@^7.14.5", "@babel/helper-module-transforms@^7.14.8": + version "7.14.8" + resolved "https://registry.yarnpkg.com/@babel/helper-module-transforms/-/helper-module-transforms-7.14.8.tgz#d4279f7e3fd5f4d5d342d833af36d4dd87d7dc49" + integrity sha512-RyE+NFOjXn5A9YU1dkpeBaduagTlZ0+fccnIcAGbv1KGUlReBj7utF7oEth8IdIBQPcux0DDgW5MFBH2xu9KcA== dependencies: "@babel/helper-module-imports" "^7.14.5" "@babel/helper-replace-supers" "^7.14.5" - "@babel/helper-simple-access" "^7.14.5" + "@babel/helper-simple-access" "^7.14.8" "@babel/helper-split-export-declaration" "^7.14.5" - "@babel/helper-validator-identifier" "^7.14.5" + "@babel/helper-validator-identifier" "^7.14.8" "@babel/template" "^7.14.5" - "@babel/traverse" "^7.14.5" - "@babel/types" "^7.14.5" - -"@babel/helper-module-transforms@^7.9.0": - version "7.9.0" - resolved "https://registry.yarnpkg.com/@babel/helper-module-transforms/-/helper-module-transforms-7.9.0.tgz#43b34dfe15961918707d247327431388e9fe96e5" - integrity sha512-0FvKyu0gpPfIQ8EkxlrAydOWROdHpBmiCiRwLkUiBGhCUPRRbVD2/tm3sFr/c/GWFrQ/ffutGUAnx7V0FzT2wA== - dependencies: - "@babel/helper-module-imports" "^7.8.3" - "@babel/helper-replace-supers" "^7.8.6" - "@babel/helper-simple-access" "^7.8.3" - "@babel/helper-split-export-declaration" "^7.8.3" - "@babel/template" "^7.8.6" - "@babel/types" "^7.9.0" - lodash "^4.17.13" - -"@babel/helper-optimise-call-expression@^7.10.4": - version "7.10.4" - resolved "https://registry.yarnpkg.com/@babel/helper-optimise-call-expression/-/helper-optimise-call-expression-7.10.4.tgz#50dc96413d594f995a77905905b05893cd779673" - integrity sha512-n3UGKY4VXwXThEiKrgRAoVPBMqeoPgHVqiHZOanAJCG9nQUL2pLRQirUzl0ioKclHGpGqRgIOkgcIJaIWLpygg== - dependencies: - "@babel/types" "^7.10.4" + "@babel/traverse" "^7.14.8" + "@babel/types" "^7.14.8" "@babel/helper-optimise-call-expression@^7.14.5": version "7.14.5" @@ -437,35 +191,11 @@ dependencies: "@babel/types" "^7.14.5" -"@babel/helper-optimise-call-expression@^7.8.3": - version "7.8.3" - resolved "https://registry.yarnpkg.com/@babel/helper-optimise-call-expression/-/helper-optimise-call-expression-7.8.3.tgz#7ed071813d09c75298ef4f208956006b6111ecb9" - integrity sha512-Kag20n86cbO2AvHca6EJsvqAd82gc6VMGule4HwebwMlwkpXuVqrNRj6CkCV2sKxgi9MyAUnZVnZ6lJ1/vKhHQ== - dependencies: - "@babel/types" "^7.8.3" - -"@babel/helper-plugin-utils@^7.0.0", "@babel/helper-plugin-utils@^7.8.0", "@babel/helper-plugin-utils@^7.8.3": - version "7.8.3" - resolved "https://registry.yarnpkg.com/@babel/helper-plugin-utils/-/helper-plugin-utils-7.8.3.tgz#9ea293be19babc0f52ff8ca88b34c3611b208670" - integrity sha512-j+fq49Xds2smCUNYmEHF9kGNkhbet6yVIBp4e6oeQpH1RUs/Ir06xUKzDjDkGcaaokPiTNs2JBWHjaE4csUkZQ== - -"@babel/helper-plugin-utils@^7.10.4": - version "7.10.4" - resolved "https://registry.yarnpkg.com/@babel/helper-plugin-utils/-/helper-plugin-utils-7.10.4.tgz#2f75a831269d4f677de49986dff59927533cf375" - integrity sha512-O4KCvQA6lLiMU9l2eawBPMf1xPP8xPfB3iEQw150hOVTqj/rfXz0ThTb4HEzqQfs2Bmo5Ay8BzxfzVtBrr9dVg== - -"@babel/helper-plugin-utils@^7.12.13", "@babel/helper-plugin-utils@^7.13.0", "@babel/helper-plugin-utils@^7.14.5": +"@babel/helper-plugin-utils@^7.0.0", "@babel/helper-plugin-utils@^7.10.4", "@babel/helper-plugin-utils@^7.12.13", "@babel/helper-plugin-utils@^7.13.0", "@babel/helper-plugin-utils@^7.14.5", "@babel/helper-plugin-utils@^7.8.0", "@babel/helper-plugin-utils@^7.8.3": version "7.14.5" resolved "https://registry.yarnpkg.com/@babel/helper-plugin-utils/-/helper-plugin-utils-7.14.5.tgz#5ac822ce97eec46741ab70a517971e443a70c5a9" integrity sha512-/37qQCE3K0vvZKwoK4XU/irIJQdIfCJuhU5eKnNxpFDsOkgFaUAwbv+RYw6eYgsC0E4hS7r5KqGULUogqui0fQ== -"@babel/helper-regex@^7.8.3": - version "7.8.3" - resolved "https://registry.yarnpkg.com/@babel/helper-regex/-/helper-regex-7.8.3.tgz#139772607d51b93f23effe72105b319d2a4c6965" - integrity sha512-BWt0QtYv/cg/NecOAZMdcn/waj/5P26DR4mVLXfFtDokSR6fyuG0Pj+e2FqtSME+MqED1khnSMulkmGl8qWiUQ== - dependencies: - lodash "^4.17.13" - "@babel/helper-remap-async-to-generator@^7.14.5": version "7.14.5" resolved "https://registry.yarnpkg.com/@babel/helper-remap-async-to-generator/-/helper-remap-async-to-generator-7.14.5.tgz#51439c913612958f54a987a4ffc9ee587a2045d6" @@ -475,27 +205,6 @@ "@babel/helper-wrap-function" "^7.14.5" "@babel/types" "^7.14.5" -"@babel/helper-remap-async-to-generator@^7.8.3": - version "7.8.3" - resolved "https://registry.yarnpkg.com/@babel/helper-remap-async-to-generator/-/helper-remap-async-to-generator-7.8.3.tgz#273c600d8b9bf5006142c1e35887d555c12edd86" - integrity sha512-kgwDmw4fCg7AVgS4DukQR/roGp+jP+XluJE5hsRZwxCYGg+Rv9wSGErDWhlI90FODdYfd4xG4AQRiMDjjN0GzA== - dependencies: - "@babel/helper-annotate-as-pure" "^7.8.3" - "@babel/helper-wrap-function" "^7.8.3" - "@babel/template" "^7.8.3" - "@babel/traverse" "^7.8.3" - "@babel/types" "^7.8.3" - -"@babel/helper-replace-supers@^7.10.4": - version "7.10.4" - resolved "https://registry.yarnpkg.com/@babel/helper-replace-supers/-/helper-replace-supers-7.10.4.tgz#d585cd9388ea06e6031e4cd44b6713cbead9e6cf" - integrity sha512-sPxZfFXocEymYTdVK1UNmFPBN+Hv5mJkLPsYWwGBxZAxaWfFu+xqp7b6qWD0yjNuNL2VKc6L5M18tOXUP7NU0A== - dependencies: - "@babel/helper-member-expression-to-functions" "^7.10.4" - "@babel/helper-optimise-call-expression" "^7.10.4" - "@babel/traverse" "^7.10.4" - "@babel/types" "^7.10.4" - "@babel/helper-replace-supers@^7.14.5": version "7.14.5" resolved "https://registry.yarnpkg.com/@babel/helper-replace-supers/-/helper-replace-supers-7.14.5.tgz#0ecc0b03c41cd567b4024ea016134c28414abb94" @@ -506,38 +215,12 @@ "@babel/traverse" "^7.14.5" "@babel/types" "^7.14.5" -"@babel/helper-replace-supers@^7.8.3", "@babel/helper-replace-supers@^7.8.6", "@babel/helper-replace-supers@^7.9.6": - version "7.9.6" - resolved "https://registry.yarnpkg.com/@babel/helper-replace-supers/-/helper-replace-supers-7.9.6.tgz#03149d7e6a5586ab6764996cd31d6981a17e1444" - integrity sha512-qX+chbxkbArLyCImk3bWV+jB5gTNU/rsze+JlcF6Nf8tVTigPJSI1o1oBow/9Resa1yehUO9lIipsmu9oG4RzA== +"@babel/helper-simple-access@^7.14.5", "@babel/helper-simple-access@^7.14.8": + version "7.14.8" + resolved "https://registry.yarnpkg.com/@babel/helper-simple-access/-/helper-simple-access-7.14.8.tgz#82e1fec0644a7e775c74d305f212c39f8fe73924" + integrity sha512-TrFN4RHh9gnWEU+s7JloIho2T76GPwRHhdzOWLqTrMnlas8T9O7ec+oEDNsRXndOmru9ymH9DFrEOxpzPoSbdg== dependencies: - "@babel/helper-member-expression-to-functions" "^7.8.3" - "@babel/helper-optimise-call-expression" "^7.8.3" - "@babel/traverse" "^7.9.6" - "@babel/types" "^7.9.6" - -"@babel/helper-simple-access@^7.10.4": - version "7.10.4" - resolved "https://registry.yarnpkg.com/@babel/helper-simple-access/-/helper-simple-access-7.10.4.tgz#0f5ccda2945277a2a7a2d3a821e15395edcf3461" - integrity sha512-0fMy72ej/VEvF8ULmX6yb5MtHG4uH4Dbd6I/aHDb/JVg0bbivwt9Wg+h3uMvX+QSFtwr5MeItvazbrc4jtRAXw== - dependencies: - "@babel/template" "^7.10.4" - "@babel/types" "^7.10.4" - -"@babel/helper-simple-access@^7.14.5": - version "7.14.5" - resolved "https://registry.yarnpkg.com/@babel/helper-simple-access/-/helper-simple-access-7.14.5.tgz#66ea85cf53ba0b4e588ba77fc813f53abcaa41c4" - integrity sha512-nfBN9xvmCt6nrMZjfhkl7i0oTV3yxR4/FztsbOASyTvVcoYd0TRHh7eMLdlEcCqobydC0LAF3LtC92Iwxo0wyw== - dependencies: - "@babel/types" "^7.14.5" - -"@babel/helper-simple-access@^7.8.3": - version "7.8.3" - resolved "https://registry.yarnpkg.com/@babel/helper-simple-access/-/helper-simple-access-7.8.3.tgz#7f8109928b4dab4654076986af575231deb639ae" - integrity sha512-VNGUDjx5cCWg4vvCTR8qQ7YJYZ+HBjxOgXEl7ounz+4Sn7+LMD3CFrCTEU6/qXKbA2nKg21CwhhBzO0RpRbdCw== - dependencies: - "@babel/template" "^7.8.3" - "@babel/types" "^7.8.3" + "@babel/types" "^7.14.8" "@babel/helper-skip-transparent-expression-wrappers@^7.14.5": version "7.14.5" @@ -546,13 +229,6 @@ dependencies: "@babel/types" "^7.14.5" -"@babel/helper-split-export-declaration@^7.10.4": - version "7.10.4" - resolved "https://registry.yarnpkg.com/@babel/helper-split-export-declaration/-/helper-split-export-declaration-7.10.4.tgz#2c70576eaa3b5609b24cb99db2888cc3fc4251d1" - integrity sha512-pySBTeoUff56fL5CBU2hWm9TesA4r/rOkI9DyJLvvgz09MB9YtfIYe3iBriVaYNaPe+Alua0vBIOVOLs2buWhg== - dependencies: - "@babel/types" "^7.10.4" - "@babel/helper-split-export-declaration@^7.14.5": version "7.14.5" resolved "https://registry.yarnpkg.com/@babel/helper-split-export-declaration/-/helper-split-export-declaration-7.14.5.tgz#22b23a54ef51c2b7605d851930c1976dd0bc693a" @@ -560,27 +236,10 @@ dependencies: "@babel/types" "^7.14.5" -"@babel/helper-split-export-declaration@^7.8.3": - version "7.8.3" - resolved "https://registry.yarnpkg.com/@babel/helper-split-export-declaration/-/helper-split-export-declaration-7.8.3.tgz#31a9f30070f91368a7182cf05f831781065fc7a9" - integrity sha512-3x3yOeyBhW851hroze7ElzdkeRXQYQbFIb7gLK1WQYsw2GWDay5gAJNw1sWJ0VFP6z5J1whqeXH/WCdCjZv6dA== - dependencies: - "@babel/types" "^7.8.3" - -"@babel/helper-validator-identifier@^7.10.4": - version "7.10.4" - resolved "https://registry.yarnpkg.com/@babel/helper-validator-identifier/-/helper-validator-identifier-7.10.4.tgz#a78c7a7251e01f616512d31b10adcf52ada5e0d2" - integrity sha512-3U9y+43hz7ZM+rzG24Qe2mufW5KhvFg/NhnNph+i9mgCtdTCtMJuI1TMkrIUiK7Ix4PYlRF9I5dhqaLYA/ADXw== - -"@babel/helper-validator-identifier@^7.14.5": - version "7.14.5" - resolved "https://registry.yarnpkg.com/@babel/helper-validator-identifier/-/helper-validator-identifier-7.14.5.tgz#d0f0e277c512e0c938277faa85a3968c9a44c0e8" - integrity sha512-5lsetuxCLilmVGyiLEfoHBRX8UCFD+1m2x3Rj97WrW3V7H3u4RWRXA4evMjImCsin2J2YT0QaVDGf+z8ondbAg== - -"@babel/helper-validator-identifier@^7.9.0", "@babel/helper-validator-identifier@^7.9.5": - version "7.9.5" - resolved "https://registry.yarnpkg.com/@babel/helper-validator-identifier/-/helper-validator-identifier-7.9.5.tgz#90977a8e6fbf6b431a7dc31752eee233bf052d80" - integrity sha512-/8arLKUFq882w4tWGj9JYzRpAlZgiWUJ+dtteNTDqrRBz9Iguck9Rn3ykuBDoUwh2TO4tSAJlrxDUOXWklJe4g== +"@babel/helper-validator-identifier@^7.14.5", "@babel/helper-validator-identifier@^7.14.8": + version "7.14.8" + resolved "https://registry.yarnpkg.com/@babel/helper-validator-identifier/-/helper-validator-identifier-7.14.8.tgz#32be33a756f29e278a0d644fa08a2c9e0f88a34c" + integrity sha512-ZGy6/XQjllhYQrNw/3zfWRwZCTVSiBLZ9DHVZxn9n2gip/7ab8mv2TWlKPIBk26RwedCBoWdjLmn+t9na2Gcow== "@babel/helper-validator-option@^7.14.5": version "7.14.5" @@ -597,42 +256,14 @@ "@babel/traverse" "^7.14.5" "@babel/types" "^7.14.5" -"@babel/helper-wrap-function@^7.8.3": - version "7.8.3" - resolved "https://registry.yarnpkg.com/@babel/helper-wrap-function/-/helper-wrap-function-7.8.3.tgz#9dbdb2bb55ef14aaa01fe8c99b629bd5352d8610" - integrity sha512-LACJrbUET9cQDzb6kG7EeD7+7doC3JNvUgTEQOx2qaO1fKlzE/Bf05qs9w1oXQMmXlPO65lC3Tq9S6gZpTErEQ== - dependencies: - "@babel/helper-function-name" "^7.8.3" - "@babel/template" "^7.8.3" - "@babel/traverse" "^7.8.3" - "@babel/types" "^7.8.3" - -"@babel/helpers@^7.10.4": - version "7.10.4" - resolved "https://registry.yarnpkg.com/@babel/helpers/-/helpers-7.10.4.tgz#2abeb0d721aff7c0a97376b9e1f6f65d7a475044" - integrity sha512-L2gX/XeUONeEbI78dXSrJzGdz4GQ+ZTA/aazfUsFaWjSe95kiCuOZ5HsXvkiw3iwF+mFHSRUfJU8t6YavocdXA== - dependencies: - "@babel/template" "^7.10.4" - "@babel/traverse" "^7.10.4" - "@babel/types" "^7.10.4" - -"@babel/helpers@^7.14.6": - version "7.14.6" - resolved "https://registry.yarnpkg.com/@babel/helpers/-/helpers-7.14.6.tgz#5b58306b95f1b47e2a0199434fa8658fa6c21635" - integrity sha512-yesp1ENQBiLI+iYHSJdoZKUtRpfTlL1grDIX9NRlAVppljLw/4tTyYupIB7uIYmC3stW/imAv8EqaKaS/ibmeA== +"@babel/helpers@^7.14.8": + version "7.14.8" + resolved "https://registry.yarnpkg.com/@babel/helpers/-/helpers-7.14.8.tgz#839f88f463025886cff7f85a35297007e2da1b77" + integrity sha512-ZRDmI56pnV+p1dH6d+UN6GINGz7Krps3+270qqI9UJ4wxYThfAIcI5i7j5vXC4FJ3Wap+S9qcebxeYiqn87DZw== dependencies: "@babel/template" "^7.14.5" - "@babel/traverse" "^7.14.5" - "@babel/types" "^7.14.5" - -"@babel/helpers@^7.9.6": - version "7.9.6" - resolved "https://registry.yarnpkg.com/@babel/helpers/-/helpers-7.9.6.tgz#092c774743471d0bb6c7de3ad465ab3d3486d580" - integrity sha512-tI4bUbldloLcHWoRUMAj4g1bF313M/o6fBKhIsb3QnGVPwRm9JsNf/gqMkQ7zjqReABiffPV6RWj7hEglID5Iw== - dependencies: - "@babel/template" "^7.8.3" - "@babel/traverse" "^7.9.6" - "@babel/types" "^7.9.6" + "@babel/traverse" "^7.14.8" + "@babel/types" "^7.14.8" "@babel/highlight@^7.0.0", "@babel/highlight@^7.14.5": version "7.14.5" @@ -643,48 +274,10 @@ chalk "^2.0.0" js-tokens "^4.0.0" -"@babel/highlight@^7.10.4": - version "7.10.4" - resolved "https://registry.yarnpkg.com/@babel/highlight/-/highlight-7.10.4.tgz#7d1bdfd65753538fabe6c38596cdb76d9ac60143" - integrity sha512-i6rgnR/YgPEQzZZnbTHHuZdlE8qyoBNalD6F+q4vAFlcMEcqmkoG+mPqJYJCo63qPf74+Y1UZsl3l6f7/RIkmA== - dependencies: - "@babel/helper-validator-identifier" "^7.10.4" - chalk "^2.0.0" - js-tokens "^4.0.0" - -"@babel/highlight@^7.8.3": - version "7.9.0" - resolved "https://registry.yarnpkg.com/@babel/highlight/-/highlight-7.9.0.tgz#4e9b45ccb82b79607271b2979ad82c7b68163079" - integrity sha512-lJZPilxX7Op3Nv/2cvFdnlepPXDxi29wxteT57Q965oc5R9v86ztx0jfxVrTcBk8C2kcPkkDa2Z4T3ZsPPVWsQ== - dependencies: - "@babel/helper-validator-identifier" "^7.9.0" - chalk "^2.0.0" - js-tokens "^4.0.0" - -"@babel/parser@^7.0.0", "@babel/parser@^7.1.0", "@babel/parser@^7.8.6", "@babel/parser@^7.9.6": - version "7.9.6" - resolved "https://registry.yarnpkg.com/@babel/parser/-/parser-7.9.6.tgz#3b1bbb30dabe600cd72db58720998376ff653bc7" - integrity sha512-AoeIEJn8vt+d/6+PXDRPaksYhnlbMIiejioBZvvMQsOjW/JYK6k/0dKnvvP3EhK5GfMBWDPtrxRtegWdAcdq9Q== - -"@babel/parser@^7.10.4": - version "7.10.4" - resolved "https://registry.yarnpkg.com/@babel/parser/-/parser-7.10.4.tgz#9eedf27e1998d87739fb5028a5120557c06a1a64" - integrity sha512-8jHII4hf+YVDsskTF6WuMB3X4Eh+PsUkC2ljq22so5rHvH+T8BzyL94VOdyFLNR8tBSVXOTbNHOKpR4TfRxVtA== - -"@babel/parser@^7.14.5": - version "7.14.5" - resolved "https://registry.yarnpkg.com/@babel/parser/-/parser-7.14.5.tgz#4cd2f346261061b2518873ffecdf1612cb032829" - integrity sha512-TM8C+xtH/9n1qzX+JNHi7AN2zHMTiPUtspO0ZdHflW8KaskkALhMmuMHb4bCmNdv9VAPzJX3/bXqkVLnAvsPfg== - -"@babel/parser@^7.14.6": - version "7.14.6" - resolved "https://registry.yarnpkg.com/@babel/parser/-/parser-7.14.6.tgz#d85cc68ca3cac84eae384c06f032921f5227f4b2" - integrity sha512-oG0ej7efjEXxb4UgE+klVx+3j4MVo+A2vCzm7OUN4CLo6WhQ+vSOD2yJ8m7B+DghObxtLxt3EfgMWpq+AsWehQ== - -"@babel/parser@^7.14.7", "@babel/parser@^7.4.3": - version "7.14.7" - resolved "https://registry.yarnpkg.com/@babel/parser/-/parser-7.14.7.tgz#6099720c8839ca865a2637e6c85852ead0bdb595" - integrity sha512-X67Z5y+VBJuHB/RjwECp8kSl5uYi0BvRbNeWqkaJCVh+LiTPl19WBUfG627psSgp9rSf6ojuXghQM3ha6qHHdA== +"@babel/parser@^7.0.0", "@babel/parser@^7.1.0", "@babel/parser@^7.14.5", "@babel/parser@^7.14.8", "@babel/parser@^7.4.3": + version "7.14.8" + resolved "https://registry.yarnpkg.com/@babel/parser/-/parser-7.14.8.tgz#66fd41666b2d7b840bd5ace7f7416d5ac60208d4" + integrity sha512-syoCQFOoo/fzkWDeM0dLEZi5xqurb5vuyzwIMNZRNun+N/9A4cUZeQaE7dTrB8jGaKuJRBtEOajtnmw0I5hvvA== "@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining@^7.14.5": version "7.14.5" @@ -696,11 +289,11 @@ "@babel/plugin-proposal-optional-chaining" "^7.14.5" "@babel/plugin-external-helpers@^7.0.0": - version "7.8.3" - resolved "https://registry.yarnpkg.com/@babel/plugin-external-helpers/-/plugin-external-helpers-7.8.3.tgz#5a94164d9af393b2820a3cdc407e28ebf237de4b" - integrity sha512-mx0WXDDiIl5DwzMtzWGRSPugXi9BxROS05GQrhLNbEamhBiicgn994ibwkyiBH+6png7bm/yA7AUsvHyCXi4Vw== + version "7.14.5" + resolved "https://registry.yarnpkg.com/@babel/plugin-external-helpers/-/plugin-external-helpers-7.14.5.tgz#920baa1569a8df5d5710abc342c7b1ac8968ed76" + integrity sha512-q/B/hLX+nDGk73Xn529d7Ar4ih17J8pNBbsXafq8oXij0XfFEA/bks+u+6q5q04zO5o/qivjzui6BqzPfYShEg== dependencies: - "@babel/helper-plugin-utils" "^7.8.3" + "@babel/helper-plugin-utils" "^7.14.5" "@babel/plugin-proposal-async-generator-functions@^7.14.7": version "7.14.7" @@ -711,15 +304,7 @@ "@babel/helper-remap-async-to-generator" "^7.14.5" "@babel/plugin-syntax-async-generators" "^7.8.4" -"@babel/plugin-proposal-class-properties@^7.0.0": - version "7.8.3" - resolved "https://registry.yarnpkg.com/@babel/plugin-proposal-class-properties/-/plugin-proposal-class-properties-7.8.3.tgz#5e06654af5cd04b608915aada9b2a6788004464e" - integrity sha512-EqFhbo7IosdgPgZggHaNObkmO1kNUe3slaKu54d5OWvy+p9QIKOzK1GAEpAIsZtWVtPXUHSMcT4smvDrCfY4AA== - dependencies: - "@babel/helper-create-class-features-plugin" "^7.8.3" - "@babel/helper-plugin-utils" "^7.8.3" - -"@babel/plugin-proposal-class-properties@^7.14.5", "@babel/plugin-proposal-class-properties@^7.7.0": +"@babel/plugin-proposal-class-properties@^7.0.0", "@babel/plugin-proposal-class-properties@^7.14.5", "@babel/plugin-proposal-class-properties@^7.7.0": version "7.14.5" resolved "https://registry.yarnpkg.com/@babel/plugin-proposal-class-properties/-/plugin-proposal-class-properties-7.14.5.tgz#40d1ee140c5b1e31a350f4f5eed945096559b42e" integrity sha512-q/PLpv5Ko4dVc1LYMpCY7RVAAO4uk55qPwrIuJ5QJ8c6cVuAmhu7I/49JOppXL6gXf7ZHzpRVEUZdYoPLM04Gg== @@ -754,12 +339,12 @@ "@babel/plugin-syntax-dynamic-import" "^7.8.3" "@babel/plugin-proposal-export-default-from@^7.0.0": - version "7.8.3" - resolved "https://registry.yarnpkg.com/@babel/plugin-proposal-export-default-from/-/plugin-proposal-export-default-from-7.8.3.tgz#4cb7c2fdeaed490b60d9bfd3dc8a20f81f9c2e7c" - integrity sha512-PYtv2S2OdCdp7GSPDg5ndGZFm9DmWFvuLoS5nBxZCgOBggluLnhTScspJxng96alHQzPyrrHxvC9/w4bFuspeA== + version "7.14.5" + resolved "https://registry.yarnpkg.com/@babel/plugin-proposal-export-default-from/-/plugin-proposal-export-default-from-7.14.5.tgz#8931a6560632c650f92a8e5948f6e73019d6d321" + integrity sha512-T8KZ5abXvKMjF6JcoXjgac3ElmXf0AWzJwi2O/42Jk+HmCky3D9+i1B7NPP1FblyceqTevKeV/9szeikFoaMDg== dependencies: - "@babel/helper-plugin-utils" "^7.8.3" - "@babel/plugin-syntax-export-default-from" "^7.8.3" + "@babel/helper-plugin-utils" "^7.14.5" + "@babel/plugin-syntax-export-default-from" "^7.14.5" "@babel/plugin-proposal-export-namespace-from@^7.14.5": version "7.14.5" @@ -785,15 +370,7 @@ "@babel/helper-plugin-utils" "^7.14.5" "@babel/plugin-syntax-logical-assignment-operators" "^7.10.4" -"@babel/plugin-proposal-nullish-coalescing-operator@^7.0.0": - version "7.8.3" - resolved "https://registry.yarnpkg.com/@babel/plugin-proposal-nullish-coalescing-operator/-/plugin-proposal-nullish-coalescing-operator-7.8.3.tgz#e4572253fdeed65cddeecfdab3f928afeb2fd5d2" - integrity sha512-TS9MlfzXpXKt6YYomudb/KU7nQI6/xnapG6in1uZxoxDghuSMZsPb6D2fyUwNYSAp4l1iR7QtFOjkqcRYcUsfw== - dependencies: - "@babel/helper-plugin-utils" "^7.8.3" - "@babel/plugin-syntax-nullish-coalescing-operator" "^7.8.0" - -"@babel/plugin-proposal-nullish-coalescing-operator@^7.14.5": +"@babel/plugin-proposal-nullish-coalescing-operator@^7.0.0", "@babel/plugin-proposal-nullish-coalescing-operator@^7.14.5": version "7.14.5" resolved "https://registry.yarnpkg.com/@babel/plugin-proposal-nullish-coalescing-operator/-/plugin-proposal-nullish-coalescing-operator-7.14.5.tgz#ee38589ce00e2cc59b299ec3ea406fcd3a0fdaf6" integrity sha512-gun/SOnMqjSb98Nkaq2rTKMwervfdAoz6NphdY0vTfuzMfryj+tDGb2n6UkDKwez+Y8PZDhE3D143v6Gepp4Hg== @@ -809,16 +386,7 @@ "@babel/helper-plugin-utils" "^7.14.5" "@babel/plugin-syntax-numeric-separator" "^7.10.4" -"@babel/plugin-proposal-object-rest-spread@^7.0.0": - version "7.9.6" - resolved "https://registry.yarnpkg.com/@babel/plugin-proposal-object-rest-spread/-/plugin-proposal-object-rest-spread-7.9.6.tgz#7a093586fcb18b08266eb1a7177da671ac575b63" - integrity sha512-Ga6/fhGqA9Hj+y6whNpPv8psyaK5xzrQwSPsGPloVkvmH+PqW1ixdnfJ9uIO06OjQNYol3PMnfmJ8vfZtkzF+A== - dependencies: - "@babel/helper-plugin-utils" "^7.8.3" - "@babel/plugin-syntax-object-rest-spread" "^7.8.0" - "@babel/plugin-transform-parameters" "^7.9.5" - -"@babel/plugin-proposal-object-rest-spread@^7.14.7", "@babel/plugin-proposal-object-rest-spread@^7.6.2": +"@babel/plugin-proposal-object-rest-spread@^7.0.0", "@babel/plugin-proposal-object-rest-spread@^7.14.7", "@babel/plugin-proposal-object-rest-spread@^7.6.2": version "7.14.7" resolved "https://registry.yarnpkg.com/@babel/plugin-proposal-object-rest-spread/-/plugin-proposal-object-rest-spread-7.14.7.tgz#5920a2b3df7f7901df0205974c0641b13fd9d363" integrity sha512-082hsZz+sVabfmDWo1Oct1u1AgbKbUAyVgmX4otIc7bdsRgHBXwTwb3DpDmD4Eyyx6DNiuz5UAATT655k+kL5g== @@ -829,15 +397,7 @@ "@babel/plugin-syntax-object-rest-spread" "^7.8.3" "@babel/plugin-transform-parameters" "^7.14.5" -"@babel/plugin-proposal-optional-catch-binding@^7.0.0": - version "7.8.3" - resolved "https://registry.yarnpkg.com/@babel/plugin-proposal-optional-catch-binding/-/plugin-proposal-optional-catch-binding-7.8.3.tgz#9dee96ab1650eed88646ae9734ca167ac4a9c5c9" - integrity sha512-0gkX7J7E+AtAw9fcwlVQj8peP61qhdg/89D5swOkjYbkboA2CVckn3kiyum1DE0wskGb7KJJxBdyEBApDLLVdw== - dependencies: - "@babel/helper-plugin-utils" "^7.8.3" - "@babel/plugin-syntax-optional-catch-binding" "^7.8.0" - -"@babel/plugin-proposal-optional-catch-binding@^7.14.5": +"@babel/plugin-proposal-optional-catch-binding@^7.0.0", "@babel/plugin-proposal-optional-catch-binding@^7.14.5": version "7.14.5" resolved "https://registry.yarnpkg.com/@babel/plugin-proposal-optional-catch-binding/-/plugin-proposal-optional-catch-binding-7.14.5.tgz#939dd6eddeff3a67fdf7b3f044b5347262598c3c" integrity sha512-3Oyiixm0ur7bzO5ybNcZFlmVsygSIQgdOa7cTfOYCMY+wEPAYhZAJxi3mixKFCTCKUhQXuCTtQ1MzrpL3WT8ZQ== @@ -845,15 +405,7 @@ "@babel/helper-plugin-utils" "^7.14.5" "@babel/plugin-syntax-optional-catch-binding" "^7.8.3" -"@babel/plugin-proposal-optional-chaining@^7.0.0": - version "7.9.0" - resolved "https://registry.yarnpkg.com/@babel/plugin-proposal-optional-chaining/-/plugin-proposal-optional-chaining-7.9.0.tgz#31db16b154c39d6b8a645292472b98394c292a58" - integrity sha512-NDn5tu3tcv4W30jNhmc2hyD5c56G6cXx4TesJubhxrJeCvuuMpttxr0OnNCqbZGhFjLrg+NIhxxC+BK5F6yS3w== - dependencies: - "@babel/helper-plugin-utils" "^7.8.3" - "@babel/plugin-syntax-optional-chaining" "^7.8.0" - -"@babel/plugin-proposal-optional-chaining@^7.14.5": +"@babel/plugin-proposal-optional-chaining@^7.0.0", "@babel/plugin-proposal-optional-chaining@^7.14.5": version "7.14.5" resolved "https://registry.yarnpkg.com/@babel/plugin-proposal-optional-chaining/-/plugin-proposal-optional-chaining-7.14.5.tgz#fa83651e60a360e3f13797eef00b8d519695b603" integrity sha512-ycz+VOzo2UbWNI1rQXxIuMOzrDdHGrI23fRiz/Si2R4kv2XZQ1BK8ccdHwehMKBlcH/joGW/tzrUmo67gbJHlQ== @@ -880,7 +432,7 @@ "@babel/helper-plugin-utils" "^7.14.5" "@babel/plugin-syntax-private-property-in-object" "^7.14.5" -"@babel/plugin-proposal-unicode-property-regex@^7.14.5": +"@babel/plugin-proposal-unicode-property-regex@^7.14.5", "@babel/plugin-proposal-unicode-property-regex@^7.4.4": version "7.14.5" resolved "https://registry.yarnpkg.com/@babel/plugin-proposal-unicode-property-regex/-/plugin-proposal-unicode-property-regex-7.14.5.tgz#0f95ee0e757a5d647f378daa0eca7e93faa8bbe8" integrity sha512-6axIeOU5LnY471KenAB9vI8I5j7NQ2d652hIYwVyRfgaZT5UpiqFKCuVXCDMSrU+3VFafnu2c5m3lrWIlr6A5Q== @@ -888,14 +440,6 @@ "@babel/helper-create-regexp-features-plugin" "^7.14.5" "@babel/helper-plugin-utils" "^7.14.5" -"@babel/plugin-proposal-unicode-property-regex@^7.4.4": - version "7.8.8" - resolved "https://registry.yarnpkg.com/@babel/plugin-proposal-unicode-property-regex/-/plugin-proposal-unicode-property-regex-7.8.8.tgz#ee3a95e90cdc04fe8cd92ec3279fa017d68a0d1d" - integrity sha512-EVhjVsMpbhLw9ZfHWSx2iy13Q8Z/eg8e8ccVWt23sWQK5l1UdkoLJPN5w69UA4uITGBnEZD2JOe4QOHycYKv8A== - dependencies: - "@babel/helper-create-regexp-features-plugin" "^7.8.8" - "@babel/helper-plugin-utils" "^7.8.3" - "@babel/plugin-syntax-async-generators@^7.8.4": version "7.8.4" resolved "https://registry.yarnpkg.com/@babel/plugin-syntax-async-generators/-/plugin-syntax-async-generators-7.8.4.tgz#a983fb1aeb2ec3f6ed042a210f640e90e786fe0d" @@ -910,27 +454,13 @@ dependencies: "@babel/helper-plugin-utils" "^7.8.0" -"@babel/plugin-syntax-class-properties@^7.0.0": - version "7.8.3" - resolved "https://registry.yarnpkg.com/@babel/plugin-syntax-class-properties/-/plugin-syntax-class-properties-7.8.3.tgz#6cb933a8872c8d359bfde69bbeaae5162fd1e8f7" - integrity sha512-UcAyQWg2bAN647Q+O811tG9MrJ38Z10jjhQdKNAL8fsyPzE3cCN/uT+f55cFVY4aGO4jqJAvmqsuY3GQDwAoXg== - dependencies: - "@babel/helper-plugin-utils" "^7.8.3" - -"@babel/plugin-syntax-class-properties@^7.12.13": +"@babel/plugin-syntax-class-properties@^7.0.0", "@babel/plugin-syntax-class-properties@^7.12.13", "@babel/plugin-syntax-class-properties@^7.8.3": version "7.12.13" resolved "https://registry.yarnpkg.com/@babel/plugin-syntax-class-properties/-/plugin-syntax-class-properties-7.12.13.tgz#b5c987274c4a3a82b89714796931a6b53544ae10" integrity sha512-fm4idjKla0YahUNgFNLCB0qySdsoPiZP3iQE3rky0mBUtMZ23yDJ9SJdg6dXTSDnulOVqiF3Hgr9nbXvXTQZYA== dependencies: "@babel/helper-plugin-utils" "^7.12.13" -"@babel/plugin-syntax-class-properties@^7.8.3": - version "7.10.4" - resolved "https://registry.yarnpkg.com/@babel/plugin-syntax-class-properties/-/plugin-syntax-class-properties-7.10.4.tgz#6644e6a0baa55a61f9e3231f6c9eeb6ee46c124c" - integrity sha512-GCSBF7iUle6rNugfURwNmCGG3Z/2+opxAMLs1nND4bhEG5PuxTIggDBoeYYSujAlLtsupzOHYJQgPS3pivwXIA== - dependencies: - "@babel/helper-plugin-utils" "^7.10.4" - "@babel/plugin-syntax-class-static-block@^7.14.5": version "7.14.5" resolved "https://registry.yarnpkg.com/@babel/plugin-syntax-class-static-block/-/plugin-syntax-class-static-block-7.14.5.tgz#195df89b146b4b78b3bf897fd7a257c84659d406" @@ -952,12 +482,12 @@ dependencies: "@babel/helper-plugin-utils" "^7.8.0" -"@babel/plugin-syntax-export-default-from@^7.0.0", "@babel/plugin-syntax-export-default-from@^7.8.3": - version "7.8.3" - resolved "https://registry.yarnpkg.com/@babel/plugin-syntax-export-default-from/-/plugin-syntax-export-default-from-7.8.3.tgz#f1e55ce850091442af4ba9c2550106035b29d678" - integrity sha512-a1qnnsr73KLNIQcQlcQ4ZHxqqfBKM6iNQZW2OMTyxNbA2WC7SHWHtGVpFzWtQAuS2pspkWVzdEBXXx8Ik0Za4w== +"@babel/plugin-syntax-export-default-from@^7.0.0", "@babel/plugin-syntax-export-default-from@^7.14.5": + version "7.14.5" + resolved "https://registry.yarnpkg.com/@babel/plugin-syntax-export-default-from/-/plugin-syntax-export-default-from-7.14.5.tgz#cdfa9d43d2b2c89b6f1af3e83518e8c8b9ed0dbc" + integrity sha512-snWDxjuaPEobRBnhpqEfZ8RMxDbHt8+87fiEioGuE+Uc0xAKgSD8QiuL3lF93hPVQfZFAcYwrrf+H5qUhike3Q== dependencies: - "@babel/helper-plugin-utils" "^7.8.3" + "@babel/helper-plugin-utils" "^7.14.5" "@babel/plugin-syntax-export-namespace-from@^7.8.3": version "7.8.3" @@ -966,12 +496,12 @@ dependencies: "@babel/helper-plugin-utils" "^7.8.3" -"@babel/plugin-syntax-flow@^7.0.0", "@babel/plugin-syntax-flow@^7.2.0", "@babel/plugin-syntax-flow@^7.8.3": - version "7.8.3" - resolved "https://registry.yarnpkg.com/@babel/plugin-syntax-flow/-/plugin-syntax-flow-7.8.3.tgz#f2c883bd61a6316f2c89380ae5122f923ba4527f" - integrity sha512-innAx3bUbA0KSYj2E2MNFSn9hiCeowOFLxlsuhXzw8hMQnzkDomUr9QCD7E9VF60NmnG1sNTuuv6Qf4f8INYsg== +"@babel/plugin-syntax-flow@^7.0.0", "@babel/plugin-syntax-flow@^7.14.5", "@babel/plugin-syntax-flow@^7.2.0": + version "7.14.5" + resolved "https://registry.yarnpkg.com/@babel/plugin-syntax-flow/-/plugin-syntax-flow-7.14.5.tgz#2ff654999497d7d7d142493260005263731da180" + integrity sha512-9WK5ZwKCdWHxVuU13XNT6X73FGmutAXeor5lGFq6qhOFtMFUF4jkbijuyUdZZlpYq6E2hZeZf/u3959X9wsv0Q== dependencies: - "@babel/helper-plugin-utils" "^7.8.3" + "@babel/helper-plugin-utils" "^7.14.5" "@babel/plugin-syntax-import-meta@^7.8.3": version "7.10.4" @@ -987,19 +517,12 @@ dependencies: "@babel/helper-plugin-utils" "^7.8.0" -"@babel/plugin-syntax-jsx@^7.0.0", "@babel/plugin-syntax-jsx@^7.8.3": - version "7.8.3" - resolved "https://registry.yarnpkg.com/@babel/plugin-syntax-jsx/-/plugin-syntax-jsx-7.8.3.tgz#521b06c83c40480f1e58b4fd33b92eceb1d6ea94" - integrity sha512-WxdW9xyLgBdefoo0Ynn3MRSkhe5tFVxxKNVdnZSh318WrG2e2jH+E9wd/++JsqcLJZPfz87njQJ8j2Upjm0M0A== - dependencies: - "@babel/helper-plugin-utils" "^7.8.3" - -"@babel/plugin-syntax-jsx@^7.10.4": - version "7.10.4" - resolved "https://registry.yarnpkg.com/@babel/plugin-syntax-jsx/-/plugin-syntax-jsx-7.10.4.tgz#39abaae3cbf710c4373d8429484e6ba21340166c" - integrity sha512-KCg9mio9jwiARCB7WAcQ7Y1q+qicILjoK8LP/VkPkEKaf5dkaZZK1EcTe91a3JJlZ3qy6L5s9X52boEYi8DM9g== +"@babel/plugin-syntax-jsx@^7.0.0", "@babel/plugin-syntax-jsx@^7.14.5": + version "7.14.5" + resolved "https://registry.yarnpkg.com/@babel/plugin-syntax-jsx/-/plugin-syntax-jsx-7.14.5.tgz#000e2e25d8673cce49300517a3eda44c263e4201" + integrity sha512-ohuFIsOMXJnbOMRfX7/w7LocdR6R7whhuRD4ax8IipLcLPlZGJKkBxgHp++U4N/vKyU16/YDQr2f5seajD3jIw== dependencies: - "@babel/helper-plugin-utils" "^7.10.4" + "@babel/helper-plugin-utils" "^7.14.5" "@babel/plugin-syntax-logical-assignment-operators@^7.10.4", "@babel/plugin-syntax-logical-assignment-operators@^7.8.3": version "7.10.4" @@ -1008,42 +531,35 @@ dependencies: "@babel/helper-plugin-utils" "^7.10.4" -"@babel/plugin-syntax-nullish-coalescing-operator@^7.0.0", "@babel/plugin-syntax-nullish-coalescing-operator@^7.8.0", "@babel/plugin-syntax-nullish-coalescing-operator@^7.8.3": +"@babel/plugin-syntax-nullish-coalescing-operator@^7.0.0", "@babel/plugin-syntax-nullish-coalescing-operator@^7.8.3": version "7.8.3" resolved "https://registry.yarnpkg.com/@babel/plugin-syntax-nullish-coalescing-operator/-/plugin-syntax-nullish-coalescing-operator-7.8.3.tgz#167ed70368886081f74b5c36c65a88c03b66d1a9" integrity sha512-aSff4zPII1u2QD7y+F8oDsz19ew4IGEJg9SVW+bqwpwtfFleiQDMdzA/R+UlWDzfnHFCxxleFT0PMIrR36XLNQ== dependencies: "@babel/helper-plugin-utils" "^7.8.0" -"@babel/plugin-syntax-numeric-separator@^7.10.4": +"@babel/plugin-syntax-numeric-separator@^7.10.4", "@babel/plugin-syntax-numeric-separator@^7.8.3": version "7.10.4" resolved "https://registry.yarnpkg.com/@babel/plugin-syntax-numeric-separator/-/plugin-syntax-numeric-separator-7.10.4.tgz#b9b070b3e33570cd9fd07ba7fa91c0dd37b9af97" integrity sha512-9H6YdfkcK/uOnY/K7/aA2xpzaAgkQn37yzWUMRK7OaPOqOpGS1+n0H5hxT9AUw9EsSjPW8SVyMJwYRtWs3X3ug== dependencies: "@babel/helper-plugin-utils" "^7.10.4" -"@babel/plugin-syntax-numeric-separator@^7.8.3": - version "7.8.3" - resolved "https://registry.yarnpkg.com/@babel/plugin-syntax-numeric-separator/-/plugin-syntax-numeric-separator-7.8.3.tgz#0e3fb63e09bea1b11e96467271c8308007e7c41f" - integrity sha512-H7dCMAdN83PcCmqmkHB5dtp+Xa9a6LKSvA2hiFBC/5alSHxM5VgWZXFqDi0YFe8XNGT6iCa+z4V4zSt/PdZ7Dw== - dependencies: - "@babel/helper-plugin-utils" "^7.8.3" - -"@babel/plugin-syntax-object-rest-spread@^7.0.0", "@babel/plugin-syntax-object-rest-spread@^7.8.0", "@babel/plugin-syntax-object-rest-spread@^7.8.3": +"@babel/plugin-syntax-object-rest-spread@^7.0.0", "@babel/plugin-syntax-object-rest-spread@^7.8.3": version "7.8.3" resolved "https://registry.yarnpkg.com/@babel/plugin-syntax-object-rest-spread/-/plugin-syntax-object-rest-spread-7.8.3.tgz#60e225edcbd98a640332a2e72dd3e66f1af55871" integrity sha512-XoqMijGZb9y3y2XskN+P1wUGiVwWZ5JmoDRwx5+3GmEplNyVM2s2Dg8ILFQm8rWM48orGy5YpI5Bl8U1y7ydlA== dependencies: "@babel/helper-plugin-utils" "^7.8.0" -"@babel/plugin-syntax-optional-catch-binding@^7.8.0", "@babel/plugin-syntax-optional-catch-binding@^7.8.3": +"@babel/plugin-syntax-optional-catch-binding@^7.8.3": version "7.8.3" resolved "https://registry.yarnpkg.com/@babel/plugin-syntax-optional-catch-binding/-/plugin-syntax-optional-catch-binding-7.8.3.tgz#6111a265bcfb020eb9efd0fdfd7d26402b9ed6c1" integrity sha512-6VPD0Pc1lpTqw0aKoeRTMiB+kWhAoT24PA+ksWSBrFtl5SIRVpZlwN3NNPQjehA2E/91FV3RjLWoVTglWcSV3Q== dependencies: "@babel/helper-plugin-utils" "^7.8.0" -"@babel/plugin-syntax-optional-chaining@^7.0.0", "@babel/plugin-syntax-optional-chaining@^7.8.0", "@babel/plugin-syntax-optional-chaining@^7.8.3": +"@babel/plugin-syntax-optional-chaining@^7.0.0", "@babel/plugin-syntax-optional-chaining@^7.8.3": version "7.8.3" resolved "https://registry.yarnpkg.com/@babel/plugin-syntax-optional-chaining/-/plugin-syntax-optional-chaining-7.8.3.tgz#4f69c2ab95167e0180cd5336613f8c5788f7d48a" integrity sha512-KoK9ErH1MBlCPxV0VANkXW2/dw4vlbGDrFgz8bmUsBGYkFRcbRwMh6cIJubdPrkxRwuGdtCk0v/wPTKbQgBjkg== @@ -1064,36 +580,20 @@ dependencies: "@babel/helper-plugin-utils" "^7.14.5" -"@babel/plugin-syntax-typescript@^7.8.3": - version "7.8.3" - resolved "https://registry.yarnpkg.com/@babel/plugin-syntax-typescript/-/plugin-syntax-typescript-7.8.3.tgz#c1f659dda97711a569cef75275f7e15dcaa6cabc" - integrity sha512-GO1MQ/SGGGoiEXY0e0bSpHimJvxqB7lktLLIq2pv8xG7WZ8IMEle74jIe1FhprHBWjwjZtXHkycDLZXIWM5Wfg== - dependencies: - "@babel/helper-plugin-utils" "^7.8.3" - -"@babel/plugin-transform-arrow-functions@^7.0.0": - version "7.8.3" - resolved "https://registry.yarnpkg.com/@babel/plugin-transform-arrow-functions/-/plugin-transform-arrow-functions-7.8.3.tgz#82776c2ed0cd9e1a49956daeb896024c9473b8b6" - integrity sha512-0MRF+KC8EqH4dbuITCWwPSzsyO3HIWWlm30v8BbbpOrS1B++isGxPnnuq/IZvOX5J2D/p7DQalQm+/2PnlKGxg== +"@babel/plugin-syntax-typescript@^7.14.5": + version "7.14.5" + resolved "https://registry.yarnpkg.com/@babel/plugin-syntax-typescript/-/plugin-syntax-typescript-7.14.5.tgz#b82c6ce471b165b5ce420cf92914d6fb46225716" + integrity sha512-u6OXzDaIXjEstBRRoBCQ/uKQKlbuaeE5in0RvWdA4pN6AhqxTIwUsnHPU1CFZA/amYObMsuWhYfRl3Ch90HD0Q== dependencies: - "@babel/helper-plugin-utils" "^7.8.3" + "@babel/helper-plugin-utils" "^7.14.5" -"@babel/plugin-transform-arrow-functions@^7.14.5": +"@babel/plugin-transform-arrow-functions@^7.0.0", "@babel/plugin-transform-arrow-functions@^7.14.5": version "7.14.5" resolved "https://registry.yarnpkg.com/@babel/plugin-transform-arrow-functions/-/plugin-transform-arrow-functions-7.14.5.tgz#f7187d9588a768dd080bf4c9ffe117ea62f7862a" integrity sha512-KOnO0l4+tD5IfOdi4x8C1XmEIRWUjNRV8wc6K2vz/3e8yAOoZZvsRXRRIF/yo/MAOFb4QjtAw9xSxMXbSMRy8A== dependencies: "@babel/helper-plugin-utils" "^7.14.5" -"@babel/plugin-transform-async-to-generator@^7.0.0": - version "7.8.3" - resolved "https://registry.yarnpkg.com/@babel/plugin-transform-async-to-generator/-/plugin-transform-async-to-generator-7.8.3.tgz#4308fad0d9409d71eafb9b1a6ee35f9d64b64086" - integrity sha512-imt9tFLD9ogt56Dd5CI/6XgpukMwd/fLGSrix2httihVe7LOGVPhyhMh1BU5kDM7iHD08i8uUtmV2sWaBFlHVQ== - dependencies: - "@babel/helper-module-imports" "^7.8.3" - "@babel/helper-plugin-utils" "^7.8.3" - "@babel/helper-remap-async-to-generator" "^7.8.3" - "@babel/plugin-transform-async-to-generator@^7.14.5": version "7.14.5" resolved "https://registry.yarnpkg.com/@babel/plugin-transform-async-to-generator/-/plugin-transform-async-to-generator-7.14.5.tgz#72c789084d8f2094acb945633943ef8443d39e67" @@ -1103,50 +603,21 @@ "@babel/helper-plugin-utils" "^7.14.5" "@babel/helper-remap-async-to-generator" "^7.14.5" -"@babel/plugin-transform-block-scoped-functions@^7.0.0": - version "7.8.3" - resolved "https://registry.yarnpkg.com/@babel/plugin-transform-block-scoped-functions/-/plugin-transform-block-scoped-functions-7.8.3.tgz#437eec5b799b5852072084b3ae5ef66e8349e8a3" - integrity sha512-vo4F2OewqjbB1+yaJ7k2EJFHlTP3jR634Z9Cj9itpqNjuLXvhlVxgnjsHsdRgASR8xYDrx6onw4vW5H6We0Jmg== - dependencies: - "@babel/helper-plugin-utils" "^7.8.3" - -"@babel/plugin-transform-block-scoped-functions@^7.14.5": +"@babel/plugin-transform-block-scoped-functions@^7.0.0", "@babel/plugin-transform-block-scoped-functions@^7.14.5": version "7.14.5" resolved "https://registry.yarnpkg.com/@babel/plugin-transform-block-scoped-functions/-/plugin-transform-block-scoped-functions-7.14.5.tgz#e48641d999d4bc157a67ef336aeb54bc44fd3ad4" integrity sha512-dtqWqdWZ5NqBX3KzsVCWfQI3A53Ft5pWFCT2eCVUftWZgjc5DpDponbIF1+c+7cSGk2wN0YK7HGL/ezfRbpKBQ== dependencies: "@babel/helper-plugin-utils" "^7.14.5" -"@babel/plugin-transform-block-scoping@^7.0.0": - version "7.8.3" - resolved "https://registry.yarnpkg.com/@babel/plugin-transform-block-scoping/-/plugin-transform-block-scoping-7.8.3.tgz#97d35dab66857a437c166358b91d09050c868f3a" - integrity sha512-pGnYfm7RNRgYRi7bids5bHluENHqJhrV4bCZRwc5GamaWIIs07N4rZECcmJL6ZClwjDz1GbdMZFtPs27hTB06w== - dependencies: - "@babel/helper-plugin-utils" "^7.8.3" - lodash "^4.17.13" - -"@babel/plugin-transform-block-scoping@^7.14.5": +"@babel/plugin-transform-block-scoping@^7.0.0", "@babel/plugin-transform-block-scoping@^7.14.5": version "7.14.5" resolved "https://registry.yarnpkg.com/@babel/plugin-transform-block-scoping/-/plugin-transform-block-scoping-7.14.5.tgz#8cc63e61e50f42e078e6f09be775a75f23ef9939" integrity sha512-LBYm4ZocNgoCqyxMLoOnwpsmQ18HWTQvql64t3GvMUzLQrNoV1BDG0lNftC8QKYERkZgCCT/7J5xWGObGAyHDw== dependencies: "@babel/helper-plugin-utils" "^7.14.5" -"@babel/plugin-transform-classes@^7.0.0": - version "7.9.5" - resolved "https://registry.yarnpkg.com/@babel/plugin-transform-classes/-/plugin-transform-classes-7.9.5.tgz#800597ddb8aefc2c293ed27459c1fcc935a26c2c" - integrity sha512-x2kZoIuLC//O5iA7PEvecB105o7TLzZo8ofBVhP79N+DO3jaX+KYfww9TQcfBEZD0nikNyYcGB1IKtRq36rdmg== - dependencies: - "@babel/helper-annotate-as-pure" "^7.8.3" - "@babel/helper-define-map" "^7.8.3" - "@babel/helper-function-name" "^7.9.5" - "@babel/helper-optimise-call-expression" "^7.8.3" - "@babel/helper-plugin-utils" "^7.8.3" - "@babel/helper-replace-supers" "^7.8.6" - "@babel/helper-split-export-declaration" "^7.8.3" - globals "^11.1.0" - -"@babel/plugin-transform-classes@^7.14.5": +"@babel/plugin-transform-classes@^7.0.0", "@babel/plugin-transform-classes@^7.14.5": version "7.14.5" resolved "https://registry.yarnpkg.com/@babel/plugin-transform-classes/-/plugin-transform-classes-7.14.5.tgz#0e98e82097b38550b03b483f9b51a78de0acb2cf" integrity sha512-J4VxKAMykM06K/64z9rwiL6xnBHgB1+FVspqvlgCdwD1KUbQNfszeKVVOMh59w3sztHYIZDgnhOC4WbdEfHFDA== @@ -1159,35 +630,21 @@ "@babel/helper-split-export-declaration" "^7.14.5" globals "^11.1.0" -"@babel/plugin-transform-computed-properties@^7.0.0": - version "7.8.3" - resolved "https://registry.yarnpkg.com/@babel/plugin-transform-computed-properties/-/plugin-transform-computed-properties-7.8.3.tgz#96d0d28b7f7ce4eb5b120bb2e0e943343c86f81b" - integrity sha512-O5hiIpSyOGdrQZRQ2ccwtTVkgUDBBiCuK//4RJ6UfePllUTCENOzKxfh6ulckXKc0DixTFLCfb2HVkNA7aDpzA== - dependencies: - "@babel/helper-plugin-utils" "^7.8.3" - -"@babel/plugin-transform-computed-properties@^7.14.5": +"@babel/plugin-transform-computed-properties@^7.0.0", "@babel/plugin-transform-computed-properties@^7.14.5": version "7.14.5" resolved "https://registry.yarnpkg.com/@babel/plugin-transform-computed-properties/-/plugin-transform-computed-properties-7.14.5.tgz#1b9d78987420d11223d41195461cc43b974b204f" integrity sha512-pWM+E4283UxaVzLb8UBXv4EIxMovU4zxT1OPnpHJcmnvyY9QbPPTKZfEj31EUvG3/EQRbYAGaYEUZ4yWOBC2xg== dependencies: "@babel/helper-plugin-utils" "^7.14.5" -"@babel/plugin-transform-destructuring@^7.0.0": - version "7.9.5" - resolved "https://registry.yarnpkg.com/@babel/plugin-transform-destructuring/-/plugin-transform-destructuring-7.9.5.tgz#72c97cf5f38604aea3abf3b935b0e17b1db76a50" - integrity sha512-j3OEsGel8nHL/iusv/mRd5fYZ3DrOxWC82x0ogmdN/vHfAP4MYw+AFKYanzWlktNwikKvlzUV//afBW5FTp17Q== - dependencies: - "@babel/helper-plugin-utils" "^7.8.3" - -"@babel/plugin-transform-destructuring@^7.14.7": +"@babel/plugin-transform-destructuring@^7.0.0", "@babel/plugin-transform-destructuring@^7.14.7": version "7.14.7" resolved "https://registry.yarnpkg.com/@babel/plugin-transform-destructuring/-/plugin-transform-destructuring-7.14.7.tgz#0ad58ed37e23e22084d109f185260835e5557576" integrity sha512-0mDE99nK+kVh3xlc5vKwB6wnP9ecuSj+zQCa/n0voENtP/zymdT4HH6QEb65wjjcbqr1Jb/7z9Qp7TF5FtwYGw== dependencies: "@babel/helper-plugin-utils" "^7.14.5" -"@babel/plugin-transform-dotall-regex@^7.14.5": +"@babel/plugin-transform-dotall-regex@^7.14.5", "@babel/plugin-transform-dotall-regex@^7.4.4": version "7.14.5" resolved "https://registry.yarnpkg.com/@babel/plugin-transform-dotall-regex/-/plugin-transform-dotall-regex-7.14.5.tgz#2f6bf76e46bdf8043b4e7e16cf24532629ba0c7a" integrity sha512-loGlnBdj02MDsFaHhAIJzh7euK89lBrGIdM9EAtHFo6xKygCUGuuWe07o1oZVk287amtW1n0808sQM99aZt3gw== @@ -1195,14 +652,6 @@ "@babel/helper-create-regexp-features-plugin" "^7.14.5" "@babel/helper-plugin-utils" "^7.14.5" -"@babel/plugin-transform-dotall-regex@^7.4.4": - version "7.8.3" - resolved "https://registry.yarnpkg.com/@babel/plugin-transform-dotall-regex/-/plugin-transform-dotall-regex-7.8.3.tgz#c3c6ec5ee6125c6993c5cbca20dc8621a9ea7a6e" - integrity sha512-kLs1j9Nn4MQoBYdRXH6AeaXMbEJFaFu/v1nQkvib6QzTj8MZI5OQzqmD83/2jEM1z0DLilra5aWO5YpyC0ALIw== - dependencies: - "@babel/helper-create-regexp-features-plugin" "^7.8.3" - "@babel/helper-plugin-utils" "^7.8.3" - "@babel/plugin-transform-duplicate-keys@^7.14.5": version "7.14.5" resolved "https://registry.yarnpkg.com/@babel/plugin-transform-duplicate-keys/-/plugin-transform-duplicate-keys-7.14.5.tgz#365a4844881bdf1501e3a9f0270e7f0f91177954" @@ -1210,15 +659,7 @@ dependencies: "@babel/helper-plugin-utils" "^7.14.5" -"@babel/plugin-transform-exponentiation-operator@^7.0.0": - version "7.8.3" - resolved "https://registry.yarnpkg.com/@babel/plugin-transform-exponentiation-operator/-/plugin-transform-exponentiation-operator-7.8.3.tgz#581a6d7f56970e06bf51560cd64f5e947b70d7b7" - integrity sha512-zwIpuIymb3ACcInbksHaNcR12S++0MDLKkiqXHl3AzpgdKlFNhog+z/K0+TGW+b0w5pgTq4H6IwV/WhxbGYSjQ== - dependencies: - "@babel/helper-builder-binary-assignment-operator-visitor" "^7.8.3" - "@babel/helper-plugin-utils" "^7.8.3" - -"@babel/plugin-transform-exponentiation-operator@^7.14.5": +"@babel/plugin-transform-exponentiation-operator@^7.0.0", "@babel/plugin-transform-exponentiation-operator@^7.14.5": version "7.14.5" resolved "https://registry.yarnpkg.com/@babel/plugin-transform-exponentiation-operator/-/plugin-transform-exponentiation-operator-7.14.5.tgz#5154b8dd6a3dfe6d90923d61724bd3deeb90b493" integrity sha512-jFazJhMBc9D27o9jDnIE5ZErI0R0m7PbKXVq77FFvqFbzvTMuv8jaAwLZ5PviOLSFttqKIW0/wxNSDbjLk0tYA== @@ -1227,36 +668,21 @@ "@babel/helper-plugin-utils" "^7.14.5" "@babel/plugin-transform-flow-strip-types@^7.0.0": - version "7.9.0" - resolved "https://registry.yarnpkg.com/@babel/plugin-transform-flow-strip-types/-/plugin-transform-flow-strip-types-7.9.0.tgz#8a3538aa40434e000b8f44a3c5c9ac7229bd2392" - integrity sha512-7Qfg0lKQhEHs93FChxVLAvhBshOPQDtJUTVHr/ZwQNRccCm4O9D79r9tVSoV8iNwjP1YgfD+e/fgHcPkN1qEQg== - dependencies: - "@babel/helper-plugin-utils" "^7.8.3" - "@babel/plugin-syntax-flow" "^7.8.3" - -"@babel/plugin-transform-for-of@^7.0.0": - version "7.9.0" - resolved "https://registry.yarnpkg.com/@babel/plugin-transform-for-of/-/plugin-transform-for-of-7.9.0.tgz#0f260e27d3e29cd1bb3128da5e76c761aa6c108e" - integrity sha512-lTAnWOpMwOXpyDx06N+ywmF3jNbafZEqZ96CGYabxHrxNX8l5ny7dt4bK/rGwAh9utyP2b2Hv7PlZh1AAS54FQ== + version "7.14.5" + resolved "https://registry.yarnpkg.com/@babel/plugin-transform-flow-strip-types/-/plugin-transform-flow-strip-types-7.14.5.tgz#0dc9c1d11dcdc873417903d6df4bed019ef0f85e" + integrity sha512-KhcolBKfXbvjwI3TV7r7TkYm8oNXHNBqGOy6JDVwtecFaRoKYsUUqJdS10q0YDKW1c6aZQgO+Ys3LfGkox8pXA== dependencies: - "@babel/helper-plugin-utils" "^7.8.3" + "@babel/helper-plugin-utils" "^7.14.5" + "@babel/plugin-syntax-flow" "^7.14.5" -"@babel/plugin-transform-for-of@^7.14.5": +"@babel/plugin-transform-for-of@^7.0.0", "@babel/plugin-transform-for-of@^7.14.5": version "7.14.5" resolved "https://registry.yarnpkg.com/@babel/plugin-transform-for-of/-/plugin-transform-for-of-7.14.5.tgz#dae384613de8f77c196a8869cbf602a44f7fc0eb" integrity sha512-CfmqxSUZzBl0rSjpoQSFoR9UEj3HzbGuGNL21/iFTmjb5gFggJp3ph0xR1YBhexmLoKRHzgxuFvty2xdSt6gTA== dependencies: "@babel/helper-plugin-utils" "^7.14.5" -"@babel/plugin-transform-function-name@^7.0.0": - version "7.8.3" - resolved "https://registry.yarnpkg.com/@babel/plugin-transform-function-name/-/plugin-transform-function-name-7.8.3.tgz#279373cb27322aaad67c2683e776dfc47196ed8b" - integrity sha512-rO/OnDS78Eifbjn5Py9v8y0aR+aSYhDhqAwVfsTl0ERuMZyr05L1aFSCJnbv2mmsLkit/4ReeQ9N2BgLnOcPCQ== - dependencies: - "@babel/helper-function-name" "^7.8.3" - "@babel/helper-plugin-utils" "^7.8.3" - -"@babel/plugin-transform-function-name@^7.14.5": +"@babel/plugin-transform-function-name@^7.0.0", "@babel/plugin-transform-function-name@^7.14.5": version "7.14.5" resolved "https://registry.yarnpkg.com/@babel/plugin-transform-function-name/-/plugin-transform-function-name-7.14.5.tgz#e81c65ecb900746d7f31802f6bed1f52d915d6f2" integrity sha512-vbO6kv0fIzZ1GpmGQuvbwwm+O4Cbm2NrPzwlup9+/3fdkuzo1YqOZcXw26+YUJB84Ja7j9yURWposEHLYwxUfQ== @@ -1264,28 +690,14 @@ "@babel/helper-function-name" "^7.14.5" "@babel/helper-plugin-utils" "^7.14.5" -"@babel/plugin-transform-literals@^7.0.0": - version "7.8.3" - resolved "https://registry.yarnpkg.com/@babel/plugin-transform-literals/-/plugin-transform-literals-7.8.3.tgz#aef239823d91994ec7b68e55193525d76dbd5dc1" - integrity sha512-3Tqf8JJ/qB7TeldGl+TT55+uQei9JfYaregDcEAyBZ7akutriFrt6C/wLYIer6OYhleVQvH/ntEhjE/xMmy10A== - dependencies: - "@babel/helper-plugin-utils" "^7.8.3" - -"@babel/plugin-transform-literals@^7.14.5": +"@babel/plugin-transform-literals@^7.0.0", "@babel/plugin-transform-literals@^7.14.5": version "7.14.5" resolved "https://registry.yarnpkg.com/@babel/plugin-transform-literals/-/plugin-transform-literals-7.14.5.tgz#41d06c7ff5d4d09e3cf4587bd3ecf3930c730f78" integrity sha512-ql33+epql2F49bi8aHXxvLURHkxJbSmMKl9J5yHqg4PLtdE6Uc48CH1GS6TQvZ86eoB/ApZXwm7jlA+B3kra7A== dependencies: "@babel/helper-plugin-utils" "^7.14.5" -"@babel/plugin-transform-member-expression-literals@^7.0.0": - version "7.8.3" - resolved "https://registry.yarnpkg.com/@babel/plugin-transform-member-expression-literals/-/plugin-transform-member-expression-literals-7.8.3.tgz#963fed4b620ac7cbf6029c755424029fa3a40410" - integrity sha512-3Wk2EXhnw+rP+IDkK6BdtPKsUE5IeZ6QOGrPYvw52NwBStw9V1ZVzxgK6fSKSxqUvH9eQPR3tm3cOq79HlsKYA== - dependencies: - "@babel/helper-plugin-utils" "^7.8.3" - -"@babel/plugin-transform-member-expression-literals@^7.14.5": +"@babel/plugin-transform-member-expression-literals@^7.0.0", "@babel/plugin-transform-member-expression-literals@^7.14.5": version "7.14.5" resolved "https://registry.yarnpkg.com/@babel/plugin-transform-member-expression-literals/-/plugin-transform-member-expression-literals-7.14.5.tgz#b39cd5212a2bf235a617d320ec2b48bcc091b8a7" integrity sha512-WkNXxH1VXVTKarWFqmso83xl+2V3Eo28YY5utIkbsmXoItO8Q3aZxN4BTS2k0hz9dGUloHK26mJMyQEYfkn/+Q== @@ -1301,17 +713,7 @@ "@babel/helper-plugin-utils" "^7.14.5" babel-plugin-dynamic-import-node "^2.3.3" -"@babel/plugin-transform-modules-commonjs@^7.0.0": - version "7.9.6" - resolved "https://registry.yarnpkg.com/@babel/plugin-transform-modules-commonjs/-/plugin-transform-modules-commonjs-7.9.6.tgz#64b7474a4279ee588cacd1906695ca721687c277" - integrity sha512-7H25fSlLcn+iYimmsNe3uK1at79IE6SKW9q0/QeEHTMC9MdOZ+4bA+T1VFB5fgOqBWoqlifXRzYD0JPdmIrgSQ== - dependencies: - "@babel/helper-module-transforms" "^7.9.0" - "@babel/helper-plugin-utils" "^7.8.3" - "@babel/helper-simple-access" "^7.8.3" - babel-plugin-dynamic-import-node "^2.3.3" - -"@babel/plugin-transform-modules-commonjs@^7.14.5": +"@babel/plugin-transform-modules-commonjs@^7.0.0", "@babel/plugin-transform-modules-commonjs@^7.14.5": version "7.14.5" resolved "https://registry.yarnpkg.com/@babel/plugin-transform-modules-commonjs/-/plugin-transform-modules-commonjs-7.14.5.tgz#7aaee0ea98283de94da98b28f8c35701429dad97" integrity sha512-en8GfBtgnydoao2PS+87mKyw62k02k7kJ9ltbKe0fXTHrQmG6QZZflYuGI1VVG7sVpx4E1n7KBpNlPb8m78J+A== @@ -1355,21 +757,13 @@ "@babel/helper-plugin-utils" "^7.14.5" "@babel/plugin-transform-object-assign@^7.0.0": - version "7.8.3" - resolved "https://registry.yarnpkg.com/@babel/plugin-transform-object-assign/-/plugin-transform-object-assign-7.8.3.tgz#dc3b8dd50ef03837868a37b7df791f64f288538e" - integrity sha512-i3LuN8tPDqUCRFu3dkzF2r1Nx0jp4scxtm7JxtIqI9he9Vk20YD+/zshdzR9JLsoBMlJlNR82a62vQExNEVx/Q== - dependencies: - "@babel/helper-plugin-utils" "^7.8.3" - -"@babel/plugin-transform-object-super@^7.0.0": - version "7.8.3" - resolved "https://registry.yarnpkg.com/@babel/plugin-transform-object-super/-/plugin-transform-object-super-7.8.3.tgz#ebb6a1e7a86ffa96858bd6ac0102d65944261725" - integrity sha512-57FXk+gItG/GejofIyLIgBKTas4+pEU47IXKDBWFTxdPd7F80H8zybyAY7UoblVfBhBGs2EKM+bJUu2+iUYPDQ== + version "7.14.5" + resolved "https://registry.yarnpkg.com/@babel/plugin-transform-object-assign/-/plugin-transform-object-assign-7.14.5.tgz#62537d54b6d85de04f4df48bfdba2eebff17b760" + integrity sha512-lvhjk4UN9xJJYB1mI5KC0/o1D5EcJXdbhVe+4fSk08D6ZN+iuAIs7LJC+71h8av9Ew4+uRq9452v9R93SFmQlQ== dependencies: - "@babel/helper-plugin-utils" "^7.8.3" - "@babel/helper-replace-supers" "^7.8.3" + "@babel/helper-plugin-utils" "^7.14.5" -"@babel/plugin-transform-object-super@^7.14.5": +"@babel/plugin-transform-object-super@^7.0.0", "@babel/plugin-transform-object-super@^7.14.5": version "7.14.5" resolved "https://registry.yarnpkg.com/@babel/plugin-transform-object-super/-/plugin-transform-object-super-7.14.5.tgz#d0b5faeac9e98597a161a9cf78c527ed934cdc45" integrity sha512-MKfOBWzK0pZIrav9z/hkRqIk/2bTv9qvxHzPQc12RcVkMOzpIKnFCNYJip00ssKWYkd8Sf5g0Wr7pqJ+cmtuFg== @@ -1377,29 +771,14 @@ "@babel/helper-plugin-utils" "^7.14.5" "@babel/helper-replace-supers" "^7.14.5" -"@babel/plugin-transform-parameters@^7.0.0", "@babel/plugin-transform-parameters@^7.9.5": - version "7.9.5" - resolved "https://registry.yarnpkg.com/@babel/plugin-transform-parameters/-/plugin-transform-parameters-7.9.5.tgz#173b265746f5e15b2afe527eeda65b73623a0795" - integrity sha512-0+1FhHnMfj6lIIhVvS4KGQJeuhe1GI//h5uptK4PvLt+BGBxsoUJbd3/IW002yk//6sZPlFgsG1hY6OHLcy6kA== - dependencies: - "@babel/helper-get-function-arity" "^7.8.3" - "@babel/helper-plugin-utils" "^7.8.3" - -"@babel/plugin-transform-parameters@^7.14.5": +"@babel/plugin-transform-parameters@^7.0.0", "@babel/plugin-transform-parameters@^7.14.5": version "7.14.5" resolved "https://registry.yarnpkg.com/@babel/plugin-transform-parameters/-/plugin-transform-parameters-7.14.5.tgz#49662e86a1f3ddccac6363a7dfb1ff0a158afeb3" integrity sha512-Tl7LWdr6HUxTmzQtzuU14SqbgrSKmaR77M0OKyq4njZLQTPfOvzblNKyNkGwOfEFCEx7KeYHQHDI0P3F02IVkA== dependencies: "@babel/helper-plugin-utils" "^7.14.5" -"@babel/plugin-transform-property-literals@^7.0.0": - version "7.8.3" - resolved "https://registry.yarnpkg.com/@babel/plugin-transform-property-literals/-/plugin-transform-property-literals-7.8.3.tgz#33194300d8539c1ed28c62ad5087ba3807b98263" - integrity sha512-uGiiXAZMqEoQhRWMK17VospMZh5sXWg+dlh2soffpkAl96KAm+WZuJfa6lcELotSRmooLqg0MWdH6UUq85nmmg== - dependencies: - "@babel/helper-plugin-utils" "^7.8.3" - -"@babel/plugin-transform-property-literals@^7.14.5": +"@babel/plugin-transform-property-literals@^7.0.0", "@babel/plugin-transform-property-literals@^7.14.5": version "7.14.5" resolved "https://registry.yarnpkg.com/@babel/plugin-transform-property-literals/-/plugin-transform-property-literals-7.14.5.tgz#0ddbaa1f83db3606f1cdf4846fa1dfb473458b34" integrity sha512-r1uilDthkgXW8Z1vJz2dKYLV1tuw2xsbrp3MrZmD99Wh9vsfKoob+JTgri5VUb/JqyKRXotlOtwgu4stIYCmnw== @@ -1414,46 +793,38 @@ "@babel/helper-plugin-utils" "^7.14.5" "@babel/plugin-transform-react-display-name@^7.0.0": - version "7.8.3" - resolved "https://registry.yarnpkg.com/@babel/plugin-transform-react-display-name/-/plugin-transform-react-display-name-7.8.3.tgz#70ded987c91609f78353dd76d2fb2a0bb991e8e5" - integrity sha512-3Jy/PCw8Fe6uBKtEgz3M82ljt+lTg+xJaM4og+eyu83qLT87ZUSckn0wy7r31jflURWLO83TW6Ylf7lyXj3m5A== + version "7.14.5" + resolved "https://registry.yarnpkg.com/@babel/plugin-transform-react-display-name/-/plugin-transform-react-display-name-7.14.5.tgz#baa92d15c4570411301a85a74c13534873885b65" + integrity sha512-07aqY1ChoPgIxsuDviptRpVkWCSbXWmzQqcgy65C6YSFOfPFvb/DX3bBRHh7pCd/PMEEYHYWUTSVkCbkVainYQ== dependencies: - "@babel/helper-plugin-utils" "^7.8.3" + "@babel/helper-plugin-utils" "^7.14.5" "@babel/plugin-transform-react-jsx-self@^7.0.0": - version "7.10.4" - resolved "https://registry.yarnpkg.com/@babel/plugin-transform-react-jsx-self/-/plugin-transform-react-jsx-self-7.10.4.tgz#cd301a5fed8988c182ed0b9d55e9bd6db0bd9369" - integrity sha512-yOvxY2pDiVJi0axdTWHSMi5T0DILN+H+SaeJeACHKjQLezEzhLx9nEF9xgpBLPtkZsks9cnb5P9iBEi21En3gg== + version "7.14.5" + resolved "https://registry.yarnpkg.com/@babel/plugin-transform-react-jsx-self/-/plugin-transform-react-jsx-self-7.14.5.tgz#703b5d1edccd342179c2a99ee8c7065c2b4403cc" + integrity sha512-M/fmDX6n0cfHK/NLTcPmrfVAORKDhK8tyjDhyxlUjYyPYYO8FRWwuxBA3WBx8kWN/uBUuwGa3s/0+hQ9JIN3Tg== dependencies: - "@babel/helper-plugin-utils" "^7.10.4" - "@babel/plugin-syntax-jsx" "^7.10.4" + "@babel/helper-plugin-utils" "^7.14.5" "@babel/plugin-transform-react-jsx-source@^7.0.0": - version "7.9.0" - resolved "https://registry.yarnpkg.com/@babel/plugin-transform-react-jsx-source/-/plugin-transform-react-jsx-source-7.9.0.tgz#89ef93025240dd5d17d3122294a093e5e0183de0" - integrity sha512-K6m3LlSnTSfRkM6FcRk8saNEeaeyG5k7AVkBU2bZK3+1zdkSED3qNdsWrUgQBeTVD2Tp3VMmerxVO2yM5iITmw== + version "7.14.5" + resolved "https://registry.yarnpkg.com/@babel/plugin-transform-react-jsx-source/-/plugin-transform-react-jsx-source-7.14.5.tgz#79f728e60e6dbd31a2b860b0bf6c9765918acf1d" + integrity sha512-1TpSDnD9XR/rQ2tzunBVPThF5poaYT9GqP+of8fAtguYuI/dm2RkrMBDemsxtY0XBzvW7nXjYM0hRyKX9QYj7Q== dependencies: - "@babel/helper-plugin-utils" "^7.8.3" - "@babel/plugin-syntax-jsx" "^7.8.3" + "@babel/helper-plugin-utils" "^7.14.5" "@babel/plugin-transform-react-jsx@^7.0.0": - version "7.9.4" - resolved "https://registry.yarnpkg.com/@babel/plugin-transform-react-jsx/-/plugin-transform-react-jsx-7.9.4.tgz#86f576c8540bd06d0e95e0b61ea76d55f6cbd03f" - integrity sha512-Mjqf3pZBNLt854CK0C/kRuXAnE6H/bo7xYojP+WGtX8glDGSibcwnsWwhwoSuRg0+EBnxPC1ouVnuetUIlPSAw== - dependencies: - "@babel/helper-builder-react-jsx" "^7.9.0" - "@babel/helper-builder-react-jsx-experimental" "^7.9.0" - "@babel/helper-plugin-utils" "^7.8.3" - "@babel/plugin-syntax-jsx" "^7.8.3" - -"@babel/plugin-transform-regenerator@^7.0.0": - version "7.8.7" - resolved "https://registry.yarnpkg.com/@babel/plugin-transform-regenerator/-/plugin-transform-regenerator-7.8.7.tgz#5e46a0dca2bee1ad8285eb0527e6abc9c37672f8" - integrity sha512-TIg+gAl4Z0a3WmD3mbYSk+J9ZUH6n/Yc57rtKRnlA/7rcCvpekHXe0CMZHP1gYp7/KLe9GHTuIba0vXmls6drA== + version "7.14.5" + resolved "https://registry.yarnpkg.com/@babel/plugin-transform-react-jsx/-/plugin-transform-react-jsx-7.14.5.tgz#39749f0ee1efd8a1bd729152cf5f78f1d247a44a" + integrity sha512-7RylxNeDnxc1OleDm0F5Q/BSL+whYRbOAR+bwgCxIr0L32v7UFh/pz1DLMZideAUxKT6eMoS2zQH6fyODLEi8Q== dependencies: - regenerator-transform "^0.14.2" + "@babel/helper-annotate-as-pure" "^7.14.5" + "@babel/helper-module-imports" "^7.14.5" + "@babel/helper-plugin-utils" "^7.14.5" + "@babel/plugin-syntax-jsx" "^7.14.5" + "@babel/types" "^7.14.5" -"@babel/plugin-transform-regenerator@^7.14.5": +"@babel/plugin-transform-regenerator@^7.0.0", "@babel/plugin-transform-regenerator@^7.14.5": version "7.14.5" resolved "https://registry.yarnpkg.com/@babel/plugin-transform-regenerator/-/plugin-transform-regenerator-7.14.5.tgz#9676fd5707ed28f522727c5b3c0aa8544440b04f" integrity sha512-NVIY1W3ITDP5xQl50NgTKlZ0GrotKtLna08/uGY6ErQt6VEQZXla86x/CTddm5gZdcr+5GSsvMeTmWA5Ii6pkg== @@ -1468,37 +839,25 @@ "@babel/helper-plugin-utils" "^7.14.5" "@babel/plugin-transform-runtime@^7.0.0": - version "7.9.6" - resolved "https://registry.yarnpkg.com/@babel/plugin-transform-runtime/-/plugin-transform-runtime-7.9.6.tgz#3ba804438ad0d880a17bca5eaa0cdf1edeedb2fd" - integrity sha512-qcmiECD0mYOjOIt8YHNsAP1SxPooC/rDmfmiSK9BNY72EitdSc7l44WTEklaWuFtbOEBjNhWWyph/kOImbNJ4w== - dependencies: - "@babel/helper-module-imports" "^7.8.3" - "@babel/helper-plugin-utils" "^7.8.3" - resolve "^1.8.1" - semver "^5.5.1" - -"@babel/plugin-transform-shorthand-properties@^7.0.0": - version "7.8.3" - resolved "https://registry.yarnpkg.com/@babel/plugin-transform-shorthand-properties/-/plugin-transform-shorthand-properties-7.8.3.tgz#28545216e023a832d4d3a1185ed492bcfeac08c8" - integrity sha512-I9DI6Odg0JJwxCHzbzW08ggMdCezoWcuQRz3ptdudgwaHxTjxw5HgdFJmZIkIMlRymL6YiZcped4TTCB0JcC8w== + version "7.14.5" + resolved "https://registry.yarnpkg.com/@babel/plugin-transform-runtime/-/plugin-transform-runtime-7.14.5.tgz#30491dad49c6059f8f8fa5ee8896a0089e987523" + integrity sha512-fPMBhh1AV8ZyneiCIA+wYYUH1arzlXR1UMcApjvchDhfKxhy2r2lReJv8uHEyihi4IFIGlr1Pdx7S5fkESDQsg== dependencies: - "@babel/helper-plugin-utils" "^7.8.3" + "@babel/helper-module-imports" "^7.14.5" + "@babel/helper-plugin-utils" "^7.14.5" + babel-plugin-polyfill-corejs2 "^0.2.2" + babel-plugin-polyfill-corejs3 "^0.2.2" + babel-plugin-polyfill-regenerator "^0.2.2" + semver "^6.3.0" -"@babel/plugin-transform-shorthand-properties@^7.14.5": +"@babel/plugin-transform-shorthand-properties@^7.0.0", "@babel/plugin-transform-shorthand-properties@^7.14.5": version "7.14.5" resolved "https://registry.yarnpkg.com/@babel/plugin-transform-shorthand-properties/-/plugin-transform-shorthand-properties-7.14.5.tgz#97f13855f1409338d8cadcbaca670ad79e091a58" integrity sha512-xLucks6T1VmGsTB+GWK5Pl9Jl5+nRXD1uoFdA5TSO6xtiNjtXTjKkmPdFXVLGlK5A2/or/wQMKfmQ2Y0XJfn5g== dependencies: "@babel/helper-plugin-utils" "^7.14.5" -"@babel/plugin-transform-spread@^7.0.0": - version "7.8.3" - resolved "https://registry.yarnpkg.com/@babel/plugin-transform-spread/-/plugin-transform-spread-7.8.3.tgz#9c8ffe8170fdfb88b114ecb920b82fb6e95fe5e8" - integrity sha512-CkuTU9mbmAoFOI1tklFWYYbzX5qCIZVXPVy0jpXgGwkplCndQAa58s2jr66fTeQnA64bDox0HL4U56CFYoyC7g== - dependencies: - "@babel/helper-plugin-utils" "^7.8.3" - -"@babel/plugin-transform-spread@^7.14.6": +"@babel/plugin-transform-spread@^7.0.0", "@babel/plugin-transform-spread@^7.14.6": version "7.14.6" resolved "https://registry.yarnpkg.com/@babel/plugin-transform-spread/-/plugin-transform-spread-7.14.6.tgz#6bd40e57fe7de94aa904851963b5616652f73144" integrity sha512-Zr0x0YroFJku7n7+/HH3A2eIrGMjbmAIbJSVv0IZ+t3U2WUQUA64S/oeied2e+MaGSjmt4alzBCsK9E8gh+fag== @@ -1506,30 +865,14 @@ "@babel/helper-plugin-utils" "^7.14.5" "@babel/helper-skip-transparent-expression-wrappers" "^7.14.5" -"@babel/plugin-transform-sticky-regex@^7.0.0": - version "7.8.3" - resolved "https://registry.yarnpkg.com/@babel/plugin-transform-sticky-regex/-/plugin-transform-sticky-regex-7.8.3.tgz#be7a1290f81dae767475452199e1f76d6175b100" - integrity sha512-9Spq0vGCD5Bb4Z/ZXXSK5wbbLFMG085qd2vhL1JYu1WcQ5bXqZBAYRzU1d+p79GcHs2szYv5pVQCX13QgldaWw== - dependencies: - "@babel/helper-plugin-utils" "^7.8.3" - "@babel/helper-regex" "^7.8.3" - -"@babel/plugin-transform-sticky-regex@^7.14.5": +"@babel/plugin-transform-sticky-regex@^7.0.0", "@babel/plugin-transform-sticky-regex@^7.14.5": version "7.14.5" resolved "https://registry.yarnpkg.com/@babel/plugin-transform-sticky-regex/-/plugin-transform-sticky-regex-7.14.5.tgz#5b617542675e8b7761294381f3c28c633f40aeb9" integrity sha512-Z7F7GyvEMzIIbwnziAZmnSNpdijdr4dWt+FJNBnBLz5mwDFkqIXU9wmBcWWad3QeJF5hMTkRe4dAq2sUZiG+8A== dependencies: "@babel/helper-plugin-utils" "^7.14.5" -"@babel/plugin-transform-template-literals@^7.0.0": - version "7.8.3" - resolved "https://registry.yarnpkg.com/@babel/plugin-transform-template-literals/-/plugin-transform-template-literals-7.8.3.tgz#7bfa4732b455ea6a43130adc0ba767ec0e402a80" - integrity sha512-820QBtykIQOLFT8NZOcTRJ1UNuztIELe4p9DCgvj4NK+PwluSJ49we7s9FB1HIGNIYT7wFUJ0ar2QpCDj0escQ== - dependencies: - "@babel/helper-annotate-as-pure" "^7.8.3" - "@babel/helper-plugin-utils" "^7.8.3" - -"@babel/plugin-transform-template-literals@^7.14.5": +"@babel/plugin-transform-template-literals@^7.0.0", "@babel/plugin-transform-template-literals@^7.14.5": version "7.14.5" resolved "https://registry.yarnpkg.com/@babel/plugin-transform-template-literals/-/plugin-transform-template-literals-7.14.5.tgz#a5f2bc233937d8453885dc736bdd8d9ffabf3d93" integrity sha512-22btZeURqiepOfuy/VkFr+zStqlujWaarpMErvay7goJS6BWwdd6BY9zQyDLDa4x2S3VugxFb162IZ4m/S/+Gg== @@ -1544,13 +887,13 @@ "@babel/helper-plugin-utils" "^7.14.5" "@babel/plugin-transform-typescript@^7.5.0": - version "7.9.6" - resolved "https://registry.yarnpkg.com/@babel/plugin-transform-typescript/-/plugin-transform-typescript-7.9.6.tgz#2248971416a506fc78278fc0c0ea3179224af1e9" - integrity sha512-8OvsRdvpt3Iesf2qsAn+YdlwAJD7zJ+vhFZmDCa4b8dTp7MmHtKk5FF2mCsGxjZwuwsy/yIIay/nLmxST1ctVQ== + version "7.14.6" + resolved "https://registry.yarnpkg.com/@babel/plugin-transform-typescript/-/plugin-transform-typescript-7.14.6.tgz#6e9c2d98da2507ebe0a883b100cde3c7279df36c" + integrity sha512-XlTdBq7Awr4FYIzqhmYY80WN0V0azF74DMPyFqVHBvf81ZUgc4X7ZOpx6O8eLDK6iM5cCQzeyJw0ynTaefixRA== dependencies: - "@babel/helper-create-class-features-plugin" "^7.9.6" - "@babel/helper-plugin-utils" "^7.8.3" - "@babel/plugin-syntax-typescript" "^7.8.3" + "@babel/helper-create-class-features-plugin" "^7.14.6" + "@babel/helper-plugin-utils" "^7.14.5" + "@babel/plugin-syntax-typescript" "^7.14.5" "@babel/plugin-transform-unicode-escapes@^7.14.5": version "7.14.5" @@ -1559,15 +902,7 @@ dependencies: "@babel/helper-plugin-utils" "^7.14.5" -"@babel/plugin-transform-unicode-regex@^7.0.0": - version "7.8.3" - resolved "https://registry.yarnpkg.com/@babel/plugin-transform-unicode-regex/-/plugin-transform-unicode-regex-7.8.3.tgz#0cef36e3ba73e5c57273effb182f46b91a1ecaad" - integrity sha512-+ufgJjYdmWfSQ+6NS9VGUR2ns8cjJjYbrbi11mZBTaWm+Fui/ncTLFF28Ei1okavY+xkojGr1eJxNsWYeA5aZw== - dependencies: - "@babel/helper-create-regexp-features-plugin" "^7.8.3" - "@babel/helper-plugin-utils" "^7.8.3" - -"@babel/plugin-transform-unicode-regex@^7.14.5": +"@babel/plugin-transform-unicode-regex@^7.0.0", "@babel/plugin-transform-unicode-regex@^7.14.5": version "7.14.5" resolved "https://registry.yarnpkg.com/@babel/plugin-transform-unicode-regex/-/plugin-transform-unicode-regex-7.14.5.tgz#4cd09b6c8425dd81255c7ceb3fb1836e7414382e" integrity sha512-UygduJpC5kHeCiRw/xDVzC+wj8VaYSoKl5JNVmbP7MadpNinAm3SvZCxZ42H37KZBKztz46YC73i9yV34d0Tzw== @@ -1576,9 +911,9 @@ "@babel/helper-plugin-utils" "^7.14.5" "@babel/preset-env@^7.4.5": - version "7.14.7" - resolved "https://registry.yarnpkg.com/@babel/preset-env/-/preset-env-7.14.7.tgz#5c70b22d4c2d893b03d8c886a5c17422502b932a" - integrity sha512-itOGqCKLsSUl0Y+1nSfhbuuOlTs0MJk2Iv7iSH+XT/mR8U1zRLO7NjWlYXB47yhK4J/7j+HYty/EhFZDYKa/VA== + version "7.14.8" + resolved "https://registry.yarnpkg.com/@babel/preset-env/-/preset-env-7.14.8.tgz#254942f5ca80ccabcfbb2a9f524c74bca574005b" + integrity sha512-a9aOppDU93oArQ51H+B8M1vH+tayZbuBqzjOhntGetZVa+4tTu5jp+XTwqHGG2lxslqomPYVSjIxQkFwXzgnxg== dependencies: "@babel/compat-data" "^7.14.7" "@babel/helper-compilation-targets" "^7.14.5" @@ -1647,7 +982,7 @@ "@babel/plugin-transform-unicode-escapes" "^7.14.5" "@babel/plugin-transform-unicode-regex" "^7.14.5" "@babel/preset-modules" "^0.1.4" - "@babel/types" "^7.14.5" + "@babel/types" "^7.14.8" babel-plugin-polyfill-corejs2 "^0.2.2" babel-plugin-polyfill-corejs3 "^0.2.2" babel-plugin-polyfill-regenerator "^0.2.2" @@ -1666,94 +1001,32 @@ esutils "^2.0.2" "@babel/register@^7.0.0": - version "7.9.0" - resolved "https://registry.yarnpkg.com/@babel/register/-/register-7.9.0.tgz#02464ede57548bddbb5e9f705d263b7c3f43d48b" - integrity sha512-Tv8Zyi2J2VRR8g7pC5gTeIN8Ihultbmk0ocyNz8H2nEZbmhp1N6q0A1UGsQbDvGP/sNinQKUHf3SqXwqjtFv4Q== + version "7.14.5" + resolved "https://registry.yarnpkg.com/@babel/register/-/register-7.14.5.tgz#d0eac615065d9c2f1995842f85d6e56c345f3233" + integrity sha512-TjJpGz/aDjFGWsItRBQMOFTrmTI9tr79CHOK+KIvLeCkbxuOAk2M5QHjvruIMGoo9OuccMh5euplPzc5FjAKGg== dependencies: + clone-deep "^4.0.1" find-cache-dir "^2.0.0" - lodash "^4.17.13" make-dir "^2.1.0" pirates "^4.0.0" source-map-support "^0.5.16" -"@babel/runtime-corejs3@^7.10.2": - version "7.10.5" - resolved "https://registry.yarnpkg.com/@babel/runtime-corejs3/-/runtime-corejs3-7.10.5.tgz#a57fe6c13045ca33768a2aa527ead795146febe1" - integrity sha512-RMafpmrNB5E/bwdSphLr8a8++9TosnyJp98RZzI6VOx2R2CCMpsXXXRvmI700O9oEKpXdZat6oEK68/F0zjd4A== - dependencies: - core-js-pure "^3.0.0" - regenerator-runtime "^0.13.4" - -"@babel/runtime-corejs3@^7.12.1": - version "7.14.6" - resolved "https://registry.yarnpkg.com/@babel/runtime-corejs3/-/runtime-corejs3-7.14.6.tgz#066b966eda40481740180cb3caab861a3f208cd3" - integrity sha512-Xl8SPYtdjcMoCsIM4teyVRg7jIcgl8F2kRtoCcXuHzXswt9UxZCS6BzRo8fcnCuP6u2XtPgvyonmEPF57Kxo9Q== - dependencies: - core-js-pure "^3.14.0" - regenerator-runtime "^0.13.4" - -"@babel/runtime-corejs3@^7.8.3": - version "7.9.6" - resolved "https://registry.yarnpkg.com/@babel/runtime-corejs3/-/runtime-corejs3-7.9.6.tgz#67aded13fffbbc2cb93247388cf84d77a4be9a71" - integrity sha512-6toWAfaALQjt3KMZQc6fABqZwUDDuWzz+cAfPhqyEnzxvdWOAkjwPNxgF8xlmo7OWLsSjaKjsskpKHRLaMArOA== - dependencies: - core-js-pure "^3.0.0" - regenerator-runtime "^0.13.4" - -"@babel/runtime@^7.0.0", "@babel/runtime@^7.3.1", "@babel/runtime@^7.5.0", "@babel/runtime@^7.5.5", "@babel/runtime@^7.6.3", "@babel/runtime@^7.7.2", "@babel/runtime@^7.8.4", "@babel/runtime@^7.9.2": - version "7.9.6" - resolved "https://registry.yarnpkg.com/@babel/runtime/-/runtime-7.9.6.tgz#a9102eb5cadedf3f31d08a9ecf294af7827ea29f" - integrity sha512-64AF1xY3OAkFHqOb9s4jpgk1Mm5vDZ4L3acHvAml+53nO1XbXLuDodsVpO4OIUsmemlUHMxNdYMNJmsvOwLrvQ== - dependencies: - regenerator-runtime "^0.13.4" - -"@babel/runtime@^7.1.2", "@babel/runtime@^7.12.13": - version "7.14.6" - resolved "https://registry.yarnpkg.com/@babel/runtime/-/runtime-7.14.6.tgz#535203bc0892efc7dec60bdc27b2ecf6e409062d" - integrity sha512-/PCB2uJ7oM44tz8YhC4Z/6PeOKXp4K588f+5M3clr1M4zbqztlo0XEfJ2LEzj/FgwfgGcIdl8n7YYjTCI0BYwg== - dependencies: - regenerator-runtime "^0.13.4" - -"@babel/runtime@^7.10.2": - version "7.10.5" - resolved "https://registry.yarnpkg.com/@babel/runtime/-/runtime-7.10.5.tgz#303d8bd440ecd5a491eae6117fd3367698674c5c" - integrity sha512-otddXKhdNn7d0ptoFRHtMLa8LqDxLYwTjB4nYgM1yy5N6gU/MUf8zqyyLltCH3yAVitBzmwK4us+DD0l/MauAg== - dependencies: - regenerator-runtime "^0.13.4" - -"@babel/runtime@^7.12.1": - version "7.14.0" - resolved "https://registry.yarnpkg.com/@babel/runtime/-/runtime-7.14.0.tgz#46794bc20b612c5f75e62dd071e24dfd95f1cbe6" - integrity sha512-JELkvo/DlpNdJ7dlyw/eY7E0suy5i5GQH+Vlxaq1nsNJ+H7f4Vtv3jMeCEgRhZZQFXTjldYfQgv2qmM6M1v5wA== +"@babel/runtime-corejs3@^7.10.2", "@babel/runtime-corejs3@^7.12.1": + version "7.14.8" + resolved "https://registry.yarnpkg.com/@babel/runtime-corejs3/-/runtime-corejs3-7.14.8.tgz#68539e0129f13eb1ed9a9aa273d3542b93c88384" + integrity sha512-4dMD5QRBkumn45oweR0SxoNtt15oz3BUBAQ8cIx7HJqZTtE8zjpM0My8aHJHVnyf4XfRg6DNzaE1080WLBiC1w== dependencies: + core-js-pure "^3.15.0" regenerator-runtime "^0.13.4" -"@babel/runtime@^7.12.5": - version "7.14.5" - resolved "https://registry.yarnpkg.com/@babel/runtime/-/runtime-7.14.5.tgz#665450911c6031af38f81db530f387ec04cd9a98" - integrity sha512-121rumjddw9c3NCQ55KGkyE1h/nzWhU/owjhw0l4mQrkzz4x9SGS1X8gFLraHwX7td3Yo4QTL+qj0NcIzN87BA== +"@babel/runtime@^7.0.0", "@babel/runtime@^7.1.2", "@babel/runtime@^7.10.2", "@babel/runtime@^7.12.1", "@babel/runtime@^7.12.13", "@babel/runtime@^7.12.5", "@babel/runtime@^7.3.1", "@babel/runtime@^7.5.0", "@babel/runtime@^7.5.5", "@babel/runtime@^7.6.3", "@babel/runtime@^7.7.2", "@babel/runtime@^7.8.4", "@babel/runtime@^7.9.2": + version "7.14.8" + resolved "https://registry.yarnpkg.com/@babel/runtime/-/runtime-7.14.8.tgz#7119a56f421018852694290b9f9148097391b446" + integrity sha512-twj3L8Og5SaCRCErB4x4ajbvBIVV77CGeFglHpeg5WC5FF8TZzBWXtTJ4MqaD9QszLYTtr+IsaAL2rEUevb+eg== dependencies: regenerator-runtime "^0.13.4" -"@babel/template@^7.0.0", "@babel/template@^7.8.3", "@babel/template@^7.8.6": - version "7.8.6" - resolved "https://registry.yarnpkg.com/@babel/template/-/template-7.8.6.tgz#86b22af15f828dfb086474f964dcc3e39c43ce2b" - integrity sha512-zbMsPMy/v0PWFZEhQJ66bqjhH+z0JgMoBWuikXybgG3Gkd/3t5oQ1Rw2WQhnSrsOmsKXnZOx15tkC4qON/+JPg== - dependencies: - "@babel/code-frame" "^7.8.3" - "@babel/parser" "^7.8.6" - "@babel/types" "^7.8.6" - -"@babel/template@^7.10.4", "@babel/template@^7.3.3": - version "7.10.4" - resolved "https://registry.yarnpkg.com/@babel/template/-/template-7.10.4.tgz#3251996c4200ebc71d1a8fc405fba940f36ba278" - integrity sha512-ZCjD27cGJFUB6nmCB1Enki3r+L5kJveX9pq1SvAUKoICy6CZ9yD8xO086YXdYhvNjBdnekm4ZnaP5yC8Cs/1tA== - dependencies: - "@babel/code-frame" "^7.10.4" - "@babel/parser" "^7.10.4" - "@babel/types" "^7.10.4" - -"@babel/template@^7.14.5", "@babel/template@^7.4.0": +"@babel/template@^7.0.0", "@babel/template@^7.14.5", "@babel/template@^7.3.3", "@babel/template@^7.4.0": version "7.14.5" resolved "https://registry.yarnpkg.com/@babel/template/-/template-7.14.5.tgz#a9bc9d8b33354ff6e55a9c60d1109200a68974f4" integrity sha512-6Z3Po85sfxRGachLULUhOmvAaOo7xCvqGQtxINai2mEGPFm6pQ4z5QInFnUrRpfoSV60BnjyF5F3c+15fxFV1g== @@ -1762,90 +1035,27 @@ "@babel/parser" "^7.14.5" "@babel/types" "^7.14.5" -"@babel/traverse@^7.0.0", "@babel/traverse@^7.1.0", "@babel/traverse@^7.8.3", "@babel/traverse@^7.9.6": - version "7.9.6" - resolved "https://registry.yarnpkg.com/@babel/traverse/-/traverse-7.9.6.tgz#5540d7577697bf619cc57b92aa0f1c231a94f442" - integrity sha512-b3rAHSjbxy6VEAvlxM8OV/0X4XrG72zoxme6q1MOoe2vd0bEc+TwayhuC1+Dfgqh1QEG+pj7atQqvUprHIccsg== - dependencies: - "@babel/code-frame" "^7.8.3" - "@babel/generator" "^7.9.6" - "@babel/helper-function-name" "^7.9.5" - "@babel/helper-split-export-declaration" "^7.8.3" - "@babel/parser" "^7.9.6" - "@babel/types" "^7.9.6" - debug "^4.1.0" - globals "^11.1.0" - lodash "^4.17.13" - -"@babel/traverse@^7.10.4": - version "7.10.4" - resolved "https://registry.yarnpkg.com/@babel/traverse/-/traverse-7.10.4.tgz#e642e5395a3b09cc95c8e74a27432b484b697818" - integrity sha512-aSy7p5THgSYm4YyxNGz6jZpXf+Ok40QF3aA2LyIONkDHpAcJzDUqlCKXv6peqYUs2gmic849C/t2HKw2a2K20Q== - dependencies: - "@babel/code-frame" "^7.10.4" - "@babel/generator" "^7.10.4" - "@babel/helper-function-name" "^7.10.4" - "@babel/helper-split-export-declaration" "^7.10.4" - "@babel/parser" "^7.10.4" - "@babel/types" "^7.10.4" - debug "^4.1.0" - globals "^11.1.0" - lodash "^4.17.13" - -"@babel/traverse@^7.13.0", "@babel/traverse@^7.14.5": - version "7.14.5" - resolved "https://registry.yarnpkg.com/@babel/traverse/-/traverse-7.14.5.tgz#c111b0f58afab4fea3d3385a406f692748c59870" - integrity sha512-G3BiS15vevepdmFqmUc9X+64y0viZYygubAMO8SvBmKARuF6CPSZtH4Ng9vi/lrWlZFGe3FWdXNy835akH8Glg== - dependencies: - "@babel/code-frame" "^7.14.5" - "@babel/generator" "^7.14.5" - "@babel/helper-function-name" "^7.14.5" - "@babel/helper-hoist-variables" "^7.14.5" - "@babel/helper-split-export-declaration" "^7.14.5" - "@babel/parser" "^7.14.5" - "@babel/types" "^7.14.5" - debug "^4.1.0" - globals "^11.1.0" - -"@babel/traverse@^7.4.3": - version "7.14.7" - resolved "https://registry.yarnpkg.com/@babel/traverse/-/traverse-7.14.7.tgz#64007c9774cfdc3abd23b0780bc18a3ce3631753" - integrity sha512-9vDr5NzHu27wgwejuKL7kIOm4bwEtaPQ4Z6cpCmjSuaRqpH/7xc4qcGEscwMqlkwgcXl6MvqoAjZkQ24uSdIZQ== +"@babel/traverse@^7.0.0", "@babel/traverse@^7.1.0", "@babel/traverse@^7.13.0", "@babel/traverse@^7.14.5", "@babel/traverse@^7.14.8", "@babel/traverse@^7.4.3": + version "7.14.8" + resolved "https://registry.yarnpkg.com/@babel/traverse/-/traverse-7.14.8.tgz#c0253f02677c5de1a8ff9df6b0aacbec7da1a8ce" + integrity sha512-kexHhzCljJcFNn1KYAQ6A5wxMRzq9ebYpEDV4+WdNyr3i7O44tanbDOR/xjiG2F3sllan+LgwK+7OMk0EmydHg== dependencies: "@babel/code-frame" "^7.14.5" - "@babel/generator" "^7.14.5" + "@babel/generator" "^7.14.8" "@babel/helper-function-name" "^7.14.5" "@babel/helper-hoist-variables" "^7.14.5" "@babel/helper-split-export-declaration" "^7.14.5" - "@babel/parser" "^7.14.7" - "@babel/types" "^7.14.5" + "@babel/parser" "^7.14.8" + "@babel/types" "^7.14.8" debug "^4.1.0" globals "^11.1.0" -"@babel/types@^7.0.0", "@babel/types@^7.3.0", "@babel/types@^7.4.4", "@babel/types@^7.8.3", "@babel/types@^7.8.6", "@babel/types@^7.9.0", "@babel/types@^7.9.5", "@babel/types@^7.9.6": - version "7.9.6" - resolved "https://registry.yarnpkg.com/@babel/types/-/types-7.9.6.tgz#2c5502b427251e9de1bd2dff95add646d95cc9f7" - integrity sha512-qxXzvBO//jO9ZnoasKF1uJzHd2+M6Q2ZPIVfnFps8JJvXy0ZBbwbNOmE6SGIY5XOY6d1Bo5lb9d9RJ8nv3WSeA== - dependencies: - "@babel/helper-validator-identifier" "^7.9.5" - lodash "^4.17.13" - to-fast-properties "^2.0.0" - -"@babel/types@^7.10.4", "@babel/types@^7.3.3": - version "7.10.4" - resolved "https://registry.yarnpkg.com/@babel/types/-/types-7.10.4.tgz#369517188352e18219981efd156bfdb199fff1ee" - integrity sha512-UTCFOxC3FsFHb7lkRMVvgLzaRVamXuAs2Tz4wajva4WxtVY82eZeaUBtC2Zt95FU9TiznuC0Zk35tsim8jeVpg== - dependencies: - "@babel/helper-validator-identifier" "^7.10.4" - lodash "^4.17.13" - to-fast-properties "^2.0.0" - -"@babel/types@^7.14.5", "@babel/types@^7.4.0": - version "7.14.5" - resolved "https://registry.yarnpkg.com/@babel/types/-/types-7.14.5.tgz#3bb997ba829a2104cedb20689c4a5b8121d383ff" - integrity sha512-M/NzBpEL95I5Hh4dwhin5JlE7EzO5PHMAuzjxss3tiOBD46KfQvVedN/3jEPZvdRvtsK2222XfdHogNIttFgcg== +"@babel/types@^7.0.0", "@babel/types@^7.14.5", "@babel/types@^7.14.8", "@babel/types@^7.3.0", "@babel/types@^7.3.3", "@babel/types@^7.4.0", "@babel/types@^7.4.4": + version "7.14.8" + resolved "https://registry.yarnpkg.com/@babel/types/-/types-7.14.8.tgz#38109de8fcadc06415fbd9b74df0065d4d41c728" + integrity sha512-iob4soQa7dZw8nodR/KlOQkPh9S4I8RwCxwRIFuiMRYjOzH/KJzdUfDgz6cGi5dDaclXF4P2PAhCdrBJNIg68Q== dependencies: - "@babel/helper-validator-identifier" "^7.14.5" + "@babel/helper-validator-identifier" "^7.14.8" to-fast-properties "^2.0.0" "@bcoe/v8-coverage@^0.2.3": @@ -1886,9 +1096,9 @@ "@emotion/weak-memoize" "0.2.5" "@emotion/core@^10.0.20": - version "10.0.28" - resolved "https://registry.yarnpkg.com/@emotion/core/-/core-10.0.28.tgz#bb65af7262a234593a9e952c041d0f1c9b9bef3d" - integrity sha512-pH8UueKYO5jgg0Iq+AmCLxBsvuGtvlmiDCOuv8fGNYn3cowFpLN98L8zO56U0H1PjDIyAlXymgL3Wu7u7v6hbA== + version "10.1.1" + resolved "https://registry.yarnpkg.com/@emotion/core/-/core-10.1.1.tgz#c956c1365f2f2481960064bcb8c4732e5fb612c3" + integrity sha512-ZMLG6qpXR8x031NXD8HJqugy/AZSkAuMxxqB46pmAR7ze47MhNJ56cdoX243QPZdGctrdfo+s08yZTiwaUcRKA== dependencies: "@babel/runtime" "^7.5.5" "@emotion/cache" "^10.0.27" @@ -2043,9 +1253,9 @@ resolve-from "^5.0.0" "@istanbuljs/schema@^0.1.2": - version "0.1.2" - resolved "https://registry.yarnpkg.com/@istanbuljs/schema/-/schema-0.1.2.tgz#26520bf09abe4a5644cd5414e37125a8954241dd" - integrity sha512-tsAQNx32a8CoFhjhijUIhI4kccIAgmGhy8LZMZgGfmXcpMbPRUqn5LWmgRttILi6yeGmBJd2xsPkFMs0PzgPCw== + version "0.1.3" + resolved "https://registry.yarnpkg.com/@istanbuljs/schema/-/schema-0.1.3.tgz#e45e384e4b8ec16bce2fd903af78450f6bf7ec98" + integrity sha512-ZXRY4jNvVgSVQ8DL3LTcakaAtXwTVUxE81hslsyD2AtoXW/wVob10HkOJ1X/pAlcI7D+2YoZKg5do8G/w6RYgA== "@jest/console@^24.9.0": version "24.9.0" @@ -2282,6 +1492,17 @@ "@types/yargs" "^15.0.0" chalk "^3.0.0" +"@jest/types@^26.6.2": + version "26.6.2" + resolved "https://registry.yarnpkg.com/@jest/types/-/types-26.6.2.tgz#bef5a532030e1d88a2f5a6d933f84e97226ed48e" + integrity sha512-fC6QCp7Sc5sX6g8Tvbmj4XUTbyrik0akgRy03yjXbQaBWWNWGE7SGtJk98m0N8nzegD/7SggrUlivxo5ax4KWQ== + dependencies: + "@types/istanbul-lib-coverage" "^2.0.0" + "@types/istanbul-reports" "^3.0.0" + "@types/node" "*" + "@types/yargs" "^15.0.0" + chalk "^4.0.0" + "@jimp/bmp@^0.16.1": version "0.16.1" resolved "https://registry.yarnpkg.com/@jimp/bmp/-/bmp-0.16.1.tgz#6e2da655b2ba22e721df0795423f34e92ef13768" @@ -2580,11 +1801,32 @@ call-me-maybe "^1.0.1" glob-to-regexp "^0.3.0" +"@nodelib/fs.scandir@2.1.5": + version "2.1.5" + resolved "https://registry.yarnpkg.com/@nodelib/fs.scandir/-/fs.scandir-2.1.5.tgz#7619c2eb21b25483f6d167548b4cfd5a7488c3d5" + integrity sha512-vq24Bq3ym5HEQm2NKCr3yXDwjc7vTsEThRDnkp2DK9p1uqLR+DHurm/NOTo0KG7HYHU7eppKZj3MyqYuMBf62g== + dependencies: + "@nodelib/fs.stat" "2.0.5" + run-parallel "^1.1.9" + +"@nodelib/fs.stat@2.0.5", "@nodelib/fs.stat@^2.0.2": + version "2.0.5" + resolved "https://registry.yarnpkg.com/@nodelib/fs.stat/-/fs.stat-2.0.5.tgz#5bd262af94e9d25bd1e71b05deed44876a222e8b" + integrity sha512-RkhPPp2zrqDAQA/2jNhnztcPAlv64XdhIp7a7454A5ovI7Bukxgt7MX7udwAu3zg1DcpPU0rz3VV1SeaqvY4+A== + "@nodelib/fs.stat@^1.1.2": version "1.1.3" resolved "https://registry.yarnpkg.com/@nodelib/fs.stat/-/fs.stat-1.1.3.tgz#2b5a3ab3f918cca48a8c754c08168e3f03eba61b" integrity sha512-shAmDyaQC4H92APFoIaVDHCx5bStIocgvbwQyxPRrbUY20V1EYTbSDchWbuwlMG3V17cprZhA6+78JfB+3DTPw== +"@nodelib/fs.walk@^1.2.3": + version "1.2.8" + resolved "https://registry.yarnpkg.com/@nodelib/fs.walk/-/fs.walk-1.2.8.tgz#e95737e8bb6746ddedf69c556953494f196fe69a" + integrity sha512-oGB+UxlgWcgQkgwo8GcEGwemoTFt3FIO9ababBmaGwXIoBKZ+GTy0pP185beGg7Llih/NSHSV2XAs1lnznocSg== + dependencies: + "@nodelib/fs.scandir" "2.1.5" + fastq "^1.6.0" + "@nozbe/sqlite@3.31.1": version "3.31.1" resolved "https://registry.yarnpkg.com/@nozbe/sqlite/-/sqlite-3.31.1.tgz#ffd394ad7c188c6b73f89fd6e1ccb849a1b96dba" @@ -2603,9 +1845,9 @@ sql-escape-string "^1.1.0" "@reach/router@^1.2.1": - version "1.3.3" - resolved "https://registry.yarnpkg.com/@reach/router/-/router-1.3.3.tgz#58162860dce6c9449d49be86b0561b5ef46d80db" - integrity sha512-gOIAiFhWdiVGSVjukKeNKkCRBLmnORoTPyBihI/jLunICPgxdP30DroAvPQuf1eVfQbfGJQDJkwhJXsNPMnVWw== + version "1.3.4" + resolved "https://registry.yarnpkg.com/@reach/router/-/router-1.3.4.tgz#d2574b19370a70c80480ed91f3da840136d10f8c" + integrity sha512-+mtn9wjlB9NN2CNnnC/BRYtwdKBfSyyasPYraNAyvaV1occr/5NnB4CVzjEZipNHwYebQwcndGUmpFzxAUoqSA== dependencies: create-react-context "0.3.0" invariant "^2.2.3" @@ -2720,9 +1962,9 @@ integrity sha512-ael2f1onoPF3vF7YqHGWy7NnafzGu+yp88BbFbP0ydoCP2xGSUzmZVw0zakPTC040Id+JQ9WeFczujMkDy6jYQ== "@react-native-community/cli@^4.10.0": - version "4.13.1" - resolved "https://registry.yarnpkg.com/@react-native-community/cli/-/cli-4.13.1.tgz#60148723e77cafe3ae260317d6bffe91853a2d20" - integrity sha512-+/TeRVToADpQPSprsPkwi9KY8x64YcuJpjzMBVISwWP+aWzsIDuWJmyMXTADlCg2EBMJqJR7bn1W/IkfzVRCWA== + version "4.14.0" + resolved "https://registry.yarnpkg.com/@react-native-community/cli/-/cli-4.14.0.tgz#bb106a98341bfa2db36060091ff90bfe82ea4f55" + integrity sha512-EYJKBuxFxAu/iwNUfwDq41FjORpvSh1wvQ3qsHjzcR5uaGlWEOJrd3uNJDuKBAS0TVvbEesLF9NEXipjyRVr4Q== dependencies: "@hapi/joi" "^15.0.3" "@react-native-community/cli-debugger-ui" "^4.13.1" @@ -2744,11 +1986,11 @@ inquirer "^3.0.6" leven "^3.1.0" lodash "^4.17.15" - metro "^0.58.0" - metro-config "^0.58.0" - metro-core "^0.58.0" - metro-react-native-babel-transformer "^0.58.0" - metro-resolver "^0.58.0" + metro "^0.59.0" + metro-config "^0.59.0" + metro-core "^0.59.0" + metro-react-native-babel-transformer "^0.59.0" + metro-resolver "^0.59.0" minimist "^1.2.0" mkdirp "^0.5.1" node-stream-zip "^1.9.1" @@ -2805,35 +2047,29 @@ invariant "^2.2.4" "@react-native-firebase/analytics@^7.3.1": - version "7.3.1" - resolved "https://registry.yarnpkg.com/@react-native-firebase/analytics/-/analytics-7.3.1.tgz#f24509c1f996217e89829147d28d319ed5fbbd0b" - integrity sha512-8U70bVSnsH5xlbNDL+LkF0VjgZ3nejSCsrIrxI29aulMPAdAD6ZndH9gVegFK75vLILy3giWRlGR89o08fnpxA== - -"@react-native-firebase/app-types@6.7.2": - version "6.7.2" - resolved "https://registry.yarnpkg.com/@react-native-firebase/app-types/-/app-types-6.7.2.tgz#d2e1530af5702e00578914b41468898c10d3289c" - integrity sha512-pIwc6e0ZINw6PJqNVsAxzOVJUDg6au2TdulY+ZOYQ11SPDs5I2n9likoGrElPmJjajT4s9h87uz/6PWP2k9PxQ== + version "7.6.10" + resolved "https://registry.yarnpkg.com/@react-native-firebase/analytics/-/analytics-7.6.10.tgz#1c8cd7b31cebed53aeacd177bb01fead5f733738" + integrity sha512-Qok1s8oY1Gy3VHcCUSKK2oFc8ExghyKhf/KIjI/3gDVW6WDCB9eTGw/QmI5+br6nhZTKhWAgGfnToEQweJ24ig== "@react-native-firebase/app@^8.2.0": - version "8.2.0" - resolved "https://registry.yarnpkg.com/@react-native-firebase/app/-/app-8.2.0.tgz#28db1958c8bd8028503b4d0a68a31a7c4caf61cc" - integrity sha512-V3s87BlDIyuhtK/1w+vwKdY5AlOCCBXovlorZU1wiyDH8Q942Cjxcx9tBc59+TLWqMYrYyFGAnAJxnIw3QzmmQ== + version "8.4.7" + resolved "https://registry.yarnpkg.com/@react-native-firebase/app/-/app-8.4.7.tgz#7393ba7af36bd815bd5af7c64a20b0dd8a7e3341" + integrity sha512-jN788Q17aMOHc49wKc74RC3iZNhFoS+yTZhMBHFVyytf64uK3ofYAk3hjvukkylUTKF0Ni/L+04M0IDv8kStKg== dependencies: - "@react-native-firebase/app-types" "6.7.2" opencollective-postinstall "^2.0.1" superstruct "^0.6.2" "@react-native-firebase/crashlytics@^8.1.2": - version "8.1.2" - resolved "https://registry.yarnpkg.com/@react-native-firebase/crashlytics/-/crashlytics-8.1.2.tgz#2a9c0ec8809457ba1f48acffc8d86f043aac0ff6" - integrity sha512-xRGMeuNmJcaPmgr3PqIXS1r5Wx2x21S9ES007BTBpyCzd92vmlKVawpx5vYjFoVQeKRjEPT37MJ7QTU4x81JoA== + version "8.5.2" + resolved "https://registry.yarnpkg.com/@react-native-firebase/crashlytics/-/crashlytics-8.5.2.tgz#6d49a24f0a4f1b3e26d589ed525cde2ffb53932b" + integrity sha512-7wZiaHapsXEhTljGE86/lGVWbDUsZrI4PPNLiTx4+ovt8aKSwPrb9h35VGo0dEtlpU0x/ahB1IJ+TxFLqFDeXw== dependencies: stacktrace-js "^2.0.0" "@react-native-picker/picker@^1.8.3": - version "1.16.1" - resolved "https://registry.yarnpkg.com/@react-native-picker/picker/-/picker-1.16.1.tgz#cc5d05b0d651445afa519c67824d8af3e43fa10c" - integrity sha512-sk07ARwL0cMXwkXsqcxyprL/KiEVD0xRFXFqznTnZs1YXqwxEqz6GiGtq2vQlK64CzXDpHX8gw1QQz47abBY1Q== + version "1.16.3" + resolved "https://registry.yarnpkg.com/@react-native-picker/picker/-/picker-1.16.3.tgz#22750f8d44465432845fa59ce20e69761029b6ef" + integrity sha512-Qt40DBg7IEhBN5x2DYPV3B26j5fNhVZcpCestr1IuirneMNtOaIyA9+nPYniL/OBzd9YbpUKbS7XSy/MM9bP3w== "@react-navigation/core@^5.15.3": version "5.15.3" @@ -2943,9 +2179,9 @@ integrity sha512-xY8xc98KGshyOJM2GCLnYE9TTevViO7bVeY1HVRB2anDutgHRFgt6qFW1eiaB8s+6J+5I6VTE3k0jzQeaRsAeg== "@sinonjs/commons@^1.7.0": - version "1.8.0" - resolved "https://registry.yarnpkg.com/@sinonjs/commons/-/commons-1.8.0.tgz#c8d68821a854c555bba172f3b06959a0039b236d" - integrity sha512-wEj54PfsZ5jGSwMX68G8ZXFawcSglQSXqCftWX3ec8MDUzQdHgcKvw97awHbY0efQEL5iKUOAmmVtoYgmrSG4Q== + version "1.8.3" + resolved "https://registry.yarnpkg.com/@sinonjs/commons/-/commons-1.8.3.tgz#3802ddd21a50a949b6721ddd72da36e67e7f1b2d" + integrity sha512-xkNcLAn/wZaX14RPlwizcKicDk9G3F8m2nU3L7Ukm5zBgTwiT0wsoFAHx9Jq56fJA1z/7uKGtCRu16sOUCLIHQ== dependencies: type-detect "4.0.8" @@ -3293,15 +2529,10 @@ resolved "https://registry.yarnpkg.com/@tootallnate/once/-/once-1.1.2.tgz#ccb91445360179a04e7fe6aff78c00ffc1eeaf82" integrity sha512-RbzJvlNzmRq5c3O09UipeuXno4tA1FE6ikOjxZK0tuxVv3412l64l5t1W5pj4+rJq9vpkm/kwiR07aZXnsKPxw== -"@types/anymatch@*": - version "1.3.1" - resolved "https://registry.yarnpkg.com/@types/anymatch/-/anymatch-1.3.1.tgz#336badc1beecb9dacc38bea2cf32adf627a8421a" - integrity sha512-/+CRPXpBDpo2RK9C68N3b2cOvO0Cf5B9aPijHsoDQTHivnGSObdOF2BRQOYjojWTDy6nQvMjmqRXIxH55VjxxA== - "@types/babel__core@^7.1.7": - version "7.1.9" - resolved "https://registry.yarnpkg.com/@types/babel__core/-/babel__core-7.1.9.tgz#77e59d438522a6fb898fa43dc3455c6e72f3963d" - integrity sha512-sY2RsIJ5rpER1u3/aQ8OFSI7qGIy8o1NEEbgb2UaJcvOtXOMpd39ko723NBpjQFg9SIX7TXtjejZVGeIMLhoOw== + version "7.1.15" + resolved "https://registry.yarnpkg.com/@types/babel__core/-/babel__core-7.1.15.tgz#2ccfb1ad55a02c83f8e0ad327cbc332f55eb1024" + integrity sha512-bxlMKPDbY8x5h6HBwVzEOk2C8fb6SLfYQ5Jw3uBYuYF1lfWk/kbLd81la82vrIkBb0l+JdmrZaDikPrNxpS/Ew== dependencies: "@babel/parser" "^7.1.0" "@babel/types" "^7.0.0" @@ -3310,62 +2541,46 @@ "@types/babel__traverse" "*" "@types/babel__generator@*": - version "7.6.1" - resolved "https://registry.yarnpkg.com/@types/babel__generator/-/babel__generator-7.6.1.tgz#4901767b397e8711aeb99df8d396d7ba7b7f0e04" - integrity sha512-bBKm+2VPJcMRVwNhxKu8W+5/zT7pwNEqeokFOmbvVSqGzFneNxYcEBro9Ac7/N9tlsaPYnZLK8J1LWKkMsLAew== + version "7.6.3" + resolved "https://registry.yarnpkg.com/@types/babel__generator/-/babel__generator-7.6.3.tgz#f456b4b2ce79137f768aa130d2423d2f0ccfaba5" + integrity sha512-/GWCmzJWqV7diQW54smJZzWbSFf4QYtF71WCKhcx6Ru/tFyQIY2eiiITcCAeuPbNSvT9YCGkVMqqvSk2Z0mXiA== dependencies: "@babel/types" "^7.0.0" "@types/babel__template@*": - version "7.0.2" - resolved "https://registry.yarnpkg.com/@types/babel__template/-/babel__template-7.0.2.tgz#4ff63d6b52eddac1de7b975a5223ed32ecea9307" - integrity sha512-/K6zCpeW7Imzgab2bLkLEbz0+1JlFSrUMdw7KoIIu+IUdu51GWaBZpd3y1VXGVXzynvGa4DaIaxNZHiON3GXUg== + version "7.4.1" + resolved "https://registry.yarnpkg.com/@types/babel__template/-/babel__template-7.4.1.tgz#3d1a48fd9d6c0edfd56f2ff578daed48f36c8969" + integrity sha512-azBFKemX6kMg5Io+/rdGT0dkGreboUVR0Cdm3fz9QJWpaQGJRQXl7C+6hOTCZcMll7KFyEQpgbYI2lHdsS4U7g== dependencies: "@babel/parser" "^7.1.0" "@babel/types" "^7.0.0" "@types/babel__traverse@*", "@types/babel__traverse@^7.0.6": - version "7.0.11" - resolved "https://registry.yarnpkg.com/@types/babel__traverse/-/babel__traverse-7.0.11.tgz#1ae3010e8bf8851d324878b42acec71986486d18" - integrity sha512-ddHK5icION5U6q11+tV2f9Mo6CZVuT8GJKld2q9LqHSZbvLbH34Kcu2yFGckZut453+eQU6btIA3RihmnRgI+Q== + version "7.14.2" + resolved "https://registry.yarnpkg.com/@types/babel__traverse/-/babel__traverse-7.14.2.tgz#ffcd470bbb3f8bf30481678fb5502278ca833a43" + integrity sha512-K2waXdXBi2302XUdcHcR1jCeU0LL4TD9HRs/gk0N2Xvrht+G/BfJa4QObBQZfhMdxiCpV3COl5Nfq4uKTeTnJA== dependencies: "@babel/types" "^7.3.0" -"@types/color-name@^1.1.1": - version "1.1.1" - resolved "https://registry.yarnpkg.com/@types/color-name/-/color-name-1.1.1.tgz#1c1261bbeaa10a8055bbc5d8ab84b7b2afc846a0" - integrity sha512-rr+OQyAjxze7GgWrSaJwydHStIhHq2lvY3BOC2Mj7KnzI7XK0Uw1TOOdI9lDoajEbSWLiYgoo4f1R51erQfhPQ== - -"@types/events@*": - version "3.0.0" - resolved "https://registry.yarnpkg.com/@types/events/-/events-3.0.0.tgz#2862f3f58a9a7f7c3e78d79f130dd4d71c25c2a7" - integrity sha512-EaObqwIvayI5a8dCzhFrjKzVwKLxjoG9T6Ppd5CEo07LRKfQ8Yokw54r5+Wq7FaBQ+yXRvQAYPrHwya1/UFt9g== - "@types/glob@^7.1.1": - version "7.1.1" - resolved "https://registry.yarnpkg.com/@types/glob/-/glob-7.1.1.tgz#aa59a1c6e3fbc421e07ccd31a944c30eba521575" - integrity sha512-1Bh06cbWJUHMC97acuD6UMG29nMt0Aqz1vF3guLfG+kHHJhy3AyohZFFxYk2f7Q1SQIrNwvncxAE0N/9s70F2w== + version "7.1.4" + resolved "https://registry.yarnpkg.com/@types/glob/-/glob-7.1.4.tgz#ea59e21d2ee5c517914cb4bc8e4153b99e566672" + integrity sha512-w+LsMxKyYQm347Otw+IfBXOv9UWVjpHpCDdbBMt8Kz/xbvCYNjP+0qPh91Km3iKfSRLBB0P7fAMf0KHrPu+MyA== dependencies: - "@types/events" "*" "@types/minimatch" "*" "@types/node" "*" "@types/graceful-fs@^4.1.2": - version "4.1.3" - resolved "https://registry.yarnpkg.com/@types/graceful-fs/-/graceful-fs-4.1.3.tgz#039af35fe26bec35003e8d86d2ee9c586354348f" - integrity sha512-AiHRaEB50LQg0pZmm659vNBb9f4SJ0qrAnteuzhSeAUcJKxoYgEnprg/83kppCnc2zvtCKbdZry1a5pVY3lOTQ== + version "4.1.5" + resolved "https://registry.yarnpkg.com/@types/graceful-fs/-/graceful-fs-4.1.5.tgz#21ffba0d98da4350db64891f92a9e5db3cdb4e15" + integrity sha512-anKkLmZZ+xm4p8JWBf4hElkM4XR+EZeA2M9BAkkTldmcyDY4mbdIJnRghDJH3Ov5ooY7/UAoENtmdMSkaAd7Cw== dependencies: "@types/node" "*" "@types/hammerjs@^2.0.36": - version "2.0.36" - resolved "https://registry.yarnpkg.com/@types/hammerjs/-/hammerjs-2.0.36.tgz#17ce0a235e9ffbcdcdf5095646b374c2bf615a4c" - integrity sha512-7TUK/k2/QGpEAv/BCwSHlYu3NXZhQ9ZwBYpzr9tjlPIL2C5BeGhH3DmVavRx3ZNyELX5TLC91JTz/cen6AAtIQ== - -"@types/history@*": - version "4.7.6" - resolved "https://registry.yarnpkg.com/@types/history/-/history-4.7.6.tgz#ed8fc802c45b8e8f54419c2d054e55c9ea344356" - integrity sha512-GRTZLeLJ8ia00ZH8mxMO8t0aC9M1N9bN461Z2eaRurJo6Fpa+utgCwLzI4jQHcrdzuzp5WPN9jRwpsCQ1VhJ5w== + version "2.0.40" + resolved "https://registry.yarnpkg.com/@types/hammerjs/-/hammerjs-2.0.40.tgz#ded0240b6ea1ad7afc1e60374c49087aaea5dbd8" + integrity sha512-VbjwR1fhsn2h2KXAY4oy1fm7dCxaKy0D+deTb8Ilc3Eo3rc5+5eA4rfYmZaHgNJKxVyI0f6WIXzO2zLkVmQPHA== "@types/hoist-non-react-statics@^3.3.0": version "3.3.1" @@ -3376,21 +2591,16 @@ hoist-non-react-statics "^3.3.0" "@types/html-minifier-terser@^5.0.0": - version "5.1.0" - resolved "https://registry.yarnpkg.com/@types/html-minifier-terser/-/html-minifier-terser-5.1.0.tgz#551a4589b6ee2cc9c1dff08056128aec29b94880" - integrity sha512-iYCgjm1dGPRuo12+BStjd1HiVQqhlRhWDOQigNxn023HcjnhsiFz9pc6CzJj4HwDCSQca9bxTL4PxJDbkdm3PA== + version "5.1.2" + resolved "https://registry.yarnpkg.com/@types/html-minifier-terser/-/html-minifier-terser-5.1.2.tgz#693b316ad323ea97eed6b38ed1a3cc02b1672b57" + integrity sha512-h4lTMgMJctJybDp8CQrxTUiiYmedihHWkjnF/8Pxseu2S6Nlfcy8kwboQ8yejh456rP2yWoEVm1sS/FVsfM48w== "@types/is-function@^1.0.0": version "1.0.0" resolved "https://registry.yarnpkg.com/@types/is-function/-/is-function-1.0.0.tgz#1b0b819b1636c7baf0d6785d030d12edf70c3e83" integrity sha512-iTs9HReBu7evG77Q4EC8hZnqRt57irBDkK9nvmHroiOIVwYMQc4IvYvdRgwKfYepunIY7Oh/dBuuld+Gj9uo6w== -"@types/istanbul-lib-coverage@*", "@types/istanbul-lib-coverage@^2.0.0": - version "2.0.2" - resolved "https://registry.yarnpkg.com/@types/istanbul-lib-coverage/-/istanbul-lib-coverage-2.0.2.tgz#79d7a78bad4219f4c03d6557a1c72d9ca6ba62d5" - integrity sha512-rsZg7eL+Xcxsxk2XlBt9KcG8nOp9iYdKCOikY9x2RFJCyOdNj4MKPQty0e8oZr29vVAzKXr1BmR+kZauti3o1w== - -"@types/istanbul-lib-coverage@^2.0.1": +"@types/istanbul-lib-coverage@*", "@types/istanbul-lib-coverage@^2.0.0", "@types/istanbul-lib-coverage@^2.0.1": version "2.0.3" resolved "https://registry.yarnpkg.com/@types/istanbul-lib-coverage/-/istanbul-lib-coverage-2.0.3.tgz#4ba8ddb720221f432e443bd5f9117fd22cfd4762" integrity sha512-sz7iLqvVUg1gIedBOvlkxPlc8/uVzyS5OwGz1cKjXzkl3FpL3al0crU8YGU1WoHkxn0Wxbw5tyi6hvzJKNzFsw== @@ -3410,20 +2620,27 @@ "@types/istanbul-lib-coverage" "*" "@types/istanbul-lib-report" "*" +"@types/istanbul-reports@^3.0.0": + version "3.0.1" + resolved "https://registry.yarnpkg.com/@types/istanbul-reports/-/istanbul-reports-3.0.1.tgz#9153fe98bba2bd565a63add9436d6f0d7f8468ff" + integrity sha512-c3mAZEuK0lvBp8tmuL74XRKn1+y2dcwOUpH7x4WrF6gk1GIgiluDRgMYQtw2OFcBvAJWlt6ASU3tSqxp0Uu0Aw== + dependencies: + "@types/istanbul-lib-report" "*" + "@types/jest-specific-snapshot@^0.5.3": - version "0.5.4" - resolved "https://registry.yarnpkg.com/@types/jest-specific-snapshot/-/jest-specific-snapshot-0.5.4.tgz#997364c39a59ddeff0ee790a19415e79dd061d1e" - integrity sha512-1qISn4fH8wkOOPFEx+uWRRjw6m/pP/It3OHLm8Ee1KQpO7Z9ZGYDtWPU5AgK05UXsNTAgOK+dPQvJKGdy9E/1g== + version "0.5.5" + resolved "https://registry.yarnpkg.com/@types/jest-specific-snapshot/-/jest-specific-snapshot-0.5.5.tgz#47ce738870be99898ed6d7b08dbf0240c74ae553" + integrity sha512-AaPPw2tE8ewfjD6qGLkEd4DOfM6pPOK7ob/RSOe1Z8Oo70r9Jgo0SlWyfxslPAOvLfQukQtiVPm6DcnjSoZU5A== dependencies: "@types/jest" "*" -"@types/jest@*": - version "25.2.3" - resolved "https://registry.yarnpkg.com/@types/jest/-/jest-25.2.3.tgz#33d27e4c4716caae4eced355097a47ad363fdcaf" - integrity sha512-JXc1nK/tXHiDhV55dvfzqtmP4S3sy3T3ouV2tkViZgxY/zeUkcpQcQPGRlgF4KmWzWW5oiWYSZwtCB+2RsE4Fw== +"@types/jest@*", "@types/jest@^26.0.24": + version "26.0.24" + resolved "https://registry.yarnpkg.com/@types/jest/-/jest-26.0.24.tgz#943d11976b16739185913a1936e0de0c4a7d595a" + integrity sha512-E/X5Vib8BWqZNRlDxj9vYXhsDwPYbPINqKF9BsnSoon4RQ0D9moEuLD8txgyypFLH7J4+Lho9Nr/c8H0Fi+17w== dependencies: - jest-diff "^25.2.1" - pretty-format "^25.2.1" + jest-diff "^26.0.0" + pretty-format "^26.0.0" "@types/jest@^24.0.16": version "24.9.1" @@ -3432,35 +2649,35 @@ dependencies: jest-diff "^24.3.0" -"@types/json-schema@^7.0.5": - version "7.0.7" - resolved "https://registry.yarnpkg.com/@types/json-schema/-/json-schema-7.0.7.tgz#98a993516c859eb0d5c4c8f098317a9ea68db9ad" - integrity sha512-cxWFQVseBm6O9Gbw1IWb8r6OS4OhSt3hPZLkFApLjM8TEXROBuQGLAH2i2gZpcXdLBIrpXuTDhH7Vbm1iXmNGA== +"@types/json-schema@^7.0.5", "@types/json-schema@^7.0.7": + version "7.0.8" + resolved "https://registry.yarnpkg.com/@types/json-schema/-/json-schema-7.0.8.tgz#edf1bf1dbf4e04413ca8e5b17b3b7d7d54b59818" + integrity sha512-YSBPTLTVm2e2OoQIDYx8HaeWJ5tTToLH67kXR7zYNGupXMEHa2++G8k+DczX2cFVgalypqtyZIcU19AFcmOpmg== -"@types/json5@^0.0.29": - version "0.0.29" - resolved "https://registry.yarnpkg.com/@types/json5/-/json5-0.0.29.tgz#ee28707ae94e11d2b827bcbe5270bcea7f3e71ee" - integrity sha1-7ihweulOEdK4J7y+UnC86n8+ce4= +"@types/lodash@^4.14.171": + version "4.14.171" + resolved "https://registry.yarnpkg.com/@types/lodash/-/lodash-4.14.171.tgz#f01b3a5fe3499e34b622c362a46a609fdb23573b" + integrity sha512-7eQ2xYLLI/LsicL2nejW9Wyko3lcpN6O/z0ZLHrEQsg280zIdCv1t/0m6UtBjUHokCGBQ3gYTbHzDkZ1xOBwwg== "@types/minimatch@*": - version "3.0.3" - resolved "https://registry.yarnpkg.com/@types/minimatch/-/minimatch-3.0.3.tgz#3dca0e3f33b200fc7d1139c0cd96c1268cadfd9d" - integrity sha512-tHq6qdbT9U1IRSGf14CL0pUlULksvY9OZ+5eEgl1N7t+OA3tGvNpxJCzuKQlsNgCVwbAs670L1vcVQi8j9HjnA== + version "3.0.5" + resolved "https://registry.yarnpkg.com/@types/minimatch/-/minimatch-3.0.5.tgz#1001cc5e6a3704b83c236027e77f2f58ea010f40" + integrity sha512-Klz949h02Gz2uZCMGwDUSDS1YBlTdDDgbWHi+81l29tQALUtvz4rAYi5uoVhE5Lagoq6DeqAUlbrHvW/mXDgdQ== "@types/node@*": - version "14.0.4" - resolved "https://registry.yarnpkg.com/@types/node/-/node-14.0.4.tgz#43a63fc5edce226bed106b31b875165256271107" - integrity sha512-k3NqigXWRzQZVBDS5D1U70A5E8Qk4Kh+Ha/x4M8Bt9pF0X05eggfnC9+63Usc9Q928hRUIpIhTQaXsZwZBl4Ew== + version "16.4.1" + resolved "https://registry.yarnpkg.com/@types/node/-/node-16.4.1.tgz#9fad171a5b701613ee8a6f4ece3c88b1034b1b03" + integrity sha512-UW7cbLqf/Wu5XH2RKKY1cHwUNLicIDRLMraYKz+HHAerJ0ZffUEk+fMnd8qU2JaS6cAy0r8tsaf7yqHASf/Y0Q== "@types/normalize-package-data@^2.4.0": - version "2.4.0" - resolved "https://registry.yarnpkg.com/@types/normalize-package-data/-/normalize-package-data-2.4.0.tgz#e486d0d97396d79beedd0a6e33f4534ff6b4973e" - integrity sha512-f5j5b/Gf71L+dbqxIpQ4Z2WlmI/mPJ0fOkGGmFgtb6sAu97EPczzbS3/tJKxmcYDj55OX6ssqwDAWOHIYDRDGA== + version "2.4.1" + resolved "https://registry.yarnpkg.com/@types/normalize-package-data/-/normalize-package-data-2.4.1.tgz#d3357479a0fdfdd5907fe67e17e0a85c906e1301" + integrity sha512-Gj7cI7z+98M282Tqmp2K5EIsoouUEzbBJhQQzDE3jSIRk6r9gsz0oUokqIUR4u1R3dMHo0pDHM7sNOHyhulypw== "@types/npmlog@^4.1.2": - version "4.1.2" - resolved "https://registry.yarnpkg.com/@types/npmlog/-/npmlog-4.1.2.tgz#d070fe6a6b78755d1092a3dc492d34c3d8f871c4" - integrity sha512-4QQmOF5KlwfxJ5IGXFIudkeLCdMABz03RcUXu+LCb24zmln8QW6aDjuGl4d4XPVLf2j+FnjelHTP7dvceAFbhA== + version "4.1.3" + resolved "https://registry.yarnpkg.com/@types/npmlog/-/npmlog-4.1.3.tgz#9c24b49a97e25cf15a890ff404764080d7942132" + integrity sha512-1TcL7YDYCtnHmLhTWbum+IIwLlvpaHoEKS2KNIngEwLzwgDeHaebaEHHbQp8IqzNQ9IYiboLKUjAf7MZqG63+w== "@types/parse-json@^4.0.0": version "4.0.0" @@ -3473,29 +2690,56 @@ integrity sha512-5qOlnZscTn4xxM5MeGXAMOsIOIKIbh9e85zJWfBRVPlRMEVawzoPhINYbRGkBZCI8LxvBe7tJCdWiarA99OZfQ== "@types/prop-types@*": - version "15.7.3" - resolved "https://registry.yarnpkg.com/@types/prop-types/-/prop-types-15.7.3.tgz#2ab0d5da2e5815f94b0b9d4b95d1e5f243ab2ca7" - integrity sha512-KfRL3PuHmqQLOG+2tGpRO26Ctg+Cq1E01D2DMriKEATHgWLfeNDmq9e29Q9WIky0dQ3NPkd1mzYH8Lm936Z9qw== + version "15.7.4" + resolved "https://registry.yarnpkg.com/@types/prop-types/-/prop-types-15.7.4.tgz#fcf7205c25dff795ee79af1e30da2c9790808f11" + integrity sha512-rZ5drC/jWjrArrS8BR6SIr4cWpW09RNTYt9AMZo3Jwwif+iacXAqgVjm0B0Bv/S1jhDXKHqRVNCbACkJ89RAnQ== "@types/reach__router@^1.2.3": - version "1.3.5" - resolved "https://registry.yarnpkg.com/@types/reach__router/-/reach__router-1.3.5.tgz#14e1e981cccd3a5e50dc9e969a72de0b9d472f6d" - integrity sha512-h0NbqXN/tJuBY/xggZSej1SKQEstbHO7J/omt1tYoFGmj3YXOodZKbbqD4mNDh7zvEGYd7YFrac1LTtAr3xsYQ== + version "1.3.9" + resolved "https://registry.yarnpkg.com/@types/reach__router/-/reach__router-1.3.9.tgz#d3aaac0072665c81063cc6c557c18dadd642b226" + integrity sha512-N6rqQqTTAV/zKLfK3iq9Ww3wqCEhTZvsilhl0zI09zETdVq1QGmJH6+/xnj8AFUWIrle2Cqo+PGM/Ltr1vBb9w== + dependencies: + "@types/react" "*" + +"@types/react-native-config-reader@^4.1.0": + version "4.1.0" + resolved "https://registry.yarnpkg.com/@types/react-native-config-reader/-/react-native-config-reader-4.1.0.tgz#33066cd0452b86b605b41bed47b38470dd85d428" + integrity sha512-meRB7e21CUmeS+so51CthLRQxZBymHZoDpq3UaDQHP9ucYbdeA7E0WFoI9vQE1h6kX3Mau3wyU2wQTZiD2674Q== + +"@types/react-native-platform-touchable@^1.1.2": + version "1.1.2" + resolved "https://registry.yarnpkg.com/@types/react-native-platform-touchable/-/react-native-platform-touchable-1.1.2.tgz#c0060f679ffe2ff96960cfde8b60c0fe87168ebf" + integrity sha512-nRA5GuDdG1e2I3f5Ukwdlbw1d0H2GbBU+j0H16/cNelVYPz3zLoxcCHhkNdZ9Wr8LVgVcvqK7vKXG+mzepvpMw== + dependencies: + "@types/react" "*" + "@types/react-native" "*" + +"@types/react-native-scrollable-tab-view@^0.10.2": + version "0.10.2" + resolved "https://registry.yarnpkg.com/@types/react-native-scrollable-tab-view/-/react-native-scrollable-tab-view-0.10.2.tgz#a6006efcad320b9dffd23b080cfe153cebcbc1a6" + integrity sha512-N6IObGTHFKIi2/lFqMLcUICjzqA8phbNWUC6apAdfBnJSrGWkHjTctPt28qpYaQA6KqtCsmhZ19RpzszDje0pg== + dependencies: + "@types/react" "*" + "@types/react-native" "*" + +"@types/react-native@*": + version "0.64.12" + resolved "https://registry.yarnpkg.com/@types/react-native/-/react-native-0.64.12.tgz#1c6a3226c26d7a5949cdf8878e6cfe95fe0951d6" + integrity sha512-sw6WGSaL219zqrgdb4kQUtFB9iGXC/LmecLZ+UUWEgwYvD0YH81FqWYmONa2HuTkOFAsxu2bK4DspkWRUHIABQ== dependencies: - "@types/history" "*" "@types/react" "*" "@types/react-native@^0.62.7": - version "0.62.10" - resolved "https://registry.yarnpkg.com/@types/react-native/-/react-native-0.62.10.tgz#82c481df21db4e7460755dc3fc7091e333a1d2bd" - integrity sha512-QR4PGrzZ3IvRIHlScyIPuv2GV8tD/BMICZz514KGvn3KHbh0mLphHHemtHZC1o8u4xM5LxwVpMpMYHQ+ncSfag== + version "0.62.18" + resolved "https://registry.yarnpkg.com/@types/react-native/-/react-native-0.62.18.tgz#ad63691e7c44edef2beeb6af52b2eb942c3ed8a1" + integrity sha512-7QfU8EzIYxYqeXpPf8QNv2xi8hrePlgTbRATRo+plRSdVfJu7N6sAXqrFxKJp6bGLvp82GV1gczl93gqiAfXPA== dependencies: "@types/react" "*" -"@types/react-redux@^7.1.16": - version "7.1.16" - resolved "https://registry.yarnpkg.com/@types/react-redux/-/react-redux-7.1.16.tgz#0fbd04c2500c12105494c83d4a3e45c084e3cb21" - integrity sha512-f/FKzIrZwZk7YEO9E1yoxIuDNRiDducxkFlkw/GNMGEnK9n4K8wJzlJBghpSuOVDgEUHoDkDF7Gi9lHNQR4siw== +"@types/react-redux@^7.1.16", "@types/react-redux@^7.1.18": + version "7.1.18" + resolved "https://registry.yarnpkg.com/@types/react-redux/-/react-redux-7.1.18.tgz#2bf8fd56ebaae679a90ebffe48ff73717c438e04" + integrity sha512-9iwAsPyJ9DLTRH+OFeIrm9cAbIj1i2ANL3sKQFATqnPWRbg+jEFXyZOKHiQK/N86pNRXbb4HRxAxo0SIX1XwzQ== dependencies: "@types/hoist-non-react-statics" "^3.3.0" "@types/react" "*" @@ -3509,34 +2753,33 @@ dependencies: "@types/react" "*" -"@types/react-textarea-autosize@^4.3.3": - version "4.3.5" - resolved "https://registry.yarnpkg.com/@types/react-textarea-autosize/-/react-textarea-autosize-4.3.5.tgz#6c4d2753fa1864c98c0b2b517f67bb1f6e4c46de" - integrity sha512-PiDL83kPMTolyZAWW3lyzO6ktooTb9tFTntVy7CA83/qFLWKLJ5bLeRboy6J6j3b1e8h2Eec6gBTEOOJRjV14A== +"@types/react-test-renderer@^17.0.1": + version "17.0.1" + resolved "https://registry.yarnpkg.com/@types/react-test-renderer/-/react-test-renderer-17.0.1.tgz#3120f7d1c157fba9df0118dae20cb0297ee0e06b" + integrity sha512-3Fi2O6Zzq/f3QR9dRnlnHso9bMl7weKCviFmfF6B4LS1Uat6Hkm15k0ZAQuDz+UBq6B3+g+NM6IT2nr5QgPzCw== dependencies: "@types/react" "*" -"@types/react@*": - version "16.9.35" - resolved "https://registry.yarnpkg.com/@types/react/-/react-16.9.35.tgz#a0830d172e8aadd9bd41709ba2281a3124bbd368" - integrity sha512-q0n0SsWcGc8nDqH2GJfWQWUOmZSJhXV64CjVN5SvcNti3TdEaA3AH0D8DwNmMdzjMAC/78tB8nAZIlV8yTz+zQ== +"@types/react-textarea-autosize@^4.3.3": + version "4.3.6" + resolved "https://registry.yarnpkg.com/@types/react-textarea-autosize/-/react-textarea-autosize-4.3.6.tgz#f56f7b41aee9fb0310b6e32a8d2a77eb9a5893db" + integrity sha512-cTf8tCem0c8A7CERYbTuF+bRFaqYu7N7HLCa6ZhUhDx8XnUsTpGx5udMWljt87JpciUKuUkImKPEsy6kcKhrcQ== dependencies: - "@types/prop-types" "*" - csstype "^2.2.0" + "@types/react" "*" -"@types/react@^17.0.0": - version "17.0.11" - resolved "https://registry.yarnpkg.com/@types/react/-/react-17.0.11.tgz#67fcd0ddbf5a0b083a0f94e926c7d63f3b836451" - integrity sha512-yFRQbD+whVonItSk7ZzP/L+gPTJVBkL/7shLEF+i9GC/1cV3JmUxEQz6+9ylhUpWSDuqo1N9qEvqS6vTj4USUA== +"@types/react@*", "@types/react@^17.0.0", "@types/react@^17.0.14": + version "17.0.14" + resolved "https://registry.yarnpkg.com/@types/react/-/react-17.0.14.tgz#f0629761ca02945c4e8fea99b8177f4c5c61fb0f" + integrity sha512-0WwKHUbWuQWOce61UexYuWTGuGY/8JvtUe/dtQ6lR4sZ3UiylHotJeWpf3ArP9+DSGUoLY3wbU59VyMrJps5VQ== dependencies: "@types/prop-types" "*" "@types/scheduler" "*" csstype "^3.0.2" "@types/scheduler@*": - version "0.16.1" - resolved "https://registry.yarnpkg.com/@types/scheduler/-/scheduler-0.16.1.tgz#18845205e86ff0038517aab7a18a62a6b9f71275" - integrity sha512-EaCxbanVeyxDRTQBkdLb3Bvl/HK7PBK6UJjsSixB0iHKoWxE5uu2Q/DgtpOhPIojN0Zl1whvOd7PoHs2P0s5eA== + version "0.16.2" + resolved "https://registry.yarnpkg.com/@types/scheduler/-/scheduler-0.16.2.tgz#1a62f89525723dde24ba1b01b092bf5df8ad4d39" + integrity sha512-hppQEBDmlwhFAXKJX2KnWLYu5yMfi91yazPb2l+lbJiwW+wdo1gNeRA+3RgNSO39WYX2euey41KEwnqesU2Jew== "@types/source-list-map@*": version "0.1.2" @@ -3548,63 +2791,132 @@ resolved "https://registry.yarnpkg.com/@types/stack-utils/-/stack-utils-1.0.1.tgz#0a851d3bd96498fa25c33ab7278ed3bd65f06c3e" integrity sha512-l42BggppR6zLmpfU6fq9HEa2oGPEI8yrSPL3GITjfRInppYFahObbIQOQK3UGxEnyQpltZLaPe75046NOZQikw== -"@types/tapable@*", "@types/tapable@^1.0.5": - version "1.0.5" - resolved "https://registry.yarnpkg.com/@types/tapable/-/tapable-1.0.5.tgz#9adbc12950582aa65ead76bffdf39fe0c27a3c02" - integrity sha512-/gG2M/Imw7cQFp8PGvz/SwocNrmKFjFsm5Pb8HdbHkZ1K8pmuPzOX4VeVoiEecFCVf4CsN1r3/BRvx+6sNqwtQ== +"@types/tapable@^1", "@types/tapable@^1.0.5": + version "1.0.8" + resolved "https://registry.yarnpkg.com/@types/tapable/-/tapable-1.0.8.tgz#b94a4391c85666c7b73299fd3ad79d4faa435310" + integrity sha512-ipixuVrh2OdNmauvtT51o3d8z12p6LtFW9in7U79der/kwejjdNchQC5UMn5u/KxNoM7VHHOs/l8KS8uHxhODQ== "@types/uglify-js@*": - version "3.9.2" - resolved "https://registry.yarnpkg.com/@types/uglify-js/-/uglify-js-3.9.2.tgz#01992579debba674e1e359cd6bcb1a1d0ab2e02b" - integrity sha512-d6dIfpPbF+8B7WiCi2ELY7m0w1joD8cRW4ms88Emdb2w062NeEpbNCeWwVCgzLRpVG+5e74VFSg4rgJ2xXjEiQ== + version "3.13.1" + resolved "https://registry.yarnpkg.com/@types/uglify-js/-/uglify-js-3.13.1.tgz#5e889e9e81e94245c75b6450600e1c5ea2878aea" + integrity sha512-O3MmRAk6ZuAKa9CHgg0Pr0+lUOqoMLpc9AS4R8ano2auvsg7IE8syF3Xh/NPr26TWklxYcqoEEFdzLLs1fV9PQ== dependencies: source-map "^0.6.1" "@types/webpack-env@^1.15.0": - version "1.15.2" - resolved "https://registry.yarnpkg.com/@types/webpack-env/-/webpack-env-1.15.2.tgz#927997342bb9f4a5185a86e6579a0a18afc33b0a" - integrity sha512-67ZgZpAlhIICIdfQrB5fnDvaKFcDxpKibxznfYRVAT4mQE41Dido/3Ty+E3xGBmTogc5+0Qb8tWhna+5B8z1iQ== + version "1.16.2" + resolved "https://registry.yarnpkg.com/@types/webpack-env/-/webpack-env-1.16.2.tgz#8db514b059c1b2ae14ce9d7bb325296de6a9a0fa" + integrity sha512-vKx7WNQNZDyJveYcHAm9ZxhqSGLYwoyLhrHjLBOkw3a7cT76sTdjgtwyijhk1MaHyRIuSztcVwrUOO/NEu68Dw== "@types/webpack-sources@*": - version "0.1.7" - resolved "https://registry.yarnpkg.com/@types/webpack-sources/-/webpack-sources-0.1.7.tgz#0a330a9456113410c74a5d64180af0cbca007141" - integrity sha512-XyaHrJILjK1VHVC4aVlKsdNN5KBTwufMb43cQs+flGxtPAf/1Qwl8+Q0tp5BwEGaI8D6XT1L+9bSWXckgkjTLw== + version "2.1.1" + resolved "https://registry.yarnpkg.com/@types/webpack-sources/-/webpack-sources-2.1.1.tgz#6af17e3a3ded71eec2b98008d7c12f498a0a4506" + integrity sha512-MjM1R6iuw8XaVbtkCBz0N349cyqBjJHCbQiOeppe3VBeFvxqs74RKHAVt9LkxTnUWc7YLZOEsUfPUnmK6SBPKQ== dependencies: "@types/node" "*" "@types/source-list-map" "*" - source-map "^0.6.1" + source-map "^0.7.3" "@types/webpack@^4.41.8": - version "4.41.13" - resolved "https://registry.yarnpkg.com/@types/webpack/-/webpack-4.41.13.tgz#988d114c8913d039b8a0e0502a7fe4f1f84f3d5e" - integrity sha512-RYmIHOWSxnTTa765N6jJBVE45pd2SYNblEYshVDduLw6RhocazNmRzE5/ytvBD8IkDMH6DI+bcrqxh8NILimBA== + version "4.41.30" + resolved "https://registry.yarnpkg.com/@types/webpack/-/webpack-4.41.30.tgz#fd3db6d0d41e145a8eeeafcd3c4a7ccde9068ddc" + integrity sha512-GUHyY+pfuQ6haAfzu4S14F+R5iGRwN6b2FRNJY7U0NilmFAqbsOfK6j1HwuLBAqwRIT+pVdNDJGJ6e8rpp0KHA== dependencies: - "@types/anymatch" "*" "@types/node" "*" - "@types/tapable" "*" + "@types/tapable" "^1" "@types/uglify-js" "*" "@types/webpack-sources" "*" + anymatch "^3.0.0" source-map "^0.6.0" "@types/yargs-parser@*": - version "15.0.0" - resolved "https://registry.yarnpkg.com/@types/yargs-parser/-/yargs-parser-15.0.0.tgz#cb3f9f741869e20cce330ffbeb9271590483882d" - integrity sha512-FA/BWv8t8ZWJ+gEOnLLd8ygxH/2UFbAvgEonyfN6yWGLKc7zVjbpl2Y4CTjid9h2RfgPP6SEt6uHwEOply00yw== + version "20.2.1" + resolved "https://registry.yarnpkg.com/@types/yargs-parser/-/yargs-parser-20.2.1.tgz#3b9ce2489919d9e4fea439b76916abc34b2df129" + integrity sha512-7tFImggNeNBVMsn0vLrpn1H1uPrUBdnARPTpZoitY37ZrdJREzf7I16tMrlK3hen349gr1NYh8CmZQa7CTG6Aw== "@types/yargs@^13.0.0": - version "13.0.9" - resolved "https://registry.yarnpkg.com/@types/yargs/-/yargs-13.0.9.tgz#44028e974343c7afcf3960f1a2b1099c39a7b5e1" - integrity sha512-xrvhZ4DZewMDhoH1utLtOAwYQy60eYFoXeje30TzM3VOvQlBwQaEpKFq5m34k1wOw2AKIi2pwtiAjdmhvlBUzg== + version "13.0.12" + resolved "https://registry.yarnpkg.com/@types/yargs/-/yargs-13.0.12.tgz#d895a88c703b78af0465a9de88aa92c61430b092" + integrity sha512-qCxJE1qgz2y0hA4pIxjBR+PelCH0U5CK1XJXFwCNqfmliatKp47UCXXE9Dyk1OXBDLvsCF57TqQEJaeLfDYEOQ== dependencies: "@types/yargs-parser" "*" "@types/yargs@^15.0.0": - version "15.0.5" - resolved "https://registry.yarnpkg.com/@types/yargs/-/yargs-15.0.5.tgz#947e9a6561483bdee9adffc983e91a6902af8b79" - integrity sha512-Dk/IDOPtOgubt/IaevIUbTgV7doaKkoorvOyYM2CMwuDyP89bekI7H4xLIwunNYiK9jhCkmc6pUrJk3cj2AB9w== + version "15.0.14" + resolved "https://registry.yarnpkg.com/@types/yargs/-/yargs-15.0.14.tgz#26d821ddb89e70492160b66d10a0eb6df8f6fb06" + integrity sha512-yEJzHoxf6SyQGhBhIYGXQDSCkJjB6HohDShto7m8vaKg9Yp0Yn8+71J9eakh2bnPg6BfsH9PRMhiRTZnd4eXGQ== dependencies: "@types/yargs-parser" "*" +"@typescript-eslint/eslint-plugin@^4.28.3": + version "4.28.4" + resolved "https://registry.yarnpkg.com/@typescript-eslint/eslint-plugin/-/eslint-plugin-4.28.4.tgz#e73c8cabbf3f08dee0e1bda65ed4e622ae8f8921" + integrity sha512-s1oY4RmYDlWMlcV0kKPBaADn46JirZzvvH7c2CtAqxCY96S538JRBAzt83RrfkDheV/+G/vWNK0zek+8TB3Gmw== + dependencies: + "@typescript-eslint/experimental-utils" "4.28.4" + "@typescript-eslint/scope-manager" "4.28.4" + debug "^4.3.1" + functional-red-black-tree "^1.0.1" + regexpp "^3.1.0" + semver "^7.3.5" + tsutils "^3.21.0" + +"@typescript-eslint/experimental-utils@4.28.4": + version "4.28.4" + resolved "https://registry.yarnpkg.com/@typescript-eslint/experimental-utils/-/experimental-utils-4.28.4.tgz#9c70c35ebed087a5c70fb0ecd90979547b7fec96" + integrity sha512-OglKWOQRWTCoqMSy6pm/kpinEIgdcXYceIcH3EKWUl4S8xhFtN34GQRaAvTIZB9DD94rW7d/U7tUg3SYeDFNHA== + dependencies: + "@types/json-schema" "^7.0.7" + "@typescript-eslint/scope-manager" "4.28.4" + "@typescript-eslint/types" "4.28.4" + "@typescript-eslint/typescript-estree" "4.28.4" + eslint-scope "^5.1.1" + eslint-utils "^3.0.0" + +"@typescript-eslint/parser@^4.28.3": + version "4.28.4" + resolved "https://registry.yarnpkg.com/@typescript-eslint/parser/-/parser-4.28.4.tgz#bc462dc2779afeefdcf49082516afdc3e7b96fab" + integrity sha512-4i0jq3C6n+og7/uCHiE6q5ssw87zVdpUj1k6VlVYMonE3ILdFApEzTWgppSRG4kVNB/5jxnH+gTeKLMNfUelQA== + dependencies: + "@typescript-eslint/scope-manager" "4.28.4" + "@typescript-eslint/types" "4.28.4" + "@typescript-eslint/typescript-estree" "4.28.4" + debug "^4.3.1" + +"@typescript-eslint/scope-manager@4.28.4": + version "4.28.4" + resolved "https://registry.yarnpkg.com/@typescript-eslint/scope-manager/-/scope-manager-4.28.4.tgz#bdbce9b6a644e34f767bd68bc17bb14353b9fe7f" + integrity sha512-ZJBNs4usViOmlyFMt9X9l+X0WAFcDH7EdSArGqpldXu7aeZxDAuAzHiMAeI+JpSefY2INHrXeqnha39FVqXb8w== + dependencies: + "@typescript-eslint/types" "4.28.4" + "@typescript-eslint/visitor-keys" "4.28.4" + +"@typescript-eslint/types@4.28.4": + version "4.28.4" + resolved "https://registry.yarnpkg.com/@typescript-eslint/types/-/types-4.28.4.tgz#41acbd79b5816b7c0dd7530a43d97d020d3aeb42" + integrity sha512-3eap4QWxGqkYuEmVebUGULMskR6Cuoc/Wii0oSOddleP4EGx1tjLnZQ0ZP33YRoMDCs5O3j56RBV4g14T4jvww== + +"@typescript-eslint/typescript-estree@4.28.4": + version "4.28.4" + resolved "https://registry.yarnpkg.com/@typescript-eslint/typescript-estree/-/typescript-estree-4.28.4.tgz#252e6863278dc0727244be9e371eb35241c46d00" + integrity sha512-z7d8HK8XvCRyN2SNp+OXC2iZaF+O2BTquGhEYLKLx5k6p0r05ureUtgEfo5f6anLkhCxdHtCf6rPM1p4efHYDQ== + dependencies: + "@typescript-eslint/types" "4.28.4" + "@typescript-eslint/visitor-keys" "4.28.4" + debug "^4.3.1" + globby "^11.0.3" + is-glob "^4.0.1" + semver "^7.3.5" + tsutils "^3.21.0" + +"@typescript-eslint/visitor-keys@4.28.4": + version "4.28.4" + resolved "https://registry.yarnpkg.com/@typescript-eslint/visitor-keys/-/visitor-keys-4.28.4.tgz#92dacfefccd6751cbb0a964f06683bfd72d0c4d3" + integrity sha512-NIAXAdbz1XdOuzqkJHjNKXKj8QQ4cv5cxR/g0uQhCYf/6//XrmfpaYsM7PnBcNbfvTDLUkqQ5TPNm1sozDdTWg== + dependencies: + "@typescript-eslint/types" "4.28.4" + eslint-visitor-keys "^2.0.0" + "@ungap/promise-all-settled@1.1.2": version "1.1.2" resolved "https://registry.yarnpkg.com/@ungap/promise-all-settled/-/promise-all-settled-1.1.2.tgz#aa58042711d6e3275dd37dc597e5d31e8c290a44" @@ -3787,9 +3099,9 @@ integrity sha512-GpSwvyXOcOOlV70vbnzjj4fW5xW/FdUF6nQEt1ENy7m4ZCczi1+/buVUPAqmGfqznsORNFzUMjctTIp8a9tuCQ== abab@^2.0.0: - version "2.0.3" - resolved "https://registry.yarnpkg.com/abab/-/abab-2.0.3.tgz#623e2075e02eb2d3f2475e49f99c91846467907a" - integrity sha512-tsFzPpcttalNjFBCFMqsKYQcWxxen1pgJR56by//QwvJc4/OUS3kPOOttx2tSIfjsylB0pYu7f5D3K1RCxUnUg== + version "2.0.5" + resolved "https://registry.yarnpkg.com/abab/-/abab-2.0.5.tgz#c0b678fb32d60fc1219c784d6a826fe385aeb79a" + integrity sha512-9IK9EadsbHo6jLWIpxpR6pL0sazTXV6+SQv25ZB+F7Bj9mJNaOc4nCRabwd5M/JwmUa8idz6Eci6eKfJryPs6Q== abort-controller@^3.0.0: version "3.0.0" @@ -3825,9 +3137,9 @@ acorn-globals@^4.1.0, acorn-globals@^4.3.2: acorn-walk "^6.0.1" acorn-jsx@^5.2.0: - version "5.2.0" - resolved "https://registry.yarnpkg.com/acorn-jsx/-/acorn-jsx-5.2.0.tgz#4c66069173d6fdd68ed85239fc256226182b2ebe" - integrity sha512-HiUX/+K2YpkpJ+SzBffkM/AQ2YE03S0U1kjTLVpoJdhZMOWy8qvXVN9JdLqv2QsaQ6MPYQIuNmwD8zOiYUofLQ== + version "5.3.2" + resolved "https://registry.yarnpkg.com/acorn-jsx/-/acorn-jsx-5.3.2.tgz#7ed5bb55908b3b2f1bc55c6af1653bada7f07937" + integrity sha512-rq9s+JNhf0IChjtDXxllJ7g41oZk5SlXtp0LHwyA5cejwn7vKmKp4pPri6YEePv2PU65sAsegbXtIinmDFDXgQ== acorn-walk@^6.0.1: version "6.2.0" @@ -3840,19 +3152,14 @@ acorn@^5.5.3: integrity sha512-1D++VG7BhrtvQpNbBzovKNc1FLGGEE/oGe7b9xJm/RFHMBeUaUGpluV9RLjZa47YFdPcDAenEYuq9pQPcMdLJg== acorn@^6.0.1, acorn@^6.4.1: - version "6.4.1" - resolved "https://registry.yarnpkg.com/acorn/-/acorn-6.4.1.tgz#531e58ba3f51b9dacb9a6646ca4debf5b14ca474" - integrity sha512-ZVA9k326Nwrj3Cj9jlh3wGFutC2ZornPNARZwsNYqQYgN0EsV2d53w5RN/co65Ohn4sUAUtb1rSUAOD6XN9idA== + version "6.4.2" + resolved "https://registry.yarnpkg.com/acorn/-/acorn-6.4.2.tgz#35866fd710528e92de10cf06016498e47e39e1e6" + integrity sha512-XtGIhXwF8YM8bJhGxG5kXgjkEuNGLTkoYqVE+KMR+aspr4KGYmKYg7yUe3KghyQ9yheNwLnjmzh/7+gfDBmHCQ== -acorn@^7.1.0: - version "7.3.1" - resolved "https://registry.yarnpkg.com/acorn/-/acorn-7.3.1.tgz#85010754db53c3fbaf3b9ea3e083aa5c5d147ffd" - integrity sha512-tLc0wSnatxAQHVHUapaHdz72pi9KUyHjq5KyHjGg9Y8Ifdc79pTh2XvI6I1/chZbnM7QtNKzh66ooDogPZSleA== - -acorn@^7.1.1: - version "7.2.0" - resolved "https://registry.yarnpkg.com/acorn/-/acorn-7.2.0.tgz#17ea7e40d7c8640ff54a694c889c26f31704effe" - integrity sha512-apwXVmYVpQ34m/i71vrApRrRKCWQnZZF1+npOD0WV5xZFfwWOmKGQ2RWlfdy9vWITsenisM8M0Qeq8agcFHNiQ== +acorn@^7.1.0, acorn@^7.1.1: + version "7.4.1" + resolved "https://registry.yarnpkg.com/acorn/-/acorn-7.4.1.tgz#feaed255973d2e77555b83dbc08851a6c63520fa" + integrity sha512-nQyp0o1/mNdbTO1PO6kHkwSrmgZ0MT/jCCpNiwbUjGoRN4dlBhqJtoQuCnEOKzgTVwg0ZWiCoQy6SxMebQVh8A== address@1.1.2, address@^1.0.1: version "1.1.2" @@ -3860,16 +3167,16 @@ address@1.1.2, address@^1.0.1: integrity sha512-aT6camzM4xEA54YVJYSqxz1kv4IHnQZRtThJJHhUMRExaU5spC7jX5ugSwTaTgJliIgs4VhZOk7htClvQ/LmRA== agent-base@6: - version "6.0.0" - resolved "https://registry.yarnpkg.com/agent-base/-/agent-base-6.0.0.tgz#5d0101f19bbfaed39980b22ae866de153b93f09a" - integrity sha512-j1Q7cSCqN+AwrmDd+pzgqc0/NpC655x2bUf5ZjRIO77DcNBFmh+OgRNzF6OKdCC9RSCb19fGd99+bhXFdkRNqw== + version "6.0.2" + resolved "https://registry.yarnpkg.com/agent-base/-/agent-base-6.0.2.tgz#49fff58577cfee3f37176feab4c22e00f86d7f77" + integrity sha512-RZNwNclF7+MS/8bDg70amg32dyeZGZxiDuQmZxKLAlQjr3jGyLx+4Kkk58UO7D2QdgFIQCovuSuZESne6RG6XQ== dependencies: debug "4" aggregate-error@^3.0.0: - version "3.0.1" - resolved "https://registry.yarnpkg.com/aggregate-error/-/aggregate-error-3.0.1.tgz#db2fe7246e536f40d9b5442a39e117d7dd6a24e0" - integrity sha512-quoaXsZ9/BLNae5yiNoUz+Nhkwz83GhWwtYFglcjEQB2NDHCIpApbqXxIFnm4Pq/Nvhrsq5sYJFyohrrxnTGAA== + version "3.1.0" + resolved "https://registry.yarnpkg.com/aggregate-error/-/aggregate-error-3.1.0.tgz#92670ff50f5359bdb7a3e0d40d0ec30c5737687a" + integrity sha512-4I7Td01quW/RpocfNayFdFVk1qSuoh0E7JrbRJ16nH01HhKFQ88INq9Sd+nd72zqRySlr9BmDA8xlEJ6vJMrYA== dependencies: clean-stack "^2.0.0" indent-string "^4.0.0" @@ -3902,27 +3209,12 @@ ajv-errors@^1.0.0: resolved "https://registry.yarnpkg.com/ajv-errors/-/ajv-errors-1.0.1.tgz#f35986aceb91afadec4102fbd85014950cefa64d" integrity sha512-DCRfO/4nQ+89p/RK43i8Ezd41EqdGIU4ld7nGF8OQ14oc/we5rEntLCUa7+jrn3nn83BosfwZA0wb4pon2o8iQ== -ajv-keywords@^3.1.0, ajv-keywords@^3.4.1: - version "3.4.1" - resolved "https://registry.yarnpkg.com/ajv-keywords/-/ajv-keywords-3.4.1.tgz#ef916e271c64ac12171fd8384eaae6b2345854da" - integrity sha512-RO1ibKvd27e6FEShVFfPALuHI3WjSVNeK5FIsmme/LYRNxjKuNj+Dt7bucLa6NdSv3JcVTyMlm9kGR84z1XpaQ== - -ajv-keywords@^3.5.2: +ajv-keywords@^3.1.0, ajv-keywords@^3.4.1, ajv-keywords@^3.5.2: version "3.5.2" resolved "https://registry.yarnpkg.com/ajv-keywords/-/ajv-keywords-3.5.2.tgz#31f29da5ab6e00d1c2d329acf7b5929614d5014d" integrity sha512-5p6WTN0DdTGVQk6VjcEju19IgaHudalcfabD7yhDGeA6bcQnmL+CpveLJq/3hvfwd1aof6L386Ougkx6RfyMIQ== -ajv@^6.1.0, ajv@^6.10.0, ajv@^6.10.2, ajv@^6.12.0, ajv@^6.5.5: - version "6.12.2" - resolved "https://registry.yarnpkg.com/ajv/-/ajv-6.12.2.tgz#c629c5eced17baf314437918d2da88c99d5958cd" - integrity sha512-k+V+hzjm5q/Mr8ef/1Y9goCmlsK4I6Sm74teeyGvFk1XrOsbsKLjEdrvny42CZ+a8sXbk8KWpY/bDwS+FLL2UQ== - dependencies: - fast-deep-equal "^3.1.1" - fast-json-stable-stringify "^2.0.0" - json-schema-traverse "^0.4.1" - uri-js "^4.2.2" - -ajv@^6.12.4: +ajv@^6.1.0, ajv@^6.10.0, ajv@^6.10.2, ajv@^6.12.3, ajv@^6.12.4: version "6.12.6" resolved "https://registry.yarnpkg.com/ajv/-/ajv-6.12.6.tgz#baf5a62e802b07d977034586f8c3baf5adf26df4" integrity sha512-j3fVLgvTo527anyYyJOGTYJbG+vnnQYvE0m5mmkc1TK+nxAppkCLMIL0aZ4dblVCNoGShhm+kzE4ZUykBoMg4g== @@ -3933,9 +3225,9 @@ ajv@^6.12.4: uri-js "^4.2.2" anser@^1.4.9: - version "1.4.9" - resolved "https://registry.yarnpkg.com/anser/-/anser-1.4.9.tgz#1f85423a5dcf8da4631a341665ff675b96845760" - integrity sha512-AI+BjTeGt2+WFk4eWcqbQ7snZpDBt8SaLlj0RT2h5xfdWaiy51OjYvqwMrNzJLGy8iOAL6nKDITWO+rd4MkYEA== + version "1.4.10" + resolved "https://registry.yarnpkg.com/anser/-/anser-1.4.10.tgz#befa3eddf282684bd03b63dcda3927aef8c2e35b" + integrity sha512-hCv9AqTQ8ycjpSd3upOJd7vFwW1JaoYQ7tpham03GJ1ca8/65rqn0RpaWpItOAd6ylW9wAw6luXYPJIyPFVOww== ansi-align@^3.0.0: version "3.0.0" @@ -3974,11 +3266,11 @@ ansi-escapes@^3.0.0, ansi-escapes@^3.2.0: integrity sha512-cBhpre4ma+U0T1oM5fXg7Dy1Jw7zzwv7lt/GoCpr+hDQJoYnKVPLL4dCvSEFMmQurOQvSrwT7SL/DAlhBI97RQ== ansi-escapes@^4.2.1: - version "4.3.1" - resolved "https://registry.yarnpkg.com/ansi-escapes/-/ansi-escapes-4.3.1.tgz#a5c47cc43181f1f38ffd7076837700d395522a61" - integrity sha512-JWF7ocqNrp8u9oqpgV+wH5ftbt+cfvv+PTjOvKLT3AdYly/LmORARfEVT1iyjwN+4MqE5UmVKoAdIBqeoCHgLA== + version "4.3.2" + resolved "https://registry.yarnpkg.com/ansi-escapes/-/ansi-escapes-4.3.2.tgz#6b2291d1db7d98b6521d5f1efa42d0f3a9feb65e" + integrity sha512-gKXj5ALrKWQLsYG9jlTRmR/xKluxHV+Z9QEwNIgCfM1/uwPMCuzVVnh5mwTd+OuBZcwSIMbqssNWRm1lE51QaQ== dependencies: - type-fest "^0.11.0" + type-fest "^0.21.3" ansi-fragments@^0.2.1: version "0.2.1" @@ -4041,19 +3333,18 @@ ansi-styles@^3.2.0, ansi-styles@^3.2.1: color-convert "^1.9.0" ansi-styles@^4.0.0, ansi-styles@^4.1.0: - version "4.2.1" - resolved "https://registry.yarnpkg.com/ansi-styles/-/ansi-styles-4.2.1.tgz#90ae75c424d008d2624c5bf29ead3177ebfcf359" - integrity sha512-9VGjrMsG1vePxcSweQsN20KY/c4zN0h9fLjqAbwbPfahM3t+NL+M9HC8xeXG2I8pX5NoamTGNuomEUFI7fcUjA== + version "4.3.0" + resolved "https://registry.yarnpkg.com/ansi-styles/-/ansi-styles-4.3.0.tgz#edd803628ae71c04c85ae7a0906edad34b648937" + integrity sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg== dependencies: - "@types/color-name" "^1.1.1" color-convert "^2.0.1" ansi-to-html@^0.6.11: - version "0.6.14" - resolved "https://registry.yarnpkg.com/ansi-to-html/-/ansi-to-html-0.6.14.tgz#65fe6d08bba5dd9db33f44a20aec331e0010dad8" - integrity sha512-7ZslfB1+EnFSDO5Ju+ue5Y6It19DRnZXWv8jrGHgIlPna5Mh4jz7BV5jCbQneXNFurQcKoolaaAjHtgSBfOIuA== + version "0.6.15" + resolved "https://registry.yarnpkg.com/ansi-to-html/-/ansi-to-html-0.6.15.tgz#ac6ad4798a00f6aa045535d7f6a9cb9294eebea7" + integrity sha512-28ijx2aHJGdzbs+O5SNQF65r6rrKYnkuwTYm8lZlChuoJ9P1vVzIpWO20sQTqTPDXYp6NFwk326vApTtLVFXpQ== dependencies: - entities "^1.1.2" + entities "^2.0.0" ansi-wrap@0.1.0, ansi-wrap@^0.1.0: version "0.1.0" @@ -4073,15 +3364,7 @@ anymatch@^2.0.0: micromatch "^3.1.4" normalize-path "^2.1.1" -anymatch@^3.0.3, anymatch@~3.1.1: - version "3.1.1" - resolved "https://registry.yarnpkg.com/anymatch/-/anymatch-3.1.1.tgz#c55ecf02185e2469259399310c173ce31233b142" - integrity sha512-mM8522psRCqzV+6LhomX5wgp25YVibjh8Wj23I5RPkPppSVSjyKD2A2mBJmWGa+KN7f2D6LNh9jkBCeyLktzjg== - dependencies: - normalize-path "^3.0.0" - picomatch "^2.0.4" - -anymatch@~3.1.2: +anymatch@^3.0.0, anymatch@^3.0.3, anymatch@~3.1.1, anymatch@~3.1.2: version "3.1.2" resolved "https://registry.yarnpkg.com/anymatch/-/anymatch-3.1.2.tgz#c0557c096af32f106198f4f4e2a383537e378716" integrity sha512-P43ePfOAIupkguHUycrc4qJ9kz8ZiuOUijaETwX7THt0Y/GNK7v0aa8rY816xWjZ7rJdA5XdMcpVFTKMq+RvWg== @@ -4202,12 +3485,14 @@ array-flatten@1.1.1: integrity sha1-ml9pkFGx5wczKPKgCJaLZOopVdI= array-includes@^3.0.3, array-includes@^3.1.1: - version "3.1.1" - resolved "https://registry.yarnpkg.com/array-includes/-/array-includes-3.1.1.tgz#cdd67e6852bdf9c1215460786732255ed2459348" - integrity sha512-c2VXaCHl7zPsvpkFsw4nxvFie4fh1ur9bpcgsVkIjqn0H/Xwdg+7fv3n2r/isyS8EBj5b06M9kHyZuIr4El6WQ== + version "3.1.3" + resolved "https://registry.yarnpkg.com/array-includes/-/array-includes-3.1.3.tgz#c7f619b382ad2afaf5326cddfdc0afc61af7690a" + integrity sha512-gcem1KlBU7c9rB+Rq8/3PPKsK2kjqeEBa3bD5kkQo4nYlOHQCJqIJFqBXDEfwaRuYTT4E+FxA9xez7Gf/e3Q7A== dependencies: + call-bind "^1.0.2" define-properties "^1.1.3" - es-abstract "^1.17.0" + es-abstract "^1.18.0-next.2" + get-intrinsic "^1.1.1" is-string "^1.0.5" array-map@~0.0.0: @@ -4232,6 +3517,11 @@ array-union@^1.0.1: dependencies: array-uniq "^1.0.1" +array-union@^2.1.0: + version "2.1.0" + resolved "https://registry.yarnpkg.com/array-union/-/array-union-2.1.0.tgz#b798420adbeb1de828d84acd8a2e23d3efe85e8d" + integrity sha512-HGyxoOTYUyCM6stUe6EJgnd4EoewAI7zMdfqO+kGjnlZmBDz/cR5pf8r/cR4Wq60sL/p0IkcjUEEPwS3GFrIyw== + array-uniq@^1.0.1: version "1.0.3" resolved "https://registry.yarnpkg.com/array-uniq/-/array-uniq-1.0.3.tgz#af6ac877a25cc7f74e058894753858dfdb24fdb6" @@ -4247,15 +3537,7 @@ array-unique@^0.3.2: resolved "https://registry.yarnpkg.com/array-unique/-/array-unique-0.3.2.tgz#a894b75d4bc4f6cd679ef3244a9fd8f46ae2d428" integrity sha1-qJS3XUvE9s1nnvMkSp/Y9Gri1Cg= -array.prototype.flat@^1.2.1: - version "1.2.3" - resolved "https://registry.yarnpkg.com/array.prototype.flat/-/array.prototype.flat-1.2.3.tgz#0de82b426b0318dbfdb940089e38b043d37f6c7b" - integrity sha512-gBlRZV0VSmfPIeWfuuy56XZMvbVfbEUnOXUvt3F/eUUUSyzlgLxhEX4YAEpxNAogRGehPSnfXyPtYyKAhkzQhQ== - dependencies: - define-properties "^1.1.3" - es-abstract "^1.17.0-next.1" - -array.prototype.flat@^1.2.3: +array.prototype.flat@^1.2.1, array.prototype.flat@^1.2.3: version "1.2.4" resolved "https://registry.yarnpkg.com/array.prototype.flat/-/array.prototype.flat-1.2.4.tgz#6ef638b43312bd401b4c6199fdec7e2dc9e9a123" integrity sha512-4470Xi3GAPAjZqFcljX2xzckv1qeKPizoNkiS0+O4IoPR2ZNpcjE0pkhdihlDouK+x6QOast26B4Q/O9DJnwSg== @@ -4264,16 +3546,7 @@ array.prototype.flat@^1.2.3: define-properties "^1.1.3" es-abstract "^1.18.0-next.1" -array.prototype.flatmap@^1.2.1: - version "1.2.3" - resolved "https://registry.yarnpkg.com/array.prototype.flatmap/-/array.prototype.flatmap-1.2.3.tgz#1c13f84a178566042dd63de4414440db9222e443" - integrity sha512-OOEk+lkePcg+ODXIpvuU9PAryCikCJyo7GlDG1upleEpQRx6mzL9puEBkozQ5iAx20KV0l3DbyQwqciJtqe5Pg== - dependencies: - define-properties "^1.1.3" - es-abstract "^1.17.0-next.1" - function-bind "^1.1.1" - -array.prototype.flatmap@^1.2.3: +array.prototype.flatmap@^1.2.1, array.prototype.flatmap@^1.2.3: version "1.2.4" resolved "https://registry.yarnpkg.com/array.prototype.flatmap/-/array.prototype.flatmap-1.2.4.tgz#94cfd47cc1556ec0747d97f7c7738c58122004c9" integrity sha512-r9Z0zYoxqHz60vvQbWEdXIEtCwHF0yxaWfno9qzXeNHvfyl3BZqygmGzb84dsubyaXLH4husF+NFgMSdpZhk2Q== @@ -4283,15 +3556,16 @@ array.prototype.flatmap@^1.2.3: es-abstract "^1.18.0-next.1" function-bind "^1.1.1" -array.prototype.map@^1.0.1: - version "1.0.2" - resolved "https://registry.yarnpkg.com/array.prototype.map/-/array.prototype.map-1.0.2.tgz#9a4159f416458a23e9483078de1106b2ef68f8ec" - integrity sha512-Az3OYxgsa1g7xDYp86l0nnN4bcmuEITGe1rbdEBVkrqkzMgDcbdQ2R7r41pNzti+4NMces3H8gMmuioZUilLgw== +array.prototype.map@^1.0.3: + version "1.0.3" + resolved "https://registry.yarnpkg.com/array.prototype.map/-/array.prototype.map-1.0.3.tgz#1609623618d3d84134a37d4a220030c2bd18420b" + integrity sha512-nNcb30v0wfDyIe26Yif3PcV1JXQp4zEeEfupG7L4SRjnD6HLbO5b2a7eVSba53bOx4YCHYMBHt+Fp4vYstneRA== dependencies: + call-bind "^1.0.0" define-properties "^1.1.3" - es-abstract "^1.17.0-next.1" + es-abstract "^1.18.0-next.1" es-array-method-boxes-properly "^1.0.0" - is-string "^1.0.4" + is-string "^1.0.5" arrify@^1.0.1: version "1.0.1" @@ -4308,14 +3582,15 @@ asap@~2.0.3, asap@~2.0.6: resolved "https://registry.yarnpkg.com/asap/-/asap-2.0.6.tgz#e50347611d7e690943208bbdafebcbc2fb866d46" integrity sha1-5QNHYR1+aQlDIIu9r+vLwvuGbUY= -asn1.js@^4.0.0: - version "4.10.1" - resolved "https://registry.yarnpkg.com/asn1.js/-/asn1.js-4.10.1.tgz#b9c2bf5805f1e64aadeed6df3a2bfafb5a73f5a0" - integrity sha512-p32cOF5q0Zqs9uBiONKYLm6BClCoBCM5O9JfeUSlnQLBTxYdTK+pW+nXflm8UkKd2UYlEbYz5qEi0JuZR9ckSw== +asn1.js@^5.2.0: + version "5.4.1" + resolved "https://registry.yarnpkg.com/asn1.js/-/asn1.js-5.4.1.tgz#11a980b84ebb91781ce35b0fdc2ee294e3783f07" + integrity sha512-+I//4cYPccV8LdmBLiX8CYvf9Sp3vQsrqu2QNXRcrbiWvcx/UdlFiqUJJzxRQxgsZmvhXhn4cSKeSmoFjVdupA== dependencies: bn.js "^4.0.0" inherits "^2.0.1" minimalistic-assert "^1.0.0" + safer-buffer "^2.1.0" asn1@~0.2.3: version "0.2.4" @@ -4403,9 +3678,9 @@ aws-sign2@~0.7.0: integrity sha1-tG6JCTSpWR8tL2+G1+ap8bP+dqg= aws4@^1.8.0: - version "1.9.1" - resolved "https://registry.yarnpkg.com/aws4/-/aws4-1.9.1.tgz#7e33d8f7d449b3f673cd72deb9abdc552dbe528e" - integrity sha512-wMHVg2EOHaMRxbzgFJ9gtjOOCrI80OHLG14rxi28XwOW8ux6IiEbRCGGGqCtdAIg4FQCbW20k9RsT4y3gJlFug== + version "1.11.0" + resolved "https://registry.yarnpkg.com/aws4/-/aws4-1.11.0.tgz#d61f46d83b2519250e2784daf5b09479a8b41c59" + integrity sha512-xh1Rl34h6Fi1DC2WWKfxUTVqRsNnr6LsKz2+hfwDxQJWmrx8+c7ylaqBMcHfl1U1r2dsifOvKX3LQuLNZ+XSvA== axe-core@^3.5.4: version "3.5.6" @@ -4556,7 +3831,7 @@ babel-plugin-dynamic-import-node@^2.3.3: dependencies: object.assign "^4.1.0" -babel-plugin-emotion@^10.0.20: +babel-plugin-emotion@^10.0.20, babel-plugin-emotion@^10.0.27: version "10.2.2" resolved "https://registry.yarnpkg.com/babel-plugin-emotion/-/babel-plugin-emotion-10.2.2.tgz#a1fe3503cff80abfd0bdda14abd2e8e57a79d17d" integrity sha512-SMSkGoqTbTyUTDeuVuPIWifPdUGkTk1Kf9BWRiXIOIcuyMfsdp2EjeiiFvOzX8NOBvEh/ypKYvUh2rkgAJMCLA== @@ -4572,22 +3847,6 @@ babel-plugin-emotion@^10.0.20: find-root "^1.1.0" source-map "^0.5.7" -babel-plugin-emotion@^10.0.27: - version "10.0.33" - resolved "https://registry.yarnpkg.com/babel-plugin-emotion/-/babel-plugin-emotion-10.0.33.tgz#ce1155dcd1783bbb9286051efee53f4e2be63e03" - integrity sha512-bxZbTTGz0AJQDHm8k6Rf3RQJ8tX2scsfsRyKVgAbiUPUNIRtlK+7JxP+TAd1kRLABFxe0CFm2VdK4ePkoA9FxQ== - dependencies: - "@babel/helper-module-imports" "^7.0.0" - "@emotion/hash" "0.8.0" - "@emotion/memoize" "0.7.4" - "@emotion/serialize" "^0.11.16" - babel-plugin-macros "^2.0.0" - babel-plugin-syntax-jsx "^6.18.0" - convert-source-map "^1.5.0" - escape-string-regexp "^1.0.5" - find-root "^1.1.0" - source-map "^0.5.7" - babel-plugin-istanbul@^4.1.6: version "4.1.6" resolved "https://registry.yarnpkg.com/babel-plugin-istanbul/-/babel-plugin-istanbul-4.1.6.tgz#36c59b2192efce81c5b378321b74175add1c9a45" @@ -4827,9 +4086,9 @@ babel-plugin-transform-undefined-to-void@^6.9.4: integrity sha1-viQcqBQEAwZ4t0hxcyK4nQyP4oA= babel-preset-current-node-syntax@^0.1.2: - version "0.1.3" - resolved "https://registry.yarnpkg.com/babel-preset-current-node-syntax/-/babel-preset-current-node-syntax-0.1.3.tgz#b4b547acddbf963cba555ba9f9cbbb70bfd044da" - integrity sha512-uyexu1sVwcdFnyq9o8UQYsXwXflIh8LvrF5+cKrYam93ned1CStffB3+BEcsxGSgagoA3GEyjDqO4a/58hyPYQ== + version "0.1.4" + resolved "https://registry.yarnpkg.com/babel-preset-current-node-syntax/-/babel-preset-current-node-syntax-0.1.4.tgz#826f1f8e7245ad534714ba001f84f7e906c3b615" + integrity sha512-5/INNCYhUGqw7VbVjT/hb3ucjgkVHKXY7lX3ZjlN4gm565VyFmJUrJ/h+h16ECVB38R/9SF6aACydpKMLZ/c9w== dependencies: "@babel/plugin-syntax-async-generators" "^7.8.4" "@babel/plugin-syntax-bigint" "^7.8.3" @@ -4844,9 +4103,9 @@ babel-preset-current-node-syntax@^0.1.2: "@babel/plugin-syntax-optional-chaining" "^7.8.3" babel-preset-fbjs@^3.2.0, babel-preset-fbjs@^3.3.0: - version "3.3.0" - resolved "https://registry.yarnpkg.com/babel-preset-fbjs/-/babel-preset-fbjs-3.3.0.tgz#a6024764ea86c8e06a22d794ca8b69534d263541" - integrity sha512-7QTLTCd2gwB2qGoi5epSULMHugSVgpcVt5YAeiFO9ABLrutDQzKfGwzxgZHLpugq8qMdg/DhRZDZ5CLKxBkEbw== + version "3.4.0" + resolved "https://registry.yarnpkg.com/babel-preset-fbjs/-/babel-preset-fbjs-3.4.0.tgz#38a14e5a7a3b285a3f3a86552d650dca5cf6111c" + integrity sha512-9ywCsCvo1ojrw0b+XYk7aFvTH6D9064t0RIL1rtMf3nsa02Xw41MS7sZw216Im35xj/UY0PDBQsa1brUDDF1Ow== dependencies: "@babel/plugin-proposal-class-properties" "^7.0.0" "@babel/plugin-proposal-object-rest-spread" "^7.0.0" @@ -4984,19 +4243,19 @@ babylon@^6.18.0: integrity sha512-q/UEjfGJ2Cm3oKV71DJz9d25TPnq5rhBVL2Q4fA5wcC3jcrdn7+SssEybFIxwAvvP+YCsCYNKughoF33GxgycQ== balanced-match@^1.0.0: - version "1.0.0" - resolved "https://registry.yarnpkg.com/balanced-match/-/balanced-match-1.0.0.tgz#89b4d199ab2bee49de164ea02b89ce462d71b767" - integrity sha1-ibTRmasr7kneFk6gK4nORi1xt2c= + version "1.0.2" + resolved "https://registry.yarnpkg.com/balanced-match/-/balanced-match-1.0.2.tgz#e83e3a7e3f300b34cb9d87f615fa0cbf357690ee" + integrity sha512-3oSeUO0TMV67hN1AmbXsK4yaqU7tjiHlbxRDZOpH0KW9+CeX4bRAaX0Anxt0tx2MrpRpWwQaPwIlISEJhYU5Pw== base-64@0.1.0: version "0.1.0" resolved "https://registry.yarnpkg.com/base-64/-/base-64-0.1.0.tgz#780a99c84e7d600260361511c4877613bf24f6bb" integrity sha1-eAqZyE59YAJgNhURxId2E78k9rs= -base64-js@^1.0.2, base64-js@^1.1.2, base64-js@^1.2.3, base64-js@^1.3.0: - version "1.3.1" - resolved "https://registry.yarnpkg.com/base64-js/-/base64-js-1.3.1.tgz#58ece8cb75dd07e71ed08c736abc5fac4dbf8df1" - integrity sha512-mLQ4i2QO1ytvGWFWmcngKO//JXAQueZvwEKtjgQFM4jIK0kU+ytMfplL8j+n5mspOfjHwoAg+9yhb7BwAHm36g== +base64-js@^1.0.2, base64-js@^1.1.2, base64-js@^1.3.0, base64-js@^1.3.1, base64-js@^1.5.1: + version "1.5.1" + resolved "https://registry.yarnpkg.com/base64-js/-/base64-js-1.5.1.tgz#1b1b440160a5bf7ad40b650f095963481903930a" + integrity sha512-AKpaYlHn8t4SVbOHCy+b5+KKgvR4vrsD8vbvrbiQJps7fKDTkjkDry6ji0rUJjC0kzbNePLwzxq8iypo41qeWA== base@^0.11.1: version "0.11.2" @@ -5039,9 +4298,9 @@ binary-extensions@^1.0.0: integrity sha512-Un7MIEDdUC5gNpcGDV97op1Ywk748MpHcFTHoYs6qnj1Z3j7I53VG3nwZhKzoBZmbdRNnb6WRdFlwl7tSDuZGw== binary-extensions@^2.0.0: - version "2.0.0" - resolved "https://registry.yarnpkg.com/binary-extensions/-/binary-extensions-2.0.0.tgz#23c0df14f6a88077f5f986c0d167ec03c3d5537c" - integrity sha512-Phlt0plgpIIBOGTT/ehfFnbNlfsDEiqmzE2KRXoX1bLIlir4X/MR+zSyBEkL05ffWgnRSf/DXv+WrUAVr93/ow== + version "2.2.0" + resolved "https://registry.yarnpkg.com/binary-extensions/-/binary-extensions-2.2.0.tgz#75f502eeaf9ffde42fc98829645be4ea76bd9e2d" + integrity sha512-jDctJ/IVQbZoJykoeHbhXpOlNBqGNcwXJKJog42E5HDPUwQTSdjCHdihjj0DlnheQ7blbT6dHOafNAiS8ooQKA== bindings@^1.5.0: version "1.5.0" @@ -5061,24 +4320,24 @@ bluebird@^3.3.5, bluebird@^3.5.4, bluebird@^3.5.5: integrity sha512-XpNj6GDQzdfW+r2Wnn7xiSAd7TM3jzkxGXBGTtWKuSXv1xUV+azxAm8jdWZN06QTQk+2N2XB9jRDkvbmQmcRtg== blueimp-md5@^2.10.0: - version "2.16.0" - resolved "https://registry.yarnpkg.com/blueimp-md5/-/blueimp-md5-2.16.0.tgz#9018bb805e4ee05512e0e8cbdb9305eeecbdc87c" - integrity sha512-j4nzWIqEFpLSbdhUApHRGDwfXbV8ALhqOn+FY5L6XBdKPAXU9BpGgFSbDsgqogfqPPR9R2WooseWCsfhfEC6uQ== + version "2.18.0" + resolved "https://registry.yarnpkg.com/blueimp-md5/-/blueimp-md5-2.18.0.tgz#1152be1335f0c6b3911ed9e36db54f3e6ac52935" + integrity sha512-vE52okJvzsVWhcgUHOv+69OG3Mdg151xyn41aVQN/5W5S+S43qZhxECtYLAEHMSFWX6Mv5IZrzj3T5+JqXfj5Q== bmp-js@^0.1.0: version "0.1.0" resolved "https://registry.yarnpkg.com/bmp-js/-/bmp-js-0.1.0.tgz#e05a63f796a6c1ff25f4771ec7adadc148c07233" integrity sha1-4Fpj95amwf8l9Hcex62twUjAcjM= -bn.js@^4.0.0, bn.js@^4.1.0, bn.js@^4.4.0: - version "4.11.9" - resolved "https://registry.yarnpkg.com/bn.js/-/bn.js-4.11.9.tgz#26d556829458f9d1e81fc48952493d0ba3507828" - integrity sha512-E6QoYqCKZfgatHTdHzs1RRKP7ip4vvm+EyRUeE2RF0NblwVvb0p6jSVeNTOFxPn26QXN2o6SMfNxKp6kU8zQaw== +bn.js@^4.0.0, bn.js@^4.1.0, bn.js@^4.11.9: + version "4.12.0" + resolved "https://registry.yarnpkg.com/bn.js/-/bn.js-4.12.0.tgz#775b3f278efbb9718eec7361f483fb36fbbfea88" + integrity sha512-c98Bf3tPniI+scsdk237ku1Dc3ujXQTSgyiPUDEOe7tRkhrqridvh8klBv0HCEso1OLOYcHuCv/cS6DNxKH+ZA== -bn.js@^5.1.1: - version "5.1.2" - resolved "https://registry.yarnpkg.com/bn.js/-/bn.js-5.1.2.tgz#c9686902d3c9a27729f43ab10f9d79c2004da7b0" - integrity sha512-40rZaf3bUNKTVYu9sIeeEGOg7g14Yvnj9kH7b50EiwX0Q7A6umbvfI5tvHaOERH0XigqKkfLkFQxzb4e6CIXnA== +bn.js@^5.0.0, bn.js@^5.1.1: + version "5.2.0" + resolved "https://registry.yarnpkg.com/bn.js/-/bn.js-5.2.0.tgz#358860674396c6997771a9d051fcc1b57d4ae002" + integrity sha512-D7iWRBvnZE8ecXiLj/9wbxH7Tk79fAh8IHaTNq1RWRixsS02W+5qS+iE9yq6RYl0asXx5tw0bLhmT5pIfbSquw== body-parser@1.19.0: version "1.19.0" @@ -5096,15 +4355,15 @@ body-parser@1.19.0: raw-body "2.4.0" type-is "~1.6.17" -boolbase@~1.0.0: +boolbase@^1.0.0: version "1.0.0" resolved "https://registry.yarnpkg.com/boolbase/-/boolbase-1.0.0.tgz#68dff5fbe60c51eb37725ea9e3ed310dcc1e776e" integrity sha1-aN/1++YMUes3cl6p4+0xDcwed24= bower-auto-release@^1.1.357: - version "1.1.357" - resolved "https://registry.yarnpkg.com/bower-auto-release/-/bower-auto-release-1.1.357.tgz#98c60f612fade659df517b080cdc6480b1a5353a" - integrity sha512-mVg1hEgznOpSmFTneFXjG4yGEPQMwchbux8TQIadfUUWCjPjISmXb2Ka23ZzJPJLj23ogBe5KuNNUd20vjlnfg== + version "1.1.358" + resolved "https://registry.yarnpkg.com/bower-auto-release/-/bower-auto-release-1.1.358.tgz#578f8ce3dc2f62f0b54380814266ff8717775bc1" + integrity sha512-uWpR29K93+Ue3UJJPiVH9Q3L5+kpAQN7LlB8zdQe0unvVn4sTIIzrdSYkuIml55TEvSFewtov6OB3jmpAY4jsQ== dependencies: bower "^1.7.9" command-line-args "^3.0.0" @@ -5112,9 +4371,9 @@ bower-auto-release@^1.1.357: wnpm-ci "*" bower@^1.7.9: - version "1.8.8" - resolved "https://registry.yarnpkg.com/bower/-/bower-1.8.8.tgz#82544be34a33aeae7efb8bdf9905247b2cffa985" - integrity sha512-1SrJnXnkP9soITHptSO+ahx3QKp3cVzn8poI6ujqc5SeOkg5iqM1pK9H+DSc2OQ8SnO0jC/NG4Ur/UIwy7574A== + version "1.8.12" + resolved "https://registry.yarnpkg.com/bower/-/bower-1.8.12.tgz#44cfca2a5e04b8d9a066621e24c8b179d8ac321e" + integrity sha512-u1xy9SrwwoPlgjuHNjhV+YUPVdqyBj2ALBxuzeIUKXaPI2i2xypGgxqXkuHcITGdi5yBj5JuXgyMvgiWiS1S3Q== boxen@^4.1.0: version "4.2.0" @@ -5184,7 +4443,7 @@ braces@^3.0.1, braces@~3.0.2: dependencies: fill-range "^7.0.1" -brorand@^1.0.1: +brorand@^1.0.1, brorand@^1.1.0: version "1.1.0" resolved "https://registry.yarnpkg.com/brorand/-/brorand-1.1.0.tgz#12c25efe40a45e3c323eb8675a0a0ce57b22371f" integrity sha1-EsJe/kCkXjwyPrhnWgoM5XsiNx8= @@ -5238,23 +4497,23 @@ browserify-des@^1.0.0: safe-buffer "^5.1.2" browserify-rsa@^4.0.0, browserify-rsa@^4.0.1: - version "4.0.1" - resolved "https://registry.yarnpkg.com/browserify-rsa/-/browserify-rsa-4.0.1.tgz#21e0abfaf6f2029cf2fafb133567a701d4135524" - integrity sha1-IeCr+vbyApzy+vsTNWenAdQTVSQ= + version "4.1.0" + resolved "https://registry.yarnpkg.com/browserify-rsa/-/browserify-rsa-4.1.0.tgz#b2fd06b5b75ae297f7ce2dc651f918f5be158c8d" + integrity sha512-AdEER0Hkspgno2aR97SAf6vi0y0k8NuOpGnVH3O99rcA5Q6sh8QxcngtHuJ6uXwnfAXNM4Gn1Gb7/MV1+Ymbog== dependencies: - bn.js "^4.1.0" + bn.js "^5.0.0" randombytes "^2.0.1" browserify-sign@^4.0.0: - version "4.2.0" - resolved "https://registry.yarnpkg.com/browserify-sign/-/browserify-sign-4.2.0.tgz#545d0b1b07e6b2c99211082bf1b12cce7a0b0e11" - integrity sha512-hEZC1KEeYuoHRqhGhTy6gWrpJA3ZDjFWv0DE61643ZnOXAKJb3u7yWcrU0mMc9SwAqK1n7myPGndkp0dFG7NFA== + version "4.2.1" + resolved "https://registry.yarnpkg.com/browserify-sign/-/browserify-sign-4.2.1.tgz#eaf4add46dd54be3bb3b36c0cf15abbeba7956c3" + integrity sha512-/vrA5fguVAKKAVTNJjgSm1tRQDHUU6DbwO9IROu/0WAzC8PKhucDSh18J0RMvVeHAn5puMd+QHC2erPRNf8lmg== dependencies: bn.js "^5.1.1" browserify-rsa "^4.0.1" create-hash "^1.2.0" create-hmac "^1.1.7" - elliptic "^6.5.2" + elliptic "^6.5.3" inherits "^2.0.4" parse-asn1 "^5.1.5" readable-stream "^3.6.0" @@ -5276,17 +4535,7 @@ browserslist@4.7.0: electron-to-chromium "^1.3.247" node-releases "^1.1.29" -browserslist@^4.12.0: - version "4.12.0" - resolved "https://registry.yarnpkg.com/browserslist/-/browserslist-4.12.0.tgz#06c6d5715a1ede6c51fc39ff67fd647f740b656d" - integrity sha512-UH2GkcEDSI0k/lRkuDSzFl9ZZ87skSy9w2XAn1MsZnL+4c4rqbBd3e82UWHbYDpztABrPBhZsTEeuxVfHppqDg== - dependencies: - caniuse-lite "^1.0.30001043" - electron-to-chromium "^1.3.413" - node-releases "^1.1.53" - pkg-up "^2.0.0" - -browserslist@^4.16.6: +browserslist@^4.12.0, browserslist@^4.16.6: version "4.16.6" resolved "https://registry.yarnpkg.com/browserslist/-/browserslist-4.16.6.tgz#d7901277a5a88e554ed305b183ec9b0c08f66fa2" integrity sha512-Wspk/PqO+4W9qp5iUTJsa1B/QrYn1keNCcEP5OvP7WBwT4KaDly0uONYmC6Xa3Z5IqnUgS0KcgLYu1l74x0ZXQ== @@ -5352,12 +4601,12 @@ buffer@^4.3.0: isarray "^1.0.0" buffer@^5.2.0: - version "5.6.0" - resolved "https://registry.yarnpkg.com/buffer/-/buffer-5.6.0.tgz#a31749dc7d81d84db08abf937b6b8c4033f62786" - integrity sha512-/gDYp/UtU0eA1ys8bOs9J6a+E/KWIY+DZ+Q2WESNUA0jFRsJOc0SNUO6xJ5SGA1xueg3NL65W6s+NY5l9cunuw== + version "5.7.1" + resolved "https://registry.yarnpkg.com/buffer/-/buffer-5.7.1.tgz#ba62e7c13133053582197160851a8f648e99eed0" + integrity sha512-EHcyIPBQ4BSGlvjB16k5KgAJ27CIsHY/2JBmCRReo48y9rQ3MaUzWX3KVlBa4U7MyX02HdVj0K7C3WaB3ju7FQ== dependencies: - base64-js "^1.0.2" - ieee754 "^1.1.4" + base64-js "^1.3.1" + ieee754 "^1.1.13" bugsnag-react-native@2.23.10: version "2.23.10" @@ -5522,12 +4771,12 @@ callsites@^3.0.0: integrity sha512-P8BjAsXvZS+VIDUI11hHCQEv74YT67YUi5JJFNWIqL235sBmjX4+qx9Muvls5ivyNENctx46xQLQ3aTuE7ssaQ== camel-case@^4.1.1: - version "4.1.1" - resolved "https://registry.yarnpkg.com/camel-case/-/camel-case-4.1.1.tgz#1fc41c854f00e2f7d0139dfeba1542d6896fe547" - integrity sha512-7fa2WcG4fYFkclIvEmxBbTvmibwF2/agfEBc6q3lOpVu0A13ltLsA+Hr/8Hp6kp5f+G7hKi6t8lys6XxP+1K6Q== + version "4.1.2" + resolved "https://registry.yarnpkg.com/camel-case/-/camel-case-4.1.2.tgz#9728072a954f805228225a6deea6b38461e1bd5a" + integrity sha512-gxGWBrTT1JuMx6R+o5PTXMmUnhnVzLQ9SNutD4YqKtI6ap897t3tKECYla6gCWEkplXnlNybEkZg9GEGxKFCgw== dependencies: - pascal-case "^3.1.1" - tslib "^1.10.0" + pascal-case "^3.1.2" + tslib "^2.0.3" camelcase-keys@^2.0.0: version "2.1.0" @@ -5567,25 +4816,10 @@ can-use-dom@^0.1.0: resolved "https://registry.yarnpkg.com/can-use-dom/-/can-use-dom-0.1.0.tgz#22cc4a34a0abc43950f42c6411024a3f6366b45a" integrity sha1-IsxKNKCrxDlQ9CxkEQJKP2NmtFo= -caniuse-lite@^1.0.30000989: - version "1.0.30001239" - resolved "https://registry.yarnpkg.com/caniuse-lite/-/caniuse-lite-1.0.30001239.tgz#66e8669985bb2cb84ccb10f68c25ce6dd3e4d2b8" - integrity sha512-cyBkXJDMeI4wthy8xJ2FvDU6+0dtcZSJW3voUF8+e9f1bBeuvyZfc3PNbkOETyhbR+dGCPzn9E7MA3iwzusOhQ== - -caniuse-lite@^1.0.30001043: - version "1.0.30001062" - resolved "https://registry.yarnpkg.com/caniuse-lite/-/caniuse-lite-1.0.30001062.tgz#d814b648338504b315222ace6f1a533d9a55e390" - integrity sha512-ei9ZqeOnN7edDrb24QfJ0OZicpEbsWxv7WusOiQGz/f2SfvBgHHbOEwBJ8HKGVSyx8Z6ndPjxzR6m0NQq+0bfw== - -caniuse-lite@^1.0.30001109: - version "1.0.30001237" - resolved "https://registry.yarnpkg.com/caniuse-lite/-/caniuse-lite-1.0.30001237.tgz#4b7783661515b8e7151fc6376cfd97f0e427b9e5" - integrity sha512-pDHgRndit6p1NR2GhzMbQ6CkRrp4VKuSsqbcLeOQppYPKOYkKT/6ZvZDvKJUqcmtyWIAHuZq3SVS2vc1egCZzw== - -caniuse-lite@^1.0.30001219: - version "1.0.30001236" - resolved "https://registry.yarnpkg.com/caniuse-lite/-/caniuse-lite-1.0.30001236.tgz#0a80de4cdf62e1770bb46a30d884fc8d633e3958" - integrity sha512-o0PRQSrSCGJKCPZcgMzl5fUaj5xHe8qA2m4QRvnyY4e1lITqoNkr7q/Oh1NcpGSy0Th97UZ35yoKcINPoq7YOQ== +caniuse-lite@^1.0.30000989, caniuse-lite@^1.0.30001109, caniuse-lite@^1.0.30001219: + version "1.0.30001246" + resolved "https://registry.yarnpkg.com/caniuse-lite/-/caniuse-lite-1.0.30001246.tgz#fe17d9919f87124d6bb416ef7b325356d69dc76c" + integrity sha512-Tc+ff0Co/nFNbLOrziBXmMVtpt9S2c2Y+Z9Nk9Khj09J+0zR9ejvIW5qkZAErCbOrVODCx/MN+GpB5FNBs5GFA== capture-exit@^1.2.0: version "1.2.0" @@ -5639,7 +4873,7 @@ chalk@^3.0.0: ansi-styles "^4.1.0" supports-color "^7.1.0" -chalk@^4.1.0: +chalk@^4.0.0, chalk@^4.1.0: version "4.1.1" resolved "https://registry.yarnpkg.com/chalk/-/chalk-4.1.1.tgz#c80b3fab28bf6371e6863325eee67e618b77e6ad" integrity sha512-diHzdDKxcU+bAsUboHLPEDQiw0qEe0qd7SYUn3HgcFlWgbDcfLGswOHYeGrHKzG9z6UYf01d9VFMfZxPM1xZSg== @@ -5736,11 +4970,9 @@ chownr@^1.1.1, chownr@^1.1.2: integrity sha512-jJ0bqzaylmJtVnNgzTeSOs8DPavpbYgEr/b0YL8/2GO3xJEhInFmhKMUnEJQjZumK7KXGFhUy89PrsJWlakBVg== chrome-trace-event@^1.0.2: - version "1.0.2" - resolved "https://registry.yarnpkg.com/chrome-trace-event/-/chrome-trace-event-1.0.2.tgz#234090ee97c7d4ad1a2c4beae27505deffc608a4" - integrity sha512-9e/zx1jw7B4CO+c/RXoCsfg/x1AfUBioy4owYH0bJprEYAx5hRFLRhWBqHAG57D0ZM4H7vxbP7bPe0VwhQRYDQ== - dependencies: - tslib "^1.9.0" + version "1.0.3" + resolved "https://registry.yarnpkg.com/chrome-trace-event/-/chrome-trace-event-1.0.3.tgz#1015eced4741e15d06664a957dbbf50d041e26ac" + integrity sha512-p3KULyQg4S7NIHixdwbGX+nFHkoBiA4YQmyWtjb8XngSKV124nJmRysgAeujbUVb15vh+RvFUfCPqU7rXk+hZg== ci-info@^1.5.0: version "1.6.0" @@ -5771,9 +5003,9 @@ class-utils@^0.3.5: static-extend "^0.1.1" classnames@^2.2.5: - version "2.2.6" - resolved "https://registry.yarnpkg.com/classnames/-/classnames-2.2.6.tgz#43935bffdd291f326dad0a205309b38d00f650ce" - integrity sha512-JR/iSQOSt+LQIWwrwEzJ9uk0xfN3mTVYMwt1Ir5mUcSN6pU+V4zQFFaJsclJbPuAUQH+yfWef6tm7l1quW3C8Q== + version "2.3.1" + resolved "https://registry.yarnpkg.com/classnames/-/classnames-2.3.1.tgz#dfcfa3891e306ec1dad105d0e88f4417b8535e8e" + integrity sha512-OlQdbZ7gLfGarSqxesMesDa5uz7KFbID8Kpq/SxIoNGDqY8lSYs0D+hhtBXhcdB3rcbXArFr7vlHheLk1voeNA== clean-css@^4.2.3: version "4.2.3" @@ -5788,9 +5020,9 @@ clean-stack@^2.0.0: integrity sha512-4diC9HaTE+KRAMWhDhrGOECgWZxoevMc5TlkObMqNSsVU62PYzXZ/SMTjzyGAFF1YusgxGcSWTEXBhp0CPwQ1A== cli-boxes@^2.2.0: - version "2.2.0" - resolved "https://registry.yarnpkg.com/cli-boxes/-/cli-boxes-2.2.0.tgz#538ecae8f9c6ca508e3c3c95b453fe93cb4c168d" - integrity sha512-gpaBrMAizVEANOpfZp/EEUixTXDyGt7DFzdK5hU+UbWt/J0lB0w20ncZj59Z9a93xHb9u12zF5BS6i9RKbtg4w== + version "2.2.1" + resolved "https://registry.yarnpkg.com/cli-boxes/-/cli-boxes-2.2.1.tgz#ddd5035d25094fce220e9cab40a45840a440318f" + integrity sha512-y4coMcylgSCdVinjiDBuR8PCC2bLjyGTwEmPb9NHR/QaNU6EUOXcTY/s6VjGMD6ENSEaeQYHCY0GNGS5jfMwPw== cli-cursor@^2.1.0: version "2.1.0" @@ -5807,9 +5039,9 @@ cli-cursor@^3.1.0: restore-cursor "^3.1.0" cli-spinners@^2.0.0: - version "2.3.0" - resolved "https://registry.yarnpkg.com/cli-spinners/-/cli-spinners-2.3.0.tgz#0632239a4b5aa4c958610142c34bb7a651fc8df5" - integrity sha512-Xs2Hf2nzrvJMFKimOR7YR0QwZ8fc0u98kdtwN1eNAZzNQgH3vK2pXzff6GJtKh7S5hoJ87ECiAiZFS2fb5Ii2w== + version "2.6.0" + resolved "https://registry.yarnpkg.com/cli-spinners/-/cli-spinners-2.6.0.tgz#36c7dc98fb6a9a76bd6238ec3f77e2425627e939" + integrity sha512-t+4/y50K/+4xcCRosKkA7W4gTr1MySvLV0q+PxmG7FJ5g+66ChKurYjxBCjHggHH3HA5Hh9cy+lcUGWDqVH+4Q== cli-table3@0.5.1: version "0.5.1" @@ -5826,10 +5058,15 @@ cli-width@^2.0.0: resolved "https://registry.yarnpkg.com/cli-width/-/cli-width-2.2.1.tgz#b0433d0b4e9c847ef18868a4ef16fd5fc8271c48" integrity sha512-GRMWDxpOB6Dgk2E5Uo+3eEBvtOOlimMmpbFiKuLFnQzYDavtLFY3K5ona41jgN/WdRZtG7utuVSVTL4HbZHGkw== +cli-width@^3.0.0: + version "3.0.0" + resolved "https://registry.yarnpkg.com/cli-width/-/cli-width-3.0.0.tgz#a2f48437a2caa9a22436e794bf071ec9e61cedf6" + integrity sha512-FxqpkPPwu1HjuN93Omfm4h8uIanXofW0RxVEW3k5RKx+mJJYSthzNhp32Kzxxy3YAEZ/Dc/EWN1vZRY0+kOhbw== + clipboard@^2.0.0: - version "2.0.6" - resolved "https://registry.yarnpkg.com/clipboard/-/clipboard-2.0.6.tgz#52921296eec0fdf77ead1749421b21c968647376" - integrity sha512-g5zbiixBRk/wyKakSwCKd7vQXDjFnAMGHoEyBogG/bw9kTD9GvdAvaoRR1ALcEzt3pVKxZR0pViekPMIS0QyGg== + version "2.0.8" + resolved "https://registry.yarnpkg.com/clipboard/-/clipboard-2.0.8.tgz#ffc6c103dd2967a83005f3f61976aa4655a4cdba" + integrity sha512-Y6WO0unAIQp5bLmk1zdThRhgJt/x3ks6f30s3oE3H1mgIEU33XyQjEf8gsf6DxC7NPX8Y1SsNWjUjL/ywLnnbQ== dependencies: good-listener "^1.2.2" select "^1.1.2" @@ -5881,6 +5118,15 @@ clone-deep@^2.0.1: kind-of "^6.0.0" shallow-clone "^1.0.0" +clone-deep@^4.0.1: + version "4.0.1" + resolved "https://registry.yarnpkg.com/clone-deep/-/clone-deep-4.0.1.tgz#c19fd9bdbbf85942b4fd979c84dcf7d5f07c2387" + integrity sha512-neHB9xuzh/wk0dIHweyAXv2aPGZIVk3pLMe+/RNzINf17fe0OG96QroktYAUm7SM1PBnzTabaLboqqxDyMU+SQ== + dependencies: + is-plain-object "^2.0.4" + kind-of "^6.0.2" + shallow-clone "^3.0.0" + clone@^1.0.2: version "1.0.4" resolved "https://registry.yarnpkg.com/clone/-/clone-1.0.4.tgz#da309cc263df15994c688ca902179ca3c7cd7c7e" @@ -5920,7 +5166,7 @@ collection-visit@^1.0.0: map-visit "^1.0.0" object-visit "^1.0.0" -color-convert@^1.9.0, color-convert@^1.9.1: +color-convert@^1.9.0, color-convert@^1.9.3: version "1.9.3" resolved "https://registry.yarnpkg.com/color-convert/-/color-convert-1.9.3.tgz#bb71850690e1f136567de629d2d5471deda4c1e8" integrity sha512-QfAUtd+vFdAtFQcC8CCyYt1fYWxSqAiK2cSD6zDB8N3cpsEBAvRxp9zOGg6G/SHHJYAT88/az/IuDGALsNVbGg== @@ -5944,10 +5190,10 @@ color-name@^1.0.0, color-name@~1.1.4: resolved "https://registry.yarnpkg.com/color-name/-/color-name-1.1.4.tgz#c2a09a87acbde69543de6f63fa3995c826c536a2" integrity sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA== -color-string@^1.5.4: - version "1.5.4" - resolved "https://registry.yarnpkg.com/color-string/-/color-string-1.5.4.tgz#dd51cd25cfee953d138fe4002372cc3d0e504cb6" - integrity sha512-57yF5yt8Xa3czSEW1jfQDE79Idk0+AkN/4KWad6tbdxUmAs3MvjxlWSWD4deYytcRfoZ9nhKyFl1kj5tBvidbw== +color-string@^1.6.0: + version "1.6.0" + resolved "https://registry.yarnpkg.com/color-string/-/color-string-1.6.0.tgz#c3915f61fe267672cb7e1e064c9d692219f6c312" + integrity sha512-c/hGS+kRWJutUBEngKKmk4iH3sD59MBkoxVapS/0wgpCz2u7XsNloxknyvBhzwEs1IbV36D9PwqLPJ2DTu3vMA== dependencies: color-name "^1.0.0" simple-swizzle "^0.2.2" @@ -5963,19 +5209,14 @@ color2k@1.2.4: integrity sha512-DiwdBwc0BryPFFXoCrW8XQGXl2rEtMToODybxZjKnN5IJXt/tV/FsN02pCK/b7KcWvJEioz3c74lQSmayFvS4Q== color@^3.1.0, color@^3.1.3: - version "3.1.3" - resolved "https://registry.yarnpkg.com/color/-/color-3.1.3.tgz#ca67fb4e7b97d611dcde39eceed422067d91596e" - integrity sha512-xgXAcTHa2HeFCGLE9Xs/R82hujGtu9Jd9x4NW3T34+OMs7VoPsjwzRczKHvTAHeJwWFwX5j15+MgAppE8ztObQ== + version "3.2.1" + resolved "https://registry.yarnpkg.com/color/-/color-3.2.1.tgz#3544dc198caf4490c3ecc9a790b54fe9ff45e164" + integrity sha512-aBl7dZI9ENN6fUGC7mWpMTPNHmWUSNan9tuWN6ahh5ZLNk9baLJOnSMlrQkHcrfFgz2/RigjUVAjdx36VcemKA== dependencies: - color-convert "^1.9.1" - color-string "^1.5.4" - -colorette@^1.0.7: - version "1.2.0" - resolved "https://registry.yarnpkg.com/colorette/-/colorette-1.2.0.tgz#45306add826d196e8c87236ac05d797f25982e63" - integrity sha512-soRSroY+OF/8OdA3PTQXwaDJeMc7TfknKKrxeSCencL2a4+Tx5zhxmmv7hdpCjhKBjehzp8+bwe/T68K0hpIjw== + color-convert "^1.9.3" + color-string "^1.6.0" -colorette@^1.2.1, colorette@^1.2.2: +colorette@^1.0.7, colorette@^1.2.1, colorette@^1.2.2: version "1.2.2" resolved "https://registry.yarnpkg.com/colorette/-/colorette-1.2.2.tgz#cbcc79d5e99caea2dbf10eb3a26fd8b3e6acfa94" integrity sha512-MKGMzyfeuutC/ZJ1cba9NqcNpfeqMUcYmyF1ZFY6/Cn7CNSAKx6a+s48sqLqyAiZuaP2TcqMhoo+dlwFnVxT9w== @@ -6012,7 +5253,7 @@ command-line-args@^3.0.0: find-replace "^1.0.2" typical "^2.6.0" -commander@^2.19.0, commander@^2.20.0, commander@~2.20.3: +commander@^2.19.0, commander@^2.20.0: version "2.20.3" resolved "https://registry.yarnpkg.com/commander/-/commander-2.20.3.tgz#fd485e84c03eb4881c20722ba48035e8531aeb33" integrity sha512-GpVkmM8vF2vQUkj2LvZmD35JxeJOLCwJ9cUkugyk2nuhbv3+mJvpLYYt+0+USMxE+oj+ey/lJEnhZw75x/OMcQ== @@ -6033,8 +5274,8 @@ commondir@^1.0.1: integrity sha1-3dgA2gxmEnOTzKWVDqloo6rxJTs= "commonmark-react-renderer@git+https://github.com/RocketChat/commonmark-react-renderer.git": - version "4.3.4" - resolved "git+https://github.com/RocketChat/commonmark-react-renderer.git#1264ac7b1c13d9be3e2f67eec6702a3132f4fac2" + version "4.3.5" + resolved "git+https://github.com/RocketChat/commonmark-react-renderer.git#996553c27ab6457775ba1f4b6a5a6a20ce7ddfbc" dependencies: lodash.assign "^4.2.0" lodash.isplainobject "^4.0.6" @@ -6042,14 +5283,14 @@ commondir@^1.0.1: xss-filters "^1.2.6" "commonmark@git+https://github.com/RocketChat/commonmark.js.git": - version "0.29.0" - resolved "git+https://github.com/RocketChat/commonmark.js.git#5d293fe9ba83a3e6f842d5d3f41a9b57c35bea1f" + version "0.29.2" + resolved "git+https://github.com/RocketChat/commonmark.js.git#020b5af060459ac2010e382e9ae431d48ed39777" dependencies: - entities "~ 1.1.1" - mdurl "~ 1.0.1" - minimist "~ 1.2.0" + entities "~2.0" + mdurl "~1.0.1" + minimist ">=1.2.2" string.prototype.repeat "^0.2.0" - xregexp "4.1.1" + xregexp "^4.3.0" commons-validator-js@^1.0.237: version "1.0.1667" @@ -6123,10 +5364,10 @@ concat-stream@^2.0.0: readable-stream "^3.0.2" typedarray "^0.0.6" -confusing-browser-globals@^1.0.9: - version "1.0.9" - resolved "https://registry.yarnpkg.com/confusing-browser-globals/-/confusing-browser-globals-1.0.9.tgz#72bc13b483c0276801681871d4898516f8f54fdd" - integrity sha512-KbS1Y0jMtyPgIxjO7ZzMAuUpAKMt1SzCL9fsrKsX6b0zJPTaT0SiSPmewwVZg9UAO83HVIlEhZF84LIjZ0lmAw== +confusing-browser-globals@^1.0.10: + version "1.0.10" + resolved "https://registry.yarnpkg.com/confusing-browser-globals/-/confusing-browser-globals-1.0.10.tgz#30d1e7f3d1b882b25ec4933d1d1adac353d20a59" + integrity sha512-gNld/3lySHwuhaVluJUKLePYirM3QNCKzVxqAdhJII9/WXKVX5PURzMVJspS1jTslSqjeuG4KMVTSouit5YPHA== connect@^3.6.5: version "3.7.0" @@ -6176,9 +5417,9 @@ convert-base@^0.1.0: integrity sha1-jadOuY8ei53na9kqPc6X8dN/Mrc= convert-source-map@^1.4.0, convert-source-map@^1.5.0, convert-source-map@^1.5.1, convert-source-map@^1.6.0, convert-source-map@^1.7.0: - version "1.7.0" - resolved "https://registry.yarnpkg.com/convert-source-map/-/convert-source-map-1.7.0.tgz#17a2cb882d7f77d3490585e2ce6c524424a3a442" - integrity sha512-4FJkXzKXEDB1snCFZlLP4gpC3JILicCpGbzG9f9G7tGqGCzETQ2hWPrcinA9oU4wtf2biUaEH5065UnMeR33oA== + version "1.8.0" + resolved "https://registry.yarnpkg.com/convert-source-map/-/convert-source-map-1.8.0.tgz#f3373c32d21b4d780dd8004514684fb791ca4369" + integrity sha512-+OQdjP49zViI/6i7nIJpA8rAl4sV/JdPfU9nZs3VqOwGIgizICvuN2ru6fMd+4llL0tar18UYJXfZ/TWtmhUjA== dependencies: safe-buffer "~5.1.1" @@ -6216,51 +5457,33 @@ copy-to-clipboard@^3.0.8: dependencies: toggle-selection "^1.0.6" -core-js-compat@^3.14.0: - version "3.14.0" - resolved "https://registry.yarnpkg.com/core-js-compat/-/core-js-compat-3.14.0.tgz#b574dabf29184681d5b16357bd33d104df3d29a5" - integrity sha512-R4NS2eupxtiJU+VwgkF9WTpnSfZW4pogwKHd8bclWU2sp93Pr5S1uYJI84cMOubJRou7bcfL0vmwtLslWN5p3A== - dependencies: - browserslist "^4.16.6" - semver "7.0.0" - -core-js-compat@^3.15.0: - version "3.15.1" - resolved "https://registry.yarnpkg.com/core-js-compat/-/core-js-compat-3.15.1.tgz#1afe233716d37ee021956ef097594071b2b585a7" - integrity sha512-xGhzYMX6y7oEGQGAJmP2TmtBLvR4nZmRGEcFa3ubHOq5YEp51gGN9AovVa0AoujGZIq+Wm6dISiYyGNfdflYww== +core-js-compat@^3.14.0, core-js-compat@^3.15.0: + version "3.15.2" + resolved "https://registry.yarnpkg.com/core-js-compat/-/core-js-compat-3.15.2.tgz#47272fbb479880de14b4e6081f71f3492f5bd3cb" + integrity sha512-Wp+BJVvwopjI+A1EFqm2dwUmWYXrvucmtIB2LgXn/Rb+gWPKYxtmb4GKHGKG/KGF1eK9jfjzT38DITbTOCX/SQ== dependencies: browserslist "^4.16.6" semver "7.0.0" -core-js-pure@^3.0.0: - version "3.6.5" - resolved "https://registry.yarnpkg.com/core-js-pure/-/core-js-pure-3.6.5.tgz#c79e75f5e38dbc85a662d91eea52b8256d53b813" - integrity sha512-lacdXOimsiD0QyNf9BC/mxivNJ/ybBGJXQFKzRekp1WTHoVUWsUHEn+2T8GJAzzIhyOuXA+gOxCVN3l+5PLPUA== - -core-js-pure@^3.0.1: - version "3.15.1" - resolved "https://registry.yarnpkg.com/core-js-pure/-/core-js-pure-3.15.1.tgz#8356f6576fa2aa8e54ca6fe02620968ff010eed7" - integrity sha512-OZuWHDlYcIda8sJLY4Ec6nWq2hRjlyCqCZ+jCflyleMkVt3tPedDVErvHslyS2nbO+SlBFMSBJYvtLMwxnrzjA== - -core-js-pure@^3.14.0: - version "3.14.0" - resolved "https://registry.yarnpkg.com/core-js-pure/-/core-js-pure-3.14.0.tgz#72bcfacba74a65ffce04bf94ae91d966e80ee553" - integrity sha512-YVh+LN2FgNU0odThzm61BsdkwrbrchumFq3oztnE9vTKC4KS2fvnPmcx8t6jnqAyOTCTF4ZSiuK8Qhh7SNcL4g== +core-js-pure@^3.0.1, core-js-pure@^3.15.0: + version "3.15.2" + resolved "https://registry.yarnpkg.com/core-js-pure/-/core-js-pure-3.15.2.tgz#c8e0874822705f3385d3197af9348f7c9ae2e3ce" + integrity sha512-D42L7RYh1J2grW8ttxoY1+17Y4wXZeKe7uyplAI3FkNQyI5OgBIAjUfFiTPfL1rs0qLpxaabITNbjKl1Sp82tA== core-js@^1.0.0: version "1.2.7" resolved "https://registry.yarnpkg.com/core-js/-/core-js-1.2.7.tgz#652294c14651db28fa93bd2d5ff2983a4f08c636" integrity sha1-ZSKUwUZR2yj6k70tX/KYOk8IxjY= -core-js@^2.2.2, core-js@^2.4.0, core-js@^2.4.1, core-js@^2.5.0: - version "2.6.11" - resolved "https://registry.yarnpkg.com/core-js/-/core-js-2.6.11.tgz#38831469f9922bded8ee21c9dc46985e0399308c" - integrity sha512-5wjnpaT/3dV+XB4borEsnAYQchn00XSgTAWKDkEqv+K8KevjbzmofK6hfJ9TZIlpj2N0xQpazy7PiRQiWHqzWg== +core-js@^2.4.0, core-js@^2.4.1, core-js@^2.5.0: + version "2.6.12" + resolved "https://registry.yarnpkg.com/core-js/-/core-js-2.6.12.tgz#d9333dfa7b065e347cc5682219d6f690859cc2ec" + integrity sha512-Kb2wC0fvsWfQrgk8HU5lW6U/Lcs8+9aaYcy4ZFc6DDlo4nZ7n70dEgE5rtR0oG6ufKDUnrwfWL1mXR5ljDatrQ== core-js@^3.0.1, core-js@^3.0.4: - version "3.6.5" - resolved "https://registry.yarnpkg.com/core-js/-/core-js-3.6.5.tgz#7395dc273af37fb2e50e9bd3d9fe841285231d1a" - integrity sha512-vZVEEwZoIsI+vPEuoF9Iqf5H7/M3eeQqWlQnYa8FSKKePuYTf5MWnxb5SDAzCa60b3JBRS5g9b+Dq7b1y/RCrA== + version "3.15.2" + resolved "https://registry.yarnpkg.com/core-js/-/core-js-3.15.2.tgz#740660d2ff55ef34ce664d7e2455119c5bdd3d61" + integrity sha512-tKs41J7NJVuaya8DxIOCnl8QuPHx5/ZVbFo1oKgVl1qHFBBrDctzQGtuLjPpRdNTWmKPH6oEvgN/MUID+l485Q== core-util-is@1.0.2, core-util-is@~1.0.0: version "1.0.2" @@ -6297,12 +5520,12 @@ cosmiconfig@^6.0.0: yaml "^1.7.2" create-ecdh@^4.0.0: - version "4.0.3" - resolved "https://registry.yarnpkg.com/create-ecdh/-/create-ecdh-4.0.3.tgz#c9111b6f33045c4697f144787f9254cdc77c45ff" - integrity sha512-GbEHQPMOswGpKXM9kCWVrremUcBmjteUaQ01T9rkKCPDXfUHX0IoP9LpHYo2NPFampa4e+/pFDc3jQdxrxQLaw== + version "4.0.4" + resolved "https://registry.yarnpkg.com/create-ecdh/-/create-ecdh-4.0.4.tgz#d6e7f4bffa66736085a0762fd3a632684dabcc4e" + integrity sha512-mf+TCx8wWc9VpuxfP2ht0iSISLZnt0JgWlrOKZiNqyUZWnjIaCIVNQArMHnCZKfEYRg6IM7A+NeJoN8gf/Ws0A== dependencies: bn.js "^4.1.0" - elliptic "^6.0.0" + elliptic "^6.5.3" create-hash@^1.1.0, create-hash@^1.1.2, create-hash@^1.2.0: version "1.2.0" @@ -6328,11 +5551,10 @@ create-hmac@^1.1.0, create-hmac@^1.1.4, create-hmac@^1.1.7: sha.js "^2.4.8" create-react-class@^15.6.2: - version "15.6.3" - resolved "https://registry.yarnpkg.com/create-react-class/-/create-react-class-15.6.3.tgz#2d73237fb3f970ae6ebe011a9e66f46dbca80036" - integrity sha512-M+/3Q6E6DLO6Yx3OwrWjwHBnvfXXYA7W+dFjt/ZDBemHO1DDZhsalX/NUtnTYclN6GfnBDRh4qRHjcDHmlJBJg== + version "15.7.0" + resolved "https://registry.yarnpkg.com/create-react-class/-/create-react-class-15.7.0.tgz#7499d7ca2e69bb51d13faf59bd04f0c65a1d6c1e" + integrity sha512-QZv4sFWG9S5RUvkTYWbflxeZX+JG7Cz0Tn33rQBJ+WFQTqTfUTjMjiv9tnfXazjsO5r0KhPs+AqCjyrQX6h2ng== dependencies: - fbjs "^0.8.9" loose-envify "^1.3.1" object-assign "^4.1.1" @@ -6344,6 +5566,13 @@ create-react-context@0.3.0: gud "^1.0.0" warning "^4.0.3" +cross-fetch@^3.0.4: + version "3.1.4" + resolved "https://registry.yarnpkg.com/cross-fetch/-/cross-fetch-3.1.4.tgz#9723f3a3a247bf8b89039f3a380a9244e8fa2f39" + integrity sha512-1eAtFWdIubi6T4XPy6ei9iUFoKpUkIF971QLN8lIvvvwueI65+Nw5haMNKUwfJxabqlIIDODJKGrQ66gxC0PbQ== + dependencies: + node-fetch "2.6.1" + cross-spawn@6.0.5, cross-spawn@^6.0.0, cross-spawn@^6.0.5: version "6.0.5" resolved "https://registry.yarnpkg.com/cross-spawn/-/cross-spawn-6.0.5.tgz#4a5ec7c64dfae22c3a14124dbacdee846d80cbc4" @@ -6422,15 +5651,16 @@ css-loader@^3.0.0: schema-utils "^2.7.0" semver "^6.3.0" -css-select@^1.1.0: - version "1.2.0" - resolved "https://registry.yarnpkg.com/css-select/-/css-select-1.2.0.tgz#2b3a110539c5355f1cd8d314623e870b121ec858" - integrity sha1-KzoRBTnFNV8c2NMUYj6HCxIeyFg= +css-select@^4.1.3: + version "4.1.3" + resolved "https://registry.yarnpkg.com/css-select/-/css-select-4.1.3.tgz#a70440f70317f2669118ad74ff105e65849c7067" + integrity sha512-gT3wBNd9Nj49rAbmtFHj1cljIAOLYSX1nZ8CB7TBO3INYckygm5B7LISU/szY//YmdiSLbJvDLOx9VnMVpMBxA== dependencies: - boolbase "~1.0.0" - css-what "2.1" - domutils "1.5.1" - nth-check "~1.0.1" + boolbase "^1.0.0" + css-what "^5.0.0" + domhandler "^4.2.0" + domutils "^2.6.0" + nth-check "^2.0.0" css-to-react-native@^2.2.1: version "2.3.2" @@ -6441,10 +5671,10 @@ css-to-react-native@^2.2.1: css-color-keywords "^1.0.0" postcss-value-parser "^3.3.0" -css-what@2.1: - version "2.1.3" - resolved "https://registry.yarnpkg.com/css-what/-/css-what-2.1.3.tgz#a6d7604573365fe74686c3f311c56513d88285f2" - integrity sha512-a+EPoD+uZiNfh+5fxw2nO9QwFa6nJe2Or35fGY6Ipw1R3R4AGz1d1TEZrCegvw2YTmZ0jXirGYlzxxpYSHwpEg== +css-what@^5.0.0: + version "5.0.1" + resolved "https://registry.yarnpkg.com/css-what/-/css-what-5.0.1.tgz#3efa820131f4669a8ac2408f9c32e7c7de9f4cad" + integrity sha512-FYDTSHb/7KXsWICVsxdmiExPjCfRC4qRFBdVwv7Ax9hMnvMmEjP9RfxTEZ3qPZGmADDn2vAKSo9UcN1jKVYscg== cssesc@^3.0.0: version "3.0.0" @@ -6475,10 +5705,10 @@ cssstyle@^2.0.0: dependencies: cssom "~0.3.6" -csstype@^2.2.0, csstype@^2.5.7: - version "2.6.10" - resolved "https://registry.yarnpkg.com/csstype/-/csstype-2.6.10.tgz#e63af50e66d7c266edb6b32909cfd0aabe03928b" - integrity sha512-D34BqZU4cIlMCY93rZHbrq9pjTAQJ3U8S8rfBqjwHxkGPThWFjzZDQpgMJY0QViLxth6ZKYiwFBo14RdN44U/w== +csstype@^2.5.7: + version "2.6.17" + resolved "https://registry.yarnpkg.com/csstype/-/csstype-2.6.17.tgz#4cf30eb87e1d1a005d8b6510f95292413f6a1c0e" + integrity sha512-u1wmTI1jJGzCJzWndZo8mk4wnPTZd1eOIYTYvuEyOQGfmDl3TrabCCfKnOC86FZwW/9djqTl933UF/cS425i9A== csstype@^3.0.2: version "3.0.8" @@ -6498,9 +5728,9 @@ cyclist@^1.0.1: integrity sha1-WW6WmP0MgOEgOMK4LW6xs1tiJNk= damerau-levenshtein@^1.0.6: - version "1.0.6" - resolved "https://registry.yarnpkg.com/damerau-levenshtein/-/damerau-levenshtein-1.0.6.tgz#143c1641cb3d85c60c32329e26899adea8701791" - integrity sha512-JVrozIeElnj3QzfUIt8tB8YMluBJom4Vw9qTPpjGYQ9fYlB3D/rb6OordUxf3xeFB35LKWs0xqcO5U6ySvBtug== + version "1.0.7" + resolved "https://registry.yarnpkg.com/damerau-levenshtein/-/damerau-levenshtein-1.0.7.tgz#64368003512a1a6992593741a09a9d31a836f55d" + integrity sha512-VvdQIPGdWP0SqFXghj79Wf/5LArmreyMsGLa6FG6iC4t3j7j5s71TrwWmT/4akbDQIqjfACkLZmjXhA7g2oUZw== dashdash@^1.12.0: version "1.14.1" @@ -6519,9 +5749,9 @@ data-urls@^1.0.0, data-urls@^1.1.0: whatwg-url "^7.0.0" dayjs@^1.8.15: - version "1.8.27" - resolved "https://registry.yarnpkg.com/dayjs/-/dayjs-1.8.27.tgz#a8ae63ee990af28c05c430f0e160ae835a0fbbf8" - integrity sha512-Jpa2acjWIeOkg8KURUHICk0EqnEFSSF5eMEscsOgyJ92ZukXwmpmRkPSUka7KHSfbj5eKH30ieosYip+ky9emQ== + version "1.10.6" + resolved "https://registry.yarnpkg.com/dayjs/-/dayjs-1.10.6.tgz#288b2aa82f2d8418a6c9d4df5898c0737ad02a63" + integrity sha512-AztC/IOW4L1Q41A86phW5Thhcrco3xuAA+YX/BLpLWWjRcTj5TOt/QImBLmCKlrF7u7k47arTnOyL6GnbG8Hvw== debug@2.6.9, debug@^2.2.0, debug@^2.3.3, debug@^2.6.0, debug@^2.6.8, debug@^2.6.9: version "2.6.9" @@ -6530,12 +5760,12 @@ debug@2.6.9, debug@^2.2.0, debug@^2.3.3, debug@^2.6.0, debug@^2.6.8, debug@^2.6. dependencies: ms "2.0.0" -debug@4, debug@^4.0.1, debug@^4.1.0, debug@^4.1.1: - version "4.1.1" - resolved "https://registry.yarnpkg.com/debug/-/debug-4.1.1.tgz#3b72260255109c6b589cee050f1d516139664791" - integrity sha512-pYAIzeRo8J6KPEaJ0VWOh5Pzkbw/RetuzehGM7QRRX5he4fPHx2rdKMB256ehJCkX+XRQm16eZLqLNS8RSZXZw== +debug@4, debug@^4.0.1, debug@^4.1.0, debug@^4.1.1, debug@^4.3.1: + version "4.3.2" + resolved "https://registry.yarnpkg.com/debug/-/debug-4.3.2.tgz#f0a49c18ac8779e31d4a0c6029dfb76873c7428b" + integrity sha512-mOp8wKcvj7XxC78zLgw/ZA+6TSgkoE2C/ienthhRD298T7UNwAg9diBpLRxC0mOezLl4B0xV7M0cCO6P/O0Xhw== dependencies: - ms "^2.1.1" + ms "2.1.2" debug@4.3.1: version "4.3.1" @@ -6544,14 +5774,7 @@ debug@4.3.1: dependencies: ms "2.1.2" -debug@^3.0.0, debug@^3.1.0: - version "3.2.6" - resolved "https://registry.yarnpkg.com/debug/-/debug-3.2.6.tgz#e83d17de16d8a7efb7717edbe5fb10135eee629b" - integrity sha512-mel+jf7nrtEl5Pn1Qx46zARXKDpBbvzezse7p7LqINmdoIk8PYP5SySaxEmYv6TZ0JyEKA1hsCId6DIhgITtWQ== - dependencies: - ms "^2.1.1" - -debug@^3.2.5, debug@^3.2.7: +debug@^3.0.0, debug@^3.1.0, debug@^3.2.5, debug@^3.2.7: version "3.2.7" resolved "https://registry.yarnpkg.com/debug/-/debug-3.2.7.tgz#72580b7e9145fb39b6676f9c5e5fb100b934179a" integrity sha512-CFjzYYAi4ThfiQvizrFQevTTXHtnCqWfe7x1AhgEscTz6ZbLbfoLRLPugTQyBth6f8ZERVUSyWHFD/7Wu4t1XQ== @@ -6563,13 +5786,6 @@ decamelize@^1.1.1, decamelize@^1.1.2, decamelize@^1.2.0: resolved "https://registry.yarnpkg.com/decamelize/-/decamelize-1.2.0.tgz#f6534d15148269b20352e7bee26f501f9a191290" integrity sha1-9lNNFRSCabIDUue+4m9QH5oZEpA= -decamelize@^3.2.0: - version "3.2.0" - resolved "https://registry.yarnpkg.com/decamelize/-/decamelize-3.2.0.tgz#84b8e8f4f8c579f938e35e2cc7024907e0090851" - integrity sha512-4TgkVUsmmu7oCSyGBm5FvfMoACuoh9EOidm7V5/J2X2djAwwt57qb3F2KMP2ITqODTCSwb+YRV+0Zqrv18k/hw== - dependencies: - xregexp "^4.2.4" - decamelize@^4.0.0: version "4.0.0" resolved "https://registry.yarnpkg.com/decamelize/-/decamelize-4.0.0.tgz#aa472d7bf660eb15f3494efd531cab7f2a709837" @@ -6789,6 +6005,11 @@ diff-sequences@^25.2.6: resolved "https://registry.yarnpkg.com/diff-sequences/-/diff-sequences-25.2.6.tgz#5f467c00edd35352b7bca46d7927d60e687a76dd" integrity sha512-Hq8o7+6GaZeoFjtpgvRBUknSXNeJiCx7V9Fr94ZMljNiCr9n9L8H8aJqgWOQiDDGdyn29fRNcDdRVJ5fdyihfg== +diff-sequences@^26.6.2: + version "26.6.2" + resolved "https://registry.yarnpkg.com/diff-sequences/-/diff-sequences-26.6.2.tgz#48ba99157de1923412eed41db6b6d4aa9ca7c0b1" + integrity sha512-Mv/TDa3nZ9sbc5soK+OoA74BsS3mL37yixCvUAQkiuA4Wz6YtwP/K47n2rv2ovzHZvoiQeA5FTQOschKkEwB0Q== + diff@5.0.0: version "5.0.0" resolved "https://registry.yarnpkg.com/diff/-/diff-5.0.0.tgz#7ed6ad76d859d030787ec35855f5b1daf31d852b" @@ -6816,6 +6037,13 @@ dir-glob@2.0.0: arrify "^1.0.1" path-type "^3.0.0" +dir-glob@^3.0.1: + version "3.0.1" + resolved "https://registry.yarnpkg.com/dir-glob/-/dir-glob-3.0.1.tgz#56dbf73d992a4a93ba1584f4534063fd2e41717f" + integrity sha512-WkrWp9GR4KXfKGYzOLmTuGVi1UWFfws377n9cc55/tb6DuqyF6pcQ5AbiHEshaDpY9v6oaSr2XCDidGmMwdzIA== + dependencies: + path-type "^4.0.0" + doctrine@1.5.0: version "1.5.0" resolved "https://registry.yarnpkg.com/doctrine/-/doctrine-1.5.0.tgz#379dce730f6166f76cefa4e6707a159b02c5a6fa" @@ -6838,19 +6066,20 @@ doctrine@^3.0.0: dependencies: esutils "^2.0.2" -dom-converter@^0.2: +dom-converter@^0.2.0: version "0.2.0" resolved "https://registry.yarnpkg.com/dom-converter/-/dom-converter-0.2.0.tgz#6721a9daee2e293682955b6afe416771627bb768" integrity sha512-gd3ypIPfOMr9h5jIKq8E3sHOTCjeirnl0WK5ZdS1AW0Odt0b1PaWaHdJ4Qk4klv+YB9aJBS7mESXjFoDQPu6DA== dependencies: utila "~0.4" -dom-serializer@0: - version "0.2.2" - resolved "https://registry.yarnpkg.com/dom-serializer/-/dom-serializer-0.2.2.tgz#1afb81f533717175d478655debc5e332d9f9bb51" - integrity sha512-2/xPb3ORsQ42nHYiSunXkDjPLBaEj/xTwUO4B7XCZQTRk7EBtTOPaygh10YAAh2OI1Qrp6NWfpAhzswj0ydt9g== +dom-serializer@^1.0.1: + version "1.3.2" + resolved "https://registry.yarnpkg.com/dom-serializer/-/dom-serializer-1.3.2.tgz#6206437d32ceefaec7161803230c7a20bc1b4d91" + integrity sha512-5c54Bk5Dw4qAxNOI1pFEizPSjVsx5+bpJKmL2kPn8JhBUq2q09tTCa3mjijun2NfK78NMouDYNMBkOrPZiS+ig== dependencies: domelementtype "^2.0.1" + domhandler "^4.2.0" entities "^2.0.0" dom-walk@^0.1.0: @@ -6863,15 +6092,10 @@ domain-browser@^1.1.1: resolved "https://registry.yarnpkg.com/domain-browser/-/domain-browser-1.2.0.tgz#3d31f50191a6749dd1375a7f522e823d42e54eda" integrity sha512-jnjyiM6eRyZl2H+W8Q/zLMA481hzi0eszAaBUzIVnmYVDBbnLxVNnfu1HgEBvCbL+71FrxMl3E6lpKH7Ge3OXA== -domelementtype@1, domelementtype@^1.3.1: - version "1.3.1" - resolved "https://registry.yarnpkg.com/domelementtype/-/domelementtype-1.3.1.tgz#d048c44b37b0d10a7f2a3d5fee3f4333d790481f" - integrity sha512-BSKB+TSpMpFI/HOxCNr1O8aMOTZ8hT3pM3GQ0w/mWRmkhEDSFJkkyzz4XQsBV44BChwGkrDfMyjVD0eA2aFV3w== - -domelementtype@^2.0.1: - version "2.0.1" - resolved "https://registry.yarnpkg.com/domelementtype/-/domelementtype-2.0.1.tgz#1f8bdfe91f5a78063274e803b4bdcedf6e94f94d" - integrity sha512-5HOHUDsYZWV8FGWN0Njbr/Rn7f/eWSQi1v7+HsUVwXgn8nWWlL64zKDkS0n8ZmQ3mlWOMuXOnR+7Nx/5tMO5AQ== +domelementtype@^2.0.1, domelementtype@^2.2.0: + version "2.2.0" + resolved "https://registry.yarnpkg.com/domelementtype/-/domelementtype-2.2.0.tgz#9a0b6c2782ed6a1c7323d42267183df9bd8b1d57" + integrity sha512-DtBMo82pv1dFtUmHyr48beiuq792Sxohr+8Hm9zoxklYPfa6n0Z3Byjj2IV7bmr2IyqClnqEQhfgHJJ5QF0R5A== domexception@^1.0.1: version "1.0.1" @@ -6880,36 +6104,29 @@ domexception@^1.0.1: dependencies: webidl-conversions "^4.0.2" -domhandler@^2.3.0: - version "2.4.2" - resolved "https://registry.yarnpkg.com/domhandler/-/domhandler-2.4.2.tgz#8805097e933d65e85546f726d60f5eb88b44f803" - integrity sha512-JiK04h0Ht5u/80fdLMCEmV4zkNh2BcoMFBmZ/91WtYZ8qVXSKjiw7fXMgFPnHcSZgOo3XdinHvmnDUeMf5R4wA== - dependencies: - domelementtype "1" - -domutils@1.5.1: - version "1.5.1" - resolved "https://registry.yarnpkg.com/domutils/-/domutils-1.5.1.tgz#dcd8488a26f563d61079e48c9f7b7e32373682cf" - integrity sha1-3NhIiib1Y9YQeeSMn3t+Mjc2gs8= +domhandler@^4.0.0, domhandler@^4.2.0: + version "4.2.0" + resolved "https://registry.yarnpkg.com/domhandler/-/domhandler-4.2.0.tgz#f9768a5f034be60a89a27c2e4d0f74eba0d8b059" + integrity sha512-zk7sgt970kzPks2Bf+dwT/PLzghLnsivb9CcxkvR8Mzr66Olr0Ofd8neSbglHJHaHa2MadfoSdNlKYAaafmWfA== dependencies: - dom-serializer "0" - domelementtype "1" + domelementtype "^2.2.0" -domutils@^1.5.1: - version "1.7.0" - resolved "https://registry.yarnpkg.com/domutils/-/domutils-1.7.0.tgz#56ea341e834e06e6748af7a1cb25da67ea9f8c2a" - integrity sha512-Lgd2XcJ/NjEw+7tFvfKxOzCYKZsdct5lczQ2ZaQY8Djz7pfAD3Gbp8ySJWtreII/vDlMVmxwa6pHmdxIYgttDg== +domutils@^2.5.2, domutils@^2.6.0: + version "2.7.0" + resolved "https://registry.yarnpkg.com/domutils/-/domutils-2.7.0.tgz#8ebaf0c41ebafcf55b0b72ec31c56323712c5442" + integrity sha512-8eaHa17IwJUPAiB+SoTYBo5mCdeMgdcAoXJ59m6DT1vw+5iLS3gNoqYaRowaBKtGVrOF1Jz4yDTgYKLK2kvfJg== dependencies: - dom-serializer "0" - domelementtype "1" + dom-serializer "^1.0.1" + domelementtype "^2.2.0" + domhandler "^4.2.0" -dot-case@^3.0.3: - version "3.0.3" - resolved "https://registry.yarnpkg.com/dot-case/-/dot-case-3.0.3.tgz#21d3b52efaaba2ea5fda875bb1aa8124521cf4aa" - integrity sha512-7hwEmg6RiSQfm/GwPL4AAWXKy3YNNZA3oFv2Pdiey0mwkRCPZ9x6SZbkLcn8Ma5PYeVokzoD4Twv2n7LKp5WeA== +dot-case@^3.0.4: + version "3.0.4" + resolved "https://registry.yarnpkg.com/dot-case/-/dot-case-3.0.4.tgz#9b2b670d00a431667a8a75ba29cd1b98809ce751" + integrity sha512-Kv5nKlh6yRrdrGvxeJ2e5y2eRUpkUosIW4A2AS38zwSz27zu7ufDwQPi5Jhs3XAlGNetl3bmnGhQsMtkKJnj3w== dependencies: - no-case "^3.0.3" - tslib "^1.10.0" + no-case "^3.0.4" + tslib "^2.0.3" dotenv-defaults@^1.0.2: version "1.1.1" @@ -6936,9 +6153,9 @@ dotenv@^6.2.0: integrity sha512-HygQCKUBSFl8wKQZBSemMywRWcEDNidvNbjGVyZu3nbZ8qq9ubiPoGLMdRDpfSrpkkm9BXYFkpKxxFX38o/76w== dotenv@^8.0.0: - version "8.2.0" - resolved "https://registry.yarnpkg.com/dotenv/-/dotenv-8.2.0.tgz#97e619259ada750eea3e4ea3e26bceea5424b16a" - integrity sha512-8sJ78ElpbDJBHNeBzUbUVLsqKdccaa/BXF1uPTw3GrvQTBgrQrtObr2mUrE38vzYd8cEv+m/JBfDLioYcfXoaw== + version "8.6.0" + resolved "https://registry.yarnpkg.com/dotenv/-/dotenv-8.6.0.tgz#061af664d19f7f4d8fc6e4ff9b584ce237adcb8b" + integrity sha512-IrPdXQsk2BbzvCBGBOTmmSH5SodmqZNt4ERAZDmW4CT+tL8VtvinqywuANaFu4bOMWki16nqf0e4oC0QIaDr/g== dtrace-provider@~0.8: version "0.8.8" @@ -6948,9 +6165,9 @@ dtrace-provider@~0.8: nan "^2.14.0" duplexer@^0.1.1: - version "0.1.1" - resolved "https://registry.yarnpkg.com/duplexer/-/duplexer-0.1.1.tgz#ace6ff808c1ce66b57d1ebf97977acb02334cfc1" - integrity sha1-rOb/gIwc5mtX0ev5eXessCM0z8E= + version "0.1.2" + resolved "https://registry.yarnpkg.com/duplexer/-/duplexer-0.1.2.tgz#3abe43aef3835f8ae077d136ddce0f276b0400e6" + integrity sha512-jtD6YG370ZCIi/9GTaJKQxWTZD045+4R4hTk/x1UyoqadyJ9x9CgSi1RlVDQF8U2sxLLSnFkCaMihqljHIWgMg== duplexify@^3.4.2, duplexify@^3.6.0: version "3.7.1" @@ -6985,40 +6202,30 @@ ejson@2.2.1: resolved "https://registry.yarnpkg.com/ejson/-/ejson-2.2.1.tgz#53569bdf3a60013f5dc206e0f9640b64cd674acc" integrity sha512-Tah5TfXynM7dCqnI/YyyI93/vN0hwXQrimNNzXIKmhr11vGrVtXhzwZ4Gyx+AHb4FqJa0YQORoaKnJHRB1TnwQ== -electron-to-chromium@^1.3.247: - version "1.3.754" - resolved "https://registry.yarnpkg.com/electron-to-chromium/-/electron-to-chromium-1.3.754.tgz#afbe69177ad7aae968c3bbeba129dc70dcc37cf4" - integrity sha512-Q50dJbfYYRtwK3G9mFP/EsJVzlgcYwKxFjbXmvVa1lDAbdviPcT9QOpFoufDApub4j0hBfDRL6v3lWNLEdEDXQ== - -electron-to-chromium@^1.3.413: - version "1.3.448" - resolved "https://registry.yarnpkg.com/electron-to-chromium/-/electron-to-chromium-1.3.448.tgz#682831ecf3ce505231978f7c795a2813740cae7c" - integrity sha512-WOr3SrZ55lUFYugA6sUu3H3ZoxVIH5o3zTSqYS+2DOJJP4hnHmBiD1w432a2YFW/H2G5FIxE6DB06rv+9dUL5g== - -electron-to-chromium@^1.3.723: - version "1.3.752" - resolved "https://registry.yarnpkg.com/electron-to-chromium/-/electron-to-chromium-1.3.752.tgz#0728587f1b9b970ec9ffad932496429aef750d09" - integrity sha512-2Tg+7jSl3oPxgsBsWKh5H83QazTkmWG/cnNwJplmyZc7KcN61+I10oUgaXSVk/NwfvN3BdkKDR4FYuRBQQ2v0A== +electron-to-chromium@^1.3.247, electron-to-chromium@^1.3.723: + version "1.3.785" + resolved "https://registry.yarnpkg.com/electron-to-chromium/-/electron-to-chromium-1.3.785.tgz#79f546c69a6be4f30913aaace361bc746f26df48" + integrity sha512-WmCgAeURsMFiyoJ646eUaJQ7GNfvMRLXo+GamUyKVNEM4MqTAsXyC0f38JEB4N3BtbD0tlAKozGP5E2T9K3YGg== element-resize-detector@^1.2.1: - version "1.2.2" - resolved "https://registry.yarnpkg.com/element-resize-detector/-/element-resize-detector-1.2.2.tgz#bf7c3ff915957e4e62e86241ed2f9c86b078892b" - integrity sha512-+LOXRkCJc4I5WhEJxIDjhmE3raF8jtOMBDqSCgZTMz2TX3oXAX5pE2+MDeopJlGdXzP7KzPbBJaUGfNaP9HG4A== + version "1.2.3" + resolved "https://registry.yarnpkg.com/element-resize-detector/-/element-resize-detector-1.2.3.tgz#5078d9b99398fe4c589f8c8df94ff99e5d413ff3" + integrity sha512-+dhNzUgLpq9ol5tyhoG7YLoXL3ssjfFW+0gpszXPwRU6NjGr1fVHMEAF8fVzIiRJq57Nre0RFeIjJwI8Nh2NmQ== dependencies: batch-processor "1.0.0" -elliptic@^6.0.0, elliptic@^6.5.2: - version "6.5.2" - resolved "https://registry.yarnpkg.com/elliptic/-/elliptic-6.5.2.tgz#05c5678d7173c049d8ca433552224a495d0e3762" - integrity sha512-f4x70okzZbIQl/NSRLkI/+tteV/9WqL98zx+SQ69KbXxmVrmjwsNUPn/gYJJ0sHvEak24cZgHIPegRePAtA/xw== +elliptic@^6.5.3: + version "6.5.4" + resolved "https://registry.yarnpkg.com/elliptic/-/elliptic-6.5.4.tgz#da37cebd31e79a1367e941b592ed1fbebd58abbb" + integrity sha512-iLhC6ULemrljPZb+QutR5TQGB+pdW6KGD5RSegS+8sorOZT+rdQFbsQFJgvN3eRqNALqJer4oQ16YvJHlU8hzQ== dependencies: - bn.js "^4.4.0" - brorand "^1.0.1" + bn.js "^4.11.9" + brorand "^1.1.0" hash.js "^1.0.0" - hmac-drbg "^1.0.0" - inherits "^2.0.1" - minimalistic-assert "^1.0.0" - minimalistic-crypto-utils "^1.0.0" + hmac-drbg "^1.0.1" + inherits "^2.0.4" + minimalistic-assert "^1.0.1" + minimalistic-crypto-utils "^1.0.1" emoji-regex@^7.0.1: version "7.0.3" @@ -7031,9 +6238,9 @@ emoji-regex@^8.0.0: integrity sha512-MSjYzcWNOA0ewAHpz0MxpYFvwg6yjy1NG3xteoqz644VCo/RPgnr1/GGt+ic3iJTzQ8Eu3TdM14SawnVUmGE6A== emoji-regex@^9.0.0: - version "9.0.0" - resolved "https://registry.yarnpkg.com/emoji-regex/-/emoji-regex-9.0.0.tgz#48a2309cc8a1d2e9d23bc6a67c39b63032e76ea4" - integrity sha512-6p1NII1Vm62wni/VR/cUMauVQoxmLVb9csqQlvLz+hO2gk8U2UYDfXHQSUYIBKmZwAKz867IDqG7B+u0mj+M6w== + version "9.2.2" + resolved "https://registry.yarnpkg.com/emoji-regex/-/emoji-regex-9.2.2.tgz#840c8803b0d8047f4ff0cf963176b32d4ef3ed72" + integrity sha512-L18DaJsXSUk2+42pv8mLs5jJT2hqFkFE4j21wOmgbUqsZ2hL72NsUU785g9RXgo3s0ZNgVl42TiHp3ZtOv/Vyg== emojis-list@^2.0.0: version "2.1.0" @@ -7060,11 +6267,11 @@ encodeurl@~1.0.2: integrity sha1-rT/0yG7C0CkyL1oCw6mmBslbP1k= encoding@^0.1.11: - version "0.1.12" - resolved "https://registry.yarnpkg.com/encoding/-/encoding-0.1.12.tgz#538b66f3ee62cd1ab51ec323829d1f9480c74beb" - integrity sha1-U4tm8+5izRq1HsMjgp0flIDHS+s= + version "0.1.13" + resolved "https://registry.yarnpkg.com/encoding/-/encoding-0.1.13.tgz#56574afdd791f54a8e9b2785c0582a2d26210fa9" + integrity sha512-ETBauow1T35Y/WZMkio9jiM0Z5xjHHmJ4XmjZOq1l/dXz3lr2sRn87nJy20RupqSh1F2m3HHPSp8ShIPQJrJ3A== dependencies: - iconv-lite "~0.4.13" + iconv-lite "^0.6.2" end-of-stream@^1.0.0, end-of-stream@^1.1.0: version "1.4.4" @@ -7082,25 +6289,25 @@ enhanced-resolve@^4.5.0: memory-fs "^0.5.0" tapable "^1.0.0" -entities@^1.1.1, entities@^1.1.2, "entities@~ 1.1.1": - version "1.1.2" - resolved "https://registry.yarnpkg.com/entities/-/entities-1.1.2.tgz#bdfa735299664dfafd34529ed4f8522a275fea56" - integrity sha512-f2LZMYl1Fzu7YSBKg+RoROelpOaNrcGmE9AZubeDfrCEia483oW4MI4VyFd5VNHIgQ/7qm1I0wUHK1eJnn2y2w== - entities@^2.0.0: - version "2.0.2" - resolved "https://registry.yarnpkg.com/entities/-/entities-2.0.2.tgz#ac74db0bba8d33808bbf36809c3a5c3683531436" - integrity sha512-dmD3AvJQBUjKpcNkoqr+x+IF0SdRtPz9Vk0uTy4yWqga9ibB6s4v++QFWNohjiUGoMlF552ZvNyXDxz5iW0qmw== + version "2.2.0" + resolved "https://registry.yarnpkg.com/entities/-/entities-2.2.0.tgz#098dc90ebb83d8dffa089d55256b351d34c4da55" + integrity sha512-p92if5Nz619I0w+akJrLZH0MX0Pb5DX39XOwQTtXSdQQOaYH03S1uIQp4mhOZtAXrxq4ViO67YTiLBo2638o9A== + +entities@~2.0: + version "2.0.3" + resolved "https://registry.yarnpkg.com/entities/-/entities-2.0.3.tgz#5c487e5742ab93c15abb5da22759b8590ec03b7f" + integrity sha512-MyoZ0jgnLvB2X3Lg5HqpFmn1kybDiIfEQmKzTb5apr51Rb+T3KdmMiqa70T+bhGnyv7bQ6WMj2QMHpGMmlrUYQ== envinfo@^7.7.2: - version "7.7.3" - resolved "https://registry.yarnpkg.com/envinfo/-/envinfo-7.7.3.tgz#4b2d8622e3e7366afb8091b23ed95569ea0208cc" - integrity sha512-46+j5QxbPWza0PB1i15nZx0xQ4I/EfQxg9J8Had3b408SV63nEtor2e+oiY63amTo9KTuh2a3XLObNwduxYwwA== + version "7.8.1" + resolved "https://registry.yarnpkg.com/envinfo/-/envinfo-7.8.1.tgz#06377e3e5f4d379fea7ac592d5ad8927e0c4d475" + integrity sha512-/o+BXHmB7ocbHEAs6F2EnG0ogybVVUdkRunTT2glZU9XAaGmhqskrvKwqXuDfNjEO0LZKWdejEEpnq8aM0tOaw== errno@^0.1.3, errno@~0.1.7: - version "0.1.7" - resolved "https://registry.yarnpkg.com/errno/-/errno-0.1.7.tgz#4684d71779ad39af177e3f007996f7c67c852618" - integrity sha512-MfrRBDWzIWifgq6tJj60gkAwtLNb6sQPlcFrSOflcP1aFmmruKQ2wRnze/8V6kgyz7H3FF8Npzv78mZ7XLLflg== + version "0.1.8" + resolved "https://registry.yarnpkg.com/errno/-/errno-0.1.8.tgz#8bb3e9c7d463be4976ff888f76b4809ebc2e811f" + integrity sha512-dJ6oBr5SQ1VSd9qkk7ByRgb/1SH4JZjCHSW/mr63/QcXO9zLVxvJ6Oy13nio03rxpSnVDDjFor75SjVeZWPW/A== dependencies: prr "~1.0.1" @@ -7126,24 +6333,7 @@ errorhandler@^1.5.0: accepts "~1.3.7" escape-html "~1.0.3" -es-abstract@^1.17.0, es-abstract@^1.17.0-next.0, es-abstract@^1.17.0-next.1, es-abstract@^1.17.2, es-abstract@^1.17.4, es-abstract@^1.17.5: - version "1.17.5" - resolved "https://registry.yarnpkg.com/es-abstract/-/es-abstract-1.17.5.tgz#d8c9d1d66c8981fb9200e2251d799eee92774ae9" - integrity sha512-BR9auzDbySxOcfog0tLECW8l28eRGpDpU3Dm3Hp4q/N+VtLTmyj4EUN088XZWQDW/hzj6sYRDXeOFsaAODKvpg== - dependencies: - es-to-primitive "^1.2.1" - function-bind "^1.1.1" - has "^1.0.3" - has-symbols "^1.0.1" - is-callable "^1.1.5" - is-regex "^1.0.5" - object-inspect "^1.7.0" - object-keys "^1.1.1" - object.assign "^4.1.0" - string.prototype.trimleft "^2.1.1" - string.prototype.trimright "^2.1.1" - -es-abstract@^1.18.0-next.1, es-abstract@^1.18.0-next.2, es-abstract@^1.18.2: +es-abstract@^1.17.0-next.0, es-abstract@^1.18.0-next.1, es-abstract@^1.18.0-next.2, es-abstract@^1.18.2: version "1.18.3" resolved "https://registry.yarnpkg.com/es-abstract/-/es-abstract-1.18.3.tgz#25c4c3380a27aa203c44b2b685bba94da31b63e0" integrity sha512-nQIr12dxV7SSxE6r6f1l3DtAeEYdsGpps13dR0TwJg1S8gyp4ZPgy3FZcHBgbiQqnoqSTb+oC+kO4UQ0C/J8vw== @@ -7171,15 +6361,16 @@ es-array-method-boxes-properly@^1.0.0: integrity sha512-wd6JXUmyHmt8T5a2xreUwKcGPq6f1f+WwIJkijUqiGcJz1qqnZgP6XIK+QyIWU5lT7imeNxUll48bziG+TSYcA== es-get-iterator@^1.0.2: - version "1.1.0" - resolved "https://registry.yarnpkg.com/es-get-iterator/-/es-get-iterator-1.1.0.tgz#bb98ad9d6d63b31aacdc8f89d5d0ee57bcb5b4c8" - integrity sha512-UfrmHuWQlNMTs35e1ypnvikg6jCz3SK8v8ImvmDsh36fCVUR1MqoFDiyn0/k52C8NqO3YsO8Oe0azeesNuqSsQ== + version "1.1.2" + resolved "https://registry.yarnpkg.com/es-get-iterator/-/es-get-iterator-1.1.2.tgz#9234c54aba713486d7ebde0220864af5e2b283f7" + integrity sha512-+DTO8GYwbMCwbywjimwZMHp8AuYXOS2JZFWoi2AlPOS3ebnII9w/NLpNZtA7A0YLaVDw+O7KFCeoIV7OPvM7hQ== dependencies: - es-abstract "^1.17.4" + call-bind "^1.0.2" + get-intrinsic "^1.1.0" has-symbols "^1.0.1" - is-arguments "^1.0.4" - is-map "^2.0.1" - is-set "^2.0.1" + is-arguments "^1.1.0" + is-map "^2.0.2" + is-set "^2.0.2" is-string "^1.0.5" isarray "^2.0.5" @@ -7193,14 +6384,14 @@ es-to-primitive@^1.2.1: is-symbol "^1.0.2" es5-shim@^4.5.13: - version "4.5.14" - resolved "https://registry.yarnpkg.com/es5-shim/-/es5-shim-4.5.14.tgz#90009e1019d0ea327447cb523deaff8fe45697ef" - integrity sha512-7SwlpL+2JpymWTt8sNLuC2zdhhc+wrfe5cMPI2j0o6WsPdfAiPwmFy2f0AocPB4RQVBOZ9kNTgi5YF7TdhkvEg== + version "4.5.15" + resolved "https://registry.yarnpkg.com/es5-shim/-/es5-shim-4.5.15.tgz#6a26869b261854a3b045273f5583c52d390217fe" + integrity sha512-FYpuxEjMeDvU4rulKqFdukQyZSTpzhg4ScQHrAosrlVpR6GFyaw14f74yn2+4BugniIS0Frpg7TvwZocU4ZMTw== es6-shim@^0.35.5: - version "0.35.5" - resolved "https://registry.yarnpkg.com/es6-shim/-/es6-shim-0.35.5.tgz#46f59dc0a84a1c5029e8ff1166ca0a902077a9ab" - integrity sha512-E9kK/bjtCQRpN1K28Xh4BlmP8egvZBGJJ+9GtnzOwt7mdqtrjHFuVGr7QJfdjBIKqrlU5duPf3pCBoDrkjVYFg== + version "0.35.6" + resolved "https://registry.yarnpkg.com/es6-shim/-/es6-shim-0.35.6.tgz#d10578301a83af2de58b9eadb7c2c9945f7388a0" + integrity sha512-EmTr31wppcaIAgblChZiuN/l9Y7DPyw8Xtbg7fIVngn6zMW+IEBJDJngeKC3x6wr0V/vcA2wqeFnaw1bFJbDdA== escalade@^3.1.1: version "3.1.1" @@ -7217,7 +6408,7 @@ escape-string-regexp@1.0.5, escape-string-regexp@^1.0.2, escape-string-regexp@^1 resolved "https://registry.yarnpkg.com/escape-string-regexp/-/escape-string-regexp-1.0.5.tgz#1b61c0562190a8dff6ae3bb2cf0200ca130b86d4" integrity sha1-G2HAViGQqN/2rjuyzwIAyhMLhtQ= -escape-string-regexp@2.0.0: +escape-string-regexp@2.0.0, escape-string-regexp@^2.0.0: version "2.0.0" resolved "https://registry.yarnpkg.com/escape-string-regexp/-/escape-string-regexp-2.0.0.tgz#a30304e99daa32e23b2fd20f51babd07cffca344" integrity sha512-UpzcLCXolUWcNu5HtVMHYdXJjArjsF9C0aNnquZYY4uW/Vu0miy5YoWvbV345HauVvcAUnpRuhMMcqTcGOY2+w== @@ -7227,7 +6418,7 @@ escape-string-regexp@4.0.0, escape-string-regexp@^4.0.0: resolved "https://registry.yarnpkg.com/escape-string-regexp/-/escape-string-regexp-4.0.0.tgz#14ba83a5d373e3d311e5afca29cf5bfad965bf34" integrity sha512-TtpcNJ3XAzx3Gq8sWRzJaVajRs0uVxA2YAkdb1jm2YkPz4G6egUFAyA3n5vtEIZefPk5Wa4UXbKuS5fKkJWdgA== -escodegen@^1.11.1: +escodegen@^1.11.1, escodegen@^1.9.1: version "1.14.3" resolved "https://registry.yarnpkg.com/escodegen/-/escodegen-1.14.3.tgz#4e7b81fba61581dc97582ed78cab7f0e8d63f503" integrity sha512-qFcX0XJkdg+PB3xjZZG/wKSuT1PnQWx57+TVSjIMmILd2yC/6ByYElPwJnslDsuWuSAp4AwJGumarAAmJch5Kw== @@ -7239,35 +6430,23 @@ escodegen@^1.11.1: optionalDependencies: source-map "~0.6.1" -escodegen@^1.9.1: - version "1.14.1" - resolved "https://registry.yarnpkg.com/escodegen/-/escodegen-1.14.1.tgz#ba01d0c8278b5e95a9a45350142026659027a457" - integrity sha512-Bmt7NcRySdIfNPfU2ZoXDrrXsG9ZjvDxcAlMfDUgRBjLOWTuIACXPBFJH7Z+cLb40JeQco5toikyc9t9P8E9SQ== - dependencies: - esprima "^4.0.1" - estraverse "^4.2.0" - esutils "^2.0.2" - optionator "^0.8.1" - optionalDependencies: - source-map "~0.6.1" - -eslint-config-airbnb-base@^14.1.0: - version "14.1.0" - resolved "https://registry.yarnpkg.com/eslint-config-airbnb-base/-/eslint-config-airbnb-base-14.1.0.tgz#2ba4592dd6843258221d9bff2b6831bd77c874e4" - integrity sha512-+XCcfGyCnbzOnktDVhwsCAx+9DmrzEmuwxyHUJpw+kqBVT744OUBrB09khgFKlK1lshVww6qXGsYPZpavoNjJw== +eslint-config-airbnb-base@^14.2.1: + version "14.2.1" + resolved "https://registry.yarnpkg.com/eslint-config-airbnb-base/-/eslint-config-airbnb-base-14.2.1.tgz#8a2eb38455dc5a312550193b319cdaeef042cd1e" + integrity sha512-GOrQyDtVEc1Xy20U7vsB2yAoB4nBlfH5HZJeatRXHleO+OS5Ot+MWij4Dpltw4/DyIkqUfqz1epfhVR5XWWQPA== dependencies: - confusing-browser-globals "^1.0.9" - object.assign "^4.1.0" - object.entries "^1.1.1" + confusing-browser-globals "^1.0.10" + object.assign "^4.1.2" + object.entries "^1.1.2" eslint-config-airbnb@^18.1.0: - version "18.1.0" - resolved "https://registry.yarnpkg.com/eslint-config-airbnb/-/eslint-config-airbnb-18.1.0.tgz#724d7e93dadd2169492ff5363c5aaa779e01257d" - integrity sha512-kZFuQC/MPnH7KJp6v95xsLBf63G/w7YqdPfQ0MUanxQ7zcKUNG8j+sSY860g3NwCBOa62apw16J6pRN+AOgXzw== + version "18.2.1" + resolved "https://registry.yarnpkg.com/eslint-config-airbnb/-/eslint-config-airbnb-18.2.1.tgz#b7fe2b42f9f8173e825b73c8014b592e449c98d9" + integrity sha512-glZNDEZ36VdlZWoxn/bUR1r/sdFKPd1mHPbqUtkctgNG4yT2DLLtJ3D+yCV+jzZCc2V1nBVkmdknOJBZ5Hc0fg== dependencies: - eslint-config-airbnb-base "^14.1.0" - object.assign "^4.1.0" - object.entries "^1.1.1" + eslint-config-airbnb-base "^14.2.1" + object.assign "^4.1.2" + object.entries "^1.1.2" eslint-import-resolver-node@^0.3.3: version "0.3.4" @@ -7363,15 +6542,7 @@ eslint-scope@^4.0.3: esrecurse "^4.1.0" estraverse "^4.1.1" -eslint-scope@^5.0.0: - version "5.0.0" - resolved "https://registry.yarnpkg.com/eslint-scope/-/eslint-scope-5.0.0.tgz#e87c8887c73e8d1ec84f1ca591645c358bfc8fb9" - integrity sha512-oYrhJW7S0bxAFDvWqzvMPRm6pcgcnWc4QnofCAqRTRfQC0JcwenzGglTtsLyIuuWFfkqDG9vz67cnttSd53djw== - dependencies: - esrecurse "^4.1.0" - estraverse "^4.1.1" - -eslint-scope@^5.1.1: +eslint-scope@^5.0.0, eslint-scope@^5.1.1: version "5.1.1" resolved "https://registry.yarnpkg.com/eslint-scope/-/eslint-scope-5.1.1.tgz#e786e59a66cb92b3f6c1fb0d508aab174848f48c" integrity sha512-2NxwbF/hZ0KpepYN0cNbo+FN6XoK7GaHlQhgx/hIZl6Va0bF45RQOOwhLIy8lQDbuCiadSLCBnH2CFYquit5bw== @@ -7386,12 +6557,19 @@ eslint-utils@^1.4.3: dependencies: eslint-visitor-keys "^1.1.0" +eslint-utils@^3.0.0: + version "3.0.0" + resolved "https://registry.yarnpkg.com/eslint-utils/-/eslint-utils-3.0.0.tgz#8aebaface7345bb33559db0a1f13a1d2d48c3672" + integrity sha512-uuQC43IGctw68pJA1RgbQS8/NP7rch6Cwd4j3ZBtgo4/8Flj4eGE7ZYSZRN3iq5pVUv6GPdW5Z1RFleo84uLDA== + dependencies: + eslint-visitor-keys "^2.0.0" + eslint-visitor-keys@^1.1.0: - version "1.1.0" - resolved "https://registry.yarnpkg.com/eslint-visitor-keys/-/eslint-visitor-keys-1.1.0.tgz#e2a82cea84ff246ad6fb57f9bde5b46621459ec2" - integrity sha512-8y9YjtM1JBJU/A9Kc+SbaOV4y29sSWckBwMHa+FGtVj5gN/sbnKDf6xJUl+8g7FAij9LVaP8C24DUiH/f/2Z9A== + version "1.3.0" + resolved "https://registry.yarnpkg.com/eslint-visitor-keys/-/eslint-visitor-keys-1.3.0.tgz#30ebd1ef7c2fdff01c3a4f151044af25fab0523e" + integrity sha512-6J72N8UNa462wa/KFODt/PJ3IU60SDpC3QXC1Hjc1BXXpfL2C9R5+AU7jhe0F6GREqVMh4Juu+NY7xn+6dipUQ== -eslint-visitor-keys@^2.1.0: +eslint-visitor-keys@^2.0.0, eslint-visitor-keys@^2.1.0: version "2.1.0" resolved "https://registry.yarnpkg.com/eslint-visitor-keys/-/eslint-visitor-keys-2.1.0.tgz#f65328259305927392c938ed44eb0a5c9b2bd303" integrity sha512-0rSmRBzXgDzIsD6mGdJgevzgezI534Cer5L/vyMX0kHzT/jiB43jRhd9YUlMGYLQy2zprNmoT8qasCGtY+QaKw== @@ -7454,37 +6632,25 @@ esprima@^4.0.0, esprima@^4.0.1: integrity sha512-eGuFFw7Upda+g4p+QHvnW0RyTX/SVeJBDM/gCtMARO0cLuT2HcEKnTPvhjV6aGeqrCB/sbNop0Kszm0jsaWU4A== esquery@^1.0.1: - version "1.3.1" - resolved "https://registry.yarnpkg.com/esquery/-/esquery-1.3.1.tgz#b78b5828aa8e214e29fb74c4d5b752e1c033da57" - integrity sha512-olpvt9QG0vniUBZspVRN6lwB7hOZoTRtT+jzR+tS4ffYx2mzbw+z0XCOk44aaLYKApNX5nMm+E+P6o25ip/DHQ== + version "1.4.0" + resolved "https://registry.yarnpkg.com/esquery/-/esquery-1.4.0.tgz#2148ffc38b82e8c7057dfed48425b3e61f0f24a5" + integrity sha512-cCDispWt5vHHtwMY2YrAQ4ibFkAL8RbH5YGBnZBc90MolvvfkkQcJro/aZiAQUlQ3qgrYS6D6v8Gc5G5CQsc9w== dependencies: estraverse "^5.1.0" -esrecurse@^4.1.0: - version "4.2.1" - resolved "https://registry.yarnpkg.com/esrecurse/-/esrecurse-4.2.1.tgz#007a3b9fdbc2b3bb87e4879ea19c92fdbd3942cf" - integrity sha512-64RBB++fIOAXPw3P9cy89qfMlvZEXZkqqJkjqqXIvzP5ezRZjW+lPWjw35UX/3EhUPFYbg5ER4JYgDw4007/DQ== - dependencies: - estraverse "^4.1.0" - -esrecurse@^4.3.0: +esrecurse@^4.1.0, esrecurse@^4.3.0: version "4.3.0" resolved "https://registry.yarnpkg.com/esrecurse/-/esrecurse-4.3.0.tgz#7ad7964d679abb28bee72cec63758b1c5d2c9921" integrity sha512-KmfKL3b6G+RXvP8N1vr3Tq1kL/oCFgn2NYXEtqP8/L3pKapUA4G8cFVaoF3SU323CD4XypR/ffioHmkti6/Tag== dependencies: estraverse "^5.2.0" -estraverse@^4.1.0, estraverse@^4.1.1, estraverse@^4.2.0: +estraverse@^4.1.1, estraverse@^4.2.0: version "4.3.0" resolved "https://registry.yarnpkg.com/estraverse/-/estraverse-4.3.0.tgz#398ad3f3c5a24948be7725e83d11a7de28cdbd1d" integrity sha512-39nnKffWz8xN1BU/2c79n9nB9HDzo0niYUqx6xyqUnyoAnQyyWpOTdZEeiCch8BBu515t4wp9ZmgVfVhn9EBpw== -estraverse@^5.1.0: - version "5.1.0" - resolved "https://registry.yarnpkg.com/estraverse/-/estraverse-5.1.0.tgz#374309d39fd935ae500e7b92e8a6b4c720e59642" - integrity sha512-FyohXK+R0vE+y1nHLoBM7ZTyqRpqAlhdZHCWIWEviFLiGB8b04H6bQs8G+XTthacvT8VuwvteiP7RJSxMs8UEw== - -estraverse@^5.2.0: +estraverse@^5.1.0, estraverse@^5.2.0: version "5.2.0" resolved "https://registry.yarnpkg.com/estraverse/-/estraverse-5.2.0.tgz#307df42547e6cc7324d3cf03c155d5cdb8c53880" integrity sha512-BxbNGGNm0RyRYvUdHpIwv9IWzeM9XClbOxwoATuFdOE7ZE6wHL+HQ5T8hoPM+zHvmKzzsEqhgy0GrQ5X13afiQ== @@ -7510,14 +6676,14 @@ eventemitter3@^3.0.0: integrity sha512-tvtQIeLVHjDkJYnzf2dgVMxfuSGJeM/7UCG17TT4EumTfNtF+0nebF/4zWOIkCreAbtNqhGEboB6BWrwqNaw4Q== eventemitter3@^4.0.0: - version "4.0.4" - resolved "https://registry.yarnpkg.com/eventemitter3/-/eventemitter3-4.0.4.tgz#b5463ace635a083d018bdc7c917b4c5f10a85384" - integrity sha512-rlaVLnVxtxvoyLsQQFBx53YmXHDxRIzzTLbdfxqi4yocpSjAxXwkU0cScM5JgSKMqEhrZpnvQ2D9gjylR0AimQ== + version "4.0.7" + resolved "https://registry.yarnpkg.com/eventemitter3/-/eventemitter3-4.0.7.tgz#2de9b68f6528d5644ef5c59526a1b4a07306169f" + integrity sha512-8guHBZCwKnFhYdHr2ysuRWErTwhoN2X8XELRlrRwpmfeY2jjuUN4taQMsULKUVo1K4DvZl+0pgfyoysHxvmvEw== events@^3.0.0: - version "3.1.0" - resolved "https://registry.yarnpkg.com/events/-/events-3.1.0.tgz#84279af1b34cb75aa88bf5ff291f6d0bd9b31a59" - integrity sha512-Rv+u8MLHNOdMjTAFeT3nCjHn2aGlx435FP/sDHNaRhDEMwyI/aB22Kj2qIN8R0cw3z28psEQLYwxVKLsKrMgWg== + version "3.3.0" + resolved "https://registry.yarnpkg.com/events/-/events-3.3.0.tgz#31a95ad0a924e2d2c419a813aeb2c4e878ea7400" + integrity sha512-mQw+2fkQbALzQ7V0MY0IqdnXNOeTtP4r0lN9z7AAawCXgqea7bDii20AYrIBrFd/Hx0M2Ocz6S111CaFkUcb0Q== eventsource@^1.0.7: version "1.1.0" @@ -7549,9 +6715,9 @@ exec-sh@^0.2.0: merge "^1.2.0" exec-sh@^0.3.2: - version "0.3.4" - resolved "https://registry.yarnpkg.com/exec-sh/-/exec-sh-0.3.4.tgz#3a018ceb526cc6f6df2bb504b2bfe8e3a4934ec5" - integrity sha512-sEFIkc61v75sWeOe72qyrqg2Qg0OuLESziUDk/O/z2qgS15y2gWVFrI6f2Qn/qw/0/NCfCEsmNA4zOjkwEZT1A== + version "0.3.6" + resolved "https://registry.yarnpkg.com/exec-sh/-/exec-sh-0.3.6.tgz#ff264f9e325519a60cb5e273692943483cca63bc" + integrity sha512-nQn+hI3yp+oD0huYhKwvYI32+JFeq+XkNcD1GAo3Y/MjxsfVGmrrzrnzjWiNY6f+pUCP440fThsFh5gZrRAU/w== execa@^1.0.0: version "1.0.0" @@ -7671,9 +6837,9 @@ expect@^25.5.0: jest-regex-util "^25.2.6" expo-apple-authentication@^2.2.1: - version "2.2.1" - resolved "https://registry.yarnpkg.com/expo-apple-authentication/-/expo-apple-authentication-2.2.1.tgz#4f515183a385bb2681d8f7bf1064251016d05b97" - integrity sha512-BD4tKhoUWm99RTbFjf8IZo/CIOKFhjUej54mci1djOao770TVXl4Eq8IYDgwHEqK5v8UAySVwxAzgJBmQl9XIw== + version "2.2.2" + resolved "https://registry.yarnpkg.com/expo-apple-authentication/-/expo-apple-authentication-2.2.2.tgz#26a6b1add075ba01289dc4b9f1718d693eda97cd" + integrity sha512-+bwAsZ6l9jmhasdowDPkfsqTSnBmOgjEpblLLgi2x8bOGPQ+BdVilk7+sH7KyHutTbl4lNIGGWhI+1LNgWfPIw== expo-asset@~8.1.7: version "8.1.7" @@ -7877,9 +7043,9 @@ fast-deep-equal@^2.0.1: integrity sha1-ewUhjd+WZ79/Nwv3/bLLFf3Qqkk= fast-deep-equal@^3.1.1: - version "3.1.1" - resolved "https://registry.yarnpkg.com/fast-deep-equal/-/fast-deep-equal-3.1.1.tgz#545145077c501491e33b15ec408c294376e94ae4" - integrity sha512-8UEa58QDLauDNfpbrX55Q9jrGHThw2ZMdOky5Gl1CDtVeJDPVrG4Jxx1N8jw2gkWaff5UUuX1KJd+9zGe2B+ZA== + version "3.1.3" + resolved "https://registry.yarnpkg.com/fast-deep-equal/-/fast-deep-equal-3.1.3.tgz#3a7d56b559d6cbc3eb512325244e619a65c6c525" + integrity sha512-f3qQ9oQy9j2AhBe/H9VC91wLmKBCCU/gDOnKNAYG5hswO7BLKj09Hc5HYNz9cGI++xlpDCIgDaitVs03ATR84Q== fast-glob@^2.0.2: version "2.2.7" @@ -7893,6 +7059,17 @@ fast-glob@^2.0.2: merge2 "^1.2.3" micromatch "^3.1.10" +fast-glob@^3.1.1: + version "3.2.7" + resolved "https://registry.yarnpkg.com/fast-glob/-/fast-glob-3.2.7.tgz#fd6cb7a2d7e9aa7a7846111e85a196d6b2f766a1" + integrity sha512-rYGMRwip6lUMvYD3BTScMwT1HtAs2d71SMv66Vrxs0IekGZEjhM0pcMfjQPnknBt2zeCwQMEupiN02ZP4DiT1Q== + dependencies: + "@nodelib/fs.stat" "^2.0.2" + "@nodelib/fs.walk" "^1.2.3" + glob-parent "^5.1.2" + merge2 "^1.3.0" + micromatch "^4.0.4" + fast-json-stable-stringify@^2.0.0: version "2.1.0" resolved "https://registry.yarnpkg.com/fast-json-stable-stringify/-/fast-json-stable-stringify-2.1.0.tgz#874bf69c6f404c2b5d99c481341399fd55892633" @@ -7903,6 +7080,13 @@ fast-levenshtein@~2.0.6: resolved "https://registry.yarnpkg.com/fast-levenshtein/-/fast-levenshtein-2.0.6.tgz#3d8a5c66883a16a30ca8643e851f19baa7797917" integrity sha1-PYpcZog6FqMMqGQ+hR8Zuqd5eRc= +fastq@^1.6.0: + version "1.11.1" + resolved "https://registry.yarnpkg.com/fastq/-/fastq-1.11.1.tgz#5d8175aae17db61947f8b162cfc7f63264d22807" + integrity sha512-HOnr8Mc60eNYl1gzwp6r5RoUyAn5/glBolUzP/Ez6IFVPMPirxn/9phgL6zhOtaTy7ISwPvQ+wT+hfcRZh/bzw== + dependencies: + reusify "^1.0.4" + fault@^1.0.2: version "1.0.4" resolved "https://registry.yarnpkg.com/fault/-/fault-1.0.4.tgz#eafcfc0a6d214fc94601e170df29954a4f842f13" @@ -7966,7 +7150,7 @@ fbjs@1.0.0, fbjs@^1.0.0: setimmediate "^1.0.5" ua-parser-js "^0.7.18" -fbjs@^0.8.4, fbjs@^0.8.9: +fbjs@^0.8.4: version "0.8.17" resolved "https://registry.yarnpkg.com/fbjs/-/fbjs-0.8.17.tgz#c4d598ead6949112653d6588b01a5cdcd9f90fdd" integrity sha1-xNWY6taUkRJlPWWIsBpc3Nn5D90= @@ -7979,6 +7163,19 @@ fbjs@^0.8.4, fbjs@^0.8.9: setimmediate "^1.0.5" ua-parser-js "^0.7.18" +fbjs@^3.0.0: + version "3.0.0" + resolved "https://registry.yarnpkg.com/fbjs/-/fbjs-3.0.0.tgz#0907067fb3f57a78f45d95f1eacffcacd623c165" + integrity sha512-dJd4PiDOFuhe7vk4F80Mba83Vr2QuK86FoxtgPmzBqEJahncp+13YCmfoa53KHCo6OnlXLG7eeMWPfB5CrpVKg== + dependencies: + cross-fetch "^3.0.4" + fbjs-css-vars "^1.0.0" + loose-envify "^1.0.0" + object-assign "^4.1.0" + promise "^7.1.1" + setimmediate "^1.0.5" + ua-parser-js "^0.7.18" + feature-detect-es6@^1.3.1: version "1.5.0" resolved "https://registry.yarnpkg.com/feature-detect-es6/-/feature-detect-es6-1.5.0.tgz#a69bb7662c65f64f89f07eac5a461b649a1e0a00" @@ -8218,6 +7415,13 @@ follow-redirects@^1.10.0: resolved "https://registry.yarnpkg.com/follow-redirects/-/follow-redirects-1.14.1.tgz#d9114ded0a1cfdd334e164e6662ad02bfd91ff43" integrity sha512-HWqDgT7ZEkqRzBvc2s64vSZ/hfOceEol3ac/7tKwzuvEyWx3/4UegXh5oBOIotkGsObyk3xznnSRVADBgWSQVg== +for-each@^0.3.3: + version "0.3.3" + resolved "https://registry.yarnpkg.com/for-each/-/for-each-0.3.3.tgz#69b447e88a0a5d32c3e7084f3f1710034b21376e" + integrity sha512-jqYfLp7mo9vIyQf8ykW2v7A+2N4QjeCeI5+Dz9XraiO1ign81wjiH7Fb9vSOWvQfNtmSa4H2RoQTrrXivdUZmw== + dependencies: + is-callable "^1.1.3" + for-in@^0.1.3: version "0.1.8" resolved "https://registry.yarnpkg.com/for-in/-/for-in-0.1.8.tgz#d8773908e31256109952b1fdb9b3fa867d2775e1" @@ -8284,10 +7488,10 @@ format@^0.2.0: resolved "https://registry.yarnpkg.com/format/-/format-0.2.2.tgz#d6170107e9efdc4ed30c9dc39016df942b5cb58b" integrity sha1-1hcBB+nv3E7TDJ3DkBbflCtctYs= -forwarded@~0.1.2: - version "0.1.2" - resolved "https://registry.yarnpkg.com/forwarded/-/forwarded-0.1.2.tgz#98c23dab1175657b8c0573e8ceccd91b0ff18c84" - integrity sha1-mMI9qxF1ZXuMBXPozszZGw/xjIQ= +forwarded@0.2.0: + version "0.2.0" + resolved "https://registry.yarnpkg.com/forwarded/-/forwarded-0.2.0.tgz#2269936428aad4c15c7ebe9779a84bf0b2a81811" + integrity sha512-buRG0fpBtRHSTCOASe6hD258tEubFoRLb4ZNA6NxMVHNw2gOcwHo9wyablzMzOA5z9xA9L1KNjk/Nt6MT9aYow== fragment-cache@^0.2.1: version "0.2.1" @@ -8396,12 +7600,7 @@ fsevents@^1.2.3, fsevents@^1.2.7: bindings "^1.5.0" nan "^2.12.1" -fsevents@^2.1.2: - version "2.1.3" - resolved "https://registry.yarnpkg.com/fsevents/-/fsevents-2.1.3.tgz#fb738703ae8d2f9fe900c33836ddebee8b97f23e" - integrity sha512-Auw9a4AxqWpa9GUfj370BMPzzyncfBABW8Mab7BGWBYDj4Isgq+cDKtx0i6u9jcX9pQDnswsaaOTgTmA5pEjuQ== - -fsevents@~2.3.1, fsevents@~2.3.2: +fsevents@^2.1.2, fsevents@~2.3.1, fsevents@~2.3.2: version "2.3.2" resolved "https://registry.yarnpkg.com/fsevents/-/fsevents-2.3.2.tgz#8a526f78b8fdf4623b709e0b975c52c24c02fd1a" integrity sha512-xiqMQR4xAeHTuB9uWm+fFRcIOgKBMiOBP+eXiyT7jsgVCq1bkVygt00oASowB7EdtpOHaaPgKt812P9ab+DDKA== @@ -8412,23 +7611,24 @@ function-bind@^1.1.1: integrity sha512-yIovAzMX49sF8Yl58fSCWJ5svSLuaibPxXQJFLmBObTuCr0Mf1KiPopGM9NiFjiYBCbfaa2Fh6breQ6ANVTI0A== function.prototype.name@^1.1.0: - version "1.1.2" - resolved "https://registry.yarnpkg.com/function.prototype.name/-/function.prototype.name-1.1.2.tgz#5cdf79d7c05db401591dfde83e3b70c5123e9a45" - integrity sha512-C8A+LlHBJjB2AdcRPorc5JvJ5VUoWlXdEHLOJdCI7kjHEtGTpHQUiqMvCIKUwIsGwZX2jZJy761AXsn356bJQg== + version "1.1.4" + resolved "https://registry.yarnpkg.com/function.prototype.name/-/function.prototype.name-1.1.4.tgz#e4ea839b9d3672ae99d0efd9f38d9191c5eaac83" + integrity sha512-iqy1pIotY/RmhdFZygSSlW0wko2yxkSCKqsuv4pr8QESohpYyG/Z7B/XXvPRKTJS//960rgguE5mSRUsDdaJrQ== dependencies: + call-bind "^1.0.2" define-properties "^1.1.3" - es-abstract "^1.17.0-next.1" - functions-have-names "^1.2.0" + es-abstract "^1.18.0-next.2" + functions-have-names "^1.2.2" functional-red-black-tree@^1.0.1: version "1.0.1" resolved "https://registry.yarnpkg.com/functional-red-black-tree/-/functional-red-black-tree-1.0.1.tgz#1b0ab3bd553b2a0d6399d29c0e3ea0b252078327" integrity sha1-GwqzvVU7Kg1jmdKcDj6gslIHgyc= -functions-have-names@^1.2.0: - version "1.2.1" - resolved "https://registry.yarnpkg.com/functions-have-names/-/functions-have-names-1.2.1.tgz#a981ac397fa0c9964551402cdc5533d7a4d52f91" - integrity sha512-j48B/ZI7VKs3sgeI2cZp7WXWmZXu7Iq5pl5/vptV5N2mq+DGFuS/ulaDjtaoLpYzuD6u8UgrUKHfgo7fDTSiBA== +functions-have-names@^1.2.2: + version "1.2.2" + resolved "https://registry.yarnpkg.com/functions-have-names/-/functions-have-names-1.2.2.tgz#98d93991c39da9361f8e50b337c4f6e41f120e21" + integrity sha512-bLgc3asbWdwPbx2mNk2S49kmJCuQeu0nfmaOgbs8WIyzzkw3r4htszdIi9Q9EMezDPTYuJx2wvjZ/EwgAthpnA== funpermaproxy@^1.0.1: version "1.0.1" @@ -8454,11 +7654,6 @@ gauge@~2.7.3: strip-ansi "^3.0.1" wide-align "^1.1.0" -gensync@^1.0.0-beta.1: - version "1.0.0-beta.1" - resolved "https://registry.yarnpkg.com/gensync/-/gensync-1.0.0-beta.1.tgz#58f4361ff987e5ff6e1e7a210827aa371eaac269" - integrity sha512-r8EC6NO1sngH/zdD9fiRDLdcgnbayXah+mLgManTaIZJqEC1MZstmnox8KpnI2/fxQwrp5OpCOYWLp4rBl4Jcg== - gensync@^1.0.0-beta.2: version "1.0.0-beta.2" resolved "https://registry.yarnpkg.com/gensync/-/gensync-1.0.0-beta.2.tgz#32a6ee76c3d7f52d46b2b1ae5d93fea8580a25e0" @@ -8508,9 +7703,9 @@ get-stream@^4.0.0: pump "^3.0.0" get-stream@^5.0.0: - version "5.1.0" - resolved "https://registry.yarnpkg.com/get-stream/-/get-stream-5.1.0.tgz#01203cdc92597f9b909067c3e656cc1f4d3c4dc9" - integrity sha512-EXr1FOzrzTfGeL0gQdeFEvOMm2mzMOglyiOXSTpPC+iAjAKftbr3jpCMWynogwYnM+eSj9sHGc6wjIcDvYiygw== + version "5.2.0" + resolved "https://registry.yarnpkg.com/get-stream/-/get-stream-5.2.0.tgz#4966a1795ee5ace65e706c4b7beb71257d6e22d3" + integrity sha512-nBF+F1rAZVCu/p7rjzgA+Yb4lfYXrpl7a6VmJrU8wF9I1CKvP/QwPNZHnOlwbTkY6dvtFIzFMSyQXbLoTQPRpA== dependencies: pump "^3.0.0" @@ -8557,14 +7752,7 @@ glob-parent@^3.1.0: is-glob "^3.1.0" path-dirname "^1.0.0" -glob-parent@^5.0.0, glob-parent@~5.1.0: - version "5.1.1" - resolved "https://registry.yarnpkg.com/glob-parent/-/glob-parent-5.1.1.tgz#b6c1ef417c4e5663ea498f1c45afac6916bbc229" - integrity sha512-FnI+VGOpnlGHWZxthPGR+QhR78fuiK0sNLkHQv+bL9fQi57lNNdquIbna/WrfROrolq8GK5Ek6BiMwqL/voRYQ== - dependencies: - is-glob "^4.0.1" - -glob-parent@~5.1.2: +glob-parent@^5.0.0, glob-parent@^5.1.2, glob-parent@~5.1.0, glob-parent@~5.1.2: version "5.1.2" resolved "https://registry.yarnpkg.com/glob-parent/-/glob-parent-5.1.2.tgz#869832c58034fe68a4093c17dc15e8340d8401c4" integrity sha512-AOIgSQCepiJYwP3ARnGx+5VnTu2HBYdzbGP45eLw1vr3zB3vZLeyed1sC9hnbcOc9/SrMyM5RPQrkGz4aS9Zow== @@ -8588,7 +7776,7 @@ glob@7.0.6: once "^1.3.0" path-is-absolute "^1.0.0" -glob@7.1.7, glob@^7.0.0: +glob@7.1.7, glob@^7.0.0, glob@^7.0.3, glob@^7.1.1, glob@^7.1.2, glob@^7.1.3, glob@^7.1.4: version "7.1.7" resolved "https://registry.yarnpkg.com/glob/-/glob-7.1.7.tgz#3b193e9233f01d42d0b3f78294bbeeb418f94a90" integrity sha512-OvD9ENzPLbegENnYP5UUfJIirTg4+XwMWGaQfQTY0JenxNvvIKP3U3/tAQSPIu/lHxXYSZmpXlUHeqAIdKzBLQ== @@ -8611,18 +7799,6 @@ glob@^6.0.1: once "^1.3.0" path-is-absolute "^1.0.0" -glob@^7.0.3, glob@^7.1.1, glob@^7.1.2, glob@^7.1.3, glob@^7.1.4: - version "7.1.6" - resolved "https://registry.yarnpkg.com/glob/-/glob-7.1.6.tgz#141f33b81a7c2492e125594307480c46679278a6" - integrity sha512-LwaxwyZ72Lk7vZINtNNrywX0ZuLyStrdDtabefZKAY5ZGJhVtgdznluResxNmPitE0SAO+O26sWTHeKSI2wMBA== - dependencies: - fs.realpath "^1.0.0" - inflight "^1.0.4" - inherits "2" - minimatch "^3.0.4" - once "^1.3.0" - path-is-absolute "^1.0.0" - global-modules@2.0.0: version "2.0.0" resolved "https://registry.yarnpkg.com/global-modules/-/global-modules-2.0.0.tgz#997605ad2345f27f51539bea26574421215c7780" @@ -8639,7 +7815,7 @@ global-prefix@^3.0.0: kind-of "^6.0.2" which "^1.3.1" -global@^4.3.2, global@^4.4.0: +global@^4.3.2, global@^4.4.0, global@~4.4.0: version "4.4.0" resolved "https://registry.yarnpkg.com/global/-/global-4.4.0.tgz#3e7b105179006a323ed71aafca3e9c57a5cc6406" integrity sha512-wv/LAoHdRE3BeTGz53FAamhGlPLhlssK45usmGFThIi4XqnBmjKQ16u+RNbP7WvigRZDxUsM0J3gcQ5yicaL0w== @@ -8647,14 +7823,6 @@ global@^4.3.2, global@^4.4.0: min-document "^2.19.0" process "^0.11.10" -global@~4.3.0: - version "4.3.2" - resolved "https://registry.yarnpkg.com/global/-/global-4.3.2.tgz#e76989268a6c74c38908b1305b10fc0e394e9d0f" - integrity sha1-52mJJopsdMOJCLEwWxD8DjlOnQ8= - dependencies: - min-document "^2.19.0" - process "~0.5.1" - globals@^11.1.0: version "11.12.0" resolved "https://registry.yarnpkg.com/globals/-/globals-11.12.0.tgz#ab8795338868a0babd8525758018c2a7eb95c42e" @@ -8673,9 +7841,9 @@ globals@^9.18.0: integrity sha512-S0nG3CLEQiY/ILxqtztTWH/3iRRdyBLw6KMDxnKMchrtbj2OFmehVh0WUCfW3DUrIgx/qFrJPICrq4Z4sTR9UQ== globalthis@^1.0.0: - version "1.0.1" - resolved "https://registry.yarnpkg.com/globalthis/-/globalthis-1.0.1.tgz#40116f5d9c071f9e8fb0037654df1ab3a83b7ef9" - integrity sha512-mJPRTc/P39NH/iNG4mXa9aIhNymaQikTrnspeCa2ZuJ+mH2QN/rXwtX3XwKrHqWgUQFbNZKtHM105aHzJalElw== + version "1.0.2" + resolved "https://registry.yarnpkg.com/globalthis/-/globalthis-1.0.2.tgz#2a235d34f4d8036219f7e34929b5de9e18166b8b" + integrity sha512-ZQnSFO1la8P7auIOQECnm0sSuoMeaSq0EEdXMBFF2QJO4uNcwbyhSgG3MruWNbFTqCLmxVwGOl7LZ9kASvHdeQ== dependencies: define-properties "^1.1.3" @@ -8692,6 +7860,18 @@ globby@8.0.2: pify "^3.0.0" slash "^1.0.0" +globby@^11.0.3: + version "11.0.4" + resolved "https://registry.yarnpkg.com/globby/-/globby-11.0.4.tgz#2cbaff77c2f2a62e71e9b2813a67b97a3a3001a5" + integrity sha512-9O4MVG9ioZJ08ffbcyVYyLOJLk5JQ688pJ4eMGLpdWLHq/Wr1D9BlriLQyL0E+jbkuePVZXYFj47QM/v093wHg== + dependencies: + array-union "^2.1.0" + dir-glob "^3.0.1" + fast-glob "^3.1.1" + ignore "^5.1.4" + merge2 "^1.3.0" + slash "^3.0.0" + good-listener@^1.2.2: version "1.2.2" resolved "https://registry.yarnpkg.com/good-listener/-/good-listener-1.2.2.tgz#d53b30cdf9313dffb7dc9a0d477096aa6d145c50" @@ -8699,12 +7879,7 @@ good-listener@^1.2.2: dependencies: delegate "^3.1.2" -graceful-fs@^4.1.11, graceful-fs@^4.1.15, graceful-fs@^4.1.2, graceful-fs@^4.1.3, graceful-fs@^4.1.6, graceful-fs@^4.1.9, graceful-fs@^4.2.0, graceful-fs@^4.2.4: - version "4.2.4" - resolved "https://registry.yarnpkg.com/graceful-fs/-/graceful-fs-4.2.4.tgz#2256bde14d3632958c465ebc96dc467ca07a29fb" - integrity sha512-WjKPNJF79dtJAVniUlGGWHYGz2jWxT6VhN/4m1NdkbZ2nOsEF+cI1Edgql5zCRhs/VsQYRvrXctxktVXZUkixw== - -graceful-fs@^4.2.2: +graceful-fs@^4.1.11, graceful-fs@^4.1.15, graceful-fs@^4.1.2, graceful-fs@^4.1.3, graceful-fs@^4.1.6, graceful-fs@^4.1.9, graceful-fs@^4.2.0, graceful-fs@^4.2.2, graceful-fs@^4.2.4: version "4.2.6" resolved "https://registry.yarnpkg.com/graceful-fs/-/graceful-fs-4.2.6.tgz#ff040b2b0853b23c3d31027523706f1885d76bee" integrity sha512-nTnJ528pbqxYanhpDYsi4Rd8MAeaBA67+RZ10CM1m3bTAVFEDcd5AuA4a6W5YkGZ1iNXHzZz8T6TBKLeBuNriQ== @@ -8733,9 +7908,9 @@ gzip-size@5.1.1: pify "^4.0.1" handlebars@^4.0.3: - version "4.7.6" - resolved "https://registry.yarnpkg.com/handlebars/-/handlebars-4.7.6.tgz#d4c05c1baf90e9945f77aa68a7a219aa4a7df74e" - integrity sha512-1f2BACcBfiwAfStCKZNrUCgqNZkGsAT7UM3kkYtXuLo0KnaVfjKOyf7PRzB6++aK9STyT1Pd2ZCPe3EGOXleXA== + version "4.7.7" + resolved "https://registry.yarnpkg.com/handlebars/-/handlebars-4.7.7.tgz#9ce33416aad02dbd6c8fafa8240d5d98004945a1" + integrity sha512-aAcXm5OAfE/8IXkcZvCepKU3VzW1/39Fb5ZuqMtgI/hT8X2YgoMvBY5dLhq/cpOvw7Lk1nK/UF71aLG/ZnVYRA== dependencies: minimist "^1.2.5" neo-async "^2.6.0" @@ -8750,17 +7925,17 @@ har-schema@^2.0.0: integrity sha1-qUwiJOvKwEeCoNkDVSHyRzW37JI= har-validator@~5.1.3: - version "5.1.3" - resolved "https://registry.yarnpkg.com/har-validator/-/har-validator-5.1.3.tgz#1ef89ebd3e4996557675eed9893110dc350fa080" - integrity sha512-sNvOCzEQNr/qrvJgc3UG/kD4QtlHycrzwS+6mfTrrSq97BvaYcPZZI1ZSqGSPR73Cxn4LKTD4PttRwfU7jWq5g== + version "5.1.5" + resolved "https://registry.yarnpkg.com/har-validator/-/har-validator-5.1.5.tgz#1f0803b9f8cb20c0fa13822df1ecddb36bde1efd" + integrity sha512-nmT2T0lljbxdQZfspsno9hgrG3Uir6Ks5afism62poxqBM6sDnMEuPmzTq8XN0OEwqKLLdh1jQI3qyE66Nzb3w== dependencies: - ajv "^6.5.5" + ajv "^6.12.3" har-schema "^2.0.0" harmony-reflect@^1.4.6: - version "1.6.1" - resolved "https://registry.yarnpkg.com/harmony-reflect/-/harmony-reflect-1.6.1.tgz#c108d4f2bb451efef7a37861fdbdae72c9bdefa9" - integrity sha512-WJTeyp0JzGtHcuMsi7rw2VwtkvLa+JyfEKJCFyfcS0+CDkjQ5lHPu7zEhFZP+PDSRrEgXa5Ah0l1MbgbE41XjA== + version "1.6.2" + resolved "https://registry.yarnpkg.com/harmony-reflect/-/harmony-reflect-1.6.2.tgz#31ecbd32e648a34d030d86adb67d4d47547fe710" + integrity sha512-HIp/n38R9kQjDEziXyDTuW3vvoxxyxjxFzXLrBr18uB47GnSt+G9D29fqrpM5ZkspMcPICud3XsBJQ4Y2URg8g== has-ansi@^2.0.0: version "2.0.0" @@ -8789,12 +7964,7 @@ has-flag@^4.0.0: resolved "https://registry.yarnpkg.com/has-flag/-/has-flag-4.0.0.tgz#944771fd9c81c81265c4d6941860da06bb59479b" integrity sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ== -has-symbols@^1.0.0, has-symbols@^1.0.1: - version "1.0.1" - resolved "https://registry.yarnpkg.com/has-symbols/-/has-symbols-1.0.1.tgz#9f5214758a44196c406d9bd76cebf81ec2dd31e8" - integrity sha512-PLcsoqu++dmEIZB+6totNFKq/7Do+Z0u4oT0zKOJNl3lYK6vGwwu2hjHs+68OEZbTjiUE9bgOABXbP/GvrS0Kg== - -has-symbols@^1.0.2: +has-symbols@^1.0.1, has-symbols@^1.0.2: version "1.0.2" resolved "https://registry.yarnpkg.com/has-symbols/-/has-symbols-1.0.2.tgz#165d3070c00309752a1236a479331e3ac56f1423" integrity sha512-chXa79rL/UC2KlX17jo3vRGz0azaWEx5tGqZg5pO3NUyEJVB17dMruQlzCCOfUvElghKcm5194+BCRvi2Rv/Gw== @@ -8860,9 +8030,9 @@ hash.js@^1.0.0, hash.js@^1.0.3: minimalistic-assert "^1.0.1" hast-util-parse-selector@^2.0.0: - version "2.2.4" - resolved "https://registry.yarnpkg.com/hast-util-parse-selector/-/hast-util-parse-selector-2.2.4.tgz#60c99d0b519e12ab4ed32e58f150ec3f61ed1974" - integrity sha512-gW3sxfynIvZApL4L07wryYF4+C9VvH3AUi7LAnVXV4MneGEgwOByXvFo18BgmTWnm7oHAe874jKbIB1YhHSIzA== + version "2.2.5" + resolved "https://registry.yarnpkg.com/hast-util-parse-selector/-/hast-util-parse-selector-2.2.5.tgz#d57c23f4da16ae3c63b3b6ca4616683313499c3a" + integrity sha512-7j6mrk/qqkSehsM92wQjdIgWM2/BW61u/53G6xmC8i1OmEdKLHbk419QKQUjz6LglWsfqoiHmyMRkP1BGjecNQ== hastscript@^5.0.0: version "5.1.2" @@ -8880,9 +8050,9 @@ he@1.2.0, he@^1.2.0: integrity sha512-F/1DnUGPopORZi0ni+CvrCgHQ5FyEAHRLSApuYWMmrbSwoN2Mn/7k+Gl38gJnR7yyDZk6WLXwiGod1JOWNDKGw== hermes-engine@~0.5.0: - version "0.5.0" - resolved "https://registry.yarnpkg.com/hermes-engine/-/hermes-engine-0.5.0.tgz#d914acce72e9657b3c98875ad3f9094d8643f327" - integrity sha512-jSuHiOhdh2+IF3bH2gLpQ37eMkdUrEb9GK6PoG3rLRaUDK3Zn2Y9fXM+wyDfoUTA3gz9EET0/IIWk5k21qp4kw== + version "0.5.1" + resolved "https://registry.yarnpkg.com/hermes-engine/-/hermes-engine-0.5.1.tgz#601115e4b1e0a17d9aa91243b96277de4e926e09" + integrity sha512-hLwqh8dejHayjlpvZY40e1aDCDvyP98cWx/L5DhAjSJLH8g4z9Tp08D7y4+3vErDsncPOdf1bxm+zUWpx0/Fxg== hermes-profile-transformer@^0.0.6: version "0.0.6" @@ -8901,7 +8071,12 @@ highlight.js@~9.13.0: resolved "https://registry.yarnpkg.com/highlight.js/-/highlight.js-9.13.1.tgz#054586d53a6863311168488a0f58d6c505ce641e" integrity sha512-Sc28JNQNDzaH6PORtRLMvif9RSn1mYuOoX3omVjnb0+HbpPygU2ALBI0R/wsiqCb4/fcp07Gdo8g+fhtFrQl6A== -hmac-drbg@^1.0.0: +highlight.js@~9.18.2: + version "9.18.5" + resolved "https://registry.yarnpkg.com/highlight.js/-/highlight.js-9.18.5.tgz#d18a359867f378c138d6819edfc2a8acd5f29825" + integrity sha512-a5bFyofd/BHCX52/8i8uJkjr9DYwXIPnM/plwI6W7ezItLGqzt7X2G2nXuYSfsIJdkwwj/g9DG1LkcGJI/dDoA== + +hmac-drbg@^1.0.1: version "1.0.1" resolved "https://registry.yarnpkg.com/hmac-drbg/-/hmac-drbg-1.0.1.tgz#d2745701025a6c775a6c545793ed502fc0c649a1" integrity sha1-0nRXAQJabHdabFRXk+1QL8DGSaE= @@ -8927,11 +8102,6 @@ hoist-non-react-statics@3.3.2, hoist-non-react-statics@^3.0.0, hoist-non-react-s dependencies: react-is "^16.7.0" -hoist-non-react-statics@^2.3.1: - version "2.5.5" - resolved "https://registry.yarnpkg.com/hoist-non-react-statics/-/hoist-non-react-statics-2.5.5.tgz#c5903cf409c0dfd908f388e619d86b9c1174cb47" - integrity sha512-rqcy4pJo55FTTLWt+bU8ukscqHeE/e9KWvsOW2b/a3afxQZhwkQdT1rPPCJ0rYXdj4vNcasY8zHTH+jF/qStxw== - home-or-tmp@^2.0.0: version "2.0.0" resolved "https://registry.yarnpkg.com/home-or-tmp/-/home-or-tmp-2.0.0.tgz#e36c3f2d2cae7d746a857e38d18d5f32a7882db8" @@ -8941,9 +8111,9 @@ home-or-tmp@^2.0.0: os-tmpdir "^1.0.1" hosted-git-info@^2.1.4: - version "2.8.8" - resolved "https://registry.yarnpkg.com/hosted-git-info/-/hosted-git-info-2.8.8.tgz#7539bd4bc1e0e0a895815a2e0262420b12858488" - integrity sha512-f/wzC2QaWBs7t9IYqB4T3sR1xviIViXJRJTWBlx2Gf3g0Xi5vI7Yy4koXQ1c9OYDGHN9sBy1DQ2AB8fqZBWhUg== + version "2.8.9" + resolved "https://registry.yarnpkg.com/hosted-git-info/-/hosted-git-info-2.8.9.tgz#dffc0bf9a21c02209090f2aa69429e1414daf3f9" + integrity sha512-mxIDAb9Lsm6DoOJ7xH+5+X4y1LU/4Hi50L9C5sIswK3JzULS4bwk1FvjdBgvYR4bzT4tuUQiC15FE2f5HbLvYw== html-encoding-sniffer@^1.0.2: version "1.0.2" @@ -8953,9 +8123,9 @@ html-encoding-sniffer@^1.0.2: whatwg-encoding "^1.0.1" html-entities@^1.2.0: - version "1.3.1" - resolved "https://registry.yarnpkg.com/html-entities/-/html-entities-1.3.1.tgz#fb9a1a4b5b14c5daba82d3e34c6ae4fe701a0e44" - integrity sha512-rhE/4Z3hIhzHAUKbW8jVcCyuT5oJCXXqhN/6mXXVCpzTmvJnoH2HL/bt3EZ6p55jbFJBeAe1ZNpL5BugLujxNA== + version "1.4.0" + resolved "https://registry.yarnpkg.com/html-entities/-/html-entities-1.4.0.tgz#cfbd1b01d2afaf9adca1b10ae7dffab98c71d2dc" + integrity sha512-8nxjcBcd8wovbeKx7h3wTji4e6+rhaVuPNpMqwWgnHh+N9ToqsCs6XztWRBPQ+UtzsoMAdKZtUENoVzU/EMtZA== html-escaper@^2.0.0: version "2.0.2" @@ -8990,17 +8160,15 @@ html-webpack-plugin@^4.0.0-beta.2: tapable "^1.1.3" util.promisify "1.0.0" -htmlparser2@^3.3.0: - version "3.10.1" - resolved "https://registry.yarnpkg.com/htmlparser2/-/htmlparser2-3.10.1.tgz#bd679dc3f59897b6a34bb10749c855bb53a9392f" - integrity sha512-IgieNijUMbkDovyoKObU1DUhm1iwNYE/fuifEoEHfd1oZKZDaONBSkal7Y01shxsM49R4XaMdGez3WnF9UfiCQ== +htmlparser2@^6.1.0: + version "6.1.0" + resolved "https://registry.yarnpkg.com/htmlparser2/-/htmlparser2-6.1.0.tgz#c4d762b6c3371a05dbe65e94ae43a9f845fb8fb7" + integrity sha512-gyyPk6rgonLFEDGoeRgQNaEUvdJ4ktTmmUh/h2t7s+M8oPpIPxgNACWa+6ESR57kXstwqPiCut0V8NRpcwgU7A== dependencies: - domelementtype "^1.3.1" - domhandler "^2.3.0" - domutils "^1.5.1" - entities "^1.1.1" - inherits "^2.0.1" - readable-stream "^3.1.1" + domelementtype "^2.0.1" + domhandler "^4.0.0" + domutils "^2.5.2" + entities "^2.0.0" http-errors@1.7.2: version "1.7.2" @@ -9075,13 +8243,20 @@ i18n-js@3.8.0: resolved "https://registry.yarnpkg.com/i18n-js/-/i18n-js-3.8.0.tgz#b8fd6b12e1d88cb71f9806c29bca7c31c012e504" integrity sha512-hDsGgPuvw/2P+lXSbOafAwspK8Ste8YrwuuUg17W3wEcO1JkQxBlPgsN1t2+852nTnz4YSYTjZc/1nAA2PC/nw== -iconv-lite@0.4.24, iconv-lite@^0.4.17, iconv-lite@^0.4.24, iconv-lite@~0.4.13: +iconv-lite@0.4.24, iconv-lite@^0.4.17, iconv-lite@^0.4.24: version "0.4.24" resolved "https://registry.yarnpkg.com/iconv-lite/-/iconv-lite-0.4.24.tgz#2022b4b25fbddc21d2f524974a474aafe733908b" integrity sha512-v3MXnZAcvnywkTUEZomIActle7RXXeedOR31wwl7VlyoXO4Qi9arvSenNQWne1TcRwhCL1HwLI21bEqdpj8/rA== dependencies: safer-buffer ">= 2.1.2 < 3" +iconv-lite@^0.6.2: + version "0.6.3" + resolved "https://registry.yarnpkg.com/iconv-lite/-/iconv-lite-0.6.3.tgz#a52f80bf38da1952eb5c681790719871a1a72501" + integrity sha512-4fCk79wshMdzMp2rH06qWrJE4iolqLhCUH+OiuIgU++RB0+94NlDL81atO7GX55uUKueo0txHNtvEyI6D7WdMw== + dependencies: + safer-buffer ">= 2.1.2 < 3.0.0" + icss-utils@^4.0.0, icss-utils@^4.1.1: version "4.1.1" resolved "https://registry.yarnpkg.com/icss-utils/-/icss-utils-4.1.1.tgz#21170b53789ee27447c2f47dd683081403f9a467" @@ -9096,10 +8271,10 @@ identity-obj-proxy@^3.0.0: dependencies: harmony-reflect "^1.4.6" -ieee754@^1.1.4: - version "1.1.13" - resolved "https://registry.yarnpkg.com/ieee754/-/ieee754-1.1.13.tgz#ec168558e95aa181fd87d37f55c32bbcb6708b84" - integrity sha512-4vf7I2LYV/HaWerSo3XmlMkp5eZ83i+/CDluXi/IGTs/O1sejBNhTtnxzmRZfvOUqj7lZjqHkeTvpgSFDlWZTg== +ieee754@^1.1.13, ieee754@^1.1.4: + version "1.2.1" + resolved "https://registry.yarnpkg.com/ieee754/-/ieee754-1.2.1.tgz#8eb7a10a63fff25d15a57b001586d177d1b0d352" + integrity sha512-dcyqhDvX1C46lXZcVqCpK+FtMRQVdIMN6/Df5js2zouUsqG7I6sFxitIC+7KYK29KdXOLHdu9zL4sFnoVQnqaA== iferr@^0.1.5: version "0.1.5" @@ -9123,6 +8298,11 @@ ignore@^4.0.6: resolved "https://registry.yarnpkg.com/ignore/-/ignore-4.0.6.tgz#750e3db5862087b4737ebac8207ffd1ef27b25fc" integrity sha512-cyFDKrqc/YdcWFniJhzI42+AzS+gNwmUzOSFcRCQYwySuBBBy/KjuxWLZ/FHEH6Moq1NizMOBWyTcv8O4OZIMg== +ignore@^5.1.4: + version "5.1.8" + resolved "https://registry.yarnpkg.com/ignore/-/ignore-5.1.8.tgz#f150a8b50a34289b33e22f5889abd4d8016f0e57" + integrity sha512-BMpfD7PpiETpBl/A6S498BaIJ6Y/ABT93ETbby2fP00v4EbvPBXWEoaR1UBPKs3iR53pJY7EtZk5KACI57i1Uw== + image-q@^1.1.1: version "1.1.1" resolved "https://registry.yarnpkg.com/image-q/-/image-q-1.1.1.tgz#fc84099664460b90ca862d9300b6bfbbbfbf8056" @@ -9154,9 +8334,9 @@ import-fresh@^2.0.0: resolve-from "^3.0.0" import-fresh@^3.0.0, import-fresh@^3.1.0: - version "3.2.1" - resolved "https://registry.yarnpkg.com/import-fresh/-/import-fresh-3.2.1.tgz#633ff618506e793af5ac91bf48b72677e15cbe66" - integrity sha512-6e1q1cnWP2RXD9/keSkxHScg508CdXqXWgWBaETNhyuBFz+kUZlKboh+ISK+bU++DmbHimVBrOz/zzPe0sZ3sQ== + version "3.3.0" + resolved "https://registry.yarnpkg.com/import-fresh/-/import-fresh-3.3.0.tgz#37162c25fcb9ebaa2e6e53d5b4d88ce17d9e0c2b" + integrity sha512-veYYhQa+D1QBKznvhUHxb8faxlrwUnxseDAbAp457E0wLNio2bOSKnjYDhMj+YiAq61xrMGhQk9iXVk5FzgQMw== dependencies: parent-module "^1.0.0" resolve-from "^4.0.0" @@ -9201,11 +8381,6 @@ indent-string@^4.0.0: resolved "https://registry.yarnpkg.com/indent-string/-/indent-string-4.0.0.tgz#624f8f4497d619b2d9768531d58f4122854d7251" integrity sha512-EdDDZu4A2OyIK7Lr/2zG+w5jmbuk1DVBnEwREQvBzspBJkCEbRa8GxU1lghYcaGJCnRWibjDXlq779X1/y5xwg== -indexes-of@^1.0.1: - version "1.0.1" - resolved "https://registry.yarnpkg.com/indexes-of/-/indexes-of-1.0.1.tgz#f30f716c8e2bd346c7b67d3df3915566a7c05607" - integrity sha1-8w9xbI4r00bHtn0985FVZqfAVgc= - infer-owner@^1.0.3, infer-owner@^1.0.4: version "1.0.4" resolved "https://registry.yarnpkg.com/infer-owner/-/infer-owner-1.0.4.tgz#c4cefcaa8e51051c2a40ba2ce8a3d27295af9467" @@ -9234,16 +8409,11 @@ inherits@2.0.3: resolved "https://registry.yarnpkg.com/inherits/-/inherits-2.0.3.tgz#633c2c83e3da42a502f52466022480f4208261de" integrity sha1-Yzwsg+PaQqUC9SRmAiSA9CCCYd4= -ini@^1.3.4: +ini@^1.3.4, ini@^1.3.5, ini@~1.3.0: version "1.3.8" resolved "https://registry.yarnpkg.com/ini/-/ini-1.3.8.tgz#a29da425b48806f34767a4efce397269af28432c" integrity sha512-JV/yugV2uzW5iMRSiZAyDtQd+nxtUnjeLt0acNdw98kKLrvuRVyB80tsREOE7yvGVgalhZ6RNXCmEHkUKBKxew== -ini@^1.3.5, ini@~1.3.0: - version "1.3.5" - resolved "https://registry.yarnpkg.com/ini/-/ini-1.3.5.tgz#eee25f56db1c9ec6085e0c22778083f596abf927" - integrity sha512-RZY5huIKCMRWDUqZlEi72f/lmXKMvuszcMBduliQ3nnWbx9X/ZBQO7DijMEYS9EhHBb2qacRUMtC7svLwe0lcw== - inquirer@6.5.0: version "6.5.0" resolved "https://registry.yarnpkg.com/inquirer/-/inquirer-6.5.0.tgz#2303317efc9a4ea7ec2e2df6f86569b734accf42" @@ -9284,33 +8454,24 @@ inquirer@^3.0.6: through "^2.3.6" inquirer@^7.0.0: - version "7.1.0" - resolved "https://registry.yarnpkg.com/inquirer/-/inquirer-7.1.0.tgz#1298a01859883e17c7264b82870ae1034f92dd29" - integrity sha512-5fJMWEmikSYu0nv/flMc475MhGbB7TSPd/2IpFV4I4rMklboCH2rQjYY5kKiYGHqUF9gvaambupcJFFG9dvReg== + version "7.3.3" + resolved "https://registry.yarnpkg.com/inquirer/-/inquirer-7.3.3.tgz#04d176b2af04afc157a83fd7c100e98ee0aad003" + integrity sha512-JG3eIAj5V9CwcGvuOmoo6LB9kbAYT8HXffUl6memuszlwDC/qvFAJw49XJ5NROSFNPxp3iQg1GqkFhaY/CR0IA== dependencies: ansi-escapes "^4.2.1" - chalk "^3.0.0" + chalk "^4.1.0" cli-cursor "^3.1.0" - cli-width "^2.0.0" + cli-width "^3.0.0" external-editor "^3.0.3" figures "^3.0.0" - lodash "^4.17.15" + lodash "^4.17.19" mute-stream "0.0.8" run-async "^2.4.0" - rxjs "^6.5.3" + rxjs "^6.6.0" string-width "^4.1.0" strip-ansi "^6.0.0" through "^2.3.6" -internal-slot@^1.0.2: - version "1.0.2" - resolved "https://registry.yarnpkg.com/internal-slot/-/internal-slot-1.0.2.tgz#9c2e9fb3cd8e5e4256c6f45fe310067fcfa378a3" - integrity sha512-2cQNfwhAfJIkU4KZPkDI+Gj5yNNnbqi40W9Gge6dfnk4TocEVm00B3bdiL+JINrbGJil2TeHvM4rETGzk/f/0g== - dependencies: - es-abstract "^1.17.0-next.1" - has "^1.0.3" - side-channel "^1.0.2" - internal-slot@^1.0.3: version "1.0.3" resolved "https://registry.yarnpkg.com/internal-slot/-/internal-slot-1.0.3.tgz#7347e307deeea2faac2ac6205d4bc7d34967f59c" @@ -9384,10 +8545,12 @@ is-alphanumerical@^1.0.0: is-alphabetical "^1.0.0" is-decimal "^1.0.0" -is-arguments@^1.0.4: - version "1.0.4" - resolved "https://registry.yarnpkg.com/is-arguments/-/is-arguments-1.0.4.tgz#3faf966c7cba0ff437fb31f6250082fcf0448cf3" - integrity sha512-xPh0Rmt8NE65sNzvyUmWgI1tz3mKq74lGA0mL8LYZcoIzKOzDh6HmrYm3d18k60nHerC8A9Km8kYu87zfSFnLA== +is-arguments@^1.0.4, is-arguments@^1.1.0: + version "1.1.0" + resolved "https://registry.yarnpkg.com/is-arguments/-/is-arguments-1.1.0.tgz#62353031dfbee07ceb34656a6bde59efecae8dd9" + integrity sha512-1Ij4lOMPl/xB5kBDn7I+b2ttPMKa8szhEIrXDuXQD/oe3HJLTLhqhgGspwgyGd6MOywBUqVvYicF72lkgDnIHg== + dependencies: + call-bind "^1.0.0" is-arrayish@^0.2.1: version "0.2.1" @@ -9430,12 +8593,7 @@ is-buffer@^1.1.5: resolved "https://registry.yarnpkg.com/is-buffer/-/is-buffer-1.1.6.tgz#efaa2ea9daa0d7ab2ea13a97b2b8ad51fefbe8be" integrity sha512-NcdALwpXkTm5Zvvbk7owOUSvVvBKDgKP5/ewfXEznmQFfs4ZRmanOeKBTjRVjka3QFoN6XJ+9F3USqfHqTaU5w== -is-callable@^1.1.4, is-callable@^1.1.5: - version "1.1.5" - resolved "https://registry.yarnpkg.com/is-callable/-/is-callable-1.1.5.tgz#f7e46b596890456db74e7f6e976cb3273d06faab" - integrity sha512-ESKv5sMCJB2jnHTWZ3O5itG+O128Hsus4K4Qh1h2/cgn2vbgnLSVqfV46AeJA9D5EeeLa9w81KUXMtn34zhX+Q== - -is-callable@^1.2.3: +is-callable@^1.1.3, is-callable@^1.1.4, is-callable@^1.2.3: version "1.2.3" resolved "https://registry.yarnpkg.com/is-callable/-/is-callable-1.2.3.tgz#8b1e0500b73a1d76c70487636f368e519de8db8e" integrity sha512-J1DcMe8UYTBSrKezuIUTUwjXsho29693unXM2YhJUTR2txK/eG47bvNa/wipPFmZFgr/N6f1GA66dv0mEyTIyQ== @@ -9455,9 +8613,9 @@ is-ci@^2.0.0: ci-info "^2.0.0" is-core-module@^2.2.0: - version "2.4.0" - resolved "https://registry.yarnpkg.com/is-core-module/-/is-core-module-2.4.0.tgz#8e9fc8e15027b011418026e98f0e6f4d86305cc1" - integrity sha512-6A2fkfq1rfeQZjxrZJGerpLCTHRNEBiSgnu0+obeJpEPZRUooHgsizvzv0ZjJwOz3iWIHdJtVWJ/tmPr3D21/A== + version "2.5.0" + resolved "https://registry.yarnpkg.com/is-core-module/-/is-core-module-2.5.0.tgz#f754843617c70bfd29b7bd87327400cda5c18491" + integrity sha512-TXCMSDsEHMEEZ6eCA8rwRDbLu55MRGmrctljsBX/2v1d9/GzqHOxW5c5oPSgrUt2vBFXebu9rGqckXGPWOlYpg== dependencies: has "^1.0.3" @@ -9476,9 +8634,9 @@ is-data-descriptor@^1.0.0: kind-of "^6.0.0" is-date-object@^1.0.1: - version "1.0.2" - resolved "https://registry.yarnpkg.com/is-date-object/-/is-date-object-1.0.2.tgz#bda736f2cd8fd06d32844e7743bfa7494c3bfd7e" - integrity sha512-USlDT524woQ08aoZFzh3/Z6ch9Y/EWXEHQ/AaRN0SkKq4t2Jw2R2339tSXmwuVoY7LLlBCbOIlx2myP/L5zk0g== + version "1.0.4" + resolved "https://registry.yarnpkg.com/is-date-object/-/is-date-object-1.0.4.tgz#550cfcc03afada05eea3dd30981c7b09551f73e5" + integrity sha512-/b4ZVsG7Z5XVtIxs/h9W8nvfLgSAyKYdtGWQLbqy6jA1icmgjf8WCoTKgeS4wy5tYaPePouzFMANbnj94c2Z+A== is-decimal@^1.0.0: version "1.0.4" @@ -9509,9 +8667,9 @@ is-directory@^0.3.1: integrity sha1-YTObbyR1/Hcv2cnYP1yFddwVSuE= is-docker@^2.0.0: - version "2.0.0" - resolved "https://registry.yarnpkg.com/is-docker/-/is-docker-2.0.0.tgz#2cb0df0e75e2d064fe1864c37cdeacb7b2dcf25b" - integrity sha512-pJEdRugimx4fBMra5z2/5iRdZ63OhYV0vr0Dwm5+xtW4D1FvRkB8hamMIhnWfyJeDdyr/aa7BDyNbtG38VxgoQ== + version "2.2.1" + resolved "https://registry.yarnpkg.com/is-docker/-/is-docker-2.2.1.tgz#33eeabe23cfe86f14bde4408a02c0cfb853acdaa" + integrity sha512-F+i2BKsFrH66iaUFc0woD8sLy8getkwTwtOBjvs56Cx4CgJDeKQeqfz8wAYiSb8JOprWhHH5p77PbmYCvvUuXQ== is-dotfile@^1.0.0: version "1.0.3" @@ -9610,10 +8768,10 @@ is-hexadecimal@^1.0.0: resolved "https://registry.yarnpkg.com/is-hexadecimal/-/is-hexadecimal-1.0.4.tgz#cc35c97588da4bd49a8eedd6bc4082d44dcb23a7" integrity sha512-gyPJuv83bHMpocVYoqof5VDiZveEoGoFL8m3BXNb2VW8Xs+rz9kqO8LOQ5DH6EsuvilT1ApazU0pyl+ytbPtlw== -is-map@^2.0.1: - version "2.0.1" - resolved "https://registry.yarnpkg.com/is-map/-/is-map-2.0.1.tgz#520dafc4307bb8ebc33b813de5ce7c9400d644a1" - integrity sha512-T/S49scO8plUiAOA2DBTBG3JHpn1yiw0kRp6dgiZ0v2/6twi5eiB0rHtHFH9ZIrvlWc6+4O+m4zg5+Z833aXgw== +is-map@^2.0.2: + version "2.0.2" + resolved "https://registry.yarnpkg.com/is-map/-/is-map-2.0.2.tgz#00922db8c9bf73e81b7a335827bc2a43f2b91127" + integrity sha512-cOZFQQozTha1f4MxLFzlgKYPTyj26picdZTx82hbc/Xf4K/tZOOXSCkMvU4pKioRXGDLJRn0GM7Upe7kR721yg== is-negative-zero@^2.0.1: version "2.0.1" @@ -9672,11 +8830,9 @@ is-plain-object@^2.0.3, is-plain-object@^2.0.4: isobject "^3.0.1" is-plain-object@^3.0.0: - version "3.0.0" - resolved "https://registry.yarnpkg.com/is-plain-object/-/is-plain-object-3.0.0.tgz#47bfc5da1b5d50d64110806c199359482e75a928" - integrity sha512-tZIpofR+P05k8Aocp7UI/2UTa9lTJSebCXpFFoR9aibpokDj/uXBsJ8luUu0tTVYKkMU6URDUuOfJZ7koewXvg== - dependencies: - isobject "^4.0.0" + version "3.0.1" + resolved "https://registry.yarnpkg.com/is-plain-object/-/is-plain-object-3.0.1.tgz#662d92d24c0aa4302407b0d45d21f2251c85f85b" + integrity sha512-Xnpx182SBMrr/aBik8y+GuR4U1L9FqMSojwDQwPMmxyC6bvEqly9UBCxhauBF5vNh2gwWJNX6oDV7O+OM4z34g== is-posix-bracket@^0.1.0: version "0.1.1" @@ -9688,14 +8844,7 @@ is-primitive@^2.0.0: resolved "https://registry.yarnpkg.com/is-primitive/-/is-primitive-2.0.0.tgz#207bab91638499c07b2adf240a41a87210034575" integrity sha1-IHurkWOEmcB7Kt8kCkGochADRXU= -is-regex@^1.0.4, is-regex@^1.0.5: - version "1.0.5" - resolved "https://registry.yarnpkg.com/is-regex/-/is-regex-1.0.5.tgz#39d589a358bf18967f726967120b8fc1aed74eae" - integrity sha512-vlKW17SNq44owv5AQR3Cq0bQPEb8+kF3UKZ2fiZNOWtztYE5i0CzCZxFDwO58qAOWtxdBRVO/V5Qin1wjCqFYQ== - dependencies: - has "^1.0.3" - -is-regex@^1.1.3: +is-regex@^1.0.4, is-regex@^1.1.3: version "1.1.3" resolved "https://registry.yarnpkg.com/is-regex/-/is-regex-1.1.3.tgz#d029f9aff6448b93ebbe3f33dac71511fdcbef9f" integrity sha512-qSVXFz28HM7y+IWX6vLCsexdlvzT1PJNFSBuaQLQ5o0IEw8UDYW6/2+eCMVyIsbM8CNLX2a/QWmSpyxYEHY7CQ== @@ -9708,10 +8857,10 @@ is-root@2.1.0: resolved "https://registry.yarnpkg.com/is-root/-/is-root-2.1.0.tgz#809e18129cf1129644302a4f8544035d51984a9c" integrity sha512-AGOriNp96vNBd3HtU+RzFEc75FfR5ymiYv8E553I71SCeXBiMsVDUtdio1OEFvrPyLIQ9tVR5RxXIFe5PUFjMg== -is-set@^2.0.1: - version "2.0.1" - resolved "https://registry.yarnpkg.com/is-set/-/is-set-2.0.1.tgz#d1604afdab1724986d30091575f54945da7e5f43" - integrity sha512-eJEzOtVyenDs1TMzSQ3kU3K+E0GUS9sno+F0OBT97xsgcJsF9nXMBtkT9/kut5JEpM7oL7X/0qxR17K3mcwIAA== +is-set@^2.0.2: + version "2.0.2" + resolved "https://registry.yarnpkg.com/is-set/-/is-set-2.0.2.tgz#90755fa4c2562dc1c5d4024760d6119b94ca18ec" + integrity sha512-+2cnTEZeY5z/iXGbLhPrOAaK/Mau5k5eXq9j14CpRTftq0pAJu2MwVRSZhyZWBzx3o6X795Lz6Bpb6R0GKf37g== is-stream@^1.0.1, is-stream@^1.1.0: version "1.1.0" @@ -9723,22 +8872,17 @@ is-stream@^2.0.0: resolved "https://registry.yarnpkg.com/is-stream/-/is-stream-2.0.0.tgz#bde9c32680d6fae04129d6ac9d921ce7815f78e3" integrity sha512-XCoy+WlUr7d1+Z8GgSuXmpuUFC9fOhRXglJMx+dwLKTkL44Cjd4W1Z5P+BQZpr+cR93aGP4S/s7Ftw6Nd/kiEw== -is-string@^1.0.4, is-string@^1.0.5: - version "1.0.5" - resolved "https://registry.yarnpkg.com/is-string/-/is-string-1.0.5.tgz#40493ed198ef3ff477b8c7f92f644ec82a5cd3a6" - integrity sha512-buY6VNRjhQMiF1qWDouloZlQbRhDPCebwxSjxMjxgemYT46YMd2NR0/H+fBhEfWX4A/w9TBJ+ol+okqJKFE6vQ== - -is-string@^1.0.6: +is-string@^1.0.5, is-string@^1.0.6: version "1.0.6" resolved "https://registry.yarnpkg.com/is-string/-/is-string-1.0.6.tgz#3fe5d5992fb0d93404f32584d4b0179a71b54a5f" integrity sha512-2gdzbKUuqtQ3lYNrUTQYoClPhm7oQu4UdpSZMp1/DGgkHBT8E2Z1l0yMdb6D4zNAxwDiMv8MdulKROJGNl0Q0w== is-symbol@^1.0.2, is-symbol@^1.0.3: - version "1.0.3" - resolved "https://registry.yarnpkg.com/is-symbol/-/is-symbol-1.0.3.tgz#38e1014b9e6329be0de9d24a414fd7441ec61937" - integrity sha512-OwijhaRSgqvhm/0ZdAcXNZt9lYdKFpcRDT5ULUuYXPoT794UNOdU+gpT6Rzo7b4V2HUl/op6GqY894AZwv9faQ== + version "1.0.4" + resolved "https://registry.yarnpkg.com/is-symbol/-/is-symbol-1.0.4.tgz#a6dac93b635b063ca6872236de88910a57af139c" + integrity sha512-C/CPBqKWnvdcxqIARxyOh4v1UUEOCHpgDa0WYgpKDFMszcrPcffg5uhwSgPCLD2WWxmq6isisz87tzT01tuGhg== dependencies: - has-symbols "^1.0.1" + has-symbols "^1.0.2" is-typedarray@^1.0.0, is-typedarray@~1.0.0: version "1.0.0" @@ -9961,7 +9105,7 @@ iterate-iterator@^1.0.1: resolved "https://registry.yarnpkg.com/iterate-iterator/-/iterate-iterator-1.0.1.tgz#1693a768c1ddd79c969051459453f082fe82e9f6" integrity sha512-3Q6tudGN05kbkDQDI4CqjaBf4qf85w6W6GnuZDtUVYwKgtC1q8yxYX7CZed7N+tLzQqS6roujWvszf13T+n9aw== -iterate-value@^1.0.0: +iterate-value@^1.0.2: version "1.0.2" resolved "https://registry.yarnpkg.com/iterate-value/-/iterate-value-1.0.2.tgz#935115bd37d006a52046535ebc8d07e9c9337f57" integrity sha512-A6fMAio4D2ot2r/TYzr4yUWrmwNdsN5xL7+HUiyACE4DXm+q8HtPcnFTp+NnW3k4N05tZ7FVYFFb2CR13NxyHQ== @@ -10112,7 +9256,7 @@ jest-diff@^24.3.0, jest-diff@^24.9.0: jest-get-type "^24.9.0" pretty-format "^24.9.0" -jest-diff@^25.2.1, jest-diff@^25.5.0: +jest-diff@^25.5.0: version "25.5.0" resolved "https://registry.yarnpkg.com/jest-diff/-/jest-diff-25.5.0.tgz#1dd26ed64f96667c068cef026b677dfa01afcfa9" integrity sha512-z1kygetuPiREYdNIumRpAHY6RXiGmp70YHptjdaxTWGmA085W3iCnXNx0DhflK3vwrKmrRWyY1wUpkPMVxMK7A== @@ -10122,6 +9266,16 @@ jest-diff@^25.2.1, jest-diff@^25.5.0: jest-get-type "^25.2.6" pretty-format "^25.5.0" +jest-diff@^26.0.0: + version "26.6.2" + resolved "https://registry.yarnpkg.com/jest-diff/-/jest-diff-26.6.2.tgz#1aa7468b52c3a68d7d5c5fdcdfcd5e49bd164394" + integrity sha512-6m+9Z3Gv9wN0WFVasqjCL/06+EFCMTqDEUl/b87HYK2rAPTyfz4ZIuSlPhY51PIQRWx5TaxeF1qmXKe9gfN3sA== + dependencies: + chalk "^4.0.0" + diff-sequences "^26.6.2" + jest-get-type "^26.3.0" + pretty-format "^26.6.2" + jest-docblock@^23.2.0: version "23.2.0" resolved "https://registry.yarnpkg.com/jest-docblock/-/jest-docblock-23.2.0.tgz#f085e1f18548d99fdd69b20207e6fd55d91383a7" @@ -10211,6 +9365,11 @@ jest-get-type@^25.2.6: resolved "https://registry.yarnpkg.com/jest-get-type/-/jest-get-type-25.2.6.tgz#0b0a32fab8908b44d508be81681487dbabb8d877" integrity sha512-DxjtyzOHjObRM+sM1knti6or+eOgcGU4xVSb2HNP1TqO4ahsT+rqZg+nyqHWJSvWgKC5cG3QjGFBqxLghiF/Ig== +jest-get-type@^26.3.0: + version "26.3.0" + resolved "https://registry.yarnpkg.com/jest-get-type/-/jest-get-type-26.3.0.tgz#e97dc3c3f53c2b406ca7afaed4493b1d099199e0" + integrity sha512-TpfaviN1R2pQWkIihlfEanwOXK0zcxrKEE4MlU6Tn7keoXdN6/3gK/xl0yEh8DOunn5pOVGKf8hB4R9gVh04ig== + jest-haste-map@^23.6.0: version "23.6.0" resolved "https://registry.yarnpkg.com/jest-haste-map/-/jest-haste-map-23.6.0.tgz#2e3eb997814ca696d62afdb3f2529f5bbc935e16" @@ -10225,7 +9384,7 @@ jest-haste-map@^23.6.0: micromatch "^2.3.11" sane "^2.0.0" -jest-haste-map@^24.7.1, jest-haste-map@^24.9.0: +jest-haste-map@^24.9.0: version "24.9.0" resolved "https://registry.yarnpkg.com/jest-haste-map/-/jest-haste-map-24.9.0.tgz#b38a5d64274934e21fa417ae9a9fbeb77ceaac7d" integrity sha512-kfVFmsuWui2Sj1Rp1AJ4D9HqJwE4uwTlS/vO+eRUaMmd54BFpli2XhMQnPC2k4cHFVbB2Q2C+jtI1AGLgEnCjQ== @@ -10408,9 +9567,9 @@ jest-mock@^25.5.0: "@jest/types" "^25.5.0" jest-pnp-resolver@^1.2.1: - version "1.2.1" - resolved "https://registry.yarnpkg.com/jest-pnp-resolver/-/jest-pnp-resolver-1.2.1.tgz#ecdae604c077a7fbc70defb6d517c3c1c898923a" - integrity sha512-pgFw2tm54fzgYvc/OHrnysABEObZCUNFnhjoRjaVOCN8NYc032/gVjPaHD4Aq6ApkSieWtfKAFQtmDKAmhupnQ== + version "1.2.2" + resolved "https://registry.yarnpkg.com/jest-pnp-resolver/-/jest-pnp-resolver-1.2.2.tgz#b704ac0ae028a89108a4d040b3f919dfddc8e33c" + integrity sha512-olV41bKSMm8BdnuMsewT4jqlZ8+3TCARAXjZGT9jcoSnrfUnRCqnMoF9XEeoWjbzObpqF9dRhHQj0Xb9QdF6/w== jest-regex-util@^23.3.0: version "23.3.0" @@ -10587,7 +9746,7 @@ jest-serializer@^23.0.1: resolved "https://registry.yarnpkg.com/jest-serializer/-/jest-serializer-23.0.1.tgz#a3776aeb311e90fe83fab9e533e85102bd164165" integrity sha1-o3dq6zEekP6D+rnlM+hRAr0WQWU= -jest-serializer@^24.4.0, jest-serializer@^24.9.0: +jest-serializer@^24.9.0: version "24.9.0" resolved "https://registry.yarnpkg.com/jest-serializer/-/jest-serializer-24.9.0.tgz#e6d7d7ef96d31e8b9079a714754c5d5c58288e73" integrity sha512-DxYipDr8OvfrKH3Kel6NdED3OXxjvxXZ1uIY2I9OFbGg+vUkkg7AGvi65qbhbWNPvDckXmzMPbK3u3HaDO49bQ== @@ -10715,7 +9874,7 @@ jest-validate@^23.6.0: leven "^2.1.0" pretty-format "^23.6.0" -jest-validate@^24.7.0: +jest-validate@^24.9.0: version "24.9.0" resolved "https://registry.yarnpkg.com/jest-validate/-/jest-validate-24.9.0.tgz#0775c55360d173cd854e40180756d4ff52def8ab" integrity sha512-HPIt6C5ACwiqSiwi+OfSSHbK8sG7akG8eATl+IPKaeIjtPOeBUd/g3J7DghugzxrGjI93qS/+RPKe1H6PqvhRQ== @@ -10767,7 +9926,7 @@ jest-worker@^23.2.0: dependencies: merge-stream "^1.0.1" -jest-worker@^24.6.0, jest-worker@^24.9.0: +jest-worker@^24.9.0: version "24.9.0" resolved "https://registry.yarnpkg.com/jest-worker/-/jest-worker-24.9.0.tgz#5dbfdb5b2d322e98567898238a9697bcce67b3e5" integrity sha512-51PE4haMSXcHohnSMdM42anbvZANYTqMrr52tVKPqqsPJMzoP6FYYDVqahX/HrAoKEKz3uUPzSvKs9A3qR4iVw== @@ -10793,9 +9952,9 @@ jest@^25.1.0: jest-cli "^25.5.4" jetifier@^1.6.2: - version "1.6.5" - resolved "https://registry.yarnpkg.com/jetifier/-/jetifier-1.6.5.tgz#ea87324a4230bef20a9651178ecab978ee54a8cb" - integrity sha512-T7yzBSu9PR+DqjYt+I0KVO1XTb1QhAfHnXV5Nd3xpbXM6Xg4e3vP60Q4qkNU8Fh6PHC2PivPUNN3rY7G2MxcDQ== + version "1.6.8" + resolved "https://registry.yarnpkg.com/jetifier/-/jetifier-1.6.8.tgz#e88068697875cbda98c32472902c4d3756247798" + integrity sha512-3Zi16h6L5tXDRQJTb221cnRoVG9/9OvreLdLU2/ZjRv/GILL+2Cemt0IKvkowwkDpvouAU1DQPOJ7qaiHeIdrw== jimp@^0.16.1: version "0.16.1" @@ -10843,7 +10002,7 @@ js-tokens@^3.0.2: resolved "https://registry.yarnpkg.com/js-tokens/-/js-tokens-3.0.2.tgz#9866df395102130e38f7f996bceb65443209c25b" integrity sha1-mGbfOVECEw449/mWvOtlRDIJwls= -js-yaml@3.14.1: +js-yaml@3.14.1, js-yaml@^3.13.1, js-yaml@^3.7.0: version "3.14.1" resolved "https://registry.yarnpkg.com/js-yaml/-/js-yaml-3.14.1.tgz#dae812fdb3825fa306609a8717383c50c36a0537" integrity sha512-okMH7OXXJ7YrN9Ok3/SXrnu4iX9yOk+25nqX4imS2npuvTYDmo/QEZoqwZkYaIDk3jVvBOTOIEgEhaLOynBS9g== @@ -10858,14 +10017,6 @@ js-yaml@4.1.0: dependencies: argparse "^2.0.1" -js-yaml@^3.13.1, js-yaml@^3.7.0: - version "3.13.1" - resolved "https://registry.yarnpkg.com/js-yaml/-/js-yaml-3.13.1.tgz#aff151b30bfdfa8e49e05da22e7415e9dfa37847" - integrity sha512-YfbcO7jXDdyj0DGxYVSlSeQNHbD7XPWvrVWeVUujrQEoZzWJIRrCPoyk6kL6IAjAG2IolMK4T0hNUe0HOUs5Jw== - dependencies: - argparse "^1.0.7" - esprima "^4.0.0" - jsbn@~0.1.0: version "0.1.1" resolved "https://registry.yarnpkg.com/jsbn/-/jsbn-0.1.1.tgz#a5e654c2e5a2deb5f201d96cefbca80c0ef2f513" @@ -10960,6 +10111,11 @@ json-parse-better-errors@^1.0.1, json-parse-better-errors@^1.0.2: resolved "https://registry.yarnpkg.com/json-parse-better-errors/-/json-parse-better-errors-1.0.2.tgz#bb867cfb3450e69107c131d1c514bab3dc8bcaa9" integrity sha512-mrqyZKfX5EhL7hvqcV6WG1yYjnjeuYDzDhhcAAUrq8Po85NBQBJP+ZDUT75qZQ98IkUoBqdkExkukOU7Ts2wrw== +json-parse-even-better-errors@^2.3.0: + version "2.3.1" + resolved "https://registry.yarnpkg.com/json-parse-even-better-errors/-/json-parse-even-better-errors-2.3.1.tgz#7c47805a94319928e05777405dc12e1f7a4ee02d" + integrity sha512-xyFwyhro/JEof6Ghe2iz2NcXoj2sloNsWr/XsERDK/oiPCfaNhl5ONfp+jQdAZRQQ0IJWNzH9zIZF7li91kh2w== + json-schema-traverse@^0.4.1: version "0.4.1" resolved "https://registry.yarnpkg.com/json-schema-traverse/-/json-schema-traverse-0.4.1.tgz#69f6a87d9513ab8bb8fe63bdb0979c448e684660" @@ -11004,20 +10160,13 @@ json5@^1.0.1: dependencies: minimist "^1.2.0" -json5@^2.1.1: +json5@^2.1.1, json5@^2.1.2, json5@^2.2.0: version "2.2.0" resolved "https://registry.yarnpkg.com/json5/-/json5-2.2.0.tgz#2dfefe720c6ba525d9ebd909950f0515316c89a3" integrity sha512-f+8cldu7X/y7RAJurMEJmdoKXGB/X550w2Nr3tTbezL6RwEE/iMcm+tZnXeoZtKuOq6ft8+CqzEkrIgx1fPoQA== dependencies: minimist "^1.2.5" -json5@^2.1.2: - version "2.1.3" - resolved "https://registry.yarnpkg.com/json5/-/json5-2.1.3.tgz#c9b0f7fa9233bfe5807fe66fcf3a5617ed597d43" - integrity sha512-KXPvOm8K9IJKFM0bmdn8QXh7udDh1g/giieX0NLCaMnb4hEiVFqnop2ImTXCc5e0/oHz3LTqmHGtExn5hfMkOA== - dependencies: - minimist "^1.2.5" - jsonfile@^2.1.0: version "2.4.0" resolved "https://registry.yarnpkg.com/jsonfile/-/jsonfile-2.4.0.tgz#3736a2b428b87bbda0cc83b53fa3d633a35c2ae8" @@ -11118,9 +10267,9 @@ kleur@^3.0.3: integrity sha512-eTIzlVOSUR+JxdDFepEYcBMtZ9Qqdef+rnzWdRZuMbOywu5tO2w2N7rqjoANZ5k9vywhL6Br1VRjUIgTQx4E8w== language-subtag-registry@~0.3.2: - version "0.3.20" - resolved "https://registry.yarnpkg.com/language-subtag-registry/-/language-subtag-registry-0.3.20.tgz#a00a37121894f224f763268e431c55556b0c0755" - integrity sha512-KPMwROklF4tEx283Xw0pNKtfTj1gZ4UByp4EsIFWLgBavJltF4TiYPc39k06zSTsLzxTVXXDSpbwaQXaFB4Qeg== + version "0.3.21" + resolved "https://registry.yarnpkg.com/language-subtag-registry/-/language-subtag-registry-0.3.21.tgz#04ac218bea46f04cb039084602c6da9e788dd45a" + integrity sha512-L0IqwlIXjilBVVYKFT37X9Ih11Um5NEl9cbJIuU/SwP/zEEAbBPOnEeeuxVMf45ydWQRDQN3Nqc96OgbH1K+Pg== language-tags@^1.0.5: version "1.0.5" @@ -11176,9 +10325,9 @@ lines-and-columns@^1.1.6: integrity sha1-HADHQ7QzzQpOgHWPe2SldEDZ/wA= load-bmfont@^1.3.1, load-bmfont@^1.4.0: - version "1.4.0" - resolved "https://registry.yarnpkg.com/load-bmfont/-/load-bmfont-1.4.0.tgz#75f17070b14a8c785fe7f5bee2e6fd4f98093b6b" - integrity sha512-kT63aTAlNhZARowaNYcY29Fn/QYkc52M3l6V1ifRcPewg2lvUZDAj7R6dXjOL9D0sict76op3T5+odumDSF81g== + version "1.4.1" + resolved "https://registry.yarnpkg.com/load-bmfont/-/load-bmfont-1.4.1.tgz#c0f5f4711a1e2ccff725a7b6078087ccfcddd3e9" + integrity sha512-8UyQoYmdRDy81Brz6aLAUhfZLwr5zV0L3taTQ4hju7m6biuwiWiJXjPhBJxbUQJA8PrkvJ/7Enqmwk2sM14soA== dependencies: buffer-equal "0.0.1" mime "^1.3.4" @@ -11362,21 +10511,11 @@ lodash.throttle@^4.1.1: resolved "https://registry.yarnpkg.com/lodash.throttle/-/lodash.throttle-4.1.1.tgz#c23e91b710242ac70c37f1e1cda9274cc39bf2f4" integrity sha1-wj6RtxAkKscMN/HhzaknTMOb8vQ= -lodash@4.17.21, lodash@^4.17.11, lodash@^4.17.12, lodash@^4.17.20, lodash@^4.17.5: +lodash@4.17.21, lodash@^4.0.0, lodash@^4.17.11, lodash@^4.17.12, lodash@^4.17.14, lodash@^4.17.15, lodash@^4.17.19, lodash@^4.17.20, lodash@^4.17.21, lodash@^4.17.4, lodash@^4.17.5, lodash@^4.3.0, lodash@^4.5.0: version "4.17.21" resolved "https://registry.yarnpkg.com/lodash/-/lodash-4.17.21.tgz#679591c564c3bffaae8454cf0b3df370c3d6911c" integrity sha512-v2kDEe57lecTulaDIuNTPy3Ry4gLGJ6Z1O3vE1krgXZNrsQ+LFTGHVxVjcXPs17LhbZVGedAJv8XZ1tvj5FvSg== -lodash@^4.0.0: - version "4.17.20" - resolved "https://registry.yarnpkg.com/lodash/-/lodash-4.17.20.tgz#b44a9b6297bcb698f1c51a3545a2b3b368d59c52" - integrity sha512-PlhdFcillOINfeV7Ni6oF1TAEayyZBoZ8bcshTHqOYJYlrqzRK5hagpagky5o4HfCzzd1TRkXPMFq6cKk9rGmA== - -lodash@^4.17.13, lodash@^4.17.14, lodash@^4.17.15, lodash@^4.17.4, lodash@^4.3.0, lodash@^4.5.0: - version "4.17.15" - resolved "https://registry.yarnpkg.com/lodash/-/lodash-4.17.15.tgz#b447f6670a0455bbfeedd11392eff330ea097548" - integrity sha512-8xOcRHvCjnocdS5cpwXQXVzmmh5e5+saE2QGoeQmbKmRS6J3VQppPOIt0MnmE+4xlZoumy0GPG0D0MVIQbNA1A== - log-symbols@4.1.0: version "4.1.0" resolved "https://registry.yarnpkg.com/log-symbols/-/log-symbols-4.1.0.tgz#3fbdbb95b4683ac9fc785111e792e558d4abd503" @@ -11433,12 +10572,12 @@ loud-rejection@^1.0.0: currently-unhandled "^0.4.1" signal-exit "^3.0.0" -lower-case@^2.0.1: - version "2.0.1" - resolved "https://registry.yarnpkg.com/lower-case/-/lower-case-2.0.1.tgz#39eeb36e396115cc05e29422eaea9e692c9408c7" - integrity sha512-LiWgfDLLb1dwbFQZsSglpRj+1ctGnayXz3Uv0/WO8n558JycT5fg6zkNcnW0G68Nn0aEldTFeEfmjCfmqry/rQ== +lower-case@^2.0.2: + version "2.0.2" + resolved "https://registry.yarnpkg.com/lower-case/-/lower-case-2.0.2.tgz#6fa237c63dbdc4a82ca0fd882e4722dc5e634e28" + integrity sha512-7fm3l3NAF9WfN6W3JOmf5drwpVqX78JtoGJ3A6W0a6ZnldM41w2fV5D490psKFTpMds8TJse/eHLFFsNHHjHgg== dependencies: - tslib "^1.10.0" + tslib "^2.0.3" lowlight@~1.11.0: version "1.11.0" @@ -11550,7 +10689,7 @@ md5.js@^1.3.4: inherits "^2.0.1" safe-buffer "^5.1.2" -"mdurl@~ 1.0.1": +mdurl@~1.0.1: version "1.0.1" resolved "https://registry.yarnpkg.com/mdurl/-/mdurl-1.0.1.tgz#fe85b2ec75a59037f2adfec100fd6c601761152e" integrity sha1-/oWy7HWlkDfyrf7BAP1sYBdhFS4= @@ -11570,9 +10709,9 @@ mem@^4.0.0: p-is-promise "^2.0.0" memoize-one@^5.0.5: - version "5.1.1" - resolved "https://registry.yarnpkg.com/memoize-one/-/memoize-one-5.1.1.tgz#047b6e3199b508eaec03504de71229b8eb1d75c0" - integrity sha512-HKeeBpWvqiVJD57ZUAsJNm71eHTykffzcLZVYWiVfQeI1rJtuEaS7hQiEpWfVVk18donPwJEcFKIkCmPJNOhHA== + version "5.2.1" + resolved "https://registry.yarnpkg.com/memoize-one/-/memoize-one-5.2.1.tgz#8337aa3c4335581839ec01c3d594090cebe8f00e" + integrity sha512-zYiwtZUcYyXKo/np96AGZAckk+FWWsUdJ3cHGGmld7+AhvcWmQyGCYUh1hc4Q/pkOhb65dQR/pqCyK0cOaHz4Q== memoizerific@^1.11.3: version "1.11.3" @@ -11630,10 +10769,10 @@ merge-stream@^2.0.0: resolved "https://registry.yarnpkg.com/merge-stream/-/merge-stream-2.0.0.tgz#52823629a14dd00c9770fb6ad47dc6310f2c1f60" integrity sha512-abv/qOcuPfk3URPfDzmZU1LKmuw8kT+0nIHvKrKgFrwifol/doWcdA4ZqsWQ8ENrFKkd67Mfpo/LovbIUsbt3w== -merge2@^1.2.3: - version "1.3.0" - resolved "https://registry.yarnpkg.com/merge2/-/merge2-1.3.0.tgz#5b366ee83b2f1582c48f87e47cf1a9352103ca81" - integrity sha512-2j4DAdlBOkiSZIsaXk4mTE3sRS02yBHAtfy127xRV3bQUFqXkjHCHLW6Scv7DwNRbIWNHH8zpnz9zMaKXIdvYw== +merge2@^1.2.3, merge2@^1.3.0: + version "1.4.1" + resolved "https://registry.yarnpkg.com/merge2/-/merge2-1.4.1.tgz#4368892f885e907455a6fd7dc55c0c9d404990ae" + integrity sha512-8q7VEgMJW4J8tcfVPy8g09NcQwZdbwFEqhe/WZkoIzjn/3TGDwtOCYtXGxA3O8tPzpczCCDgv+P2P5y00ZJOOg== merge@^1.2.0: version "1.2.1" @@ -11645,24 +10784,6 @@ methods@~1.1.2: resolved "https://registry.yarnpkg.com/methods/-/methods-1.1.2.tgz#5529a4d67654134edcc5266656835b0f851afcee" integrity sha1-VSmk1nZUE07cxSZmVoNbD4Ua/O4= -metro-babel-register@0.58.0: - version "0.58.0" - resolved "https://registry.yarnpkg.com/metro-babel-register/-/metro-babel-register-0.58.0.tgz#5c44786d49a044048df56cf476a2263491d4f53a" - integrity sha512-P5+G3ufhSYL6cA3a7xkbSJzzFBvtivj/PhWvGXFXnuFssDlMAX1CTktff+0gpka5Cd6B6QLt0UAMWulUAAE4Eg== - dependencies: - "@babel/core" "^7.0.0" - "@babel/plugin-proposal-class-properties" "^7.0.0" - "@babel/plugin-proposal-nullish-coalescing-operator" "^7.0.0" - "@babel/plugin-proposal-object-rest-spread" "^7.0.0" - "@babel/plugin-proposal-optional-catch-binding" "^7.0.0" - "@babel/plugin-proposal-optional-chaining" "^7.0.0" - "@babel/plugin-transform-async-to-generator" "^7.0.0" - "@babel/plugin-transform-flow-strip-types" "^7.0.0" - "@babel/plugin-transform-modules-commonjs" "^7.0.0" - "@babel/register" "^7.0.0" - core-js "^2.2.2" - escape-string-regexp "^1.0.5" - metro-babel-register@0.59.0: version "0.59.0" resolved "https://registry.yarnpkg.com/metro-babel-register/-/metro-babel-register-0.59.0.tgz#2bcff65641b36794cf083ba732fbc46cf870fb43" @@ -11677,14 +10798,6 @@ metro-babel-register@0.59.0: "@babel/register" "^7.0.0" escape-string-regexp "^1.0.5" -metro-babel-transformer@0.58.0: - version "0.58.0" - resolved "https://registry.yarnpkg.com/metro-babel-transformer/-/metro-babel-transformer-0.58.0.tgz#317c83b863cceb0573943815f1711fbcbe69b106" - integrity sha512-yBX3BkRhw2TCNPhe+pmLSgsAEA3huMvnX08UwjFqSXXI1aiqzRQobn92uKd1U5MM1Vx8EtXVomlJb95ZHNAv6A== - dependencies: - "@babel/core" "^7.0.0" - metro-source-map "0.58.0" - metro-babel-transformer@0.59.0: version "0.59.0" resolved "https://registry.yarnpkg.com/metro-babel-transformer/-/metro-babel-transformer-0.59.0.tgz#dda99c75d831b00142c42c020c51c103b29f199d" @@ -11693,97 +10806,54 @@ metro-babel-transformer@0.59.0: "@babel/core" "^7.0.0" metro-source-map "0.59.0" -metro-cache@0.58.0: - version "0.58.0" - resolved "https://registry.yarnpkg.com/metro-cache/-/metro-cache-0.58.0.tgz#630ea0a4626dfb9591c71fdb85dce14b5e9a04ec" - integrity sha512-jjW9zCTKxhgKcVkyQ6LHyna9Zdf4TK/45vvT1fPyyTk1RY82ZYjU1qs+84ycKEd08Ka4YcK9xcUew9SIDJYI8Q== +metro-cache@0.59.0: + version "0.59.0" + resolved "https://registry.yarnpkg.com/metro-cache/-/metro-cache-0.59.0.tgz#ef3c055f276933979b731455dc8317d7a66f0f2d" + integrity sha512-ryWNkSnpyADfRpHGb8BRhQ3+k8bdT/bsxMH2O0ntlZYZ188d8nnYWmxbRvFmEzToJxe/ol4uDw0tJFAaQsN8KA== dependencies: - jest-serializer "^24.4.0" - metro-core "0.58.0" + jest-serializer "^24.9.0" + metro-core "0.59.0" mkdirp "^0.5.1" rimraf "^2.5.4" -metro-config@0.58.0, metro-config@^0.58.0: - version "0.58.0" - resolved "https://registry.yarnpkg.com/metro-config/-/metro-config-0.58.0.tgz#1e24b43a5a00971d75662b1a0d3c04a13d4a1746" - integrity sha512-4vgBliXwL56vjUlYplvGMVSNrJJpkHuLcD+O20trV3FvPxKg4ZsvuOcNSxqDSMU26FCtIEJ15ojcuCbRL7KY0w== +metro-config@0.59.0, metro-config@^0.59.0: + version "0.59.0" + resolved "https://registry.yarnpkg.com/metro-config/-/metro-config-0.59.0.tgz#9844e388069321dd7403e49f0d495a81f9aa0fef" + integrity sha512-MDsknFG9vZ4Nb5VR6OUDmGHaWz6oZg/FtE3up1zVBKPVRTXE1Z+k7zypnPtMXjMh3WHs/Sy4+wU1xnceE/zdnA== dependencies: cosmiconfig "^5.0.5" - jest-validate "^24.7.0" - metro "0.58.0" - metro-cache "0.58.0" - metro-core "0.58.0" - pretty-format "^24.7.0" - -metro-core@0.58.0, metro-core@^0.58.0: - version "0.58.0" - resolved "https://registry.yarnpkg.com/metro-core/-/metro-core-0.58.0.tgz#ad9f6645a2b439a3fbce7ce4e19b01b00375768a" - integrity sha512-RzXUjGFmCLOyzUqcKDvr91AldGtIOxnzNZrWUIiG8uC3kerVLo0mQp4YH3+XVm6fMNiLMg6iER7HLqD+MbpUjQ== - dependencies: - jest-haste-map "^24.7.1" + jest-validate "^24.9.0" + metro "0.59.0" + metro-cache "0.59.0" + metro-core "0.59.0" + +metro-core@0.59.0, metro-core@^0.59.0: + version "0.59.0" + resolved "https://registry.yarnpkg.com/metro-core/-/metro-core-0.59.0.tgz#958cde3fe5c8cd84a78e1899af801ad69e9c83b1" + integrity sha512-kb5LKvV5r2pqMEzGyTid8ai2mIjW13NMduQ8oBmfha7/EPTATcTQ//s+bkhAs1toQD8vqVvjAb0cPNjWQEmcmQ== + dependencies: + jest-haste-map "^24.9.0" lodash.throttle "^4.1.1" - metro-resolver "0.58.0" + metro-resolver "0.59.0" wordwrap "^1.0.0" -metro-inspector-proxy@0.58.0: - version "0.58.0" - resolved "https://registry.yarnpkg.com/metro-inspector-proxy/-/metro-inspector-proxy-0.58.0.tgz#6fefb0cdf25655919d56c82ebe09cd26eb00e636" - integrity sha512-oFqTyNTJdCdvcw1Ha6SKE7ITbSaoTbO4xpYownIoJR+WZ0ZfxbWpp225JkHuBJm9UcBAnG9c0CME924m3uBbaw== +metro-inspector-proxy@0.59.0: + version "0.59.0" + resolved "https://registry.yarnpkg.com/metro-inspector-proxy/-/metro-inspector-proxy-0.59.0.tgz#39d1390772d13767fc595be9a1a7074e2425cf8e" + integrity sha512-hPeAuQcofTOH0F+2GEZqWkvkVY1/skezSSlMocDQDaqds+Kw6JgdA7FlZXxnKmQ/jYrWUzff/pl8SUCDwuYthQ== dependencies: connect "^3.6.5" debug "^2.2.0" - rxjs "^5.4.3" ws "^1.1.5" yargs "^14.2.0" -metro-minify-uglify@0.58.0: - version "0.58.0" - resolved "https://registry.yarnpkg.com/metro-minify-uglify/-/metro-minify-uglify-0.58.0.tgz#7e1066954bfd4f767ba6aca7feef676ca44c68b8" - integrity sha512-vRHsA7bCi7eCn3LXLm20EfY2NoWDyYOnmWaq/N8LB0OxL2L5DXRqMYAQK+prWGJ5S1yvVnDuuNVP+peQ9851TA== +metro-minify-uglify@0.59.0: + version "0.59.0" + resolved "https://registry.yarnpkg.com/metro-minify-uglify/-/metro-minify-uglify-0.59.0.tgz#6491876308d878742f7b894d7fca4af356886dd5" + integrity sha512-7IzVgCVWZMymgZ/quieg/9v5EQ8QmZWAgDc86Zp9j0Vy6tQTjUn6jlU+YAKW3mfMEjMr6iIUzCD8YklX78tFAw== dependencies: uglify-es "^3.1.9" -metro-react-native-babel-preset@0.58.0: - version "0.58.0" - resolved "https://registry.yarnpkg.com/metro-react-native-babel-preset/-/metro-react-native-babel-preset-0.58.0.tgz#18f48d33fe124280ffabc000ab8b42c488d762a2" - integrity sha512-MRriNW+fF6jxABsgPphocUY6mIhmCm8idcrQZ58fT3Iti2vCdtkaK32TyCGUNUptzhUe2/cbE57j4aC+eaodAA== - dependencies: - "@babel/plugin-proposal-class-properties" "^7.0.0" - "@babel/plugin-proposal-export-default-from" "^7.0.0" - "@babel/plugin-proposal-nullish-coalescing-operator" "^7.0.0" - "@babel/plugin-proposal-object-rest-spread" "^7.0.0" - "@babel/plugin-proposal-optional-catch-binding" "^7.0.0" - "@babel/plugin-proposal-optional-chaining" "^7.0.0" - "@babel/plugin-syntax-dynamic-import" "^7.0.0" - "@babel/plugin-syntax-export-default-from" "^7.0.0" - "@babel/plugin-syntax-flow" "^7.2.0" - "@babel/plugin-transform-arrow-functions" "^7.0.0" - "@babel/plugin-transform-block-scoping" "^7.0.0" - "@babel/plugin-transform-classes" "^7.0.0" - "@babel/plugin-transform-computed-properties" "^7.0.0" - "@babel/plugin-transform-destructuring" "^7.0.0" - "@babel/plugin-transform-exponentiation-operator" "^7.0.0" - "@babel/plugin-transform-flow-strip-types" "^7.0.0" - "@babel/plugin-transform-for-of" "^7.0.0" - "@babel/plugin-transform-function-name" "^7.0.0" - "@babel/plugin-transform-literals" "^7.0.0" - "@babel/plugin-transform-modules-commonjs" "^7.0.0" - "@babel/plugin-transform-object-assign" "^7.0.0" - "@babel/plugin-transform-parameters" "^7.0.0" - "@babel/plugin-transform-react-display-name" "^7.0.0" - "@babel/plugin-transform-react-jsx" "^7.0.0" - "@babel/plugin-transform-react-jsx-source" "^7.0.0" - "@babel/plugin-transform-regenerator" "^7.0.0" - "@babel/plugin-transform-runtime" "^7.0.0" - "@babel/plugin-transform-shorthand-properties" "^7.0.0" - "@babel/plugin-transform-spread" "^7.0.0" - "@babel/plugin-transform-sticky-regex" "^7.0.0" - "@babel/plugin-transform-template-literals" "^7.0.0" - "@babel/plugin-transform-typescript" "^7.5.0" - "@babel/plugin-transform-unicode-regex" "^7.0.0" - "@babel/template" "^7.0.0" - react-refresh "^0.4.0" - metro-react-native-babel-preset@0.59.0, metro-react-native-babel-preset@^0.59.0: version "0.59.0" resolved "https://registry.yarnpkg.com/metro-react-native-babel-preset/-/metro-react-native-babel-preset-0.59.0.tgz#20e020bc6ac9849e1477de1333d303ed42aba225" @@ -11828,7 +10898,7 @@ metro-react-native-babel-preset@0.59.0, metro-react-native-babel-preset@^0.59.0: "@babel/template" "^7.0.0" react-refresh "^0.4.0" -metro-react-native-babel-transformer@0.59.0: +metro-react-native-babel-transformer@0.59.0, metro-react-native-babel-transformer@^0.59.0: version "0.59.0" resolved "https://registry.yarnpkg.com/metro-react-native-babel-transformer/-/metro-react-native-babel-transformer-0.59.0.tgz#9b3dfd6ad35c6ef37fc4ce4d20a2eb67fabbb4be" integrity sha512-1O3wrnMq4NcPQ1asEcl9lRDn/t+F1Oef6S9WaYVIKEhg9m/EQRGVrrTVP+R6B5Eeaj3+zNKbzM8Dx/NWy1hUbQ== @@ -11839,37 +10909,13 @@ metro-react-native-babel-transformer@0.59.0: metro-react-native-babel-preset "0.59.0" metro-source-map "0.59.0" -metro-react-native-babel-transformer@^0.58.0: - version "0.58.0" - resolved "https://registry.yarnpkg.com/metro-react-native-babel-transformer/-/metro-react-native-babel-transformer-0.58.0.tgz#5da0e5a1b83c01d11626905fa59f34fda53a21a5" - integrity sha512-3A73+cRq1eUPQ8g+hPNGgMUMCGmtQjwqHfoG1DwinAoJ/kr4WOXWWbGZo0xHJNBe/zdHGl0uHcDCp2knPglTdQ== - dependencies: - "@babel/core" "^7.0.0" - babel-preset-fbjs "^3.3.0" - metro-babel-transformer "0.58.0" - metro-react-native-babel-preset "0.58.0" - metro-source-map "0.58.0" - -metro-resolver@0.58.0, metro-resolver@^0.58.0: - version "0.58.0" - resolved "https://registry.yarnpkg.com/metro-resolver/-/metro-resolver-0.58.0.tgz#4d03edc52e2e25d45f16688adf3b3f268ea60df9" - integrity sha512-XFbAKvCHN2iWqKeiRARzEXn69eTDdJVJC7lu16S4dPQJ+Dy82dZBr5Es12iN+NmbJuFgrAuIHbpWrdnA9tOf6Q== +metro-resolver@0.59.0, metro-resolver@^0.59.0: + version "0.59.0" + resolved "https://registry.yarnpkg.com/metro-resolver/-/metro-resolver-0.59.0.tgz#fbc9d7c95f094c52807877d0011feffb9e896fad" + integrity sha512-lbgiumnwoVosffEI96z0FGuq1ejTorHAj3QYUPmp5dFMfitRxLP7Wm/WP9l4ZZjIptxTExsJwuEff1SLRCPD9w== dependencies: absolute-path "^0.0.0" -metro-source-map@0.58.0: - version "0.58.0" - resolved "https://registry.yarnpkg.com/metro-source-map/-/metro-source-map-0.58.0.tgz#e951b99f4c653239ce9323bb08339c6f1978a112" - integrity sha512-yvN1YPmejmgiiS7T1aKBiiUTHPw2Vcm3r2TZ+DY92z/9PR4alysIywrCs/fTHs8rbDcKM5VfPCKGLpkBrbKeOw== - dependencies: - "@babel/traverse" "^7.0.0" - "@babel/types" "^7.0.0" - invariant "^2.2.4" - metro-symbolicate "0.58.0" - ob1 "0.58.0" - source-map "^0.5.6" - vlq "^1.0.0" - metro-source-map@0.59.0: version "0.59.0" resolved "https://registry.yarnpkg.com/metro-source-map/-/metro-source-map-0.59.0.tgz#e9beb9fc51bfb4e060f95820cf1508fc122d23f7" @@ -11883,17 +10929,6 @@ metro-source-map@0.59.0: source-map "^0.5.6" vlq "^1.0.0" -metro-symbolicate@0.58.0: - version "0.58.0" - resolved "https://registry.yarnpkg.com/metro-symbolicate/-/metro-symbolicate-0.58.0.tgz#ba9fd52549c41fc1b656adaad7c8875726dd5abe" - integrity sha512-uIVxUQC1E26qOMj13dKROhwAa2FmZk5eR0NcBqej/aXmQhpr8LjJg2sondkoLKUp827Tf/Fm9+pS4icb5XiqCw== - dependencies: - invariant "^2.2.4" - metro-source-map "0.58.0" - source-map "^0.5.6" - through2 "^2.0.1" - vlq "^1.0.0" - metro-symbolicate@0.59.0: version "0.59.0" resolved "https://registry.yarnpkg.com/metro-symbolicate/-/metro-symbolicate-0.59.0.tgz#fc7f93957a42b02c2bfc57ed1e8f393f5f636a54" @@ -11905,10 +10940,10 @@ metro-symbolicate@0.59.0: through2 "^2.0.1" vlq "^1.0.0" -metro@0.58.0, metro@^0.58.0: - version "0.58.0" - resolved "https://registry.yarnpkg.com/metro/-/metro-0.58.0.tgz#c037318c112f80dc96199780c8b401ab72cfd142" - integrity sha512-yi/REXX+/s4r7RjzXht+E+qE6nzvFIrEXO5Q61h+70Q7RODMU8EnlpXx04JYk7DevHuMhFaX+NWhCtRINzR4zA== +metro@0.59.0, metro@^0.59.0: + version "0.59.0" + resolved "https://registry.yarnpkg.com/metro/-/metro-0.59.0.tgz#64a87cd61357814a4f279518e0781b1eab5934b8" + integrity sha512-OpVgYXyuTvouusFZQJ/UYKEbwfLmialrSCUUTGTFaBor6UMUHZgXPYtK86LzesgMqRc8aiuTQVO78iKW2Iz3wg== dependencies: "@babel/code-frame" "^7.0.0" "@babel/core" "^7.0.0" @@ -11928,28 +10963,29 @@ metro@0.58.0, metro@^0.58.0: connect "^3.6.5" debug "^2.2.0" denodeify "^1.2.1" + error-stack-parser "^2.0.6" eventemitter3 "^3.0.0" fbjs "^1.0.0" fs-extra "^1.0.0" graceful-fs "^4.1.3" image-size "^0.6.0" invariant "^2.2.4" - jest-haste-map "^24.7.1" - jest-worker "^24.6.0" + jest-haste-map "^24.9.0" + jest-worker "^24.9.0" json-stable-stringify "^1.0.1" lodash.throttle "^4.1.1" merge-stream "^1.0.1" - metro-babel-register "0.58.0" - metro-babel-transformer "0.58.0" - metro-cache "0.58.0" - metro-config "0.58.0" - metro-core "0.58.0" - metro-inspector-proxy "0.58.0" - metro-minify-uglify "0.58.0" - metro-react-native-babel-preset "0.58.0" - metro-resolver "0.58.0" - metro-source-map "0.58.0" - metro-symbolicate "0.58.0" + metro-babel-register "0.59.0" + metro-babel-transformer "0.59.0" + metro-cache "0.59.0" + metro-config "0.59.0" + metro-core "0.59.0" + metro-inspector-proxy "0.59.0" + metro-minify-uglify "0.59.0" + metro-react-native-babel-preset "0.59.0" + metro-resolver "0.59.0" + metro-source-map "0.59.0" + metro-symbolicate "0.59.0" mime-types "2.1.11" mkdirp "^0.5.1" node-fetch "^2.2.0" @@ -11962,7 +10998,6 @@ metro@0.58.0, metro@^0.58.0: temp "0.8.3" throat "^4.1.0" wordwrap "^1.0.0" - write-file-atomic "^1.2.0" ws "^1.1.5" xpipe "^1.0.5" yargs "^14.2.0" @@ -12010,13 +11045,13 @@ micromatch@^3.1.10, micromatch@^3.1.4: snapdragon "^0.8.1" to-regex "^3.0.2" -micromatch@^4.0.2: - version "4.0.2" - resolved "https://registry.yarnpkg.com/micromatch/-/micromatch-4.0.2.tgz#4fcb0999bf9fbc2fcbdd212f6d629b9a56c39259" - integrity sha512-y7FpHSbMUMoyPbYUSzO6PaZ6FyRnQOpHuKwbo1G+Knck95XVU4QAiKdGEnj5wwoS7PlOgthX/09u5iFJ+aYf5Q== +micromatch@^4.0.2, micromatch@^4.0.4: + version "4.0.4" + resolved "https://registry.yarnpkg.com/micromatch/-/micromatch-4.0.4.tgz#896d519dfe9db25fce94ceb7a500919bf881ebf9" + integrity sha512-pRmzw/XUcwXGpD9aI9q/0XOwLNygjETJ8y0ao0wdqprrzDa4YnxLcz7fQRZr8voh8V10kGhABbNcHVk5wHgWwg== dependencies: braces "^3.0.1" - picomatch "^2.0.5" + picomatch "^2.2.3" miller-rabin@^4.0.0: version "4.0.1" @@ -12026,10 +11061,10 @@ miller-rabin@^4.0.0: bn.js "^4.0.0" brorand "^1.0.1" -mime-db@1.44.0, "mime-db@>= 1.43.0 < 2": - version "1.44.0" - resolved "https://registry.yarnpkg.com/mime-db/-/mime-db-1.44.0.tgz#fa11c5eb0aca1334b4233cb4d52f10c5a6272f92" - integrity sha512-/NOTfLrsPBVeH7YtFPgsVWveuL+4SjjYxaQ1xtM1KMFj7HdxlBlxeyNLzhyJVx7r4rZGJAZ/6lkKCitSc/Nmpg== +mime-db@1.48.0, "mime-db@>= 1.43.0 < 2": + version "1.48.0" + resolved "https://registry.yarnpkg.com/mime-db/-/mime-db-1.48.0.tgz#e35b31045dd7eada3aaad537ed88a33afbef2d1d" + integrity sha512-FM3QwxV+TnZYQ2aRqhlKBMHxk10lTbMt3bBkMAp54ddrNeVSfcQYOOKuGuy3Ddrm38I04If834fOUSq1yzslJQ== mime-db@~1.23.0: version "1.23.0" @@ -12049,11 +11084,11 @@ mime-types@2.1.11: mime-db "~1.23.0" mime-types@^2.1.12, mime-types@~2.1.19, mime-types@~2.1.24: - version "2.1.27" - resolved "https://registry.yarnpkg.com/mime-types/-/mime-types-2.1.27.tgz#47949f98e279ea53119f5722e0f34e529bec009f" - integrity sha512-JIhqnCasI9yD+SsmkquHBxTSEuZdQX5BuQnS2Vc7puQQQ+8yiP5AY5uWhpdv4YL4VM5c6iliiYWPgJ/nJQLp7w== + version "2.1.31" + resolved "https://registry.yarnpkg.com/mime-types/-/mime-types-2.1.31.tgz#a00d76b74317c61f9c2db2218b8e9f8e9c5c9e6b" + integrity sha512-XGZnNzm3QvgKxa8dpzyhFTHmpP3l5YNusmne07VUOXxou9CqUqYa/HBy124RqtVh/O2pECas/MOcsDgpilPOPg== dependencies: - mime-db "1.44.0" + mime-db "1.48.0" mime@1.6.0, mime@^1.3.4: version "1.6.0" @@ -12061,9 +11096,9 @@ mime@1.6.0, mime@^1.3.4: integrity sha512-x0Vn8spI+wuJ1O6S7gnbaQg8Pxh4NNHb7KSINmEWKiPE4RKOplvijn+NkmYmmRgP68mc70j2EbeTFRsrswaQeg== mime@^2.4.1, mime@^2.4.4: - version "2.4.5" - resolved "https://registry.yarnpkg.com/mime/-/mime-2.4.5.tgz#d8de2ecb92982dedbb6541c9b6841d7f218ea009" - integrity sha512-3hQhEUF027BuxZjQA3s7rIv/7VCQPa27hN9u9g87sEkWaKwQPuXOkVKtOeiyUrnWqTDiOs8Ed2rwg733mB0R5w== + version "2.5.2" + resolved "https://registry.yarnpkg.com/mime/-/mime-2.5.2.tgz#6e3dc6cc2b9510643830e5f19d5cb753da5eeabe" + integrity sha512-tqkh47FzKeCPD2PUiPB6pkbMzsCasjxAfC62/Wap5qrUWcb+sFasXUC5I3gYM5iBM8v/Qpn4UK0x+j0iHyFPDg== mimic-fn@^1.0.0: version "1.2.0" @@ -12087,7 +11122,7 @@ minimalistic-assert@^1.0.0, minimalistic-assert@^1.0.1: resolved "https://registry.yarnpkg.com/minimalistic-assert/-/minimalistic-assert-1.0.1.tgz#2e194de044626d4a10e7f7fbc00ce73e83e4d5c7" integrity sha512-UtJcAD4yEaGtjPezWuO9wC4nwUnVH/8/Im3yEHQP4b67cXlD/Qr9hdITCU1xDbSEXg2XKNaP8jsReV7vQd00/A== -minimalistic-crypto-utils@^1.0.0, minimalistic-crypto-utils@^1.0.1: +minimalistic-crypto-utils@^1.0.1: version "1.0.1" resolved "https://registry.yarnpkg.com/minimalistic-crypto-utils/-/minimalistic-crypto-utils-1.0.1.tgz#f6c00c1c0b082246e5c4d99dfb8c7c083b2b582a" integrity sha1-9sAMHAsIIkblxNmd+4x8CDsrWCo= @@ -12099,7 +11134,7 @@ minimalistic-crypto-utils@^1.0.0, minimalistic-crypto-utils@^1.0.1: dependencies: brace-expansion "^1.1.7" -minimist@^1.1.1, minimist@^1.1.3, minimist@^1.2.0, minimist@^1.2.5, "minimist@~ 1.2.0": +minimist@>=1.2.2, minimist@^1.1.1, minimist@^1.1.3, minimist@^1.2.0, minimist@^1.2.5: version "1.2.5" resolved "https://registry.yarnpkg.com/minimist/-/minimist-1.2.5.tgz#67d66014b66a6a8aaa0c083c5fd58df4e4e97602" integrity sha512-FM9nNUYrRBAELZQT3xeZQ7fmMOBg6nWNmJKTcgsJeaLstP/UODVpGsr5OhXhhXg6f+qtJ8uiZ+PUxkDWcgIXLw== @@ -12119,9 +11154,9 @@ minipass-flush@^1.0.5: minipass "^3.0.0" minipass-pipeline@^1.2.2: - version "1.2.3" - resolved "https://registry.yarnpkg.com/minipass-pipeline/-/minipass-pipeline-1.2.3.tgz#55f7839307d74859d6e8ada9c3ebe72cec216a34" - integrity sha512-cFOknTvng5vqnwOpDsZTWhNll6Jf8o2x+/diplafmxpuIymAjzoOolZG0VvQf3V2HgqzJNhnuKHYp2BqDgz8IQ== + version "1.2.4" + resolved "https://registry.yarnpkg.com/minipass-pipeline/-/minipass-pipeline-1.2.4.tgz#68472f79711c084657c067c5c6ad93cddea8214c" + integrity sha512-xuIq7cIOt09RPRJ19gdi4b+RiNvDFYe5JH+ggNvBqGqpQXcru3PcRmOZuHBKWK1Txf9+cQ+HMVN4d6z46LZP7A== dependencies: minipass "^3.0.0" @@ -12207,16 +11242,11 @@ mocha@9.0.1: yargs-parser "20.2.4" yargs-unparser "2.0.0" -moment@2.29.1, moment@^2.19.3, moment@^2.24.0: +moment@2.29.1, moment@2.x.x, moment@^2.19.3, moment@^2.24.0: version "2.29.1" resolved "https://registry.yarnpkg.com/moment/-/moment-2.29.1.tgz#b2be769fa31940be9eeea6469c075e35006fa3d3" integrity sha512-kHmoybcPV8Sqy59DwNDY3Jefr64lK/by/da0ViFcuA4DH0vQg5Q6Ze5VimxkfQNSC+Mls/Kx53s7TjP1RhFEDQ== -moment@2.x.x: - version "2.26.0" - resolved "https://registry.yarnpkg.com/moment/-/moment-2.26.0.tgz#5e1f82c6bafca6e83e808b30c8705eed0dcbd39a" - integrity sha512-oIixUO+OamkUkwjhAVE18rAMfRJNsNe/Stid/gwHSOfHrOtw9EhAY2AHvdKZ/k/MggcYELFCJz/Sn2pL8b8JMw== - move-concurrently@^1.0.1: version "1.0.1" resolved "https://registry.yarnpkg.com/move-concurrently/-/move-concurrently-1.0.1.tgz#be2c005fda32e0b29af1f05d7c4b33214c701f92" @@ -12239,12 +11269,12 @@ ms@2.1.1: resolved "https://registry.yarnpkg.com/ms/-/ms-2.1.1.tgz#30a5864eb3ebb0a66f2ebe6d727af06a09d86e0a" integrity sha512-tgp+dl5cGk28utYktBsrFqA7HKgrhgPsg6Z/EfhWI4gl1Hwq8B/GmY/0oXZ6nF8hDVesS/FpnYaD/kOWhYQvyg== -ms@2.1.2, ms@^2.1.1: +ms@2.1.2: version "2.1.2" resolved "https://registry.yarnpkg.com/ms/-/ms-2.1.2.tgz#d09d1f357b443f493382a8eb3ccd183872ae6009" integrity sha512-sGkPx+VjMtmA6MX27oA4FBFELFCZZ4S4XqeGOXCv68tT+jb3vk/RyaKWP0PTKyWtmLSM0b+adUTEvbs1PEaH2w== -ms@2.1.3: +ms@2.1.3, ms@^2.1.1: version "2.1.3" resolved "https://registry.yarnpkg.com/ms/-/ms-2.1.3.tgz#574c8138ce1d2b5861f0b44579dbadd60c6615b2" integrity sha512-6FlzubTLZG3J2a/NVCAleEhjzq5oxgHyaCU9yYXvcLsvoVaHJq/s5xXI6/XXP6tz7R9xAOtHnSO/tXtF3WRTlA== @@ -12268,12 +11298,7 @@ mv@~2: ncp "~2.0.0" rimraf "~2.4.0" -nan@^2.12.1: - version "2.14.1" - resolved "https://registry.yarnpkg.com/nan/-/nan-2.14.1.tgz#d7be34dfa3105b91494c3147089315eff8874b01" - integrity sha512-isWHgVjnFjh2x2yuJ/tj3JbwoHu3UC2dX5G/88Cm24yB6YopVgxvBObDY7n5xW6ExmFhJpSEQqFPvq9zaXc8Jw== - -nan@^2.14.0: +nan@^2.12.1, nan@^2.14.0: version "2.14.2" resolved "https://registry.yarnpkg.com/nan/-/nan-2.14.2.tgz#f5376400695168f4cc694ac9393d0c9585eeea19" integrity sha512-M2ufzIiINKCuDfBSAUr1vWQ+vuVcA9kqx8JJUsbQi6yf1uGRyb7HfpdfUr5qLXf3B/t8dPvcjhKMmlfnP47EzQ== @@ -12316,28 +11341,33 @@ negotiator@0.6.2: integrity sha512-hZXc7K2e+PgeI1eDBe/10Ard4ekbfrrqG8Ep+8Jmf4JID2bNg7NvCPOZN+kfF574pFQI7mum2AUqDidoKqcTOw== neo-async@^2.5.0, neo-async@^2.6.0, neo-async@^2.6.1: - version "2.6.1" - resolved "https://registry.yarnpkg.com/neo-async/-/neo-async-2.6.1.tgz#ac27ada66167fa8849a6addd837f6b189ad2081c" - integrity sha512-iyam8fBuCUpWeKPGpaNMetEocMt364qkCsfL9JuhjXX6dRnguRVOfk2GZaDpPjcOKiiXCPINZC1GczQ7iTq3Zw== + version "2.6.2" + resolved "https://registry.yarnpkg.com/neo-async/-/neo-async-2.6.2.tgz#b4aafb93e3aeb2d8174ca53cf163ab7d7308305f" + integrity sha512-Yd3UES5mWCSqR+qNT93S3UoYUkqAZ9lLg8a7g9rimsWmYGK8cVToA4/sF3RrshdyV3sAGMXVUmpMYOw+dLpOuw== nice-try@^1.0.4: version "1.0.5" resolved "https://registry.yarnpkg.com/nice-try/-/nice-try-1.0.5.tgz#a3378a7696ce7d223e88fc9b764bd7ef1089e366" integrity sha512-1nh45deeb5olNY7eX82BkPO7SSxR5SSYJiPTrTdFUVYwAl8CKMA5N9PjTYkHiRjisVcxcQ1HXdLhx2qxxJzLNQ== -no-case@^3.0.3: - version "3.0.3" - resolved "https://registry.yarnpkg.com/no-case/-/no-case-3.0.3.tgz#c21b434c1ffe48b39087e86cfb4d2582e9df18f8" - integrity sha512-ehY/mVQCf9BL0gKfsJBvFJen+1V//U+0HQMPrWct40ixE4jnv0bfvxDbWtAHL9EcaPEOJHVVYKoQn1TlZUB8Tw== +no-case@^3.0.4: + version "3.0.4" + resolved "https://registry.yarnpkg.com/no-case/-/no-case-3.0.4.tgz#d361fd5c9800f558551a8369fc0dcd4662b6124d" + integrity sha512-fgAN3jGAh+RoxUGZHTSOLJIqUc2wmoBwGR4tbpNAKmmovFoWq0OdRkb0VkldReO2a2iBT/OEulG9XSUc10r3zg== dependencies: - lower-case "^2.0.1" - tslib "^1.10.0" + lower-case "^2.0.2" + tslib "^2.0.3" nocache@^2.1.0: version "2.1.0" resolved "https://registry.yarnpkg.com/nocache/-/nocache-2.1.0.tgz#120c9ffec43b5729b1d5de88cd71aa75a0ba491f" integrity sha512-0L9FvHG3nfnnmaEQPjT9xhfN4ISk0A8/2j4M37Np4mcDesJjHgEUfgPhdCyZuFI954tjokaIj/A3NdpFNdEh4Q== +node-fetch@2.6.1, node-fetch@^2.2.0, node-fetch@^2.6.0, node-fetch@^2.6.1: + version "2.6.1" + resolved "https://registry.yarnpkg.com/node-fetch/-/node-fetch-2.6.1.tgz#045bd323631f76ed2e2b55573394416b639a0052" + integrity sha512-V4aYg89jEoVRxRb2fJdAg8FHvI7cEyYdVAh94HH0UIK8oJxUfkjlDQN9RbMx+bEjP7+ggMiFRprSti032Oipxw== + node-fetch@^1.0.1: version "1.7.3" resolved "https://registry.yarnpkg.com/node-fetch/-/node-fetch-1.7.3.tgz#980f6f72d85211a5347c6b2bc18c5b84c3eb47ef" @@ -12346,16 +11376,6 @@ node-fetch@^1.0.1: encoding "^0.1.11" is-stream "^1.0.1" -node-fetch@^2.2.0, node-fetch@^2.6.0: - version "2.6.0" - resolved "https://registry.yarnpkg.com/node-fetch/-/node-fetch-2.6.0.tgz#e633456386d4aa55863f676a7ab0daa8fdecb0fd" - integrity sha512-8dG4H5ujfvFiqDmVu9fQ5bOHUC15JMjMY/Zumv26oOvvVJjM67KF8koCWIabKQ1GJIa9r2mMZscBq/TbdOcmNA== - -node-fetch@^2.6.1: - version "2.6.1" - resolved "https://registry.yarnpkg.com/node-fetch/-/node-fetch-2.6.1.tgz#045bd323631f76ed2e2b55573394416b639a0052" - integrity sha512-V4aYg89jEoVRxRb2fJdAg8FHvI7cEyYdVAh94HH0UIK8oJxUfkjlDQN9RbMx+bEjP7+ggMiFRprSti032Oipxw== - node-int64@^0.4.0: version "0.4.0" resolved "https://registry.yarnpkg.com/node-int64/-/node-int64-0.4.0.tgz#87a9065cdb355d3182d8f94ce11188b825c68a3b" @@ -12396,9 +11416,9 @@ node-modules-regexp@^1.0.0: integrity sha1-jZ2+KJZKSsVxLpExZCEHxx6Q7EA= node-notifier@^5.2.1: - version "5.4.3" - resolved "https://registry.yarnpkg.com/node-notifier/-/node-notifier-5.4.3.tgz#cb72daf94c93904098e28b9c590fd866e464bd50" - integrity sha512-M4UBGcs4jeOK9CjTsYwkvH6/MzuUmGCyTW+kCY7uO+1ZVr0+FHGdPdIf5CCLqAaxnRrWidyoQlNkMIIVwbKB8Q== + version "5.4.5" + resolved "https://registry.yarnpkg.com/node-notifier/-/node-notifier-5.4.5.tgz#0cbc1a2b0f658493b4025775a13ad938e96091ef" + integrity sha512-tVbHs7DyTLtzOiN78izLA85zRqB9NvEXkAf014Vx3jtSvn/xBl6bR8ZYifj+dFcFrKI21huSQgJZ6ZtL3B4HfQ== dependencies: growly "^1.3.0" is-wsl "^1.1.0" @@ -12422,15 +11442,10 @@ node-releases@^1.1.29, node-releases@^1.1.71: resolved "https://registry.yarnpkg.com/node-releases/-/node-releases-1.1.73.tgz#dd4e81ddd5277ff846b80b52bb40c49edf7a7b20" integrity sha512-uW7fodD6pyW2FZNZnp/Z3hvWKeEW1Y8R1+1CnErE8cXFXzl5blBOoVB41CvMer6P6Q0S5FXDwcHgFd1Wj0U9zg== -node-releases@^1.1.53: - version "1.1.56" - resolved "https://registry.yarnpkg.com/node-releases/-/node-releases-1.1.56.tgz#bc054a417d316e3adac90eafb7e1932802f28705" - integrity sha512-EVo605FhWLygH8a64TjgpjyHYOihkxECwX1bHHr8tETJKWEiWS2YJjPbvsX2jFjnjTNEgBCmk9mLjKG1Mf11cw== - node-stream-zip@^1.9.1: - version "1.11.1" - resolved "https://registry.yarnpkg.com/node-stream-zip/-/node-stream-zip-1.11.1.tgz#7af41e2622f1dc354db602e53f7a62e21a69308e" - integrity sha512-eiNM9UJ26OkbOLfv4VI8X94KRw28xMq2cpWapRsR/aWXGu+hNFvEY889Glm6qi43wtbjcMSU1oFxv5XZ0OKhbA== + version "1.13.6" + resolved "https://registry.yarnpkg.com/node-stream-zip/-/node-stream-zip-1.13.6.tgz#8abdfdbc4bc96ee11e9438d94cc8c93c7df28959" + integrity sha512-c7tRSVkLNOHvasWgmZ2d86cDgTWEygnkuuHNOY9c0mR3yLZtQTTrGvMaJ/fPs6+LOJn3240y30l5sjLaXFtcvw== node-version@^1.0.0: version "1.2.0" @@ -12511,12 +11526,12 @@ npmlog@^4.1.2: gauge "~2.7.3" set-blocking "~2.0.0" -nth-check@~1.0.1: - version "1.0.2" - resolved "https://registry.yarnpkg.com/nth-check/-/nth-check-1.0.2.tgz#b2bd295c37e3dd58a3bf0700376663ba4d9cf05c" - integrity sha512-WeBOdju8SnzPN5vTUJYxYUxLeXpCaVP5i5e0LF8fg7WORF2Wd7wFX/pk0tYZk7s8T+J7VLy0Da6J1+wCT0AtHg== +nth-check@^2.0.0: + version "2.0.0" + resolved "https://registry.yarnpkg.com/nth-check/-/nth-check-2.0.0.tgz#1bb4f6dac70072fc313e8c9cd1417b5074c0a125" + integrity sha512-i4sc/Kj8htBrAiH1viZ0TgU8Y5XqCaV/FziYK6TBczxmeKm3AEFWqqF3195yKudrarqy7Zu80Ra5dobFjn9X/Q== dependencies: - boolbase "~1.0.0" + boolbase "^1.0.0" nullthrows@^1.1.0, nullthrows@^1.1.1: version "1.1.1" @@ -12543,11 +11558,6 @@ oauth-sign@~0.9.0: resolved "https://registry.yarnpkg.com/oauth-sign/-/oauth-sign-0.9.0.tgz#47a7b016baa68b5fa0ecf3dee08a85c679ac6455" integrity sha512-fexhUFFPTGV8ybAtSIGbV6gOkSv8UtRbDBnAyLQw4QPKkgNlsH2ByPGtMUqdWkos6YCRmAqViwgZrJc/mRDzZQ== -ob1@0.58.0: - version "0.58.0" - resolved "https://registry.yarnpkg.com/ob1/-/ob1-0.58.0.tgz#484a1e9a63a8b79d9ea6f3a83b2a42110faac973" - integrity sha512-uZP44cbowAfHafP1k4skpWItk5iHCoRevMfrnUvYCfyNNPPJd3rfDCyj0exklWi2gDXvjlj2ObsfiqP/bs/J7Q== - ob1@0.59.0: version "0.59.0" resolved "https://registry.yarnpkg.com/ob1/-/ob1-0.59.0.tgz#ee103619ef5cb697f2866e3577da6f0ecd565a36" @@ -12568,14 +11578,9 @@ object-copy@^0.1.0: kind-of "^3.0.3" object-inspect@^1.10.3, object-inspect@^1.9.0: - version "1.10.3" - resolved "https://registry.yarnpkg.com/object-inspect/-/object-inspect-1.10.3.tgz#c2aa7d2d09f50c99375704f7a0adf24c5782d369" - integrity sha512-e5mCJlSH7poANfC8z8S9s9S2IN5/4Zb3aZ33f5s8YqoazCFzNLloLU8r5VCG+G7WoqLvAAZoVMcy3tp/3X0Plw== - -object-inspect@^1.7.0: - version "1.7.0" - resolved "https://registry.yarnpkg.com/object-inspect/-/object-inspect-1.7.0.tgz#f4f6bd181ad77f006b5ece60bd0b6f398ff74a67" - integrity sha512-a7pEHdh1xKIAgTySUGgLMx/xwDZskN1Ud6egYYN3EdRW4ZMPNEDUTF+hwy2LUC+Bl+SyLXANnwz/jyh/qutKUw== + version "1.11.0" + resolved "https://registry.yarnpkg.com/object-inspect/-/object-inspect-1.11.0.tgz#9dceb146cedd4148a0d9e51ab88d34cf509922b1" + integrity sha512-jp7ikS6Sd3GxQfZJPyH3cjcbJF6GZPClgdV+EFygjFLQ5FmW/dRUnTd9PQ9k0JhoNDabWFbpF1yCdSWCC6gexg== object-is@^1.0.1: version "1.1.5" @@ -12585,7 +11590,7 @@ object-is@^1.0.1: call-bind "^1.0.2" define-properties "^1.1.3" -object-keys@^1.0.11, object-keys@^1.0.12, object-keys@^1.1.1: +object-keys@^1.0.12, object-keys@^1.1.1: version "1.1.1" resolved "https://registry.yarnpkg.com/object-keys/-/object-keys-1.1.1.tgz#1c47f272df277f3b1daf061677d9c82e2322c60e" integrity sha512-NuAESUOUMrlIXOfHKzD6bpPu3tYt3xvjNdRIQ+FeT0lNb4K8WR70CaDxhuNguS2XG+GjkyMwOzsN5ZktImfhLA== @@ -12597,17 +11602,7 @@ object-visit@^1.0.0: dependencies: isobject "^3.0.0" -object.assign@^4.1.0: - version "4.1.0" - resolved "https://registry.yarnpkg.com/object.assign/-/object.assign-4.1.0.tgz#968bf1100d7956bb3ca086f006f846b3bc4008da" - integrity sha512-exHJeq6kBKj58mqGyTQ9DFvrZC/eR6OwxzoM9YRoGBqrXYonaFyGiFMuc9VZrXf7DarreEwMpurG3dd+CNyW5w== - dependencies: - define-properties "^1.1.2" - function-bind "^1.1.1" - has-symbols "^1.0.0" - object-keys "^1.0.11" - -object.assign@^4.1.2: +object.assign@^4.1.0, object.assign@^4.1.2: version "4.1.2" resolved "https://registry.yarnpkg.com/object.assign/-/object.assign-4.1.2.tgz#0ed54a342eceb37b38ff76eb831a0e788cb63940" integrity sha512-ixT2L5THXsApyiUPYKmW+2EHpXXe5Ii3M+f4e+aJFAHao5amFRW6J0OO6c/LU8Be47utCx2GL89hxGB6XSmKuQ== @@ -12617,16 +11612,7 @@ object.assign@^4.1.2: has-symbols "^1.0.1" object-keys "^1.1.1" -object.entries@^1.1.0, object.entries@^1.1.1: - version "1.1.2" - resolved "https://registry.yarnpkg.com/object.entries/-/object.entries-1.1.2.tgz#bc73f00acb6b6bb16c203434b10f9a7e797d3add" - integrity sha512-BQdB9qKmb/HyNdMNWVr7O3+z5MUIx3aiegEIJqjMBbBf0YT9RRxTJSim4mzFqtyr7PDAHigq0N9dO0m0tRakQA== - dependencies: - define-properties "^1.1.3" - es-abstract "^1.17.5" - has "^1.0.3" - -object.entries@^1.1.2: +object.entries@^1.1.0, object.entries@^1.1.2: version "1.1.4" resolved "https://registry.yarnpkg.com/object.entries/-/object.entries-1.1.4.tgz#43ccf9a50bc5fd5b649d45ab1a579f24e088cafd" integrity sha512-h4LWKWE+wKQGhtMjZEBud7uLGhqyLwj8fpHOarZhD2uY3C9cRtk57VQ89ke3moByLXMedqs3XCHzyb4AmA2DjA== @@ -12635,17 +11621,7 @@ object.entries@^1.1.2: define-properties "^1.1.3" es-abstract "^1.18.2" -"object.fromentries@^2.0.0 || ^1.0.0": - version "2.0.2" - resolved "https://registry.yarnpkg.com/object.fromentries/-/object.fromentries-2.0.2.tgz#4a09c9b9bb3843dd0f89acdb517a794d4f355ac9" - integrity sha512-r3ZiBH7MQppDJVLx6fhD618GKNG40CZYH9wgwdhKxBDDbQgjeWGGd4AtkZad84d291YxvWe7bJGuE65Anh0dxQ== - dependencies: - define-properties "^1.1.3" - es-abstract "^1.17.0-next.1" - function-bind "^1.1.1" - has "^1.0.3" - -object.fromentries@^2.0.2: +"object.fromentries@^2.0.0 || ^1.0.0", object.fromentries@^2.0.2: version "2.0.4" resolved "https://registry.yarnpkg.com/object.fromentries/-/object.fromentries-2.0.4.tgz#26e1ba5c4571c5c6f0890cef4473066456a120b8" integrity sha512-EsFBshs5RUUpQEY1D4q/m59kMfz4YJvxuNCJcv/jWwOJr34EaVnG11ZrZa0UHB3wnzV1wx8m58T4hQL8IuNXlQ== @@ -12655,13 +11631,14 @@ object.fromentries@^2.0.2: es-abstract "^1.18.0-next.2" has "^1.0.3" -object.getownpropertydescriptors@^2.0.3, object.getownpropertydescriptors@^2.1.0: - version "2.1.0" - resolved "https://registry.yarnpkg.com/object.getownpropertydescriptors/-/object.getownpropertydescriptors-2.1.0.tgz#369bf1f9592d8ab89d712dced5cb81c7c5352649" - integrity sha512-Z53Oah9A3TdLoblT7VKJaTDdXdT+lQO+cNpKVnya5JDe9uLvzu1YyY1yFDFrcxrlRgWrEFH0jJtD/IbuwjcEVg== +object.getownpropertydescriptors@^2.0.3, object.getownpropertydescriptors@^2.1.1, object.getownpropertydescriptors@^2.1.2: + version "2.1.2" + resolved "https://registry.yarnpkg.com/object.getownpropertydescriptors/-/object.getownpropertydescriptors-2.1.2.tgz#1bd63aeacf0d5d2d2f31b5e393b03a7c601a23f7" + integrity sha512-WtxeKSzfBjlzL+F9b7M7hewDzMwy+C8NRssHd1YrNlzHzIDrXcXiNOMrezdAEM4UXixgV+vvnyBeN7Rygl2ttQ== dependencies: + call-bind "^1.0.2" define-properties "^1.1.3" - es-abstract "^1.17.0-next.1" + es-abstract "^1.18.0-next.2" object.omit@^2.0.0: version "2.0.1" @@ -12678,17 +11655,7 @@ object.pick@^1.3.0: dependencies: isobject "^3.0.1" -object.values@^1.1.0: - version "1.1.1" - resolved "https://registry.yarnpkg.com/object.values/-/object.values-1.1.1.tgz#68a99ecde356b7e9295a3c5e0ce31dc8c953de5e" - integrity sha512-WTa54g2K8iu0kmS/us18jEmdv1a4Wi//BZ/DTVYEcH0XhLM5NYdpDHja3gt57VrZLcNAO2WGA+KpWsDBaHt6eA== - dependencies: - define-properties "^1.1.3" - es-abstract "^1.17.0-next.1" - function-bind "^1.1.1" - has "^1.0.3" - -object.values@^1.1.1: +object.values@^1.1.0, object.values@^1.1.1: version "1.1.4" resolved "https://registry.yarnpkg.com/object.values/-/object.values-1.1.4.tgz#0d273762833e816b693a637d30073e7051535b30" integrity sha512-TnGo7j4XSnKQoK3MfvkzqKCi0nVe/D9I9IjwTNYdb/fxYHpjrluHVOgw0AF6jrRFGMPHdfuidR09tIDiIvnaSg== @@ -12729,9 +11696,9 @@ onetime@^2.0.0: mimic-fn "^1.0.0" onetime@^5.1.0: - version "5.1.0" - resolved "https://registry.yarnpkg.com/onetime/-/onetime-5.1.0.tgz#fff0f3c91617fe62bb50189636e99ac8a6df7be5" - integrity sha512-5NcSkPHhwTVFIQN+TUqXoS5+dlElHXdpAWu9I0HP20YOtIi+aZ0Ct82jdlILDxjLEAWwvm+qj1m6aEtsDVmm6Q== + version "5.1.2" + resolved "https://registry.yarnpkg.com/onetime/-/onetime-5.1.2.tgz#d0e96ebb56b07476df1dd9c4806e5237985ca45e" + integrity sha512-kbpaSSGJTWdAY5KPVeMOKXSrPtr8C8C7wodJbcsd51jRnmD+GZu8Y0VoU6Dm5Z4vWr0Ig/1NKuWRKf7j5aaYSg== dependencies: mimic-fn "^2.1.0" @@ -12836,9 +11803,9 @@ p-defer@^1.0.0: integrity sha1-n26xgvbJqozXQwBKfU+WsZaw+ww= p-each-series@^2.1.0: - version "2.1.0" - resolved "https://registry.yarnpkg.com/p-each-series/-/p-each-series-2.1.0.tgz#961c8dd3f195ea96c747e636b262b800a6b1af48" - integrity sha512-ZuRs1miPT4HrjFa+9fRfOFXxGJfORgelKV9f9nNOWw2gl6gVsRaVDOQP0+MI0G0wGKns1Yacsu0GjOFbTK0JFQ== + version "2.2.0" + resolved "https://registry.yarnpkg.com/p-each-series/-/p-each-series-2.2.0.tgz#105ab0357ce72b202a8a8b94933672657b5e2a9a" + integrity sha512-ycIL2+1V32th+8scbpTvyHNaHe02z0sjgh91XXjAk+ZeXoPN4Z46DVUnzdso0aX4KckKw0FNNFHdjZ2UsZvxiA== p-finally@^1.0.0: version "1.0.0" @@ -12941,12 +11908,12 @@ parallel-transform@^1.1.0: readable-stream "^2.1.5" param-case@^3.0.3: - version "3.0.3" - resolved "https://registry.yarnpkg.com/param-case/-/param-case-3.0.3.tgz#4be41f8399eff621c56eebb829a5e451d9801238" - integrity sha512-VWBVyimc1+QrzappRs7waeN2YmoZFCGXWASRYX1/rGHtXqEcrGEIDm+jqIwFa2fRXNgQEwrxaYuIrX0WcAguTA== + version "3.0.4" + resolved "https://registry.yarnpkg.com/param-case/-/param-case-3.0.4.tgz#7d17fe4aa12bde34d4a77d91acfb6219caad01c5" + integrity sha512-RXlj7zCYokReqWpOPH9oYivUzLYZ5vAPIfEmCTNViosC78F8F0H9y7T7gG2M39ymgutxF5gcFEsyZQSph9Bp3A== dependencies: - dot-case "^3.0.3" - tslib "^1.10.0" + dot-case "^3.0.4" + tslib "^2.0.3" parent-module@^1.0.0: version "1.0.1" @@ -12956,13 +11923,12 @@ parent-module@^1.0.0: callsites "^3.0.0" parse-asn1@^5.0.0, parse-asn1@^5.1.5: - version "5.1.5" - resolved "https://registry.yarnpkg.com/parse-asn1/-/parse-asn1-5.1.5.tgz#003271343da58dc94cace494faef3d2147ecea0e" - integrity sha512-jkMYn1dcJqF6d5CpU689bq7w/b5ALS9ROVSpQDPrZsqqesUJii9qutvoT5ltGedNXMO2e16YUWIghG9KxaViTQ== + version "5.1.6" + resolved "https://registry.yarnpkg.com/parse-asn1/-/parse-asn1-5.1.6.tgz#385080a3ec13cb62a62d39409cb3e88844cdaed4" + integrity sha512-RnZRo1EPU6JBnra2vGHj0yhp6ebyjBZpmUCLHWiFhxlzvBCCpAuZ7elsBp1PVAbQN0/04VD/19rfzlBSwLstMw== dependencies: - asn1.js "^4.0.0" + asn1.js "^5.2.0" browserify-aes "^1.0.0" - create-hash "^1.1.0" evp_bytestokey "^1.0.0" pbkdf2 "^3.0.3" safe-buffer "^5.1.1" @@ -13028,13 +11994,13 @@ parse-json@^4.0.0: json-parse-better-errors "^1.0.1" parse-json@^5.0.0: - version "5.0.0" - resolved "https://registry.yarnpkg.com/parse-json/-/parse-json-5.0.0.tgz#73e5114c986d143efa3712d4ea24db9a4266f60f" - integrity sha512-OOY5b7PAEFV0E2Fir1KOkxchnZNCdowAJgQ5NuxjpBKTRP3pQhwkrkxqQjeoKJ+fO7bCpmIZaogI4eZGDMEGOw== + version "5.2.0" + resolved "https://registry.yarnpkg.com/parse-json/-/parse-json-5.2.0.tgz#c76fc66dee54231c962b22bcc8a72cf2f99753cd" + integrity sha512-ayCKvm/phCGxOkYRSCM82iDwct8/EonSEgCSxWxD7ve6jHggsFl4fZVQBPRNgQoKiuV/odhFrGzQXZwbifC8Rg== dependencies: "@babel/code-frame" "^7.0.0" error-ex "^1.3.1" - json-parse-better-errors "^1.0.1" + json-parse-even-better-errors "^2.3.0" lines-and-columns "^1.1.6" parse-node-version@^1.0.0: @@ -13062,13 +12028,13 @@ parseurl@~1.3.2, parseurl@~1.3.3: resolved "https://registry.yarnpkg.com/parseurl/-/parseurl-1.3.3.tgz#9da19e7bee8d12dff0513ed5b76957793bc2e8d4" integrity sha512-CiyeOxFT/JZyN5m0z9PfXw4SCBJ6Sygz1Dpl0wqjlhDEGGBP1GnsUVEL0p63hoG1fcj3fHynXi9NYO4nWOL+qQ== -pascal-case@^3.1.1: - version "3.1.1" - resolved "https://registry.yarnpkg.com/pascal-case/-/pascal-case-3.1.1.tgz#5ac1975133ed619281e88920973d2cd1f279de5f" - integrity sha512-XIeHKqIrsquVTQL2crjq3NfJUxmdLasn3TYOU0VBM+UX2a6ztAWBlJQBePLGY7VHW8+2dRadeIPK5+KImwTxQA== +pascal-case@^3.1.2: + version "3.1.2" + resolved "https://registry.yarnpkg.com/pascal-case/-/pascal-case-3.1.2.tgz#b48e0ef2b98e205e7c1dae747d0b1508237660eb" + integrity sha512-uWlGT3YSnK9x3BQJaOdcZwrnV6hPpd8jFH1/ucpiLRPh/2zCVJKS19E4GvYHvaCcACn3foXZ0cLB9Wrx1KGe5g== dependencies: - no-case "^3.0.3" - tslib "^1.10.0" + no-case "^3.0.4" + tslib "^2.0.3" pascalcase@^0.1.1: version "0.1.1" @@ -13142,9 +12108,9 @@ path-key@^3.0.0, path-key@^3.1.0: integrity sha512-ojmeN0qd+y0jszEtoY48r0Peq5dwMEkIlCOu6Q5f41lfkswXuKtYrhgoTpLnyIcHm24Uhqx+5Tqm2InSwLhE6Q== path-parse@^1.0.5, path-parse@^1.0.6: - version "1.0.6" - resolved "https://registry.yarnpkg.com/path-parse/-/path-parse-1.0.6.tgz#d62dbb5679405d72c4737ec58600e9ddcf06d24c" - integrity sha512-GSmOT2EbHrINBf9SR7CDELwlJ8AENk3Qn7OikK4nFYAu3Ote2+JYNVvkpAEQm3/TLNEJFD/xZJjzyxg3KBWOzw== + version "1.0.7" + resolved "https://registry.yarnpkg.com/path-parse/-/path-parse-1.0.7.tgz#fbc114b60ca42b30d9daf5858e4bd68bbedb6735" + integrity sha512-LDJzPVEEEPR+y48z93A0Ed0yXb8pAByGWo/k5YYdYgpY2/2EsOsksJrq7lOHxryrVOn1ejG6oAp8ahvOIQD8sw== path-to-regexp@0.1.7: version "0.1.7" @@ -13180,9 +12146,9 @@ path-type@^4.0.0: integrity sha512-gDKb8aZMDeD/tZWs9P6+q0J9Mwkdl6xMV8TjnGP3qJVJ06bdMgkbBlLU8IdfOsIsFz2BW1rNVT3XuNEl8zPAvw== pbkdf2@^3.0.3: - version "3.0.17" - resolved "https://registry.yarnpkg.com/pbkdf2/-/pbkdf2-3.0.17.tgz#976c206530617b14ebb32114239f7b09336e93a6" - integrity sha512-U/il5MsrZp7mGg3mSQfn742na2T+1/vHDCG5/iTI3X9MKUuYUZVLQhyRsg06mCgDBTd57TxzgZt7P+fYfjRLtA== + version "3.1.2" + resolved "https://registry.yarnpkg.com/pbkdf2/-/pbkdf2-3.1.2.tgz#dd822aa0887580e52f1a039dc3eda108efae3075" + integrity sha512-iuh7L6jA7JEGu2WxDwtQP1ddOpaJNC4KlDEFfdQajSGgGPNi4OyDc2R7QnbY2bR9QjBVGwgvTdNJZoE7RaxUMA== dependencies: create-hash "^1.1.2" create-hmac "^1.1.4" @@ -13200,10 +12166,10 @@ phin@^2.9.1: resolved "https://registry.yarnpkg.com/phin/-/phin-2.9.3.tgz#f9b6ac10a035636fb65dfc576aaaa17b8743125c" integrity sha512-CzFr90qM24ju5f88quFC/6qohjC144rehe5n6DH900lgXmUe86+xCKc10ev56gRKC4/BkHUoG4uSiQgBiIXwDA== -picomatch@^2.0.4, picomatch@^2.0.5, picomatch@^2.2.1: - version "2.2.2" - resolved "https://registry.yarnpkg.com/picomatch/-/picomatch-2.2.2.tgz#21f333e9b6b8eaff02468f5146ea406d345f4dad" - integrity sha512-q0M/9eZHzmr0AulXyPwNfZjtwZ/RBZlbN3K3CErVrk50T2ASYI7Bye0EvekFY3IP1Nt2DHu0re+V2ZHIpMkuWg== +picomatch@^2.0.4, picomatch@^2.2.1, picomatch@^2.2.3: + version "2.3.0" + resolved "https://registry.yarnpkg.com/picomatch/-/picomatch-2.3.0.tgz#f1f061de8f6a4bf022892e2d128234fb98302972" + integrity sha512-lY1Q/PiJGC2zOv/z391WOTD+Z02bCgsFfvxoXXf6h7kv9o+WmsmzYqrAwY63sNgOxE4xEdq0WyUnXfKeBrSvYw== pify@^2.0.0: version "2.3.0" @@ -13267,7 +12233,7 @@ pkg-dir@^4.1.0, pkg-dir@^4.2.0: dependencies: find-up "^4.0.0" -pkg-up@2.0.0, pkg-up@^2.0.0: +pkg-up@2.0.0: version "2.0.0" resolved "https://registry.yarnpkg.com/pkg-up/-/pkg-up-2.0.0.tgz#c819ac728059a461cab1c3889a2be3c49a004d7f" integrity sha1-yBmscoBZpGHKscOImivjxJoATX8= @@ -13275,13 +12241,13 @@ pkg-up@2.0.0, pkg-up@^2.0.0: find-up "^2.1.0" plist@^3.0.1: - version "3.0.1" - resolved "https://registry.yarnpkg.com/plist/-/plist-3.0.1.tgz#a9b931d17c304e8912ef0ba3bdd6182baf2e1f8c" - integrity sha512-GpgvHHocGRyQm74b6FWEZZVRroHKE1I0/BTjAmySaohK+cUn+hZpbqXkc3KWgW3gQYkqcQej35FohcT0FRlkRQ== + version "3.0.2" + resolved "https://registry.yarnpkg.com/plist/-/plist-3.0.2.tgz#74bbf011124b90421c22d15779cee60060ba95bc" + integrity sha512-MSrkwZBdQ6YapHy87/8hDU8MnIcyxBKjeF+McXnr5A9MtffPewTs7G3hlpodT5TacyfIyFTaJEhh3GGcmasTgQ== dependencies: - base64-js "^1.2.3" + base64-js "^1.5.1" xmlbuilder "^9.0.7" - xmldom "0.1.x" + xmldom "^0.5.0" plugin-error@^0.1.2: version "0.1.2" @@ -13312,11 +12278,11 @@ pnp-webpack-plugin@1.5.0: ts-pnp "^1.1.2" polished@^3.3.1: - version "3.6.3" - resolved "https://registry.yarnpkg.com/polished/-/polished-3.6.3.tgz#68f4fe7ffad46530733029b939dd12978200cb59" - integrity sha512-QJ0q0b6gX1+0OJtPMfgVJxV0vg5XTa4im+Rca989dAtmsd/fEky3X+0A+V+OUXq1nyiDGplJwqD853dTS0gkPg== + version "3.7.2" + resolved "https://registry.yarnpkg.com/polished/-/polished-3.7.2.tgz#ec5ddc17a7d322a574d5e10ddd2a6f01d3e767d1" + integrity sha512-pQKtpZGmsZrW8UUpQMAnR7s3ppHeMQVNyMDKtUyKwuvDmklzcEyM5Kllb3JyE/sE/x7arDmyd35i+4vp99H6sQ== dependencies: - "@babel/runtime" "^7.9.2" + "@babel/runtime" "^7.12.5" popper.js@^1.14.4, popper.js@^1.14.7: version "1.16.1" @@ -13361,14 +12327,14 @@ postcss-modules-extract-imports@^2.0.0: postcss "^7.0.5" postcss-modules-local-by-default@^3.0.2: - version "3.0.2" - resolved "https://registry.yarnpkg.com/postcss-modules-local-by-default/-/postcss-modules-local-by-default-3.0.2.tgz#e8a6561be914aaf3c052876377524ca90dbb7915" - integrity sha512-jM/V8eqM4oJ/22j0gx4jrp63GSvDH6v86OqyTHHUvk4/k1vceipZsaymiZ5PvocqZOl5SFHiFJqjs3la0wnfIQ== + version "3.0.3" + resolved "https://registry.yarnpkg.com/postcss-modules-local-by-default/-/postcss-modules-local-by-default-3.0.3.tgz#bb14e0cc78279d504dbdcbfd7e0ca28993ffbbb0" + integrity sha512-e3xDq+LotiGesympRlKNgaJ0PCzoUIdpH0dj47iWAui/kyTgh3CiAr1qP54uodmJhl6p9rN6BoNcdEDVJx9RDw== dependencies: icss-utils "^4.1.1" - postcss "^7.0.16" + postcss "^7.0.32" postcss-selector-parser "^6.0.2" - postcss-value-parser "^4.0.0" + postcss-value-parser "^4.1.0" postcss-modules-scope@^2.2.0: version "2.2.0" @@ -13387,25 +12353,24 @@ postcss-modules-values@^3.0.0: postcss "^7.0.6" postcss-selector-parser@^6.0.0, postcss-selector-parser@^6.0.2: - version "6.0.2" - resolved "https://registry.yarnpkg.com/postcss-selector-parser/-/postcss-selector-parser-6.0.2.tgz#934cf799d016c83411859e09dcecade01286ec5c" - integrity sha512-36P2QR59jDTOAiIkqEprfJDsoNrvwFei3eCqKd1Y0tUsBimsq39BLp7RD+JWny3WgB1zGhJX8XVePwm9k4wdBg== + version "6.0.6" + resolved "https://registry.yarnpkg.com/postcss-selector-parser/-/postcss-selector-parser-6.0.6.tgz#2c5bba8174ac2f6981ab631a42ab0ee54af332ea" + integrity sha512-9LXrvaaX3+mcv5xkg5kFwqSzSH1JIObIx51PrndZwlmznwXRfxMddDvo9gve3gVR8ZTKgoFDdWkbRFmEhT4PMg== dependencies: cssesc "^3.0.0" - indexes-of "^1.0.1" - uniq "^1.0.1" + util-deprecate "^1.0.2" postcss-value-parser@^3.3.0: version "3.3.1" resolved "https://registry.yarnpkg.com/postcss-value-parser/-/postcss-value-parser-3.3.1.tgz#9ff822547e2893213cf1c30efa51ac5fd1ba8281" integrity sha512-pISE66AbVkp4fDQ7VHBwRNXzAAKJjw4Vw7nWI/+Q3vuly7SNfgYXvm6i5IgFylHGK5sP/xHAbB7N49OS4gWNyQ== -postcss-value-parser@^4.0.0, postcss-value-parser@^4.1.0: +postcss-value-parser@^4.1.0: version "4.1.0" resolved "https://registry.yarnpkg.com/postcss-value-parser/-/postcss-value-parser-4.1.0.tgz#443f6a20ced6481a2bda4fa8532a6e55d789a2cb" integrity sha512-97DXOFbQJhk71ne5/Mt6cOu6yxsSfM0QGQyl0L25Gca4yGWEGJaig7l7gbCX623VqTBNGLRLaVUCnNkcedlRSQ== -postcss@^7.0.0, postcss@^7.0.32: +postcss@^7.0.0, postcss@^7.0.14, postcss@^7.0.26, postcss@^7.0.32, postcss@^7.0.5, postcss@^7.0.6: version "7.0.36" resolved "https://registry.yarnpkg.com/postcss/-/postcss-7.0.36.tgz#056f8cffa939662a8f5905950c07d5285644dfcb" integrity sha512-BebJSIUMwJHRH0HAQoxN4u1CN86glsrwsW0q7T+/m44eXOUAxSNdHRkNZPYz5vVUbg17hFgOQDE7fZk7li3pZw== @@ -13414,15 +12379,6 @@ postcss@^7.0.0, postcss@^7.0.32: source-map "^0.6.1" supports-color "^6.1.0" -postcss@^7.0.14, postcss@^7.0.16, postcss@^7.0.26, postcss@^7.0.5, postcss@^7.0.6: - version "7.0.30" - resolved "https://registry.yarnpkg.com/postcss/-/postcss-7.0.30.tgz#cc9378beffe46a02cbc4506a0477d05fcea9a8e2" - integrity sha512-nu/0m+NtIzoubO+xdAlwZl/u5S5vi/y6BCsoL8D+8IxsD3XvBS8X4YEADNIVXKVuQvduiucnRv+vPIqj56EGMQ== - dependencies: - chalk "^2.4.2" - source-map "^0.6.1" - supports-color "^6.1.0" - prelude-ls@~1.1.2: version "1.1.2" resolved "https://registry.yarnpkg.com/prelude-ls/-/prelude-ls-1.1.2.tgz#21932a549f5e52ffd9a827f570e04be62a97da54" @@ -13444,12 +12400,12 @@ pretty-bytes@5.6.0: integrity sha512-FFw039TmrBqFK8ma/7OL3sDz/VytdtJr044/QUJtH0wK9lb9jLq9tJyIxUwtQJHwar2BqtiA4iCWSwo9JLkzFg== pretty-error@^2.1.1: - version "2.1.1" - resolved "https://registry.yarnpkg.com/pretty-error/-/pretty-error-2.1.1.tgz#5f4f87c8f91e5ae3f3ba87ab4cf5e03b1a17f1a3" - integrity sha1-X0+HyPkeWuPzuoerTPXgOxoX8aM= + version "2.1.2" + resolved "https://registry.yarnpkg.com/pretty-error/-/pretty-error-2.1.2.tgz#be89f82d81b1c86ec8fdfbc385045882727f93b6" + integrity sha512-EY5oDzmsX5wvuynAByrmY0P0hcp+QpnAKbJng2A2MPjVKXCxrDSUkzghVJ4ZGPIv+JC4gX8fPUWscC0RtjsWGw== dependencies: - renderkid "^2.0.1" - utila "~0.4" + lodash "^4.17.20" + renderkid "^2.0.4" pretty-format@^23.6.0: version "23.6.0" @@ -13459,7 +12415,7 @@ pretty-format@^23.6.0: ansi-regex "^3.0.0" ansi-styles "^3.2.0" -pretty-format@^24.7.0, pretty-format@^24.9.0: +pretty-format@^24.9.0: version "24.9.0" resolved "https://registry.yarnpkg.com/pretty-format/-/pretty-format-24.9.0.tgz#12fac31b37019a4eea3c11aa9a959eb7628aa7c9" integrity sha512-00ZMZUiHaJrNfk33guavqgvfJS30sLYf0f8+Srklv0AMPodGGHcoHgksZ3OThYnIvOd+8yMCn0YiEOogjlgsnA== @@ -13469,7 +12425,7 @@ pretty-format@^24.7.0, pretty-format@^24.9.0: ansi-styles "^3.2.0" react-is "^16.8.4" -pretty-format@^25.1.0, pretty-format@^25.2.0, pretty-format@^25.2.1, pretty-format@^25.5.0: +pretty-format@^25.1.0, pretty-format@^25.2.0, pretty-format@^25.5.0: version "25.5.0" resolved "https://registry.yarnpkg.com/pretty-format/-/pretty-format-25.5.0.tgz#7873c1d774f682c34b8d48b6743a2bf2ac55791a" integrity sha512-kbo/kq2LQ/A/is0PQwsEHM7Ca6//bGPPvU6UnsdDRSKTWxT/ru/xb88v4BJf6a69H+uTytOEsTusT9ksd/1iWQ== @@ -13479,17 +12435,25 @@ pretty-format@^25.1.0, pretty-format@^25.2.0, pretty-format@^25.2.1, pretty-form ansi-styles "^4.0.0" react-is "^16.12.0" +pretty-format@^26.0.0, pretty-format@^26.6.2: + version "26.6.2" + resolved "https://registry.yarnpkg.com/pretty-format/-/pretty-format-26.6.2.tgz#e35c2705f14cb7fe2fe94fa078345b444120fc93" + integrity sha512-7AeGuCYNGmycyQbCqd/3PWH4eOoX/OiCa0uphp57NVTeAGdJGaAliecxwBDHYQCIvrW7aDBZCYeNTP/WX69mkg== + dependencies: + "@jest/types" "^26.6.2" + ansi-regex "^5.0.0" + ansi-styles "^4.0.0" + react-is "^17.0.1" + pretty-hrtime@^1.0.3: version "1.0.3" resolved "https://registry.yarnpkg.com/pretty-hrtime/-/pretty-hrtime-1.0.3.tgz#b7e3ea42435a4c9b2759d99e0f201eb195802ee1" integrity sha1-t+PqQkNaTJsnWdmeDyAesZWALuE= prismjs@^1.8.4: - version "1.23.0" - resolved "https://registry.yarnpkg.com/prismjs/-/prismjs-1.23.0.tgz#d3b3967f7d72440690497652a9d40ff046067f33" - integrity sha512-c29LVsqOaLbBHuIbsTxaKENh1N2EQBOHaWv7gkHN4dgRbxSREqDnDbtFJYdpPauS4YCplMSNCABQ6Eeor69bAA== - optionalDependencies: - clipboard "^2.0.0" + version "1.24.1" + resolved "https://registry.yarnpkg.com/prismjs/-/prismjs-1.24.1.tgz#c4d7895c4d6500289482fa8936d9cdd192684036" + integrity sha512-mNPsedLuk90RVJioIky8ANZEwYm5w9LcvCXrxHlwf4fNVSn8jEipMybMkWUyyF0JhnC+C4VcOVSBuHRKs1L5Ow== prismjs@~1.17.0: version "1.17.1" @@ -13513,11 +12477,6 @@ process@^0.11.10: resolved "https://registry.yarnpkg.com/process/-/process-0.11.10.tgz#7332300e840161bda3e69a1d1d91a7d4bc16f182" integrity sha1-czIwDoQBYb2j5podHZGn1LwW8YI= -process@~0.5.1: - version "0.5.2" - resolved "https://registry.yarnpkg.com/process/-/process-0.5.2.tgz#1638d8a8e34c2f440a91db95ab9aeb677fc185cf" - integrity sha1-FjjYqONML0QKkduVq5rrZ3/Bhc8= - progress@^2.0.0: version "2.0.3" resolved "https://registry.yarnpkg.com/progress/-/progress-2.0.3.tgz#7e8cf8d8f5b8f239c1bc68beb4eb78567d572ef8" @@ -13534,15 +12493,16 @@ promise-polyfill@^6.0.1: integrity sha1-36lpQ+qcEh/KTem1hoyznTRy4Fc= promise.allsettled@^1.0.0: - version "1.0.2" - resolved "https://registry.yarnpkg.com/promise.allsettled/-/promise.allsettled-1.0.2.tgz#d66f78fbb600e83e863d893e98b3d4376a9c47c9" - integrity sha512-UpcYW5S1RaNKT6pd+s9jp9K9rlQge1UXKskec0j6Mmuq7UJCvlS2J2/s/yuPN8ehftf9HXMxWlKiPbGGUzpoRg== + version "1.0.4" + resolved "https://registry.yarnpkg.com/promise.allsettled/-/promise.allsettled-1.0.4.tgz#65e71f2a604082ed69c548b68603294090ee6803" + integrity sha512-o73CbvQh/OnPFShxHcHxk0baXR2a1m4ozb85ha0H14VEoi/EJJLa9mnPfEWJx9RjA9MLfhdjZ8I6HhWtBa64Ag== dependencies: - array.prototype.map "^1.0.1" + array.prototype.map "^1.0.3" + call-bind "^1.0.2" define-properties "^1.1.3" - es-abstract "^1.17.0-next.1" - function-bind "^1.1.1" - iterate-value "^1.0.0" + es-abstract "^1.18.0-next.2" + get-intrinsic "^1.0.2" + iterate-value "^1.0.2" promise.prototype.finally@^3.1.0: version "3.1.2" @@ -13576,12 +12536,12 @@ prompts@^0.1.9: sisteransi "^0.1.1" prompts@^2.0.1: - version "2.3.2" - resolved "https://registry.yarnpkg.com/prompts/-/prompts-2.3.2.tgz#480572d89ecf39566d2bd3fe2c9fccb7c4c0b068" - integrity sha512-Q06uKs2CkNYVID0VqwfAl9mipo99zkBv/n2JtWY89Yxa3ZabWSrs0e2KTudKVa3peLUvYXMefDqIleLPVUBZMA== + version "2.4.1" + resolved "https://registry.yarnpkg.com/prompts/-/prompts-2.4.1.tgz#befd3b1195ba052f9fd2fde8a486c4e82ee77f61" + integrity sha512-EQyfIuO2hPDsX1L/blblV+H7I0knhgAd82cVneCwcdND9B8AuCDuRcBH6yIcG4dFzlOUqbazQqwGjx5xmsNLuQ== dependencies: kleur "^3.0.3" - sisteransi "^1.0.4" + sisteransi "^1.0.5" prop-types@15.7.2, prop-types@^15.5.10, prop-types@^15.5.6, prop-types@^15.6.0, prop-types@^15.6.1, prop-types@^15.6.2, prop-types@^15.7.2: version "15.7.2" @@ -13602,18 +12562,18 @@ proper-lockfile@^3.0.2: signal-exit "^3.0.2" property-information@^5.0.0: - version "5.5.0" - resolved "https://registry.yarnpkg.com/property-information/-/property-information-5.5.0.tgz#4dc075d493061a82e2b7d096f406e076ed859943" - integrity sha512-RgEbCx2HLa1chNgvChcx+rrCWD0ctBmGSE0M7lVm1yyv4UbvbrWoXp/BkVLZefzjrRBGW8/Js6uh/BnlHXFyjA== + version "5.6.0" + resolved "https://registry.yarnpkg.com/property-information/-/property-information-5.6.0.tgz#61675545fb23002f245c6540ec46077d4da3ed69" + integrity sha512-YUHSPk+A30YPv+0Qf8i9Mbfe/C0hdPXk1s1jPVToV8pk8BQtpw10ct89Eo7OWkutrwqvT0eicAxlOg3dOAu8JA== dependencies: xtend "^4.0.0" proxy-addr@~2.0.5: - version "2.0.6" - resolved "https://registry.yarnpkg.com/proxy-addr/-/proxy-addr-2.0.6.tgz#fdc2336505447d3f2f2c638ed272caf614bbb2bf" - integrity sha512-dh/frvCBVmSsDYzw6n926jv974gddhkFPfiN8hPOi30Wax25QZyZEGveluCgliBnqmuM+UJmBErbAUFIoDbjOw== + version "2.0.7" + resolved "https://registry.yarnpkg.com/proxy-addr/-/proxy-addr-2.0.7.tgz#f19fe69ceab311eeb94b42e70e8c2070f9ba1025" + integrity sha512-llQsMLSUDUPT44jdrU/O37qlnifitDP+ZwrmmZcoSKyLKvtZxpyV0n2/bD/N4tBAAZ/gJEdZU7KMraoK1+XYAg== dependencies: - forwarded "~0.1.2" + forwarded "0.2.0" ipaddr.js "1.9.1" prr@~1.0.1: @@ -13694,9 +12654,11 @@ qs@6.7.0: integrity sha512-VCdBRNFTX1fyE7Nb6FYoURo/SPe62QCaAyzJvUjwRaIsc+NePBEniHlvxFmmX56+HZphIGtV0XeCirBtpDrTyQ== qs@^6.6.0: - version "6.9.4" - resolved "https://registry.yarnpkg.com/qs/-/qs-6.9.4.tgz#9090b290d1f91728d3c22e54843ca44aea5ab687" - integrity sha512-A1kFqHekCTM7cz0udomYUoYNWjBebHm/5wzU/XqrBRBNWectVH0QIiN+NEcZ0Dte5hvzHwbr8+XQmguPhJ6WdQ== + version "6.10.1" + resolved "https://registry.yarnpkg.com/qs/-/qs-6.10.1.tgz#4931482fa8d647a5aab799c5271d2133b981fb6a" + integrity sha512-M528Hph6wsSVOBiYUnGf+K/7w0hNshs/duGsNXPUCLH5XAqjEtiPGwNONLV0tBH8NoGb0mvD5JubnUTrujKDTg== + dependencies: + side-channel "^1.0.4" qs@~6.5.2: version "6.5.2" @@ -13736,15 +12698,25 @@ querystring-es3@^0.2.0: resolved "https://registry.yarnpkg.com/querystring-es3/-/querystring-es3-0.2.1.tgz#9ec61f79049875707d69414596fd907a4d711e73" integrity sha1-nsYfeQSYdXB9aUFFlv2Qek1xHnM= -querystring@0.2.0, querystring@^0.2.0: +querystring@0.2.0: version "0.2.0" resolved "https://registry.yarnpkg.com/querystring/-/querystring-0.2.0.tgz#b209849203bb25df820da756e747005878521620" integrity sha1-sgmEkgO7Jd+CDadW50cAWHhSFiA= +querystring@^0.2.0: + version "0.2.1" + resolved "https://registry.yarnpkg.com/querystring/-/querystring-0.2.1.tgz#40d77615bb09d16902a85c3e38aa8b5ed761c2dd" + integrity sha512-wkvS7mL/JMugcup3/rMitHmd9ecIGd2lhFhK9N3UUQ450h66d1r3Y9nvXzQAW1Lq+wyx61k/1pfKS5KuKiyEbg== + querystringify@^2.1.1: - version "2.1.1" - resolved "https://registry.yarnpkg.com/querystringify/-/querystringify-2.1.1.tgz#60e5a5fd64a7f8bfa4d2ab2ed6fdf4c85bad154e" - integrity sha512-w7fLxIRCRT7U8Qu53jQnJyPkYZIaR4n5151KMfcJlO/A9397Wxb1amJvROTK6TOnp7PfoAmg/qXiNHI+08jRfA== + version "2.2.0" + resolved "https://registry.yarnpkg.com/querystringify/-/querystringify-2.2.0.tgz#3345941b4153cb9d082d8eee4cda2016a9aef7f6" + integrity sha512-FIqgj2EUvTa7R50u0rGsyTftzjYmv/a3hO345bZNrqabNqjtgiDMgmo4mkUjd+nzU5oF3dClKqFIPUKybUyqoQ== + +queue-microtask@^1.2.2: + version "1.2.3" + resolved "https://registry.yarnpkg.com/queue-microtask/-/queue-microtask-1.2.3.tgz#4929228bbc724dfac43e0efb058caf7b6cfb6243" + integrity sha512-NuaNSa6flKT5JaSYQzJok04JzTL1CA6aGhv5rfLW3PgqA+M2ChpZQnAC8h8i4ZFkBS8X5RqkDBHA7r4hej3K9A== rambdax@2.15.0: version "2.15.0" @@ -13818,7 +12790,7 @@ rc@^1.2.8: minimist "^1.2.0" strip-json-comments "~2.0.1" -react-clientside-effect@^1.2.2: +react-clientside-effect@^1.2.5: version "1.2.5" resolved "https://registry.yarnpkg.com/react-clientside-effect/-/react-clientside-effect-1.2.5.tgz#e2c4dc3c9ee109f642fac4f5b6e9bf5bcd2219a3" integrity sha512-2bL8qFW1TGBHozGGbVeyvnggRpMjibeZM2536AKNENLECutp2yfs44IL8Hmpn8qjFQ2K7A9PnYf3vc7aQq/cPA== @@ -13857,9 +12829,9 @@ react-dev-utils@^9.0.0: text-table "0.2.0" react-devtools-core@^4.6.0: - version "4.7.0" - resolved "https://registry.yarnpkg.com/react-devtools-core/-/react-devtools-core-4.7.0.tgz#71e89087352abe60c160dfb60a7fa700f612af7a" - integrity sha512-6w/e0nkV0gogUnfz+9Q3yiMtYYol9T+oD27UIf4XWmula1KvSTTkQ9DnzLOqSSch8d1YzNWbTxguuNJMof58ww== + version "4.14.0" + resolved "https://registry.yarnpkg.com/react-devtools-core/-/react-devtools-core-4.14.0.tgz#4b9dc50937ed4cf4c04fa293430cac62d829fa8b" + integrity sha512-cE7tkSUkGCDxTA79pntDGJCBgzNN/XxA3kgPdXujdfSfEfVhzrItQIEsN0kCN/hJJACDvH2Q8p5+tJb/K4B3qA== dependencies: shell-quote "^1.6.1" ws "^7" @@ -13903,16 +12875,16 @@ react-fast-compare@^3.2.0: integrity sha512-rtGImPZ0YyLrscKI9xTpV8psd6I8VAtjKCzQDlzyDvqJA8XOW78TXYQwNRNd8g8JZnDu8q9Fu/1v4HPAVwVdHA== react-focus-lock@^2.1.0: - version "2.5.1" - resolved "https://registry.yarnpkg.com/react-focus-lock/-/react-focus-lock-2.5.1.tgz#e2060c5d7b02c62d79c4f103d0fc5a1288bc8f75" - integrity sha512-gOToRZKVEymGEjFaTRUKgJsdYQrNosoiK7yZnXnnd8bYew4vMzk3Rxb0Q4nyrGwsFuUmgQiSAulQirA0J+v4hA== + version "2.5.2" + resolved "https://registry.yarnpkg.com/react-focus-lock/-/react-focus-lock-2.5.2.tgz#f1e4db5e25cd8789351f2bd5ebe91e9dcb9c2922" + integrity sha512-WzpdOnEqjf+/A3EH9opMZWauag7gV0BxFl+EY4ElA4qFqYsUsBLnmo2sELbN5OC30S16GAWMy16B9DLPpdJKAQ== dependencies: "@babel/runtime" "^7.0.0" focus-lock "^0.9.1" prop-types "^15.6.2" - react-clientside-effect "^1.2.2" - use-callback-ref "^1.2.1" - use-sidecar "^1.0.1" + react-clientside-effect "^1.2.5" + use-callback-ref "^1.2.5" + use-sidecar "^1.0.5" react-helmet-async@^1.0.2: version "1.0.9" @@ -13937,6 +12909,11 @@ react-is@^16.12.0, react-is@^16.13.0, react-is@^16.13.1, react-is@^16.7.0, react resolved "https://registry.yarnpkg.com/react-is/-/react-is-16.13.1.tgz#789729a4dc36de2999dc156dd6c1d9c18cea56a4" integrity sha512-24e6ynE2H+OKt4kqsOvNd8kBpV65zoxbA4BVsEOB3ARVWQki/DHzaUoC5KuON/BiccDaCCTZBuOcfZs70kR8bQ== +react-is@^17.0.1: + version "17.0.2" + resolved "https://registry.yarnpkg.com/react-is/-/react-is-17.0.2.tgz#e691d4a8e9c789365655539ab372762b0efb54f0" + integrity sha512-w2GsyukL62IJnlaff/nRegPQR94C/XXamvMWmSHRJ4y7Ts/4ocGRmTHvOs8PSE6pB3dWOrD/nueuU5sduBsQ4w== + react-lifecycles-compat@^3.0.4: version "3.0.4" resolved "https://registry.yarnpkg.com/react-lifecycles-compat/-/react-lifecycles-compat-3.0.4.tgz#4f1a273afdfc8f3488a8c516bfda78f872352362" @@ -14021,18 +12998,19 @@ react-native-flipper@^0.34.0: integrity sha512-48wgm29HJTOlZ0DibBsvXueEOY0EPIVL0wWKbwRfgrk86+luSEuLW3aZC50oJa95zSFb9qYShTV/6dWqh4Jamg== react-native-gesture-handler@^1.6.1: - version "1.6.1" - resolved "https://registry.yarnpkg.com/react-native-gesture-handler/-/react-native-gesture-handler-1.6.1.tgz#678e2dce250ed66e93af409759be22cd6375dd17" - integrity sha512-gQgIKhDiYf754yzhhliagLuLupvGb6ZyBdzYzr7aus3Fyi87TLOw63ers+r4kGw0h26oAWTAdHd34JnF4NeL6Q== + version "1.10.3" + resolved "https://registry.yarnpkg.com/react-native-gesture-handler/-/react-native-gesture-handler-1.10.3.tgz#942bbf2963bbf49fa79593600ee9d7b5dab3cfc0" + integrity sha512-cBGMi1IEsIVMgoox4RvMx7V2r6bNKw0uR1Mu1o7NbuHS6BRSVLq0dP34l2ecnPlC+jpWd3le6Yg1nrdCjby2Mw== dependencies: "@egjs/hammerjs" "^2.0.17" - hoist-non-react-statics "^2.3.1" + fbjs "^3.0.0" + hoist-non-react-statics "^3.3.0" invariant "^2.2.4" prop-types "^15.7.2" react-native-image-crop-picker@RocketChat/react-native-image-crop-picker: - version "0.31.1" - resolved "https://codeload.github.com/RocketChat/react-native-image-crop-picker/tar.gz/db1040b57e8536bd64db699897361167009b359c" + version "0.32.2" + resolved "https://codeload.github.com/RocketChat/react-native-image-crop-picker/tar.gz/8258d10436879ecfb74b2ef578e3b75d9c2c09c5" react-native-image-progress@^1.1.1: version "1.1.1" @@ -14041,12 +13019,7 @@ react-native-image-progress@^1.1.1: dependencies: prop-types "^15.5.10" -react-native-iphone-x-helper@^1.0.3: - version "1.2.1" - resolved "https://registry.yarnpkg.com/react-native-iphone-x-helper/-/react-native-iphone-x-helper-1.2.1.tgz#645e2ffbbb49e80844bb4cbbe34a126fda1e6772" - integrity sha512-/VbpIEp8tSNNHIvstuA3Swx610whci1Zpc9mqNkqn14DkMbw+ORviln2u0XyHG1kPvvwTNGZY6QpeFwxYaSdbQ== - -react-native-iphone-x-helper@^1.3.0: +react-native-iphone-x-helper@^1.0.3, react-native-iphone-x-helper@^1.3.0: version "1.3.1" resolved "https://registry.yarnpkg.com/react-native-iphone-x-helper/-/react-native-iphone-x-helper-1.3.1.tgz#20c603e9a0e765fd6f97396638bdeb0e5a60b010" integrity sha512-HOf0jzRnq2/aFUcdCJ9w9JGzN3gdEg0zFE4FyYlp4jtidqU03D5X7ZegGKfT1EWteR0gPBGp9ye5T5FvSWi9Yg== @@ -14349,9 +13322,9 @@ react-redux@7.2.4: react-is "^16.13.1" react-refresh@^0.4.0: - version "0.4.2" - resolved "https://registry.yarnpkg.com/react-refresh/-/react-refresh-0.4.2.tgz#54a277a6caaac2803d88f1d6f13c1dcfbd81e334" - integrity sha512-kv5QlFFSZWo7OlJFNYbxRtY66JImuP2LcrFgyJfQaf85gSP+byzG21UbDQEYjU7f//ny8rwiEkO6py2Y+fEgAQ== + version "0.4.3" + resolved "https://registry.yarnpkg.com/react-refresh/-/react-refresh-0.4.3.tgz#966f1750c191672e76e16c2efa569150cc73ab53" + integrity sha512-Hwln1VNuGl/6bVwnd0Xdn1e84gT/8T9aYNL+HAKDArLCS7LWjwr7StE30IEYbIkx0Vi3vs+coQxe+SQDbGbbpA== react-sizeme@^2.6.7: version "2.6.12" @@ -14364,12 +13337,12 @@ react-sizeme@^2.6.7: throttle-debounce "^2.1.0" react-syntax-highlighter@^11.0.2: - version "11.0.2" - resolved "https://registry.yarnpkg.com/react-syntax-highlighter/-/react-syntax-highlighter-11.0.2.tgz#4e3f376e752b20d2f54e4c55652fd663149e4029" - integrity sha512-kqmpM2OH5OodInbEADKARwccwSQWBfZi0970l5Jhp4h39q9Q65C4frNcnd6uHE5pR00W8pOWj9HDRntj2G4Rww== + version "11.0.3" + resolved "https://registry.yarnpkg.com/react-syntax-highlighter/-/react-syntax-highlighter-11.0.3.tgz#de639b97b781c3f7056d1ee7b6573ea8ab741460" + integrity sha512-0v0ET2qn9oAam4K/Te9Q/2jtS4R2d6wUFqgk5VcxrCBm+4MB5BE+oQf2CA0RanUHbYaYFuagt/AugICU87ufxQ== dependencies: "@babel/runtime" "^7.3.1" - highlight.js "~9.13.0" + highlight.js "~9.18.2" lowlight "~1.11.0" prismjs "^1.8.4" refractor "^2.4.1" @@ -14397,7 +13370,7 @@ react-timer-mixin@^0.13.3: resolved "https://registry.yarnpkg.com/react-timer-mixin/-/react-timer-mixin-0.13.4.tgz#75a00c3c94c13abe29b43d63b4c65a88fc8264d3" integrity sha512-4+ow23tp/Tv7hBM5Az5/Be/eKKF7DIvJ09voz5LyHGQaqqz9WV8YMs31eFvcYQs7d451LSg7kDJV70XYN/Ug/Q== -react@16.13.1, react@^16.8.3: +react@16.13.1: version "16.13.1" resolved "https://registry.yarnpkg.com/react/-/react-16.13.1.tgz#2e818822f1a9743122c063d6410d85c1e3afe48e" integrity sha512-YMZQQq32xHLX0bz5Mnibv1/LHb3Sqzngu7xstSM+vrkE5Kzr9xE0yMByK5kMoTK30YVJE61WfbxIFFvfeDKT1w== @@ -14406,6 +13379,15 @@ react@16.13.1, react@^16.8.3: object-assign "^4.1.1" prop-types "^15.6.2" +react@^16.8.3: + version "16.14.0" + resolved "https://registry.yarnpkg.com/react/-/react-16.14.0.tgz#94d776ddd0aaa37da3eda8fc5b6b18a4c9a3114d" + integrity sha512-0X2CImDkJGApiAlcf0ODKIneSwBPhqJawOa5wCtKbu7ZECrmS26NvtSILynQ66cgkT/RJ4LidJOc3bUESwmU8g== + dependencies: + loose-envify "^1.1.0" + object-assign "^4.1.1" + prop-types "^15.6.2" + reactotron-core-client@2.8.10: version "2.8.10" resolved "https://registry.yarnpkg.com/reactotron-core-client/-/reactotron-core-client-2.8.10.tgz#798f2a7aa9fd7e18e7a510531a613e8ae3008eb0" @@ -14516,7 +13498,7 @@ read-pkg@^5.2.0: string_decoder "~1.1.1" util-deprecate "~1.0.1" -readable-stream@^3.0.2, readable-stream@^3.1.1, readable-stream@^3.6.0: +readable-stream@^3.0.2, readable-stream@^3.6.0: version "3.6.0" resolved "https://registry.yarnpkg.com/readable-stream/-/readable-stream-3.6.0.tgz#337bbda3adc0706bd3e024426a286d4b4b2c9198" integrity sha512-BViHy7LKeTz4oNnkcLJ+lVSL6vpiFeX6/d3oSH8zCW7UxP2onchk+vTGB143xuFjHS3deTgkKoXXymXqymiIdA== @@ -14597,21 +13579,13 @@ redux-saga@1.1.3: dependencies: "@redux-saga/core" "^1.1.3" -redux@4.1.0, redux@^4.0.0: +redux@4.1.0, redux@^4.0.0, redux@^4.0.4: version "4.1.0" resolved "https://registry.yarnpkg.com/redux/-/redux-4.1.0.tgz#eb049679f2f523c379f1aff345c8612f294c88d4" integrity sha512-uI2dQN43zqLWCt6B/BMGRMY6db7TTY4qeHHfGeKb3EOhmOKjU3KdWvNLJyqaHRksv/ErdNH7cFZWg9jXtewy4g== dependencies: "@babel/runtime" "^7.9.2" -redux@^4.0.4: - version "4.0.5" - resolved "https://registry.yarnpkg.com/redux/-/redux-4.0.5.tgz#4db5de5816e17891de8a80c424232d06f051d93f" - integrity sha512-VSz1uMAH24DM6MF72vcojpYPtrTUu3ByVWfPL1nPfVRb5mZVTve5GnNCUV53QM/BZ66xfWrm0CTWoM+Xlz8V1w== - dependencies: - loose-envify "^1.4.0" - symbol-observable "^1.2.0" - refractor@^2.4.1: version "2.10.1" resolved "https://registry.yarnpkg.com/refractor/-/refractor-2.10.1.tgz#166c32f114ed16fd96190ad21d5193d3afc7d34e" @@ -14629,9 +13603,9 @@ regenerate-unicode-properties@^8.2.0: regenerate "^1.4.0" regenerate@^1.4.0: - version "1.4.0" - resolved "https://registry.yarnpkg.com/regenerate/-/regenerate-1.4.0.tgz#4a856ec4b56e4077c557589cae85e7a4c8869a11" - integrity sha512-1G6jJVDWrt0rK99kBjvEtziZNCICAuvIPkSiUFIQxVP06RCVpq3dmDo2oi6ABpYaDYaTRr67BEhL8r1wgEZZKg== + version "1.4.2" + resolved "https://registry.yarnpkg.com/regenerate/-/regenerate-1.4.2.tgz#b9346d8827e8f5a32f7ba29637d398b69014848a" + integrity sha512-zrceR/XhGYU/d/opr2EKO7aRHUeiBI8qjtfHqADTwZd6Szfy16la6kqD0MIUs5z5hx6AaKa+PixpPrR289+I0A== regenerator-runtime@^0.11.0: version "0.11.1" @@ -14639,17 +13613,16 @@ regenerator-runtime@^0.11.0: integrity sha512-MguG95oij0fC3QV3URf4V2SDYGJhJnJGqvIIgdECeODCT98wSWDAJ94SSuVpYQUoTcGUIL6L4yNB7j1DFFHSBg== regenerator-runtime@^0.13.2, regenerator-runtime@^0.13.3, regenerator-runtime@^0.13.4: - version "0.13.5" - resolved "https://registry.yarnpkg.com/regenerator-runtime/-/regenerator-runtime-0.13.5.tgz#d878a1d094b4306d10b9096484b33ebd55e26697" - integrity sha512-ZS5w8CpKFinUzOwW3c83oPeVXoNsrLsaCoLtJvAClH135j/R77RuymhiSErhm2lKcwSCIpmvIWSbDkIfAqKQlA== + version "0.13.9" + resolved "https://registry.yarnpkg.com/regenerator-runtime/-/regenerator-runtime-0.13.9.tgz#8925742a98ffd90814988d7566ad30ca3b263b52" + integrity sha512-p3VT+cOEgxFsRRA9X4lkI1E+k2/CtnKtU4gcxyaCUreilL/vqI6CdZ3wxVUx3UOUg+gnUOQQcRI7BmSI656MYA== regenerator-transform@^0.14.2: - version "0.14.4" - resolved "https://registry.yarnpkg.com/regenerator-transform/-/regenerator-transform-0.14.4.tgz#5266857896518d1616a78a0479337a30ea974cc7" - integrity sha512-EaJaKPBI9GvKpvUz2mz4fhx7WPgvwRLY9v3hlNHWmAuJHI13T4nwKnNvm5RWJzEdnI5g5UwtOww+S8IdoUC2bw== + version "0.14.5" + resolved "https://registry.yarnpkg.com/regenerator-transform/-/regenerator-transform-0.14.5.tgz#c98da154683671c9c4dcb16ece736517e1b7feb4" + integrity sha512-eOf6vka5IO151Jfsw2NO9WpGX58W6wWmefK3I1zEGr0lOD0u8rwPaNqQL1aRxUaxLeKO3ArNh3VYg1KbaD+FFw== dependencies: "@babel/runtime" "^7.8.4" - private "^0.1.8" regex-cache@^0.4.2: version "0.4.4" @@ -14674,30 +13647,15 @@ regexp.prototype.flags@^1.2.0, regexp.prototype.flags@^1.3.1: call-bind "^1.0.2" define-properties "^1.1.3" -regexp.prototype.flags@^1.3.0: - version "1.3.0" - resolved "https://registry.yarnpkg.com/regexp.prototype.flags/-/regexp.prototype.flags-1.3.0.tgz#7aba89b3c13a64509dabcf3ca8d9fbb9bdf5cb75" - integrity sha512-2+Q0C5g951OlYlJz6yu5/M33IcsESLlLfsyIaLJaG4FA2r4yP8MvVMJUUP/fVBkSpbbbZlS5gynbEWLipiiXiQ== - dependencies: - define-properties "^1.1.3" - es-abstract "^1.17.0-next.1" - regexpp@^2.0.1: version "2.0.1" resolved "https://registry.yarnpkg.com/regexpp/-/regexpp-2.0.1.tgz#8d19d31cf632482b589049f8281f93dbcba4d07f" integrity sha512-lv0M6+TkDVniA3aD1Eg0DVpfU/booSu7Eev3TDO/mZKHBfVjgCGTV4t4buppESEYDtkArYFOxTJWv6S5C+iaNw== -regexpu-core@^4.7.0: - version "4.7.0" - resolved "https://registry.yarnpkg.com/regexpu-core/-/regexpu-core-4.7.0.tgz#fcbf458c50431b0bb7b45d6967b8192d91f3d938" - integrity sha512-TQ4KXRnIn6tz6tjnrXEkD/sshygKH/j5KzK86X8MkeHyZ8qst/LZ89j3X4/8HEIfHANTFIP/AbXakeRhWIl5YQ== - dependencies: - regenerate "^1.4.0" - regenerate-unicode-properties "^8.2.0" - regjsgen "^0.5.1" - regjsparser "^0.6.4" - unicode-match-property-ecmascript "^1.0.4" - unicode-match-property-value-ecmascript "^1.2.0" +regexpp@^3.1.0: + version "3.2.0" + resolved "https://registry.yarnpkg.com/regexpp/-/regexpp-3.2.0.tgz#0425a2768d8f23bad70ca4b90461fa2f1213e1b2" + integrity sha512-pq2bWo9mVD43nbts2wGv17XLiNLya+GklZ8kaDLV2Z08gDCsGpnKn9BFMepvWuHCbyVvY7J5o5+BVvoQbmlJLg== regexpu-core@^4.7.1: version "4.7.1" @@ -14712,14 +13670,14 @@ regexpu-core@^4.7.1: unicode-match-property-value-ecmascript "^1.2.0" regjsgen@^0.5.1: - version "0.5.1" - resolved "https://registry.yarnpkg.com/regjsgen/-/regjsgen-0.5.1.tgz#48f0bf1a5ea205196929c0d9798b42d1ed98443c" - integrity sha512-5qxzGZjDs9w4tzT3TPhCJqWdCc3RLYwy9J2NB0nm5Lz+S273lvWcpjaTGHsT1dc6Hhfq41uSEOw8wBmxrKOuyg== + version "0.5.2" + resolved "https://registry.yarnpkg.com/regjsgen/-/regjsgen-0.5.2.tgz#92ff295fb1deecbf6ecdab2543d207e91aa33733" + integrity sha512-OFFT3MfrH90xIW8OOSyUrk6QHD5E9JOTeGodiJeBS3J6IwlgzJMNE/1bZklWz5oTg+9dCMyEetclvCVXOPoN3A== regjsparser@^0.6.4: - version "0.6.4" - resolved "https://registry.yarnpkg.com/regjsparser/-/regjsparser-0.6.4.tgz#a769f8684308401a66e9b529d2436ff4d0666272" - integrity sha512-64O87/dPDgfk8/RQqC4gkZoGyyWFIEUTTh80CU6CWuK5vkCGyekIx+oKcEIYtP/RAxSQltCZHCNu/mdd7fqlJw== + version "0.6.9" + resolved "https://registry.yarnpkg.com/regjsparser/-/regjsparser-0.6.9.tgz#b489eef7c9a2ce43727627011429cf833a7183e6" + integrity sha512-ZqbNRz1SNjLAiYuwY0zoXW8Ne675IX5q+YHioAGbCw4X96Mjl2+dcX9B2ciaeyYjViDAfvIjFpQjJgLttTEERQ== dependencies: jsesc "~0.5.0" @@ -14738,21 +13696,21 @@ remove-trailing-separator@^1.0.1: resolved "https://registry.yarnpkg.com/remove-trailing-separator/-/remove-trailing-separator-1.1.0.tgz#c24bce2a283adad5bc3f58e0d48249b92379d8ef" integrity sha1-wkvOKig62tW8P1jg1IJJuSN52O8= -renderkid@^2.0.1: - version "2.0.3" - resolved "https://registry.yarnpkg.com/renderkid/-/renderkid-2.0.3.tgz#380179c2ff5ae1365c522bf2fcfcff01c5b74149" - integrity sha512-z8CLQp7EZBPCwCnncgf9C4XAi3WR0dv+uWu/PjIyhhAb5d6IJ/QZqlHFprHeKT+59//V6BNUsLbvN8+2LarxGA== +renderkid@^2.0.4: + version "2.0.7" + resolved "https://registry.yarnpkg.com/renderkid/-/renderkid-2.0.7.tgz#464f276a6bdcee606f4a15993f9b29fc74ca8609" + integrity sha512-oCcFyxaMrKsKcTY59qnCAtmDVSLfPbrv6A3tVbPdFMMrv5jaK10V6m40cKsoPNhAqN6rmHW9sswW4o3ruSrwUQ== dependencies: - css-select "^1.1.0" - dom-converter "^0.2" - htmlparser2 "^3.3.0" - strip-ansi "^3.0.0" - utila "^0.4.0" + css-select "^4.1.3" + dom-converter "^0.2.0" + htmlparser2 "^6.1.0" + lodash "^4.17.21" + strip-ansi "^3.0.1" repeat-element@^1.1.2: - version "1.1.3" - resolved "https://registry.yarnpkg.com/repeat-element/-/repeat-element-1.1.3.tgz#782e0d825c0c5a3bb39731f84efee6b742e6b1ce" - integrity sha512-ahGq0ZnV5m5XtZLMb+vP76kcAM5nkLqk0lpqAuojSKGgQtn4eRi4ZZGm2olo2zKFH+sMsWaqOCW1dqAnOru72g== + version "1.1.4" + resolved "https://registry.yarnpkg.com/repeat-element/-/repeat-element-1.1.4.tgz#be681520847ab58c7568ac75fbfad28ed42d39e9" + integrity sha512-LFiNfRcSu7KK3evMyYOuCzv3L10TW7yC1G2/+StMjK8Y6Vqd2MG7r/Qjw4ghtuCOjFvlnms/iMmLqpvW/ES/WQ== repeat-string@^1.5.2, repeat-string@^1.6.1: version "1.6.1" @@ -14766,19 +13724,19 @@ repeating@^2.0.0: dependencies: is-finite "^1.0.0" -request-promise-core@1.1.3: - version "1.1.3" - resolved "https://registry.yarnpkg.com/request-promise-core/-/request-promise-core-1.1.3.tgz#e9a3c081b51380dfea677336061fea879a829ee9" - integrity sha512-QIs2+ArIGQVp5ZYbWD5ZLCY29D5CfWizP8eWnm8FoGD1TX61veauETVQbrV60662V0oFBkrDOuaBI8XgtuyYAQ== +request-promise-core@1.1.4: + version "1.1.4" + resolved "https://registry.yarnpkg.com/request-promise-core/-/request-promise-core-1.1.4.tgz#3eedd4223208d419867b78ce815167d10593a22f" + integrity sha512-TTbAfBBRdWD7aNNOoVOBH4pN/KigV6LyapYNNlAPA8JwbovRti1E88m3sYAwsLi5ryhPKsE9APwnjFTgdUjTpw== dependencies: - lodash "^4.17.15" + lodash "^4.17.19" request-promise-native@^1.0.5, request-promise-native@^1.0.7: - version "1.0.8" - resolved "https://registry.yarnpkg.com/request-promise-native/-/request-promise-native-1.0.8.tgz#a455b960b826e44e2bf8999af64dff2bfe58cb36" - integrity sha512-dapwLGqkHtwL5AEbfenuzjTYg35Jd6KPytsC2/TLkVMz8rm+tNt72MGUWT1RP/aYawMpN6HqbNGBQaRcBtjQMQ== + version "1.0.9" + resolved "https://registry.yarnpkg.com/request-promise-native/-/request-promise-native-1.0.9.tgz#e407120526a5efdc9a39b28a5679bf47b9d9dc28" + integrity sha512-wcW+sIUiWnKgNY0dqCpOZkUbF/I+YPi+f09JZIDa39Ec+q82CpSYniDp+ISgTTbKmnpJWASeJBPZmoxH84wt3g== dependencies: - request-promise-core "1.1.3" + request-promise-core "1.1.4" stealthy-require "^1.1.1" tough-cookie "^2.3.3" @@ -14877,7 +13835,7 @@ resolve@1.1.7: resolved "https://registry.yarnpkg.com/resolve/-/resolve-1.1.7.tgz#203114d82ad2c5ed9e8e0411b3932875e889e97b" integrity sha1-IDEU2CrSxe2ejgQRs5ModeiJ6Xs= -resolve@^1.1.6, resolve@^1.11.0, resolve@^1.14.2: +resolve@^1.1.6, resolve@^1.10.0, resolve@^1.11.0, resolve@^1.12.0, resolve@^1.13.1, resolve@^1.14.2, resolve@^1.17.0, resolve@^1.5.0: version "1.20.0" resolved "https://registry.yarnpkg.com/resolve/-/resolve-1.20.0.tgz#629a013fb3f70755d6f0b7935cc1c2c5378b1975" integrity sha512-wENBPt4ySzg4ybFQW2TT1zMQucPK95HSh/nq2CFTZVOGut2+pQvSsgtda4d26YrYcr067wjbmzOG8byDPBX63A== @@ -14885,13 +13843,6 @@ resolve@^1.1.6, resolve@^1.11.0, resolve@^1.14.2: is-core-module "^2.2.0" path-parse "^1.0.6" -resolve@^1.10.0, resolve@^1.12.0, resolve@^1.13.1, resolve@^1.17.0, resolve@^1.3.2, resolve@^1.5.0, resolve@^1.8.1: - version "1.17.0" - resolved "https://registry.yarnpkg.com/resolve/-/resolve-1.17.0.tgz#b25941b54968231cc2d1bb76a79cb7f2c0bf8444" - integrity sha512-ic+7JYiV8Vi2yzQGFWOkiZD5Z9z7O2Zhm9XMaTxdJExKasieFCr+yXZ/WmXsckHiKl12ar0y6XiXDx3m4RHn1w== - dependencies: - path-parse "^1.0.6" - restore-cursor@^2.0.0: version "2.0.0" resolved "https://registry.yarnpkg.com/restore-cursor/-/restore-cursor-2.0.0.tgz#9f7ee287f82fd326d4fd162923d62129eee0dfaf" @@ -14918,6 +13869,11 @@ retry@^0.12.0: resolved "https://registry.yarnpkg.com/retry/-/retry-0.12.0.tgz#1b42a6266a21f07421d1b0b54b7dc167b01c013b" integrity sha1-G0KmJmoh8HQh0bC1S33BZ7AcATs= +reusify@^1.0.4: + version "1.0.4" + resolved "https://registry.yarnpkg.com/reusify/-/reusify-1.0.4.tgz#90da382b1e126efc02146e90845a88db12925d76" + integrity sha512-U9nH88a3fc/ekCF1l0/UP1IosiuIjyTh7hBvXVMHYgVcfGvt897Xguj2UOLDeI5BG2m7/uwyaLVT6fbtCwTyzw== + rimraf@2.6.3: version "2.6.3" resolved "https://registry.yarnpkg.com/rimraf/-/rimraf-2.6.3.tgz#b2d104fe0d8fb27cf9e0a1cda8262dd3833c6cab" @@ -14997,9 +13953,18 @@ run-async@^2.2.0, run-async@^2.4.0: integrity sha512-tvVnVv01b8c1RrA6Ep7JkStj85Guv/YrMcwqYQnwjsAS2cTmmPGBBjAjpCW7RrSodNSoE2/qg9O4bceNvUuDgQ== run-parallel-limit@^1.0.5: - version "1.0.5" - resolved "https://registry.yarnpkg.com/run-parallel-limit/-/run-parallel-limit-1.0.5.tgz#c29a4fd17b4df358cb52a8a697811a63c984f1b7" - integrity sha512-NsY+oDngvrvMxKB3G8ijBzIema6aYbQMD2bHOamvN52BysbIGTnEY2xsNyfrcr9GhY995/t/0nQN3R3oZvaDlg== + version "1.1.0" + resolved "https://registry.yarnpkg.com/run-parallel-limit/-/run-parallel-limit-1.1.0.tgz#be80e936f5768623a38a963262d6bef8ff11e7ba" + integrity sha512-jJA7irRNM91jaKc3Hcl1npHsFLOXOoTkPCUL1JEa1R82O2miplXXRaGdjW/KM/98YQWDhJLiSs793CnXfblJUw== + dependencies: + queue-microtask "^1.2.2" + +run-parallel@^1.1.9: + version "1.2.0" + resolved "https://registry.yarnpkg.com/run-parallel/-/run-parallel-1.2.0.tgz#66d1368da7bdf921eb9d95bd1a9229e7f21a43ee" + integrity sha512-5l4VyZR86LZ/lDxZTR6jqL8AFE2S0IFLMP26AbjsLVADxHdhB/c0GUsH+y39UfCi3dzz8OlQuPmnaJOMoDHQBA== + dependencies: + queue-microtask "^1.2.2" run-queue@^1.0.0, run-queue@^1.0.3: version "1.0.3" @@ -15021,25 +13986,11 @@ rx-lite@*, rx-lite@^4.0.8: integrity sha1-Cx4Rr4vESDbwSmQH6S2kJGe3lEQ= rxjs-compat@^6.3.2: - version "6.5.5" - resolved "https://registry.yarnpkg.com/rxjs-compat/-/rxjs-compat-6.5.5.tgz#073c40510f29c45a2a5fc02dde87f8c3ad75f2c2" - integrity sha512-F42sssVbUyWH4vJswEo6m+Eh02xHv3q93n8S7nUJO58R7sbc3CvJIOts605zdaBhWa1xMB9aVSyqPqhQ5q3eXg== - -rxjs@^5.4.3: - version "5.5.12" - resolved "https://registry.yarnpkg.com/rxjs/-/rxjs-5.5.12.tgz#6fa61b8a77c3d793dbaf270bee2f43f652d741cc" - integrity sha512-xx2itnL5sBbqeeiVgNPVuQQ1nC8Jp2WfNJhXWHmElW9YmrpS9UVnNzhP3EH3HFqexO5Tlp8GhYY+WEcqcVMvGw== - dependencies: - symbol-observable "1.0.1" - -rxjs@^6.2.2, rxjs@^6.5.3: - version "6.5.5" - resolved "https://registry.yarnpkg.com/rxjs/-/rxjs-6.5.5.tgz#c5c884e3094c8cfee31bf27eb87e54ccfc87f9ec" - integrity sha512-WfQI+1gohdf0Dai/Bbmk5L5ItH5tYqm3ki2c5GdWhKjalzjg93N3avFjVStyZZz+A2Em+ZxKH5bNghw9UeylGQ== - dependencies: - tslib "^1.9.0" + version "6.6.7" + resolved "https://registry.yarnpkg.com/rxjs-compat/-/rxjs-compat-6.6.7.tgz#6eb4ef75c0a58ea672854a701ccc8d49f41e69cb" + integrity sha512-szN4fK+TqBPOFBcBcsR0g2cmTTUF/vaFEOZNuSdfU8/pGFnNmmn2u8SystYXG1QMrjOPBc6XTKHMVfENDf6hHw== -rxjs@^6.4.0: +rxjs@^6.2.2, rxjs@^6.4.0, rxjs@^6.6.0: version "6.6.7" resolved "https://registry.yarnpkg.com/rxjs/-/rxjs-6.6.7.tgz#90ac018acabf491bf65044235d5863c4dab804c9" integrity sha512-hTdwr+7yYNIT5n4AMYp85KA6yw2Va0FLa3Rguvbpa4W3I5xynaBZo41cM3XM+4Q6fRMj3sBYIR1VAmZMXYJvRQ== @@ -15073,7 +14024,7 @@ safe-regex@^1.1.0: dependencies: ret "~0.1.10" -"safer-buffer@>= 2.1.2 < 3", safer-buffer@^2.0.2, safer-buffer@^2.1.0, safer-buffer@~2.1.0: +"safer-buffer@>= 2.1.2 < 3", "safer-buffer@>= 2.1.2 < 3.0.0", safer-buffer@^2.0.2, safer-buffer@^2.1.0, safer-buffer@~2.1.0: version "2.1.2" resolved "https://registry.yarnpkg.com/safer-buffer/-/safer-buffer-2.1.2.tgz#44fa161b0187b9549dd84bb91802f9bd8385cd6a" integrity sha512-YZo3K82SD7Riyi0E1EQPojLz7kpepnSQI9IyPbHHg1XXXevb5dJI7tpyN2ADxGcQbHG7vcyRHk0cbwqcQriUtg== @@ -15145,7 +14096,7 @@ schema-utils@^1.0.0: ajv-errors "^1.0.0" ajv-keywords "^3.1.0" -schema-utils@^2.0.1, schema-utils@^2.5.0, schema-utils@^2.7.0: +schema-utils@^2.0.1, schema-utils@^2.5.0, schema-utils@^2.6.6, schema-utils@^2.7.0: version "2.7.1" resolved "https://registry.yarnpkg.com/schema-utils/-/schema-utils-2.7.1.tgz#1ca4f32d1b24c590c203b8e7a50bf0ea4cd394d7" integrity sha512-SHiNtMOUGWBQJwzISiVYKu82GiV4QYGePp3odlY1tuKO7gPtphAT5R/py0fA6xtbgLL/RvtJZnU9b8s0F1q0Xg== @@ -15154,20 +14105,12 @@ schema-utils@^2.0.1, schema-utils@^2.5.0, schema-utils@^2.7.0: ajv "^6.12.4" ajv-keywords "^3.5.2" -schema-utils@^2.6.6: - version "2.6.6" - resolved "https://registry.yarnpkg.com/schema-utils/-/schema-utils-2.6.6.tgz#299fe6bd4a3365dc23d99fd446caff8f1d6c330c" - integrity sha512-wHutF/WPSbIi9x6ctjGGk2Hvl0VOz5l3EKEuKbjPlB30mKZUzb9A5k9yEXRX3pwyqVLPvpfZZEllaFq/M718hA== - dependencies: - ajv "^6.12.0" - ajv-keywords "^3.4.1" - select@^1.1.2: version "1.1.2" resolved "https://registry.yarnpkg.com/select/-/select-1.1.2.tgz#0e7350acdec80b1108528786ec1d4418d11b396d" integrity sha1-DnNQrN7ICxEIUoeG7B1EGNEbOW0= -"semver@2 || 3 || 4 || 5", semver@^5.1.0, semver@^5.2.0, semver@^5.3.0, semver@^5.4.1, semver@^5.5.0, semver@^5.5.1, semver@^5.6.0: +"semver@2 || 3 || 4 || 5", semver@^5.1.0, semver@^5.2.0, semver@^5.3.0, semver@^5.5.0, semver@^5.6.0: version "5.7.1" resolved "https://registry.yarnpkg.com/semver/-/semver-5.7.1.tgz#a954f931aeba508d307bbf069eff0c01c96116f7" integrity sha512-sauaDf/PZdVgrLTNYHRtpXa1iRiKcaebiKQ1BJdpQlWH2lCvexQdX55snPFyK7QzpudqbCI0qXFfOasHdyNDGQ== @@ -15177,7 +14120,7 @@ semver@7.0.0: resolved "https://registry.yarnpkg.com/semver/-/semver-7.0.0.tgz#5f3ca35761e47e05b206c6daff2cf814f0316b8e" integrity sha512-+GB6zVA9LWh6zovYQLALHwv5rb2PHGlJi3lfiqIHxR0uuwCgefcOJc59v9fv1w8GbStwxuuqqAjI9NMAOOgq1A== -semver@7.3.5, semver@^7.0.0: +semver@7.3.5, semver@^7.0.0, semver@^7.3.5: version "7.3.5" resolved "https://registry.yarnpkg.com/semver/-/semver-7.3.5.tgz#0b621c879348d8998e4b0e4be94b3f12e6018ef7" integrity sha512-PoeGJYh8HK4BTO/a9Tf6ZG3veo/A7ZVsYrSA6J8ny9nb3B1VrpkuN+z9OE5wfE5p6H4LchYZsegiQgbJD94ZFQ== @@ -15214,9 +14157,9 @@ serialize-error@^2.1.0: integrity sha1-ULZ51WNc34Rme9yOWa9OW4HV9go= serialize-error@^8.0.1: - version "8.0.1" - resolved "https://registry.yarnpkg.com/serialize-error/-/serialize-error-8.0.1.tgz#7a67f8ecbbf28973b5a954a2852ff9f4eef52d99" - integrity sha512-r5o60rWFS+8/b49DNAbB+GXZA0SpDpuWE758JxDKgRTga05r3U5lwyksE91dYKDhXSmnu36RALj615E6Aj5pSg== + version "8.1.0" + resolved "https://registry.yarnpkg.com/serialize-error/-/serialize-error-8.1.0.tgz#3a069970c712f78634942ddd50fbbc0eaebe2f67" + integrity sha512-3NnuWfM6vBYoy5gZFvHiYsVbafvI9vZv/+jlIigFn4oP4zjNPK3LhcY0xSCgeb1a5L8jO71Mit9LlNoi2UfDDQ== dependencies: type-fest "^0.20.2" @@ -15227,11 +14170,6 @@ serialize-javascript@5.0.1: dependencies: randombytes "^2.1.0" -serialize-javascript@^2.1.2: - version "2.1.2" - resolved "https://registry.yarnpkg.com/serialize-javascript/-/serialize-javascript-2.1.2.tgz#ecec53b0e0317bdc95ef76ab7074b7384785fa61" - integrity sha512-rs9OggEUF0V4jUSecXazOYsLfu7OGK2qIn3c7IPBiffz32XniEp/TX9Xmc9LQfK2nQ2QKHvZ2oygKUGU0lG4jQ== - serialize-javascript@^4.0.0: version "4.0.0" resolved "https://registry.yarnpkg.com/serialize-javascript/-/serialize-javascript-4.0.0.tgz#b525e1238489a5ecfc42afacc3fe99e666f4b1aa" @@ -15302,6 +14240,13 @@ shallow-clone@^1.0.0: kind-of "^5.0.0" mixin-object "^2.0.1" +shallow-clone@^3.0.0: + version "3.0.1" + resolved "https://registry.yarnpkg.com/shallow-clone/-/shallow-clone-3.0.1.tgz#8f2981ad92531f55035b01fb230769a40e02efa3" + integrity sha512-/6KqX+GVUdqPuPPd2LxDDxzX6CAbjJehAAOKlNpqqUpAqPM6HeL8f+o3a+JsyGjn2lv0WY8UsTgUJjU9Ok55NA== + dependencies: + kind-of "^6.0.2" + shallow-equal@^1.1.0: version "1.2.1" resolved "https://registry.yarnpkg.com/shallow-equal/-/shallow-equal-1.2.1.tgz#4c16abfa56043aa20d050324efa68940b0da79da" @@ -15365,14 +14310,6 @@ shellwords@^0.1.1: resolved "https://registry.yarnpkg.com/shellwords/-/shellwords-0.1.1.tgz#d6b9181c1a48d397324c84871efbcfc73fc0654b" integrity sha512-vFwSUfQvqybiICwZY5+DAWIPLKsWO31Q91JSKl3UYv+K5c2QRPzn0qzec6QPu1Qc9eHYItiP3NdJqNVqetYAww== -side-channel@^1.0.2: - version "1.0.2" - resolved "https://registry.yarnpkg.com/side-channel/-/side-channel-1.0.2.tgz#df5d1abadb4e4bf4af1cd8852bf132d2f7876947" - integrity sha512-7rL9YlPHg7Ancea1S96Pa8/QWb4BtXL/TZvS6B8XFetGBeuhAsfmUspK6DokBeZ64+Kj9TCNRD/30pVz1BvQNA== - dependencies: - es-abstract "^1.17.0-next.1" - object-inspect "^1.7.0" - side-channel@^1.0.4: version "1.0.4" resolved "https://registry.yarnpkg.com/side-channel/-/side-channel-1.0.4.tgz#efce5c8fdc104ee751b25c58d4290011fa5ea2cf" @@ -15388,9 +14325,9 @@ signal-exit@^3.0.0, signal-exit@^3.0.2, signal-exit@^3.0.3: integrity sha512-VUJ49FC8U1OxwZLxIbTTrDvLnf/6TDgxZcK8wxR8zs13xpx7xbG60ndBlhNrFi2EMuFRoeDoJO7wthSLq42EjA== simple-plist@^1.0.0: - version "1.1.0" - resolved "https://registry.yarnpkg.com/simple-plist/-/simple-plist-1.1.0.tgz#8354ab63eb3922a054c78ce96c209c532e907a23" - integrity sha512-2i5Tc0BYAqppM7jVzmNrI+aEUntPolIq4fDgji6WuNNn1D/qYdn2KwoLhZdzQkE04lu9L5tUoeJsjuJAvd+lFg== + version "1.1.1" + resolved "https://registry.yarnpkg.com/simple-plist/-/simple-plist-1.1.1.tgz#54367ca28bc5996a982c325c1c4a4c1a05f4047c" + integrity sha512-pKMCVKvZbZTsqYR6RKgLfBHkh2cV89GXcA/0CVPje3sOiNOnXA8+rp/ciAMZ7JRaUdLzlEM6JFfUn+fS6Nt3hg== dependencies: bplist-creator "0.0.8" bplist-parser "0.2.0" @@ -15428,7 +14365,7 @@ sisteransi@^0.1.1: resolved "https://registry.yarnpkg.com/sisteransi/-/sisteransi-0.1.1.tgz#5431447d5f7d1675aac667ccd0b865a4994cb3ce" integrity sha512-PmGOd02bM9YO5ifxpw36nrNMBTptEtfRl4qUYl9SndkolplkrZZOW7PGHjrZL53QvMVj9nQ+TKqUnRsw4tJa4g== -sisteransi@^1.0.4: +sisteransi@^1.0.5: version "1.0.5" resolved "https://registry.yarnpkg.com/sisteransi/-/sisteransi-1.0.5.tgz#134d681297756437cc05ca01370d3a7a571075ed" integrity sha512-bLGGlR1QxBcynn2d5YmDX4MGjlZvy2MRBDRNHLJ8VI6l6+9FUiyTFNJ0IveOSP0bcXgVDPRcfGqA0pjaqUpfVg== @@ -15457,11 +14394,6 @@ slice-ansi@^2.0.0, slice-ansi@^2.1.0: astral-regex "^1.0.0" is-fullwidth-code-point "^2.0.0" -slide@^1.1.5: - version "1.1.6" - resolved "https://registry.yarnpkg.com/slide/-/slide-1.1.6.tgz#56eb027d65b4d2dce6cb2e2d32c4d4afc9e1d707" - integrity sha1-VusCfWW00tzmyy4tMsTUr8nh1wc= - snapdragon-node@^2.0.1: version "2.1.1" resolved "https://registry.yarnpkg.com/snapdragon-node/-/snapdragon-node-2.1.1.tgz#6c175f86ff14bdb0724563e8f3c1b021a286853b" @@ -15543,9 +14475,9 @@ source-map-support@^0.5.16, source-map-support@^0.5.6, source-map-support@~0.5.1 source-map "^0.6.0" source-map-url@^0.4.0: - version "0.4.0" - resolved "https://registry.yarnpkg.com/source-map-url/-/source-map-url-0.4.0.tgz#3e935d7ddd73631b97659956d55128e87b5084a3" - integrity sha1-PpNdfd1zYxuXZZlW1VEo6HtQhKM= + version "0.4.1" + resolved "https://registry.yarnpkg.com/source-map-url/-/source-map-url-0.4.1.tgz#0af66605a745a5a2f91cf1bbf8a7afbc283dec56" + integrity sha512-cPiFOTLUKvJFIg4SKVScy4ilPPW6rFgMgfuZJPNoDuMs3nC1HbMUycBoJw77xFIp6z1UJQJOfx6C9GMH80DiTw== source-map@0.5.6: version "0.5.6" @@ -15573,9 +14505,9 @@ space-separated-tokens@^1.0.0: integrity sha512-q/JSVd1Lptzhf5bkYm4ob4iWPjx0KiRe3sRFBNrVqbJkFaBm5vbbowy1mymoPNLRa52+oadOhJ+K49wsSeSjTA== spdx-correct@^3.0.0: - version "3.1.0" - resolved "https://registry.yarnpkg.com/spdx-correct/-/spdx-correct-3.1.0.tgz#fb83e504445268f154b074e218c87c003cd31df4" - integrity sha512-lr2EZCctC2BNR7j7WzJ2FpDznxky1sjfxvvYEyzxNyb6lZXHODmEoJeFu4JupYlkfha1KZpJyoqiJ7pgA1qq8Q== + version "3.1.1" + resolved "https://registry.yarnpkg.com/spdx-correct/-/spdx-correct-3.1.1.tgz#dece81ac9c1e6713e5f7d1b6f17d468fa53d89a9" + integrity sha512-cOYcUWwhCuHCXi49RhFRCyJEK3iPj1Ziz9DpViV3tbZOwXD49QzIN3MpOLJNxh2qwq2lJJZaKMVw9qNi4jTC0w== dependencies: spdx-expression-parse "^3.0.0" spdx-license-ids "^3.0.0" @@ -15594,9 +14526,9 @@ spdx-expression-parse@^3.0.0: spdx-license-ids "^3.0.0" spdx-license-ids@^3.0.0: - version "3.0.5" - resolved "https://registry.yarnpkg.com/spdx-license-ids/-/spdx-license-ids-3.0.5.tgz#3694b5804567a458d3c8045842a6358632f62654" - integrity sha512-J+FWzZoynJEXGphVIS+XEh3kFSjZX/1i9gFBaWQcB+/tmpe2qUsSBABpcxqxnAxFdiUFEgAX1bjYGQvIZmoz9Q== + version "3.0.9" + resolved "https://registry.yarnpkg.com/spdx-license-ids/-/spdx-license-ids-3.0.9.tgz#8a595135def9592bda69709474f1cbeea7c2467f" + integrity sha512-Ki212dKK4ogX+xDo4CtOZBVIwhsKBEfsEEcwmJfLQzirgc2jIWdzg40Unxz/HzEUqM1WFzVlQSMF9kZZ2HboLQ== split-on-first@^1.0.0: version "1.1.0" @@ -15636,9 +14568,9 @@ sshpk@^1.7.0: tweetnacl "~0.14.0" ssri@^6.0.1: - version "6.0.1" - resolved "https://registry.yarnpkg.com/ssri/-/ssri-6.0.1.tgz#2a3c41b28dd45b62b63676ecb74001265ae9edd8" - integrity sha512-3Wge10hNcT1Kur4PDFwEieXSCMCJs/7WvSACcrMYrNp+b8kDL1/0wJch5Ni2WrtwEa2IO8OsVfeKIciKCDx/QA== + version "6.0.2" + resolved "https://registry.yarnpkg.com/ssri/-/ssri-6.0.2.tgz#157939134f20464e7301ddba3e90ffa8f7728ac5" + integrity sha512-cepbSq/neFK7xB6A50KHN0xHDotYzq58wWCa5LeWqnPrHG8GzfEjO/4O8kpmcGW+oaxkvhEJCWgbgNk4/ZV93Q== dependencies: figgy-pudding "^3.5.1" @@ -15663,9 +14595,11 @@ stack-generator@^2.0.5: stackframe "^1.1.1" stack-utils@^1.0.1: - version "1.0.2" - resolved "https://registry.yarnpkg.com/stack-utils/-/stack-utils-1.0.2.tgz#33eba3897788558bebfc2db059dc158ec36cebb8" - integrity sha512-MTX+MeG5U994cazkjd/9KNAapsHnibjMLnfXodlkXw76JEea0UiNzrqidzo1emMwk7w5Qhc9jd4Bn9TBb1MFwA== + version "1.0.5" + resolved "https://registry.yarnpkg.com/stack-utils/-/stack-utils-1.0.5.tgz#a19b0b01947e0029c8e451d5d61a498f5bb1471b" + integrity sha512-KZiTzuV3CnSnSvgMRrARVCj+Ht7rMbauGDK0LdVFRGyenwdylpajAp4Q0i6SX8rEmbTpMMf6ryq2gb8pPq2WgQ== + dependencies: + escape-string-regexp "^2.0.0" stackframe@^1.1.1: version "1.2.0" @@ -15715,9 +14649,9 @@ stealthy-require@^1.1.1: integrity sha1-NbCYdbT/SfJqd35QmzCQoyJr8ks= store2@^2.7.1: - version "2.11.2" - resolved "https://registry.yarnpkg.com/store2/-/store2-2.11.2.tgz#a298e5e97b21b3ce7419b732540bc7c79cb007db" - integrity sha512-TQMKs+C6n9idtzLpxluikmDCYiDJrTbbIGn9LFxMg0BVTu+8JZKSlXTWYRpOFKlfKD5HlDWLVpJJyNGZ2e9l1A== + version "2.12.0" + resolved "https://registry.yarnpkg.com/store2/-/store2-2.12.0.tgz#e1f1b7e1a59b6083b2596a8d067f6ee88fd4d3cf" + integrity sha512-7t+/wpKLanLzSnQPX8WAcuLCCeuSHoWdQuh9SB3xD0kNOM38DNf+0Oa+wmvxmYueRzkmh6IcdKFtvTa+ecgPDw== stream-browserify@^2.0.1: version "2.0.2" @@ -15816,27 +14750,15 @@ string-width@^3.0.0, string-width@^3.1.0: strip-ansi "^5.1.0" string-width@^4.0.0, string-width@^4.1.0, string-width@^4.2.0: - version "4.2.0" - resolved "https://registry.yarnpkg.com/string-width/-/string-width-4.2.0.tgz#952182c46cc7b2c313d1596e623992bd163b72b5" - integrity sha512-zUz5JD+tgqtuDjMhwIg5uFVV3dtqZ9yQJlZVfq4I01/K5Paj5UHj7VyrQOJvzawSVlKpObApbfD0Ed6yJc+1eg== + version "4.2.2" + resolved "https://registry.yarnpkg.com/string-width/-/string-width-4.2.2.tgz#dafd4f9559a7585cfba529c6a0a4f73488ebd4c5" + integrity sha512-XBJbT3N4JhVumXE0eoLU9DCjcaF92KLNqTmFCnG1pf8duUxFGwtP6AD6nkjw9a3IdiRtL3E2w3JDiE/xi3vOeA== dependencies: emoji-regex "^8.0.0" is-fullwidth-code-point "^3.0.0" strip-ansi "^6.0.0" -"string.prototype.matchall@^4.0.0 || ^3.0.1": - version "4.0.2" - resolved "https://registry.yarnpkg.com/string.prototype.matchall/-/string.prototype.matchall-4.0.2.tgz#48bb510326fb9fdeb6a33ceaa81a6ea04ef7648e" - integrity sha512-N/jp6O5fMf9os0JU3E72Qhf590RSRZU/ungsL/qJUYVTNv7hTG0P/dbPjxINVN9jpscu3nzYwKESU3P3RY5tOg== - dependencies: - define-properties "^1.1.3" - es-abstract "^1.17.0" - has-symbols "^1.0.1" - internal-slot "^1.0.2" - regexp.prototype.flags "^1.3.0" - side-channel "^1.0.2" - -string.prototype.matchall@^4.0.2: +"string.prototype.matchall@^4.0.0 || ^3.0.1", string.prototype.matchall@^4.0.2: version "4.0.5" resolved "https://registry.yarnpkg.com/string.prototype.matchall/-/string.prototype.matchall-4.0.5.tgz#59370644e1db7e4c0c045277690cf7b01203c4da" integrity sha512-Z5ZaXO0svs0M2xd/6By3qpeKpLKd9mO4v4q3oMEQrk8Ck4xOD5d5XeBOOjGrmVZZ/AHB1S0CgG4N5r1G9N3E2Q== @@ -15851,34 +14773,28 @@ string.prototype.matchall@^4.0.2: side-channel "^1.0.4" string.prototype.padend@^3.0.0: - version "3.1.0" - resolved "https://registry.yarnpkg.com/string.prototype.padend/-/string.prototype.padend-3.1.0.tgz#dc08f57a8010dc5c153550318f67e13adbb72ac3" - integrity sha512-3aIv8Ffdp8EZj8iLwREGpQaUZiPyrWrpzMBHvkiSW/bK/EGve9np07Vwy7IJ5waydpGXzQZu/F8Oze2/IWkBaA== + version "3.1.2" + resolved "https://registry.yarnpkg.com/string.prototype.padend/-/string.prototype.padend-3.1.2.tgz#6858ca4f35c5268ebd5e8615e1327d55f59ee311" + integrity sha512-/AQFLdYvePENU3W5rgurfWSMU6n+Ww8n/3cUt7E+vPBB/D7YDG8x+qjoFs4M/alR2bW7Qg6xMjVwWUOvuQ0XpQ== dependencies: + call-bind "^1.0.2" define-properties "^1.1.3" - es-abstract "^1.17.0-next.1" + es-abstract "^1.18.0-next.2" string.prototype.padstart@^3.0.0: - version "3.1.0" - resolved "https://registry.yarnpkg.com/string.prototype.padstart/-/string.prototype.padstart-3.1.0.tgz#b47c087540d0710be5a49375751a0a627bd4ff90" - integrity sha512-envqZvUp2JItI+OeQ5UAh1ihbAV5G/2bixTojvlIa090GGqF+NQRxbWb2nv9fTGrZABv6+pE6jXoAZhhS2k4Hw== + version "3.1.2" + resolved "https://registry.yarnpkg.com/string.prototype.padstart/-/string.prototype.padstart-3.1.2.tgz#f9b9ce66bedd7c06acb40ece6e34c6046e1a019d" + integrity sha512-HDpngIP3pd0DeazrfqzuBrQZa+D2arKWquEHfGt5LzVjd+roLC3cjqVI0X8foaZz5rrrhcu8oJAQamW8on9dqw== dependencies: + call-bind "^1.0.2" define-properties "^1.1.3" - es-abstract "^1.17.0-next.1" + es-abstract "^1.18.0-next.2" string.prototype.repeat@^0.2.0: version "0.2.0" resolved "https://registry.yarnpkg.com/string.prototype.repeat/-/string.prototype.repeat-0.2.0.tgz#aba36de08dcee6a5a337d49b2ea1da1b28fc0ecf" integrity sha1-q6Nt4I3O5qWjN9SbLqHaGyj8Ds8= -string.prototype.trimend@^1.0.0: - version "1.0.1" - resolved "https://registry.yarnpkg.com/string.prototype.trimend/-/string.prototype.trimend-1.0.1.tgz#85812a6b847ac002270f5808146064c995fb6913" - integrity sha512-LRPxFUaTtpqYsTeNKaFOw3R4bxIzWOnbQ837QfBylo8jIxtcbK/A/sMV7Q+OAV/vWo+7s25pOE10KYSjaSO06g== - dependencies: - define-properties "^1.1.3" - es-abstract "^1.17.5" - string.prototype.trimend@^1.0.4: version "1.0.4" resolved "https://registry.yarnpkg.com/string.prototype.trimend/-/string.prototype.trimend-1.0.4.tgz#e75ae90c2942c63504686c18b287b4a0b1a45f80" @@ -15887,32 +14803,6 @@ string.prototype.trimend@^1.0.4: call-bind "^1.0.2" define-properties "^1.1.3" -string.prototype.trimleft@^2.1.1: - version "2.1.2" - resolved "https://registry.yarnpkg.com/string.prototype.trimleft/-/string.prototype.trimleft-2.1.2.tgz#4408aa2e5d6ddd0c9a80739b087fbc067c03b3cc" - integrity sha512-gCA0tza1JBvqr3bfAIFJGqfdRTyPae82+KTnm3coDXkZN9wnuW3HjGgN386D7hfv5CHQYCI022/rJPVlqXyHSw== - dependencies: - define-properties "^1.1.3" - es-abstract "^1.17.5" - string.prototype.trimstart "^1.0.0" - -string.prototype.trimright@^2.1.1: - version "2.1.2" - resolved "https://registry.yarnpkg.com/string.prototype.trimright/-/string.prototype.trimright-2.1.2.tgz#c76f1cef30f21bbad8afeb8db1511496cfb0f2a3" - integrity sha512-ZNRQ7sY3KroTaYjRS6EbNiiHrOkjihL9aQE/8gfQ4DtAC/aEBRHFJa44OmoWxGGqXuJlfKkZW4WcXErGr+9ZFg== - dependencies: - define-properties "^1.1.3" - es-abstract "^1.17.5" - string.prototype.trimend "^1.0.0" - -string.prototype.trimstart@^1.0.0: - version "1.0.1" - resolved "https://registry.yarnpkg.com/string.prototype.trimstart/-/string.prototype.trimstart-1.0.1.tgz#14af6d9f34b053f7cfc89b72f8f2ee14b9039a54" - integrity sha512-XxZn+QpvrBI1FOcg6dIpxUPgWCPuNXvMD72aaRaUQv1eD4e/Qy8i/hFTe0BUmD60p/QA6bh1avmuPTfNjqVWRw== - dependencies: - define-properties "^1.1.3" - es-abstract "^1.17.5" - string.prototype.trimstart@^1.0.4: version "1.0.4" resolved "https://registry.yarnpkg.com/string.prototype.trimstart/-/string.prototype.trimstart-1.0.4.tgz#b36399af4ab2999b4c9c648bd7a3fb2bb26feeed" @@ -15997,16 +14887,11 @@ strip-indent@^1.0.1: dependencies: get-stdin "^4.0.1" -strip-json-comments@3.1.1: +strip-json-comments@3.1.1, strip-json-comments@^3.0.1: version "3.1.1" resolved "https://registry.yarnpkg.com/strip-json-comments/-/strip-json-comments-3.1.1.tgz#31f1281b3832630434831c310c01cccda8cbe006" integrity sha512-6fPc+R4ihwqP6N/aIv2f1gMH8lOVtWQHoqC4yK6oSDVVocumAsfCqjkXnqiYMhmMwS/mEHLp7Vehlt3ql6lEig== -strip-json-comments@^3.0.1: - version "3.1.0" - resolved "https://registry.yarnpkg.com/strip-json-comments/-/strip-json-comments-3.1.0.tgz#7638d31422129ecf4457440009fba03f9f9ac180" - integrity sha512-e6/d0eBu7gHtdCqFt0xJr642LdToM5/cN4Qb9DbHjVx1CP5RyeM+zH7pbecEmDv/lBqb0QH+6Uqq75rxFPkM0w== - strip-json-comments@~2.0.1: version "2.0.1" resolved "https://registry.yarnpkg.com/strip-json-comments/-/strip-json-comments-2.0.1.tgz#3c531942e908c2697c0ec344858c286c7ca0a60a" @@ -16072,16 +14957,16 @@ supports-color@^6.1.0: has-flag "^3.0.0" supports-color@^7.0.0, supports-color@^7.1.0: - version "7.1.0" - resolved "https://registry.yarnpkg.com/supports-color/-/supports-color-7.1.0.tgz#68e32591df73e25ad1c4b49108a2ec507962bfd1" - integrity sha512-oRSIpR8pxT1Wr2FquTNnGet79b3BWljqOuoW/h4oBhxJ/HUbX5nX6JSruTkvXDCFMwDPvsaTTbvMLKZWSy0R5g== + version "7.2.0" + resolved "https://registry.yarnpkg.com/supports-color/-/supports-color-7.2.0.tgz#1b7dcdcb32b8138801b3e478ba6a51caa89648da" + integrity sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw== dependencies: has-flag "^4.0.0" supports-hyperlinks@^2.0.0: - version "2.1.0" - resolved "https://registry.yarnpkg.com/supports-hyperlinks/-/supports-hyperlinks-2.1.0.tgz#f663df252af5f37c5d49bbd7eeefa9e0b9e59e47" - integrity sha512-zoE5/e+dnEijk6ASB6/qrK+oYdm2do1hjoLWrqUC/8WEIW1gbxFcKuBof7sW8ArN6e+AYvsE8HBGiVRWL/F5CA== + version "2.2.0" + resolved "https://registry.yarnpkg.com/supports-hyperlinks/-/supports-hyperlinks-2.2.0.tgz#4f77b42488765891774b70c79babd87f9bd594bb" + integrity sha512-6sXEzV5+I5j8Bmq9/vUphGRM/RJNT9SCURJLjwfOg51heRtguGWDzcaBlgAzKhQa0EVNpPEKzQuBwZ8S8WaCeQ== dependencies: has-flag "^4.0.0" supports-color "^7.0.0" @@ -16091,28 +14976,20 @@ svg-arc-to-cubic-bezier@^3.0.0: resolved "https://registry.yarnpkg.com/svg-arc-to-cubic-bezier/-/svg-arc-to-cubic-bezier-3.2.0.tgz#390c450035ae1c4a0104d90650304c3bc814abe6" integrity sha512-djbJ/vZKZO+gPoSDThGNpKDO+o+bAeA4XQKovvkNCqnIS2t+S4qnLAGQhyyrulhCFRl1WWzAp0wUDV8PpTVU3g== -symbol-observable@1.0.1: - version "1.0.1" - resolved "https://registry.yarnpkg.com/symbol-observable/-/symbol-observable-1.0.1.tgz#8340fc4702c3122df5d22288f88283f513d3fdd4" - integrity sha1-g0D8RwLDEi310iKI+IKD9RPT/dQ= - -symbol-observable@^1.2.0: - version "1.2.0" - resolved "https://registry.yarnpkg.com/symbol-observable/-/symbol-observable-1.2.0.tgz#c22688aed4eab3cdc2dfeacbb561660560a00804" - integrity sha512-e900nM8RRtGhlV36KGEU9k65K3mPb1WV70OdjfxlG2EAuM1noi/E/BaW/uMhL7bPEssK8QV57vN3esixjUvcXQ== - symbol-tree@^3.2.2: version "3.2.4" resolved "https://registry.yarnpkg.com/symbol-tree/-/symbol-tree-3.2.4.tgz#430637d248ba77e078883951fb9aa0eed7c63fa2" integrity sha512-9QNk5KwDF+Bvz+PyObkmSYjI5ksVUYtjW7AU22r2NKcfLJcXp96hkDWU3+XndOsUb+AQ9QhfzfCT2O+CNWT5Tw== symbol.prototype.description@^1.0.0: - version "1.0.2" - resolved "https://registry.yarnpkg.com/symbol.prototype.description/-/symbol.prototype.description-1.0.2.tgz#f325e1e6ad534b3b29c9c3ca73c136c9ce03c5e2" - integrity sha512-2CW5SU4/Ki1cYOOHcL2cXK4rxSg5hCU1TwZ7X4euKhV9VnfqKslh7T6/UyKkubA8cq2tOmsOv7m3ZUmQslBRuw== + version "1.0.4" + resolved "https://registry.yarnpkg.com/symbol.prototype.description/-/symbol.prototype.description-1.0.4.tgz#c30edd3fe8c040d941cf7dc15842be15adf66855" + integrity sha512-fZkHwJ8ZNRVRzF/+/2OtygyyH06CjC0YZAQRHu9jKKw8RXlJpbizEHvGRUu22Qkg182wJk1ugb5Aovcv3UPrww== dependencies: - es-abstract "^1.17.0-next.1" + call-bind "^1.0.2" + es-abstract "^1.18.0-next.2" has-symbols "^1.0.1" + object.getownpropertydescriptors "^2.1.2" table@^5.2.3: version "5.4.6" @@ -16125,9 +15002,9 @@ table@^5.2.3: string-width "^3.0.0" tail@^2.0.0: - version "2.2.1" - resolved "https://registry.yarnpkg.com/tail/-/tail-2.2.1.tgz#3369a786dde3d7b1a5baa3a0accea09348bc5a83" - integrity sha512-pqtI8HB6pbltcaDxkTq12meYxMeLNtZg7+h+c2WlXofaOh4bUeLFQ3eU8S23niqb8We4/UFc+QNlky9nCRnrSQ== + version "2.2.3" + resolved "https://registry.yarnpkg.com/tail/-/tail-2.2.3.tgz#3e6bf65963bb868913e4e3b770cc1584c9d8091c" + integrity sha512-XbBmVsJZ636kncPew2Y+pOxOsb9GsNFZ1bcAGCDn23ME/JPJ+TImZYjnqBnMLdw+K11Hql5ZgiUQmRvDHaFc6w== tapable@^1.0.0, tapable@^1.1.3: version "1.1.3" @@ -16188,9 +15065,9 @@ tempfile@^2.0.0: uuid "^3.0.1" term-size@^2.1.0: - version "2.2.0" - resolved "https://registry.yarnpkg.com/term-size/-/term-size-2.2.0.tgz#1f16adedfe9bdc18800e1776821734086fcc6753" - integrity sha512-a6sumDlzyHVJWb8+YofY4TW112G6p2FCPEAFk+59gIYHv3XHRhm9ltVQ9kli4hNWeQBwSpe8cRN25x0ROunMOw== + version "2.2.1" + resolved "https://registry.yarnpkg.com/term-size/-/term-size-2.2.1.tgz#2a6a54840432c2fb6320fea0f415531e90189f54" + integrity sha512-wK0Ri4fOGjv/XPy8SBHZChl8CM7uMc5VML7SqiQ0zG7+J5Vr+RMQDoHa2CNT6KHUnTGIXH34UDMkPzAUyapBZg== terminal-link@^2.0.0: version "2.1.1" @@ -16201,15 +15078,15 @@ terminal-link@^2.0.0: supports-hyperlinks "^2.0.0" terser-webpack-plugin@^1.4.3: - version "1.4.3" - resolved "https://registry.yarnpkg.com/terser-webpack-plugin/-/terser-webpack-plugin-1.4.3.tgz#5ecaf2dbdc5fb99745fd06791f46fc9ddb1c9a7c" - integrity sha512-QMxecFz/gHQwteWwSo5nTc6UaICqN1bMedC5sMtUc7y3Ha3Q8y6ZO0iCR8pq4RJC8Hjf0FEPEHZqcMB/+DFCrA== + version "1.4.5" + resolved "https://registry.yarnpkg.com/terser-webpack-plugin/-/terser-webpack-plugin-1.4.5.tgz#a217aefaea330e734ffacb6120ec1fa312d6040b" + integrity sha512-04Rfe496lN8EYruwi6oPQkG0vo8C+HT49X687FZnpPF0qMAIHONI6HEXYPKDOE8e5HjXTyKfqRd/agHtH0kOtw== dependencies: cacache "^12.0.2" find-cache-dir "^2.1.0" is-wsl "^1.1.0" schema-utils "^1.0.0" - serialize-javascript "^2.1.2" + serialize-javascript "^4.0.0" source-map "^0.6.1" terser "^4.1.2" webpack-sources "^1.4.0" @@ -16230,16 +15107,7 @@ terser-webpack-plugin@^2.1.2: terser "^4.6.12" webpack-sources "^1.4.3" -terser@^4.1.2, terser@^4.6.3: - version "4.7.0" - resolved "https://registry.yarnpkg.com/terser/-/terser-4.7.0.tgz#15852cf1a08e3256a80428e865a2fa893ffba006" - integrity sha512-Lfb0RiZcjRDXCC3OSHJpEkxJ9Qeqs6mp2v4jf2MHfy8vGERmVDuvjXdd/EnP5Deme5F2yBRBymKmKHCBg2echw== - dependencies: - commander "^2.20.0" - source-map "~0.6.1" - source-map-support "~0.5.12" - -terser@^4.6.12: +terser@^4.1.2, terser@^4.6.12, terser@^4.6.3: version "4.8.0" resolved "https://registry.yarnpkg.com/terser/-/terser-4.8.0.tgz#63056343d7c70bb29f3af665865a46fe03a0df17" integrity sha512-EAPipTNeWsb/3wLPeup1tVPaXfIaU68xMnVdPafIL1TV05OhASArYyIfFvnvJCNrR2NIOvDVNNTFRa+Re2MWyw== @@ -16330,16 +15198,16 @@ time-stamp@^1.0.0: integrity sha1-dkpaEa9QVhkhsTPztE5hhofg9cM= timers-browserify@^2.0.4: - version "2.0.11" - resolved "https://registry.yarnpkg.com/timers-browserify/-/timers-browserify-2.0.11.tgz#800b1f3eee272e5bc53ee465a04d0e804c31211f" - integrity sha512-60aV6sgJ5YEbzUdn9c8kYGIqOubPoUdqQCul3SBAsRCZ40s6Y5cMcrW4dt3/k/EsbLVJNl9n6Vz3fTc+k2GeKQ== + version "2.0.12" + resolved "https://registry.yarnpkg.com/timers-browserify/-/timers-browserify-2.0.12.tgz#44a45c11fbf407f34f97bccd1577c652361b00ee" + integrity sha512-9phl76Cqm6FhSX9Xe1ZUAMLtm1BLkKj2Qd5ApyWkXzsMRaA7dgr81kf4wJmQf/hAvg8EEyJxDo3du/0KlhPiKQ== dependencies: setimmediate "^1.0.4" timm@^1.6.1: - version "1.6.2" - resolved "https://registry.yarnpkg.com/timm/-/timm-1.6.2.tgz#dfd8c6719f7ba1fcfc6295a32670a1c6d166c0bd" - integrity sha512-IH3DYDL1wMUwmIlVmMrmesw5lZD6N+ZOAFWEyLrtpoL9Bcrs9u7M/vyOnHzDD2SMs4irLkVjqxZbHrXStS/Nmw== + version "1.7.1" + resolved "https://registry.yarnpkg.com/timm/-/timm-1.7.1.tgz#96bab60c7d45b5a10a8a4d0f0117c6b7e5aff76f" + integrity sha512-IjZc9KIotudix8bMaBW6QvMuq64BrJWFs1+4V0lXwWGQZwH+LnX87doAYhem4caOEusRP9/g6jVDQmZ8XOk1nw== tiny-emitter@^2.0.0: version "2.1.0" @@ -16352,9 +15220,9 @@ tiny-events@^1.0.1: integrity sha1-dGkOmau4pDyP7TI2o8OHKyfOY3Y= tinycolor2@^1.4.1: - version "1.4.1" - resolved "https://registry.yarnpkg.com/tinycolor2/-/tinycolor2-1.4.1.tgz#f4fad333447bc0b07d4dc8e9209d8f39a8ac77e8" - integrity sha1-9PrTM0R7wLB9TcjpIJ2POaisd+g= + version "1.4.2" + resolved "https://registry.yarnpkg.com/tinycolor2/-/tinycolor2-1.4.2.tgz#3f6a4d1071ad07676d7fa472e1fac40a719d8803" + integrity sha512-vJhccZPs965sV/L2sU4oRQVAos0pQXwsvTLkWYdqJ+a8Q5kPFzJTuOFwy7UniPli44NKQGAglksjvOcpo95aZA== tmp@^0.0.33: version "0.0.33" @@ -16474,9 +15342,9 @@ truncate-utf8-bytes@^1.0.0: utf8-byte-length "^1.0.1" ts-dedent@^1.1.0: - version "1.1.1" - resolved "https://registry.yarnpkg.com/ts-dedent/-/ts-dedent-1.1.1.tgz#68fad040d7dbd53a90f545b450702340e17d18f3" - integrity sha512-UGTRZu1evMw4uTPyYF66/KFd22XiU+jMaIuHrkIHQ2GivAXVlLV0v/vHrpOuTRf9BmpNHi/SO7Vd0rLu0y57jg== + version "1.2.0" + resolved "https://registry.yarnpkg.com/ts-dedent/-/ts-dedent-1.2.0.tgz#6aa2229d837159bb6d635b6b233002423b91e0b0" + integrity sha512-6zSJp23uQI+Txyz5LlXMXAHpUhY4Hi0oluXny0OgIR7g/Cromq4vDBnhtbBdyIV34g0pgwxUvnvg+jLJe4c1NA== ts-pnp@^1.1.2: version "1.2.0" @@ -16484,21 +15352,15 @@ ts-pnp@^1.1.2: integrity sha512-csd+vJOb/gkzvcCHgTGSChYpy5f1/XKNsmvBGO4JXS+z1v2HobugDz4s1IeFXM3wZB44uczs+eazB5Q/ccdhQw== tsconfig-paths@^3.9.0: - version "3.9.0" - resolved "https://registry.yarnpkg.com/tsconfig-paths/-/tsconfig-paths-3.9.0.tgz#098547a6c4448807e8fcb8eae081064ee9a3c90b" - integrity sha512-dRcuzokWhajtZWkQsDVKbWyY+jgcLC5sqJhg2PSgf4ZkH2aHPvaOY8YWGhmjb68b5qqTfasSsDO9k7RUiEmZAw== + version "3.10.1" + resolved "https://registry.yarnpkg.com/tsconfig-paths/-/tsconfig-paths-3.10.1.tgz#79ae67a68c15289fdf5c51cb74f397522d795ed7" + integrity sha512-rETidPDgCpltxF7MjBZlAFPUHv5aHH2MymyPvh+vEyWAED4Eb/WeMbsnD/JDr4OKPOA1TssDHgIcpTN5Kh0p6Q== dependencies: - "@types/json5" "^0.0.29" - json5 "^1.0.1" + json5 "^2.2.0" minimist "^1.2.0" strip-bom "^3.0.0" -tslib@^1.10.0, tslib@^1.9.0: - version "1.13.0" - resolved "https://registry.yarnpkg.com/tslib/-/tslib-1.13.0.tgz#c881e13cc7015894ed914862d276436fa9a47043" - integrity sha512-i/6DQjL8Xf3be4K/E6Wgpekn5Qasl1usyw++dAA35Ue5orEn65VIxOA+YvNNl9HV3qv70T7CNwjODHZrLwvd1Q== - -tslib@^1.9.3: +tslib@^1.8.1, tslib@^1.9.0, tslib@^1.9.3: version "1.14.1" resolved "https://registry.yarnpkg.com/tslib/-/tslib-1.14.1.tgz#cf2d38bdc34a134bcaf1091c41f6619e2f672d00" integrity sha512-Xni35NKzjgMrwevysHTCArtLDpPvye8zV/0E4EyYn43P7/7qvQwPh9BGkHewbMulVntbigmcT7rdX3BNo9wRJg== @@ -16508,6 +15370,13 @@ tslib@^2.0.3: resolved "https://registry.yarnpkg.com/tslib/-/tslib-2.3.0.tgz#803b8cdab3e12ba581a4ca41c8839bbb0dacb09e" integrity sha512-N82ooyxVNm6h1riLCoyS9e3fuJ3AMG2zIZs2Gd1ATcSFjSA23Q0fzjjZeh0jbJvWVDZ0cJT8yaNNaaXHzueNjg== +tsutils@^3.21.0: + version "3.21.0" + resolved "https://registry.yarnpkg.com/tsutils/-/tsutils-3.21.0.tgz#b48717d394cea6c1e096983eed58e9d61715b623" + integrity sha512-mHKK3iUXL+3UF6xL5k0PEhKRUBKPBCv/+RkEOpjRWxxx27KKRBmmA60A9pgOUvMi8GKhRMPEmjBRPzs2W7O1OA== + dependencies: + tslib "^1.8.1" + tty-browserify@0.0.0: version "0.0.0" resolved "https://registry.yarnpkg.com/tty-browserify/-/tty-browserify-0.0.0.tgz#a157ba402da24e9bf957f9aa69d524eed42901a6" @@ -16537,16 +15406,16 @@ type-detect@4.0.8: resolved "https://registry.yarnpkg.com/type-detect/-/type-detect-4.0.8.tgz#7646fb5f18871cfbb7749e69bd39a6388eb7450c" integrity sha512-0fr/mIH1dlO+x7TlcMy+bIDqKPsw/70tVyeHW787goQjhmqaZe10uwLujubK9q9Lg6Fiho1KUKDYz0Z7k7g5/g== -type-fest@^0.11.0: - version "0.11.0" - resolved "https://registry.yarnpkg.com/type-fest/-/type-fest-0.11.0.tgz#97abf0872310fed88a5c466b25681576145e33f1" - integrity sha512-OdjXJxnCN1AvyLSzeKIgXTXxV+99ZuXl3Hpo9XpJAv9MBcHrrJOQ5kV7ypXOuQie+AmWG25hLbiKdwYTifzcfQ== - type-fest@^0.20.2: version "0.20.2" resolved "https://registry.yarnpkg.com/type-fest/-/type-fest-0.20.2.tgz#1bf207f4b28f91583666cb5fbd327887301cd5f4" integrity sha512-Ne+eE4r0/iWnpAxD852z3A+N0Bt5RN//NjJwRd2VFHEmrywxf5vsZlh4R6lixl6B+wz/8d+maTSAkN1FIkI3LQ== +type-fest@^0.21.3: + version "0.21.3" + resolved "https://registry.yarnpkg.com/type-fest/-/type-fest-0.21.3.tgz#d260a24b0198436e133fa26a524a6d65fa3b2e37" + integrity sha512-t0rzBq87m3fVcduHDUFhKmyyX+9eo6WQjZvf51Ea/M0Q7+T374Jp1aUiyUl0GKxp8M/OETVHSDvmkyPgvX+X2w== + type-fest@^0.6.0: version "0.6.0" resolved "https://registry.yarnpkg.com/type-fest/-/type-fest-0.6.0.tgz#8d2a2370d3df886eb5c90ada1c5bf6188acf838b" @@ -16606,21 +15475,21 @@ typescript-tuple@^2.2.1: dependencies: typescript-compare "^0.0.2" +typescript@^4.3.5: + version "4.3.5" + resolved "https://registry.yarnpkg.com/typescript/-/typescript-4.3.5.tgz#4d1c37cc16e893973c45a06886b7113234f119f4" + integrity sha512-DqQgihaQ9cUrskJo9kIyW/+g0Vxsk8cDtZ52a3NGh0YNTfpUSArXSohyUGnvbPazEPLu398C0UxmKSOrPumUzA== + typical@^2.6.0: version "2.6.1" resolved "https://registry.yarnpkg.com/typical/-/typical-2.6.1.tgz#5c080e5d661cbbe38259d2e70a3c7253e873881d" integrity sha1-XAgOXWYcu+OCWdLnCjxyU+hziB0= -ua-parser-js@0.7.28: +ua-parser-js@0.7.28, ua-parser-js@^0.7.18: version "0.7.28" resolved "https://registry.yarnpkg.com/ua-parser-js/-/ua-parser-js-0.7.28.tgz#8ba04e653f35ce210239c64661685bf9121dec31" integrity sha512-6Gurc1n//gjp9eQNXjD9O3M/sMwVtN5S8Lv9bvOYBfKfDNiIIhqiyi01vMBO45u4zkDE420w/e0se7Vs+sIg+g== -ua-parser-js@^0.7.18: - version "0.7.21" - resolved "https://registry.yarnpkg.com/ua-parser-js/-/ua-parser-js-0.7.21.tgz#853cf9ce93f642f67174273cc34565ae6f308777" - integrity sha512-+O8/qh/Qj8CgC6eYBVBykMrNtp5Gebn4dlGD/kKXVkJNDwyrAwSIqwz8CDf+tsAIWVycKcku6gIXJ0qwx/ZXaQ== - uglify-es@^3.1.9: version "3.3.9" resolved "https://registry.yarnpkg.com/uglify-es/-/uglify-es-3.3.9.tgz#0c1c4f0700bed8dbc124cdb304d2592ca203e677" @@ -16630,11 +15499,9 @@ uglify-es@^3.1.9: source-map "~0.6.1" uglify-js@^3.1.4: - version "3.9.3" - resolved "https://registry.yarnpkg.com/uglify-js/-/uglify-js-3.9.3.tgz#4a285d1658b8a2ebaef9e51366b3a0f7acd79ec2" - integrity sha512-r5ImcL6QyzQGVimQoov3aL2ZScywrOgBXGndbWrdehKoSvGe/RmiE5Jpw/v+GvxODt6l2tpBXwA7n+qZVlHBMA== - dependencies: - commander "~2.20.3" + version "3.14.0" + resolved "https://registry.yarnpkg.com/uglify-js/-/uglify-js-3.14.0.tgz#2d723a0afee81e0d08db9354a9c277006e942386" + integrity sha512-R/tiGB1ZXp2BC+TkRGLwj8xUZgdfT2f4UZEgX6aVjJ5uttPrr4fYmwTWDGqVnBCLbOXRMY6nr/BTbwCtVfps0g== uid-safe@^2.0.0: version "2.1.5" @@ -16664,9 +15531,9 @@ unbox-primitive@^1.0.1: which-boxed-primitive "^1.0.2" underscore@^1.8.3: - version "1.10.2" - resolved "https://registry.yarnpkg.com/underscore/-/underscore-1.10.2.tgz#73d6aa3668f3188e4adb0f1943bd12cfd7efaaaf" - integrity sha512-N4P+Q/BuyuEKFJ43B9gYuOj4TQUHXX+j2FqguVOpjkssLUUrnJofCcBccJSCoeturDoZU6GorDTHSvUDlSQbTg== + version "1.13.1" + resolved "https://registry.yarnpkg.com/underscore/-/underscore-1.13.1.tgz#0c1c6bd2df54b6b69f2314066d65b6cde6fcf9d1" + integrity sha512-hzSoAVtJF+3ZtiFX0VgfFPHEDRm7Y/QPjGyNo4TVdnDTdft3tr8hEkD25a1jC+TjTuE7tkHGKkhwCgs9dgBB2g== unfetch@^4.1.0: version "4.2.0" @@ -16761,11 +15628,6 @@ union-value@^1.0.0: is-extendable "^0.1.1" set-value "^2.0.1" -uniq@^1.0.1: - version "1.0.1" - resolved "https://registry.yarnpkg.com/uniq/-/uniq-1.0.1.tgz#b31c5ae8254844a3a8281541ce2b04b865a734ff" - integrity sha1-sxxa6CVIRKOoKBVBzisEuGWnNP8= - unique-filename@^1.1.1: version "1.1.1" resolved "https://registry.yarnpkg.com/unique-filename/-/unique-filename-1.1.1.tgz#1d69769369ada0583103a1e6ae87681b56573230" @@ -16821,9 +15683,9 @@ upath@^1.1.1: integrity sha512-aZwGpamFO61g3OlfT7OQCHqhGnW43ieH9WZeP7QxN/G/jS4jfqUkZxoryvJgVPEcrl5NL/ggHsSmLMHuH64Lhg== uri-js@^4.2.2: - version "4.2.2" - resolved "https://registry.yarnpkg.com/uri-js/-/uri-js-4.2.2.tgz#94c540e1ff772956e2299507c010aea6c8838eb0" - integrity sha512-KY9Frmirql91X2Qgjry0Wd4Y+YTdrdZheS8TFwvkbLWf/G5KNJDCh6pKL5OZctEW4+0Baa5idK2ZQuELRwPznQ== + version "4.4.1" + resolved "https://registry.yarnpkg.com/uri-js/-/uri-js-4.4.1.tgz#9b1a52595225859e55f669d928f88c6c57f2a77e" + integrity sha512-7rKUyy33Q1yc98pQ1DAmLtwX109F7TIfWlW1Ydo8Wl1ii1SeHieeh0HHfPeL2fMXK6z0s8ecKs9frCuLJvndBg== dependencies: punycode "^2.1.0" @@ -16841,7 +15703,7 @@ url-loader@^2.0.1: mime "^2.4.4" schema-utils "^2.5.0" -url-parse@1.5.1, url-parse@^1.4.3: +url-parse@1.5.1, url-parse@^1.2.0, url-parse@^1.4.3, url-parse@^1.4.4: version "1.5.1" resolved "https://registry.yarnpkg.com/url-parse/-/url-parse-1.5.1.tgz#d5fa9890af8a5e1f274a2c98376510f6425f6e3b" integrity sha512-HOfCOUJt7iSYzEx/UqgtwKRMC6EU91NFhsCHMv9oM03VJcVo2Qrp8T8kI9D7amFf1cu+/3CEhgb3rF9zL7k85Q== @@ -16849,14 +15711,6 @@ url-parse@1.5.1, url-parse@^1.4.3: querystringify "^2.1.1" requires-port "^1.0.0" -url-parse@^1.2.0, url-parse@^1.4.4: - version "1.4.7" - resolved "https://registry.yarnpkg.com/url-parse/-/url-parse-1.4.7.tgz#a8a83535e8c00a316e403a5db4ac1b9b853ae278" - integrity sha512-d3uaVyzDB9tQoSXFvuSUNFibTd9zxd2bkVrDRvF5TmvWWQwqE4lgYJ5m+x1DbecWkw+LK4RNl2CU1hHuOKPVlg== - dependencies: - querystringify "^2.1.1" - requires-port "^1.0.0" - url@^0.11.0: version "0.11.0" resolved "https://registry.yarnpkg.com/url/-/url-0.11.0.tgz#3838e97cfc60521eb73c525a8e55bfdd9e2e28f1" @@ -16870,7 +15724,7 @@ urlgrey@0.4.4: resolved "https://registry.yarnpkg.com/urlgrey/-/urlgrey-0.4.4.tgz#892fe95960805e85519f1cd4389f2cb4cbb7652f" integrity sha1-iS/pWWCAXoVRnxzUOJ8stMu3ZS8= -use-callback-ref@^1.2.1: +use-callback-ref@^1.2.5: version "1.2.5" resolved "https://registry.yarnpkg.com/use-callback-ref/-/use-callback-ref-1.2.5.tgz#6115ed242cfbaed5915499c0a9842ca2912f38a5" integrity sha512-gN3vgMISAgacF7sqsLPByqoePooY3n2emTH59Ur5d/M8eg4WTWu1xp8i8DHjohftIyEx0S08RiYxbffr4j8Peg== @@ -16885,11 +15739,11 @@ use-deep-compare-effect@1.6.1: dequal "^2.0.2" use-memo-one@^1.1.1: - version "1.1.1" - resolved "https://registry.yarnpkg.com/use-memo-one/-/use-memo-one-1.1.1.tgz#39e6f08fe27e422a7d7b234b5f9056af313bd22c" - integrity sha512-oFfsyun+bP7RX8X2AskHNTxu+R3QdE/RC5IefMbqptmACAA/gfol1KDD5KRzPsGMa62sWxGZw+Ui43u6x4ddoQ== + version "1.1.2" + resolved "https://registry.yarnpkg.com/use-memo-one/-/use-memo-one-1.1.2.tgz#0c8203a329f76e040047a35a1197defe342fab20" + integrity sha512-u2qFKtxLsia/r8qG0ZKkbytbztzRb317XCkT7yP8wxL0tZ/CzK2G+WWie5vWvpyeP7+YoPIwbJoIHJ4Ba4k0oQ== -use-sidecar@^1.0.1: +use-sidecar@^1.0.5: version "1.0.5" resolved "https://registry.yarnpkg.com/use-sidecar/-/use-sidecar-1.0.5.tgz#ffff2a17c1df42e348624b699ba6e5c220527f2b" integrity sha512-k9jnrjYNwN6xYLj1iaGhonDghfvmeTmYjAiGvOr7clwKfPjMXJf4/HOr7oT5tJwYafgp2tG2l3eZEOfoELiMcA== @@ -16898,9 +15752,9 @@ use-sidecar@^1.0.1: tslib "^1.9.3" use-subscription@^1.0.0: - version "1.4.1" - resolved "https://registry.yarnpkg.com/use-subscription/-/use-subscription-1.4.1.tgz#edcbcc220f1adb2dd4fa0b2f61b6cc308e620069" - integrity sha512-7+IIwDG/4JICrWHL/Q/ZPK5yozEnvRm6vHImu0LKwQlmWGKeiF7mbAenLlK/cTNXrTtXHU/SFASQHzB6+oSJMQ== + version "1.5.1" + resolved "https://registry.yarnpkg.com/use-subscription/-/use-subscription-1.5.1.tgz#73501107f02fad84c6dd57965beb0b75c68c42d1" + integrity sha512-Xv2a1P/yReAjAbhylMfFplFKj9GssgTwN7RlcTxBujFQcloStWNDQdc4g4NRWH9xS4i/FDk04vQBptAXoF3VcA== dependencies: object-assign "^4.1.1" @@ -16935,14 +15789,15 @@ util.promisify@1.0.0: object.getownpropertydescriptors "^2.0.3" util.promisify@^1.0.0: - version "1.0.1" - resolved "https://registry.yarnpkg.com/util.promisify/-/util.promisify-1.0.1.tgz#6baf7774b80eeb0f7520d8b81d07982a59abbaee" - integrity sha512-g9JpC/3He3bm38zsLupWryXHoEcS22YHthuPQSJdMy6KNrzIRzWqcsHzD/WUnqe45whVou4VIsPew37DoXWNrA== + version "1.1.1" + resolved "https://registry.yarnpkg.com/util.promisify/-/util.promisify-1.1.1.tgz#77832f57ced2c9478174149cae9b96e9918cd54b" + integrity sha512-/s3UsZUrIfa6xDhr7zZhnE9SLQ5RIXyYfiVnMMyMDzOc8WhWN4Nbh36H842OyurKbCDAesZOJaVyvmSl6fhGQw== dependencies: + call-bind "^1.0.0" define-properties "^1.1.3" - es-abstract "^1.17.2" + for-each "^0.3.3" has-symbols "^1.0.1" - object.getownpropertydescriptors "^2.1.0" + object.getownpropertydescriptors "^2.1.1" util@0.10.3: version "0.10.3" @@ -16958,7 +15813,7 @@ util@^0.11.0: dependencies: inherits "2.0.3" -utila@^0.4.0, utila@~0.4: +utila@~0.4: version "0.4.0" resolved "https://registry.yarnpkg.com/utila/-/utila-0.4.0.tgz#8a16a05d445657a3aea5eecc5b12a4fa5379772c" integrity sha1-ihagXURWV6Oupe7MWxKk+lN5dyw= @@ -16989,9 +15844,9 @@ uuid@^8.0.0: integrity sha512-+NYs2QeMWy+GWFOEm9xnn6HCDp0l7QBD7ml8zLUmJ+93Q5NF0NocErnwkTkXVFNiX3/fpC6afS8Dhb/gz7R7eg== v8-compile-cache@^2.0.3: - version "2.1.0" - resolved "https://registry.yarnpkg.com/v8-compile-cache/-/v8-compile-cache-2.1.0.tgz#e14de37b31a6d194f5690d67efc4e7f6fc6ab30e" - integrity sha512-usZBT3PW+LOjM25wbqIlZwPeJV+3OSz3M1k1Ws8snlW39dZyYL9lOGC5FgPVHfk0jKmjiDV8Z0mIbVQPiwFs7g== + version "2.3.0" + resolved "https://registry.yarnpkg.com/v8-compile-cache/-/v8-compile-cache-2.3.0.tgz#2de19618c66dc247dcfb6f99338035d8245a2cee" + integrity sha512-l8lCEmLcLYZh4nbunNZvQCJc5pv7+RCwa8q/LdUx8u7lsWvPDKmpodJAJNwkAhJC//dFY48KuIEmjtd4RViDrA== v8-to-istanbul@^4.1.3: version "4.1.4" @@ -17197,9 +16052,9 @@ whatwg-encoding@^1.0.1, whatwg-encoding@^1.0.3, whatwg-encoding@^1.0.5: iconv-lite "0.4.24" whatwg-fetch@>=0.10.0, whatwg-fetch@^3.0.0: - version "3.0.0" - resolved "https://registry.yarnpkg.com/whatwg-fetch/-/whatwg-fetch-3.0.0.tgz#fc804e458cc460009b1a2b966bc8817d2578aefb" - integrity sha512-9GSJUgz1D4MfyKU7KRqwOjXCXTqWdFNvEr7eUBYchQiVc744mqK/MzXPNR2WsPkmkOa4ywfg8C2n8h+13Bey1Q== + version "3.6.2" + resolved "https://registry.yarnpkg.com/whatwg-fetch/-/whatwg-fetch-3.6.2.tgz#dced24f37f2624ed0281725d51d0e2e3fe677f8c" + integrity sha512-bJlen0FcuU/0EMLrdbJ7zOnW6ITZLrZMIarMUVmdKtsGvZna8vxKYaexICWPfZ8qwf9fzNq+UEIZrnSaApt6RA== whatwg-mimetype@^2.1.0, whatwg-mimetype@^2.2.0, whatwg-mimetype@^2.3.0: version "2.3.0" @@ -17269,9 +16124,9 @@ widest-line@^3.1.0: string-width "^4.0.0" wnpm-ci@*, wnpm-ci@^8.0.129: - version "8.0.129" - resolved "https://registry.yarnpkg.com/wnpm-ci/-/wnpm-ci-8.0.129.tgz#62ca2458424038ed330b9e22085500ebac041e6a" - integrity sha512-mvWBS9NTmQM/4oreW4LoqHMgc+hkGKdgB+PLraLClq0+AMYNu5LBY771Aqk/Ut7mrYan8ldVAMYW1ZWX295f3Q== + version "8.0.131" + resolved "https://registry.yarnpkg.com/wnpm-ci/-/wnpm-ci-8.0.131.tgz#06455f58ba13b6b52942091d49672cfdc265140b" + integrity sha512-mC+8NQOleSlx7KPj939eRXNkXzOOPL6R62nX/fb+6TbFd2TXXTdriPQxW9HlpjJ3bnp8nsaezBRlJovJwWSNPg== dependencies: execa "^2.0.3" fs-extra "^8.1.0" @@ -17357,15 +16212,6 @@ write-file-atomic@2.4.1: imurmurhash "^0.1.4" signal-exit "^3.0.2" -write-file-atomic@^1.2.0: - version "1.3.4" - resolved "https://registry.yarnpkg.com/write-file-atomic/-/write-file-atomic-1.3.4.tgz#f807a4f0b1d9e913ae7a48112e6cc3af1991b45f" - integrity sha1-+Aek8LHZ6ROuekgRLmzDrxmRtF8= - dependencies: - graceful-fs "^4.1.11" - imurmurhash "^0.1.4" - slide "^1.1.5" - write-file-atomic@^2.1.0: version "2.4.3" resolved "https://registry.yarnpkg.com/write-file-atomic/-/write-file-atomic-2.4.3.tgz#1fd2e9ae1df3e75b8d8c367443c692d4ca81f481" @@ -17410,21 +16256,16 @@ ws@^3.3.3: ultron "~1.1.0" ws@^5.2.0: - version "5.2.2" - resolved "https://registry.yarnpkg.com/ws/-/ws-5.2.2.tgz#dffef14866b8e8dc9133582514d1befaf96e980f" - integrity sha512-jaHFD6PFv6UgoIVda6qZllptQsMlDEJkTQcybzzXDYM1XO9Y8em691FGMPmM46WGyLU4z9KMgQN+qrux/nhlHA== + version "5.2.3" + resolved "https://registry.yarnpkg.com/ws/-/ws-5.2.3.tgz#05541053414921bc29c63bee14b8b0dd50b07b3d" + integrity sha512-jZArVERrMsKUatIdnLzqvcfydI85dvd/Fp1u/VOpfdDWQ4c9qWXe+VIeAbQ5FrDwciAkr+lzofXLz3Kuf26AOA== dependencies: async-limiter "~1.0.0" -ws@^7: - version "7.3.0" - resolved "https://registry.yarnpkg.com/ws/-/ws-7.3.0.tgz#4b2f7f219b3d3737bc1a2fbf145d825b94d38ffd" - integrity sha512-iFtXzngZVXPGgpTlP1rBqsUK82p9tKqsWRPg5L56egiljujJT3vGAYnHANvFxBieXrTFavhzhxW52jnaWV+w2w== - -ws@^7.0.0: - version "7.3.1" - resolved "https://registry.yarnpkg.com/ws/-/ws-7.3.1.tgz#d0547bf67f7ce4f12a72dfe31262c68d7dc551c8" - integrity sha512-D3RuNkynyHmEJIpD2qrgVkc9DQ23OrN/moAwZX4L8DfvszsJxpjQuUq3LMx6HoYji9fbIOBY18XWBsAux1ZZUA== +ws@^7, ws@^7.0.0: + version "7.5.3" + resolved "https://registry.yarnpkg.com/ws/-/ws-7.5.3.tgz#160835b63c7d97bfab418fc1b8a9fced2ac01a74" + integrity sha512-kQ/dHIzuLrS6Je9+uv81ueZomEwH0qVYstcAQ4/Z93K8zeko9gtAbttJWzoC5ukqXY1PpoouV3+VSOqEAFt5wg== xcode@^2.0.0: version "2.1.0" @@ -17435,11 +16276,11 @@ xcode@^2.0.0: uuid "^3.3.2" xhr@^2.0.1: - version "2.5.0" - resolved "https://registry.yarnpkg.com/xhr/-/xhr-2.5.0.tgz#bed8d1676d5ca36108667692b74b316c496e49dd" - integrity sha512-4nlO/14t3BNUZRXIXfXe+3N6w3s1KoxcJUUURctd64BLRe67E4gRwp4PjywtDY72fXpZ1y6Ch0VZQRY/gMPzzQ== + version "2.6.0" + resolved "https://registry.yarnpkg.com/xhr/-/xhr-2.6.0.tgz#b69d4395e792b4173d6b7df077f0fc5e4e2b249d" + integrity sha512-/eCGLb5rxjx5e3mF1A7s+pLlR6CGyqWN91fv1JgER5mVWg1MZmlhBvy9kjcsOdRk8RrIujotWyJamfyrp+WIcA== dependencies: - global "~4.3.0" + global "~4.4.0" is-function "^1.0.1" parse-headers "^2.0.0" xtend "^4.0.0" @@ -17484,21 +16325,16 @@ xmldoc@^1.1.2: dependencies: sax "^1.2.1" -xmldom@0.1.x: - version "0.1.31" - resolved "https://registry.yarnpkg.com/xmldom/-/xmldom-0.1.31.tgz#b76c9a1bd9f0a9737e5a72dc37231cf38375e2ff" - integrity sha512-yS2uJflVQs6n+CyjHoaBmVSqIDevTAWrzMmjG1Gc7h1qQ7uVozNhEPJAwZXWyGQ/Gafo3fCwrcaokezLPupVyQ== +xmldom@^0.5.0: + version "0.5.0" + resolved "https://registry.yarnpkg.com/xmldom/-/xmldom-0.5.0.tgz#193cb96b84aa3486127ea6272c4596354cb4962e" + integrity sha512-Foaj5FXVzgn7xFzsKeNIde9g6aFBxTPi37iwsno8QvApmtg7KYrr+OPyRHcJF7dud2a5nGRBXK3n0dL62Gf7PA== xpipe@^1.0.5: version "1.0.5" resolved "https://registry.yarnpkg.com/xpipe/-/xpipe-1.0.5.tgz#8dd8bf45fc3f7f55f0e054b878f43a62614dafdf" integrity sha1-jdi/Rfw/f1Xw4FS4ePQ6YmFNr98= -xregexp@4.1.1: - version "4.1.1" - resolved "https://registry.yarnpkg.com/xregexp/-/xregexp-4.1.1.tgz#eb8a032aa028d403f7b1b22c47a5f16c24b21d8d" - integrity sha512-QJ1gfSUV7kEOLfpKFCjBJRnfPErUzkNKFMso4kDSmGpp3x6ZgkyKf74inxI7PnnQCFYq5TqYJCd7DrgDN8Q05A== - xregexp@5.0.2: version "5.0.2" resolved "https://registry.yarnpkg.com/xregexp/-/xregexp-5.0.2.tgz#798aa7757836f39cdbdeeba3daf94d75f7a9dcc1" @@ -17506,12 +16342,12 @@ xregexp@5.0.2: dependencies: "@babel/runtime-corejs3" "^7.12.1" -xregexp@^4.2.4: - version "4.3.0" - resolved "https://registry.yarnpkg.com/xregexp/-/xregexp-4.3.0.tgz#7e92e73d9174a99a59743f67a4ce879a04b5ae50" - integrity sha512-7jXDIFXh5yJ/orPn4SXjuVrWWoi4Cr8jfV1eHv9CixKSbU+jY4mxfrBwAuDvupPNKpMUY+FeIqsVw/JLT9+B8g== +xregexp@^4.3.0: + version "4.4.1" + resolved "https://registry.yarnpkg.com/xregexp/-/xregexp-4.4.1.tgz#c84a88fa79e9ab18ca543959712094492185fe65" + integrity sha512-2u9HwfadaJaY9zHtRRnH6BY6CQVNQKkYm3oLtC9gJXXzfsbACg5X5e4EZZGVAH+YIfa+QA9lsFQTTe3HURF3ag== dependencies: - "@babel/runtime-corejs3" "^7.8.3" + "@babel/runtime-corejs3" "^7.12.1" xss-filters@^1.2.6: version "1.2.7" @@ -17524,19 +16360,19 @@ xtend@^4.0.0, xtend@~4.0.1: integrity sha512-LKYU1iAXJXUgAXn9URjiu+MWhyUXHsvfp7mcuYm9dSUKK0/CjtrUwFAxD82/mCWbtLsGjFIad0wIsod4zrTAEQ== y18n@^3.2.1: - version "3.2.1" - resolved "https://registry.yarnpkg.com/y18n/-/y18n-3.2.1.tgz#6d15fba884c08679c0d77e88e7759e811e07fa41" - integrity sha1-bRX7qITAhnnA136I53WegR4H+kE= + version "3.2.2" + resolved "https://registry.yarnpkg.com/y18n/-/y18n-3.2.2.tgz#85c901bd6470ce71fc4bb723ad209b70f7f28696" + integrity sha512-uGZHXkHnhF0XeeAPgnKfPv1bgKAYyVvmNL1xlKsPYZPaIHxGti2hHqvOCQv71XMsLxu1QjergkqogUnms5D3YQ== y18n@^4.0.0: - version "4.0.0" - resolved "https://registry.yarnpkg.com/y18n/-/y18n-4.0.0.tgz#95ef94f85ecc81d007c264e190a120f0a3c8566b" - integrity sha512-r9S/ZyXu/Xu9q1tYlpsLIsa3EeLXXk0VwlxqTcFRfg9EhMW+17kbt9G0NrgCmhGb5vT2hyhJZLfDGx+7+5Uj/w== + version "4.0.3" + resolved "https://registry.yarnpkg.com/y18n/-/y18n-4.0.3.tgz#b5f259c82cd6e336921efd7bfd8bf560de9eeedf" + integrity sha512-JKhqTOwSrqNA1NY5lSztJ1GrBiUodLMmIZuLiDaMRJ+itFd+ABVE8XBjOvIWL+rSqNDC74LCSFmlb/U4UZ4hJQ== y18n@^5.0.5: - version "5.0.7" - resolved "https://registry.yarnpkg.com/y18n/-/y18n-5.0.7.tgz#0c514aba53fc40e2db911aeb8b51566a3374efe7" - integrity sha512-oOhslryvNcA1lB9WYr+M6TMyLkLg81Dgmyb48ZDU0lvR+5bmNDTMz7iobM1QXooaLhbbrcHrlNaABhI6Vo6StQ== + version "5.0.8" + resolved "https://registry.yarnpkg.com/y18n/-/y18n-5.0.8.tgz#7f4934d0f7ca8c56f95314939ddcd2dd91ce1d55" + integrity sha512-0pfFzegeDWJHJIAmTLRP2DwHjdF5s7jo9tuztdQxAhINCdvS+3nGINqPd00AphqJR/0LhANUS6/+7SCb98YOfA== yallist@^2.1.2: version "2.1.2" @@ -17554,9 +16390,9 @@ yallist@^4.0.0: integrity sha512-3wdGidZyq5PB084XLES5TpOSRA3wjXAlIWMhum2kRcv/41Sn2emQ0dycQW4uZXLejwKvg6EsvbdlVL+FYEct7A== yaml@^1.7.2: - version "1.10.0" - resolved "https://registry.yarnpkg.com/yaml/-/yaml-1.10.0.tgz#3b593add944876077d4d683fee01081bd9fff31e" - integrity sha512-yr2icI4glYaNG+KWONODapy2/jDdMSDnrONSjblABjD9B4Z5LgiircSt8m8sRZFNi08kG9Sm0uSHtEmP3zaEGg== + version "1.10.2" + resolved "https://registry.yarnpkg.com/yaml/-/yaml-1.10.2.tgz#2301c5ffbf12b467de8da2333a459e29e7920e4b" + integrity sha512-r3vXyErRCYJ7wg28yvBY5VSoAF8ZvlcW9/BwUzEtUsjvX/DKs24dIkuwjtuprwJJHsbyUbLApepYTR1BN4uHrg== yargs-parser@20.2.4: version "20.2.4" @@ -17564,9 +16400,9 @@ yargs-parser@20.2.4: integrity sha512-WOkpgNhPTlE73h4VFAFsOnomJVaovO8VqLDzy5saChRBFQFBoMYirowyW+Q9HB4HFF4Z7VZTiG3iSzJJA29yRA== yargs-parser@^15.0.1: - version "15.0.1" - resolved "https://registry.yarnpkg.com/yargs-parser/-/yargs-parser-15.0.1.tgz#54786af40b820dcb2fb8025b11b4d659d76323b3" - integrity sha512-0OAMV2mAZQrs3FkNpDQcBk1x5HXb8X4twADss4S0Iuk+2dGnLOE/fRHrsYm542GduMveyA77OF4wrNJuanRCWw== + version "15.0.3" + resolved "https://registry.yarnpkg.com/yargs-parser/-/yargs-parser-15.0.3.tgz#316e263d5febe8b38eef61ac092b33dfcc9b1115" + integrity sha512-/MVEVjTXy/cGAjdtQf8dW3V9b97bPN7rNn8ETj6BmAQL7ibC7O1Q9SPJbGjgh3SlwoBNXMzj/ZGIj8mBgl12YA== dependencies: camelcase "^5.0.0" decamelize "^1.2.0" @@ -17580,9 +16416,9 @@ yargs-parser@^18.1.2: decamelize "^1.2.0" yargs-parser@^20.2.2: - version "20.2.7" - resolved "https://registry.yarnpkg.com/yargs-parser/-/yargs-parser-20.2.7.tgz#61df85c113edfb5a7a4e36eb8aa60ef423cbc90a" - integrity sha512-FiNkvbeHzB/syOjIUxFDCnhSfzAL8R5vs40MgLFBorXACCOAEaWu0gRZl14vG8MR9AOJIZbmkjhusqBYZ3HTHw== + version "20.2.9" + resolved "https://registry.yarnpkg.com/yargs-parser/-/yargs-parser-20.2.9.tgz#2eb7dc3b0289718fc295f362753845c41a0c94ee" + integrity sha512-y11nGElTIV+CT3Zv9t7VKl+Q3hTQoT9a1Qzezhhl6Rp21gJ/IVTW7Z3y9EWXhuUBC2Shnf+DX0antecpAwSP8w== yargs-parser@^9.0.2: version "9.0.2" @@ -17650,12 +16486,12 @@ yargs@^14.2.0: yargs-parser "^15.0.1" yargs@^15.1.0, yargs@^15.3.1: - version "15.4.0" - resolved "https://registry.yarnpkg.com/yargs/-/yargs-15.4.0.tgz#53949fb768309bac1843de9b17b80051e9805ec2" - integrity sha512-D3fRFnZwLWp8jVAAhPZBsmeIHY8tTsb8ItV9KaAaopmC6wde2u6Yw29JBIZHXw14kgkRnYmDgmQU4FVMDlIsWw== + version "15.4.1" + resolved "https://registry.yarnpkg.com/yargs/-/yargs-15.4.1.tgz#0d87a16de01aee9d8bec2bfbf74f67851730f4f8" + integrity sha512-aePbxDmcYW++PaqBsJ+HYUFwCdv4LVvdnhBy78E57PIor8/OVvhMrADFFEDh8DHDFRv/O9i3lPhsENjO7QX0+A== dependencies: cliui "^6.0.0" - decamelize "^3.2.0" + decamelize "^1.2.0" find-up "^4.1.0" get-caller-file "^2.0.1" require-directory "^2.1.1" From d5c2decfb9e5358555593a8d504ef465dc04baf7 Mon Sep 17 00:00:00 2001 From: AlexAlexandre Date: Fri, 23 Jul 2021 16:27:52 -0300 Subject: [PATCH 33/90] [IMPROVE] - migrating the Status container --- app/constants/colors.ts | 2 +- .../Status/{Status.js => Status.tsx} | 21 +++++++------------ app/containers/Status/index.js | 19 ----------------- app/containers/Status/index.tsx | 18 ++++++++++++++++ 4 files changed, 26 insertions(+), 34 deletions(-) rename app/containers/Status/{Status.js => Status.tsx} (68%) delete mode 100644 app/containers/Status/index.js create mode 100644 app/containers/Status/index.tsx diff --git a/app/constants/colors.ts b/app/constants/colors.ts index 53b723cbff..ab358679ca 100644 --- a/app/constants/colors.ts +++ b/app/constants/colors.ts @@ -1,4 +1,4 @@ -export const STATUS_COLORS = { +export const STATUS_COLORS: any = { online: '#2de0a5', busy: '#f5455c', away: '#ffd21f', diff --git a/app/containers/Status/Status.js b/app/containers/Status/Status.tsx similarity index 68% rename from app/containers/Status/Status.js rename to app/containers/Status/Status.tsx index 991402b35d..8aab83600d 100644 --- a/app/containers/Status/Status.js +++ b/app/containers/Status/Status.tsx @@ -1,11 +1,14 @@ import React from 'react'; -import PropTypes from 'prop-types'; import { CustomIcon } from '../../lib/Icons'; import { STATUS_COLORS } from '../../constants/colors'; -const Status = React.memo(({ - status, size, style, ...props -}) => { +interface IStatus { + status: string; + size: number; + style: any; +} + +const Status = React.memo(({ status, size, style, ...props }: IStatus) => { const name = `status-${ status }`; const isNameValid = CustomIcon.hasIcon(name); const iconName = isNameValid ? name : 'status-offline'; @@ -24,14 +27,4 @@ const Status = React.memo(({ ); }); -Status.propTypes = { - status: PropTypes.string, - size: PropTypes.number, - style: PropTypes.any -}; -Status.defaultProps = { - status: 'offline', - size: 32 -}; - export default Status; diff --git a/app/containers/Status/index.js b/app/containers/Status/index.js deleted file mode 100644 index 7b389da2cb..0000000000 --- a/app/containers/Status/index.js +++ /dev/null @@ -1,19 +0,0 @@ -import React, { memo } from 'react'; -import PropTypes from 'prop-types'; -import { connect } from 'react-redux'; - -import Status from './Status'; - -const StatusContainer = memo(({ style, size = 32, status }) => ); - -StatusContainer.propTypes = { - style: PropTypes.any, - size: PropTypes.number, - status: PropTypes.string -}; - -const mapStateToProps = (state, ownProps) => ({ - status: state.meteor.connected ? (state.activeUsers[ownProps.id] && state.activeUsers[ownProps.id].status) : 'loading' -}); - -export default connect(mapStateToProps)(StatusContainer); diff --git a/app/containers/Status/index.tsx b/app/containers/Status/index.tsx new file mode 100644 index 0000000000..6d49a85207 --- /dev/null +++ b/app/containers/Status/index.tsx @@ -0,0 +1,18 @@ +import React, { memo } from 'react'; +import { connect } from 'react-redux'; + +import Status from './Status'; + +interface IStatusContainer { + style: any; + size: number; + status: string; +} + +const StatusContainer = memo(({ style, size = 32, status }: IStatusContainer) => ); + +const mapStateToProps = (state: any, ownProps: any) => ({ + status: state.meteor.connected ? (state.activeUsers[ownProps.id] && state.activeUsers[ownProps.id].status) : 'loading' +}); + +export default connect(mapStateToProps)(StatusContainer); From e8b58323c7a2937fd5131047d47a0418173badb5 Mon Sep 17 00:00:00 2001 From: AlexAlexandre Date: Fri, 23 Jul 2021 16:33:40 -0300 Subject: [PATCH 34/90] [IMPROVE] - migrating the TwoFactor container --- app/containers/Button/index.tsx | 9 ++++---- .../TwoFactor/{index.js => index.tsx} | 23 ++++++++++--------- .../TwoFactor/{styles.js => styles.ts} | 0 3 files changed, 17 insertions(+), 15 deletions(-) rename app/containers/TwoFactor/{index.js => index.tsx} (89%) rename app/containers/TwoFactor/{styles.js => styles.ts} (100%) diff --git a/app/containers/Button/index.tsx b/app/containers/Button/index.tsx index 55f40c2072..9faa12648b 100644 --- a/app/containers/Button/index.tsx +++ b/app/containers/Button/index.tsx @@ -6,7 +6,7 @@ import { themes } from '../../constants/colors'; import sharedStyles from '../../views/Styles'; import ActivityIndicator from '../ActivityIndicator'; -interface IButton { +interface IButtonProps { title: string; type: string onPress(): void; @@ -17,6 +17,7 @@ interface IButton { color: string fontSize: any style: any + testID: string; } const styles = StyleSheet.create({ @@ -37,7 +38,7 @@ const styles = StyleSheet.create({ } }); -export default class Button extends React.PureComponent { +export default class Button extends React.PureComponent, any> { render() { const { @@ -45,7 +46,7 @@ export default class Button extends React.PureComponent { } = this.props; const isPrimary = type === 'primary'; - let textColor = isPrimary ? themes[theme].buttonText : themes[theme].bodyText; + let textColor = isPrimary ? themes[theme!].buttonText : themes[theme!].bodyText; if (color) { textColor = color; } @@ -58,7 +59,7 @@ export default class Button extends React.PureComponent { styles.container, backgroundColor ? { backgroundColor } - : { backgroundColor: isPrimary ? themes[theme].actionTintColor : themes[theme].backgroundColor }, + : { backgroundColor: isPrimary ? themes[theme!].actionTintColor : themes[theme!].backgroundColor }, disabled && styles.disabled, style ]} diff --git a/app/containers/TwoFactor/index.js b/app/containers/TwoFactor/index.tsx similarity index 89% rename from app/containers/TwoFactor/index.js rename to app/containers/TwoFactor/index.tsx index deb5c25db1..7a873b5779 100644 --- a/app/containers/TwoFactor/index.js +++ b/app/containers/TwoFactor/index.tsx @@ -1,7 +1,6 @@ import React, { useEffect, useState } from 'react'; import { View, Text, InteractionManager } from 'react-native'; import isEmpty from 'lodash/isEmpty'; -import PropTypes from 'prop-types'; import { sha256 } from 'js-sha256'; import Modal from 'react-native-modal'; import useDeepCompareEffect from 'use-deep-compare-effect'; @@ -19,7 +18,12 @@ import styles from './styles'; export const TWO_FACTOR = 'TWO_FACTOR'; -const methods = { +interface ITwoFactor { + theme: string; + isMasterDetail: boolean; +} + +const methods: any = { totp: { text: 'Open_your_authentication_app_and_enter_the_code', keyboardType: 'numeric' @@ -36,9 +40,9 @@ const methods = { } }; -const TwoFactor = React.memo(({ theme, isMasterDetail }) => { +const TwoFactor = React.memo(({ theme, isMasterDetail }: ITwoFactor) => { const [visible, setVisible] = useState(false); - const [data, setData] = useState({}); + const [data, setData] = useState({}); const [code, setCode] = useState(''); const method = methods[data.method]; @@ -55,7 +59,7 @@ const TwoFactor = React.memo(({ theme, isMasterDetail }) => { } }, [data]); - const showTwoFactor = args => setData(args); + const showTwoFactor = (args: any) => setData(args); useEffect(() => { const listener = EventEmitter.addEventListener(TWO_FACTOR, showTwoFactor); @@ -86,6 +90,7 @@ const TwoFactor = React.memo(({ theme, isMasterDetail }) => { const color = themes[theme].titleText; return ( { InteractionManager.runAfterInteractions(() => e?.getNativeRef()?.focus())} + inputRef={(e: any) => InteractionManager.runAfterInteractions(() => e?.getNativeRef()?.focus())} returnKeyType='send' autoCapitalize='none' onChangeText={setCode} @@ -133,12 +138,8 @@ const TwoFactor = React.memo(({ theme, isMasterDetail }) => { ); }); -TwoFactor.propTypes = { - theme: PropTypes.string, - isMasterDetail: PropTypes.bool -}; -const mapStateToProps = state => ({ +const mapStateToProps = (state: any) => ({ isMasterDetail: state.app.isMasterDetail }); diff --git a/app/containers/TwoFactor/styles.js b/app/containers/TwoFactor/styles.ts similarity index 100% rename from app/containers/TwoFactor/styles.js rename to app/containers/TwoFactor/styles.ts From 60f659618dbd9682b6c7278a1b5cd507c1c39bda Mon Sep 17 00:00:00 2001 From: AlexAlexandre Date: Mon, 26 Jul 2021 10:42:31 -0300 Subject: [PATCH 35/90] [IMPROVE] - migrating the RoomHeader container --- .../{RoomHeader.js => RoomHeader.tsx} | 93 +++++++++---------- .../RoomHeader/{index.js => index.tsx} | 53 ++++++----- 2 files changed, 69 insertions(+), 77 deletions(-) rename app/containers/RoomHeader/{RoomHeader.js => RoomHeader.tsx} (74%) rename app/containers/RoomHeader/{index.js => index.tsx} (77%) diff --git a/app/containers/RoomHeader/RoomHeader.js b/app/containers/RoomHeader/RoomHeader.tsx similarity index 74% rename from app/containers/RoomHeader/RoomHeader.js rename to app/containers/RoomHeader/RoomHeader.tsx index 0f1ee472e9..3faff5a211 100644 --- a/app/containers/RoomHeader/RoomHeader.js +++ b/app/containers/RoomHeader/RoomHeader.tsx @@ -1,8 +1,6 @@ import React, { useCallback } from 'react'; import PropTypes from 'prop-types'; -import { - View, Text, StyleSheet, TouchableOpacity -} from 'react-native'; +import { View, Text, StyleSheet, TouchableOpacity } from 'react-native'; import I18n from '../../i18n'; import sharedStyles from '../../views/Styles'; @@ -17,7 +15,7 @@ const HIT_SLOP = { const TITLE_SIZE = 16; const SUBTITLE_SIZE = 12; -const getSubTitleSize = scale => SUBTITLE_SIZE * scale; +const getSubTitleSize = (scale: number) => SUBTITLE_SIZE * scale; const styles = StyleSheet.create({ container: { @@ -41,9 +39,42 @@ const styles = StyleSheet.create({ } }); -const SubTitle = React.memo(({ - usersTyping, subtitle, renderFunc, theme, scale -}) => { +type TRoomHeaderSubTitle = { + usersTyping: []; + theme: string; + subtitle: string; + renderFunc: any; + scale: number; +}; + +type TRoomHeaderHeaderTitle = { + title: string; + tmid: string; + prid: string; + scale: number; + theme: string; + testID: string; +}; + +interface IRoomHeader { + title: string; + subtitle: string; + type: string; + width: number; + height: number; + prid: string; + tmid: string; + teamMain: boolean; + status: string; + theme: string; + usersTyping: []; + isGroupChat: boolean; + parentTitle: string; + onPress: Function; + testID: string; +} + +const SubTitle = React.memo(({ usersTyping, subtitle, renderFunc, theme, scale }: TRoomHeaderSubTitle) => { const fontSize = getSubTitleSize(scale); // typing if (usersTyping.length) { @@ -69,6 +100,7 @@ const SubTitle = React.memo(({ // subtitle if (subtitle) { return ( + // @ts-ignore { +const HeaderTitle = React.memo(({ title, tmid, prid, scale, theme, testID }: TRoomHeaderHeaderTitle) => { const titleStyle = { fontSize: TITLE_SIZE * scale, color: themes[theme].headerTitleColor }; if (!tmid && !prid) { return ( @@ -107,6 +129,7 @@ const HeaderTitle = React.memo(({ } return ( + // @ts-ignore { +}: IRoomHeader) => { const portrait = height > width; let scale = 1; @@ -157,6 +171,7 @@ const Header = React.memo(({ accessibilityLabel={title} onPress={handleOnPress} style={styles.container} + // @ts-ignore disabled={tmid} hitSlop={HIT_SLOP} > @@ -182,26 +197,4 @@ const Header = React.memo(({ ); }); -Header.propTypes = { - title: PropTypes.string.isRequired, - subtitle: PropTypes.string, - type: PropTypes.string.isRequired, - width: PropTypes.number.isRequired, - height: PropTypes.number.isRequired, - prid: PropTypes.string, - tmid: PropTypes.string, - teamMain: PropTypes.bool, - status: PropTypes.string, - theme: PropTypes.string, - usersTyping: PropTypes.array, - isGroupChat: PropTypes.bool, - parentTitle: PropTypes.string, - onPress: PropTypes.func, - testID: PropTypes.string -}; - -Header.defaultProps = { - usersTyping: [] -}; - export default withTheme(Header); diff --git a/app/containers/RoomHeader/index.js b/app/containers/RoomHeader/index.tsx similarity index 77% rename from app/containers/RoomHeader/index.js rename to app/containers/RoomHeader/index.tsx index 7d4d22de87..c836323789 100644 --- a/app/containers/RoomHeader/index.js +++ b/app/containers/RoomHeader/index.tsx @@ -7,30 +7,31 @@ import RoomHeader from './RoomHeader'; import { withDimensions } from '../../dimensions'; import I18n from '../../i18n'; -class RoomHeaderContainer extends Component { - static propTypes = { - title: PropTypes.string, - subtitle: PropTypes.string, - type: PropTypes.string, - prid: PropTypes.string, - tmid: PropTypes.string, - teamMain: PropTypes.bool, - usersTyping: PropTypes.string, - status: PropTypes.string, - statusText: PropTypes.string, - connecting: PropTypes.bool, - connected: PropTypes.bool, - roomUserId: PropTypes.string, - widthOffset: PropTypes.number, - onPress: PropTypes.func, - width: PropTypes.number, - height: PropTypes.number, - parentTitle: PropTypes.string, - isGroupChat: PropTypes.bool, - testID: PropTypes.string - }; +interface IRoomHeaderContainerProps { + title: string; + subtitle: string; + type: string; + prid: string; + tmid: string; + teamMain: boolean; + usersTyping: string; + status: string; + statusText: string; + connecting: boolean; + connected: boolean; + roomUserId: string; + widthOffset: number; + onPress(): void; + width: number; + height: number; + parentTitle: string; + isGroupChat: boolean; + testID: string; +} + +class RoomHeaderContainer extends Component { - shouldComponentUpdate(nextProps) { + shouldComponentUpdate(nextProps: IRoomHeaderContainerProps) { const { type, title, subtitle, status, statusText, connecting, connected, onPress, usersTyping, width, height, teamMain } = this.props; @@ -129,12 +130,10 @@ class RoomHeaderContainer extends Component { } } -const mapStateToProps = (state, ownProps) => { +const mapStateToProps = (state: any, ownProps: any) => { let statusText; let status = 'offline'; - const { - roomUserId, type, visitor = {}, tmid - } = ownProps; + const { roomUserId, type, visitor = {}, tmid } = ownProps; if (state.meteor.connected) { if ((type === 'd' || (tmid && roomUserId)) && state.activeUsers[roomUserId]) { From 369b3f2ef632daaba2a4c817d131eb5ebe28ca94 Mon Sep 17 00:00:00 2001 From: AlexAlexandre Date: Mon, 26 Jul 2021 14:35:37 -0300 Subject: [PATCH 36/90] [IMPROVE] - migrating the Passcode container --- app/containers/Passcode/Base/Button.js | 47 ------------------- app/containers/Passcode/Base/Button.tsx | 44 +++++++++++++++++ .../Passcode/Base/{Dots.js => Dots.tsx} | 15 +++--- .../Base/{LockIcon.js => LockIcon.tsx} | 7 +-- .../Passcode/Base/{Locked.js => Locked.tsx} | 31 ++++++------ .../Base/{Subtitle.js => Subtitle.tsx} | 13 +++-- .../Passcode/Base/{Title.js => Title.tsx} | 13 +++-- .../Passcode/Base/{index.js => index.tsx} | 47 +++++++++---------- .../Passcode/Base/{styles.js => styles.ts} | 0 .../{PasscodeChoose.js => PasscodeChoose.tsx} | 27 ++++++----- .../{PasscodeEnter.js => PasscodeEnter.tsx} | 25 +++++----- .../Passcode/{constants.js => constants.ts} | 2 +- .../Passcode/{index.js => index.ts} | 0 .../Passcode/{utils.js => utils.ts} | 4 +- 14 files changed, 131 insertions(+), 144 deletions(-) delete mode 100644 app/containers/Passcode/Base/Button.js create mode 100644 app/containers/Passcode/Base/Button.tsx rename app/containers/Passcode/Base/{Dots.js => Dots.tsx} (85%) rename app/containers/Passcode/Base/{LockIcon.js => LockIcon.tsx} (76%) rename app/containers/Passcode/Base/{Locked.js => Locked.tsx} (75%) rename app/containers/Passcode/Base/{Subtitle.js => Subtitle.tsx} (71%) rename app/containers/Passcode/Base/{Title.js => Title.tsx} (71%) rename app/containers/Passcode/Base/{index.js => index.tsx} (81%) rename app/containers/Passcode/Base/{styles.js => styles.ts} (100%) rename app/containers/Passcode/{PasscodeChoose.js => PasscodeChoose.tsx} (74%) rename app/containers/Passcode/{PasscodeEnter.js => PasscodeEnter.tsx} (87%) rename app/containers/Passcode/{constants.js => constants.ts} (74%) rename app/containers/Passcode/{index.js => index.ts} (100%) rename app/containers/Passcode/{utils.js => utils.ts} (81%) diff --git a/app/containers/Passcode/Base/Button.js b/app/containers/Passcode/Base/Button.js deleted file mode 100644 index 7826ed5fe9..0000000000 --- a/app/containers/Passcode/Base/Button.js +++ /dev/null @@ -1,47 +0,0 @@ -import React from 'react'; -import { Text } from 'react-native'; -import PropTypes from 'prop-types'; - -import styles from './styles'; -import { themes } from '../../../constants/colors'; -import Touch from '../../../utils/touch'; -import { CustomIcon } from '../../../lib/Icons'; - -const Button = React.memo(({ - text, disabled, theme, onPress, icon -}) => { - const press = () => onPress && onPress(text); - - return ( - - { - icon - ? ( - - ) - : ( - - {text} - - ) - } - - ); -}); - -Button.propTypes = { - text: PropTypes.string, - icon: PropTypes.string, - theme: PropTypes.string, - disabled: PropTypes.bool, - onPress: PropTypes.func -}; - -export default Button; diff --git a/app/containers/Passcode/Base/Button.tsx b/app/containers/Passcode/Base/Button.tsx new file mode 100644 index 0000000000..53f41e3830 --- /dev/null +++ b/app/containers/Passcode/Base/Button.tsx @@ -0,0 +1,44 @@ +import React from 'react'; +import { Text } from 'react-native'; + +import styles from './styles'; +import { themes } from '../../../constants/colors'; +import Touch from '../../../utils/touch'; +import { CustomIcon } from '../../../lib/Icons'; + +interface IPasscodeButton { + text: string; + icon: string; + theme: string; + disabled: boolean; + onPress({}?): void; +} + +const Button = React.memo(({ text, disabled, theme, onPress, icon }: Partial) => { + const press = () => onPress && onPress(text!); + + return ( + + { + icon + ? ( + + ) + : ( + + {text} + + ) + } + + ); +}); + +export default Button; diff --git a/app/containers/Passcode/Base/Dots.js b/app/containers/Passcode/Base/Dots.tsx similarity index 85% rename from app/containers/Passcode/Base/Dots.js rename to app/containers/Passcode/Base/Dots.tsx index 9d9f4a910a..415d783c3f 100644 --- a/app/containers/Passcode/Base/Dots.js +++ b/app/containers/Passcode/Base/Dots.tsx @@ -1,7 +1,6 @@ import React from 'react'; import { View } from 'react-native'; import range from 'lodash/range'; -import PropTypes from 'prop-types'; import styles from './styles'; import { themes } from '../../../constants/colors'; @@ -9,7 +8,13 @@ import { themes } from '../../../constants/colors'; const SIZE_EMPTY = 12; const SIZE_FULL = 16; -const Dots = React.memo(({ passcode, theme, length }) => ( +interface IPasscodeDots { + passcode: string; + theme: string; + length: number; +} + +const Dots = React.memo(({ passcode, theme, length }: IPasscodeDots) => ( {range(length).map((val) => { const lengthSup = (passcode.length >= val + 1); @@ -42,10 +47,4 @@ const Dots = React.memo(({ passcode, theme, length }) => ( )); -Dots.propTypes = { - passcode: PropTypes.string, - theme: PropTypes.string, - length: PropTypes.string -}; - export default Dots; diff --git a/app/containers/Passcode/Base/LockIcon.js b/app/containers/Passcode/Base/LockIcon.tsx similarity index 76% rename from app/containers/Passcode/Base/LockIcon.js rename to app/containers/Passcode/Base/LockIcon.tsx index 133485cbac..17723f3db3 100644 --- a/app/containers/Passcode/Base/LockIcon.js +++ b/app/containers/Passcode/Base/LockIcon.tsx @@ -1,13 +1,12 @@ import React from 'react'; import { View } from 'react-native'; import { Row } from 'react-native-easy-grid'; -import PropTypes from 'prop-types'; import styles from './styles'; import { themes } from '../../../constants/colors'; import { CustomIcon } from '../../../lib/Icons'; -const LockIcon = React.memo(({ theme }) => ( +const LockIcon = React.memo(({ theme }: {theme: string}) => ( @@ -15,8 +14,4 @@ const LockIcon = React.memo(({ theme }) => ( )); -LockIcon.propTypes = { - theme: PropTypes.string -}; - export default LockIcon; diff --git a/app/containers/Passcode/Base/Locked.js b/app/containers/Passcode/Base/Locked.tsx similarity index 75% rename from app/containers/Passcode/Base/Locked.js rename to app/containers/Passcode/Base/Locked.tsx index 8371c72878..5544ee21df 100644 --- a/app/containers/Passcode/Base/Locked.js +++ b/app/containers/Passcode/Base/Locked.tsx @@ -1,5 +1,4 @@ import React, { useEffect, useState } from 'react'; -import PropTypes from 'prop-types'; import { Grid } from 'react-native-easy-grid'; import { themes } from '../../../constants/colors'; @@ -12,7 +11,18 @@ import Title from './Title'; import Subtitle from './Subtitle'; import LockIcon from './LockIcon'; -const Timer = React.memo(({ time, theme, setStatus }) => { +type TPasscodeTimer = { + time: string; + theme: string; + setStatus: Function; +}; + +interface IPasscodeLocked { + theme: string; + setStatus: Function; +} + +const Timer = React.memo(({ time, theme, setStatus }: TPasscodeTimer) => { const calcTimeLeft = () => { const diff = getDiff(time); if (diff > 0) { @@ -20,7 +30,7 @@ const Timer = React.memo(({ time, theme, setStatus }) => { } }; - const [timeLeft, setTimeLeft] = useState(calcTimeLeft()); + const [timeLeft, setTimeLeft] = useState(calcTimeLeft()); useEffect(() => { setTimeout(() => { @@ -39,8 +49,8 @@ const Timer = React.memo(({ time, theme, setStatus }) => { return ; }); -const Locked = React.memo(({ theme, setStatus }) => { - const [lockedUntil, setLockedUntil] = useState(null); +const Locked = React.memo(({ theme, setStatus }: IPasscodeLocked) => { + const [lockedUntil, setLockedUntil] = useState(null); const readItemFromStorage = async() => { const l = await getLockedUntil(); @@ -60,15 +70,4 @@ const Locked = React.memo(({ theme, setStatus }) => { ); }); -Locked.propTypes = { - theme: PropTypes.string, - setStatus: PropTypes.func -}; - -Timer.propTypes = { - time: PropTypes.string, - theme: PropTypes.string, - setStatus: PropTypes.func -}; - export default Locked; diff --git a/app/containers/Passcode/Base/Subtitle.js b/app/containers/Passcode/Base/Subtitle.tsx similarity index 71% rename from app/containers/Passcode/Base/Subtitle.js rename to app/containers/Passcode/Base/Subtitle.tsx index 2ac69fee7b..0959d6a4d7 100644 --- a/app/containers/Passcode/Base/Subtitle.js +++ b/app/containers/Passcode/Base/Subtitle.tsx @@ -1,12 +1,16 @@ import React from 'react'; import { View, Text } from 'react-native'; import { Row } from 'react-native-easy-grid'; -import PropTypes from 'prop-types'; import styles from './styles'; import { themes } from '../../../constants/colors'; -const Subtitle = React.memo(({ text, theme }) => ( +interface IPasscodeSubtitle { + text: string; + theme: string; +} + +const Subtitle = React.memo(({ text, theme }: IPasscodeSubtitle) => ( {text} @@ -14,9 +18,4 @@ const Subtitle = React.memo(({ text, theme }) => ( )); -Subtitle.propTypes = { - text: PropTypes.string, - theme: PropTypes.string -}; - export default Subtitle; diff --git a/app/containers/Passcode/Base/Title.js b/app/containers/Passcode/Base/Title.tsx similarity index 71% rename from app/containers/Passcode/Base/Title.js rename to app/containers/Passcode/Base/Title.tsx index 0aa96d757c..fdb73b4a4b 100644 --- a/app/containers/Passcode/Base/Title.js +++ b/app/containers/Passcode/Base/Title.tsx @@ -1,12 +1,16 @@ import React from 'react'; import { View, Text } from 'react-native'; import { Row } from 'react-native-easy-grid'; -import PropTypes from 'prop-types'; import styles from './styles'; import { themes } from '../../../constants/colors'; -const Title = React.memo(({ text, theme }) => ( +interface IPasscodeTitle { + text: string; + theme: string; +} + +const Title = React.memo(({ text, theme }: IPasscodeTitle) => ( {text} @@ -14,9 +18,4 @@ const Title = React.memo(({ text, theme }) => ( )); -Title.propTypes = { - text: PropTypes.string, - theme: PropTypes.string -}; - export default Title; diff --git a/app/containers/Passcode/Base/index.js b/app/containers/Passcode/Base/index.tsx similarity index 81% rename from app/containers/Passcode/Base/index.js rename to app/containers/Passcode/Base/index.tsx index 6780369754..b861a4f08d 100644 --- a/app/containers/Passcode/Base/index.js +++ b/app/containers/Passcode/Base/index.tsx @@ -1,9 +1,6 @@ -import React, { - useState, forwardRef, useImperativeHandle, useRef -} from 'react'; +import React, { useState, forwardRef, useImperativeHandle, useRef } from 'react'; import { Col, Row, Grid } from 'react-native-easy-grid'; import range from 'lodash/range'; -import PropTypes from 'prop-types'; import * as Animatable from 'react-native-animatable'; import * as Haptics from 'expo-haptics'; @@ -17,11 +14,23 @@ import LockIcon from './LockIcon'; import Title from './Title'; import Subtitle from './Subtitle'; +interface IPasscodeBase { + theme: string; + type: string; + previousPasscode: string; + title: string; + subtitle: string; + showBiometry: string; + onEndProcess: Function; + onError: Function; + onBiometryPress(): void; +} + const Base = forwardRef(({ theme, type, onEndProcess, previousPasscode, title, subtitle, onError, showBiometry, onBiometryPress -}, ref) => { - const rootRef = useRef(); - const dotsRef = useRef(); +}: IPasscodeBase, ref) => { + const rootRef = useRef(); + const dotsRef = useRef(); const [passcode, setPasscode] = useState(''); const clearPasscode = () => setPasscode(''); @@ -32,11 +41,11 @@ const Base = forwardRef(({ Haptics.notificationAsync(Haptics.NotificationFeedbackType.Error); }; - const animate = (animation, duration = 500) => { + const animate = (animation: string, duration = 500) => { rootRef?.current?.[animation](duration); }; - const onPressNumber = text => setPasscode((p) => { + const onPressNumber = (text: string) => setPasscode((p) => { const currentPasscode = p + text; if (currentPasscode?.length === PASSCODE_LENGTH) { switch (type) { @@ -77,28 +86,28 @@ const Base = forwardRef(({ - <Subtitle text={subtitle} theme={theme} /> + <Subtitle text={subtitle!} theme={theme} /> <Row style={styles.row}> <Animatable.View ref={dotsRef}> <Dots passcode={passcode} theme={theme} length={PASSCODE_LENGTH} /> </Animatable.View> </Row> <Row style={[styles.row, styles.buttonRow]}> - {range(1, 4).map(i => ( + {range(1, 4).map((i: any) => ( <Col key={i} style={styles.colButton}> <Button text={i} theme={theme} onPress={onPressNumber} /> </Col> ))} </Row> <Row style={[styles.row, styles.buttonRow]}> - {range(4, 7).map(i => ( + {range(4, 7).map((i: any) => ( <Col key={i} style={styles.colButton}> <Button text={i} theme={theme} onPress={onPressNumber} /> </Col> ))} </Row> <Row style={[styles.row, styles.buttonRow]}> - {range(7, 10).map(i => ( + {range(7, 10).map((i: any) => ( <Col key={i} style={styles.colButton}> <Button text={i} theme={theme} onPress={onPressNumber} /> </Col> @@ -124,16 +133,4 @@ const Base = forwardRef(({ ); }); -Base.propTypes = { - theme: PropTypes.string, - type: PropTypes.string, - previousPasscode: PropTypes.string, - title: PropTypes.string, - subtitle: PropTypes.string, - showBiometry: PropTypes.string, - onEndProcess: PropTypes.func, - onError: PropTypes.func, - onBiometryPress: PropTypes.func -}; - export default Base; diff --git a/app/containers/Passcode/Base/styles.js b/app/containers/Passcode/Base/styles.ts similarity index 100% rename from app/containers/Passcode/Base/styles.js rename to app/containers/Passcode/Base/styles.ts diff --git a/app/containers/Passcode/PasscodeChoose.js b/app/containers/Passcode/PasscodeChoose.tsx similarity index 74% rename from app/containers/Passcode/PasscodeChoose.js rename to app/containers/Passcode/PasscodeChoose.tsx index cabc719780..70cb008385 100644 --- a/app/containers/Passcode/PasscodeChoose.js +++ b/app/containers/Passcode/PasscodeChoose.tsx @@ -1,5 +1,4 @@ import React, { useState, useRef } from 'react'; -import PropTypes from 'prop-types'; import * as Haptics from 'expo-haptics'; import { gestureHandlerRootHOC } from 'react-native-gesture-handler'; @@ -7,14 +6,20 @@ import Base from './Base'; import { TYPE } from './constants'; import I18n from '../../i18n'; -const PasscodeChoose = ({ theme, finishProcess, force = false }) => { - const chooseRef = useRef(null); - const confirmRef = useRef(null); +interface IPasscodeChoose { + theme: string; + force: boolean; + finishProcess: Function; +} + +const PasscodeChoose = ({ theme, finishProcess, force = false }: IPasscodeChoose) => { + const chooseRef = useRef<any>(null); + const confirmRef = useRef<any>(null); const [subtitle, setSubtitle] = useState(null); const [status, setStatus] = useState(TYPE.CHOOSE); - const [previousPasscode, setPreviouPasscode] = useState(null); + const [previousPasscode, setPreviouPasscode] = useState<any>(null); - const firstStep = (p) => { + const firstStep = (p: any) => { setTimeout(() => { setStatus(TYPE.CONFIRM); setPreviouPasscode(p); @@ -22,7 +27,7 @@ const PasscodeChoose = ({ theme, finishProcess, force = false }) => { }, 200); }; - const changePasscode = p => finishProcess && finishProcess(p); + const changePasscode = (p: string) => finishProcess && finishProcess(p); const onError = () => { setTimeout(() => { @@ -36,6 +41,7 @@ const PasscodeChoose = ({ theme, finishProcess, force = false }) => { if (status === TYPE.CONFIRM) { return ( + // @ts-ignore <Base ref={confirmRef} theme={theme} @@ -49,6 +55,7 @@ const PasscodeChoose = ({ theme, finishProcess, force = false }) => { } return ( + // @ts-ignore <Base ref={chooseRef} theme={theme} @@ -60,10 +67,4 @@ const PasscodeChoose = ({ theme, finishProcess, force = false }) => { ); }; -PasscodeChoose.propTypes = { - theme: PropTypes.string, - force: PropTypes.bool, - finishProcess: PropTypes.func -}; - export default gestureHandlerRootHOC(PasscodeChoose); diff --git a/app/containers/Passcode/PasscodeEnter.js b/app/containers/Passcode/PasscodeEnter.tsx similarity index 87% rename from app/containers/Passcode/PasscodeEnter.js rename to app/containers/Passcode/PasscodeEnter.tsx index ebd22f3638..c6ad8e2b6c 100644 --- a/app/containers/Passcode/PasscodeEnter.js +++ b/app/containers/Passcode/PasscodeEnter.tsx @@ -1,6 +1,5 @@ import React, { useEffect, useRef, useState } from 'react'; import { useAsyncStorage } from '@react-native-community/async-storage'; -import PropTypes from 'prop-types'; import { gestureHandlerRootHOC } from 'react-native-gesture-handler'; import * as Haptics from 'expo-haptics'; import { sha256 } from 'js-sha256'; @@ -16,17 +15,24 @@ import { getLockedUntil, getDiff } from './utils'; import UserPreferences from '../../lib/userPreferences'; import I18n from '../../i18n'; -const PasscodeEnter = ({ theme, hasBiometry, finishProcess }) => { + +interface IPasscodePasscodeEnter { + theme: string; + hasBiometry: string; + finishProcess: Function; +} + +const PasscodeEnter = ({ theme, hasBiometry, finishProcess }: IPasscodePasscodeEnter) => { const ref = useRef(null); - let attempts = 0; - let lockedUntil = false; + let attempts: any = 0; + let lockedUntil: any = false; const [passcode, setPasscode] = useState(null); const [status, setStatus] = useState(null); const { getItem: getAttempts, setItem: setAttempts } = useAsyncStorage(ATTEMPTS_KEY); const { setItem: setLockedUntil } = useAsyncStorage(LOCKED_OUT_TIMER_KEY); const fetchPasscode = async() => { - const p = await UserPreferences.getStringAsync(PASSCODE_KEY); + const p: any = await UserPreferences.getStringAsync(PASSCODE_KEY); setPasscode(p); }; @@ -61,7 +67,7 @@ const PasscodeEnter = ({ theme, hasBiometry, finishProcess }) => { readStorage(); }, [status]); - const onEndProcess = (p) => { + const onEndProcess = (p: any) => { setTimeout(() => { if (sha256(p) === passcode) { finishProcess(); @@ -72,6 +78,7 @@ const PasscodeEnter = ({ theme, hasBiometry, finishProcess }) => { setLockedUntil(new Date().toISOString()); Haptics.notificationAsync(Haptics.NotificationFeedbackType.Error); } else { + // @ts-ignore ref.current.wrongPasscode(); setAttempts(attempts?.toString()); Haptics.notificationAsync(Haptics.NotificationFeedbackType.Warning); @@ -97,10 +104,4 @@ const PasscodeEnter = ({ theme, hasBiometry, finishProcess }) => { ); }; -PasscodeEnter.propTypes = { - theme: PropTypes.string, - hasBiometry: PropTypes.string, - finishProcess: PropTypes.func -}; - export default gestureHandlerRootHOC(PasscodeEnter); diff --git a/app/containers/Passcode/constants.js b/app/containers/Passcode/constants.ts similarity index 74% rename from app/containers/Passcode/constants.js rename to app/containers/Passcode/constants.ts index d284ee2413..ae268799ac 100644 --- a/app/containers/Passcode/constants.js +++ b/app/containers/Passcode/constants.ts @@ -1,4 +1,4 @@ -export const TYPE = { +export const TYPE: any = { CHOOSE: 'choose', CONFIRM: 'confirm', ENTER: 'enter', diff --git a/app/containers/Passcode/index.js b/app/containers/Passcode/index.ts similarity index 100% rename from app/containers/Passcode/index.js rename to app/containers/Passcode/index.ts diff --git a/app/containers/Passcode/utils.js b/app/containers/Passcode/utils.ts similarity index 81% rename from app/containers/Passcode/utils.js rename to app/containers/Passcode/utils.ts index bbb14eea76..f333c6691f 100644 --- a/app/containers/Passcode/utils.js +++ b/app/containers/Passcode/utils.ts @@ -4,11 +4,11 @@ import moment from 'moment'; import { LOCKED_OUT_TIMER_KEY, TIME_TO_LOCK } from '../../constants/localAuthentication'; export const getLockedUntil = async() => { - const t = await AsyncStorage.getItem(LOCKED_OUT_TIMER_KEY); + const t: any = await AsyncStorage.getItem(LOCKED_OUT_TIMER_KEY); if (t) { return moment(t).add(TIME_TO_LOCK); } return null; }; - +// @ts-ignore export const getDiff = t => new Date(t) - new Date(); From 9a1b7054713ef3f2fb347d8023ef3ba418b0f3d8 Mon Sep 17 00:00:00 2001 From: AlexAlexandre <alexalexandrejr@gmail.com> Date: Mon, 26 Jul 2021 19:33:27 -0300 Subject: [PATCH 37/90] [IMPROVE] - migrating the UIKit container (in progress) --- .../UIKit/{Actions.js => Actions.tsx} | 24 ++++--- .../UIKit/{Context.js => Context.tsx} | 5 +- .../UIKit/{DatePicker.js => DatePicker.tsx} | 29 +++++---- .../UIKit/{Divider.js => Divider.tsx} | 0 app/containers/UIKit/{Image.js => Image.tsx} | 41 +++++++----- app/containers/UIKit/{Input.js => Input.tsx} | 23 ++++--- app/containers/UIKit/MessageBlock.js | 27 -------- app/containers/UIKit/MessageBlock.tsx | 20 ++++++ .../UIKit/{Overflow.js => Overflow.tsx} | 62 ++++++++++--------- .../UIKit/{Section.js => Section.tsx} | 43 ++++++++----- .../UIKit/{Select.js => Select.tsx} | 25 +++++--- app/containers/UIKit/{utils.js => utils.ts} | 12 ++-- app/containers/message/Image.tsx | 4 +- app/externalModules.d.ts | 3 +- 14 files changed, 170 insertions(+), 148 deletions(-) rename app/containers/UIKit/{Actions.js => Actions.tsx} (58%) rename app/containers/UIKit/{Context.js => Context.tsx} (72%) rename app/containers/UIKit/{DatePicker.js => DatePicker.tsx} (88%) rename app/containers/UIKit/{Divider.js => Divider.tsx} (100%) rename app/containers/UIKit/{Image.js => Image.tsx} (57%) rename app/containers/UIKit/{Input.js => Input.tsx} (83%) delete mode 100644 app/containers/UIKit/MessageBlock.js create mode 100644 app/containers/UIKit/MessageBlock.tsx rename app/containers/UIKit/{Overflow.js => Overflow.tsx} (71%) rename app/containers/UIKit/{Section.js => Section.tsx} (64%) rename app/containers/UIKit/{Select.js => Select.tsx} (90%) rename app/containers/UIKit/{utils.js => utils.ts} (84%) diff --git a/app/containers/UIKit/Actions.js b/app/containers/UIKit/Actions.tsx similarity index 58% rename from app/containers/UIKit/Actions.js rename to app/containers/UIKit/Actions.tsx index 56b781fd2e..43f34a4e67 100644 --- a/app/containers/UIKit/Actions.js +++ b/app/containers/UIKit/Actions.tsx @@ -1,31 +1,29 @@ import React, { useState } from 'react'; -import PropTypes from 'prop-types'; import { BLOCK_CONTEXT } from '@rocket.chat/ui-kit'; import Button from '../Button'; import I18n from '../../i18n'; -export const Actions = ({ - blockId, appId, elements, parser, theme -}) => { +interface IActions { + blockId: string; + appId: string; + elements: any[]; + parser: any; + theme: string; +} + +export const Actions = ({ blockId, appId, elements, parser, theme }: IActions) => { const [showMoreVisible, setShowMoreVisible] = useState(() => elements.length > 5); const renderedElements = showMoreVisible ? elements.slice(0, 5) : elements; const Elements = () => renderedElements - .map(element => parser.renderActions({ blockId, appId, ...element }, BLOCK_CONTEXT.ACTION, parser)); + .map((element: any) => parser.renderActions({ blockId, appId, ...element }, BLOCK_CONTEXT.ACTION, parser)); return ( <> + {/*@ts-ignore*/} <Elements /> {showMoreVisible && (<Button theme={theme} title={I18n.t('Show_more')} onPress={() => setShowMoreVisible(false)} />)} </> ); }; - -Actions.propTypes = { - blockId: PropTypes.string, - appId: PropTypes.string, - elements: PropTypes.array, - parser: PropTypes.object, - theme: PropTypes.string -}; diff --git a/app/containers/UIKit/Context.js b/app/containers/UIKit/Context.tsx similarity index 72% rename from app/containers/UIKit/Context.js rename to app/containers/UIKit/Context.tsx index 78dcecc9d4..a3f734bc2a 100644 --- a/app/containers/UIKit/Context.js +++ b/app/containers/UIKit/Context.tsx @@ -11,11 +11,12 @@ const styles = StyleSheet.create({ } }); -export const Context = ({ elements, parser }) => ( +export const Context = ({ elements, parser }: any) => ( <View style={styles.container}> - {elements.map(element => parser.renderContext(element, BLOCK_CONTEXT.CONTEXT, parser))} + {elements.map((element: any) => parser.renderContext(element, BLOCK_CONTEXT.CONTEXT, parser))} </View> ); + Context.propTypes = { elements: PropTypes.array, parser: PropTypes.object diff --git a/app/containers/UIKit/DatePicker.js b/app/containers/UIKit/DatePicker.tsx similarity index 88% rename from app/containers/UIKit/DatePicker.js rename to app/containers/UIKit/DatePicker.tsx index e8ef946351..43df224719 100644 --- a/app/containers/UIKit/DatePicker.js +++ b/app/containers/UIKit/DatePicker.tsx @@ -1,6 +1,5 @@ import React, { useState } from 'react'; import { View, StyleSheet, Text } from 'react-native'; -import PropTypes from 'prop-types'; import DateTimePicker from '@react-native-community/datetimepicker'; import Touchable from 'react-native-platform-touchable'; import { BLOCK_CONTEXT } from '@rocket.chat/ui-kit'; @@ -37,14 +36,28 @@ const styles = StyleSheet.create({ } }); +interface IDatePicker { + element: { + initial_date: any; + placeholder: string; + }; + language: string; + action: Function; + context: number; + loading: boolean; + theme: string; + value: string; + error: string; +} + export const DatePicker = ({ element, language, action, context, theme, loading, value, error -}) => { +}: IDatePicker) => { const [show, onShow] = useState(false); const { initial_date, placeholder } = element; const [currentDate, onChangeDate] = useState(new Date(initial_date || value)); - const onChange = ({ nativeEvent: { timestamp } }, date) => { + const onChange = ({ nativeEvent: { timestamp } }: any, date: any) => { const newDate = date || new Date(timestamp); onChangeDate(newDate); action({ value: moment(newDate).format('YYYY-MM-DD') }); @@ -105,13 +118,3 @@ export const DatePicker = ({ </> ); }; -DatePicker.propTypes = { - element: PropTypes.object, - language: PropTypes.string, - action: PropTypes.func, - context: PropTypes.number, - loading: PropTypes.bool, - theme: PropTypes.string, - value: PropTypes.string, - error: PropTypes.string -}; diff --git a/app/containers/UIKit/Divider.js b/app/containers/UIKit/Divider.tsx similarity index 100% rename from app/containers/UIKit/Divider.js rename to app/containers/UIKit/Divider.tsx diff --git a/app/containers/UIKit/Image.js b/app/containers/UIKit/Image.tsx similarity index 57% rename from app/containers/UIKit/Image.js rename to app/containers/UIKit/Image.tsx index dd7eaa944f..2a601b85c9 100644 --- a/app/containers/UIKit/Image.js +++ b/app/containers/UIKit/Image.tsx @@ -1,7 +1,6 @@ import React from 'react'; import { View, StyleSheet } from 'react-native'; import FastImage from '@rocket.chat/react-native-fast-image'; -import PropTypes from 'prop-types'; import { BLOCK_CONTEXT } from '@rocket.chat/ui-kit'; import ImageContainer from '../message/Image'; @@ -16,21 +15,37 @@ const styles = StyleSheet.create({ } }); -const ThumbContext = args => <View style={styles.mediaContext}><Thumb size={20} {...args} /></View>; +type TThumb = { + element: { + imageUrl: string; + }; + size?: number; +}; + +type TMedia = { + element: { + imageUrl: string; + }; + theme: string; +}; + +interface IImage { + element: any; + context: any; + theme: string; +} -export const Thumb = ({ element, size = 88 }) => ( +const ThumbContext = (args: any) => <View style={styles.mediaContext}><Thumb size={20} {...args} /></View>; + +export const Thumb = ({ element, size = 88 }: TThumb) => ( <FastImage style={[{ width: size, height: size }, styles.image]} source={{ uri: element.imageUrl }} /> ); -Thumb.propTypes = { - element: PropTypes.object, - size: PropTypes.number -}; -export const Media = ({ element, theme }) => { - const showAttachment = attachment => Navigation.navigate('AttachmentView', { attachment }); +export const Media = ({ element, theme }: TMedia) => { + const showAttachment = (attachment: any) => Navigation.navigate('AttachmentView', { attachment }); const { imageUrl } = element; return ( @@ -42,12 +57,8 @@ export const Media = ({ element, theme }) => { /> ); }; -Media.propTypes = { - element: PropTypes.object, - theme: PropTypes.string -}; -const genericImage = (element, context, theme) => { +const genericImage = (element: any, context: any, theme: string) => { switch (context) { case BLOCK_CONTEXT.SECTION: return <Thumb element={element} />; @@ -58,4 +69,4 @@ const genericImage = (element, context, theme) => { } }; -export const Image = ({ element, context, theme }) => genericImage(element, context, theme); +export const Image = ({ element, context, theme }: IImage) => genericImage(element, context, theme); diff --git a/app/containers/UIKit/Input.js b/app/containers/UIKit/Input.tsx similarity index 83% rename from app/containers/UIKit/Input.js rename to app/containers/UIKit/Input.tsx index 22a7d68461..43bf6972dc 100644 --- a/app/containers/UIKit/Input.js +++ b/app/containers/UIKit/Input.tsx @@ -1,6 +1,5 @@ import React from 'react'; import { StyleSheet, Text, View } from 'react-native'; -import PropTypes from 'prop-types'; import { BLOCK_CONTEXT } from '@rocket.chat/ui-kit'; import sharedStyles from '../../views/Styles'; @@ -32,9 +31,19 @@ const styles = StyleSheet.create({ } }); +interface IInput { + element: object; + parser: any; + label: string; + description: string; + error: string; + hint: string; + theme: string; +} + export const Input = ({ element, parser, label, description, error, hint, theme -}) => ( +}: IInput) => ( <View style={styles.container}> {label ? <Text style={[styles.label, { color: error ? themes[theme].dangerColor : themes[theme].titleText }]}>{label}</Text> : null} {description ? <Text style={[styles.description, { color: themes[theme].auxiliaryText }]}>{description}</Text> : null} @@ -43,13 +52,3 @@ export const Input = ({ {hint ? <Text style={[styles.hint, { color: themes[theme].auxiliaryText }]}>{hint}</Text> : null} </View> ); - -Input.propTypes = { - element: PropTypes.object, - parser: PropTypes.object, - label: PropTypes.string, - description: PropTypes.string, - error: PropTypes.string, - hint: PropTypes.string, - theme: PropTypes.string -}; diff --git a/app/containers/UIKit/MessageBlock.js b/app/containers/UIKit/MessageBlock.js deleted file mode 100644 index 2a1c08b3e4..0000000000 --- a/app/containers/UIKit/MessageBlock.js +++ /dev/null @@ -1,27 +0,0 @@ -import React from 'react'; -import PropTypes from 'prop-types'; - -import { UiKitMessage, UiKitModal } from './index'; -import { KitContext } from './utils'; - -export const messageBlockWithContext = context => props => ( - <KitContext.Provider value={context}> - <MessageBlock {...props} /> - </KitContext.Provider> -); - -const MessageBlock = ({ blocks }) => UiKitMessage(blocks); -MessageBlock.propTypes = { - blocks: PropTypes.any -}; - -export const modalBlockWithContext = context => data => ( - <KitContext.Provider value={{ ...context, ...data }}> - <ModalBlock {...data} /> - </KitContext.Provider> -); - -const ModalBlock = ({ blocks }) => UiKitModal(blocks); -ModalBlock.propTypes = { - blocks: PropTypes.any -}; diff --git a/app/containers/UIKit/MessageBlock.tsx b/app/containers/UIKit/MessageBlock.tsx new file mode 100644 index 0000000000..175c8dffe1 --- /dev/null +++ b/app/containers/UIKit/MessageBlock.tsx @@ -0,0 +1,20 @@ +import React from 'react'; + +import { UiKitMessage, UiKitModal } from './index'; +import { KitContext } from './utils'; + +export const messageBlockWithContext = (context: any) => (props: any) => ( + <KitContext.Provider value={context}> + <MessageBlock {...props} /> + </KitContext.Provider> +); + +const MessageBlock = ({ blocks }: any) => UiKitMessage(blocks); + +export const modalBlockWithContext = (context: any) => (data: any) => ( + <KitContext.Provider value={{ ...context, ...data }}> + <ModalBlock {...data} /> + </KitContext.Provider> +); + +const ModalBlock = ({ blocks }: any) => UiKitModal(blocks); diff --git a/app/containers/UIKit/Overflow.js b/app/containers/UIKit/Overflow.tsx similarity index 71% rename from app/containers/UIKit/Overflow.js rename to app/containers/UIKit/Overflow.tsx index 73104e172e..53bcad10b7 100644 --- a/app/containers/UIKit/Overflow.js +++ b/app/containers/UIKit/Overflow.tsx @@ -10,7 +10,32 @@ import { themes } from '../../constants/colors'; import { BUTTON_HIT_SLOP } from '../message/utils'; import * as List from '../List'; -const keyExtractor = item => item.value; +type TOption = { + option: { + text: string; + value: string; + }; + onOptionPress: Function; + parser: any; + theme: string; +}; + +type TOptions = { + options: []; + onOptionPress: Function; + parser: object; + theme: string; +}; + +interface IOverflow { + element: any; + action: Function; + loading: boolean; + parser: object; + theme: string; +} + +const keyExtractor = (item: any) => item.value; const styles = StyleSheet.create({ menu: { @@ -25,9 +50,7 @@ const styles = StyleSheet.create({ } }); -const Option = ({ - option: { text, value }, onOptionPress, parser, theme -}) => ( +const Option = ({ option: { text, value }, onOptionPress, parser, theme }: TOption) => ( <Touchable onPress={() => onOptionPress({ value })} background={Touchable.Ripple(themes[theme].bannerBackground)} @@ -36,16 +59,8 @@ const Option = ({ <Text>{parser.text(text)}</Text> </Touchable> ); -Option.propTypes = { - option: PropTypes.object, - onOptionPress: PropTypes.func, - parser: PropTypes.object, - theme: PropTypes.string -}; -const Options = ({ - options, onOptionPress, parser, theme -}) => ( +const Options = ({ options, onOptionPress, parser, theme }: TOptions) => ( <FlatList data={options} renderItem={({ item }) => <Option option={item} onOptionPress={onOptionPress} parser={parser} theme={theme} />} @@ -53,22 +68,14 @@ const Options = ({ ItemSeparatorComponent={List.Separator} /> ); -Options.propTypes = { - options: PropTypes.array, - onOptionPress: PropTypes.func, - parser: PropTypes.object, - theme: PropTypes.string -}; const touchable = {}; -export const Overflow = ({ - element, loading, action, parser, theme -}) => { +export const Overflow = ({ element, loading, action, parser, theme }: IOverflow) => { const { options, blockId } = element; const [show, onShow] = useState(false); - const onOptionPress = ({ value }) => { + const onOptionPress = ({ value }: any) => { onShow(false); action({ value }); }; @@ -76,6 +83,7 @@ export const Overflow = ({ return ( <> <Touchable + /*@ts-ignore*/ ref={ref => touchable[blockId] = ref} background={Touchable.Ripple(themes[theme].bannerBackground)} onPress={() => onShow(!show)} @@ -86,6 +94,7 @@ export const Overflow = ({ </Touchable> <Popover isVisible={show} + /*@ts-ignore*/ fromView={touchable[blockId]} onRequestClose={() => onShow(false)} > @@ -94,10 +103,3 @@ export const Overflow = ({ </> ); }; -Overflow.propTypes = { - element: PropTypes.any, - action: PropTypes.func, - loading: PropTypes.bool, - parser: PropTypes.object, - theme: PropTypes.string -}; diff --git a/app/containers/UIKit/Section.js b/app/containers/UIKit/Section.tsx similarity index 64% rename from app/containers/UIKit/Section.js rename to app/containers/UIKit/Section.tsx index 7e509d7765..bc2389a53f 100644 --- a/app/containers/UIKit/Section.js +++ b/app/containers/UIKit/Section.tsx @@ -1,6 +1,5 @@ import React from 'react'; import { View, Text, StyleSheet } from 'react-native'; -import PropTypes from 'prop-types'; import { BLOCK_CONTEXT } from '@rocket.chat/ui-kit'; import { themes } from '../../constants/colors'; @@ -24,15 +23,36 @@ const styles = StyleSheet.create({ } }); -const Accessory = ({ - blockId, appId, element, parser -}) => parser.renderAccessories( +type TAccessory = { + blockId?: string; + appId?: string; + element: any; + parser: any +} + +type TFields = { + fields: any; + parser: any; + theme: string; +} + +interface ISection { + blockId: string; + appId: string; + text: object; + fields: []; + accessory: any; + theme: string; + parser: any; +} + +const Accessory = ({ blockId, appId, element, parser }: TAccessory) => parser.renderAccessories( { blockId, appId, ...element }, BLOCK_CONTEXT.SECTION, parser ); -const Fields = ({ fields, parser, theme }) => fields.map(field => ( +const Fields = ({ fields, parser, theme }: TFields) => fields.map((field: any) => ( <Text style={[styles.text, styles.field, { color: themes[theme].bodyText }]}> {parser.text(field)} </Text> @@ -40,9 +60,7 @@ const Fields = ({ fields, parser, theme }) => fields.map(field => ( const accessoriesRight = ['image', 'overflow']; -export const Section = ({ - blockId, appId, text, fields, accessory, parser, theme -}) => ( +export const Section = ({ blockId, appId, text, fields, accessory, parser, theme }: ISection) => ( <View style={[ styles.content, @@ -54,12 +72,3 @@ export const Section = ({ {accessory ? <Accessory element={{ blockId, appId, ...accessory }} parser={parser} /> : null} </View> ); -Section.propTypes = { - blockId: PropTypes.string, - appId: PropTypes.string, - text: PropTypes.object, - fields: PropTypes.array, - accessory: PropTypes.any, - theme: PropTypes.string, - parser: PropTypes.object -}; diff --git a/app/containers/UIKit/Select.js b/app/containers/UIKit/Select.tsx similarity index 90% rename from app/containers/UIKit/Select.js rename to app/containers/UIKit/Select.tsx index 08fe82080b..f5e55801ba 100644 --- a/app/containers/UIKit/Select.js +++ b/app/containers/UIKit/Select.tsx @@ -34,6 +34,19 @@ const styles = StyleSheet.create({ } }); +interface ISelect { + options: { + text: string; + value: string; + }[]; + placeholder: string; + onChange: Function; + loading: boolean; + disabled: boolean; + value: []; + theme: string; +} + export const Select = ({ options = [], placeholder, @@ -42,7 +55,7 @@ export const Select = ({ disabled, value: initialValue, theme -}) => { +}: ISelect) => { const [selected, setSelected] = useState(!Array.isArray(initialValue) && initialValue); const items = options.map(option => ({ label: textParser([option.text]), value: option.value })); const pickerStyle = { @@ -74,16 +87,8 @@ export const Select = ({ inputAndroidContainer: pickerStyle }} Icon={Icon} + // @ts-ignore textInputProps={{ style: { ...styles.pickerText, color: selected ? themes[theme].titleText : themes[theme].auxiliaryText } }} /> ); }; -Select.propTypes = { - options: PropTypes.array, - placeholder: PropTypes.string, - onChange: PropTypes.func, - loading: PropTypes.bool, - disabled: PropTypes.bool, - value: PropTypes.array, - theme: PropTypes.string -}; diff --git a/app/containers/UIKit/utils.js b/app/containers/UIKit/utils.ts similarity index 84% rename from app/containers/UIKit/utils.js rename to app/containers/UIKit/utils.ts index 80b23399ac..d95ff0e628 100644 --- a/app/containers/UIKit/utils.js +++ b/app/containers/UIKit/utils.ts @@ -2,10 +2,10 @@ import React, { useContext, useState } from 'react'; import { BLOCK_CONTEXT } from '@rocket.chat/ui-kit'; -export const textParser = ([{ text }]) => text; +export const textParser = ([{ text }]: any) => text; -export const defaultContext = { - action: (...args) => console.log(args), +export const defaultContext: any = { + action: (...args: any) => console.log(args), state: console.log, appId: '123456789ABCDEFGHJKLMNPQRSTUVWXYZabcdefghijkmnopqrstuvwxyz', errors: {} @@ -15,7 +15,7 @@ export const KitContext = React.createContext(defaultContext); export const useBlockContext = ({ blockId, actionId, appId, initialValue -}, context) => { +}: any, context: any) => { const { action, appId: appIdFromContext, viewId, state, language, errors, values = {} } = useContext(KitContext); @@ -27,7 +27,7 @@ export const useBlockContext = ({ if ([BLOCK_CONTEXT.SECTION, BLOCK_CONTEXT.ACTION].includes(context)) { return [{ loading, setLoading, error, value, language - }, async({ value }) => { + }, async({ value }: any) => { setLoading(true); try { await action({ @@ -46,7 +46,7 @@ export const useBlockContext = ({ return [{ loading, setLoading, value, error, language - }, async({ value }) => { + }, async({ value }: any) => { setLoading(true); try { await state({ diff --git a/app/containers/message/Image.tsx b/app/containers/message/Image.tsx index 36b9d0f4ad..1881ba1ea7 100644 --- a/app/containers/message/Image.tsx +++ b/app/containers/message/Image.tsx @@ -24,11 +24,11 @@ type TMessageImage = { } interface IMessageImage { - file: { image_url: string; description: string; }; + file: { image_url: string; description?: string; }; imageUrl?: string; showAttachment: Function; theme: string; - getCustomEmoji: Function; + getCustomEmoji?: Function; } const ImageProgress = createImageProgress(FastImage); diff --git a/app/externalModules.d.ts b/app/externalModules.d.ts index 90fe398067..d8e87d66cd 100644 --- a/app/externalModules.d.ts +++ b/app/externalModules.d.ts @@ -4,4 +4,5 @@ declare module 'commonmark-react-renderer'; declare module 'remove-markdown'; declare module 'react-native-image-progress'; declare module 'react-native-platform-touchable'; -declare module 'react-native-ui-lib/keyboard'; \ No newline at end of file +declare module 'react-native-ui-lib/keyboard'; +declare module '@rocket.chat/ui-kit'; From e38e5880a83330ea73df09cda13ac345a2c8517f Mon Sep 17 00:00:00 2001 From: AlexAlexandre <alexalexandrejr@gmail.com> Date: Mon, 26 Jul 2021 19:58:52 -0300 Subject: [PATCH 38/90] [IMPROVE] - migrating the UIKit container (in progress) --- app/containers/Check.tsx | 2 +- .../UIKit/MultiSelect/{Chips.js => Chips.tsx} | 40 ++++++++++-------- .../UIKit/MultiSelect/{Input.js => Input.tsx} | 22 +++++----- .../UIKit/MultiSelect/{Items.js => Items.tsx} | 41 ++++++++++--------- .../UIKit/MultiSelect/{index.js => index.tsx} | 35 ++++++++-------- .../MultiSelect/{styles.js => styles.ts} | 0 6 files changed, 72 insertions(+), 68 deletions(-) rename app/containers/UIKit/MultiSelect/{Chips.js => Chips.tsx} (73%) rename app/containers/UIKit/MultiSelect/{Input.js => Input.tsx} (80%) rename app/containers/UIKit/MultiSelect/{Items.js => Items.tsx} (76%) rename app/containers/UIKit/MultiSelect/{index.js => index.tsx} (91%) rename app/containers/UIKit/MultiSelect/{styles.js => styles.ts} (100%) diff --git a/app/containers/Check.tsx b/app/containers/Check.tsx index 42ecfa9b6c..a440667969 100644 --- a/app/containers/Check.tsx +++ b/app/containers/Check.tsx @@ -5,7 +5,7 @@ import { CustomIcon } from '../lib/Icons'; import { themes } from '../constants/colors'; type TCheck = { - style: object, + style?: object, theme: string } const styles = StyleSheet.create({ diff --git a/app/containers/UIKit/MultiSelect/Chips.js b/app/containers/UIKit/MultiSelect/Chips.tsx similarity index 73% rename from app/containers/UIKit/MultiSelect/Chips.js rename to app/containers/UIKit/MultiSelect/Chips.tsx index 47827141dd..2ee98dfb3b 100644 --- a/app/containers/UIKit/MultiSelect/Chips.js +++ b/app/containers/UIKit/MultiSelect/Chips.tsx @@ -10,11 +10,28 @@ import { CustomIcon } from '../../../lib/Icons'; import styles from './styles'; -const keyExtractor = item => item.value.toString(); +type TChip = { + item: { + value: string; + imageUrl: string; + text: string + }; + onSelect: Function; + style: object; + theme: string; +} -const Chip = ({ - item, onSelect, style, theme -}) => ( +interface IChips { + items: []; + onSelect: Function; + style: object; + theme: string; +} + + +const keyExtractor = (item: any) => item.value.toString(); + +const Chip = ({ item, onSelect, style, theme }: TChip) => ( <Touchable key={item.value} onPress={() => onSelect(item)} @@ -29,24 +46,13 @@ const Chip = ({ </Touchable> ); Chip.propTypes = { - item: PropTypes.object, - onSelect: PropTypes.func, - style: PropTypes.object, - theme: PropTypes.string + }; -const Chips = ({ - items, onSelect, style, theme -}) => ( +const Chips = ({ items, onSelect, style, theme }: IChips) => ( <View style={styles.chips}> {items.map(item => <Chip key={keyExtractor(item)} item={item} onSelect={onSelect} style={style} theme={theme} />)} </View> ); -Chips.propTypes = { - items: PropTypes.array, - onSelect: PropTypes.func, - style: PropTypes.object, - theme: PropTypes.string -}; export default Chips; diff --git a/app/containers/UIKit/MultiSelect/Input.js b/app/containers/UIKit/MultiSelect/Input.tsx similarity index 80% rename from app/containers/UIKit/MultiSelect/Input.js rename to app/containers/UIKit/MultiSelect/Input.tsx index ff8647a617..b0c9ea8e87 100644 --- a/app/containers/UIKit/MultiSelect/Input.js +++ b/app/containers/UIKit/MultiSelect/Input.tsx @@ -1,6 +1,5 @@ import React from 'react'; import { View, Text } from 'react-native'; -import PropTypes from 'prop-types'; import Touchable from 'react-native-platform-touchable'; import { CustomIcon } from '../../../lib/Icons'; @@ -8,9 +7,19 @@ import { themes } from '../../../constants/colors'; import ActivityIndicator from '../../ActivityIndicator'; import styles from './styles'; +interface IInput { + children: JSX.Element; + onPress: Function; + theme: string; + inputStyle: object; + disabled: boolean; + placeholder: string; + loading: boolean; +} + const Input = ({ children, onPress, theme, loading, inputStyle, placeholder, disabled -}) => ( +}: IInput) => ( <Touchable onPress={onPress} style={[{ backgroundColor: themes[theme].backgroundColor }, inputStyle]} @@ -27,14 +36,5 @@ const Input = ({ </View> </Touchable> ); -Input.propTypes = { - children: PropTypes.node, - onPress: PropTypes.func, - theme: PropTypes.string, - inputStyle: PropTypes.object, - disabled: PropTypes.bool, - placeholder: PropTypes.string, - loading: PropTypes.bool -}; export default Input; diff --git a/app/containers/UIKit/MultiSelect/Items.js b/app/containers/UIKit/MultiSelect/Items.tsx similarity index 76% rename from app/containers/UIKit/MultiSelect/Items.js rename to app/containers/UIKit/MultiSelect/Items.tsx index c2f784d030..98ab9d9b45 100644 --- a/app/containers/UIKit/MultiSelect/Items.js +++ b/app/containers/UIKit/MultiSelect/Items.tsx @@ -1,6 +1,5 @@ import React from 'react'; import { Text, FlatList } from 'react-native'; -import PropTypes from 'prop-types'; import Touchable from 'react-native-platform-touchable'; import FastImage from '@rocket.chat/react-native-fast-image'; @@ -11,12 +10,28 @@ import { themes } from '../../../constants/colors'; import styles from './styles'; -const keyExtractor = item => item.value.toString(); +type TItem = { + item: { + value: { name: string; }; + text: { text: string; }; + imageUrl: string; + }; + selected: any; + onSelect: Function; + theme: string; +}; + +interface IItems { + items: []; + selected: []; + onSelect: Function; + theme: string; +} + +const keyExtractor = (item: any) => item.value.toString(); // RectButton doesn't work on modal (Android) -const Item = ({ - item, selected, onSelect, theme -}) => { +const Item = ({ item, selected, onSelect, theme }: TItem) => { const itemName = item.value.name || item.text.text.toLowerCase(); return ( <Touchable @@ -36,16 +51,8 @@ const Item = ({ </Touchable> ); }; -Item.propTypes = { - item: PropTypes.object, - selected: PropTypes.number, - onSelect: PropTypes.func, - theme: PropTypes.string -}; -const Items = ({ - items, selected, onSelect, theme -}) => ( +const Items = ({ items, selected, onSelect, theme }: IItems) => ( <FlatList data={items} style={[styles.items, { backgroundColor: themes[theme].backgroundColor }]} @@ -56,11 +63,5 @@ const Items = ({ renderItem={({ item }) => <Item item={item} onSelect={onSelect} theme={theme} selected={selected.find(s => s === item.value)} />} /> ); -Items.propTypes = { - items: PropTypes.array, - selected: PropTypes.array, - onSelect: PropTypes.func, - theme: PropTypes.string -}; export default Items; diff --git a/app/containers/UIKit/MultiSelect/index.js b/app/containers/UIKit/MultiSelect/index.tsx similarity index 91% rename from app/containers/UIKit/MultiSelect/index.js rename to app/containers/UIKit/MultiSelect/index.tsx index 0d366b6d7d..93df7498a2 100644 --- a/app/containers/UIKit/MultiSelect/index.js +++ b/app/containers/UIKit/MultiSelect/index.tsx @@ -2,7 +2,6 @@ import React, { useState, useEffect } from 'react'; import { View, Text, TouchableWithoutFeedback, Modal, KeyboardAvoidingView, Animated, Easing, StyleSheet } from 'react-native'; -import PropTypes from 'prop-types'; import { BLOCK_CONTEXT } from '@rocket.chat/ui-kit'; import Button from '../../Button'; @@ -19,6 +18,21 @@ import Input from './Input'; import styles from './styles'; +interface IMultiSelect { + options: []; + onChange: Function; + placeholder: object; + context: number; + loading: boolean; + multiselect: boolean; + onSearch: Function; + onClose: Function; + inputStyle: object; + value: []; + disabled: boolean; + theme: string; +} + const ANIMATION_DURATION = 200; const ANIMATION_PROPS = { duration: ANIMATION_DURATION, @@ -42,7 +56,7 @@ export const MultiSelect = React.memo(({ disabled, inputStyle, theme -}) => { +}: IMultiSelect) => { const [selected, select] = useState(Array.isArray(values) ? values : []); const [open, setOpen] = useState(false); const [search, onSearchChange] = useState(''); @@ -186,20 +200,3 @@ export const MultiSelect = React.memo(({ </> ); }); -MultiSelect.propTypes = { - options: PropTypes.array, - onChange: PropTypes.func, - placeholder: PropTypes.object, - context: PropTypes.number, - loading: PropTypes.bool, - multiselect: PropTypes.bool, - onSearch: PropTypes.func, - onClose: PropTypes.func, - inputStyle: PropTypes.object, - value: PropTypes.array, - disabled: PropTypes.bool, - theme: PropTypes.string -}; -MultiSelect.defaultProps = { - onClose: () => {} -}; diff --git a/app/containers/UIKit/MultiSelect/styles.js b/app/containers/UIKit/MultiSelect/styles.ts similarity index 100% rename from app/containers/UIKit/MultiSelect/styles.js rename to app/containers/UIKit/MultiSelect/styles.ts From 11eaadde2d663fe2e74e7630cd986f7a0d52085c Mon Sep 17 00:00:00 2001 From: AlexAlexandre <alexalexandrejr@gmail.com> Date: Mon, 26 Jul 2021 23:37:02 -0300 Subject: [PATCH 39/90] [IMPROVE] - migrating the UIKit container (finished) --- app/containers/UIKit/MultiSelect/index.tsx | 21 ++++-- app/containers/UIKit/Overflow.tsx | 2 +- app/containers/UIKit/{index.js => index.tsx} | 70 ++++++++++---------- 3 files changed, 49 insertions(+), 44 deletions(-) rename app/containers/UIKit/{index.js => index.tsx} (72%) diff --git a/app/containers/UIKit/MultiSelect/index.tsx b/app/containers/UIKit/MultiSelect/index.tsx index 93df7498a2..77222ef433 100644 --- a/app/containers/UIKit/MultiSelect/index.tsx +++ b/app/containers/UIKit/MultiSelect/index.tsx @@ -21,14 +21,16 @@ import styles from './styles'; interface IMultiSelect { options: []; onChange: Function; - placeholder: object; + placeholder: { + text: string; + }; context: number; loading: boolean; multiselect: boolean; onSearch: Function; onClose: Function; inputStyle: object; - value: []; + value: {text: any}[]; disabled: boolean; theme: string; } @@ -57,7 +59,7 @@ export const MultiSelect = React.memo(({ inputStyle, theme }: IMultiSelect) => { - const [selected, select] = useState(Array.isArray(values) ? values : []); + const [selected, select] = useState<any>(Array.isArray(values) ? values : []); const [open, setOpen] = useState(false); const [search, onSearchChange] = useState(''); const [currentValue, setCurrentValue] = useState(''); @@ -101,14 +103,14 @@ export const MultiSelect = React.memo(({ ).start(() => setShowContent(false)); }; - const onSelect = (item) => { + const onSelect = (item: any) => { const { value, text: { text } } = item; if (multiselect) { let newSelect = []; if (!selected.includes(value)) { newSelect = [...selected, value]; } else { - newSelect = selected.filter(s => s !== value); + newSelect = selected.filter((s: any) => s !== value); } select(newSelect); onChange({ value: newSelect }); @@ -120,7 +122,7 @@ export const MultiSelect = React.memo(({ }; const renderContent = () => { - const items = onSearch ? options : options.filter(option => textParser([option.text]).toLowerCase().includes(search.toLowerCase())); + const items: any = onSearch ? options : options.filter((option: any) => textParser([option.text]).toLowerCase().includes(search.toLowerCase())); return ( <View style={[styles.modal, { backgroundColor: themes[theme].backgroundColor }]}> @@ -150,6 +152,7 @@ export const MultiSelect = React.memo(({ theme={theme} /> ) : ( + // @ts-ignore <Input onPress={onShow} theme={theme} @@ -162,8 +165,9 @@ export const MultiSelect = React.memo(({ ); if (context === BLOCK_CONTEXT.FORM) { - const items = options.filter(option => selected.includes(option.value)); + const items: any = options.filter((option: any) => selected.includes(option.value)); button = ( + // @ts-ignore <Input onPress={onShow} theme={theme} @@ -171,6 +175,7 @@ export const MultiSelect = React.memo(({ disabled={disabled} inputStyle={inputStyle} > + {/*@ts-ignore*/} {items.length ? <Chips items={items} onSelect={onSelect} theme={theme} /> : <Text style={[styles.pickerText, { color: themes[theme].auxiliaryText }]}>{placeholder.text}</Text>} </Input> ); @@ -187,7 +192,9 @@ export const MultiSelect = React.memo(({ > <TouchableWithoutFeedback onPress={onHide}> <View style={styles.container}> + {/*@ts-ignore*/} <View style={{ ...StyleSheet.absoluteFill, opacity: themes[theme].backdropOpacity, backgroundColor: themes[theme].backdropColor }} /> + {/*@ts-ignore*/} <KeyboardAvoidingView style={styles.keyboardView} behavior={behavior}> <Animated.View style={[styles.animatedContent, { transform: [{ translateY }] }]}> {showContent ? renderContent() : null} diff --git a/app/containers/UIKit/Overflow.tsx b/app/containers/UIKit/Overflow.tsx index 53bcad10b7..cb0ee73ded 100644 --- a/app/containers/UIKit/Overflow.tsx +++ b/app/containers/UIKit/Overflow.tsx @@ -1,6 +1,5 @@ import React, { useState } from 'react'; import { Text, FlatList, StyleSheet } from 'react-native'; -import PropTypes from 'prop-types'; import Popover from 'react-native-popover-view'; import Touchable from 'react-native-platform-touchable'; @@ -33,6 +32,7 @@ interface IOverflow { loading: boolean; parser: object; theme: string; + context: any; } const keyExtractor = (item: any) => item.value; diff --git a/app/containers/UIKit/index.js b/app/containers/UIKit/index.tsx similarity index 72% rename from app/containers/UIKit/index.js rename to app/containers/UIKit/index.tsx index 84cac8861b..9f26331c55 100644 --- a/app/containers/UIKit/index.js +++ b/app/containers/UIKit/index.tsx @@ -50,14 +50,15 @@ const styles = StyleSheet.create({ const plainText = ({ text } = { text: '' }) => text; class MessageParser extends UiKitParserMessage { - text({ text, type } = { text: '' }, context) { - const { theme } = useContext(ThemeContext); + text({ text, type }: any = { text: '' }, context: any) { + const { theme }: any = useContext(ThemeContext); if (type !== 'mrkdwn') { return <Text style={[styles.text, { color: themes[theme].bodyText }]}>{text}</Text>; } const isContext = context === BLOCK_CONTEXT.CONTEXT; return ( + // @ts-ignore <Markdown msg={text} theme={theme} @@ -67,11 +68,9 @@ class MessageParser extends UiKitParserMessage { ); } - button(element, context) { - const { - text, value, actionId, style - } = element; - const [{ loading }, action] = useBlockContext(element, context); + button(element: any, context: any) { + const { text, value, actionId, style } = element; + const [{ loading }, action]: any = useBlockContext(element, context); const { theme } = useContext(ThemeContext); return ( <Button @@ -87,23 +86,24 @@ class MessageParser extends UiKitParserMessage { } divider() { - const { theme } = useContext(ThemeContext); + const { theme }: any = useContext(ThemeContext); + // @ts-ignore return <Divider theme={theme} />; } - section(args) { + section(args: any) { const { theme } = useContext(ThemeContext); return <Section {...args} theme={theme} parser={this} />; } - actions(args) { + actions(args: any) { const { theme } = useContext(ThemeContext); return <Actions {...args} theme={theme} parser={this} />; } - overflow(element, context) { - const [{ loading }, action] = useBlockContext(element, context); - const { theme } = useContext(ThemeContext); + overflow(element: any, context: any) { + const [{ loading }, action]: any = useBlockContext(element, context); + const { theme }: any = useContext(ThemeContext); return ( <Overflow element={element} @@ -116,11 +116,9 @@ class MessageParser extends UiKitParserMessage { ); } - datePicker(element, context) { - const [{ - loading, value, error, language - }, action] = useBlockContext(element, context); - const { theme } = useContext(ThemeContext); + datePicker(element: any, context: any) { + const [{loading, value, error, language}, action]: any = useBlockContext(element, context); + const { theme }: any = useContext(ThemeContext); return ( <DatePicker element={element} @@ -135,18 +133,18 @@ class MessageParser extends UiKitParserMessage { ); } - image(element, context) { - const { theme } = useContext(ThemeContext); + image(element: any, context: any) { + const { theme }: any = useContext(ThemeContext); return <Image element={element} theme={theme} context={context} />; } - context(args) { + context(args: any) { const { theme } = useContext(ThemeContext); return <Context {...args} theme={theme} parser={this} />; } - multiStaticSelect(element, context) { - const [{ loading, value }, action] = useBlockContext(element, context); + multiStaticSelect(element: any, context: any) { + const [{ loading, value }, action]: any = useBlockContext(element, context); const { theme } = useContext(ThemeContext); return ( <MultiSelect @@ -161,8 +159,8 @@ class MessageParser extends UiKitParserMessage { ); } - staticSelect(element, context) { - const [{ loading, value }, action] = useBlockContext(element, context); + staticSelect(element: any, context: any) { + const [{ loading, value }, action]: any = useBlockContext(element, context); const { theme } = useContext(ThemeContext); return ( <Select @@ -175,8 +173,8 @@ class MessageParser extends UiKitParserMessage { ); } - selectInput(element, context) { - const [{ loading, value }, action] = useBlockContext(element, context); + selectInput(element: any, context: any) { + const [{ loading, value }, action]: any = useBlockContext(element, context); const { theme } = useContext(ThemeContext); return ( <MultiSelect @@ -201,9 +199,9 @@ class ModalParser extends UiKitParserModal { input({ element, blockId, appId, label, description, hint - }, context) { - const [{ error }] = useBlockContext({ ...element, appId, blockId }, context); - const { theme } = useContext(ThemeContext); + }: any, context: any) { + const [{ error }]: any = useBlockContext({ ...element, appId, blockId }, context); + const { theme }: any = useContext(ThemeContext); return ( <Input parser={this} @@ -217,13 +215,13 @@ class ModalParser extends UiKitParserModal { ); } - image(element, context) { - const { theme } = useContext(ThemeContext); + image(element: any, context: any) { + const { theme }: any = useContext(ThemeContext); return <Image element={element} theme={theme} context={context} />; } - plainInput(element, context) { - const [{ loading, value, error }, action] = useBlockContext(element, context); + plainInput(element: any, context: any) { + const [{ loading, value, error }, action]: any = useBlockContext(element, context); const { theme } = useContext(ThemeContext); const { multiline, actionId, placeholder } = element; return ( @@ -233,7 +231,7 @@ class ModalParser extends UiKitParserModal { onInput={action} multiline={multiline} loading={loading} - onChangeText={text => action({ value: text })} + onChangeText={(text: any) => action({ value: text })} inputStyle={multiline && styles.multiline} containerStyle={styles.input} value={value} @@ -250,4 +248,4 @@ export const modalParser = new ModalParser(); export const UiKitMessage = uiKitMessage(messageParser); export const UiKitModal = uiKitModal(modalParser); -export const UiKitComponent = ({ render, blocks }) => render(blocks); +export const UiKitComponent = ({ render, blocks }: any) => render(blocks); From 2c9f6f7f82fa8b6869e66b4ebac4ac48515d32bf Mon Sep 17 00:00:00 2001 From: AlexAlexandre <alexalexandrejr@gmail.com> Date: Tue, 27 Jul 2021 00:13:43 -0300 Subject: [PATCH 40/90] [IMPROVE] - migrating the last container files (in progress) --- app/containers/{Loading.js => Loading.tsx} | 18 +++---- .../{OrSeparator.js => OrSeparator.tsx} | 13 ++--- .../{RoomTypeIcon.js => RoomTypeIcon.tsx} | 26 +++++----- .../{SafeAreaView.js => SafeAreaView.tsx} | 18 +++---- .../{StatusBar.js => StatusBar.tsx} | 15 +++--- .../{TextInput.js => TextInput.tsx} | 47 ++++++++++--------- .../{ThreadDetails.js => ThreadDetails.tsx} | 27 +++++++---- app/containers/{Toast.js => Toast.tsx} | 19 ++++---- 8 files changed, 95 insertions(+), 88 deletions(-) rename app/containers/{Loading.js => Loading.tsx} (87%) rename app/containers/{OrSeparator.js => OrSeparator.tsx} (79%) rename app/containers/{RoomTypeIcon.js => RoomTypeIcon.tsx} (83%) rename app/containers/{SafeAreaView.js => SafeAreaView.tsx} (80%) rename app/containers/{StatusBar.js => StatusBar.tsx} (75%) rename app/containers/{TextInput.js => TextInput.tsx} (86%) rename app/containers/{ThreadDetails.js => ThreadDetails.tsx} (88%) rename app/containers/{Toast.js => Toast.tsx} (80%) diff --git a/app/containers/Loading.js b/app/containers/Loading.tsx similarity index 87% rename from app/containers/Loading.js rename to app/containers/Loading.tsx index 656e476af8..cca933aaa2 100644 --- a/app/containers/Loading.js +++ b/app/containers/Loading.tsx @@ -1,8 +1,5 @@ import React from 'react'; -import PropTypes from 'prop-types'; -import { - StyleSheet, View, Modal, Animated -} from 'react-native'; +import { StyleSheet, View, Modal, Animated } from 'react-native'; const styles = StyleSheet.create({ container: { @@ -18,15 +15,18 @@ const styles = StyleSheet.create({ } }); -export default class Loading extends React.PureComponent { - static propTypes = { - visible: PropTypes.bool.isRequired - } +interface ILoadingProps { + visible: boolean; +} + +export default class Loading extends React.PureComponent<ILoadingProps, any> { state = { scale: new Animated.Value(1), opacity: new Animated.Value(0) } + private opacityAnimation: any; + private scaleAnimation: any; componentDidMount() { const { opacity, scale } = this.state; @@ -64,7 +64,7 @@ export default class Loading extends React.PureComponent { } } - componentDidUpdate(prevProps) { + componentDidUpdate(prevProps: any) { const { visible } = this.props; if (visible && visible !== prevProps.visible) { this.startAnimations(); diff --git a/app/containers/OrSeparator.js b/app/containers/OrSeparator.tsx similarity index 79% rename from app/containers/OrSeparator.js rename to app/containers/OrSeparator.tsx index 665c145380..7964e0db7a 100644 --- a/app/containers/OrSeparator.js +++ b/app/containers/OrSeparator.tsx @@ -1,6 +1,5 @@ import React from 'react'; import { View, StyleSheet, Text } from 'react-native'; -import PropTypes from 'prop-types'; import I18n from '../i18n'; import sharedStyles from '../views/Styles'; @@ -24,20 +23,22 @@ const styles = StyleSheet.create({ } }); -const OrSeparator = React.memo(({ theme }) => { +interface IOrSeparator { + theme: string +} + +const OrSeparator = React.memo(({ theme }: IOrSeparator) => { const line = { backgroundColor: themes[theme].borderColor }; const text = { color: themes[theme].auxiliaryText }; return ( <View style={styles.container}> <View style={[styles.line, line]} /> + {/*TODO - see if this line is wrong, probably the correct is styles.text.marginRight*/} + {/*@ts-ignore*/} <Text style={[styles.text, styles.marginRight, styles.marginLeft, text]}>{I18n.t('OR')}</Text> <View style={[styles.line, line]} /> </View> ); }); -OrSeparator.propTypes = { - theme: PropTypes.string -}; - export default OrSeparator; diff --git a/app/containers/RoomTypeIcon.js b/app/containers/RoomTypeIcon.tsx similarity index 83% rename from app/containers/RoomTypeIcon.js rename to app/containers/RoomTypeIcon.tsx index 7c0e32c136..e5c8ec0695 100644 --- a/app/containers/RoomTypeIcon.js +++ b/app/containers/RoomTypeIcon.tsx @@ -12,9 +12,19 @@ const styles = StyleSheet.create({ } }); +interface IRoomTypeIcon { + theme: string; + type: string; + isGroupChat: boolean; + teamMain: boolean; + status: string; + size: number; + style: any; +} + const RoomTypeIcon = React.memo(({ type, size, isGroupChat, status, style, theme, teamMain -}) => { +}: IRoomTypeIcon) => { if (!type) { return null; } @@ -57,18 +67,4 @@ const RoomTypeIcon = React.memo(({ ); }); -RoomTypeIcon.propTypes = { - theme: PropTypes.string, - type: PropTypes.string, - isGroupChat: PropTypes.bool, - teamMain: PropTypes.bool, - status: PropTypes.string, - size: PropTypes.number, - style: PropTypes.object -}; - -RoomTypeIcon.defaultProps = { - size: 16 -}; - export default withTheme(RoomTypeIcon); diff --git a/app/containers/SafeAreaView.js b/app/containers/SafeAreaView.tsx similarity index 80% rename from app/containers/SafeAreaView.js rename to app/containers/SafeAreaView.tsx index 2907579302..12a0ac8063 100644 --- a/app/containers/SafeAreaView.js +++ b/app/containers/SafeAreaView.tsx @@ -11,9 +11,17 @@ const styles = StyleSheet.create({ } }); +interface ISafeAreaView { + testID: string; + theme: string; + vertical: boolean; + style: object; + children: JSX.Element; +} + const SafeAreaView = React.memo(({ style, children, testID, theme, vertical = true, ...props -}) => ( +}: ISafeAreaView) => ( <SafeAreaContext style={[styles.view, { backgroundColor: themes[theme].auxiliaryBackground }, style]} edges={vertical ? ['right', 'left'] : undefined} @@ -24,12 +32,4 @@ const SafeAreaView = React.memo(({ </SafeAreaContext> )); -SafeAreaView.propTypes = { - testID: PropTypes.string, - theme: PropTypes.string, - vertical: PropTypes.bool, - style: PropTypes.object, - children: PropTypes.element -}; - export default withTheme(SafeAreaView); diff --git a/app/containers/StatusBar.js b/app/containers/StatusBar.tsx similarity index 75% rename from app/containers/StatusBar.js rename to app/containers/StatusBar.tsx index ad4264d51f..da115f4edf 100644 --- a/app/containers/StatusBar.js +++ b/app/containers/StatusBar.tsx @@ -1,11 +1,16 @@ import React from 'react'; import { StatusBar as StatusBarRN } from 'react-native'; -import PropTypes from 'prop-types'; import { themes } from '../constants/colors'; import { withTheme } from '../theme'; -const StatusBar = React.memo(({ theme, barStyle, backgroundColor }) => { +interface IStatusBar { + theme: string; + barStyle: any; + backgroundColor: string; +} + +const StatusBar = React.memo(({ theme, barStyle, backgroundColor }: IStatusBar) => { if (!barStyle) { barStyle = 'light-content'; if (theme === 'light') { @@ -15,10 +20,4 @@ const StatusBar = React.memo(({ theme, barStyle, backgroundColor }) => { return <StatusBarRN backgroundColor={backgroundColor ?? themes[theme].headerBackground} barStyle={barStyle} animated />; }); -StatusBar.propTypes = { - theme: PropTypes.string, - barStyle: PropTypes.string, - backgroundColor: PropTypes.string -}; - export default withTheme(StatusBar); diff --git a/app/containers/TextInput.js b/app/containers/TextInput.tsx similarity index 86% rename from app/containers/TextInput.js rename to app/containers/TextInput.tsx index eb119218ff..1416fb5230 100644 --- a/app/containers/TextInput.js +++ b/app/containers/TextInput.tsx @@ -51,29 +51,27 @@ const styles = StyleSheet.create({ } }); +interface IRCTextInputProps { + label: string; + error: { + error: any; + reason: any; + }; + loading: boolean; + secureTextEntry: boolean; + containerStyle: any; + inputStyle: object; + inputRef: any; + testID: string; + iconLeft: string; + iconRight: string; + placeholder: string; + left: JSX.Element; + onIconRightPress(): void; + theme: string; +} -export default class RCTextInput extends React.PureComponent { - static propTypes = { - label: PropTypes.string, - error: PropTypes.object, - loading: PropTypes.bool, - secureTextEntry: PropTypes.bool, - containerStyle: PropTypes.any, - inputStyle: PropTypes.object, - inputRef: PropTypes.func, - testID: PropTypes.string, - iconLeft: PropTypes.string, - iconRight: PropTypes.string, - placeholder: PropTypes.string, - left: PropTypes.element, - onIconRightPress: PropTypes.func, - theme: PropTypes.string - } - - static defaultProps = { - error: {}, - theme: 'light' - } +export default class RCTextInput extends React.PureComponent<IRCTextInputProps, any> { state = { showPassword: false @@ -121,11 +119,12 @@ export default class RCTextInput extends React.PureComponent { get loading() { const { theme } = this.props; + // @ts-ignore return <ActivityIndicator style={[styles.iconContainer, styles.iconRight, { color: themes[theme].bodyText }]} />; } tooglePassword = () => { - this.setState(prevState => ({ showPassword: !prevState.showPassword })); + this.setState((prevState: any) => ({ showPassword: !prevState.showPassword })); } render() { @@ -139,6 +138,7 @@ export default class RCTextInput extends React.PureComponent { {label ? ( <Text contentDescription={null} + // @ts-ignore accessibilityLabel={null} style={[ styles.label, @@ -151,6 +151,7 @@ export default class RCTextInput extends React.PureComponent { ) : null} <View style={styles.wrap}> <TextInput + /*@ts-ignore*/ style={[ styles.input, iconLeft && styles.inputIconLeft, diff --git a/app/containers/ThreadDetails.js b/app/containers/ThreadDetails.tsx similarity index 88% rename from app/containers/ThreadDetails.js rename to app/containers/ThreadDetails.tsx index e567a4cf80..bb5181d2cf 100644 --- a/app/containers/ThreadDetails.js +++ b/app/containers/ThreadDetails.tsx @@ -40,6 +40,21 @@ const styles = StyleSheet.create({ } }); +interface IThreadDetails { + item: { + tcount: number | string; + replies: any; + id: string; + }; + user: { + id: string + }; + badgeColor: string; + toggleFollowThread: Function; + style: object; + theme: string; +} + const ThreadDetails = ({ item, user, @@ -47,7 +62,7 @@ const ThreadDetails = ({ toggleFollowThread, style, theme -}) => { +}: IThreadDetails) => { let { tcount } = item; if (tcount >= 1000) { tcount = '+999'; @@ -62,7 +77,7 @@ const ThreadDetails = ({ replies = '+99'; } - const isFollowing = item.replies?.find(u => u === user?.id); + const isFollowing = item.replies?.find((u: any) => u === user?.id); return ( <View style={[styles.container, style]}> @@ -91,13 +106,5 @@ const ThreadDetails = ({ </View> ); }; -ThreadDetails.propTypes = { - item: PropTypes.object, - user: PropTypes.object, - badgeColor: PropTypes.string, - toggleFollowThread: PropTypes.func, - style: PropTypes.object, - theme: PropTypes.string -}; export default withTheme(ThreadDetails); diff --git a/app/containers/Toast.js b/app/containers/Toast.tsx similarity index 80% rename from app/containers/Toast.js rename to app/containers/Toast.tsx index 4b982fb491..9a380b8dae 100644 --- a/app/containers/Toast.js +++ b/app/containers/Toast.tsx @@ -1,7 +1,6 @@ import React from 'react'; import { StyleSheet } from 'react-native'; import EasyToast from 'react-native-easy-toast'; -import PropTypes from 'prop-types'; import { themes } from '../constants/colors'; import sharedStyles from '../views/Styles'; @@ -22,16 +21,19 @@ const styles = StyleSheet.create({ export const LISTENER = 'Toast'; -class Toast extends React.Component { - static propTypes = { - theme: PropTypes.string - } +interface IToastProps { + theme: string; +} + +class Toast extends React.Component<IToastProps, any> { + private listener: any; + private toast: any; componentDidMount() { this.listener = EventEmitter.addEventListener(LISTENER, this.showToast); } - shouldComponentUpdate(nextProps) { + shouldComponentUpdate(nextProps: any) { const { theme } = this.props; if (nextProps.theme !== theme) { return true; @@ -43,9 +45,9 @@ class Toast extends React.Component { EventEmitter.removeListener(LISTENER, this.listener); } - getToastRef = toast => this.toast = toast; + getToastRef = (toast: any) => this.toast = toast; - showToast = ({ message }) => { + showToast = ({ message }: any) => { if (this.toast && this.toast.show) { this.toast.show(message, 1000); } @@ -56,6 +58,7 @@ class Toast extends React.Component { return ( <EasyToast ref={this.getToastRef} + // @ts-ignore position='center' style={[styles.toast, { backgroundColor: themes[theme].toastBackground }]} textStyle={[styles.text, { color: themes[theme].buttonText }]} From 9179e9092004786489c36d3886fc7712793520f3 Mon Sep 17 00:00:00 2001 From: AlexAlexandre <alexalexandrejr@gmail.com> Date: Tue, 27 Jul 2021 12:27:17 -0300 Subject: [PATCH 41/90] [IMPROVE] - migrating the last container files (finished) --- .../{LoginServices.js => LoginServices.tsx} | 79 ++++++++++++------- ...rrorActions.js => MessageErrorActions.tsx} | 20 ++--- .../{ReactionsModal.js => ReactionsModal.tsx} | 67 ++++++++-------- .../{SearchBox.js => SearchBox.tsx} | 26 +++--- 4 files changed, 104 insertions(+), 88 deletions(-) rename app/containers/{LoginServices.js => LoginServices.tsx} (88%) rename app/containers/{MessageErrorActions.js => MessageErrorActions.tsx} (82%) rename app/containers/{ReactionsModal.js => ReactionsModal.tsx} (77%) rename app/containers/{SearchBox.js => SearchBox.tsx} (86%) diff --git a/app/containers/LoginServices.js b/app/containers/LoginServices.tsx similarity index 88% rename from app/containers/LoginServices.js rename to app/containers/LoginServices.tsx index 11d5dd575a..8c6695c46e 100644 --- a/app/containers/LoginServices.js +++ b/app/containers/LoginServices.tsx @@ -1,8 +1,5 @@ import React from 'react'; -import { - View, StyleSheet, Text, Animated, Easing, Linking -} from 'react-native'; -import PropTypes from 'prop-types'; +import { View, StyleSheet, Text, Animated, Easing, Linking } from 'react-native'; import { connect } from 'react-redux'; import { Base64 } from 'js-base64'; import * as AppleAuthentication from 'expo-apple-authentication'; @@ -60,21 +57,41 @@ const styles = StyleSheet.create({ } }); -class LoginServices extends React.PureComponent { - static propTypes = { - navigation: PropTypes.object, - server: PropTypes.string, - services: PropTypes.object, - Gitlab_URL: PropTypes.string, - CAS_enabled: PropTypes.bool, - CAS_login_url: PropTypes.string, - separator: PropTypes.bool, - theme: PropTypes.string - } +type TOpenOAuth = { + url?: string; + ssoToken?: string; + authType?: string; +} - static defaultProps = { - separator: true - } +type TService = { + name: string; + service: string; + authType: string; + buttonColor: string; + buttonLabelColor: string; +}; + +interface ILoginServicesProps { + navigation: any; + server: string; + services: { + facebook: {clientId: string;}; + github: {clientId: string;}; + gitlab: {clientId: string;}; + google: {clientId: string;}; + linkedin: {clientId: string;}; + 'meteor-developer': {clientId: string;}; + wordpress: {clientId: string; serverURL: string;}; + }; + Gitlab_URL: string; + CAS_enabled: boolean; + CAS_login_url: string; + separator: boolean; + theme: string; +} + +class LoginServices extends React.PureComponent<ILoginServicesProps, any> { + private _animation: any; state = { collapsed: true, @@ -173,7 +190,7 @@ class LoginServices extends React.PureComponent { this.openOAuth({ url: `${ endpoint }${ params }` }); } - onPressCustomOAuth = (loginService) => { + onPressCustomOAuth = (loginService: any) => { logEvent(events.ENTER_WITH_CUSTOM_OAUTH); const { server } = this.props; const { @@ -188,7 +205,7 @@ class LoginServices extends React.PureComponent { this.openOAuth({ url }); } - onPressSaml = (loginService) => { + onPressSaml = (loginService: any) => { logEvent(events.ENTER_WITH_SAML); const { server } = this.props; const { clientConfig } = loginService; @@ -224,7 +241,7 @@ class LoginServices extends React.PureComponent { getOAuthState = (loginStyle = LOGIN_STYPE_POPUP) => { const credentialToken = random(43); - let obj = { loginStyle, credentialToken, isCordova: true }; + let obj: any = { loginStyle, credentialToken, isCordova: true }; if (loginStyle === LOGIN_STYPE_REDIRECT) { obj = { ...obj, @@ -234,19 +251,21 @@ class LoginServices extends React.PureComponent { return Base64.encodeURI(JSON.stringify(obj)); } - openOAuth = ({ url, ssoToken, authType = 'oauth' }) => { + openOAuth = ({ url, ssoToken, authType = 'oauth' }: TOpenOAuth) => { const { navigation } = this.props; navigation.navigate('AuthenticationWebView', { url, authType, ssoToken }); } - transitionServicesTo = (height) => { + transitionServicesTo = (height: number) => { const { servicesHeight } = this.state; if (this._animation) { this._animation.stop(); } + // @ts-ignore this._animation = Animated.timing(servicesHeight, { toValue: height, duration: 300, + // @ts-ignore easing: Easing.easeOutCubic }).start(); } @@ -260,11 +279,11 @@ class LoginServices extends React.PureComponent { } else { this.transitionServicesTo(SERVICES_COLLAPSED_HEIGHT); } - this.setState(prevState => ({ collapsed: !prevState.collapsed })); + this.setState((prevState: any) => ({ collapsed: !prevState.collapsed })); } - getSocialOauthProvider = (name) => { - const oauthProviders = { + getSocialOauthProvider = (name: string) => { + const oauthProviders: any = { facebook: this.onPressFacebook, github: this.onPressGithub, gitlab: this.onPressGitlab, @@ -303,7 +322,7 @@ class LoginServices extends React.PureComponent { return null; } - renderItem = (service) => { + renderItem = (service: TService) => { const { CAS_enabled, theme } = this.props; let { name } = service; name = name === 'meteor-developer' ? 'meteor' : name; @@ -380,7 +399,7 @@ class LoginServices extends React.PureComponent { return ( <> <Animated.View style={style}> - {Object.values(services).map(service => this.renderItem(service))} + {Object.values(services).map((service: any) => this.renderItem(service))} </Animated.View> {this.renderServicesSeparator()} </> @@ -388,14 +407,14 @@ class LoginServices extends React.PureComponent { } return ( <> - {Object.values(services).map(service => this.renderItem(service))} + {Object.values(services).map((service: any) => this.renderItem(service))} {this.renderServicesSeparator()} </> ); } } -const mapStateToProps = state => ({ +const mapStateToProps = (state: any) => ({ server: state.server.server, Gitlab_URL: state.settings.API_Gitlab_URL, CAS_enabled: state.settings.CAS_enabled, diff --git a/app/containers/MessageErrorActions.js b/app/containers/MessageErrorActions.tsx similarity index 82% rename from app/containers/MessageErrorActions.js rename to app/containers/MessageErrorActions.tsx index d11a693d5e..218d36682b 100644 --- a/app/containers/MessageErrorActions.js +++ b/app/containers/MessageErrorActions.tsx @@ -1,5 +1,4 @@ import { useImperativeHandle, forwardRef } from 'react'; -import PropTypes from 'prop-types'; import RocketChat from '../lib/rocketchat'; import database from '../lib/database'; @@ -8,17 +7,17 @@ import { useActionSheet } from './ActionSheet'; import I18n from '../i18n'; import log from '../utils/log'; -const MessageErrorActions = forwardRef(({ tmid }, ref) => { - const { showActionSheet } = useActionSheet(); +const MessageErrorActions = forwardRef(({ tmid }: any, ref): any => { + const { showActionSheet }: any = useActionSheet(); - const handleResend = protectedFunction(async(message) => { + const handleResend = protectedFunction(async(message: any) => { await RocketChat.resendMessage(message, tmid); }); - const handleDelete = async(message) => { + const handleDelete = async(message: any) => { try { const db = database.active; - const deleteBatch = []; + const deleteBatch: any = []; const msgCollection = db.get('messages'); const threadCollection = db.get('threads'); @@ -39,7 +38,7 @@ const MessageErrorActions = forwardRef(({ tmid }, ref) => { const msg = await msgCollection.find(tmid); if (msg.tcount <= 1) { deleteBatch.push( - msg.prepareUpdate((m) => { + msg.prepareUpdate((m: any) => { m.tcount = null; m.tlm = null; }) @@ -54,7 +53,7 @@ const MessageErrorActions = forwardRef(({ tmid }, ref) => { } } else { deleteBatch.push( - msg.prepareUpdate((m) => { + msg.prepareUpdate((m: any) => { m.tcount -= 1; }) ); @@ -71,7 +70,7 @@ const MessageErrorActions = forwardRef(({ tmid }, ref) => { } }; - const showMessageErrorActions = (message) => { + const showMessageErrorActions = (message: any) => { showActionSheet({ options: [ { @@ -94,8 +93,5 @@ const MessageErrorActions = forwardRef(({ tmid }, ref) => { showMessageErrorActions })); }); -MessageErrorActions.propTypes = { - tmid: PropTypes.string -}; export default MessageErrorActions; diff --git a/app/containers/ReactionsModal.js b/app/containers/ReactionsModal.tsx similarity index 77% rename from app/containers/ReactionsModal.js rename to app/containers/ReactionsModal.tsx index f4f1889d9b..d8c4e90da8 100644 --- a/app/containers/ReactionsModal.js +++ b/app/containers/ReactionsModal.tsx @@ -62,12 +62,35 @@ const styles = StyleSheet.create({ const standardEmojiStyle = { fontSize: 20 }; const customEmojiStyle = { width: 20, height: 20 }; -const Item = React.memo(({ - item, user, baseUrl, getCustomEmoji, theme -}) => { +type TItem = { + item: { + usernames: any; + emoji: string; + }; + user?: {username: any;}; + baseUrl?: string; + getCustomEmoji?: Function; + theme?: string; +}; + +type TModalContent = { + message: { + reactions: any + }; + onClose: Function; + theme: string; +}; + +interface IReactionsModal { + isVisible: boolean; + onClose(): void; + theme: string; +} + +const Item = React.memo(({ item, user, baseUrl, getCustomEmoji, theme }: TItem) => { const count = item.usernames.length; let usernames = item.usernames.slice(0, 3) - .map(username => (username === user.username ? I18n.t('you') : username)).join(', '); + .map((username: any) => (username === user?.username ? I18n.t('you') : username)).join(', '); if (count > 3) { usernames = `${ usernames } ${ I18n.t('and_more') } ${ count - 3 }`; } else { @@ -80,23 +103,21 @@ const Item = React.memo(({ content={item.emoji} standardEmojiStyle={standardEmojiStyle} customEmojiStyle={customEmojiStyle} - baseUrl={baseUrl} - getCustomEmoji={getCustomEmoji} + baseUrl={baseUrl!} + getCustomEmoji={getCustomEmoji!} /> </View> <View style={styles.peopleItemContainer}> - <Text style={[styles.reactCount, { color: themes[theme].buttonText }]}> + <Text style={[styles.reactCount, { color: themes[theme!].buttonText }]}> {count === 1 ? I18n.t('1_person_reacted') : I18n.t('N_people_reacted', { n: count })} </Text> - <Text style={[styles.peopleReacted, { color: themes[theme].buttonText }]}>{ usernames }</Text> + <Text style={[styles.peopleReacted, { color: themes[theme!].buttonText }]}>{ usernames }</Text> </View> </View> ); }); -const ModalContent = React.memo(({ - message, onClose, ...props -}) => { +const ModalContent = React.memo(({ message, onClose, ...props }: TModalContent) => { if (message && message.reactions) { return ( <SafeAreaView style={styles.safeArea}> @@ -122,9 +143,7 @@ const ModalContent = React.memo(({ return null; }); -const ReactionsModal = React.memo(({ - isVisible, onClose, theme, ...props -}) => ( +const ReactionsModal = React.memo(({ isVisible, onClose, theme, ...props }: IReactionsModal) => ( <Modal isVisible={isVisible} onBackdropPress={onClose} @@ -133,31 +152,13 @@ const ReactionsModal = React.memo(({ onSwipeComplete={onClose} swipeDirection={['up', 'left', 'right', 'down']} > + {/*@ts-ignore*/} <ModalContent onClose={onClose} theme={theme} {...props} /> </Modal> ), (prevProps, nextProps) => prevProps.isVisible === nextProps.isVisible && prevProps.theme === nextProps.theme); -ReactionsModal.propTypes = { - isVisible: PropTypes.bool, - onClose: PropTypes.func, - theme: PropTypes.string -}; ReactionsModal.displayName = 'ReactionsModal'; - -ModalContent.propTypes = { - message: PropTypes.object, - onClose: PropTypes.func, - theme: PropTypes.string -}; ModalContent.displayName = 'ReactionsModalContent'; - -Item.propTypes = { - item: PropTypes.object, - user: PropTypes.object, - baseUrl: PropTypes.string, - getCustomEmoji: PropTypes.func, - theme: PropTypes.string -}; Item.displayName = 'ReactionsModalItem'; export default withTheme(ReactionsModal); diff --git a/app/containers/SearchBox.js b/app/containers/SearchBox.tsx similarity index 86% rename from app/containers/SearchBox.js rename to app/containers/SearchBox.tsx index 75ed7f0802..191a01866c 100644 --- a/app/containers/SearchBox.js +++ b/app/containers/SearchBox.tsx @@ -1,6 +1,5 @@ import React from 'react'; import { View, StyleSheet, Text } from 'react-native'; -import PropTypes from 'prop-types'; import Touchable from 'react-native-platform-touchable'; import TextInput from '../presentation/TextInput'; @@ -45,7 +44,17 @@ const styles = StyleSheet.create({ } }); -const CancelButton = (onCancelPress, theme) => ( +interface ISearchBox { + onChangeText: Function; + onSubmitEditing: Function; + hasCancel: boolean; + onCancelPress: Function; + theme: string; + inputRef: any; + testID?: string; +} + +const CancelButton = (onCancelPress: Function, theme: string) => ( <Touchable onPress={onCancelPress} style={styles.cancel}> <Text style={[styles.cancelText, { color: themes[theme].headerTintColor }]}>{I18n.t('Cancel')}</Text> </Touchable> @@ -53,7 +62,7 @@ const CancelButton = (onCancelPress, theme) => ( const SearchBox = ({ onChangeText, onSubmitEditing, testID, hasCancel, onCancelPress, inputRef, theme, ...props -}) => ( +}: ISearchBox) => ( <View style={[ styles.container, @@ -64,6 +73,7 @@ const SearchBox = ({ <CustomIcon name='search' size={14} color={themes[theme].auxiliaryText} /> <TextInput ref={inputRef} + /*@ts-ignore*/ autoCapitalize='none' autoCorrect={false} blurOnSubmit @@ -83,14 +93,4 @@ const SearchBox = ({ </View> ); -SearchBox.propTypes = { - onChangeText: PropTypes.func.isRequired, - onSubmitEditing: PropTypes.func, - hasCancel: PropTypes.bool, - onCancelPress: PropTypes.func, - theme: PropTypes.string, - inputRef: PropTypes.func, - testID: PropTypes.string -}; - export default withTheme(SearchBox); From 9525786c0a6feec63f9f39fdcfaaed0812e7057c Mon Sep 17 00:00:00 2001 From: AlexAlexandre <alexalexandrejr@gmail.com> Date: Tue, 27 Jul 2021 16:33:38 -0300 Subject: [PATCH 42/90] removing unused proptypes import --- app/containers/ReactionsModal.tsx | 5 +---- app/containers/RoomHeader/RoomHeader.tsx | 1 - app/containers/RoomHeader/index.tsx | 1 - app/containers/RoomTypeIcon.tsx | 1 - app/containers/SafeAreaView.tsx | 1 - app/containers/TextInput.tsx | 1 - app/containers/ThreadDetails.tsx | 1 - app/containers/UIKit/MultiSelect/Chips.tsx | 1 - app/containers/UIKit/Select.tsx | 1 - 9 files changed, 1 insertion(+), 12 deletions(-) diff --git a/app/containers/ReactionsModal.tsx b/app/containers/ReactionsModal.tsx index d8c4e90da8..95639bd7e3 100644 --- a/app/containers/ReactionsModal.tsx +++ b/app/containers/ReactionsModal.tsx @@ -1,8 +1,5 @@ import React from 'react'; -import { - View, Text, FlatList, StyleSheet -} from 'react-native'; -import PropTypes from 'prop-types'; +import { View, Text, FlatList, StyleSheet } from 'react-native'; import Modal from 'react-native-modal'; import Touchable from 'react-native-platform-touchable'; diff --git a/app/containers/RoomHeader/RoomHeader.tsx b/app/containers/RoomHeader/RoomHeader.tsx index 3faff5a211..4a753137a5 100644 --- a/app/containers/RoomHeader/RoomHeader.tsx +++ b/app/containers/RoomHeader/RoomHeader.tsx @@ -1,5 +1,4 @@ import React, { useCallback } from 'react'; -import PropTypes from 'prop-types'; import { View, Text, StyleSheet, TouchableOpacity } from 'react-native'; import I18n from '../../i18n'; diff --git a/app/containers/RoomHeader/index.tsx b/app/containers/RoomHeader/index.tsx index c836323789..454494118c 100644 --- a/app/containers/RoomHeader/index.tsx +++ b/app/containers/RoomHeader/index.tsx @@ -1,5 +1,4 @@ import React, { Component } from 'react'; -import PropTypes from 'prop-types'; import { connect } from 'react-redux'; import { dequal } from 'dequal'; diff --git a/app/containers/RoomTypeIcon.tsx b/app/containers/RoomTypeIcon.tsx index e5c8ec0695..20a5a2ddda 100644 --- a/app/containers/RoomTypeIcon.tsx +++ b/app/containers/RoomTypeIcon.tsx @@ -1,6 +1,5 @@ import React from 'react'; import { StyleSheet } from 'react-native'; -import PropTypes from 'prop-types'; import { CustomIcon } from '../lib/Icons'; import { STATUS_COLORS, themes } from '../constants/colors'; import Status from './Status/Status'; diff --git a/app/containers/SafeAreaView.tsx b/app/containers/SafeAreaView.tsx index 12a0ac8063..c0e536f2ed 100644 --- a/app/containers/SafeAreaView.tsx +++ b/app/containers/SafeAreaView.tsx @@ -1,6 +1,5 @@ import React from 'react'; import { StyleSheet } from 'react-native'; -import PropTypes from 'prop-types'; import { SafeAreaView as SafeAreaContext } from 'react-native-safe-area-context'; import { themes } from '../constants/colors'; import { withTheme } from '../theme'; diff --git a/app/containers/TextInput.tsx b/app/containers/TextInput.tsx index 1416fb5230..90d5c33b0c 100644 --- a/app/containers/TextInput.tsx +++ b/app/containers/TextInput.tsx @@ -1,6 +1,5 @@ import React from 'react'; import { View, StyleSheet, Text } from 'react-native'; -import PropTypes from 'prop-types'; import { BorderlessButton } from 'react-native-gesture-handler'; import sharedStyles from '../views/Styles'; diff --git a/app/containers/ThreadDetails.tsx b/app/containers/ThreadDetails.tsx index bb5181d2cf..17fc5fe46c 100644 --- a/app/containers/ThreadDetails.tsx +++ b/app/containers/ThreadDetails.tsx @@ -1,5 +1,4 @@ import React from 'react'; -import PropTypes from 'prop-types'; import { View, Text, StyleSheet } from 'react-native'; import Touchable from 'react-native-platform-touchable'; diff --git a/app/containers/UIKit/MultiSelect/Chips.tsx b/app/containers/UIKit/MultiSelect/Chips.tsx index 2ee98dfb3b..5ccf25ad94 100644 --- a/app/containers/UIKit/MultiSelect/Chips.tsx +++ b/app/containers/UIKit/MultiSelect/Chips.tsx @@ -1,6 +1,5 @@ import React from 'react'; import { Text, View } from 'react-native'; -import PropTypes from 'prop-types'; import Touchable from 'react-native-platform-touchable'; import FastImage from '@rocket.chat/react-native-fast-image'; diff --git a/app/containers/UIKit/Select.tsx b/app/containers/UIKit/Select.tsx index f5e55801ba..7c442a84dc 100644 --- a/app/containers/UIKit/Select.tsx +++ b/app/containers/UIKit/Select.tsx @@ -1,6 +1,5 @@ import React, { useState } from 'react'; import { StyleSheet } from 'react-native'; -import PropTypes from 'prop-types'; import RNPickerSelect from 'react-native-picker-select'; import sharedStyles from '../../views/Styles'; From 107d4da8513048e86c78dd85276abbd733260717 Mon Sep 17 00:00:00 2001 From: AlexAlexandre <alexalexandrejr@gmail.com> Date: Wed, 28 Jul 2021 14:42:18 -0300 Subject: [PATCH 43/90] [IMPROVE] - migrated forgot file --- .../{RoomHeader.stories.js => RoomHeader.stories.tsx} | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) rename app/containers/RoomHeader/{RoomHeader.stories.js => RoomHeader.stories.tsx} (97%) diff --git a/app/containers/RoomHeader/RoomHeader.stories.js b/app/containers/RoomHeader/RoomHeader.stories.tsx similarity index 97% rename from app/containers/RoomHeader/RoomHeader.stories.js rename to app/containers/RoomHeader/RoomHeader.stories.tsx index bfea5e2722..b3fd291364 100644 --- a/app/containers/RoomHeader/RoomHeader.stories.js +++ b/app/containers/RoomHeader/RoomHeader.stories.tsx @@ -11,7 +11,7 @@ import { ThemeContext } from '../../theme'; const stories = storiesOf('RoomHeader', module); // TODO: refactor after react-navigation v6 -const HeaderExample = ({ title }) => ( +const HeaderExample = ({ title }: any) => ( <Header headerTitle={() => ( <View style={{ flex: 1, paddingHorizontal: 12 }}> @@ -77,7 +77,7 @@ stories.add('thread', () => ( </> )); -const ThemeStory = ({ theme }) => ( +const ThemeStory = ({ theme }: any) => ( <ThemeContext.Provider value={{ theme }} > From c6e78265009dabc10abb0e4fdaac8dc74080309f Mon Sep 17 00:00:00 2001 From: AlexAlexandre <alexalexandrejr@gmail.com> Date: Wed, 28 Jul 2021 14:43:32 -0300 Subject: [PATCH 44/90] [IMPROVE] - fix some notes during code review --- app/containers/ActionSheet/ActionSheet.tsx | 4 ++-- app/containers/Avatar/Avatar.tsx | 7 ------- app/containers/OrSeparator.tsx | 4 +--- app/externalModules.d.ts | 1 + 4 files changed, 4 insertions(+), 12 deletions(-) diff --git a/app/containers/ActionSheet/ActionSheet.tsx b/app/containers/ActionSheet/ActionSheet.tsx index 84d304eb8d..6513152e8c 100644 --- a/app/containers/ActionSheet/ActionSheet.tsx +++ b/app/containers/ActionSheet/ActionSheet.tsx @@ -169,7 +169,7 @@ const ActionSheet = React.memo(forwardRef(({ children, theme }: {children: JSX.E ]} /> </TapGestureHandler> - <ScrollBottomSheet<any> + <ScrollBottomSheet testID='action-sheet' ref={bottomSheetRef} componentType='FlatList' @@ -187,7 +187,7 @@ const ActionSheet = React.memo(forwardRef(({ children, theme }: {children: JSX.E // FlatList props data={data?.options} renderItem={renderItem} - keyExtractor={item => item.title} + keyExtractor={(item: any) => item.title} style={{ backgroundColor: themes[theme].focusedBackground }} contentContainerStyle={styles.content} ItemSeparatorComponent={List.Separator} diff --git a/app/containers/Avatar/Avatar.tsx b/app/containers/Avatar/Avatar.tsx index c5f33d9369..acbdde20ab 100644 --- a/app/containers/Avatar/Avatar.tsx +++ b/app/containers/Avatar/Avatar.tsx @@ -119,11 +119,4 @@ const Avatar = React.memo(({ ); }); -// Avatar.defaultProps = { -// text: '', -// size: 25, -// type: 'd', -// borderRadius: 4 -// }; - export default Avatar; diff --git a/app/containers/OrSeparator.tsx b/app/containers/OrSeparator.tsx index 7964e0db7a..957a0ce4fc 100644 --- a/app/containers/OrSeparator.tsx +++ b/app/containers/OrSeparator.tsx @@ -33,9 +33,7 @@ const OrSeparator = React.memo(({ theme }: IOrSeparator) => { return ( <View style={styles.container}> <View style={[styles.line, line]} /> - {/*TODO - see if this line is wrong, probably the correct is styles.text.marginRight*/} - {/*@ts-ignore*/} - <Text style={[styles.text, styles.marginRight, styles.marginLeft, text]}>{I18n.t('OR')}</Text> + <Text style={[styles.text, text]}>{I18n.t('OR')}</Text> <View style={[styles.line, line]} /> </View> ); diff --git a/app/externalModules.d.ts b/app/externalModules.d.ts index d8e87d66cd..d681098360 100644 --- a/app/externalModules.d.ts +++ b/app/externalModules.d.ts @@ -6,3 +6,4 @@ declare module 'react-native-image-progress'; declare module 'react-native-platform-touchable'; declare module 'react-native-ui-lib/keyboard'; declare module '@rocket.chat/ui-kit'; +declare module 'react-native-config-reader'; From bacaf7fc332d4328ee1b952faf4063565ae05935 Mon Sep 17 00:00:00 2001 From: AlexAlexandre <alexalexandrejr@gmail.com> Date: Thu, 29 Jul 2021 12:03:52 -0300 Subject: [PATCH 45/90] [IMPROVE] - fix some notes during code review --- .eslintrc.js | 91 +++++- package.json | 10 +- yarn.lock | 801 +++++++++++++++++++++++++++++++++++++++++++++------ 3 files changed, 802 insertions(+), 100 deletions(-) diff --git a/.eslintrc.js b/.eslintrc.js index 81232dfbd6..0f845cd796 100644 --- a/.eslintrc.js +++ b/.eslintrc.js @@ -7,7 +7,10 @@ module.exports = { } }, "parser": "@babel/eslint-parser", - "extends": "airbnb", + "extends": [ + "@rocket.chat/eslint-config", + // 'plugin:react/recommended' + ], "parserOptions": { "sourceType": "module", "ecmaVersion": 2017, @@ -157,7 +160,7 @@ module.exports = { }], "react/static-property-placement": [0], "arrow-parens": ["error", "as-needed", { requireForBlockBody: true }], - "react/jsx-props-no-spreading": [1], + // "react/jsx-props-no-spreading": [1], "react/jsx-curly-newline": [0], "react/state-in-constructor": [0], "no-async-promise-executor": [0], @@ -183,6 +186,90 @@ module.exports = { 'no-await-in-loop': 0, 'no-restricted-syntax': 0 } + }, + { + "files": [ + "**/*.ts", + "**/*.tsx" + ], + "extends": [ + // 'plugin:react/recommended', + "plugin:@typescript-eslint/recommended", + "plugin:@typescript-eslint/eslint-recommended", + "@rocket.chat/eslint-config" + ], + "parser": "@typescript-eslint/parser", + "parserOptions": { + "sourceType": "module", + "ecmaVersion": 2018, + "warnOnUnsupportedTypeScriptVersion": false, + "ecmaFeatures": { + "experimentalObjectRestSpread": true, + "legacyDecorators": true + } + }, + "plugins": [ + "react", + "@typescript-eslint" + ], + "rules": { + "@typescript-eslint/ban-types": [0], + "func-call-spacing": "off", + "jsx-quotes": [ + "error", + "prefer-single" + ], + "indent": "off", + "no-dupe-class-members": "off", + "no-extra-parens": "off", + "no-spaced-func": "off", + "no-unused-vars": "off", + "no-useless-constructor": "off", + "no-use-before-define": "off", + "react/jsx-uses-react": "error", + "react/jsx-uses-vars": "error", + "react/jsx-no-undef": "error", + "react/jsx-fragments": [ + "error", + "syntax" + ], + "@typescript-eslint/ban-ts-comment": "off", + "@typescript-eslint/indent": [ + "error", + "tab", + { + "SwitchCase": 1 + } + ], + "@typescript-eslint/no-extra-parens": [ + "error", + "all", + { + "conditionalAssign": true, + "nestedBinaryExpressions": false, + "returnAssign": true, + "ignoreJSX": "all", + "enforceForArrowConditionals": false + } + ], + "@typescript-eslint/no-dupe-class-members": "error", + "@typescript-eslint/no-explicit-any": "off", + "@typescript-eslint/no-unused-vars": ["error", { + "argsIgnorePattern": "^_", + "ignoreRestSiblings": true + }] + }, + "settings": { + "import/resolver": { + "node": { + "extensions": [ + ".js", + ".ts", + ".tsx" + ] + } + }, + } } ] }; diff --git a/package.json b/package.json index 46a85b28b4..176318984d 100644 --- a/package.json +++ b/package.json @@ -21,7 +21,7 @@ }, "lint-staged": { "*.{js,ts,tsx}": [ - "eslint", + "eslint", "jest --bail --findRelatedTests" ] }, @@ -133,10 +133,11 @@ }, "devDependencies": { "@babel/core": "^7.12.9", - "@babel/eslint-parser": "^7.13.4", + "@babel/eslint-parser": "^7.14.7", "@babel/eslint-plugin": "^7.13.0", "@babel/plugin-proposal-decorators": "^7.8.3", "@babel/runtime": "^7.12.5", + "@rocket.chat/eslint-config-alt": "^0.27.0", "@storybook/addon-storyshots": "5.3.21", "@storybook/react-native": "5.3.25", "@types/jest": "^26.0.24", @@ -149,14 +150,14 @@ "@types/react-redux": "^7.1.18", "@types/react-test-renderer": "^17.0.1", "@typescript-eslint/eslint-plugin": "^4.28.3", - "@typescript-eslint/parser": "^4.28.3", + "@typescript-eslint/parser": "^4.28.5", "axios": "0.21.1", "babel-jest": "27.0.2", "babel-plugin-transform-remove-console": "^6.9.4", "bugsnag-sourcemaps": "1.3.0", "codecov": "3.8.2", "detox": "18.17.0", - "eslint": "7.14.0", + "eslint": "^7.31.0", "eslint-plugin-import": "2.22.0", "eslint-plugin-jsx-a11y": "6.3.1", "eslint-plugin-react": "7.20.3", @@ -169,6 +170,7 @@ "mocha": "9.0.1", "otp.js": "1.2.0", "patch-package": "6.4.7", + "prettier": "^2.3.2", "react-dom": "17.0.1", "react-test-renderer": "17.0.1", "reactotron-redux": "3.1.3", diff --git a/yarn.lock b/yarn.lock index 4c464a8a22..8dd4ef1760 100644 --- a/yarn.lock +++ b/yarn.lock @@ -2,6 +2,13 @@ # yarn lockfile v1 +"@babel/code-frame@7.12.11": + version "7.12.11" + resolved "https://registry.yarnpkg.com/@babel/code-frame/-/code-frame-7.12.11.tgz#f4ad435aa263db935b8f10f2c552d23fb716a63f" + integrity sha512-Zt1yodBx1UcyiePMSkWnU4hPqhwq7hGi2nFL1LeA3EUl+q2LQx16MISgJ0+z7dnmgvP9QtIleuETGOiOH1RcIw== + dependencies: + "@babel/highlight" "^7.10.4" + "@babel/code-frame@7.5.5": version "7.5.5" resolved "https://registry.yarnpkg.com/@babel/code-frame/-/code-frame-7.5.5.tgz#bc0782f6d69f7b7d49531219699b988f669a8f9d" @@ -105,7 +112,7 @@ semver "^5.4.1" source-map "^0.5.0" -"@babel/eslint-parser@^7.13.4": +"@babel/eslint-parser@^7.14.7": version "7.14.7" resolved "https://registry.yarnpkg.com/@babel/eslint-parser/-/eslint-parser-7.14.7.tgz#91be59a4f7dd60d02a3ef772d156976465596bda" integrity sha512-6WPwZqO5priAGIwV6msJcdc9TsEPzYeYdS/Xuoap+/ihkgN6dzHp2bcAAwyWZ5bLzk0vvjDmKvRwkqNaiJ8BiQ== @@ -1978,19 +1985,18 @@ resolved "https://registry.yarnpkg.com/@emotion/weak-memoize/-/weak-memoize-0.2.5.tgz#8eed982e2ee6f7f4e44c253e12962980791efd46" integrity sha512-6U71C2Wp7r5XtFtQzYrW5iKFT67OixrSxjI4MptCHzdSVlgabczzqLe0ZSgnub/5Kp4hSbpDB1tMytZY9pwxxA== -"@eslint/eslintrc@^0.2.1": - version "0.2.2" - resolved "https://registry.yarnpkg.com/@eslint/eslintrc/-/eslintrc-0.2.2.tgz#d01fc791e2fc33e88a29d6f3dc7e93d0cd784b76" - integrity sha512-EfB5OHNYp1F4px/LI/FEnGylop7nOqkQ1LRzCM0KccA2U8tvV8w01KBv37LbO7nW4H+YhKyo2LcJhRwjjV17QQ== +"@eslint/eslintrc@^0.4.3": + version "0.4.3" + resolved "https://registry.yarnpkg.com/@eslint/eslintrc/-/eslintrc-0.4.3.tgz#9e42981ef035beb3dd49add17acb96e8ff6f394c" + integrity sha512-J6KFFz5QCYUJq3pf0mjEcCJVERbzv71PUIDczuh9JkwGEzced6CO5ADLHB1rbf/+oPBtoPfMYNOpGDzCANlbXw== dependencies: ajv "^6.12.4" debug "^4.1.1" espree "^7.3.0" - globals "^12.1.0" + globals "^13.9.0" ignore "^4.0.6" import-fresh "^3.2.1" js-yaml "^3.13.1" - lodash "^4.17.19" minimatch "^3.0.4" strip-json-comments "^3.1.1" @@ -2006,6 +2012,20 @@ dependencies: "@hapi/hoek" "^9.0.0" +"@humanwhocodes/config-array@^0.5.0": + version "0.5.0" + resolved "https://registry.yarnpkg.com/@humanwhocodes/config-array/-/config-array-0.5.0.tgz#1407967d4c6eecd7388f83acf1eaf4d0c6e58ef9" + integrity sha512-FagtKFz74XrTl7y6HCzQpwDfXP0yhxe9lHLD1UZxjvZIcbyRz8zTFF/yYNfSfzU414eDwZ1SrO0Qvtyf+wFMQg== + dependencies: + "@humanwhocodes/object-schema" "^1.2.0" + debug "^4.1.1" + minimatch "^3.0.4" + +"@humanwhocodes/object-schema@^1.2.0": + version "1.2.0" + resolved "https://registry.yarnpkg.com/@humanwhocodes/object-schema/-/object-schema-1.2.0.tgz#87de7af9c231826fdd68ac7258f77c429e0e5fcf" + integrity sha512-wdppn25U8z/2yiaT6YGquE6X8sSv7hNMWSXYSSU1jGv/yd6XqjXgTDJ8KP4NgjTXfJ3GbRjeeb8RTV7a/VpM+w== + "@hypnosphi/create-react-context@^0.3.1": version "0.3.1" resolved "https://registry.yarnpkg.com/@hypnosphi/create-react-context/-/create-react-context-0.3.1.tgz#f8bfebdc7665f5d426cba3753e0e9c7d3154d7c6" @@ -2752,11 +2772,32 @@ call-me-maybe "^1.0.1" glob-to-regexp "^0.3.0" +"@nodelib/fs.scandir@2.1.5": + version "2.1.5" + resolved "https://registry.yarnpkg.com/@nodelib/fs.scandir/-/fs.scandir-2.1.5.tgz#7619c2eb21b25483f6d167548b4cfd5a7488c3d5" + integrity sha512-vq24Bq3ym5HEQm2NKCr3yXDwjc7vTsEThRDnkp2DK9p1uqLR+DHurm/NOTo0KG7HYHU7eppKZj3MyqYuMBf62g== + dependencies: + "@nodelib/fs.stat" "2.0.5" + run-parallel "^1.1.9" + +"@nodelib/fs.stat@2.0.5", "@nodelib/fs.stat@^2.0.2": + version "2.0.5" + resolved "https://registry.yarnpkg.com/@nodelib/fs.stat/-/fs.stat-2.0.5.tgz#5bd262af94e9d25bd1e71b05deed44876a222e8b" + integrity sha512-RkhPPp2zrqDAQA/2jNhnztcPAlv64XdhIp7a7454A5ovI7Bukxgt7MX7udwAu3zg1DcpPU0rz3VV1SeaqvY4+A== + "@nodelib/fs.stat@^1.1.2": version "1.1.3" resolved "https://registry.yarnpkg.com/@nodelib/fs.stat/-/fs.stat-1.1.3.tgz#2b5a3ab3f918cca48a8c754c08168e3f03eba61b" integrity sha512-shAmDyaQC4H92APFoIaVDHCx5bStIocgvbwQyxPRrbUY20V1EYTbSDchWbuwlMG3V17cprZhA6+78JfB+3DTPw== +"@nodelib/fs.walk@^1.2.3": + version "1.2.8" + resolved "https://registry.yarnpkg.com/@nodelib/fs.walk/-/fs.walk-1.2.8.tgz#e95737e8bb6746ddedf69c556953494f196fe69a" + integrity sha512-oGB+UxlgWcgQkgwo8GcEGwemoTFt3FIO9ababBmaGwXIoBKZ+GTy0pP185beGg7Llih/NSHSV2XAs1lnznocSg== + dependencies: + "@nodelib/fs.scandir" "2.1.5" + fastq "^1.6.0" + "@nozbe/sqlite@3.31.1": version "3.31.1" resolved "https://registry.yarnpkg.com/@nozbe/sqlite/-/sqlite-3.31.1.tgz#ffd394ad7c188c6b73f89fd6e1ccb849a1b96dba" @@ -3113,6 +3154,28 @@ resolved "https://registry.yarnpkg.com/@redux-saga/types/-/types-1.1.0.tgz#0e81ce56b4883b4b2a3001ebe1ab298b84237204" integrity sha512-afmTuJrylUU/0OtqzaRkbyYFFNgCF73Bvel/sw90pvGrWIZ+vyoIJqA6eMSoA6+nb443kTmulmBtC9NerXboNg== +"@rocket.chat/eslint-config-alt@^0.27.0": + version "0.27.0" + resolved "https://registry.yarnpkg.com/@rocket.chat/eslint-config-alt/-/eslint-config-alt-0.27.0.tgz#9367ce03924a4f3abc1f7fdc0aa4967fa979d04b" + integrity sha512-oxNIb8WkYsXixNhacbMub99h8TFZOrYefh2I7B0nlXSrNNzNAmA2AfyQNYaWJXWDYwFYq0PKE8zKtJEN653sGg== + dependencies: + "@rocket.chat/eslint-config" "^0.4.0" + "@typescript-eslint/eslint-plugin" "^4.22.1" + "@typescript-eslint/parser" "^4.22.1" + eslint-config-prettier "^8.3.0" + eslint-import-resolver-typescript "^2.4.0" + eslint-plugin-import "^2.22.1" + eslint-plugin-prettier "^3.4.0" + eslint-plugin-react "^7.23.2" + eslint-plugin-react-hooks "^4.2.0" + +"@rocket.chat/eslint-config@^0.4.0": + version "0.4.0" + resolved "https://registry.yarnpkg.com/@rocket.chat/eslint-config/-/eslint-config-0.4.0.tgz#d648decd02ae739eac17a32e1630332a75318ea1" + integrity sha512-uVxoH3/TtusmXp73JtmDKlKK3EQTk+F/tnvVxfSAeyDCAS1/8HeZS+r81md3EOtRvmu1dselXg8+R1eO55QZfg== + dependencies: + eslint-plugin-import "^2.17.2" + "@rocket.chat/react-native-fast-image@^8.2.0": version "8.2.0" resolved "https://registry.yarnpkg.com/@rocket.chat/react-native-fast-image/-/react-native-fast-image-8.2.0.tgz#4f48858f95f40afcb10b39cee9b1239c150d6c51" @@ -3668,16 +3731,34 @@ dependencies: jest-diff "^24.3.0" +"@types/jest@^26.0.24": + version "26.0.24" + resolved "https://registry.yarnpkg.com/@types/jest/-/jest-26.0.24.tgz#943d11976b16739185913a1936e0de0c4a7d595a" + integrity sha512-E/X5Vib8BWqZNRlDxj9vYXhsDwPYbPINqKF9BsnSoon4RQ0D9moEuLD8txgyypFLH7J4+Lho9Nr/c8H0Fi+17w== + dependencies: + jest-diff "^26.0.0" + pretty-format "^26.0.0" + "@types/json-schema@^7.0.5": version "7.0.7" resolved "https://registry.yarnpkg.com/@types/json-schema/-/json-schema-7.0.7.tgz#98a993516c859eb0d5c4c8f098317a9ea68db9ad" integrity sha512-cxWFQVseBm6O9Gbw1IWb8r6OS4OhSt3hPZLkFApLjM8TEXROBuQGLAH2i2gZpcXdLBIrpXuTDhH7Vbm1iXmNGA== +"@types/json-schema@^7.0.7": + version "7.0.8" + resolved "https://registry.yarnpkg.com/@types/json-schema/-/json-schema-7.0.8.tgz#edf1bf1dbf4e04413ca8e5b17b3b7d7d54b59818" + integrity sha512-YSBPTLTVm2e2OoQIDYx8HaeWJ5tTToLH67kXR7zYNGupXMEHa2++G8k+DczX2cFVgalypqtyZIcU19AFcmOpmg== + "@types/json5@^0.0.29": version "0.0.29" resolved "https://registry.yarnpkg.com/@types/json5/-/json5-0.0.29.tgz#ee28707ae94e11d2b827bcbe5270bcea7f3e71ee" integrity sha1-7ihweulOEdK4J7y+UnC86n8+ce4= +"@types/lodash@^4.14.171": + version "4.14.171" + resolved "https://registry.yarnpkg.com/@types/lodash/-/lodash-4.14.171.tgz#f01b3a5fe3499e34b622c362a46a609fdb23573b" + integrity sha512-7eQ2xYLLI/LsicL2nejW9Wyko3lcpN6O/z0ZLHrEQsg280zIdCv1t/0m6UtBjUHokCGBQ3gYTbHzDkZ1xOBwwg== + "@types/minimatch@*": version "3.0.3" resolved "https://registry.yarnpkg.com/@types/minimatch/-/minimatch-3.0.3.tgz#3dca0e3f33b200fc7d1139c0cd96c1268cadfd9d" @@ -3721,6 +3802,34 @@ "@types/history" "*" "@types/react" "*" +"@types/react-native-config-reader@^4.1.0": + version "4.1.0" + resolved "https://registry.yarnpkg.com/@types/react-native-config-reader/-/react-native-config-reader-4.1.0.tgz#33066cd0452b86b605b41bed47b38470dd85d428" + integrity sha512-meRB7e21CUmeS+so51CthLRQxZBymHZoDpq3UaDQHP9ucYbdeA7E0WFoI9vQE1h6kX3Mau3wyU2wQTZiD2674Q== + +"@types/react-native-platform-touchable@^1.1.2": + version "1.1.2" + resolved "https://registry.yarnpkg.com/@types/react-native-platform-touchable/-/react-native-platform-touchable-1.1.2.tgz#c0060f679ffe2ff96960cfde8b60c0fe87168ebf" + integrity sha512-nRA5GuDdG1e2I3f5Ukwdlbw1d0H2GbBU+j0H16/cNelVYPz3zLoxcCHhkNdZ9Wr8LVgVcvqK7vKXG+mzepvpMw== + dependencies: + "@types/react" "*" + "@types/react-native" "*" + +"@types/react-native-scrollable-tab-view@^0.10.2": + version "0.10.2" + resolved "https://registry.yarnpkg.com/@types/react-native-scrollable-tab-view/-/react-native-scrollable-tab-view-0.10.2.tgz#a6006efcad320b9dffd23b080cfe153cebcbc1a6" + integrity sha512-N6IObGTHFKIi2/lFqMLcUICjzqA8phbNWUC6apAdfBnJSrGWkHjTctPt28qpYaQA6KqtCsmhZ19RpzszDje0pg== + dependencies: + "@types/react" "*" + "@types/react-native" "*" + +"@types/react-native@*": + version "0.64.12" + resolved "https://registry.yarnpkg.com/@types/react-native/-/react-native-0.64.12.tgz#1c6a3226c26d7a5949cdf8878e6cfe95fe0951d6" + integrity sha512-sw6WGSaL219zqrgdb4kQUtFB9iGXC/LmecLZ+UUWEgwYvD0YH81FqWYmONa2HuTkOFAsxu2bK4DspkWRUHIABQ== + dependencies: + "@types/react" "*" + "@types/react-native@^0.62.7": version "0.62.10" resolved "https://registry.yarnpkg.com/@types/react-native/-/react-native-0.62.10.tgz#82c481df21db4e7460755dc3fc7091e333a1d2bd" @@ -3738,6 +3847,16 @@ hoist-non-react-statics "^3.3.0" redux "^4.0.0" +"@types/react-redux@^7.1.18": + version "7.1.18" + resolved "https://registry.yarnpkg.com/@types/react-redux/-/react-redux-7.1.18.tgz#2bf8fd56ebaae679a90ebffe48ff73717c438e04" + integrity sha512-9iwAsPyJ9DLTRH+OFeIrm9cAbIj1i2ANL3sKQFATqnPWRbg+jEFXyZOKHiQK/N86pNRXbb4HRxAxo0SIX1XwzQ== + dependencies: + "@types/hoist-non-react-statics" "^3.3.0" + "@types/react" "*" + hoist-non-react-statics "^3.3.0" + redux "^4.0.0" + "@types/react-syntax-highlighter@11.0.4": version "11.0.4" resolved "https://registry.yarnpkg.com/@types/react-syntax-highlighter/-/react-syntax-highlighter-11.0.4.tgz#d86d17697db62f98046874f62fdb3e53a0bbc4cd" @@ -3745,6 +3864,13 @@ dependencies: "@types/react" "*" +"@types/react-test-renderer@^17.0.1": + version "17.0.1" + resolved "https://registry.yarnpkg.com/@types/react-test-renderer/-/react-test-renderer-17.0.1.tgz#3120f7d1c157fba9df0118dae20cb0297ee0e06b" + integrity sha512-3Fi2O6Zzq/f3QR9dRnlnHso9bMl7weKCviFmfF6B4LS1Uat6Hkm15k0ZAQuDz+UBq6B3+g+NM6IT2nr5QgPzCw== + dependencies: + "@types/react" "*" + "@types/react-textarea-autosize@^4.3.3": version "4.3.5" resolved "https://registry.yarnpkg.com/@types/react-textarea-autosize/-/react-textarea-autosize-4.3.5.tgz#6c4d2753fa1864c98c0b2b517f67bb1f6e4c46de" @@ -3769,6 +3895,15 @@ "@types/scheduler" "*" csstype "^3.0.2" +"@types/react@^17.0.14": + version "17.0.15" + resolved "https://registry.yarnpkg.com/@types/react/-/react-17.0.15.tgz#c7533dc38025677e312606502df7656a6ea626d0" + integrity sha512-uTKHDK9STXFHLaKv6IMnwp52fm0hwU+N89w/p9grdUqcFA6WuqDyPhaWopbNyE1k/VhgzmHl8pu1L4wITtmlLw== + dependencies: + "@types/prop-types" "*" + "@types/scheduler" "*" + csstype "^3.0.2" + "@types/scheduler@*": version "0.16.1" resolved "https://registry.yarnpkg.com/@types/scheduler/-/scheduler-0.16.1.tgz#18845205e86ff0038517aab7a18a62a6b9f71275" @@ -3853,6 +3988,75 @@ dependencies: "@types/yargs-parser" "*" +"@typescript-eslint/eslint-plugin@^4.22.1", "@typescript-eslint/eslint-plugin@^4.28.3": + version "4.28.5" + resolved "https://registry.yarnpkg.com/@typescript-eslint/eslint-plugin/-/eslint-plugin-4.28.5.tgz#8197f1473e7da8218c6a37ff308d695707835684" + integrity sha512-m31cPEnbuCqXtEZQJOXAHsHvtoDi9OVaeL5wZnO2KZTnkvELk+u6J6jHg+NzvWQxk+87Zjbc4lJS4NHmgImz6Q== + dependencies: + "@typescript-eslint/experimental-utils" "4.28.5" + "@typescript-eslint/scope-manager" "4.28.5" + debug "^4.3.1" + functional-red-black-tree "^1.0.1" + regexpp "^3.1.0" + semver "^7.3.5" + tsutils "^3.21.0" + +"@typescript-eslint/experimental-utils@4.28.5": + version "4.28.5" + resolved "https://registry.yarnpkg.com/@typescript-eslint/experimental-utils/-/experimental-utils-4.28.5.tgz#66c28bef115b417cf9d80812a713e0e46bb42a64" + integrity sha512-bGPLCOJAa+j49hsynTaAtQIWg6uZd8VLiPcyDe4QPULsvQwLHGLSGKKcBN8/lBxIX14F74UEMK2zNDI8r0okwA== + dependencies: + "@types/json-schema" "^7.0.7" + "@typescript-eslint/scope-manager" "4.28.5" + "@typescript-eslint/types" "4.28.5" + "@typescript-eslint/typescript-estree" "4.28.5" + eslint-scope "^5.1.1" + eslint-utils "^3.0.0" + +"@typescript-eslint/parser@^4.22.1", "@typescript-eslint/parser@^4.28.5": + version "4.28.5" + resolved "https://registry.yarnpkg.com/@typescript-eslint/parser/-/parser-4.28.5.tgz#9c971668f86d1b5c552266c47788a87488a47d1c" + integrity sha512-NPCOGhTnkXGMqTznqgVbA5LqVsnw+i3+XA1UKLnAb+MG1Y1rP4ZSK9GX0kJBmAZTMIktf+dTwXToT6kFwyimbw== + dependencies: + "@typescript-eslint/scope-manager" "4.28.5" + "@typescript-eslint/types" "4.28.5" + "@typescript-eslint/typescript-estree" "4.28.5" + debug "^4.3.1" + +"@typescript-eslint/scope-manager@4.28.5": + version "4.28.5" + resolved "https://registry.yarnpkg.com/@typescript-eslint/scope-manager/-/scope-manager-4.28.5.tgz#3a1b70c50c1535ac33322786ea99ebe403d3b923" + integrity sha512-PHLq6n9nTMrLYcVcIZ7v0VY1X7dK309NM8ya9oL/yG8syFINIMHxyr2GzGoBYUdv3NUfCOqtuqps0ZmcgnZTfQ== + dependencies: + "@typescript-eslint/types" "4.28.5" + "@typescript-eslint/visitor-keys" "4.28.5" + +"@typescript-eslint/types@4.28.5": + version "4.28.5" + resolved "https://registry.yarnpkg.com/@typescript-eslint/types/-/types-4.28.5.tgz#d33edf8e429f0c0930a7c3d44e9b010354c422e9" + integrity sha512-MruOu4ZaDOLOhw4f/6iudyks/obuvvZUAHBDSW80Trnc5+ovmViLT2ZMDXhUV66ozcl6z0LJfKs1Usldgi/WCA== + +"@typescript-eslint/typescript-estree@4.28.5": + version "4.28.5" + resolved "https://registry.yarnpkg.com/@typescript-eslint/typescript-estree/-/typescript-estree-4.28.5.tgz#4906d343de693cf3d8dcc301383ed638e0441cd1" + integrity sha512-FzJUKsBX8poCCdve7iV7ShirP8V+ys2t1fvamVeD1rWpiAnIm550a+BX/fmTHrjEpQJ7ZAn+Z7ZZwJjytk9rZw== + dependencies: + "@typescript-eslint/types" "4.28.5" + "@typescript-eslint/visitor-keys" "4.28.5" + debug "^4.3.1" + globby "^11.0.3" + is-glob "^4.0.1" + semver "^7.3.5" + tsutils "^3.21.0" + +"@typescript-eslint/visitor-keys@4.28.5": + version "4.28.5" + resolved "https://registry.yarnpkg.com/@typescript-eslint/visitor-keys/-/visitor-keys-4.28.5.tgz#ffee2c602762ed6893405ee7c1144d9cc0a29675" + integrity sha512-dva/7Rr+EkxNWdJWau26xU/0slnFlkh88v3TsyTgRS/IIYFi5iIfpCFM4ikw0vQTFUR9FYSSyqgK4w64gsgxhg== + dependencies: + "@typescript-eslint/types" "4.28.5" + eslint-visitor-keys "^2.0.0" + "@ungap/promise-all-settled@1.1.2": version "1.1.2" resolved "https://registry.yarnpkg.com/@ungap/promise-all-settled/-/promise-all-settled-1.1.2.tgz#aa58042711d6e3275dd37dc597e5d31e8c290a44" @@ -4180,6 +4384,16 @@ ajv@^6.12.4: json-schema-traverse "^0.4.1" uri-js "^4.2.2" +ajv@^8.0.1: + version "8.6.2" + resolved "https://registry.yarnpkg.com/ajv/-/ajv-8.6.2.tgz#2fb45e0e5fcbc0813326c1c3da535d1881bb0571" + integrity sha512-9807RlWAgT564wT+DjeyU5OFMPjmzxVobvDFmNAhY+5zD6A2ly3jDp6sgnfyDtlIQ+7H97oc/DGCzzfu9rjw9w== + dependencies: + fast-deep-equal "^3.1.1" + json-schema-traverse "^1.0.0" + require-from-string "^2.0.2" + uri-js "^4.2.2" + anser@^1.4.9: version "1.4.10" resolved "https://registry.yarnpkg.com/anser/-/anser-1.4.10.tgz#befa3eddf282684bd03b63dcda3927aef8c2e35b" @@ -4214,6 +4428,13 @@ ansi-escapes@^4.2.1: dependencies: type-fest "^0.11.0" +ansi-escapes@^4.3.0: + version "4.3.2" + resolved "https://registry.yarnpkg.com/ansi-escapes/-/ansi-escapes-4.3.2.tgz#6b2291d1db7d98b6521d5f1efa42d0f3a9feb65e" + integrity sha512-gKXj5ALrKWQLsYG9jlTRmR/xKluxHV+Z9QEwNIgCfM1/uwPMCuzVVnh5mwTd+OuBZcwSIMbqssNWRm1lE51QaQ== + dependencies: + type-fest "^0.21.3" + ansi-fragments@^0.2.1: version "0.2.1" resolved "https://registry.yarnpkg.com/ansi-fragments/-/ansi-fragments-0.2.1.tgz#24409c56c4cc37817c3d7caa99d8969e2de5a05e" @@ -4403,6 +4624,17 @@ array-includes@^3.0.3, array-includes@^3.1.1: es-abstract "^1.17.0" is-string "^1.0.5" +array-includes@^3.1.2, array-includes@^3.1.3: + version "3.1.3" + resolved "https://registry.yarnpkg.com/array-includes/-/array-includes-3.1.3.tgz#c7f619b382ad2afaf5326cddfdc0afc61af7690a" + integrity sha512-gcem1KlBU7c9rB+Rq8/3PPKsK2kjqeEBa3bD5kkQo4nYlOHQCJqIJFqBXDEfwaRuYTT4E+FxA9xez7Gf/e3Q7A== + dependencies: + call-bind "^1.0.2" + define-properties "^1.1.3" + es-abstract "^1.18.0-next.2" + get-intrinsic "^1.1.1" + is-string "^1.0.5" + array-map@~0.0.0: version "0.0.0" resolved "https://registry.yarnpkg.com/array-map/-/array-map-0.0.0.tgz#88a2bab73d1cf7bcd5c1b118a003f66f665fa662" @@ -4420,6 +4652,11 @@ array-union@^1.0.1: dependencies: array-uniq "^1.0.1" +array-union@^2.1.0: + version "2.1.0" + resolved "https://registry.yarnpkg.com/array-union/-/array-union-2.1.0.tgz#b798420adbeb1de828d84acd8a2e23d3efe85e8d" + integrity sha512-HGyxoOTYUyCM6stUe6EJgnd4EoewAI7zMdfqO+kGjnlZmBDz/cR5pf8r/cR4Wq60sL/p0IkcjUEEPwS3GFrIyw== + array-uniq@^1.0.1: version "1.0.3" resolved "https://registry.yarnpkg.com/array-uniq/-/array-uniq-1.0.3.tgz#af6ac877a25cc7f74e058894753858dfdb24fdb6" @@ -4438,7 +4675,7 @@ array.prototype.flat@^1.2.1: define-properties "^1.1.3" es-abstract "^1.17.0-next.1" -array.prototype.flat@^1.2.3: +array.prototype.flat@^1.2.3, array.prototype.flat@^1.2.4: version "1.2.4" resolved "https://registry.yarnpkg.com/array.prototype.flat/-/array.prototype.flat-1.2.4.tgz#6ef638b43312bd401b4c6199fdec7e2dc9e9a123" integrity sha512-4470Xi3GAPAjZqFcljX2xzckv1qeKPizoNkiS0+O4IoPR2ZNpcjE0pkhdihlDouK+x6QOast26B4Q/O9DJnwSg== @@ -4456,7 +4693,7 @@ array.prototype.flatmap@^1.2.1: es-abstract "^1.17.0-next.1" function-bind "^1.1.1" -array.prototype.flatmap@^1.2.3: +array.prototype.flatmap@^1.2.3, array.prototype.flatmap@^1.2.4: version "1.2.4" resolved "https://registry.yarnpkg.com/array.prototype.flatmap/-/array.prototype.flatmap-1.2.4.tgz#94cfd47cc1556ec0747d97f7c7738c58122004c9" integrity sha512-r9Z0zYoxqHz60vvQbWEdXIEtCwHF0yxaWfno9qzXeNHvfyl3BZqygmGzb84dsubyaXLH4husF+NFgMSdpZhk2Q== @@ -4530,6 +4767,11 @@ astral-regex@^1.0.0: resolved "https://registry.yarnpkg.com/astral-regex/-/astral-regex-1.0.0.tgz#6c8c3fb827dd43ee3918f27b82782ab7658a6fd9" integrity sha512-+Ryf6g3BKoRc7jfp7ad8tM4TtMiaWvbF/1/sQcZPkkS7ag3D5nMBCe2UfOTONtAkaG0tO0ij3C5Lwmf1EiyjHg== +astral-regex@^2.0.0: + version "2.0.0" + resolved "https://registry.yarnpkg.com/astral-regex/-/astral-regex-2.0.0.tgz#483143c567aeed4785759c0865786dc77d7d2e31" + integrity sha512-Z7tMw1ytTXt5jqMcOP+OQteU1VuNK9Y02uuJtKQ1Sv69jXQKKg5cibLwGJow8yzZP+eAc18EmLGPal0bp36rvQ== + async-each@^1.0.1: version "1.0.3" resolved "https://registry.yarnpkg.com/async-each/-/async-each-1.0.3.tgz#b727dbf87d7651602f06f4d4ac387f47d91b0cbf" @@ -5675,7 +5917,7 @@ chalk@^3.0.0: ansi-styles "^4.1.0" supports-color "^7.1.0" -chalk@^4.0.0, chalk@^4.1.0: +chalk@^4.0.0, chalk@^4.1.0, chalk@^4.1.1: version "4.1.1" resolved "https://registry.yarnpkg.com/chalk/-/chalk-4.1.1.tgz#c80b3fab28bf6371e6863325eee67e618b77e6ad" integrity sha512-diHzdDKxcU+bAsUboHLPEDQiw0qEe0qd7SYUn3HgcFlWgbDcfLGswOHYeGrHKzG9z6UYf01d9VFMfZxPM1xZSg== @@ -5867,6 +6109,14 @@ cli-table3@0.5.1: optionalDependencies: colors "^1.1.2" +cli-truncate@^2.1.0: + version "2.1.0" + resolved "https://registry.yarnpkg.com/cli-truncate/-/cli-truncate-2.1.0.tgz#c39e28bf05edcde5be3b98992a22deed5a2b93c7" + integrity sha512-n8fOixwDD6b/ObinzTrp1ZKFzbgvKZvuz/TvejnLn1aQfC6r52XEx85FmuC+3HI+JM7coBRXUvNqEU2PHVrHpg== + dependencies: + slice-ansi "^3.0.0" + string-width "^4.2.0" + cli-width@^2.0.0: version "2.2.1" resolved "https://registry.yarnpkg.com/cli-width/-/cli-width-2.2.1.tgz#b0433d0b4e9c847ef18868a4ef16fd5fc8271c48" @@ -6049,6 +6299,11 @@ commander@^4.0.1, commander@^4.1.1: resolved "https://registry.yarnpkg.com/commander/-/commander-4.1.1.tgz#9fd602bd936294e9e9ef46a3f4d6964044b18068" integrity sha512-NOKm8xhkzAjzFx8B2v5OAHT+u5pRQc2UCa2Vq9jYL/31o2wi9mxBA7LIFs3sV5VSC49z6pEhfbMULvShKj26WA== +commander@^7.2.0: + version "7.2.0" + resolved "https://registry.yarnpkg.com/commander/-/commander-7.2.0.tgz#a36cb57d0b501ce108e4d20559a150a391d97ab7" + integrity sha512-QrWXB+ZQSVPmIWIhtEO9H+gwHaMGYiF5ChvoJ+K9ZGHG/sVsa6yiesAD1GC/x46sET00Xlwo1u49RVVVzvcSkw== + commander@~2.13.0: version "2.13.0" resolved "https://registry.yarnpkg.com/commander/-/commander-2.13.0.tgz#6964bca67685df7c1f1430c584f07d7597885b9c" @@ -6323,6 +6578,17 @@ cosmiconfig@^6.0.0: path-type "^4.0.0" yaml "^1.7.2" +cosmiconfig@^7.0.0: + version "7.0.0" + resolved "https://registry.yarnpkg.com/cosmiconfig/-/cosmiconfig-7.0.0.tgz#ef9b44d773959cae63ddecd122de23853b60f8d3" + integrity sha512-pondGvTuVYDk++upghXJabWzL6Kxu6f26ljFw64Swq9v6sQPUL3EUlVDV56diOjpCayKihL6hVe8exIACU4XcA== + dependencies: + "@types/parse-json" "^4.0.0" + import-fresh "^3.2.1" + parse-json "^5.0.0" + path-type "^4.0.0" + yaml "^1.10.0" + create-ecdh@^4.0.0: version "4.0.3" resolved "https://registry.yarnpkg.com/create-ecdh/-/create-ecdh-4.0.3.tgz#c9111b6f33045c4697f144787f9254cdc77c45ff" @@ -6569,6 +6835,13 @@ debug@^3.2.5, debug@^3.2.7: dependencies: ms "^2.1.1" +debug@^4.3.1: + version "4.3.2" + resolved "https://registry.yarnpkg.com/debug/-/debug-4.3.2.tgz#f0a49c18ac8779e31d4a0c6029dfb76873c7428b" + integrity sha512-mOp8wKcvj7XxC78zLgw/ZA+6TSgkoE2C/ienthhRD298T7UNwAg9diBpLRxC0mOezLl4B0xV7M0cCO6P/O0Xhw== + dependencies: + ms "2.1.2" + decamelize@^1.1.2, decamelize@^1.2.0: version "1.2.0" resolved "https://registry.yarnpkg.com/decamelize/-/decamelize-1.2.0.tgz#f6534d15148269b20352e7bee26f501f9a191290" @@ -6816,6 +7089,13 @@ dir-glob@2.0.0: arrify "^1.0.1" path-type "^3.0.0" +dir-glob@^3.0.1: + version "3.0.1" + resolved "https://registry.yarnpkg.com/dir-glob/-/dir-glob-3.0.1.tgz#56dbf73d992a4a93ba1584f4534063fd2e41717f" + integrity sha512-WkrWp9GR4KXfKGYzOLmTuGVi1UWFfws377n9cc55/tb6DuqyF6pcQ5AbiHEshaDpY9v6oaSr2XCDidGmMwdzIA== + dependencies: + path-type "^4.0.0" + doctrine@1.5.0: version "1.5.0" resolved "https://registry.yarnpkg.com/doctrine/-/doctrine-1.5.0.tgz#379dce730f6166f76cefa4e6707a159b02c5a6fa" @@ -7084,7 +7364,7 @@ enhanced-resolve@^4.5.0: memory-fs "^0.5.0" tapable "^1.0.0" -enquirer@^2.3.5: +enquirer@^2.3.5, enquirer@^2.3.6: version "2.3.6" resolved "https://registry.yarnpkg.com/enquirer/-/enquirer-2.3.6.tgz#2a7fe5dd634a1e4125a975ec994ff5456dc3734d" integrity sha512-yjNnPr315/FjS4zIsUxYguYUPP2e1NK4d7E7ZOLiyYCcbFBiTMyID+2wvm2w6+pZ/odMA7cRkjhsPbltwBOrLg== @@ -7266,7 +7546,12 @@ eslint-config-airbnb@^18.1.0: object.assign "^4.1.0" object.entries "^1.1.1" -eslint-import-resolver-node@^0.3.3: +eslint-config-prettier@^8.3.0: + version "8.3.0" + resolved "https://registry.yarnpkg.com/eslint-config-prettier/-/eslint-config-prettier-8.3.0.tgz#f7471b20b6fe8a9a9254cc684454202886a2dd7a" + integrity sha512-BgZuLUSeKzvlL/VUjx/Yb787VQ26RU3gGjA3iiFvdsp/2bMfVIWUVP7tjxtjS0e+HP409cPlPvNkQloz8C91ew== + +eslint-import-resolver-node@^0.3.3, eslint-import-resolver-node@^0.3.4: version "0.3.4" resolved "https://registry.yarnpkg.com/eslint-import-resolver-node/-/eslint-import-resolver-node-0.3.4.tgz#85ffa81942c25012d8231096ddf679c03042c717" integrity sha512-ogtf+5AB/O+nM6DIeBUNr2fuT7ot9Qg/1harBfBtaP13ekEWFQEEMP94BCB7zaNW3gyY+8SHYF00rnqYwXKWOA== @@ -7274,7 +7559,18 @@ eslint-import-resolver-node@^0.3.3: debug "^2.6.9" resolve "^1.13.1" -eslint-module-utils@^2.6.0: +eslint-import-resolver-typescript@^2.4.0: + version "2.4.0" + resolved "https://registry.yarnpkg.com/eslint-import-resolver-typescript/-/eslint-import-resolver-typescript-2.4.0.tgz#ec1e7063ebe807f0362a7320543aaed6fe1100e1" + integrity sha512-useJKURidCcldRLCNKWemr1fFQL1SzB3G4a0li6lFGvlc5xGe1hY343bvG07cbpCzPuM/lK19FIJB3XGFSkplA== + dependencies: + debug "^4.1.1" + glob "^7.1.6" + is-glob "^4.0.1" + resolve "^1.17.0" + tsconfig-paths "^3.9.0" + +eslint-module-utils@^2.6.0, eslint-module-utils@^2.6.1: version "2.6.1" resolved "https://registry.yarnpkg.com/eslint-module-utils/-/eslint-module-utils-2.6.1.tgz#b51be1e473dd0de1c5ea638e22429c2490ea8233" integrity sha512-ZXI9B8cxAJIH4nfkhTwcRTEAnrVfobYqwjWy/QMCZ8rHkZHFjf9yO4BzpiF9kCSfNlMG54eKigISHpX0+AaT4A== @@ -7301,6 +7597,27 @@ eslint-plugin-import@2.22.0: resolve "^1.17.0" tsconfig-paths "^3.9.0" +eslint-plugin-import@^2.17.2, eslint-plugin-import@^2.22.1: + version "2.23.4" + resolved "https://registry.yarnpkg.com/eslint-plugin-import/-/eslint-plugin-import-2.23.4.tgz#8dceb1ed6b73e46e50ec9a5bb2411b645e7d3d97" + integrity sha512-6/wP8zZRsnQFiR3iaPFgh5ImVRM1WN5NUWfTIRqwOdeiGJlBcSk82o1FEVq8yXmy4lkIzTo7YhHCIxlU/2HyEQ== + dependencies: + array-includes "^3.1.3" + array.prototype.flat "^1.2.4" + debug "^2.6.9" + doctrine "^2.1.0" + eslint-import-resolver-node "^0.3.4" + eslint-module-utils "^2.6.1" + find-up "^2.0.0" + has "^1.0.3" + is-core-module "^2.4.0" + minimatch "^3.0.4" + object.values "^1.1.3" + pkg-up "^2.0.0" + read-pkg-up "^3.0.0" + resolve "^1.20.0" + tsconfig-paths "^3.9.0" + eslint-plugin-jsx-a11y@6.3.1: version "6.3.1" resolved "https://registry.yarnpkg.com/eslint-plugin-jsx-a11y/-/eslint-plugin-jsx-a11y-6.3.1.tgz#99ef7e97f567cc6a5b8dd5ab95a94a67058a2660" @@ -7318,6 +7635,18 @@ eslint-plugin-jsx-a11y@6.3.1: jsx-ast-utils "^2.4.1" language-tags "^1.0.5" +eslint-plugin-prettier@^3.4.0: + version "3.4.0" + resolved "https://registry.yarnpkg.com/eslint-plugin-prettier/-/eslint-plugin-prettier-3.4.0.tgz#cdbad3bf1dbd2b177e9825737fe63b476a08f0c7" + integrity sha512-UDK6rJT6INSfcOo545jiaOwB701uAIt2/dR7WnFQoGCVl1/EMqdANBmwUaqqQ45aXprsTGzSa39LI1PyuRBxxw== + dependencies: + prettier-linter-helpers "^1.0.0" + +eslint-plugin-react-hooks@^4.2.0: + version "4.2.0" + resolved "https://registry.yarnpkg.com/eslint-plugin-react-hooks/-/eslint-plugin-react-hooks-4.2.0.tgz#8c229c268d468956334c943bb45fc860280f5556" + integrity sha512-623WEiZJqxR7VdxFCKLI6d6LLpwJkGPYKODnkH3D7WpOG5KM8yWueBd8TLsNAetEJNF5iJmolaAKO3F8yzyVBQ== + eslint-plugin-react-native-globals@^0.1.1: version "0.1.2" resolved "https://registry.yarnpkg.com/eslint-plugin-react-native-globals/-/eslint-plugin-react-native-globals-0.1.2.tgz#ee1348bc2ceb912303ce6bdbd22e2f045ea86ea2" @@ -7347,6 +7676,24 @@ eslint-plugin-react@7.20.3: resolve "^1.17.0" string.prototype.matchall "^4.0.2" +eslint-plugin-react@^7.23.2: + version "7.24.0" + resolved "https://registry.yarnpkg.com/eslint-plugin-react/-/eslint-plugin-react-7.24.0.tgz#eadedfa351a6f36b490aa17f4fa9b14e842b9eb4" + integrity sha512-KJJIx2SYx7PBx3ONe/mEeMz4YE0Lcr7feJTCMyyKb/341NcjuAgim3Acgan89GfPv7nxXK2+0slu0CWXYM4x+Q== + dependencies: + array-includes "^3.1.3" + array.prototype.flatmap "^1.2.4" + doctrine "^2.1.0" + has "^1.0.3" + jsx-ast-utils "^2.4.1 || ^3.0.0" + minimatch "^3.0.4" + object.entries "^1.1.4" + object.fromentries "^2.0.4" + object.values "^1.1.4" + prop-types "^15.7.2" + resolve "^2.0.0-next.3" + string.prototype.matchall "^4.0.5" + eslint-rule-composer@^0.3.0: version "0.3.0" resolved "https://registry.yarnpkg.com/eslint-rule-composer/-/eslint-rule-composer-0.3.0.tgz#79320c927b0c5c0d3d3d2b76c8b4a488f25bbaf9" @@ -7375,6 +7722,13 @@ eslint-utils@^2.1.0: dependencies: eslint-visitor-keys "^1.1.0" +eslint-utils@^3.0.0: + version "3.0.0" + resolved "https://registry.yarnpkg.com/eslint-utils/-/eslint-utils-3.0.0.tgz#8aebaface7345bb33559db0a1f13a1d2d48c3672" + integrity sha512-uuQC43IGctw68pJA1RgbQS8/NP7rch6Cwd4j3ZBtgo4/8Flj4eGE7ZYSZRN3iq5pVUv6GPdW5Z1RFleo84uLDA== + dependencies: + eslint-visitor-keys "^2.0.0" + eslint-visitor-keys@^1.1.0: version "1.1.0" resolved "https://registry.yarnpkg.com/eslint-visitor-keys/-/eslint-visitor-keys-1.1.0.tgz#e2a82cea84ff246ad6fb57f9bde5b46621459ec2" @@ -7390,29 +7744,32 @@ eslint-visitor-keys@^2.0.0, eslint-visitor-keys@^2.1.0: resolved "https://registry.yarnpkg.com/eslint-visitor-keys/-/eslint-visitor-keys-2.1.0.tgz#f65328259305927392c938ed44eb0a5c9b2bd303" integrity sha512-0rSmRBzXgDzIsD6mGdJgevzgezI534Cer5L/vyMX0kHzT/jiB43jRhd9YUlMGYLQy2zprNmoT8qasCGtY+QaKw== -eslint@7.14.0: - version "7.14.0" - resolved "https://registry.yarnpkg.com/eslint/-/eslint-7.14.0.tgz#2d2cac1d28174c510a97b377f122a5507958e344" - integrity sha512-5YubdnPXrlrYAFCKybPuHIAH++PINe1pmKNc5wQRB9HSbqIK1ywAnntE3Wwua4giKu0bjligf1gLF6qxMGOYRA== +eslint@^7.31.0: + version "7.31.0" + resolved "https://registry.yarnpkg.com/eslint/-/eslint-7.31.0.tgz#f972b539424bf2604907a970860732c5d99d3aca" + integrity sha512-vafgJpSh2ia8tnTkNUkwxGmnumgckLh5aAbLa1xRmIn9+owi8qBNGKL+B881kNKNTy7FFqTEkpNkUvmw0n6PkA== dependencies: - "@babel/code-frame" "^7.0.0" - "@eslint/eslintrc" "^0.2.1" + "@babel/code-frame" "7.12.11" + "@eslint/eslintrc" "^0.4.3" + "@humanwhocodes/config-array" "^0.5.0" ajv "^6.10.0" chalk "^4.0.0" cross-spawn "^7.0.2" debug "^4.0.1" doctrine "^3.0.0" enquirer "^2.3.5" + escape-string-regexp "^4.0.0" eslint-scope "^5.1.1" eslint-utils "^2.1.0" eslint-visitor-keys "^2.0.0" - espree "^7.3.0" - esquery "^1.2.0" + espree "^7.3.1" + esquery "^1.4.0" esutils "^2.0.2" - file-entry-cache "^5.0.1" + fast-deep-equal "^3.1.3" + file-entry-cache "^6.0.1" functional-red-black-tree "^1.0.1" - glob-parent "^5.0.0" - globals "^12.1.0" + glob-parent "^5.1.2" + globals "^13.6.0" ignore "^4.0.6" import-fresh "^3.0.0" imurmurhash "^0.1.4" @@ -7420,7 +7777,7 @@ eslint@7.14.0: js-yaml "^3.13.1" json-stable-stringify-without-jsonify "^1.0.1" levn "^0.4.1" - lodash "^4.17.19" + lodash.merge "^4.6.2" minimatch "^3.0.4" natural-compare "^1.4.0" optionator "^0.9.1" @@ -7429,11 +7786,11 @@ eslint@7.14.0: semver "^7.2.1" strip-ansi "^6.0.0" strip-json-comments "^3.1.0" - table "^5.2.3" + table "^6.0.9" text-table "^0.2.0" v8-compile-cache "^2.0.3" -espree@^7.3.0: +espree@^7.3.0, espree@^7.3.1: version "7.3.1" resolved "https://registry.yarnpkg.com/espree/-/espree-7.3.1.tgz#f2df330b752c6f55019f8bd89b7660039c1bbbb6" integrity sha512-v3JCNCE64umkFpmkFGqzVKsOT0tN1Zr+ueqLZfpV1Ob8e+CEgPWa+OxCoGH3tnhimMKIaBm4m/vaRpJ/krRz2g== @@ -7447,7 +7804,7 @@ esprima@^4.0.0, esprima@^4.0.1, esprima@~4.0.0: resolved "https://registry.yarnpkg.com/esprima/-/esprima-4.0.1.tgz#13b04cdb3e6c5d19df91ab6987a8695619b0aa71" integrity sha512-eGuFFw7Upda+g4p+QHvnW0RyTX/SVeJBDM/gCtMARO0cLuT2HcEKnTPvhjV6aGeqrCB/sbNop0Kszm0jsaWU4A== -esquery@^1.2.0: +esquery@^1.4.0: version "1.4.0" resolved "https://registry.yarnpkg.com/esquery/-/esquery-1.4.0.tgz#2148ffc38b82e8c7057dfed48425b3e61f0f24a5" integrity sha512-cCDispWt5vHHtwMY2YrAQ4ibFkAL8RbH5YGBnZBc90MolvvfkkQcJro/aZiAQUlQ3qgrYS6D6v8Gc5G5CQsc9w== @@ -7815,6 +8172,16 @@ fast-deep-equal@^3.1.1: resolved "https://registry.yarnpkg.com/fast-deep-equal/-/fast-deep-equal-3.1.1.tgz#545145077c501491e33b15ec408c294376e94ae4" integrity sha512-8UEa58QDLauDNfpbrX55Q9jrGHThw2ZMdOky5Gl1CDtVeJDPVrG4Jxx1N8jw2gkWaff5UUuX1KJd+9zGe2B+ZA== +fast-deep-equal@^3.1.3: + version "3.1.3" + resolved "https://registry.yarnpkg.com/fast-deep-equal/-/fast-deep-equal-3.1.3.tgz#3a7d56b559d6cbc3eb512325244e619a65c6c525" + integrity sha512-f3qQ9oQy9j2AhBe/H9VC91wLmKBCCU/gDOnKNAYG5hswO7BLKj09Hc5HYNz9cGI++xlpDCIgDaitVs03ATR84Q== + +fast-diff@^1.1.2: + version "1.2.0" + resolved "https://registry.yarnpkg.com/fast-diff/-/fast-diff-1.2.0.tgz#73ee11982d86caaf7959828d519cfe927fac5f03" + integrity sha512-xJuoT5+L99XlZ8twedaRf6Ax2TgQVxvgZOYoPKqZufmJib0tL2tegPBOZb1pVNgIhlqDlA0eO0c3wBvQcmzx4w== + fast-glob@^2.0.2: version "2.2.7" resolved "https://registry.yarnpkg.com/fast-glob/-/fast-glob-2.2.7.tgz#6953857c3afa475fff92ee6015d52da70a4cd39d" @@ -7827,6 +8194,17 @@ fast-glob@^2.0.2: merge2 "^1.2.3" micromatch "^3.1.10" +fast-glob@^3.1.1: + version "3.2.7" + resolved "https://registry.yarnpkg.com/fast-glob/-/fast-glob-3.2.7.tgz#fd6cb7a2d7e9aa7a7846111e85a196d6b2f766a1" + integrity sha512-rYGMRwip6lUMvYD3BTScMwT1HtAs2d71SMv66Vrxs0IekGZEjhM0pcMfjQPnknBt2zeCwQMEupiN02ZP4DiT1Q== + dependencies: + "@nodelib/fs.stat" "^2.0.2" + "@nodelib/fs.walk" "^1.2.3" + glob-parent "^5.1.2" + merge2 "^1.3.0" + micromatch "^4.0.4" + fast-json-stable-stringify@^2.0.0: version "2.1.0" resolved "https://registry.yarnpkg.com/fast-json-stable-stringify/-/fast-json-stable-stringify-2.1.0.tgz#874bf69c6f404c2b5d99c481341399fd55892633" @@ -7837,6 +8215,13 @@ fast-levenshtein@^2.0.6, fast-levenshtein@~2.0.6: resolved "https://registry.yarnpkg.com/fast-levenshtein/-/fast-levenshtein-2.0.6.tgz#3d8a5c66883a16a30ca8643e851f19baa7797917" integrity sha1-PYpcZog6FqMMqGQ+hR8Zuqd5eRc= +fastq@^1.6.0: + version "1.11.1" + resolved "https://registry.yarnpkg.com/fastq/-/fastq-1.11.1.tgz#5d8175aae17db61947f8b162cfc7f63264d22807" + integrity sha512-HOnr8Mc60eNYl1gzwp6r5RoUyAn5/glBolUzP/Ez6IFVPMPirxn/9phgL6zhOtaTy7ISwPvQ+wT+hfcRZh/bzw== + dependencies: + reusify "^1.0.4" + fault@^1.0.2: version "1.0.4" resolved "https://registry.yarnpkg.com/fault/-/fault-1.0.4.tgz#eafcfc0a6d214fc94601e170df29954a4f842f13" @@ -7936,12 +8321,12 @@ figures@^3.0.0: dependencies: escape-string-regexp "^1.0.5" -file-entry-cache@^5.0.1: - version "5.0.1" - resolved "https://registry.yarnpkg.com/file-entry-cache/-/file-entry-cache-5.0.1.tgz#ca0f6efa6dd3d561333fb14515065c2fafdf439c" - integrity sha512-bCg29ictuBaKUwwArK4ouCaqDgLZcysCFLmM/Yn/FDoqndh/9vNuQfXRDvTuXKLxfD/JtZQGKFT8MGcJBK644g== +file-entry-cache@^6.0.1: + version "6.0.1" + resolved "https://registry.yarnpkg.com/file-entry-cache/-/file-entry-cache-6.0.1.tgz#211b2dd9659cb0394b073e7323ac3c933d522027" + integrity sha512-7Gps/XWymbLk2QLYK4NzpMOrYjMhdIxXuIvy2QBsLE6ljuodKvdkWs/cpyJJ3CVIVpH0Oi1Hvg1ovbMzLdFBBg== dependencies: - flat-cache "^2.0.1" + flat-cache "^3.0.4" file-loader@^4.2.0: version "4.3.0" @@ -8086,24 +8471,23 @@ find-yarn-workspace-root@^2.0.0: dependencies: micromatch "^4.0.2" -flat-cache@^2.0.1: - version "2.0.1" - resolved "https://registry.yarnpkg.com/flat-cache/-/flat-cache-2.0.1.tgz#5d296d6f04bda44a4630a301413bdbc2ec085ec0" - integrity sha512-LoQe6yDuUMDzQAEH8sgmh4Md6oZnc/7PjtwjNFSzveXqSHt6ka9fPBuso7IGf9Rz4uqnSnWiFH2B/zj24a5ReA== +flat-cache@^3.0.4: + version "3.0.4" + resolved "https://registry.yarnpkg.com/flat-cache/-/flat-cache-3.0.4.tgz#61b0338302b2fe9f957dcc32fc2a87f1c3048b11" + integrity sha512-dm9s5Pw7Jc0GvMYbshN6zchCA9RgQlzzEZX3vylR9IqFfS8XciblUXOKfW6SiuJ0e13eDYZoZV5wdrev7P3Nwg== dependencies: - flatted "^2.0.0" - rimraf "2.6.3" - write "1.0.3" + flatted "^3.1.0" + rimraf "^3.0.2" flat@^5.0.2: version "5.0.2" resolved "https://registry.yarnpkg.com/flat/-/flat-5.0.2.tgz#8ca6fe332069ffa9d324c327198c598259ceb241" integrity sha512-b6suED+5/3rTpUBdG1gupIl8MPFCAMA0QXwmljLhvCUKcUvdE4gWky9zpuGCcXHOsz4J9wPGNWq6OKpmIzz3hQ== -flatted@^2.0.0: - version "2.0.2" - resolved "https://registry.yarnpkg.com/flatted/-/flatted-2.0.2.tgz#4575b21e2bcee7434aa9be662f4b7b5f9c2b5138" - integrity sha512-r5wGx7YeOwNWNlCA0wQ86zKyDLMQr+/RB8xy74M4hTphfmjlijTSSXGuH8rnvKZnfT9i+75zmd8jcKdMR4O6jA== +flatted@^3.1.0: + version "3.2.1" + resolved "https://registry.yarnpkg.com/flatted/-/flatted-3.2.1.tgz#bbef080d95fca6709362c73044a1634f7c6e7d05" + integrity sha512-OMQjaErSFHmHqZe+PSidH5n8j3O0F2DdnVh8JB4j4eUQ2k6KvB0qGfrKIhapvez5JerBbmWkaLYUYWISaESoXg== flow-parser@0.*: version "0.155.1" @@ -8383,6 +8767,11 @@ get-intrinsic@^1.0.2, get-intrinsic@^1.1.0, get-intrinsic@^1.1.1: has "^1.0.3" has-symbols "^1.0.1" +get-own-enumerable-property-symbols@^3.0.0: + version "3.0.2" + resolved "https://registry.yarnpkg.com/get-own-enumerable-property-symbols/-/get-own-enumerable-property-symbols-3.0.2.tgz#b5fde77f22cbe35f390b4e089922c50bce6ef664" + integrity sha512-I0UBV/XOz1XkIJHEUDMZAbzCThU/H8DxmSfmdGcKPnVhu2VfFqr34jr9777IyaTYvxjedWhqVIilEDsCdP5G6g== + get-package-type@^0.1.0: version "0.1.0" resolved "https://registry.yarnpkg.com/get-package-type/-/get-package-type-0.1.0.tgz#8de2d803cff44df3bc6c456e6668b36c3926e11a" @@ -8455,20 +8844,20 @@ glob-parent@^3.1.0: is-glob "^3.1.0" path-dirname "^1.0.0" -glob-parent@^5.0.0, glob-parent@~5.1.0: - version "5.1.1" - resolved "https://registry.yarnpkg.com/glob-parent/-/glob-parent-5.1.1.tgz#b6c1ef417c4e5663ea498f1c45afac6916bbc229" - integrity sha512-FnI+VGOpnlGHWZxthPGR+QhR78fuiK0sNLkHQv+bL9fQi57lNNdquIbna/WrfROrolq8GK5Ek6BiMwqL/voRYQ== - dependencies: - is-glob "^4.0.1" - -glob-parent@~5.1.2: +glob-parent@^5.1.2, glob-parent@~5.1.2: version "5.1.2" resolved "https://registry.yarnpkg.com/glob-parent/-/glob-parent-5.1.2.tgz#869832c58034fe68a4093c17dc15e8340d8401c4" integrity sha512-AOIgSQCepiJYwP3ARnGx+5VnTu2HBYdzbGP45eLw1vr3zB3vZLeyed1sC9hnbcOc9/SrMyM5RPQrkGz4aS9Zow== dependencies: is-glob "^4.0.1" +glob-parent@~5.1.0: + version "5.1.1" + resolved "https://registry.yarnpkg.com/glob-parent/-/glob-parent-5.1.1.tgz#b6c1ef417c4e5663ea498f1c45afac6916bbc229" + integrity sha512-FnI+VGOpnlGHWZxthPGR+QhR78fuiK0sNLkHQv+bL9fQi57lNNdquIbna/WrfROrolq8GK5Ek6BiMwqL/voRYQ== + dependencies: + is-glob "^4.0.1" + glob-to-regexp@^0.3.0: version "0.3.0" resolved "https://registry.yarnpkg.com/glob-to-regexp/-/glob-to-regexp-0.3.0.tgz#8c5a1494d2066c570cc3bfe4496175acc4d502ab" @@ -8486,7 +8875,7 @@ glob@7.0.6: once "^1.3.0" path-is-absolute "^1.0.0" -glob@7.1.7, glob@^7.0.0: +glob@7.1.7, glob@^7.0.0, glob@^7.1.6: version "7.1.7" resolved "https://registry.yarnpkg.com/glob/-/glob-7.1.7.tgz#3b193e9233f01d42d0b3f78294bbeeb418f94a90" integrity sha512-OvD9ENzPLbegENnYP5UUfJIirTg4+XwMWGaQfQTY0JenxNvvIKP3U3/tAQSPIu/lHxXYSZmpXlUHeqAIdKzBLQ== @@ -8558,12 +8947,12 @@ globals@^11.1.0: resolved "https://registry.yarnpkg.com/globals/-/globals-11.12.0.tgz#ab8795338868a0babd8525758018c2a7eb95c42e" integrity sha512-WOBp/EEGUiIsJSp7wcv/y6MO+lV9UoncWqxuFfm8eBwzWNgyfBd6Gz+IeKQ9jCmyhoH99g15M3T+QaVHFjizVA== -globals@^12.1.0: - version "12.4.0" - resolved "https://registry.yarnpkg.com/globals/-/globals-12.4.0.tgz#a18813576a41b00a24a97e7f815918c2e19925f8" - integrity sha512-BWICuzzDvDoH54NHKCseDanAhE3CeDorgDL5MT6LMXXj2WCnd9UC2szdk4AWLfjdgNBCXLUanXYcpBBKOSWGwg== +globals@^13.6.0, globals@^13.9.0: + version "13.10.0" + resolved "https://registry.yarnpkg.com/globals/-/globals-13.10.0.tgz#60ba56c3ac2ca845cfbf4faeca727ad9dd204676" + integrity sha512-piHC3blgLGFjvOuMmWZX60f+na1lXFDhQXBf1UYp2fXPXqvEUbOhNwi6BsQ0bQishwedgnjkwv1d9zKf+MWw3g== dependencies: - type-fest "^0.8.1" + type-fest "^0.20.2" globalthis@^1.0.0: version "1.0.1" @@ -8585,6 +8974,18 @@ globby@8.0.2: pify "^3.0.0" slash "^1.0.0" +globby@^11.0.3: + version "11.0.4" + resolved "https://registry.yarnpkg.com/globby/-/globby-11.0.4.tgz#2cbaff77c2f2a62e71e9b2813a67b97a3a3001a5" + integrity sha512-9O4MVG9ioZJ08ffbcyVYyLOJLk5JQ688pJ4eMGLpdWLHq/Wr1D9BlriLQyL0E+jbkuePVZXYFj47QM/v093wHg== + dependencies: + array-union "^2.1.0" + dir-glob "^3.0.1" + fast-glob "^3.1.1" + ignore "^5.1.4" + merge2 "^1.3.0" + slash "^3.0.0" + good-listener@^1.2.2: version "1.2.2" resolved "https://registry.yarnpkg.com/good-listener/-/good-listener-1.2.2.tgz#d53b30cdf9313dffb7dc9a0d477096aa6d145c50" @@ -8969,6 +9370,11 @@ ignore@^4.0.6: resolved "https://registry.yarnpkg.com/ignore/-/ignore-4.0.6.tgz#750e3db5862087b4737ebac8207ffd1ef27b25fc" integrity sha512-cyFDKrqc/YdcWFniJhzI42+AzS+gNwmUzOSFcRCQYwySuBBBy/KjuxWLZ/FHEH6Moq1NizMOBWyTcv8O4OZIMg== +ignore@^5.1.4: + version "5.1.8" + resolved "https://registry.yarnpkg.com/ignore/-/ignore-5.1.8.tgz#f150a8b50a34289b33e22f5889abd4d8016f0e57" + integrity sha512-BMpfD7PpiETpBl/A6S498BaIJ6Y/ABT93ETbby2fP00v4EbvPBXWEoaR1UBPKs3iR53pJY7EtZk5KACI57i1Uw== + image-q@^1.1.1: version "1.1.1" resolved "https://registry.yarnpkg.com/image-q/-/image-q-1.1.1.tgz#fc84099664460b90ca862d9300b6bfbbbfbf8056" @@ -9277,6 +9683,13 @@ is-core-module@^2.2.0: dependencies: has "^1.0.3" +is-core-module@^2.4.0: + version "2.5.0" + resolved "https://registry.yarnpkg.com/is-core-module/-/is-core-module-2.5.0.tgz#f754843617c70bfd29b7bd87327400cda5c18491" + integrity sha512-TXCMSDsEHMEEZ6eCA8rwRDbLu55MRGmrctljsBX/2v1d9/GzqHOxW5c5oPSgrUt2vBFXebu9rGqckXGPWOlYpg== + dependencies: + has "^1.0.3" + is-data-descriptor@^0.1.4: version "0.1.4" resolved "https://registry.yarnpkg.com/is-data-descriptor/-/is-data-descriptor-0.1.4.tgz#0b5ee648388e2c860282e793f1856fec3f301b56" @@ -9436,7 +9849,7 @@ is-number@^7.0.0: resolved "https://registry.yarnpkg.com/is-number/-/is-number-7.0.0.tgz#7535345b896734d5f80c4d06c50955527a14f12b" integrity sha512-41Cifkg6e8TylSpdtTpeLVMqvSBEVzTttHvERD741+pnZ8ANv0004MRL43QKPDlK9cGvNp6NZWZUBlbGXYxxng== -is-obj@^1.0.0: +is-obj@^1.0.0, is-obj@^1.0.1: version "1.0.1" resolved "https://registry.yarnpkg.com/is-obj/-/is-obj-1.0.1.tgz#3e4729ac1f5fde025cd7d83a896dab9f4f67db0f" integrity sha1-PkcprB9f3gJc19g6iW2rn09n2w8= @@ -9485,6 +9898,11 @@ is-regex@^1.1.3: call-bind "^1.0.2" has-symbols "^1.0.2" +is-regexp@^1.0.0: + version "1.0.0" + resolved "https://registry.yarnpkg.com/is-regexp/-/is-regexp-1.0.0.tgz#fd2d883545c46bac5a633e7b9a09e87fa2cb5069" + integrity sha1-/S2INUXEa6xaYz57mgnof6LLUGk= + is-root@2.1.0: version "2.1.0" resolved "https://registry.yarnpkg.com/is-root/-/is-root-2.1.0.tgz#809e18129cf1129644302a4f8544035d51984a9c" @@ -9827,7 +10245,7 @@ jest-diff@^25.2.1: jest-get-type "^25.2.6" pretty-format "^25.5.0" -jest-diff@^26.6.2: +jest-diff@^26.0.0, jest-diff@^26.6.2: version "26.6.2" resolved "https://registry.yarnpkg.com/jest-diff/-/jest-diff-26.6.2.tgz#1aa7468b52c3a68d7d5c5fdcdfcd5e49bd164394" integrity sha512-6m+9Z3Gv9wN0WFVasqjCL/06+EFCMTqDEUl/b87HYK2rAPTyfz4ZIuSlPhY51PIQRWx5TaxeF1qmXKe9gfN3sA== @@ -10778,6 +11196,11 @@ json-schema-traverse@^0.4.1: resolved "https://registry.yarnpkg.com/json-schema-traverse/-/json-schema-traverse-0.4.1.tgz#69f6a87d9513ab8bb8fe63bdb0979c448e684660" integrity sha512-xbbCH5dCYU5T8LcEhhuh7HJ88HXuW3qsI3Y0zOZFKfZEHcpWiHU/Jxzk629Brsab/mMiHQti9wMP+845RPe3Vg== +json-schema-traverse@^1.0.0: + version "1.0.0" + resolved "https://registry.yarnpkg.com/json-schema-traverse/-/json-schema-traverse-1.0.0.tgz#ae7bcb3656ab77a73ba5c49bf654f38e6b6860e2" + integrity sha512-NM8/P9n3XjXhIZn1lLhkFaACTOURQXjWhV4BA/RnOv8xvgqtqpAX9IO4mRQxSx1Rlo4tqzeqb0sOlruaOy3dug== + json-stable-stringify-without-jsonify@^1.0.1: version "1.0.1" resolved "https://registry.yarnpkg.com/json-stable-stringify-without-jsonify/-/json-stable-stringify-without-jsonify-1.0.1.tgz#9db7b59496ad3f3cfef30a75142d2d930ad72651" @@ -10850,6 +11273,14 @@ jsx-ast-utils@^2.4.1: array-includes "^3.1.1" object.assign "^4.1.0" +"jsx-ast-utils@^2.4.1 || ^3.0.0": + version "3.2.0" + resolved "https://registry.yarnpkg.com/jsx-ast-utils/-/jsx-ast-utils-3.2.0.tgz#41108d2cec408c3453c1bbe8a4aae9e1e2bd8f82" + integrity sha512-EIsmt3O3ljsU6sot/J4E1zDRxfBNrhjyf/OKjlydwgEimQuznlM4Wv7U+ueONJMyEn1WRE0K8dhi3dVAXYT24Q== + dependencies: + array-includes "^3.1.2" + object.assign "^4.1.2" + kind-of@^3.0.2, kind-of@^3.0.3, kind-of@^3.2.0: version "3.2.2" resolved "https://registry.yarnpkg.com/kind-of/-/kind-of-3.2.2.tgz#31ea21a734bab9bbb0f32466d893aea51e4a3c64" @@ -10942,6 +11373,40 @@ lines-and-columns@^1.1.6: resolved "https://registry.yarnpkg.com/lines-and-columns/-/lines-and-columns-1.1.6.tgz#1c00c743b433cd0a4e80758f7b64a57440d9ff00" integrity sha1-HADHQ7QzzQpOgHWPe2SldEDZ/wA= +lint-staged@^11.1.0: + version "11.1.1" + resolved "https://registry.yarnpkg.com/lint-staged/-/lint-staged-11.1.1.tgz#9c2018b872654cf80b2b1ff5a10b6b74aef6e300" + integrity sha512-eTNGe6i78PSUUH2BZi1gZmGmNfb8IeN4z2OzMYxSZ1qnP1WXKn1E7D+OHwLbRDm/wQINnzIj0bsKJ6lLVSuZiQ== + dependencies: + chalk "^4.1.1" + cli-truncate "^2.1.0" + commander "^7.2.0" + cosmiconfig "^7.0.0" + debug "^4.3.1" + dedent "^0.7.0" + enquirer "^2.3.6" + execa "^5.0.0" + listr2 "^3.8.2" + log-symbols "^4.1.0" + micromatch "^4.0.4" + normalize-path "^3.0.0" + please-upgrade-node "^3.2.0" + string-argv "0.3.1" + stringify-object "^3.3.0" + +listr2@^3.8.2: + version "3.11.0" + resolved "https://registry.yarnpkg.com/listr2/-/listr2-3.11.0.tgz#9771b02407875aa78e73d6e0ff6541bbec0aaee9" + integrity sha512-XLJVe2JgXCyQTa3FbSv11lkKExYmEyA4jltVo8z4FX10Vt1Yj8IMekBfwim0BSOM9uj1QMTJvDQQpHyuPbB/dQ== + dependencies: + cli-truncate "^2.1.0" + colorette "^1.2.2" + log-update "^4.0.0" + p-map "^4.0.0" + rxjs "^6.6.7" + through "^2.3.8" + wrap-ansi "^7.0.0" + load-bmfont@^1.3.1, load-bmfont@^1.4.0: version "1.4.0" resolved "https://registry.yarnpkg.com/load-bmfont/-/load-bmfont-1.4.0.tgz#75f17070b14a8c785fe7f5bee2e6fd4f98093b6b" @@ -11059,6 +11524,11 @@ lodash.assign@^4.2.0: resolved "https://registry.yarnpkg.com/lodash.assign/-/lodash.assign-4.2.0.tgz#0d99f3ccd7a6d261d19bdaeb9245005d285808e7" integrity sha1-DZnzzNem0mHRm9rrkkUAXShYCOc= +lodash.clonedeep@^4.5.0: + version "4.5.0" + resolved "https://registry.yarnpkg.com/lodash.clonedeep/-/lodash.clonedeep-4.5.0.tgz#e23f3f9c4f8fbdde872529c1071857a086e5ccef" + integrity sha1-4j8/nE+Pvd6HJSnBBxhXoIblzO8= + lodash.debounce@^4.0.8: version "4.0.8" resolved "https://registry.yarnpkg.com/lodash.debounce/-/lodash.debounce-4.0.8.tgz#82d79bff30a67c4005ffd5e2515300ad9ca4d7af" @@ -11094,6 +11564,11 @@ lodash.memoize@^4.1.2: resolved "https://registry.yarnpkg.com/lodash.memoize/-/lodash.memoize-4.1.2.tgz#bcc6c49a42a2840ed997f323eada5ecd182e0bfe" integrity sha1-vMbEmkKihA7Zl/Mj6tpezRguC/4= +lodash.merge@^4.6.2: + version "4.6.2" + resolved "https://registry.yarnpkg.com/lodash.merge/-/lodash.merge-4.6.2.tgz#558aa53b43b661e1925a0afdfa36a9a1085fe57a" + integrity sha512-0KpjqXRVvrYyCsX1swR/XTK0va6VQkQM6MNo7PqW77ByjAhoARA8EfrP1N4+KlKj8YS0ZUCtRT/YUuhyYDujIQ== + lodash.omit@^4.5.0: version "4.5.0" resolved "https://registry.yarnpkg.com/lodash.omit/-/lodash.omit-4.5.0.tgz#6eb19ae5a1ee1dd9df0b969e66ce0b7fa30b5e60" @@ -11124,7 +11599,12 @@ lodash.throttle@^4.1.1: resolved "https://registry.yarnpkg.com/lodash.throttle/-/lodash.throttle-4.1.1.tgz#c23e91b710242ac70c37f1e1cda9274cc39bf2f4" integrity sha1-wj6RtxAkKscMN/HhzaknTMOb8vQ= -lodash@4.17.21, lodash@^4.17.11, lodash@^4.17.12, lodash@^4.17.19, lodash@^4.17.20, lodash@^4.17.5, lodash@^4.7.0: +lodash.truncate@^4.4.2: + version "4.4.2" + resolved "https://registry.yarnpkg.com/lodash.truncate/-/lodash.truncate-4.4.2.tgz#5a350da0b1113b837ecfffd5812cbe58d6eae193" + integrity sha1-WjUNoLERO4N+z//VgSy+WNbq4ZM= + +lodash@4.17.21, lodash@^4.17.11, lodash@^4.17.12, lodash@^4.17.20, lodash@^4.17.5, lodash@^4.7.0: version "4.17.21" resolved "https://registry.yarnpkg.com/lodash/-/lodash-4.17.21.tgz#679591c564c3bffaae8454cf0b3df370c3d6911c" integrity sha512-v2kDEe57lecTulaDIuNTPy3Ry4gLGJ6Z1O3vE1krgXZNrsQ+LFTGHVxVjcXPs17LhbZVGedAJv8XZ1tvj5FvSg== @@ -11139,7 +11619,7 @@ lodash@^4.17.13, lodash@^4.17.14, lodash@^4.17.15, lodash@^4.5.0: resolved "https://registry.yarnpkg.com/lodash/-/lodash-4.17.15.tgz#b447f6670a0455bbfeedd11392eff330ea097548" integrity sha512-8xOcRHvCjnocdS5cpwXQXVzmmh5e5+saE2QGoeQmbKmRS6J3VQppPOIt0MnmE+4xlZoumy0GPG0D0MVIQbNA1A== -log-symbols@4.1.0: +log-symbols@4.1.0, log-symbols@^4.1.0: version "4.1.0" resolved "https://registry.yarnpkg.com/log-symbols/-/log-symbols-4.1.0.tgz#3fbdbb95b4683ac9fc785111e792e558d4abd503" integrity sha512-8XPvpAA8uyhfteu8pIvQxpJZ7SYYdpUivZpGy6sFsBuKRY/7rQGavedeB8aK+Zkyq6upMFVL/9AW6vOYzfRyLg== @@ -11154,6 +11634,16 @@ log-symbols@^2.2.0: dependencies: chalk "^2.0.1" +log-update@^4.0.0: + version "4.0.0" + resolved "https://registry.yarnpkg.com/log-update/-/log-update-4.0.0.tgz#589ecd352471f2a1c0c570287543a64dfd20e0a1" + integrity sha512-9fkkDevMefjg0mmzWFBW8YkFP91OrizzkW3diF7CpG+S2EYdy4+TVfGwz1zeF8x7hCx1ovSPTOE9Ngib74qqUg== + dependencies: + ansi-escapes "^4.3.0" + cli-cursor "^3.1.0" + slice-ansi "^4.0.0" + wrap-ansi "^6.2.0" + logkitty@^0.7.1: version "0.7.1" resolved "https://registry.yarnpkg.com/logkitty/-/logkitty-0.7.1.tgz#8e8d62f4085a826e8d38987722570234e33c6aa7" @@ -11378,6 +11868,11 @@ merge2@^1.2.3: resolved "https://registry.yarnpkg.com/merge2/-/merge2-1.3.0.tgz#5b366ee83b2f1582c48f87e47cf1a9352103ca81" integrity sha512-2j4DAdlBOkiSZIsaXk4mTE3sRS02yBHAtfy127xRV3bQUFqXkjHCHLW6Scv7DwNRbIWNHH8zpnz9zMaKXIdvYw== +merge2@^1.3.0: + version "1.4.1" + resolved "https://registry.yarnpkg.com/merge2/-/merge2-1.4.1.tgz#4368892f885e907455a6fd7dc55c0c9d404990ae" + integrity sha512-8q7VEgMJW4J8tcfVPy8g09NcQwZdbwFEqhe/WZkoIzjn/3TGDwtOCYtXGxA3O8tPzpczCCDgv+P2P5y00ZJOOg== + methods@~1.1.2: version "1.1.2" resolved "https://registry.yarnpkg.com/methods/-/methods-1.1.2.tgz#5529a4d67654134edcc5266656835b0f851afcee" @@ -12285,7 +12780,7 @@ object.entries@^1.1.0, object.entries@^1.1.1: es-abstract "^1.17.5" has "^1.0.3" -object.entries@^1.1.2: +object.entries@^1.1.2, object.entries@^1.1.4: version "1.1.4" resolved "https://registry.yarnpkg.com/object.entries/-/object.entries-1.1.4.tgz#43ccf9a50bc5fd5b649d45ab1a579f24e088cafd" integrity sha512-h4LWKWE+wKQGhtMjZEBud7uLGhqyLwj8fpHOarZhD2uY3C9cRtk57VQ89ke3moByLXMedqs3XCHzyb4AmA2DjA== @@ -12304,7 +12799,7 @@ object.entries@^1.1.2: function-bind "^1.1.1" has "^1.0.3" -object.fromentries@^2.0.2: +object.fromentries@^2.0.2, object.fromentries@^2.0.4: version "2.0.4" resolved "https://registry.yarnpkg.com/object.fromentries/-/object.fromentries-2.0.4.tgz#26e1ba5c4571c5c6f0890cef4473066456a120b8" integrity sha512-EsFBshs5RUUpQEY1D4q/m59kMfz4YJvxuNCJcv/jWwOJr34EaVnG11ZrZa0UHB3wnzV1wx8m58T4hQL8IuNXlQ== @@ -12339,7 +12834,7 @@ object.values@^1.1.0: function-bind "^1.1.1" has "^1.0.3" -object.values@^1.1.1: +object.values@^1.1.1, object.values@^1.1.3, object.values@^1.1.4: version "1.1.4" resolved "https://registry.yarnpkg.com/object.values/-/object.values-1.1.4.tgz#0d273762833e816b693a637d30073e7051535b30" integrity sha512-TnGo7j4XSnKQoK3MfvkzqKCi0nVe/D9I9IjwTNYdb/fxYHpjrluHVOgw0AF6jrRFGMPHdfuidR09tIDiIvnaSg== @@ -12567,6 +13062,13 @@ p-map@^3.0.0: dependencies: aggregate-error "^3.0.0" +p-map@^4.0.0: + version "4.0.0" + resolved "https://registry.yarnpkg.com/p-map/-/p-map-4.0.0.tgz#bb2f95a5eda2ec168ec9274e06a747c3e2904d2b" + integrity sha512-/bjOqmgETBYB5BoEeGVea8dmvHb2m9GLy1E9W43yeyfP6QQCZGFNa+XRceJEuDB6zqr+gKpIAmlLebMpykw/MQ== + dependencies: + aggregate-error "^3.0.0" + p-try@^1.0.0: version "1.0.0" resolved "https://registry.yarnpkg.com/p-try/-/p-try-1.0.0.tgz#cbc79cdbaf8fd4228e13f621f2b1a237c1b207b3" @@ -12910,6 +13412,13 @@ pkg-up@2.0.0, pkg-up@^2.0.0: dependencies: find-up "^2.1.0" +please-upgrade-node@^3.2.0: + version "3.2.0" + resolved "https://registry.yarnpkg.com/please-upgrade-node/-/please-upgrade-node-3.2.0.tgz#aeddd3f994c933e4ad98b99d9a556efa0e2fe942" + integrity sha512-gQR3WpIgNIKwBMVLkpMUeR3e1/E1y42bqDQZfql+kDeXd8COYfM8PQA4X6y7a8u9Ua9FHmsrrmirW2vHs45hWg== + dependencies: + semver-compare "^1.0.0" + plist@^3.0.1: version "3.0.2" resolved "https://registry.yarnpkg.com/plist/-/plist-3.0.2.tgz#74bbf011124b90421c22d15779cee60060ba95bc" @@ -13058,6 +13567,18 @@ prepend-http@^2.0.0: resolved "https://registry.yarnpkg.com/prepend-http/-/prepend-http-2.0.0.tgz#e92434bfa5ea8c19f41cdfd401d741a3c819d897" integrity sha1-6SQ0v6XqjBn0HN/UAddBo8gZ2Jc= +prettier-linter-helpers@^1.0.0: + version "1.0.0" + resolved "https://registry.yarnpkg.com/prettier-linter-helpers/-/prettier-linter-helpers-1.0.0.tgz#d23d41fe1375646de2d0104d3454a3008802cf7b" + integrity sha512-GbK2cP9nraSSUF9N2XwUwqfzlAFlMNYYl+ShE/V+H8a9uNl/oUqB1w2EL54Jh0OlyRSd8RfWYJ3coVS4TROP2w== + dependencies: + fast-diff "^1.1.2" + +prettier@^2.3.2: + version "2.3.2" + resolved "https://registry.yarnpkg.com/prettier/-/prettier-2.3.2.tgz#ef280a05ec253712e486233db5c6f23441e7342d" + integrity sha512-lnJzDfJ66zkMy58OL5/NY5zp70S7Nz6KqcKkXYzn2tMVrNxvbqaBpg7H3qHaLxCJ5lNMsGuM8+ohS7cZrthdLQ== + pretty-bytes@5.6.0: version "5.6.0" resolved "https://registry.yarnpkg.com/pretty-bytes/-/pretty-bytes-5.6.0.tgz#356256f643804773c82f64723fe78c92c62beaeb" @@ -13091,7 +13612,7 @@ pretty-format@^25.2.1, pretty-format@^25.5.0: ansi-styles "^4.0.0" react-is "^16.12.0" -pretty-format@^26.5.2, pretty-format@^26.6.2: +pretty-format@^26.0.0, pretty-format@^26.5.2, pretty-format@^26.6.2: version "26.6.2" resolved "https://registry.yarnpkg.com/pretty-format/-/pretty-format-26.6.2.tgz#e35c2705f14cb7fe2fe94fa078345b444120fc93" integrity sha512-7AeGuCYNGmycyQbCqd/3PWH4eOoX/OiCa0uphp57NVTeAGdJGaAliecxwBDHYQCIvrW7aDBZCYeNTP/WX69mkg== @@ -13373,6 +13894,11 @@ querystringify@^2.1.1: resolved "https://registry.yarnpkg.com/querystringify/-/querystringify-2.1.1.tgz#60e5a5fd64a7f8bfa4d2ab2ed6fdf4c85bad154e" integrity sha512-w7fLxIRCRT7U8Qu53jQnJyPkYZIaR4n5151KMfcJlO/A9397Wxb1amJvROTK6TOnp7PfoAmg/qXiNHI+08jRfA== +queue-microtask@^1.2.2: + version "1.2.3" + resolved "https://registry.yarnpkg.com/queue-microtask/-/queue-microtask-1.2.3.tgz#4929228bbc724dfac43e0efb058caf7b6cfb6243" + integrity sha512-NuaNSa6flKT5JaSYQzJok04JzTL1CA6aGhv5rfLW3PgqA+M2ChpZQnAC8h8i4ZFkBS8X5RqkDBHA7r4hej3K9A== + rambdax@2.15.0: version "2.15.0" resolved "https://registry.yarnpkg.com/rambdax/-/rambdax-2.15.0.tgz#34fb481cea1a88e64a25e3a25e34a258fa18ca12" @@ -14102,6 +14628,14 @@ read-pkg-up@^2.0.0: find-up "^2.0.0" read-pkg "^2.0.0" +read-pkg-up@^3.0.0: + version "3.0.0" + resolved "https://registry.yarnpkg.com/read-pkg-up/-/read-pkg-up-3.0.0.tgz#3ed496685dba0f8fe118d0691dc51f4a1ff96f07" + integrity sha1-PtSWaF26D4/hGNBpHcUfSh/5bwc= + dependencies: + find-up "^2.0.0" + read-pkg "^3.0.0" + read-pkg-up@^4.0.0: version "4.0.0" resolved "https://registry.yarnpkg.com/read-pkg-up/-/read-pkg-up-4.0.0.tgz#1b221c6088ba7799601c808f91161c66e58f8978" @@ -14417,6 +14951,11 @@ require-directory@^2.1.1: resolved "https://registry.yarnpkg.com/require-directory/-/require-directory-2.1.1.tgz#8c64ad5fd30dab1c976e2344ffe7f792a6a6df42" integrity sha1-jGStX9MNqxyXbiNE/+f3kqam30I= +require-from-string@^2.0.2: + version "2.0.2" + resolved "https://registry.yarnpkg.com/require-from-string/-/require-from-string-2.0.2.tgz#89a7fdd938261267318eafe14f9c32e598c36909" + integrity sha512-Xf0nWe6RseziFMu+Ap9biiUbmplq6S9/p+7w7YXP/JBHhrUDDUhwa+vANyubuqfZWTveU//DYVGsDG7RKL/vEw== + require-main-filename@^2.0.0: version "2.0.0" resolved "https://registry.yarnpkg.com/require-main-filename/-/require-main-filename-2.0.0.tgz#d0b329ecc7cc0f61649f62215be69af54aa8989b" @@ -14484,6 +15023,14 @@ resolve@^1.10.0, resolve@^1.12.0, resolve@^1.13.1, resolve@^1.17.0, resolve@^1.3 dependencies: path-parse "^1.0.6" +resolve@^2.0.0-next.3: + version "2.0.0-next.3" + resolved "https://registry.yarnpkg.com/resolve/-/resolve-2.0.0-next.3.tgz#d41016293d4a8586a39ca5d9b5f15cbea1f55e46" + integrity sha512-W8LucSynKUIDu9ylraa7ueVZ7hc0uAgJBxVsQSKOXOyle8a93qXhcz+XAXZ8bIq2d6i4Ehddn6Evt+0/UwKk6Q== + dependencies: + is-core-module "^2.2.0" + path-parse "^1.0.6" + restore-cursor@^2.0.0: version "2.0.0" resolved "https://registry.yarnpkg.com/restore-cursor/-/restore-cursor-2.0.0.tgz#9f7ee287f82fd326d4fd162923d62129eee0dfaf" @@ -14510,12 +15057,10 @@ retry@^0.12.0: resolved "https://registry.yarnpkg.com/retry/-/retry-0.12.0.tgz#1b42a6266a21f07421d1b0b54b7dc167b01c013b" integrity sha1-G0KmJmoh8HQh0bC1S33BZ7AcATs= -rimraf@2.6.3, rimraf@~2.6.2: - version "2.6.3" - resolved "https://registry.yarnpkg.com/rimraf/-/rimraf-2.6.3.tgz#b2d104fe0d8fb27cf9e0a1cda8262dd3833c6cab" - integrity sha512-mwqeW5XsA2qAejG46gYdENaxXjx9onRNCfn7L0duuP4hCuTIi/QO7PDK07KJfp1d+izWPrzEJDcSqBa0OZQriA== - dependencies: - glob "^7.1.3" +reusify@^1.0.4: + version "1.0.4" + resolved "https://registry.yarnpkg.com/reusify/-/reusify-1.0.4.tgz#90da382b1e126efc02146e90845a88db12925d76" + integrity sha512-U9nH88a3fc/ekCF1l0/UP1IosiuIjyTh7hBvXVMHYgVcfGvt897Xguj2UOLDeI5BG2m7/uwyaLVT6fbtCwTyzw== rimraf@^2.2.8, rimraf@^2.5.4, rimraf@^2.6.3, rimraf@^2.7.1: version "2.7.1" @@ -14524,7 +15069,7 @@ rimraf@^2.2.8, rimraf@^2.5.4, rimraf@^2.6.3, rimraf@^2.7.1: dependencies: glob "^7.1.3" -rimraf@^3.0.0: +rimraf@^3.0.0, rimraf@^3.0.2: version "3.0.2" resolved "https://registry.yarnpkg.com/rimraf/-/rimraf-3.0.2.tgz#f1a5402ba6220ad52cc1282bac1ae3aa49fd061a" integrity sha512-JZkJMZkAGFFPP2YqXZXPbMlMBgsxzE8ILs4lMIX/2o0L9UBw9O/Y3o6wFw/i9YLapcUJWwqbi3kdxIPdC62TIA== @@ -14543,6 +15088,13 @@ rimraf@~2.4.0: dependencies: glob "^6.0.1" +rimraf@~2.6.2: + version "2.6.3" + resolved "https://registry.yarnpkg.com/rimraf/-/rimraf-2.6.3.tgz#b2d104fe0d8fb27cf9e0a1cda8262dd3833c6cab" + integrity sha512-mwqeW5XsA2qAejG46gYdENaxXjx9onRNCfn7L0duuP4hCuTIi/QO7PDK07KJfp1d+izWPrzEJDcSqBa0OZQriA== + dependencies: + glob "^7.1.3" + ripemd160@^2.0.0, ripemd160@^2.0.1: version "2.0.2" resolved "https://registry.yarnpkg.com/ripemd160/-/ripemd160-2.0.2.tgz#a1c1a6f624751577ba5d07914cbc92850585890c" @@ -14588,6 +15140,13 @@ run-parallel-limit@^1.0.5: resolved "https://registry.yarnpkg.com/run-parallel-limit/-/run-parallel-limit-1.0.5.tgz#c29a4fd17b4df358cb52a8a697811a63c984f1b7" integrity sha512-NsY+oDngvrvMxKB3G8ijBzIema6aYbQMD2bHOamvN52BysbIGTnEY2xsNyfrcr9GhY995/t/0nQN3R3oZvaDlg== +run-parallel@^1.1.9: + version "1.2.0" + resolved "https://registry.yarnpkg.com/run-parallel/-/run-parallel-1.2.0.tgz#66d1368da7bdf921eb9d95bd1a9229e7f21a43ee" + integrity sha512-5l4VyZR86LZ/lDxZTR6jqL8AFE2S0IFLMP26AbjsLVADxHdhB/c0GUsH+y39UfCi3dzz8OlQuPmnaJOMoDHQBA== + dependencies: + queue-microtask "^1.2.2" + run-queue@^1.0.0, run-queue@^1.0.3: version "1.0.3" resolved "https://registry.yarnpkg.com/run-queue/-/run-queue-1.0.3.tgz#e848396f057d223f24386924618e25694161ec47" @@ -14607,7 +15166,7 @@ rxjs@^6.2.2, rxjs@^6.5.3: dependencies: tslib "^1.9.0" -rxjs@^6.4.0: +rxjs@^6.4.0, rxjs@^6.6.7: version "6.6.7" resolved "https://registry.yarnpkg.com/rxjs/-/rxjs-6.6.7.tgz#90ac018acabf491bf65044235d5863c4dab804c9" integrity sha512-hTdwr+7yYNIT5n4AMYp85KA6yw2Va0FLa3Rguvbpa4W3I5xynaBZo41cM3XM+4Q6fRMj3sBYIR1VAmZMXYJvRQ== @@ -14727,6 +15286,11 @@ select@^1.1.2: resolved "https://registry.yarnpkg.com/select/-/select-1.1.2.tgz#0e7350acdec80b1108528786ec1d4418d11b396d" integrity sha1-DnNQrN7ICxEIUoeG7B1EGNEbOW0= +semver-compare@^1.0.0: + version "1.0.0" + resolved "https://registry.yarnpkg.com/semver-compare/-/semver-compare-1.0.0.tgz#0dee216a1c941ab37e9efb1788f6afc5ff5537fc" + integrity sha1-De4hahyUGrN+nvsXiPavxf9VN/w= + "semver@2 || 3 || 4 || 5", semver@^5.2.0, semver@^5.4.1, semver@^5.5.0, semver@^5.5.1, semver@^5.6.0: version "5.7.1" resolved "https://registry.yarnpkg.com/semver/-/semver-5.7.1.tgz#a954f931aeba508d307bbf069eff0c01c96116f7" @@ -14737,7 +15301,7 @@ semver@7.0.0: resolved "https://registry.yarnpkg.com/semver/-/semver-7.0.0.tgz#5f3ca35761e47e05b206c6daff2cf814f0316b8e" integrity sha512-+GB6zVA9LWh6zovYQLALHwv5rb2PHGlJi3lfiqIHxR0uuwCgefcOJc59v9fv1w8GbStwxuuqqAjI9NMAOOgq1A== -semver@7.3.5, semver@^7.0.0, semver@^7.2.1, semver@^7.3.2: +semver@7.3.5, semver@^7.0.0, semver@^7.2.1, semver@^7.3.2, semver@^7.3.5: version "7.3.5" resolved "https://registry.yarnpkg.com/semver/-/semver-7.3.5.tgz#0b621c879348d8998e4b0e4be94b3f12e6018ef7" integrity sha512-PoeGJYh8HK4BTO/a9Tf6ZG3veo/A7ZVsYrSA6J8ny9nb3B1VrpkuN+z9OE5wfE5p6H4LchYZsegiQgbJD94ZFQ== @@ -15010,7 +15574,7 @@ slash@^3.0.0: resolved "https://registry.yarnpkg.com/slash/-/slash-3.0.0.tgz#6539be870c165adbd5240220dbe361f1bc4d4634" integrity sha512-g9Q1haeby36OSStwb4ntCGGGaKsaVSjQ68fBxoQcutl5fS1vuY18H3wSt3jFyFtrkx+Kz0V1G85A4MyAdDMi2Q== -slice-ansi@^2.0.0, slice-ansi@^2.1.0: +slice-ansi@^2.0.0: version "2.1.0" resolved "https://registry.yarnpkg.com/slice-ansi/-/slice-ansi-2.1.0.tgz#cacd7693461a637a5788d92a7dd4fba068e81636" integrity sha512-Qu+VC3EwYLldKa1fCxuuvULvSJOKEgk9pi8dZeCVK7TqBfUNTH4sFkk4joj8afVSfAYgJoSOetjx9QWOJ5mYoQ== @@ -15019,6 +15583,24 @@ slice-ansi@^2.0.0, slice-ansi@^2.1.0: astral-regex "^1.0.0" is-fullwidth-code-point "^2.0.0" +slice-ansi@^3.0.0: + version "3.0.0" + resolved "https://registry.yarnpkg.com/slice-ansi/-/slice-ansi-3.0.0.tgz#31ddc10930a1b7e0b67b08c96c2f49b77a789787" + integrity sha512-pSyv7bSTC7ig9Dcgbw9AuRNUb5k5V6oDudjZoMBSr13qpLBG7tB+zgCkARjq7xIUgdz5P1Qe8u+rSGdouOOIyQ== + dependencies: + ansi-styles "^4.0.0" + astral-regex "^2.0.0" + is-fullwidth-code-point "^3.0.0" + +slice-ansi@^4.0.0: + version "4.0.0" + resolved "https://registry.yarnpkg.com/slice-ansi/-/slice-ansi-4.0.0.tgz#500e8dd0fd55b05815086255b3195adf2a45fe6b" + integrity sha512-qMCMfhY040cVHT43K9BFygqYbUPFZKHOg7K73mtTWJRb8pyP3fzf4Ixd5SzdEJQ6MRUg/WBnOLxghZtKKurENQ== + dependencies: + ansi-styles "^4.0.0" + astral-regex "^2.0.0" + is-fullwidth-code-point "^3.0.0" + snapdragon-node@^2.0.1: version "2.1.1" resolved "https://registry.yarnpkg.com/snapdragon-node/-/snapdragon-node-2.1.1.tgz#6c175f86ff14bdb0724563e8f3c1b021a286853b" @@ -15310,6 +15892,11 @@ strict-uri-encode@^2.0.0: resolved "https://registry.yarnpkg.com/strict-uri-encode/-/strict-uri-encode-2.0.0.tgz#b9c7330c7042862f6b142dc274bbcc5866ce3546" integrity sha1-ucczDHBChi9rFC3CdLvMWGbONUY= +string-argv@0.3.1: + version "0.3.1" + resolved "https://registry.yarnpkg.com/string-argv/-/string-argv-0.3.1.tgz#95e2fbec0427ae19184935f816d74aaa4c5c19da" + integrity sha512-a1uQGz7IyVy9YwhqjZIZu1c8JO8dNIe20xBmSS6qu9kv++k3JGzCVmprbNN5Kn+BgzD5E7YYwg1CcjuJMRNsvg== + string-length@^4.0.1: version "4.0.2" resolved "https://registry.yarnpkg.com/string-length/-/string-length-4.0.2.tgz#a8a8dc7bd5c1a82b9b3c8b87e125f66871b6e57a" @@ -15365,7 +15952,7 @@ string-width@^4.0.0, string-width@^4.1.0, string-width@^4.2.0: regexp.prototype.flags "^1.3.0" side-channel "^1.0.2" -string.prototype.matchall@^4.0.2: +string.prototype.matchall@^4.0.2, string.prototype.matchall@^4.0.5: version "4.0.5" resolved "https://registry.yarnpkg.com/string.prototype.matchall/-/string.prototype.matchall-4.0.5.tgz#59370644e1db7e4c0c045277690cf7b01203c4da" integrity sha512-Z5ZaXO0svs0M2xd/6By3qpeKpLKd9mO4v4q3oMEQrk8Ck4xOD5d5XeBOOjGrmVZZ/AHB1S0CgG4N5r1G9N3E2Q== @@ -15464,6 +16051,15 @@ string_decoder@~1.1.1: dependencies: safe-buffer "~5.1.0" +stringify-object@^3.3.0: + version "3.3.0" + resolved "https://registry.yarnpkg.com/stringify-object/-/stringify-object-3.3.0.tgz#703065aefca19300d3ce88af4f5b3956d7556629" + integrity sha512-rHqiFh1elqCQ9WPLIC8I0Q/g/wj5J1eMkyoiD6eoQApWHP0FtlK7rqnhmabL5VUY9JQCcqwwvlOaSuutekgyrw== + dependencies: + get-own-enumerable-property-symbols "^3.0.0" + is-obj "^1.0.1" + is-regexp "^1.0.0" + strip-ansi@5.2.0, strip-ansi@^5.0.0, strip-ansi@^5.1.0, strip-ansi@^5.2.0: version "5.2.0" resolved "https://registry.yarnpkg.com/strip-ansi/-/strip-ansi-5.2.0.tgz#8c9a536feb6afc962bdfa5b104a5091c1ad9c0ae" @@ -15626,15 +16222,17 @@ symbol.prototype.description@^1.0.0: es-abstract "^1.17.0-next.1" has-symbols "^1.0.1" -table@^5.2.3: - version "5.4.6" - resolved "https://registry.yarnpkg.com/table/-/table-5.4.6.tgz#1292d19500ce3f86053b05f0e8e7e4a3bb21079e" - integrity sha512-wmEc8m4fjnob4gt5riFRtTu/6+4rSe12TpAELNSqHMfF3IqnA+CH37USM6/YR3qRZv7e56kAEAtd6nKZaxe0Ug== +table@^6.0.9: + version "6.7.1" + resolved "https://registry.yarnpkg.com/table/-/table-6.7.1.tgz#ee05592b7143831a8c94f3cee6aae4c1ccef33e2" + integrity sha512-ZGum47Yi6KOOFDE8m223td53ath2enHcYLgOCjGr5ngu8bdIARQk6mN/wRMv4yMRcHnCSnHbCEha4sobQx5yWg== dependencies: - ajv "^6.10.2" - lodash "^4.17.14" - slice-ansi "^2.1.0" - string-width "^3.0.0" + ajv "^8.0.1" + lodash.clonedeep "^4.5.0" + lodash.truncate "^4.4.2" + slice-ansi "^4.0.0" + string-width "^4.2.0" + strip-ansi "^6.0.0" tail@^2.0.0: version "2.2.1" @@ -15827,7 +16425,7 @@ through2@^2.0.0, through2@^2.0.1: readable-stream "~2.3.6" xtend "~4.0.1" -through@^2.3.6: +through@^2.3.6, through@^2.3.8: version "2.3.8" resolved "https://registry.yarnpkg.com/through/-/through-2.3.8.tgz#0dd4c9ffaabc357960b1b724115d7e0e86a2e1f5" integrity sha1-DdTJ/6q8NXlgsbckEV1+Doai4fU= @@ -15983,7 +16581,7 @@ tslib@^1.10.0, tslib@^1.9.0: resolved "https://registry.yarnpkg.com/tslib/-/tslib-1.13.0.tgz#c881e13cc7015894ed914862d276436fa9a47043" integrity sha512-i/6DQjL8Xf3be4K/E6Wgpekn5Qasl1usyw++dAA35Ue5orEn65VIxOA+YvNNl9HV3qv70T7CNwjODHZrLwvd1Q== -tslib@^1.9.3: +tslib@^1.8.1, tslib@^1.9.3: version "1.14.1" resolved "https://registry.yarnpkg.com/tslib/-/tslib-1.14.1.tgz#cf2d38bdc34a134bcaf1091c41f6619e2f672d00" integrity sha512-Xni35NKzjgMrwevysHTCArtLDpPvye8zV/0E4EyYn43P7/7qvQwPh9BGkHewbMulVntbigmcT7rdX3BNo9wRJg== @@ -15993,6 +16591,13 @@ tslib@^2.0.1, tslib@^2.0.3: resolved "https://registry.yarnpkg.com/tslib/-/tslib-2.3.0.tgz#803b8cdab3e12ba581a4ca41c8839bbb0dacb09e" integrity sha512-N82ooyxVNm6h1riLCoyS9e3fuJ3AMG2zIZs2Gd1ATcSFjSA23Q0fzjjZeh0jbJvWVDZ0cJT8yaNNaaXHzueNjg== +tsutils@^3.21.0: + version "3.21.0" + resolved "https://registry.yarnpkg.com/tsutils/-/tsutils-3.21.0.tgz#b48717d394cea6c1e096983eed58e9d61715b623" + integrity sha512-mHKK3iUXL+3UF6xL5k0PEhKRUBKPBCv/+RkEOpjRWxxx27KKRBmmA60A9pgOUvMi8GKhRMPEmjBRPzs2W7O1OA== + dependencies: + tslib "^1.8.1" + tty-browserify@0.0.0: version "0.0.0" resolved "https://registry.yarnpkg.com/tty-browserify/-/tty-browserify-0.0.0.tgz#a157ba402da24e9bf957f9aa69d524eed42901a6" @@ -16027,6 +16632,11 @@ type-fest@^0.20.2: resolved "https://registry.yarnpkg.com/type-fest/-/type-fest-0.20.2.tgz#1bf207f4b28f91583666cb5fbd327887301cd5f4" integrity sha512-Ne+eE4r0/iWnpAxD852z3A+N0Bt5RN//NjJwRd2VFHEmrywxf5vsZlh4R6lixl6B+wz/8d+maTSAkN1FIkI3LQ== +type-fest@^0.21.3: + version "0.21.3" + resolved "https://registry.yarnpkg.com/type-fest/-/type-fest-0.21.3.tgz#d260a24b0198436e133fa26a524a6d65fa3b2e37" + integrity sha512-t0rzBq87m3fVcduHDUFhKmyyX+9eo6WQjZvf51Ea/M0Q7+T374Jp1aUiyUl0GKxp8M/OETVHSDvmkyPgvX+X2w== + type-fest@^0.6.0: version "0.6.0" resolved "https://registry.yarnpkg.com/type-fest/-/type-fest-0.6.0.tgz#8d2a2370d3df886eb5c90ada1c5bf6188acf838b" @@ -16086,6 +16696,11 @@ typescript-tuple@^2.2.1: dependencies: typescript-compare "^0.0.2" +typescript@^4.3.5: + version "4.3.5" + resolved "https://registry.yarnpkg.com/typescript/-/typescript-4.3.5.tgz#4d1c37cc16e893973c45a06886b7113234f119f4" + integrity sha512-DqQgihaQ9cUrskJo9kIyW/+g0Vxsk8cDtZ52a3NGh0YNTfpUSArXSohyUGnvbPazEPLu398C0UxmKSOrPumUzA== + typical@^2.6.0: version "2.6.1" resolved "https://registry.yarnpkg.com/typical/-/typical-2.6.1.tgz#5c080e5d661cbbe38259d2e70a3c7253e873881d" @@ -16818,13 +17433,6 @@ write-file-atomic@^3.0.0: signal-exit "^3.0.2" typedarray-to-buffer "^3.1.5" -write@1.0.3: - version "1.0.3" - resolved "https://registry.yarnpkg.com/write/-/write-1.0.3.tgz#0800e14523b923a387e415123c865616aae0f5c3" - integrity sha512-/lg70HAjtkUgWPVZhZcm+T4hkL8Zbtp1nFNOn3lRrxnlv50SRBv7cR7RqR+GMsd3hUXy9hWBo4CHTbFTcOYwig== - dependencies: - mkdirp "^0.5.1" - ws@^1.1.0, ws@^1.1.5: version "1.1.5" resolved "https://registry.yarnpkg.com/ws/-/ws-1.1.5.tgz#cbd9e6e75e09fc5d2c90015f21f0c40875e0dd51" @@ -16974,6 +17582,11 @@ yallist@^4.0.0: resolved "https://registry.yarnpkg.com/yallist/-/yallist-4.0.0.tgz#9bb92790d9c0effec63be73519e11a35019a3a72" integrity sha512-3wdGidZyq5PB084XLES5TpOSRA3wjXAlIWMhum2kRcv/41Sn2emQ0dycQW4uZXLejwKvg6EsvbdlVL+FYEct7A== +yaml@^1.10.0: + version "1.10.2" + resolved "https://registry.yarnpkg.com/yaml/-/yaml-1.10.2.tgz#2301c5ffbf12b467de8da2333a459e29e7920e4b" + integrity sha512-r3vXyErRCYJ7wg28yvBY5VSoAF8ZvlcW9/BwUzEtUsjvX/DKs24dIkuwjtuprwJJHsbyUbLApepYTR1BN4uHrg== + yaml@^1.7.2: version "1.10.0" resolved "https://registry.yarnpkg.com/yaml/-/yaml-1.10.0.tgz#3b593add944876077d4d683fee01081bd9fff31e" From 3f5f309643311ed92e957112687c06f5249d7862 Mon Sep 17 00:00:00 2001 From: AlexAlexandre <alexalexandrejr@gmail.com> Date: Thu, 29 Jul 2021 12:45:32 -0300 Subject: [PATCH 46/90] [IMPROVE] - migrate directoryItem presentation layer --- app/containers/UIKit/index.tsx | 1 + .../DirectoryItem/{index.js => index.tsx} | 42 +++++++++---------- .../DirectoryItem/{styles.js => styles.ts} | 0 3 files changed, 22 insertions(+), 21 deletions(-) rename app/presentation/DirectoryItem/{index.js => index.tsx} (74%) rename app/presentation/DirectoryItem/{styles.js => styles.ts} (100%) diff --git a/app/containers/UIKit/index.tsx b/app/containers/UIKit/index.tsx index 9f26331c55..7928e36895 100644 --- a/app/containers/UIKit/index.tsx +++ b/app/containers/UIKit/index.tsx @@ -225,6 +225,7 @@ class ModalParser extends UiKitParserModal { const { theme } = useContext(ThemeContext); const { multiline, actionId, placeholder } = element; return ( + // @ts-ignore <TextInput id={actionId} placeholder={plainText(placeholder)} diff --git a/app/presentation/DirectoryItem/index.js b/app/presentation/DirectoryItem/index.tsx similarity index 74% rename from app/presentation/DirectoryItem/index.js rename to app/presentation/DirectoryItem/index.tsx index 9f98969af0..2b2708f618 100644 --- a/app/presentation/DirectoryItem/index.js +++ b/app/presentation/DirectoryItem/index.tsx @@ -10,7 +10,26 @@ import { themes } from '../../constants/colors'; export { ROW_HEIGHT }; -const DirectoryItemLabel = React.memo(({ text, theme }) => { +type TDirectoryItemLabel = { + text: string; + theme: string; +} + +interface IDirectoryItem { + title: string; + description: string; + avatar: string; + type: string; + onPress(): void; + testID: string; + style: any; + rightLabel: string; + rid: string; + theme: string; + teamMain: boolean; +} + +const DirectoryItemLabel = React.memo(({ text, theme }: TDirectoryItemLabel) => { if (!text) { return null; } @@ -19,7 +38,7 @@ const DirectoryItemLabel = React.memo(({ text, theme }) => { const DirectoryItem = ({ title, description, avatar, onPress, testID, style, rightLabel, type, rid, theme, teamMain -}) => ( +}: IDirectoryItem) => ( <Touch onPress={onPress} style={{ backgroundColor: themes[theme].backgroundColor }} @@ -46,23 +65,4 @@ const DirectoryItem = ({ </Touch> ); -DirectoryItem.propTypes = { - title: PropTypes.string.isRequired, - description: PropTypes.string, - avatar: PropTypes.string, - type: PropTypes.string, - onPress: PropTypes.func.isRequired, - testID: PropTypes.string.isRequired, - style: PropTypes.any, - rightLabel: PropTypes.string, - rid: PropTypes.string, - theme: PropTypes.string, - teamMain: PropTypes.bool -}; - -DirectoryItemLabel.propTypes = { - text: PropTypes.string, - theme: PropTypes.string -}; - export default DirectoryItem; diff --git a/app/presentation/DirectoryItem/styles.js b/app/presentation/DirectoryItem/styles.ts similarity index 100% rename from app/presentation/DirectoryItem/styles.js rename to app/presentation/DirectoryItem/styles.ts From 72df0aef7ee4406d2cdc6a7c414dbbe7591405da Mon Sep 17 00:00:00 2001 From: AlexAlexandre <alexalexandrejr@gmail.com> Date: Thu, 29 Jul 2021 12:46:46 -0300 Subject: [PATCH 47/90] [IMPROVE] - migrate serverItem presentation layer --- .../ServerItem/{index.js => index.tsx} | 27 +++++++++++-------- .../ServerItem/{styles.js => styles.ts} | 0 2 files changed, 16 insertions(+), 11 deletions(-) rename app/presentation/ServerItem/{index.js => index.tsx} (86%) rename app/presentation/ServerItem/{styles.js => styles.ts} (100%) diff --git a/app/presentation/ServerItem/index.js b/app/presentation/ServerItem/index.tsx similarity index 86% rename from app/presentation/ServerItem/index.js rename to app/presentation/ServerItem/index.tsx index ab69020f28..e5fbbcb880 100644 --- a/app/presentation/ServerItem/index.js +++ b/app/presentation/ServerItem/index.tsx @@ -1,5 +1,5 @@ import React from 'react'; -import PropTypes from 'prop-types'; +// @ts-ignore import { View, Text, Pressable } from 'react-native'; import FastImage from '@rocket.chat/react-native-fast-image'; @@ -11,11 +11,23 @@ import { withTheme } from '../../theme'; export { ROW_HEIGHT }; +interface IServerItem { + item: { + id: string; + iconURL: string; + name: string; + }; + onPress(): void; + onLongPress(): void; + hasCheck: boolean; + theme: string; +} + const defaultLogo = require('../../static/images/logo.png'); const ServerItem = React.memo(({ item, onPress, onLongPress, hasCheck, theme -}) => ( +}: IServerItem) => ( <Pressable onPress={onPress} onLongPress={() => onLongPress?.()} @@ -23,7 +35,7 @@ const ServerItem = React.memo(({ android_ripple={{ color: themes[theme].bannerBackground }} - style={({ pressed }) => ({ + style={({ pressed }: any) => ({ backgroundColor: isIOS && pressed ? themes[theme].bannerBackground : themes[theme].backgroundColor @@ -37,6 +49,7 @@ const ServerItem = React.memo(({ uri: item.iconURL, priority: FastImage.priority.high }} + // @ts-ignore defaultSource={defaultLogo} style={styles.serverIcon} onError={() => console.log('err_loading_server_icon')} @@ -58,12 +71,4 @@ const ServerItem = React.memo(({ </Pressable> )); -ServerItem.propTypes = { - item: PropTypes.object.isRequired, - onPress: PropTypes.func.isRequired, - onLongPress: PropTypes.func, - hasCheck: PropTypes.bool, - theme: PropTypes.string -}; - export default withTheme(ServerItem); diff --git a/app/presentation/ServerItem/styles.js b/app/presentation/ServerItem/styles.ts similarity index 100% rename from app/presentation/ServerItem/styles.js rename to app/presentation/ServerItem/styles.ts From a533e5c82781a6aecb17add3d9a7e20150eb6369 Mon Sep 17 00:00:00 2001 From: AlexAlexandre <alexalexandrejr@gmail.com> Date: Thu, 29 Jul 2021 12:48:17 -0300 Subject: [PATCH 48/90] [IMPROVE] - migrate ImageViewer presentation layer --- .../{ImageComponent.js => ImageComponent.ts} | 2 +- ...wer.android.js => ImageViewer.android.tsx} | 79 ++++++++++--------- ...ImageViewer.ios.js => ImageViewer.ios.tsx} | 20 ++--- .../ImageViewer/{index.js => index.ts} | 0 .../ImageViewer/{types.js => types.ts} | 0 5 files changed, 53 insertions(+), 48 deletions(-) rename app/presentation/ImageViewer/{ImageComponent.js => ImageComponent.ts} (85%) rename app/presentation/ImageViewer/{ImageViewer.android.js => ImageViewer.android.tsx} (88%) rename app/presentation/ImageViewer/{ImageViewer.ios.js => ImageViewer.ios.tsx} (80%) rename app/presentation/ImageViewer/{index.js => index.ts} (100%) rename app/presentation/ImageViewer/{types.js => types.ts} (100%) diff --git a/app/presentation/ImageViewer/ImageComponent.js b/app/presentation/ImageViewer/ImageComponent.ts similarity index 85% rename from app/presentation/ImageViewer/ImageComponent.js rename to app/presentation/ImageViewer/ImageComponent.ts index cf00e43228..47249811fe 100644 --- a/app/presentation/ImageViewer/ImageComponent.js +++ b/app/presentation/ImageViewer/ImageComponent.ts @@ -1,6 +1,6 @@ import { types } from './types'; -export const ImageComponent = (type) => { +export const ImageComponent = (type: string) => { let Component; if (type === types.REACT_NATIVE_IMAGE) { const { Image } = require('react-native'); diff --git a/app/presentation/ImageViewer/ImageViewer.android.js b/app/presentation/ImageViewer/ImageViewer.android.tsx similarity index 88% rename from app/presentation/ImageViewer/ImageViewer.android.js rename to app/presentation/ImageViewer/ImageViewer.android.tsx index 2cd8578bb1..c458143c3c 100644 --- a/app/presentation/ImageViewer/ImageViewer.android.js +++ b/app/presentation/ImageViewer/ImageViewer.android.tsx @@ -1,11 +1,7 @@ import React from 'react'; import { StyleSheet, View } from 'react-native'; import PropTypes from 'prop-types'; -import { - PanGestureHandler, - State, - PinchGestureHandler -} from 'react-native-gesture-handler'; +import { PanGestureHandler, State, PinchGestureHandler } from 'react-native-gesture-handler'; import Animated, { Easing } from 'react-native-reanimated'; import { ImageComponent } from './ImageComponent'; import { themes } from '../../constants/colors'; @@ -44,13 +40,13 @@ const { event } = Animated; -function scaleDiff(value) { +function scaleDiff(value: any) { const tmp = new Value(1); const prev = new Value(1); return [set(tmp, divide(value, prev)), set(prev, value), tmp]; } -function dragDiff(value, updating) { +function dragDiff(value: any, updating: any) { const tmp = new Value(0); const prev = new Value(0); return cond( @@ -63,7 +59,7 @@ function dragDiff(value, updating) { // returns linear friction coeff. When `value` is 0 coeff is 1 (no friction), then // it grows linearly until it reaches `MAX_FRICTION` when `value` is equal // to `MAX_VALUE` -function friction(value) { +function friction(value: any) { const MAX_FRICTION = 5; const MAX_VALUE = 100; return max( @@ -72,7 +68,7 @@ function friction(value) { ); } -function speed(value) { +function speed(value: any) { const clock = new Clock(); const dt = diff(clock); return cond(lessThan(dt, 1), 0, multiply(1000, divide(diff(value), dt))); @@ -81,7 +77,7 @@ function speed(value) { const MIN_SCALE = 1; const MAX_SCALE = 2; -function scaleRest(value) { +function scaleRest(value: any) { return cond( lessThan(value, MIN_SCALE), MIN_SCALE, @@ -89,7 +85,7 @@ function scaleRest(value) { ); } -function scaleFriction(value, rest, delta) { +function scaleFriction(value: any, rest: any, delta: any) { const MAX_FRICTION = 20; const MAX_VALUE = 0.5; const res = multiply(value, delta); @@ -105,7 +101,7 @@ function scaleFriction(value, rest, delta) { ); } -function runTiming(clock, value, dest, startStopClock = true) { +function runTiming(clock: any, value: any, dest: any, startStopClock: any = true) { const state = { finished: new Value(0), position: new Value(0), @@ -134,7 +130,7 @@ function runTiming(clock, value, dest, startStopClock = true) { ]; } -function runDecay(clock, value, velocity) { +function runDecay(clock: any, value: any, velocity: any) { const state = { finished: new Value(0), velocity: new Value(0), @@ -160,13 +156,13 @@ function runDecay(clock, value, velocity) { } function bouncyPinch( - value, - gesture, - gestureActive, - focalX, - displacementX, - focalY, - displacementY + value: any, + gesture: any, + gestureActive: any, + focalX: any, + displacementX: any, + focalY: any, + displacementY: any ) { const clock = new Clock(); @@ -212,12 +208,12 @@ function bouncyPinch( } function bouncy( - value, - gestureDiv, - gestureActive, - lowerBound, - upperBound, - f + value: any, + gestureDiv: any, + gestureActive: any, + lowerBound: any, + upperBound: any, + f: any ) { const timingClock = new Clock(); const decayClock = new Clock(); @@ -266,7 +262,7 @@ class Image extends React.PureComponent { } render() { - const { imageComponentType } = this.props; + const { imageComponentType }: any = this.props; const Component = ImageComponent(imageComponentType); @@ -277,16 +273,25 @@ const AnimatedImage = Animated.createAnimatedComponent(Image); // it was picked from https://github.com/software-mansion/react-native-reanimated/tree/master/Example/imageViewer // and changed to use FastImage animated component -export class ImageViewer extends React.Component { - static propTypes = { - uri: PropTypes.string, - width: PropTypes.number, - height: PropTypes.number, - theme: PropTypes.string, - imageComponentType: PropTypes.string - } - constructor(props) { +interface IImageViewerProps { + uri: string; + width: number; + height: number; + theme: string; + imageComponentType: string; +} + +export class ImageViewer extends React.Component<IImageViewerProps, any> { + private _onPinchEvent: any; + private _focalDisplacementX: any; + private _focalDisplacementY: any; + private _scale: any; + private _onPanEvent: any; + private _panTransX: any; + private _panTransY: any; + + constructor(props: IImageViewerProps) { super(props); // DECLARE TRANSX @@ -351,7 +356,7 @@ export class ImageViewer extends React.Component { ]); const panActive = eq(panState, State.ACTIVE); - const panFriction = value => friction(value); + const panFriction = (value: any) => friction(value); // X const panUpX = cond( diff --git a/app/presentation/ImageViewer/ImageViewer.ios.js b/app/presentation/ImageViewer/ImageViewer.ios.tsx similarity index 80% rename from app/presentation/ImageViewer/ImageViewer.ios.js rename to app/presentation/ImageViewer/ImageViewer.ios.tsx index 100bf3e6b9..2dc51049e0 100644 --- a/app/presentation/ImageViewer/ImageViewer.ios.js +++ b/app/presentation/ImageViewer/ImageViewer.ios.tsx @@ -1,6 +1,5 @@ import React from 'react'; import { ScrollView, StyleSheet } from 'react-native'; -import PropTypes from 'prop-types'; import { ImageComponent } from './ImageComponent'; import { themes } from '../../constants/colors'; @@ -15,12 +14,21 @@ const styles = StyleSheet.create({ } }); +interface IImageViewer { + uri: string; + imageComponentType: string; + width: number; + height: number; + theme: string; +} + export const ImageViewer = ({ uri, imageComponentType, theme, width, height, ...props -}) => { +}: IImageViewer) => { const backgroundColor = themes[theme].previewBackground; const Component = ImageComponent(imageComponentType); return ( + // @ts-ignore <ScrollView style={{ backgroundColor }} contentContainerStyle={[ @@ -41,11 +49,3 @@ export const ImageViewer = ({ </ScrollView> ); }; - -ImageViewer.propTypes = { - uri: PropTypes.string, - imageComponentType: PropTypes.string, - width: PropTypes.number, - height: PropTypes.number, - theme: PropTypes.string -}; diff --git a/app/presentation/ImageViewer/index.js b/app/presentation/ImageViewer/index.ts similarity index 100% rename from app/presentation/ImageViewer/index.js rename to app/presentation/ImageViewer/index.ts diff --git a/app/presentation/ImageViewer/types.js b/app/presentation/ImageViewer/types.ts similarity index 100% rename from app/presentation/ImageViewer/types.js rename to app/presentation/ImageViewer/types.ts From 601a45a194900039bc6859471f77c5dca86e3f90 Mon Sep 17 00:00:00 2001 From: AlexAlexandre <alexalexandrejr@gmail.com> Date: Thu, 29 Jul 2021 15:12:41 -0300 Subject: [PATCH 49/90] [IMPROVE] - migrate RoomItem presentation layer --- .../RoomItem/{Actions.js => Actions.tsx} | 39 ++++---- .../{LastMessage.js => LastMessage.tsx} | 36 ++++--- .../RoomItem/{RoomItem.js => RoomItem.tsx} | 94 ++++++++++--------- app/presentation/RoomItem/{Tag.js => Tag.tsx} | 15 ++- .../RoomItem/{Title.js => Title.tsx} | 19 ++-- .../RoomItem/{Touchable.js => Touchable.tsx} | 54 ++++++----- app/presentation/RoomItem/TypeIcon.js | 18 ---- app/presentation/RoomItem/TypeIcon.tsx | 17 ++++ .../RoomItem/{UpdatedAt.js => UpdatedAt.tsx} | 19 ++-- .../RoomItem/{Wrapper.js => Wrapper.tsx} | 23 +++-- .../RoomItem/{index.js => index.tsx} | 80 ++++++++-------- .../RoomItem/{styles.js => styles.ts} | 2 +- 12 files changed, 209 insertions(+), 207 deletions(-) rename app/presentation/RoomItem/{Actions.js => Actions.tsx} (88%) rename app/presentation/RoomItem/{LastMessage.js => LastMessage.tsx} (81%) rename app/presentation/RoomItem/{RoomItem.js => RoomItem.tsx} (73%) rename app/presentation/RoomItem/{Tag.js => Tag.tsx} (72%) rename app/presentation/RoomItem/{Title.js => Title.tsx} (60%) rename app/presentation/RoomItem/{Touchable.js => Touchable.tsx} (86%) delete mode 100644 app/presentation/RoomItem/TypeIcon.js create mode 100644 app/presentation/RoomItem/TypeIcon.tsx rename app/presentation/RoomItem/{UpdatedAt.js => UpdatedAt.tsx} (70%) rename app/presentation/RoomItem/{Wrapper.js => Wrapper.tsx} (70%) rename app/presentation/RoomItem/{index.js => index.tsx} (76%) rename app/presentation/RoomItem/{styles.js => styles.ts} (97%) diff --git a/app/presentation/RoomItem/Actions.js b/app/presentation/RoomItem/Actions.tsx similarity index 88% rename from app/presentation/RoomItem/Actions.js rename to app/presentation/RoomItem/Actions.tsx index 4a557d20ea..b87299d5c0 100644 --- a/app/presentation/RoomItem/Actions.js +++ b/app/presentation/RoomItem/Actions.tsx @@ -1,18 +1,34 @@ import React from 'react'; import { Animated, View, Text } from 'react-native'; import { RectButton } from 'react-native-gesture-handler'; -import PropTypes from 'prop-types'; import I18n, { isRTL } from '../../i18n'; import styles, { ACTION_WIDTH, LONG_SWIPE } from './styles'; import { CustomIcon } from '../../lib/Icons'; import { themes } from '../../constants/colors'; +interface ILeftActions { + theme: string; + transX: any; + isRead: boolean; + width: number; + onToggleReadPress(): void; +} + +interface IRightActions { + theme: string; + transX: any; + favorite: boolean; + width: number; + toggleFav(): void; + onHidePress(): void; +} + const reverse = new Animated.Value(isRTL() ? -1 : 1); export const LeftActions = React.memo(({ theme, transX, isRead, width, onToggleReadPress -}) => { +}: ILeftActions) => { const translateX = Animated.multiply( transX.interpolate({ inputRange: [0, ACTION_WIDTH], @@ -51,7 +67,7 @@ export const LeftActions = React.memo(({ export const RightActions = React.memo(({ transX, favorite, width, toggleFav, onHidePress, theme -}) => { +}: IRightActions) => { const translateXFav = Animated.multiply( transX.interpolate({ inputRange: [-width / 2, -ACTION_WIDTH * 2, 0], @@ -113,20 +129,3 @@ export const RightActions = React.memo(({ </View> ); }); - -LeftActions.propTypes = { - theme: PropTypes.string, - transX: PropTypes.object, - isRead: PropTypes.bool, - width: PropTypes.number, - onToggleReadPress: PropTypes.func -}; - -RightActions.propTypes = { - theme: PropTypes.string, - transX: PropTypes.object, - favorite: PropTypes.bool, - width: PropTypes.number, - toggleFav: PropTypes.func, - onHidePress: PropTypes.func -}; diff --git a/app/presentation/RoomItem/LastMessage.js b/app/presentation/RoomItem/LastMessage.tsx similarity index 81% rename from app/presentation/RoomItem/LastMessage.js rename to app/presentation/RoomItem/LastMessage.tsx index 25fc2c08d8..62bd881a17 100644 --- a/app/presentation/RoomItem/LastMessage.js +++ b/app/presentation/RoomItem/LastMessage.tsx @@ -1,5 +1,4 @@ import React from 'react'; -import PropTypes from 'prop-types'; import { dequal } from 'dequal'; import I18n from '../../i18n'; @@ -8,9 +7,27 @@ import Markdown from '../../containers/markdown'; import { themes } from '../../constants/colors'; import { E2E_MESSAGE_TYPE, E2E_STATUS } from '../../lib/encryption/constants'; +interface ILastMessage { + theme: string; + lastMessage: { + u: any; + pinned: boolean; + t: string; + attachments: any; + msg: string; + e2e: string; + + }; + type: string; + showLastMessage: boolean; + username: string; + useRealName: boolean; + alert: boolean; +} + const formatMsg = ({ lastMessage, type, showLastMessage, username, useRealName -}) => { +}: Partial<ILastMessage>) => { if (!showLastMessage) { return ''; } @@ -45,11 +62,12 @@ const formatMsg = ({ return `${ prefix }${ lastMessage.msg }`; }; -const arePropsEqual = (oldProps, newProps) => dequal(oldProps, newProps); +const arePropsEqual = (oldProps: any, newProps: any) => dequal(oldProps, newProps); const LastMessage = React.memo(({ lastMessage, type, showLastMessage, username, alert, useRealName, theme -}) => ( +}: ILastMessage) => ( + // @ts-ignore <Markdown msg={formatMsg({ lastMessage, type, showLastMessage, username, useRealName @@ -63,14 +81,4 @@ const LastMessage = React.memo(({ /> ), arePropsEqual); -LastMessage.propTypes = { - theme: PropTypes.string, - lastMessage: PropTypes.object, - type: PropTypes.string, - showLastMessage: PropTypes.bool, - username: PropTypes.string, - useRealName: PropTypes.bool, - alert: PropTypes.bool -}; - export default LastMessage; diff --git a/app/presentation/RoomItem/RoomItem.js b/app/presentation/RoomItem/RoomItem.tsx similarity index 73% rename from app/presentation/RoomItem/RoomItem.js rename to app/presentation/RoomItem/RoomItem.tsx index 2ac73a0bb8..310b0332be 100644 --- a/app/presentation/RoomItem/RoomItem.js +++ b/app/presentation/RoomItem/RoomItem.tsx @@ -13,6 +13,53 @@ import Touchable from './Touchable'; import Tag from './Tag'; import I18n from '../../i18n'; +interface IRoomItem { + rid: string; + type: string; + prid: string; + name: string; + avatar: string; + showLastMessage: boolean; + username: string; + avatarSize: number; + testID: string; + width: number; + status: string; + useRealName: boolean; + theme: string; + isFocused: boolean; + isGroupChat: boolean; + isRead: boolean; + teamMain: boolean; + date: string; + accessibilityLabel: string; + lastMessage: { + u: any; + pinned: boolean; + t: string; + attachments: any; + msg: string; + e2e: string; + }; + favorite: boolean; + alert: boolean; + hideUnreadStatus: boolean; + unread: number; + userMentions: number; + groupMentions: number; + tunread: []; + tunreadUser: []; + tunreadGroup: []; + swipeEnabled: boolean; + toggleFav(): void; + toggleRead(): void; + onPress(): void; + onLongPress(): void; + hideChannel(): void; + autoJoin: boolean; + size?: number; +} + const RoomItem = ({ rid, type, @@ -50,7 +97,7 @@ const RoomItem = ({ hideChannel, teamMain, autoJoin -}) => ( +}: IRoomItem) => ( <Touchable onPress={onPress} onLongPress={onLongPress} @@ -158,49 +205,4 @@ const RoomItem = ({ </Touchable> ); -RoomItem.propTypes = { - rid: PropTypes.string.isRequired, - type: PropTypes.string.isRequired, - prid: PropTypes.string, - name: PropTypes.string.isRequired, - avatar: PropTypes.string.isRequired, - showLastMessage: PropTypes.bool, - username: PropTypes.string, - avatarSize: PropTypes.number, - testID: PropTypes.string, - width: PropTypes.number, - status: PropTypes.string, - useRealName: PropTypes.bool, - theme: PropTypes.string, - isFocused: PropTypes.bool, - isGroupChat: PropTypes.bool, - isRead: PropTypes.bool, - teamMain: PropTypes.bool, - date: PropTypes.string, - accessibilityLabel: PropTypes.string, - lastMessage: PropTypes.object, - favorite: PropTypes.bool, - alert: PropTypes.bool, - hideUnreadStatus: PropTypes.bool, - unread: PropTypes.number, - userMentions: PropTypes.number, - groupMentions: PropTypes.number, - tunread: PropTypes.array, - tunreadUser: PropTypes.array, - tunreadGroup: PropTypes.array, - swipeEnabled: PropTypes.bool, - toggleFav: PropTypes.func, - toggleRead: PropTypes.func, - onPress: PropTypes.func, - onLongPress: PropTypes.func, - hideChannel: PropTypes.func, - autoJoin: PropTypes.bool -}; - -RoomItem.defaultProps = { - avatarSize: 48, - status: 'offline', - swipeEnabled: true -}; - export default RoomItem; diff --git a/app/presentation/RoomItem/Tag.js b/app/presentation/RoomItem/Tag.tsx similarity index 72% rename from app/presentation/RoomItem/Tag.js rename to app/presentation/RoomItem/Tag.tsx index 6484b30859..a245b30b6d 100644 --- a/app/presentation/RoomItem/Tag.js +++ b/app/presentation/RoomItem/Tag.tsx @@ -1,13 +1,17 @@ import React from 'react'; import { Text, View } from 'react-native'; -import PropTypes from 'prop-types'; import { themes } from '../../constants/colors'; import { useTheme } from '../../theme'; import styles from './styles'; -const Tag = React.memo(({ name, testID }) => { - const { theme } = useTheme(); +interface ITag { + name: string; + testID?: string; +} + +const Tag = React.memo(({ name, testID }: ITag) => { + const { theme }: any = useTheme(); return ( <View style={[styles.tagContainer, { backgroundColor: themes[theme].borderColor }]}> @@ -24,9 +28,4 @@ const Tag = React.memo(({ name, testID }) => { ); }); -Tag.propTypes = { - name: PropTypes.string, - testID: PropTypes.string -}; - export default Tag; diff --git a/app/presentation/RoomItem/Title.js b/app/presentation/RoomItem/Title.tsx similarity index 60% rename from app/presentation/RoomItem/Title.js rename to app/presentation/RoomItem/Title.tsx index 6f4f848d67..613887fb45 100644 --- a/app/presentation/RoomItem/Title.js +++ b/app/presentation/RoomItem/Title.tsx @@ -1,13 +1,17 @@ import React from 'react'; import { Text } from 'react-native'; -import PropTypes from 'prop-types'; import styles from './styles'; import { themes } from '../../constants/colors'; -const Title = React.memo(({ - name, theme, hideUnreadStatus, alert -}) => ( +interface ITitle { + name: string; + theme: string; + hideUnreadStatus: boolean; + alert: boolean; +} + +const Title = React.memo(({ name, theme, hideUnreadStatus, alert }: ITitle) => ( <Text style={[ styles.title, @@ -21,11 +25,4 @@ const Title = React.memo(({ </Text> )); -Title.propTypes = { - name: PropTypes.string, - theme: PropTypes.string, - hideUnreadStatus: PropTypes.bool, - alert: PropTypes.bool -}; - export default Title; diff --git a/app/presentation/RoomItem/Touchable.js b/app/presentation/RoomItem/Touchable.tsx similarity index 86% rename from app/presentation/RoomItem/Touchable.js rename to app/presentation/RoomItem/Touchable.tsx index bbf7cbf860..72bd035abf 100644 --- a/app/presentation/RoomItem/Touchable.js +++ b/app/presentation/RoomItem/Touchable.tsx @@ -15,26 +15,34 @@ import { isRTL } from '../../i18n'; import { themes } from '../../constants/colors'; import { LeftActions, RightActions } from './Actions'; -class Touchable extends React.Component { - static propTypes = { - type: PropTypes.string.isRequired, - onPress: PropTypes.func, - onLongPress: PropTypes.func, - testID: PropTypes.string, - width: PropTypes.number, - favorite: PropTypes.bool, - isRead: PropTypes.bool, - rid: PropTypes.string, - toggleFav: PropTypes.func, - toggleRead: PropTypes.func, - hideChannel: PropTypes.func, - children: PropTypes.element, - theme: PropTypes.string, - isFocused: PropTypes.bool, - swipeEnabled: PropTypes.bool - } +interface ITouchableProps { + children: JSX.Element; + type: string; + onPress(): void; + onLongPress(): void; + testID: string; + width: number; + favorite: boolean; + isRead: boolean; + rid: string; + toggleFav({}?, {}?): void; + toggleRead({}?, {}?): void; + hideChannel({}?, {}?): void; + theme: string; + isFocused: boolean; + swipeEnabled: boolean; +} + +class Touchable extends React.Component<ITouchableProps, any> { + private dragX: Animated.Value; + private rowOffSet: Animated.Value; + private reverse: Animated.Value; + private transX: Animated.AnimatedAddition; + private transXReverse: Animated.AnimatedMultiplication; + private _onGestureEvent: (...args: any[]) => void; + private _value: number; - constructor(props) { + constructor(props: ITouchableProps) { super(props); this.dragX = new Animated.Value(0); this.rowOffSet = new Animated.Value(0); @@ -56,20 +64,20 @@ class Touchable extends React.Component { this._value = 0; } - _onHandlerStateChange = ({ nativeEvent }) => { + _onHandlerStateChange = ({ nativeEvent }: any) => { if (nativeEvent.oldState === State.ACTIVE) { this._handleRelease(nativeEvent); } } - onLongPressHandlerStateChange = ({ nativeEvent }) => { + onLongPressHandlerStateChange = ({ nativeEvent }: any) => { if (nativeEvent.state === State.ACTIVE) { this.onLongPress(); } } - _handleRelease = (nativeEvent) => { + _handleRelease = (nativeEvent: any) => { const { translationX } = nativeEvent; const { rowState } = this.state; this._value += translationX; @@ -152,7 +160,7 @@ class Touchable extends React.Component { this._animateRow(toValue); } - _animateRow = (toValue) => { + _animateRow = (toValue: any) => { this.rowOffSet.setValue(this._value); this._value = toValue; this.dragX.setValue(0); diff --git a/app/presentation/RoomItem/TypeIcon.js b/app/presentation/RoomItem/TypeIcon.js deleted file mode 100644 index 425ee6db46..0000000000 --- a/app/presentation/RoomItem/TypeIcon.js +++ /dev/null @@ -1,18 +0,0 @@ -import React from 'react'; -import PropTypes from 'prop-types'; - -import RoomTypeIcon from '../../containers/RoomTypeIcon'; - -const TypeIcon = React.memo(({ - type, prid, status, isGroupChat, teamMain -}) => <RoomTypeIcon type={prid ? 'discussion' : type} isGroupChat={isGroupChat} status={status} teamMain={teamMain} />); - -TypeIcon.propTypes = { - type: PropTypes.string, - status: PropTypes.string, - prid: PropTypes.string, - isGroupChat: PropTypes.bool, - teamMain: PropTypes.bool -}; - -export default TypeIcon; diff --git a/app/presentation/RoomItem/TypeIcon.tsx b/app/presentation/RoomItem/TypeIcon.tsx new file mode 100644 index 0000000000..3f1bc4194c --- /dev/null +++ b/app/presentation/RoomItem/TypeIcon.tsx @@ -0,0 +1,17 @@ +import React from 'react'; +import RoomTypeIcon from '../../containers/RoomTypeIcon'; + +interface ITypeIcon { + type: string; + status: string; + prid: string; + isGroupChat: boolean; + teamMain: boolean; + theme?: string; +} + +const TypeIcon = React.memo(({ + type, prid, status, isGroupChat, teamMain +}: ITypeIcon) => <RoomTypeIcon type={prid ? 'discussion' : type} isGroupChat={isGroupChat} status={status} teamMain={teamMain} />); + +export default TypeIcon; diff --git a/app/presentation/RoomItem/UpdatedAt.js b/app/presentation/RoomItem/UpdatedAt.tsx similarity index 70% rename from app/presentation/RoomItem/UpdatedAt.js rename to app/presentation/RoomItem/UpdatedAt.tsx index b8bc9e69af..092709c7de 100644 --- a/app/presentation/RoomItem/UpdatedAt.js +++ b/app/presentation/RoomItem/UpdatedAt.tsx @@ -1,14 +1,18 @@ import React from 'react'; import { Text } from 'react-native'; -import PropTypes from 'prop-types'; import styles from './styles'; import { themes } from '../../constants/colors'; import { capitalize } from '../../utils/room'; -const UpdatedAt = React.memo(({ - date, theme, hideUnreadStatus, alert -}) => { +interface IUpdatedAt { + date: string; + theme: string; + hideUnreadStatus: boolean; + alert: boolean; +} + +const UpdatedAt = React.memo(({ date, theme, hideUnreadStatus, alert }: IUpdatedAt) => { if (!date) { return null; } @@ -38,11 +42,4 @@ const UpdatedAt = React.memo(({ ); }); -UpdatedAt.propTypes = { - date: PropTypes.string, - theme: PropTypes.string, - hideUnreadStatus: PropTypes.bool, - alert: PropTypes.bool -}; - export default UpdatedAt; diff --git a/app/presentation/RoomItem/Wrapper.js b/app/presentation/RoomItem/Wrapper.tsx similarity index 70% rename from app/presentation/RoomItem/Wrapper.js rename to app/presentation/RoomItem/Wrapper.tsx index 52aa0f8a8b..6e7459b8eb 100644 --- a/app/presentation/RoomItem/Wrapper.js +++ b/app/presentation/RoomItem/Wrapper.tsx @@ -1,11 +1,20 @@ import React from 'react'; import { View } from 'react-native'; -import PropTypes from 'prop-types'; import styles from './styles'; import { themes } from '../../constants/colors'; import Avatar from '../../containers/Avatar'; +interface IWrapper { + accessibilityLabel: string; + avatar: string; + avatarSize: number; + type: string; + theme: string; + rid: string; + children: JSX.Element; +} + const Wrapper = ({ accessibilityLabel, avatar, @@ -14,7 +23,7 @@ const Wrapper = ({ theme, rid, children -}) => ( +}: IWrapper) => ( <View style={styles.container} accessibilityLabel={accessibilityLabel} @@ -39,14 +48,4 @@ const Wrapper = ({ </View> ); -Wrapper.propTypes = { - accessibilityLabel: PropTypes.string, - avatar: PropTypes.string, - avatarSize: PropTypes.number, - type: PropTypes.string, - theme: PropTypes.string, - rid: PropTypes.string, - children: PropTypes.element -}; - export default Wrapper; diff --git a/app/presentation/RoomItem/index.js b/app/presentation/RoomItem/index.tsx similarity index 76% rename from app/presentation/RoomItem/index.js rename to app/presentation/RoomItem/index.tsx index 0b64437c6a..612f12c961 100644 --- a/app/presentation/RoomItem/index.js +++ b/app/presentation/RoomItem/index.tsx @@ -9,6 +9,33 @@ import RoomItem from './RoomItem'; export { ROW_HEIGHT }; + +interface IRoomItemContainerProps { + item: any; + showLastMessage: boolean; + id: string; + onPress({}?): void; + onLongPress({}?): void; + username: string; + avatarSize: number; + width: number; + status: string; + toggleFav(): void; + toggleRead(): void; + hideChannel(): void; + useRealName: boolean; + getUserPresence: Function; + connected: boolean; + theme: string; + isFocused: boolean; + getRoomTitle: Function; + getRoomAvatar: Function; + getIsGroupChat: Function; + getIsRead: Function; + swipeEnabled: boolean; + autoJoin: boolean; +} + const attrs = [ 'width', 'status', @@ -20,45 +47,11 @@ const attrs = [ 'autoJoin' ]; -class RoomItemContainer extends React.Component { - static propTypes = { - item: PropTypes.object.isRequired, - showLastMessage: PropTypes.bool, - id: PropTypes.string, - onPress: PropTypes.func, - onLongPress: PropTypes.func, - username: PropTypes.string, - avatarSize: PropTypes.number, - width: PropTypes.number, - status: PropTypes.string, - toggleFav: PropTypes.func, - toggleRead: PropTypes.func, - hideChannel: PropTypes.func, - useRealName: PropTypes.bool, - getUserPresence: PropTypes.func, - connected: PropTypes.bool, - theme: PropTypes.string, - isFocused: PropTypes.bool, - getRoomTitle: PropTypes.func, - getRoomAvatar: PropTypes.func, - getIsGroupChat: PropTypes.func, - getIsRead: PropTypes.func, - swipeEnabled: PropTypes.bool, - autoJoin: PropTypes.bool - }; - - static defaultProps = { - avatarSize: 48, - status: 'offline', - getUserPresence: () => {}, - getRoomTitle: () => 'title', - getRoomAvatar: () => '', - getIsGroupChat: () => false, - getIsRead: () => false, - swipeEnabled: true - } +class RoomItemContainer extends React.Component<IRoomItemContainerProps, any> { + private mounted: boolean; + private roomSubscription: any; - constructor(props) { + constructor(props: IRoomItemContainerProps) { super(props); this.mounted = false; this.init(); @@ -72,12 +65,12 @@ class RoomItemContainer extends React.Component { } } - shouldComponentUpdate(nextProps) { - const { props } = this; + shouldComponentUpdate(nextProps: any) { + const { props }: any = this; return !attrs.every(key => props[key] === nextProps[key]); } - componentDidUpdate(prevProps) { + componentDidUpdate(prevProps: any) { const { connected, getUserPresence, id } = this.props; if (prevProps.connected !== connected && connected && this.isDirect) { getUserPresence(id); @@ -96,7 +89,7 @@ class RoomItemContainer extends React.Component { } get isDirect() { - const { item: { t }, id } = this.props; + const { item: { t }, id }: any = this.props; return t === 'd' && id && !this.isGroupChat; } @@ -165,6 +158,7 @@ class RoomItemContainer extends React.Component { } return ( + // @ts-ignore <RoomItem name={name} avatar={avatar} @@ -207,7 +201,7 @@ class RoomItemContainer extends React.Component { } } -const mapStateToProps = (state, ownProps) => { +const mapStateToProps = (state: any, ownProps: any) => { let status = 'loading'; const { id, type, visitor = {} } = ownProps; if (state.meteor.connected) { diff --git a/app/presentation/RoomItem/styles.js b/app/presentation/RoomItem/styles.ts similarity index 97% rename from app/presentation/RoomItem/styles.js rename to app/presentation/RoomItem/styles.ts index 787546c76c..f6c5bf05f6 100644 --- a/app/presentation/RoomItem/styles.js +++ b/app/presentation/RoomItem/styles.ts @@ -7,7 +7,7 @@ export const ACTION_WIDTH = 80; export const SMALL_SWIPE = ACTION_WIDTH / 2; export const LONG_SWIPE = ACTION_WIDTH * 3; -export default StyleSheet.create({ +export default StyleSheet.create<any>({ flex: { flex: 1 }, From 9d312bd9a6751d6cb5a1bdae3cff5c380edd4d28 Mon Sep 17 00:00:00 2001 From: AlexAlexandre <alexalexandrejr@gmail.com> Date: Thu, 29 Jul 2021 15:15:09 -0300 Subject: [PATCH 50/90] [IMPROVE] - migrate UnreadBadge presentation layer --- .../{getUnreadStyle.js => getUnreadStyle.ts} | 2 +- .../UnreadBadge/{index.js => index.tsx} | 29 +++++++++---------- 2 files changed, 15 insertions(+), 16 deletions(-) rename app/presentation/UnreadBadge/{getUnreadStyle.js => getUnreadStyle.ts} (98%) rename app/presentation/UnreadBadge/{index.js => index.tsx} (81%) diff --git a/app/presentation/UnreadBadge/getUnreadStyle.js b/app/presentation/UnreadBadge/getUnreadStyle.ts similarity index 98% rename from app/presentation/UnreadBadge/getUnreadStyle.js rename to app/presentation/UnreadBadge/getUnreadStyle.ts index 0036d64f45..a15f432902 100644 --- a/app/presentation/UnreadBadge/getUnreadStyle.js +++ b/app/presentation/UnreadBadge/getUnreadStyle.ts @@ -2,7 +2,7 @@ import { themes } from '../../constants/colors'; export const getUnreadStyle = ({ unread, userMentions, groupMentions, theme, tunread, tunreadUser, tunreadGroup -}) => { +}: any) => { if ((!unread || unread <= 0) && (!tunread?.length)) { return {}; } diff --git a/app/presentation/UnreadBadge/index.js b/app/presentation/UnreadBadge/index.tsx similarity index 81% rename from app/presentation/UnreadBadge/index.js rename to app/presentation/UnreadBadge/index.tsx index e603252790..f5865dbb30 100644 --- a/app/presentation/UnreadBadge/index.js +++ b/app/presentation/UnreadBadge/index.tsx @@ -1,5 +1,4 @@ import React from 'react'; -import PropTypes from 'prop-types'; import { View, Text, StyleSheet } from 'react-native'; import sharedStyles from '../../views/Styles'; @@ -30,9 +29,21 @@ const styles = StyleSheet.create({ } }); +interface IUnreadBadge { + theme: string; + unread: number; + userMentions: number; + groupMentions: number; + style: object; + tunread: []; + tunreadUser: []; + tunreadGroup: []; + small: boolean; +} + const UnreadBadge = React.memo(({ theme, unread, userMentions, groupMentions, style, tunread, tunreadUser, tunreadGroup, small -}) => { +}: IUnreadBadge) => { if ((!unread || unread <= 0) && (!tunread?.length)) { return null; } @@ -43,7 +54,7 @@ const UnreadBadge = React.memo(({ if (!backgroundColor) { return null; } - let text = unread || tunread?.length; + let text: any = unread || tunread?.length; if (small && text >= 100) { text = '+99'; } @@ -78,16 +89,4 @@ const UnreadBadge = React.memo(({ ); }); -UnreadBadge.propTypes = { - theme: PropTypes.string, - unread: PropTypes.number, - userMentions: PropTypes.number, - groupMentions: PropTypes.number, - style: PropTypes.object, - tunread: PropTypes.array, - tunreadUser: PropTypes.array, - tunreadGroup: PropTypes.array, - small: PropTypes.bool -}; - export default withTheme(UnreadBadge); From 91e656654267b0b37361c1ba3f768ccfba95f3b0 Mon Sep 17 00:00:00 2001 From: AlexAlexandre <alexalexandrejr@gmail.com> Date: Thu, 29 Jul 2021 15:21:04 -0300 Subject: [PATCH 51/90] [IMPROVE] - migrate KeyboardView presentation layer --- .../{KeyboardView.js => KeyboardView.tsx} | 22 ++++++------- .../{TextInput.js => TextInput.tsx} | 13 ++++---- .../{UserItem.js => UserItem.tsx} | 32 +++++++++---------- 3 files changed, 31 insertions(+), 36 deletions(-) rename app/presentation/{KeyboardView.js => KeyboardView.tsx} (63%) rename app/presentation/{TextInput.js => TextInput.tsx} (81%) rename app/presentation/{UserItem.js => UserItem.tsx} (79%) diff --git a/app/presentation/KeyboardView.js b/app/presentation/KeyboardView.tsx similarity index 63% rename from app/presentation/KeyboardView.js rename to app/presentation/KeyboardView.tsx index 628213825f..0cc5b5e56c 100644 --- a/app/presentation/KeyboardView.js +++ b/app/presentation/KeyboardView.tsx @@ -1,19 +1,16 @@ import React from 'react'; -import PropTypes from 'prop-types'; import { KeyboardAwareScrollView } from '@codler/react-native-keyboard-aware-scroll-view'; import scrollPersistTaps from '../utils/scrollPersistTaps'; -export default class KeyboardView extends React.PureComponent { - static propTypes = { - style: PropTypes.any, - contentContainerStyle: PropTypes.any, - keyboardVerticalOffset: PropTypes.number, - scrollEnabled: PropTypes.bool, - children: PropTypes.oneOfType([ - PropTypes.arrayOf(PropTypes.node), - PropTypes.node - ]) - } +interface IKeyboardViewProps { + style: any, + contentContainerStyle: any, + keyboardVerticalOffset: number, + scrollEnabled: boolean, + children: JSX.Element; +} + +export default class KeyboardView extends React.PureComponent<IKeyboardViewProps, any> { render() { const { @@ -28,6 +25,7 @@ export default class KeyboardView extends React.PureComponent { scrollEnabled={scrollEnabled} alwaysBounceVertical={false} extraHeight={keyboardVerticalOffset} + // @ts-ignore behavior='position' > {children} diff --git a/app/presentation/TextInput.js b/app/presentation/TextInput.tsx similarity index 81% rename from app/presentation/TextInput.js rename to app/presentation/TextInput.tsx index 74e5de2195..ee79804395 100644 --- a/app/presentation/TextInput.js +++ b/app/presentation/TextInput.tsx @@ -1,6 +1,5 @@ import React from 'react'; import { TextInput, StyleSheet, I18nManager } from 'react-native'; -import PropTypes from 'prop-types'; import { themes } from '../constants/colors'; @@ -12,7 +11,12 @@ const styles = StyleSheet.create({ } }); -const ThemedTextInput = React.forwardRef(({ style, theme, ...props }, ref) => ( +interface IThemedTextInput { + style: object; + theme: string; +} + +const ThemedTextInput = React.forwardRef(({ style, theme, ...props }: IThemedTextInput, ref: any) => ( <TextInput ref={ref} style={[{ color: themes[theme].titleText }, style, styles.input]} @@ -22,9 +26,4 @@ const ThemedTextInput = React.forwardRef(({ style, theme, ...props }, ref) => ( /> )); -ThemedTextInput.propTypes = { - style: PropTypes.object, - theme: PropTypes.string -}; - export default ThemedTextInput; diff --git a/app/presentation/UserItem.js b/app/presentation/UserItem.tsx similarity index 79% rename from app/presentation/UserItem.js rename to app/presentation/UserItem.tsx index 5ffc4c6a26..4a718a5e6b 100644 --- a/app/presentation/UserItem.js +++ b/app/presentation/UserItem.tsx @@ -1,8 +1,6 @@ import React from 'react'; -import { - Text, View, StyleSheet, Pressable -} from 'react-native'; -import PropTypes from 'prop-types'; +// @ts-ignore +import { Text, View, StyleSheet, Pressable } from 'react-native'; import Avatar from '../containers/Avatar'; import { CustomIcon } from '../lib/Icons'; @@ -41,9 +39,20 @@ const styles = StyleSheet.create({ } }); +interface IUserItem { + name: string; + username: string; + onPress(): void; + testID: string; + onLongPress(): void; + style: any; + icon: string; + theme: string; +} + const UserItem = ({ name, username, onPress, testID, onLongPress, style, icon, theme -}) => ( +}: IUserItem) => ( <Pressable onPress={onPress} onLongPress={onLongPress} @@ -51,7 +60,7 @@ const UserItem = ({ android_ripple={{ color: themes[theme].bannerBackground }} - style={({ pressed }) => ({ + style={({ pressed }: any) => ({ backgroundColor: isIOS && pressed ? themes[theme].bannerBackground : 'transparent' @@ -68,15 +77,4 @@ const UserItem = ({ </Pressable> ); -UserItem.propTypes = { - name: PropTypes.string.isRequired, - username: PropTypes.string.isRequired, - onPress: PropTypes.func.isRequired, - testID: PropTypes.string.isRequired, - onLongPress: PropTypes.func, - style: PropTypes.any, - icon: PropTypes.string, - theme: PropTypes.string -}; - export default UserItem; From 3e74f59ca373e2f8beda64c00c4a9f1b737c2404 Mon Sep 17 00:00:00 2001 From: AlexAlexandre <alexalexandrejr@gmail.com> Date: Thu, 29 Jul 2021 15:53:36 -0300 Subject: [PATCH 52/90] [IMPROVE] - remove unused PropTypes --- app/presentation/DirectoryItem/index.tsx | 1 - app/presentation/ImageViewer/ImageViewer.android.tsx | 10 +++++----- app/presentation/RoomItem/RoomItem.tsx | 1 - app/presentation/RoomItem/Touchable.tsx | 1 - app/presentation/RoomItem/index.tsx | 1 - 5 files changed, 5 insertions(+), 9 deletions(-) diff --git a/app/presentation/DirectoryItem/index.tsx b/app/presentation/DirectoryItem/index.tsx index 2b2708f618..1e4d5ccf9a 100644 --- a/app/presentation/DirectoryItem/index.tsx +++ b/app/presentation/DirectoryItem/index.tsx @@ -1,6 +1,5 @@ import React from 'react'; import { Text, View } from 'react-native'; -import PropTypes from 'prop-types'; import Touch from '../../utils/touch'; import Avatar from '../../containers/Avatar'; diff --git a/app/presentation/ImageViewer/ImageViewer.android.tsx b/app/presentation/ImageViewer/ImageViewer.android.tsx index c458143c3c..ff5fbc1384 100644 --- a/app/presentation/ImageViewer/ImageViewer.android.tsx +++ b/app/presentation/ImageViewer/ImageViewer.android.tsx @@ -1,6 +1,5 @@ import React from 'react'; import { StyleSheet, View } from 'react-native'; -import PropTypes from 'prop-types'; import { PanGestureHandler, State, PinchGestureHandler } from 'react-native-gesture-handler'; import Animated, { Easing } from 'react-native-reanimated'; import { ImageComponent } from './ImageComponent'; @@ -256,10 +255,11 @@ function bouncy( const WIDTH = 300; const HEIGHT = 300; -class Image extends React.PureComponent { - static propTypes = { - imageComponentType: PropTypes.string - } +interface IImageProps { + imageComponentType: string +} + +class Image extends React.PureComponent<IImageProps, any> { render() { const { imageComponentType }: any = this.props; diff --git a/app/presentation/RoomItem/RoomItem.tsx b/app/presentation/RoomItem/RoomItem.tsx index 310b0332be..6c8a587071 100644 --- a/app/presentation/RoomItem/RoomItem.tsx +++ b/app/presentation/RoomItem/RoomItem.tsx @@ -1,5 +1,4 @@ import React from 'react'; -import PropTypes from 'prop-types'; import { View } from 'react-native'; import styles from './styles'; diff --git a/app/presentation/RoomItem/Touchable.tsx b/app/presentation/RoomItem/Touchable.tsx index 72bd035abf..106f0cb339 100644 --- a/app/presentation/RoomItem/Touchable.tsx +++ b/app/presentation/RoomItem/Touchable.tsx @@ -1,5 +1,4 @@ import React from 'react'; -import PropTypes from 'prop-types'; import { Animated } from 'react-native'; import { LongPressGestureHandler, PanGestureHandler, State diff --git a/app/presentation/RoomItem/index.tsx b/app/presentation/RoomItem/index.tsx index 612f12c961..2116a5b8ad 100644 --- a/app/presentation/RoomItem/index.tsx +++ b/app/presentation/RoomItem/index.tsx @@ -1,5 +1,4 @@ import React from 'react'; -import PropTypes from 'prop-types'; import { connect } from 'react-redux'; import I18n from '../../i18n'; From ca2e28f893f862cb4e1e3ef8b9d48bfc2ec67592 Mon Sep 17 00:00:00 2001 From: Alex Junior <alexalexandrejr@gmail.com> Date: Sun, 1 Aug 2021 22:41:15 -0300 Subject: [PATCH 53/90] [IMPROVE] - creating an Avatar type file --- app/containers/Avatar/Avatar.tsx | 27 ++------------------------- app/containers/Avatar/index.tsx | 8 +++++--- app/containers/Avatar/types.ts | 23 +++++++++++++++++++++++ 3 files changed, 30 insertions(+), 28 deletions(-) create mode 100644 app/containers/Avatar/types.ts diff --git a/app/containers/Avatar/Avatar.tsx b/app/containers/Avatar/Avatar.tsx index acbdde20ab..d37c4e4432 100644 --- a/app/containers/Avatar/Avatar.tsx +++ b/app/containers/Avatar/Avatar.tsx @@ -6,30 +6,7 @@ import { settings as RocketChatSettings } from '@rocket.chat/sdk'; import { avatarURL } from '../../utils/avatar'; import Emoji from '../markdown/Emoji'; - -export interface IAvatar { - server?: string; - style?: any, - text?: string; - avatar?: string; - emoji?: string; - size?: number; - borderRadius?: number; - type?: string; - children?: JSX.Element; - user?: { - id: string; - token: string; - }; - theme: string; - onPress?(): void; - getCustomEmoji(): any; - avatarETag?: string; - isStatic?: boolean; - rid?: string; - blockUnauthenticatedAccess?: boolean; - serverVersion?: string; -} +import {TAvatar} from "./types"; const Avatar = React.memo(({ text, @@ -50,7 +27,7 @@ const Avatar = React.memo(({ rid, blockUnauthenticatedAccess, serverVersion -}: Partial<IAvatar>) => { +}: Partial<TAvatar>) => { if ((!text && !avatar && !emoji && !rid) || !server) { return null; } diff --git a/app/containers/Avatar/index.tsx b/app/containers/Avatar/index.tsx index e9a3541ac7..dc58ef90d5 100644 --- a/app/containers/Avatar/index.tsx +++ b/app/containers/Avatar/index.tsx @@ -4,13 +4,15 @@ import { Q } from '@nozbe/watermelondb'; import database from '../../lib/database'; import { getUserSelector } from '../../selectors/login'; -import Avatar, {IAvatar} from './Avatar'; +import Avatar from './Avatar'; +import {TAvatar} from "./types"; -class AvatarContainer extends React.Component<Partial<IAvatar>, any> { + +class AvatarContainer extends React.Component<Partial<TAvatar>, any> { private mounted: boolean; private subscription!: any; - constructor(props: Partial<IAvatar>) { + constructor(props: Partial<TAvatar>) { super(props); this.mounted = false; this.state = { avatarETag: '' }; diff --git a/app/containers/Avatar/types.ts b/app/containers/Avatar/types.ts new file mode 100644 index 0000000000..8db7376624 --- /dev/null +++ b/app/containers/Avatar/types.ts @@ -0,0 +1,23 @@ +export type TAvatar = { + server: string; + style: any, + text: string; + avatar: string; + emoji: string; + size: number; + borderRadius: number; + type: string; + children: JSX.Element; + user: { + id: string; + token: string; + }; + theme: string; + onPress(): void; + getCustomEmoji(): any; + avatarETag: string; + isStatic: boolean; + rid: string; + blockUnauthenticatedAccess: boolean; + serverVersion: string; +} \ No newline at end of file From 757347fa294f8c020b39048bb4cd0b3f8c75dd2e Mon Sep 17 00:00:00 2001 From: Alex Junior <alexalexandrejr@gmail.com> Date: Sun, 1 Aug 2021 23:11:20 -0300 Subject: [PATCH 54/90] [IMPROVE] - creating an emoji type file --- app/containers/EmojiPicker/CustomEmoji.tsx | 10 ++------ app/containers/EmojiPicker/EmojiCategory.tsx | 15 +++--------- app/containers/EmojiPicker/TabBar.tsx | 4 ++-- app/containers/EmojiPicker/index.tsx | 24 ++++++++++++-------- app/containers/EmojiPicker/types.ts | 22 ++++++++++++++++++ app/containers/markdown/Emoji.tsx | 3 ++- 6 files changed, 46 insertions(+), 32 deletions(-) create mode 100644 app/containers/EmojiPicker/types.ts diff --git a/app/containers/EmojiPicker/CustomEmoji.tsx b/app/containers/EmojiPicker/CustomEmoji.tsx index ea848cbd79..d569529761 100644 --- a/app/containers/EmojiPicker/CustomEmoji.tsx +++ b/app/containers/EmojiPicker/CustomEmoji.tsx @@ -1,14 +1,8 @@ import React from 'react'; import FastImage from '@rocket.chat/react-native-fast-image'; -import {TEmoji} from "./index"; +import {TCustomEmoji} from "./types"; -interface ICustomEmoji { - baseUrl: string, - emoji: TEmoji, - style: any -} - -const CustomEmoji = React.memo(({ baseUrl, emoji, style }: ICustomEmoji) => ( +const CustomEmoji = React.memo(({ baseUrl, emoji, style }: TCustomEmoji) => ( <FastImage style={style} source={{ diff --git a/app/containers/EmojiPicker/EmojiCategory.tsx b/app/containers/EmojiPicker/EmojiCategory.tsx index 2da9ae7c47..eb272495a7 100644 --- a/app/containers/EmojiPicker/EmojiCategory.tsx +++ b/app/containers/EmojiPicker/EmojiCategory.tsx @@ -5,20 +5,11 @@ import shortnameToUnicode from '../../utils/shortnameToUnicode'; import styles from './styles'; import CustomEmoji from './CustomEmoji'; import scrollPersistTaps from '../../utils/scrollPersistTaps'; +import {TEmoji, TEmojiCategory} from "./types"; const EMOJI_SIZE: number = 50; -interface IEmoji { - baseUrl: string; - emojis: any; - onEmojiSelected({}: any): void; - emojisPerRow: number; - width: number; - style: any; - tabLabel: string; -} - -const renderEmoji = (emoji: any, size: number, baseUrl: string) => { +const renderEmoji = (emoji: TEmoji, size: number, baseUrl: string) => { if (emoji && emoji.isCustom) { return <CustomEmoji style={[styles.customCategoryEmoji, { height: size - 16, width: size - 16 }]} emoji={emoji} baseUrl={baseUrl} />; } @@ -29,7 +20,7 @@ const renderEmoji = (emoji: any, size: number, baseUrl: string) => { ); }; -class EmojiCategory extends React.Component<Partial<IEmoji>> { +class EmojiCategory extends React.Component<Partial<TEmojiCategory>> { renderItem(emoji: any) { const { baseUrl, onEmojiSelected } = this.props; diff --git a/app/containers/EmojiPicker/TabBar.tsx b/app/containers/EmojiPicker/TabBar.tsx index 1f6303c144..aa07f9559e 100644 --- a/app/containers/EmojiPicker/TabBar.tsx +++ b/app/containers/EmojiPicker/TabBar.tsx @@ -3,7 +3,7 @@ import { View, TouchableOpacity, Text } from 'react-native'; import styles from './styles'; import { themes } from '../../constants/colors'; -interface ITabBar { +interface ITabBarProps { goToPage({}): void; activeTab: number, tabs: [], @@ -11,7 +11,7 @@ interface ITabBar { theme: string } -export default class TabBar extends React.Component<Partial<ITabBar>> { +export default class TabBar extends React.Component<Partial<ITabBarProps>> { shouldComponentUpdate(nextProps: any) { const { activeTab, theme } = this.props; diff --git a/app/containers/EmojiPicker/index.tsx b/app/containers/EmojiPicker/index.tsx index 4ef376a951..0e89557690 100644 --- a/app/containers/EmojiPicker/index.tsx +++ b/app/containers/EmojiPicker/index.tsx @@ -17,18 +17,24 @@ import shortnameToUnicode from '../../utils/shortnameToUnicode'; import log from '../../utils/log'; import { themes } from '../../constants/colors'; import { withTheme } from '../../theme'; -import {IEmoji} from "../markdown/Emoji"; + +import {TEmoji} from "./types"; const scrollProps = { keyboardShouldPersistTaps: 'always', keyboardDismissMode: 'none' }; -export type TEmoji = { - content: any; - name: string; - extension: any; - isCustom: boolean; +interface IEmojiPickerProps { + literal: string; + isMessageContainsOnlyEmoji: boolean; + getCustomEmoji?: Function; + baseUrl: string; + customEmojis?: any; + style: object; + theme?: string; + onEmojiSelected?: Function; + tabEmojiStyle?: object; } interface IEmojiPickerState { @@ -38,9 +44,9 @@ interface IEmojiPickerState { width: number | null; } -class EmojiPicker extends Component<IEmoji, IEmojiPickerState> { +class EmojiPicker extends Component<IEmojiPickerProps, IEmojiPickerState> { - constructor(props: IEmoji) { + constructor(props: IEmojiPickerProps) { super(props); const customEmojis = Object.keys(props.customEmojis) .filter(item => item === props.customEmojis[item].name) @@ -192,7 +198,7 @@ class EmojiPicker extends Component<IEmoji, IEmojiPickerState> { } } -const mapStateToProps = (state: IEmojiPickerState) => ({ +const mapStateToProps = (state: any) => ({ customEmojis: state.customEmojis }); diff --git a/app/containers/EmojiPicker/types.ts b/app/containers/EmojiPicker/types.ts new file mode 100644 index 0000000000..76e36ca298 --- /dev/null +++ b/app/containers/EmojiPicker/types.ts @@ -0,0 +1,22 @@ +export type TEmoji = { + content: any; + name: string; + extension: any; + isCustom: boolean; +} + +export type TCustomEmoji = { + baseUrl: string, + emoji: TEmoji, + style: any +} + +export type TEmojiCategory = { + baseUrl: string; + emojis: TEmoji[]; + onEmojiSelected({}: any): void; + emojisPerRow: number; + width: number; + style: any; + tabLabel: string; +} \ No newline at end of file diff --git a/app/containers/markdown/Emoji.tsx b/app/containers/markdown/Emoji.tsx index 16cb190ea7..8ca9ee62f3 100644 --- a/app/containers/markdown/Emoji.tsx +++ b/app/containers/markdown/Emoji.tsx @@ -7,7 +7,8 @@ import { themes } from '../../constants/colors'; import styles from './styles'; -export interface IEmoji { +// TODO this interface it's duplicated with 'app/containers/EmojiPicker/index.tsx' +interface IEmoji { literal: string; isMessageContainsOnlyEmoji: boolean; getCustomEmoji?: Function; From 20d7b6a051ca4cdf77ef8a8539412afec3f50f89 Mon Sep 17 00:00:00 2001 From: Alex Junior <alexalexandrejr@gmail.com> Date: Sun, 1 Aug 2021 23:33:36 -0300 Subject: [PATCH 55/90] [IMPROVE] - creating an Message type file --- app/containers/message/Attachments.tsx | 12 +-- app/containers/message/Blocks.ts | 10 +-- app/containers/message/Broadcast.tsx | 11 +-- app/containers/message/CallButton.tsx | 8 +- app/containers/message/Content.tsx | 22 +---- app/containers/message/Discussion.tsx | 9 +- app/containers/message/Message.tsx | 41 +++------ app/containers/message/MessageAvatar.tsx | 17 +--- app/containers/message/RepliedThread.tsx | 12 +-- app/containers/message/Thread.tsx | 12 +-- app/containers/message/types.ts | 108 +++++++++++++++++++++++ 11 files changed, 137 insertions(+), 125 deletions(-) create mode 100644 app/containers/message/types.ts diff --git a/app/containers/message/Attachments.tsx b/app/containers/message/Attachments.tsx index 07d0c05475..cd31a4684a 100644 --- a/app/containers/message/Attachments.tsx +++ b/app/containers/message/Attachments.tsx @@ -1,22 +1,16 @@ import React from 'react'; import { dequal } from 'dequal'; +import {TMessageAttachments} from "./types"; + import Image from './Image'; import Audio from './Audio'; import Video from './Video'; import Reply from './Reply'; -export interface IMessageAttachments { - attachments: any; - timeFormat: string; - showAttachment: Function; - getCustomEmoji: Function; - theme: string; -} - const Attachments = React.memo(({ attachments, timeFormat, showAttachment, getCustomEmoji, theme -}: IMessageAttachments) => { +}: TMessageAttachments) => { if (!attachments || attachments.length === 0) { return null; } diff --git a/app/containers/message/Blocks.ts b/app/containers/message/Blocks.ts index 5f22d9ca95..aed1824393 100644 --- a/app/containers/message/Blocks.ts +++ b/app/containers/message/Blocks.ts @@ -1,14 +1,8 @@ import React from 'react'; import { messageBlockWithContext } from '../UIKit/MessageBlock'; +import {TMessageBlocks} from "./types"; -export interface IMessageBlocks { - blocks: any; - id: string; - rid: string; - blockAction: Function; -} - -const Blocks = React.memo(({ blocks, id: mid, rid, blockAction }: IMessageBlocks) => { +const Blocks = React.memo(({ blocks, id: mid, rid, blockAction }: TMessageBlocks) => { if (blocks && blocks.length > 0) { const appId = blocks[0]?.appId || ''; return React.createElement( diff --git a/app/containers/message/Broadcast.tsx b/app/containers/message/Broadcast.tsx index 106ed80588..1e9a8494ba 100644 --- a/app/containers/message/Broadcast.tsx +++ b/app/containers/message/Broadcast.tsx @@ -8,16 +8,9 @@ import { BUTTON_HIT_SLOP } from './utils'; import I18n from '../../i18n'; import { themes } from '../../constants/colors'; import MessageContext from './Context'; +import {TMessageBroadcast} from "./types"; -export interface IMessageBroadcast { - author: { - _id: string - }; - broadcast: boolean; - theme: string -} - -const Broadcast = React.memo(({ author, broadcast, theme }: IMessageBroadcast) => { +const Broadcast = React.memo(({ author, broadcast, theme }: TMessageBroadcast) => { const { user, replyBroadcast } = useContext(MessageContext); const isOwn = author._id === user.id; if (broadcast && !isOwn) { diff --git a/app/containers/message/CallButton.tsx b/app/containers/message/CallButton.tsx index 19ee3ad957..b0c7f50487 100644 --- a/app/containers/message/CallButton.tsx +++ b/app/containers/message/CallButton.tsx @@ -7,13 +7,9 @@ import styles from './styles'; import I18n from '../../i18n'; import { CustomIcon } from '../../lib/Icons'; import { themes } from '../../constants/colors'; +import {TMessageCallButton} from "./types"; -export interface IMessageCallButton { - theme: string; - callJitsi: Function; -} - -const CallButton = React.memo(({ theme, callJitsi }: IMessageCallButton) => ( +const CallButton = React.memo(({ theme, callJitsi }: TMessageCallButton) => ( <View style={styles.buttonContainer}> <Touchable onPress={callJitsi} diff --git a/app/containers/message/Content.tsx b/app/containers/message/Content.tsx index 2f1f542f00..e2d964c15f 100644 --- a/app/containers/message/Content.tsx +++ b/app/containers/message/Content.tsx @@ -11,27 +11,9 @@ import { themes } from '../../constants/colors'; import MessageContext from './Context'; import Encrypted from './Encrypted'; import { E2E_MESSAGE_TYPE } from '../../lib/encryption/constants'; -import {TChannel} from "../markdown/Hashtag"; +import {TMessageContent} from "./types"; -export interface IMessageContent { - isTemp: boolean; - isInfo: boolean; - tmid: string; - isThreadRoom: boolean; - msg: string; - theme: string; - isEdited: boolean; - isEncrypted: boolean; - getCustomEmoji: Function; - channels: TChannel[]; - mentions: object[]; - navToRoomInfo: Function; - useRealName: boolean; - isIgnored: boolean; - type: string; -} - -const Content = React.memo((props: IMessageContent) => { +const Content = React.memo((props: TMessageContent) => { if (props.isInfo) { // @ts-ignore const infoMessage = getInfoMessage({ ...props }); diff --git a/app/containers/message/Discussion.tsx b/app/containers/message/Discussion.tsx index 34a88263db..8353c0e9f0 100644 --- a/app/containers/message/Discussion.tsx +++ b/app/containers/message/Discussion.tsx @@ -10,15 +10,10 @@ import { DISCUSSION } from './constants'; import { themes } from '../../constants/colors'; import MessageContext from './Context'; import { formatDateThreads } from '../../utils/room'; +import {TMessageDiscussion} from "./types"; -export interface IMessageDiscussion { - msg: string; - dcount: number; - dlm: string; - theme: string; -} -const Discussion = React.memo(({ msg, dcount, dlm, theme }: IMessageDiscussion) => { +const Discussion = React.memo(({ msg, dcount, dlm, theme }: TMessageDiscussion) => { let time; if (dlm) { time = formatDateThreads(dlm); diff --git a/app/containers/message/Message.tsx b/app/containers/message/Message.tsx index 2870ff4a55..6f08f0fe8c 100644 --- a/app/containers/message/Message.tsx +++ b/app/containers/message/Message.tsx @@ -6,41 +6,20 @@ import MessageContext from './Context'; import User from './User'; import styles from './styles'; -import RepliedThread, {IMessageRepliedThread} from './RepliedThread'; -import MessageAvatar, {IMessageAvatar} from './MessageAvatar'; -import Attachments, {IMessageAttachments} from './Attachments'; +import RepliedThread from './RepliedThread'; +import MessageAvatar from './MessageAvatar'; +import Attachments from './Attachments'; import Urls from './Urls'; -import Thread, {IMessageThread} from './Thread'; -import Blocks, {IMessageBlocks} from './Blocks'; +import Thread from './Thread'; +import Blocks from './Blocks'; import Reactions from './Reactions'; -import Broadcast, {IMessageBroadcast} from './Broadcast'; -import Discussion, {IMessageDiscussion} from './Discussion'; -import Content, {IMessageContent} from './Content'; +import Broadcast from './Broadcast'; +import Discussion from './Discussion'; +import Content from './Content'; import ReadReceipt from './ReadReceipt'; -import CallButton, {IMessageCallButton} from './CallButton'; +import CallButton from './CallButton'; import { themes } from '../../constants/colors'; - - -type TMessageInner = { - type: string; - blocks: []; -} & IMessageDiscussion & IMessageContent & IMessageCallButton & IMessageBlocks - & IMessageThread & IMessageAttachments & IMessageBroadcast; - -type TMessage = { - isThreadReply: boolean; - isThreadSequential: boolean; - isInfo: boolean; - isTemp: boolean; - isHeader: boolean; - hasError: boolean; - style: any; - onLongPress: Function; - isReadReceiptEnabled: boolean; - unread: boolean; - theme: string; - isIgnored: boolean; -} & IMessageRepliedThread & IMessageAvatar & IMessageContent & TMessageInner; +import {TMessage, TMessageInner} from "./types"; interface IMessageTouchable { hasError: boolean; diff --git a/app/containers/message/MessageAvatar.tsx b/app/containers/message/MessageAvatar.tsx index cb7f718005..ad0b3dc066 100644 --- a/app/containers/message/MessageAvatar.tsx +++ b/app/containers/message/MessageAvatar.tsx @@ -3,24 +3,11 @@ import React, { useContext } from 'react'; import Avatar from '../Avatar'; import styles from './styles'; import MessageContext from './Context'; - -export interface IMessageAvatar { - isHeader: boolean; - avatar: string; - emoji: string; - author: { - username: string - _id: string; - }; - small?: boolean; - navToRoomInfo: Function; - getCustomEmoji(): void; - theme: string; -} +import {TMessageAvatar} from "./types"; const MessageAvatar = React.memo(({ isHeader, avatar, author, small, navToRoomInfo, emoji, getCustomEmoji, theme -}: IMessageAvatar) => { +}: TMessageAvatar) => { const { user } = useContext(MessageContext); if (isHeader && author) { const navParam = { diff --git a/app/containers/message/RepliedThread.tsx b/app/containers/message/RepliedThread.tsx index 4e832a961e..55ac8c6b9f 100644 --- a/app/containers/message/RepliedThread.tsx +++ b/app/containers/message/RepliedThread.tsx @@ -6,20 +6,12 @@ import styles from './styles'; import { themes } from '../../constants/colors'; import I18n from '../../i18n'; import Markdown from '../markdown'; +import {TMessageRepliedThread} from "./types"; -export interface IMessageRepliedThread { - tmid: string; - tmsg: string; - id: string; - isHeader: boolean; - theme: string; - fetchThreadName: Function; - isEncrypted: boolean; -} const RepliedThread = memo(({ tmid, tmsg, isHeader, fetchThreadName, id, isEncrypted, theme -}: IMessageRepliedThread) => { +}: TMessageRepliedThread) => { if (!tmid || !isHeader) { return null; } diff --git a/app/containers/message/Thread.tsx b/app/containers/message/Thread.tsx index 361a51805f..d87c6aef9f 100644 --- a/app/containers/message/Thread.tsx +++ b/app/containers/message/Thread.tsx @@ -6,17 +6,9 @@ import { themes } from '../../constants/colors'; import MessageContext from './Context'; import ThreadDetails from '../ThreadDetails'; import I18n from '../../i18n'; +import {TMessageThread} from "./types"; -export interface IMessageThread { - msg: string; - tcount: number; - theme: string; - tlm: string; - isThreadRoom: boolean; - id: string; -} - -const Thread = React.memo(({ msg, tcount, tlm, isThreadRoom, theme, id }: IMessageThread) => { +const Thread = React.memo(({ msg, tcount, tlm, isThreadRoom, theme, id }: TMessageThread) => { if (!tlm || isThreadRoom || tcount === 0) { return null; } diff --git a/app/containers/message/types.ts b/app/containers/message/types.ts new file mode 100644 index 0000000000..e45e424c66 --- /dev/null +++ b/app/containers/message/types.ts @@ -0,0 +1,108 @@ +import {TChannel} from "../markdown/Hashtag"; + +export type TMessageAttachments = { + attachments: any; + timeFormat: string; + showAttachment: Function; + getCustomEmoji: Function; + theme: string; +} + +export type TMessageAvatar = { + isHeader: boolean; + avatar: string; + emoji: string; + author: { + username: string + _id: string; + }; + small?: boolean; + navToRoomInfo: Function; + getCustomEmoji(): void; + theme: string; +} + +export type TMessageBlocks = { + blocks: any; + id: string; + rid: string; + blockAction: Function; +} + +export type TMessageBroadcast = { + author: { + _id: string + }; + broadcast: boolean; + theme: string +} + +export type TMessageCallButton = { + theme: string; + callJitsi: Function; +} + +export type TMessageContent = { + isTemp: boolean; + isInfo: boolean; + tmid: string; + isThreadRoom: boolean; + msg: string; + theme: string; + isEdited: boolean; + isEncrypted: boolean; + getCustomEmoji: Function; + channels: TChannel[]; + mentions: object[]; + navToRoomInfo: Function; + useRealName: boolean; + isIgnored: boolean; + type: string; +} + +export type TMessageDiscussion = { + msg: string; + dcount: number; + dlm: string; + theme: string; +} + +export type TMessageThread = { + msg: string; + tcount: number; + theme: string; + tlm: string; + isThreadRoom: boolean; + id: string; +} + +export type TMessageRepliedThread = { + tmid: string; + tmsg: string; + id: string; + isHeader: boolean; + theme: string; + fetchThreadName: Function; + isEncrypted: boolean; +} + +export type TMessageInner = { + type: string; + blocks: []; +} & TMessageDiscussion & TMessageContent & TMessageCallButton & TMessageBlocks + & TMessageThread & TMessageAttachments & TMessageBroadcast; + +export type TMessage = { + isThreadReply: boolean; + isThreadSequential: boolean; + isInfo: boolean; + isTemp: boolean; + isHeader: boolean; + hasError: boolean; + style: any; + onLongPress: Function; + isReadReceiptEnabled: boolean; + unread: boolean; + theme: string; + isIgnored: boolean; +} & TMessageRepliedThread & TMessageAvatar & TMessageContent & TMessageInner; \ No newline at end of file From 50a99fb846ade46a44849732e8445e1cb286c58e Mon Sep 17 00:00:00 2001 From: AlexAlexandre <alexalexandrejr@gmail.com> Date: Mon, 2 Aug 2021 10:48:43 -0300 Subject: [PATCH 56/90] [IMPROVE] - fixing some errors appoint by jest --- .../{index.stories.tsx => index.stories.js} | 2 +- .../{RoomHeader.stories.tsx => RoomHeader.stories.js} | 4 ++-- app/containers/RoomHeader/RoomHeader.tsx | 6 +++--- app/presentation/RoomItem/Touchable.tsx | 6 +++--- 4 files changed, 9 insertions(+), 9 deletions(-) rename app/containers/BackgroundContainer/{index.stories.tsx => index.stories.js} (95%) rename app/containers/RoomHeader/{RoomHeader.stories.tsx => RoomHeader.stories.js} (97%) diff --git a/app/containers/BackgroundContainer/index.stories.tsx b/app/containers/BackgroundContainer/index.stories.js similarity index 95% rename from app/containers/BackgroundContainer/index.stories.tsx rename to app/containers/BackgroundContainer/index.stories.js index 95546ae271..0b6c9a1c64 100644 --- a/app/containers/BackgroundContainer/index.stories.tsx +++ b/app/containers/BackgroundContainer/index.stories.js @@ -24,7 +24,7 @@ stories.add('long text', () => ( <BackgroundContainer text={longText} /> )); -const ThemeStory = ({ theme, ...props }: any) => ( +const ThemeStory = ({ theme, ...props }) => ( <ThemeContext.Provider value={{ theme }} > diff --git a/app/containers/RoomHeader/RoomHeader.stories.tsx b/app/containers/RoomHeader/RoomHeader.stories.js similarity index 97% rename from app/containers/RoomHeader/RoomHeader.stories.tsx rename to app/containers/RoomHeader/RoomHeader.stories.js index b3fd291364..bfea5e2722 100644 --- a/app/containers/RoomHeader/RoomHeader.stories.tsx +++ b/app/containers/RoomHeader/RoomHeader.stories.js @@ -11,7 +11,7 @@ import { ThemeContext } from '../../theme'; const stories = storiesOf('RoomHeader', module); // TODO: refactor after react-navigation v6 -const HeaderExample = ({ title }: any) => ( +const HeaderExample = ({ title }) => ( <Header headerTitle={() => ( <View style={{ flex: 1, paddingHorizontal: 12 }}> @@ -77,7 +77,7 @@ stories.add('thread', () => ( </> )); -const ThemeStory = ({ theme }: any) => ( +const ThemeStory = ({ theme }) => ( <ThemeContext.Provider value={{ theme }} > diff --git a/app/containers/RoomHeader/RoomHeader.tsx b/app/containers/RoomHeader/RoomHeader.tsx index 4a753137a5..e2b71d6d83 100644 --- a/app/containers/RoomHeader/RoomHeader.tsx +++ b/app/containers/RoomHeader/RoomHeader.tsx @@ -76,9 +76,9 @@ interface IRoomHeader { const SubTitle = React.memo(({ usersTyping, subtitle, renderFunc, theme, scale }: TRoomHeaderSubTitle) => { const fontSize = getSubTitleSize(scale); // typing - if (usersTyping.length) { + if (usersTyping?.length) { let usersText; - if (usersTyping.length === 2) { + if (usersTyping?.length === 2) { usersText = usersTyping.join(` ${ I18n.t('and') } `); } else { usersText = usersTyping.join(', '); @@ -147,7 +147,7 @@ const Header = React.memo(({ let scale = 1; if (!portrait && !tmid) { - if (usersTyping.length > 0 || subtitle) { + if (usersTyping?.length > 0 || subtitle) { scale = 0.8; } } diff --git a/app/presentation/RoomItem/Touchable.tsx b/app/presentation/RoomItem/Touchable.tsx index 106f0cb339..8161ac4c2f 100644 --- a/app/presentation/RoomItem/Touchable.tsx +++ b/app/presentation/RoomItem/Touchable.tsx @@ -24,9 +24,9 @@ interface ITouchableProps { favorite: boolean; isRead: boolean; rid: string; - toggleFav({}?, {}?): void; - toggleRead({}?, {}?): void; - hideChannel({}?, {}?): void; + toggleFav: Function; + toggleRead: Function; + hideChannel: Function; theme: string; isFocused: boolean; swipeEnabled: boolean; From 49b9cf436f4dd187cf4946bec307568439cec7a8 Mon Sep 17 00:00:00 2001 From: AlexAlexandre <alexalexandrejr@gmail.com> Date: Mon, 2 Aug 2021 19:17:29 -0300 Subject: [PATCH 57/90] [IMPROVE] - fixing some errors appoint by jest --- .../__snapshots__/Storyshots.test.js.snap | 22 ++++++++++--------- app/containers/Avatar/Avatar.tsx | 13 ++++++----- app/containers/Avatar/index.tsx | 5 +++++ app/containers/Button/index.tsx | 8 +++++++ .../HeaderButton/HeaderButtonContainer.tsx | 2 +- app/containers/LoginServices.tsx | 4 ++++ app/containers/MessageBox/index.tsx | 13 ++++++++++- app/containers/RoomHeader/RoomHeader.tsx | 2 +- app/containers/RoomTypeIcon.tsx | 2 +- app/containers/Status/Status.tsx | 2 +- app/containers/TextInput.tsx | 6 +++++ app/containers/UIKit/MultiSelect/index.tsx | 3 ++- app/containers/markdown/List.tsx | 2 +- app/containers/message/index.tsx | 22 +++++++++++++++++++ app/presentation/RoomItem/RoomItem.tsx | 6 ++--- app/presentation/RoomItem/index.tsx | 11 ++++++++++ app/share.tsx | 1 + 17 files changed, 98 insertions(+), 26 deletions(-) diff --git a/__tests__/__snapshots__/Storyshots.test.js.snap b/__tests__/__snapshots__/Storyshots.test.js.snap index 84457cec0c..8e0c516964 100644 --- a/__tests__/__snapshots__/Storyshots.test.js.snap +++ b/__tests__/__snapshots__/Storyshots.test.js.snap @@ -4693,7 +4693,7 @@ exports[`Storyshots List pressable 1`] = ` "justifyContent": "center", "paddingHorizontal": 12, }, - false, + undefined, Object { "height": 92, }, @@ -6211,7 +6211,7 @@ exports[`Storyshots List with bigger font 1`] = ` "justifyContent": "center", "paddingHorizontal": 12, }, - false, + undefined, Object { "height": 69, }, @@ -6625,7 +6625,7 @@ exports[`Storyshots List with bigger font 1`] = ` "justifyContent": "center", "paddingHorizontal": 12, }, - false, + undefined, Object { "height": 69, }, @@ -7080,7 +7080,7 @@ exports[`Storyshots List with black theme 1`] = ` "justifyContent": "center", "paddingHorizontal": 12, }, - false, + undefined, Object { "height": 92, }, @@ -7494,7 +7494,7 @@ exports[`Storyshots List with black theme 1`] = ` "justifyContent": "center", "paddingHorizontal": 12, }, - false, + undefined, Object { "height": 92, }, @@ -7972,7 +7972,7 @@ exports[`Storyshots List with custom colors 1`] = ` "justifyContent": "center", "paddingHorizontal": 12, }, - false, + undefined, Object { "height": 92, }, @@ -8129,7 +8129,7 @@ exports[`Storyshots List with dark theme 1`] = ` "justifyContent": "center", "paddingHorizontal": 12, }, - false, + undefined, Object { "height": 92, }, @@ -8543,7 +8543,7 @@ exports[`Storyshots List with dark theme 1`] = ` "justifyContent": "center", "paddingHorizontal": 12, }, - false, + undefined, Object { "height": 92, }, @@ -10410,7 +10410,7 @@ exports[`Storyshots List with small font 1`] = ` "justifyContent": "center", "paddingHorizontal": 12, }, - false, + undefined, Object { "height": 36.800000000000004, }, @@ -10824,7 +10824,7 @@ exports[`Storyshots List with small font 1`] = ` "justifyContent": "center", "paddingHorizontal": 12, }, - false, + undefined, Object { "height": 36.800000000000004, }, @@ -47791,6 +47791,7 @@ exports[`Storyshots Message With image 1`] = ` /> </View> </View> + //TODO - fix the required fields for the Markdown <Text style={ Array [ @@ -48109,6 +48110,7 @@ exports[`Storyshots Message With image 1`] = ` /> </View> </View> + //TODO - fix the required fields for the Markdown <Text style={ Array [ diff --git a/app/containers/Avatar/Avatar.tsx b/app/containers/Avatar/Avatar.tsx index d37c4e4432..3175903d1e 100644 --- a/app/containers/Avatar/Avatar.tsx +++ b/app/containers/Avatar/Avatar.tsx @@ -9,13 +9,9 @@ import Emoji from '../markdown/Emoji'; import {TAvatar} from "./types"; const Avatar = React.memo(({ - text, - size, server, - borderRadius, - style, + style, avatar, - type, children, user, onPress, @@ -26,8 +22,13 @@ const Avatar = React.memo(({ isStatic, rid, blockUnauthenticatedAccess, - serverVersion + serverVersion, + text = '', + size = 25, + borderRadius = 4, + type = 'd', }: Partial<TAvatar>) => { + if ((!text && !avatar && !emoji && !rid) || !server) { return null; } diff --git a/app/containers/Avatar/index.tsx b/app/containers/Avatar/index.tsx index dc58ef90d5..981f19f607 100644 --- a/app/containers/Avatar/index.tsx +++ b/app/containers/Avatar/index.tsx @@ -12,6 +12,11 @@ class AvatarContainer extends React.Component<Partial<TAvatar>, any> { private mounted: boolean; private subscription!: any; + static defaultProps = { + text: '', + type: 'd' + }; + constructor(props: Partial<TAvatar>) { super(props); this.mounted = false; diff --git a/app/containers/Button/index.tsx b/app/containers/Button/index.tsx index 9faa12648b..3ff63f5c0d 100644 --- a/app/containers/Button/index.tsx +++ b/app/containers/Button/index.tsx @@ -40,6 +40,14 @@ const styles = StyleSheet.create({ export default class Button extends React.PureComponent<Partial<IButtonProps>, any> { + static defaultProps = { + title: 'Press me!', + type: 'primary', + onPress: () => alert('It works!'), + disabled: false, + loading: false + } + render() { const { title, type, onPress, disabled, backgroundColor, color, loading, style, theme, fontSize, ...otherProps diff --git a/app/containers/HeaderButton/HeaderButtonContainer.tsx b/app/containers/HeaderButton/HeaderButtonContainer.tsx index 3f704ebdca..ce6506b67a 100644 --- a/app/containers/HeaderButton/HeaderButtonContainer.tsx +++ b/app/containers/HeaderButton/HeaderButtonContainer.tsx @@ -20,7 +20,7 @@ const styles = StyleSheet.create({ } }); -const Container = ({ children, left }: IHeaderButtonContainer) => ( +const Container = ({ children, left = false }: IHeaderButtonContainer) => ( <View style={[styles.container, left ? styles.left : styles.right]}> {children} </View> diff --git a/app/containers/LoginServices.tsx b/app/containers/LoginServices.tsx index 8c6695c46e..84c36edd8e 100644 --- a/app/containers/LoginServices.tsx +++ b/app/containers/LoginServices.tsx @@ -93,6 +93,10 @@ interface ILoginServicesProps { class LoginServices extends React.PureComponent<ILoginServicesProps, any> { private _animation: any; + static defaultProps = { + separator: true + } + state = { collapsed: true, servicesHeight: new Animated.Value(SERVICES_COLLAPSED_HEIGHT) diff --git a/app/containers/MessageBox/index.tsx b/app/containers/MessageBox/index.tsx index 1693afdced..627ea4aea7 100644 --- a/app/containers/MessageBox/index.tsx +++ b/app/containers/MessageBox/index.tsx @@ -1,5 +1,5 @@ import React, { Component } from 'react'; -import { View, Alert, Keyboard, Text } from 'react-native'; +import {View, Alert, Keyboard, Text, NativeModules} from 'react-native'; import { connect } from 'react-redux'; import { KeyboardAccessoryView } from 'react-native-ui-lib/keyboard'; import ImagePicker from 'react-native-image-crop-picker'; @@ -143,6 +143,16 @@ class MessageBox extends Component<IMessageBoxProps, IMessageBoxState> { private component: any; private typingTimeout: any; + static defaultProps = { + message: { + id: '' + }, + sharing: false, + iOSScrollBehavior: NativeModules.KeyboardTrackingViewTempManager?.KeyboardTrackingScrollBehaviorFixedOffset, + isActionsEnabled: true, + getCustomEmoji: () => {} + } + constructor(props: IMessageBoxProps) { super(props); this.state = { @@ -958,6 +968,7 @@ class MessageBox extends Component<IMessageBoxProps, IMessageBoxState> { //@ts-ignore style={[styles.textBoxInput, { color: themes[theme].bodyText }]} returnKeyType='default' + //@ts-ignore keyboardType='twitter' blurOnSubmit={false} placeholder={I18n.t('New_Message')} diff --git a/app/containers/RoomHeader/RoomHeader.tsx b/app/containers/RoomHeader/RoomHeader.tsx index e2b71d6d83..fbe48cd6f0 100644 --- a/app/containers/RoomHeader/RoomHeader.tsx +++ b/app/containers/RoomHeader/RoomHeader.tsx @@ -141,7 +141,7 @@ const HeaderTitle = React.memo(({ title, tmid, prid, scale, theme, testID }: TRo }); const Header = React.memo(({ - title, subtitle, parentTitle, type, status, usersTyping, width, height, prid, tmid, onPress, theme, isGroupChat, teamMain, testID + title, subtitle, parentTitle, type, status, width, height, prid, tmid, onPress, theme, isGroupChat, teamMain, testID, usersTyping = [] }: IRoomHeader) => { const portrait = height > width; let scale = 1; diff --git a/app/containers/RoomTypeIcon.tsx b/app/containers/RoomTypeIcon.tsx index 20a5a2ddda..459649a66b 100644 --- a/app/containers/RoomTypeIcon.tsx +++ b/app/containers/RoomTypeIcon.tsx @@ -22,7 +22,7 @@ interface IRoomTypeIcon { } const RoomTypeIcon = React.memo(({ - type, size, isGroupChat, status, style, theme, teamMain + type, isGroupChat, status, style, theme, teamMain, size = 16 }: IRoomTypeIcon) => { if (!type) { return null; diff --git a/app/containers/Status/Status.tsx b/app/containers/Status/Status.tsx index 8aab83600d..70ebd62291 100644 --- a/app/containers/Status/Status.tsx +++ b/app/containers/Status/Status.tsx @@ -8,7 +8,7 @@ interface IStatus { style: any; } -const Status = React.memo(({ status, size, style, ...props }: IStatus) => { +const Status = React.memo(({ style, status = 'offline', size = 32, ...props }: IStatus) => { const name = `status-${ status }`; const isNameValid = CustomIcon.hasIcon(name); const iconName = isNameValid ? name : 'status-offline'; diff --git a/app/containers/TextInput.tsx b/app/containers/TextInput.tsx index 90d5c33b0c..7773fb4232 100644 --- a/app/containers/TextInput.tsx +++ b/app/containers/TextInput.tsx @@ -72,6 +72,11 @@ interface IRCTextInputProps { export default class RCTextInput extends React.PureComponent<IRCTextInputProps, any> { + static defaultProps = { + error: {}, + theme: 'light' + } + state = { showPassword: false } @@ -167,6 +172,7 @@ export default class RCTextInput extends React.PureComponent<IRCTextInputProps, inputStyle ]} ref={inputRef} + /*@ts-ignore*/ autoCorrect={false} autoCapitalize='none' underlineColorAndroid='transparent' diff --git a/app/containers/UIKit/MultiSelect/index.tsx b/app/containers/UIKit/MultiSelect/index.tsx index 77222ef433..1e3a3c762d 100644 --- a/app/containers/UIKit/MultiSelect/index.tsx +++ b/app/containers/UIKit/MultiSelect/index.tsx @@ -54,7 +54,7 @@ export const MultiSelect = React.memo(({ value: values, multiselect = false, onSearch, - onClose, + onClose = () => {}, disabled, inputStyle, theme @@ -129,6 +129,7 @@ export const MultiSelect = React.memo(({ <View style={[styles.content, { backgroundColor: themes[theme].backgroundColor }]}> <TextInput testID='multi-select-search' + /*@ts-ignore*/ onChangeText={onSearch || onSearchChange} placeholder={I18n.t('Search')} theme={theme} diff --git a/app/containers/markdown/List.tsx b/app/containers/markdown/List.tsx index fb741d5d45..68c830408a 100644 --- a/app/containers/markdown/List.tsx +++ b/app/containers/markdown/List.tsx @@ -8,7 +8,7 @@ interface IList { numberOfLines: number; } -const List = React.memo(({ children, ordered, start = 1, tight, numberOfLines = 0 }: IList) => { +const List = React.memo(({ children, ordered, tight, start = 1, numberOfLines = 0 }: IList) => { let bulletWidth = 15; if (ordered) { diff --git a/app/containers/message/index.tsx b/app/containers/message/index.tsx index 86a6a6e3d7..8056c36827 100644 --- a/app/containers/message/index.tsx +++ b/app/containers/message/index.tsx @@ -64,6 +64,28 @@ interface IMessageContainerProps { class MessageContainer extends React.Component<IMessageContainerProps, any> { + static defaultProps = { + getCustomEmoji: () => {}, + onLongPress: () => {}, + onReactionPress: () => {}, + onEncryptedPress: () => {}, + onDiscussionPress: () => {}, + onThreadPress: () => {}, + errorActionsShow: () => {}, + replyBroadcast: () => {}, + reactionInit: () => {}, + fetchThreadName: () => {}, + showAttachment: () => {}, + onReactionLongPress: () => {}, + navToRoomInfo: () => {}, + callJitsi: () => {}, + blockAction: () => {}, + archived: false, + broadcast: false, + isIgnored: false, + theme: 'light' + } + state = { isManualUnignored: false }; private subscription: any; diff --git a/app/presentation/RoomItem/RoomItem.tsx b/app/presentation/RoomItem/RoomItem.tsx index 6c8a587071..4cdc64c575 100644 --- a/app/presentation/RoomItem/RoomItem.tsx +++ b/app/presentation/RoomItem/RoomItem.tsx @@ -66,10 +66,10 @@ const RoomItem = ({ name, avatar, width, - avatarSize, + avatarSize = 48, username, showLastMessage, - status, + status = 'offline', useRealName, theme, isFocused, @@ -88,7 +88,7 @@ const RoomItem = ({ tunreadUser, tunreadGroup, testID, - swipeEnabled, + swipeEnabled = true, onPress, onLongPress, toggleFav, diff --git a/app/presentation/RoomItem/index.tsx b/app/presentation/RoomItem/index.tsx index 2116a5b8ad..b7d22ab6fa 100644 --- a/app/presentation/RoomItem/index.tsx +++ b/app/presentation/RoomItem/index.tsx @@ -50,6 +50,17 @@ class RoomItemContainer extends React.Component<IRoomItemContainerProps, any> { private mounted: boolean; private roomSubscription: any; + static defaultProps = { + avatarSize: 48, + status: 'offline', + getUserPresence: () => {}, + getRoomTitle: () => 'title', + getRoomAvatar: () => '', + getIsGroupChat: () => false, + getIsRead: () => false, + swipeEnabled: true + } + constructor(props: IRoomItemContainerProps) { super(props); this.mounted = false; diff --git a/app/share.tsx b/app/share.tsx index e3448563d7..998b3eafe7 100644 --- a/app/share.tsx +++ b/app/share.tsx @@ -86,6 +86,7 @@ const OutsideStack = () => { <Outside.Screen name='WithoutServersView' component={WithoutServersView} + /*@ts-ignore*/ options={WithoutServersView.navigationOptions} /> </Outside.Navigator> From 1596f1621fa1731e8cacbf40ca0eeac4aaddd426 Mon Sep 17 00:00:00 2001 From: AlexAlexandre <alexalexandrejr@gmail.com> Date: Tue, 3 Aug 2021 19:01:54 -0300 Subject: [PATCH 58/90] [IMPROVE] - changing the types for interfaces, for our new patterns --- app/containers/ActionSheet/ActionSheet.tsx | 4 +- app/containers/ActivityIndicator.tsx | 8 ++- app/containers/Avatar/Avatar.tsx | 4 +- app/containers/Avatar/index.tsx | 6 +- .../Avatar/{types.ts => interfaces.ts} | 4 +- app/containers/Check.tsx | 8 +-- app/containers/EmojiPicker/CustomEmoji.tsx | 4 +- app/containers/EmojiPicker/EmojiCategory.tsx | 6 +- app/containers/EmojiPicker/index.tsx | 9 ++- .../EmojiPicker/{types.ts => interfaces.ts} | 12 ++-- app/containers/FormContainer.tsx | 1 + app/containers/Header/index.tsx | 4 +- app/containers/List/ListContainer.tsx | 4 +- app/containers/List/ListSeparator.tsx | 4 +- app/containers/LoginServices.tsx | 10 ++-- app/containers/MessageActions/Header.tsx | 6 +- app/containers/MessageBox/EmojiKeyboard.tsx | 1 + .../MessageBox/Mentions/MentionEmoji.tsx | 4 +- .../MessageBox/Mentions/MentionItem.tsx | 4 +- app/containers/MessageBox/Mentions/index.tsx | 1 + app/containers/MessageBox/index.tsx | 1 + app/containers/Passcode/Base/Locked.tsx | 8 ++- app/containers/Passcode/PasscodeEnter.tsx | 1 + app/containers/ReactionsModal.tsx | 12 ++-- app/containers/TwoFactor/index.tsx | 3 +- app/containers/UIKit/Image.tsx | 12 ++-- app/containers/UIKit/MultiSelect/Chips.tsx | 4 +- app/containers/UIKit/MultiSelect/Items.tsx | 6 +- app/containers/UIKit/MultiSelect/styles.ts | 2 +- app/containers/UIKit/Overflow.tsx | 12 ++-- app/containers/UIKit/Section.tsx | 8 +-- app/containers/UIKit/index.tsx | 1 + app/containers/markdown/Hashtag.tsx | 10 ++-- app/containers/markdown/index.tsx | 7 ++- app/containers/message/Attachments.tsx | 4 +- app/containers/message/Audio.tsx | 6 +- app/containers/message/Blocks.ts | 4 +- app/containers/message/Broadcast.tsx | 4 +- app/containers/message/CallButton.tsx | 4 +- app/containers/message/Content.tsx | 4 +- app/containers/message/Discussion.tsx | 4 +- app/containers/message/Emoji.tsx | 9 +-- app/containers/message/Message.tsx | 24 ++------ app/containers/message/MessageAvatar.tsx | 4 +- app/containers/message/Reactions.tsx | 14 ++--- app/containers/message/RepliedThread.tsx | 5 +- app/containers/message/Reply.tsx | 30 +++++----- app/containers/message/Thread.tsx | 4 +- app/containers/message/Urls.tsx | 12 ++-- .../message/{types.ts => interfaces.ts} | 59 +++++++++++++------ app/index.tsx | 7 ++- app/presentation/DirectoryItem/index.tsx | 4 +- app/presentation/RoomItem/index.tsx | 1 - app/share.tsx | 7 ++- 54 files changed, 207 insertions(+), 194 deletions(-) rename app/containers/Avatar/{types.ts => interfaces.ts} (93%) rename app/containers/EmojiPicker/{types.ts => interfaces.ts} (65%) rename app/containers/message/{types.ts => interfaces.ts} (58%) diff --git a/app/containers/ActionSheet/ActionSheet.tsx b/app/containers/ActionSheet/ActionSheet.tsx index 6513152e8c..e7c1173b24 100644 --- a/app/containers/ActionSheet/ActionSheet.tsx +++ b/app/containers/ActionSheet/ActionSheet.tsx @@ -25,7 +25,7 @@ import * as List from '../List'; import I18n from '../../i18n'; import { useOrientation, useDimensions, IDimensionsContextProps } from '../../dimensions'; -type TActionSheetData = { +interface IActionSheetData { options: any; headerHeight?: number; hasCancel?: boolean; @@ -48,7 +48,7 @@ const ANIMATION_CONFIG = { const ActionSheet = React.memo(forwardRef(({ children, theme }: {children: JSX.Element; theme: string}, ref) => { const bottomSheetRef: any = useRef(); - const [data, setData] = useState<TActionSheetData>({} as TActionSheetData); + const [data, setData] = useState<IActionSheetData>({} as IActionSheetData); const [isVisible, setVisible] = useState(false); const { height }: Partial<IDimensionsContextProps> = useDimensions(); const { isLandscape } = useOrientation(); diff --git a/app/containers/ActivityIndicator.tsx b/app/containers/ActivityIndicator.tsx index e2eb33926d..e2f1de9356 100644 --- a/app/containers/ActivityIndicator.tsx +++ b/app/containers/ActivityIndicator.tsx @@ -2,10 +2,12 @@ import React from 'react'; import { ActivityIndicator, ActivityIndicatorProps, StyleSheet } from 'react-native'; import { themes } from '../constants/colors'; +type TTheme = 'light' | 'dark' | 'black' | string; + interface IActivityIndicator extends ActivityIndicatorProps{ - theme?: 'light' | 'dark' | 'black' | string, - absolute?: boolean, - props?: object + theme?: TTheme; + absolute?: boolean; + props?: object; } const styles = StyleSheet.create({ diff --git a/app/containers/Avatar/Avatar.tsx b/app/containers/Avatar/Avatar.tsx index 3175903d1e..4c0d741dd4 100644 --- a/app/containers/Avatar/Avatar.tsx +++ b/app/containers/Avatar/Avatar.tsx @@ -6,7 +6,7 @@ import { settings as RocketChatSettings } from '@rocket.chat/sdk'; import { avatarURL } from '../../utils/avatar'; import Emoji from '../markdown/Emoji'; -import {TAvatar} from "./types"; +import {IAvatar} from "./interfaces"; const Avatar = React.memo(({ server, @@ -27,7 +27,7 @@ const Avatar = React.memo(({ size = 25, borderRadius = 4, type = 'd', -}: Partial<TAvatar>) => { +}: Partial<IAvatar>) => { if ((!text && !avatar && !emoji && !rid) || !server) { return null; diff --git a/app/containers/Avatar/index.tsx b/app/containers/Avatar/index.tsx index 981f19f607..55e503b220 100644 --- a/app/containers/Avatar/index.tsx +++ b/app/containers/Avatar/index.tsx @@ -5,10 +5,10 @@ import { Q } from '@nozbe/watermelondb'; import database from '../../lib/database'; import { getUserSelector } from '../../selectors/login'; import Avatar from './Avatar'; -import {TAvatar} from "./types"; +import {IAvatar} from "./interfaces"; -class AvatarContainer extends React.Component<Partial<TAvatar>, any> { +class AvatarContainer extends React.Component<Partial<IAvatar>, any> { private mounted: boolean; private subscription!: any; @@ -17,7 +17,7 @@ class AvatarContainer extends React.Component<Partial<TAvatar>, any> { type: 'd' }; - constructor(props: Partial<TAvatar>) { + constructor(props: Partial<IAvatar>) { super(props); this.mounted = false; this.state = { avatarETag: '' }; diff --git a/app/containers/Avatar/types.ts b/app/containers/Avatar/interfaces.ts similarity index 93% rename from app/containers/Avatar/types.ts rename to app/containers/Avatar/interfaces.ts index 8db7376624..966202ea72 100644 --- a/app/containers/Avatar/types.ts +++ b/app/containers/Avatar/interfaces.ts @@ -1,4 +1,4 @@ -export type TAvatar = { +export interface IAvatar { server: string; style: any, text: string; @@ -20,4 +20,4 @@ export type TAvatar = { rid: string; blockUnauthenticatedAccess: boolean; serverVersion: string; -} \ No newline at end of file +} diff --git a/app/containers/Check.tsx b/app/containers/Check.tsx index a440667969..4034dfd26b 100644 --- a/app/containers/Check.tsx +++ b/app/containers/Check.tsx @@ -4,9 +4,9 @@ import { StyleSheet } from 'react-native'; import { CustomIcon } from '../lib/Icons'; import { themes } from '../constants/colors'; -type TCheck = { - style?: object, - theme: string +interface ICheck { + style?: object; + theme: string; } const styles = StyleSheet.create({ icon: { @@ -16,6 +16,6 @@ const styles = StyleSheet.create({ } }); -const Check = React.memo(({ theme, style }: TCheck) => <CustomIcon style={[styles.icon, style]} color={themes[theme].tintColor} size={22} name='check' />); +const Check = React.memo(({ theme, style }: ICheck) => <CustomIcon style={[styles.icon, style]} color={themes[theme].tintColor} size={22} name='check' />); export default Check; diff --git a/app/containers/EmojiPicker/CustomEmoji.tsx b/app/containers/EmojiPicker/CustomEmoji.tsx index d569529761..6fda1a7060 100644 --- a/app/containers/EmojiPicker/CustomEmoji.tsx +++ b/app/containers/EmojiPicker/CustomEmoji.tsx @@ -1,8 +1,8 @@ import React from 'react'; import FastImage from '@rocket.chat/react-native-fast-image'; -import {TCustomEmoji} from "./types"; +import {ICustomEmoji} from "./interfaces"; -const CustomEmoji = React.memo(({ baseUrl, emoji, style }: TCustomEmoji) => ( +const CustomEmoji = React.memo(({ baseUrl, emoji, style }: ICustomEmoji) => ( <FastImage style={style} source={{ diff --git a/app/containers/EmojiPicker/EmojiCategory.tsx b/app/containers/EmojiPicker/EmojiCategory.tsx index eb272495a7..452181f1bb 100644 --- a/app/containers/EmojiPicker/EmojiCategory.tsx +++ b/app/containers/EmojiPicker/EmojiCategory.tsx @@ -5,11 +5,11 @@ import shortnameToUnicode from '../../utils/shortnameToUnicode'; import styles from './styles'; import CustomEmoji from './CustomEmoji'; import scrollPersistTaps from '../../utils/scrollPersistTaps'; -import {TEmoji, TEmojiCategory} from "./types"; +import {IEmoji, IEmojiCategory} from "./interfaces"; const EMOJI_SIZE: number = 50; -const renderEmoji = (emoji: TEmoji, size: number, baseUrl: string) => { +const renderEmoji = (emoji: IEmoji, size: number, baseUrl: string) => { if (emoji && emoji.isCustom) { return <CustomEmoji style={[styles.customCategoryEmoji, { height: size - 16, width: size - 16 }]} emoji={emoji} baseUrl={baseUrl} />; } @@ -20,7 +20,7 @@ const renderEmoji = (emoji: TEmoji, size: number, baseUrl: string) => { ); }; -class EmojiCategory extends React.Component<Partial<TEmojiCategory>> { +class EmojiCategory extends React.Component<Partial<IEmojiCategory>> { renderItem(emoji: any) { const { baseUrl, onEmojiSelected } = this.props; diff --git a/app/containers/EmojiPicker/index.tsx b/app/containers/EmojiPicker/index.tsx index 0e89557690..876e671bca 100644 --- a/app/containers/EmojiPicker/index.tsx +++ b/app/containers/EmojiPicker/index.tsx @@ -17,8 +17,7 @@ import shortnameToUnicode from '../../utils/shortnameToUnicode'; import log from '../../utils/log'; import { themes } from '../../constants/colors'; import { withTheme } from '../../theme'; - -import {TEmoji} from "./types"; +import {IEmoji} from "./interfaces"; const scrollProps = { keyboardShouldPersistTaps: 'always', @@ -86,7 +85,7 @@ class EmojiPicker extends Component<IEmojiPickerProps, IEmojiPickerState> { return false; } - onEmojiSelected = (emoji: TEmoji) => { + onEmojiSelected = (emoji: IEmoji) => { try { const { onEmojiSelected } = this.props; if (emoji.isCustom) { @@ -106,7 +105,7 @@ class EmojiPicker extends Component<IEmojiPickerProps, IEmojiPickerState> { } // eslint-disable-next-line react/sort-comp - _addFrequentlyUsed = protectedFunction(async(emoji: TEmoji) => { + _addFrequentlyUsed = protectedFunction(async(emoji: IEmoji) => { const db = database.active; const freqEmojiCollection = db.get('frequently_used_emojis'); let freqEmojiRecord: any; @@ -135,7 +134,7 @@ class EmojiPicker extends Component<IEmojiPickerProps, IEmojiPickerState> { const db = database.active; const frequentlyUsedRecords = await db.get('frequently_used_emojis').query().fetch(); let frequentlyUsed: any = orderBy(frequentlyUsedRecords, ['count'], ['desc']); - frequentlyUsed = frequentlyUsed.map((item: TEmoji) => { + frequentlyUsed = frequentlyUsed.map((item: IEmoji) => { if (item.isCustom) { return { content: item.content, extension: item.extension, isCustom: item.isCustom }; } diff --git a/app/containers/EmojiPicker/types.ts b/app/containers/EmojiPicker/interfaces.ts similarity index 65% rename from app/containers/EmojiPicker/types.ts rename to app/containers/EmojiPicker/interfaces.ts index 76e36ca298..0d88c78a54 100644 --- a/app/containers/EmojiPicker/types.ts +++ b/app/containers/EmojiPicker/interfaces.ts @@ -1,22 +1,22 @@ -export type TEmoji = { +export interface IEmoji { content: any; name: string; extension: any; isCustom: boolean; } -export type TCustomEmoji = { +export interface ICustomEmoji { baseUrl: string, - emoji: TEmoji, + emoji: IEmoji, style: any } -export type TEmojiCategory = { +export interface IEmojiCategory { baseUrl: string; - emojis: TEmoji[]; + emojis: IEmoji[]; onEmojiSelected({}: any): void; emojisPerRow: number; width: number; style: any; tabLabel: string; -} \ No newline at end of file +} diff --git a/app/containers/FormContainer.tsx b/app/containers/FormContainer.tsx index f552e9dd10..5d3e683f2c 100644 --- a/app/containers/FormContainer.tsx +++ b/app/containers/FormContainer.tsx @@ -29,6 +29,7 @@ export const FormContainerInner = ({ children }: {children: JSX.Element}) => ( ); const FormContainer = ({ children, theme, testID, ...props }: IFormContainer) => ( + // @ts-ignore <KeyboardView style={{ backgroundColor: themes[theme].backgroundColor }} contentContainerStyle={sharedStyles.container} diff --git a/app/containers/Header/index.tsx b/app/containers/Header/index.tsx index 19d26e028a..81ac132de4 100644 --- a/app/containers/Header/index.tsx +++ b/app/containers/Header/index.tsx @@ -20,7 +20,7 @@ export const getHeaderHeight = (isLandscape: boolean) => { return 56; }; -type THeaderTitlePosition = { +interface IHeaderTitlePosition { insets: { left: number; right: number; @@ -28,7 +28,7 @@ type THeaderTitlePosition = { numIconsRight: number; } -export const getHeaderTitlePosition = ({ insets, numIconsRight }: THeaderTitlePosition) => ({ +export const getHeaderTitlePosition = ({ insets, numIconsRight }: IHeaderTitlePosition) => ({ left: insets.left + 60, right: insets.right + Math.max(45 * numIconsRight, 15) }); diff --git a/app/containers/List/ListContainer.tsx b/app/containers/List/ListContainer.tsx index dac7604729..b8a6f77d66 100644 --- a/app/containers/List/ListContainer.tsx +++ b/app/containers/List/ListContainer.tsx @@ -9,10 +9,10 @@ const styles = StyleSheet.create({ } }); -type TListContainer = { +interface IListContainer { children: JSX.Element; } -const ListContainer = React.memo(({ children, ...props }: TListContainer) => ( +const ListContainer = React.memo(({ children, ...props }: IListContainer) => ( // @ts-ignore <ScrollView contentContainerStyle={styles.container} diff --git a/app/containers/List/ListSeparator.tsx b/app/containers/List/ListSeparator.tsx index 39a30a9d74..a7de16349c 100644 --- a/app/containers/List/ListSeparator.tsx +++ b/app/containers/List/ListSeparator.tsx @@ -10,12 +10,12 @@ const styles = StyleSheet.create({ } }); -type TListSeparator = { +interface IListSeparator { style: object; theme: string; } -const ListSeparator = React.memo(({ style, theme }: TListSeparator) => ( +const ListSeparator = React.memo(({ style, theme }: IListSeparator) => ( <View style={[ styles.separator, diff --git a/app/containers/LoginServices.tsx b/app/containers/LoginServices.tsx index 84c36edd8e..e9dd930e94 100644 --- a/app/containers/LoginServices.tsx +++ b/app/containers/LoginServices.tsx @@ -57,19 +57,19 @@ const styles = StyleSheet.create({ } }); -type TOpenOAuth = { +interface IOpenOAuth { url?: string; ssoToken?: string; authType?: string; } -type TService = { +interface IService { name: string; service: string; authType: string; buttonColor: string; buttonLabelColor: string; -}; +} interface ILoginServicesProps { navigation: any; @@ -255,7 +255,7 @@ class LoginServices extends React.PureComponent<ILoginServicesProps, any> { return Base64.encodeURI(JSON.stringify(obj)); } - openOAuth = ({ url, ssoToken, authType = 'oauth' }: TOpenOAuth) => { + openOAuth = ({ url, ssoToken, authType = 'oauth' }: IOpenOAuth) => { const { navigation } = this.props; navigation.navigate('AuthenticationWebView', { url, authType, ssoToken }); } @@ -326,7 +326,7 @@ class LoginServices extends React.PureComponent<ILoginServicesProps, any> { return null; } - renderItem = (service: TService) => { + renderItem = (service: IService) => { const { CAS_enabled, theme } = this.props; let { name } = service; name = name === 'meteor-developer' ? 'meteor' : name; diff --git a/app/containers/MessageActions/Header.tsx b/app/containers/MessageActions/Header.tsx index 2330d72892..53dbab8a9c 100644 --- a/app/containers/MessageActions/Header.tsx +++ b/app/containers/MessageActions/Header.tsx @@ -10,7 +10,7 @@ import database from '../../lib/database'; import { Button } from '../ActionSheet'; import { useDimensions } from '../../dimensions'; import sharedStyles from '../../views/Styles'; -import {TEmoji} from "../EmojiPicker"; +import {IEmoji} from "../EmojiPicker/interfaces"; interface IHeader { handleReaction: Function; @@ -21,7 +21,7 @@ interface IHeader { } interface THeaderItem { - item: TEmoji; + item: IEmoji; onReaction: Function; server: string; theme: string; @@ -118,7 +118,7 @@ const Header = React.memo(({ handleReaction, server, message, isMasterDetail, th setEmojis(); }, []); - const onReaction = ({ emoji }: {emoji: TEmoji}) => handleReaction(emoji, message); + const onReaction = ({ emoji }: {emoji: IEmoji}) => handleReaction(emoji, message); const renderItem = useCallback(({ item }) => <HeaderItem item={item} onReaction={onReaction} server={server} theme={theme} />, []); diff --git a/app/containers/MessageBox/EmojiKeyboard.tsx b/app/containers/MessageBox/EmojiKeyboard.tsx index f7ac0b9edf..9aa9252618 100644 --- a/app/containers/MessageBox/EmojiKeyboard.tsx +++ b/app/containers/MessageBox/EmojiKeyboard.tsx @@ -11,6 +11,7 @@ import { withTheme } from '../../theme'; interface IMessageBoxEmojiKeyboard { theme: string } + export default class EmojiKeyboard extends React.PureComponent<IMessageBoxEmojiKeyboard, any> { private readonly baseUrl: any; diff --git a/app/containers/MessageBox/Mentions/MentionEmoji.tsx b/app/containers/MessageBox/Mentions/MentionEmoji.tsx index 7a601786c3..cb60f634b4 100644 --- a/app/containers/MessageBox/Mentions/MentionEmoji.tsx +++ b/app/containers/MessageBox/Mentions/MentionEmoji.tsx @@ -6,10 +6,10 @@ import shortnameToUnicode from '../../../utils/shortnameToUnicode'; import styles from '../styles'; import MessageboxContext from '../Context'; import CustomEmoji from '../../EmojiPicker/CustomEmoji'; -import {TEmoji} from "../../EmojiPicker"; +import {IEmoji} from "../../EmojiPicker/interfaces"; interface IMessageBoxMentionEmoji { - item: TEmoji; + item: IEmoji; } const MentionEmoji = ({ item }: IMessageBoxMentionEmoji) => { diff --git a/app/containers/MessageBox/Mentions/MentionItem.tsx b/app/containers/MessageBox/Mentions/MentionItem.tsx index b5dc0dbb7c..b7c7f650fa 100644 --- a/app/containers/MessageBox/Mentions/MentionItem.tsx +++ b/app/containers/MessageBox/Mentions/MentionItem.tsx @@ -8,7 +8,7 @@ import FixedMentionItem from './FixedMentionItem'; import MentionEmoji from './MentionEmoji'; import { MENTIONS_TRACKING_TYPE_EMOJIS, MENTIONS_TRACKING_TYPE_COMMANDS } from '../constants'; import { themes } from '../../../constants/colors'; -import {TEmoji} from "../../EmojiPicker"; +import {IEmoji} from "../../EmojiPicker/interfaces"; interface IMessageBoxMentionItem { item: { @@ -17,7 +17,7 @@ interface IMessageBoxMentionItem { username: string; t: string; id: string; - } & TEmoji; + } & IEmoji; trackingType: string; theme: string; } diff --git a/app/containers/MessageBox/Mentions/index.tsx b/app/containers/MessageBox/Mentions/index.tsx index c9d564d982..b0f993fd96 100644 --- a/app/containers/MessageBox/Mentions/index.tsx +++ b/app/containers/MessageBox/Mentions/index.tsx @@ -11,6 +11,7 @@ interface IMessageBoxMentions { trackingType: string; theme: string; } + const Mentions = React.memo(({ mentions, trackingType, theme }: IMessageBoxMentions) => { if (!trackingType) { return null; diff --git a/app/containers/MessageBox/index.tsx b/app/containers/MessageBox/index.tsx index 627ea4aea7..95b5b00aed 100644 --- a/app/containers/MessageBox/index.tsx +++ b/app/containers/MessageBox/index.tsx @@ -111,6 +111,7 @@ interface IMessageBoxProps { sharing: boolean; isActionsEnabled: boolean; } + interface IMessageBoxState { mentions: any[]; showEmojiKeyboard: boolean; diff --git a/app/containers/Passcode/Base/Locked.tsx b/app/containers/Passcode/Base/Locked.tsx index 5544ee21df..f20c3e8502 100644 --- a/app/containers/Passcode/Base/Locked.tsx +++ b/app/containers/Passcode/Base/Locked.tsx @@ -11,18 +11,18 @@ import Title from './Title'; import Subtitle from './Subtitle'; import LockIcon from './LockIcon'; -type TPasscodeTimer = { +interface IPasscodeTimer { time: string; theme: string; setStatus: Function; -}; +} interface IPasscodeLocked { theme: string; setStatus: Function; } -const Timer = React.memo(({ time, theme, setStatus }: TPasscodeTimer) => { +const Timer = React.memo(({ time, theme, setStatus }: IPasscodeTimer) => { const calcTimeLeft = () => { const diff = getDiff(time); if (diff > 0) { @@ -62,6 +62,8 @@ const Locked = React.memo(({ theme, setStatus }: IPasscodeLocked) => { }, []); return ( + //TODO - verify if this 'r' it's correct + // @ts-ignore <Grid style={[styles.grid, { backgroundColor: themes[theme].passcodeBackground }]} r> <LockIcon theme={theme} /> <Title text={I18n.t('Passcode_app_locked_title')} theme={theme} /> diff --git a/app/containers/Passcode/PasscodeEnter.tsx b/app/containers/Passcode/PasscodeEnter.tsx index c6ad8e2b6c..31fb809b05 100644 --- a/app/containers/Passcode/PasscodeEnter.tsx +++ b/app/containers/Passcode/PasscodeEnter.tsx @@ -92,6 +92,7 @@ const PasscodeEnter = ({ theme, hasBiometry, finishProcess }: IPasscodePasscodeE } return ( + // @ts-ignore <Base ref={ref} theme={theme} diff --git a/app/containers/ReactionsModal.tsx b/app/containers/ReactionsModal.tsx index 95639bd7e3..dde7a33730 100644 --- a/app/containers/ReactionsModal.tsx +++ b/app/containers/ReactionsModal.tsx @@ -59,7 +59,7 @@ const styles = StyleSheet.create({ const standardEmojiStyle = { fontSize: 20 }; const customEmojiStyle = { width: 20, height: 20 }; -type TItem = { +interface IItem { item: { usernames: any; emoji: string; @@ -68,15 +68,15 @@ type TItem = { baseUrl?: string; getCustomEmoji?: Function; theme?: string; -}; +} -type TModalContent = { +interface IModalContent { message: { reactions: any }; onClose: Function; theme: string; -}; +} interface IReactionsModal { isVisible: boolean; @@ -84,7 +84,7 @@ interface IReactionsModal { theme: string; } -const Item = React.memo(({ item, user, baseUrl, getCustomEmoji, theme }: TItem) => { +const Item = React.memo(({ item, user, baseUrl, getCustomEmoji, theme }: IItem) => { const count = item.usernames.length; let usernames = item.usernames.slice(0, 3) .map((username: any) => (username === user?.username ? I18n.t('you') : username)).join(', '); @@ -114,7 +114,7 @@ const Item = React.memo(({ item, user, baseUrl, getCustomEmoji, theme }: TItem) ); }); -const ModalContent = React.memo(({ message, onClose, ...props }: TModalContent) => { +const ModalContent = React.memo(({ message, onClose, ...props }: IModalContent) => { if (message && message.reactions) { return ( <SafeAreaView style={styles.safeArea}> diff --git a/app/containers/TwoFactor/index.tsx b/app/containers/TwoFactor/index.tsx index 7a873b5779..9221b2ace8 100644 --- a/app/containers/TwoFactor/index.tsx +++ b/app/containers/TwoFactor/index.tsx @@ -43,7 +43,7 @@ const methods: any = { const TwoFactor = React.memo(({ theme, isMasterDetail }: ITwoFactor) => { const [visible, setVisible] = useState(false); const [data, setData] = useState<any>({}); - const [code, setCode] = useState(''); + const [code, setCode] = useState<any>(''); const method = methods[data.method]; const isEmail = data.method === 'email'; @@ -102,6 +102,7 @@ const TwoFactor = React.memo(({ theme, isMasterDetail }: ITwoFactor) => { <Text style={[styles.title, { color }]}>{I18n.t(method?.title || 'Two_Factor_Authentication')}</Text> {method?.text ? <Text style={[styles.subtitle, { color }]}>{I18n.t(method.text)}</Text> : null} <TextInput + /*@ts-ignore*/ value={code} theme={theme} inputRef={(e: any) => InteractionManager.runAfterInteractions(() => e?.getNativeRef()?.focus())} diff --git a/app/containers/UIKit/Image.tsx b/app/containers/UIKit/Image.tsx index 2a601b85c9..6a2b8b287e 100644 --- a/app/containers/UIKit/Image.tsx +++ b/app/containers/UIKit/Image.tsx @@ -15,19 +15,19 @@ const styles = StyleSheet.create({ } }); -type TThumb = { +interface IThumb { element: { imageUrl: string; }; size?: number; -}; +} -type TMedia = { +interface IMedia { element: { imageUrl: string; }; theme: string; -}; +} interface IImage { element: any; @@ -37,14 +37,14 @@ interface IImage { const ThumbContext = (args: any) => <View style={styles.mediaContext}><Thumb size={20} {...args} /></View>; -export const Thumb = ({ element, size = 88 }: TThumb) => ( +export const Thumb = ({ element, size = 88 }: IThumb) => ( <FastImage style={[{ width: size, height: size }, styles.image]} source={{ uri: element.imageUrl }} /> ); -export const Media = ({ element, theme }: TMedia) => { +export const Media = ({ element, theme }: IMedia) => { const showAttachment = (attachment: any) => Navigation.navigate('AttachmentView', { attachment }); const { imageUrl } = element; diff --git a/app/containers/UIKit/MultiSelect/Chips.tsx b/app/containers/UIKit/MultiSelect/Chips.tsx index 5ccf25ad94..272fdca5a1 100644 --- a/app/containers/UIKit/MultiSelect/Chips.tsx +++ b/app/containers/UIKit/MultiSelect/Chips.tsx @@ -9,7 +9,7 @@ import { CustomIcon } from '../../../lib/Icons'; import styles from './styles'; -type TChip = { +interface IChip { item: { value: string; imageUrl: string; @@ -30,7 +30,7 @@ interface IChips { const keyExtractor = (item: any) => item.value.toString(); -const Chip = ({ item, onSelect, style, theme }: TChip) => ( +const Chip = ({ item, onSelect, style, theme }: IChip) => ( <Touchable key={item.value} onPress={() => onSelect(item)} diff --git a/app/containers/UIKit/MultiSelect/Items.tsx b/app/containers/UIKit/MultiSelect/Items.tsx index 98ab9d9b45..2513cba3e0 100644 --- a/app/containers/UIKit/MultiSelect/Items.tsx +++ b/app/containers/UIKit/MultiSelect/Items.tsx @@ -10,7 +10,7 @@ import { themes } from '../../../constants/colors'; import styles from './styles'; -type TItem = { +interface IItem { item: { value: { name: string; }; text: { text: string; }; @@ -19,7 +19,7 @@ type TItem = { selected: any; onSelect: Function; theme: string; -}; +} interface IItems { items: []; @@ -31,7 +31,7 @@ interface IItems { const keyExtractor = (item: any) => item.value.toString(); // RectButton doesn't work on modal (Android) -const Item = ({ item, selected, onSelect, theme }: TItem) => { +const Item = ({ item, selected, onSelect, theme }: IItem) => { const itemName = item.value.name || item.text.text.toLowerCase(); return ( <Touchable diff --git a/app/containers/UIKit/MultiSelect/styles.ts b/app/containers/UIKit/MultiSelect/styles.ts index 8bc2c21246..9954d8da0d 100644 --- a/app/containers/UIKit/MultiSelect/styles.ts +++ b/app/containers/UIKit/MultiSelect/styles.ts @@ -2,7 +2,7 @@ import { StyleSheet } from 'react-native'; import sharedStyles from '../../../views/Styles'; -export default StyleSheet.create({ +export default StyleSheet.create<any>({ container: { flex: 1, alignItems: 'center', diff --git a/app/containers/UIKit/Overflow.tsx b/app/containers/UIKit/Overflow.tsx index cb0ee73ded..096f395d16 100644 --- a/app/containers/UIKit/Overflow.tsx +++ b/app/containers/UIKit/Overflow.tsx @@ -9,7 +9,7 @@ import { themes } from '../../constants/colors'; import { BUTTON_HIT_SLOP } from '../message/utils'; import * as List from '../List'; -type TOption = { +interface IOption { option: { text: string; value: string; @@ -17,14 +17,14 @@ type TOption = { onOptionPress: Function; parser: any; theme: string; -}; +} -type TOptions = { +interface IOptions { options: []; onOptionPress: Function; parser: object; theme: string; -}; +} interface IOverflow { element: any; @@ -50,7 +50,7 @@ const styles = StyleSheet.create({ } }); -const Option = ({ option: { text, value }, onOptionPress, parser, theme }: TOption) => ( +const Option = ({ option: { text, value }, onOptionPress, parser, theme }: IOption) => ( <Touchable onPress={() => onOptionPress({ value })} background={Touchable.Ripple(themes[theme].bannerBackground)} @@ -60,7 +60,7 @@ const Option = ({ option: { text, value }, onOptionPress, parser, theme }: TOpti </Touchable> ); -const Options = ({ options, onOptionPress, parser, theme }: TOptions) => ( +const Options = ({ options, onOptionPress, parser, theme }: IOptions) => ( <FlatList data={options} renderItem={({ item }) => <Option option={item} onOptionPress={onOptionPress} parser={parser} theme={theme} />} diff --git a/app/containers/UIKit/Section.tsx b/app/containers/UIKit/Section.tsx index bc2389a53f..a95aa10f31 100644 --- a/app/containers/UIKit/Section.tsx +++ b/app/containers/UIKit/Section.tsx @@ -23,14 +23,14 @@ const styles = StyleSheet.create({ } }); -type TAccessory = { +interface IAccessory { blockId?: string; appId?: string; element: any; parser: any } -type TFields = { +interface IFields { fields: any; parser: any; theme: string; @@ -46,13 +46,13 @@ interface ISection { parser: any; } -const Accessory = ({ blockId, appId, element, parser }: TAccessory) => parser.renderAccessories( +const Accessory = ({ blockId, appId, element, parser }: IAccessory) => parser.renderAccessories( { blockId, appId, ...element }, BLOCK_CONTEXT.SECTION, parser ); -const Fields = ({ fields, parser, theme }: TFields) => fields.map((field: any) => ( +const Fields = ({ fields, parser, theme }: IFields) => fields.map((field: any) => ( <Text style={[styles.text, styles.field, { color: themes[theme].bodyText }]}> {parser.text(field)} </Text> diff --git a/app/containers/UIKit/index.tsx b/app/containers/UIKit/index.tsx index 7928e36895..58c5394783 100644 --- a/app/containers/UIKit/index.tsx +++ b/app/containers/UIKit/index.tsx @@ -236,6 +236,7 @@ class ModalParser extends UiKitParserModal { inputStyle={multiline && styles.multiline} containerStyle={styles.input} value={value} + // @ts-ignore error={{ error }} theme={theme} /> diff --git a/app/containers/markdown/Hashtag.tsx b/app/containers/markdown/Hashtag.tsx index 5ca3e7f365..29902ff6dc 100644 --- a/app/containers/markdown/Hashtag.tsx +++ b/app/containers/markdown/Hashtag.tsx @@ -5,17 +5,15 @@ import { themes } from '../../constants/colors'; import styles from './styles'; -export type TChannel = { - name: string; - _id: number; -} - interface IHashtag { hashtag: string; navToRoomInfo: Function; style: []; theme: string; - channels: TChannel[]; + channels: { + name: string; + _id: number; + }[]; } const Hashtag = React.memo(({ hashtag, channels, navToRoomInfo, style = [], theme }: IHashtag) => { diff --git a/app/containers/markdown/index.tsx b/app/containers/markdown/index.tsx index cad569e7ad..00308cac27 100644 --- a/app/containers/markdown/index.tsx +++ b/app/containers/markdown/index.tsx @@ -12,7 +12,7 @@ import MarkdownLink from './Link'; import MarkdownList from './List'; import MarkdownListItem from './ListItem'; import MarkdownAtMention from './AtMention'; -import MarkdownHashtag, {TChannel} from './Hashtag'; +import MarkdownHashtag from './Hashtag'; import MarkdownBlockQuote from './BlockQuote'; import MarkdownEmoji from './Emoji'; import MarkdownTable from './Table'; @@ -33,7 +33,10 @@ interface IMarkdownProps { numberOfLines: number; customEmojis: boolean; useRealName: boolean; - channels: TChannel[]; + channels: { + name: string; + _id: number; + }[]; mentions: object[]; navToRoomInfo: Function; preview: boolean; diff --git a/app/containers/message/Attachments.tsx b/app/containers/message/Attachments.tsx index cd31a4684a..08fb547c04 100644 --- a/app/containers/message/Attachments.tsx +++ b/app/containers/message/Attachments.tsx @@ -1,7 +1,7 @@ import React from 'react'; import { dequal } from 'dequal'; -import {TMessageAttachments} from "./types"; +import {IMessageAttachments} from "./interfaces"; import Image from './Image'; import Audio from './Audio'; @@ -10,7 +10,7 @@ import Reply from './Reply'; const Attachments = React.memo(({ attachments, timeFormat, showAttachment, getCustomEmoji, theme -}: TMessageAttachments) => { +}: IMessageAttachments) => { if (!attachments || attachments.length === 0) { return null; } diff --git a/app/containers/message/Audio.tsx b/app/containers/message/Audio.tsx index 9bf783ff8b..f380d509ce 100644 --- a/app/containers/message/Audio.tsx +++ b/app/containers/message/Audio.tsx @@ -16,12 +16,12 @@ import MessageContext from './Context'; import ActivityIndicator from '../ActivityIndicator'; import { withDimensions } from '../../dimensions'; -type TButton = { +interface IButton { loading: boolean; paused: boolean; theme: string; onPress: Function; -}; +} interface IMessageAudioProps { file: { @@ -88,7 +88,7 @@ const sliderAnimationConfig = { delay: 0 }; -const Button = React.memo(({ loading, paused, onPress, theme }: TButton) => ( +const Button = React.memo(({ loading, paused, onPress, theme }: IButton) => ( <Touchable style={styles.playPauseButton} onPress={onPress} diff --git a/app/containers/message/Blocks.ts b/app/containers/message/Blocks.ts index aed1824393..b9e65fdae5 100644 --- a/app/containers/message/Blocks.ts +++ b/app/containers/message/Blocks.ts @@ -1,8 +1,8 @@ import React from 'react'; import { messageBlockWithContext } from '../UIKit/MessageBlock'; -import {TMessageBlocks} from "./types"; +import {IMessageBlocks} from "./interfaces"; -const Blocks = React.memo(({ blocks, id: mid, rid, blockAction }: TMessageBlocks) => { +const Blocks = React.memo(({ blocks, id: mid, rid, blockAction }: IMessageBlocks) => { if (blocks && blocks.length > 0) { const appId = blocks[0]?.appId || ''; return React.createElement( diff --git a/app/containers/message/Broadcast.tsx b/app/containers/message/Broadcast.tsx index 1e9a8494ba..fc5ec8de95 100644 --- a/app/containers/message/Broadcast.tsx +++ b/app/containers/message/Broadcast.tsx @@ -8,9 +8,9 @@ import { BUTTON_HIT_SLOP } from './utils'; import I18n from '../../i18n'; import { themes } from '../../constants/colors'; import MessageContext from './Context'; -import {TMessageBroadcast} from "./types"; +import {IMessageBroadcast} from "./interfaces"; -const Broadcast = React.memo(({ author, broadcast, theme }: TMessageBroadcast) => { +const Broadcast = React.memo(({ author, broadcast, theme }: IMessageBroadcast) => { const { user, replyBroadcast } = useContext(MessageContext); const isOwn = author._id === user.id; if (broadcast && !isOwn) { diff --git a/app/containers/message/CallButton.tsx b/app/containers/message/CallButton.tsx index b0c7f50487..23053a89d1 100644 --- a/app/containers/message/CallButton.tsx +++ b/app/containers/message/CallButton.tsx @@ -7,9 +7,9 @@ import styles from './styles'; import I18n from '../../i18n'; import { CustomIcon } from '../../lib/Icons'; import { themes } from '../../constants/colors'; -import {TMessageCallButton} from "./types"; +import {IMessageCallButton} from "./interfaces"; -const CallButton = React.memo(({ theme, callJitsi }: TMessageCallButton) => ( +const CallButton = React.memo(({ theme, callJitsi }: IMessageCallButton) => ( <View style={styles.buttonContainer}> <Touchable onPress={callJitsi} diff --git a/app/containers/message/Content.tsx b/app/containers/message/Content.tsx index e2d964c15f..f632047073 100644 --- a/app/containers/message/Content.tsx +++ b/app/containers/message/Content.tsx @@ -11,9 +11,9 @@ import { themes } from '../../constants/colors'; import MessageContext from './Context'; import Encrypted from './Encrypted'; import { E2E_MESSAGE_TYPE } from '../../lib/encryption/constants'; -import {TMessageContent} from "./types"; +import {IMessageContent} from "./interfaces"; -const Content = React.memo((props: TMessageContent) => { +const Content = React.memo((props: IMessageContent) => { if (props.isInfo) { // @ts-ignore const infoMessage = getInfoMessage({ ...props }); diff --git a/app/containers/message/Discussion.tsx b/app/containers/message/Discussion.tsx index 8353c0e9f0..63735fd955 100644 --- a/app/containers/message/Discussion.tsx +++ b/app/containers/message/Discussion.tsx @@ -10,10 +10,10 @@ import { DISCUSSION } from './constants'; import { themes } from '../../constants/colors'; import MessageContext from './Context'; import { formatDateThreads } from '../../utils/room'; -import {TMessageDiscussion} from "./types"; +import {IMessageDiscussion} from "./interfaces"; -const Discussion = React.memo(({ msg, dcount, dlm, theme }: TMessageDiscussion) => { +const Discussion = React.memo(({ msg, dcount, dlm, theme }: IMessageDiscussion) => { let time; if (dlm) { time = formatDateThreads(dlm); diff --git a/app/containers/message/Emoji.tsx b/app/containers/message/Emoji.tsx index 7d7f3cb2e0..2bc6da7c4a 100644 --- a/app/containers/message/Emoji.tsx +++ b/app/containers/message/Emoji.tsx @@ -3,14 +3,7 @@ import { Text } from 'react-native'; import shortnameToUnicode from '../../utils/shortnameToUnicode'; import CustomEmoji from '../EmojiPicker/CustomEmoji'; - -interface IMessageEmoji { - content: any; - baseUrl: string; - standardEmojiStyle: object; - customEmojiStyle: object; - getCustomEmoji: Function; -} +import {IMessageEmoji} from "./interfaces"; const Emoji = React.memo(({ content, baseUrl, standardEmojiStyle, customEmojiStyle, getCustomEmoji }: IMessageEmoji) => { const parsedContent = content.replace(/^:|:$/g, ''); diff --git a/app/containers/message/Message.tsx b/app/containers/message/Message.tsx index 6f08f0fe8c..fe6cad3f29 100644 --- a/app/containers/message/Message.tsx +++ b/app/containers/message/Message.tsx @@ -19,25 +19,9 @@ import Content from './Content'; import ReadReceipt from './ReadReceipt'; import CallButton from './CallButton'; import { themes } from '../../constants/colors'; -import {TMessage, TMessageInner} from "./types"; +import {IMessage, IMessageInner, IMessageTouchable} from "./interfaces"; -interface IMessageTouchable { - hasError: boolean; - isInfo: boolean; - isThreadReply: boolean; - isTemp: boolean; - archived: boolean; - highlighted: boolean; - theme: string; - ts?: any - urls?: any; - reactions?: any; - alias?: any; - role?: any; - drid?: any; -} - -const MessageInner = React.memo((props: TMessageInner) => { +const MessageInner = React.memo((props: IMessageInner) => { if (props.type === 'discussion-created') { return ( <> @@ -79,7 +63,7 @@ const MessageInner = React.memo((props: TMessageInner) => { }); MessageInner.displayName = 'MessageInner'; -const Message = React.memo((props: TMessage) => { +const Message = React.memo((props: IMessage) => { if (props.isThreadReply || props.isThreadSequential || props.isInfo || props.isIgnored) { const thread = props.isThreadReply ? <RepliedThread {...props} /> : null; return ( @@ -123,7 +107,7 @@ const Message = React.memo((props: TMessage) => { }); Message.displayName = 'Message'; -const MessageTouchable = React.memo((props: IMessageTouchable & TMessage) => { +const MessageTouchable = React.memo((props: IMessageTouchable & IMessage) => { if (props.hasError) { return ( <View> diff --git a/app/containers/message/MessageAvatar.tsx b/app/containers/message/MessageAvatar.tsx index ad0b3dc066..f610f1d71a 100644 --- a/app/containers/message/MessageAvatar.tsx +++ b/app/containers/message/MessageAvatar.tsx @@ -3,11 +3,11 @@ import React, { useContext } from 'react'; import Avatar from '../Avatar'; import styles from './styles'; import MessageContext from './Context'; -import {TMessageAvatar} from "./types"; +import {IMessageAvatar} from "./interfaces"; const MessageAvatar = React.memo(({ isHeader, avatar, author, small, navToRoomInfo, emoji, getCustomEmoji, theme -}: TMessageAvatar) => { +}: IMessageAvatar) => { const { user } = useContext(MessageContext); if (isHeader && author) { const navParam = { diff --git a/app/containers/message/Reactions.tsx b/app/containers/message/Reactions.tsx index 5a399cf1bf..35b9852ca7 100644 --- a/app/containers/message/Reactions.tsx +++ b/app/containers/message/Reactions.tsx @@ -10,18 +10,18 @@ import { themes } from '../../constants/colors'; import { withTheme } from '../../theme'; import MessageContext from './Context'; -type TMessageAddReaction = { +interface IMessageAddReaction { theme: string -}; +} -type TMessageReaction = { +interface IMessageReaction { reaction: { usernames: []; emoji: object; }; getCustomEmoji: Function; theme: string; -}; +} interface IMessageReactions { reactions: object[]; @@ -29,7 +29,7 @@ interface IMessageReactions { theme: string; } -const AddReaction = React.memo(({ theme }: TMessageAddReaction) => { +const AddReaction = React.memo(({ theme }: IMessageAddReaction) => { const { reactionInit } = useContext(MessageContext); return ( <Touchable @@ -47,9 +47,9 @@ const AddReaction = React.memo(({ theme }: TMessageAddReaction) => { ); }); -const Reaction = React.memo(({reaction, getCustomEmoji, theme}: TMessageReaction) => { +const Reaction = React.memo(({reaction, getCustomEmoji, theme}: IMessageReaction) => { const { onReactionPress, onReactionLongPress, baseUrl, user } = useContext(MessageContext); - const reacted = reaction.usernames.findIndex((item: TMessageReaction) => item === user.username) !== -1; + const reacted = reaction.usernames.findIndex((item: IMessageReaction) => item === user.username) !== -1; return ( <Touchable onPress={() => onReactionPress(reaction.emoji)} diff --git a/app/containers/message/RepliedThread.tsx b/app/containers/message/RepliedThread.tsx index 55ac8c6b9f..79e3b6272b 100644 --- a/app/containers/message/RepliedThread.tsx +++ b/app/containers/message/RepliedThread.tsx @@ -6,12 +6,11 @@ import styles from './styles'; import { themes } from '../../constants/colors'; import I18n from '../../i18n'; import Markdown from '../markdown'; -import {TMessageRepliedThread} from "./types"; - +import {IMessageRepliedThread} from "./interfaces"; const RepliedThread = memo(({ tmid, tmsg, isHeader, fetchThreadName, id, isEncrypted, theme -}: TMessageRepliedThread) => { +}: IMessageRepliedThread) => { if (!tmid || !isHeader) { return null; } diff --git a/app/containers/message/Reply.tsx b/app/containers/message/Reply.tsx index b7b402c997..cf55db2bc1 100644 --- a/app/containers/message/Reply.tsx +++ b/app/containers/message/Reply.tsx @@ -68,7 +68,7 @@ const styles = StyleSheet.create({ } }); -type TAttachment = { +interface IMessageReplyAttachment { author_name: string; message_link: string; ts: string; @@ -81,36 +81,36 @@ type TAttachment = { type: string; color: string; description: string; - fields: TAttachment[]; + fields: IMessageReplyAttachment[]; } -type TMessageTitle = { - attachment: Partial<TAttachment> +interface IMessageTitle { + attachment: Partial<IMessageReplyAttachment> timeFormat: string; theme: string; -}; +} -type TMessageDescription = { - attachment: Partial<TAttachment> +interface IMessageDescription { + attachment: Partial<IMessageReplyAttachment> getCustomEmoji: Function; theme: string; -}; +} -type TMessageFields = { - attachment: Partial<TAttachment>; +interface IMessageFields { + attachment: Partial<IMessageReplyAttachment>; theme: string; getCustomEmoji: Function; -}; +} interface IMessageReply { - attachment: Partial<TAttachment> + attachment: Partial<IMessageReplyAttachment> timeFormat: string; index: number; theme: string; getCustomEmoji: Function; } -const Title = React.memo(({ attachment, timeFormat, theme }: TMessageTitle) => { +const Title = React.memo(({ attachment, timeFormat, theme }: IMessageTitle) => { if (!attachment.author_name) { return null; } @@ -123,7 +123,7 @@ const Title = React.memo(({ attachment, timeFormat, theme }: TMessageTitle) => { ); }); -const Description = React.memo(({ attachment, getCustomEmoji, theme }: TMessageDescription) => { +const Description = React.memo(({ attachment, getCustomEmoji, theme }: IMessageDescription) => { const text = attachment.text || attachment.title; if (!text) { return null; @@ -152,7 +152,7 @@ const Description = React.memo(({ attachment, getCustomEmoji, theme }: TMessageD return true; }); -const Fields = React.memo(({ attachment, theme, getCustomEmoji }: TMessageFields) => { +const Fields = React.memo(({ attachment, theme, getCustomEmoji }: IMessageFields) => { if (!attachment.fields) { return null; } diff --git a/app/containers/message/Thread.tsx b/app/containers/message/Thread.tsx index d87c6aef9f..8c80d083d9 100644 --- a/app/containers/message/Thread.tsx +++ b/app/containers/message/Thread.tsx @@ -6,9 +6,9 @@ import { themes } from '../../constants/colors'; import MessageContext from './Context'; import ThreadDetails from '../ThreadDetails'; import I18n from '../../i18n'; -import {TMessageThread} from "./types"; +import {IMessageThread} from "./interfaces"; -const Thread = React.memo(({ msg, tcount, tlm, isThreadRoom, theme, id }: TMessageThread) => { +const Thread = React.memo(({ msg, tcount, tlm, isThreadRoom, theme, id }: IMessageThread) => { if (!tlm || isThreadRoom || tcount === 0) { return null; } diff --git a/app/containers/message/Urls.tsx b/app/containers/message/Urls.tsx index 0e9ab765b2..561c1c23c2 100644 --- a/app/containers/message/Urls.tsx +++ b/app/containers/message/Urls.tsx @@ -49,13 +49,13 @@ const styles = StyleSheet.create({ } }); -type TMessageUrlContent = { +interface IMessageUrlContent { title: string; description: string; theme: string; -}; +} -type TMessageUrl = { +interface IMessageUrl { url: { ignoreParse: boolean; url: string; @@ -65,7 +65,7 @@ type TMessageUrl = { }; index: number; theme: string; -}; +} interface IMessageUrls { urls: any; @@ -81,7 +81,7 @@ const UrlImage = React.memo(({ image }: {image: string}) => { return <FastImage source={{ uri: image }} style={styles.image} resizeMode={FastImage.resizeMode.cover} />; }, (prevProps, nextProps) => prevProps.image === nextProps.image); -const UrlContent = React.memo(({ title, description, theme }: TMessageUrlContent) => ( +const UrlContent = React.memo(({ title, description, theme }: IMessageUrlContent) => ( <View style={styles.textContainer}> {title ? <Text style={[styles.title, { color: themes[theme].tintColor }]} numberOfLines={2}>{title}</Text> : null} {description ? <Text style={[styles.description, { color: themes[theme].auxiliaryText }]} numberOfLines={2}>{description}</Text> : null} @@ -99,7 +99,7 @@ const UrlContent = React.memo(({ title, description, theme }: TMessageUrlContent return true; }); -const Url = React.memo(({ url, index, theme }: TMessageUrl) => { +const Url = React.memo(({ url, index, theme }: IMessageUrl) => { if (!url || url?.ignoreParse) { return null; } diff --git a/app/containers/message/types.ts b/app/containers/message/interfaces.ts similarity index 58% rename from app/containers/message/types.ts rename to app/containers/message/interfaces.ts index e45e424c66..489e284631 100644 --- a/app/containers/message/types.ts +++ b/app/containers/message/interfaces.ts @@ -1,6 +1,4 @@ -import {TChannel} from "../markdown/Hashtag"; - -export type TMessageAttachments = { +export interface IMessageAttachments { attachments: any; timeFormat: string; showAttachment: Function; @@ -8,7 +6,7 @@ export type TMessageAttachments = { theme: string; } -export type TMessageAvatar = { +export interface IMessageAvatar { isHeader: boolean; avatar: string; emoji: string; @@ -22,14 +20,14 @@ export type TMessageAvatar = { theme: string; } -export type TMessageBlocks = { +export interface IMessageBlocks { blocks: any; id: string; rid: string; blockAction: Function; } -export type TMessageBroadcast = { +export interface IMessageBroadcast { author: { _id: string }; @@ -37,12 +35,12 @@ export type TMessageBroadcast = { theme: string } -export type TMessageCallButton = { +export interface IMessageCallButton { theme: string; callJitsi: Function; } -export type TMessageContent = { +export interface IMessageContent { isTemp: boolean; isInfo: boolean; tmid: string; @@ -52,7 +50,10 @@ export type TMessageContent = { isEdited: boolean; isEncrypted: boolean; getCustomEmoji: Function; - channels: TChannel[]; + channels: { + name: string; + _id: number; + }[]; mentions: object[]; navToRoomInfo: Function; useRealName: boolean; @@ -60,14 +61,22 @@ export type TMessageContent = { type: string; } -export type TMessageDiscussion = { +export interface IMessageDiscussion { msg: string; dcount: number; dlm: string; theme: string; } -export type TMessageThread = { +export interface IMessageEmoji { + content: any; + baseUrl: string; + standardEmojiStyle: object; + customEmojiStyle: object; + getCustomEmoji: Function; +} + +export interface IMessageThread { msg: string; tcount: number; theme: string; @@ -76,7 +85,23 @@ export type TMessageThread = { id: string; } -export type TMessageRepliedThread = { +export interface IMessageTouchable { + hasError: boolean; + isInfo: boolean; + isThreadReply: boolean; + isTemp: boolean; + archived: boolean; + highlighted: boolean; + theme: string; + ts?: any + urls?: any; + reactions?: any; + alias?: any; + role?: any; + drid?: any; +} + +export interface IMessageRepliedThread { tmid: string; tmsg: string; id: string; @@ -86,13 +111,13 @@ export type TMessageRepliedThread = { isEncrypted: boolean; } -export type TMessageInner = { +export interface IMessageInner extends IMessageDiscussion, IMessageContent, IMessageCallButton, IMessageBlocks, + IMessageThread, IMessageAttachments, IMessageBroadcast { type: string; blocks: []; -} & TMessageDiscussion & TMessageContent & TMessageCallButton & TMessageBlocks - & TMessageThread & TMessageAttachments & TMessageBroadcast; +} -export type TMessage = { +export interface IMessage extends IMessageRepliedThread, IMessageInner { isThreadReply: boolean; isThreadSequential: boolean; isInfo: boolean; @@ -105,4 +130,4 @@ export type TMessage = { unread: boolean; theme: string; isIgnored: boolean; -} & TMessageRepliedThread & TMessageAvatar & TMessageContent & TMessageInner; \ No newline at end of file +} diff --git a/app/index.tsx b/app/index.tsx index c9aca4711e..f1a65267d5 100644 --- a/app/index.tsx +++ b/app/index.tsx @@ -33,12 +33,13 @@ import { isFDroidBuild } from './constants/environment'; RNScreens.enableScreens(); -type TDimensions = { +interface IDimensions { width: number, height: number, scale: number, fontScale: number } + interface IProps {} interface IState { theme: string, @@ -163,7 +164,7 @@ export default class Root extends React.Component<IProps, IState> { window: { width, height, scale, fontScale } - }: {window: TDimensions}) => { + }: {window: IDimensions}) => { this.setDimensions({ width, height, scale, fontScale }); @@ -179,7 +180,7 @@ export default class Root extends React.Component<IProps, IState> { }); } - setDimensions = ({width, height, scale, fontScale}: TDimensions) => { + setDimensions = ({width, height, scale, fontScale}: IDimensions) => { this.setState({width, height, scale, fontScale}); } diff --git a/app/presentation/DirectoryItem/index.tsx b/app/presentation/DirectoryItem/index.tsx index 1e4d5ccf9a..400eb42e64 100644 --- a/app/presentation/DirectoryItem/index.tsx +++ b/app/presentation/DirectoryItem/index.tsx @@ -9,7 +9,7 @@ import { themes } from '../../constants/colors'; export { ROW_HEIGHT }; -type TDirectoryItemLabel = { +interface IDirectoryItemLabel { text: string; theme: string; } @@ -28,7 +28,7 @@ interface IDirectoryItem { teamMain: boolean; } -const DirectoryItemLabel = React.memo(({ text, theme }: TDirectoryItemLabel) => { +const DirectoryItemLabel = React.memo(({ text, theme }: IDirectoryItemLabel) => { if (!text) { return null; } diff --git a/app/presentation/RoomItem/index.tsx b/app/presentation/RoomItem/index.tsx index b7d22ab6fa..3393fca6bd 100644 --- a/app/presentation/RoomItem/index.tsx +++ b/app/presentation/RoomItem/index.tsx @@ -8,7 +8,6 @@ import RoomItem from './RoomItem'; export { ROW_HEIGHT }; - interface IRoomItemContainerProps { item: any; showLastMessage: boolean; diff --git a/app/share.tsx b/app/share.tsx index 998b3eafe7..3ef44a7c43 100644 --- a/app/share.tsx +++ b/app/share.tsx @@ -28,12 +28,13 @@ import AuthLoadingView from './views/AuthLoadingView'; import { DimensionsContext } from './dimensions'; import debounce from './utils/debounce'; -type TDimensions = { +interface IDimensions { width: number, height: number, scale: number, fontScale: number } + interface IProps {} interface IState { theme: string, @@ -173,11 +174,11 @@ class Root extends React.Component<IProps, IState> { } // Dimensions update fires twice - onDimensionsChange = debounce(({window: { width, height, scale, fontScale}}: {window: TDimensions}) => { + onDimensionsChange = debounce(({window: { width, height, scale, fontScale}}: {window: IDimensions}) => { this.setDimensions({ width, height, scale, fontScale }); }) - setDimensions = ({ width, height, scale, fontScale }: TDimensions) => { + setDimensions = ({ width, height, scale, fontScale }: IDimensions) => { this.setState({ width, height, scale, fontScale }); From 078c361efcd276b910a5a49d9b030ef6ea07ce6f Mon Sep 17 00:00:00 2001 From: AlexAlexandre <alexalexandrejr@gmail.com> Date: Wed, 4 Aug 2021 16:19:08 -0300 Subject: [PATCH 59/90] [IMPROVE] - fixing some errors appoint by jest --- app/containers/Avatar/Avatar.tsx | 4 ++-- app/containers/EmojiPicker/EmojiCategory.tsx | 2 +- app/containers/EmojiPicker/index.tsx | 1 - app/containers/RoomHeader/RoomHeader.tsx | 6 +++--- app/containers/markdown/Emoji.tsx | 1 - 5 files changed, 6 insertions(+), 8 deletions(-) diff --git a/app/containers/Avatar/Avatar.tsx b/app/containers/Avatar/Avatar.tsx index 4c0d741dd4..7b78bd19ce 100644 --- a/app/containers/Avatar/Avatar.tsx +++ b/app/containers/Avatar/Avatar.tsx @@ -6,7 +6,7 @@ import { settings as RocketChatSettings } from '@rocket.chat/sdk'; import { avatarURL } from '../../utils/avatar'; import Emoji from '../markdown/Emoji'; -import {IAvatar} from "./interfaces"; +import {IAvatar} from './interfaces'; const Avatar = React.memo(({ server, @@ -23,7 +23,7 @@ const Avatar = React.memo(({ rid, blockUnauthenticatedAccess, serverVersion, - text = '', + text, size = 25, borderRadius = 4, type = 'd', diff --git a/app/containers/EmojiPicker/EmojiCategory.tsx b/app/containers/EmojiPicker/EmojiCategory.tsx index 452181f1bb..436f9c4ce1 100644 --- a/app/containers/EmojiPicker/EmojiCategory.tsx +++ b/app/containers/EmojiPicker/EmojiCategory.tsx @@ -7,7 +7,7 @@ import CustomEmoji from './CustomEmoji'; import scrollPersistTaps from '../../utils/scrollPersistTaps'; import {IEmoji, IEmojiCategory} from "./interfaces"; -const EMOJI_SIZE: number = 50; +const EMOJI_SIZE = 50; const renderEmoji = (emoji: IEmoji, size: number, baseUrl: string) => { if (emoji && emoji.isCustom) { diff --git a/app/containers/EmojiPicker/index.tsx b/app/containers/EmojiPicker/index.tsx index 876e671bca..bb2d47447c 100644 --- a/app/containers/EmojiPicker/index.tsx +++ b/app/containers/EmojiPicker/index.tsx @@ -25,7 +25,6 @@ const scrollProps = { }; interface IEmojiPickerProps { - literal: string; isMessageContainsOnlyEmoji: boolean; getCustomEmoji?: Function; baseUrl: string; diff --git a/app/containers/RoomHeader/RoomHeader.tsx b/app/containers/RoomHeader/RoomHeader.tsx index fbe48cd6f0..33b0d37cfb 100644 --- a/app/containers/RoomHeader/RoomHeader.tsx +++ b/app/containers/RoomHeader/RoomHeader.tsx @@ -76,9 +76,9 @@ interface IRoomHeader { const SubTitle = React.memo(({ usersTyping, subtitle, renderFunc, theme, scale }: TRoomHeaderSubTitle) => { const fontSize = getSubTitleSize(scale); // typing - if (usersTyping?.length) { + if (usersTyping.length) { let usersText; - if (usersTyping?.length === 2) { + if (usersTyping.length === 2) { usersText = usersTyping.join(` ${ I18n.t('and') } `); } else { usersText = usersTyping.join(', '); @@ -147,7 +147,7 @@ const Header = React.memo(({ let scale = 1; if (!portrait && !tmid) { - if (usersTyping?.length > 0 || subtitle) { + if (usersTyping.length > 0 || subtitle) { scale = 0.8; } } diff --git a/app/containers/markdown/Emoji.tsx b/app/containers/markdown/Emoji.tsx index 8ca9ee62f3..cda761b74e 100644 --- a/app/containers/markdown/Emoji.tsx +++ b/app/containers/markdown/Emoji.tsx @@ -7,7 +7,6 @@ import { themes } from '../../constants/colors'; import styles from './styles'; -// TODO this interface it's duplicated with 'app/containers/EmojiPicker/index.tsx' interface IEmoji { literal: string; isMessageContainsOnlyEmoji: boolean; From d63ee282751d039aacd638296cc6e7a175ecaa75 Mon Sep 17 00:00:00 2001 From: AlexAlexandre <alexalexandrejr@gmail.com> Date: Thu, 5 Aug 2021 16:10:27 -0300 Subject: [PATCH 60/90] [IMPROVE] - removing a wrong //TODO --- app/containers/message/Image.tsx | 1 - 1 file changed, 1 deletion(-) diff --git a/app/containers/message/Image.tsx b/app/containers/message/Image.tsx index 1881ba1ea7..e54e30b0c0 100644 --- a/app/containers/message/Image.tsx +++ b/app/containers/message/Image.tsx @@ -69,7 +69,6 @@ const ImageContainer = React.memo(({file, imageUrl, showAttachment, getCustomEmo <Button theme={theme} onPress={onPress}> <View> <MessageImage img={img} theme={theme} /> - //TODO - fix the required fields for the Markdown {/*@ts-ignore*/} <Markdown msg={file.description} baseUrl={baseUrl} username={user.username} getCustomEmoji={getCustomEmoji} theme={theme} /> </View> From 43e238292e4db994b533c3e8e86ee0a858db4edb Mon Sep 17 00:00:00 2001 From: AlexAlexandre <alexalexandrejr@gmail.com> Date: Thu, 5 Aug 2021 16:18:03 -0300 Subject: [PATCH 61/90] [IMPROVE] - push the snapshot --- __tests__/__snapshots__/Storyshots.test.js.snap | 2 -- 1 file changed, 2 deletions(-) diff --git a/__tests__/__snapshots__/Storyshots.test.js.snap b/__tests__/__snapshots__/Storyshots.test.js.snap index 8e0c516964..9538dbadb7 100644 --- a/__tests__/__snapshots__/Storyshots.test.js.snap +++ b/__tests__/__snapshots__/Storyshots.test.js.snap @@ -47791,7 +47791,6 @@ exports[`Storyshots Message With image 1`] = ` /> </View> </View> - //TODO - fix the required fields for the Markdown <Text style={ Array [ @@ -48110,7 +48109,6 @@ exports[`Storyshots Message With image 1`] = ` /> </View> </View> - //TODO - fix the required fields for the Markdown <Text style={ Array [ From 0738bfb6200c7facc4de1cb90b44186ff91e6509 Mon Sep 17 00:00:00 2001 From: AlexAlexandre <alexalexandrejr@gmail.com> Date: Wed, 18 Aug 2021 18:24:23 -0300 Subject: [PATCH 62/90] [improve] - setting up some rules and integration with typescript --- .eslintrc.js | 24 ++++++++++++------------ package.json | 2 +- 2 files changed, 13 insertions(+), 13 deletions(-) diff --git a/.eslintrc.js b/.eslintrc.js index 0f845cd796..b1ecf22dc7 100644 --- a/.eslintrc.js +++ b/.eslintrc.js @@ -9,7 +9,6 @@ module.exports = { "parser": "@babel/eslint-parser", "extends": [ "@rocket.chat/eslint-config", - // 'plugin:react/recommended' ], "parserOptions": { "sourceType": "module", @@ -50,14 +49,15 @@ module.exports = { "extensions": [".js", ".jsx", ".ts", ".tsx"] }], "react/require-default-props": [0], - "react/no-unused-prop-types": [2, { - "skipShapeProps": true - }], + "ordered-imports": [0], + // "react/no-unused-prop-types": [2, { + // "skipShapeProps": true + // }], "react/no-did-mount-set-state": 0, "react/no-multi-comp": [0], "react/jsx-indent": [2, "tab"], "react/jsx-indent-props": [2, "tab"], - "react/forbid-prop-types": 0, + // "react/forbid-prop-types": 0, "jsx-quotes": [2, "prefer-single"], "jsx-a11y/href-no-hash": 0, "jsx-a11y/aria-role": 0, @@ -104,10 +104,7 @@ module.exports = { "no-undef": 2, "no-unreachable": 2, "no-unused-expressions": 0, - "no-unused-vars": [2, { - "vars": "all", - "args": "after-used" - }], + "no-unused-vars": "off", "max-len": 0, "react/jsx-uses-vars": 2, "no-void": 2, @@ -133,7 +130,7 @@ module.exports = { "block-scoped-var": 2, "curly": [2, "all"], "eqeqeq": [2, "allow-null"], - "new-cap": [2], + "new-cap": "off", "use-isnan": 2, "valid-typeof": 2, "linebreak-style": 0, @@ -193,7 +190,6 @@ module.exports = { "**/*.tsx" ], "extends": [ - // 'plugin:react/recommended', "plugin:@typescript-eslint/recommended", "plugin:@typescript-eslint/eslint-recommended", "@rocket.chat/eslint-config" @@ -257,7 +253,11 @@ module.exports = { "@typescript-eslint/no-unused-vars": ["error", { "argsIgnorePattern": "^_", "ignoreRestSiblings": true - }] + }], + "new-cap": "off", + }, + "globals": { + "JSX": true, }, "settings": { "import/resolver": { diff --git a/package.json b/package.json index 55a1aa256c..36195b8aa2 100644 --- a/package.json +++ b/package.json @@ -136,8 +136,8 @@ "@babel/eslint-plugin": "^7.13.0", "@babel/plugin-proposal-decorators": "^7.8.3", "@babel/runtime": "^7.12.5", - "@rocket.chat/eslint-config-alt": "^0.27.0", "@bugsnag/source-maps": "^2.2.0", + "@rocket.chat/eslint-config": "^0.4.0", "@storybook/addon-storyshots": "5.3.21", "@storybook/react-native": "5.3.25", "@types/jest": "^26.0.24", From 69888c49448901cab07d1fe3947f9a4ff98eecd7 Mon Sep 17 00:00:00 2001 From: AlexAlexandre <alexalexandrejr@gmail.com> Date: Wed, 18 Aug 2021 18:25:34 -0300 Subject: [PATCH 63/90] [improve] - add prettier --- .prettierrc.js | 7 +++++++ 1 file changed, 7 insertions(+) create mode 100644 .prettierrc.js diff --git a/.prettierrc.js b/.prettierrc.js new file mode 100644 index 0000000000..d09b65576c --- /dev/null +++ b/.prettierrc.js @@ -0,0 +1,7 @@ +module.exports = { + bracketSpacing: false, + jsxBracketSameLine: true, + singleQuote: true, + trailingComma: 'all', + printWidth: 130, +}; From 3604e7d4b380cc8691e9347674e17d6f2ce3e2db Mon Sep 17 00:00:00 2001 From: AlexAlexandre <alexalexandrejr@gmail.com> Date: Thu, 19 Aug 2021 20:55:32 -0300 Subject: [PATCH 64/90] [improve] - adding the last rules for ts and js --- .eslintrc.js | 22 +++++++++++----------- 1 file changed, 11 insertions(+), 11 deletions(-) diff --git a/.eslintrc.js b/.eslintrc.js index b1ecf22dc7..f253f3cf29 100644 --- a/.eslintrc.js +++ b/.eslintrc.js @@ -63,6 +63,12 @@ module.exports = { "jsx-a11y/aria-role": 0, "import/prefer-default-export": 0, "import/no-cycle": 0, + "import/order":[ + "error", + { + "newlines-between": "ignore", + } + ], "camelcase": 0, "no-underscore-dangle": 0, "no-return-assign": 0, @@ -146,23 +152,14 @@ module.exports = { "react/jsx-one-expression-per-line": 0, "require-await": 2, "func-names": 0, - "react/sort-comp": ["error", { - "order": [ - "static-variables", - "static-methods", - "lifecycle", - "everything-else", - "render" - ] - }], "react/static-property-placement": [0], "arrow-parens": ["error", "as-needed", { requireForBlockBody: true }], - // "react/jsx-props-no-spreading": [1], "react/jsx-curly-newline": [0], "react/state-in-constructor": [0], "no-async-promise-executor": [0], "max-classes-per-file": [0], - "no-multiple-empty-lines": [0] + "no-multiple-empty-lines": [0], + "no-sequences": "off", }, "globals": { "__DEV__": true @@ -209,6 +206,8 @@ module.exports = { "@typescript-eslint" ], "rules": { + "@typescript-eslint/no-var-requires": "off", + "@typescript-eslint/no-empty-function": [0], "@typescript-eslint/ban-types": [0], "func-call-spacing": "off", "jsx-quotes": [ @@ -216,6 +215,7 @@ module.exports = { "prefer-single" ], "indent": "off", + "no-return-assign": 0, "no-dupe-class-members": "off", "no-extra-parens": "off", "no-spaced-func": "off", From 7b9f00510d7737341f44d591c9c11b72453bfb89 Mon Sep 17 00:00:00 2001 From: AlexAlexandre <alexalexandrejr@gmail.com> Date: Thu, 19 Aug 2021 21:01:17 -0300 Subject: [PATCH 65/90] [improve] - fix the errors with auto-save --- app/AppContainer.tsx | 7 +- app/actions/actionsTypes.js | 2 +- app/commands.js | 8 +- app/constants/colors.ts | 14 +- app/constants/messagesStatus.ts | 2 +- app/constants/settings.ts | 138 +++---- app/containers/ActionSheet/ActionSheet.tsx | 40 +- app/containers/ActionSheet/Provider.tsx | 6 +- app/containers/ActionSheet/styles.ts | 28 +- app/containers/ActivityIndicator.tsx | 7 +- app/containers/AppVersion.tsx | 10 +- app/containers/Avatar/Avatar.tsx | 19 +- app/containers/Avatar/index.tsx | 10 +- app/containers/Avatar/interfaces.ts | 42 +- .../BackgroundContainer/index.stories.js | 2 +- app/containers/BackgroundContainer/index.tsx | 12 +- app/containers/Button/index.tsx | 15 +- app/containers/Check.tsx | 4 +- app/containers/EmojiPicker/CustomEmoji.tsx | 5 +- app/containers/EmojiPicker/EmojiCategory.tsx | 7 +- app/containers/EmojiPicker/TabBar.tsx | 6 +- app/containers/EmojiPicker/categories.ts | 22 +- app/containers/EmojiPicker/index.tsx | 34 +- app/containers/EmojiPicker/interfaces.ts | 28 +- app/containers/EmojiPicker/styles.ts | 22 +- app/containers/FormContainer.tsx | 6 +- app/containers/Header/index.tsx | 12 +- app/containers/HeaderButton/Common.tsx | 2 +- .../HeaderButton/HeaderButtonContainer.tsx | 10 +- .../HeaderButton/HeaderButtonItem.tsx | 18 +- .../HeaderButton/HeaderButtonItemBadge.tsx | 4 +- .../InAppNotification/NotifierComponent.tsx | 28 +- app/containers/InAppNotification/index.tsx | 8 +- app/containers/List/ListContainer.tsx | 5 +- app/containers/List/ListHeader.tsx | 8 +- app/containers/List/ListIcon.tsx | 6 +- app/containers/List/ListInfo.tsx | 8 +- app/containers/List/ListItem.tsx | 26 +- app/containers/List/ListSection.tsx | 7 +- app/containers/List/ListSeparator.tsx | 8 +- app/containers/List/styles.ts | 4 +- app/containers/Loading.tsx | 40 +- app/containers/LoginServices.tsx | 40 +- app/containers/MessageActions/Header.tsx | 18 +- app/containers/MessageActions/index.tsx | 68 +-- .../MessageBox/LeftButtons.android.tsx | 3 +- app/containers/MessageBox/LeftButtons.ios.tsx | 4 +- .../MessageBox/Mentions/FixedMentionItem.tsx | 8 +- .../MessageBox/Mentions/MentionEmoji.tsx | 4 +- .../MessageBox/Mentions/MentionItem.tsx | 10 +- app/containers/MessageBox/RecordAudio.tsx | 33 +- app/containers/MessageBox/ReplyPreview.tsx | 26 +- .../MessageBox/RightButtons.android.tsx | 4 +- .../MessageBox/RightButtons.ios.tsx | 1 + .../MessageBox/buttons/ActionsButton.tsx | 1 + .../buttons/CancelEditingButton.tsx | 1 + .../MessageBox/buttons/SendButton.tsx | 1 + .../MessageBox/buttons/ToggleEmojiButton.tsx | 1 + app/containers/MessageBox/buttons/index.ts | 2 +- app/containers/MessageBox/index.tsx | 168 ++++---- app/containers/MessageBox/styles.ts | 44 +- app/containers/MessageErrorActions.tsx | 22 +- app/containers/OrSeparator.tsx | 10 +- app/containers/Passcode/Base/Button.tsx | 2 +- app/containers/Passcode/Base/Dots.tsx | 4 +- app/containers/Passcode/Base/Locked.tsx | 6 +- app/containers/Passcode/Base/Subtitle.tsx | 2 +- app/containers/Passcode/Base/Title.tsx | 2 +- app/containers/Passcode/Base/index.tsx | 8 +- app/containers/Passcode/Base/styles.ts | 30 +- app/containers/Passcode/PasscodeChoose.tsx | 2 +- app/containers/Passcode/PasscodeEnter.tsx | 12 +- app/containers/Passcode/constants.ts | 2 +- app/containers/Passcode/utils.ts | 4 +- app/containers/ReactionsModal.tsx | 28 +- .../RoomHeader/RoomHeader.stories.js | 4 +- app/containers/RoomHeader/RoomHeader.tsx | 18 +- app/containers/RoomHeader/index.tsx | 7 +- app/containers/RoomTypeIcon.tsx | 9 +- app/containers/SafeAreaView.tsx | 5 +- app/containers/SearchBox.tsx | 18 +- app/containers/Status/Status.tsx | 3 +- app/containers/Status/index.tsx | 2 +- app/containers/TextInput.tsx | 41 +- app/containers/ThreadDetails.tsx | 18 +- app/containers/Toast.tsx | 7 +- app/containers/TwoFactor/index.tsx | 16 +- app/containers/TwoFactor/styles.ts | 18 +- app/containers/UIKit/Actions.tsx | 2 +- app/containers/UIKit/Context.tsx | 8 +- app/containers/UIKit/DatePicker.tsx | 17 +- app/containers/UIKit/Divider.tsx | 4 +- app/containers/UIKit/Image.tsx | 8 +- app/containers/UIKit/Input.tsx | 14 +- app/containers/UIKit/MultiSelect/Chips.tsx | 3 +- app/containers/UIKit/MultiSelect/Input.tsx | 4 +- app/containers/UIKit/MultiSelect/Items.tsx | 7 +- app/containers/UIKit/MultiSelect/index.tsx | 29 +- app/containers/UIKit/MultiSelect/styles.ts | 34 +- app/containers/UIKit/Overflow.tsx | 16 +- app/containers/UIKit/Section.tsx | 18 +- app/containers/UIKit/Select.tsx | 22 +- app/containers/UIKit/index.tsx | 24 +- app/containers/UIKit/utils.ts | 18 +- app/containers/markdown/AtMention.tsx | 15 +- app/containers/markdown/BlockQuote.tsx | 1 - app/containers/markdown/Emoji.tsx | 7 +- app/containers/markdown/Hashtag.tsx | 9 +- app/containers/markdown/Link.tsx | 4 +- app/containers/markdown/List.tsx | 2 +- app/containers/markdown/ListItem.tsx | 10 +- app/containers/markdown/Table.tsx | 6 +- app/containers/markdown/TableCell.tsx | 1 - app/containers/markdown/TableRow.tsx | 3 +- app/containers/markdown/index.tsx | 29 +- app/containers/markdown/styles.ts | 76 ++-- app/containers/message/Attachments.tsx | 5 +- app/containers/message/Audio.tsx | 39 +- app/containers/message/Blocks.ts | 11 +- app/containers/message/Broadcast.tsx | 4 +- app/containers/message/CallButton.tsx | 4 +- app/containers/message/Content.tsx | 4 +- app/containers/message/Discussion.tsx | 6 +- app/containers/message/Emoji.tsx | 2 +- app/containers/message/Image.tsx | 8 +- app/containers/message/Message.tsx | 7 +- app/containers/message/MessageAvatar.tsx | 6 +- app/containers/message/Reactions.tsx | 4 +- app/containers/message/RepliedThread.tsx | 8 +- app/containers/message/Reply.tsx | 36 +- app/containers/message/Thread.tsx | 8 +- app/containers/message/Urls.tsx | 22 +- app/containers/message/User.tsx | 17 +- app/containers/message/Video.tsx | 8 +- app/containers/message/index.tsx | 16 +- app/containers/message/interfaces.ts | 190 ++++----- app/containers/message/styles.ts | 78 ++-- app/containers/message/utils.ts | 50 +-- app/dimensions.tsx | 4 +- .../containers/OmnichannelStatus.js | 8 +- app/ee/omnichannel/lib/index.js | 2 +- .../omnichannel/lib/subscriptions/inquiry.js | 4 +- app/ee/omnichannel/sagas/inquiry.js | 6 +- app/ee/omnichannel/views/QueueListView.js | 4 +- app/emojis.ts | 20 +- app/index.tsx | 36 +- app/lib/Navigation.ts | 4 +- app/lib/ShareNavigation.ts | 2 +- app/lib/createStore.js | 2 +- app/lib/database/index.js | 10 +- app/lib/database/model/CustomEmoji.js | 2 +- app/lib/database/model/Message.js | 2 +- app/lib/database/model/Permission.js | 2 +- app/lib/database/model/ServersHistory.js | 2 +- app/lib/database/model/Setting.js | 2 +- app/lib/database/model/Subscription.js | 3 +- app/lib/database/model/Thread.js | 2 +- app/lib/database/model/ThreadMessage.js | 2 +- app/lib/database/model/migrations.js | 2 +- app/lib/database/model/servers/Server.js | 2 +- app/lib/database/model/servers/migrations.js | 2 +- app/lib/encryption/encryption.js | 36 +- app/lib/encryption/room.js | 20 +- app/lib/methods/callJitsi.js | 2 +- app/lib/methods/enterpriseModules.js | 3 +- app/lib/methods/getPermissions.js | 2 +- app/lib/methods/getRoles.js | 2 +- app/lib/methods/getSettings.js | 2 +- app/lib/methods/getThreadName.js | 2 +- app/lib/methods/helpers/buildMessage.js | 2 +- .../helpers/mergeSubscriptionsRooms.js | 4 +- app/lib/methods/loadMessagesForRoom.js | 2 +- app/lib/methods/loadMissedMessages.js | 2 +- app/lib/methods/loadNextMessages.js | 2 +- app/lib/methods/loadSurroundingMessages.js | 2 +- app/lib/methods/loadThreadMessages.js | 4 +- app/lib/methods/logout.js | 2 +- app/lib/methods/subscriptions/room.js | 6 +- app/lib/methods/updateMessages.js | 4 +- app/lib/rocketchat.js | 70 ++-- app/lib/utils.js | 2 +- app/notifications/push/index.js | 3 +- app/presentation/DirectoryItem/index.tsx | 2 +- app/presentation/DirectoryItem/styles.ts | 18 +- .../ImageViewer/ImageViewer.android.tsx | 116 +++--- .../ImageViewer/ImageViewer.ios.tsx | 8 +- app/presentation/ImageViewer/index.ts | 2 + app/presentation/ImageViewer/types.ts | 2 +- app/presentation/KeyboardView.tsx | 4 +- app/presentation/RoomItem/Actions.tsx | 32 +- app/presentation/RoomItem/LastMessage.tsx | 6 +- app/presentation/RoomItem/RoomItem.tsx | 2 +- app/presentation/RoomItem/Tag.tsx | 2 +- app/presentation/RoomItem/Title.tsx | 2 +- app/presentation/RoomItem/Touchable.tsx | 386 +++++++++--------- app/presentation/RoomItem/TypeIcon.tsx | 3 +- app/presentation/RoomItem/UpdatedAt.tsx | 8 +- app/presentation/RoomItem/Wrapper.tsx | 6 +- app/presentation/RoomItem/index.tsx | 17 +- app/presentation/RoomItem/styles.ts | 44 +- app/presentation/ServerItem/index.tsx | 10 +- app/presentation/ServerItem/styles.ts | 12 +- app/presentation/TextInput.tsx | 6 +- .../UnreadBadge/getUnreadStyle.ts | 6 +- app/presentation/UnreadBadge/index.tsx | 22 +- app/presentation/UserItem.tsx | 24 +- app/reducers/crashReport.js | 2 +- app/reducers/index.js | 4 +- app/sagas/createChannel.js | 6 +- app/sagas/createDiscussion.js | 6 +- app/sagas/deepLinking.js | 6 +- app/sagas/encryption.js | 6 +- app/sagas/index.js | 4 +- app/sagas/init.js | 4 +- app/sagas/inviteLinks.js | 4 +- app/sagas/login.js | 12 +- app/sagas/messages.js | 2 +- app/sagas/room.js | 8 +- app/sagas/rooms.js | 4 +- app/sagas/selectServer.js | 5 +- app/sagas/state.js | 2 +- app/share.tsx | 27 +- app/stacks/InsideStack.js | 4 +- .../MasterDetailStack/ModalContainer.js | 2 +- app/stacks/MasterDetailStack/index.js | 8 +- app/stacks/OutsideStack.js | 2 +- app/theme.tsx | 2 +- app/utils/avatar.js | 2 +- app/utils/base64-js/base64-js.test.js | 6 +- app/utils/base64-js/index.js | 2 +- app/utils/fetch.js | 1 + app/utils/info.js | 7 +- app/utils/localAuthentication.js | 6 +- app/utils/log/index.js | 1 + app/utils/navigation/animations.js | 4 +- app/utils/navigation/index.ts | 16 +- app/utils/review.js | 6 +- app/utils/room.js | 2 +- app/utils/shortnameToUnicode/index.js | 2 +- app/utils/sslPinning.js | 4 +- app/utils/theme.js | 2 +- app/utils/twoFactor.js | 2 +- app/views/AddExistingChannelView.js | 2 +- app/views/AttachmentView.js | 2 +- app/views/AuthLoadingView.js | 3 +- app/views/AutoTranslateView/index.js | 4 +- app/views/ChangePasscodeView.js | 6 +- app/views/CreateChannelView.js | 8 +- .../CreateDiscussionView/SelectChannel.js | 1 - app/views/CreateDiscussionView/SelectUsers.js | 3 +- app/views/CreateDiscussionView/index.js | 17 +- app/views/DefaultBrowserView.js | 2 +- app/views/DirectoryView/Options.js | 4 +- app/views/DirectoryView/index.js | 12 +- app/views/E2EEncryptionSecurityView.js | 6 +- app/views/E2EEnterYourPasswordView.js | 6 +- app/views/E2ESaveYourPasswordView.js | 10 +- app/views/ForgotPasswordView.js | 4 +- app/views/ForwardLivechatView.js | 2 +- app/views/InviteUsersEditView/index.js | 8 +- app/views/InviteUsersEditView/styles.js | 2 +- app/views/InviteUsersView/index.js | 10 +- app/views/InviteUsersView/styles.js | 1 + app/views/JitsiMeetView.js | 9 +- app/views/LanguageView/index.js | 6 +- app/views/LivechatEditView.js | 11 +- app/views/LoginView.js | 4 +- app/views/MessagesView/index.js | 8 +- app/views/ModalBlockView.js | 5 +- app/views/NewMessageView.js | 12 +- app/views/NewServerView/ServerInput/Item.js | 2 +- app/views/NewServerView/ServerInput/index.js | 4 +- app/views/NewServerView/index.js | 10 +- .../NotificationPreferencesView/index.js | 4 +- app/views/OnboardingView/index.js | 6 +- app/views/OnboardingView/styles.js | 2 +- app/views/PickerView.js | 5 +- app/views/ProfileView/index.js | 8 +- app/views/ReadReceiptView/index.js | 6 +- app/views/ReadReceiptView/styles.js | 1 + app/views/RegisterView.js | 6 +- app/views/RoomActionsView/index.js | 12 +- app/views/RoomActionsView/styles.js | 4 +- app/views/RoomInfoEditView/SwitchContainer.js | 4 +- app/views/RoomInfoEditView/index.js | 12 +- app/views/RoomInfoView/Direct.js | 4 +- app/views/RoomInfoView/Item.js | 4 +- app/views/RoomInfoView/Livechat.js | 10 +- app/views/RoomInfoView/index.js | 13 +- app/views/RoomMembersView/index.js | 12 +- app/views/RoomView/Banner.js | 5 +- app/views/RoomView/JoinCode.js | 11 +- app/views/RoomView/List/NavBottomFAB.js | 2 +- app/views/RoomView/List/index.js | 2 +- .../RoomView/LoadMore/LoadMore.stories.js | 4 +- app/views/RoomView/LoadMore/index.js | 4 +- app/views/RoomView/ReactionPicker.js | 7 +- app/views/RoomView/RightButtons.js | 2 +- app/views/RoomView/Separator.js | 2 +- app/views/RoomView/UploadProgress.js | 2 +- app/views/RoomView/index.js | 36 +- app/views/RoomsListView/Header/Header.js | 4 +- app/views/RoomsListView/Header/index.js | 6 +- app/views/RoomsListView/ListHeader/index.js | 1 - app/views/RoomsListView/ServerDropdown.js | 14 +- app/views/RoomsListView/SortDropdown/index.js | 2 +- app/views/RoomsListView/index.js | 39 +- app/views/ScreenLockConfigView.js | 4 +- app/views/ScreenLockedView.js | 4 +- app/views/SearchMessagesView/index.js | 4 +- app/views/SecurityPrivacyView.js | 6 +- app/views/SelectListView.js | 4 +- app/views/SelectServerView.js | 4 +- app/views/SelectedUsersView.js | 16 +- app/views/SetUsernameView.js | 4 +- app/views/SettingsView/index.js | 12 +- .../ShareListView/Header/Header.android.js | 2 +- app/views/ShareListView/Header/Header.ios.js | 3 +- app/views/ShareListView/index.js | 12 +- app/views/ShareListView/styles.js | 1 + app/views/ShareView/Header.js | 2 +- app/views/ShareView/Preview.js | 8 +- app/views/ShareView/Thumbs.js | 4 +- app/views/ShareView/index.js | 10 +- app/views/SidebarView/SidebarItem.js | 4 +- app/views/SidebarView/index.js | 9 +- app/views/StatusView.js | 3 +- app/views/Styles.js | 2 +- app/views/TeamChannelsView.js | 4 +- .../Dropdown/DropdownItem.js | 2 +- .../Dropdown/DropdownItemFilter.js | 2 +- .../Dropdown/DropdownItemHeader.js | 2 +- app/views/ThreadMessagesView/Item.js | 2 +- app/views/ThreadMessagesView/Item.stories.js | 2 +- app/views/ThreadMessagesView/SearchHeader.js | 2 +- app/views/ThreadMessagesView/index.js | 12 +- .../UserNotificationPreferencesView/index.js | 4 +- app/views/UserPreferencesView/index.js | 2 +- app/views/VisitorNavigationView.js | 2 +- app/views/WithoutServersView.tsx | 12 +- app/views/WorkspaceView/ServerAvatar.js | 2 +- app/views/WorkspaceView/index.js | 6 +- e2e/helpers/data_setup.js | 1 + e2e/tests/assorted/01-e2eencryption.spec.js | 1 - e2e/tests/assorted/04-setting.spec.js | 1 - e2e/tests/assorted/06-status.spec.js | 1 - e2e/tests/assorted/12-i18n.spec.js | 1 - e2e/tests/init.js | 1 + index.js | 1 + storybook/stories/Message.js | 3 +- storybook/stories/RoomItem.js | 2 +- storybook/stories/UiKitMessage.js | 4 +- storybook/stories/UiKitModal.js | 4 +- storybook/stories/index.js | 2 +- 354 files changed, 2096 insertions(+), 2113 deletions(-) diff --git a/app/AppContainer.tsx b/app/AppContainer.tsx index 51ccba5f72..9edbce6d89 100644 --- a/app/AppContainer.tsx +++ b/app/AppContainer.tsx @@ -6,15 +6,12 @@ import { connect } from 'react-redux'; import Navigation from './lib/Navigation'; import { defaultHeader, getActiveRouteName, navigationTheme } from './utils/navigation'; import { - ROOT_LOADING, ROOT_OUTSIDE, ROOT_NEW_SERVER, ROOT_INSIDE, ROOT_SET_USERNAME + ROOT_INSIDE, ROOT_LOADING, ROOT_NEW_SERVER, ROOT_OUTSIDE, ROOT_SET_USERNAME, } from './actions/app'; - // Stacks import AuthLoadingView from './views/AuthLoadingView'; - // SetUsername Stack import SetUsernameView from './views/SetUsernameView'; - import OutsideStack from './stacks/OutsideStack'; import InsideStack from './stacks/InsideStack'; import MasterDetailStack from './stacks/MasterDetailStack'; @@ -101,7 +98,7 @@ const App = React.memo(({ root, isMasterDetail }: {root: string, isMasterDetail: }); const mapStateToProps = (state: any) => ({ root: state.app.root, - isMasterDetail: state.app.isMasterDetail + isMasterDetail: state.app.isMasterDetail, }); const AppContainer = connect(mapStateToProps)(App); diff --git a/app/actions/actionsTypes.js b/app/actions/actionsTypes.js index 0790b7bad9..ea725988ba 100644 --- a/app/actions/actionsTypes.js +++ b/app/actions/actionsTypes.js @@ -4,7 +4,7 @@ const FAILURE = 'FAILURE'; const defaultTypes = [REQUEST, SUCCESS, FAILURE]; function createRequestTypes(base, types = defaultTypes) { const res = {}; - types.forEach(type => (res[type] = `${ base }_${ type }`)); + types.forEach(type => res[type] = `${ base }_${ type }`); return res; } diff --git a/app/commands.js b/app/commands.js index c0f4c5575a..3f0f6f7660 100644 --- a/app/commands.js +++ b/app/commands.js @@ -125,15 +125,15 @@ const keyCommands = [ discoverabilityTitle: I18n.t('Add_server') }, // Refers to select rooms on list - ...([1, 2, 3, 4, 5, 6, 7, 8, 9].map(value => ({ + ...[1, 2, 3, 4, 5, 6, 7, 8, 9].map(value => ({ input: `${ value }`, modifierFlags: constants.keyModifierCommand - }))), + })), // Refers to select servers on list - ...([1, 2, 3, 4, 5, 6, 7, 8, 9].map(value => ({ + ...[1, 2, 3, 4, 5, 6, 7, 8, 9].map(value => ({ input: `${ value }`, modifierFlags: constants.keyModifierCommand | constants.keyModifierAlternate - }))) + })) ]; export const setKeyCommands = () => KeyCommands.setKeyCommands(keyCommands); diff --git a/app/constants/colors.ts b/app/constants/colors.ts index ab358679ca..6fc4845238 100644 --- a/app/constants/colors.ts +++ b/app/constants/colors.ts @@ -3,12 +3,12 @@ export const STATUS_COLORS: any = { busy: '#f5455c', away: '#ffd21f', offline: '#cbced1', - loading: '#9ea2a8' + loading: '#9ea2a8', }; export const SWITCH_TRACK_COLOR = { false: '#f5455c', - true: '#2de0a5' + true: '#2de0a5', }; const mentions = { @@ -16,7 +16,7 @@ const mentions = { tunreadColor: '#1d74f5', mentionMeColor: '#F5455C', mentionGroupColor: '#F38C39', - mentionOtherColor: '#F3BE08' + mentionOtherColor: '#F3BE08', }; export const themes: any = { @@ -65,7 +65,7 @@ export const themes: any = { previewBackground: '#1F2329', previewTintColor: '#ffffff', backdropOpacity: 0.3, - ...mentions + ...mentions, }, dark: { backgroundColor: '#030b1b', @@ -112,7 +112,7 @@ export const themes: any = { previewBackground: '#030b1b', previewTintColor: '#ffffff', backdropOpacity: 0.9, - ...mentions + ...mentions, }, black: { backgroundColor: '#000000', @@ -159,6 +159,6 @@ export const themes: any = { previewBackground: '#000000', previewTintColor: '#ffffff', backdropOpacity: 0.9, - ...mentions - } + ...mentions, + }, }; diff --git a/app/constants/messagesStatus.ts b/app/constants/messagesStatus.ts index 4f945f939e..b27260d72d 100644 --- a/app/constants/messagesStatus.ts +++ b/app/constants/messagesStatus.ts @@ -1,5 +1,5 @@ export default { SENT: 0, TEMP: 1, - ERROR: 2 + ERROR: 2, }; diff --git a/app/constants/settings.ts b/app/constants/settings.ts index 14ad8fb36f..62fff63192 100644 --- a/app/constants/settings.ts +++ b/app/constants/settings.ts @@ -1,206 +1,206 @@ export default { Accounts_AllowEmailChange: { - type: 'valueAsBoolean' + type: 'valueAsBoolean', }, Accounts_AllowPasswordChange: { - type: 'valueAsBoolean' + type: 'valueAsBoolean', }, Accounts_AllowRealNameChange: { - type: 'valueAsBoolean' + type: 'valueAsBoolean', }, Accounts_AllowUserAvatarChange: { - type: 'valueAsBoolean' + type: 'valueAsBoolean', }, Accounts_AllowUserProfileChange: { - type: 'valueAsBoolean' + type: 'valueAsBoolean', }, Accounts_AllowUserStatusMessageChange: { - type: 'valueAsBoolean' + type: 'valueAsBoolean', }, Accounts_AllowUsernameChange: { - type: 'valueAsBoolean' + type: 'valueAsBoolean', }, Accounts_AvatarBlockUnauthenticatedAccess: { - type: 'valueAsBoolean' + type: 'valueAsBoolean', }, Accounts_CustomFields: { - type: 'valueAsString' + type: 'valueAsString', }, Accounts_EmailOrUsernamePlaceholder: { - type: 'valueAsString' + type: 'valueAsString', }, Accounts_EmailVerification: { - type: 'valueAsBoolean' + type: 'valueAsBoolean', }, Accounts_NamePlaceholder: { - type: 'valueAsString' + type: 'valueAsString', }, Accounts_PasswordPlaceholder: { - type: 'valueAsString' + type: 'valueAsString', }, Accounts_PasswordReset: { - type: 'valueAsBoolean' + type: 'valueAsBoolean', }, Accounts_RegistrationForm: { - type: 'valueAsString' + type: 'valueAsString', }, Accounts_RegistrationForm_LinkReplacementText: { - type: 'valueAsString' + type: 'valueAsString', }, Accounts_ShowFormLogin: { - type: 'valueAsBoolean' + type: 'valueAsBoolean', }, Accounts_ManuallyApproveNewUsers: { - type: 'valueAsBoolean' + type: 'valueAsBoolean', }, API_Use_REST_For_DDP_Calls: { - type: 'valueAsBoolean' + type: 'valueAsBoolean', }, Accounts_iframe_enabled: { - type: 'valueAsBoolean' + type: 'valueAsBoolean', }, Accounts_Iframe_api_url: { - type: 'valueAsString' + type: 'valueAsString', }, Accounts_Iframe_api_method: { - type: 'valueAsString' + type: 'valueAsString', }, CROWD_Enable: { - type: 'valueAsBoolean' + type: 'valueAsBoolean', }, DirectMesssage_maxUsers: { - type: 'valueAsNumber' + type: 'valueAsNumber', }, E2E_Enable: { - type: 'valueAsBoolean' + type: 'valueAsBoolean', }, Accounts_Directory_DefaultView: { - type: 'valueAsString' + type: 'valueAsString', }, FEDERATION_Enabled: { - type: 'valueAsBoolean' + type: 'valueAsBoolean', }, Hide_System_Messages: { - type: 'valueAsArray' + type: 'valueAsArray', }, LDAP_Enable: { - type: 'valueAsBoolean' + type: 'valueAsBoolean', }, Livechat_request_comment_when_closing_conversation: { - type: 'valueAsBoolean' + type: 'valueAsBoolean', }, Jitsi_Enabled: { - type: 'valueAsBoolean' + type: 'valueAsBoolean', }, Jitsi_SSL: { - type: 'valueAsBoolean' + type: 'valueAsBoolean', }, Jitsi_Domain: { - type: 'valueAsString' + type: 'valueAsString', }, Jitsi_Enabled_TokenAuth: { - type: 'valueAsBoolean' + type: 'valueAsBoolean', }, Jitsi_URL_Room_Hash: { - type: 'valueAsBoolean' + type: 'valueAsBoolean', }, Jitsi_URL_Room_Prefix: { - type: 'valueAsString' + type: 'valueAsString', }, Message_AllowDeleting: { - type: 'valueAsBoolean' + type: 'valueAsBoolean', }, Message_AllowDeleting_BlockDeleteInMinutes: { - type: 'valueAsNumber' + type: 'valueAsNumber', }, Message_AllowEditing: { - type: 'valueAsBoolean' + type: 'valueAsBoolean', }, Message_AllowEditing_BlockEditInMinutes: { - type: 'valueAsNumber' + type: 'valueAsNumber', }, Message_AllowPinning: { - type: 'valueAsBoolean' + type: 'valueAsBoolean', }, Message_AllowStarring: { - type: 'valueAsBoolean' + type: 'valueAsBoolean', }, Message_AudioRecorderEnabled: { - type: 'valueAsBoolean' + type: 'valueAsBoolean', }, Message_GroupingPeriod: { - type: 'valueAsNumber' + type: 'valueAsNumber', }, Message_TimeFormat: { - type: 'valueAsString' + type: 'valueAsString', }, Message_TimeAndDateFormat: { - type: 'valueAsString' + type: 'valueAsString', }, Site_Name: { - type: 'valueAsString' + type: 'valueAsString', }, Site_Url: { - type: 'valueAsString' + type: 'valueAsString', }, Store_Last_Message: { - type: 'valueAsBoolean' + type: 'valueAsBoolean', }, uniqueID: { - type: 'valueAsString' + type: 'valueAsString', }, UI_Allow_room_names_with_special_chars: { - type: 'valueAsBoolean' + type: 'valueAsBoolean', }, UI_Use_Real_Name: { - type: 'valueAsBoolean' + type: 'valueAsBoolean', }, Assets_favicon_512: { - type: null + type: null, }, Message_Read_Receipt_Enabled: { - type: 'valueAsBoolean' + type: 'valueAsBoolean', }, Message_Read_Receipt_Store_Users: { - type: 'valueAsBoolean' + type: 'valueAsBoolean', }, Threads_enabled: { - type: 'valueAsBoolean' + type: 'valueAsBoolean', }, FileUpload_MediaTypeWhiteList: { - type: 'valueAsString' + type: 'valueAsString', }, FileUpload_MaxFileSize: { - type: 'valueAsNumber' + type: 'valueAsNumber', }, API_Gitlab_URL: { - type: 'valueAsString' + type: 'valueAsString', }, AutoTranslate_Enabled: { - type: 'valueAsBoolean' + type: 'valueAsBoolean', }, CAS_enabled: { - type: 'valueAsBoolean' + type: 'valueAsBoolean', }, CAS_login_url: { - type: 'valueAsString' + type: 'valueAsString', }, Force_Screen_Lock: { - type: 'valueAsBoolean' + type: 'valueAsBoolean', }, Force_Screen_Lock_After: { - type: 'valueAsNumber' + type: 'valueAsNumber', }, Allow_Save_Media_to_Gallery: { - type: 'valueAsBoolean' + type: 'valueAsBoolean', }, Accounts_AllowInvisibleStatusOption: { - type: 'valueAsString' + type: 'valueAsString', }, Jitsi_Enable_Teams: { - type: 'valueAsBoolean' + type: 'valueAsBoolean', }, Jitsi_Enable_Channels: { - type: 'valuesAsBoolean' - } + type: 'valuesAsBoolean', + }, }; diff --git a/app/containers/ActionSheet/ActionSheet.tsx b/app/containers/ActionSheet/ActionSheet.tsx index e7c1173b24..7332643e61 100644 --- a/app/containers/ActionSheet/ActionSheet.tsx +++ b/app/containers/ActionSheet/ActionSheet.tsx @@ -1,17 +1,17 @@ import React, { - useRef, - useState, - useEffect, forwardRef, - useImperativeHandle, + isValidElement, useCallback, - isValidElement + useEffect, + useImperativeHandle, + useRef, + useState, } from 'react'; import { Keyboard, Text } from 'react-native'; import { useSafeAreaInsets } from 'react-native-safe-area-context'; -import { TapGestureHandler, State } from 'react-native-gesture-handler'; +import { State, TapGestureHandler } from 'react-native-gesture-handler'; import ScrollBottomSheet from 'react-native-scroll-bottom-sheet'; -import Animated, { Extrapolate, interpolate, Value, Easing} from 'react-native-reanimated'; +import Animated, { Easing, Extrapolate, Value, interpolate } from 'react-native-reanimated'; import * as Haptics from 'expo-haptics'; import { useBackHandler } from '@react-native-community/hooks'; @@ -20,10 +20,10 @@ import { Handle } from './Handle'; import { Button } from './Button'; import { themes } from '../../constants/colors'; import styles, { ITEM_HEIGHT } from './styles'; -import { isTablet, isIOS } from '../../utils/deviceInfo'; +import { isIOS, isTablet } from '../../utils/deviceInfo'; import * as List from '../List'; import I18n from '../../i18n'; -import { useOrientation, useDimensions, IDimensionsContextProps } from '../../dimensions'; +import { IDimensionsContextProps, useDimensions, useOrientation } from '../../dimensions'; interface IActionSheetData { options: any; @@ -43,7 +43,7 @@ const ANIMATION_DURATION = 250; const ANIMATION_CONFIG = { duration: ANIMATION_DURATION, // https://easings.net/#easeInOutCubic - easing: Easing.bezier(0.645, 0.045, 0.355, 1.0) + easing: Easing.bezier(0.645, 0.045, 0.355, 1.0), }; const ActionSheet = React.memo(forwardRef(({ children, theme }: {children: JSX.Element; theme: string}, ref) => { @@ -55,8 +55,8 @@ const ActionSheet = React.memo(forwardRef(({ children, theme }: {children: JSX.E const insets = useSafeAreaInsets(); const maxSnap = Math.max( - ( - height! + + height! // Items height - (ITEM_HEIGHT * (data?.options?.length || 0)) // Handle height @@ -67,8 +67,8 @@ const ActionSheet = React.memo(forwardRef(({ children, theme }: {children: JSX.E - insets.bottom // Cancel button height - (data?.hasCancel ? CANCEL_HEIGHT : 0) - ), - MAX_SNAP_HEIGHT + , + MAX_SNAP_HEIGHT, ); /* @@ -121,7 +121,7 @@ const ActionSheet = React.memo(forwardRef(({ children, theme }: {children: JSX.E useImperativeHandle(ref, () => ({ showActionSheet: show, - hideActionSheet: hide + hideActionSheet: hide, })); const renderHandle = useCallback(() => ( @@ -149,7 +149,7 @@ const ActionSheet = React.memo(forwardRef(({ children, theme }: {children: JSX.E const opacity = interpolate(animatedPosition.current, { inputRange: [0, 1], outputRange: [0, themes[theme].backdropOpacity], - extrapolate: Extrapolate.CLAMP + extrapolate: Extrapolate.CLAMP, }); return ( @@ -164,8 +164,8 @@ const ActionSheet = React.memo(forwardRef(({ children, theme }: {children: JSX.E styles.backdrop, { backgroundColor: themes[theme].backdropColor, - opacity - } + opacity, + }, ]} /> </TapGestureHandler> @@ -176,12 +176,12 @@ const ActionSheet = React.memo(forwardRef(({ children, theme }: {children: JSX.E snapPoints={snaps} initialSnapIndex={closedSnapIndex} renderHandle={renderHandle} - onSettle={index => (index === closedSnapIndex) && toggleVisible()} + onSettle={(index) => (index === closedSnapIndex) && toggleVisible()} animatedPosition={animatedPosition.current} containerStyle={[ styles.container, { backgroundColor: themes[theme].focusedBackground }, - (isLandscape || isTablet) && styles.bottomSheet + (isLandscape || isTablet) && styles.bottomSheet, ] as any} animationConfig={ANIMATION_CONFIG} // FlatList props diff --git a/app/containers/ActionSheet/Provider.tsx b/app/containers/ActionSheet/Provider.tsx index c8715b6133..49239ddc75 100644 --- a/app/containers/ActionSheet/Provider.tsx +++ b/app/containers/ActionSheet/Provider.tsx @@ -1,4 +1,4 @@ -import React, {useRef, useContext, forwardRef, ForwardedRef} from 'react'; +import React, { ForwardedRef, forwardRef, useContext, useRef } from 'react'; import ActionSheet from './ActionSheet'; import { useTheme } from '../../theme'; @@ -10,7 +10,7 @@ interface IActionSheetProvider { const context: IActionSheetProvider = React.createContext({ showActionSheet: () => {}, - hideActionSheet: () => {} + hideActionSheet: () => {}, }); export const useActionSheet = () => useContext(context); @@ -33,7 +33,7 @@ export const ActionSheetProvider = React.memo(({ children }: {children: JSX.Elem }, hideActionSheet: () => { ref.current?.hideActionSheet(); - } + }, }); return ( diff --git a/app/containers/ActionSheet/styles.ts b/app/containers/ActionSheet/styles.ts index 1b9397dc99..12143312e9 100644 --- a/app/containers/ActionSheet/styles.ts +++ b/app/containers/ActionSheet/styles.ts @@ -8,46 +8,46 @@ export default StyleSheet.create({ container: { overflow: 'hidden', borderTopLeftRadius: 16, - borderTopRightRadius: 16 + borderTopRightRadius: 16, }, item: { paddingHorizontal: 16, height: ITEM_HEIGHT, alignItems: 'center', - flexDirection: 'row' + flexDirection: 'row', }, separator: { - marginHorizontal: 16 + marginHorizontal: 16, }, content: { - paddingTop: 16 + paddingTop: 16, }, titleContainer: { - flex: 1 + flex: 1, }, title: { fontSize: 16, marginLeft: 16, - ...sharedStyles.textRegular + ...sharedStyles.textRegular, }, handle: { justifyContent: 'center', alignItems: 'center', - paddingBottom: 8 + paddingBottom: 8, }, handleIndicator: { width: 40, height: 4, borderRadius: 4, - margin: 8 + margin: 8, }, backdrop: { - ...StyleSheet.absoluteFillObject + ...StyleSheet.absoluteFillObject, }, bottomSheet: { width: '50%', alignSelf: 'center', - left: '25%' + left: '25%', }, button: { marginHorizontal: 16, @@ -55,14 +55,14 @@ export default StyleSheet.create({ justifyContent: 'center', height: ITEM_HEIGHT, borderRadius: 2, - marginBottom: 12 + marginBottom: 12, }, text: { fontSize: 16, ...sharedStyles.textMedium, - ...sharedStyles.textAlignCenter + ...sharedStyles.textAlignCenter, }, rightContainer: { - paddingLeft: 12 - } + paddingLeft: 12, + }, }); diff --git a/app/containers/ActivityIndicator.tsx b/app/containers/ActivityIndicator.tsx index e2f1de9356..5153a99e35 100644 --- a/app/containers/ActivityIndicator.tsx +++ b/app/containers/ActivityIndicator.tsx @@ -1,5 +1,6 @@ import React from 'react'; import { ActivityIndicator, ActivityIndicatorProps, StyleSheet } from 'react-native'; + import { themes } from '../constants/colors'; type TTheme = 'light' | 'dark' | 'black' | string; @@ -13,7 +14,7 @@ interface IActivityIndicator extends ActivityIndicatorProps{ const styles = StyleSheet.create({ indicator: { padding: 16, - flex: 1 + flex: 1, }, absolute: { position: 'absolute', @@ -22,8 +23,8 @@ const styles = StyleSheet.create({ top: 0, bottom: 0, alignItems: 'center', - justifyContent: 'center' - } + justifyContent: 'center', + }, }); const RCActivityIndicator = ({ theme = 'light', absolute, ...props }: IActivityIndicator) => ( diff --git a/app/containers/AppVersion.tsx b/app/containers/AppVersion.tsx index 69ea690646..a6748e2d70 100644 --- a/app/containers/AppVersion.tsx +++ b/app/containers/AppVersion.tsx @@ -1,5 +1,5 @@ import React from 'react'; -import { StyleSheet, View, Text } from 'react-native'; +import { StyleSheet, Text, View } from 'react-native'; import { themes } from '../constants/colors'; import sharedStyles from '../views/Styles'; @@ -9,15 +9,15 @@ import I18n from '../i18n'; const styles = StyleSheet.create({ container: { alignItems: 'center', - justifyContent: 'flex-end' + justifyContent: 'flex-end', }, text: { ...sharedStyles.textRegular, - fontSize: 13 + fontSize: 13, }, bold: { - ...sharedStyles.textSemibold - } + ...sharedStyles.textSemibold, + }, }); const AppVersion = React.memo(({ theme }: {theme: string}) => ( diff --git a/app/containers/Avatar/Avatar.tsx b/app/containers/Avatar/Avatar.tsx index 7b78bd19ce..b7216f5a23 100644 --- a/app/containers/Avatar/Avatar.tsx +++ b/app/containers/Avatar/Avatar.tsx @@ -6,11 +6,11 @@ import { settings as RocketChatSettings } from '@rocket.chat/sdk'; import { avatarURL } from '../../utils/avatar'; import Emoji from '../markdown/Emoji'; -import {IAvatar} from './interfaces'; +import { IAvatar } from './interfaces'; const Avatar = React.memo(({ server, - style, + style, avatar, children, user, @@ -23,12 +23,11 @@ const Avatar = React.memo(({ rid, blockUnauthenticatedAccess, serverVersion, - text, - size = 25, - borderRadius = 4, - type = 'd', + text, + size = 25, + borderRadius = 4, + type = 'd', }: Partial<IAvatar>) => { - if ((!text && !avatar && !emoji && !rid) || !server) { return null; } @@ -36,7 +35,7 @@ const Avatar = React.memo(({ const avatarStyle = { width: size, height: size, - borderRadius + borderRadius, }; let image; @@ -64,7 +63,7 @@ const Avatar = React.memo(({ avatarETag, serverVersion, rid, - blockUnauthenticatedAccess + blockUnauthenticatedAccess, }); } @@ -74,7 +73,7 @@ const Avatar = React.memo(({ source={{ uri, headers: RocketChatSettings.customHeaders, - priority: FastImage.priority.high + priority: FastImage.priority.high, }} /> ); diff --git a/app/containers/Avatar/index.tsx b/app/containers/Avatar/index.tsx index 55e503b220..ddbefd7e59 100644 --- a/app/containers/Avatar/index.tsx +++ b/app/containers/Avatar/index.tsx @@ -5,16 +5,16 @@ import { Q } from '@nozbe/watermelondb'; import database from '../../lib/database'; import { getUserSelector } from '../../selectors/login'; import Avatar from './Avatar'; -import {IAvatar} from "./interfaces"; - +import { IAvatar } from './interfaces'; class AvatarContainer extends React.Component<Partial<IAvatar>, any> { private mounted: boolean; + private subscription!: any; static defaultProps = { text: '', - type: 'd' + type: 'd', }; constructor(props: Partial<IAvatar>) { @@ -46,7 +46,7 @@ class AvatarContainer extends React.Component<Partial<IAvatar>, any> { return type === 'd'; } - init = async() => { + init = async () => { const db = database.active; const usersCollection = db.get('users'); const subsCollection = db.get('subscriptions'); @@ -99,6 +99,6 @@ const mapStateToProps = (state: any) => ({ blockUnauthenticatedAccess: state.share.settings?.Accounts_AvatarBlockUnauthenticatedAccess ?? state.settings.Accounts_AvatarBlockUnauthenticatedAccess - ?? true + ?? true, }); export default connect(mapStateToProps)(AvatarContainer); diff --git a/app/containers/Avatar/interfaces.ts b/app/containers/Avatar/interfaces.ts index 966202ea72..e759b16b79 100644 --- a/app/containers/Avatar/interfaces.ts +++ b/app/containers/Avatar/interfaces.ts @@ -1,23 +1,23 @@ export interface IAvatar { - server: string; - style: any, - text: string; - avatar: string; - emoji: string; - size: number; - borderRadius: number; - type: string; - children: JSX.Element; - user: { - id: string; - token: string; - }; - theme: string; - onPress(): void; - getCustomEmoji(): any; - avatarETag: string; - isStatic: boolean; - rid: string; - blockUnauthenticatedAccess: boolean; - serverVersion: string; + server: string; + style: any, + text: string; + avatar: string; + emoji: string; + size: number; + borderRadius: number; + type: string; + children: JSX.Element; + user: { + id: string; + token: string; + }; + theme: string; + onPress(): void; + getCustomEmoji(): any; + avatarETag: string; + isStatic: boolean; + rid: string; + blockUnauthenticatedAccess: boolean; + serverVersion: string; } diff --git a/app/containers/BackgroundContainer/index.stories.js b/app/containers/BackgroundContainer/index.stories.js index 0b6c9a1c64..0a9228dfa0 100644 --- a/app/containers/BackgroundContainer/index.stories.js +++ b/app/containers/BackgroundContainer/index.stories.js @@ -2,9 +2,9 @@ import React from 'react'; import { storiesOf } from '@storybook/react-native'; -import BackgroundContainer from '.'; import { ThemeContext } from '../../theme'; import { longText } from '../../../storybook/utils'; +import BackgroundContainer from '.'; const stories = storiesOf('BackgroundContainer', module); diff --git a/app/containers/BackgroundContainer/index.tsx b/app/containers/BackgroundContainer/index.tsx index 21324d7917..d8ee23b09c 100644 --- a/app/containers/BackgroundContainer/index.tsx +++ b/app/containers/BackgroundContainer/index.tsx @@ -1,5 +1,5 @@ import React from 'react'; -import { ImageBackground, StyleSheet, Text, View, ActivityIndicator } from 'react-native'; +import { ActivityIndicator, ImageBackground, StyleSheet, Text, View } from 'react-native'; import { withTheme } from '../../theme'; import sharedStyles from '../../views/Styles'; @@ -13,12 +13,12 @@ interface IBackgroundContainer { const styles = StyleSheet.create({ container: { - flex: 1 + flex: 1, }, image: { width: '100%', height: '100%', - position: 'absolute' + position: 'absolute', }, text: { position: 'absolute', @@ -28,15 +28,15 @@ const styles = StyleSheet.create({ fontSize: 16, paddingHorizontal: 24, ...sharedStyles.textRegular, - ...sharedStyles.textAlignCenter - } + ...sharedStyles.textAlignCenter, + }, }); const BackgroundContainer = ({ theme, text, loading }: IBackgroundContainer) => ( <View style={styles.container}> <ImageBackground source={{ uri: `message_empty_${ theme }` }} style={styles.image} /> {text ? <Text style={[styles.text, { color: themes[theme].auxiliaryTintColor }]}>{text}</Text> : null} - {/*@ts-ignore*/} + {/* @ts-ignore*/} {loading ? <ActivityIndicator style={[styles.text, { color: themes[theme].auxiliaryTintColor }]} /> : null} </View> ); diff --git a/app/containers/Button/index.tsx b/app/containers/Button/index.tsx index 3ff63f5c0d..81b49fe0eb 100644 --- a/app/containers/Button/index.tsx +++ b/app/containers/Button/index.tsx @@ -26,26 +26,25 @@ const styles = StyleSheet.create({ justifyContent: 'center', height: 48, borderRadius: 2, - marginBottom: 12 + marginBottom: 12, }, text: { fontSize: 16, ...sharedStyles.textMedium, - ...sharedStyles.textAlignCenter + ...sharedStyles.textAlignCenter, }, disabled: { - opacity: 0.3 - } + opacity: 0.3, + }, }); export default class Button extends React.PureComponent<Partial<IButtonProps>, any> { - static defaultProps = { title: 'Press me!', type: 'primary', onPress: () => alert('It works!'), disabled: false, - loading: false + loading: false, } render() { @@ -69,7 +68,7 @@ export default class Button extends React.PureComponent<Partial<IButtonProps>, a ? { backgroundColor } : { backgroundColor: isPrimary ? themes[theme!].actionTintColor : themes[theme!].backgroundColor }, disabled && styles.disabled, - style + style, ]} {...otherProps} > @@ -81,7 +80,7 @@ export default class Button extends React.PureComponent<Partial<IButtonProps>, a style={[ styles.text, { color: textColor }, - fontSize && { fontSize } + fontSize && { fontSize }, ]} accessibilityLabel={title} > diff --git a/app/containers/Check.tsx b/app/containers/Check.tsx index 4034dfd26b..8142f049d9 100644 --- a/app/containers/Check.tsx +++ b/app/containers/Check.tsx @@ -12,8 +12,8 @@ const styles = StyleSheet.create({ icon: { width: 22, height: 22, - marginHorizontal: 15 - } + marginHorizontal: 15, + }, }); const Check = React.memo(({ theme, style }: ICheck) => <CustomIcon style={[styles.icon, style]} color={themes[theme].tintColor} size={22} name='check' />); diff --git a/app/containers/EmojiPicker/CustomEmoji.tsx b/app/containers/EmojiPicker/CustomEmoji.tsx index 6fda1a7060..08cb3f5b4a 100644 --- a/app/containers/EmojiPicker/CustomEmoji.tsx +++ b/app/containers/EmojiPicker/CustomEmoji.tsx @@ -1,13 +1,14 @@ import React from 'react'; import FastImage from '@rocket.chat/react-native-fast-image'; -import {ICustomEmoji} from "./interfaces"; + +import { ICustomEmoji } from './interfaces'; const CustomEmoji = React.memo(({ baseUrl, emoji, style }: ICustomEmoji) => ( <FastImage style={style} source={{ uri: `${ baseUrl }/emoji-custom/${ encodeURIComponent(emoji.content || emoji.name) }.${ emoji.extension }`, - priority: FastImage.priority.high + priority: FastImage.priority.high, }} resizeMode={FastImage.resizeMode.contain} /> diff --git a/app/containers/EmojiPicker/EmojiCategory.tsx b/app/containers/EmojiPicker/EmojiCategory.tsx index 436f9c4ce1..4fdef75ecd 100644 --- a/app/containers/EmojiPicker/EmojiCategory.tsx +++ b/app/containers/EmojiPicker/EmojiCategory.tsx @@ -1,11 +1,11 @@ import React from 'react'; -import { Text, TouchableOpacity, FlatList } from 'react-native'; +import { FlatList, Text, TouchableOpacity } from 'react-native'; import shortnameToUnicode from '../../utils/shortnameToUnicode'; import styles from './styles'; import CustomEmoji from './CustomEmoji'; import scrollPersistTaps from '../../utils/scrollPersistTaps'; -import {IEmoji, IEmojiCategory} from "./interfaces"; +import { IEmoji, IEmojiCategory } from './interfaces'; const EMOJI_SIZE = 50; @@ -21,7 +21,6 @@ const renderEmoji = (emoji: IEmoji, size: number, baseUrl: string) => { }; class EmojiCategory extends React.Component<Partial<IEmojiCategory>> { - renderItem(emoji: any) { const { baseUrl, onEmojiSelected } = this.props; return ( @@ -52,7 +51,7 @@ class EmojiCategory extends React.Component<Partial<IEmojiCategory>> { contentContainerStyle={{ marginHorizontal }} // rerender FlatList in case of width changes key={`emoji-category-${ width }`} - keyExtractor={item => (item && item.isCustom && item.content) || item} + keyExtractor={(item) => (item && item.isCustom && item.content) || item} data={emojis} extraData={this.props} renderItem={({ item }) => this.renderItem(item)} diff --git a/app/containers/EmojiPicker/TabBar.tsx b/app/containers/EmojiPicker/TabBar.tsx index aa07f9559e..5d521cc7bb 100644 --- a/app/containers/EmojiPicker/TabBar.tsx +++ b/app/containers/EmojiPicker/TabBar.tsx @@ -1,10 +1,11 @@ import React from 'react'; -import { View, TouchableOpacity, Text } from 'react-native'; +import { Text, TouchableOpacity, View } from 'react-native'; + import styles from './styles'; import { themes } from '../../constants/colors'; interface ITabBarProps { - goToPage({}): void; + goToPage: Function; activeTab: number, tabs: [], tabEmojiStyle: object, @@ -12,7 +13,6 @@ interface ITabBarProps { } export default class TabBar extends React.Component<Partial<ITabBarProps>> { - shouldComponentUpdate(nextProps: any) { const { activeTab, theme } = this.props; if (nextProps.activeTab !== activeTab) { diff --git a/app/containers/EmojiPicker/categories.ts b/app/containers/EmojiPicker/categories.ts index a95f67cf69..982f1d668b 100644 --- a/app/containers/EmojiPicker/categories.ts +++ b/app/containers/EmojiPicker/categories.ts @@ -2,43 +2,43 @@ const list = ['frequentlyUsed', 'custom', 'people', 'nature', 'food', 'activity' const tabs = [ { tabLabel: '🕒', - category: list[0] + category: list[0], }, { tabLabel: '🚀', - category: list[1] + category: list[1], }, { tabLabel: '😃', - category: list[2] + category: list[2], }, { tabLabel: '🐶', - category: list[3] + category: list[3], }, { tabLabel: '🍔', - category: list[4] + category: list[4], }, { tabLabel: '⚽', - category: list[5] + category: list[5], }, { tabLabel: '🚌', - category: list[6] + category: list[6], }, { tabLabel: '💡', - category: list[7] + category: list[7], }, { tabLabel: '💛', - category: list[8] + category: list[8], }, { tabLabel: '🏁', - category: list[9] - } + category: list[9], + }, ]; export default { list, tabs }; diff --git a/app/containers/EmojiPicker/index.tsx b/app/containers/EmojiPicker/index.tsx index bb2d47447c..a634b7ff84 100644 --- a/app/containers/EmojiPicker/index.tsx +++ b/app/containers/EmojiPicker/index.tsx @@ -17,11 +17,11 @@ import shortnameToUnicode from '../../utils/shortnameToUnicode'; import log from '../../utils/log'; import { themes } from '../../constants/colors'; import { withTheme } from '../../theme'; -import {IEmoji} from "./interfaces"; +import { IEmoji } from './interfaces'; const scrollProps = { keyboardShouldPersistTaps: 'always', - keyboardDismissMode: 'none' + keyboardDismissMode: 'none', }; interface IEmojiPickerProps { @@ -43,21 +43,20 @@ interface IEmojiPickerState { } class EmojiPicker extends Component<IEmojiPickerProps, IEmojiPickerState> { - constructor(props: IEmojiPickerProps) { super(props); const customEmojis = Object.keys(props.customEmojis) - .filter(item => item === props.customEmojis[item].name) - .map(item => ({ + .filter((item) => item === props.customEmojis[item].name) + .map((item) => ({ content: props.customEmojis[item].name, extension: props.customEmojis[item].extension, - isCustom: true + isCustom: true, })); this.state = { frequentlyUsed: [], customEmojis, show: false, - width: null + width: null, }; } @@ -89,7 +88,7 @@ class EmojiPicker extends Component<IEmojiPickerProps, IEmojiPickerState> { const { onEmojiSelected } = this.props; if (emoji.isCustom) { this._addFrequentlyUsed({ - content: emoji.content, extension: emoji.extension, isCustom: true + content: emoji.content, extension: emoji.extension, isCustom: true, }); onEmojiSelected!(`:${ emoji.content }:`); } else { @@ -104,7 +103,7 @@ class EmojiPicker extends Component<IEmojiPickerProps, IEmojiPickerState> { } // eslint-disable-next-line react/sort-comp - _addFrequentlyUsed = protectedFunction(async(emoji: IEmoji) => { + _addFrequentlyUsed = protectedFunction(async (emoji: IEmoji) => { const db = database.active; const freqEmojiCollection = db.get('frequently_used_emojis'); let freqEmojiRecord: any; @@ -114,7 +113,7 @@ class EmojiPicker extends Component<IEmojiPickerProps, IEmojiPickerState> { // Do nothing } - await db.action(async() => { + await db.action(async () => { if (freqEmojiRecord) { await freqEmojiRecord.update((f: any) => { f.count += 1; @@ -129,7 +128,7 @@ class EmojiPicker extends Component<IEmojiPickerProps, IEmojiPickerState> { }); }) - updateFrequentlyUsed = async() => { + updateFrequentlyUsed = async () => { const db = database.active; const frequentlyUsedRecords = await db.get('frequently_used_emojis').query().fetch(); let frequentlyUsed: any = orderBy(frequentlyUsedRecords, ['count'], ['desc']); @@ -159,7 +158,7 @@ class EmojiPicker extends Component<IEmojiPickerProps, IEmojiPickerState> { return ( <EmojiCategory emojis={emojis} - onEmojiSelected={emoji => this.onEmojiSelected(emoji)} + onEmojiSelected={(emoji) => this.onEmojiSelected(emoji)} style={styles.categoryContainer} width={width!} baseUrl={baseUrl} @@ -179,16 +178,15 @@ class EmojiPicker extends Component<IEmojiPickerProps, IEmojiPickerState> { <View onLayout={this.onLayout} style={{ flex: 1 }}> <ScrollableTabView renderTabBar={() => <TabBar tabEmojiStyle={tabEmojiStyle} theme={theme} />} - /*@ts-ignore*/ + /* @ts-ignore*/ contentProps={scrollProps} style={{ backgroundColor: themes[theme!].focusedBackground }} > { categories.tabs.map((tab, i) => ( - (i === 0 && frequentlyUsed.length === 0) ? null // when no frequentlyUsed don't show the tab - : ( - this.renderCategory(tab.category, i, tab.tabLabel) - ))) + i === 0 && frequentlyUsed.length === 0 ? null // when no frequentlyUsed don't show the tab + : this.renderCategory(tab.category, i, tab.tabLabel) + )) } </ScrollableTabView> </View> @@ -197,7 +195,7 @@ class EmojiPicker extends Component<IEmojiPickerProps, IEmojiPickerState> { } const mapStateToProps = (state: any) => ({ - customEmojis: state.customEmojis + customEmojis: state.customEmojis, }); export default connect(mapStateToProps)(withTheme(EmojiPicker)); diff --git a/app/containers/EmojiPicker/interfaces.ts b/app/containers/EmojiPicker/interfaces.ts index 0d88c78a54..ff21e95469 100644 --- a/app/containers/EmojiPicker/interfaces.ts +++ b/app/containers/EmojiPicker/interfaces.ts @@ -1,22 +1,22 @@ export interface IEmoji { - content: any; - name: string; - extension: any; - isCustom: boolean; + content: any; + name: string; + extension: any; + isCustom: boolean; } export interface ICustomEmoji { - baseUrl: string, - emoji: IEmoji, - style: any + baseUrl: string, + emoji: IEmoji, + style: any } export interface IEmojiCategory { - baseUrl: string; - emojis: IEmoji[]; - onEmojiSelected({}: any): void; - emojisPerRow: number; - width: number; - style: any; - tabLabel: string; + baseUrl: string; + emojis: IEmoji[]; + onEmojiSelected: Function; + emojisPerRow: number; + width: number; + style: any; + tabLabel: string; } diff --git a/app/containers/EmojiPicker/styles.ts b/app/containers/EmojiPicker/styles.ts index ca1263275d..b3a35a97a8 100644 --- a/app/containers/EmojiPicker/styles.ts +++ b/app/containers/EmojiPicker/styles.ts @@ -4,29 +4,29 @@ import sharedStyles from '../../views/Styles'; export default StyleSheet.create({ container: { - flex: 1 + flex: 1, }, tabsContainer: { height: 45, flexDirection: 'row', - paddingTop: 5 + paddingTop: 5, }, tab: { flex: 1, alignItems: 'center', justifyContent: 'center', - paddingBottom: 10 + paddingBottom: 10, }, tabEmoji: { fontSize: 20, - color: 'black' + color: 'black', }, activeTabLine: { position: 'absolute', left: 0, right: 0, height: 2, - bottom: 0 + bottom: 0, }, tabLine: { position: 'absolute', @@ -34,25 +34,25 @@ export default StyleSheet.create({ right: 0, height: 2, backgroundColor: 'rgba(0,0,0,0.05)', - bottom: 0 + bottom: 0, }, categoryContainer: { flex: 1, - alignItems: 'flex-start' + alignItems: 'flex-start', }, categoryInner: { flexWrap: 'wrap', flexDirection: 'row', alignItems: 'center', justifyContent: 'flex-start', - flex: 1 + flex: 1, }, categoryEmoji: { ...sharedStyles.textAlignCenter, backgroundColor: 'transparent', - color: '#ffffff' + color: '#ffffff', }, customCategoryEmoji: { - margin: 8 - } + margin: 8, + }, }); diff --git a/app/containers/FormContainer.tsx b/app/containers/FormContainer.tsx index 5d3e683f2c..49452419ca 100644 --- a/app/containers/FormContainer.tsx +++ b/app/containers/FormContainer.tsx @@ -18,8 +18,8 @@ interface IFormContainer { const styles = StyleSheet.create({ scrollView: { - minHeight: '100%' - } + minHeight: '100%', + }, }); export const FormContainerInner = ({ children }: {children: JSX.Element}) => ( @@ -36,7 +36,7 @@ const FormContainer = ({ children, theme, testID, ...props }: IFormContainer) => keyboardVerticalOffset={128} > <StatusBar /> - {/*@ts-ignore*/} + {/* @ts-ignore*/} <ScrollView style={sharedStyles.container} contentContainerStyle={[sharedStyles.containerScrollView, styles.scrollView]} diff --git a/app/containers/Header/index.tsx b/app/containers/Header/index.tsx index 81ac132de4..9e40ebbe06 100644 --- a/app/containers/Header/index.tsx +++ b/app/containers/Header/index.tsx @@ -1,6 +1,7 @@ import React from 'react'; import { SafeAreaView } from 'react-native-safe-area-context'; -import { View, StyleSheet } from 'react-native'; +import { StyleSheet, View } from 'react-native'; + import { themes } from '../../constants/colors'; import { themedHeader } from '../../utils/navigation'; import { isIOS, isTablet } from '../../utils/deviceInfo'; @@ -13,9 +14,8 @@ export const getHeaderHeight = (isLandscape: boolean) => { if (isIOS) { if (isLandscape && !isTablet) { return 32; - } else { - return 44; } + return 44; } return 56; }; @@ -30,7 +30,7 @@ interface IHeaderTitlePosition { export const getHeaderTitlePosition = ({ insets, numIconsRight }: IHeaderTitlePosition) => ({ left: insets.left + 60, - right: insets.right + Math.max(45 * numIconsRight, 15) + right: insets.right + Math.max(45 * numIconsRight, 15), }); const styles = StyleSheet.create({ @@ -38,8 +38,8 @@ const styles = StyleSheet.create({ height: headerHeight, flexDirection: 'row', justifyContent: 'center', - elevation: 4 - } + elevation: 4, + }, }); interface IHeader { diff --git a/app/containers/HeaderButton/Common.tsx b/app/containers/HeaderButton/Common.tsx index 7d0ed587c5..e00cb8a1a0 100644 --- a/app/containers/HeaderButton/Common.tsx +++ b/app/containers/HeaderButton/Common.tsx @@ -18,7 +18,7 @@ export const Drawer = React.memo(({ navigation, testID, ...props }: Partial<IHea </Container> )); -export const CloseModal = React.memo(({navigation, testID, onPress = () => navigation.pop(), ...props}: IHeaderButtonCommon) => ( +export const CloseModal = React.memo(({ navigation, testID, onPress = () => navigation.pop(), ...props }: IHeaderButtonCommon) => ( <Container left> <Item iconName='close' onPress={onPress} testID={testID} {...props} /> </Container> diff --git a/app/containers/HeaderButton/HeaderButtonContainer.tsx b/app/containers/HeaderButton/HeaderButtonContainer.tsx index ce6506b67a..55875cb33f 100644 --- a/app/containers/HeaderButton/HeaderButtonContainer.tsx +++ b/app/containers/HeaderButton/HeaderButtonContainer.tsx @@ -1,5 +1,5 @@ import React from 'react'; -import { View, StyleSheet } from 'react-native'; +import { StyleSheet, View } from 'react-native'; interface IHeaderButtonContainer { children: JSX.Element; @@ -10,14 +10,14 @@ const styles = StyleSheet.create({ container: { flexDirection: 'row', alignItems: 'center', - justifyContent: 'center' + justifyContent: 'center', }, left: { - marginLeft: 5 + marginLeft: 5, }, right: { - marginRight: 5 - } + marginRight: 5, + }, }); const Container = ({ children, left = false }: IHeaderButtonContainer) => ( diff --git a/app/containers/HeaderButton/HeaderButtonItem.tsx b/app/containers/HeaderButton/HeaderButtonItem.tsx index 5688953ffa..1020db1b51 100644 --- a/app/containers/HeaderButton/HeaderButtonItem.tsx +++ b/app/containers/HeaderButton/HeaderButtonItem.tsx @@ -1,5 +1,5 @@ import React from 'react'; -import { Text, StyleSheet, Platform } from 'react-native'; +import { Platform, StyleSheet, Text } from 'react-native'; import Touchable from 'react-native-platform-touchable'; import { CustomIcon } from '../../lib/Icons'; @@ -17,27 +17,27 @@ interface IHeaderButtonItem { } export const BUTTON_HIT_SLOP = { - top: 5, right: 5, bottom: 5, left: 5 + top: 5, right: 5, bottom: 5, left: 5, }; const styles = StyleSheet.create({ container: { - marginHorizontal: 6 + marginHorizontal: 6, }, title: { ...Platform.select({ android: { - fontSize: 14 + fontSize: 14, }, default: { - fontSize: 17 - } + fontSize: 17, + }, }), - ...sharedStyles.textRegular - } + ...sharedStyles.textRegular, + }, }); -const Item = ({title, iconName, onPress, testID, theme, badge}: IHeaderButtonItem) => ( +const Item = ({ title, iconName, onPress, testID, theme, badge }: IHeaderButtonItem) => ( <Touchable onPress={onPress} testID={testID} hitSlop={BUTTON_HIT_SLOP} style={styles.container}> <> { diff --git a/app/containers/HeaderButton/HeaderButtonItemBadge.tsx b/app/containers/HeaderButton/HeaderButtonItemBadge.tsx index 9a760b8284..3f61a653fe 100644 --- a/app/containers/HeaderButton/HeaderButtonItemBadge.tsx +++ b/app/containers/HeaderButton/HeaderButtonItemBadge.tsx @@ -11,8 +11,8 @@ const styles = StyleSheet.create({ top: -3, borderRadius: 10, alignItems: 'center', - justifyContent: 'center' - } + justifyContent: 'center', + }, }); export const Badge = ({ ...props }) => ( diff --git a/app/containers/InAppNotification/NotifierComponent.tsx b/app/containers/InAppNotification/NotifierComponent.tsx index c537ae1cef..b428cc495b 100644 --- a/app/containers/InAppNotification/NotifierComponent.tsx +++ b/app/containers/InAppNotification/NotifierComponent.tsx @@ -1,5 +1,5 @@ import React from 'react'; -import { StyleSheet, View, Text } from 'react-native'; +import { StyleSheet, Text, View } from 'react-native'; import Touchable from 'react-native-platform-touchable'; import { connect } from 'react-redux'; import { Notifier } from 'react-native-notifier'; @@ -32,36 +32,36 @@ const styles = StyleSheet.create({ justifyContent: 'space-between', marginHorizontal: 10, borderWidth: StyleSheet.hairlineWidth, - borderRadius: 4 + borderRadius: 4, }, content: { flex: 1, flexDirection: 'row', - alignItems: 'center' + alignItems: 'center', }, inner: { - flex: 1 + flex: 1, }, avatar: { - marginRight: 10 + marginRight: 10, }, roomName: { fontSize: 17, lineHeight: 20, - ...sharedStyles.textMedium + ...sharedStyles.textMedium, }, message: { fontSize: 14, lineHeight: 17, - ...sharedStyles.textRegular + ...sharedStyles.textRegular, }, close: { - marginLeft: 10 + marginLeft: 10, }, small: { width: '50%', - alignSelf: 'center' - } + alignSelf: 'center', + }, }); const hideNotification = () => Notifier.hideNotification(); @@ -83,7 +83,7 @@ const NotifierComponent = React.memo(({ notification, isMasterDetail }: INotifie return; } const item = { - rid, name: title, t: type, prid + rid, name: title, t: type, prid, }; if (isMasterDetail) { @@ -102,8 +102,8 @@ const NotifierComponent = React.memo(({ notification, isMasterDetail }: INotifie { backgroundColor: themes[theme].focusedBackground, borderColor: themes[theme].separatorColor, - marginTop: insets.top - } + marginTop: insets.top, + }, ]} > <Touchable @@ -132,7 +132,7 @@ const NotifierComponent = React.memo(({ notification, isMasterDetail }: INotifie }); const mapStateToProps = (state: any) => ({ - isMasterDetail: state.app.isMasterDetail + isMasterDetail: state.app.isMasterDetail, }); export default connect(mapStateToProps)(NotifierComponent); diff --git a/app/containers/InAppNotification/index.tsx b/app/containers/InAppNotification/index.tsx index d00f80879a..ba75c58503 100644 --- a/app/containers/InAppNotification/index.tsx +++ b/app/containers/InAppNotification/index.tsx @@ -1,5 +1,5 @@ import React, { memo, useEffect } from 'react'; -import { NotifierRoot, Notifier, Easing } from 'react-native-notifier'; +import { Easing, Notifier, NotifierRoot } from 'react-native-notifier'; import { connect } from 'react-redux'; import { dequal } from 'dequal'; @@ -27,8 +27,8 @@ const InAppNotification = memo(({ rooms, appState }: {rooms: any, appState: stri showEasing: Easing.inOut(Easing.quad), Component: NotifierComponent, componentProps: { - notification - } + notification, + }, }); } }; @@ -45,7 +45,7 @@ const InAppNotification = memo(({ rooms, appState }: {rooms: any, appState: stri const mapStateToProps = (state: any) => ({ rooms: state.room.rooms, - appState: state.app.ready && state.app.foreground ? 'foreground' : 'background' + appState: state.app.ready && state.app.foreground ? 'foreground' : 'background', }); export default connect(mapStateToProps)(InAppNotification); diff --git a/app/containers/List/ListContainer.tsx b/app/containers/List/ListContainer.tsx index b8a6f77d66..ea55d6cf2c 100644 --- a/app/containers/List/ListContainer.tsx +++ b/app/containers/List/ListContainer.tsx @@ -1,12 +1,13 @@ import React from 'react'; import { ScrollView, StyleSheet } from 'react-native'; + import { withTheme } from '../../theme'; import scrollPersistTaps from '../../utils/scrollPersistTaps'; const styles = StyleSheet.create({ container: { - paddingVertical: 16 - } + paddingVertical: 16, + }, }); interface IListContainer { diff --git a/app/containers/List/ListHeader.tsx b/app/containers/List/ListHeader.tsx index 54d8b009bb..775ec47713 100644 --- a/app/containers/List/ListHeader.tsx +++ b/app/containers/List/ListHeader.tsx @@ -1,5 +1,5 @@ import React from 'react'; -import { View, Text, StyleSheet } from 'react-native'; +import { StyleSheet, Text, View } from 'react-native'; import sharedStyles from '../../views/Styles'; import { themes } from '../../constants/colors'; @@ -10,12 +10,12 @@ import { PADDING_HORIZONTAL } from './constants'; const styles = StyleSheet.create({ container: { paddingBottom: 12, - paddingHorizontal: PADDING_HORIZONTAL + paddingHorizontal: PADDING_HORIZONTAL, }, title: { fontSize: 16, - ...sharedStyles.textRegular - } + ...sharedStyles.textRegular, + }, }); interface IListHeader { diff --git a/app/containers/List/ListIcon.tsx b/app/containers/List/ListIcon.tsx index 2fc41e850c..137343dc6d 100644 --- a/app/containers/List/ListIcon.tsx +++ b/app/containers/List/ListIcon.tsx @@ -1,5 +1,5 @@ import React from 'react'; -import { View, StyleSheet } from 'react-native'; +import { StyleSheet, View } from 'react-native'; import { themes } from '../../constants/colors'; import { CustomIcon } from '../../lib/Icons'; @@ -17,8 +17,8 @@ interface IListIcon { const styles = StyleSheet.create({ icon: { alignItems: 'center', - justifyContent: 'center' - } + justifyContent: 'center', + }, }); const ListIcon = React.memo(({ theme, name, color, style, testID }: IListIcon) => ( diff --git a/app/containers/List/ListInfo.tsx b/app/containers/List/ListInfo.tsx index 5f75258e08..14d75cb59e 100644 --- a/app/containers/List/ListInfo.tsx +++ b/app/containers/List/ListInfo.tsx @@ -1,5 +1,5 @@ import React from 'react'; -import { View, Text, StyleSheet } from 'react-native'; +import { StyleSheet, Text, View } from 'react-native'; import sharedStyles from '../../views/Styles'; import { themes } from '../../constants/colors'; @@ -10,12 +10,12 @@ import I18n from '../../i18n'; const styles = StyleSheet.create({ container: { paddingTop: 8, - paddingHorizontal: PADDING_HORIZONTAL + paddingHorizontal: PADDING_HORIZONTAL, }, text: { fontSize: 14, - ...sharedStyles.textRegular - } + ...sharedStyles.textRegular, + }, }); interface IListHeader { diff --git a/app/containers/List/ListItem.tsx b/app/containers/List/ListItem.tsx index fa943da0db..2840902d91 100644 --- a/app/containers/List/ListItem.tsx +++ b/app/containers/List/ListItem.tsx @@ -1,5 +1,5 @@ import React from 'react'; -import { View, Text, StyleSheet, I18nManager } from 'react-native'; +import { I18nManager, StyleSheet, Text, View } from 'react-native'; import Touch from '../../utils/touch'; import { themes } from '../../constants/colors'; @@ -17,42 +17,42 @@ const styles = StyleSheet.create({ flexDirection: 'row', alignItems: 'center', justifyContent: 'center', - paddingHorizontal: PADDING_HORIZONTAL + paddingHorizontal: PADDING_HORIZONTAL, }, leftContainer: { - paddingRight: PADDING_HORIZONTAL + paddingRight: PADDING_HORIZONTAL, }, rightContainer: { - paddingLeft: PADDING_HORIZONTAL + paddingLeft: PADDING_HORIZONTAL, }, disabled: { - opacity: 0.3 + opacity: 0.3, }, textContainer: { flex: 1, - justifyContent: 'center' + justifyContent: 'center', }, textAlertContainer: { flexDirection: 'row', - alignItems: 'center' + alignItems: 'center', }, alertIcon: { - paddingLeft: 4 + paddingLeft: 4, }, title: { flexShrink: 1, fontSize: 16, - ...sharedStyles.textRegular + ...sharedStyles.textRegular, }, subtitle: { fontSize: 14, - ...sharedStyles.textRegular + ...sharedStyles.textRegular, }, actionIndicator: { ...I18nManager.isRTL ? { transform: [{ rotate: '180deg' }] } - : {} - } + : {}, + }, }); interface IListItemContent { @@ -72,7 +72,7 @@ interface IListItemContent { } const Content = React.memo(({ - title, subtitle, disabled, testID, left, right, color, theme, fontScale, alert, translateTitle = true, translateSubtitle = true, showActionIndicator = false + title, subtitle, disabled, testID, left, right, color, theme, fontScale, alert, translateTitle = true, translateSubtitle = true, showActionIndicator = false, }: IListItemContent) => ( <View style={[styles.container, disabled && styles.disabled, { height: BASE_HEIGHT * fontScale! }]} testID={testID}> {left diff --git a/app/containers/List/ListSection.tsx b/app/containers/List/ListSection.tsx index 105ac5d1bb..0acd2a78f2 100644 --- a/app/containers/List/ListSection.tsx +++ b/app/containers/List/ListSection.tsx @@ -1,12 +1,13 @@ import React from 'react'; -import { View, StyleSheet } from 'react-native'; +import { StyleSheet, View } from 'react-native'; + import { withTheme } from '../../theme'; import { Header } from '.'; const styles = StyleSheet.create({ container: { - marginVertical: 16 - } + marginVertical: 16, + }, }); interface IListSection { diff --git a/app/containers/List/ListSeparator.tsx b/app/containers/List/ListSeparator.tsx index a7de16349c..94c7e3f552 100644 --- a/app/containers/List/ListSeparator.tsx +++ b/app/containers/List/ListSeparator.tsx @@ -1,13 +1,13 @@ import React from 'react'; -import { View, StyleSheet } from 'react-native'; +import { StyleSheet, View } from 'react-native'; import { themes } from '../../constants/colors'; import { withTheme } from '../../theme'; const styles = StyleSheet.create({ separator: { - height: StyleSheet.hairlineWidth - } + height: StyleSheet.hairlineWidth, + }, }); interface IListSeparator { @@ -20,7 +20,7 @@ const ListSeparator = React.memo(({ style, theme }: IListSeparator) => ( style={[ styles.separator, style, - { backgroundColor: themes[theme].separatorColor } + { backgroundColor: themes[theme].separatorColor }, ]} /> )); diff --git a/app/containers/List/styles.ts b/app/containers/List/styles.ts index 2c09042849..c7e316f8b8 100644 --- a/app/containers/List/styles.ts +++ b/app/containers/List/styles.ts @@ -2,6 +2,6 @@ import { StyleSheet } from 'react-native'; export const styles = StyleSheet.create({ contentContainerStyleFlatList: { - paddingVertical: 32 - } + paddingVertical: 32, + }, }); diff --git a/app/containers/Loading.tsx b/app/containers/Loading.tsx index 03e0ca9f50..f963112b6e 100644 --- a/app/containers/Loading.tsx +++ b/app/containers/Loading.tsx @@ -1,5 +1,6 @@ import React from 'react'; -import { StyleSheet, Modal, Animated , View } from 'react-native'; +import { Animated, Modal, StyleSheet, View } from 'react-native'; + import { withTheme } from '../theme'; import { themes } from '../constants/colors'; @@ -7,13 +8,13 @@ const styles = StyleSheet.create({ container: { flex: 1, alignItems: 'center', - justifyContent: 'center' + justifyContent: 'center', }, image: { width: 100, height: 100, - resizeMode: 'contain' - } + resizeMode: 'contain', + }, }); interface ILoadingProps { @@ -22,12 +23,13 @@ interface ILoadingProps { } class Loading extends React.PureComponent<ILoadingProps, any> { - state = { scale: new Animated.Value(1), - opacity: new Animated.Value(0) + opacity: new Animated.Value(0), } + private opacityAnimation: any; + private scaleAnimation: any; componentDidMount() { @@ -39,8 +41,8 @@ class Loading extends React.PureComponent<ILoadingProps, any> { { toValue: 1, duration: 200, - useNativeDriver: true - } + useNativeDriver: true, + }, ); this.scaleAnimation = Animated.loop(Animated.sequence([ Animated.timing( @@ -48,17 +50,17 @@ class Loading extends React.PureComponent<ILoadingProps, any> { { toValue: 0, duration: 1000, - useNativeDriver: true - } + useNativeDriver: true, + }, ), Animated.timing( scale, { toValue: 1, duration: 1000, - useNativeDriver: true - } - ) + useNativeDriver: true, + }, + ), ])); if (visible) { @@ -97,13 +99,13 @@ class Loading extends React.PureComponent<ILoadingProps, any> { const scaleAnimation = scale.interpolate({ inputRange: [0, 0.5, 1], - outputRange: [1, 1.1, 1] + outputRange: [1, 1.1, 1], }); const opacityAnimation = opacity.interpolate({ inputRange: [0, 1], outputRange: [0, themes[theme].backdropOpacity], - extrapolate: 'clamp' + extrapolate: 'clamp', }); return ( @@ -121,15 +123,15 @@ class Loading extends React.PureComponent<ILoadingProps, any> { // @ts-ignore ...StyleSheet.absoluteFill, backgroundColor: themes[theme].backdropColor, - opacity: opacityAnimation + opacity: opacityAnimation, }]} /> <Animated.Image source={require('../static/images/logo.png')} style={[styles.image, { transform: [{ - scale: scaleAnimation - }] + scale: scaleAnimation, + }], }]} /> </View> @@ -138,4 +140,4 @@ class Loading extends React.PureComponent<ILoadingProps, any> { } } -export default (withTheme(Loading)); +export default withTheme(Loading); diff --git a/app/containers/LoginServices.tsx b/app/containers/LoginServices.tsx index e9dd930e94..732284821c 100644 --- a/app/containers/LoginServices.tsx +++ b/app/containers/LoginServices.tsx @@ -1,5 +1,5 @@ import React from 'react'; -import { View, StyleSheet, Text, Animated, Easing, Linking } from 'react-native'; +import { Animated, Easing, Linking, StyleSheet, Text, View } from 'react-native'; import { connect } from 'react-redux'; import { Base64 } from 'js-base64'; import * as AppleAuthentication from 'expo-apple-authentication'; @@ -12,7 +12,7 @@ import OrSeparator from './OrSeparator'; import Touch from '../utils/touch'; import I18n from '../i18n'; import random from '../utils/random'; -import { logEvent, events } from '../utils/log'; +import { events, logEvent } from '../utils/log'; import RocketChat from '../lib/rocketchat'; import { CustomIcon } from '../lib/Icons'; @@ -27,7 +27,7 @@ const LOGIN_STYPE_REDIRECT = 'redirect'; const styles = StyleSheet.create({ serviceButton: { borderRadius: BORDER_RADIUS, - marginBottom: 10 + marginBottom: 10, }, serviceButtonContainer: { borderRadius: BORDER_RADIUS, @@ -36,25 +36,25 @@ const styles = StyleSheet.create({ flexDirection: 'row', alignItems: 'center', justifyContent: 'center', - paddingHorizontal: 15 + paddingHorizontal: 15, }, serviceIcon: { position: 'absolute', left: 15, top: 12, width: 24, - height: 24 + height: 24, }, serviceText: { ...sharedStyles.textRegular, - fontSize: 16 + fontSize: 16, }, serviceName: { - ...sharedStyles.textSemibold + ...sharedStyles.textSemibold, }, options: { - marginBottom: 0 - } + marginBottom: 0, + }, }); interface IOpenOAuth { @@ -94,12 +94,12 @@ class LoginServices extends React.PureComponent<ILoginServicesProps, any> { private _animation: any; static defaultProps = { - separator: true + separator: true, } state = { collapsed: true, - servicesHeight: new Animated.Value(SERVICES_COLLAPSED_HEIGHT) + servicesHeight: new Animated.Value(SERVICES_COLLAPSED_HEIGHT), } onPressFacebook = () => { @@ -198,7 +198,7 @@ class LoginServices extends React.PureComponent<ILoginServicesProps, any> { logEvent(events.ENTER_WITH_CUSTOM_OAUTH); const { server } = this.props; const { - serverURL, authorizePath, clientId, scope, service + serverURL, authorizePath, clientId, scope, service, } = loginService; const redirectUri = `${ server }/_oauth/${ service }`; const state = this.getOAuthState(); @@ -227,14 +227,14 @@ class LoginServices extends React.PureComponent<ILoginServicesProps, any> { this.openOAuth({ url, ssoToken, authType: 'cas' }); } - onPressAppleLogin = async() => { + onPressAppleLogin = async () => { logEvent(events.ENTER_WITH_APPLE); try { const { fullName, email, identityToken } = await AppleAuthentication.signInAsync({ requestedScopes: [ AppleAuthentication.AppleAuthenticationScope.FULL_NAME, - AppleAuthentication.AppleAuthenticationScope.EMAIL - ] + AppleAuthentication.AppleAuthenticationScope.EMAIL, + ], }); await RocketChat.loginOAuthOrSso({ fullName, email, identityToken }); @@ -249,7 +249,7 @@ class LoginServices extends React.PureComponent<ILoginServicesProps, any> { if (loginStyle === LOGIN_STYPE_REDIRECT) { obj = { ...obj, - redirectUrl: 'rocketchat://auth' + redirectUrl: 'rocketchat://auth', }; } return Base64.encodeURI(JSON.stringify(obj)); @@ -270,7 +270,7 @@ class LoginServices extends React.PureComponent<ILoginServicesProps, any> { toValue: height, duration: 300, // @ts-ignore - easing: Easing.easeOutCubic + easing: Easing.easeOutCubic, }).start(); } @@ -295,7 +295,7 @@ class LoginServices extends React.PureComponent<ILoginServicesProps, any> { linkedin: this.onPressLinkedin, 'meteor-developer': this.onPressMeteor, twitter: this.onPressTwitter, - wordpress: this.onPressWordpress + wordpress: this.onPressWordpress, }; return oauthProviders[name]; } @@ -396,7 +396,7 @@ class LoginServices extends React.PureComponent<ILoginServicesProps, any> { const { length } = Object.values(services); const style = { overflow: 'hidden', - height: servicesHeight + height: servicesHeight, }; if (length > 3 && separator) { @@ -423,7 +423,7 @@ const mapStateToProps = (state: any) => ({ Gitlab_URL: state.settings.API_Gitlab_URL, CAS_enabled: state.settings.CAS_enabled, CAS_login_url: state.settings.CAS_login_url, - services: state.login.services + services: state.login.services, }); export default connect(mapStateToProps)(withTheme(LoginServices)); diff --git a/app/containers/MessageActions/Header.tsx b/app/containers/MessageActions/Header.tsx index 53dbab8a9c..b89cec13d8 100644 --- a/app/containers/MessageActions/Header.tsx +++ b/app/containers/MessageActions/Header.tsx @@ -1,5 +1,5 @@ -import React, { useEffect, useState, useCallback } from 'react'; -import { View, Text, FlatList, StyleSheet } from 'react-native'; +import React, { useCallback, useEffect, useState } from 'react'; +import { FlatList, StyleSheet, Text, View } from 'react-native'; import { withTheme } from '../../theme'; import { themes } from '../../constants/colors'; @@ -10,7 +10,7 @@ import database from '../../lib/database'; import { Button } from '../ActionSheet'; import { useDimensions } from '../../dimensions'; import sharedStyles from '../../views/Styles'; -import {IEmoji} from "../EmojiPicker/interfaces"; +import { IEmoji } from '../EmojiPicker/interfaces'; interface IHeader { handleReaction: Function; @@ -40,7 +40,7 @@ const ITEM_MARGIN = 8; const styles = StyleSheet.create({ container: { alignItems: 'center', - marginHorizontal: CONTAINER_MARGIN + marginHorizontal: CONTAINER_MARGIN, }, headerItem: { height: ITEM_SIZE, @@ -48,17 +48,17 @@ const styles = StyleSheet.create({ borderRadius: ITEM_SIZE / 2, marginHorizontal: ITEM_MARGIN, justifyContent: 'center', - alignItems: 'center' + alignItems: 'center', }, headerIcon: { ...sharedStyles.textAlignCenter, fontSize: 20, - color: '#fff' + color: '#fff', }, customEmoji: { height: 20, - width: 20 - } + width: 20, + }, }); const keyExtractor = (item: any) => item?.id || item; @@ -97,7 +97,7 @@ const Header = React.memo(({ handleReaction, server, message, isMasterDetail, th const [items, setItems] = useState([]); const { width, height }: any = useDimensions(); - const setEmojis = async() => { + const setEmojis = async () => { try { const db = database.active; const freqEmojiCollection = db.get('frequently_used_emojis'); diff --git a/app/containers/MessageActions/index.tsx b/app/containers/MessageActions/index.tsx index 96a4982b84..8fc6740d28 100644 --- a/app/containers/MessageActions/index.tsx +++ b/app/containers/MessageActions/index.tsx @@ -68,12 +68,12 @@ const MessageActions = React.memo(forwardRef(({ editMessagePermission, deleteMessagePermission, forceDeleteMessagePermission, - pinMessagePermission + pinMessagePermission, }: IMessageActions, ref): any => { let permissions: any = {}; const { showActionSheet, hideActionSheet }: any = useActionSheet(); - const getPermissions = async() => { + const getPermissions = async () => { try { const permission = [editMessagePermission, deleteMessagePermission, forceDeleteMessagePermission, pinMessagePermission]; const result = await RocketChat.hasPermission(permission, room.rid); @@ -81,7 +81,7 @@ const MessageActions = React.memo(forwardRef(({ hasEditPermission: result[0], hasDeletePermission: result[1], hasForceDeletePermission: result[2], - hasPinPermission: result[3] + hasPinPermission: result[3], }; } catch { // Do nothing @@ -167,7 +167,7 @@ const MessageActions = React.memo(forwardRef(({ } }; - const handleUnread = async(message: any) => { + const handleUnread = async (message: any) => { logEvent(events.ROOM_MSG_ACTION_UNREAD); const { id: messageId, ts } = message; const { rid } = room; @@ -177,7 +177,7 @@ const MessageActions = React.memo(forwardRef(({ if (result.success) { const subCollection = db.get('subscriptions'); const subRecord = await subCollection.find(rid); - await db.action(async() => { + await db.action(async () => { try { await subRecord.update((sub: any) => sub.lastOpen = ts); } catch { @@ -192,7 +192,7 @@ const MessageActions = React.memo(forwardRef(({ } }; - const handlePermalink = async(message: any) => { + const handlePermalink = async (message: any) => { logEvent(events.ROOM_MSG_ACTION_PERMALINK); try { const permalink: any = await getPermalink(message); @@ -203,13 +203,13 @@ const MessageActions = React.memo(forwardRef(({ } }; - const handleCopy = async(message: any) => { + const handleCopy = async (message: any) => { logEvent(events.ROOM_MSG_ACTION_COPY); await Clipboard.setString(message?.attachments?.[0]?.description || message.msg); EventEmitter.emit(LISTENER, { message: I18n.t('Copied_to_clipboard') }); }; - const handleShare = async(message: any) => { + const handleShare = async (message: any) => { logEvent(events.ROOM_MSG_ACTION_SHARE); try { const permalink: any = await getPermalink(message); @@ -224,7 +224,7 @@ const MessageActions = React.memo(forwardRef(({ replyInit(message, false); }; - const handleStar = async(message: any) => { + const handleStar = async (message: any) => { logEvent(message.starred ? events.ROOM_MSG_ACTION_UNSTAR : events.ROOM_MSG_ACTION_STAR); try { await RocketChat.toggleStarMessage(message.id, message.starred); @@ -235,7 +235,7 @@ const MessageActions = React.memo(forwardRef(({ } }; - const handlePin = async(message: any) => { + const handlePin = async (message: any) => { logEvent(events.ROOM_MSG_ACTION_PIN); try { await RocketChat.togglePinMessage(message.id, message.pinned); @@ -264,10 +264,10 @@ const MessageActions = React.memo(forwardRef(({ } }; - const handleToggleTranslation = async(message: any) => { + const handleToggleTranslation = async (message: any) => { try { const db = database.active; - await db.action(async() => { + await db.action(async () => { await message.update((m: any) => { m.autoTranslate = !m.autoTranslate; m._updatedAt = new Date(); @@ -279,7 +279,7 @@ const MessageActions = React.memo(forwardRef(({ _id: message.id, rid: message.subscription.id, u: message.u, - msg: message.msg + msg: message.msg, }; await RocketChat.translateMessage(m, room.autoTranslateLanguage); } @@ -288,7 +288,7 @@ const MessageActions = React.memo(forwardRef(({ } }; - const handleReport = async(message: any) => { + const handleReport = async (message: any) => { logEvent(events.ROOM_MSG_ACTION_REPORT); try { await RocketChat.reportMessage(message.id); @@ -305,7 +305,7 @@ const MessageActions = React.memo(forwardRef(({ showConfirmationAlert({ message: I18n.t('You_will_not_be_able_to_recover_this_message'), confirmationText: I18n.t('Delete'), - onPress: async() => { + onPress: async () => { try { logEvent(events.ROOM_MSG_ACTION_DELETE); await RocketChat.deleteMessage(message.id, message.subscription.id); @@ -313,7 +313,7 @@ const MessageActions = React.memo(forwardRef(({ logEvent(events.ROOM_MSG_ACTION_DELETE_F); log(e); } - } + }, }); }; @@ -325,7 +325,7 @@ const MessageActions = React.memo(forwardRef(({ options = [{ title: I18n.t('Reply_in_Thread'), icon: 'threads', - onPress: () => handleReply(message) + onPress: () => handleReply(message), }]; } @@ -334,7 +334,7 @@ const MessageActions = React.memo(forwardRef(({ options.push({ title: I18n.t('Quote'), icon: 'quote', - onPress: () => handleQuote(message) + onPress: () => handleQuote(message), }); } @@ -343,7 +343,7 @@ const MessageActions = React.memo(forwardRef(({ options.push({ title: I18n.t('Edit'), icon: 'edit', - onPress: () => handleEdit(message) + onPress: () => handleEdit(message), }); } @@ -351,14 +351,14 @@ const MessageActions = React.memo(forwardRef(({ options.push({ title: I18n.t('Permalink'), icon: 'link', - onPress: () => handlePermalink(message) + onPress: () => handlePermalink(message), }); // Create Discussion options.push({ title: I18n.t('Start_a_Discussion'), icon: 'discussions', - onPress: () => handleCreateDiscussion(message) + onPress: () => handleCreateDiscussion(message), }); // Mark as unread @@ -366,7 +366,7 @@ const MessageActions = React.memo(forwardRef(({ options.push({ title: I18n.t('Mark_unread'), icon: 'flag', - onPress: () => handleUnread(message) + onPress: () => handleUnread(message), }); } @@ -374,14 +374,14 @@ const MessageActions = React.memo(forwardRef(({ options.push({ title: I18n.t('Copy'), icon: 'copy', - onPress: () => handleCopy(message) + onPress: () => handleCopy(message), }); // Share options.push({ title: I18n.t('Share'), icon: 'share', - onPress: () => handleShare(message) + onPress: () => handleShare(message), }); // Star @@ -389,7 +389,7 @@ const MessageActions = React.memo(forwardRef(({ options.push({ title: I18n.t(message.starred ? 'Unstar' : 'Star'), icon: message.starred ? 'star-filled' : 'star', - onPress: () => handleStar(message) + onPress: () => handleStar(message), }); } @@ -398,7 +398,7 @@ const MessageActions = React.memo(forwardRef(({ options.push({ title: I18n.t(message.pinned ? 'Unpin' : 'Pin'), icon: 'pin', - onPress: () => handlePin(message) + onPress: () => handlePin(message), }); } @@ -407,7 +407,7 @@ const MessageActions = React.memo(forwardRef(({ options.push({ title: I18n.t('Read_Receipt'), icon: 'info', - onPress: () => handleReadReceipt(message) + onPress: () => handleReadReceipt(message), }); } @@ -416,7 +416,7 @@ const MessageActions = React.memo(forwardRef(({ options.push({ title: I18n.t(message.autoTranslate ? 'View_Original' : 'Translate'), icon: 'language', - onPress: () => handleToggleTranslation(message) + onPress: () => handleToggleTranslation(message), }); } @@ -425,7 +425,7 @@ const MessageActions = React.memo(forwardRef(({ title: I18n.t('Report'), icon: 'warning', danger: true, - onPress: () => handleReport(message) + onPress: () => handleReport(message), }); // Delete @@ -434,27 +434,27 @@ const MessageActions = React.memo(forwardRef(({ title: I18n.t('Delete'), icon: 'delete', danger: true, - onPress: () => handleDelete(message) + onPress: () => handleDelete(message), }); } return options; }; - const showMessageActions = async(message: any) => { + const showMessageActions = async (message: any) => { logEvent(events.ROOM_SHOW_MSG_ACTIONS); await getPermissions(); showActionSheet({ options: getOptions(message), headerHeight: HEADER_HEIGHT, - customHeader: (!isReadOnly || room.reactWhenReadOnly ? ( + customHeader: !isReadOnly || room.reactWhenReadOnly ? ( <Header server={server} handleReaction={handleReaction} isMasterDetail={isMasterDetail} message={message} /> - ) : null) + ) : null, }); }; @@ -476,7 +476,7 @@ const mapStateToProps = (state: any) => ({ editMessagePermission: state.permissions['edit-message'], deleteMessagePermission: state.permissions['delete-message'], forceDeleteMessagePermission: state.permissions['force-delete-message'], - pinMessagePermission: state.permissions['pin-message'] + pinMessagePermission: state.permissions['pin-message'], }); export default connect(mapStateToProps, null, null, { forwardRef: true })(MessageActions); diff --git a/app/containers/MessageBox/LeftButtons.android.tsx b/app/containers/MessageBox/LeftButtons.android.tsx index cf6934b772..73959949f5 100644 --- a/app/containers/MessageBox/LeftButtons.android.tsx +++ b/app/containers/MessageBox/LeftButtons.android.tsx @@ -1,4 +1,5 @@ import React from 'react'; + import { CancelEditingButton, ToggleEmojiButton } from './buttons'; interface IMessageBoxLeftButtons { @@ -11,7 +12,7 @@ interface IMessageBoxLeftButtons { } const LeftButtons = React.memo(({ - theme, showEmojiKeyboard, editing, editCancel, openEmoji, closeEmoji + theme, showEmojiKeyboard, editing, editCancel, openEmoji, closeEmoji, }: IMessageBoxLeftButtons) => { if (editing) { return <CancelEditingButton onPress={editCancel} theme={theme} />; diff --git a/app/containers/MessageBox/LeftButtons.ios.tsx b/app/containers/MessageBox/LeftButtons.ios.tsx index 2064a909bd..e24dbbd00b 100644 --- a/app/containers/MessageBox/LeftButtons.ios.tsx +++ b/app/containers/MessageBox/LeftButtons.ios.tsx @@ -1,7 +1,7 @@ import React from 'react'; import { View } from 'react-native'; -import { CancelEditingButton, ActionsButton } from './buttons'; +import { ActionsButton, CancelEditingButton } from './buttons'; import styles from './styles'; interface IMessageBoxLeftButtons { @@ -13,7 +13,7 @@ interface IMessageBoxLeftButtons { } const LeftButtons = React.memo(({ - theme, showMessageBoxActions, editing, editCancel, isActionsEnabled + theme, showMessageBoxActions, editing, editCancel, isActionsEnabled, }: IMessageBoxLeftButtons) => { if (editing) { return <CancelEditingButton onPress={editCancel} theme={theme} />; diff --git a/app/containers/MessageBox/Mentions/FixedMentionItem.tsx b/app/containers/MessageBox/Mentions/FixedMentionItem.tsx index 1aef1c6b0b..75fbded28c 100644 --- a/app/containers/MessageBox/Mentions/FixedMentionItem.tsx +++ b/app/containers/MessageBox/Mentions/FixedMentionItem.tsx @@ -1,5 +1,5 @@ import React from 'react'; -import { TouchableOpacity, Text } from 'react-native'; +import { Text, TouchableOpacity } from 'react-native'; import styles from '../styles'; import I18n from '../../../i18n'; @@ -9,7 +9,7 @@ interface IMessageBoxFixedMentionItem { item: { username: string; }; - onPress({}): void; + onPress: Function; theme: string; } @@ -19,8 +19,8 @@ const FixedMentionItem = ({ item, onPress, theme }: IMessageBoxFixedMentionItem) styles.mentionItem, { backgroundColor: themes[theme].auxiliaryBackground, - borderTopColor: themes[theme].separatorColor - } + borderTopColor: themes[theme].separatorColor, + }, ]} onPress={() => onPress(item)} > diff --git a/app/containers/MessageBox/Mentions/MentionEmoji.tsx b/app/containers/MessageBox/Mentions/MentionEmoji.tsx index cb60f634b4..34833888a6 100644 --- a/app/containers/MessageBox/Mentions/MentionEmoji.tsx +++ b/app/containers/MessageBox/Mentions/MentionEmoji.tsx @@ -6,7 +6,7 @@ import shortnameToUnicode from '../../../utils/shortnameToUnicode'; import styles from '../styles'; import MessageboxContext from '../Context'; import CustomEmoji from '../../EmojiPicker/CustomEmoji'; -import {IEmoji} from "../../EmojiPicker/interfaces"; +import { IEmoji } from '../../EmojiPicker/interfaces'; interface IMessageBoxMentionEmoji { item: IEmoji; @@ -33,7 +33,7 @@ const MentionEmoji = ({ item }: IMessageBoxMentionEmoji) => { }; MentionEmoji.propTypes = { - item: PropTypes.object + item: PropTypes.object, }; export default MentionEmoji; diff --git a/app/containers/MessageBox/Mentions/MentionItem.tsx b/app/containers/MessageBox/Mentions/MentionItem.tsx index b7c7f650fa..4be3067eb1 100644 --- a/app/containers/MessageBox/Mentions/MentionItem.tsx +++ b/app/containers/MessageBox/Mentions/MentionItem.tsx @@ -1,14 +1,14 @@ import React, { useContext } from 'react'; -import { TouchableOpacity, Text } from 'react-native'; +import { Text, TouchableOpacity } from 'react-native'; import styles from '../styles'; import Avatar from '../../Avatar'; import MessageboxContext from '../Context'; import FixedMentionItem from './FixedMentionItem'; import MentionEmoji from './MentionEmoji'; -import { MENTIONS_TRACKING_TYPE_EMOJIS, MENTIONS_TRACKING_TYPE_COMMANDS } from '../constants'; +import { MENTIONS_TRACKING_TYPE_COMMANDS, MENTIONS_TRACKING_TYPE_EMOJIS } from '../constants'; import { themes } from '../../../constants/colors'; -import {IEmoji} from "../../EmojiPicker/interfaces"; +import { IEmoji } from '../../EmojiPicker/interfaces'; interface IMessageBoxMentionItem { item: { @@ -79,8 +79,8 @@ const MentionItem = ({ item, trackingType, theme }: IMessageBoxMentionItem) => { styles.mentionItem, { backgroundColor: themes[theme].auxiliaryBackground, - borderTopColor: themes[theme].separatorColor - } + borderTopColor: themes[theme].separatorColor, + }, ]} onPress={() => onPressMention(item)} testID={testID} diff --git a/app/containers/MessageBox/RecordAudio.tsx b/app/containers/MessageBox/RecordAudio.tsx index 56a5a2b9a3..3e46b466d1 100644 --- a/app/containers/MessageBox/RecordAudio.tsx +++ b/app/containers/MessageBox/RecordAudio.tsx @@ -1,20 +1,20 @@ import React from 'react'; -import { View, Text } from 'react-native'; +import { Text, View } from 'react-native'; import { Audio } from 'expo-av'; import { BorderlessButton } from 'react-native-gesture-handler'; import { getInfoAsync } from 'expo-file-system'; -import { deactivateKeepAwake, activateKeepAwake } from 'expo-keep-awake'; +import { activateKeepAwake, deactivateKeepAwake } from 'expo-keep-awake'; import styles from './styles'; import I18n from '../../i18n'; import { themes } from '../../constants/colors'; import { CustomIcon } from '../../lib/Icons'; -import { logEvent, events } from '../../utils/log'; +import { events, logEvent } from '../../utils/log'; interface IMessageBoxRecordAudioProps { theme: string; - recordingCallback({}): void; - onFinish({}): void; + recordingCallback: Function; + onFinish: Function; } const RECORDING_EXTENSION = '.aac'; @@ -25,7 +25,7 @@ const RECORDING_SETTINGS = { audioEncoder: Audio.RECORDING_OPTION_ANDROID_AUDIO_ENCODER_AAC, sampleRate: Audio.RECORDING_OPTIONS_PRESET_LOW_QUALITY.android.sampleRate, numberOfChannels: Audio.RECORDING_OPTIONS_PRESET_LOW_QUALITY.android.numberOfChannels, - bitRate: Audio.RECORDING_OPTIONS_PRESET_LOW_QUALITY.android.bitRate + bitRate: Audio.RECORDING_OPTIONS_PRESET_LOW_QUALITY.android.bitRate, }, ios: { extension: RECORDING_EXTENSION, @@ -33,8 +33,8 @@ const RECORDING_SETTINGS = { sampleRate: Audio.RECORDING_OPTIONS_PRESET_LOW_QUALITY.ios.sampleRate, numberOfChannels: Audio.RECORDING_OPTIONS_PRESET_LOW_QUALITY.ios.numberOfChannels, bitRate: Audio.RECORDING_OPTIONS_PRESET_LOW_QUALITY.ios.bitRate, - outputFormat: Audio.RECORDING_OPTION_IOS_OUTPUT_FORMAT_MPEG4AAC - } + outputFormat: Audio.RECORDING_OPTION_IOS_OUTPUT_FORMAT_MPEG4AAC, + }, }; const RECORDING_MODE = { allowsRecordingIOS: true, @@ -43,7 +43,7 @@ const RECORDING_MODE = { shouldDuckAndroid: true, playThroughEarpieceAndroid: false, interruptionModeIOS: Audio.INTERRUPTION_MODE_IOS_DO_NOT_MIX, - interruptionModeAndroid: Audio.INTERRUPTION_MODE_ANDROID_DO_NOT_MIX + interruptionModeAndroid: Audio.INTERRUPTION_MODE_ANDROID_DO_NOT_MIX, }; const formatTime = function(seconds: any) { @@ -56,6 +56,7 @@ const formatTime = function(seconds: any) { export default class RecordAudio extends React.PureComponent<IMessageBoxRecordAudioProps, any> { private isRecorderBusy: boolean; + private recording: any; constructor(props: IMessageBoxRecordAudioProps) { @@ -63,7 +64,7 @@ export default class RecordAudio extends React.PureComponent<IMessageBoxRecordAu this.isRecorderBusy = false; this.state = { isRecording: false, - recordingDurationMillis: 0 + recordingDurationMillis: 0, }; } @@ -85,7 +86,7 @@ export default class RecordAudio extends React.PureComponent<IMessageBoxRecordAu return formatTime(Math.floor(recordingDurationMillis / 1000)); } - isRecordingPermissionGranted = async() => { + isRecordingPermissionGranted = async () => { try { const permission = await Audio.getPermissionsAsync(); if (permission.status === 'granted') { @@ -101,11 +102,11 @@ export default class RecordAudio extends React.PureComponent<IMessageBoxRecordAu onRecordingStatusUpdate = (status: any) => { this.setState({ isRecording: status.isRecording, - recordingDurationMillis: status.durationMillis + recordingDurationMillis: status.durationMillis, }); } - startRecordingAudio = async() => { + startRecordingAudio = async () => { logEvent(events.ROOM_AUDIO_RECORD); if (!this.isRecorderBusy) { this.isRecorderBusy = true; @@ -130,7 +131,7 @@ export default class RecordAudio extends React.PureComponent<IMessageBoxRecordAu } }; - finishRecordingAudio = async() => { + finishRecordingAudio = async () => { logEvent(events.ROOM_AUDIO_FINISH); if (!this.isRecorderBusy) { const { onFinish } = this.props; @@ -147,7 +148,7 @@ export default class RecordAudio extends React.PureComponent<IMessageBoxRecordAu type: 'audio/aac', store: 'Uploads', path: fileURI, - size: fileData.size + size: fileData.size, }; onFinish(fileInfo); @@ -160,7 +161,7 @@ export default class RecordAudio extends React.PureComponent<IMessageBoxRecordAu } }; - cancelRecordingAudio = async() => { + cancelRecordingAudio = async () => { logEvent(events.ROOM_AUDIO_CANCEL); if (!this.isRecorderBusy) { this.isRecorderBusy = true; diff --git a/app/containers/MessageBox/ReplyPreview.tsx b/app/containers/MessageBox/ReplyPreview.tsx index 6d0b8db51a..6118f0233e 100644 --- a/app/containers/MessageBox/ReplyPreview.tsx +++ b/app/containers/MessageBox/ReplyPreview.tsx @@ -1,5 +1,5 @@ import React from 'react'; -import { View, Text, StyleSheet } from 'react-native'; +import { StyleSheet, Text, View } from 'react-native'; import moment from 'moment'; import { connect } from 'react-redux'; @@ -11,33 +11,33 @@ import { themes } from '../../constants/colors'; const styles = StyleSheet.create({ container: { flexDirection: 'row', - paddingTop: 10 + paddingTop: 10, }, messageContainer: { flex: 1, marginHorizontal: 10, paddingHorizontal: 15, paddingVertical: 10, - borderRadius: 4 + borderRadius: 4, }, header: { flexDirection: 'row', - alignItems: 'center' + alignItems: 'center', }, username: { fontSize: 16, - ...sharedStyles.textMedium + ...sharedStyles.textMedium, }, time: { fontSize: 12, lineHeight: 16, marginLeft: 6, ...sharedStyles.textRegular, - fontWeight: '300' + fontWeight: '300', }, close: { - marginRight: 10 - } + marginRight: 10, + }, }); interface IMessageBoxReplyPreview { @@ -51,13 +51,13 @@ interface IMessageBoxReplyPreview { close(): void; baseUrl: string; username: string; - getCustomEmoji(): void; + getCustomEmoji: Function; theme: string; useRealName: boolean; } const ReplyPreview = React.memo(({ - message, Message_TimeFormat, baseUrl, username, replying, getCustomEmoji, close, theme, useRealName + message, Message_TimeFormat, baseUrl, username, replying, getCustomEmoji, close, theme, useRealName, }: IMessageBoxReplyPreview) => { if (!replying) { return null; @@ -68,7 +68,7 @@ const ReplyPreview = React.memo(({ <View style={[ styles.container, - { backgroundColor: themes[theme].messageboxBackground } + { backgroundColor: themes[theme].messageboxBackground }, ]} > <View style={[styles.messageContainer, { backgroundColor: themes[theme].chatComponentBackground }]}> @@ -76,7 +76,7 @@ const ReplyPreview = React.memo(({ <Text style={[styles.username, { color: themes[theme].tintColor }]}>{useRealName ? message.u?.name : message.u?.username}</Text> <Text style={[styles.time, { color: themes[theme].auxiliaryText }]}>{time}</Text> </View> - {/*@ts-ignore*/} + {/* @ts-ignore*/} <Markdown msg={message.msg} baseUrl={baseUrl} @@ -95,7 +95,7 @@ const ReplyPreview = React.memo(({ const mapStateToProps = (state: any) => ({ Message_TimeFormat: state.settings.Message_TimeFormat, baseUrl: state.server.server, - useRealName: state.settings.UI_Use_Real_Name + useRealName: state.settings.UI_Use_Real_Name, }); export default connect(mapStateToProps)(ReplyPreview); diff --git a/app/containers/MessageBox/RightButtons.android.tsx b/app/containers/MessageBox/RightButtons.android.tsx index db4d9e9131..7b8dc8ca83 100644 --- a/app/containers/MessageBox/RightButtons.android.tsx +++ b/app/containers/MessageBox/RightButtons.android.tsx @@ -1,7 +1,7 @@ import React from 'react'; import { View } from 'react-native'; -import { SendButton, ActionsButton } from './buttons'; +import { ActionsButton, SendButton } from './buttons'; import styles from './styles'; interface IMessageBoxRightButtons { @@ -13,7 +13,7 @@ interface IMessageBoxRightButtons { } const RightButtons = React.memo(({ - theme, showSend, submit, showMessageBoxActions, isActionsEnabled + theme, showSend, submit, showMessageBoxActions, isActionsEnabled, }: IMessageBoxRightButtons) => { if (showSend) { return <SendButton onPress={submit} theme={theme} />; diff --git a/app/containers/MessageBox/RightButtons.ios.tsx b/app/containers/MessageBox/RightButtons.ios.tsx index 8db0e68ee7..c295d37dc2 100644 --- a/app/containers/MessageBox/RightButtons.ios.tsx +++ b/app/containers/MessageBox/RightButtons.ios.tsx @@ -1,4 +1,5 @@ import React from 'react'; + import { SendButton } from './buttons'; interface IMessageBoxRightButtons { diff --git a/app/containers/MessageBox/buttons/ActionsButton.tsx b/app/containers/MessageBox/buttons/ActionsButton.tsx index 6b230d3e5f..de7eb9b4c6 100644 --- a/app/containers/MessageBox/buttons/ActionsButton.tsx +++ b/app/containers/MessageBox/buttons/ActionsButton.tsx @@ -1,4 +1,5 @@ import React from 'react'; + import BaseButton from './BaseButton'; interface IActionsButton { diff --git a/app/containers/MessageBox/buttons/CancelEditingButton.tsx b/app/containers/MessageBox/buttons/CancelEditingButton.tsx index f57a2ac613..4d7eeea357 100644 --- a/app/containers/MessageBox/buttons/CancelEditingButton.tsx +++ b/app/containers/MessageBox/buttons/CancelEditingButton.tsx @@ -1,4 +1,5 @@ import React from 'react'; + import BaseButton from './BaseButton'; interface ICancelEditingButton { diff --git a/app/containers/MessageBox/buttons/SendButton.tsx b/app/containers/MessageBox/buttons/SendButton.tsx index b144d49829..7f24ad7e8f 100644 --- a/app/containers/MessageBox/buttons/SendButton.tsx +++ b/app/containers/MessageBox/buttons/SendButton.tsx @@ -1,4 +1,5 @@ import React from 'react'; + import BaseButton from './BaseButton'; import { themes } from '../../../constants/colors'; diff --git a/app/containers/MessageBox/buttons/ToggleEmojiButton.tsx b/app/containers/MessageBox/buttons/ToggleEmojiButton.tsx index c1914d9e15..cd04fff145 100644 --- a/app/containers/MessageBox/buttons/ToggleEmojiButton.tsx +++ b/app/containers/MessageBox/buttons/ToggleEmojiButton.tsx @@ -1,4 +1,5 @@ import React from 'react'; + import BaseButton from './BaseButton'; interface IToggleEmojiButton { diff --git a/app/containers/MessageBox/buttons/index.ts b/app/containers/MessageBox/buttons/index.ts index 523764469e..8d131d92b2 100644 --- a/app/containers/MessageBox/buttons/index.ts +++ b/app/containers/MessageBox/buttons/index.ts @@ -7,5 +7,5 @@ export { CancelEditingButton, ToggleEmojiButton, SendButton, - ActionsButton + ActionsButton, }; diff --git a/app/containers/MessageBox/index.tsx b/app/containers/MessageBox/index.tsx index 95b5b00aed..b88173c95c 100644 --- a/app/containers/MessageBox/index.tsx +++ b/app/containers/MessageBox/index.tsx @@ -1,5 +1,5 @@ import React, { Component } from 'react'; -import {View, Alert, Keyboard, Text, NativeModules} from 'react-native'; +import { Alert, Keyboard, NativeModules, Text, View } from 'react-native'; import { connect } from 'react-redux'; import { KeyboardAccessoryView } from 'react-native-ui-lib/keyboard'; import ImagePicker from 'react-native-image-crop-picker'; @@ -15,33 +15,35 @@ import RocketChat from '../../lib/rocketchat'; import styles from './styles'; import database from '../../lib/database'; import { emojis } from '../../emojis'; -import log, { logEvent, events } from '../../utils/log'; +import log, { events, logEvent } from '../../utils/log'; import RecordAudio from './RecordAudio'; import I18n from '../../i18n'; import ReplyPreview from './ReplyPreview'; import debounce from '../../utils/debounce'; import { themes } from '../../constants/colors'; // @ts-ignore +// eslint-disable-next-line import/extensions,import/no-unresolved import LeftButtons from './LeftButtons'; // @ts-ignore +// eslint-disable-next-line import/extensions,import/no-unresolved import RightButtons from './RightButtons'; import { isAndroid, isTablet } from '../../utils/deviceInfo'; import { canUploadFile } from '../../utils/media'; import EventEmiter from '../../utils/events'; import { KEY_COMMAND, - handleCommandTyping, + handleCommandShowUpload, handleCommandSubmit, - handleCommandShowUpload + handleCommandTyping, } from '../../commands'; import Mentions from './Mentions'; import MessageboxContext from './Context'; import { - MENTIONS_TRACKING_TYPE_EMOJIS, - MENTIONS_TRACKING_TYPE_COMMANDS, MENTIONS_COUNT_TO_DISPLAY, + MENTIONS_TRACKING_TYPE_COMMANDS, + MENTIONS_TRACKING_TYPE_EMOJIS, + MENTIONS_TRACKING_TYPE_ROOMS, MENTIONS_TRACKING_TYPE_USERS, - MENTIONS_TRACKING_TYPE_ROOMS } from './constants'; import CommandsPreview from './CommandsPreview'; import { getUserSelector } from '../../selectors/login'; @@ -58,17 +60,17 @@ const imagePickerConfig = { cropping: true, compressImageQuality: 0.8, avoidEmptySpaceAroundImage: false, - freeStyleCropEnabled: true + freeStyleCropEnabled: true, }; const libraryPickerConfig = { multiple: true, compressVideoPreset: 'Passthrough', - mediaType: 'any' + mediaType: 'any', }; const videoPickerConfig = { - mediaType: 'video' + mediaType: 'video', }; interface IMessageBoxProps { @@ -95,18 +97,18 @@ interface IMessageBoxProps { FileUpload_MediaTypeWhiteList: string; FileUpload_MaxFileSize: number; Message_AudioRecorderEnabled: boolean; - getCustomEmoji(): void; - editCancel(): void; - editRequest({}): void; - onSubmit({}, {}?, {}?): void; - typing({}, {}): void; + getCustomEmoji: Function; + editCancel: Function; + editRequest: Function; + onSubmit: Function; + typing: Function; theme: string; replyCancel(): void; showSend: boolean; navigation: any; children: JSX.Element; isMasterDetail: boolean; - showActionSheet({}): void; + showActionSheet: Function; iOSScrollBehavior: number; sharing: boolean; isActionsEnabled: boolean; @@ -127,31 +129,44 @@ interface IMessageBoxState { } class MessageBox extends Component<IMessageBoxProps, IMessageBoxState> { - private text: string; + private selection: { start: number; end: number }; + private focused: boolean; + private options: any; + private imagePickerConfig: any; + private libraryPickerConfig: any; + private videoPickerConfig: any; + private room: any; + private thread: any; + private unsubscribeFocus: any; + private trackingTimeout: any; + private tracking: any; + private unsubscribeBlur: any; + private component: any; + private typingTimeout: any; static defaultProps = { message: { - id: '' + id: '', }, sharing: false, iOSScrollBehavior: NativeModules.KeyboardTrackingViewTempManager?.KeyboardTrackingScrollBehaviorFixedOffset, isActionsEnabled: true, - getCustomEmoji: () => {} + getCustomEmoji: () => {}, } constructor(props: IMessageBoxProps) { @@ -165,7 +180,7 @@ class MessageBox extends Component<IMessageBoxProps, IMessageBoxState> { commandPreview: [], showCommandPreview: false, command: {}, - tshow: false + tshow: false, }; this.text = ''; this.selection = { start: 0, end: 0 }; @@ -176,49 +191,49 @@ class MessageBox extends Component<IMessageBoxProps, IMessageBoxState> { { title: I18n.t('Take_a_photo'), icon: 'camera-photo', - onPress: this.takePhoto + onPress: this.takePhoto, }, { title: I18n.t('Take_a_video'), icon: 'camera', - onPress: this.takeVideo + onPress: this.takeVideo, }, { title: I18n.t('Choose_from_library'), icon: 'image', - onPress: this.chooseFromLibrary + onPress: this.chooseFromLibrary, }, { title: I18n.t('Choose_file'), icon: 'attach', - onPress: this.chooseFile + onPress: this.chooseFile, }, { title: I18n.t('Create_Discussion'), icon: 'discussions', - onPress: this.createDiscussion - } + onPress: this.createDiscussion, + }, ]; const libPickerLabels = { cropperChooseText: I18n.t('Choose'), cropperCancelText: I18n.t('Cancel'), - loadingLabelText: I18n.t('Processing') + loadingLabelText: I18n.t('Processing'), }; this.imagePickerConfig = { ...imagePickerConfig, - ...libPickerLabels + ...libPickerLabels, }; this.libraryPickerConfig = { ...libraryPickerConfig, - ...libPickerLabels + ...libPickerLabels, }; this.videoPickerConfig = { ...videoPickerConfig, - ...libPickerLabels + ...libPickerLabels, }; } @@ -302,11 +317,11 @@ class MessageBox extends Component<IMessageBoxProps, IMessageBoxState> { shouldComponentUpdate(nextProps: any, nextState: any) { const { - showEmojiKeyboard, showSend, recording, mentions, commandPreview, tshow + showEmojiKeyboard, showSend, recording, mentions, commandPreview, tshow, } = this.state; const { - roomType, replying, editing, isFocused, message, theme + roomType, replying, editing, isFocused, message, theme, } = this.props; if (nextProps.theme !== theme) { @@ -388,7 +403,7 @@ class MessageBox extends Component<IMessageBoxProps, IMessageBoxState> { } // eslint-disable-next-line react/sort-comp - debouncedOnChangeText = debounce(async(text: any) => { + debouncedOnChangeText = debounce(async (text: any) => { const { sharing } = this.props; const isTextEmpty = text.length === 0; if (isTextEmpty) { @@ -424,15 +439,14 @@ class MessageBox extends Component<IMessageBoxProps, IMessageBoxState> { } } return this.identifyMentionKeyword(command, MENTIONS_TRACKING_TYPE_COMMANDS); - } else if (channelMention) { + } if (channelMention) { return this.identifyMentionKeyword(result, MENTIONS_TRACKING_TYPE_ROOMS); - } else if (userMention) { + } if (userMention) { return this.identifyMentionKeyword(result, MENTIONS_TRACKING_TYPE_USERS); - } else if (emojiMention) { + } if (emojiMention) { return this.identifyMentionKeyword(result, MENTIONS_TRACKING_TYPE_EMOJIS); - } else { - return this.stopTrackingMention(); } + return this.stopTrackingMention(); }, 100) onKeyboardResigned = () => { @@ -451,7 +465,7 @@ class MessageBox extends Component<IMessageBoxProps, IMessageBoxState> { const result = msg.substr(0, cursor).replace(regexp, ''); const mentionName = trackingType === MENTIONS_TRACKING_TYPE_EMOJIS ? `${ item.name || item }:` - : (item.username || item.name || item.command); + : item.username || item.name || item.command; const text = `${ result }${ mentionName } ${ msg.slice(cursor) }`; if ((trackingType === MENTIONS_TRACKING_TYPE_COMMANDS) && item.providesPreview) { @@ -467,7 +481,7 @@ class MessageBox extends Component<IMessageBoxProps, IMessageBoxState> { onPressCommandPreview = (item: any) => { const { command } = this.state; const { - rid, tmid, message: { id: messageTmid }, replyCancel + rid, tmid, message: { id: messageTmid }, replyCancel, } = this.props; const { text } = this; const name = text.substr(0, text.indexOf(' ')).slice(1); @@ -500,7 +514,7 @@ class MessageBox extends Component<IMessageBoxProps, IMessageBoxState> { this.setShowSend(true); } - getPermalink = async(message: any) => { + getPermalink = async (message: any) => { try { return await RocketChat.getPermalinkMessage(message); } catch (error) { @@ -519,18 +533,18 @@ class MessageBox extends Component<IMessageBoxProps, IMessageBoxState> { return result; } - getUsers = debounce(async(keyword: any) => { + getUsers = debounce(async (keyword: any) => { let res = await RocketChat.search({ text: keyword, filterRooms: false, filterUsers: true }); res = [...this.getFixedMentions(keyword), ...res]; this.setState({ mentions: res }); }, 300) - getRooms = debounce(async(keyword = '') => { + getRooms = debounce(async (keyword = '') => { const res = await RocketChat.search({ text: keyword, filterRooms: true, filterUsers: false }); this.setState({ mentions: res }); }, 300) - getEmojis = debounce(async(keyword: any) => { + getEmojis = debounce(async (keyword: any) => { const db = database.active; const customEmojisCollection = db.get('custom_emojis'); const likeString = sanitizeLikeString(keyword); @@ -540,17 +554,17 @@ class MessageBox extends Component<IMessageBoxProps, IMessageBoxState> { } let customEmojis = await customEmojisCollection.query(...whereClause).fetch(); customEmojis = customEmojis.slice(0, MENTIONS_COUNT_TO_DISPLAY); - const filteredEmojis = emojis.filter(emoji => emoji.indexOf(keyword) !== -1).slice(0, MENTIONS_COUNT_TO_DISPLAY); + const filteredEmojis = emojis.filter((emoji) => emoji.indexOf(keyword) !== -1).slice(0, MENTIONS_COUNT_TO_DISPLAY); const mergedEmojis = [...customEmojis, ...filteredEmojis].slice(0, MENTIONS_COUNT_TO_DISPLAY); this.setState({ mentions: mergedEmojis || [] }); }, 300) - getSlashCommands = debounce(async(keyword: any) => { + getSlashCommands = debounce(async (keyword: any) => { const db = database.active; const commandsCollection = db.get('slash_commands'); const likeString = sanitizeLikeString(keyword); const commands = await commandsCollection.query( - Q.where('id', Q.like(`${ likeString }%`)) + Q.where('id', Q.like(`${ likeString }%`)), ).fetch(); this.setState({ mentions: commands || [] }); }, 300) @@ -585,7 +599,7 @@ class MessageBox extends Component<IMessageBoxProps, IMessageBoxState> { }, 1000); } - setCommandPreview = async(command: any, name: string, params: any) => { + setCommandPreview = async (command: any, name: string, params: any) => { const { rid } = this.props; try { const { success, preview } = await RocketChat.getCommandPreview(name, rid, params); @@ -630,7 +644,7 @@ class MessageBox extends Component<IMessageBoxProps, IMessageBoxState> { return false; } - takePhoto = async() => { + takePhoto = async () => { logEvent(events.ROOM_BOX_ACTION_PHOTO); try { const image = await ImagePicker.openCamera(this.imagePickerConfig); @@ -642,7 +656,7 @@ class MessageBox extends Component<IMessageBoxProps, IMessageBoxState> { } } - takeVideo = async() => { + takeVideo = async () => { logEvent(events.ROOM_BOX_ACTION_VIDEO); try { const video = await ImagePicker.openCamera(this.videoPickerConfig); @@ -654,7 +668,7 @@ class MessageBox extends Component<IMessageBoxProps, IMessageBoxState> { } } - chooseFromLibrary = async() => { + chooseFromLibrary = async () => { logEvent(events.ROOM_BOX_ACTION_LIBRARY); try { const attachments = await ImagePicker.openPicker(this.libraryPickerConfig); @@ -664,17 +678,17 @@ class MessageBox extends Component<IMessageBoxProps, IMessageBoxState> { } } - chooseFile = async() => { + chooseFile = async () => { logEvent(events.ROOM_BOX_ACTION_FILE); try { const res = await DocumentPicker.pick({ - type: [DocumentPicker.types.allFiles] + type: [DocumentPicker.types.allFiles], }); const file = { filename: res.name, size: res.size, mime: res.type, - path: res.uri + path: res.uri, }; if (this.canUploadFile(file)) { this.openShareView([file]); @@ -730,9 +744,9 @@ class MessageBox extends Component<IMessageBoxProps, IMessageBoxState> { this.setState({ recording }); } - finishAudioMessage = async(fileInfo: any) => { + finishAudioMessage = async (fileInfo: any) => { const { - rid, tmid, baseUrl: server, user + rid, tmid, baseUrl: server, user, } = this.props; if (fileInfo) { @@ -750,10 +764,10 @@ class MessageBox extends Component<IMessageBoxProps, IMessageBoxState> { this.setState({ showEmojiKeyboard: false }); } - submit = async() => { + submit = async () => { const { tshow } = this.state; const { - onSubmit, rid: roomId, tmid, showSend, sharing + onSubmit, rid: roomId, tmid, showSend, sharing, } = this.props; const message = this.text; @@ -773,7 +787,7 @@ class MessageBox extends Component<IMessageBoxProps, IMessageBoxState> { } const { - editing, replying, message: { id: messageTmid }, replyCancel + editing, replying, message: { id: messageTmid }, replyCancel, } = this.props; // Slash command @@ -783,7 +797,7 @@ class MessageBox extends Component<IMessageBoxProps, IMessageBoxState> { const command = message.replace(/ .*/, '').slice(1); const likeString = sanitizeLikeString(command); const slashCommand = await commandsCollection.query( - Q.where('id', Q.like(`${ likeString }%`)) + Q.where('id', Q.like(`${ likeString }%`)), ).fetch(); if (slashCommand.length > 0) { logEvent(events.COMMAND_RUN); @@ -811,7 +825,7 @@ class MessageBox extends Component<IMessageBoxProps, IMessageBoxState> { // Reply } else if (replying) { const { - message: replyingMessage, threadsEnabled, replyWithMention + message: replyingMessage, threadsEnabled, replyWithMention, } = this.props; // Thread @@ -856,7 +870,7 @@ class MessageBox extends Component<IMessageBoxProps, IMessageBoxState> { identifyMentionKeyword = (keyword: any, type: string) => { this.setState({ showEmojiKeyboard: false, - trackingType: type + trackingType: type, }); this.updateMentions(keyword, type); } @@ -870,7 +884,7 @@ class MessageBox extends Component<IMessageBoxProps, IMessageBoxState> { mentions: [], trackingType: '', commandPreview: [], - showCommandPreview: false + showCommandPreview: false, }); } @@ -912,16 +926,16 @@ class MessageBox extends Component<IMessageBoxProps, IMessageBoxState> { renderContent = () => { const { - recording, showEmojiKeyboard, showSend, mentions, trackingType, commandPreview, showCommandPreview + recording, showEmojiKeyboard, showSend, mentions, trackingType, commandPreview, showCommandPreview, } = this.state; const { - editing, message, replying, replyCancel, user, getCustomEmoji, theme, Message_AudioRecorderEnabled, children, isActionsEnabled, tmid + editing, message, replying, replyCancel, user, getCustomEmoji, theme, Message_AudioRecorderEnabled, children, isActionsEnabled, tmid, } = this.props; const isAndroidTablet = isTablet && isAndroid ? { multiline: false, onSubmitEditing: this.submit, - returnKeyType: 'send' + returnKeyType: 'send', } : {}; const recordAudio = showSend || !Message_AudioRecorderEnabled ? null : ( @@ -935,7 +949,7 @@ class MessageBox extends Component<IMessageBoxProps, IMessageBoxState> { const commandsPreviewAndMentions = !recording ? ( <> <CommandsPreview commandPreview={commandPreview} showCommandPreview={showCommandPreview} /> - {/*@ts-ignore*/} + {/* @ts-ignore*/} <Mentions mentions={mentions} trackingType={trackingType} theme={theme} /> </> ) : null; @@ -965,11 +979,11 @@ class MessageBox extends Component<IMessageBoxProps, IMessageBoxState> { isActionsEnabled={isActionsEnabled} /> <TextInput - ref={component => this.component = component} - //@ts-ignore + ref={(component) => this.component = component} + // @ts-ignore style={[styles.textBoxInput, { color: themes[theme].bodyText }]} returnKeyType='default' - //@ts-ignore + // @ts-ignore keyboardType='twitter' blurOnSubmit={false} placeholder={I18n.t('New_Message')} @@ -1002,7 +1016,7 @@ class MessageBox extends Component<IMessageBoxProps, IMessageBoxState> { style={[ styles.textArea, { backgroundColor: themes[theme].messageboxBackground }, - !recording && editing && { backgroundColor: themes[theme].chatComponentBackground } + !recording && editing && { backgroundColor: themes[theme].chatComponentBackground }, ]} testID='messagebox' > @@ -1020,7 +1034,7 @@ class MessageBox extends Component<IMessageBoxProps, IMessageBoxState> { console.count(`${ this.constructor.name }.render calls`); const { showEmojiKeyboard } = this.state; const { - user, baseUrl, theme, iOSScrollBehavior + user, baseUrl, theme, iOSScrollBehavior, } = this.props; return ( <MessageboxContext.Provider @@ -1028,7 +1042,7 @@ class MessageBox extends Component<IMessageBoxProps, IMessageBoxState> { user, baseUrl, onPressMention: this.onPressMention, - onPressCommandPreview: this.onPressCommandPreview + onPressCommandPreview: this.onPressCommandPreview, }} > <KeyboardAccessoryView @@ -1056,11 +1070,11 @@ const mapStateToProps = (state: any) => ({ user: getUserSelector(state), FileUpload_MediaTypeWhiteList: state.settings.FileUpload_MediaTypeWhiteList, FileUpload_MaxFileSize: state.settings.FileUpload_MaxFileSize, - Message_AudioRecorderEnabled: state.settings.Message_AudioRecorderEnabled + Message_AudioRecorderEnabled: state.settings.Message_AudioRecorderEnabled, }); -const dispatchToProps = ({ - typing: (rid: any, status: any) => userTypingAction(rid, status) -}); +const dispatchToProps = { + typing: (rid: any, status: any) => userTypingAction(rid, status), +}; // @ts-ignore export default connect(mapStateToProps, dispatchToProps, null, { forwardRef: true })(withActionSheet(MessageBox)); diff --git a/app/containers/MessageBox/styles.ts b/app/containers/MessageBox/styles.ts index 9c5a2ff521..3e28ac180a 100644 --- a/app/containers/MessageBox/styles.ts +++ b/app/containers/MessageBox/styles.ts @@ -9,12 +9,12 @@ const SCROLLVIEW_MENTION_HEIGHT = 4 * MENTION_HEIGHT; export default StyleSheet.create({ composer: { flexDirection: 'column', - borderTopWidth: 1 + borderTopWidth: 1, }, textArea: { flexDirection: 'row', alignItems: 'center', - flexGrow: 0 + flexGrow: 0, }, textBoxInput: { textAlignVertical: 'center', @@ -28,48 +28,48 @@ export default StyleSheet.create({ paddingRight: 0, fontSize: 16, letterSpacing: 0, - ...sharedStyles.textRegular + ...sharedStyles.textRegular, }, actionButton: { alignItems: 'center', justifyContent: 'center', width: 60, - height: 48 + height: 48, }, mentionList: { - maxHeight: MENTION_HEIGHT * 4 + maxHeight: MENTION_HEIGHT * 4, }, mentionItem: { height: MENTION_HEIGHT, borderTopWidth: StyleSheet.hairlineWidth, flexDirection: 'row', alignItems: 'center', - paddingHorizontal: 5 + paddingHorizontal: 5, }, mentionItemCustomEmoji: { margin: 8, width: 30, - height: 30 + height: 30, }, mentionItemEmoji: { width: 46, height: 36, fontSize: isIOS ? 30 : 25, - ...sharedStyles.textAlignCenter + ...sharedStyles.textAlignCenter, }, fixedMentionAvatar: { width: 46, fontSize: 14, ...sharedStyles.textBold, - ...sharedStyles.textAlignCenter + ...sharedStyles.textAlignCenter, }, mentionText: { fontSize: 14, - ...sharedStyles.textRegular + ...sharedStyles.textRegular, }, emojiKeyboardContainer: { flex: 1, - borderTopWidth: StyleSheet.hairlineWidth + borderTopWidth: StyleSheet.hairlineWidth, }, slash: { height: 30, @@ -77,48 +77,48 @@ export default StyleSheet.create({ padding: 5, paddingHorizontal: 12, marginHorizontal: 10, - borderRadius: 2 + borderRadius: 2, }, commandPreviewImage: { justifyContent: 'center', margin: 3, width: 120, height: 80, - borderRadius: 4 + borderRadius: 4, }, commandPreview: { height: 100, flex: 1, flexDirection: 'row', - alignItems: 'center' + alignItems: 'center', }, avatar: { - margin: 8 + margin: 8, }, scrollViewMention: { - maxHeight: SCROLLVIEW_MENTION_HEIGHT + maxHeight: SCROLLVIEW_MENTION_HEIGHT, }, recordingContent: { flexDirection: 'row', flex: 1, - justifyContent: 'space-between' + justifyContent: 'space-between', }, recordingCancelText: { fontSize: 16, - ...sharedStyles.textRegular + ...sharedStyles.textRegular, }, buttonsWhitespace: { - width: 15 + width: 15, }, sendToChannelButton: { flexDirection: 'row', alignItems: 'center', paddingVertical: 8, - paddingHorizontal: 18 + paddingHorizontal: 18, }, sendToChannelText: { fontSize: 12, marginLeft: 4, - ...sharedStyles.textRegular - } + ...sharedStyles.textRegular, + }, }); diff --git a/app/containers/MessageErrorActions.tsx b/app/containers/MessageErrorActions.tsx index b9fa0665c4..80c2efc428 100644 --- a/app/containers/MessageErrorActions.tsx +++ b/app/containers/MessageErrorActions.tsx @@ -1,4 +1,4 @@ -import { useImperativeHandle, forwardRef } from 'react'; +import { forwardRef, useImperativeHandle } from 'react'; import RocketChat from '../lib/rocketchat'; import database from '../lib/database'; @@ -10,11 +10,11 @@ import log from '../utils/log'; const MessageErrorActions = forwardRef(({ tmid }: any, ref): any => { const { showActionSheet }: any = useActionSheet(); - const handleResend = protectedFunction(async(message: any) => { + const handleResend = protectedFunction(async (message: any) => { await RocketChat.resendMessage(message, tmid); }); - const handleDelete = async(message: any) => { + const handleDelete = async (message: any) => { try { const db = database.active; const deleteBatch: any = []; @@ -41,7 +41,7 @@ const MessageErrorActions = forwardRef(({ tmid }: any, ref): any => { msg.prepareUpdate((m: any) => { m.tcount = null; m.tlm = null; - }) + }), ); try { @@ -55,14 +55,14 @@ const MessageErrorActions = forwardRef(({ tmid }: any, ref): any => { deleteBatch.push( msg.prepareUpdate((m: any) => { m.tcount -= 1; - }) + }), ); } } catch { // Do nothing: message not found } } - await db.action(async() => { + await db.action(async () => { await db.batch(...deleteBatch); }); } catch (e) { @@ -76,21 +76,21 @@ const MessageErrorActions = forwardRef(({ tmid }: any, ref): any => { { title: I18n.t('Resend'), icon: 'send', - onPress: () => handleResend(message) + onPress: () => handleResend(message), }, { title: I18n.t('Delete'), icon: 'delete', danger: true, - onPress: () => handleDelete(message) - } + onPress: () => handleDelete(message), + }, ], - hasCancel: true + hasCancel: true, }); }; useImperativeHandle(ref, () => ({ - showMessageErrorActions + showMessageErrorActions, })); return null; diff --git a/app/containers/OrSeparator.tsx b/app/containers/OrSeparator.tsx index 957a0ce4fc..a9d01e73c5 100644 --- a/app/containers/OrSeparator.tsx +++ b/app/containers/OrSeparator.tsx @@ -1,5 +1,5 @@ import React from 'react'; -import { View, StyleSheet, Text } from 'react-native'; +import { StyleSheet, Text, View } from 'react-native'; import I18n from '../i18n'; import sharedStyles from '../views/Styles'; @@ -9,18 +9,18 @@ const styles = StyleSheet.create({ container: { flexDirection: 'row', alignItems: 'center', - marginVertical: 24 + marginVertical: 24, }, line: { height: 1, - flex: 1 + flex: 1, }, text: { fontSize: 14, marginLeft: 14, marginRight: 14, - ...sharedStyles.textMedium - } + ...sharedStyles.textMedium, + }, }); interface IOrSeparator { diff --git a/app/containers/Passcode/Base/Button.tsx b/app/containers/Passcode/Base/Button.tsx index 53f41e3830..76c31761dc 100644 --- a/app/containers/Passcode/Base/Button.tsx +++ b/app/containers/Passcode/Base/Button.tsx @@ -11,7 +11,7 @@ interface IPasscodeButton { icon: string; theme: string; disabled: boolean; - onPress({}?): void; + onPress: Function; } const Button = React.memo(({ text, disabled, theme, onPress, icon }: Partial<IPasscodeButton>) => { diff --git a/app/containers/Passcode/Base/Dots.tsx b/app/containers/Passcode/Base/Dots.tsx index 415d783c3f..db984a95bc 100644 --- a/app/containers/Passcode/Base/Dots.tsx +++ b/app/containers/Passcode/Base/Dots.tsx @@ -17,7 +17,7 @@ interface IPasscodeDots { const Dots = React.memo(({ passcode, theme, length }: IPasscodeDots) => ( <View style={styles.dotsContainer}> {range(length).map((val) => { - const lengthSup = (passcode.length >= val + 1); + const lengthSup = passcode.length >= val + 1; const height = lengthSup ? SIZE_FULL : SIZE_EMPTY; const width = lengthSup ? SIZE_FULL : SIZE_EMPTY; let backgroundColor = ''; @@ -38,7 +38,7 @@ const Dots = React.memo(({ passcode, theme, length }: IPasscodeDots) => ( borderRadius, backgroundColor, marginRight, - marginLeft + marginLeft, }} /> </View> diff --git a/app/containers/Passcode/Base/Locked.tsx b/app/containers/Passcode/Base/Locked.tsx index f20c3e8502..0b1562dd11 100644 --- a/app/containers/Passcode/Base/Locked.tsx +++ b/app/containers/Passcode/Base/Locked.tsx @@ -4,7 +4,7 @@ import { Grid } from 'react-native-easy-grid'; import { themes } from '../../../constants/colors'; import { resetAttempts } from '../../../utils/localAuthentication'; import { TYPE } from '../constants'; -import { getLockedUntil, getDiff } from '../utils'; +import { getDiff, getLockedUntil } from '../utils'; import I18n from '../../../i18n'; import styles from './styles'; import Title from './Title'; @@ -52,7 +52,7 @@ const Timer = React.memo(({ time, theme, setStatus }: IPasscodeTimer) => { const Locked = React.memo(({ theme, setStatus }: IPasscodeLocked) => { const [lockedUntil, setLockedUntil] = useState<any>(null); - const readItemFromStorage = async() => { + const readItemFromStorage = async () => { const l = await getLockedUntil(); setLockedUntil(l); }; @@ -62,7 +62,7 @@ const Locked = React.memo(({ theme, setStatus }: IPasscodeLocked) => { }, []); return ( - //TODO - verify if this 'r' it's correct + // TODO - verify if this 'r' it's correct // @ts-ignore <Grid style={[styles.grid, { backgroundColor: themes[theme].passcodeBackground }]} r> <LockIcon theme={theme} /> diff --git a/app/containers/Passcode/Base/Subtitle.tsx b/app/containers/Passcode/Base/Subtitle.tsx index 0959d6a4d7..76a5a7405f 100644 --- a/app/containers/Passcode/Base/Subtitle.tsx +++ b/app/containers/Passcode/Base/Subtitle.tsx @@ -1,5 +1,5 @@ import React from 'react'; -import { View, Text } from 'react-native'; +import { Text, View } from 'react-native'; import { Row } from 'react-native-easy-grid'; import styles from './styles'; diff --git a/app/containers/Passcode/Base/Title.tsx b/app/containers/Passcode/Base/Title.tsx index fdb73b4a4b..0c54e03589 100644 --- a/app/containers/Passcode/Base/Title.tsx +++ b/app/containers/Passcode/Base/Title.tsx @@ -1,5 +1,5 @@ import React from 'react'; -import { View, Text } from 'react-native'; +import { Text, View } from 'react-native'; import { Row } from 'react-native-easy-grid'; import styles from './styles'; diff --git a/app/containers/Passcode/Base/index.tsx b/app/containers/Passcode/Base/index.tsx index b861a4f08d..102d1c99b2 100644 --- a/app/containers/Passcode/Base/index.tsx +++ b/app/containers/Passcode/Base/index.tsx @@ -1,5 +1,5 @@ -import React, { useState, forwardRef, useImperativeHandle, useRef } from 'react'; -import { Col, Row, Grid } from 'react-native-easy-grid'; +import React, { forwardRef, useImperativeHandle, useRef, useState } from 'react'; +import { Col, Grid, Row } from 'react-native-easy-grid'; import range from 'lodash/range'; import * as Animatable from 'react-native-animatable'; import * as Haptics from 'expo-haptics'; @@ -27,7 +27,7 @@ interface IPasscodeBase { } const Base = forwardRef(({ - theme, type, onEndProcess, previousPasscode, title, subtitle, onError, showBiometry, onBiometryPress + theme, type, onEndProcess, previousPasscode, title, subtitle, onError, showBiometry, onBiometryPress, }: IPasscodeBase, ref) => { const rootRef = useRef<any>(); const dotsRef = useRef<any>(); @@ -78,7 +78,7 @@ const Base = forwardRef(({ }); useImperativeHandle(ref, () => ({ - wrongPasscode, animate, clearPasscode + wrongPasscode, animate, clearPasscode, })); return ( diff --git a/app/containers/Passcode/Base/styles.ts b/app/containers/Passcode/Base/styles.ts index 252e5a8546..45f6e46f2e 100644 --- a/app/containers/Passcode/Base/styles.ts +++ b/app/containers/Passcode/Base/styles.ts @@ -4,22 +4,22 @@ import sharedStyles from '../../../views/Styles'; export default StyleSheet.create({ container: { - flex: 1 + flex: 1, }, titleView: { - justifyContent: 'center' + justifyContent: 'center', }, subtitleView: { justifyContent: 'center', - height: 32 + height: 32, }, row: { flex: 0, alignItems: 'center', - justifyContent: 'center' + justifyContent: 'center', }, buttonRow: { - height: 102 + height: 102, }, colButton: { flex: 0, @@ -27,44 +27,44 @@ export default StyleSheet.create({ marginRight: 12, alignItems: 'center', width: 78, - height: 78 + height: 78, }, buttonText: { fontSize: 28, - ...sharedStyles.textRegular + ...sharedStyles.textRegular, }, buttonView: { alignItems: 'center', justifyContent: 'center', width: 78, height: 78, - borderRadius: 4 + borderRadius: 4, }, textTitle: { fontSize: 22, - ...sharedStyles.textRegular + ...sharedStyles.textRegular, }, textSubtitle: { fontSize: 16, - ...sharedStyles.textMedium + ...sharedStyles.textMedium, }, dotsContainer: { flexDirection: 'row', justifyContent: 'center', alignItems: 'center', marginTop: 24, - marginBottom: 40 + marginBottom: 40, }, dotsView: { justifyContent: 'center', alignItems: 'center', - height: 16 + height: 16, }, grid: { justifyContent: 'center', - flexDirection: 'column' + flexDirection: 'column', }, iconView: { - marginVertical: 16 - } + marginVertical: 16, + }, }); diff --git a/app/containers/Passcode/PasscodeChoose.tsx b/app/containers/Passcode/PasscodeChoose.tsx index 70cb008385..2ba707a097 100644 --- a/app/containers/Passcode/PasscodeChoose.tsx +++ b/app/containers/Passcode/PasscodeChoose.tsx @@ -1,4 +1,4 @@ -import React, { useState, useRef } from 'react'; +import React, { useRef, useState } from 'react'; import * as Haptics from 'expo-haptics'; import { gestureHandlerRootHOC } from 'react-native-gesture-handler'; diff --git a/app/containers/Passcode/PasscodeEnter.tsx b/app/containers/Passcode/PasscodeEnter.tsx index 31fb809b05..d0728401a8 100644 --- a/app/containers/Passcode/PasscodeEnter.tsx +++ b/app/containers/Passcode/PasscodeEnter.tsx @@ -8,10 +8,10 @@ import Base from './Base'; import Locked from './Base/Locked'; import { TYPE } from './constants'; import { - ATTEMPTS_KEY, LOCKED_OUT_TIMER_KEY, PASSCODE_KEY, MAX_ATTEMPTS + ATTEMPTS_KEY, LOCKED_OUT_TIMER_KEY, MAX_ATTEMPTS, PASSCODE_KEY, } from '../../constants/localAuthentication'; -import { resetAttempts, biometryAuth } from '../../utils/localAuthentication'; -import { getLockedUntil, getDiff } from './utils'; +import { biometryAuth, resetAttempts } from '../../utils/localAuthentication'; +import { getDiff, getLockedUntil } from './utils'; import UserPreferences from '../../lib/userPreferences'; import I18n from '../../i18n'; @@ -31,12 +31,12 @@ const PasscodeEnter = ({ theme, hasBiometry, finishProcess }: IPasscodePasscodeE const { getItem: getAttempts, setItem: setAttempts } = useAsyncStorage(ATTEMPTS_KEY); const { setItem: setLockedUntil } = useAsyncStorage(LOCKED_OUT_TIMER_KEY); - const fetchPasscode = async() => { + const fetchPasscode = async () => { const p: any = await UserPreferences.getStringAsync(PASSCODE_KEY); setPasscode(p); }; - const biometry = async() => { + const biometry = async () => { if (hasBiometry && status === TYPE.ENTER) { const result = await biometryAuth(); if (result?.success) { @@ -45,7 +45,7 @@ const PasscodeEnter = ({ theme, hasBiometry, finishProcess }: IPasscodePasscodeE } }; - const readStorage = async() => { + const readStorage = async () => { lockedUntil = await getLockedUntil(); if (lockedUntil) { const diff = getDiff(lockedUntil); diff --git a/app/containers/Passcode/constants.ts b/app/containers/Passcode/constants.ts index ae268799ac..d07dc67fda 100644 --- a/app/containers/Passcode/constants.ts +++ b/app/containers/Passcode/constants.ts @@ -2,5 +2,5 @@ export const TYPE: any = { CHOOSE: 'choose', CONFIRM: 'confirm', ENTER: 'enter', - LOCKED: 'locked' + LOCKED: 'locked', }; diff --git a/app/containers/Passcode/utils.ts b/app/containers/Passcode/utils.ts index f333c6691f..07b8a949da 100644 --- a/app/containers/Passcode/utils.ts +++ b/app/containers/Passcode/utils.ts @@ -3,7 +3,7 @@ import moment from 'moment'; import { LOCKED_OUT_TIMER_KEY, TIME_TO_LOCK } from '../../constants/localAuthentication'; -export const getLockedUntil = async() => { +export const getLockedUntil = async () => { const t: any = await AsyncStorage.getItem(LOCKED_OUT_TIMER_KEY); if (t) { return moment(t).add(TIME_TO_LOCK); @@ -11,4 +11,4 @@ export const getLockedUntil = async() => { return null; }; // @ts-ignore -export const getDiff = t => new Date(t) - new Date(); +export const getDiff = (t) => new Date(t) - new Date(); diff --git a/app/containers/ReactionsModal.tsx b/app/containers/ReactionsModal.tsx index dde7a33730..aac8c4a5e4 100644 --- a/app/containers/ReactionsModal.tsx +++ b/app/containers/ReactionsModal.tsx @@ -1,5 +1,5 @@ import React from 'react'; -import { View, Text, FlatList, StyleSheet } from 'react-native'; +import { FlatList, StyleSheet, Text, View } from 'react-native'; import Modal from 'react-native-modal'; import Touchable from 'react-native-platform-touchable'; @@ -13,48 +13,48 @@ import SafeAreaView from './SafeAreaView'; const styles = StyleSheet.create({ safeArea: { - backgroundColor: 'transparent' + backgroundColor: 'transparent', }, titleContainer: { alignItems: 'center', - paddingVertical: 10 + paddingVertical: 10, }, title: { fontSize: 16, ...sharedStyles.textSemibold, - ...sharedStyles.textAlignCenter + ...sharedStyles.textAlignCenter, }, reactCount: { fontSize: 13, - ...sharedStyles.textRegular + ...sharedStyles.textRegular, }, peopleReacted: { fontSize: 14, - ...sharedStyles.textMedium + ...sharedStyles.textMedium, }, peopleItemContainer: { flex: 1, flexDirection: 'column', - justifyContent: 'center' + justifyContent: 'center', }, emojiContainer: { width: 50, height: 50, alignItems: 'center', - justifyContent: 'center' + justifyContent: 'center', }, itemContainer: { height: 50, - flexDirection: 'row' + flexDirection: 'row', }, listContainer: { - flex: 1 + flex: 1, }, closeButton: { position: 'absolute', left: 0, - top: 10 - } + top: 10, + }, }); const standardEmojiStyle = { fontSize: 20 }; const customEmojiStyle = { width: 20, height: 20 }; @@ -132,7 +132,7 @@ const ModalContent = React.memo(({ message, onClose, ...props }: IModalContent) style={styles.listContainer} data={message.reactions} renderItem={({ item }) => <Item item={item} {...props} />} - keyExtractor={item => item.emoji} + keyExtractor={(item) => item.emoji} /> </SafeAreaView> ); @@ -149,7 +149,7 @@ const ReactionsModal = React.memo(({ isVisible, onClose, theme, ...props }: IRea onSwipeComplete={onClose} swipeDirection={['up', 'left', 'right', 'down']} > - {/*@ts-ignore*/} + {/* @ts-ignore*/} <ModalContent onClose={onClose} theme={theme} {...props} /> </Modal> ), (prevProps, nextProps) => prevProps.isVisible === nextProps.isVisible && prevProps.theme === nextProps.theme); diff --git a/app/containers/RoomHeader/RoomHeader.stories.js b/app/containers/RoomHeader/RoomHeader.stories.js index bfea5e2722..a8ddfd4bef 100644 --- a/app/containers/RoomHeader/RoomHeader.stories.js +++ b/app/containers/RoomHeader/RoomHeader.stories.js @@ -1,12 +1,12 @@ /* eslint-disable import/no-extraneous-dependencies, import/no-unresolved, import/extensions, react/prop-types, react/destructuring-assignment */ import React from 'react'; -import { View, Dimensions } from 'react-native'; +import { Dimensions, View } from 'react-native'; import { storiesOf } from '@storybook/react-native'; -import RoomHeaderComponent from './RoomHeader'; import Header from '../Header'; import { longText } from '../../../storybook/utils'; import { ThemeContext } from '../../theme'; +import RoomHeaderComponent from './RoomHeader'; const stories = storiesOf('RoomHeader', module); diff --git a/app/containers/RoomHeader/RoomHeader.tsx b/app/containers/RoomHeader/RoomHeader.tsx index 33b0d37cfb..e09f74c453 100644 --- a/app/containers/RoomHeader/RoomHeader.tsx +++ b/app/containers/RoomHeader/RoomHeader.tsx @@ -1,5 +1,5 @@ import React, { useCallback } from 'react'; -import { View, Text, StyleSheet, TouchableOpacity } from 'react-native'; +import { StyleSheet, Text, TouchableOpacity, View } from 'react-native'; import I18n from '../../i18n'; import sharedStyles from '../../views/Styles'; @@ -9,7 +9,7 @@ import RoomTypeIcon from '../RoomTypeIcon'; import { withTheme } from '../../theme'; const HIT_SLOP = { - top: 5, right: 5, bottom: 5, left: 5 + top: 5, right: 5, bottom: 5, left: 5, }; const TITLE_SIZE = 16; const SUBTITLE_SIZE = 12; @@ -19,23 +19,23 @@ const getSubTitleSize = (scale: number) => SUBTITLE_SIZE * scale; const styles = StyleSheet.create({ container: { flex: 1, - justifyContent: 'center' + justifyContent: 'center', }, titleContainer: { alignItems: 'center', - flexDirection: 'row' + flexDirection: 'row', }, title: { flexShrink: 1, - ...sharedStyles.textSemibold + ...sharedStyles.textSemibold, }, subtitle: { flexShrink: 1, - ...sharedStyles.textRegular + ...sharedStyles.textRegular, }, typingUsers: { - ...sharedStyles.textSemibold - } + ...sharedStyles.textSemibold, + }, }); type TRoomHeaderSubTitle = { @@ -141,7 +141,7 @@ const HeaderTitle = React.memo(({ title, tmid, prid, scale, theme, testID }: TRo }); const Header = React.memo(({ - title, subtitle, parentTitle, type, status, width, height, prid, tmid, onPress, theme, isGroupChat, teamMain, testID, usersTyping = [] + title, subtitle, parentTitle, type, status, width, height, prid, tmid, onPress, theme, isGroupChat, teamMain, testID, usersTyping = [], }: IRoomHeader) => { const portrait = height > width; let scale = 1; diff --git a/app/containers/RoomHeader/index.tsx b/app/containers/RoomHeader/index.tsx index 454494118c..5d18b2ef34 100644 --- a/app/containers/RoomHeader/index.tsx +++ b/app/containers/RoomHeader/index.tsx @@ -29,10 +29,9 @@ interface IRoomHeaderContainerProps { } class RoomHeaderContainer extends Component<IRoomHeaderContainerProps, any> { - shouldComponentUpdate(nextProps: IRoomHeaderContainerProps) { const { - type, title, subtitle, status, statusText, connecting, connected, onPress, usersTyping, width, height, teamMain + type, title, subtitle, status, statusText, connecting, connected, onPress, usersTyping, width, height, teamMain, } = this.props; if (nextProps.type !== type) { return true; @@ -93,7 +92,7 @@ class RoomHeaderContainer extends Component<IRoomHeaderContainerProps, any> { height, parentTitle, isGroupChat, - testID + testID, } = this.props; let subtitle; @@ -147,7 +146,7 @@ const mapStateToProps = (state: any, ownProps: any) => { connected: state.meteor.connected, usersTyping: state.usersTyping, status, - statusText + statusText, }; }; diff --git a/app/containers/RoomTypeIcon.tsx b/app/containers/RoomTypeIcon.tsx index 459649a66b..ff0cedfc05 100644 --- a/app/containers/RoomTypeIcon.tsx +++ b/app/containers/RoomTypeIcon.tsx @@ -1,5 +1,6 @@ import React from 'react'; import { StyleSheet } from 'react-native'; + import { CustomIcon } from '../lib/Icons'; import { STATUS_COLORS, themes } from '../constants/colors'; import Status from './Status/Status'; @@ -7,8 +8,8 @@ import { withTheme } from '../theme'; const styles = StyleSheet.create({ icon: { - marginRight: 4 - } + marginRight: 4, + }, }); interface IRoomTypeIcon { @@ -22,7 +23,7 @@ interface IRoomTypeIcon { } const RoomTypeIcon = React.memo(({ - type, isGroupChat, status, style, theme, teamMain, size = 16 + type, isGroupChat, status, style, theme, teamMain, size = 16, }: IRoomTypeIcon) => { if (!type) { return null; @@ -32,7 +33,7 @@ const RoomTypeIcon = React.memo(({ const iconStyle = [ styles.icon, { color }, - style + style, ]; if (type === 'd' && !isGroupChat) { diff --git a/app/containers/SafeAreaView.tsx b/app/containers/SafeAreaView.tsx index c0e536f2ed..6a2047fb4d 100644 --- a/app/containers/SafeAreaView.tsx +++ b/app/containers/SafeAreaView.tsx @@ -1,13 +1,14 @@ import React from 'react'; import { StyleSheet } from 'react-native'; import { SafeAreaView as SafeAreaContext } from 'react-native-safe-area-context'; + import { themes } from '../constants/colors'; import { withTheme } from '../theme'; const styles = StyleSheet.create({ view: { - flex: 1 - } + flex: 1, + }, }); interface ISafeAreaView { diff --git a/app/containers/SearchBox.tsx b/app/containers/SearchBox.tsx index 191a01866c..2937ca2c68 100644 --- a/app/containers/SearchBox.tsx +++ b/app/containers/SearchBox.tsx @@ -1,5 +1,5 @@ import React from 'react'; -import { View, StyleSheet, Text } from 'react-native'; +import { StyleSheet, Text, View } from 'react-native'; import Touchable from 'react-native-platform-touchable'; import TextInput from '../presentation/TextInput'; @@ -14,7 +14,7 @@ const styles = StyleSheet.create({ container: { flexDirection: 'row', alignItems: 'center', - flex: 1 + flex: 1, }, searchBox: { alignItems: 'center', @@ -25,7 +25,7 @@ const styles = StyleSheet.create({ margin: 16, marginVertical: 10, paddingHorizontal: 10, - flex: 1 + flex: 1, }, input: { flex: 1, @@ -33,15 +33,15 @@ const styles = StyleSheet.create({ marginLeft: 8, paddingTop: 0, paddingBottom: 0, - ...sharedStyles.textRegular + ...sharedStyles.textRegular, }, cancel: { - marginRight: 15 + marginRight: 15, }, cancelText: { ...sharedStyles.textRegular, - fontSize: 17 - } + fontSize: 17, + }, }); interface ISearchBox { @@ -66,14 +66,14 @@ const SearchBox = ({ <View style={[ styles.container, - { backgroundColor: isIOS ? themes[theme].headerBackground : themes[theme].headerSecondaryBackground } + { backgroundColor: isIOS ? themes[theme].headerBackground : themes[theme].headerSecondaryBackground }, ]} > <View style={[styles.searchBox, { backgroundColor: themes[theme].searchboxBackground }]}> <CustomIcon name='search' size={14} color={themes[theme].auxiliaryText} /> <TextInput ref={inputRef} - /*@ts-ignore*/ + /* @ts-ignore*/ autoCapitalize='none' autoCorrect={false} blurOnSubmit diff --git a/app/containers/Status/Status.tsx b/app/containers/Status/Status.tsx index 70ebd62291..1803135017 100644 --- a/app/containers/Status/Status.tsx +++ b/app/containers/Status/Status.tsx @@ -1,4 +1,5 @@ import React from 'react'; + import { CustomIcon } from '../../lib/Icons'; import { STATUS_COLORS } from '../../constants/colors'; @@ -13,7 +14,7 @@ const Status = React.memo(({ style, status = 'offline', size = 32, ...props }: I const isNameValid = CustomIcon.hasIcon(name); const iconName = isNameValid ? name : 'status-offline'; const calculatedStyle = [{ - width: size, height: size, textAlignVertical: 'center' + width: size, height: size, textAlignVertical: 'center', }, style]; return ( diff --git a/app/containers/Status/index.tsx b/app/containers/Status/index.tsx index 6d49a85207..2769d42227 100644 --- a/app/containers/Status/index.tsx +++ b/app/containers/Status/index.tsx @@ -12,7 +12,7 @@ interface IStatusContainer { const StatusContainer = memo(({ style, size = 32, status }: IStatusContainer) => <Status size={size} style={style} status={status} />); const mapStateToProps = (state: any, ownProps: any) => ({ - status: state.meteor.connected ? (state.activeUsers[ownProps.id] && state.activeUsers[ownProps.id].status) : 'loading' + status: state.meteor.connected ? state.activeUsers[ownProps.id] && state.activeUsers[ownProps.id].status : 'loading', }); export default connect(mapStateToProps)(StatusContainer); diff --git a/app/containers/TextInput.tsx b/app/containers/TextInput.tsx index 7773fb4232..17e64fd05b 100644 --- a/app/containers/TextInput.tsx +++ b/app/containers/TextInput.tsx @@ -1,5 +1,5 @@ import React from 'react'; -import { View, StyleSheet, Text } from 'react-native'; +import { StyleSheet, Text, View } from 'react-native'; import { BorderlessButton } from 'react-native-gesture-handler'; import sharedStyles from '../views/Styles'; @@ -11,15 +11,15 @@ import ActivityIndicator from './ActivityIndicator'; const styles = StyleSheet.create({ error: { ...sharedStyles.textAlignCenter, - paddingTop: 5 + paddingTop: 5, }, inputContainer: { - marginBottom: 10 + marginBottom: 10, }, label: { marginBottom: 10, fontSize: 14, - ...sharedStyles.textSemibold + ...sharedStyles.textSemibold, }, input: { ...sharedStyles.textRegular, @@ -27,27 +27,27 @@ const styles = StyleSheet.create({ fontSize: 16, paddingHorizontal: 14, borderWidth: StyleSheet.hairlineWidth, - borderRadius: 2 + borderRadius: 2, }, inputIconLeft: { - paddingLeft: 45 + paddingLeft: 45, }, inputIconRight: { - paddingRight: 45 + paddingRight: 45, }, wrap: { - position: 'relative' + position: 'relative', }, iconContainer: { position: 'absolute', - top: 14 + top: 14, }, iconLeft: { - left: 15 + left: 15, }, iconRight: { - right: 15 - } + right: 15, + }, }); interface IRCTextInputProps { @@ -71,14 +71,13 @@ interface IRCTextInputProps { } export default class RCTextInput extends React.PureComponent<IRCTextInputProps, any> { - static defaultProps = { error: {}, - theme: 'light' + theme: 'light', } state = { - showPassword: false + showPassword: false, } get iconLeft() { @@ -147,7 +146,7 @@ export default class RCTextInput extends React.PureComponent<IRCTextInputProps, style={[ styles.label, { color: themes[theme].titleText }, - error.error && { color: dangerColor } + error.error && { color: dangerColor }, ]} > {label} @@ -155,7 +154,7 @@ export default class RCTextInput extends React.PureComponent<IRCTextInputProps, ) : null} <View style={styles.wrap}> <TextInput - /*@ts-ignore*/ + /* @ts-ignore*/ style={[ styles.input, iconLeft && styles.inputIconLeft, @@ -163,16 +162,16 @@ export default class RCTextInput extends React.PureComponent<IRCTextInputProps, { backgroundColor: themes[theme].backgroundColor, borderColor: themes[theme].separatorColor, - color: themes[theme].titleText + color: themes[theme].titleText, }, error.error && { color: dangerColor, - borderColor: dangerColor + borderColor: dangerColor, }, - inputStyle + inputStyle, ]} ref={inputRef} - /*@ts-ignore*/ + /* @ts-ignore*/ autoCorrect={false} autoCapitalize='none' underlineColorAndroid='transparent' diff --git a/app/containers/ThreadDetails.tsx b/app/containers/ThreadDetails.tsx index 17fc5fe46c..0215bd55df 100644 --- a/app/containers/ThreadDetails.tsx +++ b/app/containers/ThreadDetails.tsx @@ -1,5 +1,5 @@ import React from 'react'; -import { View, Text, StyleSheet } from 'react-native'; +import { StyleSheet, Text, View } from 'react-native'; import Touchable from 'react-native-platform-touchable'; import { CustomIcon } from '../lib/Icons'; @@ -11,32 +11,32 @@ const styles = StyleSheet.create({ container: { flex: 1, flexDirection: 'row', - alignItems: 'center' + alignItems: 'center', }, detailsContainer: { flex: 1, - flexDirection: 'row' + flexDirection: 'row', }, detailContainer: { flexDirection: 'row', alignItems: 'center', - marginRight: 8 + marginRight: 8, }, detailText: { fontSize: 10, marginLeft: 2, - ...sharedStyles.textSemibold + ...sharedStyles.textSemibold, }, badgeContainer: { flexDirection: 'row', - alignItems: 'center' + alignItems: 'center', }, badge: { width: 8, height: 8, borderRadius: 4, - marginRight: 8 - } + marginRight: 8, + }, }); interface IThreadDetails { @@ -60,7 +60,7 @@ const ThreadDetails = ({ badgeColor, toggleFollowThread, style, - theme + theme, }: IThreadDetails) => { let { tcount } = item; if (tcount >= 1000) { diff --git a/app/containers/Toast.tsx b/app/containers/Toast.tsx index 9a380b8dae..89099c5ad8 100644 --- a/app/containers/Toast.tsx +++ b/app/containers/Toast.tsx @@ -10,13 +10,13 @@ import { withTheme } from '../theme'; const styles = StyleSheet.create({ toast: { maxWidth: 300, - padding: 10 + padding: 10, }, text: { fontSize: 14, ...sharedStyles.textRegular, - ...sharedStyles.textAlignCenter - } + ...sharedStyles.textAlignCenter, + }, }); export const LISTENER = 'Toast'; @@ -27,6 +27,7 @@ interface IToastProps { class Toast extends React.Component<IToastProps, any> { private listener: any; + private toast: any; componentDidMount() { diff --git a/app/containers/TwoFactor/index.tsx b/app/containers/TwoFactor/index.tsx index 9221b2ace8..1ff56b6022 100644 --- a/app/containers/TwoFactor/index.tsx +++ b/app/containers/TwoFactor/index.tsx @@ -1,5 +1,5 @@ import React, { useEffect, useState } from 'react'; -import { View, Text, InteractionManager } from 'react-native'; +import { InteractionManager, Text, View } from 'react-native'; import isEmpty from 'lodash/isEmpty'; import { sha256 } from 'js-sha256'; import Modal from 'react-native-modal'; @@ -26,18 +26,18 @@ interface ITwoFactor { const methods: any = { totp: { text: 'Open_your_authentication_app_and_enter_the_code', - keyboardType: 'numeric' + keyboardType: 'numeric', }, email: { text: 'Verify_your_email_for_the_code_we_sent', - keyboardType: 'numeric' + keyboardType: 'numeric', }, password: { title: 'Please_enter_your_password', text: 'For_your_security_you_must_enter_your_current_password_to_continue', secureTextEntry: true, - keyboardType: 'default' - } + keyboardType: 'default', + }, }; const TwoFactor = React.memo(({ theme, isMasterDetail }: ITwoFactor) => { @@ -90,7 +90,7 @@ const TwoFactor = React.memo(({ theme, isMasterDetail }: ITwoFactor) => { const color = themes[theme].titleText; return ( <Modal - //@ts-ignore + // @ts-ignore transparent avoidKeyboard useNativeDriver @@ -102,7 +102,7 @@ const TwoFactor = React.memo(({ theme, isMasterDetail }: ITwoFactor) => { <Text style={[styles.title, { color }]}>{I18n.t(method?.title || 'Two_Factor_Authentication')}</Text> {method?.text ? <Text style={[styles.subtitle, { color }]}>{I18n.t(method.text)}</Text> : null} <TextInput - /*@ts-ignore*/ + /* @ts-ignore*/ value={code} theme={theme} inputRef={(e: any) => InteractionManager.runAfterInteractions(() => e?.getNativeRef()?.focus())} @@ -141,7 +141,7 @@ const TwoFactor = React.memo(({ theme, isMasterDetail }: ITwoFactor) => { }); const mapStateToProps = (state: any) => ({ - isMasterDetail: state.app.isMasterDetail + isMasterDetail: state.app.isMasterDetail, }); export default connect(mapStateToProps)(withTheme(TwoFactor)); diff --git a/app/containers/TwoFactor/styles.ts b/app/containers/TwoFactor/styles.ts index 1c5c789cb4..8b271943f5 100644 --- a/app/containers/TwoFactor/styles.ts +++ b/app/containers/TwoFactor/styles.ts @@ -6,40 +6,40 @@ export default StyleSheet.create({ container: { flex: 1, justifyContent: 'center', - alignItems: 'center' + alignItems: 'center', }, content: { padding: 16, width: '100%', - borderRadius: 4 + borderRadius: 4, }, title: { fontSize: 16, paddingBottom: 8, ...sharedStyles.textBold, - ...sharedStyles.textAlignCenter + ...sharedStyles.textAlignCenter, }, subtitle: { fontSize: 14, paddingBottom: 8, ...sharedStyles.textRegular, - ...sharedStyles.textAlignCenter + ...sharedStyles.textAlignCenter, }, sendEmail: { fontSize: 14, paddingBottom: 24, paddingTop: 8, alignSelf: 'center', - ...sharedStyles.textRegular + ...sharedStyles.textRegular, }, button: { - marginBottom: 0 + marginBottom: 0, }, buttonContainer: { flexDirection: 'row', - justifyContent: 'space-between' + justifyContent: 'space-between', }, tablet: { - height: undefined - } + height: undefined, + }, }); diff --git a/app/containers/UIKit/Actions.tsx b/app/containers/UIKit/Actions.tsx index 43f34a4e67..e0a38e3820 100644 --- a/app/containers/UIKit/Actions.tsx +++ b/app/containers/UIKit/Actions.tsx @@ -21,7 +21,7 @@ export const Actions = ({ blockId, appId, elements, parser, theme }: IActions) = return ( <> - {/*@ts-ignore*/} + {/* @ts-ignore*/} <Elements /> {showMoreVisible && (<Button theme={theme} title={I18n.t('Show_more')} onPress={() => setShowMoreVisible(false)} />)} </> diff --git a/app/containers/UIKit/Context.tsx b/app/containers/UIKit/Context.tsx index a3f734bc2a..d0c0974f66 100644 --- a/app/containers/UIKit/Context.tsx +++ b/app/containers/UIKit/Context.tsx @@ -1,5 +1,5 @@ import React from 'react'; -import { View, StyleSheet } from 'react-native'; +import { StyleSheet, View } from 'react-native'; import PropTypes from 'prop-types'; import { BLOCK_CONTEXT } from '@rocket.chat/ui-kit'; @@ -7,8 +7,8 @@ const styles = StyleSheet.create({ container: { minHeight: 36, alignItems: 'center', - flexDirection: 'row' - } + flexDirection: 'row', + }, }); export const Context = ({ elements, parser }: any) => ( @@ -19,5 +19,5 @@ export const Context = ({ elements, parser }: any) => ( Context.propTypes = { elements: PropTypes.array, - parser: PropTypes.object + parser: PropTypes.object, }; diff --git a/app/containers/UIKit/DatePicker.tsx b/app/containers/UIKit/DatePicker.tsx index 43df224719..707ec6ace9 100644 --- a/app/containers/UIKit/DatePicker.tsx +++ b/app/containers/UIKit/DatePicker.tsx @@ -1,5 +1,5 @@ import React, { useState } from 'react'; -import { View, StyleSheet, Text } from 'react-native'; +import { StyleSheet, Text, View } from 'react-native'; import DateTimePicker from '@react-native-community/datetimepicker'; import Touchable from 'react-native-platform-touchable'; import { BLOCK_CONTEXT } from '@rocket.chat/ui-kit'; @@ -8,7 +8,6 @@ import moment from 'moment'; import Button from '../Button'; import { textParser } from './utils'; import { themes } from '../../constants/colors'; - import sharedStyles from '../../views/Styles'; import { CustomIcon } from '../../lib/Icons'; import { isAndroid } from '../../utils/deviceInfo'; @@ -21,19 +20,19 @@ const styles = StyleSheet.create({ borderWidth: StyleSheet.hairlineWidth, borderRadius: 2, alignItems: 'center', - flexDirection: 'row' + flexDirection: 'row', }, inputText: { ...sharedStyles.textRegular, - fontSize: 14 + fontSize: 14, }, icon: { right: 16, - position: 'absolute' + position: 'absolute', }, loading: { - padding: 0 - } + padding: 0, + }, }); interface IDatePicker { @@ -51,7 +50,7 @@ interface IDatePicker { } export const DatePicker = ({ - element, language, action, context, theme, loading, value, error + element, language, action, context, theme, loading, value, error, }: IDatePicker) => { const [show, onShow] = useState(false); const { initial_date, placeholder } = element; @@ -86,7 +85,7 @@ export const DatePicker = ({ <Text style={[ styles.inputText, - { color: error ? themes[theme].dangerColor : themes[theme].titleText } + { color: error ? themes[theme].dangerColor : themes[theme].titleText }, ]} > {currentDate.toLocaleDateString(language)} diff --git a/app/containers/UIKit/Divider.tsx b/app/containers/UIKit/Divider.tsx index f616f8117d..927ce84a0b 100644 --- a/app/containers/UIKit/Divider.tsx +++ b/app/containers/UIKit/Divider.tsx @@ -7,8 +7,8 @@ const styles = StyleSheet.create({ separator: { width: '100%', alignSelf: 'center', - marginBottom: 16 - } + marginBottom: 16, + }, }); export const Divider = () => <List.Separator style={styles.separator} />; diff --git a/app/containers/UIKit/Image.tsx b/app/containers/UIKit/Image.tsx index 6a2b8b287e..9a54367816 100644 --- a/app/containers/UIKit/Image.tsx +++ b/app/containers/UIKit/Image.tsx @@ -1,5 +1,5 @@ import React from 'react'; -import { View, StyleSheet } from 'react-native'; +import { StyleSheet, View } from 'react-native'; import FastImage from '@rocket.chat/react-native-fast-image'; import { BLOCK_CONTEXT } from '@rocket.chat/ui-kit'; @@ -8,11 +8,11 @@ import Navigation from '../../lib/Navigation'; const styles = StyleSheet.create({ image: { - borderRadius: 2 + borderRadius: 2, }, mediaContext: { - marginRight: 8 - } + marginRight: 8, + }, }); interface IThumb { diff --git a/app/containers/UIKit/Input.tsx b/app/containers/UIKit/Input.tsx index 43bf6972dc..775b53c813 100644 --- a/app/containers/UIKit/Input.tsx +++ b/app/containers/UIKit/Input.tsx @@ -7,28 +7,28 @@ import { themes } from '../../constants/colors'; const styles = StyleSheet.create({ container: { - marginBottom: 16 + marginBottom: 16, }, label: { fontSize: 14, marginVertical: 10, - ...sharedStyles.textSemibold + ...sharedStyles.textSemibold, }, description: { marginBottom: 10, fontSize: 15, - ...sharedStyles.textRegular + ...sharedStyles.textRegular, }, error: { marginTop: 8, fontSize: 14, ...sharedStyles.textRegular, - ...sharedStyles.textAlignCenter + ...sharedStyles.textAlignCenter, }, hint: { fontSize: 14, - ...sharedStyles.textRegular - } + ...sharedStyles.textRegular, + }, }); interface IInput { @@ -42,7 +42,7 @@ interface IInput { } export const Input = ({ - element, parser, label, description, error, hint, theme + element, parser, label, description, error, hint, theme, }: IInput) => ( <View style={styles.container}> {label ? <Text style={[styles.label, { color: error ? themes[theme].dangerColor : themes[theme].titleText }]}>{label}</Text> : null} diff --git a/app/containers/UIKit/MultiSelect/Chips.tsx b/app/containers/UIKit/MultiSelect/Chips.tsx index 272fdca5a1..66e098808b 100644 --- a/app/containers/UIKit/MultiSelect/Chips.tsx +++ b/app/containers/UIKit/MultiSelect/Chips.tsx @@ -6,7 +6,6 @@ import FastImage from '@rocket.chat/react-native-fast-image'; import { themes } from '../../../constants/colors'; import { textParser } from '../utils'; import { CustomIcon } from '../../../lib/Icons'; - import styles from './styles'; interface IChip { @@ -50,7 +49,7 @@ Chip.propTypes = { const Chips = ({ items, onSelect, style, theme }: IChips) => ( <View style={styles.chips}> - {items.map(item => <Chip key={keyExtractor(item)} item={item} onSelect={onSelect} style={style} theme={theme} />)} + {items.map((item) => <Chip key={keyExtractor(item)} item={item} onSelect={onSelect} style={style} theme={theme} />)} </View> ); diff --git a/app/containers/UIKit/MultiSelect/Input.tsx b/app/containers/UIKit/MultiSelect/Input.tsx index b0c9ea8e87..dbc8f369fa 100644 --- a/app/containers/UIKit/MultiSelect/Input.tsx +++ b/app/containers/UIKit/MultiSelect/Input.tsx @@ -1,5 +1,5 @@ import React from 'react'; -import { View, Text } from 'react-native'; +import { Text, View } from 'react-native'; import Touchable from 'react-native-platform-touchable'; import { CustomIcon } from '../../../lib/Icons'; @@ -18,7 +18,7 @@ interface IInput { } const Input = ({ - children, onPress, theme, loading, inputStyle, placeholder, disabled + children, onPress, theme, loading, inputStyle, placeholder, disabled, }: IInput) => ( <Touchable onPress={onPress} diff --git a/app/containers/UIKit/MultiSelect/Items.tsx b/app/containers/UIKit/MultiSelect/Items.tsx index 2513cba3e0..d30810d635 100644 --- a/app/containers/UIKit/MultiSelect/Items.tsx +++ b/app/containers/UIKit/MultiSelect/Items.tsx @@ -1,5 +1,5 @@ import React from 'react'; -import { Text, FlatList } from 'react-native'; +import { FlatList, Text } from 'react-native'; import Touchable from 'react-native-platform-touchable'; import FastImage from '@rocket.chat/react-native-fast-image'; @@ -7,7 +7,6 @@ import Check from '../../Check'; import * as List from '../../List'; import { textParser } from '../utils'; import { themes } from '../../../constants/colors'; - import styles from './styles'; interface IItem { @@ -40,7 +39,7 @@ const Item = ({ item, selected, onSelect, theme }: IItem) => { onPress={() => onSelect(item)} style={[ styles.item, - { backgroundColor: themes[theme].backgroundColor } + { backgroundColor: themes[theme].backgroundColor }, ]} > <> @@ -60,7 +59,7 @@ const Items = ({ items, selected, onSelect, theme }: IItems) => ( keyboardShouldPersistTaps='always' ItemSeparatorComponent={List.Separator} keyExtractor={keyExtractor} - renderItem={({ item }) => <Item item={item} onSelect={onSelect} theme={theme} selected={selected.find(s => s === item.value)} />} + renderItem={({ item }) => <Item item={item} onSelect={onSelect} theme={theme} selected={selected.find((s) => s === item.value)} />} /> ); diff --git a/app/containers/UIKit/MultiSelect/index.tsx b/app/containers/UIKit/MultiSelect/index.tsx index 1e3a3c762d..937a3291fc 100644 --- a/app/containers/UIKit/MultiSelect/index.tsx +++ b/app/containers/UIKit/MultiSelect/index.tsx @@ -1,21 +1,18 @@ -import React, { useState, useEffect } from 'react'; +import React, { useEffect, useState } from 'react'; import { - View, Text, TouchableWithoutFeedback, Modal, KeyboardAvoidingView, Animated, Easing, StyleSheet + Animated, Easing, KeyboardAvoidingView, Modal, StyleSheet, Text, TouchableWithoutFeedback, View, } from 'react-native'; import { BLOCK_CONTEXT } from '@rocket.chat/ui-kit'; import Button from '../../Button'; import TextInput from '../../TextInput'; - import { textParser } from '../utils'; import { themes } from '../../../constants/colors'; import I18n from '../../../i18n'; import { isIOS } from '../../../utils/deviceInfo'; - import Chips from './Chips'; import Items from './Items'; import Input from './Input'; - import styles from './styles'; interface IMultiSelect { @@ -39,7 +36,7 @@ const ANIMATION_DURATION = 200; const ANIMATION_PROPS = { duration: ANIMATION_DURATION, easing: Easing.inOut(Easing.quad), - useNativeDriver: true + useNativeDriver: true, }; const animatedValue = new Animated.Value(0); @@ -57,7 +54,7 @@ export const MultiSelect = React.memo(({ onClose = () => {}, disabled, inputStyle, - theme + theme, }: IMultiSelect) => { const [selected, select] = useState<any>(Array.isArray(values) ? values : []); const [open, setOpen] = useState(false); @@ -86,8 +83,8 @@ export const MultiSelect = React.memo(({ animatedValue, { toValue: 1, - ...ANIMATION_PROPS - } + ...ANIMATION_PROPS, + }, ).start(); setShowContent(true); }; @@ -98,8 +95,8 @@ export const MultiSelect = React.memo(({ animatedValue, { toValue: 0, - ...ANIMATION_PROPS - } + ...ANIMATION_PROPS, + }, ).start(() => setShowContent(false)); }; @@ -129,7 +126,7 @@ export const MultiSelect = React.memo(({ <View style={[styles.content, { backgroundColor: themes[theme].backgroundColor }]}> <TextInput testID='multi-select-search' - /*@ts-ignore*/ + /* @ts-ignore*/ onChangeText={onSearch || onSearchChange} placeholder={I18n.t('Search')} theme={theme} @@ -142,7 +139,7 @@ export const MultiSelect = React.memo(({ const translateY = animatedValue.interpolate({ inputRange: [0, 1], - outputRange: [600, 0] + outputRange: [600, 0], }); let button = multiselect ? ( @@ -176,7 +173,7 @@ export const MultiSelect = React.memo(({ disabled={disabled} inputStyle={inputStyle} > - {/*@ts-ignore*/} + {/* @ts-ignore*/} {items.length ? <Chips items={items} onSelect={onSelect} theme={theme} /> : <Text style={[styles.pickerText, { color: themes[theme].auxiliaryText }]}>{placeholder.text}</Text>} </Input> ); @@ -193,9 +190,9 @@ export const MultiSelect = React.memo(({ > <TouchableWithoutFeedback onPress={onHide}> <View style={styles.container}> - {/*@ts-ignore*/} + {/* @ts-ignore*/} <View style={{ ...StyleSheet.absoluteFill, opacity: themes[theme].backdropOpacity, backgroundColor: themes[theme].backdropColor }} /> - {/*@ts-ignore*/} + {/* @ts-ignore*/} <KeyboardAvoidingView style={styles.keyboardView} behavior={behavior}> <Animated.View style={[styles.animatedContent, { transform: [{ translateY }] }]}> {showContent ? renderContent() : null} diff --git a/app/containers/UIKit/MultiSelect/styles.ts b/app/containers/UIKit/MultiSelect/styles.ts index 9954d8da0d..120410e89e 100644 --- a/app/containers/UIKit/MultiSelect/styles.ts +++ b/app/containers/UIKit/MultiSelect/styles.ts @@ -6,34 +6,34 @@ export default StyleSheet.create<any>({ container: { flex: 1, alignItems: 'center', - justifyContent: 'flex-end' + justifyContent: 'flex-end', }, modal: { height: 300, width: '100%', borderTopRightRadius: 16, borderTopLeftRadius: 16, - overflow: 'hidden' + overflow: 'hidden', }, content: { - padding: 16 + padding: 16, }, animatedContent: { - width: '100%' + width: '100%', }, keyboardView: { - width: '100%' + width: '100%', }, pickerText: { ...sharedStyles.textRegular, paddingLeft: 6, - fontSize: 16 + fontSize: 16, }, item: { height: 48, maxWidth: '85%', alignItems: 'center', - flexDirection: 'row' + flexDirection: 'row', }, input: { minHeight: 48, @@ -42,23 +42,23 @@ export default StyleSheet.create<any>({ borderWidth: StyleSheet.hairlineWidth, borderRadius: 2, alignItems: 'center', - flexDirection: 'row' + flexDirection: 'row', }, icon: { position: 'absolute', - right: 16 + right: 16, }, itemContent: { - paddingBottom: 36 + paddingBottom: 36, }, items: { - height: 226 + height: 226, }, chips: { paddingTop: 8, flexDirection: 'row', flexWrap: 'wrap', - marginRight: 50 + marginRight: 50, }, chip: { flexDirection: 'row', @@ -67,24 +67,24 @@ export default StyleSheet.create<any>({ alignItems: 'center', paddingHorizontal: 4, marginBottom: 8, - marginRight: 8 + marginRight: 8, }, chipText: { paddingHorizontal: 8, flexShrink: 1, ...sharedStyles.textMedium, - fontSize: 14 + fontSize: 14, }, chipImage: { marginLeft: 4, borderRadius: 2, width: 20, - height: 20 + height: 20, }, itemImage: { marginRight: 8, borderRadius: 2, width: 24, - height: 24 - } + height: 24, + }, }); diff --git a/app/containers/UIKit/Overflow.tsx b/app/containers/UIKit/Overflow.tsx index 096f395d16..114da09e41 100644 --- a/app/containers/UIKit/Overflow.tsx +++ b/app/containers/UIKit/Overflow.tsx @@ -1,5 +1,5 @@ import React, { useState } from 'react'; -import { Text, FlatList, StyleSheet } from 'react-native'; +import { FlatList, StyleSheet, Text } from 'react-native'; import Popover from 'react-native-popover-view'; import Touchable from 'react-native-platform-touchable'; @@ -39,15 +39,15 @@ const keyExtractor = (item: any) => item.value; const styles = StyleSheet.create({ menu: { - justifyContent: 'center' + justifyContent: 'center', }, option: { padding: 8, - minHeight: 32 + minHeight: 32, }, loading: { - padding: 0 - } + padding: 0, + }, }); const Option = ({ option: { text, value }, onOptionPress, parser, theme }: IOption) => ( @@ -83,8 +83,8 @@ export const Overflow = ({ element, loading, action, parser, theme }: IOverflow) return ( <> <Touchable - /*@ts-ignore*/ - ref={ref => touchable[blockId] = ref} + /* @ts-ignore*/ + ref={(ref) => touchable[blockId] = ref} background={Touchable.Ripple(themes[theme].bannerBackground)} onPress={() => onShow(!show)} hitSlop={BUTTON_HIT_SLOP} @@ -94,7 +94,7 @@ export const Overflow = ({ element, loading, action, parser, theme }: IOverflow) </Touchable> <Popover isVisible={show} - /*@ts-ignore*/ + /* @ts-ignore*/ fromView={touchable[blockId]} onRequestClose={() => onShow(false)} > diff --git a/app/containers/UIKit/Section.tsx b/app/containers/UIKit/Section.tsx index a95aa10f31..61425e1e44 100644 --- a/app/containers/UIKit/Section.tsx +++ b/app/containers/UIKit/Section.tsx @@ -1,26 +1,26 @@ import React from 'react'; -import { View, Text, StyleSheet } from 'react-native'; +import { StyleSheet, Text, View } from 'react-native'; import { BLOCK_CONTEXT } from '@rocket.chat/ui-kit'; import { themes } from '../../constants/colors'; const styles = StyleSheet.create({ content: { - marginBottom: 8 + marginBottom: 8, }, row: { - flexDirection: 'row' + flexDirection: 'row', }, column: { - justifyContent: 'center' + justifyContent: 'center', }, text: { flex: 1, - padding: 4 + padding: 4, }, field: { - marginVertical: 6 - } + marginVertical: 6, + }, }); interface IAccessory { @@ -49,7 +49,7 @@ interface ISection { const Accessory = ({ blockId, appId, element, parser }: IAccessory) => parser.renderAccessories( { blockId, appId, ...element }, BLOCK_CONTEXT.SECTION, - parser + parser, ); const Fields = ({ fields, parser, theme }: IFields) => fields.map((field: any) => ( @@ -64,7 +64,7 @@ export const Section = ({ blockId, appId, text, fields, accessory, parser, theme <View style={[ styles.content, - accessory && accessoriesRight.includes(accessory.type) ? styles.row : styles.column + accessory && accessoriesRight.includes(accessory.type) ? styles.row : styles.column, ]} > {text ? <View style={styles.text}>{parser.text(text)}</View> : null} diff --git a/app/containers/UIKit/Select.tsx b/app/containers/UIKit/Select.tsx index 7c442a84dc..095d08fc67 100644 --- a/app/containers/UIKit/Select.tsx +++ b/app/containers/UIKit/Select.tsx @@ -12,25 +12,25 @@ import ActivityIndicator from '../ActivityIndicator'; const styles = StyleSheet.create({ iosPadding: { height: 48, - justifyContent: 'center' + justifyContent: 'center', }, viewContainer: { marginBottom: 16, paddingHorizontal: 16, borderWidth: StyleSheet.hairlineWidth, borderRadius: 2, - justifyContent: 'center' + justifyContent: 'center', }, pickerText: { ...sharedStyles.textRegular, - fontSize: 16 + fontSize: 16, }, icon: { - right: 16 + right: 16, }, loading: { - padding: 0 - } + padding: 0, + }, }); interface ISelect { @@ -53,15 +53,15 @@ export const Select = ({ loading, disabled, value: initialValue, - theme + theme, }: ISelect) => { const [selected, setSelected] = useState(!Array.isArray(initialValue) && initialValue); - const items = options.map(option => ({ label: textParser([option.text]), value: option.value })); + const items = options.map((option) => ({ label: textParser([option.text]), value: option.value })); const pickerStyle = { ...styles.viewContainer, - ...(isIOS ? styles.iosPadding : {}), + ...isIOS ? styles.iosPadding : {}, borderColor: themes[theme].separatorColor, - backgroundColor: themes[theme].backgroundColor + backgroundColor: themes[theme].backgroundColor, }; const Icon = () => ( @@ -83,7 +83,7 @@ export const Select = ({ }} style={{ viewContainer: pickerStyle, - inputAndroidContainer: pickerStyle + inputAndroidContainer: pickerStyle, }} Icon={Icon} // @ts-ignore diff --git a/app/containers/UIKit/index.tsx b/app/containers/UIKit/index.tsx index 58c5394783..7e91a6d7be 100644 --- a/app/containers/UIKit/index.tsx +++ b/app/containers/UIKit/index.tsx @@ -2,21 +2,19 @@ import React, { useContext } from 'react'; import { StyleSheet, Text } from 'react-native'; import { - uiKitMessage, + BLOCK_CONTEXT, UiKitParserMessage, - uiKitModal, UiKitParserModal, - BLOCK_CONTEXT + uiKitMessage, + uiKitModal, } from '@rocket.chat/ui-kit'; import Markdown from '../markdown'; import Button from '../Button'; import TextInput from '../TextInput'; - -import { useBlockContext, textParser } from './utils'; +import { textParser, useBlockContext } from './utils'; import { themes } from '../../constants/colors'; import sharedStyles from '../../views/Styles'; - import { Divider } from './Divider'; import { Section } from './Section'; import { Actions } from './Actions'; @@ -31,20 +29,20 @@ import { ThemeContext } from '../../theme'; const styles = StyleSheet.create({ input: { - marginBottom: 0 + marginBottom: 0, }, multiline: { - height: 130 + height: 130, }, button: { - marginBottom: 16 + marginBottom: 16, }, text: { fontSize: 16, lineHeight: 22, textAlignVertical: 'center', - ...sharedStyles.textRegular - } + ...sharedStyles.textRegular, + }, }); const plainText = ({ text } = { text: '' }) => text; @@ -117,7 +115,7 @@ class MessageParser extends UiKitParserMessage { } datePicker(element: any, context: any) { - const [{loading, value, error, language}, action]: any = useBlockContext(element, context); + const [{ loading, value, error, language }, action]: any = useBlockContext(element, context); const { theme }: any = useContext(ThemeContext); return ( <DatePicker @@ -198,7 +196,7 @@ class ModalParser extends UiKitParserModal { } input({ - element, blockId, appId, label, description, hint + element, blockId, appId, label, description, hint, }: any, context: any) { const [{ error }]: any = useBlockContext({ ...element, appId, blockId }, context); const { theme }: any = useContext(ThemeContext); diff --git a/app/containers/UIKit/utils.ts b/app/containers/UIKit/utils.ts index d95ff0e628..0aee682a5b 100644 --- a/app/containers/UIKit/utils.ts +++ b/app/containers/UIKit/utils.ts @@ -8,16 +8,16 @@ export const defaultContext: any = { action: (...args: any) => console.log(args), state: console.log, appId: '123456789ABCDEFGHJKLMNPQRSTUVWXYZabcdefghijkmnopqrstuvwxyz', - errors: {} + errors: {}, }; export const KitContext = React.createContext(defaultContext); export const useBlockContext = ({ - blockId, actionId, appId, initialValue + blockId, actionId, appId, initialValue, }: any, context: any) => { const { - action, appId: appIdFromContext, viewId, state, language, errors, values = {} + action, appId: appIdFromContext, viewId, state, language, errors, values = {}, } = useContext(KitContext); const { value = initialValue } = values[actionId] || {}; const [loading, setLoading] = useState(false); @@ -26,8 +26,8 @@ export const useBlockContext = ({ if ([BLOCK_CONTEXT.SECTION, BLOCK_CONTEXT.ACTION].includes(context)) { return [{ - loading, setLoading, error, value, language - }, async({ value }: any) => { + loading, setLoading, error, value, language, + }, async ({ value }: any) => { setLoading(true); try { await action({ @@ -35,7 +35,7 @@ export const useBlockContext = ({ appId: appId || appIdFromContext, actionId, value, - viewId + viewId, }); } catch (e) { // do nothing @@ -45,15 +45,15 @@ export const useBlockContext = ({ } return [{ - loading, setLoading, value, error, language - }, async({ value }: any) => { + loading, setLoading, value, error, language, + }, async ({ value }: any) => { setLoading(true); try { await state({ blockId, appId, actionId, - value + value, }); } catch (e) { // do nothing diff --git a/app/containers/markdown/AtMention.tsx b/app/containers/markdown/AtMention.tsx index 72aba85340..612f8c7bf6 100644 --- a/app/containers/markdown/AtMention.tsx +++ b/app/containers/markdown/AtMention.tsx @@ -2,9 +2,8 @@ import React from 'react'; import { Text } from 'react-native'; import { themes } from '../../constants/colors'; - import styles from './styles'; -import { logEvent, events } from '../../utils/log'; +import { events, logEvent } from '../../utils/log'; interface IAtMention { mention: string; @@ -17,7 +16,7 @@ interface IAtMention { } const AtMention = React.memo(({ - mention, mentions, username, navToRoomInfo, style = [], useRealName, theme + mention, mentions, username, navToRoomInfo, style = [], useRealName, theme, }: IAtMention) => { if (mention === 'all' || mention === 'here') { return ( @@ -25,9 +24,9 @@ const AtMention = React.memo(({ style={[ styles.mention, { - color: themes[theme].mentionGroupColor + color: themes[theme].mentionGroupColor, }, - ...style + ...style, ]} >{mention} </Text> @@ -37,11 +36,11 @@ const AtMention = React.memo(({ let mentionStyle = {}; if (mention === username) { mentionStyle = { - color: themes[theme].mentionMeColor + color: themes[theme].mentionMeColor, }; } else { mentionStyle = { - color: themes[theme].mentionOtherColor + color: themes[theme].mentionOtherColor, }; } @@ -51,7 +50,7 @@ const AtMention = React.memo(({ logEvent(events.ROOM_MENTION_GO_USER_INFO); const navParam = { t: 'd', - rid: user && user._id + rid: user && user._id, }; navToRoomInfo(navParam); }; diff --git a/app/containers/markdown/BlockQuote.tsx b/app/containers/markdown/BlockQuote.tsx index 3174ca4de7..bf07597310 100644 --- a/app/containers/markdown/BlockQuote.tsx +++ b/app/containers/markdown/BlockQuote.tsx @@ -2,7 +2,6 @@ import React from 'react'; import { View } from 'react-native'; import { themes } from '../../constants/colors'; - import styles from './styles'; interface IBlockQuote { diff --git a/app/containers/markdown/Emoji.tsx b/app/containers/markdown/Emoji.tsx index cda761b74e..01fe7eb774 100644 --- a/app/containers/markdown/Emoji.tsx +++ b/app/containers/markdown/Emoji.tsx @@ -4,7 +4,6 @@ import { Text } from 'react-native'; import shortnameToUnicode from '../../utils/shortnameToUnicode'; import CustomEmoji from '../EmojiPicker/CustomEmoji'; import { themes } from '../../constants/colors'; - import styles from './styles'; interface IEmoji { @@ -20,7 +19,7 @@ interface IEmoji { } const Emoji = React.memo(({ - literal, isMessageContainsOnlyEmoji, getCustomEmoji, baseUrl, customEmojis = true, style = {}, theme + literal, isMessageContainsOnlyEmoji, getCustomEmoji, baseUrl, customEmojis = true, style = {}, theme, }: IEmoji) => { const emojiUnicode = shortnameToUnicode(literal); const emoji: any = getCustomEmoji && getCustomEmoji(literal.replace(/:/g, '')); @@ -30,7 +29,7 @@ const Emoji = React.memo(({ baseUrl={baseUrl} style={[ isMessageContainsOnlyEmoji ? styles.customEmojiBig : styles.customEmoji, - style + style, ]} emoji={emoji} /> @@ -41,7 +40,7 @@ const Emoji = React.memo(({ style={[ { color: themes[theme!].bodyText }, isMessageContainsOnlyEmoji ? styles.textBig : styles.text, - style + style, ]} > {emojiUnicode} diff --git a/app/containers/markdown/Hashtag.tsx b/app/containers/markdown/Hashtag.tsx index 29902ff6dc..668c011db4 100644 --- a/app/containers/markdown/Hashtag.tsx +++ b/app/containers/markdown/Hashtag.tsx @@ -2,7 +2,6 @@ import React from 'react'; import { Text } from 'react-native'; import { themes } from '../../constants/colors'; - import styles from './styles'; interface IHashtag { @@ -18,21 +17,21 @@ interface IHashtag { const Hashtag = React.memo(({ hashtag, channels, navToRoomInfo, style = [], theme }: IHashtag) => { const handlePress = () => { - const index = channels.findIndex(channel => channel.name === hashtag); + const index = channels.findIndex((channel) => channel.name === hashtag); const navParam = { t: 'c', - rid: channels[index]._id + rid: channels[index]._id, }; navToRoomInfo(navParam); }; - if (channels && channels.length && channels.findIndex(channel => channel.name === hashtag) !== -1) { + if (channels && channels.length && channels.findIndex((channel) => channel.name === hashtag) !== -1) { return ( <Text style={[ styles.mention, { - color: themes[theme].mentionOtherColor + color: themes[theme].mentionOtherColor, }, ...style]} onPress={handlePress} diff --git a/app/containers/markdown/Link.tsx b/app/containers/markdown/Link.tsx index 5c30baf05a..3d3c6dcf1c 100644 --- a/app/containers/markdown/Link.tsx +++ b/app/containers/markdown/Link.tsx @@ -1,5 +1,5 @@ import React from 'react'; -import { Text, Clipboard } from 'react-native'; +import { Clipboard, Text } from 'react-native'; import styles from './styles'; import { themes } from '../../constants/colors'; @@ -26,7 +26,7 @@ const Link = React.memo(({ children, link, theme, onLinkPress }: ILink) => { openLink(link, theme); }; - const childLength = React.Children.toArray(children).filter(o => o).length; + const childLength = React.Children.toArray(children).filter((o) => o).length; const onLongPress = () => { Clipboard.setString(link); EventEmitter.emit(LISTENER, { message: I18n.t('Copied_to_clipboard') }); diff --git a/app/containers/markdown/List.tsx b/app/containers/markdown/List.tsx index 68c830408a..e4116fed1e 100644 --- a/app/containers/markdown/List.tsx +++ b/app/containers/markdown/List.tsx @@ -27,7 +27,7 @@ const List = React.memo(({ children, ordered, tight, start = 1, numberOfLines = bulletWidth, ordered, tight, - index: start + index + index: start + index, })); return ( diff --git a/app/containers/markdown/ListItem.tsx b/app/containers/markdown/ListItem.tsx index 140619e86a..8d0f53d61a 100644 --- a/app/containers/markdown/ListItem.tsx +++ b/app/containers/markdown/ListItem.tsx @@ -6,15 +6,15 @@ import { themes } from '../../constants/colors'; const style = StyleSheet.create({ container: { flexDirection: 'row', - alignItems: 'flex-start' + alignItems: 'flex-start', }, bullet: { alignItems: 'flex-end', - marginRight: 5 + marginRight: 5, }, contents: { - flex: 1 - } + flex: 1, + }, }); interface IListItem { @@ -28,7 +28,7 @@ interface IListItem { } const ListItem = React.memo(({ - children, level, bulletWidth, continue: _continue, ordered, index, theme + children, level, bulletWidth, continue: _continue, ordered, index, theme, }: IListItem) => { let bullet; if (_continue) { diff --git a/app/containers/markdown/Table.tsx b/app/containers/markdown/Table.tsx index efa0fa9aff..cbc436729a 100644 --- a/app/containers/markdown/Table.tsx +++ b/app/containers/markdown/Table.tsx @@ -1,5 +1,5 @@ import React from 'react'; -import { ScrollView, TouchableOpacity, View, Text } from 'react-native'; +import { ScrollView, Text, TouchableOpacity, View } from 'react-native'; import { CELL_WIDTH } from './TableCell'; import styles from './styles'; @@ -18,7 +18,7 @@ const MAX_HEIGHT = 300; const Table = React.memo(({ children, numColumns, theme }: ITable) => { const getTableWidth = () => numColumns * CELL_WIDTH; - const renderRows = (drawExtraBorders: boolean = true) => { + const renderRows = (drawExtraBorders = true) => { const tableStyle = [styles.table, { borderColor: themes[theme].borderColor }]; if (drawExtraBorders) { tableStyle.push(styles.tableExtraBorders); @@ -26,7 +26,7 @@ const Table = React.memo(({ children, numColumns, theme }: ITable) => { const rows: any = React.Children.toArray(children); rows[rows.length - 1] = React.cloneElement(rows[rows.length - 1], { - isLastRow: true + isLastRow: true, }); return ( diff --git a/app/containers/markdown/TableCell.tsx b/app/containers/markdown/TableCell.tsx index 03d3913c44..3813193de6 100644 --- a/app/containers/markdown/TableCell.tsx +++ b/app/containers/markdown/TableCell.tsx @@ -2,7 +2,6 @@ import React from 'react'; import { Text, View } from 'react-native'; import { themes } from '../../constants/colors'; - import styles from './styles'; interface ITableCell { diff --git a/app/containers/markdown/TableRow.tsx b/app/containers/markdown/TableRow.tsx index 75a5ab7850..b3ede77362 100644 --- a/app/containers/markdown/TableRow.tsx +++ b/app/containers/markdown/TableRow.tsx @@ -2,7 +2,6 @@ import React from 'react'; import { View } from 'react-native'; import { themes } from '../../constants/colors'; - import styles from './styles'; interface ITableRow { @@ -19,7 +18,7 @@ const TableRow = React.memo(({ isLastRow, children: _children, theme }: ITableRo const children: any = React.Children.toArray(_children); children[children.length - 1] = React.cloneElement(children[children.length - 1], { - isLastCell: true + isLastCell: true, }); return <View style={rowStyle}>{children}</View>; diff --git a/app/containers/markdown/index.tsx b/app/containers/markdown/index.tsx index 00308cac27..384b4b5daa 100644 --- a/app/containers/markdown/index.tsx +++ b/app/containers/markdown/index.tsx @@ -1,13 +1,12 @@ import React, { PureComponent } from 'react'; -import { Text, Image } from 'react-native'; -import { Parser, Node } from 'commonmark'; +import { Image, Text } from 'react-native'; +import { Node, Parser } from 'commonmark'; import Renderer from 'commonmark-react-renderer'; import removeMarkdown from 'remove-markdown'; import shortnameToUnicode from '../../utils/shortnameToUnicode'; import I18n from '../../i18n'; import { themes } from '../../constants/colors'; - import MarkdownLink from './Link'; import MarkdownList from './List'; import MarkdownListItem from './ListItem'; @@ -19,7 +18,6 @@ import MarkdownTable from './Table'; import MarkdownTableRow from './TableRow'; import MarkdownTableCell from './TableCell'; import mergeTextNodes from './mergeTextNodes'; - import styles from './styles'; import { isValidURL } from '../../utils/url'; @@ -53,13 +51,13 @@ type TLiteral = { // Support <http://link|Text> const formatText = (text: string) => text.replace( new RegExp('(?:<|<)((?:https|http):\\/\\/[^\\|]+)\\|(.+?)(?=>|>)(?:>|>)', 'gm'), - (match, url, title) => `[${ title }](${ url })` + (match, url, title) => `[${ title }](${ url })`, ); const emojiRanges = [ '\u00a9|\u00ae|[\u2000-\u3300]|\ud83c[\ud000-\udfff]|\ud83d[\ud000-\udfff]|\ud83e[\ud000-\udfff]', // unicode emoji from https://www.regextester.com/106421 ':.{1,40}:', // custom emoji - ' |\n' // allow spaces and line breaks + ' |\n', // allow spaces and line breaks ].join('|'); const removeSpaces = (str: string) => str && str.replace(/\s/g, ''); @@ -93,6 +91,7 @@ const parser = new Parser(); class Markdown extends PureComponent<IMarkdownProps, any> { private renderer: any; + private isMessageContainsOnlyEmoji!: boolean; constructor(props: IMarkdownProps) { @@ -133,9 +132,9 @@ class Markdown extends PureComponent<IMarkdownProps, any> { table_row: this.renderTableRow, table_cell: this.renderTableCell, - editedIndicator: this.renderEditedIndicator + editedIndicator: this.renderEditedIndicator, }, - renderParagraphsInLists: true + renderParagraphsInLists: true, }); editedMessage = (ast: any) => { @@ -155,11 +154,11 @@ class Markdown extends PureComponent<IMarkdownProps, any> { renderText = ({ context, literal }: {context: []; literal: string}) => { const { - numberOfLines, style = [] + numberOfLines, style = [], } = this.props; const defaultStyle = [ this.isMessageContainsOnlyEmoji ? styles.textBig : {}, - ...context.map(type => styles[type]) + ...context.map((type) => styles[type]), ]; return ( <Text @@ -181,9 +180,9 @@ class Markdown extends PureComponent<IMarkdownProps, any> { ...styles.codeInline, color: themes[theme].bodyText, backgroundColor: themes[theme].bannerBackground, - borderColor: themes[theme].bannerBackground + borderColor: themes[theme].bannerBackground, }, - ...style + ...style, ]} > {literal} @@ -200,9 +199,9 @@ class Markdown extends PureComponent<IMarkdownProps, any> { ...styles.codeBlock, color: themes[theme].bodyText, backgroundColor: themes[theme].bannerBackground, - borderColor: themes[theme].bannerBackground + borderColor: themes[theme].bannerBackground, }, - ...style + ...style, ]} > {literal} @@ -370,7 +369,7 @@ class Markdown extends PureComponent<IMarkdownProps, any> { render() { const { - msg, numberOfLines, preview = false, theme, style = [], testID + msg, numberOfLines, preview = false, theme, style = [], testID, } = this.props; if (!msg) { diff --git a/app/containers/markdown/styles.ts b/app/containers/markdown/styles.ts index f91d024587..56f76b2f5e 100644 --- a/app/containers/markdown/styles.ts +++ b/app/containers/markdown/styles.ts @@ -1,60 +1,60 @@ -import { StyleSheet, Platform } from 'react-native'; +import { Platform, StyleSheet } from 'react-native'; import sharedStyles from '../../views/Styles'; const codeFontFamily = Platform.select({ ios: { fontFamily: 'Courier New' }, - android: { fontFamily: 'monospace' } + android: { fontFamily: 'monospace' }, }); export default StyleSheet.create<any>({ container: { alignItems: 'flex-start', - flexDirection: 'row' + flexDirection: 'row', }, childContainer: { - flex: 1 + flex: 1, }, block: { alignItems: 'flex-start', flexDirection: 'row', flexWrap: 'wrap', - flex: 1 + flex: 1, }, emph: { - fontStyle: 'italic' + fontStyle: 'italic', }, strong: { - fontWeight: 'bold' + fontWeight: 'bold', }, del: { - textDecorationLine: 'line-through' + textDecorationLine: 'line-through', }, text: { fontSize: 16, - ...sharedStyles.textRegular + ...sharedStyles.textRegular, }, textInfo: { fontStyle: 'italic', fontSize: 16, - ...sharedStyles.textRegular + ...sharedStyles.textRegular, }, textBig: { fontSize: 30, - ...sharedStyles.textRegular + ...sharedStyles.textRegular, }, customEmoji: { width: 20, - height: 20 + height: 20, }, customEmojiBig: { width: 30, - height: 30 + height: 30, }, temp: { opacity: 0.3 }, mention: { fontSize: 16, - ...sharedStyles.textSemibold + ...sharedStyles.textSemibold, }, paragraph: { marginTop: 0, @@ -62,96 +62,96 @@ export default StyleSheet.create<any>({ flexWrap: 'wrap', flexDirection: 'row', alignItems: 'flex-start', - justifyContent: 'flex-start' + justifyContent: 'flex-start', }, inlineImage: { width: 300, height: 300, - resizeMode: 'contain' + resizeMode: 'contain', }, codeInline: { ...sharedStyles.textRegular, ...codeFontFamily, borderWidth: 1, - borderRadius: 4 + borderRadius: 4, }, codeBlock: { ...sharedStyles.textRegular, ...codeFontFamily, borderWidth: 1, borderRadius: 4, - padding: 4 + padding: 4, }, link: { fontSize: 16, - ...sharedStyles.textRegular + ...sharedStyles.textRegular, }, edited: { fontSize: 14, - ...sharedStyles.textRegular + ...sharedStyles.textRegular, }, heading1: { ...sharedStyles.textBold, - fontSize: 24 + fontSize: 24, }, heading2: { ...sharedStyles.textBold, - fontSize: 22 + fontSize: 22, }, heading3: { ...sharedStyles.textSemibold, - fontSize: 20 + fontSize: 20, }, heading4: { ...sharedStyles.textSemibold, - fontSize: 18 + fontSize: 18, }, heading5: { ...sharedStyles.textMedium, - fontSize: 16 + fontSize: 16, }, heading6: { ...sharedStyles.textMedium, - fontSize: 14 + fontSize: 14, }, quote: { height: '100%', width: 2, - marginRight: 5 + marginRight: 5, }, touchableTable: { - justifyContent: 'center' + justifyContent: 'center', }, containerTable: { borderBottomWidth: 1, - borderRightWidth: 1 + borderRightWidth: 1, }, table: { borderLeftWidth: 1, - borderTopWidth: 1 + borderTopWidth: 1, }, tableExtraBorders: { borderBottomWidth: 1, - borderRightWidth: 1 + borderRightWidth: 1, }, row: { - flexDirection: 'row' + flexDirection: 'row', }, rowBottomBorder: { - borderBottomWidth: 1 + borderBottomWidth: 1, }, cell: { justifyContent: 'flex-start', paddingHorizontal: 13, - paddingVertical: 6 + paddingVertical: 6, }, cellRightBorder: { - borderRightWidth: 1 + borderRightWidth: 1, }, alignCenter: { - textAlign: 'center' + textAlign: 'center', }, alignRight: { - textAlign: 'right' - } + textAlign: 'right', + }, }); diff --git a/app/containers/message/Attachments.tsx b/app/containers/message/Attachments.tsx index 08fb547c04..73202c7c66 100644 --- a/app/containers/message/Attachments.tsx +++ b/app/containers/message/Attachments.tsx @@ -1,15 +1,14 @@ import React from 'react'; import { dequal } from 'dequal'; -import {IMessageAttachments} from "./interfaces"; - +import { IMessageAttachments } from './interfaces'; import Image from './Image'; import Audio from './Audio'; import Video from './Video'; import Reply from './Reply'; const Attachments = React.memo(({ - attachments, timeFormat, showAttachment, getCustomEmoji, theme + attachments, timeFormat, showAttachment, getCustomEmoji, theme, }: IMessageAttachments) => { if (!attachments || attachments.length === 0) { return null; diff --git a/app/containers/message/Audio.tsx b/app/containers/message/Audio.tsx index f380d509ce..1f7d7b99da 100644 --- a/app/containers/message/Audio.tsx +++ b/app/containers/message/Audio.tsx @@ -1,5 +1,5 @@ import React from 'react'; -import { View, StyleSheet, Text, Easing } from 'react-native'; +import { Easing, StyleSheet, Text, View } from 'react-native'; import { Audio } from 'expo-av'; import Slider from '@react-native-community/slider'; import moment from 'moment'; @@ -47,7 +47,7 @@ const mode = { shouldDuckAndroid: true, playThroughEarpieceAndroid: false, interruptionModeIOS: Audio.INTERRUPTION_MODE_IOS_DO_NOT_MIX, - interruptionModeAndroid: Audio.INTERRUPTION_MODE_ANDROID_DO_NOT_MIX + interruptionModeAndroid: Audio.INTERRUPTION_MODE_ANDROID_DO_NOT_MIX, }; const styles = StyleSheet.create({ @@ -58,24 +58,24 @@ const styles = StyleSheet.create({ height: 56, borderWidth: 1, borderRadius: 4, - marginBottom: 6 + marginBottom: 6, }, playPauseButton: { marginHorizontal: 10, alignItems: 'center', - backgroundColor: 'transparent' + backgroundColor: 'transparent', }, audioLoading: { - marginHorizontal: 8 + marginHorizontal: 8, }, slider: { - flex: 1 + flex: 1, }, duration: { marginHorizontal: 12, fontSize: 14, - ...sharedStyles.textRegular - } + ...sharedStyles.textRegular, + }, }); const formatTime = (seconds: number) => moment.utc(seconds * 1000).format('mm:ss'); @@ -85,7 +85,7 @@ const BUTTON_HIT_SLOP = { top: 12, right: 12, bottom: 12, left: 12 }; const sliderAnimationConfig = { duration: 250, easing: Easing.linear, - delay: 0 + delay: 0, }; const Button = React.memo(({ loading, paused, onPress, theme }: IButton) => ( @@ -107,6 +107,7 @@ Button.displayName = 'MessageAudioButton'; class MessageAudio extends React.Component<IMessageAudioProps, IMessageAudioState> { static contextType = MessageContext; + private sound: any; constructor(props: IMessageAudioProps) { @@ -115,7 +116,7 @@ class MessageAudio extends React.Component<IMessageAudioProps, IMessageAudioStat loading: false, currentTime: 0, duration: 0, - paused: true + paused: true, }; this.sound = new Audio.Sound(); @@ -142,7 +143,7 @@ class MessageAudio extends React.Component<IMessageAudioProps, IMessageAudioStat shouldComponentUpdate(nextProps: any, nextState: any) { const { - currentTime, duration, paused, loading + currentTime, duration, paused, loading, } = this.state; const { file, theme } = this.props; if (nextProps.theme !== theme) { @@ -204,7 +205,7 @@ class MessageAudio extends React.Component<IMessageAudioProps, IMessageAudioStat } } - onEnd = async(data: any) => { + onEnd = async (data: any) => { if (data.didJustFinish) { try { await this.sound.stopAsync(); @@ -225,7 +226,7 @@ class MessageAudio extends React.Component<IMessageAudioProps, IMessageAudioStat this.setState({ paused: !paused }, this.playPause); } - playPause = async() => { + playPause = async () => { const { paused } = this.state; try { if (paused) { @@ -239,7 +240,7 @@ class MessageAudio extends React.Component<IMessageAudioProps, IMessageAudioStat } } - onValueChange = async(value: any) => { + onValueChange = async (value: any) => { try { this.setState({ currentTime: value }); await this.sound.setPositionAsync(value * 1000); @@ -250,10 +251,10 @@ class MessageAudio extends React.Component<IMessageAudioProps, IMessageAudioStat render() { const { - loading, paused, currentTime, duration + loading, paused, currentTime, duration, } = this.state; const { - file, getCustomEmoji, theme, scale + file, getCustomEmoji, theme, scale, } = this.props; const { description } = file; const { baseUrl, user } = this.context; @@ -267,7 +268,7 @@ class MessageAudio extends React.Component<IMessageAudioProps, IMessageAudioStat <View style={[ styles.audioContainer, - { backgroundColor: themes[theme].chatComponentBackground, borderColor: themes[theme].borderColor } + { backgroundColor: themes[theme].chatComponentBackground, borderColor: themes[theme].borderColor }, ]} > <Button loading={loading} paused={paused} onPress={this.togglePlayPause} theme={theme} /> @@ -282,12 +283,12 @@ class MessageAudio extends React.Component<IMessageAudioProps, IMessageAudioStat minimumTrackTintColor={themes[theme].tintColor} maximumTrackTintColor={themes[theme].auxiliaryText} onValueChange={this.onValueChange} - /*@ts-ignore*/ + /* @ts-ignore*/ thumbImage={isIOS && { uri: 'audio_thumb', scale }} /> <Text style={[styles.duration, { color: themes[theme].auxiliaryText }]}>{this.duration}</Text> </View> - {/*@ts-ignore*/} + {/* @ts-ignore*/} <Markdown msg={description} baseUrl={baseUrl} username={user.username} getCustomEmoji={getCustomEmoji} theme={theme} /> </> ); diff --git a/app/containers/message/Blocks.ts b/app/containers/message/Blocks.ts index b9e65fdae5..0c2868b487 100644 --- a/app/containers/message/Blocks.ts +++ b/app/containers/message/Blocks.ts @@ -1,25 +1,26 @@ import React from 'react'; + import { messageBlockWithContext } from '../UIKit/MessageBlock'; -import {IMessageBlocks} from "./interfaces"; +import { IMessageBlocks } from './interfaces'; const Blocks = React.memo(({ blocks, id: mid, rid, blockAction }: IMessageBlocks) => { if (blocks && blocks.length > 0) { const appId = blocks[0]?.appId || ''; return React.createElement( messageBlockWithContext({ - action: async({ actionId, value, blockId }: any) => { + action: async ({ actionId, value, blockId }: any) => { await blockAction({ actionId, appId, value, blockId, rid, - mid + mid, }); }, appId, - rid - }), { blocks } + rid, + }), { blocks }, ); } return null; diff --git a/app/containers/message/Broadcast.tsx b/app/containers/message/Broadcast.tsx index fc5ec8de95..2337c2e97d 100644 --- a/app/containers/message/Broadcast.tsx +++ b/app/containers/message/Broadcast.tsx @@ -1,5 +1,5 @@ import React, { useContext } from 'react'; -import { View, Text } from 'react-native'; +import { Text, View } from 'react-native'; import Touchable from './Touchable'; import { CustomIcon } from '../../lib/Icons'; @@ -8,7 +8,7 @@ import { BUTTON_HIT_SLOP } from './utils'; import I18n from '../../i18n'; import { themes } from '../../constants/colors'; import MessageContext from './Context'; -import {IMessageBroadcast} from "./interfaces"; +import { IMessageBroadcast } from './interfaces'; const Broadcast = React.memo(({ author, broadcast, theme }: IMessageBroadcast) => { const { user, replyBroadcast } = useContext(MessageContext); diff --git a/app/containers/message/CallButton.tsx b/app/containers/message/CallButton.tsx index 23053a89d1..1d04973f5d 100644 --- a/app/containers/message/CallButton.tsx +++ b/app/containers/message/CallButton.tsx @@ -1,5 +1,5 @@ import React from 'react'; -import { View, Text } from 'react-native'; +import { Text, View } from 'react-native'; import Touchable from './Touchable'; import { BUTTON_HIT_SLOP } from './utils'; @@ -7,7 +7,7 @@ import styles from './styles'; import I18n from '../../i18n'; import { CustomIcon } from '../../lib/Icons'; import { themes } from '../../constants/colors'; -import {IMessageCallButton} from "./interfaces"; +import { IMessageCallButton } from './interfaces'; const CallButton = React.memo(({ theme, callJitsi }: IMessageCallButton) => ( <View style={styles.buttonContainer}> diff --git a/app/containers/message/Content.tsx b/app/containers/message/Content.tsx index f632047073..f7b59e8609 100644 --- a/app/containers/message/Content.tsx +++ b/app/containers/message/Content.tsx @@ -6,12 +6,12 @@ import I18n from '../../i18n'; import styles from './styles'; import Markdown from '../markdown'; import User from './User'; -import { getInfoMessage, SYSTEM_MESSAGE_TYPES_WITH_AUTHOR_NAME } from './utils'; +import { SYSTEM_MESSAGE_TYPES_WITH_AUTHOR_NAME, getInfoMessage } from './utils'; import { themes } from '../../constants/colors'; import MessageContext from './Context'; import Encrypted from './Encrypted'; import { E2E_MESSAGE_TYPE } from '../../lib/encryption/constants'; -import {IMessageContent} from "./interfaces"; +import { IMessageContent } from './interfaces'; const Content = React.memo((props: IMessageContent) => { if (props.isInfo) { diff --git a/app/containers/message/Discussion.tsx b/app/containers/message/Discussion.tsx index 63735fd955..fe9c3eae9f 100644 --- a/app/containers/message/Discussion.tsx +++ b/app/containers/message/Discussion.tsx @@ -1,8 +1,8 @@ import React, { useContext } from 'react'; -import { View, Text } from 'react-native'; +import { Text, View } from 'react-native'; import Touchable from './Touchable'; -import { formatMessageCount, BUTTON_HIT_SLOP } from './utils'; +import { BUTTON_HIT_SLOP, formatMessageCount } from './utils'; import styles from './styles'; import I18n from '../../i18n'; import { CustomIcon } from '../../lib/Icons'; @@ -10,7 +10,7 @@ import { DISCUSSION } from './constants'; import { themes } from '../../constants/colors'; import MessageContext from './Context'; import { formatDateThreads } from '../../utils/room'; -import {IMessageDiscussion} from "./interfaces"; +import { IMessageDiscussion } from './interfaces'; const Discussion = React.memo(({ msg, dcount, dlm, theme }: IMessageDiscussion) => { diff --git a/app/containers/message/Emoji.tsx b/app/containers/message/Emoji.tsx index 2bc6da7c4a..bbb301b6f2 100644 --- a/app/containers/message/Emoji.tsx +++ b/app/containers/message/Emoji.tsx @@ -3,7 +3,7 @@ import { Text } from 'react-native'; import shortnameToUnicode from '../../utils/shortnameToUnicode'; import CustomEmoji from '../EmojiPicker/CustomEmoji'; -import {IMessageEmoji} from "./interfaces"; +import { IMessageEmoji } from './interfaces'; const Emoji = React.memo(({ content, baseUrl, standardEmojiStyle, customEmojiStyle, getCustomEmoji }: IMessageEmoji) => { const parsedContent = content.replace(/^:|:$/g, ''); diff --git a/app/containers/message/Image.tsx b/app/containers/message/Image.tsx index e54e30b0c0..0ec3c3be26 100644 --- a/app/containers/message/Image.tsx +++ b/app/containers/message/Image.tsx @@ -33,7 +33,7 @@ interface IMessageImage { const ImageProgress = createImageProgress(FastImage); -const Button = React.memo(({children, onPress, theme}: TMessageButton) => ( +const Button = React.memo(({ children, onPress, theme }: TMessageButton) => ( <Touchable onPress={onPress} style={styles.imageContainer} @@ -50,12 +50,12 @@ export const MessageImage = React.memo(({ img, theme }: TMessageImage) => ( resizeMode={FastImage.resizeMode.cover} indicator={Progress.Pie} indicatorProps={{ - color: themes[theme].actionTintColor + color: themes[theme].actionTintColor, }} /> )); -const ImageContainer = React.memo(({file, imageUrl, showAttachment, getCustomEmoji, theme}: IMessageImage) => { +const ImageContainer = React.memo(({ file, imageUrl, showAttachment, getCustomEmoji, theme }: IMessageImage) => { const { baseUrl, user } = useContext(MessageContext); const img = imageUrl || formatAttachmentUrl(file.image_url, user.id, user.token, baseUrl); if (!img) { @@ -69,7 +69,7 @@ const ImageContainer = React.memo(({file, imageUrl, showAttachment, getCustomEmo <Button theme={theme} onPress={onPress}> <View> <MessageImage img={img} theme={theme} /> - {/*@ts-ignore*/} + {/* @ts-ignore*/} <Markdown msg={file.description} baseUrl={baseUrl} username={user.username} getCustomEmoji={getCustomEmoji} theme={theme} /> </View> </Button> diff --git a/app/containers/message/Message.tsx b/app/containers/message/Message.tsx index fe6cad3f29..36ffc76b0f 100644 --- a/app/containers/message/Message.tsx +++ b/app/containers/message/Message.tsx @@ -3,7 +3,6 @@ import { View } from 'react-native'; import Touchable from 'react-native-platform-touchable'; import MessageContext from './Context'; - import User from './User'; import styles from './styles'; import RepliedThread from './RepliedThread'; @@ -19,7 +18,7 @@ import Content from './Content'; import ReadReceipt from './ReadReceipt'; import CallButton from './CallButton'; import { themes } from '../../constants/colors'; -import {IMessage, IMessageInner, IMessageTouchable} from "./interfaces"; +import { IMessage, IMessageInner, IMessageTouchable } from './interfaces'; const MessageInner = React.memo((props: IMessageInner) => { if (props.type === 'discussion-created') { @@ -74,7 +73,7 @@ const Message = React.memo((props: IMessage) => { <View style={[ styles.messageContent, - props.isHeader && styles.messageContentWithHeader + props.isHeader && styles.messageContentWithHeader, ]} > <Content {...props} /> @@ -91,7 +90,7 @@ const Message = React.memo((props: IMessage) => { <View style={[ styles.messageContent, - props.isHeader && styles.messageContentWithHeader + props.isHeader && styles.messageContentWithHeader, ]} > <MessageInner {...props} /> diff --git a/app/containers/message/MessageAvatar.tsx b/app/containers/message/MessageAvatar.tsx index f610f1d71a..913917c374 100644 --- a/app/containers/message/MessageAvatar.tsx +++ b/app/containers/message/MessageAvatar.tsx @@ -3,16 +3,16 @@ import React, { useContext } from 'react'; import Avatar from '../Avatar'; import styles from './styles'; import MessageContext from './Context'; -import {IMessageAvatar} from "./interfaces"; +import { IMessageAvatar } from './interfaces'; const MessageAvatar = React.memo(({ - isHeader, avatar, author, small, navToRoomInfo, emoji, getCustomEmoji, theme + isHeader, avatar, author, small, navToRoomInfo, emoji, getCustomEmoji, theme, }: IMessageAvatar) => { const { user } = useContext(MessageContext); if (isHeader && author) { const navParam = { t: 'd', - rid: author._id + rid: author._id, }; return ( <Avatar diff --git a/app/containers/message/Reactions.tsx b/app/containers/message/Reactions.tsx index 35b9852ca7..4b43755372 100644 --- a/app/containers/message/Reactions.tsx +++ b/app/containers/message/Reactions.tsx @@ -1,5 +1,5 @@ import React, { useContext } from 'react'; -import { View, Text } from 'react-native'; +import { Text, View } from 'react-native'; import Touchable from './Touchable'; import { CustomIcon } from '../../lib/Icons'; @@ -47,7 +47,7 @@ const AddReaction = React.memo(({ theme }: IMessageAddReaction) => { ); }); -const Reaction = React.memo(({reaction, getCustomEmoji, theme}: IMessageReaction) => { +const Reaction = React.memo(({ reaction, getCustomEmoji, theme }: IMessageReaction) => { const { onReactionPress, onReactionLongPress, baseUrl, user } = useContext(MessageContext); const reacted = reaction.usernames.findIndex((item: IMessageReaction) => item === user.username) !== -1; return ( diff --git a/app/containers/message/RepliedThread.tsx b/app/containers/message/RepliedThread.tsx index 79e3b6272b..7a8a3abaaa 100644 --- a/app/containers/message/RepliedThread.tsx +++ b/app/containers/message/RepliedThread.tsx @@ -6,17 +6,17 @@ import styles from './styles'; import { themes } from '../../constants/colors'; import I18n from '../../i18n'; import Markdown from '../markdown'; -import {IMessageRepliedThread} from "./interfaces"; +import { IMessageRepliedThread } from './interfaces'; const RepliedThread = memo(({ - tmid, tmsg, isHeader, fetchThreadName, id, isEncrypted, theme + tmid, tmsg, isHeader, fetchThreadName, id, isEncrypted, theme, }: IMessageRepliedThread) => { if (!tmid || !isHeader) { return null; } const [msg, setMsg] = useState(isEncrypted ? I18n.t('Encrypted_message') : tmsg); - const fetch = async() => { + const fetch = async () => { const threadName = await fetchThreadName(tmid, id); setMsg(threadName); }; @@ -34,7 +34,7 @@ const RepliedThread = memo(({ return ( <View style={styles.repliedThread} testID={`message-thread-replied-on-${ msg }`}> <CustomIcon name='threads' size={20} style={styles.repliedThreadIcon} color={themes[theme].tintColor} /> - {/*@ts-ignore*/} + {/* @ts-ignore*/} <Markdown msg={msg} theme={theme} diff --git a/app/containers/message/Reply.tsx b/app/containers/message/Reply.tsx index cf55db2bc1..984f7c3764 100644 --- a/app/containers/message/Reply.tsx +++ b/app/containers/message/Reply.tsx @@ -1,5 +1,5 @@ import React, { useContext } from 'react'; -import { View, Text, StyleSheet } from 'react-native'; +import { StyleSheet, Text, View } from 'react-native'; import moment from 'moment'; import { transparentize } from 'color2k'; import { dequal } from 'dequal'; @@ -19,53 +19,53 @@ const styles = StyleSheet.create({ marginTop: 6, alignSelf: 'flex-start', borderWidth: 1, - borderRadius: 4 + borderRadius: 4, }, attachmentContainer: { flex: 1, borderRadius: 4, flexDirection: 'column', - padding: 15 + padding: 15, }, authorContainer: { flex: 1, flexDirection: 'row', - alignItems: 'center' + alignItems: 'center', }, author: { flex: 1, fontSize: 16, - ...sharedStyles.textMedium + ...sharedStyles.textMedium, }, time: { fontSize: 12, marginLeft: 10, ...sharedStyles.textRegular, - fontWeight: '300' + fontWeight: '300', }, fieldsContainer: { flex: 1, flexWrap: 'wrap', - flexDirection: 'row' + flexDirection: 'row', }, fieldContainer: { flexDirection: 'column', - padding: 10 + padding: 10, }, fieldTitle: { fontSize: 14, - ...sharedStyles.textSemibold + ...sharedStyles.textSemibold, }, fieldValue: { fontSize: 14, - ...sharedStyles.textRegular + ...sharedStyles.textRegular, }, marginTop: { - marginTop: 4 + marginTop: 4, }, marginBottom: { - marginBottom: 4 - } + marginBottom: 4, + }, }); interface IMessageReplyAttachment { @@ -160,10 +160,10 @@ const Fields = React.memo(({ attachment, theme, getCustomEmoji }: IMessageFields const { baseUrl, user } = useContext(MessageContext); return ( <View style={styles.fieldsContainer}> - {attachment.fields.map(field => ( + {attachment.fields.map((field) => ( <View key={field.title} style={[styles.fieldContainer, { width: field.short ? '50%' : '100%' }]}> <Text style={[styles.fieldTitle, { color: themes[theme].bodyText }]}>{field.title}</Text> - {/*@ts-ignore*/} + {/* @ts-ignore*/} <Markdown msg={field.value} baseUrl={baseUrl} @@ -219,8 +219,8 @@ const Reply = React.memo(({ attachment, timeFormat, index, getCustomEmoji, theme index > 0 && styles.marginTop, attachment.description && styles.marginBottom, { - backgroundColor, borderColor - } + backgroundColor, borderColor, + }, ]} background={Touchable.Ripple(themes[theme].bannerBackground)} > @@ -242,7 +242,7 @@ const Reply = React.memo(({ attachment, timeFormat, index, getCustomEmoji, theme /> </View> </Touchable> - {/*@ts-ignore*/} + {/* @ts-ignore*/} <Markdown msg={attachment.description!} baseUrl={baseUrl} diff --git a/app/containers/message/Thread.tsx b/app/containers/message/Thread.tsx index 8c80d083d9..c66996d10d 100644 --- a/app/containers/message/Thread.tsx +++ b/app/containers/message/Thread.tsx @@ -1,12 +1,12 @@ import React, { useContext } from 'react'; -import { View, Text } from 'react-native'; +import { Text, View } from 'react-native'; import styles from './styles'; import { themes } from '../../constants/colors'; import MessageContext from './Context'; import ThreadDetails from '../ThreadDetails'; import I18n from '../../i18n'; -import {IMessageThread} from "./interfaces"; +import { IMessageThread } from './interfaces'; const Thread = React.memo(({ msg, tcount, tlm, isThreadRoom, theme, id }: IMessageThread) => { if (!tlm || isThreadRoom || tcount === 0) { @@ -14,7 +14,7 @@ const Thread = React.memo(({ msg, tcount, tlm, isThreadRoom, theme, id }: IMessa } const { - threadBadgeColor, toggleFollowThread, user, replies + threadBadgeColor, toggleFollowThread, user, replies, } = useContext(MessageContext); return ( <View style={styles.buttonContainer}> @@ -29,7 +29,7 @@ const Thread = React.memo(({ msg, tcount, tlm, isThreadRoom, theme, id }: IMessa tcount, replies, tlm, - id + id, }} user={user} badgeColor={threadBadgeColor} diff --git a/app/containers/message/Urls.tsx b/app/containers/message/Urls.tsx index 561c1c23c2..4591c780bc 100644 --- a/app/containers/message/Urls.tsx +++ b/app/containers/message/Urls.tsx @@ -1,5 +1,5 @@ import React, { useContext } from 'react'; -import { View, Text, StyleSheet, Clipboard } from 'react-native'; +import { Clipboard, StyleSheet, Text, View } from 'react-native'; import FastImage from '@rocket.chat/react-native-fast-image'; import { dequal } from 'dequal'; @@ -15,38 +15,38 @@ import MessageContext from './Context'; const styles = StyleSheet.create({ button: { - marginTop: 6 + marginTop: 6, }, container: { flex: 1, flexDirection: 'column', borderRadius: 4, - borderWidth: 1 + borderWidth: 1, }, textContainer: { flex: 1, flexDirection: 'column', padding: 15, justifyContent: 'flex-start', - alignItems: 'flex-start' + alignItems: 'flex-start', }, title: { fontSize: 16, - ...sharedStyles.textMedium + ...sharedStyles.textMedium, }, description: { fontSize: 16, - ...sharedStyles.textRegular + ...sharedStyles.textRegular, }, marginTop: { - marginTop: 4 + marginTop: 4, }, image: { width: '100%', height: 150, borderTopLeftRadius: 4, - borderTopRightRadius: 4 - } + borderTopRightRadius: 4, + }, }); interface IMessageUrlContent { @@ -121,8 +121,8 @@ const Url = React.memo(({ url, index, theme }: IMessageUrl) => { styles.container, { backgroundColor: themes[theme].chatComponentBackground, - borderColor: themes[theme].borderColor - } + borderColor: themes[theme].borderColor, + }, ]} background={Touchable.Ripple(themes[theme].bannerBackground)} > diff --git a/app/containers/message/User.tsx b/app/containers/message/User.tsx index 14c86a4146..e80cb612f4 100644 --- a/app/containers/message/User.tsx +++ b/app/containers/message/User.tsx @@ -1,10 +1,9 @@ import React, { useContext } from 'react'; -import { View, Text, StyleSheet, TouchableOpacity } from 'react-native'; +import { StyleSheet, Text, TouchableOpacity, View } from 'react-native'; import moment from 'moment'; import { themes } from '../../constants/colors'; import { withTheme } from '../../theme'; - import MessageError from './MessageError'; import sharedStyles from '../../views/Styles'; import messageStyles from './styles'; @@ -16,26 +15,26 @@ const styles = StyleSheet.create({ flex: 1, flexDirection: 'row', justifyContent: 'space-between', - alignItems: 'center' + alignItems: 'center', }, username: { fontSize: 16, lineHeight: 22, - ...sharedStyles.textMedium + ...sharedStyles.textMedium, }, usernameInfoMessage: { fontSize: 16, - ...sharedStyles.textMedium + ...sharedStyles.textMedium, }, titleContainer: { flexShrink: 1, flexDirection: 'row', - alignItems: 'center' + alignItems: 'center', }, alias: { fontSize: 14, - ...sharedStyles.textRegular - } + ...sharedStyles.textRegular, + }, }); interface IMessageUser { @@ -61,7 +60,7 @@ const User = React.memo(({ if (isHeader || hasError) { const navParam = { t: 'd', - rid: author._id + rid: author._id, }; const { user } = useContext(MessageContext); const username = (useRealName && author.name) || author.username; diff --git a/app/containers/message/Video.tsx b/app/containers/message/Video.tsx index 93a5342781..86d74922ba 100644 --- a/app/containers/message/Video.tsx +++ b/app/containers/message/Video.tsx @@ -11,7 +11,7 @@ import { formatAttachmentUrl } from '../../lib/utils'; import { themes } from '../../constants/colors'; import MessageContext from './Context'; -const SUPPORTED_TYPES = ['video/quicktime', 'video/mp4', ...(isIOS ? [] : ['video/3gp', 'video/mkv'])]; +const SUPPORTED_TYPES = ['video/quicktime', 'video/mp4', ...isIOS ? [] : ['video/3gp', 'video/mkv']]; const isTypeSupported = (type: any) => SUPPORTED_TYPES.indexOf(type) !== -1; const styles = StyleSheet.create({ @@ -21,8 +21,8 @@ const styles = StyleSheet.create({ height: 150, marginBottom: 6, alignItems: 'center', - justifyContent: 'center' - } + justifyContent: 'center', + }, }); interface IMessageVideo { @@ -62,7 +62,7 @@ const Video = React.memo(({ file, showAttachment, getCustomEmoji, theme }: IMess color={themes[theme].buttonText} /> </Touchable> - {/*@ts-ignore*/} + {/* @ts-ignore*/} <Markdown msg={file.description} baseUrl={baseUrl} username={user.username} getCustomEmoji={getCustomEmoji} theme={theme} /> </> ); diff --git a/app/containers/message/index.tsx b/app/containers/message/index.tsx index 8056c36827..d628dfdb49 100644 --- a/app/containers/message/index.tsx +++ b/app/containers/message/index.tsx @@ -63,7 +63,6 @@ interface IMessageContainerProps { } class MessageContainer extends React.Component<IMessageContainerProps, any> { - static defaultProps = { getCustomEmoji: () => {}, onLongPress: () => {}, @@ -83,10 +82,11 @@ class MessageContainer extends React.Component<IMessageContainerProps, any> { archived: false, broadcast: false, isIgnored: false, - theme: 'light' + theme: 'light', } state = { isManualUnignored: false }; + private subscription: any; componentDidMount() { @@ -102,7 +102,7 @@ class MessageContainer extends React.Component<IMessageContainerProps, any> { shouldComponentUpdate(nextProps: any, nextState: any) { const { isManualUnignored } = this.state; const { - theme, threadBadgeColor, isIgnored, highlighted + theme, threadBadgeColor, isIgnored, highlighted, } = this.props; if (nextProps.theme !== theme) { return true; @@ -141,7 +141,7 @@ class MessageContainer extends React.Component<IMessageContainerProps, any> { const { item, isThreadRoom } = this.props; Keyboard.dismiss(); - if (((item.tlm || item.tmid) && !isThreadRoom)) { + if ((item.tlm || item.tmid) && !isThreadRoom) { this.onThreadPress(); } }, 300, true); @@ -317,7 +317,7 @@ class MessageContainer extends React.Component<IMessageContainerProps, any> { threadBadgeColor, toggleFollowThread, jumpToMessage, - highlighted + highlighted, } = this.props; const { id, @@ -345,7 +345,7 @@ class MessageContainer extends React.Component<IMessageContainerProps, any> { unread, blocks, autoTranslate: autoTranslateMessage, - replies + replies, } = item; let message = msg; @@ -373,10 +373,10 @@ class MessageContainer extends React.Component<IMessageContainerProps, any> { jumpToMessage, threadBadgeColor, toggleFollowThread, - replies + replies, }} > - {/*@ts-ignore*/} + {/* @ts-ignore*/} <Message id={id} msg={message} diff --git a/app/containers/message/interfaces.ts b/app/containers/message/interfaces.ts index 489e284631..ac63de5ea9 100644 --- a/app/containers/message/interfaces.ts +++ b/app/containers/message/interfaces.ts @@ -1,133 +1,133 @@ export interface IMessageAttachments { - attachments: any; - timeFormat: string; - showAttachment: Function; - getCustomEmoji: Function; - theme: string; + attachments: any; + timeFormat: string; + showAttachment: Function; + getCustomEmoji: Function; + theme: string; } export interface IMessageAvatar { - isHeader: boolean; - avatar: string; - emoji: string; - author: { - username: string - _id: string; - }; - small?: boolean; - navToRoomInfo: Function; - getCustomEmoji(): void; - theme: string; + isHeader: boolean; + avatar: string; + emoji: string; + author: { + username: string + _id: string; + }; + small?: boolean; + navToRoomInfo: Function; + getCustomEmoji(): void; + theme: string; } export interface IMessageBlocks { - blocks: any; - id: string; - rid: string; - blockAction: Function; + blocks: any; + id: string; + rid: string; + blockAction: Function; } export interface IMessageBroadcast { - author: { - _id: string - }; - broadcast: boolean; - theme: string + author: { + _id: string + }; + broadcast: boolean; + theme: string } export interface IMessageCallButton { - theme: string; - callJitsi: Function; + theme: string; + callJitsi: Function; } export interface IMessageContent { - isTemp: boolean; - isInfo: boolean; - tmid: string; - isThreadRoom: boolean; - msg: string; - theme: string; - isEdited: boolean; - isEncrypted: boolean; - getCustomEmoji: Function; - channels: { - name: string; - _id: number; - }[]; - mentions: object[]; - navToRoomInfo: Function; - useRealName: boolean; - isIgnored: boolean; - type: string; + isTemp: boolean; + isInfo: boolean; + tmid: string; + isThreadRoom: boolean; + msg: string; + theme: string; + isEdited: boolean; + isEncrypted: boolean; + getCustomEmoji: Function; + channels: { + name: string; + _id: number; + }[]; + mentions: object[]; + navToRoomInfo: Function; + useRealName: boolean; + isIgnored: boolean; + type: string; } export interface IMessageDiscussion { - msg: string; - dcount: number; - dlm: string; - theme: string; + msg: string; + dcount: number; + dlm: string; + theme: string; } export interface IMessageEmoji { - content: any; - baseUrl: string; - standardEmojiStyle: object; - customEmojiStyle: object; - getCustomEmoji: Function; + content: any; + baseUrl: string; + standardEmojiStyle: object; + customEmojiStyle: object; + getCustomEmoji: Function; } export interface IMessageThread { - msg: string; - tcount: number; - theme: string; - tlm: string; - isThreadRoom: boolean; - id: string; + msg: string; + tcount: number; + theme: string; + tlm: string; + isThreadRoom: boolean; + id: string; } export interface IMessageTouchable { - hasError: boolean; - isInfo: boolean; - isThreadReply: boolean; - isTemp: boolean; - archived: boolean; - highlighted: boolean; - theme: string; - ts?: any - urls?: any; - reactions?: any; - alias?: any; - role?: any; - drid?: any; + hasError: boolean; + isInfo: boolean; + isThreadReply: boolean; + isTemp: boolean; + archived: boolean; + highlighted: boolean; + theme: string; + ts?: any + urls?: any; + reactions?: any; + alias?: any; + role?: any; + drid?: any; } export interface IMessageRepliedThread { - tmid: string; - tmsg: string; - id: string; - isHeader: boolean; - theme: string; - fetchThreadName: Function; - isEncrypted: boolean; + tmid: string; + tmsg: string; + id: string; + isHeader: boolean; + theme: string; + fetchThreadName: Function; + isEncrypted: boolean; } export interface IMessageInner extends IMessageDiscussion, IMessageContent, IMessageCallButton, IMessageBlocks, - IMessageThread, IMessageAttachments, IMessageBroadcast { - type: string; - blocks: []; + IMessageThread, IMessageAttachments, IMessageBroadcast { + type: string; + blocks: []; } export interface IMessage extends IMessageRepliedThread, IMessageInner { - isThreadReply: boolean; - isThreadSequential: boolean; - isInfo: boolean; - isTemp: boolean; - isHeader: boolean; - hasError: boolean; - style: any; - onLongPress: Function; - isReadReceiptEnabled: boolean; - unread: boolean; - theme: string; - isIgnored: boolean; + isThreadReply: boolean; + isThreadSequential: boolean; + isInfo: boolean; + isTemp: boolean; + isHeader: boolean; + hasError: boolean; + style: any; + onLongPress: Function; + isReadReceiptEnabled: boolean; + unread: boolean; + theme: string; + isIgnored: boolean; } diff --git a/app/containers/message/styles.ts b/app/containers/message/styles.ts index 3d4334f7c9..e3676f153a 100644 --- a/app/containers/message/styles.ts +++ b/app/containers/message/styles.ts @@ -5,44 +5,44 @@ import { isTablet } from '../../utils/deviceInfo'; export default StyleSheet.create<any>({ root: { - flexDirection: 'row' + flexDirection: 'row', }, container: { paddingVertical: 4, width: '100%', paddingHorizontal: 14, - flexDirection: 'column' + flexDirection: 'column', }, contentContainer: { - flex: 1 + flex: 1, }, messageContent: { flex: 1, - marginLeft: 46 + marginLeft: 46, }, messageContentWithHeader: { - marginLeft: 10 + marginLeft: 10, }, messageContentWithError: { - marginLeft: 0 + marginLeft: 0, }, flex: { - flexDirection: 'row' + flexDirection: 'row', // flex: 1 }, temp: { opacity: 0.3 }, marginTop: { - marginTop: 6 + marginTop: 6, }, reactionsContainer: { flexDirection: 'row', flexWrap: 'wrap', - marginTop: 8 + marginTop: 8, }, reactionButton: { marginRight: 8, marginBottom: 8, - borderRadius: 2 + borderRadius: 2, }, reactionContainer: { flexDirection: 'row', @@ -51,38 +51,38 @@ export default StyleSheet.create<any>({ borderRadius: 2, borderWidth: 1, height: 28, - minWidth: 46.3 + minWidth: 46.3, }, reactionCount: { fontSize: 14, marginLeft: 3, marginRight: 8.5, - ...sharedStyles.textSemibold + ...sharedStyles.textSemibold, }, reactionEmoji: { fontSize: 13, marginLeft: 7, - color: '#ffffff' + color: '#ffffff', }, reactionCustomEmoji: { width: 19, height: 19, - marginLeft: 7 + marginLeft: 7, }, avatar: { - marginTop: 4 + marginTop: 4, }, avatarSmall: { - marginLeft: 16 + marginLeft: 16, }, errorButton: { paddingLeft: 10, - paddingVertical: 5 + paddingVertical: 5, }, buttonContainer: { marginTop: 8, flexDirection: 'row', - alignItems: 'center' + alignItems: 'center', }, button: { paddingHorizontal: 12, @@ -90,19 +90,19 @@ export default StyleSheet.create<any>({ flexDirection: 'row', alignItems: 'center', justifyContent: 'center', - borderRadius: 2 + borderRadius: 2, }, buttonIcon: { - marginRight: 8 + marginRight: 8, }, buttonText: { fontSize: 12, - ...sharedStyles.textSemibold + ...sharedStyles.textSemibold, }, imageContainer: { // flex: 1, flexDirection: 'column', - borderRadius: 4 + borderRadius: 4, }, image: { width: '100%', @@ -110,75 +110,75 @@ export default StyleSheet.create<any>({ minHeight: isTablet ? 300 : 200, borderRadius: 4, borderWidth: 1, - overflow: 'hidden' + overflow: 'hidden', }, imagePressed: { - opacity: 0.5 + opacity: 0.5, }, inlineImage: { width: 300, height: 300, - resizeMode: 'contain' + resizeMode: 'contain', }, text: { fontSize: 16, - ...sharedStyles.textRegular + ...sharedStyles.textRegular, }, textInfo: { fontStyle: 'italic', fontSize: 16, - ...sharedStyles.textRegular + ...sharedStyles.textRegular, }, startedDiscussion: { fontStyle: 'italic', fontSize: 16, marginBottom: 6, - ...sharedStyles.textRegular + ...sharedStyles.textRegular, }, time: { fontSize: 12, marginLeft: 8, - ...sharedStyles.textRegular + ...sharedStyles.textRegular, }, repliedThread: { flexDirection: 'row', // flex: 1, alignItems: 'center', marginTop: 6, - marginBottom: 12 + marginBottom: 12, }, repliedThreadIcon: { marginRight: 10, - marginLeft: 16 + marginLeft: 16, }, repliedThreadName: { fontSize: 16, flex: 1, - ...sharedStyles.textRegular + ...sharedStyles.textRegular, }, repliedThreadDisclosure: { marginLeft: 4, marginRight: 4, alignItems: 'center', - justifyContent: 'center' + justifyContent: 'center', }, threadBadge: { width: 8, height: 8, borderRadius: 4, - marginLeft: 8 + marginLeft: 8, }, threadBell: { - marginLeft: 8 + marginLeft: 8, }, readReceipt: { - lineHeight: 20 + lineHeight: 20, }, encrypted: { - justifyContent: 'center' + justifyContent: 'center', }, threadDetails: { flex: 1, - marginLeft: 12 - } + marginLeft: 12, + }, }); diff --git a/app/containers/message/utils.ts b/app/containers/message/utils.ts index e793daf902..d1e9eedc3f 100644 --- a/app/containers/message/utils.ts +++ b/app/containers/message/utils.ts @@ -15,7 +15,7 @@ export const formatMessageCount = (count: number, type: string) => { }; export const BUTTON_HIT_SLOP = { - top: 4, right: 4, bottom: 4, left: 4 + top: 4, right: 4, bottom: 4, left: 4, }; export const SYSTEM_MESSAGES = [ @@ -39,7 +39,7 @@ export const SYSTEM_MESSAGES = [ 'message_snippeted', 'thread-created', 'room_e2e_enabled', - 'room_e2e_disabled' + 'room_e2e_disabled', ]; export const SYSTEM_MESSAGE_TYPES = { @@ -48,7 +48,7 @@ export const SYSTEM_MESSAGE_TYPES = { MESSAGE_SNIPPETED: 'message_snippeted', USER_JOINED_CHANNEL: 'uj', USER_JOINED_DISCUSSION: 'ut', - USER_LEFT_CHANNEL: 'ul' + USER_LEFT_CHANNEL: 'ul', }; export const SYSTEM_MESSAGE_TYPES_WITH_AUTHOR_NAME = [ @@ -57,7 +57,7 @@ export const SYSTEM_MESSAGE_TYPES_WITH_AUTHOR_NAME = [ SYSTEM_MESSAGE_TYPES.MESSAGE_SNIPPETED, SYSTEM_MESSAGE_TYPES.USER_JOINED_CHANNEL, SYSTEM_MESSAGE_TYPES.USER_JOINED_DISCUSSION, - SYSTEM_MESSAGE_TYPES.USER_LEFT_CHANNEL + SYSTEM_MESSAGE_TYPES.USER_LEFT_CHANNEL, ]; type TInfoMessage = { @@ -66,49 +66,49 @@ type TInfoMessage = { msg: string; author: { username: string }; } -export const getInfoMessage = ({type, role, msg, author}: TInfoMessage) => { +export const getInfoMessage = ({ type, role, msg, author }: TInfoMessage) => { const { username } = author; if (type === 'rm') { return I18n.t('Message_removed'); - } else if (type === 'uj') { + } if (type === 'uj') { return I18n.t('Has_joined_the_channel'); - } else if (type === 'ut') { + } if (type === 'ut') { return I18n.t('Has_joined_the_conversation'); - } else if (type === 'r') { + } if (type === 'r') { return I18n.t('Room_name_changed', { name: msg, userBy: username }); - } else if (type === 'message_pinned') { + } if (type === 'message_pinned') { return I18n.t('Message_pinned'); - } else if (type === 'jitsi_call_started') { + } if (type === 'jitsi_call_started') { return I18n.t('Started_call', { userBy: username }); - } else if (type === 'ul') { + } if (type === 'ul') { return I18n.t('Has_left_the_channel'); - } else if (type === 'ru') { + } if (type === 'ru') { return I18n.t('User_removed_by', { userRemoved: msg, userBy: username }); - } else if (type === 'au') { + } if (type === 'au') { return I18n.t('User_added_by', { userAdded: msg, userBy: username }); - } else if (type === 'user-muted') { + } if (type === 'user-muted') { return I18n.t('User_muted_by', { userMuted: msg, userBy: username }); - } else if (type === 'user-unmuted') { + } if (type === 'user-unmuted') { return I18n.t('User_unmuted_by', { userUnmuted: msg, userBy: username }); - } else if (type === 'subscription-role-added') { + } if (type === 'subscription-role-added') { return `${ msg } was set ${ role } by ${ username }`; - } else if (type === 'subscription-role-removed') { + } if (type === 'subscription-role-removed') { return `${ msg } is no longer ${ role } by ${ username }`; - } else if (type === 'room_changed_description') { + } if (type === 'room_changed_description') { return I18n.t('Room_changed_description', { description: msg, userBy: username }); - } else if (type === 'room_changed_announcement') { + } if (type === 'room_changed_announcement') { return I18n.t('Room_changed_announcement', { announcement: msg, userBy: username }); - } else if (type === 'room_changed_topic') { + } if (type === 'room_changed_topic') { return I18n.t('Room_changed_topic', { topic: msg, userBy: username }); - } else if (type === 'room_changed_privacy') { + } if (type === 'room_changed_privacy') { return I18n.t('Room_changed_privacy', { type: msg, userBy: username }); - } else if (type === 'room_changed_avatar') { + } if (type === 'room_changed_avatar') { return I18n.t('Room_changed_avatar', { userBy: username }); - } else if (type === 'message_snippeted') { + } if (type === 'message_snippeted') { return I18n.t('Created_snippet'); - } else if (type === 'room_e2e_disabled') { + } if (type === 'room_e2e_disabled') { return I18n.t('This_room_encryption_has_been_disabled_by__username_', { username }); - } else if (type === 'room_e2e_enabled') { + } if (type === 'room_e2e_enabled') { return I18n.t('This_room_encryption_has_been_enabled_by__username_', { username }); } return ''; diff --git a/app/dimensions.tsx b/app/dimensions.tsx index a67cf0479e..d8e7a8f540 100644 --- a/app/dimensions.tsx +++ b/app/dimensions.tsx @@ -15,7 +15,7 @@ export const DimensionsContext = React.createContext<Partial<IDimensionsContextP export function withDimensions(Component: any) { const DimensionsComponent = (props: any) => ( <DimensionsContext.Consumer> - {contexts => <Component {...props} {...contexts} />} + {(contexts) => <Component {...props} {...contexts} />} </DimensionsContext.Consumer> ); hoistNonReactStatics(DimensionsComponent, Component); @@ -29,6 +29,6 @@ export const useOrientation = () => { const isPortrait = (height)! > (width)!; return { isPortrait, - isLandscape: !isPortrait + isLandscape: !isPortrait, }; }; diff --git a/app/ee/omnichannel/containers/OmnichannelStatus.js b/app/ee/omnichannel/containers/OmnichannelStatus.js index 148f398cf2..9225616313 100644 --- a/app/ee/omnichannel/containers/OmnichannelStatus.js +++ b/app/ee/omnichannel/containers/OmnichannelStatus.js @@ -1,14 +1,14 @@ -import React, { memo, useState, useEffect } from 'react'; -import { View, Switch } from 'react-native'; +import React, { memo, useEffect, useState } from 'react'; +import { Switch, View } from 'react-native'; import PropTypes from 'prop-types'; import * as List from '../../../containers/List'; import styles from '../../../views/RoomsListView/styles'; -import { themes, SWITCH_TRACK_COLOR } from '../../../constants/colors'; +import { SWITCH_TRACK_COLOR, themes } from '../../../constants/colors'; import { withTheme } from '../../../theme'; import UnreadBadge from '../../../presentation/UnreadBadge'; import RocketChat from '../../../lib/rocketchat'; -import { isOmnichannelStatusAvailable, changeLivechatStatus } from '../lib'; +import { changeLivechatStatus, isOmnichannelStatusAvailable } from '../lib'; const OmnichannelStatus = memo(({ searching, goQueue, theme, queueSize, inquiryEnabled, user diff --git a/app/ee/omnichannel/lib/index.js b/app/ee/omnichannel/lib/index.js index 7492675eb5..34159926b4 100644 --- a/app/ee/omnichannel/lib/index.js +++ b/app/ee/omnichannel/lib/index.js @@ -1,6 +1,6 @@ -import subscribeInquiry from './subscriptions/inquiry'; import RocketChat from '../../../lib/rocketchat'; import EventEmitter from '../../../utils/events'; +import subscribeInquiry from './subscriptions/inquiry'; export const isOmnichannelStatusAvailable = user => user?.statusLivechat === 'available'; diff --git a/app/ee/omnichannel/lib/subscriptions/inquiry.js b/app/ee/omnichannel/lib/subscriptions/inquiry.js index 02eafb8a9d..ef2557cd6e 100644 --- a/app/ee/omnichannel/lib/subscriptions/inquiry.js +++ b/app/ee/omnichannel/lib/subscriptions/inquiry.js @@ -2,10 +2,10 @@ import log from '../../../../utils/log'; import store from '../../../../lib/createStore'; import RocketChat from '../../../../lib/rocketchat'; import { - inquiryRequest, inquiryQueueAdd, + inquiryQueueRemove, inquiryQueueUpdate, - inquiryQueueRemove + inquiryRequest } from '../../actions/inquiry'; const removeListener = listener => listener.stop(); diff --git a/app/ee/omnichannel/sagas/inquiry.js b/app/ee/omnichannel/sagas/inquiry.js index 6140e2f65f..b9bec6b418 100644 --- a/app/ee/omnichannel/sagas/inquiry.js +++ b/app/ee/omnichannel/sagas/inquiry.js @@ -1,10 +1,10 @@ -import { put, takeLatest, select } from 'redux-saga/effects'; +import { put, select, takeLatest } from 'redux-saga/effects'; import * as types from '../../../actions/actionsTypes'; import RocketChat from '../../../lib/rocketchat'; import EventEmitter from '../../../utils/events'; -import { inquirySuccess, inquiryFailure, inquirySetEnabled } from '../actions/inquiry'; -import { isOmnichannelStatusAvailable, getInquiriesQueued } from '../lib'; +import { inquiryFailure, inquirySetEnabled, inquirySuccess } from '../actions/inquiry'; +import { getInquiriesQueued, isOmnichannelStatusAvailable } from '../lib'; const handleRequest = function* handleRequest() { try { diff --git a/app/ee/omnichannel/views/QueueListView.js b/app/ee/omnichannel/views/QueueListView.js index a261d481ea..31c31768f2 100644 --- a/app/ee/omnichannel/views/QueueListView.js +++ b/app/ee/omnichannel/views/QueueListView.js @@ -7,7 +7,7 @@ import { dequal } from 'dequal'; import I18n from '../../../i18n'; import RoomItem, { ROW_HEIGHT } from '../../../presentation/RoomItem'; import { MAX_SIDEBAR_WIDTH } from '../../../constants/tablet'; -import { isTablet, isIOS } from '../../../utils/deviceInfo'; +import { isIOS, isTablet } from '../../../utils/deviceInfo'; import { getUserSelector } from '../../../selectors/login'; import { withTheme } from '../../../theme'; import { withDimensions } from '../../../dimensions'; @@ -17,7 +17,7 @@ import StatusBar from '../../../containers/StatusBar'; import { goRoom } from '../../../utils/goRoom'; import * as HeaderButton from '../../../containers/HeaderButton'; import RocketChat from '../../../lib/rocketchat'; -import { logEvent, events } from '../../../utils/log'; +import { events, logEvent } from '../../../utils/log'; import { getInquiryQueueSelector } from '../selectors/inquiry'; const INITIAL_NUM_TO_RENDER = isTablet ? 20 : 12; diff --git a/app/emojis.ts b/app/emojis.ts index 172d15adf7..f73a4f79c4 100644 --- a/app/emojis.ts +++ b/app/emojis.ts @@ -224,7 +224,7 @@ export const emojisByCategory: any = { 'right_facing_fist', 'handshake', 'fingers_crossed', - 'pregnant_woman' + 'pregnant_woman', ], nature: [ 'dog', @@ -387,7 +387,7 @@ export const emojisByCategory: any = { 'rhino', 'wilted_rose', 'shrimp', - 'squid' + 'squid', ], food: [ 'green_apple', @@ -474,7 +474,7 @@ export const emojisByCategory: any = { 'milk', 'peanuts', 'kiwi', - 'pancakes' + 'pancakes', ], activity: [ 'soccer', @@ -546,7 +546,7 @@ export const emojisByCategory: any = { 'first_place', 'second_place', 'third_place', - 'drum' + 'drum', ], travel: [ 'red_car', @@ -667,7 +667,7 @@ export const emojisByCategory: any = { 'shopping_cart', 'scooter', 'motor_scooter', - 'canoe' + 'canoe', ], objects: [ 'watch', @@ -847,7 +847,7 @@ export const emojisByCategory: any = { 'crayon', 'paintbrush', 'mag', - 'mag_right' + 'mag_right', ], symbols: [ '100', @@ -1160,7 +1160,7 @@ export const emojisByCategory: any = { 'regional_indicator_d', 'regional_indicator_c', 'regional_indicator_b', - 'regional_indicator_a' + 'regional_indicator_a', ], flags: [ 'flag_ac', @@ -1401,8 +1401,8 @@ export const emojisByCategory: any = { 'flag_mp', 'flag_sx', 'flag_ss', - 'flag_tc' - ] + 'flag_tc', + ], }; export const emojis = [ @@ -2811,5 +2811,5 @@ export const emojis = [ 'flag_sx', 'flag_ss', 'flag_tc', - 'flag_mf' + 'flag_mf', ]; diff --git a/app/index.tsx b/app/index.tsx index f1a65267d5..c6c50a986e 100644 --- a/app/index.tsx +++ b/app/index.tsx @@ -1,5 +1,5 @@ import React from 'react'; -import { Linking, Dimensions } from 'react-native'; +import { Dimensions, Linking } from 'react-native'; import { AppearanceProvider } from 'react-native-appearance'; import { Provider } from 'react-redux'; import { KeyCommandsEmitter } from 'react-native-keycommands'; @@ -14,7 +14,7 @@ import { deepLinkingOpen } from './actions/deepLinking'; import parseQuery from './lib/methods/helpers/parseQuery'; import { initializePushNotifications, onNotification } from './notifications/push'; import store from './lib/createStore'; -import { loggerConfig, analytics } from './utils/log'; +import { analytics, loggerConfig } from './utils/log'; import { ThemeContext } from './theme'; import { DimensionsContext } from './dimensions'; import RocketChat, { THEME_PREFERENCES_KEY } from './lib/rocketchat'; @@ -40,7 +40,6 @@ interface IDimensions { fontScale: number } -interface IProps {} interface IState { theme: string, themePreferences: { @@ -74,11 +73,12 @@ const parseDeepLinking = (url: string) => { return null; }; -export default class Root extends React.Component<IProps, IState> { - private listenerTimeout!: NodeJS.Timeout; +export default class Root extends React.Component<{}, IState> { + private listenerTimeout!: any; + private onKeyCommands: any; - constructor(props: IProps) { + constructor(props: any) { super(props); this.init(); if (!isFDroidBuild) { @@ -89,12 +89,12 @@ export default class Root extends React.Component<IProps, IState> { theme: defaultTheme(), themePreferences: { currentTheme: supportSystemTheme() ? 'automatic' : 'light', - darkLevel: 'black' + darkLevel: 'black', }, width, height, scale, - fontScale + fontScale, }; if (isTablet) { this.initTablet(); @@ -124,7 +124,7 @@ export default class Root extends React.Component<IProps, IState> { } } - init = async() => { + init = async () => { UserPreferences.getMapAsync(THEME_PREFERENCES_KEY).then(() => this.setTheme()); store.dispatch(appInitLocalSettings()); @@ -162,26 +162,26 @@ export default class Root extends React.Component<IProps, IState> { // Dimensions update fires twice onDimensionsChange = debounce(({ window: { - width, height, scale, fontScale - } + width, height, scale, fontScale, + }, }: {window: IDimensions}) => { this.setDimensions({ - width, height, scale, fontScale + width, height, scale, fontScale, }); this.setMasterDetail(width); }) setTheme = (newTheme = {}) => { // change theme state - this.setState(prevState => newThemeState(prevState, newTheme), () => { + this.setState((prevState) => newThemeState(prevState, newTheme), () => { const { themePreferences } = this.state; // subscribe to Appearance changes subscribeTheme(themePreferences, this.setTheme); }); } - setDimensions = ({width, height, scale, fontScale}: IDimensions) => { - this.setState({width, height, scale, fontScale}); + setDimensions = ({ width, height, scale, fontScale }: IDimensions) => { + this.setState({ width, height, scale, fontScale }); } initTablet = () => { @@ -191,7 +191,7 @@ export default class Root extends React.Component<IProps, IState> { 'onKeyCommand', (command: unknown) => { EventEmitter.emit(KEY_COMMAND, { event: command }); - } + }, ); } @@ -216,7 +216,7 @@ export default class Root extends React.Component<IProps, IState> { value={{ theme, themePreferences, - setTheme: this.setTheme + setTheme: this.setTheme, }} > <DimensionsContext.Provider @@ -225,7 +225,7 @@ export default class Root extends React.Component<IProps, IState> { height, scale, fontScale, - setDimensions: this.setDimensions + setDimensions: this.setDimensions, }} > <ActionSheetProvider> diff --git a/app/lib/Navigation.ts b/app/lib/Navigation.ts index b3bddf9c6f..0beb11b31a 100644 --- a/app/lib/Navigation.ts +++ b/app/lib/Navigation.ts @@ -1,5 +1,5 @@ import * as React from 'react'; -import { CommonActions, StackActions, NavigationContainerRef } from '@react-navigation/native'; +import { CommonActions, NavigationContainerRef, StackActions } from '@react-navigation/native'; const navigationRef = React.createRef<NavigationContainerRef>(); const routeNameRef: React.MutableRefObject<NavigationContainerRef | null> = React.createRef(); @@ -21,5 +21,5 @@ export default { routeNameRef, navigate, back, - replace + replace, }; diff --git a/app/lib/ShareNavigation.ts b/app/lib/ShareNavigation.ts index c0f5a9ad5d..413698d004 100644 --- a/app/lib/ShareNavigation.ts +++ b/app/lib/ShareNavigation.ts @@ -7,5 +7,5 @@ const routeNameRef: React.MutableRefObject<NavigationContainerRef | null> = Reac export default { navigationRef, - routeNameRef + routeNameRef, }; diff --git a/app/lib/createStore.js b/app/lib/createStore.js index da52de600e..6716caabfe 100644 --- a/app/lib/createStore.js +++ b/app/lib/createStore.js @@ -1,4 +1,4 @@ -import { createStore, applyMiddleware, compose } from 'redux'; +import { applyMiddleware, compose, createStore } from 'redux'; import createSagaMiddleware from 'redux-saga'; import reducers from '../reducers'; diff --git a/app/lib/database/index.js b/app/lib/database/index.js index 67ae9782c8..1000af9216 100644 --- a/app/lib/database/index.js +++ b/app/lib/database/index.js @@ -2,6 +2,9 @@ import { Database } from '@nozbe/watermelondb'; import SQLiteAdapter from '@nozbe/watermelondb/adapters/sqlite'; import logger from '@nozbe/watermelondb/utils/common/logger'; +import { isIOS } from '../../utils/deviceInfo'; +import appGroup from '../../utils/appGroup'; +import { isOfficial } from '../../constants/environment'; import Subscription from './model/Subscription'; import Room from './model/Room'; import Message from './model/Message'; @@ -15,21 +18,14 @@ import Role from './model/Role'; import Permission from './model/Permission'; import SlashCommand from './model/SlashCommand'; import User from './model/User'; - import LoggedUser from './model/servers/User'; import Server from './model/servers/Server'; import ServersHistory from './model/ServersHistory'; - import serversSchema from './schema/servers'; import appSchema from './schema/app'; - import migrations from './model/migrations'; import serversMigrations from './model/servers/migrations'; -import { isIOS } from '../../utils/deviceInfo'; -import appGroup from '../../utils/appGroup'; -import { isOfficial } from '../../constants/environment'; - const appGroupPath = isIOS ? appGroup.path : ''; if (__DEV__ && isIOS) { diff --git a/app/lib/database/model/CustomEmoji.js b/app/lib/database/model/CustomEmoji.js index fdf5d20635..9f3e1b6a8c 100644 --- a/app/lib/database/model/CustomEmoji.js +++ b/app/lib/database/model/CustomEmoji.js @@ -1,5 +1,5 @@ import { Model } from '@nozbe/watermelondb'; -import { field, date, json } from '@nozbe/watermelondb/decorators'; +import { date, field, json } from '@nozbe/watermelondb/decorators'; import { sanitizer } from '../utils'; diff --git a/app/lib/database/model/Message.js b/app/lib/database/model/Message.js index 52cf63f0ce..643bbc95d4 100644 --- a/app/lib/database/model/Message.js +++ b/app/lib/database/model/Message.js @@ -1,6 +1,6 @@ import { Model } from '@nozbe/watermelondb'; import { - field, relation, date, json + date, field, json, relation } from '@nozbe/watermelondb/decorators'; import { sanitizer } from '../utils'; diff --git a/app/lib/database/model/Permission.js b/app/lib/database/model/Permission.js index 8771de4dc7..5923f83dc1 100644 --- a/app/lib/database/model/Permission.js +++ b/app/lib/database/model/Permission.js @@ -1,5 +1,5 @@ import { Model } from '@nozbe/watermelondb'; -import { json, date } from '@nozbe/watermelondb/decorators'; +import { date, json } from '@nozbe/watermelondb/decorators'; import { sanitizer } from '../utils'; diff --git a/app/lib/database/model/ServersHistory.js b/app/lib/database/model/ServersHistory.js index 469775f13b..7b11910802 100644 --- a/app/lib/database/model/ServersHistory.js +++ b/app/lib/database/model/ServersHistory.js @@ -1,5 +1,5 @@ import { Model } from '@nozbe/watermelondb'; -import { field, date, readonly } from '@nozbe/watermelondb/decorators'; +import { date, field, readonly } from '@nozbe/watermelondb/decorators'; export default class ServersHistory extends Model { static table = 'servers_history'; diff --git a/app/lib/database/model/Setting.js b/app/lib/database/model/Setting.js index 050e709819..753d965ba4 100644 --- a/app/lib/database/model/Setting.js +++ b/app/lib/database/model/Setting.js @@ -1,5 +1,5 @@ import { Model } from '@nozbe/watermelondb'; -import { field, date, json } from '@nozbe/watermelondb/decorators'; +import { date, field, json } from '@nozbe/watermelondb/decorators'; import { sanitizer } from '../utils'; diff --git a/app/lib/database/model/Subscription.js b/app/lib/database/model/Subscription.js index 275dae2175..c636bea3d0 100644 --- a/app/lib/database/model/Subscription.js +++ b/app/lib/database/model/Subscription.js @@ -1,7 +1,8 @@ import { Model } from '@nozbe/watermelondb'; import { - field, date, json, children + children, date, field, json } from '@nozbe/watermelondb/decorators'; + import { sanitizer } from '../utils'; export const TABLE_NAME = 'subscriptions'; diff --git a/app/lib/database/model/Thread.js b/app/lib/database/model/Thread.js index 04e6583924..1760b19db1 100644 --- a/app/lib/database/model/Thread.js +++ b/app/lib/database/model/Thread.js @@ -1,6 +1,6 @@ import { Model } from '@nozbe/watermelondb'; import { - field, relation, date, json + date, field, json, relation } from '@nozbe/watermelondb/decorators'; import { sanitizer } from '../utils'; diff --git a/app/lib/database/model/ThreadMessage.js b/app/lib/database/model/ThreadMessage.js index 687e09f96c..c8e0de631e 100644 --- a/app/lib/database/model/ThreadMessage.js +++ b/app/lib/database/model/ThreadMessage.js @@ -1,6 +1,6 @@ import { Model } from '@nozbe/watermelondb'; import { - field, relation, date, json + date, field, json, relation } from '@nozbe/watermelondb/decorators'; import { sanitizer } from '../utils'; diff --git a/app/lib/database/model/migrations.js b/app/lib/database/model/migrations.js index cdc65ef0f7..c58651f042 100644 --- a/app/lib/database/model/migrations.js +++ b/app/lib/database/model/migrations.js @@ -1,4 +1,4 @@ -import { schemaMigrations, addColumns, createTable } from '@nozbe/watermelondb/Schema/migrations'; +import { addColumns, createTable, schemaMigrations } from '@nozbe/watermelondb/Schema/migrations'; export default schemaMigrations({ migrations: [ diff --git a/app/lib/database/model/servers/Server.js b/app/lib/database/model/servers/Server.js index df770a32ec..0bff69ffe3 100644 --- a/app/lib/database/model/servers/Server.js +++ b/app/lib/database/model/servers/Server.js @@ -1,5 +1,5 @@ import { Model } from '@nozbe/watermelondb'; -import { field, date } from '@nozbe/watermelondb/decorators'; +import { date, field } from '@nozbe/watermelondb/decorators'; export default class Server extends Model { static table = 'servers'; diff --git a/app/lib/database/model/servers/migrations.js b/app/lib/database/model/servers/migrations.js index 80954d475b..64a72cb035 100644 --- a/app/lib/database/model/servers/migrations.js +++ b/app/lib/database/model/servers/migrations.js @@ -1,4 +1,4 @@ -import { schemaMigrations, addColumns, createTable } from '@nozbe/watermelondb/Schema/migrations'; +import { addColumns, createTable, schemaMigrations } from '@nozbe/watermelondb/Schema/migrations'; export default schemaMigrations({ migrations: [ diff --git a/app/lib/encryption/encryption.js b/app/lib/encryption/encryption.js index e4a7f2c145..3d6a38ba9c 100644 --- a/app/lib/encryption/encryption.js +++ b/app/lib/encryption/encryption.js @@ -3,29 +3,29 @@ import SimpleCrypto from 'react-native-simple-crypto'; import { sanitizedRaw } from '@nozbe/watermelondb/RawRecord'; import { Q } from '@nozbe/watermelondb'; -import { - toString, - utf8ToBuffer, - splitVectorData, - joinVectorData, - randomPassword -} from './utils'; -import { - E2E_PUBLIC_KEY, - E2E_PRIVATE_KEY, - E2E_RANDOM_PASSWORD_KEY, - E2E_STATUS, - E2E_MESSAGE_TYPE, - E2E_BANNER_TYPE -} from './constants'; import RocketChat from '../rocketchat'; -import { EncryptionRoom } from './index'; import UserPreferences from '../userPreferences'; import database from '../database'; import protectedFunction from '../methods/helpers/protectedFunction'; import Deferred from '../../utils/deferred'; import log from '../../utils/log'; import store from '../createStore'; +import { + E2E_BANNER_TYPE, + E2E_MESSAGE_TYPE, + E2E_PRIVATE_KEY, + E2E_PUBLIC_KEY, + E2E_RANDOM_PASSWORD_KEY, + E2E_STATUS +} from './constants'; +import { + joinVectorData, + randomPassword, + splitVectorData, + toString, + utf8ToBuffer +} from './utils'; +import { EncryptionRoom } from './index'; class Encryption { constructor() { @@ -292,12 +292,12 @@ class Encryption { // If we select only encrypted rooms we can miss some room that changed their encrypted status const subsEncrypted = await subCollection.query(Q.where('e2e_key_id', Q.notEq(null))).fetch(); // We can't do this on database level since lastMessage is not a database object - const subsToDecrypt = subsEncrypted.filter(sub => ( + const subsToDecrypt = subsEncrypted.filter(sub => // Encrypted message sub?.lastMessage?.t === E2E_MESSAGE_TYPE // Message pending decrypt && sub?.lastMessage?.e2e === E2E_STATUS.PENDING - )); + ); await Promise.all(subsToDecrypt.map(async(sub) => { const { rid, lastMessage } = sub; const newSub = await this.decryptSubscription({ rid, lastMessage }); diff --git a/app/lib/encryption/room.js b/app/lib/encryption/room.js index 0aa1b932e6..b5d678aeea 100644 --- a/app/lib/encryption/room.js +++ b/app/lib/encryption/room.js @@ -2,23 +2,23 @@ import EJSON from 'ejson'; import { Base64 } from 'js-base64'; import SimpleCrypto from 'react-native-simple-crypto'; +import RocketChat from '../rocketchat'; +import Deferred from '../../utils/deferred'; +import debounce from '../../utils/debounce'; +import database from '../database'; +import log from '../../utils/log'; +import { E2E_MESSAGE_TYPE, E2E_STATUS } from './constants'; import { - toString, b64ToBuffer, - bufferToUtf8, bufferToB64, bufferToB64URI, - utf8ToBuffer, + bufferToUtf8, + joinVectorData, splitVectorData, - joinVectorData + toString, + utf8ToBuffer } from './utils'; -import { E2E_MESSAGE_TYPE, E2E_STATUS } from './constants'; -import RocketChat from '../rocketchat'; -import Deferred from '../../utils/deferred'; -import debounce from '../../utils/debounce'; import { Encryption } from './index'; -import database from '../database'; -import log from '../../utils/log'; export default class EncryptionRoom { constructor(roomId, userId) { diff --git a/app/lib/methods/callJitsi.js b/app/lib/methods/callJitsi.js index 7275ef812d..2be98de8e5 100644 --- a/app/lib/methods/callJitsi.js +++ b/app/lib/methods/callJitsi.js @@ -1,6 +1,6 @@ import reduxStore from '../createStore'; import Navigation from '../Navigation'; -import { logEvent, events } from '../../utils/log'; +import { events, logEvent } from '../../utils/log'; async function jitsiURL({ room }) { const { settings } = reduxStore.getState(); diff --git a/app/lib/methods/enterpriseModules.js b/app/lib/methods/enterpriseModules.js index d86ae26fd8..01b7c9300b 100644 --- a/app/lib/methods/enterpriseModules.js +++ b/app/lib/methods/enterpriseModules.js @@ -1,9 +1,8 @@ import { compareServerVersion, methods } from '../utils'; - import reduxStore from '../createStore'; import database from '../database'; import log from '../../utils/log'; -import { setEnterpriseModules as setEnterpriseModulesAction, clearEnterpriseModules } from '../../actions/enterpriseModules'; +import { clearEnterpriseModules, setEnterpriseModules as setEnterpriseModulesAction } from '../../actions/enterpriseModules'; export const LICENSE_OMNICHANNEL_MOBILE_ENTERPRISE = 'omnichannel-mobile-enterprise'; export const LICENSE_LIVECHAT_ENTERPRISE = 'livechat-enterprise'; diff --git a/app/lib/methods/getPermissions.js b/app/lib/methods/getPermissions.js index 1c4c56b46b..8954a07aee 100644 --- a/app/lib/methods/getPermissions.js +++ b/app/lib/methods/getPermissions.js @@ -7,8 +7,8 @@ import database from '../database'; import log from '../../utils/log'; import reduxStore from '../createStore'; import RocketChat from '../rocketchat'; -import protectedFunction from './helpers/protectedFunction'; import { setPermissions as setPermissionsAction } from '../../actions/permissions'; +import protectedFunction from './helpers/protectedFunction'; const PERMISSIONS = [ 'add-user-to-any-c-room', diff --git a/app/lib/methods/getRoles.js b/app/lib/methods/getRoles.js index 98a3895e39..5e60f1e8ae 100644 --- a/app/lib/methods/getRoles.js +++ b/app/lib/methods/getRoles.js @@ -3,10 +3,10 @@ import { sanitizedRaw } from '@nozbe/watermelondb/RawRecord'; import database from '../database'; import log from '../../utils/log'; import reduxStore from '../createStore'; -import protectedFunction from './helpers/protectedFunction'; import { removeRoles, setRoles as setRolesAction, updateRoles } from '../../actions/roles'; +import protectedFunction from './helpers/protectedFunction'; export async function setRoles() { const db = database.active; diff --git a/app/lib/methods/getSettings.js b/app/lib/methods/getSettings.js index be6ef1ee35..c43e2f1dc9 100644 --- a/app/lib/methods/getSettings.js +++ b/app/lib/methods/getSettings.js @@ -7,9 +7,9 @@ import reduxStore from '../createStore'; import settings from '../../constants/settings'; import log from '../../utils/log'; import database from '../database'; -import protectedFunction from './helpers/protectedFunction'; import fetch from '../../utils/fetch'; import { DEFAULT_AUTO_LOCK } from '../../constants/localAuthentication'; +import protectedFunction from './helpers/protectedFunction'; const serverInfoKeys = [ 'Site_Name', diff --git a/app/lib/methods/getThreadName.js b/app/lib/methods/getThreadName.js index 1eb1fbc781..861fb521f2 100644 --- a/app/lib/methods/getThreadName.js +++ b/app/lib/methods/getThreadName.js @@ -4,8 +4,8 @@ import database from '../database'; import { getMessageById } from '../database/services/Message'; import { getThreadById } from '../database/services/Thread'; import log from '../../utils/log'; -import getSingleMessage from './getSingleMessage'; import { Encryption } from '../encryption'; +import getSingleMessage from './getSingleMessage'; const buildThreadName = thread => thread.msg || thread?.attachments?.[0]?.title; diff --git a/app/lib/methods/helpers/buildMessage.js b/app/lib/methods/helpers/buildMessage.js index a565046fa8..9868ef13e0 100644 --- a/app/lib/methods/helpers/buildMessage.js +++ b/app/lib/methods/helpers/buildMessage.js @@ -1,5 +1,5 @@ -import normalizeMessage from './normalizeMessage'; import messagesStatus from '../../../constants/messagesStatus'; +import normalizeMessage from './normalizeMessage'; export default (message) => { message.status = messagesStatus.SENT; diff --git a/app/lib/methods/helpers/mergeSubscriptionsRooms.js b/app/lib/methods/helpers/mergeSubscriptionsRooms.js index 82dfc4c68d..2d4d3c0f78 100644 --- a/app/lib/methods/helpers/mergeSubscriptionsRooms.js +++ b/app/lib/methods/helpers/mergeSubscriptionsRooms.js @@ -1,10 +1,10 @@ import EJSON from 'ejson'; -import normalizeMessage from './normalizeMessage'; -import findSubscriptionsRooms from './findSubscriptionsRooms'; import { Encryption } from '../../encryption'; import reduxStore from '../../createStore'; import { compareServerVersion, methods } from '../../utils'; +import findSubscriptionsRooms from './findSubscriptionsRooms'; +import normalizeMessage from './normalizeMessage'; // TODO: delete and update export const merge = (subscription, room) => { diff --git a/app/lib/methods/loadMessagesForRoom.js b/app/lib/methods/loadMessagesForRoom.js index a8dc733ac7..5ef75c7b67 100644 --- a/app/lib/methods/loadMessagesForRoom.js +++ b/app/lib/methods/loadMessagesForRoom.js @@ -3,8 +3,8 @@ import moment from 'moment'; import { MESSAGE_TYPE_LOAD_MORE } from '../../constants/messageTypeLoad'; import log from '../../utils/log'; import { getMessageById } from '../database/services/Message'; -import updateMessages from './updateMessages'; import { generateLoadMoreId } from '../utils'; +import updateMessages from './updateMessages'; const COUNT = 50; diff --git a/app/lib/methods/loadMissedMessages.js b/app/lib/methods/loadMissedMessages.js index d1acaf0b4a..f6cf13fa99 100644 --- a/app/lib/methods/loadMissedMessages.js +++ b/app/lib/methods/loadMissedMessages.js @@ -29,7 +29,7 @@ async function load({ rid: roomId, lastOpen }) { export default function loadMissedMessages(args) { return new Promise(async(resolve, reject) => { try { - const data = (await load.call(this, { rid: args.rid, lastOpen: args.lastOpen })); + const data = await load.call(this, { rid: args.rid, lastOpen: args.lastOpen }); if (data) { const { updated, deleted } = data; diff --git a/app/lib/methods/loadNextMessages.js b/app/lib/methods/loadNextMessages.js index 3a5e5e6ffe..48dae4c39b 100644 --- a/app/lib/methods/loadNextMessages.js +++ b/app/lib/methods/loadNextMessages.js @@ -3,10 +3,10 @@ import moment from 'moment'; import orderBy from 'lodash/orderBy'; import log from '../../utils/log'; -import updateMessages from './updateMessages'; import { getMessageById } from '../database/services/Message'; import { MESSAGE_TYPE_LOAD_NEXT_CHUNK } from '../../constants/messageTypeLoad'; import { generateLoadMoreId } from '../utils'; +import updateMessages from './updateMessages'; const COUNT = 50; diff --git a/app/lib/methods/loadSurroundingMessages.js b/app/lib/methods/loadSurroundingMessages.js index 74c345c2fc..5c46ad2f1a 100644 --- a/app/lib/methods/loadSurroundingMessages.js +++ b/app/lib/methods/loadSurroundingMessages.js @@ -3,10 +3,10 @@ import moment from 'moment'; import orderBy from 'lodash/orderBy'; import log from '../../utils/log'; -import updateMessages from './updateMessages'; import { getMessageById } from '../database/services/Message'; import { MESSAGE_TYPE_LOAD_NEXT_CHUNK, MESSAGE_TYPE_LOAD_PREVIOUS_CHUNK } from '../../constants/messageTypeLoad'; import { generateLoadMoreId } from '../utils'; +import updateMessages from './updateMessages'; const COUNT = 50; diff --git a/app/lib/methods/loadThreadMessages.js b/app/lib/methods/loadThreadMessages.js index d170635e8c..d86d8e9088 100644 --- a/app/lib/methods/loadThreadMessages.js +++ b/app/lib/methods/loadThreadMessages.js @@ -2,11 +2,11 @@ import { Q } from '@nozbe/watermelondb'; import { sanitizedRaw } from '@nozbe/watermelondb/RawRecord'; import EJSON from 'ejson'; -import buildMessage from './helpers/buildMessage'; import database from '../database'; import log from '../../utils/log'; -import protectedFunction from './helpers/protectedFunction'; import { Encryption } from '../encryption'; +import protectedFunction from './helpers/protectedFunction'; +import buildMessage from './helpers/buildMessage'; async function load({ tmid }) { try { diff --git a/app/lib/methods/logout.js b/app/lib/methods/logout.js index 114b762079..33e8c8818d 100644 --- a/app/lib/methods/logout.js +++ b/app/lib/methods/logout.js @@ -8,8 +8,8 @@ import database, { getDatabase } from '../database'; import RocketChat from '../rocketchat'; import { useSsl } from '../../utils/url'; import { - E2E_PUBLIC_KEY, E2E_PRIVATE_KEY, + E2E_PUBLIC_KEY, E2E_RANDOM_PASSWORD_KEY } from '../encryption/constants'; import UserPreferences from '../userPreferences'; diff --git a/app/lib/methods/subscriptions/room.js b/app/lib/methods/subscriptions/room.js index 2d9ba8f909..7e21a72932 100644 --- a/app/lib/methods/subscriptions/room.js +++ b/app/lib/methods/subscriptions/room.js @@ -7,7 +7,7 @@ import protectedFunction from '../helpers/protectedFunction'; import buildMessage from '../helpers/buildMessage'; import database from '../../database'; import reduxStore from '../../createStore'; -import { addUserTyping, removeUserTyping, clearUserTyping } from '../../../actions/usersTyping'; +import { addUserTyping, clearUserTyping, removeUserTyping } from '../../../actions/usersTyping'; import debounce from '../../../utils/debounce'; import RocketChat from '../../rocketchat'; import { subscribeRoom, unsubscribeRoom } from '../../../actions/room'; @@ -156,7 +156,7 @@ export default class RoomSubscription { RocketChat.readMessages(this.rid, lastOpen); }, 300); - updateMessage = message => ( + updateMessage = message => new Promise(async(resolve) => { if (this.rid !== message.rid) { return resolve(); @@ -234,7 +234,7 @@ export default class RoomSubscription { return resolve(); }) - ) + handleMessageReceived = (ddpMessage) => { if (!this.timer) { diff --git a/app/lib/methods/updateMessages.js b/app/lib/methods/updateMessages.js index 0b6b6c7c06..8130e9179d 100644 --- a/app/lib/methods/updateMessages.js +++ b/app/lib/methods/updateMessages.js @@ -1,13 +1,13 @@ import { sanitizedRaw } from '@nozbe/watermelondb/RawRecord'; import { Q } from '@nozbe/watermelondb'; -import buildMessage from './helpers/buildMessage'; import log from '../../utils/log'; import database from '../database'; -import protectedFunction from './helpers/protectedFunction'; import { Encryption } from '../encryption'; import { MESSAGE_TYPE_ANY_LOAD } from '../../constants/messageTypeLoad'; import { generateLoadMoreId } from '../utils'; +import protectedFunction from './helpers/protectedFunction'; +import buildMessage from './helpers/buildMessage'; export default function updateMessages({ rid, update = [], remove = [], loaderItem diff --git a/app/lib/rocketchat.js b/app/lib/rocketchat.js index 59ee94fc51..a01790f44c 100644 --- a/app/lib/rocketchat.js +++ b/app/lib/rocketchat.js @@ -1,71 +1,63 @@ import { InteractionManager } from 'react-native'; import EJSON from 'ejson'; import { - Rocketchat as RocketchatClient, - settings as RocketChatSettings + settings as RocketChatSettings, + Rocketchat as RocketchatClient } from '@rocket.chat/sdk'; import { Q } from '@nozbe/watermelondb'; import AsyncStorage from '@react-native-community/async-storage'; import { sanitizedRaw } from '@nozbe/watermelondb/RawRecord'; import RNFetchBlob from 'rn-fetch-blob'; -import { compareServerVersion, methods } from './utils'; -import reduxStore from './createStore'; import defaultSettings from '../constants/settings'; -import database from './database'; import log from '../utils/log'; -import { isIOS, getBundleId } from '../utils/deviceInfo'; +import { getBundleId, isIOS } from '../utils/deviceInfo'; import fetch from '../utils/fetch'; import SSLPinning from '../utils/sslPinning'; - import { encryptionInit } from '../actions/encryption'; -import { setUser, setLoginServices, loginRequest } from '../actions/login'; -import { disconnect, connectSuccess, connectRequest } from '../actions/connect'; -import { shareSelectServer, shareSetUser, shareSetSettings } from '../actions/share'; - +import { loginRequest, setLoginServices, setUser } from '../actions/login'; +import { connectRequest, connectSuccess, disconnect } from '../actions/connect'; +import { shareSelectServer, shareSetSettings, shareSetUser } from '../actions/share'; +import { getDeviceToken } from '../notifications/push'; +import { setActiveUsers } from '../actions/activeUsers'; +import I18n from '../i18n'; +import { twoFactor } from '../utils/twoFactor'; +import { selectServerFailure } from '../actions/server'; +import { useSsl } from '../utils/url'; +import EventEmitter from '../utils/events'; +import { updatePermission } from '../actions/permissions'; +import { TEAM_TYPE } from '../definition/ITeam'; +import { updateSettings } from '../actions/settings'; +import { compareServerVersion, methods } from './utils'; +import reduxStore from './createStore'; +import database from './database'; import subscribeRooms from './methods/subscriptions/rooms'; import getUsersPresence, { getUserPresence, subscribeUsersPresence } from './methods/getUsersPresence'; - import protectedFunction from './methods/helpers/protectedFunction'; import readMessages from './methods/readMessages'; import getSettings, { getLoginSettings, setSettings, subscribeSettings } from './methods/getSettings'; - import getRooms from './methods/getRooms'; -import { setPermissions, getPermissions } from './methods/getPermissions'; +import { getPermissions, setPermissions } from './methods/getPermissions'; import { getCustomEmojis, setCustomEmojis } from './methods/getCustomEmojis'; import { - getEnterpriseModules, setEnterpriseModules, hasLicense, isOmnichannelModuleAvailable + getEnterpriseModules, hasLicense, isOmnichannelModuleAvailable, setEnterpriseModules } from './methods/enterpriseModules'; import getSlashCommands from './methods/getSlashCommands'; -import { getRoles, setRoles, onRolesChanged } from './methods/getRoles'; +import { getRoles, onRolesChanged, setRoles } from './methods/getRoles'; import canOpenRoom from './methods/canOpenRoom'; -import triggerBlockAction, { triggerSubmitView, triggerCancel } from './methods/actions'; - +import triggerBlockAction, { triggerCancel, triggerSubmitView } from './methods/actions'; import loadMessagesForRoom from './methods/loadMessagesForRoom'; import loadSurroundingMessages from './methods/loadSurroundingMessages'; import loadNextMessages from './methods/loadNextMessages'; import loadMissedMessages from './methods/loadMissedMessages'; import loadThreadMessages from './methods/loadThreadMessages'; - import sendMessage, { resendMessage } from './methods/sendMessage'; -import { sendFileMessage, cancelUpload, isUploadActive } from './methods/sendFileMessage'; - +import { cancelUpload, isUploadActive, sendFileMessage } from './methods/sendFileMessage'; import callJitsi from './methods/callJitsi'; import logout, { removeServer } from './methods/logout'; - -import { getDeviceToken } from '../notifications/push'; -import { setActiveUsers } from '../actions/activeUsers'; -import I18n from '../i18n'; -import { twoFactor } from '../utils/twoFactor'; -import { selectServerFailure } from '../actions/server'; -import { useSsl } from '../utils/url'; import UserPreferences from './userPreferences'; import { Encryption } from './encryption'; -import EventEmitter from '../utils/events'; import { sanitizeLikeString } from './database/utils'; -import { updatePermission } from '../actions/permissions'; -import { TEAM_TYPE } from '../definition/ITeam'; -import { updateSettings } from '../actions/settings'; const TOKEN_KEY = 'reactnativemeteor_usertoken'; const CURRENT_SERVER = 'currentServer'; @@ -109,7 +101,7 @@ const RocketChat = { extraData: { broadcast, encrypted, - ...(teamId && { teamId }) + ...teamId && { teamId } } }; return this.post(type ? 'groups.create' : 'channels.create', params); @@ -140,7 +132,7 @@ const RocketChat = { try { // Try to resolve as json const jsonRes = response.json(); - if (!(jsonRes?.success)) { + if (!jsonRes?.success) { return { success: false, message: I18n.t('Not_RC_Server', { contact: I18n.t('Contact_your_server_admin') }) @@ -713,7 +705,7 @@ const RocketChat = { t: sub.t, encrypted: sub.encrypted, lastMessage: sub.lastMessage, - ...(sub.teamId && { teamId: sub.teamId }) + ...sub.teamId && { teamId: sub.teamId } })); return data; @@ -854,7 +846,7 @@ const RocketChat = { }, convertChannelToTeam({ rid, name, type }) { const params = { - ...(type === 'c' + ...type === 'c' ? { channelId: rid, channelName: name @@ -862,14 +854,14 @@ const RocketChat = { : { roomId: rid, roomName: name - }) + } }; return this.sdk.post(type === 'c' ? 'channels.convertToTeam' : 'groups.convertToTeam', params); }, convertTeamToChannel({ teamId, selected }) { const params = { teamId, - ...(selected.length && { roomsToRemove: selected }) + ...selected.length && { roomsToRemove: selected } }; return this.sdk.post('teams.convertToChannel', params); }, @@ -1606,7 +1598,7 @@ const RocketChat = { return false; } const autoTranslatePermission = reduxStore.getState().permissions['auto-translate']; - const userRoles = (reduxStore.getState().login?.user?.roles) ?? []; + const userRoles = reduxStore.getState().login?.user?.roles ?? []; return autoTranslatePermission?.some(role => userRoles.includes(role)); } catch (e) { log(e); diff --git a/app/lib/utils.js b/app/lib/utils.js index 615b353ae4..ec7a398ee0 100644 --- a/app/lib/utils.js +++ b/app/lib/utils.js @@ -1,5 +1,5 @@ import { - lt, lte, gt, gte, coerce + coerce, gt, gte, lt, lte } from 'semver'; export const formatAttachmentUrl = (attachmentUrl, userId, token, server) => { diff --git a/app/notifications/push/index.js b/app/notifications/push/index.js index 13e9291646..8e6db991ac 100644 --- a/app/notifications/push/index.js +++ b/app/notifications/push/index.js @@ -1,8 +1,9 @@ import EJSON from 'ejson'; -import PushNotification from './push'; + import store from '../../lib/createStore'; import { deepLinkingOpen } from '../../actions/deepLinking'; import { isFDroidBuild } from '../../constants/environment'; +import PushNotification from './push'; export const onNotification = (notification) => { if (notification) { diff --git a/app/presentation/DirectoryItem/index.tsx b/app/presentation/DirectoryItem/index.tsx index 400eb42e64..6e07bc4548 100644 --- a/app/presentation/DirectoryItem/index.tsx +++ b/app/presentation/DirectoryItem/index.tsx @@ -36,7 +36,7 @@ const DirectoryItemLabel = React.memo(({ text, theme }: IDirectoryItemLabel) => }); const DirectoryItem = ({ - title, description, avatar, onPress, testID, style, rightLabel, type, rid, theme, teamMain + title, description, avatar, onPress, testID, style, rightLabel, type, rid, theme, teamMain, }: IDirectoryItem) => ( <Touch onPress={onPress} diff --git a/app/presentation/DirectoryItem/styles.ts b/app/presentation/DirectoryItem/styles.ts index 55fa36c47c..d0dbc8e9b8 100644 --- a/app/presentation/DirectoryItem/styles.ts +++ b/app/presentation/DirectoryItem/styles.ts @@ -6,39 +6,39 @@ export const ROW_HEIGHT = 54; export default StyleSheet.create({ directoryItemButton: { - height: ROW_HEIGHT + height: ROW_HEIGHT, }, directoryItemContainer: { flex: 1, flexDirection: 'row', alignItems: 'center', justifyContent: 'center', - paddingHorizontal: 15 + paddingHorizontal: 15, }, directoryItemAvatar: { - marginRight: 12 + marginRight: 12, }, directoryItemTextTitle: { flexDirection: 'row', - alignItems: 'center' + alignItems: 'center', }, directoryItemTextContainer: { flex: 1, flexDirection: 'column', - justifyContent: 'center' + justifyContent: 'center', }, directoryItemName: { flex: 1, fontSize: 17, - ...sharedStyles.textMedium + ...sharedStyles.textMedium, }, directoryItemUsername: { fontSize: 14, - ...sharedStyles.textRegular + ...sharedStyles.textRegular, }, directoryItemLabel: { fontSize: 14, paddingLeft: 10, - ...sharedStyles.textRegular - } + ...sharedStyles.textRegular, + }, }); diff --git a/app/presentation/ImageViewer/ImageViewer.android.tsx b/app/presentation/ImageViewer/ImageViewer.android.tsx index ff5fbc1384..431d8679e7 100644 --- a/app/presentation/ImageViewer/ImageViewer.android.tsx +++ b/app/presentation/ImageViewer/ImageViewer.android.tsx @@ -1,17 +1,18 @@ import React from 'react'; import { StyleSheet, View } from 'react-native'; -import { PanGestureHandler, State, PinchGestureHandler } from 'react-native-gesture-handler'; +import { PanGestureHandler, PinchGestureHandler, State } from 'react-native-gesture-handler'; import Animated, { Easing } from 'react-native-reanimated'; + import { ImageComponent } from './ImageComponent'; import { themes } from '../../constants/colors'; const styles = StyleSheet.create({ flex: { - flex: 1 + flex: 1, }, image: { - backgroundColor: 'transparent' - } + backgroundColor: 'transparent', + }, }); const { @@ -36,7 +37,7 @@ const { clockRunning, Value, Clock, - event + event, } = Animated; function scaleDiff(value: any) { @@ -51,7 +52,7 @@ function dragDiff(value: any, updating: any) { return cond( updating, [set(tmp, sub(value, prev)), set(prev, value), tmp], - set(prev, 0) + set(prev, 0), ); } @@ -63,7 +64,7 @@ function friction(value: any) { const MAX_VALUE = 100; return max( 1, - min(MAX_FRICTION, add(1, multiply(value, (MAX_FRICTION - 1) / MAX_VALUE))) + min(MAX_FRICTION, add(1, multiply(value, (MAX_FRICTION - 1) / MAX_VALUE))), ); } @@ -80,7 +81,7 @@ function scaleRest(value: any) { return cond( lessThan(value, MIN_SCALE), MIN_SCALE, - cond(lessThan(MAX_SCALE, value), MAX_SCALE, value) + cond(lessThan(MAX_SCALE, value), MAX_SCALE, value), ); } @@ -91,12 +92,12 @@ function scaleFriction(value: any, rest: any, delta: any) { const howFar = abs(sub(rest, value)); const f = max( 1, - min(MAX_FRICTION, add(1, multiply(howFar, (MAX_FRICTION - 1) / MAX_VALUE))) + min(MAX_FRICTION, add(1, multiply(howFar, (MAX_FRICTION - 1) / MAX_VALUE))), ); return cond( lessThan(0, howFar), multiply(value, add(1, divide(add(delta, -1), f))), - res + res, ); } @@ -105,13 +106,13 @@ function runTiming(clock: any, value: any, dest: any, startStopClock: any = true finished: new Value(0), position: new Value(0), frameTime: new Value(0), - time: new Value(0) + time: new Value(0), }; const config = { toValue: new Value(0), duration: 300, - easing: Easing.inOut(Easing.cubic) + easing: Easing.inOut(Easing.cubic), }; return [ @@ -121,11 +122,11 @@ function runTiming(clock: any, value: any, dest: any, startStopClock: any = true set(state.time, 0), set(state.position, value), set(config.toValue, dest), - startStopClock && startClock(clock) + startStopClock && startClock(clock), ]), timing(clock, state, config), cond(state.finished, startStopClock && stopClock(clock)), - state.position + state.position, ]; } @@ -134,7 +135,7 @@ function runDecay(clock: any, value: any, velocity: any) { finished: new Value(0), velocity: new Value(0), position: new Value(0), - time: new Value(0) + time: new Value(0), }; const config = { deceleration: 0.99 }; @@ -145,12 +146,12 @@ function runDecay(clock: any, value: any, velocity: any) { set(state.velocity, velocity), set(state.position, value), set(state.time, 0), - startClock(clock) + startClock(clock), ]), set(state.position, value), decay(clock, state, config), cond(state.finished, stopClock(clock)), - state.position + state.position, ]; } @@ -161,7 +162,7 @@ function bouncyPinch( focalX: any, displacementX: any, focalY: any, - displacementY: any + displacementY: any, ) { const clock = new Clock(); @@ -170,12 +171,12 @@ function bouncyPinch( const focalXRest = cond( lessThan(value, 1), 0, - sub(displacementX, multiply(focalX, add(-1, divide(rest, value)))) + sub(displacementX, multiply(focalX, add(-1, divide(rest, value)))), ); const focalYRest = cond( lessThan(value, 1), 0, - sub(displacementY, multiply(focalY, add(-1, divide(rest, value)))) + sub(displacementY, multiply(focalY, add(-1, divide(rest, value)))), ); const nextScale = new Value(1); @@ -186,23 +187,23 @@ function bouncyPinch( set(nextScale, scaleFriction(value, rest, delta)), set( displacementX, - sub(displacementX, multiply(focalX, add(-1, divide(nextScale, value)))) + sub(displacementX, multiply(focalX, add(-1, divide(nextScale, value)))), ), set( displacementY, - sub(displacementY, multiply(focalY, add(-1, divide(nextScale, value)))) + sub(displacementY, multiply(focalY, add(-1, divide(nextScale, value)))), ), - nextScale + nextScale, ], cond( or(clockRunning(clock), not(eq(rest, value))), [ set(displacementX, runTiming(clock, displacementX, focalXRest, false)), set(displacementY, runTiming(clock, displacementY, focalYRest, false)), - runTiming(clock, value, rest) + runTiming(clock, value, rest), ], - value - ) + value, + ), ); } @@ -212,7 +213,7 @@ function bouncy( gestureActive: any, lowerBound: any, upperBound: any, - f: any + f: any, ) { const timingClock = new Clock(); const decayClock = new Clock(); @@ -222,13 +223,13 @@ function bouncy( // did value go beyond the limits (lower, upper) const isOutOfBounds = or( lessThan(value, lowerBound), - lessThan(upperBound, value) + lessThan(upperBound, value), ); // position to snap to (upper or lower is beyond or the current value elsewhere) const rest = cond( lessThan(value, lowerBound), lowerBound, - cond(lessThan(upperBound, value), upperBound, value) + cond(lessThan(upperBound, value), upperBound, value), ); // how much the value exceeds the bounds, this is used to calculate friction const outOfBounds = abs(sub(rest, value)); @@ -238,7 +239,7 @@ function bouncy( [ stopClock(timingClock), stopClock(decayClock), - add(value, divide(gestureDiv, f(outOfBounds))) + add(value, divide(gestureDiv, f(outOfBounds))), ], cond( or(clockRunning(timingClock), isOutOfBounds), @@ -246,9 +247,9 @@ function bouncy( cond( or(clockRunning(decayClock), lessThan(5, abs(velocity))), runDecay(decayClock, value, velocity), - value - ) - ) + value, + ), + ), ); } @@ -260,7 +261,6 @@ interface IImageProps { } class Image extends React.PureComponent<IImageProps, any> { - render() { const { imageComponentType }: any = this.props; @@ -284,11 +284,17 @@ interface IImageViewerProps { export class ImageViewer extends React.Component<IImageViewerProps, any> { private _onPinchEvent: any; + private _focalDisplacementX: any; + private _focalDisplacementY: any; + private _scale: any; + private _onPanEvent: any; + private _panTransX: any; + private _panTransY: any; constructor(props: IImageViewerProps) { @@ -310,9 +316,9 @@ export class ImageViewer extends React.Component<IImageViewerProps, any> { state: pinchState, scale: pinchScale, focalX: pinchFocalX, - focalY: pinchFocalY - } - } + focalY: pinchFocalY, + }, + }, ]); // SCALE @@ -321,12 +327,12 @@ export class ImageViewer extends React.Component<IImageViewerProps, any> { this._focalDisplacementX = new Value(0); const relativeFocalX = sub( pinchFocalX, - add(panTransX, this._focalDisplacementX) + add(panTransX, this._focalDisplacementX), ); this._focalDisplacementY = new Value(0); const relativeFocalY = sub( pinchFocalY, - add(panTransY, this._focalDisplacementY) + add(panTransY, this._focalDisplacementY), ); this._scale = set( scale, @@ -337,8 +343,8 @@ export class ImageViewer extends React.Component<IImageViewerProps, any> { relativeFocalX, this._focalDisplacementX, relativeFocalY, - this._focalDisplacementY - ) + this._focalDisplacementY, + ), ); // PAN @@ -350,9 +356,9 @@ export class ImageViewer extends React.Component<IImageViewerProps, any> { nativeEvent: { translationX: dragX, translationY: dragY, - state: panState - } - } + state: panState, + }, + }, ]); const panActive = eq(panState, State.ACTIVE); @@ -362,7 +368,7 @@ export class ImageViewer extends React.Component<IImageViewerProps, any> { const panUpX = cond( lessThan(this._scale, 1), 0, - multiply(-1, this._focalDisplacementX) + multiply(-1, this._focalDisplacementX), ); const panLowX = add(panUpX, multiply(-WIDTH, add(max(1, this._scale), -1))); this._panTransX = set( @@ -373,19 +379,19 @@ export class ImageViewer extends React.Component<IImageViewerProps, any> { or(panActive, pinchActive), panLowX, panUpX, - panFriction - ) + panFriction, + ), ); // Y const panUpY = cond( lessThan(this._scale, 1), 0, - multiply(-1, this._focalDisplacementY) + multiply(-1, this._focalDisplacementY), ); const panLowY = add( panUpY, - multiply(-HEIGHT, add(max(1, this._scale), -1)) + multiply(-HEIGHT, add(max(1, this._scale), -1)), ); this._panTransY = set( panTransY, @@ -395,8 +401,8 @@ export class ImageViewer extends React.Component<IImageViewerProps, any> { or(panActive, pinchActive), panLowY, panUpY, - panFriction - ) + panFriction, + ), ); } @@ -438,7 +444,7 @@ export class ImageViewer extends React.Component<IImageViewerProps, any> { styles.image, { width, - height: '100%' + height: '100%', }, { transform: [ @@ -448,9 +454,9 @@ export class ImageViewer extends React.Component<IImageViewerProps, any> { { translateY: this._focalDisplacementY }, { translateX: scaleTopLeftFixX }, { translateY: scaleTopLeftFixY }, - { scale: this._scale } - ] - } + { scale: this._scale }, + ], + }, ]} imageComponentType={imageComponentType} resizeMode='contain' diff --git a/app/presentation/ImageViewer/ImageViewer.ios.tsx b/app/presentation/ImageViewer/ImageViewer.ios.tsx index 2dc51049e0..f3eafeea9d 100644 --- a/app/presentation/ImageViewer/ImageViewer.ios.tsx +++ b/app/presentation/ImageViewer/ImageViewer.ios.tsx @@ -7,11 +7,11 @@ import { themes } from '../../constants/colors'; const styles = StyleSheet.create({ scrollContent: { width: '100%', - height: '100%' + height: '100%', }, image: { - flex: 1 - } + flex: 1, + }, }); interface IImageViewer { @@ -34,7 +34,7 @@ export const ImageViewer = ({ contentContainerStyle={[ styles.scrollContent, width && { width }, - height && { height } + height && { height }, ]} showsHorizontalScrollIndicator={false} showsVerticalScrollIndicator={false} diff --git a/app/presentation/ImageViewer/index.ts b/app/presentation/ImageViewer/index.ts index bf629ae84b..d8ae350b5b 100644 --- a/app/presentation/ImageViewer/index.ts +++ b/app/presentation/ImageViewer/index.ts @@ -1,3 +1,5 @@ +// @ts-ignore +// eslint-disable-next-line import/no-unresolved export * from './ImageViewer'; export * from './types'; export * from './ImageComponent'; diff --git a/app/presentation/ImageViewer/types.ts b/app/presentation/ImageViewer/types.ts index 56c4a7d27d..6af8284b90 100644 --- a/app/presentation/ImageViewer/types.ts +++ b/app/presentation/ImageViewer/types.ts @@ -1,4 +1,4 @@ export const types = { FAST_IMAGE: 'FAST_IMAGE', - REACT_NATIVE_IMAGE: 'REACT_NATIVE' + REACT_NATIVE_IMAGE: 'REACT_NATIVE', }; diff --git a/app/presentation/KeyboardView.tsx b/app/presentation/KeyboardView.tsx index 0cc5b5e56c..0214ab662a 100644 --- a/app/presentation/KeyboardView.tsx +++ b/app/presentation/KeyboardView.tsx @@ -1,5 +1,6 @@ import React from 'react'; import { KeyboardAwareScrollView } from '@codler/react-native-keyboard-aware-scroll-view'; + import scrollPersistTaps from '../utils/scrollPersistTaps'; interface IKeyboardViewProps { @@ -11,10 +12,9 @@ interface IKeyboardViewProps { } export default class KeyboardView extends React.PureComponent<IKeyboardViewProps, any> { - render() { const { - style, contentContainerStyle, scrollEnabled, keyboardVerticalOffset, children + style, contentContainerStyle, scrollEnabled, keyboardVerticalOffset, children, } = this.props; return ( diff --git a/app/presentation/RoomItem/Actions.tsx b/app/presentation/RoomItem/Actions.tsx index b87299d5c0..9569d1ab1a 100644 --- a/app/presentation/RoomItem/Actions.tsx +++ b/app/presentation/RoomItem/Actions.tsx @@ -1,5 +1,5 @@ import React from 'react'; -import { Animated, View, Text } from 'react-native'; +import { Animated, Text, View } from 'react-native'; import { RectButton } from 'react-native-gesture-handler'; import I18n, { isRTL } from '../../i18n'; @@ -27,14 +27,14 @@ interface IRightActions { const reverse = new Animated.Value(isRTL() ? -1 : 1); export const LeftActions = React.memo(({ - theme, transX, isRead, width, onToggleReadPress + theme, transX, isRead, width, onToggleReadPress, }: ILeftActions) => { const translateX = Animated.multiply( transX.interpolate({ inputRange: [0, ACTION_WIDTH], - outputRange: [-ACTION_WIDTH, 0] + outputRange: [-ACTION_WIDTH, 0], }), - reverse + reverse, ); return ( <View @@ -48,8 +48,8 @@ export const LeftActions = React.memo(({ right: width - ACTION_WIDTH, width, transform: [{ translateX }], - backgroundColor: themes[theme].tintColor - } + backgroundColor: themes[theme].tintColor, + }, ]} > <View style={styles.actionLeftButtonContainer}> @@ -66,21 +66,21 @@ export const LeftActions = React.memo(({ }); export const RightActions = React.memo(({ - transX, favorite, width, toggleFav, onHidePress, theme + transX, favorite, width, toggleFav, onHidePress, theme, }: IRightActions) => { const translateXFav = Animated.multiply( transX.interpolate({ inputRange: [-width / 2, -ACTION_WIDTH * 2, 0], - outputRange: [width / 2, width - ACTION_WIDTH * 2, width] + outputRange: [width / 2, width - ACTION_WIDTH * 2, width], }), - reverse + reverse, ); const translateXHide = Animated.multiply( transX.interpolate({ inputRange: [-width, -LONG_SWIPE, -ACTION_WIDTH * 2, 0], - outputRange: [0, width - LONG_SWIPE, width - ACTION_WIDTH, width] + outputRange: [0, width - LONG_SWIPE, width - ACTION_WIDTH, width], }), - reverse + reverse, ); return ( <View @@ -89,7 +89,7 @@ export const RightActions = React.memo(({ left: 0, right: 0, height: 75, - flexDirection: 'row' + flexDirection: 'row', }} pointerEvents='box-none' > @@ -99,8 +99,8 @@ export const RightActions = React.memo(({ { width, transform: [{ translateX: translateXFav }], - backgroundColor: themes[theme].hideBackground - } + backgroundColor: themes[theme].hideBackground, + }, ]} > <RectButton style={[styles.actionButton, { backgroundColor: themes[theme].favoriteBackground }]} onPress={toggleFav}> @@ -115,8 +115,8 @@ export const RightActions = React.memo(({ styles.actionRightButtonContainer, { width, - transform: [{ translateX: translateXHide }] - } + transform: [{ translateX: translateXHide }], + }, ]} > <RectButton style={[styles.actionButton, { backgroundColor: themes[theme].hideBackground }]} onPress={onHidePress}> diff --git a/app/presentation/RoomItem/LastMessage.tsx b/app/presentation/RoomItem/LastMessage.tsx index 62bd881a17..186d72ca49 100644 --- a/app/presentation/RoomItem/LastMessage.tsx +++ b/app/presentation/RoomItem/LastMessage.tsx @@ -26,7 +26,7 @@ interface ILastMessage { } const formatMsg = ({ - lastMessage, type, showLastMessage, username, useRealName + lastMessage, type, showLastMessage, username, useRealName, }: Partial<ILastMessage>) => { if (!showLastMessage) { return ''; @@ -65,12 +65,12 @@ const formatMsg = ({ const arePropsEqual = (oldProps: any, newProps: any) => dequal(oldProps, newProps); const LastMessage = React.memo(({ - lastMessage, type, showLastMessage, username, alert, useRealName, theme + lastMessage, type, showLastMessage, username, alert, useRealName, theme, }: ILastMessage) => ( // @ts-ignore <Markdown msg={formatMsg({ - lastMessage, type, showLastMessage, username, useRealName + lastMessage, type, showLastMessage, username, useRealName, })} style={[styles.markdownText, { color: alert ? themes[theme].bodyText : themes[theme].auxiliaryText }]} customEmojis={false} diff --git a/app/presentation/RoomItem/RoomItem.tsx b/app/presentation/RoomItem/RoomItem.tsx index 4cdc64c575..95a00af37a 100644 --- a/app/presentation/RoomItem/RoomItem.tsx +++ b/app/presentation/RoomItem/RoomItem.tsx @@ -95,7 +95,7 @@ const RoomItem = ({ toggleRead, hideChannel, teamMain, - autoJoin + autoJoin, }: IRoomItem) => ( <Touchable onPress={onPress} diff --git a/app/presentation/RoomItem/Tag.tsx b/app/presentation/RoomItem/Tag.tsx index a245b30b6d..a9201f186f 100644 --- a/app/presentation/RoomItem/Tag.tsx +++ b/app/presentation/RoomItem/Tag.tsx @@ -17,7 +17,7 @@ const Tag = React.memo(({ name, testID }: ITag) => { <View style={[styles.tagContainer, { backgroundColor: themes[theme].borderColor }]}> <Text style={[ - styles.tagText, { color: themes[theme].infoText } + styles.tagText, { color: themes[theme].infoText }, ]} numberOfLines={1} testID={testID} diff --git a/app/presentation/RoomItem/Title.tsx b/app/presentation/RoomItem/Title.tsx index 613887fb45..bc3f265200 100644 --- a/app/presentation/RoomItem/Title.tsx +++ b/app/presentation/RoomItem/Title.tsx @@ -16,7 +16,7 @@ const Title = React.memo(({ name, theme, hideUnreadStatus, alert }: ITitle) => ( style={[ styles.title, alert && !hideUnreadStatus && styles.alert, - { color: themes[theme].titleText } + { color: themes[theme].titleText }, ]} ellipsizeMode='tail' numberOfLines={1} diff --git a/app/presentation/RoomItem/Touchable.tsx b/app/presentation/RoomItem/Touchable.tsx index 8161ac4c2f..246256dd8e 100644 --- a/app/presentation/RoomItem/Touchable.tsx +++ b/app/presentation/RoomItem/Touchable.tsx @@ -1,14 +1,14 @@ import React from 'react'; import { Animated } from 'react-native'; import { - LongPressGestureHandler, PanGestureHandler, State + LongPressGestureHandler, PanGestureHandler, State, } from 'react-native-gesture-handler'; import Touch from '../../utils/touch'; import { ACTION_WIDTH, + LONG_SWIPE, SMALL_SWIPE, - LONG_SWIPE } from './styles'; import { isRTL } from '../../i18n'; import { themes } from '../../constants/colors'; @@ -34,11 +34,17 @@ interface ITouchableProps { class Touchable extends React.Component<ITouchableProps, any> { private dragX: Animated.Value; + private rowOffSet: Animated.Value; + private reverse: Animated.Value; + private transX: Animated.AnimatedAddition; + private transXReverse: Animated.AnimatedMultiplication; + private _onGestureEvent: (...args: any[]) => void; + private _value: number; constructor(props: ITouchableProps) { @@ -48,243 +54,243 @@ class Touchable extends React.Component<ITouchableProps, any> { this.reverse = new Animated.Value(isRTL() ? -1 : 1); this.transX = Animated.add( this.rowOffSet, - this.dragX + this.dragX, ); this.transXReverse = Animated.multiply( this.transX, - this.reverse + this.reverse, ); this.state = { - rowState: 0 // 0: closed, 1: right opened, -1: left opened + rowState: 0, // 0: closed, 1: right opened, -1: left opened }; this._onGestureEvent = Animated.event( - [{ nativeEvent: { translationX: this.dragX } }], { useNativeDriver: true } + [{ nativeEvent: { translationX: this.dragX } }], { useNativeDriver: true }, ); this._value = 0; } - _onHandlerStateChange = ({ nativeEvent }: any) => { - if (nativeEvent.oldState === State.ACTIVE) { - this._handleRelease(nativeEvent); - } + _onHandlerStateChange = ({ nativeEvent }: any) => { + if (nativeEvent.oldState === State.ACTIVE) { + this._handleRelease(nativeEvent); } + } - onLongPressHandlerStateChange = ({ nativeEvent }: any) => { - if (nativeEvent.state === State.ACTIVE) { - this.onLongPress(); - } + onLongPressHandlerStateChange = ({ nativeEvent }: any) => { + if (nativeEvent.state === State.ACTIVE) { + this.onLongPress(); } + } - _handleRelease = (nativeEvent: any) => { - const { translationX } = nativeEvent; - const { rowState } = this.state; - this._value += translationX; + _handleRelease = (nativeEvent: any) => { + const { translationX } = nativeEvent; + const { rowState } = this.state; + this._value += translationX; - let toValue = 0; - if (rowState === 0) { // if no option is opened - if (translationX > 0 && translationX < LONG_SWIPE) { - // open leading option if he swipe right but not enough to trigger action - if (isRTL()) { - toValue = 2 * ACTION_WIDTH; - } else { - toValue = ACTION_WIDTH; - } - this.setState({ rowState: -1 }); - } else if (translationX >= LONG_SWIPE) { - toValue = 0; - if (isRTL()) { - this.hideChannel(); - } else { - this.toggleRead(); - } - } else if (translationX < 0 && translationX > -LONG_SWIPE) { - // open trailing option if he swipe left - if (isRTL()) { - toValue = -ACTION_WIDTH; - } else { - toValue = -2 * ACTION_WIDTH; - } - this.setState({ rowState: 1 }); - } else if (translationX <= -LONG_SWIPE) { - toValue = 0; - this.setState({ rowState: 0 }); - if (isRTL()) { - this.toggleRead(); - } else { - this.hideChannel(); - } + let toValue = 0; + if (rowState === 0) { // if no option is opened + if (translationX > 0 && translationX < LONG_SWIPE) { + // open leading option if he swipe right but not enough to trigger action + if (isRTL()) { + toValue = 2 * ACTION_WIDTH; } else { - toValue = 0; + toValue = ACTION_WIDTH; } + this.setState({ rowState: -1 }); + } else if (translationX >= LONG_SWIPE) { + toValue = 0; + if (isRTL()) { + this.hideChannel(); + } else { + this.toggleRead(); + } + } else if (translationX < 0 && translationX > -LONG_SWIPE) { + // open trailing option if he swipe left + if (isRTL()) { + toValue = -ACTION_WIDTH; + } else { + toValue = -2 * ACTION_WIDTH; + } + this.setState({ rowState: 1 }); + } else if (translationX <= -LONG_SWIPE) { + toValue = 0; + this.setState({ rowState: 0 }); + if (isRTL()) { + this.toggleRead(); + } else { + this.hideChannel(); + } + } else { + toValue = 0; } + } - if (rowState === -1) { // if left option is opened - if (this._value < SMALL_SWIPE) { - toValue = 0; - this.setState({ rowState: 0 }); - } else if (this._value > LONG_SWIPE) { - toValue = 0; - this.setState({ rowState: 0 }); - if (isRTL()) { - this.hideChannel(); - } else { - this.toggleRead(); - } - } else if (isRTL()) { - toValue = 2 * ACTION_WIDTH; + if (rowState === -1) { // if left option is opened + if (this._value < SMALL_SWIPE) { + toValue = 0; + this.setState({ rowState: 0 }); + } else if (this._value > LONG_SWIPE) { + toValue = 0; + this.setState({ rowState: 0 }); + if (isRTL()) { + this.hideChannel(); } else { - toValue = ACTION_WIDTH; + this.toggleRead(); } + } else if (isRTL()) { + toValue = 2 * ACTION_WIDTH; + } else { + toValue = ACTION_WIDTH; } + } - if (rowState === 1) { // if right option is opened - if (this._value > -2 * SMALL_SWIPE) { - toValue = 0; - this.setState({ rowState: 0 }); - } else if (this._value < -LONG_SWIPE) { - toValue = 0; - this.setState({ rowState: 0 }); - if (isRTL()) { - this.toggleRead(); - } else { - this.hideChannel(); - } - } else if (isRTL()) { - toValue = -ACTION_WIDTH; + if (rowState === 1) { // if right option is opened + if (this._value > -2 * SMALL_SWIPE) { + toValue = 0; + this.setState({ rowState: 0 }); + } else if (this._value < -LONG_SWIPE) { + toValue = 0; + this.setState({ rowState: 0 }); + if (isRTL()) { + this.toggleRead(); } else { - toValue = -2 * ACTION_WIDTH; + this.hideChannel(); } + } else if (isRTL()) { + toValue = -ACTION_WIDTH; + } else { + toValue = -2 * ACTION_WIDTH; } - this._animateRow(toValue); } + this._animateRow(toValue); + } + + _animateRow = (toValue: any) => { + this.rowOffSet.setValue(this._value); + this._value = toValue; + this.dragX.setValue(0); + Animated.spring(this.rowOffSet, { + toValue, + bounciness: 0, + useNativeDriver: true, + }).start(); + } - _animateRow = (toValue: any) => { - this.rowOffSet.setValue(this._value); - this._value = toValue; - this.dragX.setValue(0); - Animated.spring(this.rowOffSet, { - toValue, - bounciness: 0, - useNativeDriver: true - }).start(); + close = () => { + this.setState({ rowState: 0 }); + this._animateRow(0); + } + + toggleFav = () => { + const { toggleFav, rid, favorite } = this.props; + if (toggleFav) { + toggleFav(rid, favorite); } + this.close(); + }; - close = () => { - this.setState({ rowState: 0 }); - this._animateRow(0); + toggleRead = () => { + const { toggleRead, rid, isRead } = this.props; + if (toggleRead) { + toggleRead(rid, isRead); } + }; - toggleFav = () => { - const { toggleFav, rid, favorite } = this.props; - if (toggleFav) { - toggleFav(rid, favorite); - } - this.close(); - }; + hideChannel = () => { + const { hideChannel, rid, type } = this.props; + if (hideChannel) { + hideChannel(rid, type); + } + }; - toggleRead = () => { - const { toggleRead, rid, isRead } = this.props; - if (toggleRead) { - toggleRead(rid, isRead); - } - }; + onToggleReadPress = () => { + this.toggleRead(); + this.close(); + }; - hideChannel = () => { - const { hideChannel, rid, type } = this.props; - if (hideChannel) { - hideChannel(rid, type); - } - }; + onHidePress = () => { + this.hideChannel(); + this.close(); + }; - onToggleReadPress = () => { - this.toggleRead(); + onPress = () => { + const { rowState } = this.state; + if (rowState !== 0) { this.close(); - }; + return; + } + const { onPress } = this.props; + if (onPress) { + onPress(); + } + }; - onHidePress = () => { - this.hideChannel(); + onLongPress = () => { + const { rowState } = this.state; + const { onLongPress } = this.props; + if (rowState !== 0) { this.close(); - }; - - onPress = () => { - const { rowState } = this.state; - if (rowState !== 0) { - this.close(); - return; - } - const { onPress } = this.props; - if (onPress) { - onPress(); - } - }; - - onLongPress = () => { - const { rowState } = this.state; - const { onLongPress } = this.props; - if (rowState !== 0) { - this.close(); - return; - } + return; + } - if (onLongPress) { - onLongPress(); - } - }; + if (onLongPress) { + onLongPress(); + } + }; - render() { - const { - testID, isRead, width, favorite, children, theme, isFocused, swipeEnabled - } = this.props; + render() { + const { + testID, isRead, width, favorite, children, theme, isFocused, swipeEnabled, + } = this.props; - return ( - <LongPressGestureHandler onHandlerStateChange={this.onLongPressHandlerStateChange}> - <Animated.View> - <PanGestureHandler - minDeltaX={20} - onGestureEvent={this._onGestureEvent} - onHandlerStateChange={this._onHandlerStateChange} - enabled={swipeEnabled} - > - <Animated.View> - <LeftActions - transX={this.transXReverse} - isRead={isRead} - width={width} - onToggleReadPress={this.onToggleReadPress} - theme={theme} - /> - <RightActions - transX={this.transXReverse} - favorite={favorite} - width={width} - toggleFav={this.toggleFav} - onHidePress={this.onHidePress} + return ( + <LongPressGestureHandler onHandlerStateChange={this.onLongPressHandlerStateChange}> + <Animated.View> + <PanGestureHandler + minDeltaX={20} + onGestureEvent={this._onGestureEvent} + onHandlerStateChange={this._onHandlerStateChange} + enabled={swipeEnabled} + > + <Animated.View> + <LeftActions + transX={this.transXReverse} + isRead={isRead} + width={width} + onToggleReadPress={this.onToggleReadPress} + theme={theme} + /> + <RightActions + transX={this.transXReverse} + favorite={favorite} + width={width} + toggleFav={this.toggleFav} + onHidePress={this.onHidePress} + theme={theme} + /> + <Animated.View + style={{ + transform: [{ translateX: this.transX }], + }} + > + <Touch + onPress={this.onPress} theme={theme} - /> - <Animated.View + testID={testID} style={{ - transform: [{ translateX: this.transX }] + backgroundColor: isFocused ? themes[theme].chatComponentBackground : themes[theme].backgroundColor, }} > - <Touch - onPress={this.onPress} - theme={theme} - testID={testID} - style={{ - backgroundColor: isFocused ? themes[theme].chatComponentBackground : themes[theme].backgroundColor - }} - > - {children} - </Touch> - </Animated.View> + {children} + </Touch> </Animated.View> + </Animated.View> - </PanGestureHandler> - </Animated.View> - </LongPressGestureHandler> - ); - } + </PanGestureHandler> + </Animated.View> + </LongPressGestureHandler> + ); + } } export default Touchable; diff --git a/app/presentation/RoomItem/TypeIcon.tsx b/app/presentation/RoomItem/TypeIcon.tsx index 3f1bc4194c..1e9dff188d 100644 --- a/app/presentation/RoomItem/TypeIcon.tsx +++ b/app/presentation/RoomItem/TypeIcon.tsx @@ -1,4 +1,5 @@ import React from 'react'; + import RoomTypeIcon from '../../containers/RoomTypeIcon'; interface ITypeIcon { @@ -11,7 +12,7 @@ interface ITypeIcon { } const TypeIcon = React.memo(({ - type, prid, status, isGroupChat, teamMain + type, prid, status, isGroupChat, teamMain, }: ITypeIcon) => <RoomTypeIcon type={prid ? 'discussion' : type} isGroupChat={isGroupChat} status={status} teamMain={teamMain} />); export default TypeIcon; diff --git a/app/presentation/RoomItem/UpdatedAt.tsx b/app/presentation/RoomItem/UpdatedAt.tsx index 092709c7de..8e08f8bcb4 100644 --- a/app/presentation/RoomItem/UpdatedAt.tsx +++ b/app/presentation/RoomItem/UpdatedAt.tsx @@ -23,16 +23,16 @@ const UpdatedAt = React.memo(({ date, theme, hideUnreadStatus, alert }: IUpdated { color: themes[theme] - .auxiliaryText + .auxiliaryText, }, alert && !hideUnreadStatus && [ styles.updateAlert, { color: themes[theme] - .tintColor - } - ] + .tintColor, + }, + ], ]} ellipsizeMode='tail' numberOfLines={1} diff --git a/app/presentation/RoomItem/Wrapper.tsx b/app/presentation/RoomItem/Wrapper.tsx index 6e7459b8eb..3ce8686315 100644 --- a/app/presentation/RoomItem/Wrapper.tsx +++ b/app/presentation/RoomItem/Wrapper.tsx @@ -22,7 +22,7 @@ const Wrapper = ({ type, theme, rid, - children + children, }: IWrapper) => ( <View style={styles.container} @@ -39,8 +39,8 @@ const Wrapper = ({ style={[ styles.centerContainer, { - borderColor: themes[theme].separatorColor - } + borderColor: themes[theme].separatorColor, + }, ]} > {children} diff --git a/app/presentation/RoomItem/index.tsx b/app/presentation/RoomItem/index.tsx index 3393fca6bd..3cad440550 100644 --- a/app/presentation/RoomItem/index.tsx +++ b/app/presentation/RoomItem/index.tsx @@ -12,8 +12,8 @@ interface IRoomItemContainerProps { item: any; showLastMessage: boolean; id: string; - onPress({}?): void; - onLongPress({}?): void; + onPress: Function; + onLongPress: Function; username: string; avatarSize: number; width: number; @@ -42,11 +42,12 @@ const attrs = [ 'isFocused', 'forceUpdate', 'showLastMessage', - 'autoJoin' + 'autoJoin', ]; class RoomItemContainer extends React.Component<IRoomItemContainerProps, any> { private mounted: boolean; + private roomSubscription: any; static defaultProps = { @@ -57,7 +58,7 @@ class RoomItemContainer extends React.Component<IRoomItemContainerProps, any> { getRoomAvatar: () => '', getIsGroupChat: () => false, getIsRead: () => false, - swipeEnabled: true + swipeEnabled: true, } constructor(props: IRoomItemContainerProps) { @@ -76,7 +77,7 @@ class RoomItemContainer extends React.Component<IRoomItemContainerProps, any> { shouldComponentUpdate(nextProps: any) { const { props }: any = this; - return !attrs.every(key => props[key] === nextProps[key]); + return !attrs.every((key) => props[key] === nextProps[key]); } componentDidUpdate(prevProps: any) { @@ -142,14 +143,14 @@ class RoomItemContainer extends React.Component<IRoomItemContainerProps, any> { username, useRealName, swipeEnabled, - autoJoin + autoJoin, } = this.props; const name = getRoomTitle(item); const testID = `rooms-list-view-item-${ name }`; const avatar = getRoomAvatar(item); const isRead = getIsRead(item); const date = item.roomUpdatedAt && formatDate(item.roomUpdatedAt); - const alert = (item.alert || item.tunread?.length); + const alert = item.alert || item.tunread?.length; let accessibilityLabel = name; if (item.unread === 1) { @@ -222,7 +223,7 @@ const mapStateToProps = (state: any, ownProps: any) => { } return { connected: state.meteor.connected, - status + status, }; }; diff --git a/app/presentation/RoomItem/styles.ts b/app/presentation/RoomItem/styles.ts index f6c5bf05f6..6e9fe75587 100644 --- a/app/presentation/RoomItem/styles.ts +++ b/app/presentation/RoomItem/styles.ts @@ -1,4 +1,4 @@ -import { StyleSheet, PixelRatio } from 'react-native'; +import { PixelRatio, StyleSheet } from 'react-native'; import sharedStyles from '../../views/Styles'; @@ -9,103 +9,103 @@ export const LONG_SWIPE = ACTION_WIDTH * 3; export default StyleSheet.create<any>({ flex: { - flex: 1 + flex: 1, }, container: { flexDirection: 'row', alignItems: 'center', paddingLeft: 14, - height: ROW_HEIGHT + height: ROW_HEIGHT, }, centerContainer: { flex: 1, paddingVertical: 10, paddingRight: 14, - borderBottomWidth: StyleSheet.hairlineWidth + borderBottomWidth: StyleSheet.hairlineWidth, }, title: { flex: 1, fontSize: 17, lineHeight: 20, - ...sharedStyles.textMedium + ...sharedStyles.textMedium, }, alert: { - ...sharedStyles.textSemibold + ...sharedStyles.textSemibold, }, row: { flex: 1, flexDirection: 'row', - alignItems: 'flex-start' + alignItems: 'flex-start', }, titleContainer: { width: '100%', flexDirection: 'row', alignItems: 'center', - justifyContent: 'center' + justifyContent: 'center', }, date: { fontSize: 13, marginLeft: 4, - ...sharedStyles.textRegular + ...sharedStyles.textRegular, }, updateAlert: { - ...sharedStyles.textSemibold + ...sharedStyles.textSemibold, }, status: { - marginRight: 2 + marginRight: 2, }, markdownText: { flex: 1, fontSize: 14, lineHeight: 17, - ...sharedStyles.textRegular + ...sharedStyles.textRegular, }, avatar: { - marginRight: 10 + marginRight: 10, }, upperContainer: { - overflow: 'hidden' + overflow: 'hidden', }, actionsContainer: { position: 'absolute', left: 0, right: 0, - height: ROW_HEIGHT + height: ROW_HEIGHT, }, actionText: { fontSize: 15, justifyContent: 'center', marginTop: 4, - ...sharedStyles.textSemibold + ...sharedStyles.textSemibold, }, actionLeftButtonContainer: { position: 'absolute', height: ROW_HEIGHT, justifyContent: 'center', top: 0, - right: 0 + right: 0, }, actionRightButtonContainer: { position: 'absolute', height: ROW_HEIGHT, justifyContent: 'center', - top: 0 + top: 0, }, actionButton: { width: ACTION_WIDTH, height: '100%', alignItems: 'center', - justifyContent: 'center' + justifyContent: 'center', }, tagContainer: { alignSelf: 'center', alignItems: 'center', borderRadius: 4, - marginHorizontal: 4 + marginHorizontal: 4, }, tagText: { fontSize: 13, paddingHorizontal: 4, - ...sharedStyles.textSemibold - } + ...sharedStyles.textSemibold, + }, }); diff --git a/app/presentation/ServerItem/index.tsx b/app/presentation/ServerItem/index.tsx index e5fbbcb880..07192994f8 100644 --- a/app/presentation/ServerItem/index.tsx +++ b/app/presentation/ServerItem/index.tsx @@ -1,6 +1,6 @@ import React from 'react'; // @ts-ignore -import { View, Text, Pressable } from 'react-native'; +import { Pressable, Text, View } from 'react-native'; import FastImage from '@rocket.chat/react-native-fast-image'; import Check from '../../containers/Check'; @@ -26,19 +26,19 @@ interface IServerItem { const defaultLogo = require('../../static/images/logo.png'); const ServerItem = React.memo(({ - item, onPress, onLongPress, hasCheck, theme + item, onPress, onLongPress, hasCheck, theme, }: IServerItem) => ( <Pressable onPress={onPress} onLongPress={() => onLongPress?.()} testID={`rooms-list-header-server-${ item.id }`} android_ripple={{ - color: themes[theme].bannerBackground + color: themes[theme].bannerBackground, }} style={({ pressed }: any) => ({ backgroundColor: isIOS && pressed ? themes[theme].bannerBackground - : themes[theme].backgroundColor + : themes[theme].backgroundColor, })} > <View style={styles.serverItemContainer}> @@ -47,7 +47,7 @@ const ServerItem = React.memo(({ <FastImage source={{ uri: item.iconURL, - priority: FastImage.priority.high + priority: FastImage.priority.high, }} // @ts-ignore defaultSource={defaultLogo} diff --git a/app/presentation/ServerItem/styles.ts b/app/presentation/ServerItem/styles.ts index ece4105dff..ac13679433 100644 --- a/app/presentation/ServerItem/styles.ts +++ b/app/presentation/ServerItem/styles.ts @@ -7,27 +7,27 @@ export const ROW_HEIGHT = 56; export default StyleSheet.create({ serverItemContainer: { flexDirection: 'row', - alignItems: 'center' + alignItems: 'center', }, serverIcon: { width: 44, height: 44, margin: 12, borderRadius: 4, - resizeMode: 'contain' + resizeMode: 'contain', }, serverTextContainer: { flex: 1, flexDirection: 'column', justifyContent: 'center', - paddingRight: 18 + paddingRight: 18, }, serverName: { fontSize: 18, - ...sharedStyles.textSemibold + ...sharedStyles.textSemibold, }, serverUrl: { fontSize: 16, - ...sharedStyles.textRegular - } + ...sharedStyles.textRegular, + }, }); diff --git a/app/presentation/TextInput.tsx b/app/presentation/TextInput.tsx index ee79804395..db9386ebd0 100644 --- a/app/presentation/TextInput.tsx +++ b/app/presentation/TextInput.tsx @@ -1,5 +1,5 @@ import React from 'react'; -import { TextInput, StyleSheet, I18nManager } from 'react-native'; +import { I18nManager, StyleSheet, TextInput } from 'react-native'; import { themes } from '../constants/colors'; @@ -7,8 +7,8 @@ const styles = StyleSheet.create({ input: { ...I18nManager.isRTL ? { textAlign: 'right' } - : { textAlign: 'left' } - } + : { textAlign: 'left' }, + }, }); interface IThemedTextInput { diff --git a/app/presentation/UnreadBadge/getUnreadStyle.ts b/app/presentation/UnreadBadge/getUnreadStyle.ts index a15f432902..dcfb15209a 100644 --- a/app/presentation/UnreadBadge/getUnreadStyle.ts +++ b/app/presentation/UnreadBadge/getUnreadStyle.ts @@ -1,9 +1,9 @@ import { themes } from '../../constants/colors'; export const getUnreadStyle = ({ - unread, userMentions, groupMentions, theme, tunread, tunreadUser, tunreadGroup + unread, userMentions, groupMentions, theme, tunread, tunreadUser, tunreadGroup, }: any) => { - if ((!unread || unread <= 0) && (!tunread?.length)) { + if ((!unread || unread <= 0) && !tunread?.length) { return {}; } @@ -18,6 +18,6 @@ export const getUnreadStyle = ({ } return { - backgroundColor, color + backgroundColor, color, }; }; diff --git a/app/presentation/UnreadBadge/index.tsx b/app/presentation/UnreadBadge/index.tsx index f5865dbb30..6b47d511e7 100644 --- a/app/presentation/UnreadBadge/index.tsx +++ b/app/presentation/UnreadBadge/index.tsx @@ -1,5 +1,5 @@ import React from 'react'; -import { View, Text, StyleSheet } from 'react-native'; +import { StyleSheet, Text, View } from 'react-native'; import sharedStyles from '../../views/Styles'; import { getUnreadStyle } from './getUnreadStyle'; @@ -13,20 +13,20 @@ const styles = StyleSheet.create({ borderRadius: 10.5, alignItems: 'center', justifyContent: 'center', - marginLeft: 10 + marginLeft: 10, }, unreadNumberContainerSmall: { borderRadius: 10.5, alignItems: 'center', - justifyContent: 'center' + justifyContent: 'center', }, unreadText: { fontSize: 13, - ...sharedStyles.textSemibold + ...sharedStyles.textSemibold, }, textSmall: { - fontSize: 10 - } + fontSize: 10, + }, }); interface IUnreadBadge { @@ -42,13 +42,13 @@ interface IUnreadBadge { } const UnreadBadge = React.memo(({ - theme, unread, userMentions, groupMentions, style, tunread, tunreadUser, tunreadGroup, small + theme, unread, userMentions, groupMentions, style, tunread, tunreadUser, tunreadGroup, small, }: IUnreadBadge) => { - if ((!unread || unread <= 0) && (!tunread?.length)) { + if ((!unread || unread <= 0) && !tunread?.length) { return null; } const { backgroundColor, color } = getUnreadStyle({ - theme, unread, userMentions, groupMentions, tunread, tunreadUser, tunreadGroup + theme, unread, userMentions, groupMentions, tunread, tunreadUser, tunreadGroup, }); if (!backgroundColor) { @@ -73,14 +73,14 @@ const UnreadBadge = React.memo(({ style={[ small ? styles.unreadNumberContainerSmall : styles.unreadNumberContainerNormal, { backgroundColor, minWidth }, - style + style, ]} > <Text style={[ styles.unreadText, small && styles.textSmall, - { color } + { color }, ]} numberOfLines={1} >{text} diff --git a/app/presentation/UserItem.tsx b/app/presentation/UserItem.tsx index 4a718a5e6b..c12b360348 100644 --- a/app/presentation/UserItem.tsx +++ b/app/presentation/UserItem.tsx @@ -1,6 +1,6 @@ import React from 'react'; // @ts-ignore -import { Text, View, StyleSheet, Pressable } from 'react-native'; +import { Pressable, StyleSheet, Text, View } from 'react-native'; import Avatar from '../containers/Avatar'; import { CustomIcon } from '../lib/Icons'; @@ -10,33 +10,33 @@ import { isIOS } from '../utils/deviceInfo'; const styles = StyleSheet.create({ button: { - height: 54 + height: 54, }, container: { - flexDirection: 'row' + flexDirection: 'row', }, avatar: { marginHorizontal: 15, - marginVertical: 12 + marginVertical: 12, }, textContainer: { flex: 1, flexDirection: 'column', justifyContent: 'center', - marginRight: 15 + marginRight: 15, }, name: { fontSize: 17, - ...sharedStyles.textMedium + ...sharedStyles.textMedium, }, username: { fontSize: 14, - ...sharedStyles.textRegular + ...sharedStyles.textRegular, }, icon: { marginHorizontal: 15, - alignSelf: 'center' - } + alignSelf: 'center', + }, }); interface IUserItem { @@ -51,19 +51,19 @@ interface IUserItem { } const UserItem = ({ - name, username, onPress, testID, onLongPress, style, icon, theme + name, username, onPress, testID, onLongPress, style, icon, theme, }: IUserItem) => ( <Pressable onPress={onPress} onLongPress={onLongPress} testID={testID} android_ripple={{ - color: themes[theme].bannerBackground + color: themes[theme].bannerBackground, }} style={({ pressed }: any) => ({ backgroundColor: isIOS && pressed ? themes[theme].bannerBackground - : 'transparent' + : 'transparent', })} > <View style={[styles.container, styles.button, style]}> diff --git a/app/reducers/crashReport.js b/app/reducers/crashReport.js index 8465897e3b..38efaaee21 100644 --- a/app/reducers/crashReport.js +++ b/app/reducers/crashReport.js @@ -1,4 +1,4 @@ -import { TOGGLE_CRASH_REPORT, TOGGLE_ANALYTICS_EVENTS } from '../actions/actionsTypes'; +import { TOGGLE_ANALYTICS_EVENTS, TOGGLE_CRASH_REPORT } from '../actions/actionsTypes'; const initialState = { allowCrashReport: false, diff --git a/app/reducers/index.js b/app/reducers/index.js index eb8f09d82a..85213196b1 100644 --- a/app/reducers/index.js +++ b/app/reducers/index.js @@ -1,4 +1,6 @@ import { combineReducers } from 'redux'; + +import inquiry from '../ee/omnichannel/reducers/inquiry'; import settings from './settings'; import login from './login'; import meteor from './connect'; @@ -21,8 +23,6 @@ import encryption from './encryption'; import permissions from './permissions'; import roles from './roles'; -import inquiry from '../ee/omnichannel/reducers/inquiry'; - export default combineReducers({ settings, login, diff --git a/app/sagas/createChannel.js b/app/sagas/createChannel.js index 9493d54059..6f1b412191 100644 --- a/app/sagas/createChannel.js +++ b/app/sagas/createChannel.js @@ -1,16 +1,16 @@ import { - select, put, call, take, takeLatest + call, put, select, take, takeLatest } from 'redux-saga/effects'; import { sanitizedRaw } from '@nozbe/watermelondb/RawRecord'; import { CREATE_CHANNEL, LOGIN } from '../actions/actionsTypes'; -import { createChannelSuccess, createChannelFailure } from '../actions/createChannel'; +import { createChannelFailure, createChannelSuccess } from '../actions/createChannel'; import { showErrorAlert } from '../utils/info'; import RocketChat from '../lib/rocketchat'; import Navigation from '../lib/Navigation'; import database from '../lib/database'; import I18n from '../i18n'; -import { logEvent, events } from '../utils/log'; +import { events, logEvent } from '../utils/log'; import { goRoom } from '../utils/goRoom'; const createChannel = function createChannel(data) { diff --git a/app/sagas/createDiscussion.js b/app/sagas/createDiscussion.js index 746ab15839..ddbc32f9f4 100644 --- a/app/sagas/createDiscussion.js +++ b/app/sagas/createDiscussion.js @@ -1,13 +1,13 @@ import { - select, put, call, take, takeLatest + call, put, select, take, takeLatest } from 'redux-saga/effects'; import { sanitizedRaw } from '@nozbe/watermelondb/RawRecord'; import { CREATE_DISCUSSION, LOGIN } from '../actions/actionsTypes'; -import { createDiscussionSuccess, createDiscussionFailure } from '../actions/createDiscussion'; +import { createDiscussionFailure, createDiscussionSuccess } from '../actions/createDiscussion'; import RocketChat from '../lib/rocketchat'; import database from '../lib/database'; -import { logEvent, events } from '../utils/log'; +import { events, logEvent } from '../utils/log'; const create = function* create(data) { return yield RocketChat.createDiscussion(data); diff --git a/app/sagas/deepLinking.js b/app/sagas/deepLinking.js index a406f56a9d..b577163eab 100644 --- a/app/sagas/deepLinking.js +++ b/app/sagas/deepLinking.js @@ -1,17 +1,17 @@ import { - takeLatest, take, select, put, all, delay + all, delay, put, select, take, takeLatest } from 'redux-saga/effects'; import UserPreferences from '../lib/userPreferences'; import Navigation from '../lib/Navigation'; import * as types from '../actions/actionsTypes'; import { selectServerRequest, serverInitAdd } from '../actions/server'; -import { inviteLinksSetToken, inviteLinksRequest } from '../actions/inviteLinks'; +import { inviteLinksRequest, inviteLinksSetToken } from '../actions/inviteLinks'; import database from '../lib/database'; import RocketChat from '../lib/rocketchat'; import EventEmitter from '../utils/events'; import { - appStart, ROOT_INSIDE, ROOT_NEW_SERVER, appInit + ROOT_INSIDE, ROOT_NEW_SERVER, appInit, appStart } from '../actions/app'; import { localAuthenticate } from '../utils/localAuthentication'; import { goRoom } from '../utils/goRoom'; diff --git a/app/sagas/encryption.js b/app/sagas/encryption.js index 842cd7a6a3..beb33a863e 100644 --- a/app/sagas/encryption.js +++ b/app/sagas/encryption.js @@ -1,14 +1,14 @@ import EJSON from 'ejson'; -import { takeLatest, select, put } from 'redux-saga/effects'; +import { put, select, takeLatest } from 'redux-saga/effects'; import { ENCRYPTION } from '../actions/actionsTypes'; import { encryptionSet } from '../actions/encryption'; import { Encryption } from '../lib/encryption'; import Navigation from '../lib/Navigation'; import { - E2E_PUBLIC_KEY, - E2E_PRIVATE_KEY, E2E_BANNER_TYPE, + E2E_PRIVATE_KEY, + E2E_PUBLIC_KEY, E2E_RANDOM_PASSWORD_KEY } from '../lib/encryption/constants'; import database from '../lib/database'; diff --git a/app/sagas/index.js b/app/sagas/index.js index e499d74ec5..ab9508dfb5 100644 --- a/app/sagas/index.js +++ b/app/sagas/index.js @@ -1,4 +1,6 @@ import { all } from 'redux-saga/effects'; + +import inquiry from '../ee/omnichannel/sagas/inquiry'; import login from './login'; import rooms from './rooms'; import room from './room'; @@ -12,8 +14,6 @@ import inviteLinks from './inviteLinks'; import createDiscussion from './createDiscussion'; import encryption from './encryption'; -import inquiry from '../ee/omnichannel/sagas/inquiry'; - const root = function* root() { yield all([ init(), diff --git a/app/sagas/init.js b/app/sagas/init.js index 57bc334238..e52d23aac2 100644 --- a/app/sagas/init.js +++ b/app/sagas/init.js @@ -4,13 +4,13 @@ import RNBootSplash from 'react-native-bootsplash'; import UserPreferences from '../lib/userPreferences'; import { selectServerRequest } from '../actions/server'; import { setAllPreferences } from '../actions/sortPreferences'; -import { toggleCrashReport, toggleAnalyticsEvents } from '../actions/crashReport'; +import { toggleAnalyticsEvents, toggleCrashReport } from '../actions/crashReport'; import { APP } from '../actions/actionsTypes'; import RocketChat from '../lib/rocketchat'; import log from '../utils/log'; import database from '../lib/database'; import { localAuthenticate } from '../utils/localAuthentication'; -import { appStart, ROOT_OUTSIDE, appReady } from '../actions/app'; +import { ROOT_OUTSIDE, appReady, appStart } from '../actions/app'; export const initLocalSettings = function* initLocalSettings() { const sortPreferences = yield RocketChat.getSortPreferences(); diff --git a/app/sagas/inviteLinks.js b/app/sagas/inviteLinks.js index d3ecfbba97..89aeb0b4b8 100644 --- a/app/sagas/inviteLinks.js +++ b/app/sagas/inviteLinks.js @@ -1,10 +1,10 @@ import { - put, takeLatest, delay, select + delay, put, select, takeLatest } from 'redux-saga/effects'; import { Alert } from 'react-native'; import { INVITE_LINKS } from '../actions/actionsTypes'; -import { inviteLinksSuccess, inviteLinksFailure, inviteLinksSetInvite } from '../actions/inviteLinks'; +import { inviteLinksFailure, inviteLinksSetInvite, inviteLinksSuccess } from '../actions/inviteLinks'; import RocketChat from '../lib/rocketchat'; import log from '../utils/log'; import Navigation from '../lib/Navigation'; diff --git a/app/sagas/login.js b/app/sagas/login.js index 9381e04595..c608cb65ef 100644 --- a/app/sagas/login.js +++ b/app/sagas/login.js @@ -1,19 +1,20 @@ import { - put, call, takeLatest, select, take, fork, cancel, race, delay + call, cancel, delay, fork, put, race, select, take, takeLatest } from 'redux-saga/effects'; import { sanitizedRaw } from '@nozbe/watermelondb/RawRecord'; import { Q } from '@nozbe/watermelondb'; + import * as types from '../actions/actionsTypes'; import { - appStart, ROOT_SET_USERNAME, ROOT_INSIDE, ROOT_LOADING, ROOT_OUTSIDE + ROOT_INSIDE, ROOT_LOADING, ROOT_OUTSIDE, ROOT_SET_USERNAME, appStart } from '../actions/app'; -import { serverFinishAdd, selectServerRequest } from '../actions/server'; +import { selectServerRequest, serverFinishAdd } from '../actions/server'; import { - loginFailure, loginSuccess, setUser, logout + loginFailure, loginSuccess, logout, setUser } from '../actions/login'; import { roomsRequest } from '../actions/rooms'; import RocketChat from '../lib/rocketchat'; -import log, { logEvent, events } from '../utils/log'; +import log, { events, logEvent } from '../utils/log'; import I18n, { setLanguage } from '../i18n'; import database from '../lib/database'; import EventEmitter from '../utils/events'; @@ -23,7 +24,6 @@ import { localAuthenticate } from '../utils/localAuthentication'; import { setActiveUsers } from '../actions/activeUsers'; import { encryptionInit, encryptionStop } from '../actions/encryption'; import UserPreferences from '../lib/userPreferences'; - import { inquiryRequest, inquiryReset } from '../ee/omnichannel/actions/inquiry'; import { isOmnichannelStatusAvailable } from '../ee/omnichannel/lib'; import Navigation from '../lib/Navigation'; diff --git a/app/sagas/messages.js b/app/sagas/messages.js index 2674be42e5..d4d110faa0 100644 --- a/app/sagas/messages.js +++ b/app/sagas/messages.js @@ -1,4 +1,4 @@ -import { takeLatest, select } from 'redux-saga/effects'; +import { select, takeLatest } from 'redux-saga/effects'; import { Q } from '@nozbe/watermelondb'; import Navigation from '../lib/Navigation'; diff --git a/app/sagas/room.js b/app/sagas/room.js index 70a0bc4da8..813baa1eab 100644 --- a/app/sagas/room.js +++ b/app/sagas/room.js @@ -1,7 +1,7 @@ import { Alert } from 'react-native'; import prompt from 'react-native-prompt-android'; import { - takeLatest, take, select, delay, race, put + delay, put, race, select, take, takeLatest } from 'redux-saga/effects'; import EventEmitter from '../utils/events'; @@ -9,7 +9,7 @@ import Navigation from '../lib/Navigation'; import * as types from '../actions/actionsTypes'; import { removedRoom } from '../actions/room'; import RocketChat from '../lib/rocketchat'; -import log, { logEvent, events } from '../utils/log'; +import log, { events, logEvent } from '../utils/log'; import I18n from '../i18n'; import { showErrorAlert } from '../utils/info'; import { LISTENER } from '../containers/Toast'; @@ -66,7 +66,7 @@ const handleLeaveRoom = function* handleLeaveRoom({ room, roomType, selected }) if (roomType === 'channel') { result = yield RocketChat.leaveRoom(room.rid, room.t); } else if (roomType === 'team') { - result = yield RocketChat.leaveTeam({ teamName: room.name, ...(selected && { rooms: selected }) }); + result = yield RocketChat.leaveTeam({ teamName: room.name, ...selected && { rooms: selected } }); } if (result?.success) { @@ -92,7 +92,7 @@ const handleDeleteRoom = function* handleDeleteRoom({ room, roomType, selected } if (roomType === 'channel') { result = yield RocketChat.deleteRoom(room.rid, room.t); } else if (roomType === 'team') { - result = yield RocketChat.deleteTeam({ teamId: room.teamId, ...(selected && { roomsToRemove: selected }) }); + result = yield RocketChat.deleteTeam({ teamId: room.teamId, ...selected && { roomsToRemove: selected } }); } if (result?.success) { diff --git a/app/sagas/rooms.js b/app/sagas/rooms.js index 4b0047a146..54a1125b33 100644 --- a/app/sagas/rooms.js +++ b/app/sagas/rooms.js @@ -1,11 +1,11 @@ import { - put, select, race, take, fork, cancel, delay + cancel, delay, fork, put, race, select, take } from 'redux-saga/effects'; import { Q } from '@nozbe/watermelondb'; import { sanitizedRaw } from '@nozbe/watermelondb/RawRecord'; import * as types from '../actions/actionsTypes'; -import { roomsSuccess, roomsFailure, roomsRefresh } from '../actions/rooms'; +import { roomsFailure, roomsRefresh, roomsSuccess } from '../actions/rooms'; import database from '../lib/database'; import log from '../utils/log'; import mergeSubscriptionsRooms from '../lib/methods/helpers/mergeSubscriptionsRooms'; diff --git a/app/sagas/selectServer.js b/app/sagas/selectServer.js index 2abf470617..41c04f504c 100644 --- a/app/sagas/selectServer.js +++ b/app/sagas/selectServer.js @@ -8,7 +8,7 @@ import coerce from 'semver/functions/coerce'; import Navigation from '../lib/Navigation'; import { SERVER } from '../actions/actionsTypes'; import { - serverFailure, selectServerRequest, selectServerSuccess, selectServerFailure + selectServerFailure, selectServerRequest, selectServerSuccess, serverFailure } from '../actions/server'; import { clearSettings } from '../actions/settings'; import { setUser } from '../actions/login'; @@ -17,11 +17,10 @@ import database from '../lib/database'; import log, { logServerVersion } from '../utils/log'; import I18n from '../i18n'; import { BASIC_AUTH_KEY, setBasicAuth } from '../utils/fetch'; -import { appStart, ROOT_INSIDE, ROOT_OUTSIDE } from '../actions/app'; +import { ROOT_INSIDE, ROOT_OUTSIDE, appStart } from '../actions/app'; import UserPreferences from '../lib/userPreferences'; import { encryptionStop } from '../actions/encryption'; import SSLPinning from '../utils/sslPinning'; - import { inquiryReset } from '../ee/omnichannel/actions/inquiry'; const getServerInfo = function* getServerInfo({ server, raiseError = true }) { diff --git a/app/sagas/state.js b/app/sagas/state.js index 5b86af2ef9..b9afeb4dd8 100644 --- a/app/sagas/state.js +++ b/app/sagas/state.js @@ -1,4 +1,4 @@ -import { takeLatest, select } from 'redux-saga/effects'; +import { select, takeLatest } from 'redux-saga/effects'; import RocketChat from '../lib/rocketchat'; import { setBadgeCount } from '../notifications/push'; diff --git a/app/share.tsx b/app/share.tsx index 3ef44a7c43..2efc03df9e 100644 --- a/app/share.tsx +++ b/app/share.tsx @@ -10,15 +10,13 @@ import UserPreferences from './lib/userPreferences'; import Navigation from './lib/ShareNavigation'; import store from './lib/createStore'; import { supportSystemTheme } from './utils/deviceInfo'; -import { defaultHeader, themedHeader, getActiveRouteName, navigationTheme } from './utils/navigation'; +import { defaultHeader, getActiveRouteName, navigationTheme, themedHeader } from './utils/navigation'; import RocketChat, { THEME_PREFERENCES_KEY } from './lib/rocketchat'; import { ThemeContext } from './theme'; import { localAuthenticate } from './utils/localAuthentication'; import ScreenLockedView from './views/ScreenLockedView'; - // Outside Stack import WithoutServersView from './views/WithoutServersView'; - // Inside Stack import ShareListView from './views/ShareListView'; import ShareView from './views/ShareView'; @@ -35,7 +33,6 @@ interface IDimensions { fontScale: number } -interface IProps {} interface IState { theme: string, themePreferences: { @@ -55,9 +52,9 @@ const InsideStack = () => { const screenOptions = { ...defaultHeader, - ...themedHeader(theme) + ...themedHeader(theme), }; - screenOptions.headerStyle = {...screenOptions.headerStyle, height: 57}; + screenOptions.headerStyle = { ...screenOptions.headerStyle, height: 57 }; return ( <Inside.Navigator screenOptions={screenOptions}> @@ -87,7 +84,7 @@ const OutsideStack = () => { <Outside.Screen name='WithoutServersView' component={WithoutServersView} - /*@ts-ignore*/ + /* @ts-ignore*/ options={WithoutServersView.navigationOptions} /> </Outside.Navigator> @@ -121,7 +118,7 @@ export const App = ({ root }: any) => ( </Stack.Navigator> ); -class Root extends React.Component<IProps, IState> { +class Root extends React.Component<{}, IState> { constructor(props: any) { super(props); const { width, height, scale, fontScale } = Dimensions.get('screen'); @@ -129,13 +126,13 @@ class Root extends React.Component<IProps, IState> { theme: defaultTheme(), themePreferences: { currentTheme: supportSystemTheme() ? 'automatic' : 'light', - darkLevel: 'black' + darkLevel: 'black', }, root: '', width, height, scale, - fontScale + fontScale, }; this.init(); } @@ -145,7 +142,7 @@ class Root extends React.Component<IProps, IState> { unsubscribeTheme(); } - init = async() => { + init = async () => { UserPreferences.getMapAsync(THEME_PREFERENCES_KEY).then(() => this.setTheme()); const currentServer = await UserPreferences.getStringAsync(RocketChat.CURRENT_SERVER); @@ -166,7 +163,7 @@ class Root extends React.Component<IProps, IState> { setTheme = (newTheme = {}) => { // change theme state - this.setState(prevState => newThemeState(prevState, newTheme), () => { + this.setState((prevState) => newThemeState(prevState, newTheme), () => { const { themePreferences } = this.state; // subscribe to Appearance changes subscribeTheme(themePreferences, this.setTheme); @@ -174,13 +171,13 @@ class Root extends React.Component<IProps, IState> { } // Dimensions update fires twice - onDimensionsChange = debounce(({window: { width, height, scale, fontScale}}: {window: IDimensions}) => { + onDimensionsChange = debounce(({ window: { width, height, scale, fontScale } }: {window: IDimensions}) => { this.setDimensions({ width, height, scale, fontScale }); }) setDimensions = ({ width, height, scale, fontScale }: IDimensions) => { this.setState({ - width, height, scale, fontScale + width, height, scale, fontScale, }); } @@ -197,7 +194,7 @@ class Root extends React.Component<IProps, IState> { height, scale, fontScale, - setDimensions: this.setDimensions + setDimensions: this.setDimensions, }} > <NavigationContainer diff --git a/app/stacks/InsideStack.js b/app/stacks/InsideStack.js index 83fc22240b..ab436f329f 100644 --- a/app/stacks/InsideStack.js +++ b/app/stacks/InsideStack.js @@ -5,7 +5,7 @@ import { createDrawerNavigator } from '@react-navigation/drawer'; import { ThemeContext } from '../theme'; import { - defaultHeader, themedHeader, ModalAnimation, StackAnimation + ModalAnimation, StackAnimation, defaultHeader, themedHeader } from '../utils/navigation'; import Sidebar from '../views/SidebarView'; @@ -33,7 +33,6 @@ import TeamChannelsView from '../views/TeamChannelsView'; import MarkdownTableView from '../views/MarkdownTableView'; import ReadReceiptsView from '../views/ReadReceiptView'; import { themes } from '../constants/colors'; - // Profile Stack import ProfileView from '../views/ProfileView'; import UserPreferencesView from '../views/UserPreferencesView'; @@ -69,7 +68,6 @@ import JitsiMeetView from '../views/JitsiMeetView'; import StatusView from '../views/StatusView'; import ShareView from '../views/ShareView'; import CreateDiscussionView from '../views/CreateDiscussionView'; - import QueueListView from '../ee/omnichannel/views/QueueListView'; import AddChannelTeamView from '../views/AddChannelTeamView'; import AddExistingChannelView from '../views/AddExistingChannelView'; diff --git a/app/stacks/MasterDetailStack/ModalContainer.js b/app/stacks/MasterDetailStack/ModalContainer.js index 79b5720109..f100c3b47d 100644 --- a/app/stacks/MasterDetailStack/ModalContainer.js +++ b/app/stacks/MasterDetailStack/ModalContainer.js @@ -1,5 +1,5 @@ import React from 'react'; -import { TouchableWithoutFeedback, View, StyleSheet } from 'react-native'; +import { StyleSheet, TouchableWithoutFeedback, View } from 'react-native'; import PropTypes from 'prop-types'; import sharedStyles from '../../views/Styles'; diff --git a/app/stacks/MasterDetailStack/index.js b/app/stacks/MasterDetailStack/index.js index ea7c038f28..5cc5cd7ba1 100644 --- a/app/stacks/MasterDetailStack/index.js +++ b/app/stacks/MasterDetailStack/index.js @@ -6,9 +6,8 @@ import { createDrawerNavigator } from '@react-navigation/drawer'; import { ThemeContext } from '../../theme'; import { - defaultHeader, themedHeader, StackAnimation, FadeFromCenterModal + FadeFromCenterModal, StackAnimation, defaultHeader, themedHeader } from '../../utils/navigation'; -import { ModalContainer } from './ModalContainer'; // Chats Stack import RoomView from '../../views/RoomView'; @@ -56,14 +55,13 @@ import CreateDiscussionView from '../../views/CreateDiscussionView'; import E2ESaveYourPasswordView from '../../views/E2ESaveYourPasswordView'; import E2EHowItWorksView from '../../views/E2EHowItWorksView'; import E2EEnterYourPasswordView from '../../views/E2EEnterYourPasswordView'; - -import { setKeyCommands, deleteKeyCommands } from '../../commands'; +import { deleteKeyCommands, setKeyCommands } from '../../commands'; import ShareView from '../../views/ShareView'; - import QueueListView from '../../ee/omnichannel/views/QueueListView'; import AddChannelTeamView from '../../views/AddChannelTeamView'; import AddExistingChannelView from '../../views/AddExistingChannelView'; import SelectListView from '../../views/SelectListView'; +import { ModalContainer } from './ModalContainer'; // ChatsStackNavigator const ChatsStack = createStackNavigator(); diff --git a/app/stacks/OutsideStack.js b/app/stacks/OutsideStack.js index f66e734fe8..ee98ae7b91 100644 --- a/app/stacks/OutsideStack.js +++ b/app/stacks/OutsideStack.js @@ -5,7 +5,7 @@ import PropTypes from 'prop-types'; import { ThemeContext } from '../theme'; import { - defaultHeader, themedHeader, StackAnimation, ModalAnimation + ModalAnimation, StackAnimation, defaultHeader, themedHeader } from '../utils/navigation'; // Outside Stack diff --git a/app/theme.tsx b/app/theme.tsx index 641ee3fc12..9122e0f10b 100644 --- a/app/theme.tsx +++ b/app/theme.tsx @@ -15,7 +15,7 @@ export const ThemeContext = React.createContext<Partial<IThemeContextProps>>({ t export function withTheme(Component: any) { const ThemedComponent = (props: any) => ( <ThemeContext.Consumer> - {contexts => <Component {...props} {...contexts} />} + {(contexts) => <Component {...props} {...contexts} />} </ThemeContext.Consumer> ); hoistNonReactStatics(ThemedComponent, Component); diff --git a/app/utils/avatar.js b/app/utils/avatar.js index 664c3ea451..722d6997d3 100644 --- a/app/utils/avatar.js +++ b/app/utils/avatar.js @@ -8,7 +8,7 @@ export const avatarURL = ({ let room; if (type === 'd') { room = text; - } else if (rid && !(compareServerVersion(serverVersion, '3.6.0', methods.lowerThan))) { + } else if (rid && !compareServerVersion(serverVersion, '3.6.0', methods.lowerThan)) { room = `room/${ rid }`; } else { room = `@${ text }`; diff --git a/app/utils/base64-js/base64-js.test.js b/app/utils/base64-js/base64-js.test.js index 83e3de7626..6ecad3be7b 100644 --- a/app/utils/base64-js/base64-js.test.js +++ b/app/utils/base64-js/base64-js.test.js @@ -4,8 +4,8 @@ import { byteLength, - toByteArray, - fromByteArray + fromByteArray, + toByteArray } from './index'; const map = (arr, callback) => { @@ -14,7 +14,7 @@ const map = (arr, callback) => { let mappedValue; for (let k = 0, len = arr.length; k < len; k += 1) { - if ((typeof arr === 'string' && !!arr.charAt(k))) { + if (typeof arr === 'string' && !!arr.charAt(k)) { kValue = arr.charAt(k); mappedValue = callback(kValue, k, arr); res[k] = mappedValue; diff --git a/app/utils/base64-js/index.js b/app/utils/base64-js/index.js index ef4bcd4cec..22d535825b 100644 --- a/app/utils/base64-js/index.js +++ b/app/utils/base64-js/index.js @@ -120,7 +120,7 @@ export const fromByteArray = (uint8) => { // go through the array every three bytes, we'll deal with trailing stuff later for (let i = 0, len2 = len - extraBytes; i < len2; i += maxChunkLength) { parts.push(encodeChunk( - uint8, i, (i + maxChunkLength) > len2 ? len2 : (i + maxChunkLength) + uint8, i, (i + maxChunkLength) > len2 ? len2 : i + maxChunkLength )); } diff --git a/app/utils/fetch.js b/app/utils/fetch.js index a804e0a128..795b3ee34c 100644 --- a/app/utils/fetch.js +++ b/app/utils/fetch.js @@ -1,6 +1,7 @@ import { Platform } from 'react-native'; import DeviceInfo from 'react-native-device-info'; import { settings as RocketChatSettings } from '@rocket.chat/sdk'; + import RocketChat from '../lib/rocketchat'; // this form is required by Rocket.Chat's parser in "app/statistics/server/lib/UAParserCustom.js" diff --git a/app/utils/info.js b/app/utils/info.js index 685b2f9482..a211d9f756 100644 --- a/app/utils/info.js +++ b/app/utils/info.js @@ -1,11 +1,12 @@ import { Alert } from 'react-native'; + import I18n from '../i18n'; export const showErrorAlert = (message, title, onPress = () => {}) => Alert.alert(title, message, [{ text: 'OK', onPress }], { cancelable: true }); export const showConfirmationAlert = ({ title, message, confirmationText, dismissText = I18n.t('Cancel'), onPress, onCancel -}) => ( +}) => Alert.alert( title || I18n.t('Are_you_sure_question_mark'), message, @@ -22,5 +23,5 @@ export const showConfirmationAlert = ({ } ], { cancelable: false } - ) -); + ); + diff --git a/app/utils/localAuthentication.js b/app/utils/localAuthentication.js index 759a07a0c1..2419709f35 100644 --- a/app/utils/localAuthentication.js +++ b/app/utils/localAuthentication.js @@ -7,13 +7,13 @@ import { sha256 } from 'js-sha256'; import UserPreferences from '../lib/userPreferences'; import store from '../lib/createStore'; import database from '../lib/database'; -import { isIOS } from './deviceInfo'; -import EventEmitter from './events'; import { - LOCAL_AUTHENTICATE_EMITTER, LOCKED_OUT_TIMER_KEY, ATTEMPTS_KEY, PASSCODE_KEY, CHANGE_PASSCODE_EMITTER + ATTEMPTS_KEY, CHANGE_PASSCODE_EMITTER, LOCAL_AUTHENTICATE_EMITTER, LOCKED_OUT_TIMER_KEY, PASSCODE_KEY } from '../constants/localAuthentication'; import I18n from '../i18n'; import { setLocalAuthenticated } from '../actions/login'; +import EventEmitter from './events'; +import { isIOS } from './deviceInfo'; export const saveLastLocalAuthenticationSession = async(server, serverRecord) => { const serversDB = database.servers; diff --git a/app/utils/log/index.js b/app/utils/log/index.js index 361ce70559..a0c87216bf 100644 --- a/app/utils/log/index.js +++ b/app/utils/log/index.js @@ -1,4 +1,5 @@ import firebaseAnalytics from '@react-native-firebase/analytics'; + import { isFDroidBuild } from '../../constants/environment'; import events from './events'; diff --git a/app/utils/navigation/animations.js b/app/utils/navigation/animations.js index 7b2d155433..7f379fcbfb 100644 --- a/app/utils/navigation/animations.js +++ b/app/utils/navigation/animations.js @@ -1,5 +1,5 @@ -import { Easing, Animated } from 'react-native'; -import { TransitionPresets, HeaderStyleInterpolators } from '@react-navigation/stack'; +import { Animated, Easing } from 'react-native'; +import { HeaderStyleInterpolators, TransitionPresets } from '@react-navigation/stack'; import { isAndroid } from '../deviceInfo'; import conditional from './conditional'; diff --git a/app/utils/navigation/index.ts b/app/utils/navigation/index.ts index 8d269e5668..98a6e2de23 100644 --- a/app/utils/navigation/index.ts +++ b/app/utils/navigation/index.ts @@ -1,5 +1,5 @@ import { StyleSheet } from 'react-native'; -import { DefaultTheme, DarkTheme } from '@react-navigation/native'; +import { DarkTheme, DefaultTheme } from '@react-navigation/native'; import { themes } from '../../constants/colors'; @@ -8,27 +8,27 @@ export * from './animations'; export const defaultHeader = { headerBackTitleVisible: false, cardOverlayEnabled: true, - cardStyle: { backgroundColor: 'transparent' } + cardStyle: { backgroundColor: 'transparent' }, }; export const cardStyle = { - backgroundColor: 'rgba(0,0,0,0)' + backgroundColor: 'rgba(0,0,0,0)', }; export const borderBottom: any = (theme: any) => ({ borderBottomWidth: StyleSheet.hairlineWidth, borderBottomColor: themes[theme].headerBorder, - elevation: 0 + elevation: 0, }); export const themedHeader = (theme: any) => ({ headerStyle: { ...borderBottom(theme), - backgroundColor: themes[theme].headerBackground + backgroundColor: themes[theme].headerBackground, }, headerTintColor: themes[theme].headerTintColor, - headerTitleStyle: { color: themes[theme].headerTitleColor } + headerTitleStyle: { color: themes[theme].headerTitleColor }, }); export const navigationTheme = (theme: any) => { @@ -39,8 +39,8 @@ export const navigationTheme = (theme: any) => { colors: { ...defaultNavTheme.colors, background: themes[theme].backgroundColor, - border: themes[theme].borderColor - } + border: themes[theme].borderColor, + }, }; }; diff --git a/app/utils/review.js b/app/utils/review.js index 98d6736312..2070dbb837 100644 --- a/app/utils/review.js +++ b/app/utils/review.js @@ -1,12 +1,12 @@ import { Alert, Linking } from 'react-native'; import AsyncStorage from '@react-native-community/async-storage'; -import { isIOS } from './deviceInfo'; import I18n from '../i18n'; -import { showErrorAlert } from './info'; import { STORE_REVIEW_LINK } from '../constants/links'; import { isFDroidBuild } from '../constants/environment'; -import { logEvent, events } from './log'; +import { showErrorAlert } from './info'; +import { isIOS } from './deviceInfo'; +import { events, logEvent } from './log'; const store = isIOS ? 'App Store' : 'Play Store'; diff --git a/app/utils/room.js b/app/utils/room.js index fef926d5fd..e6955d8ee5 100644 --- a/app/utils/room.js +++ b/app/utils/room.js @@ -1,6 +1,6 @@ import moment from 'moment'; -import { themes } from '../constants/colors'; +import { themes } from '../constants/colors'; import I18n from '../i18n'; export const isBlocked = (room) => { diff --git a/app/utils/shortnameToUnicode/index.js b/app/utils/shortnameToUnicode/index.js index 5c6f7093e9..0ecd8e732e 100644 --- a/app/utils/shortnameToUnicode/index.js +++ b/app/utils/shortnameToUnicode/index.js @@ -31,7 +31,7 @@ const shortnameToUnicode = (str) => { str = str.replace(shortnamePattern, replaceShortNameWithUnicode); str = str.replace(regAscii, (entire, m1, m2, m3) => { - if (!m3 || (!(unescapeHTML(m3) in ascii))) { + if (!m3 || !(unescapeHTML(m3) in ascii)) { // if the ascii doesnt exist just return the entire match return entire; } diff --git a/app/utils/sslPinning.js b/app/utils/sslPinning.js index 00d807d4eb..ce5b1bdea2 100644 --- a/app/utils/sslPinning.js +++ b/app/utils/sslPinning.js @@ -1,10 +1,10 @@ -import { NativeModules, Platform, Alert } from 'react-native'; +import { Alert, NativeModules, Platform } from 'react-native'; import DocumentPicker from 'react-native-document-picker'; import * as FileSystem from 'expo-file-system'; -import { extractHostname } from './server'; import UserPreferences from '../lib/userPreferences'; import I18n from '../i18n'; +import { extractHostname } from './server'; const { SSLPinning } = NativeModules; diff --git a/app/utils/theme.js b/app/utils/theme.js index 3c265eb5aa..877ee13f12 100644 --- a/app/utils/theme.js +++ b/app/utils/theme.js @@ -2,8 +2,8 @@ import { Appearance } from 'react-native-appearance'; import changeNavigationBarColor from 'react-native-navigation-bar-color'; import setRootViewColor from 'rn-root-view'; -import { isAndroid } from './deviceInfo'; import { themes } from '../constants/colors'; +import { isAndroid } from './deviceInfo'; let themeListener; diff --git a/app/utils/twoFactor.js b/app/utils/twoFactor.js index ae5bc9b071..78049a6ba6 100644 --- a/app/utils/twoFactor.js +++ b/app/utils/twoFactor.js @@ -1,7 +1,7 @@ import { settings } from '@rocket.chat/sdk'; -import EventEmitter from './events'; import { TWO_FACTOR } from '../containers/TwoFactor'; +import EventEmitter from './events'; export const twoFactor = ({ method, invalid }) => new Promise((resolve, reject) => { EventEmitter.emit(TWO_FACTOR, { diff --git a/app/views/AddExistingChannelView.js b/app/views/AddExistingChannelView.js index 0edced4b06..9174fe78e2 100644 --- a/app/views/AddExistingChannelView.js +++ b/app/views/AddExistingChannelView.js @@ -1,7 +1,7 @@ import React from 'react'; import PropTypes from 'prop-types'; import { - View, FlatList + FlatList, View } from 'react-native'; import { connect } from 'react-redux'; import { Q } from '@nozbe/watermelondb'; diff --git a/app/views/AttachmentView.js b/app/views/AttachmentView.js index c07ed71b9f..b213390d2e 100644 --- a/app/views/AttachmentView.js +++ b/app/views/AttachmentView.js @@ -1,5 +1,5 @@ import React from 'react'; -import { StyleSheet, View, PermissionsAndroid } from 'react-native'; +import { PermissionsAndroid, StyleSheet, View } from 'react-native'; import { connect } from 'react-redux'; import PropTypes from 'prop-types'; import CameraRoll from '@react-native-community/cameraroll'; diff --git a/app/views/AuthLoadingView.js b/app/views/AuthLoadingView.js index b0ecf2474d..318cd9aeb8 100644 --- a/app/views/AuthLoadingView.js +++ b/app/views/AuthLoadingView.js @@ -1,6 +1,6 @@ import React from 'react'; import { - View, Text, StyleSheet, ActivityIndicator + ActivityIndicator, StyleSheet, Text, View } from 'react-native'; import PropTypes from 'prop-types'; import { connect } from 'react-redux'; @@ -9,7 +9,6 @@ import I18n from '../i18n'; import StatusBar from '../containers/StatusBar'; import { withTheme } from '../theme'; import { themes } from '../constants/colors'; - import sharedStyles from './Styles'; const styles = StyleSheet.create({ diff --git a/app/views/AutoTranslateView/index.js b/app/views/AutoTranslateView/index.js index 962c4883ae..7bea93b785 100644 --- a/app/views/AutoTranslateView/index.js +++ b/app/views/AutoTranslateView/index.js @@ -1,6 +1,6 @@ import React from 'react'; import PropTypes from 'prop-types'; -import { FlatList, Switch, StyleSheet } from 'react-native'; +import { FlatList, StyleSheet, Switch } from 'react-native'; import RocketChat from '../../lib/rocketchat'; import I18n from '../../i18n'; @@ -9,7 +9,7 @@ import * as List from '../../containers/List'; import { SWITCH_TRACK_COLOR, themes } from '../../constants/colors'; import { withTheme } from '../../theme'; import SafeAreaView from '../../containers/SafeAreaView'; -import { logEvent, events } from '../../utils/log'; +import { events, logEvent } from '../../utils/log'; const styles = StyleSheet.create({ list: { diff --git a/app/views/ChangePasscodeView.js b/app/views/ChangePasscodeView.js index 535ba71d45..398253520f 100644 --- a/app/views/ChangePasscodeView.js +++ b/app/views/ChangePasscodeView.js @@ -8,7 +8,7 @@ import Modal from 'react-native-modal'; import Touchable from 'react-native-platform-touchable'; import { withTheme } from '../theme'; -import { isTablet, hasNotch } from '../utils/deviceInfo'; +import { hasNotch, isTablet } from '../utils/deviceInfo'; import { TYPE } from '../containers/Passcode/constants'; import { PasscodeChoose } from '../containers/Passcode'; import EventEmitter from '../utils/events'; @@ -64,12 +64,12 @@ const ChangePasscodeView = React.memo(({ theme }) => { Orientation.lockToPortrait(); } const listener = EventEmitter.addEventListener(CHANGE_PASSCODE_EMITTER, showChangePasscode); - return (() => { + return () => { if (!isTablet) { Orientation.unlockAllOrientations(); } EventEmitter.removeListener(CHANGE_PASSCODE_EMITTER, listener); - }); + }; }, []); return ( diff --git a/app/views/CreateChannelView.js b/app/views/CreateChannelView.js index 78f4ea42a5..44357af418 100644 --- a/app/views/CreateChannelView.js +++ b/app/views/CreateChannelView.js @@ -2,16 +2,15 @@ import React from 'react'; import { connect } from 'react-redux'; import PropTypes from 'prop-types'; import { - View, Text, Switch, ScrollView, StyleSheet, FlatList + FlatList, ScrollView, StyleSheet, Switch, Text, View } from 'react-native'; import { dequal } from 'dequal'; -import * as List from '../containers/List'; +import * as List from '../containers/List'; import TextInput from '../presentation/TextInput'; import Loading from '../containers/Loading'; import { createChannelRequest as createChannelRequestAction } from '../actions/createChannel'; import { removeUser as removeUserAction } from '../actions/selectedUsers'; -import sharedStyles from './Styles'; import KeyboardView from '../presentation/KeyboardView'; import scrollPersistTaps from '../utils/scrollPersistTaps'; import I18n from '../i18n'; @@ -22,8 +21,9 @@ import { SWITCH_TRACK_COLOR, themes } from '../constants/colors'; import { withTheme } from '../theme'; import { Review } from '../utils/review'; import { getUserSelector } from '../selectors/login'; -import { logEvent, events } from '../utils/log'; +import { events, logEvent } from '../utils/log'; import SafeAreaView from '../containers/SafeAreaView'; +import sharedStyles from './Styles'; const styles = StyleSheet.create({ container: { diff --git a/app/views/CreateDiscussionView/SelectChannel.js b/app/views/CreateDiscussionView/SelectChannel.js index c7b6acbfb7..043d961139 100644 --- a/app/views/CreateDiscussionView/SelectChannel.js +++ b/app/views/CreateDiscussionView/SelectChannel.js @@ -8,7 +8,6 @@ import RocketChat from '../../lib/rocketchat'; import I18n from '../../i18n'; import { MultiSelect } from '../../containers/UIKit/MultiSelect'; import { themes } from '../../constants/colors'; - import styles from './styles'; const SelectChannel = ({ diff --git a/app/views/CreateDiscussionView/SelectUsers.js b/app/views/CreateDiscussionView/SelectUsers.js index 8500ee15c7..ff613a000c 100644 --- a/app/views/CreateDiscussionView/SelectUsers.js +++ b/app/views/CreateDiscussionView/SelectUsers.js @@ -10,9 +10,8 @@ import RocketChat from '../../lib/rocketchat'; import database from '../../lib/database'; import I18n from '../../i18n'; import { MultiSelect } from '../../containers/UIKit/MultiSelect'; - -import styles from './styles'; import { themes } from '../../constants/colors'; +import styles from './styles'; const SelectUsers = ({ server, token, userId, selected, onUserSelect, blockUnauthenticatedAccess, serverVersion, theme diff --git a/app/views/CreateDiscussionView/index.js b/app/views/CreateDiscussionView/index.js index 46b2d6cde3..3a6831f95b 100644 --- a/app/views/CreateDiscussionView/index.js +++ b/app/views/CreateDiscussionView/index.js @@ -1,7 +1,7 @@ import React from 'react'; import { connect } from 'react-redux'; import PropTypes from 'prop-types'; -import { ScrollView, Text, Switch } from 'react-native'; +import { ScrollView, Switch, Text } from 'react-native'; import Loading from '../../containers/Loading'; import KeyboardView from '../../presentation/KeyboardView'; @@ -17,15 +17,13 @@ import RocketChat from '../../lib/rocketchat'; import Navigation from '../../lib/Navigation'; import { createDiscussionRequest } from '../../actions/createDiscussion'; import { showErrorAlert } from '../../utils/info'; - -import SelectChannel from './SelectChannel'; -import SelectUsers from './SelectUsers'; - -import styles from './styles'; import SafeAreaView from '../../containers/SafeAreaView'; import { goRoom } from '../../utils/goRoom'; -import { logEvent, events } from '../../utils/log'; +import { events, logEvent } from '../../utils/log'; import { E2E_ROOM_TYPES } from '../../lib/encryption/constants'; +import styles from './styles'; +import SelectUsers from './SelectUsers'; +import SelectChannel from './SelectChannel'; class CreateChannelView extends React.Component { propTypes = { @@ -97,15 +95,14 @@ class CreateChannelView extends React.Component { const showCloseModal = route.params?.showCloseModal; navigation.setOptions({ title: I18n.t('Create_Discussion'), - headerRight: ( + headerRight: this.valid() ? () => ( <HeaderButton.Container> <HeaderButton.Item title={I18n.t('Create')} onPress={this.submit} testID='create-discussion-submit' /> </HeaderButton.Container> ) - : null - ), + : null, headerLeft: showCloseModal ? () => <HeaderButton.CloseModal navigation={navigation} /> : undefined }); } diff --git a/app/views/DefaultBrowserView.js b/app/views/DefaultBrowserView.js index 5688023609..529361f304 100644 --- a/app/views/DefaultBrowserView.js +++ b/app/views/DefaultBrowserView.js @@ -11,7 +11,7 @@ import { DEFAULT_BROWSER_KEY } from '../utils/openLink'; import { isIOS } from '../utils/deviceInfo'; import SafeAreaView from '../containers/SafeAreaView'; import UserPreferences from '../lib/userPreferences'; -import { logEvent, events } from '../utils/log'; +import { events, logEvent } from '../utils/log'; const DEFAULT_BROWSERS = [ { diff --git a/app/views/DirectoryView/Options.js b/app/views/DirectoryView/Options.js index a88bf42be6..e673966aa0 100644 --- a/app/views/DirectoryView/Options.js +++ b/app/views/DirectoryView/Options.js @@ -1,15 +1,15 @@ import React, { PureComponent } from 'react'; import { - View, Text, Animated, Easing, TouchableWithoutFeedback, Switch + Animated, Easing, Switch, Text, TouchableWithoutFeedback, View } from 'react-native'; import PropTypes from 'prop-types'; -import styles from './styles'; import Touch from '../../utils/touch'; import { CustomIcon } from '../../lib/Icons'; import Check from '../../containers/Check'; import I18n from '../../i18n'; import { SWITCH_TRACK_COLOR, themes } from '../../constants/colors'; +import styles from './styles'; const ANIMATION_DURATION = 200; const ANIMATION_PROPS = { diff --git a/app/views/DirectoryView/index.js b/app/views/DirectoryView/index.js index 6e60b44bc6..41f7f44692 100644 --- a/app/views/DirectoryView/index.js +++ b/app/views/DirectoryView/index.js @@ -1,11 +1,11 @@ import React from 'react'; import PropTypes from 'prop-types'; import { - View, FlatList, Text + FlatList, Text, View } from 'react-native'; import { connect } from 'react-redux'; -import * as List from '../../containers/List'; +import * as List from '../../containers/List'; import Touch from '../../utils/touch'; import RocketChat from '../../lib/rocketchat'; import DirectoryItem from '../../presentation/DirectoryItem'; @@ -17,14 +17,14 @@ import StatusBar from '../../containers/StatusBar'; import ActivityIndicator from '../../containers/ActivityIndicator'; import * as HeaderButton from '../../containers/HeaderButton'; import debounce from '../../utils/debounce'; -import log, { logEvent, events } from '../../utils/log'; -import Options from './Options'; +import log, { events, logEvent } from '../../utils/log'; import { withTheme } from '../../theme'; import { themes } from '../../constants/colors'; -import styles from './styles'; import { getUserSelector } from '../../selectors/login'; import SafeAreaView from '../../containers/SafeAreaView'; import { goRoom } from '../../utils/goRoom'; +import styles from './styles'; +import Options from './Options'; class DirectoryView extends React.Component { static navigationOptions = ({ navigation, isMasterDetail }) => { @@ -93,7 +93,7 @@ class DirectoryView extends React.Component { query, offset: data.length, count: 50, - sort: (type === 'users') ? { username: 1 } : { usersCount: -1 } + sort: type === 'users' ? { username: 1 } : { usersCount: -1 } }); if (directories.success) { this.setState({ diff --git a/app/views/E2EEncryptionSecurityView.js b/app/views/E2EEncryptionSecurityView.js index 661d6e84da..e29f382887 100644 --- a/app/views/E2EEncryptionSecurityView.js +++ b/app/views/E2EEncryptionSecurityView.js @@ -1,19 +1,18 @@ import React from 'react'; -import { View, Text, StyleSheet } from 'react-native'; +import { StyleSheet, Text, View } from 'react-native'; import PropTypes from 'prop-types'; import { connect } from 'react-redux'; import StatusBar from '../containers/StatusBar'; import * as List from '../containers/List'; import I18n from '../i18n'; -import log, { logEvent, events } from '../utils/log'; +import log, { events, logEvent } from '../utils/log'; import { withTheme } from '../theme'; import SafeAreaView from '../containers/SafeAreaView'; import TextInput from '../containers/TextInput'; import Button from '../containers/Button'; import { getUserSelector } from '../selectors/login'; import { PADDING_HORIZONTAL } from '../containers/List/constants'; -import sharedStyles from './Styles'; import { themes } from '../constants/colors'; import { Encryption } from '../lib/encryption'; import RocketChat from '../lib/rocketchat'; @@ -22,6 +21,7 @@ import { showConfirmationAlert, showErrorAlert } from '../utils/info'; import EventEmitter from '../utils/events'; import { LISTENER } from '../containers/Toast'; import debounce from '../utils/debounce'; +import sharedStyles from './Styles'; const styles = StyleSheet.create({ container: { diff --git a/app/views/E2EEnterYourPasswordView.js b/app/views/E2EEnterYourPasswordView.js index 563b1d9a7a..f581e44872 100644 --- a/app/views/E2EEnterYourPasswordView.js +++ b/app/views/E2EEnterYourPasswordView.js @@ -1,10 +1,9 @@ import React from 'react'; import PropTypes from 'prop-types'; -import { Text, StyleSheet, ScrollView } from 'react-native'; +import { ScrollView, StyleSheet, Text } from 'react-native'; import { connect } from 'react-redux'; import I18n from '../i18n'; -import sharedStyles from './Styles'; import { withTheme } from '../theme'; import Button from '../containers/Button'; import { themes } from '../constants/colors'; @@ -15,7 +14,8 @@ import { encryptionDecodeKey as encryptionDecodeKeyAction } from '../actions/enc import scrollPersistTaps from '../utils/scrollPersistTaps'; import KeyboardView from '../presentation/KeyboardView'; import StatusBar from '../containers/StatusBar'; -import { logEvent, events } from '../utils/log'; +import { events, logEvent } from '../utils/log'; +import sharedStyles from './Styles'; const styles = StyleSheet.create({ container: { diff --git a/app/views/E2ESaveYourPasswordView.js b/app/views/E2ESaveYourPasswordView.js index 9163047cd0..850bd19f09 100644 --- a/app/views/E2ESaveYourPasswordView.js +++ b/app/views/E2ESaveYourPasswordView.js @@ -2,11 +2,11 @@ import React from 'react'; import PropTypes from 'prop-types'; import { connect } from 'react-redux'; import { - Text, - View, Clipboard, ScrollView, - StyleSheet + StyleSheet, + Text, + View } from 'react-native'; import { encryptionSetBanner as encryptionSetBannerAction } from '../actions/encryption'; @@ -15,15 +15,15 @@ import * as HeaderButton from '../containers/HeaderButton'; import scrollPersistTaps from '../utils/scrollPersistTaps'; import SafeAreaView from '../containers/SafeAreaView'; import UserPreferences from '../lib/userPreferences'; -import { logEvent, events } from '../utils/log'; +import { events, logEvent } from '../utils/log'; import StatusBar from '../containers/StatusBar'; import { LISTENER } from '../containers/Toast'; import { themes } from '../constants/colors'; import EventEmitter from '../utils/events'; import Button from '../containers/Button'; import { withTheme } from '../theme'; -import sharedStyles from './Styles'; import I18n from '../i18n'; +import sharedStyles from './Styles'; const styles = StyleSheet.create({ container: { diff --git a/app/views/ForgotPasswordView.js b/app/views/ForgotPasswordView.js index 319682c755..8f38256f8a 100644 --- a/app/views/ForgotPasswordView.js +++ b/app/views/ForgotPasswordView.js @@ -4,7 +4,6 @@ import PropTypes from 'prop-types'; import TextInput from '../containers/TextInput'; import Button from '../containers/Button'; -import sharedStyles from './Styles'; import { showErrorAlert } from '../utils/info'; import isValidEmail from '../utils/isValidEmail'; import I18n from '../i18n'; @@ -12,7 +11,8 @@ import RocketChat from '../lib/rocketchat'; import { withTheme } from '../theme'; import { themes } from '../constants/colors'; import FormContainer, { FormContainerInner } from '../containers/FormContainer'; -import { logEvent, events } from '../utils/log'; +import { events, logEvent } from '../utils/log'; +import sharedStyles from './Styles'; class ForgotPasswordView extends React.Component { static navigationOptions = ({ route }) => ({ diff --git a/app/views/ForwardLivechatView.js b/app/views/ForwardLivechatView.js index 3807c9894b..00b47c146d 100644 --- a/app/views/ForwardLivechatView.js +++ b/app/views/ForwardLivechatView.js @@ -1,6 +1,6 @@ import React, { useEffect, useState } from 'react'; import PropTypes from 'prop-types'; -import { View, StyleSheet } from 'react-native'; +import { StyleSheet, View } from 'react-native'; import { connect } from 'react-redux'; import I18n from '../i18n'; diff --git a/app/views/InviteUsersEditView/index.js b/app/views/InviteUsersEditView/index.js index bba6ef2477..de632a8293 100644 --- a/app/views/InviteUsersEditView/index.js +++ b/app/views/InviteUsersEditView/index.js @@ -5,18 +5,18 @@ import { connect } from 'react-redux'; import RNPickerSelect from 'react-native-picker-select'; import { - inviteLinksSetParams as inviteLinksSetParamsAction, - inviteLinksCreate as inviteLinksCreateAction + inviteLinksCreate as inviteLinksCreateAction, + inviteLinksSetParams as inviteLinksSetParamsAction } from '../../actions/inviteLinks'; import * as List from '../../containers/List'; -import styles from './styles'; import Button from '../../containers/Button'; import I18n from '../../i18n'; import StatusBar from '../../containers/StatusBar'; import { themes } from '../../constants/colors'; import { withTheme } from '../../theme'; import SafeAreaView from '../../containers/SafeAreaView'; -import { logEvent, events } from '../../utils/log'; +import { events, logEvent } from '../../utils/log'; +import styles from './styles'; const OPTIONS = { days: [{ diff --git a/app/views/InviteUsersEditView/styles.js b/app/views/InviteUsersEditView/styles.js index bb29503008..3183999e30 100644 --- a/app/views/InviteUsersEditView/styles.js +++ b/app/views/InviteUsersEditView/styles.js @@ -1,6 +1,6 @@ import { StyleSheet } from 'react-native'; -import { PADDING_HORIZONTAL } from '../../containers/List/constants'; +import { PADDING_HORIZONTAL } from '../../containers/List/constants'; import sharedStyles from '../Styles'; export default StyleSheet.create({ diff --git a/app/views/InviteUsersView/index.js b/app/views/InviteUsersView/index.js index c6be109a94..f7973fcd46 100644 --- a/app/views/InviteUsersView/index.js +++ b/app/views/InviteUsersView/index.js @@ -1,15 +1,14 @@ import React from 'react'; import PropTypes from 'prop-types'; -import { View, Share, ScrollView } from 'react-native'; +import { ScrollView, Share, View } from 'react-native'; import moment from 'moment'; import { connect } from 'react-redux'; import { - inviteLinksCreate as inviteLinksCreateAction, - inviteLinksClear as inviteLinksClearAction + inviteLinksClear as inviteLinksClearAction, + inviteLinksCreate as inviteLinksCreateAction } from '../../actions/inviteLinks'; import RCTextInput from '../../containers/TextInput'; -import styles from './styles'; import Markdown from '../../containers/markdown'; import Button from '../../containers/Button'; import scrollPersistTaps from '../../utils/scrollPersistTaps'; @@ -18,7 +17,8 @@ import StatusBar from '../../containers/StatusBar'; import { themes } from '../../constants/colors'; import { withTheme } from '../../theme'; import SafeAreaView from '../../containers/SafeAreaView'; -import { logEvent, events } from '../../utils/log'; +import { events, logEvent } from '../../utils/log'; +import styles from './styles'; class InviteUsersView extends React.Component { static navigationOptions = () => ({ diff --git a/app/views/InviteUsersView/styles.js b/app/views/InviteUsersView/styles.js index eb8648e503..d79ba29349 100644 --- a/app/views/InviteUsersView/styles.js +++ b/app/views/InviteUsersView/styles.js @@ -1,4 +1,5 @@ import { StyleSheet } from 'react-native'; + import { PADDING_HORIZONTAL } from '../../containers/List/constants'; export default StyleSheet.create({ diff --git a/app/views/JitsiMeetView.js b/app/views/JitsiMeetView.js index 6b7a15688a..0c71941b9a 100644 --- a/app/views/JitsiMeetView.js +++ b/app/views/JitsiMeetView.js @@ -6,14 +6,11 @@ import { connect } from 'react-redux'; import RocketChat from '../lib/rocketchat'; import { getUserSelector } from '../selectors/login'; - +import { events, logEvent } from '../utils/log'; import sharedStyles from './Styles'; -import { logEvent, events } from '../utils/log'; - -const formatUrl = (url, baseUrl, uriSize, avatarAuthURLFragment) => ( - `${ baseUrl }/avatar/${ url }?format=png&width=${ uriSize }&height=${ uriSize }${ avatarAuthURLFragment }` -); +const formatUrl = (url, baseUrl, uriSize, avatarAuthURLFragment) => + `${ baseUrl }/avatar/${ url }?format=png&width=${ uriSize }&height=${ uriSize }${ avatarAuthURLFragment }`; class JitsiMeetView extends React.Component { static propTypes = { navigation: PropTypes.object, diff --git a/app/views/LanguageView/index.js b/app/views/LanguageView/index.js index b2e6e10791..7505af6377 100644 --- a/app/views/LanguageView/index.js +++ b/app/views/LanguageView/index.js @@ -7,13 +7,13 @@ import RNRestart from 'react-native-restart'; import RocketChat from '../../lib/rocketchat'; import I18n, { LANGUAGES, isRTL } from '../../i18n'; import { showErrorAlert } from '../../utils/info'; -import log, { logEvent, events } from '../../utils/log'; +import log, { events, logEvent } from '../../utils/log'; import { setUser as setUserAction } from '../../actions/login'; import StatusBar from '../../containers/StatusBar'; import * as List from '../../containers/List'; import { themes } from '../../constants/colors'; import { withTheme } from '../../theme'; -import { appStart as appStartAction, ROOT_LOADING, ROOT_INSIDE } from '../../actions/app'; +import { ROOT_INSIDE, ROOT_LOADING, appStart as appStartAction } from '../../actions/app'; import { getUserSelector } from '../../selectors/login'; import database from '../../lib/database'; import SafeAreaView from '../../containers/SafeAreaView'; @@ -54,7 +54,7 @@ class LanguageView extends React.Component { formIsChanged = (language) => { const { user } = this.props; - return (user.language !== language); + return user.language !== language; } submit = async(language) => { diff --git a/app/views/LivechatEditView.js b/app/views/LivechatEditView.js index 6ba4143e74..0013cb68c0 100644 --- a/app/views/LivechatEditView.js +++ b/app/views/LivechatEditView.js @@ -1,6 +1,6 @@ -import React, { useState, useEffect } from 'react'; +import React, { useEffect, useState } from 'react'; import PropTypes from 'prop-types'; -import { Text, StyleSheet, ScrollView } from 'react-native'; +import { ScrollView, StyleSheet, Text } from 'react-native'; import { connect } from 'react-redux'; import { withTheme } from '../theme'; @@ -9,8 +9,6 @@ import TextInput from '../containers/TextInput'; import KeyboardView from '../presentation/KeyboardView'; import RocketChat from '../lib/rocketchat'; import I18n from '../i18n'; - -import sharedStyles from './Styles'; import { LISTENER } from '../containers/Toast'; import EventEmitter from '../utils/events'; import scrollPersistTaps from '../utils/scrollPersistTaps'; @@ -18,6 +16,7 @@ import { getUserSelector } from '../selectors/login'; import Chips from '../containers/UIKit/MultiSelect/Chips'; import Button from '../containers/Button'; import SafeAreaView from '../containers/SafeAreaView'; +import sharedStyles from './Styles'; const styles = StyleSheet.create({ container: { @@ -276,9 +275,9 @@ LivechatEditView.propTypes = { route: PropTypes.object, theme: PropTypes.string }; -LivechatEditView.navigationOptions = ({ +LivechatEditView.navigationOptions = { title: I18n.t('Livechat_edit') -}); +}; const mapStateToProps = state => ({ server: state.server.server, diff --git a/app/views/LoginView.js b/app/views/LoginView.js index 31a56ae135..f1a57bced8 100644 --- a/app/views/LoginView.js +++ b/app/views/LoginView.js @@ -1,12 +1,11 @@ import React from 'react'; import PropTypes from 'prop-types'; import { - Text, View, StyleSheet, Keyboard, Alert + Alert, Keyboard, StyleSheet, Text, View } from 'react-native'; import { connect } from 'react-redux'; import { dequal } from 'dequal'; -import sharedStyles from './Styles'; import Button from '../containers/Button'; import I18n from '../i18n'; import * as HeaderButton from '../containers/HeaderButton'; @@ -16,6 +15,7 @@ import FormContainer, { FormContainerInner } from '../containers/FormContainer'; import TextInput from '../containers/TextInput'; import { loginRequest as loginRequestAction } from '../actions/login'; import LoginServices from '../containers/LoginServices'; +import sharedStyles from './Styles'; const styles = StyleSheet.create({ registerDisabled: { diff --git a/app/views/MessagesView/index.js b/app/views/MessagesView/index.js index f6ea919421..97a4ee1e86 100644 --- a/app/views/MessagesView/index.js +++ b/app/views/MessagesView/index.js @@ -1,10 +1,9 @@ import React from 'react'; import PropTypes from 'prop-types'; -import { FlatList, View, Text } from 'react-native'; +import { FlatList, Text, View } from 'react-native'; import { connect } from 'react-redux'; import { dequal } from 'dequal'; -import styles from './styles'; import Message from '../../containers/message'; import ActivityIndicator from '../../containers/ActivityIndicator'; import I18n from '../../i18n'; @@ -17,6 +16,7 @@ import { getUserSelector } from '../../selectors/login'; import { withActionSheet } from '../../containers/ActionSheet'; import SafeAreaView from '../../containers/SafeAreaView'; import getThreadName from '../../lib/methods/getThreadName'; +import styles from './styles'; class MessagesView extends React.Component { static propTypes = { @@ -130,7 +130,7 @@ class MessagesView extends React.Component { onPress: () => this.jumpToMessage({ item }) }); - return ({ + return { // Files Messages Screen Files: { name: I18n.t('Files'), @@ -225,7 +225,7 @@ class MessagesView extends React.Component { action: () => ({ title: I18n.t('Unpin'), icon: 'pin', onPress: this.handleActionPress }), handleActionPress: message => RocketChat.togglePinMessage(message._id, message.pinned) } - }[name]); + }[name]; } load = async() => { diff --git a/app/views/ModalBlockView.js b/app/views/ModalBlockView.js index 85eee84925..33e330ab7c 100644 --- a/app/views/ModalBlockView.js +++ b/app/views/ModalBlockView.js @@ -11,11 +11,10 @@ import * as HeaderButton from '../containers/HeaderButton'; import { modalBlockWithContext } from '../containers/UIKit/MessageBlock'; import RocketChat from '../lib/rocketchat'; import ActivityIndicator from '../containers/ActivityIndicator'; -import { MODAL_ACTIONS, CONTAINER_TYPES } from '../lib/methods/actions'; - -import sharedStyles from './Styles'; +import { CONTAINER_TYPES, MODAL_ACTIONS } from '../lib/methods/actions'; import { textParser } from '../containers/UIKit/utils'; import Navigation from '../lib/Navigation'; +import sharedStyles from './Styles'; const styles = StyleSheet.create({ container: { diff --git a/app/views/NewMessageView.js b/app/views/NewMessageView.js index 8d5f62ceb1..455330a444 100644 --- a/app/views/NewMessageView.js +++ b/app/views/NewMessageView.js @@ -1,19 +1,18 @@ import React from 'react'; import PropTypes from 'prop-types'; import { - View, StyleSheet, FlatList, Text + FlatList, StyleSheet, Text, View } from 'react-native'; import { connect } from 'react-redux'; import { Q } from '@nozbe/watermelondb'; -import * as List from '../containers/List'; +import * as List from '../containers/List'; import Touch from '../utils/touch'; import database from '../lib/database'; import RocketChat from '../lib/rocketchat'; import UserItem from '../presentation/UserItem'; -import sharedStyles from './Styles'; import I18n from '../i18n'; -import log, { logEvent, events } from '../utils/log'; +import log, { events, logEvent } from '../utils/log'; import SearchBox from '../containers/SearchBox'; import { CustomIcon } from '../lib/Icons'; import * as HeaderButton from '../containers/HeaderButton'; @@ -26,6 +25,7 @@ import { createChannelRequest } from '../actions/createChannel'; import { goRoom } from '../utils/goRoom'; import SafeAreaView from '../containers/SafeAreaView'; import { compareServerVersion, methods } from '../lib/utils'; +import sharedStyles from './Styles'; const QUERY_SIZE = 50; @@ -181,12 +181,12 @@ class NewMessageView extends React.Component { first: true })} {compareServerVersion(serverVersion, '3.13.0', methods.greaterThanOrEqualTo) - ? (this.renderButton({ + ? this.renderButton({ onPress: this.createTeam, title: I18n.t('Create_Team'), icon: 'teams', testID: 'new-message-view-create-team' - })) : null} + }) : null} {maxUsers > 2 ? this.renderButton({ onPress: this.createGroupChat, title: I18n.t('Create_Direct_Messages'), diff --git a/app/views/NewServerView/ServerInput/Item.js b/app/views/NewServerView/ServerInput/Item.js index b249c88e09..417a2b3f59 100644 --- a/app/views/NewServerView/ServerInput/Item.js +++ b/app/views/NewServerView/ServerInput/Item.js @@ -1,6 +1,6 @@ import React from 'react'; import { - View, StyleSheet, Text + StyleSheet, Text, View } from 'react-native'; import PropTypes from 'prop-types'; import { BorderlessButton } from 'react-native-gesture-handler'; diff --git a/app/views/NewServerView/ServerInput/index.js b/app/views/NewServerView/ServerInput/index.js index 6088e4ef64..08bf300542 100644 --- a/app/views/NewServerView/ServerInput/index.js +++ b/app/views/NewServerView/ServerInput/index.js @@ -1,12 +1,12 @@ import React, { useState } from 'react'; -import { View, FlatList, StyleSheet } from 'react-native'; +import { FlatList, StyleSheet, View } from 'react-native'; import PropTypes from 'prop-types'; import TextInput from '../../../containers/TextInput'; import * as List from '../../../containers/List'; import { themes } from '../../../constants/colors'; -import Item from './Item'; import I18n from '../../../i18n'; +import Item from './Item'; const styles = StyleSheet.create({ container: { diff --git a/app/views/NewServerView/index.js b/app/views/NewServerView/index.js index 27422dec81..72fbc63a7c 100644 --- a/app/views/NewServerView/index.js +++ b/app/views/NewServerView/index.js @@ -1,14 +1,14 @@ import React from 'react'; import PropTypes from 'prop-types'; import { - Text, Keyboard, StyleSheet, View, BackHandler + BackHandler, Keyboard, StyleSheet, Text, View } from 'react-native'; import { connect } from 'react-redux'; import { Base64 } from 'js-base64'; import parse from 'url-parse'; import { Q } from '@nozbe/watermelondb'; - import { TouchableOpacity } from 'react-native-gesture-handler'; + import UserPreferences from '../../lib/userPreferences'; import EventEmitter from '../../utils/events'; import { selectServerRequest, serverRequest } from '../../actions/server'; @@ -19,17 +19,17 @@ import OrSeparator from '../../containers/OrSeparator'; import FormContainer, { FormContainerInner } from '../../containers/FormContainer'; import I18n from '../../i18n'; import { themes } from '../../constants/colors'; -import { logEvent, events } from '../../utils/log'; +import { events, logEvent } from '../../utils/log'; import { animateNextTransition } from '../../utils/layoutAnimation'; import { withTheme } from '../../theme'; -import { setBasicAuth, BASIC_AUTH_KEY } from '../../utils/fetch'; +import { BASIC_AUTH_KEY, setBasicAuth } from '../../utils/fetch'; import * as HeaderButton from '../../containers/HeaderButton'; import { showConfirmationAlert } from '../../utils/info'; import database from '../../lib/database'; -import ServerInput from './ServerInput'; import { sanitizeLikeString } from '../../lib/database/utils'; import SSLPinning from '../../utils/sslPinning'; import RocketChat from '../../lib/rocketchat'; +import ServerInput from './ServerInput'; const styles = StyleSheet.create({ title: { diff --git a/app/views/NotificationPreferencesView/index.js b/app/views/NotificationPreferencesView/index.js index debea14923..a9356f3e19 100644 --- a/app/views/NotificationPreferencesView/index.js +++ b/app/views/NotificationPreferencesView/index.js @@ -1,5 +1,5 @@ import React from 'react'; -import { Switch, Text, StyleSheet } from 'react-native'; +import { StyleSheet, Switch, Text } from 'react-native'; import PropTypes from 'prop-types'; import database from '../../lib/database'; @@ -12,8 +12,8 @@ import { withTheme } from '../../theme'; import protectedFunction from '../../lib/methods/helpers/protectedFunction'; import SafeAreaView from '../../containers/SafeAreaView'; import log, { events, logEvent } from '../../utils/log'; -import { OPTIONS } from './options'; import sharedStyles from '../Styles'; +import { OPTIONS } from './options'; const styles = StyleSheet.create({ pickerText: { diff --git a/app/views/OnboardingView/index.js b/app/views/OnboardingView/index.js index a3cd50c28c..5ae774d020 100644 --- a/app/views/OnboardingView/index.js +++ b/app/views/OnboardingView/index.js @@ -1,18 +1,18 @@ import React from 'react'; import { - View, Text, Image, Linking + Image, Linking, Text, View } from 'react-native'; import PropTypes from 'prop-types'; import Orientation from 'react-native-orientation-locker'; import I18n from '../../i18n'; import Button from '../../containers/Button'; -import styles from './styles'; import { isTablet } from '../../utils/deviceInfo'; import { themes } from '../../constants/colors'; import { withTheme } from '../../theme'; import FormContainer, { FormContainerInner } from '../../containers/FormContainer'; -import { logEvent, events } from '../../utils/log'; +import { events, logEvent } from '../../utils/log'; +import styles from './styles'; class OnboardingView extends React.Component { static navigationOptions = { diff --git a/app/views/OnboardingView/styles.js b/app/views/OnboardingView/styles.js index 809fcf36ed..dc26c82ecf 100644 --- a/app/views/OnboardingView/styles.js +++ b/app/views/OnboardingView/styles.js @@ -1,6 +1,6 @@ import { StyleSheet } from 'react-native'; -import { verticalScale, moderateScale } from '../../utils/scaling'; +import { moderateScale, verticalScale } from '../../utils/scaling'; import { isTablet } from '../../utils/deviceInfo'; import sharedStyles from '../Styles'; diff --git a/app/views/PickerView.js b/app/views/PickerView.js index b11ae62477..3fe263011b 100644 --- a/app/views/PickerView.js +++ b/app/views/PickerView.js @@ -1,18 +1,17 @@ import React from 'react'; import PropTypes from 'prop-types'; import { - View, FlatList, StyleSheet, Text + FlatList, StyleSheet, Text, View } from 'react-native'; import I18n from '../i18n'; import { withTheme } from '../theme'; import { themes } from '../constants/colors'; import debounce from '../utils/debounce'; -import sharedStyles from './Styles'; - import * as List from '../containers/List'; import SearchBox from '../containers/SearchBox'; import SafeAreaView from '../containers/SafeAreaView'; +import sharedStyles from './Styles'; const styles = StyleSheet.create({ search: { diff --git a/app/views/ProfileView/index.js b/app/views/ProfileView/index.js index 7e97422df2..e726ae6931 100644 --- a/app/views/ProfileView/index.js +++ b/app/views/ProfileView/index.js @@ -1,6 +1,6 @@ import React from 'react'; import PropTypes from 'prop-types'; -import { View, ScrollView, Keyboard } from 'react-native'; +import { Keyboard, ScrollView, View } from 'react-native'; import { connect } from 'react-redux'; import prompt from 'react-native-prompt-android'; import SHA256 from 'js-sha256'; @@ -12,14 +12,13 @@ import omit from 'lodash/omit'; import Touch from '../../utils/touch'; import KeyboardView from '../../presentation/KeyboardView'; import sharedStyles from '../Styles'; -import styles from './styles'; import scrollPersistTaps from '../../utils/scrollPersistTaps'; -import { showErrorAlert, showConfirmationAlert } from '../../utils/info'; +import { showConfirmationAlert, showErrorAlert } from '../../utils/info'; import { LISTENER } from '../../containers/Toast'; import EventEmitter from '../../utils/events'; import RocketChat from '../../lib/rocketchat'; import RCTextInput from '../../containers/TextInput'; -import log, { logEvent, events } from '../../utils/log'; +import log, { events, logEvent } from '../../utils/log'; import I18n from '../../i18n'; import Button from '../../containers/Button'; import Avatar from '../../containers/Avatar'; @@ -31,6 +30,7 @@ import { themes } from '../../constants/colors'; import { withTheme } from '../../theme'; import { getUserSelector } from '../../selectors/login'; import SafeAreaView from '../../containers/SafeAreaView'; +import styles from './styles'; class ProfileView extends React.Component { static navigationOptions = ({ navigation, isMasterDetail }) => { diff --git a/app/views/ReadReceiptView/index.js b/app/views/ReadReceiptView/index.js index b413a76745..dc3352f9de 100644 --- a/app/views/ReadReceiptView/index.js +++ b/app/views/ReadReceiptView/index.js @@ -1,13 +1,12 @@ import React from 'react'; import PropTypes from 'prop-types'; -import { FlatList, View, Text } from 'react-native'; +import { FlatList, Text, View } from 'react-native'; import { dequal } from 'dequal'; import moment from 'moment'; import { connect } from 'react-redux'; -import * as List from '../../containers/List'; +import * as List from '../../containers/List'; import Avatar from '../../containers/Avatar'; -import styles from './styles'; import ActivityIndicator from '../../containers/ActivityIndicator'; import * as HeaderButton from '../../containers/HeaderButton'; import I18n from '../../i18n'; @@ -16,6 +15,7 @@ import StatusBar from '../../containers/StatusBar'; import { withTheme } from '../../theme'; import { themes } from '../../constants/colors'; import SafeAreaView from '../../containers/SafeAreaView'; +import styles from './styles'; class ReadReceiptView extends React.Component { static navigationOptions = ({ navigation, isMasterDetail }) => { diff --git a/app/views/ReadReceiptView/styles.js b/app/views/ReadReceiptView/styles.js index 828e814c06..dbf31e6a06 100644 --- a/app/views/ReadReceiptView/styles.js +++ b/app/views/ReadReceiptView/styles.js @@ -1,4 +1,5 @@ import { StyleSheet } from 'react-native'; + import sharedStyles from '../Styles'; export default StyleSheet.create({ diff --git a/app/views/RegisterView.js b/app/views/RegisterView.js index 685f1449a4..0d5b036834 100644 --- a/app/views/RegisterView.js +++ b/app/views/RegisterView.js @@ -1,13 +1,12 @@ import React from 'react'; import PropTypes from 'prop-types'; import { - Text, View, StyleSheet, Keyboard + Keyboard, StyleSheet, Text, View } from 'react-native'; import { connect } from 'react-redux'; import RNPickerSelect from 'react-native-picker-select'; -import log, { logEvent, events } from '../utils/log'; -import sharedStyles from './Styles'; +import log, { events, logEvent } from '../utils/log'; import Button from '../containers/Button'; import I18n from '../i18n'; import * as HeaderButton from '../containers/HeaderButton'; @@ -22,6 +21,7 @@ import { loginRequest as loginRequestAction } from '../actions/login'; import openLink from '../utils/openLink'; import LoginServices from '../containers/LoginServices'; import { getShowLoginButton } from '../selectors/login'; +import sharedStyles from './Styles'; const styles = StyleSheet.create({ title: { diff --git a/app/views/RoomActionsView/index.js b/app/views/RoomActionsView/index.js index 914a42913f..d7f1f74b9f 100644 --- a/app/views/RoomActionsView/index.js +++ b/app/views/RoomActionsView/index.js @@ -1,7 +1,7 @@ import React from 'react'; import PropTypes from 'prop-types'; import { - View, Text, Share, Switch + Share, Switch, Text, View } from 'react-native'; import { connect } from 'react-redux'; import isEmpty from 'lodash/isEmpty'; @@ -11,19 +11,18 @@ import { compareServerVersion, methods } from '../../lib/utils'; import Touch from '../../utils/touch'; import { setLoading as setLoadingAction } from '../../actions/selectedUsers'; import { - leaveRoom as leaveRoomAction, closeRoom as closeRoomAction + closeRoom as closeRoomAction, leaveRoom as leaveRoomAction } from '../../actions/room'; -import styles from './styles'; import sharedStyles from '../Styles'; import Avatar from '../../containers/Avatar'; import Status from '../../containers/Status'; import * as List from '../../containers/List'; import RocketChat from '../../lib/rocketchat'; -import log, { logEvent, events } from '../../utils/log'; +import log, { events, logEvent } from '../../utils/log'; import RoomTypeIcon from '../../containers/RoomTypeIcon'; import I18n from '../../i18n'; import StatusBar from '../../containers/StatusBar'; -import { themes, SWITCH_TRACK_COLOR } from '../../constants/colors'; +import { SWITCH_TRACK_COLOR, themes } from '../../constants/colors'; import { withTheme } from '../../theme'; import * as HeaderButton from '../../containers/HeaderButton'; import Markdown from '../../containers/markdown'; @@ -33,6 +32,7 @@ import { E2E_ROOM_TYPES } from '../../lib/encryption/constants'; import protectedFunction from '../../lib/methods/helpers/protectedFunction'; import database from '../../lib/database'; import { withDimensions } from '../../dimensions'; +import styles from './styles'; class RoomActionsView extends React.Component { static navigationOptions = ({ navigation, isMasterDetail }) => { @@ -276,7 +276,7 @@ class RoomActionsView extends React.Component { // This method is executed only in componentDidMount and returns a value // We save the state to read in render - const result = (t === 'c' || t === 'p'); + const result = t === 'c' || t === 'p'; return result; } diff --git a/app/views/RoomActionsView/styles.js b/app/views/RoomActionsView/styles.js index 8a1ac129d7..1e8f0b1fdf 100644 --- a/app/views/RoomActionsView/styles.js +++ b/app/views/RoomActionsView/styles.js @@ -1,6 +1,6 @@ -import { StyleSheet, I18nManager } from 'react-native'; -import { PADDING_HORIZONTAL } from '../../containers/List/constants'; +import { I18nManager, StyleSheet } from 'react-native'; +import { PADDING_HORIZONTAL } from '../../containers/List/constants'; import sharedStyles from '../Styles'; export default StyleSheet.create({ diff --git a/app/views/RoomInfoEditView/SwitchContainer.js b/app/views/RoomInfoEditView/SwitchContainer.js index de1aed98f0..e26f8881ce 100644 --- a/app/views/RoomInfoEditView/SwitchContainer.js +++ b/app/views/RoomInfoEditView/SwitchContainer.js @@ -1,9 +1,9 @@ import React from 'react'; -import { View, Text, Switch } from 'react-native'; +import { Switch, Text, View } from 'react-native'; import PropTypes from 'prop-types'; -import styles from './styles'; import { SWITCH_TRACK_COLOR, themes } from '../../constants/colors'; +import styles from './styles'; const SwitchContainer = React.memo(({ children, value, disabled, onValueChange, leftLabelPrimary, leftLabelSecondary, rightLabelPrimary, rightLabelSecondary, theme, testID, labelContainerStyle, leftLabelStyle diff --git a/app/views/RoomInfoEditView/index.js b/app/views/RoomInfoEditView/index.js index 8dd7e08655..2ca8cd0db7 100644 --- a/app/views/RoomInfoEditView/index.js +++ b/app/views/RoomInfoEditView/index.js @@ -1,7 +1,7 @@ import React from 'react'; import PropTypes from 'prop-types'; import { - Text, View, ScrollView, TouchableOpacity, Keyboard, Alert + Alert, Keyboard, ScrollView, Text, TouchableOpacity, View } from 'react-native'; import { connect } from 'react-redux'; import { BLOCK_CONTEXT } from '@rocket.chat/ui-kit'; @@ -15,7 +15,6 @@ import database from '../../lib/database'; import { deleteRoom as deleteRoomAction } from '../../actions/room'; import KeyboardView from '../../presentation/KeyboardView'; import sharedStyles from '../Styles'; -import styles from './styles'; import scrollPersistTaps from '../../utils/scrollPersistTaps'; import { showConfirmationAlert, showErrorAlert } from '../../utils/info'; import { LISTENER } from '../../containers/Toast'; @@ -23,9 +22,8 @@ import EventEmitter from '../../utils/events'; import RocketChat from '../../lib/rocketchat'; import RCTextInput from '../../containers/TextInput'; import Loading from '../../containers/Loading'; -import SwitchContainer from './SwitchContainer'; import random from '../../utils/random'; -import log, { logEvent, events } from '../../utils/log'; +import log, { events, logEvent } from '../../utils/log'; import I18n from '../../i18n'; import StatusBar from '../../containers/StatusBar'; import { themes } from '../../constants/colors'; @@ -35,6 +33,8 @@ import { MessageTypeValues } from '../../utils/messageTypes'; import SafeAreaView from '../../containers/SafeAreaView'; import Avatar from '../../containers/Avatar'; import { CustomIcon } from '../../lib/Icons'; +import SwitchContainer from './SwitchContainer'; +import styles from './styles'; const PERMISSION_SET_READONLY = 'set-readonly'; const PERMISSION_SET_REACT_WHEN_READONLY = 'set-react-when-readonly'; @@ -129,7 +129,7 @@ class RoomInfoEditView extends React.Component { unarchiveRoomPermission, deleteCPermission, deletePPermission, - ...(this.room.teamMain ? [deleteTeamPermission] : []) + ...this.room.teamMain ? [deleteTeamPermission] : [] ], rid); this.setState({ @@ -140,7 +140,7 @@ class RoomInfoEditView extends React.Component { [PERMISSION_UNARCHIVE]: result[3], [PERMISSION_DELETE_C]: result[4], [PERMISSION_DELETE_P]: result[5], - ...(this.room.teamMain && { [PERMISSION_DELETE_TEAM]: result[6] }) + ...this.room.teamMain && { [PERMISSION_DELETE_TEAM]: result[6] } } }); } catch (e) { diff --git a/app/views/RoomInfoView/Direct.js b/app/views/RoomInfoView/Direct.js index 7587bda6f0..14b2a83a4c 100644 --- a/app/views/RoomInfoView/Direct.js +++ b/app/views/RoomInfoView/Direct.js @@ -1,13 +1,11 @@ import React from 'react'; -import { View, Text } from 'react-native'; +import { Text, View } from 'react-native'; import PropTypes from 'prop-types'; import { themes } from '../../constants/colors'; import I18n from '../../i18n'; - import Timezone from './Timezone'; import CustomFields from './CustomFields'; - import styles from './styles'; const Roles = ({ roles, theme }) => (roles && roles.length ? ( diff --git a/app/views/RoomInfoView/Item.js b/app/views/RoomInfoView/Item.js index b2503c2e30..e820c50909 100644 --- a/app/views/RoomInfoView/Item.js +++ b/app/views/RoomInfoView/Item.js @@ -1,10 +1,10 @@ import React from 'react'; -import { View, Text } from 'react-native'; +import { Text, View } from 'react-native'; import PropTypes from 'prop-types'; -import styles from './styles'; import Markdown from '../../containers/markdown'; import { themes } from '../../constants/colors'; +import styles from './styles'; const Item = ({ label, content, theme, testID diff --git a/app/views/RoomInfoView/Livechat.js b/app/views/RoomInfoView/Livechat.js index 09e14a6083..e6dca73cc9 100644 --- a/app/views/RoomInfoView/Livechat.js +++ b/app/views/RoomInfoView/Livechat.js @@ -1,15 +1,15 @@ -import React, { useState, useEffect } from 'react'; -import { Text, StyleSheet } from 'react-native'; +import React, { useEffect, useState } from 'react'; +import { StyleSheet, Text } from 'react-native'; import PropTypes from 'prop-types'; import RocketChat from '../../lib/rocketchat'; import { withTheme } from '../../theme'; -import CustomFields from './CustomFields'; -import Item from './Item'; -import Timezone from './Timezone'; import sharedStyles from '../Styles'; import { themes } from '../../constants/colors'; import I18n from '../../i18n'; +import CustomFields from './CustomFields'; +import Item from './Item'; +import Timezone from './Timezone'; const styles = StyleSheet.create({ title: { diff --git a/app/views/RoomInfoView/index.js b/app/views/RoomInfoView/index.js index a966463bf6..c9c3d8e03d 100644 --- a/app/views/RoomInfoView/index.js +++ b/app/views/RoomInfoView/index.js @@ -1,6 +1,6 @@ import React from 'react'; import PropTypes from 'prop-types'; -import { View, Text, ScrollView } from 'react-native'; +import { ScrollView, Text, View } from 'react-native'; import { BorderlessButton } from 'react-native-gesture-handler'; import { connect } from 'react-redux'; import UAParser from 'ua-parser-js'; @@ -9,26 +9,25 @@ import isEmpty from 'lodash/isEmpty'; import { CustomIcon } from '../../lib/Icons'; import Status from '../../containers/Status'; import Avatar from '../../containers/Avatar'; -import styles from './styles'; import sharedStyles from '../Styles'; import RocketChat from '../../lib/rocketchat'; import RoomTypeIcon from '../../containers/RoomTypeIcon'; import I18n from '../../i18n'; import * as HeaderButton from '../../containers/HeaderButton'; import StatusBar from '../../containers/StatusBar'; -import log, { logEvent, events } from '../../utils/log'; +import log, { events, logEvent } from '../../utils/log'; import { themes } from '../../constants/colors'; import { withTheme } from '../../theme'; import Markdown from '../../containers/markdown'; import { LISTENER } from '../../containers/Toast'; import EventEmitter from '../../utils/events'; - -import Livechat from './Livechat'; -import Channel from './Channel'; -import Direct from './Direct'; import SafeAreaView from '../../containers/SafeAreaView'; import { goRoom } from '../../utils/goRoom'; import Navigation from '../../lib/Navigation'; +import Livechat from './Livechat'; +import Channel from './Channel'; +import Direct from './Direct'; +import styles from './styles'; const getRoomTitle = (room, type, name, username, statusText, theme) => (type === 'd' ? ( diff --git a/app/views/RoomMembersView/index.js b/app/views/RoomMembersView/index.js index aaa0c98f90..eccb3ac1c6 100644 --- a/app/views/RoomMembersView/index.js +++ b/app/views/RoomMembersView/index.js @@ -3,9 +3,8 @@ import PropTypes from 'prop-types'; import { FlatList } from 'react-native'; import { connect } from 'react-redux'; import { Q } from '@nozbe/watermelondb'; -import * as List from '../../containers/List'; -import styles from './styles'; +import * as List from '../../containers/List'; import UserItem from '../../presentation/UserItem'; import scrollPersistTaps from '../../utils/scrollPersistTaps'; import RocketChat from '../../lib/rocketchat'; @@ -27,6 +26,7 @@ import { showConfirmationAlert, showErrorAlert } from '../../utils/info'; import SafeAreaView from '../../containers/SafeAreaView'; import { goRoom } from '../../utils/goRoom'; import { CustomIcon } from '../../lib/Icons'; +import styles from './styles'; const PAGE_SIZE = 25; @@ -106,7 +106,7 @@ class RoomMembersView extends React.Component { } = this.props; const result = await RocketChat.hasPermission([ - muteUserPermission, setLeaderPermission, setOwnerPermission, setModeratorPermission, removeUserPermission, ...(room.teamMain ? [editTeamMemberPermission, viewAllTeamChannelsPermission, viewAllTeamsPermission] : []) + muteUserPermission, setLeaderPermission, setOwnerPermission, setModeratorPermission, removeUserPermission, ...room.teamMain ? [editTeamMemberPermission, viewAllTeamChannelsPermission, viewAllTeamsPermission] : [] ], room.rid); this.permissions = { @@ -115,11 +115,11 @@ class RoomMembersView extends React.Component { [PERMISSION_SET_OWNER]: result[2], [PERMISSION_SET_MODERATOR]: result[3], [PERMISSION_REMOVE_USER]: result[4], - ...(room.teamMain ? { + ...room.teamMain ? { [PERMISSION_EDIT_TEAM_MEMBER]: result[5], [PERMISSION_VIEW_ALL_TEAM_CHANNELS]: result[6], [PERMISION_VIEW_ALL_TEAMS]: result[7] - } : {}) + } : {} }; const hasSinglePermission = Object.values(this.permissions).some(p => !!p); @@ -225,7 +225,7 @@ class RoomMembersView extends React.Component { teamId: room.teamId, teamName: room.name, userId, - ...(selected && { rooms: selected }) + ...selected && { rooms: selected } }); if (result.success) { const message = I18n.t('User_has_been_removed_from_s', { s: RocketChat.getRoomTitle(room) }); diff --git a/app/views/RoomView/Banner.js b/app/views/RoomView/Banner.js index 5ee5bb9a26..5172e13119 100644 --- a/app/views/RoomView/Banner.js +++ b/app/views/RoomView/Banner.js @@ -1,11 +1,10 @@ import React, { useState } from 'react'; -import { View, Text } from 'react-native'; +import { Text, View } from 'react-native'; import PropTypes from 'prop-types'; -import { ScrollView, BorderlessButton } from 'react-native-gesture-handler'; +import { BorderlessButton, ScrollView } from 'react-native-gesture-handler'; import Modal from 'react-native-modal'; import Markdown from '../../containers/markdown'; - import { CustomIcon } from '../../lib/Icons'; import { themes } from '../../constants/colors'; import styles from './styles'; diff --git a/app/views/RoomView/JoinCode.js b/app/views/RoomView/JoinCode.js index e3639818ba..8ef7c42992 100644 --- a/app/views/RoomView/JoinCode.js +++ b/app/views/RoomView/JoinCode.js @@ -1,14 +1,14 @@ import React, { - useState, forwardRef, - useImperativeHandle + useImperativeHandle, + useState } from 'react'; import PropTypes from 'prop-types'; import { - View, - Text, + InteractionManager, StyleSheet, - InteractionManager + Text, + View } from 'react-native'; import Modal from 'react-native-modal'; import { connect } from 'react-redux'; @@ -18,7 +18,6 @@ import Button from '../../containers/Button'; import TextInput from '../../containers/TextInput'; import RocketChat from '../../lib/rocketchat'; import sharedStyles from '../Styles'; - import { themes } from '../../constants/colors'; const styles = StyleSheet.create({ diff --git a/app/views/RoomView/List/NavBottomFAB.js b/app/views/RoomView/List/NavBottomFAB.js index 481ac79a63..a7e5dd54e3 100644 --- a/app/views/RoomView/List/NavBottomFAB.js +++ b/app/views/RoomView/List/NavBottomFAB.js @@ -1,5 +1,5 @@ import React, { useCallback, useState } from 'react'; -import { View, StyleSheet } from 'react-native'; +import { StyleSheet, View } from 'react-native'; import PropTypes from 'prop-types'; import Animated, { call, cond, greaterOrEq, useCode diff --git a/app/views/RoomView/List/index.js b/app/views/RoomView/List/index.js index cbf02879be..6cdf40252c 100644 --- a/app/views/RoomView/List/index.js +++ b/app/views/RoomView/List/index.js @@ -13,9 +13,9 @@ import EmptyRoom from '../EmptyRoom'; import { animateNextTransition } from '../../../utils/layoutAnimation'; import ActivityIndicator from '../../../containers/ActivityIndicator'; import { themes } from '../../../constants/colors'; +import debounce from '../../../utils/debounce'; import List from './List'; import NavBottomFAB from './NavBottomFAB'; -import debounce from '../../../utils/debounce'; const QUERY_SIZE = 50; diff --git a/app/views/RoomView/LoadMore/LoadMore.stories.js b/app/views/RoomView/LoadMore/LoadMore.stories.js index 1f110a9cf2..a9d5c46053 100644 --- a/app/views/RoomView/LoadMore/LoadMore.stories.js +++ b/app/views/RoomView/LoadMore/LoadMore.stories.js @@ -3,14 +3,14 @@ import React from 'react'; import { ScrollView } from 'react-native'; import { storiesOf } from '@storybook/react-native'; -import LoadMore from './index'; import { longText } from '../../../../storybook/utils'; import { ThemeContext } from '../../../theme'; import { - Message, StoryProvider, MessageDecorator + Message, MessageDecorator, StoryProvider } from '../../../../storybook/stories/Message'; import { themes } from '../../../constants/colors'; import { MESSAGE_TYPE_LOAD_MORE, MESSAGE_TYPE_LOAD_NEXT_CHUNK, MESSAGE_TYPE_LOAD_PREVIOUS_CHUNK } from '../../../constants/messageTypeLoad'; +import LoadMore from './index'; const stories = storiesOf('LoadMore', module); diff --git a/app/views/RoomView/LoadMore/index.js b/app/views/RoomView/LoadMore/index.js index 04b9228352..487476f903 100644 --- a/app/views/RoomView/LoadMore/index.js +++ b/app/views/RoomView/LoadMore/index.js @@ -1,5 +1,5 @@ -import React, { useEffect, useCallback, useState } from 'react'; -import { Text, StyleSheet, ActivityIndicator } from 'react-native'; +import React, { useCallback, useEffect, useState } from 'react'; +import { ActivityIndicator, StyleSheet, Text } from 'react-native'; import PropTypes from 'prop-types'; import { themes } from '../../../constants/colors'; diff --git a/app/views/RoomView/ReactionPicker.js b/app/views/RoomView/ReactionPicker.js index 9e9c470f83..052ad26762 100644 --- a/app/views/RoomView/ReactionPicker.js +++ b/app/views/RoomView/ReactionPicker.js @@ -5,10 +5,10 @@ import { connect } from 'react-redux'; import Modal from 'react-native-modal'; import EmojiPicker from '../../containers/EmojiPicker'; -import styles from './styles'; import { isAndroid } from '../../utils/deviceInfo'; import { themes } from '../../constants/colors'; import { withTheme } from '../../theme'; +import styles from './styles'; const margin = isAndroid ? 40 : 20; const maxSize = 400; @@ -52,7 +52,7 @@ class ReactionPicker extends React.Component { heightStyle = maxSize; } - return (show + return show ? ( <Modal isVisible={show} @@ -81,8 +81,7 @@ class ReactionPicker extends React.Component { </View> </Modal> ) - : null - ); + : null; } } diff --git a/app/views/RoomView/RightButtons.js b/app/views/RoomView/RightButtons.js index 5b283b4ad0..07ccc3888d 100644 --- a/app/views/RoomView/RightButtons.js +++ b/app/views/RoomView/RightButtons.js @@ -6,7 +6,7 @@ import { dequal } from 'dequal'; import * as HeaderButton from '../../containers/HeaderButton'; import database from '../../lib/database'; import { getUserSelector } from '../../selectors/login'; -import { logEvent, events } from '../../utils/log'; +import { events, logEvent } from '../../utils/log'; import { isTeamRoom } from '../../utils/room'; class RightButtonsContainer extends Component { diff --git a/app/views/RoomView/Separator.js b/app/views/RoomView/Separator.js index c705f1fe5f..b992f25601 100644 --- a/app/views/RoomView/Separator.js +++ b/app/views/RoomView/Separator.js @@ -1,5 +1,5 @@ import React from 'react'; -import { View, StyleSheet, Text } from 'react-native'; +import { StyleSheet, Text, View } from 'react-native'; import PropTypes from 'prop-types'; import moment from 'moment'; diff --git a/app/views/RoomView/UploadProgress.js b/app/views/RoomView/UploadProgress.js index ab17efc8be..f9887a01e7 100644 --- a/app/views/RoomView/UploadProgress.js +++ b/app/views/RoomView/UploadProgress.js @@ -1,6 +1,6 @@ import React, { Component } from 'react'; import { - View, Text, StyleSheet, TouchableOpacity, ScrollView + ScrollView, StyleSheet, Text, TouchableOpacity, View } from 'react-native'; import PropTypes from 'prop-types'; import { Q } from '@nozbe/watermelondb'; diff --git a/app/views/RoomView/index.js b/app/views/RoomView/index.js index 13de89c87d..eeb66cecde 100644 --- a/app/views/RoomView/index.js +++ b/app/views/RoomView/index.js @@ -1,9 +1,8 @@ import React from 'react'; import PropTypes from 'prop-types'; -import { Text, View, InteractionManager } from 'react-native'; +import { InteractionManager, Text, View } from 'react-native'; import { connect } from 'react-redux'; import parse from 'url-parse'; - import moment from 'moment'; import * as Haptics from 'expo-haptics'; import { Q } from '@nozbe/watermelondb'; @@ -14,32 +13,24 @@ import Touch from '../../utils/touch'; import { replyBroadcast as replyBroadcastAction } from '../../actions/messages'; -import List from './List'; import database from '../../lib/database'; import RocketChat from '../../lib/rocketchat'; import Message from '../../containers/message'; import MessageActions from '../../containers/MessageActions'; import MessageErrorActions from '../../containers/MessageErrorActions'; import MessageBox from '../../containers/MessageBox'; -import ReactionPicker from './ReactionPicker'; -import UploadProgress from './UploadProgress'; -import JoinCode from './JoinCode'; -import styles from './styles'; -import log, { logEvent, events } from '../../utils/log'; +import log, { events, logEvent } from '../../utils/log'; import EventEmitter from '../../utils/events'; import I18n from '../../i18n'; import RoomHeader from '../../containers/RoomHeader'; -import LeftButtons from './LeftButtons'; -import RightButtons from './RightButtons'; import StatusBar from '../../containers/StatusBar'; -import Separator from './Separator'; import { themes } from '../../constants/colors'; import { MESSAGE_TYPE_ANY_LOAD, MESSAGE_TYPE_LOAD_MORE } from '../../constants/messageTypeLoad'; import debounce from '../../utils/debounce'; import ReactionsModal from '../../containers/ReactionsModal'; import { LISTENER } from '../../containers/Toast'; import { - getBadgeColor, isBlocked, makeThreadName, isTeamRoom + getBadgeColor, isBlocked, isTeamRoom, makeThreadName } from '../../utils/room'; import { isReadOnly } from '../../utils/isReadOnly'; import { isIOS, isTablet } from '../../utils/deviceInfo'; @@ -47,29 +38,36 @@ import { showErrorAlert } from '../../utils/info'; import { withTheme } from '../../theme'; import { KEY_COMMAND, - handleCommandScroll, + handleCommandReplyLatest, handleCommandRoomActions, - handleCommandSearchMessages, - handleCommandReplyLatest + handleCommandScroll, + handleCommandSearchMessages } from '../../commands'; import { Review } from '../../utils/review'; import RoomClass from '../../lib/methods/subscriptions/room'; import { getUserSelector } from '../../selectors/login'; import { CONTAINER_TYPES } from '../../lib/methods/actions'; -import Banner from './Banner'; import Navigation from '../../lib/Navigation'; import SafeAreaView from '../../containers/SafeAreaView'; import { withDimensions } from '../../dimensions'; import { getHeaderTitlePosition } from '../../containers/Header'; import { E2E_MESSAGE_TYPE, E2E_STATUS } from '../../lib/encryption/constants'; - import { takeInquiry } from '../../ee/omnichannel/lib'; import Loading from '../../containers/Loading'; -import LoadMore from './LoadMore'; -import RoomServices from './services'; import { goRoom } from '../../utils/goRoom'; import getThreadName from '../../lib/methods/getThreadName'; import getRoomInfo from '../../lib/methods/getRoomInfo'; +import RoomServices from './services'; +import LoadMore from './LoadMore'; +import Banner from './Banner'; +import Separator from './Separator'; +import RightButtons from './RightButtons'; +import LeftButtons from './LeftButtons'; +import styles from './styles'; +import JoinCode from './JoinCode'; +import UploadProgress from './UploadProgress'; +import ReactionPicker from './ReactionPicker'; +import List from './List'; const stateAttrsUpdate = [ 'joined', diff --git a/app/views/RoomsListView/Header/Header.js b/app/views/RoomsListView/Header/Header.js index 43fa4b83a5..d6a67dc9e0 100644 --- a/app/views/RoomsListView/Header/Header.js +++ b/app/views/RoomsListView/Header/Header.js @@ -1,6 +1,6 @@ import React from 'react'; import { - Text, View, TouchableOpacity, StyleSheet + StyleSheet, Text, TouchableOpacity, View } from 'react-native'; import PropTypes from 'prop-types'; @@ -9,7 +9,7 @@ import I18n from '../../../i18n'; import sharedStyles from '../../Styles'; import { themes } from '../../../constants/colors'; import { CustomIcon } from '../../../lib/Icons'; -import { isTablet, isIOS } from '../../../utils/deviceInfo'; +import { isIOS, isTablet } from '../../../utils/deviceInfo'; import { useOrientation } from '../../../dimensions'; const styles = StyleSheet.create({ diff --git a/app/views/RoomsListView/Header/index.js b/app/views/RoomsListView/Header/index.js index 97244fd5bc..25c1705c64 100644 --- a/app/views/RoomsListView/Header/index.js +++ b/app/views/RoomsListView/Header/index.js @@ -3,14 +3,14 @@ import PropTypes from 'prop-types'; import { connect } from 'react-redux'; import { - toggleServerDropdown, closeServerDropdown, closeSortDropdown, setSearch as setSearchAction + closeServerDropdown, closeSortDropdown, setSearch as setSearchAction, toggleServerDropdown } from '../../../actions/rooms'; -import Header from './Header'; import { withTheme } from '../../../theme'; import EventEmitter from '../../../utils/events'; import { KEY_COMMAND, handleCommandOpenServerDropdown } from '../../../commands'; import { isTablet } from '../../../utils/deviceInfo'; -import { logEvent, events } from '../../../utils/log'; +import { events, logEvent } from '../../../utils/log'; +import Header from './Header'; class RoomsListHeaderView extends PureComponent { static propTypes = { diff --git a/app/views/RoomsListView/ListHeader/index.js b/app/views/RoomsListView/ListHeader/index.js index 85ffcfa9c2..10272c6cbc 100644 --- a/app/views/RoomsListView/ListHeader/index.js +++ b/app/views/RoomsListView/ListHeader/index.js @@ -6,7 +6,6 @@ import I18n from '../../../i18n'; import * as List from '../../../containers/List'; import { E2E_BANNER_TYPE } from '../../../lib/encryption/constants'; import { themes } from '../../../constants/colors'; - import OmnichannelStatus from '../../../ee/omnichannel/containers/OmnichannelStatus'; const ListHeader = React.memo(({ diff --git a/app/views/RoomsListView/ServerDropdown.js b/app/views/RoomsListView/ServerDropdown.js index c27691aff8..dc4ab8a292 100644 --- a/app/views/RoomsListView/ServerDropdown.js +++ b/app/views/RoomsListView/ServerDropdown.js @@ -1,16 +1,15 @@ import React, { Component } from 'react'; import { - View, Text, Animated, Easing, TouchableWithoutFeedback, TouchableOpacity, FlatList + Animated, Easing, FlatList, Text, TouchableOpacity, TouchableWithoutFeedback, View } from 'react-native'; import PropTypes from 'prop-types'; -import { connect, batch } from 'react-redux'; +import { batch, connect } from 'react-redux'; import { withSafeAreaInsets } from 'react-native-safe-area-context'; -import * as List from '../../containers/List'; +import * as List from '../../containers/List'; import { toggleServerDropdown as toggleServerDropdownAction } from '../../actions/rooms'; import { selectServerRequest as selectServerRequestAction, serverInitAdd as serverInitAddAction } from '../../actions/server'; -import { appStart as appStartAction, ROOT_NEW_SERVER } from '../../actions/app'; -import styles from './styles'; +import { ROOT_NEW_SERVER, appStart as appStartAction } from '../../actions/app'; import RocketChat from '../../lib/rocketchat'; import I18n from '../../i18n'; import EventEmitter from '../../utils/events'; @@ -22,10 +21,11 @@ import { KEY_COMMAND, handleCommandSelectServer } from '../../commands'; import { isTablet } from '../../utils/deviceInfo'; import { localAuthenticate } from '../../utils/localAuthentication'; import { showConfirmationAlert } from '../../utils/info'; -import { logEvent, events } from '../../utils/log'; +import { events, logEvent } from '../../utils/log'; import { headerHeight } from '../../containers/Header'; import { goRoom } from '../../utils/goRoom'; import UserPreferences from '../../lib/userPreferences'; +import styles from './styles'; const ROW_HEIGHT = 68; const ANIMATION_DURATION = 200; @@ -182,7 +182,7 @@ class ServerDropdown extends Component { <ServerItem item={item} onPress={() => this.select(item.id, item.version)} - onLongPress={() => (item.id === server || this.remove(item.id))} + onLongPress={() => item.id === server || this.remove(item.id)} hasCheck={item.id === server} theme={theme} /> diff --git a/app/views/RoomsListView/SortDropdown/index.js b/app/views/RoomsListView/SortDropdown/index.js index 06a398a82d..b81c53f0d3 100644 --- a/app/views/RoomsListView/SortDropdown/index.js +++ b/app/views/RoomsListView/SortDropdown/index.js @@ -10,7 +10,7 @@ import styles from '../styles'; import * as List from '../../../containers/List'; import RocketChat from '../../../lib/rocketchat'; import { setPreference } from '../../../actions/sortPreferences'; -import log, { logEvent, events } from '../../../utils/log'; +import log, { events, logEvent } from '../../../utils/log'; import I18n from '../../../i18n'; import { withTheme } from '../../../theme'; import { themes } from '../../../constants/colors'; diff --git a/app/views/RoomsListView/index.js b/app/views/RoomsListView/index.js index 214f213e42..bd3d080a1b 100644 --- a/app/views/RoomsListView/index.js +++ b/app/views/RoomsListView/index.js @@ -1,12 +1,12 @@ import React from 'react'; import PropTypes from 'prop-types'; import { - View, - FlatList, BackHandler, - Text, + FlatList, Keyboard, - RefreshControl + RefreshControl, + Text, + View } from 'react-native'; import { connect } from 'react-redux'; import { dequal } from 'dequal'; @@ -17,25 +17,20 @@ import { withSafeAreaInsets } from 'react-native-safe-area-context'; import database from '../../lib/database'; import RocketChat from '../../lib/rocketchat'; import RoomItem, { ROW_HEIGHT } from '../../presentation/RoomItem'; -import styles from './styles'; -import log, { logEvent, events } from '../../utils/log'; +import log, { events, logEvent } from '../../utils/log'; import I18n from '../../i18n'; -import SortDropdown from './SortDropdown'; -import ServerDropdown from './ServerDropdown'; import { - toggleSortDropdown as toggleSortDropdownAction, - openSearchHeader as openSearchHeaderAction, closeSearchHeader as closeSearchHeaderAction, + closeServerDropdown as closeServerDropdownAction, + openSearchHeader as openSearchHeaderAction, roomsRequest as roomsRequestAction, - closeServerDropdown as closeServerDropdownAction + toggleSortDropdown as toggleSortDropdownAction } from '../../actions/rooms'; import debounce from '../../utils/debounce'; import { isIOS, isTablet } from '../../utils/deviceInfo'; -import RoomsListHeaderView from './Header'; import * as HeaderButton from '../../containers/HeaderButton'; import StatusBar from '../../containers/StatusBar'; import ActivityIndicator from '../../containers/ActivityIndicator'; -import ListHeader from './ListHeader'; import { selectServerRequest as selectServerRequestAction } from '../../actions/server'; import { animateNextTransition } from '../../utils/layoutAnimation'; import { withTheme } from '../../theme'; @@ -43,13 +38,13 @@ import { themes } from '../../constants/colors'; import EventEmitter from '../../utils/events'; import { KEY_COMMAND, - handleCommandShowPreferences, + handleCommandAddNewServer, + handleCommandNextRoom, + handleCommandPreviousRoom, handleCommandSearching, handleCommandSelectRoom, - handleCommandPreviousRoom, - handleCommandNextRoom, handleCommandShowNewMessage, - handleCommandAddNewServer + handleCommandShowPreferences } from '../../commands'; import { MAX_SIDEBAR_WIDTH } from '../../constants/tablet'; import { getUserSelector } from '../../selectors/login'; @@ -57,11 +52,15 @@ import { goRoom } from '../../utils/goRoom'; import SafeAreaView from '../../containers/SafeAreaView'; import Header, { getHeaderTitlePosition } from '../../containers/Header'; import { withDimensions } from '../../dimensions'; -import { showErrorAlert, showConfirmationAlert } from '../../utils/info'; +import { showConfirmationAlert, showErrorAlert } from '../../utils/info'; import { E2E_BANNER_TYPE } from '../../lib/encryption/constants'; - import { getInquiryQueueSelector } from '../../ee/omnichannel/selectors/inquiry'; import { changeLivechatStatus, isOmnichannelStatusAvailable } from '../../ee/omnichannel/lib'; +import ListHeader from './ListHeader'; +import RoomsListHeaderView from './Header'; +import ServerDropdown from './ServerDropdown'; +import SortDropdown from './SortDropdown'; +import styles from './styles'; const INITIAL_NUM_TO_RENDER = isTablet ? 20 : 12; const CHATS_HEADER = 'Chats'; @@ -849,7 +848,7 @@ class RoomsListView extends React.Component { } } - getScrollRef = ref => (this.scroll = ref); + getScrollRef = ref => this.scroll = ref; renderListHeader = () => { const { searching } = this.state; diff --git a/app/views/ScreenLockConfigView.js b/app/views/ScreenLockConfigView.js index 294a854a63..0dbca21cc4 100644 --- a/app/views/ScreenLockConfigView.js +++ b/app/views/ScreenLockConfigView.js @@ -5,11 +5,11 @@ import { connect } from 'react-redux'; import I18n from '../i18n'; import { withTheme } from '../theme'; -import { themes, SWITCH_TRACK_COLOR } from '../constants/colors'; +import { SWITCH_TRACK_COLOR, themes } from '../constants/colors'; import StatusBar from '../containers/StatusBar'; import * as List from '../containers/List'; import database from '../lib/database'; -import { supportedBiometryLabel, changePasscode, checkHasPasscode } from '../utils/localAuthentication'; +import { changePasscode, checkHasPasscode, supportedBiometryLabel } from '../utils/localAuthentication'; import { DEFAULT_AUTO_LOCK } from '../constants/localAuthentication'; import SafeAreaView from '../containers/SafeAreaView'; import { events, logEvent } from '../utils/log'; diff --git a/app/views/ScreenLockedView.js b/app/views/ScreenLockedView.js index 2b036779c5..4de05727cc 100644 --- a/app/views/ScreenLockedView.js +++ b/app/views/ScreenLockedView.js @@ -32,12 +32,12 @@ const ScreenLockedView = ({ theme }) => { Orientation.lockToPortrait(); } const listener = EventEmitter.addEventListener(LOCAL_AUTHENTICATE_EMITTER, showScreenLock); - return (() => { + return () => { if (!isTablet) { Orientation.unlockAllOrientations(); } EventEmitter.removeListener(LOCAL_AUTHENTICATE_EMITTER, listener); - }); + }; }, []); const onSubmit = () => { diff --git a/app/views/SearchMessagesView/index.js b/app/views/SearchMessagesView/index.js index 09c9e6c15c..19c8a9164b 100644 --- a/app/views/SearchMessagesView/index.js +++ b/app/views/SearchMessagesView/index.js @@ -1,13 +1,12 @@ import React from 'react'; import PropTypes from 'prop-types'; -import { View, FlatList, Text } from 'react-native'; +import { FlatList, Text, View } from 'react-native'; import { Q } from '@nozbe/watermelondb'; import { connect } from 'react-redux'; import { dequal } from 'dequal'; import RCTextInput from '../../containers/TextInput'; import ActivityIndicator from '../../containers/ActivityIndicator'; -import styles from './styles'; import Markdown from '../../containers/markdown'; import debounce from '../../utils/debounce'; import RocketChat from '../../lib/rocketchat'; @@ -25,6 +24,7 @@ import database from '../../lib/database'; import { sanitizeLikeString } from '../../lib/database/utils'; import getThreadName from '../../lib/methods/getThreadName'; import getRoomInfo from '../../lib/methods/getRoomInfo'; +import styles from './styles'; class SearchMessagesView extends React.Component { static navigationOptions = ({ navigation, route }) => { diff --git a/app/views/SecurityPrivacyView.js b/app/views/SecurityPrivacyView.js index 937a02504e..c0cbb63198 100644 --- a/app/views/SecurityPrivacyView.js +++ b/app/views/SecurityPrivacyView.js @@ -4,14 +4,14 @@ import PropTypes from 'prop-types'; import { connect } from 'react-redux'; import AsyncStorage from '@react-native-community/async-storage'; -import { toggleCrashReport as toggleCrashReportAction, toggleAnalyticsEvents as toggleAnalyticsEventsAction } from '../actions/crashReport'; +import { toggleAnalyticsEvents as toggleAnalyticsEventsAction, toggleCrashReport as toggleCrashReportAction } from '../actions/crashReport'; import { SWITCH_TRACK_COLOR } from '../constants/colors'; import StatusBar from '../containers/StatusBar'; import * as List from '../containers/List'; import I18n from '../i18n'; -import { CRASH_REPORT_KEY, ANALYTICS_EVENTS_KEY } from '../lib/rocketchat'; +import { ANALYTICS_EVENTS_KEY, CRASH_REPORT_KEY } from '../lib/rocketchat'; import { - loggerConfig, analytics, logEvent, events + analytics, events, logEvent, loggerConfig } from '../utils/log'; import SafeAreaView from '../containers/SafeAreaView'; import { isFDroidBuild } from '../constants/environment'; diff --git a/app/views/SelectListView.js b/app/views/SelectListView.js index 5767df3f24..902059d197 100644 --- a/app/views/SelectListView.js +++ b/app/views/SelectListView.js @@ -1,14 +1,13 @@ import React from 'react'; import PropTypes from 'prop-types'; import { - View, StyleSheet, FlatList, Text + FlatList, StyleSheet, Text, View } from 'react-native'; import { connect } from 'react-redux'; import { RadioButton } from 'react-native-ui-lib'; import log from '../utils/log'; import * as List from '../containers/List'; -import sharedStyles from './Styles'; import I18n from '../i18n'; import * as HeaderButton from '../containers/HeaderButton'; import StatusBar from '../containers/StatusBar'; @@ -18,6 +17,7 @@ import SafeAreaView from '../containers/SafeAreaView'; import { animateNextTransition } from '../utils/layoutAnimation'; import { ICON_SIZE } from '../containers/List/constants'; import SearchBox from '../containers/SearchBox'; +import sharedStyles from './Styles'; const styles = StyleSheet.create({ diff --git a/app/views/SelectServerView.js b/app/views/SelectServerView.js index b3345c820c..dbc3087943 100644 --- a/app/views/SelectServerView.js +++ b/app/views/SelectServerView.js @@ -79,8 +79,8 @@ class SelectServerView extends React.Component { } } -const mapStateToProps = (({ share }) => ({ +const mapStateToProps = ({ share }) => ({ server: share.server.server -})); +}); export default connect(mapStateToProps)(SelectServerView); diff --git a/app/views/SelectedUsersView.js b/app/views/SelectedUsersView.js index bd6740e1f9..9e8529725c 100644 --- a/app/views/SelectedUsersView.js +++ b/app/views/SelectedUsersView.js @@ -1,31 +1,31 @@ import React from 'react'; import PropTypes from 'prop-types'; -import { View, FlatList } from 'react-native'; +import { FlatList, View } from 'react-native'; import { connect } from 'react-redux'; import orderBy from 'lodash/orderBy'; import { Q } from '@nozbe/watermelondb'; -import * as List from '../containers/List'; +import * as List from '../containers/List'; import database from '../lib/database'; import RocketChat from '../lib/rocketchat'; import UserItem from '../presentation/UserItem'; import Loading from '../containers/Loading'; import I18n from '../i18n'; -import log, { logEvent, events } from '../utils/log'; +import log, { events, logEvent } from '../utils/log'; import SearchBox from '../containers/SearchBox'; -import sharedStyles from './Styles'; import * as HeaderButton from '../containers/HeaderButton'; import StatusBar from '../containers/StatusBar'; import { themes } from '../constants/colors'; import { withTheme } from '../theme'; import { getUserSelector } from '../selectors/login'; import { - reset as resetAction, addUser as addUserAction, - removeUser as removeUserAction + removeUser as removeUserAction, + reset as resetAction } from '../actions/selectedUsers'; import { showErrorAlert } from '../utils/info'; import SafeAreaView from '../containers/SafeAreaView'; +import sharedStyles from './Styles'; const ITEM_WIDTH = 250; const getItemLayout = (_, index) => ({ length: ITEM_WIDTH, offset: ITEM_WIDTH * index, index }); @@ -92,13 +92,13 @@ class SelectedUsersView extends React.Component { const nextAction = route.params?.nextAction ?? (() => {}); const options = { title, - headerRight: () => ( + headerRight: () => (!maxUsers || showButton) && ( <HeaderButton.Container> <HeaderButton.Item title={buttonText} onPress={nextAction} testID='selected-users-view-submit' /> </HeaderButton.Container> ) - ) + }; navigation.setOptions(options); } diff --git a/app/views/SetUsernameView.js b/app/views/SetUsernameView.js index ccae5d0364..15393472af 100644 --- a/app/views/SetUsernameView.js +++ b/app/views/SetUsernameView.js @@ -1,7 +1,7 @@ import React from 'react'; import PropTypes from 'prop-types'; import { - Text, ScrollView, StyleSheet + ScrollView, StyleSheet, Text } from 'react-native'; import { connect } from 'react-redux'; import Orientation from 'react-native-orientation-locker'; @@ -10,7 +10,6 @@ import { loginRequest as loginRequestAction } from '../actions/login'; import TextInput from '../containers/TextInput'; import Button from '../containers/Button'; import KeyboardView from '../presentation/KeyboardView'; -import sharedStyles from './Styles'; import scrollPersistTaps from '../utils/scrollPersistTaps'; import I18n from '../i18n'; import RocketChat from '../lib/rocketchat'; @@ -21,6 +20,7 @@ import { isTablet } from '../utils/deviceInfo'; import { getUserSelector } from '../selectors/login'; import { showErrorAlert } from '../utils/info'; import SafeAreaView from '../containers/SafeAreaView'; +import sharedStyles from './Styles'; const styles = StyleSheet.create({ loginTitle: { diff --git a/app/views/SettingsView/index.js b/app/views/SettingsView/index.js index 0e8ed7b473..0df968e5f9 100644 --- a/app/views/SettingsView/index.js +++ b/app/views/SettingsView/index.js @@ -1,6 +1,6 @@ import React from 'react'; import { - Linking, Share, Clipboard + Clipboard, Linking, Share } from 'react-native'; import PropTypes from 'prop-types'; import { connect } from 'react-redux'; @@ -16,19 +16,19 @@ import * as List from '../../containers/List'; import I18n from '../../i18n'; import RocketChat from '../../lib/rocketchat'; import { - getReadableVersion, getDeviceModel, isAndroid + getDeviceModel, getReadableVersion, isAndroid } from '../../utils/deviceInfo'; import openLink from '../../utils/openLink'; -import { showErrorAlert, showConfirmationAlert } from '../../utils/info'; -import { logEvent, events } from '../../utils/log'; +import { showConfirmationAlert, showErrorAlert } from '../../utils/info'; +import { events, logEvent } from '../../utils/log'; import { - PLAY_MARKET_LINK, FDROID_MARKET_LINK, APP_STORE_LINK, LICENSE_LINK + APP_STORE_LINK, FDROID_MARKET_LINK, LICENSE_LINK, PLAY_MARKET_LINK } from '../../constants/links'; import { withTheme } from '../../theme'; import SidebarView from '../SidebarView'; import { LISTENER } from '../../containers/Toast'; import EventEmitter from '../../utils/events'; -import { appStart as appStartAction, ROOT_LOADING } from '../../actions/app'; +import { ROOT_LOADING, appStart as appStartAction } from '../../actions/app'; import { onReviewPress } from '../../utils/review'; import SafeAreaView from '../../containers/SafeAreaView'; import database from '../../lib/database'; diff --git a/app/views/ShareListView/Header/Header.android.js b/app/views/ShareListView/Header/Header.android.js index a7fcd0351c..727fa5364b 100644 --- a/app/views/ShareListView/Header/Header.android.js +++ b/app/views/ShareListView/Header/Header.android.js @@ -1,5 +1,5 @@ import React from 'react'; -import { View, StyleSheet, Text } from 'react-native'; +import { StyleSheet, Text, View } from 'react-native'; import PropTypes from 'prop-types'; import TextInput from '../../../presentation/TextInput'; diff --git a/app/views/ShareListView/Header/Header.ios.js b/app/views/ShareListView/Header/Header.ios.js index afbe156632..5d4b0a8455 100644 --- a/app/views/ShareListView/Header/Header.ios.js +++ b/app/views/ShareListView/Header/Header.ios.js @@ -1,12 +1,11 @@ import React, { useState } from 'react'; import PropTypes from 'prop-types'; -import { Keyboard, View, StyleSheet } from 'react-native'; +import { Keyboard, StyleSheet, View } from 'react-native'; import ShareExtension from 'rn-extensions-share'; import SearchBox from '../../../containers/SearchBox'; import * as HeaderButton from '../../../containers/HeaderButton'; import { themes } from '../../../constants/colors'; - import sharedStyles from '../../Styles'; import { animateNextTransition } from '../../../utils/layoutAnimation'; diff --git a/app/views/ShareListView/index.js b/app/views/ShareListView/index.js index 38f3aff72c..ed7a2c9f95 100644 --- a/app/views/ShareListView/index.js +++ b/app/views/ShareListView/index.js @@ -1,7 +1,7 @@ import React from 'react'; import PropTypes from 'prop-types'; import { - View, Text, FlatList, Keyboard, BackHandler, PermissionsAndroid, ScrollView + BackHandler, FlatList, Keyboard, PermissionsAndroid, ScrollView, Text, View } from 'react-native'; import ShareExtension from 'rn-extensions-share'; import * as FileSystem from 'expo-file-system'; @@ -11,21 +11,21 @@ import { dequal } from 'dequal'; import { Q } from '@nozbe/watermelondb'; import database from '../../lib/database'; -import { isIOS, isAndroid } from '../../utils/deviceInfo'; +import { isAndroid, isIOS } from '../../utils/deviceInfo'; import I18n from '../../i18n'; import DirectoryItem, { ROW_HEIGHT } from '../../presentation/DirectoryItem'; import ServerItem from '../../presentation/ServerItem'; import * as HeaderButton from '../../containers/HeaderButton'; -import ShareListHeader from './Header'; import ActivityIndicator from '../../containers/ActivityIndicator'; import * as List from '../../containers/List'; -import styles from './styles'; import { themes } from '../../constants/colors'; import { animateNextTransition } from '../../utils/layoutAnimation'; import { withTheme } from '../../theme'; import SafeAreaView from '../../containers/SafeAreaView'; import RocketChat from '../../lib/rocketchat'; import { sanitizeLikeString } from '../../lib/database/utils'; +import styles from './styles'; +import ShareListHeader from './Header'; const permission = { title: I18n.t('Read_External_Permission'), @@ -452,10 +452,10 @@ class ShareListView extends React.Component { } } -const mapStateToProps = (({ share }) => ({ +const mapStateToProps = ({ share }) => ({ userId: share.user && share.user.id, token: share.user && share.user.token, server: share.server.server -})); +}); export default connect(mapStateToProps)(withTheme(ShareListView)); diff --git a/app/views/ShareListView/styles.js b/app/views/ShareListView/styles.js index 5f5687dc75..2c08ee9f91 100644 --- a/app/views/ShareListView/styles.js +++ b/app/views/ShareListView/styles.js @@ -1,4 +1,5 @@ import { StyleSheet } from 'react-native'; + import { isIOS } from '../../utils/deviceInfo'; import sharedStyles from '../Styles'; diff --git a/app/views/ShareView/Header.js b/app/views/ShareView/Header.js index 85ef08784e..fc02a1f700 100644 --- a/app/views/ShareView/Header.js +++ b/app/views/ShareView/Header.js @@ -1,6 +1,6 @@ import React from 'react'; import PropTypes from 'prop-types'; -import { View, Text, StyleSheet } from 'react-native'; +import { StyleSheet, Text, View } from 'react-native'; import I18n from '../../i18n'; import { CustomIcon } from '../../lib/Icons'; diff --git a/app/views/ShareView/Preview.js b/app/views/ShareView/Preview.js index 639f41c4c6..47e9854a0a 100644 --- a/app/views/ShareView/Preview.js +++ b/app/views/ShareView/Preview.js @@ -2,7 +2,7 @@ import React from 'react'; import PropTypes from 'prop-types'; import { Video } from 'expo-av'; import { useSafeAreaInsets } from 'react-native-safe-area-context'; -import { ScrollView, Text, StyleSheet } from 'react-native'; +import { ScrollView, StyleSheet, Text } from 'react-native'; import prettyBytes from 'pretty-bytes'; import { CustomIcon } from '../../lib/Icons'; @@ -10,11 +10,11 @@ import { ImageViewer, types } from '../../presentation/ImageViewer'; import { themes } from '../../constants/colors'; import { useDimensions, useOrientation } from '../../dimensions'; import { getHeaderHeight } from '../../containers/Header'; -import { THUMBS_HEIGHT } from './constants'; import sharedStyles from '../Styles'; -import { allowPreview } from './utils'; import I18n from '../../i18n'; import { isAndroid } from '../../utils/deviceInfo'; +import { allowPreview } from './utils'; +import { THUMBS_HEIGHT } from './constants'; const MESSAGEBOX_HEIGHT = 56; @@ -60,7 +60,7 @@ const Preview = React.memo(({ const { isLandscape } = useOrientation(); const insets = useSafeAreaInsets(); const headerHeight = getHeaderHeight(isLandscape); - const thumbsHeight = (length > 1) ? THUMBS_HEIGHT : 0; + const thumbsHeight = length > 1 ? THUMBS_HEIGHT : 0; const calculatedHeight = height - insets.top - insets.bottom - MESSAGEBOX_HEIGHT - thumbsHeight - headerHeight; if (item?.canUpload) { diff --git a/app/views/ShareView/Thumbs.js b/app/views/ShareView/Thumbs.js index 26bc54fb49..d5e5bfb00f 100644 --- a/app/views/ShareView/Thumbs.js +++ b/app/views/ShareView/Thumbs.js @@ -1,9 +1,9 @@ import React from 'react'; import PropTypes from 'prop-types'; import { - FlatList, Image, View, StyleSheet + FlatList, Image, StyleSheet, View } from 'react-native'; -import { RectButton, TouchableOpacity, TouchableNativeFeedback } from 'react-native-gesture-handler'; +import { RectButton, TouchableNativeFeedback, TouchableOpacity } from 'react-native-gesture-handler'; import { BUTTON_HIT_SLOP } from '../../containers/message/utils'; import { themes } from '../../constants/colors'; diff --git a/app/views/ShareView/index.js b/app/views/ShareView/index.js index 7658600366..d97ccc34d8 100644 --- a/app/views/ShareView/index.js +++ b/app/views/ShareView/index.js @@ -1,22 +1,18 @@ import React, { Component } from 'react'; import PropTypes from 'prop-types'; -import { View, Text, NativeModules } from 'react-native'; +import { NativeModules, Text, View } from 'react-native'; import { connect } from 'react-redux'; import ShareExtension from 'rn-extensions-share'; import { themes } from '../../constants/colors'; import I18n from '../../i18n'; -import styles from './styles'; import Loading from '../../containers/Loading'; import * as HeaderButton from '../../containers/HeaderButton'; import { isBlocked } from '../../utils/room'; import { isReadOnly } from '../../utils/isReadOnly'; import { withTheme } from '../../theme'; -import Header from './Header'; import RocketChat from '../../lib/rocketchat'; import TextInput from '../../containers/TextInput'; -import Preview from './Preview'; -import Thumbs from './Thumbs'; import MessageBox from '../../containers/MessageBox'; import SafeAreaView from '../../containers/SafeAreaView'; import { getUserSelector } from '../../selectors/login'; @@ -24,6 +20,10 @@ import StatusBar from '../../containers/StatusBar'; import database from '../../lib/database'; import { canUploadFile } from '../../utils/media'; import { isAndroid } from '../../utils/deviceInfo'; +import Thumbs from './Thumbs'; +import Preview from './Preview'; +import Header from './Header'; +import styles from './styles'; class ShareView extends Component { constructor(props) { diff --git a/app/views/SidebarView/SidebarItem.js b/app/views/SidebarView/SidebarItem.js index 7959438c28..251012aceb 100644 --- a/app/views/SidebarView/SidebarItem.js +++ b/app/views/SidebarView/SidebarItem.js @@ -1,11 +1,11 @@ import React from 'react'; -import { View, Text } from 'react-native'; +import { Text, View } from 'react-native'; import PropTypes from 'prop-types'; -import styles from './styles'; import Touch from '../../utils/touch'; import { themes } from '../../constants/colors'; import { withTheme } from '../../theme'; +import styles from './styles'; const Item = React.memo(({ left, right, text, onPress, testID, current, theme diff --git a/app/views/SidebarView/index.js b/app/views/SidebarView/index.js index 5bb465fd0d..3853017127 100644 --- a/app/views/SidebarView/index.js +++ b/app/views/SidebarView/index.js @@ -1,23 +1,24 @@ import React, { Component } from 'react'; import PropTypes from 'prop-types'; import { - ScrollView, Text, View, TouchableWithoutFeedback + ScrollView, Text, TouchableWithoutFeedback, View } from 'react-native'; import { connect } from 'react-redux'; import { dequal } from 'dequal'; + import Avatar from '../../containers/Avatar'; import Status from '../../containers/Status/Status'; -import { logEvent, events } from '../../utils/log'; +import { events, logEvent } from '../../utils/log'; import I18n from '../../i18n'; import scrollPersistTaps from '../../utils/scrollPersistTaps'; import { CustomIcon } from '../../lib/Icons'; -import styles from './styles'; -import SidebarItem from './SidebarItem'; import { themes } from '../../constants/colors'; import { withTheme } from '../../theme'; import { getUserSelector } from '../../selectors/login'; import SafeAreaView from '../../containers/SafeAreaView'; import Navigation from '../../lib/Navigation'; +import SidebarItem from './SidebarItem'; +import styles from './styles'; const Separator = React.memo(({ theme }) => <View style={[styles.separator, { borderColor: themes[theme].separatorColor }]} />); Separator.propTypes = { diff --git a/app/views/StatusView.js b/app/views/StatusView.js index 2ac3583437..cf5e365742 100644 --- a/app/views/StatusView.js +++ b/app/views/StatusView.js @@ -11,8 +11,7 @@ import EventEmitter from '../utils/events'; import { showErrorAlert } from '../utils/info'; import Loading from '../containers/Loading'; import RocketChat from '../lib/rocketchat'; -import log, { logEvent, events } from '../utils/log'; - +import log, { events, logEvent } from '../utils/log'; import { LISTENER } from '../containers/Toast'; import { withTheme } from '../theme'; import { getUserSelector } from '../selectors/login'; diff --git a/app/views/Styles.js b/app/views/Styles.js index f457a8ed37..89b036741a 100644 --- a/app/views/Styles.js +++ b/app/views/Styles.js @@ -1,4 +1,4 @@ -import { StyleSheet, Platform } from 'react-native'; +import { Platform, StyleSheet } from 'react-native'; import { MAX_SCREEN_CONTENT_WIDTH } from '../constants/tablet'; diff --git a/app/views/TeamChannelsView.js b/app/views/TeamChannelsView.js index 64822aeae5..bcd9a6af07 100644 --- a/app/views/TeamChannelsView.js +++ b/app/views/TeamChannelsView.js @@ -1,5 +1,5 @@ import React from 'react'; -import { Keyboard, Alert, FlatList } from 'react-native'; +import { Alert, FlatList, Keyboard } from 'react-native'; import PropTypes from 'prop-types'; import { Q } from '@nozbe/watermelondb'; import { withSafeAreaInsets } from 'react-native-safe-area-context'; @@ -8,7 +8,6 @@ import { connect } from 'react-redux'; import StatusBar from '../containers/StatusBar'; import RoomHeader from '../containers/RoomHeader'; import { withTheme } from '../theme'; -import SearchHeader from './ThreadMessagesView/SearchHeader'; import log, { events, logEvent } from '../utils/log'; import database from '../lib/database'; import { getUserSelector } from '../selectors/login'; @@ -29,6 +28,7 @@ import { withActionSheet } from '../containers/ActionSheet'; import { deleteRoom as deleteRoomAction } from '../actions/room'; import { CustomIcon } from '../lib/Icons'; import { themes } from '../constants/colors'; +import SearchHeader from './ThreadMessagesView/SearchHeader'; const API_FETCH_COUNT = 25; const PERMISSION_DELETE_C = 'delete-c'; diff --git a/app/views/ThreadMessagesView/Dropdown/DropdownItem.js b/app/views/ThreadMessagesView/Dropdown/DropdownItem.js index 4ebca91688..43af6895fe 100644 --- a/app/views/ThreadMessagesView/Dropdown/DropdownItem.js +++ b/app/views/ThreadMessagesView/Dropdown/DropdownItem.js @@ -1,6 +1,6 @@ import React from 'react'; import PropTypes from 'prop-types'; -import { View, Text, StyleSheet } from 'react-native'; +import { StyleSheet, Text, View } from 'react-native'; import { themes } from '../../../constants/colors'; import { withTheme } from '../../../theme'; diff --git a/app/views/ThreadMessagesView/Dropdown/DropdownItemFilter.js b/app/views/ThreadMessagesView/Dropdown/DropdownItemFilter.js index cab41d226f..b6b5c45fb0 100644 --- a/app/views/ThreadMessagesView/Dropdown/DropdownItemFilter.js +++ b/app/views/ThreadMessagesView/Dropdown/DropdownItemFilter.js @@ -1,8 +1,8 @@ import React from 'react'; import PropTypes from 'prop-types'; -import DropdownItem from './DropdownItem'; import I18n from '../../../i18n'; +import DropdownItem from './DropdownItem'; const DropdownItemFilter = ({ currentFilter, value, onPress }) => ( <DropdownItem diff --git a/app/views/ThreadMessagesView/Dropdown/DropdownItemHeader.js b/app/views/ThreadMessagesView/Dropdown/DropdownItemHeader.js index 5ffbaea2c7..d1ee227de8 100644 --- a/app/views/ThreadMessagesView/Dropdown/DropdownItemHeader.js +++ b/app/views/ThreadMessagesView/Dropdown/DropdownItemHeader.js @@ -1,9 +1,9 @@ import React from 'react'; import PropTypes from 'prop-types'; -import DropdownItem from './DropdownItem'; import { FILTER } from '../filters'; import I18n from '../../../i18n'; +import DropdownItem from './DropdownItem'; const DropdownItemHeader = ({ currentFilter, onPress }) => { let text; diff --git a/app/views/ThreadMessagesView/Item.js b/app/views/ThreadMessagesView/Item.js index 89ae95cc62..f586d32412 100644 --- a/app/views/ThreadMessagesView/Item.js +++ b/app/views/ThreadMessagesView/Item.js @@ -1,6 +1,6 @@ import React from 'react'; import PropTypes from 'prop-types'; -import { View, Text, StyleSheet } from 'react-native'; +import { StyleSheet, Text, View } from 'react-native'; import Touchable from 'react-native-platform-touchable'; import { withTheme } from '../../theme'; diff --git a/app/views/ThreadMessagesView/Item.stories.js b/app/views/ThreadMessagesView/Item.stories.js index be8f398ef6..8a926b22bd 100644 --- a/app/views/ThreadMessagesView/Item.stories.js +++ b/app/views/ThreadMessagesView/Item.stories.js @@ -5,10 +5,10 @@ import { ScrollView } from 'react-native'; import { combineReducers, createStore } from 'redux'; import { Provider } from 'react-redux'; -import Item from './Item'; import * as List from '../../containers/List'; import { themes } from '../../constants/colors'; import { ThemeContext } from '../../theme'; +import Item from './Item'; const author = { _id: 'userid', diff --git a/app/views/ThreadMessagesView/SearchHeader.js b/app/views/ThreadMessagesView/SearchHeader.js index ae8c96e848..3bd9c8540b 100644 --- a/app/views/ThreadMessagesView/SearchHeader.js +++ b/app/views/ThreadMessagesView/SearchHeader.js @@ -6,7 +6,7 @@ import { withTheme } from '../../theme'; import sharedStyles from '../Styles'; import { themes } from '../../constants/colors'; import TextInput from '../../presentation/TextInput'; -import { isTablet, isIOS } from '../../utils/deviceInfo'; +import { isIOS, isTablet } from '../../utils/deviceInfo'; import { useOrientation } from '../../dimensions'; const styles = StyleSheet.create({ diff --git a/app/views/ThreadMessagesView/index.js b/app/views/ThreadMessagesView/index.js index 48cab9c991..7c604a43f4 100644 --- a/app/views/ThreadMessagesView/index.js +++ b/app/views/ThreadMessagesView/index.js @@ -7,8 +7,6 @@ import { sanitizedRaw } from '@nozbe/watermelondb/RawRecord'; import { withSafeAreaInsets } from 'react-native-safe-area-context'; import { HeaderBackButton } from '@react-navigation/stack'; -import styles from './styles'; -import Item from './Item'; import ActivityIndicator from '../../containers/ActivityIndicator'; import I18n from '../../i18n'; import RocketChat from '../../lib/rocketchat'; @@ -25,16 +23,18 @@ import { getUserSelector } from '../../selectors/login'; import SafeAreaView from '../../containers/SafeAreaView'; import * as HeaderButton from '../../containers/HeaderButton'; import * as List from '../../containers/List'; -import Dropdown from './Dropdown'; -import DropdownItemHeader from './Dropdown/DropdownItemHeader'; -import { FILTER } from './filters'; import BackgroundContainer from '../../containers/BackgroundContainer'; import { isIOS } from '../../utils/deviceInfo'; import { getBadgeColor, makeThreadName } from '../../utils/room'; import { getHeaderTitlePosition } from '../../containers/Header'; -import SearchHeader from './SearchHeader'; import EventEmitter from '../../utils/events'; import { LISTENER } from '../../containers/Toast'; +import SearchHeader from './SearchHeader'; +import { FILTER } from './filters'; +import DropdownItemHeader from './Dropdown/DropdownItemHeader'; +import Dropdown from './Dropdown'; +import Item from './Item'; +import styles from './styles'; const API_FETCH_COUNT = 50; diff --git a/app/views/UserNotificationPreferencesView/index.js b/app/views/UserNotificationPreferencesView/index.js index e05bb534fe..98fded9a41 100644 --- a/app/views/UserNotificationPreferencesView/index.js +++ b/app/views/UserNotificationPreferencesView/index.js @@ -1,5 +1,5 @@ import React from 'react'; -import { Text, StyleSheet } from 'react-native'; +import { StyleSheet, Text } from 'react-native'; import PropTypes from 'prop-types'; import { connect } from 'react-redux'; @@ -10,10 +10,10 @@ import I18n from '../../i18n'; import RocketChat from '../../lib/rocketchat'; import { withTheme } from '../../theme'; import SafeAreaView from '../../containers/SafeAreaView'; -import { OPTIONS } from './options'; import ActivityIndicator from '../../containers/ActivityIndicator'; import { getUserSelector } from '../../selectors/login'; import sharedStyles from '../Styles'; +import { OPTIONS } from './options'; const styles = StyleSheet.create({ pickerText: { diff --git a/app/views/UserPreferencesView/index.js b/app/views/UserPreferencesView/index.js index bf94d31fbc..4a3dc24677 100644 --- a/app/views/UserPreferencesView/index.js +++ b/app/views/UserPreferencesView/index.js @@ -3,7 +3,7 @@ import PropTypes from 'prop-types'; import I18n from '../../i18n'; import { - logEvent, events + events, logEvent } from '../../utils/log'; import SafeAreaView from '../../containers/SafeAreaView'; import StatusBar from '../../containers/StatusBar'; diff --git a/app/views/VisitorNavigationView.js b/app/views/VisitorNavigationView.js index 0621a6f2d4..84eb47be37 100644 --- a/app/views/VisitorNavigationView.js +++ b/app/views/VisitorNavigationView.js @@ -8,9 +8,9 @@ import { themes } from '../constants/colors'; import openLink from '../utils/openLink'; import I18n from '../i18n'; import debounce from '../utils/debounce'; -import sharedStyles from './Styles'; import * as List from '../containers/List'; import SafeAreaView from '../containers/SafeAreaView'; +import sharedStyles from './Styles'; const styles = StyleSheet.create({ noResult: { diff --git a/app/views/WithoutServersView.tsx b/app/views/WithoutServersView.tsx index b0c8e61284..3a807bfc91 100644 --- a/app/views/WithoutServersView.tsx +++ b/app/views/WithoutServersView.tsx @@ -1,5 +1,5 @@ import React from 'react'; -import { StyleSheet, View, Text } from 'react-native'; +import { StyleSheet, Text, View } from 'react-native'; import ShareExtension from 'rn-extensions-share'; import * as HeaderButton from '../containers/HeaderButton'; @@ -13,17 +13,17 @@ const styles = StyleSheet.create({ flex: 1, justifyContent: 'center', alignItems: 'center', - padding: 15 + padding: 15, }, title: { fontSize: 18, - ...sharedStyles.textBold + ...sharedStyles.textBold, }, content: { fontSize: 14, ...sharedStyles.textRegular, - ...sharedStyles.textAlignCenter - } + ...sharedStyles.textAlignCenter, + }, }); class WithoutServerView extends React.Component<any, any> { @@ -34,7 +34,7 @@ class WithoutServerView extends React.Component<any, any> { onPress={ShareExtension.close} testID='share-extension-close' /> - ) + ), }) render() { diff --git a/app/views/WorkspaceView/ServerAvatar.js b/app/views/WorkspaceView/ServerAvatar.js index 0a82b30f3a..b14bc393e3 100644 --- a/app/views/WorkspaceView/ServerAvatar.js +++ b/app/views/WorkspaceView/ServerAvatar.js @@ -1,5 +1,5 @@ import React from 'react'; -import { StyleSheet, View, Text } from 'react-native'; +import { StyleSheet, Text, View } from 'react-native'; import PropTypes from 'prop-types'; import { createImageProgress } from 'react-native-image-progress'; import * as Progress from 'react-native-progress'; diff --git a/app/views/WorkspaceView/index.js b/app/views/WorkspaceView/index.js index 553e7135ed..93509e8508 100644 --- a/app/views/WorkspaceView/index.js +++ b/app/views/WorkspaceView/index.js @@ -1,16 +1,16 @@ import React from 'react'; -import { View, Text } from 'react-native'; +import { Text, View } from 'react-native'; import PropTypes from 'prop-types'; import { connect } from 'react-redux'; import I18n from '../../i18n'; import Button from '../../containers/Button'; -import styles from './styles'; import { themes } from '../../constants/colors'; import { withTheme } from '../../theme'; import FormContainer, { FormContainerInner } from '../../containers/FormContainer'; -import ServerAvatar from './ServerAvatar'; import { getShowLoginButton } from '../../selectors/login'; +import ServerAvatar from './ServerAvatar'; +import styles from './styles'; class WorkspaceView extends React.Component { static navigationOptions = () => ({ diff --git a/e2e/helpers/data_setup.js b/e2e/helpers/data_setup.js index fd02a20c5b..5b6b95b37d 100644 --- a/e2e/helpers/data_setup.js +++ b/e2e/helpers/data_setup.js @@ -1,4 +1,5 @@ const axios = require('axios').default; + const data = require('../data'); const TEAM_TYPE = { diff --git a/e2e/tests/assorted/01-e2eencryption.spec.js b/e2e/tests/assorted/01-e2eencryption.spec.js index de5ccb225a..831ca3d672 100644 --- a/e2e/tests/assorted/01-e2eencryption.spec.js +++ b/e2e/tests/assorted/01-e2eencryption.spec.js @@ -1,7 +1,6 @@ const { navigateToLogin, login, sleep, tapBack, mockMessage, searchRoom, logout } = require('../../helpers/app'); - const data = require('../../data'); const testuser = data.users.regular; diff --git a/e2e/tests/assorted/04-setting.spec.js b/e2e/tests/assorted/04-setting.spec.js index edfb3fd40a..5e64a4b9f1 100644 --- a/e2e/tests/assorted/04-setting.spec.js +++ b/e2e/tests/assorted/04-setting.spec.js @@ -1,5 +1,4 @@ const { navigateToLogin, login } = require('../../helpers/app'); - const data = require('../../data'); const testuser = data.users.regular; diff --git a/e2e/tests/assorted/06-status.spec.js b/e2e/tests/assorted/06-status.spec.js index 7eeb246b1e..494fbec207 100644 --- a/e2e/tests/assorted/06-status.spec.js +++ b/e2e/tests/assorted/06-status.spec.js @@ -1,5 +1,4 @@ const { navigateToLogin, login, sleep } = require('../../helpers/app'); - const data = require('../../data'); const testuser = data.users.regular; diff --git a/e2e/tests/assorted/12-i18n.spec.js b/e2e/tests/assorted/12-i18n.spec.js index 1c4a6a9d58..b54489c9f0 100644 --- a/e2e/tests/assorted/12-i18n.spec.js +++ b/e2e/tests/assorted/12-i18n.spec.js @@ -1,6 +1,5 @@ const { navigateToLogin, login, sleep } = require('../../helpers/app'); const { post } = require('../../helpers/data_setup'); - const data = require('../../data'); const testuser = data.users.regular; diff --git a/e2e/tests/init.js b/e2e/tests/init.js index b1e08a2bd4..52d78b68a3 100644 --- a/e2e/tests/init.js +++ b/e2e/tests/init.js @@ -1,5 +1,6 @@ const detox = require('detox'); const adapter = require('detox/runners/mocha/adapter'); + const config = require('../../package.json').detox; const { setup } = require('../helpers/data_setup'); diff --git a/index.js b/index.js index bbd7a5786a..49d315b97a 100644 --- a/index.js +++ b/index.js @@ -1,6 +1,7 @@ import 'react-native-gesture-handler'; import 'react-native-console-time-polyfill'; import { AppRegistry } from 'react-native'; + import { name as appName, share as shareName } from './app.json'; if (__DEV__) { diff --git a/storybook/stories/Message.js b/storybook/stories/Message.js index 6d6d2b4f11..411df1f1a6 100644 --- a/storybook/stories/Message.js +++ b/storybook/stories/Message.js @@ -1,6 +1,6 @@ /* eslint-disable import/no-extraneous-dependencies */ import React from 'react'; -import { StyleSheet, ScrollView } from 'react-native'; +import { ScrollView, StyleSheet } from 'react-native'; import { Provider } from 'react-redux'; import { storiesOf } from '@storybook/react-native'; // import moment from 'moment'; @@ -9,7 +9,6 @@ import MessageComponent from '../../app/containers/message/Message'; import messagesStatus from '../../app/constants/messagesStatus'; import MessageSeparator from '../../app/views/RoomView/Separator'; import MessageContext from '../../app/containers/message/Context'; - import { themes } from '../../app/constants/colors'; import { store } from './index'; diff --git a/storybook/stories/RoomItem.js b/storybook/stories/RoomItem.js index c13eaa4d2c..e63466d95c 100644 --- a/storybook/stories/RoomItem.js +++ b/storybook/stories/RoomItem.js @@ -1,6 +1,6 @@ /* eslint-disable import/no-extraneous-dependencies */ import React from 'react'; -import { ScrollView, Dimensions } from 'react-native'; +import { Dimensions, ScrollView } from 'react-native'; import { storiesOf } from '@storybook/react-native'; import { Provider } from 'react-redux'; diff --git a/storybook/stories/UiKitMessage.js b/storybook/stories/UiKitMessage.js index 4fa2865f89..6c99577946 100644 --- a/storybook/stories/UiKitMessage.js +++ b/storybook/stories/UiKitMessage.js @@ -1,9 +1,9 @@ /* eslint-disable import/no-extraneous-dependencies */ import React from 'react'; -import { ScrollView, StyleSheet, SafeAreaView } from 'react-native'; +import { SafeAreaView, ScrollView, StyleSheet } from 'react-native'; import { storiesOf } from '@storybook/react-native'; -import MessageContext from '../../app/containers/message/Context'; +import MessageContext from '../../app/containers/message/Context'; import { UiKitMessage } from '../../app/containers/UIKit'; import { themes } from '../../app/constants/colors'; diff --git a/storybook/stories/UiKitModal.js b/storybook/stories/UiKitModal.js index 2ec9e1da6b..9be40049b9 100644 --- a/storybook/stories/UiKitModal.js +++ b/storybook/stories/UiKitModal.js @@ -1,9 +1,9 @@ /* eslint-disable import/no-extraneous-dependencies */ import React from 'react'; -import { ScrollView, StyleSheet, SafeAreaView } from 'react-native'; +import { SafeAreaView, ScrollView, StyleSheet } from 'react-native'; import { storiesOf } from '@storybook/react-native'; -import { UiKitModal, UiKitComponent } from '../../app/containers/UIKit'; +import { UiKitComponent, UiKitModal } from '../../app/containers/UIKit'; import { KitContext, defaultContext } from '../../app/containers/UIKit/utils'; import MessageContext from '../../app/containers/message/Context'; import { themes } from '../../app/constants/colors'; diff --git a/storybook/stories/index.js b/storybook/stories/index.js index b695d49d6f..f5e9349aec 100644 --- a/storybook/stories/index.js +++ b/storybook/stories/index.js @@ -1,5 +1,5 @@ /* eslint-disable import/no-extraneous-dependencies, import/no-unresolved, import/extensions */ -import { createStore, combineReducers } from 'redux'; +import { combineReducers, createStore } from 'redux'; import './RoomItem'; import './List'; From 398e15a108795d7c56060c4d8af1776c7064c3fa Mon Sep 17 00:00:00 2001 From: AlexAlexandre <alexalexandrejr@gmail.com> Date: Fri, 20 Aug 2021 16:24:41 -0300 Subject: [PATCH 66/90] [improve] - commit ios libs --- ios/Podfile.lock | 210 +- ios/Pods/Manifest.lock | 210 +- ios/Pods/Pods.xcodeproj/project.pbxproj | 52259 ++++++++-------- .../Firebase/Firebase.debug.xcconfig | 2 +- .../Firebase/Firebase.release.xcconfig | 2 +- .../FirebaseAnalytics.debug.xcconfig | 2 +- .../FirebaseAnalytics.release.xcconfig | 2 +- .../FirebaseCore/FirebaseCore.debug.xcconfig | 4 +- .../FirebaseCore.release.xcconfig | 4 +- .../FirebaseCoreDiagnostics.debug.xcconfig | 2 +- .../FirebaseCoreDiagnostics.release.xcconfig | 2 +- .../FirebaseCrashlytics.debug.xcconfig | 5 +- .../FirebaseCrashlytics.release.xcconfig | 5 +- .../FirebaseInstallations.debug.xcconfig | 4 +- .../FirebaseInstallations.release.xcconfig | 4 +- .../GoogleDataTransport.debug.xcconfig | 4 +- .../GoogleDataTransport.release.xcconfig | 4 +- ...ogleDataTransportCCTSupport.debug.xcconfig | 16 - ...leDataTransportCCTSupport.release.xcconfig | 16 - ...ificationService-acknowledgements.markdown | 222 +- ...NotificationService-acknowledgements.plist | 228 +- .../Pods-NotificationService.debug.xcconfig | 6 +- .../Pods-NotificationService.release.xcconfig | 6 +- .../Pods-ShareRocketChatRN.debug.xcconfig | 6 +- .../Pods-ShareRocketChatRN.release.xcconfig | 6 +- ...ults-Rocket.Chat-acknowledgements.markdown | 222 +- ...efaults-Rocket.Chat-acknowledgements.plist | 228 +- .../Pods-defaults-Rocket.Chat.debug.xcconfig | 6 +- ...Pods-defaults-Rocket.Chat.release.xcconfig | 6 +- ...lts-RocketChatRN-acknowledgements.markdown | 222 +- ...faults-RocketChatRN-acknowledgements.plist | 228 +- .../Pods-defaults-RocketChatRN.debug.xcconfig | 6 +- ...ods-defaults-RocketChatRN.release.xcconfig | 6 +- .../RNFBAnalytics.debug.xcconfig | 2 +- .../RNFBAnalytics.release.xcconfig | 2 +- .../RNFBApp/RNFBApp.debug.xcconfig | 2 +- .../RNFBApp/RNFBApp.release.xcconfig | 2 +- .../RNFBCrashlytics.debug.xcconfig | 2 +- .../RNFBCrashlytics.release.xcconfig | 2 +- ios/RocketChatRN.xcodeproj/project.pbxproj | 10 +- yarn.lock | 256 +- 41 files changed, 26515 insertions(+), 27918 deletions(-) delete mode 100644 ios/Pods/Target Support Files/GoogleDataTransportCCTSupport/GoogleDataTransportCCTSupport.debug.xcconfig delete mode 100644 ios/Pods/Target Support Files/GoogleDataTransportCCTSupport/GoogleDataTransportCCTSupport.release.xcconfig diff --git a/ios/Podfile.lock b/ios/Podfile.lock index 897040f485..e5fc3ddd59 100644 --- a/ios/Podfile.lock +++ b/ios/Podfile.lock @@ -1,10 +1,10 @@ PODS: - boost-for-react-native (1.63.0) - - BugsnagReactNative (7.10.5): + - BugsnagReactNative (7.11.0): - React-Core - CocoaAsyncSocket (7.6.5) - DoubleConversion (1.1.6) - - EXAppleAuthentication (2.2.1): + - EXAppleAuthentication (2.2.2): - UMCore - EXAV (8.2.1): - UMCore @@ -43,43 +43,42 @@ PODS: - React-Core (= 0.64.2) - React-jsi (= 0.64.2) - ReactCommon/turbomodule/core (= 0.64.2) - - Firebase/Analytics (6.27.1): + - Firebase/Analytics (6.34.0): - Firebase/Core - - Firebase/Core (6.27.1): + - Firebase/Core (6.34.0): - Firebase/CoreOnly - - FirebaseAnalytics (= 6.6.2) - - Firebase/CoreOnly (6.27.1): - - FirebaseCore (= 6.8.1) - - Firebase/Crashlytics (6.27.1): + - FirebaseAnalytics (= 6.9.0) + - Firebase/CoreOnly (6.34.0): + - FirebaseCore (= 6.10.4) + - Firebase/Crashlytics (6.34.0): - Firebase/CoreOnly - - FirebaseCrashlytics (~> 4.2.0) - - FirebaseAnalytics (6.6.2): - - FirebaseCore (~> 6.8) - - FirebaseInstallations (~> 1.4) - - GoogleAppMeasurement (= 6.6.2) - - GoogleUtilities/AppDelegateSwizzler (~> 6.0) - - GoogleUtilities/MethodSwizzler (~> 6.0) - - GoogleUtilities/Network (~> 6.0) - - "GoogleUtilities/NSData+zlib (~> 6.0)" - - nanopb (~> 1.30905.0) - - FirebaseCore (6.8.1): - - FirebaseCoreDiagnostics (~> 1.3) - - GoogleUtilities/Environment (~> 6.5) - - GoogleUtilities/Logger (~> 6.5) - - FirebaseCoreDiagnostics (1.4.0): - - GoogleDataTransportCCTSupport (~> 3.1) - - GoogleUtilities/Environment (~> 6.5) - - GoogleUtilities/Logger (~> 6.5) - - nanopb (~> 1.30905.0) - - FirebaseCrashlytics (4.2.0): - - FirebaseCore (~> 6.8) - - FirebaseInstallations (~> 1.1) - - GoogleDataTransport (~> 6.1) - - GoogleDataTransportCCTSupport (~> 3.1) - - nanopb (~> 1.30905.0) + - FirebaseCrashlytics (~> 4.6.2) + - FirebaseAnalytics (6.9.0): + - FirebaseCore (~> 6.10) + - FirebaseInstallations (~> 1.7) + - GoogleAppMeasurement (= 6.9.0) + - GoogleUtilities/AppDelegateSwizzler (~> 6.7) + - GoogleUtilities/MethodSwizzler (~> 6.7) + - GoogleUtilities/Network (~> 6.7) + - "GoogleUtilities/NSData+zlib (~> 6.7)" + - nanopb (~> 1.30906.0) + - FirebaseCore (6.10.4): + - FirebaseCoreDiagnostics (~> 1.6) + - GoogleUtilities/Environment (~> 6.7) + - GoogleUtilities/Logger (~> 6.7) + - FirebaseCoreDiagnostics (1.7.0): + - GoogleDataTransport (~> 7.4) + - GoogleUtilities/Environment (~> 6.7) + - GoogleUtilities/Logger (~> 6.7) + - nanopb (~> 1.30906.0) + - FirebaseCrashlytics (4.6.2): + - FirebaseCore (~> 6.10) + - FirebaseInstallations (~> 1.6) + - GoogleDataTransport (~> 7.2) + - nanopb (~> 1.30906.0) - PromisesObjC (~> 1.2) - - FirebaseInstallations (1.5.0): - - FirebaseCore (~> 6.8) + - FirebaseInstallations (1.7.0): + - FirebaseCore (~> 6.10) - GoogleUtilities/Environment (~> 6.7) - GoogleUtilities/UserDefaults (~> 6.7) - PromisesObjC (~> 1.2) @@ -130,59 +129,57 @@ PODS: - FlipperKit/Core - FlipperKit/FlipperKitNetworkPlugin - glog (0.3.5) - - GoogleAppMeasurement (6.6.2): - - GoogleUtilities/AppDelegateSwizzler (~> 6.0) - - GoogleUtilities/MethodSwizzler (~> 6.0) - - GoogleUtilities/Network (~> 6.0) - - "GoogleUtilities/NSData+zlib (~> 6.0)" - - nanopb (~> 1.30905.0) - - GoogleDataTransport (6.2.1) - - GoogleDataTransportCCTSupport (3.2.0): - - GoogleDataTransport (~> 6.1) - - nanopb (~> 1.30905.0) - - GoogleUtilities/AppDelegateSwizzler (6.7.1): + - GoogleAppMeasurement (6.9.0): + - GoogleUtilities/AppDelegateSwizzler (~> 6.7) + - GoogleUtilities/MethodSwizzler (~> 6.7) + - GoogleUtilities/Network (~> 6.7) + - "GoogleUtilities/NSData+zlib (~> 6.7)" + - nanopb (~> 1.30906.0) + - GoogleDataTransport (7.5.1): + - nanopb (~> 1.30906.0) + - GoogleUtilities/AppDelegateSwizzler (6.7.2): - GoogleUtilities/Environment - GoogleUtilities/Logger - GoogleUtilities/Network - - GoogleUtilities/Environment (6.7.1): + - GoogleUtilities/Environment (6.7.2): - PromisesObjC (~> 1.2) - - GoogleUtilities/Logger (6.7.1): + - GoogleUtilities/Logger (6.7.2): - GoogleUtilities/Environment - - GoogleUtilities/MethodSwizzler (6.7.1): + - GoogleUtilities/MethodSwizzler (6.7.2): - GoogleUtilities/Logger - - GoogleUtilities/Network (6.7.1): + - GoogleUtilities/Network (6.7.2): - GoogleUtilities/Logger - "GoogleUtilities/NSData+zlib" - GoogleUtilities/Reachability - - "GoogleUtilities/NSData+zlib (6.7.1)" - - GoogleUtilities/Reachability (6.7.1): + - "GoogleUtilities/NSData+zlib (6.7.2)" + - GoogleUtilities/Reachability (6.7.2): - GoogleUtilities/Logger - - GoogleUtilities/UserDefaults (6.7.1): + - GoogleUtilities/UserDefaults (6.7.2): - GoogleUtilities/Logger - hermes-engine (0.7.2) - JitsiMeetSDK (2.10.2) - KeyCommands (2.0.3): - React - libevent (2.1.12) - - libwebp (1.1.0): - - libwebp/demux (= 1.1.0) - - libwebp/mux (= 1.1.0) - - libwebp/webp (= 1.1.0) - - libwebp/demux (1.1.0): + - libwebp (1.2.0): + - libwebp/demux (= 1.2.0) + - libwebp/mux (= 1.2.0) + - libwebp/webp (= 1.2.0) + - libwebp/demux (1.2.0): - libwebp/webp - - libwebp/mux (1.1.0): + - libwebp/mux (1.2.0): - libwebp/demux - - libwebp/webp (1.1.0) + - libwebp/webp (1.2.0) - MMKV (1.2.1): - MMKVCore (~> 1.2.1) - - MMKVCore (1.2.1) - - nanopb (1.30905.0): - - nanopb/decode (= 1.30905.0) - - nanopb/encode (= 1.30905.0) - - nanopb/decode (1.30905.0) - - nanopb/encode (1.30905.0) + - MMKVCore (1.2.10) + - nanopb (1.30906.0): + - nanopb/decode (= 1.30906.0) + - nanopb/encode (= 1.30906.0) + - nanopb/decode (1.30906.0) + - nanopb/encode (1.30906.0) - OpenSSL-Universal (1.1.180) - - PromisesObjC (1.2.9) + - PromisesObjC (1.2.12) - RCT-Folly (2020.01.13.00): - boost-for-react-native - DoubleConversion @@ -516,26 +513,25 @@ PODS: - React - SDWebImage (~> 5.0) - SDWebImageWebPCoder (~> 0.4.1) - - RNFBAnalytics (7.3.1): - - Firebase/Analytics (~> 6.27.0) - - React + - RNFBAnalytics (7.6.10): + - Firebase/Analytics (~> 6.34.0) + - React-Core - RNFBApp - - RNFBApp (8.2.0): - - Firebase/CoreOnly (~> 6.27.0) - - React - - RNFBCrashlytics (8.1.2): - - Firebase/Core (~> 6.27.0) - - Firebase/Crashlytics (~> 6.27.0) - - React + - RNFBApp (8.4.7): + - Firebase/CoreOnly (~> 6.34.0) + - React-Core + - RNFBCrashlytics (8.5.2): + - Firebase/Crashlytics (~> 6.34.0) + - React-Core - RNFBApp - RNGestureHandler (1.10.3): - React-Core - - RNImageCropPicker (0.31.1): + - RNImageCropPicker (0.32.2): - React-Core - React-RCTImage - - RNImageCropPicker/QBImagePickerController (= 0.31.1) + - RNImageCropPicker/QBImagePickerController (= 0.32.2) - TOCropViewController - - RNImageCropPicker/QBImagePickerController (0.31.1): + - RNImageCropPicker/QBImagePickerController (0.32.2): - React-Core - React-RCTImage - TOCropViewController @@ -549,13 +545,13 @@ PODS: - React - RNVectorIcons (8.1.0): - React-Core - - SDWebImage (5.8.4): - - SDWebImage/Core (= 5.8.4) - - SDWebImage/Core (5.8.4) + - SDWebImage (5.11.1): + - SDWebImage/Core (= 5.11.1) + - SDWebImage/Core (5.11.1) - SDWebImageWebPCoder (0.4.1): - libwebp (~> 1.0) - SDWebImage/Core (~> 5.5) - - TOCropViewController (2.5.3) + - TOCropViewController (2.6.0) - UMAppLoader (1.2.0) - UMBarCodeScannerInterface (5.2.1) - UMCameraInterface (5.2.1) @@ -715,7 +711,6 @@ SPEC REPOS: - FlipperKit - GoogleAppMeasurement - GoogleDataTransport - - GoogleDataTransportCCTSupport - GoogleUtilities - hermes-engine - libevent @@ -925,10 +920,10 @@ CHECKOUT OPTIONS: SPEC CHECKSUMS: boost-for-react-native: 39c7adb57c4e60d6c5479dd8623128eb5b3f0f2c - BugsnagReactNative: a97b3132c1854fd7bf92350fabd505e3ebdd7829 + BugsnagReactNative: a96bc039e0e4ec317a8b331714393d836ca60557 CocoaAsyncSocket: 065fd1e645c7abab64f7a6a2007a48038fdc6a99 DoubleConversion: cf9b38bf0b2d048436d9a82ad2abe1404f11e7de - EXAppleAuthentication: 5b3da71bada29e2423d8ea27e5538ef0d75aba62 + EXAppleAuthentication: 97d5db59f3fb7aefc6cb06e351ba0828c8982232 EXAV: 86344030966e0da7e00556fbb97269d9ad16071d EXConstants: f907b3b6ce16e20d1750f22af1e095e924574bcb EXFileSystem: 76875135b61708b9afa7e6a89b72a60ba0fdfa20 @@ -940,13 +935,13 @@ SPEC CHECKSUMS: EXVideoThumbnails: cd257fc6e07884a704a5674d362a6410933acb68 EXWebBrowser: d37a5ffdea1b65947352bc001dd9f732463725d4 FBLazyVector: e686045572151edef46010a6f819ade377dfeb4b - FBReactNativeSpec: b427d2f482828b9533661dbcf9edf846cb60dc7b - Firebase: 919186c8e119dd9372a45fd1dd17a8a942bc1892 - FirebaseAnalytics: 5fa308e1b13f838d0f6dc74719ac2a72e8c5afc4 - FirebaseCore: 8cd4f8ea22075e0ee582849b1cf79d8816506085 - FirebaseCoreDiagnostics: 4505e4d4009b1d93f605088ee7d7764d5f0d1c84 - FirebaseCrashlytics: 7d0fa02ea8842cc4b2ab07b0735edafde1ad77d6 - FirebaseInstallations: 3c520c951305cbf9ca54eb891ff9e6d1fd384881 + FBReactNativeSpec: 110d69378fce79af38271c39894b59fec7890221 + Firebase: c23a36d9e4cdf7877dfcba8dd0c58add66358999 + FirebaseAnalytics: 3bb096873ee0d7fa4b6c70f5e9166b6da413cc7f + FirebaseCore: d3a978a3cfa3240bf7e4ba7d137fdf5b22b628ec + FirebaseCoreDiagnostics: 770ac5958e1372ce67959ae4b4f31d8e127c3ac1 + FirebaseCrashlytics: 1a747c9cc084a24dc6d9511c991db1cd078154eb + FirebaseInstallations: 466c7b4d1f58fe16707693091da253726a731ed2 Flipper: d3da1aa199aad94455ae725e9f3aa43f3ec17021 Flipper-DoubleConversion: 38631e41ef4f9b12861c67d17cb5518d06badc41 Flipper-Folly: 755929a4f851b2fb2c347d533a23f191b008554c @@ -955,20 +950,19 @@ SPEC CHECKSUMS: Flipper-RSocket: 127954abe8b162fcaf68d2134d34dc2bd7076154 FlipperKit: 8a20b5c5fcf9436cac58551dc049867247f64b00 glog: 73c2498ac6884b13ede40eda8228cb1eee9d9d62 - GoogleAppMeasurement: 8cd1f289d60e629cf16ab03363b9e89c776b9651 - GoogleDataTransport: 9a8a16f79feffc7f42096743de2a7c4815e84020 - GoogleDataTransportCCTSupport: 489c1265d2c85b68187a83a911913d190012158d - GoogleUtilities: e121a3867449ce16b0e35ddf1797ea7a389ffdf2 + GoogleAppMeasurement: a6a3a066369828db64eda428cb2856dc1cdc7c4e + GoogleDataTransport: f56af7caa4ed338dc8e138a5d7c5973e66440833 + GoogleUtilities: 7f2f5a07f888cdb145101d6042bc4422f57e70b3 hermes-engine: 7d97ba46a1e29bacf3e3c61ecb2804a5ddd02d4f JitsiMeetSDK: ef6dd5cfa6d9badf009c7dba1a2c1365bfaae6b0 KeyCommands: f66c535f698ed14b3d3a4e58859d79a827ea907e libevent: 4049cae6c81cdb3654a443be001fb9bdceff7913 - libwebp: 946cb3063cea9236285f7e9a8505d806d30e07f3 + libwebp: e90b9c01d99205d03b6bb8f2c8c415e5a4ef66f0 MMKV: 67253edee25a34edf332f91d73fa94a9e038b971 - MMKVCore: fe398984acac1fa33f92795d1b5fd0a334c944af - nanopb: c43f40fadfe79e8b8db116583945847910cbabc9 + MMKVCore: b00e7a09ec77a1b916aef336eedd3b99ec249978 + nanopb: 59317e09cf1f1a0af72f12af412d54edf52603fc OpenSSL-Universal: 1aa4f6a6ee7256b83db99ec1ccdaa80d10f9af9b - PromisesObjC: b48e0338dbbac2207e611750777895f7a5811b75 + PromisesObjC: 3113f7f76903778cf4a0586bd1ab89329a0b7b97 RCT-Folly: ec7a233ccc97cc556cf7237f0db1ff65b986f27c RCTRequired: 6d3e854f0e7260a648badd0d44fc364bc9da9728 RCTTypeSafety: c1f31d19349c6b53085766359caac425926fafaa @@ -1020,19 +1014,19 @@ SPEC CHECKSUMS: RNDateTimePicker: 7658208086d86d09e1627b5c34ba0cf237c60140 RNDeviceInfo: 8d3a29207835f972bce883723882980143270d55 RNFastImage: f40d202ea2367239f71bc7cf11315f4bebab85b4 - RNFBAnalytics: dae6d7b280ba61c96e1bbdd34aca3154388f025e - RNFBApp: 6fd8a7e757135d4168bf033a8812c241af7363a0 - RNFBCrashlytics: 88de72c2476b5868a892d9523b89b86c527c540e + RNFBAnalytics: 6414e9fe1f36c3074f39cd6265b3def777dbfbdb + RNFBApp: 804b98033f45c3a3e35b56de8c894f85ef5e4388 + RNFBCrashlytics: 501d01e5dd0cd6affedba60762b9b8d7d579cea8 RNGestureHandler: a479ebd5ed4221a810967000735517df0d2db211 - RNImageCropPicker: 38865ab4af1b0b2146ad66061196bc0184946855 + RNImageCropPicker: f0557a908758c4a3f83978894ec7227651529b45 RNLocalize: 82a569022724d35461e2dc5b5d015a13c3ca995b RNReanimated: b5ccb50650ba06f6e749c7c329a1bc3ae0c88b43 RNRootView: 895a4813dedeaca82db2fa868ca1c333d790e494 RNScreens: c526239bbe0e957b988dacc8d75ac94ec9cb19da RNVectorIcons: 31cebfcf94e8cf8686eb5303ae0357da64d7a5a4 - SDWebImage: cf6922231e95550934da2ada0f20f2becf2ceba9 + SDWebImage: a7f831e1a65eb5e285e3fb046a23fcfbf08e696d SDWebImageWebPCoder: 36f8f47bd9879a8aea6044765c1351120fd8e3a8 - TOCropViewController: 20a14b6a7a098308bf369e7c8d700dc983a974e6 + TOCropViewController: 3105367e808b7d3d886a74ff59bf4804e7d3ab38 UMAppLoader: 61049c8d55590b74e9ae1d5429bf68d96b4a2528 UMBarCodeScannerInterface: e5e4c87797d3d01214e25cd1618866caf5d4f17f UMCameraInterface: 415ac060034edecacdbbaa739c223e3f276e0056 diff --git a/ios/Pods/Manifest.lock b/ios/Pods/Manifest.lock index 897040f485..e5fc3ddd59 100644 --- a/ios/Pods/Manifest.lock +++ b/ios/Pods/Manifest.lock @@ -1,10 +1,10 @@ PODS: - boost-for-react-native (1.63.0) - - BugsnagReactNative (7.10.5): + - BugsnagReactNative (7.11.0): - React-Core - CocoaAsyncSocket (7.6.5) - DoubleConversion (1.1.6) - - EXAppleAuthentication (2.2.1): + - EXAppleAuthentication (2.2.2): - UMCore - EXAV (8.2.1): - UMCore @@ -43,43 +43,42 @@ PODS: - React-Core (= 0.64.2) - React-jsi (= 0.64.2) - ReactCommon/turbomodule/core (= 0.64.2) - - Firebase/Analytics (6.27.1): + - Firebase/Analytics (6.34.0): - Firebase/Core - - Firebase/Core (6.27.1): + - Firebase/Core (6.34.0): - Firebase/CoreOnly - - FirebaseAnalytics (= 6.6.2) - - Firebase/CoreOnly (6.27.1): - - FirebaseCore (= 6.8.1) - - Firebase/Crashlytics (6.27.1): + - FirebaseAnalytics (= 6.9.0) + - Firebase/CoreOnly (6.34.0): + - FirebaseCore (= 6.10.4) + - Firebase/Crashlytics (6.34.0): - Firebase/CoreOnly - - FirebaseCrashlytics (~> 4.2.0) - - FirebaseAnalytics (6.6.2): - - FirebaseCore (~> 6.8) - - FirebaseInstallations (~> 1.4) - - GoogleAppMeasurement (= 6.6.2) - - GoogleUtilities/AppDelegateSwizzler (~> 6.0) - - GoogleUtilities/MethodSwizzler (~> 6.0) - - GoogleUtilities/Network (~> 6.0) - - "GoogleUtilities/NSData+zlib (~> 6.0)" - - nanopb (~> 1.30905.0) - - FirebaseCore (6.8.1): - - FirebaseCoreDiagnostics (~> 1.3) - - GoogleUtilities/Environment (~> 6.5) - - GoogleUtilities/Logger (~> 6.5) - - FirebaseCoreDiagnostics (1.4.0): - - GoogleDataTransportCCTSupport (~> 3.1) - - GoogleUtilities/Environment (~> 6.5) - - GoogleUtilities/Logger (~> 6.5) - - nanopb (~> 1.30905.0) - - FirebaseCrashlytics (4.2.0): - - FirebaseCore (~> 6.8) - - FirebaseInstallations (~> 1.1) - - GoogleDataTransport (~> 6.1) - - GoogleDataTransportCCTSupport (~> 3.1) - - nanopb (~> 1.30905.0) + - FirebaseCrashlytics (~> 4.6.2) + - FirebaseAnalytics (6.9.0): + - FirebaseCore (~> 6.10) + - FirebaseInstallations (~> 1.7) + - GoogleAppMeasurement (= 6.9.0) + - GoogleUtilities/AppDelegateSwizzler (~> 6.7) + - GoogleUtilities/MethodSwizzler (~> 6.7) + - GoogleUtilities/Network (~> 6.7) + - "GoogleUtilities/NSData+zlib (~> 6.7)" + - nanopb (~> 1.30906.0) + - FirebaseCore (6.10.4): + - FirebaseCoreDiagnostics (~> 1.6) + - GoogleUtilities/Environment (~> 6.7) + - GoogleUtilities/Logger (~> 6.7) + - FirebaseCoreDiagnostics (1.7.0): + - GoogleDataTransport (~> 7.4) + - GoogleUtilities/Environment (~> 6.7) + - GoogleUtilities/Logger (~> 6.7) + - nanopb (~> 1.30906.0) + - FirebaseCrashlytics (4.6.2): + - FirebaseCore (~> 6.10) + - FirebaseInstallations (~> 1.6) + - GoogleDataTransport (~> 7.2) + - nanopb (~> 1.30906.0) - PromisesObjC (~> 1.2) - - FirebaseInstallations (1.5.0): - - FirebaseCore (~> 6.8) + - FirebaseInstallations (1.7.0): + - FirebaseCore (~> 6.10) - GoogleUtilities/Environment (~> 6.7) - GoogleUtilities/UserDefaults (~> 6.7) - PromisesObjC (~> 1.2) @@ -130,59 +129,57 @@ PODS: - FlipperKit/Core - FlipperKit/FlipperKitNetworkPlugin - glog (0.3.5) - - GoogleAppMeasurement (6.6.2): - - GoogleUtilities/AppDelegateSwizzler (~> 6.0) - - GoogleUtilities/MethodSwizzler (~> 6.0) - - GoogleUtilities/Network (~> 6.0) - - "GoogleUtilities/NSData+zlib (~> 6.0)" - - nanopb (~> 1.30905.0) - - GoogleDataTransport (6.2.1) - - GoogleDataTransportCCTSupport (3.2.0): - - GoogleDataTransport (~> 6.1) - - nanopb (~> 1.30905.0) - - GoogleUtilities/AppDelegateSwizzler (6.7.1): + - GoogleAppMeasurement (6.9.0): + - GoogleUtilities/AppDelegateSwizzler (~> 6.7) + - GoogleUtilities/MethodSwizzler (~> 6.7) + - GoogleUtilities/Network (~> 6.7) + - "GoogleUtilities/NSData+zlib (~> 6.7)" + - nanopb (~> 1.30906.0) + - GoogleDataTransport (7.5.1): + - nanopb (~> 1.30906.0) + - GoogleUtilities/AppDelegateSwizzler (6.7.2): - GoogleUtilities/Environment - GoogleUtilities/Logger - GoogleUtilities/Network - - GoogleUtilities/Environment (6.7.1): + - GoogleUtilities/Environment (6.7.2): - PromisesObjC (~> 1.2) - - GoogleUtilities/Logger (6.7.1): + - GoogleUtilities/Logger (6.7.2): - GoogleUtilities/Environment - - GoogleUtilities/MethodSwizzler (6.7.1): + - GoogleUtilities/MethodSwizzler (6.7.2): - GoogleUtilities/Logger - - GoogleUtilities/Network (6.7.1): + - GoogleUtilities/Network (6.7.2): - GoogleUtilities/Logger - "GoogleUtilities/NSData+zlib" - GoogleUtilities/Reachability - - "GoogleUtilities/NSData+zlib (6.7.1)" - - GoogleUtilities/Reachability (6.7.1): + - "GoogleUtilities/NSData+zlib (6.7.2)" + - GoogleUtilities/Reachability (6.7.2): - GoogleUtilities/Logger - - GoogleUtilities/UserDefaults (6.7.1): + - GoogleUtilities/UserDefaults (6.7.2): - GoogleUtilities/Logger - hermes-engine (0.7.2) - JitsiMeetSDK (2.10.2) - KeyCommands (2.0.3): - React - libevent (2.1.12) - - libwebp (1.1.0): - - libwebp/demux (= 1.1.0) - - libwebp/mux (= 1.1.0) - - libwebp/webp (= 1.1.0) - - libwebp/demux (1.1.0): + - libwebp (1.2.0): + - libwebp/demux (= 1.2.0) + - libwebp/mux (= 1.2.0) + - libwebp/webp (= 1.2.0) + - libwebp/demux (1.2.0): - libwebp/webp - - libwebp/mux (1.1.0): + - libwebp/mux (1.2.0): - libwebp/demux - - libwebp/webp (1.1.0) + - libwebp/webp (1.2.0) - MMKV (1.2.1): - MMKVCore (~> 1.2.1) - - MMKVCore (1.2.1) - - nanopb (1.30905.0): - - nanopb/decode (= 1.30905.0) - - nanopb/encode (= 1.30905.0) - - nanopb/decode (1.30905.0) - - nanopb/encode (1.30905.0) + - MMKVCore (1.2.10) + - nanopb (1.30906.0): + - nanopb/decode (= 1.30906.0) + - nanopb/encode (= 1.30906.0) + - nanopb/decode (1.30906.0) + - nanopb/encode (1.30906.0) - OpenSSL-Universal (1.1.180) - - PromisesObjC (1.2.9) + - PromisesObjC (1.2.12) - RCT-Folly (2020.01.13.00): - boost-for-react-native - DoubleConversion @@ -516,26 +513,25 @@ PODS: - React - SDWebImage (~> 5.0) - SDWebImageWebPCoder (~> 0.4.1) - - RNFBAnalytics (7.3.1): - - Firebase/Analytics (~> 6.27.0) - - React + - RNFBAnalytics (7.6.10): + - Firebase/Analytics (~> 6.34.0) + - React-Core - RNFBApp - - RNFBApp (8.2.0): - - Firebase/CoreOnly (~> 6.27.0) - - React - - RNFBCrashlytics (8.1.2): - - Firebase/Core (~> 6.27.0) - - Firebase/Crashlytics (~> 6.27.0) - - React + - RNFBApp (8.4.7): + - Firebase/CoreOnly (~> 6.34.0) + - React-Core + - RNFBCrashlytics (8.5.2): + - Firebase/Crashlytics (~> 6.34.0) + - React-Core - RNFBApp - RNGestureHandler (1.10.3): - React-Core - - RNImageCropPicker (0.31.1): + - RNImageCropPicker (0.32.2): - React-Core - React-RCTImage - - RNImageCropPicker/QBImagePickerController (= 0.31.1) + - RNImageCropPicker/QBImagePickerController (= 0.32.2) - TOCropViewController - - RNImageCropPicker/QBImagePickerController (0.31.1): + - RNImageCropPicker/QBImagePickerController (0.32.2): - React-Core - React-RCTImage - TOCropViewController @@ -549,13 +545,13 @@ PODS: - React - RNVectorIcons (8.1.0): - React-Core - - SDWebImage (5.8.4): - - SDWebImage/Core (= 5.8.4) - - SDWebImage/Core (5.8.4) + - SDWebImage (5.11.1): + - SDWebImage/Core (= 5.11.1) + - SDWebImage/Core (5.11.1) - SDWebImageWebPCoder (0.4.1): - libwebp (~> 1.0) - SDWebImage/Core (~> 5.5) - - TOCropViewController (2.5.3) + - TOCropViewController (2.6.0) - UMAppLoader (1.2.0) - UMBarCodeScannerInterface (5.2.1) - UMCameraInterface (5.2.1) @@ -715,7 +711,6 @@ SPEC REPOS: - FlipperKit - GoogleAppMeasurement - GoogleDataTransport - - GoogleDataTransportCCTSupport - GoogleUtilities - hermes-engine - libevent @@ -925,10 +920,10 @@ CHECKOUT OPTIONS: SPEC CHECKSUMS: boost-for-react-native: 39c7adb57c4e60d6c5479dd8623128eb5b3f0f2c - BugsnagReactNative: a97b3132c1854fd7bf92350fabd505e3ebdd7829 + BugsnagReactNative: a96bc039e0e4ec317a8b331714393d836ca60557 CocoaAsyncSocket: 065fd1e645c7abab64f7a6a2007a48038fdc6a99 DoubleConversion: cf9b38bf0b2d048436d9a82ad2abe1404f11e7de - EXAppleAuthentication: 5b3da71bada29e2423d8ea27e5538ef0d75aba62 + EXAppleAuthentication: 97d5db59f3fb7aefc6cb06e351ba0828c8982232 EXAV: 86344030966e0da7e00556fbb97269d9ad16071d EXConstants: f907b3b6ce16e20d1750f22af1e095e924574bcb EXFileSystem: 76875135b61708b9afa7e6a89b72a60ba0fdfa20 @@ -940,13 +935,13 @@ SPEC CHECKSUMS: EXVideoThumbnails: cd257fc6e07884a704a5674d362a6410933acb68 EXWebBrowser: d37a5ffdea1b65947352bc001dd9f732463725d4 FBLazyVector: e686045572151edef46010a6f819ade377dfeb4b - FBReactNativeSpec: b427d2f482828b9533661dbcf9edf846cb60dc7b - Firebase: 919186c8e119dd9372a45fd1dd17a8a942bc1892 - FirebaseAnalytics: 5fa308e1b13f838d0f6dc74719ac2a72e8c5afc4 - FirebaseCore: 8cd4f8ea22075e0ee582849b1cf79d8816506085 - FirebaseCoreDiagnostics: 4505e4d4009b1d93f605088ee7d7764d5f0d1c84 - FirebaseCrashlytics: 7d0fa02ea8842cc4b2ab07b0735edafde1ad77d6 - FirebaseInstallations: 3c520c951305cbf9ca54eb891ff9e6d1fd384881 + FBReactNativeSpec: 110d69378fce79af38271c39894b59fec7890221 + Firebase: c23a36d9e4cdf7877dfcba8dd0c58add66358999 + FirebaseAnalytics: 3bb096873ee0d7fa4b6c70f5e9166b6da413cc7f + FirebaseCore: d3a978a3cfa3240bf7e4ba7d137fdf5b22b628ec + FirebaseCoreDiagnostics: 770ac5958e1372ce67959ae4b4f31d8e127c3ac1 + FirebaseCrashlytics: 1a747c9cc084a24dc6d9511c991db1cd078154eb + FirebaseInstallations: 466c7b4d1f58fe16707693091da253726a731ed2 Flipper: d3da1aa199aad94455ae725e9f3aa43f3ec17021 Flipper-DoubleConversion: 38631e41ef4f9b12861c67d17cb5518d06badc41 Flipper-Folly: 755929a4f851b2fb2c347d533a23f191b008554c @@ -955,20 +950,19 @@ SPEC CHECKSUMS: Flipper-RSocket: 127954abe8b162fcaf68d2134d34dc2bd7076154 FlipperKit: 8a20b5c5fcf9436cac58551dc049867247f64b00 glog: 73c2498ac6884b13ede40eda8228cb1eee9d9d62 - GoogleAppMeasurement: 8cd1f289d60e629cf16ab03363b9e89c776b9651 - GoogleDataTransport: 9a8a16f79feffc7f42096743de2a7c4815e84020 - GoogleDataTransportCCTSupport: 489c1265d2c85b68187a83a911913d190012158d - GoogleUtilities: e121a3867449ce16b0e35ddf1797ea7a389ffdf2 + GoogleAppMeasurement: a6a3a066369828db64eda428cb2856dc1cdc7c4e + GoogleDataTransport: f56af7caa4ed338dc8e138a5d7c5973e66440833 + GoogleUtilities: 7f2f5a07f888cdb145101d6042bc4422f57e70b3 hermes-engine: 7d97ba46a1e29bacf3e3c61ecb2804a5ddd02d4f JitsiMeetSDK: ef6dd5cfa6d9badf009c7dba1a2c1365bfaae6b0 KeyCommands: f66c535f698ed14b3d3a4e58859d79a827ea907e libevent: 4049cae6c81cdb3654a443be001fb9bdceff7913 - libwebp: 946cb3063cea9236285f7e9a8505d806d30e07f3 + libwebp: e90b9c01d99205d03b6bb8f2c8c415e5a4ef66f0 MMKV: 67253edee25a34edf332f91d73fa94a9e038b971 - MMKVCore: fe398984acac1fa33f92795d1b5fd0a334c944af - nanopb: c43f40fadfe79e8b8db116583945847910cbabc9 + MMKVCore: b00e7a09ec77a1b916aef336eedd3b99ec249978 + nanopb: 59317e09cf1f1a0af72f12af412d54edf52603fc OpenSSL-Universal: 1aa4f6a6ee7256b83db99ec1ccdaa80d10f9af9b - PromisesObjC: b48e0338dbbac2207e611750777895f7a5811b75 + PromisesObjC: 3113f7f76903778cf4a0586bd1ab89329a0b7b97 RCT-Folly: ec7a233ccc97cc556cf7237f0db1ff65b986f27c RCTRequired: 6d3e854f0e7260a648badd0d44fc364bc9da9728 RCTTypeSafety: c1f31d19349c6b53085766359caac425926fafaa @@ -1020,19 +1014,19 @@ SPEC CHECKSUMS: RNDateTimePicker: 7658208086d86d09e1627b5c34ba0cf237c60140 RNDeviceInfo: 8d3a29207835f972bce883723882980143270d55 RNFastImage: f40d202ea2367239f71bc7cf11315f4bebab85b4 - RNFBAnalytics: dae6d7b280ba61c96e1bbdd34aca3154388f025e - RNFBApp: 6fd8a7e757135d4168bf033a8812c241af7363a0 - RNFBCrashlytics: 88de72c2476b5868a892d9523b89b86c527c540e + RNFBAnalytics: 6414e9fe1f36c3074f39cd6265b3def777dbfbdb + RNFBApp: 804b98033f45c3a3e35b56de8c894f85ef5e4388 + RNFBCrashlytics: 501d01e5dd0cd6affedba60762b9b8d7d579cea8 RNGestureHandler: a479ebd5ed4221a810967000735517df0d2db211 - RNImageCropPicker: 38865ab4af1b0b2146ad66061196bc0184946855 + RNImageCropPicker: f0557a908758c4a3f83978894ec7227651529b45 RNLocalize: 82a569022724d35461e2dc5b5d015a13c3ca995b RNReanimated: b5ccb50650ba06f6e749c7c329a1bc3ae0c88b43 RNRootView: 895a4813dedeaca82db2fa868ca1c333d790e494 RNScreens: c526239bbe0e957b988dacc8d75ac94ec9cb19da RNVectorIcons: 31cebfcf94e8cf8686eb5303ae0357da64d7a5a4 - SDWebImage: cf6922231e95550934da2ada0f20f2becf2ceba9 + SDWebImage: a7f831e1a65eb5e285e3fb046a23fcfbf08e696d SDWebImageWebPCoder: 36f8f47bd9879a8aea6044765c1351120fd8e3a8 - TOCropViewController: 20a14b6a7a098308bf369e7c8d700dc983a974e6 + TOCropViewController: 3105367e808b7d3d886a74ff59bf4804e7d3ab38 UMAppLoader: 61049c8d55590b74e9ae1d5429bf68d96b4a2528 UMBarCodeScannerInterface: e5e4c87797d3d01214e25cd1618866caf5d4f17f UMCameraInterface: 415ac060034edecacdbbaa739c223e3f276e0056 diff --git a/ios/Pods/Pods.xcodeproj/project.pbxproj b/ios/Pods/Pods.xcodeproj/project.pbxproj index d79c2b5def..c41c3412d1 100644 --- a/ios/Pods/Pods.xcodeproj/project.pbxproj +++ b/ios/Pods/Pods.xcodeproj/project.pbxproj @@ -22,9 +22,9 @@ buildPhases = ( ); dependencies = ( - 2246D412BFC6EB0B857907F1CEAD64F4 /* PBXTargetDependency */, - 6BA0035CBC2B320BBBB15C5DA34DD454 /* PBXTargetDependency */, - 001AC04A479D814F4CCE8E3D34034BA8 /* PBXTargetDependency */, + 551A03644613E2BAEB20EFEF2707FE5F /* PBXTargetDependency */, + 0AD4EBF3FE8F52012E4EE1F1D0A4A445 /* PBXTargetDependency */, + 85334ADEC967867AE4E98CF57B7C9090 /* PBXTargetDependency */, ); name = Firebase; }; @@ -39,30 +39,30 @@ }; 11989A5E568B3B69655EE0C13DCDA3F9 /* React-RCTActionSheet */ = { isa = PBXAggregateTarget; - buildConfigurationList = A1E19287E281B95FD3C66F2D35581831 /* Build configuration list for PBXAggregateTarget "React-RCTActionSheet" */; + buildConfigurationList = 91DDCC1A946E6F68F6DBDF23A529E24E /* Build configuration list for PBXAggregateTarget "React-RCTActionSheet" */; buildPhases = ( ); dependencies = ( - B82726A83F1CCF7C0BCEA7D3AC1E9664 /* PBXTargetDependency */, + 07AA2974C11C1A99E390091C30CCD99F /* PBXTargetDependency */, ); name = "React-RCTActionSheet"; }; 1BEE828C124E6416179B904A9F66D794 /* React */ = { isa = PBXAggregateTarget; - buildConfigurationList = A6BBC7A61E7747180BD7A53B1047BBD2 /* Build configuration list for PBXAggregateTarget "React" */; + buildConfigurationList = 9B30B16A42B7E1C097A30A34E23110B5 /* Build configuration list for PBXAggregateTarget "React" */; buildPhases = ( ); dependencies = ( - 68332619AD3B10B577470306479C1DDB /* PBXTargetDependency */, - 2C44119EBBF4AB542F25C7101E3C5DAF /* PBXTargetDependency */, - AE40D65B456FBF41DACA3C8B1E7D7BE5 /* PBXTargetDependency */, - 8A31414293B6B202C7388DF679DB86EF /* PBXTargetDependency */, - 4140BEEF702F1C5D47AA4757117E7258 /* PBXTargetDependency */, - 695424830158DE3C35802A391DF2AA47 /* PBXTargetDependency */, - 129652D306D189128AF6BC637F73E631 /* PBXTargetDependency */, - D2D86912571D9FDEF7A8550C5202ED68 /* PBXTargetDependency */, - D87EA1472409EDFED2143495D441AB9B /* PBXTargetDependency */, - 1317CE4B1006CB56E7934B0214C8EC66 /* PBXTargetDependency */, + DBC6147590D6E08B79BAA7F773413279 /* PBXTargetDependency */, + E0A5A8763556325BFADCD66774D771C6 /* PBXTargetDependency */, + 883FC4622F1A262E92A338717254FA6B /* PBXTargetDependency */, + B58633C0783B2D098E40EF599E19FE3D /* PBXTargetDependency */, + ABD5551CC95971C5EBA844393C748DC1 /* PBXTargetDependency */, + 2970507FDD7F023215AF2EA3E443B637 /* PBXTargetDependency */, + 64316D36D0BDB5BC62137C47FDD096B1 /* PBXTargetDependency */, + A37B63310039E3791F6C6F7AFC07E264 /* PBXTargetDependency */, + 6C588B419561602920A38F0A575284E8 /* PBXTargetDependency */, + 31945383CD7F63F2E135F765236B3335 /* PBXTargetDependency */, ); name = React; }; @@ -77,7 +77,7 @@ }; 2644525CCE081E967809A8163D893A93 /* UMFileSystemInterface */ = { isa = PBXAggregateTarget; - buildConfigurationList = A0BBF36949B72ED82119D118CF74BFFE /* Build configuration list for PBXAggregateTarget "UMFileSystemInterface" */; + buildConfigurationList = A71A8C9C1D6414BB76A004FC8E568C3E /* Build configuration list for PBXAggregateTarget "UMFileSystemInterface" */; buildPhases = ( ); dependencies = ( @@ -86,7 +86,7 @@ }; 2681CB7EF647E61F4F9A43029C235607 /* React-callinvoker */ = { isa = PBXAggregateTarget; - buildConfigurationList = 6A869BE11760AA6BD7778AF7BB9CF550 /* Build configuration list for PBXAggregateTarget "React-callinvoker" */; + buildConfigurationList = 03C33DEC2CE7E37B24E201797963E05D /* Build configuration list for PBXAggregateTarget "React-callinvoker" */; buildPhases = ( ); dependencies = ( @@ -122,11 +122,11 @@ }; 54EB12219122432FA744088BC5A680D2 /* React-runtimeexecutor */ = { isa = PBXAggregateTarget; - buildConfigurationList = 3940DE503717146C344D49DFBBC2E324 /* Build configuration list for PBXAggregateTarget "React-runtimeexecutor" */; + buildConfigurationList = 5342FA69479BCC562FAB12FF0EC03886 /* Build configuration list for PBXAggregateTarget "React-runtimeexecutor" */; buildPhases = ( ); dependencies = ( - F35B2988DC12A724442BAF127E55D025 /* PBXTargetDependency */, + 35D97F58D8966E3F3A19BB69D902F969 /* PBXTargetDependency */, ); name = "React-runtimeexecutor"; }; @@ -150,7 +150,7 @@ }; 9668C19AA6D8EA320F83875FA286855A /* UMConstantsInterface */ = { isa = PBXAggregateTarget; - buildConfigurationList = 81B64538349FC5A3C516F0D5F664C2AF /* Build configuration list for PBXAggregateTarget "UMConstantsInterface" */; + buildConfigurationList = 698A93962796CA50566929F22F6B31C7 /* Build configuration list for PBXAggregateTarget "UMConstantsInterface" */; buildPhases = ( ); dependencies = ( @@ -159,7 +159,7 @@ }; 97C4DE84FA3CC4EC06AA6D8C249949B7 /* UMImageLoaderInterface */ = { isa = PBXAggregateTarget; - buildConfigurationList = 0AABDF923994A94E2CCCDF04227D1FC1 /* Build configuration list for PBXAggregateTarget "UMImageLoaderInterface" */; + buildConfigurationList = A5D7CAE522201CE0337CA76AE56F4AD9 /* Build configuration list for PBXAggregateTarget "UMImageLoaderInterface" */; buildPhases = ( ); dependencies = ( @@ -168,9 +168,9 @@ }; 985FEA01F314F3C00F0C1E1181E6C4A5 /* hermes-engine */ = { isa = PBXAggregateTarget; - buildConfigurationList = 699EEC181B5ABAC70976EAC0EE5824A6 /* Build configuration list for PBXAggregateTarget "hermes-engine" */; + buildConfigurationList = 1C732F9204DDCFCC3F4286E2EBDDCE2B /* Build configuration list for PBXAggregateTarget "hermes-engine" */; buildPhases = ( - B2DB92034D1C262AA0075292C432E764 /* [CP] Copy dSYMs */, + E8E4A920A6B4CECB3A14C60ED6EFCA99 /* [CP] Copy dSYMs */, ); dependencies = ( ); @@ -178,20 +178,20 @@ }; B53D977A951AFC38B21751B706C1DF83 /* GoogleAppMeasurement */ = { isa = PBXAggregateTarget; - buildConfigurationList = 15212B07F35C5F6654E6F0BDF16B637A /* Build configuration list for PBXAggregateTarget "GoogleAppMeasurement" */; + buildConfigurationList = 0F89E7C1106DF7AE2AD450C7A820F803 /* Build configuration list for PBXAggregateTarget "GoogleAppMeasurement" */; buildPhases = ( ); dependencies = ( - 5C5EB908DA10E04B3099DDCCF58DEA2F /* PBXTargetDependency */, - 8DF63E30C8A336EE49EC922DB675AC18 /* PBXTargetDependency */, + 83D9802FAC2FFC89F466552BCEA2660E /* PBXTargetDependency */, + 10CFAECD9A775EB2DB340D27356E26EB /* PBXTargetDependency */, ); name = GoogleAppMeasurement; }; B9ED5194E665042005069EF06C82A050 /* OpenSSL-Universal */ = { isa = PBXAggregateTarget; - buildConfigurationList = 030D368A423358C520F7DDA2C5015898 /* Build configuration list for PBXAggregateTarget "OpenSSL-Universal" */; + buildConfigurationList = 90641D9916E24F2A315344659B5329E1 /* Build configuration list for PBXAggregateTarget "OpenSSL-Universal" */; buildPhases = ( - 3E210BA784CEBA16D1C0882FF8BA30F7 /* [CP] Copy XCFrameworks */, + 11D666AB037A0F31CF78B002D8561B73 /* [CP] Copy XCFrameworks */, ); dependencies = ( ); @@ -199,21 +199,21 @@ }; C49E7A4D59E5C8BE8DE9FB1EFB150185 /* FirebaseAnalytics */ = { isa = PBXAggregateTarget; - buildConfigurationList = 6D884301DED0299AE60DDAF0DD950B7E /* Build configuration list for PBXAggregateTarget "FirebaseAnalytics" */; + buildConfigurationList = 5BCF9C794F134FA18EBB58A7B9217B81 /* Build configuration list for PBXAggregateTarget "FirebaseAnalytics" */; buildPhases = ( ); dependencies = ( - 0D160D84F558E5F16EACA16E408D9300 /* PBXTargetDependency */, - 312C7FC6C8F84F5206ED075DB5AF6740 /* PBXTargetDependency */, - 9A05CE0E659953558AEBA7E4A2E35071 /* PBXTargetDependency */, - 694BC02A956ABD1A22E5ADD40FC5C69C /* PBXTargetDependency */, - AFDAC57A40B074A1717CCBF48DB490F4 /* PBXTargetDependency */, + E342511312F8BAB6ACC2135E46579A98 /* PBXTargetDependency */, + 2836CF73F0853B063AE1292CEE45862F /* PBXTargetDependency */, + BA5D4ADE8F55DBCBBDCA27BF9F40E09F /* PBXTargetDependency */, + DE555C4B3CAEABCC2BABC55E0B789C5B /* PBXTargetDependency */, + E1C813450C93AB98BAF1AD0018A31DC1 /* PBXTargetDependency */, ); name = FirebaseAnalytics; }; E7E7CE52C8C68B17224FF8C262D80ABF /* RCTRequired */ = { isa = PBXAggregateTarget; - buildConfigurationList = B6C6F9EC13A16CC1312D410ADE27FA7E /* Build configuration list for PBXAggregateTarget "RCTRequired" */; + buildConfigurationList = 76E0929672D901169C3CF623A1D65BE7 /* Build configuration list for PBXAggregateTarget "RCTRequired" */; buildPhases = ( ); dependencies = ( @@ -222,7 +222,7 @@ }; ED2506AE7DE35D654F61254441EA7155 /* boost-for-react-native */ = { isa = PBXAggregateTarget; - buildConfigurationList = CE8EBC2CD2134951C91930F7FA1AC270 /* Build configuration list for PBXAggregateTarget "boost-for-react-native" */; + buildConfigurationList = C4C6523185F51CD6BD6524A78C994EFA /* Build configuration list for PBXAggregateTarget "boost-for-react-native" */; buildPhases = ( ); dependencies = ( @@ -232,13331 +232,13266 @@ /* End PBXAggregateTarget section */ /* Begin PBXBuildFile section */ - 00048DD9E1C1F01D7AA8052B56E7431E /* IPAddressV4.h in Headers */ = {isa = PBXBuildFile; fileRef = 02C991DF0D290846DE19F8CA80AD4354 /* IPAddressV4.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 0009B56E3DB9193A3673C64B5D69DF5F /* BSG_KSSystemInfo.h in Headers */ = {isa = PBXBuildFile; fileRef = 72D924B8236E2AF165F6D5F8354A471D /* BSG_KSSystemInfo.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 0021ADEDCC7BDF2873BCAA2932A94973 /* RCTUIUtils.m in Sources */ = {isa = PBXBuildFile; fileRef = 291A3EF93026735D4A371473E47296C4 /* RCTUIUtils.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - 0027ACB25A453EC52DEDC36640BCC044 /* RCTPbkdf2.m in Sources */ = {isa = PBXBuildFile; fileRef = 6E567830E7845629D2196E6C4E1652B9 /* RCTPbkdf2.m */; }; - 0028B33CFD58D134D7F27DC7007C149B /* EXPermissions.h in Headers */ = {isa = PBXBuildFile; fileRef = 55D918DA09C748DE14493F55B5EF6DFB /* EXPermissions.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 0040F8F0DD9089286364F8385B3299EF /* F14Table.h in Headers */ = {isa = PBXBuildFile; fileRef = 289FAC143E9FC44F43C2C9F3BFD11E1C /* F14Table.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 0046ADBA078ACE2D5DB447D46CCC1899 /* FIRCLSFABAsyncOperation_Private.h in Headers */ = {isa = PBXBuildFile; fileRef = C08376657BF0FFD85723248EA8D3C3D1 /* FIRCLSFABAsyncOperation_Private.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 0057FBC361C696065C2ABEFB2556A2F4 /* RCTVibration.h in Headers */ = {isa = PBXBuildFile; fileRef = AE60EBEF10EB410D6454E9435714035A /* RCTVibration.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 005D1B6FD0CAF94B962756F3647CC582 /* ConcurrentSkipList.h in Headers */ = {isa = PBXBuildFile; fileRef = 4C99E44EFF703AFF54FB84284C85BEFC /* ConcurrentSkipList.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 005FDB5737EFC91525B5B3A06BFAD6A9 /* FBReactNativeSpec.h in Headers */ = {isa = PBXBuildFile; fileRef = 9363660B9A66C416940A5ED430891623 /* FBReactNativeSpec.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 006424C155BE0EC47CE00FA3AECED4BF /* alpha_processing_sse2.c in Sources */ = {isa = PBXBuildFile; fileRef = AAE7C3A7CFA89498E2F31CD466E8BD1F /* alpha_processing_sse2.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; - 007D63251D200645B5FADAF36DED156C /* UMInternalModule.h in Headers */ = {isa = PBXBuildFile; fileRef = F969AB07C5F0F86647AD40EF77FD8A5B /* UMInternalModule.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 00807FAA7AEECF6ED98F32666568B370 /* TcpConnectionFactory.cpp in Sources */ = {isa = PBXBuildFile; fileRef = B1CC5F300C379D9AFF7A7F9E68C4BC16 /* TcpConnectionFactory.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -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 -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors"; }; }; - 008E846E81F794C720EABB3FF9C1764C /* AsyncTrace.h in Headers */ = {isa = PBXBuildFile; fileRef = 077F291B3D51FC13039F9019F22DEA24 /* AsyncTrace.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 009339B67D32BCE08D732F434B0A34EF /* RCTNetworkTask.mm in Sources */ = {isa = PBXBuildFile; fileRef = 411C5D3090597F745A84709D99C44A6B /* 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"; }; }; - 00970C26F813B29A6F37E7A396A1F863 /* RNCPicker-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 60D442A392DA9A7A6DD57F6D01D72702 /* RNCPicker-dummy.m */; }; - 00A7B48C3E8BA90F90E4F1F4E7389C7A /* Time.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 0499D4D0215385E03992B5E8D6EEB000 /* Time.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -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\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors"; }; }; - 00BB8F2C7C8AC2C604A8652297AF5813 /* RCTInputAccessoryViewContent.h in Headers */ = {isa = PBXBuildFile; fileRef = C6047C5622988513A77CF76E8BE0CD9F /* RCTInputAccessoryViewContent.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 00BC87DFA9ECECAA97E66236315A0E42 /* GDTCORPlatform.h in Headers */ = {isa = PBXBuildFile; fileRef = 08593D01040FC8FE0D5E332C14128C19 /* GDTCORPlatform.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 00BDCD58EA8B54F256C20B5BB191BE69 /* RCTPackagerConnection.mm in Sources */ = {isa = PBXBuildFile; fileRef = 31E6E9ED526B2A75CD508972807E3085 /* RCTPackagerConnection.mm */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - 00F3CECFF5B5C71FCA22A87DC5BA9543 /* RCTSwitchManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 803652DA292561BA0F2B796EB01CC231 /* RCTSwitchManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 00F8647BB6E8A787410FB25342A5BE20 /* RCTRefreshControlManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 304AD9DD746227D7CFF1D49EE52759C2 /* RCTRefreshControlManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 010ACD40A3FB0E1CDA8CB693E0C25AC2 /* RCTTouchEvent.h in Headers */ = {isa = PBXBuildFile; fileRef = B50DE8C8F2A19864483D8FC8DD07475B /* RCTTouchEvent.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 010D56C7627B65E6EFD47D9261944763 /* SocketOptionMap.h in Headers */ = {isa = PBXBuildFile; fileRef = A09AB235098FCF4BFA9D0D5B5E22A857 /* SocketOptionMap.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 01278CABBFDB29756042EB6FF836EB74 /* utils.h in Headers */ = {isa = PBXBuildFile; fileRef = 4F93F61A90764C0E78C82A039657A0C8 /* utils.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 014BF8C7B22928C76013CA44AE2DCD41 /* Unistd.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 0381BAB37FB5527EC89A3772A617850D /* Unistd.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -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\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors"; }; }; - 0151086FDFF81B6CA8D219F670CAA428 /* RCTSpringAnimation.h in Headers */ = {isa = PBXBuildFile; fileRef = AB338D3DE7775EC9A3A7A5C6C8EF8871 /* RCTSpringAnimation.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 015E62A1FD23178A45DA6E92823C5F9F /* HeterogeneousAccess.h in Headers */ = {isa = PBXBuildFile; fileRef = 3663947E78F78F183D279D27C650548D /* HeterogeneousAccess.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 017F62D5A617EDF06647FEDBAEA533EA /* REAEventNode.m in Sources */ = {isa = PBXBuildFile; fileRef = 93FC45CC18820A048275DA3BBE31FD89 /* REAEventNode.m */; }; - 0182157BF7C1F8A5D720A72DA9371BD4 /* Futex-inl.h in Headers */ = {isa = PBXBuildFile; fileRef = 3D6853AA624FC5A933BB11FA7D0A0A67 /* Futex-inl.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 01A939FDFDE549EFCEEC007A543C4CC8 /* IOObjectCache.h in Headers */ = {isa = PBXBuildFile; fileRef = 0B2797F574294906070F7BE48ECC1B64 /* IOObjectCache.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 01B0032031EA54F2A019BB496A57F963 /* SDWebImage.h in Headers */ = {isa = PBXBuildFile; fileRef = 8E9D737AD88368ED3A2F1A00D90666BE /* SDWebImage.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 01B5E83605163939447E23FA6A4A49C1 /* StorageSetters.m in Sources */ = {isa = PBXBuildFile; fileRef = 7EE4C717F5E2017DF21EF0ED8ED107E1 /* StorageSetters.m */; }; - 01D5E90249AE4DFA53798839771B2A77 /* EXSessionTaskDispatcher.h in Headers */ = {isa = PBXBuildFile; fileRef = 398D18514E2FEAC75960BF69A0DCC236 /* EXSessionTaskDispatcher.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 01EDAE9EBF8DF30E2E318B3E68AD485A /* RNBootSplash-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = C27817BEBD0764AAA5531522DE8E09A3 /* RNBootSplash-dummy.m */; }; - 0205426B1CB4A12EA5EE5707B0E0B23A /* ExceptionString.h in Headers */ = {isa = PBXBuildFile; fileRef = 7A3BF570E94C8640895966EC47D8ABFD /* ExceptionString.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 02118F981B7C0DD618C919479E33B173 /* Random.h in Headers */ = {isa = PBXBuildFile; fileRef = 6526F41ECBDF99585387BFDC5787A33B /* Random.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 025FE47C3B60B30BA35774977653BB78 /* small_vector.h in Headers */ = {isa = PBXBuildFile; fileRef = D36ACE68BB8264C4141B635EA0BD695D /* small_vector.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 027429AF288C5AF3C5B78ABB422A882F /* Unicode.h in Headers */ = {isa = PBXBuildFile; fileRef = 7594BECDFBA4190D7EF60C88EB269846 /* Unicode.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 028D89356A953848F9B55822B92BA1F8 /* analysis_enc.c in Sources */ = {isa = PBXBuildFile; fileRef = 6E28EDF634FF6ECE4803956901A890EB /* analysis_enc.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; - 02A6D160F23F2906666849BB8CE6C735 /* SDImageGIFCoder.m in Sources */ = {isa = PBXBuildFile; fileRef = 7C822944916997393C83B0CF3310A16B /* SDImageGIFCoder.m */; }; - 02ADEABAF9B955E505BA66F7ADCD0667 /* FIRCLSInternalLogging.c in Sources */ = {isa = PBXBuildFile; fileRef = 62B73A440AD7CB767A967E0875089085 /* FIRCLSInternalLogging.c */; }; - 02B1D90F9A8BB4D5D7281C8CF4453985 /* UIResponder+FirstResponderTemp.m in Sources */ = {isa = PBXBuildFile; fileRef = E32F0ADDAD67DE6FFAEA3592A5620057 /* UIResponder+FirstResponderTemp.m */; }; - 02C03E39B31B42E2FFBF8245C47771B3 /* Parallel.h in Headers */ = {isa = PBXBuildFile; fileRef = 8F12146FE27561032F8D4B3189081660 /* Parallel.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 02CD8DF60C9214B70F1DED7CAA72EA36 /* ARTShadow.h in Headers */ = {isa = PBXBuildFile; fileRef = EC51DD54CD0EED9344522EB545B298B3 /* ARTShadow.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 02F3FAEE0F8AD772ED88F9CC03E0D4FB /* RCTBridgeMethod.h in Headers */ = {isa = PBXBuildFile; fileRef = 759E76BF4E0BCEEDF0710C73EE7060A9 /* RCTBridgeMethod.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 02FE15B62E349ED13458EAF358D75B35 /* RCTTouchHandler.h in Headers */ = {isa = PBXBuildFile; fileRef = 237391D445AE6C2688DAFAFABEDE9202 /* RCTTouchHandler.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 0346C6562507A40267EA3305185E192B /* RCTImagePlugins.h in Headers */ = {isa = PBXBuildFile; fileRef = 6E320D828713423902FF9737F8D8B1DF /* RCTImagePlugins.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 035ABDBD827EF6B667B0A81C4BC891BE /* FlipperConnectionImpl.h in Headers */ = {isa = PBXBuildFile; fileRef = 4FF999F8D3575678E2BA9D8CCC594E46 /* FlipperConnectionImpl.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 037AA7D98E4705B36AD6DA948F2C99DF /* Hazptr.h in Headers */ = {isa = PBXBuildFile; fileRef = A3E40312392D7D79909DD9D28107B2D5 /* Hazptr.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 037C957FDE25B5F43759C4F0BA107AF8 /* RSocketResponder.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 45819A60A49C114E82122B36C16F91E0 /* RSocketResponder.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -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 -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors"; }; }; - 0383250E9997F99EECCC20594F9507B4 /* strtod.cc in Sources */ = {isa = PBXBuildFile; fileRef = 87D361A17427A801DBF47CD2D9BFCC01 /* strtod.cc */; settings = {COMPILER_FLAGS = "-Wno-unreachable-code"; }; }; - 038E2DBE07A1E347E75CDCA8AD1D1AB2 /* JSIDynamic.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 8571823AA5D946194320312B28D9AEEF /* JSIDynamic.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - 038EC993E3CC0E6730C944D1FD535132 /* ThreadCachedArena.h in Headers */ = {isa = PBXBuildFile; fileRef = E658D0B87F376A26ECCE7D29B51CB804 /* ThreadCachedArena.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 03B4B5F630ED44205E4E7C4A6403A863 /* BSG_KSCrashIdentifier.m in Sources */ = {isa = PBXBuildFile; fileRef = 4EC9214E320BBD039409478C85CB3D4E /* BSG_KSCrashIdentifier.m */; }; - 03C2C9D9DE037EB91239D7C7E88BF9D2 /* MMKVLog.h in Headers */ = {isa = PBXBuildFile; fileRef = 552390FE19CFD6F5D5586884FACFD5C0 /* MMKVLog.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 03C9FDF164D46EE142863B39C3ED3353 /* FlipperClient.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 55E5F67EF246FFC6CAC577A6181668C0 /* FlipperClient.cpp */; settings = {COMPILER_FLAGS = "-DFLIPPER_OSS=1 -DFB_SONARKIT_ENABLED=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -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"; }; }; - 03E82591072A50A5DED71EF03E95E245 /* SKTouch.h in Headers */ = {isa = PBXBuildFile; fileRef = 9A8C62FBCBEE317E39083D803E58E73E /* SKTouch.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 03F8BCE3228A9B43553B52224F80D2E6 /* SKEnvironmentVariables.h in Headers */ = {isa = PBXBuildFile; fileRef = A95BDCA70C13B92DD2B92AAFC48B3CA2 /* SKEnvironmentVariables.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 0408D4F196CE6FEF759EB3C4F80CFF03 /* SDWebImageWebPCoder.h in Headers */ = {isa = PBXBuildFile; fileRef = D5CAFDCB85306D5AFD07084BA1737101 /* SDWebImageWebPCoder.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 040C2CC1E0708C8B9BA00967505E4020 /* SDImageCoder.m in Sources */ = {isa = PBXBuildFile; fileRef = A1676AAC61EFA3771E2E5B301AC959E0 /* SDImageCoder.m */; }; - 04310196A7DE34EE6C10BACBB7BA0A07 /* SingletonStackTrace.cpp in Sources */ = {isa = PBXBuildFile; fileRef = EFC7499F43B3972E69F26C8E148364C0 /* 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"; }; }; - 043891E5F78B305EBB1317A30836A8CC /* RCTSafeAreaShadowView.h in Headers */ = {isa = PBXBuildFile; fileRef = CB67C93D6401F212FFF1E5EE7D0106B9 /* RCTSafeAreaShadowView.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 0443589566EC27782B2D8A322A5C48B5 /* FIRCLSFile.m in Sources */ = {isa = PBXBuildFile; fileRef = C6485B3A9CFDBF4692BD579F07E4A983 /* FIRCLSFile.m */; }; - 044B767FF1D713F3352E021519FD4646 /* InlineExecutor.cpp in Sources */ = {isa = PBXBuildFile; fileRef = E43323A34806A9BD3B6B4CB4A2FB27BD /* 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"; }; }; - 045000FCEB1B5F5CB4B35EEA57AF018C /* MethodCall.cpp in Sources */ = {isa = PBXBuildFile; fileRef = DB84C45CEDAAB1F8403BCE7ACC59018C /* MethodCall.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - 04545590A52007AF2C55B090579D5DAB /* Demangle.h in Headers */ = {isa = PBXBuildFile; fileRef = F6FE7555EDE359A14D2F715534F474C8 /* Demangle.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 0461C37B5061FC3BFC24BA4EBA892F17 /* TypeInfo.h in Headers */ = {isa = PBXBuildFile; fileRef = C8A8E750D6EB315BBAD13D52C36D1C35 /* TypeInfo.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 046CFA6EA2183A2D8EA5270C76CA64CA /* STTimerFDTimeoutManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 8EC1FD54A43DE7F6BA21F2B42197B5B6 /* STTimerFDTimeoutManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 0472E6B2EC2DD1701437FE1EEE67EF7F /* GDTCOREvent+GDTCCTSupport.h in Headers */ = {isa = PBXBuildFile; fileRef = 58FDB347CF2505169C6622AA7F6B1624 /* GDTCOREvent+GDTCCTSupport.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 049F3641ED0F4A2C70A5A6E13D2218E9 /* RCTValueAnimatedNode.h in Headers */ = {isa = PBXBuildFile; fileRef = 2A2E31F1D554AB0E4ED50E5806B88B3E /* RCTValueAnimatedNode.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 04CC1236424016C5C170EF8366AAB196 /* Cursor-inl.h in Headers */ = {isa = PBXBuildFile; fileRef = 4719575195AD664C0B7ABD653A1ABDB6 /* Cursor-inl.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 04D1BE328D5841C7FDF3E301C5CF2B9D /* Fingerprint.h in Headers */ = {isa = PBXBuildFile; fileRef = 2E4F334248833C97B3656DE81F2B2778 /* Fingerprint.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 0524D12E76C8A25E9297604C91B3E220 /* RNBootSplash.m in Sources */ = {isa = PBXBuildFile; fileRef = 9BEC1860957320D1CF2C90CF1F9595DB /* RNBootSplash.m */; }; - 055B4D27C2659219838D1257DD8AE550 /* RNNotificationCenterMulticast.h in Headers */ = {isa = PBXBuildFile; fileRef = 50E9BC19608F331299520F4A34F93BD0 /* RNNotificationCenterMulticast.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 0562BFEC36491B2EA18AC761FD989375 /* BugsnagClient+Private.h in Headers */ = {isa = PBXBuildFile; fileRef = 5AD22713EE6E7C846525A656A9999E89 /* BugsnagClient+Private.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 056E754644E170E76B219204CA58C492 /* GDTCCTNanopbHelpers.h in Headers */ = {isa = PBXBuildFile; fileRef = D9891CE4FDE6F86E8136EB0A7555C8DD /* GDTCCTNanopbHelpers.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 05768EFA810692190DA64DA76EBC0BE8 /* Memory.h in Headers */ = {isa = PBXBuildFile; fileRef = B4A669AEE4E790FB79D3AFC1B3EF5C78 /* Memory.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 058B10DA26839788148504E6F6E66221 /* SDWebImageDownloaderConfig.h in Headers */ = {isa = PBXBuildFile; fileRef = 849B5400332E67CB49AB4618ABFE2341 /* SDWebImageDownloaderConfig.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 05956957EEDC4C7CB77438B32F3F2A27 /* HardwareConcurrency.h in Headers */ = {isa = PBXBuildFile; fileRef = EC939FB768D3C5B9EEC1D46DB5A0FC4D /* HardwareConcurrency.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 0595DABEC9675204C4E322CB29A3E29C /* Atomic.h in Headers */ = {isa = PBXBuildFile; fileRef = 38BBE2CA9186650AFBC919E763904BBD /* Atomic.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 0598F7186665FCE2EFAADE1F54C739D6 /* RCTURLRequestDelegate.h in Headers */ = {isa = PBXBuildFile; fileRef = B315AC002517DB5B0E4BB7730C693375 /* RCTURLRequestDelegate.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 05C2E0DB9C8CC79205ED5446A7BA7D72 /* MMKV_OSX.h in Headers */ = {isa = PBXBuildFile; fileRef = 2F40785B36761D40360CCF0B7D0E1C43 /* MMKV_OSX.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 05DDD47A2C554C681F329F08C81CC89E /* cost_neon.c in Sources */ = {isa = PBXBuildFile; fileRef = C297EEB29D530D2065D16CD01752FEB2 /* cost_neon.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; - 05E1F59E2BB7A27A16D0A159585E953D /* FIRCLSReportManager.m in Sources */ = {isa = PBXBuildFile; fileRef = DBBEB9B5D2777C75E5E5B2DAE9212D52 /* FIRCLSReportManager.m */; }; - 05E8768ADFF5C698243A41CE2CF7437E /* MRCCanary.m in Sources */ = {isa = PBXBuildFile; fileRef = 557C06D43567F388267AB80BAAF2CCCA /* MRCCanary.m */; }; - 05EC7EFB420CDEA0D13DA075C985FFDA /* RCTSurface.mm in Sources */ = {isa = PBXBuildFile; fileRef = 79B29BED9BBCAA461C6D59F27D7BADC4 /* RCTSurface.mm */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - 060A7EC0A2054D3378BA7ACA6385A33E /* NotificationQueue.h in Headers */ = {isa = PBXBuildFile; fileRef = 4E610DED409BEE9089F49167DE8A5A3F /* NotificationQueue.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 0618DAD253EDE3B3EC9FF32A7AE290EF /* BugsnagFileStore.h in Headers */ = {isa = PBXBuildFile; fileRef = 1ED60785E613974940745804A80CF521 /* BugsnagFileStore.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 0634D6318459F5C1F29408B3FB71DBED /* CxxModule.h in Headers */ = {isa = PBXBuildFile; fileRef = 494B50D5D5537B2B9842B43BE6116BEE /* CxxModule.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 064607851859163A371F8B63692DF256 /* GULNetworkConstants.m in Sources */ = {isa = PBXBuildFile; fileRef = 920923E2DB170384DABDA9E8EC651393 /* GULNetworkConstants.m */; }; - 064AC196394C411BE28F19DDF9B0C08F /* CppAttributes.h in Headers */ = {isa = PBXBuildFile; fileRef = 932D6A4AAAE1FBAB7EE894FC1698E905 /* CppAttributes.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 06514FD84CC576BCCE44F89EE61A7F68 /* GCDAsyncSocket.h in Headers */ = {isa = PBXBuildFile; fileRef = E3A107D1CA871E2270BFC3B29210E99B /* GCDAsyncSocket.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 066047ABB9A27063B409C533B72812C2 /* SecureStorage.m in Sources */ = {isa = PBXBuildFile; fileRef = 0F72487A94BB4E252CC7309942D924D3 /* SecureStorage.m */; }; - 06790325DF359DC61EAC515295D64139 /* RNEventEmitter.m in Sources */ = {isa = PBXBuildFile; fileRef = EA4C93D56FE5D85A1A138AC0E69C8862 /* RNEventEmitter.m */; }; - 067E292CEC4E08787006F729EF7D5639 /* FIRCLSDataParsing.h in Headers */ = {isa = PBXBuildFile; fileRef = 6E862EF5EF45C3A65DC568F4D8060AAC /* FIRCLSDataParsing.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 068AFEE58D6A906D9F47BD5F0AD3D391 /* SKIOSNetworkAdapter.mm in Sources */ = {isa = PBXBuildFile; fileRef = 657C2BB6771EEDE6789A18E1920992B2 /* SKIOSNetworkAdapter.mm */; settings = {COMPILER_FLAGS = "-DDEBUG=1 -DFLIPPER_OSS=1 -DFB_SONARKIT_ENABLED=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -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"; }; }; - 06B0565E90F2E675B6119EA4CFD9581A /* Hardware.h in Headers */ = {isa = PBXBuildFile; fileRef = D0E13984E0A2C4736083DC35869FC7C2 /* Hardware.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 06C9A25AC4DC7A39AB08FCBAE8362B45 /* ht-internal.h in Headers */ = {isa = PBXBuildFile; fileRef = 453EE913EAEECD3E8429629404148DE5 /* ht-internal.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 06D5DBF1E9E955ED20FB07B829C42A34 /* Format.cpp in Sources */ = {isa = PBXBuildFile; fileRef = B919A05E9213379A4D71D1D3ADF05F89 /* Format.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -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\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors"; }; }; - 06D66457A9DCD30BC0265FE278C1D00B /* RNFBJSON.h in Headers */ = {isa = PBXBuildFile; fileRef = 68D9357F6B530E418ECB4089AF8372A5 /* RNFBJSON.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 06EEA7CC0CAE7BD60BE91A9D8A980D84 /* BSGSerialization.h in Headers */ = {isa = PBXBuildFile; fileRef = 5B707ED67B4BB2FCDC42FE3B71683C3D /* BSGSerialization.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 06EFE2E466BB6FA26C078AE7F59312F7 /* UMPermissionsInterface-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = F8A34C931F8875081A4EE2BB1B802E30 /* UMPermissionsInterface-dummy.m */; }; - 06FC02991FEF45A778E94EEF63F75941 /* HazptrUtils.h in Headers */ = {isa = PBXBuildFile; fileRef = A0E317BA0618B3CF6CE687522449B03C /* HazptrUtils.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 0705C20C343C509BFF1B5CA41BDE05B1 /* React-jsinspector-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 1849D9626394B1D952A744349A6634B7 /* React-jsinspector-dummy.m */; }; - 07093C761C6CC9644CB5C2EDFD2F00A3 /* RCTDefines.h in Headers */ = {isa = PBXBuildFile; fileRef = 0EDA77D1B8F449421DC2532D38292393 /* RCTDefines.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 070DF6CDF8168079D67DD94D4CEB1D2D /* Assume.h in Headers */ = {isa = PBXBuildFile; fileRef = 03AE25503118EA1D4DE028BBCADCAEF1 /* Assume.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 07245ACD0FF8044A77CCCDC3CD78B618 /* KeyboardTrackingViewTempManager.m in Sources */ = {isa = PBXBuildFile; fileRef = C8BDECB59759E467E4BA207CDA35DA99 /* KeyboardTrackingViewTempManager.m */; }; - 0727B31AF6A686D215A1D79044CC7EF6 /* BSG_KSFileUtils.h in Headers */ = {isa = PBXBuildFile; fileRef = 330CD7BDA80EE0DACB19C7498C4FDF00 /* BSG_KSFileUtils.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 075085477BB67B9628BCD463435B7425 /* GULHeartbeatDateStorage.h in Headers */ = {isa = PBXBuildFile; fileRef = 41FA13DF57954BD5E585AB26E68DE195 /* GULHeartbeatDateStorage.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 0770A96449257D8A83944EE3FE30A3BC /* ARTTextManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 788A40ED01BB50ABD4F04BF4036D602E /* ARTTextManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 07AFE129202F2514C8261BD85F4F9870 /* NSImage+Compatibility.m in Sources */ = {isa = PBXBuildFile; fileRef = D5E8E5688B76AA91CD7061A0CF7F37A9 /* NSImage+Compatibility.m */; }; - 07CA76F75690AE09E4BA7AE4FD32BB84 /* UMModuleRegistryHolderReactModule.m in Sources */ = {isa = PBXBuildFile; fileRef = 3CF2196A1EE0D95E00B03D669456756F /* UMModuleRegistryHolderReactModule.m */; }; - 07D433A912EDD1208E6C857BFDAAAA46 /* es.lproj in Resources */ = {isa = PBXBuildFile; fileRef = 0200F4C529843FA559B3B7EAFBDCA3B7 /* es.lproj */; }; - 07E12D7FCC5284401B91040F1F61E8FD /* ApplyTuple.h in Headers */ = {isa = PBXBuildFile; fileRef = 9F2ABF8C2BEA2939B53F3C2267EF8A0A /* ApplyTuple.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 07F09290FE59F32D9775E507056C06C1 /* MMKV_IO.cpp in Sources */ = {isa = PBXBuildFile; fileRef = E31156F425D164A2ED4E39B2E9028DD3 /* MMKV_IO.cpp */; settings = {COMPILER_FLAGS = "-x objective-c++ -fno-objc-arc"; }; }; - 07F56F01327AA18E32704E5E53BB55C2 /* UIImage+MultiFormat.m in Sources */ = {isa = PBXBuildFile; fileRef = C1CAC101D574B1469EE2EDF35A0FB67B /* UIImage+MultiFormat.m */; }; - 07F9FC2A0F2CF7D7BF484E7E8C8626AA /* SDWebImageDownloaderConfig.m in Sources */ = {isa = PBXBuildFile; fileRef = 31539C38D495B50907FA4BBE5334CBCD /* SDWebImageDownloaderConfig.m */; }; - 081D3EF79DD7B27C1031948FA9C72D1E /* Core-inl.h in Headers */ = {isa = PBXBuildFile; fileRef = 6A190983119A82156CA0B4A385EE69BB /* Core-inl.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 0829F9FE8178E4FF1669D596D77B0993 /* fast-dtoa.h in Headers */ = {isa = PBXBuildFile; fileRef = 33F8B614EDDB6B06EC53096D867D5B46 /* fast-dtoa.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 0839370ACB3C1AF71FD30BA8119B5C2B /* DistributedMutexSpecializations.h in Headers */ = {isa = PBXBuildFile; fileRef = 675E5ADC3EACC082F3B1BAAA56677263 /* DistributedMutexSpecializations.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 08480CE58BD618A3856B2AA4143B7ABD /* BlurView.m in Sources */ = {isa = PBXBuildFile; fileRef = D3B33FD155FD295BAA0410C2986FCA37 /* BlurView.m */; }; - 085C6C6788B855289DCC9D625CCD502D /* GroupVarint.h in Headers */ = {isa = PBXBuildFile; fileRef = 1F67315E7880925AA24F1ADCA8867579 /* GroupVarint.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 087327627D5E0EC8C8012550EBA962EF /* InlineExecutor.h in Headers */ = {isa = PBXBuildFile; fileRef = FA78E89356894AB05B1E6C451A83D8CB /* InlineExecutor.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 088006BBBCF81B9958053C61DDB6C3C6 /* PicoSpinLock.h in Headers */ = {isa = PBXBuildFile; fileRef = 00F6CAA287AF03669BD8E004E864BFD2 /* PicoSpinLock.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 089B447701AB39595BD258FD7E389B7E /* Future.h in Headers */ = {isa = PBXBuildFile; fileRef = BCC1146DC641696C5D12F3D1EA347D6C /* Future.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 08CC00DC6F526AAF0A9121114A369342 /* RCTAdditionAnimatedNode.m in Sources */ = {isa = PBXBuildFile; fileRef = 6ED44C6E2CAA76255A8A8349F38A9EC4 /* 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"; }; }; - 08DC66360C319586D994B46451C4CFA2 /* RCTSurfaceStage.m in Sources */ = {isa = PBXBuildFile; fileRef = 4EBDF38D772E501B8DDFAD480A0A8439 /* RCTSurfaceStage.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - 08FE01E6E385043DD42A42D4C111A425 /* RNCSafeAreaView.m in Sources */ = {isa = PBXBuildFile; fileRef = DFFB7BE862EB42E833249ED655B2CAC7 /* RNCSafeAreaView.m */; }; - 090CFBE4406371D791D2FBB837A032B9 /* QBVideoIconView.h in Headers */ = {isa = PBXBuildFile; fileRef = 591FA607D74A59DECE40C10AAE8667E7 /* QBVideoIconView.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 090D7A939BD0E4141C321406BD304C0A /* RNCMaskedView.h in Headers */ = {isa = PBXBuildFile; fileRef = 9683279A137FDD94EBCEC25771038803 /* RNCMaskedView.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 0911B0BF6C7F9D3671AAA712CBB7AF1B /* evrpc.h in Headers */ = {isa = PBXBuildFile; fileRef = 72F272903FFBC94B4E4612A594A555FF /* evrpc.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 091A8294C62AC3AEC7AFD5DBD735EC8B /* RCTSourceCode.h in Headers */ = {isa = PBXBuildFile; fileRef = D84AD1D3232B0FAF8CBACB1950484819 /* RCTSourceCode.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 091B32DC9B35A27D260CB658F65DBB73 /* FlipperKit-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 1B6184996055D56D26C8211166775FE1 /* FlipperKit-dummy.m */; }; - 091D3B6C5B4BF7EA8A9F5CF1FC98F3A0 /* EXVideoManager.m in Sources */ = {isa = PBXBuildFile; fileRef = 2845AE37505E17E13FB2C18225966C08 /* EXVideoManager.m */; }; - 093492410D1092DF7E465408CDCE1180 /* REAStyleNode.h in Headers */ = {isa = PBXBuildFile; fileRef = 463FD6CE5E4650310F45D38D814546AB /* REAStyleNode.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 0948B68B74CC84944BBF2F9B3120F86C /* EventCount.h in Headers */ = {isa = PBXBuildFile; fileRef = 3A11F134BC882C7D27091A2C96946962 /* EventCount.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 095F489B200D86C5BFB9B9ECD73E6B07 /* dec_neon.c in Sources */ = {isa = PBXBuildFile; fileRef = B46F8DE0AECDD9DFDBD2A2738BE7B127 /* dec_neon.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; - 096047FD8389C5BE0B025F398B679E98 /* AutoTimer.h in Headers */ = {isa = PBXBuildFile; fileRef = 5B79F9D35FD7D0A9CC6EEA2FC0B28D87 /* AutoTimer.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 09724AFECBA67030CCBDDEC111AA7381 /* RCTSha.h in Headers */ = {isa = PBXBuildFile; fileRef = 838CB3AD58AAF778C3820188C89DEAE7 /* RCTSha.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 0975C6685CDEE822B3B40F222F717F78 /* YGLayout.h in Headers */ = {isa = PBXBuildFile; fileRef = CC30D68C227093DD75664F5A4F39836F /* YGLayout.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 097954AC10D18CE8B5141F94DF890D16 /* CacheLocality.h in Headers */ = {isa = PBXBuildFile; fileRef = 8784FBC1C5E137B83281BBDA13166A55 /* CacheLocality.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 097D9BB45C7C6A9F07E194B5B62ECC62 /* RNPushKitEventHandler.h in Headers */ = {isa = PBXBuildFile; fileRef = F6999E1FA5D1118E99918E215C000A6E /* RNPushKitEventHandler.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 09877537A9682B55FACFAFD040F97A87 /* SDImageIOCoder.h in Headers */ = {isa = PBXBuildFile; fileRef = 0632EB5F7E65E53CB0E9FB0623CE095F /* SDImageIOCoder.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 0988E9C96CEEC77F442AF2B15DAF1E44 /* RWSpinLock.h in Headers */ = {isa = PBXBuildFile; fileRef = 5C54F02D722B48B0AA6F0F2997F6DC92 /* RWSpinLock.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 098C6B57113697D5362AFB0B9E7C5834 /* JSBigString.h in Headers */ = {isa = PBXBuildFile; fileRef = F8B921051AB4FF0A77981EF9913F6E3F /* JSBigString.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 09AEC5DEC14AB7D111C1DF36DFD7A1AD /* RCTAnimatedImage.m in Sources */ = {isa = PBXBuildFile; fileRef = 4FE1D3B427082E6E61CC0FE1559311CE /* 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"; }; }; - 09C38BBB9DF1A26387E7925892790C42 /* RNFBSharedUtils.h in Headers */ = {isa = PBXBuildFile; fileRef = 4BDD0D0B1D3BA5FD4C57167273A37400 /* RNFBSharedUtils.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 09DCC90A46B1FFF80ACBB457F48AE773 /* bufferevent_filter.c in Sources */ = {isa = PBXBuildFile; fileRef = 31BE77BA970F0F9CE3CADED50681A14F /* bufferevent_filter.c */; }; - 09F15827B9B30D7FAFB16A3ADF53557B /* RCTResizeMode.m in Sources */ = {isa = PBXBuildFile; fileRef = 607B3D72F1D65F0541F6A67178F50A0C /* 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"; }; }; - 0A0F924BEDB66B36140C0412B7C28B07 /* libMMKV.mm in Sources */ = {isa = PBXBuildFile; fileRef = 2E73A9322BBB7C6B2CE667F4A5619F30 /* libMMKV.mm */; }; - 0A2152A57FD363FE1E02BFC9155A2BAE /* FBLPromise+Do.h in Headers */ = {isa = PBXBuildFile; fileRef = ED81A5EB12FE3E918B3DCFFEBF9AE754 /* FBLPromise+Do.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 0A279C3E604AF38251E0B139CAC0972A /* FLEXUtility.mm in Sources */ = {isa = PBXBuildFile; fileRef = 1DF5C4EEFBC2F3A09EB6CB6F3EDA71FD /* FLEXUtility.mm */; settings = {COMPILER_FLAGS = "-DDEBUG=1 -DFLIPPER_OSS=1 -DFB_SONARKIT_ENABLED=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -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"; }; }; - 0A2FD3B0870061C168D1DBB7FFF3685E /* FIRDependency.h in Headers */ = {isa = PBXBuildFile; fileRef = 2F6F8104994F8DC0891F5424518527FF /* FIRDependency.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 0A4CAA92A38F6F359915AF868EDD3F0E /* FIRCLSSerializeSymbolicatedFramesOperation.h in Headers */ = {isa = PBXBuildFile; fileRef = 7F5467A50B2433558AF81A19C71F11A9 /* FIRCLSSerializeSymbolicatedFramesOperation.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 0A6E2C66791B2BF331A358B7F6E92483 /* BugsnagDeviceWithState.m in Sources */ = {isa = PBXBuildFile; fileRef = 7A52E65AEAC493527C07E619FAACD214 /* BugsnagDeviceWithState.m */; }; - 0AA2C42953DBAC4F4F9D86F6F5497720 /* fixed-dtoa.cc in Sources */ = {isa = PBXBuildFile; fileRef = F07D2F18E27AAD4431AA0C119A2B18A2 /* fixed-dtoa.cc */; settings = {COMPILER_FLAGS = "-Wno-unreachable-code"; }; }; - 0AACF9DA2E1B6C7D74CBFC897EC87F9F /* DuplexConnection.h in Headers */ = {isa = PBXBuildFile; fileRef = D26852D1F256C76D2220095D278152DF /* DuplexConnection.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 0AB0058593030C3B0EAD62529088458B /* SKHiddenWindow.h in Headers */ = {isa = PBXBuildFile; fileRef = 83015F74B9F4F8612DBA0CD2A7132244 /* SKHiddenWindow.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 0AB0E18EE74D192587F41B96143C012A /* BugsnagLastRunInfo.h in Headers */ = {isa = PBXBuildFile; fileRef = B0B15E0495BCA939F82E3999573D2DFB /* BugsnagLastRunInfo.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 0AC1BC9FB4F553C79F4B4B142862308E /* EnableSharedFromThis.h in Headers */ = {isa = PBXBuildFile; fileRef = A3F2CA03CD6CE2779AC3B2571F1888FD /* EnableSharedFromThis.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 0AD210E18C425316C4AF682A50FFEA56 /* YGValue.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 1886BD93D7B131F8DBADECC1AA9B654F /* YGValue.cpp */; settings = {COMPILER_FLAGS = "-fno-omit-frame-pointer -fexceptions -Wall -Werror -std=c++1y -fPIC -fno-objc-arc"; }; }; - 0AD6A7B831E3569F6D7C5B1EE02A1191 /* GDTCORUploadPackage.h in Headers */ = {isa = PBXBuildFile; fileRef = E92ABFDAB203180947FBEDCB9BC3B942 /* GDTCORUploadPackage.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 0B01B5A30237F905FAA426B720C73146 /* RCTUtils.h in Headers */ = {isa = PBXBuildFile; fileRef = 6FFAD7ACA0EE339C6FAE4005EA9B3FC7 /* RCTUtils.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 0B089ED105A2ABBA13BB1CB7BFA957E4 /* small_vector.h in Headers */ = {isa = PBXBuildFile; fileRef = 2571DDCDB2652412E88CCFE7FFF135B1 /* small_vector.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 0B2AE46A2D31D608587776AC93C04926 /* Throughput.h in Headers */ = {isa = PBXBuildFile; fileRef = E21871B529EE14E91E52A27A8D1D1F13 /* Throughput.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 0B2E0DE809E106E5EA77ADB7FD1B786A /* GDTCORReachability.h in Headers */ = {isa = PBXBuildFile; fileRef = 885292AF47B79C9F9792145F265F4642 /* GDTCORReachability.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 0B3A750D51632C3862C135538908444C /* Random.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 49223835FFBCC772834BC23A41BF7AE6 /* Random.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -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\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors"; }; }; - 0B47DBFDB0527287B0F70B3A82A83B38 /* BugsnagSessionFileStore.h in Headers */ = {isa = PBXBuildFile; fileRef = 6B459DE3753ACF65B3EE6005C011ABAA /* BugsnagSessionFileStore.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 0B522BA25D8DA45B1F683E2BD478AA3C /* RecordIO.h in Headers */ = {isa = PBXBuildFile; fileRef = F8858511AF37F8A3D53D4FE0D621D8F9 /* RecordIO.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 0B5A737B18094E1088257B7A1BDA859D /* lossless_enc.c in Sources */ = {isa = PBXBuildFile; fileRef = A79DEA6FB66798FDB09A6F59CFE1E257 /* lossless_enc.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; - 0B5D6E4F52F253DB4C51AF1BC0C17C78 /* ThreadLocalDetail.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 8403A2E98112F59D3BAF6617AECA11EC /* ThreadLocalDetail.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -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\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors"; }; }; - 0B8C12CC05B220BE94F3319EAEAF6083 /* SDImageAPNGCoder.h in Headers */ = {isa = PBXBuildFile; fileRef = A82E8AA0A350E86E661EF7349E03E7EE /* SDImageAPNGCoder.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 0BA710712CA13C1B9D15CC6616C17A18 /* TOCropViewControllerTransitioning.h in Headers */ = {isa = PBXBuildFile; fileRef = 495EB46C90284196792D3BC2F73D02C9 /* TOCropViewControllerTransitioning.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 0BA74AA382F7CC48CE4D2D08C970987A /* MemoryIdler.h in Headers */ = {isa = PBXBuildFile; fileRef = 103D85709FAEBE30EE0B816C9B015B9C /* MemoryIdler.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 0BBDAD03EF08CA1EDDE9FBBA70BFD9F9 /* RCTCustomInputControllerTemp.h in Headers */ = {isa = PBXBuildFile; fileRef = C191067ED21FA9A8C57AE29B73488327 /* RCTCustomInputControllerTemp.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 0BC8480BB7062F05FE8DAB9397701E28 /* RCTRsaUtils.swift in Sources */ = {isa = PBXBuildFile; fileRef = 712977A45BF435F5FBBB354F1236B801 /* RCTRsaUtils.swift */; }; - 0BD0332EF081BC071AC1592D998F8712 /* TOCropToolbar.m in Sources */ = {isa = PBXBuildFile; fileRef = 4835786E04114DA8AC9459D9771373BF /* TOCropToolbar.m */; }; - 0BE18DE9E3405BED1A98DCC821F18E1A /* SDAnimatedImageView+WebCache.h in Headers */ = {isa = PBXBuildFile; fileRef = 632154CA99C3395F324D6E8391E97CD6 /* SDAnimatedImageView+WebCache.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 0BFA5DDABBF0AFF8F2A011E4BD9CD4B6 /* Hazptr.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 40B967F7C56A728EEBFFF403E70495A0 /* 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"; }; }; - 0BFABFC5DFB416EBB3B2D399F54F6D73 /* quant_levels_utils.c in Sources */ = {isa = PBXBuildFile; fileRef = DEAFDDB7B183EBCD227325CE5F4B9AE5 /* quant_levels_utils.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; - 0C02CF57A76237685AD6A8C3EF701A6F /* RCTVibrationPlugins.h in Headers */ = {isa = PBXBuildFile; fileRef = B2B0C2B2DA9D3780174162903F4E336E /* RCTVibrationPlugins.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 0C1C34168DFB6335025F3571DE0990C0 /* RCTInputAccessoryView.h in Headers */ = {isa = PBXBuildFile; fileRef = D9B8B92F24A47BEF9C95B210D292BA64 /* RCTInputAccessoryView.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 0C25A34F69506C1703FA93EB30B244FD /* CPUThreadPoolExecutor.h in Headers */ = {isa = PBXBuildFile; fileRef = C52CF47231E5F2DD0870D298922E99E8 /* CPUThreadPoolExecutor.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 0C2E7DC258AE40F7DCFD9BF97E0CE7BD /* AtomicNotification.cpp in Sources */ = {isa = PBXBuildFile; fileRef = BD5CC643B7659D611CA418FB5BC4A3C4 /* AtomicNotification.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -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\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors"; }; }; - 0C5297F5FF538496FC9F5A4061017320 /* Instance.h in Headers */ = {isa = PBXBuildFile; fileRef = 631870C24E6FF50FFE8421AB36226223 /* Instance.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 0C9592D63976BC9282601AFCF81F19EF /* FIRInstallationsAPIService.m in Sources */ = {isa = PBXBuildFile; fileRef = A92471AA2B82BDB11D3DB2938A92C154 /* FIRInstallationsAPIService.m */; }; - 0CA8037128DBC7C6B80D9DFBFDEE0249 /* SKSwizzle.mm in Sources */ = {isa = PBXBuildFile; fileRef = 62A93AAB3B73950E2B5F76E03DE1FD0F /* SKSwizzle.mm */; settings = {COMPILER_FLAGS = "-DDEBUG=1 -DFLIPPER_OSS=1 -DFB_SONARKIT_ENABLED=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -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"; }; }; - 0CADF1F6BBA5D799CEAD99DA2FEAC140 /* KeyValueHolder.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 32D640516510CD6D98C1762D93D29598 /* KeyValueHolder.cpp */; settings = {COMPILER_FLAGS = "-x objective-c++ -fno-objc-arc"; }; }; - 0CB383EBBE7DE8793C3DAE97B376906D /* AsyncTransportCertificate.h in Headers */ = {isa = PBXBuildFile; fileRef = E49150825E7B7233D0DF10044CFF560C /* AsyncTransportCertificate.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 0CC3D1EBC4B98E88BA86BFE488146684 /* YGNode.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 35092844B0028488DE18CCC8D155D32B /* YGNode.cpp */; settings = {COMPILER_FLAGS = "-fno-omit-frame-pointer -fexceptions -Wall -Werror -std=c++1y -fPIC -fno-objc-arc"; }; }; - 0CD96A4E2677F7983EE8E5193C1AB2BD /* RCTDecayAnimation.h in Headers */ = {isa = PBXBuildFile; fileRef = 8AA602DCBEEDEA49A0A583EEDCF0ACFC /* RCTDecayAnimation.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 0CE3278495A8CAFC7A47D2E1CC3376CF /* time-internal.h in Headers */ = {isa = PBXBuildFile; fileRef = C9DF09F69040AFECB8B414130D0B901C /* time-internal.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 0CF2B0DB3189A0CC369D43D152544F22 /* FIRErrors.h in Headers */ = {isa = PBXBuildFile; fileRef = 67D5F573B6CFD6FF0723A26620D16C35 /* FIRErrors.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 0D0B0FC02320C284BC292CCB6DCDF10E /* BSG_KSObjCApple.h in Headers */ = {isa = PBXBuildFile; fileRef = A7F3286AAEC755CDF16E674143494868 /* BSG_KSObjCApple.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 0D1494C60977D90B4EF701937DCA2D41 /* AtFork.h in Headers */ = {isa = PBXBuildFile; fileRef = 5DB376A59FEDEFFDE68EA4CA8C8D80F4 /* AtFork.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 0D1704056A0737B8445048529611C1DA /* MemoryMapping.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 8645C0A09204F941254F04AFF321631B /* MemoryMapping.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -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\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors"; }; }; - 0D28E4B29E5AEED3111CEAF1219ABADB /* BugsnagCollections.h in Headers */ = {isa = PBXBuildFile; fileRef = D6FA4F6C91F2A4BED4534715D40E0D1F /* BugsnagCollections.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 0D4033D5C3933CE042605CE73AEC6F2A /* UMExportedModule.h in Headers */ = {isa = PBXBuildFile; fileRef = 73ECF13767B57DEF145AD8A4E935C77C /* UMExportedModule.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 0D46A258DC75D21C32E1EE87F82A5679 /* FIRCLSPackageReportOperation.h in Headers */ = {isa = PBXBuildFile; fileRef = C335D0C23B2DA8C1FF4D4D1B65B1F207 /* FIRCLSPackageReportOperation.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 0D57F7DD6E0CB299B21247D3A60391CA /* ProducerConsumerQueue.h in Headers */ = {isa = PBXBuildFile; fileRef = A4AC4A18649390E71529D211141C6CF9 /* ProducerConsumerQueue.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 0D66A6F156E3003BF80656EBF866FB24 /* RCTSegmentedControlManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 2BD45D297B804D133CC7BF454757DF21 /* RCTSegmentedControlManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 0D6873742750ADEF4D505AE59C78F02E /* DistributedMutex.cpp in Sources */ = {isa = PBXBuildFile; fileRef = F02EE84B34FF166699B9607FA173C25A /* DistributedMutex.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -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\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors"; }; }; - 0D6B2CE35D231D542AD7E1ADCC961B7C /* GULReachabilityChecker+Internal.h in Headers */ = {isa = PBXBuildFile; fileRef = E531E7D2B3ED3E5A8881EEFD0CC0A77B /* GULReachabilityChecker+Internal.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 0D75B9D576357B83D4357CB7250F21C2 /* WaitOptions.cpp in Sources */ = {isa = PBXBuildFile; fileRef = BAB895311E1541DB93B0995E28ABA13F /* WaitOptions.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -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\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors"; }; }; - 0D85A62F967954499B5879445363004F /* ThreadLocal.h in Headers */ = {isa = PBXBuildFile; fileRef = 0A56B007166F99AFBC7ED5B55A6B28B0 /* ThreadLocal.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 0D8940FEA44203FDE17C495A5A3A04AA /* RCTLayout.h in Headers */ = {isa = PBXBuildFile; fileRef = DA9882DBA3E80B8310FB0D89D0130D4B /* RCTLayout.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 0DAD7A8B645904C334FE6DD725DC39EC /* FBLPromise+Timeout.h in Headers */ = {isa = PBXBuildFile; fileRef = B167633F9DF72ADB205A2AECBB9C05A5 /* FBLPromise+Timeout.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 0DEA069FF88127C8E375366F7C8177BC /* RSocketErrors.h in Headers */ = {isa = PBXBuildFile; fileRef = B0FCCFB255C5A631079CFB219A9AB261 /* RSocketErrors.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 0DEAE518FDBB5DD5A873E01195A4462E /* ThreadLocalDetail.h in Headers */ = {isa = PBXBuildFile; fileRef = 9B691F81785E6B2010292AA5926E20DD /* ThreadLocalDetail.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 0E03ED4005DD6655E3DFC600FEF385FA /* FIRCLSFABNetworkClient.h in Headers */ = {isa = PBXBuildFile; fileRef = 341F4134AE669A7FD76D0685541CEAAF /* FIRCLSFABNetworkClient.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 0E11052DFA9B41FBC16674C954577139 /* Uri-inl.h in Headers */ = {isa = PBXBuildFile; fileRef = 450830B6145DACC4C6D5A7DC4011A9DB /* Uri-inl.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 0E147C9D63E0EC905C4E458392D377F2 /* SDWeakProxy.m in Sources */ = {isa = PBXBuildFile; fileRef = CFADAE6600C315D4EFB5CC5D47467A27 /* SDWeakProxy.m */; }; - 0E15DB2C9F2CE2F0E86FC42C7668D03E /* Dirent.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 0BCE31A8D64EFB8D1E1ADDB316355ADA /* Dirent.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -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\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors"; }; }; - 0E1CDAD5AD31BADAD35669CA00758F72 /* PicoSpinLock.h in Headers */ = {isa = PBXBuildFile; fileRef = 32C09F0FA9D8B1AFE6F4D9994E4B577C /* PicoSpinLock.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 0E20698DEA1CA8991DE22CAB3880CC54 /* AsyncSignalHandler.cpp in Sources */ = {isa = PBXBuildFile; fileRef = C7C93169AF188C480F80B2DB487D1E57 /* AsyncSignalHandler.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -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\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors"; }; }; - 0E234EE5851EF999F8969F927AD25F6D /* RCTScrollContentShadowView.h in Headers */ = {isa = PBXBuildFile; fileRef = B8596D6EBD7AD819A94AE4D14F360601 /* RCTScrollContentShadowView.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 0E25FC030131787A144DF21878B8B00E /* Cast.h in Headers */ = {isa = PBXBuildFile; fileRef = EB7484EC228A3F3928B29F2172BFC923 /* Cast.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 0E2E2C6FF5241928DEBD933F4B74BA08 /* RNJitsiMeetViewManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 98E57AADE4A8D369C30FBB97722F8FB5 /* RNJitsiMeetViewManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 0E39E30826C84D175DAD1DB562D03E70 /* React-jsiexecutor-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = EFD4EBBD38CDFD28C3A24C71E03FB0D2 /* React-jsiexecutor-dummy.m */; }; - 0E42668C70E847678AFFBE1C8C9D2860 /* muxedit.c in Sources */ = {isa = PBXBuildFile; fileRef = 9D9E65506D61DF8C18A834C7563C7C8D /* muxedit.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; - 0E44DFF7A0B30F4FE6A10615FE0FB471 /* GDTCORConsoleLogger.h in Headers */ = {isa = PBXBuildFile; fileRef = ED59A322A00B63535E5F9FE1CC01764D /* GDTCORConsoleLogger.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 0E48D6CF3A56778E613A4D8FA47E7180 /* IPAddressSource.h in Headers */ = {isa = PBXBuildFile; fileRef = 3A22E60D5FD59C685BF2A17BFE1C94FB /* IPAddressSource.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 0E4F2F8E81779EB7E92527D8A48ACAAE /* FIRCLSReport.m in Sources */ = {isa = PBXBuildFile; fileRef = B93E72F5981D76CB887E4C865D7B3A1E /* FIRCLSReport.m */; }; - 0E67453BFB0635F64536D04BEB572DAC /* AsyncPipe.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 300B9EB55C9B47A2297C2359CE720EA5 /* AsyncPipe.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -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\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors"; }; }; - 0E75A51375C4953BB8691BF8B6359CD3 /* BSGEventUploadFileOperation.m in Sources */ = {isa = PBXBuildFile; fileRef = 94A96617407F7DDFF6A60E846D25757B /* BSGEventUploadFileOperation.m */; }; - 0E7B97ACEBDF484ACAA61916D907A119 /* RCTMacros.h in Headers */ = {isa = PBXBuildFile; fileRef = 168E250D320FDE86CCB24E146A6487D0 /* RCTMacros.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 0E7ECDC6B6EC7025AE39E85209C03639 /* RCTConstants.m in Sources */ = {isa = PBXBuildFile; fileRef = 99E3822B579F39D825E4D810F4C4351F /* RCTConstants.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - 0E8135CA2F60E1532E6FD995BCE3A2A6 /* RCTEventDispatcher.h in Headers */ = {isa = PBXBuildFile; fileRef = 50CC8B1CF4B75396D57F35580E672455 /* RCTEventDispatcher.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 0E975B760052C9632F66B2F4DB4388E0 /* RAMBundleRegistry.cpp in Sources */ = {isa = PBXBuildFile; fileRef = E739090C6C03C989B43BF82B69633336 /* RAMBundleRegistry.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - 0E9CBDAECA6866FFD03AD07254334712 /* File.h in Headers */ = {isa = PBXBuildFile; fileRef = 58A9B9AC86A3C640CA3F1826C1B01A7E /* File.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 0E9D3660817D729B205D8A6BF9F41C63 /* Types.h in Headers */ = {isa = PBXBuildFile; fileRef = 86DBDB5227F92345841DF5233237B253 /* Types.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 0EB4F2CD7C83F53EE8507A549B82376F /* YGStyle.cpp in Sources */ = {isa = PBXBuildFile; fileRef = A5A8A6223D3018087503ED099D20C803 /* YGStyle.cpp */; settings = {COMPILER_FLAGS = "-fno-omit-frame-pointer -fexceptions -Wall -Werror -std=c++1y -fPIC -fno-objc-arc"; }; }; - 0EC8C2ED9AE8572B3AF3E760EB1853F3 /* lossless.c in Sources */ = {isa = PBXBuildFile; fileRef = 84C6B17C8D76B76582EE0FA44BC1C73B /* lossless.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; - 0ECABF3238BC16C0456A9A55D13E78C7 /* BugsnagEventDeserializer.m in Sources */ = {isa = PBXBuildFile; fileRef = 73F9C5FBFBBC5A005A4AE1FE0927089F /* BugsnagEventDeserializer.m */; }; - 0EEA702D30D384D33244ABFEB10689C4 /* RCTBaseTextInputView.h in Headers */ = {isa = PBXBuildFile; fileRef = 075FCEEF9548E5D0153233C7A55D489D /* RCTBaseTextInputView.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 0F14CAC101861D13A1B71E08CB3C109A /* NSData+ImageContentType.h in Headers */ = {isa = PBXBuildFile; fileRef = 2617B3D90DC123054065DC048C392F4B /* NSData+ImageContentType.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 0F2AAE10F9BA1DED4E711A3FBA2E1649 /* RNRotationHandler.m in Sources */ = {isa = PBXBuildFile; fileRef = 5A89A78A49C5BA532B42B922603F10D5 /* RNRotationHandler.m */; }; - 0F2C447A8B2E00B012ED4BA187C11448 /* BugsnagThread.m in Sources */ = {isa = PBXBuildFile; fileRef = 581DB7D061A947F37F56A814CD0A96F3 /* BugsnagThread.m */; }; - 0F49A2E9D56B8E78B5A453E9F7A788D9 /* FlipperPlugin.h in Headers */ = {isa = PBXBuildFile; fileRef = 521AD8BDBE37B570B725AD6291946FEC /* FlipperPlugin.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 0F5E9ECC5E6943F852F867A054E10DC0 /* IOS7Polyfill.h in Headers */ = {isa = PBXBuildFile; fileRef = C25717694583716545F087E9F69CADB0 /* IOS7Polyfill.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 0F77C1E509E3104168A71A86B936A8CF /* SKApplicationDescriptor.m in Sources */ = {isa = PBXBuildFile; fileRef = 3751C8EE9A818AABDBD2B0660FC9FF6E /* SKApplicationDescriptor.m */; settings = {COMPILER_FLAGS = "-DDEBUG=1 -DFLIPPER_OSS=1 -DFB_SONARKIT_ENABLED=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -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"; }; }; - 0F7CC1A3FD78376CE863CBFC09ED9F28 /* SDImageCachesManagerOperation.m in Sources */ = {isa = PBXBuildFile; fileRef = F4C353ED5FA2A9612D4901DA4A0899F8 /* SDImageCachesManagerOperation.m */; }; - 0F7CF5403ADB08D9D9C0EE0A5CEF0194 /* TurnSequencer.h in Headers */ = {isa = PBXBuildFile; fileRef = E8A76263AAF9CD26313B2E6488D9987E /* TurnSequencer.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 0F9130F61FA3B645FE44EFAD1A479346 /* token_enc.c in Sources */ = {isa = PBXBuildFile; fileRef = D375D0FFEF2CAE4C446E135EF0E4CEC6 /* token_enc.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; - 0F9BFE9CF36FA0EF856FBCFD9350F5EE /* defer-internal.h in Headers */ = {isa = PBXBuildFile; fileRef = 30D81A3D660D3599BC10A49C1F29EEE0 /* defer-internal.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 101F0262D022C0B35AF8F8C7B4A91D8A /* AESCrypt.h in Headers */ = {isa = PBXBuildFile; fileRef = 8788C27754B696BDA8DD6600A957E14B /* AESCrypt.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 10292FF65AB64E249B2D1D74E2BEFB8F /* Shared.m in Sources */ = {isa = PBXBuildFile; fileRef = 9BF3A3327FE1B27155736ADEAAC66603 /* Shared.m */; }; - 102EAE87B33FDA5963921950F00222C8 /* RCTAlertController.h in Headers */ = {isa = PBXBuildFile; fileRef = ED66E2553655F4848CEB00B46D764060 /* RCTAlertController.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 1043542EFBACD82404025754B2B8C645 /* SKNodeDescriptor.mm in Sources */ = {isa = PBXBuildFile; fileRef = AE8CA691F749AEA3C9AE791BCF1E2D3B /* SKNodeDescriptor.mm */; settings = {COMPILER_FLAGS = "-DDEBUG=1 -DFLIPPER_OSS=1 -DFB_SONARKIT_ENABLED=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -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"; }; }; - 1048ECC158B691331C5D792EB0D90734 /* YogaKit-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 4D6055979B22944E1EA738BA0EF95ABB /* YogaKit-dummy.m */; }; - 104BD56C69E46C92CED55268081D3BCE /* FutureDAG.h in Headers */ = {isa = PBXBuildFile; fileRef = 6D8BCB33436BE48FAD4C6E8DD4A9C0C6 /* FutureDAG.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 104F9EF0ED66D535CE89BC7F80EB01C1 /* FrameFlags.h in Headers */ = {isa = PBXBuildFile; fileRef = 950A7E73159E8A8BE072290647F86D8C /* FrameFlags.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 1065FB0A746A628EAB50F5C2F33DAFDC /* RangeCommon.h in Headers */ = {isa = PBXBuildFile; fileRef = 38C5A3D20CC6919B029171559FD2EDEB /* RangeCommon.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 1088988558EC0A36DB60F8F23FFF1BB2 /* RCTVersion.h in Headers */ = {isa = PBXBuildFile; fileRef = B3DCE9A7714DB904FBF656639EC14D50 /* RCTVersion.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 10984B4E10D608B72B31D7E8925F75E9 /* nanopb-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 0510A61DB27979267FAF3006A1A0C607 /* nanopb-dummy.m */; }; - 10A2E9D8B1191C197E191DA127F184AE /* RCTDivisionAnimatedNode.h in Headers */ = {isa = PBXBuildFile; fileRef = ABC0FE0AC4418ABB1EABFD7ED37E3D6F /* RCTDivisionAnimatedNode.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 10D758BBD9D41BC838C1D52EB7667CE4 /* LifoSem.h in Headers */ = {isa = PBXBuildFile; fileRef = DEB90D2F0F706C27B95CF613DC87C589 /* LifoSem.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 11016D83FDA992323281FA44C39B2C0A /* NSTextStorage+FontScaling.h in Headers */ = {isa = PBXBuildFile; fileRef = 4C2EDAD5ABAACBC7C7EDE94447778269 /* NSTextStorage+FontScaling.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 11231378DFABBFD74020590AA4BFDFDF /* RNSScreenStackHeaderConfig.m in Sources */ = {isa = PBXBuildFile; fileRef = 5D404758C9F5D8AB79A1DF5B3E7D2E32 /* RNSScreenStackHeaderConfig.m */; }; - 114F4718FDDDBFD9FD544656F5E57C21 /* JSINativeModules.h in Headers */ = {isa = PBXBuildFile; fileRef = 27E7AC1CF68C839CBE82198DC24EFFB0 /* JSINativeModules.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 1154566AF79CF1B06B936239C6E36FD4 /* ReentrantAllocator.h in Headers */ = {isa = PBXBuildFile; fileRef = 6533957012F837CCA5A902610A989D73 /* ReentrantAllocator.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 115EFCFD35A75A5E936E522290FAAD1A /* RCTImageView.mm in Sources */ = {isa = PBXBuildFile; fileRef = 7887E907B8FD1216406FF6C50AD5A66F /* 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"; }; }; - 1182339CF6F392E970580632952143BC /* RCTPackagerClient.m in Sources */ = {isa = PBXBuildFile; fileRef = E884679A003053FDD31145859496BA59 /* RCTPackagerClient.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - 11BB8F5AF8FE15F95E28A4121695BF90 /* ScheduledFrameTransport.h in Headers */ = {isa = PBXBuildFile; fileRef = 2A0DE5C69F4A14E3A590C7453E23FDAD /* ScheduledFrameTransport.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 11BD448B800EFA8D829DFFF520EC4DAD /* DiscriminatedPtrDetail.h in Headers */ = {isa = PBXBuildFile; fileRef = 2A8DBA4F20110FCD2B5510ADC12462F8 /* DiscriminatedPtrDetail.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 11C23AEF2F38006EC578194CFBFF805B /* RCTSinglelineTextInputViewManager.h in Headers */ = {isa = PBXBuildFile; fileRef = E60B63962F0015EBE01DA39997A2EC56 /* RCTSinglelineTextInputViewManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 11CB25300FA0546FC9825C2542B14EB9 /* stl_logging.h in Headers */ = {isa = PBXBuildFile; fileRef = 9F9676C4A5E6C9AE62620BAF6A929F33 /* stl_logging.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 11D675AEE1B6499C38A71F9837ADE553 /* SDAnimatedImage.m in Sources */ = {isa = PBXBuildFile; fileRef = 1EB3BCD632748D1750199C21F0F1FFF8 /* SDAnimatedImage.m */; }; - 11D7CFEEC5EE5E2EC2DB4FE9B96FF92F /* FIRCLSApplication.h in Headers */ = {isa = PBXBuildFile; fileRef = A99D740C046DC693B8C279E9906F5ED3 /* FIRCLSApplication.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 11F37E96B1F528A8521E2DEAA8F5CFD1 /* AtomicIntrusiveLinkedList.h in Headers */ = {isa = PBXBuildFile; fileRef = 9E6BB66DD78A86120B879D7FAFC4D31C /* AtomicIntrusiveLinkedList.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 11FBC5BAA3BD1ED52108D9962D3AACD9 /* SDImageCacheDefine.m in Sources */ = {isa = PBXBuildFile; fileRef = 612C955AED499AA9C055FF8D5FDD1640 /* SDImageCacheDefine.m */; }; - 121897906ACB87FDAEFB104BC38BC0FE /* RCTSpringAnimation.m in Sources */ = {isa = PBXBuildFile; fileRef = 9F53199A8BA2FDC86956E4B0A37BDC5C /* 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"; }; }; - 1233C519B19E5A57FD2DA9ABDEBFB400 /* Replaceable.h in Headers */ = {isa = PBXBuildFile; fileRef = 53418337E874FD7F99613A3D213BEA32 /* Replaceable.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 12500EB17F731C4F4AC159C487E79F66 /* RCTStyleAnimatedNode.h in Headers */ = {isa = PBXBuildFile; fileRef = F9C5B792F5BED323EE2A3FD36FAE2E44 /* RCTStyleAnimatedNode.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 1269D4C0ED48C68E928D7F77536B0416 /* RNCSafeAreaViewManager.m in Sources */ = {isa = PBXBuildFile; fileRef = 00669D5EABDCDD0B6F93F1605C253F1C /* RNCSafeAreaViewManager.m */; }; - 126B230C97A33619996E23DB8D590DCF /* OpenSSLLockTypes.h in Headers */ = {isa = PBXBuildFile; fileRef = 7C417B868FBE646E1842489AC453BE29 /* OpenSSLLockTypes.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 127B5D7A8E53E23D7AC6676E475E9C65 /* IPAddress.h in Headers */ = {isa = PBXBuildFile; fileRef = 218686AD810DEA476DDD6BF4C3AFEBFE /* IPAddress.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 1297EBA70554372883595F79E1663C02 /* RNGestureHandler.h in Headers */ = {isa = PBXBuildFile; fileRef = C0F3BA7F568A29FDD4CE4A27DD46EF52 /* RNGestureHandler.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 12AB36FFDAF2ACC6F5AC654C157335B1 /* SanitizeLeak.h in Headers */ = {isa = PBXBuildFile; fileRef = 6EB546ADA24193FABD659F8D647F5A17 /* SanitizeLeak.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 12C835F126FBB52066DD4CADEB804178 /* Singleton.h in Headers */ = {isa = PBXBuildFile; fileRef = E99B73487DA7D10636D3E972B48C58CC /* Singleton.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 12CC3A8B57436CFE77772345EA6C6851 /* BSG_KSSystemInfoC.h in Headers */ = {isa = PBXBuildFile; fileRef = 7E82C6B85AA6A1A43C7EA0B9C5B0DBA1 /* BSG_KSSystemInfoC.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 12D4E6E233529E574209605F3F1B6187 /* FIRInstallationsStoredAuthToken.m in Sources */ = {isa = PBXBuildFile; fileRef = C2A38FCFC0C7CBF5FB62C446C28158CD /* FIRInstallationsStoredAuthToken.m */; }; - 12D8142AAF65EE8A115784DB981CBA55 /* KeyCommands-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = DCEA8F941CDD15EB2069935B316A55BB /* KeyCommands-dummy.m */; }; - 12DC73C66B5673AC2354F73B39215E13 /* Future.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 839253E53A9EB87E2EA39F80D36577BB /* Future.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -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\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors"; }; }; - 12EB6C30173AE1FE23E81096A1843A76 /* RCTDevLoadingViewProtocol.h in Headers */ = {isa = PBXBuildFile; fileRef = 8DF9154B625CDF64054C782A8A018631 /* RCTDevLoadingViewProtocol.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 1338A8EA0E032F70A0D1A3C362C91AFC /* Parallel-inl.h in Headers */ = {isa = PBXBuildFile; fileRef = 5E7AC2F842CF15F2E25C14CED3929FF8 /* Parallel-inl.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 134261A7093D03CEB9C7E7A6C544F6A4 /* Lazy.h in Headers */ = {isa = PBXBuildFile; fileRef = A78FF933AD4698C6020BBB8A63C66E0A /* Lazy.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 1347A606F2FFC757B47E7BB520B989AB /* BugsnagClient.h in Headers */ = {isa = PBXBuildFile; fileRef = F14F1528780DEA27C1649BEE79620E7E /* BugsnagClient.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 134B39C8B0582CDFC9643B5EA6618A35 /* AtomicSharedPtr.h in Headers */ = {isa = PBXBuildFile; fileRef = ED47FD185B8AA82F02D6F845DC61469F /* AtomicSharedPtr.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 134C462F5E3E91AB6424CDE8FE25D759 /* AtomicReadMostlyMainPtr.h in Headers */ = {isa = PBXBuildFile; fileRef = 33A01B20A0E6F66087CEA56A381AD053 /* AtomicReadMostlyMainPtr.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 1356281DF6E2E54C8DD966A31CCCC430 /* Base.lproj in Resources */ = {isa = PBXBuildFile; fileRef = 3B16F42AC62B1A9A9AE57DE532764A2F /* Base.lproj */; }; - 13567409C076ABF0000D237F64B0592C /* BSGAppHangDetector.h in Headers */ = {isa = PBXBuildFile; fileRef = B41E122A072DAC1D36112A10BA073686 /* BSGAppHangDetector.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 136D5A6A4A59F5D8C66443C14D2C1EEA /* RCTDiffClampAnimatedNode.h in Headers */ = {isa = PBXBuildFile; fileRef = FCB95C6F1EA0545E85DE1112C478B3C7 /* RCTDiffClampAnimatedNode.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 1372E77F2D9C1B6E7E8A31D47D360AA9 /* Chrono.h in Headers */ = {isa = PBXBuildFile; fileRef = 0846660998DB5993367CE75C3BE71D85 /* Chrono.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 1392EFE34F5351584A0BFC54B6E9B122 /* Hazptr.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 09C34605C950C91E8CCCD2F4AEDB7101 /* Hazptr.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -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\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors"; }; }; - 13955229B8A946EEFEF1D5D623011D34 /* Bugsnag.m in Sources */ = {isa = PBXBuildFile; fileRef = B7358C94276CCEC1B4AE7E9A1A8E374F /* Bugsnag.m */; }; - 13BC94F0ACAA7972E91589EB80D2CEC3 /* RCTConvert+RNNotifications.h in Headers */ = {isa = PBXBuildFile; fileRef = CBCA6480660BBE935E0D88687BB059A0 /* RCTConvert+RNNotifications.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 13C7BD20D3113864BABE20B2F99D7BAF /* FIRCLSDownloadAndSaveSettingsOperation.h in Headers */ = {isa = PBXBuildFile; fileRef = 6B66C21CAE7DE77D9BAA440A406B201D /* FIRCLSDownloadAndSaveSettingsOperation.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 13CEB1B34518BF11E92D2DDDC9A7BA6B /* BSG_KSCrashReportWriter.h in Headers */ = {isa = PBXBuildFile; fileRef = 0539C95CC07C94AB1B181AEADF6BE8F3 /* BSG_KSCrashReportWriter.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 13E16B44E63706FF0E5C674809061546 /* json_pointer.h in Headers */ = {isa = PBXBuildFile; fileRef = 3B899CF40EB34555A58F17D2D7E0A951 /* json_pointer.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 13E1A2D5F0A75E3420CD568358A24BC5 /* Demangle.cpp in Sources */ = {isa = PBXBuildFile; fileRef = CC6D4C630EB514AF39E21E6867D5917F /* Demangle.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -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\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors"; }; }; - 13EB0662E44AF9A03E5F5C99C6311263 /* common_dec.h in Headers */ = {isa = PBXBuildFile; fileRef = 5C8840FC1E09D950CB658115B4791F05 /* common_dec.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 13EE8936994DA886A78F3DDB94CE6158 /* RCTCxxBridge.mm in Sources */ = {isa = PBXBuildFile; fileRef = 8698DF0DE08A137A8C816089106F8DA6 /* RCTCxxBridge.mm */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - 1443544E4ED78F9E2E9AF56A8DC2BD60 /* EXVideoPlayerViewControllerDelegate.h in Headers */ = {isa = PBXBuildFile; fileRef = F5B377F6105317F97F4A000A3DDB28B5 /* EXVideoPlayerViewControllerDelegate.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 14449585CAC8CBF314F07B4D5A137DE3 /* SDWebImageWebPCoder-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = FC882B53AD9232AB35FE1978D55A730F /* SDWebImageWebPCoder-dummy.m */; }; - 1446306986CDEAE5C94C1CFE4C38954B /* JemallocNodumpAllocator.h in Headers */ = {isa = PBXBuildFile; fileRef = C9FA6C28A33D0F7D55E824B7E43BB184 /* JemallocNodumpAllocator.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 144D114A7DC1DE69000B32118B0A96E6 /* BitUtils.h in Headers */ = {isa = PBXBuildFile; fileRef = 7ED7E10E5234C551A746021EEC0D7E11 /* BitUtils.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 145E5C9889C81DC42A6F91C853150B31 /* FrameTransport.h in Headers */ = {isa = PBXBuildFile; fileRef = F338801AAA68464A8DC5F21FC676D9B0 /* FrameTransport.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 146120BDF25A741ACB36FBB3F7D423B7 /* AsyncSocketException.h in Headers */ = {isa = PBXBuildFile; fileRef = 3179E362EF619F351025752F94B9DB5B /* AsyncSocketException.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 146446DE8FDB7D752B6D05DE8AC1F4FE /* FBLPromise+Recover.m in Sources */ = {isa = PBXBuildFile; fileRef = 6B283E3E1AF9FE53C336B499AB040D8C /* FBLPromise+Recover.m */; }; - 14768B0E04F9D20B36A81C8053DE7593 /* filters_msa.c in Sources */ = {isa = PBXBuildFile; fileRef = FA3D6C41645AC0376301D491D6A72F1B /* filters_msa.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; - 14856DAD4A55594243BC23FA9EF84730 /* InspectorState.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 8D4C7E239FF2B59CAAB77967C86A9E05 /* InspectorState.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - 14D462BC8D521629E0E1D310C7DAB77F /* Bugsnag.h in Headers */ = {isa = PBXBuildFile; fileRef = D1261855BFFA8311D0C7C5B1019EBC88 /* Bugsnag.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 14F281D6536469ACB45BD441C238638A /* react-native-jitsi-meet-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 957BDDA4643CD66E7752B7C7F1E09ECC /* react-native-jitsi-meet-dummy.m */; }; - 1530C2CF66266CCC6E80FC67BEE8A927 /* RCTActionSheetManager.h in Headers */ = {isa = PBXBuildFile; fileRef = BB43EAEC8B9375884DB2ADF6A88233BE /* RCTActionSheetManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 15338B99711412BD96A698765E0B1321 /* RCTConvert+FIROptions.h in Headers */ = {isa = PBXBuildFile; fileRef = A00C340A4B1A226F54946F261788FB14 /* RCTConvert+FIROptions.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 153A5B732952E7C63365C3CAFFF4F6E5 /* RCTNetworkPlugins.h in Headers */ = {isa = PBXBuildFile; fileRef = 1A7CE26C0CA1D4575095C3AD73588D7B /* RCTNetworkPlugins.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 15566368B07C8FF1757B356B83890F50 /* VirtualExecutor.h in Headers */ = {isa = PBXBuildFile; fileRef = CC10DEE2E7D3DEC467AC54EDE7E1CDED /* VirtualExecutor.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 156F1DA1AE62E86B8D961301962F189A /* Iterator.h in Headers */ = {isa = PBXBuildFile; fileRef = 39D1EEAFC914D6FEA74E28CDC4075CB6 /* Iterator.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 15896D76FDC427E83052344D7EA9934F /* RNGestureHandlerModule.h in Headers */ = {isa = PBXBuildFile; fileRef = FBCB658A9A1C862C5CC585CCE43230B6 /* RNGestureHandlerModule.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 15912E508F345264F8FDFCF99943287C /* symbolize.cc in Sources */ = {isa = PBXBuildFile; fileRef = 09548D9C5FD0A5969D3B8EF8CA6B4A54 /* symbolize.cc */; settings = {COMPILER_FLAGS = "-Wno-shorten-64-to-32"; }; }; - 15A3920A9F1E30B24992816F1CA30068 /* FIRCLSURLSessionUploadTask.h in Headers */ = {isa = PBXBuildFile; fileRef = 5A29B3E4A16627EEEB36AC28A8C68324 /* FIRCLSURLSessionUploadTask.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 15A8791056730A9BB4BA1A07699A6343 /* FIRInstallationsErrorUtil.h in Headers */ = {isa = PBXBuildFile; fileRef = 416D359A4FC7BB38FDA1EF50B2C9654C /* FIRInstallationsErrorUtil.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 15CFAD48298CA678AEDA3667952DED21 /* RCTSinglelineTextInputView.h in Headers */ = {isa = PBXBuildFile; fileRef = E213DA801612E3BBF9E1C0B2821BD9CA /* RCTSinglelineTextInputView.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 15FB394A4C9902611160F1F536177CC7 /* TurboModule.h in Headers */ = {isa = PBXBuildFile; fileRef = FAC851118E62DB911AC0EB77960EE97A /* TurboModule.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 16007FC7639A9F54CCC0A44512716282 /* Codel.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 293C236F257F950E2F2BF615684CE878 /* 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"; }; }; - 160F270DC385E9C00587FB20ADE2E7BF /* FlipperCertificateProvider.h in Headers */ = {isa = PBXBuildFile; fileRef = D18D8EE86A6247AEC17789C49CB93D6D /* FlipperCertificateProvider.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 1650CE838AC29A642C71D87CF42362F5 /* FIRCLSApplication.m in Sources */ = {isa = PBXBuildFile; fileRef = 8B03784A0DB6018C0A8088E56A9C06FB /* FIRCLSApplication.m */; }; - 1655530CE8102BC2892CABC9A306D4BF /* TurboModule.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 6AE76AE1AFE4CFEA4DBE648484A0B5B0 /* TurboModule.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - 16638CFEBFCF81BB884E5140AF782F42 /* RNCSafeAreaViewEdges.h in Headers */ = {isa = PBXBuildFile; fileRef = EE7B1FD6B52A6B8F1A82A3DAA4B1FBA0 /* RNCSafeAreaViewEdges.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 1672C114754B6CAAC3BC69A31C9525AA /* bignum.cc in Sources */ = {isa = PBXBuildFile; fileRef = E2775552BE0BE024476C10F95F7A12A2 /* bignum.cc */; settings = {COMPILER_FLAGS = "-Wno-unreachable-code"; }; }; - 1673F034CA68F7606F63648763284801 /* FBLPromise+Testing.h in Headers */ = {isa = PBXBuildFile; fileRef = 98B3C00ED1A48B9AFDFA6A37D768C053 /* FBLPromise+Testing.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 167F60DF201EAB0EC7ECECFB82E1FA09 /* RCTMultilineTextInputView.h in Headers */ = {isa = PBXBuildFile; fileRef = 0FE5ED29CEF5FAFC8F13E402F3E4412C /* RCTMultilineTextInputView.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 1691F850D2ACDB7C3BADD384F07AA42B /* SDImageGraphics.h in Headers */ = {isa = PBXBuildFile; fileRef = B55ED6D43E31453B520A2C98A7BF77CC /* SDImageGraphics.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 169CB94A8FAE1994D99A6988D9B511FA /* SonarKitNetworkPlugin+CPPInitialization.h in Headers */ = {isa = PBXBuildFile; fileRef = D2322A3A37A78CF82ABE28C37D8CACA5 /* SonarKitNetworkPlugin+CPPInitialization.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 16CA9E974ECC97F08D260DFC96D1EB65 /* Unit.h in Headers */ = {isa = PBXBuildFile; fileRef = 7C29BD3BD584BB49CE36715D9D1254BD /* Unit.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 16CE118294D346BACF36CDEAB1285509 /* RCTTrackingAnimatedNode.h in Headers */ = {isa = PBXBuildFile; fileRef = D570269BE6A7372A8F825DF7468EFFD9 /* RCTTrackingAnimatedNode.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 16D6AF7A753D6159FAAFB4F548EE630E /* SKDispatchQueue.h in Headers */ = {isa = PBXBuildFile; fileRef = BED0871489A485AE4BFE22FE7FBC108E /* SKDispatchQueue.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 1702671AD26938F98625960823F9ED77 /* StringKeyedUnorderedMap.h in Headers */ = {isa = PBXBuildFile; fileRef = 3737F11E4FA8A02C2FB84B43465555B1 /* StringKeyedUnorderedMap.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 170AB88FAD0F4C61B341ACCDE34EF30D /* react-native-blur-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 02DA98992F84389AAB8E5B6036D0F305 /* react-native-blur-dummy.m */; }; - 17155D1A44E60966045927004E729A9D /* RCTNativeAnimatedModule.h in Headers */ = {isa = PBXBuildFile; fileRef = 37BC4DD8E2155A8B4DB3B8EB9AB6022C /* RCTNativeAnimatedModule.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 17172BA83412F990A66E82F33D2DFC2E /* RNDeviceInfo.m in Sources */ = {isa = PBXBuildFile; fileRef = 3C12747050F11EA2EA2A16FFF839DC61 /* RNDeviceInfo.m */; }; - 171B547454AA62627C47E6CFADF298B3 /* Merge.h in Headers */ = {isa = PBXBuildFile; fileRef = 0263F9C5636F7B48EF2C7E0CE750C7E8 /* Merge.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 172889FF5706CEC02CCA7B1586449BD3 /* FIRCLSMachOSlice.h in Headers */ = {isa = PBXBuildFile; fileRef = F0AAE5E8D832ABA019BCFEACD02E56C8 /* FIRCLSMachOSlice.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 17424544A674FD7632997CF393933D47 /* RNCNetInfo.h in Headers */ = {isa = PBXBuildFile; fileRef = 7782E390EB5A04EF25130C2A2A8D343F /* RNCNetInfo.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 174E670016BD2714AE0B8268DF4E2814 /* SharedMutex.cpp in Sources */ = {isa = PBXBuildFile; fileRef = CF20904EF4194014012A59328286CE8D /* SharedMutex.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -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\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors"; }; }; - 1767480F3E2D5657F718A7C093918179 /* SingletonThreadLocal.h in Headers */ = {isa = PBXBuildFile; fileRef = B88B9FC40F2A4122608EDB5E15FAF6AE /* SingletonThreadLocal.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 17683473E0FF2B42CCCF9FAB9E17557C /* FlipperState.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 97B8EA718F1DDCEEF99ACC9109F2026F /* FlipperState.cpp */; settings = {COMPILER_FLAGS = "-DFLIPPER_OSS=1 -DFB_SONARKIT_ENABLED=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -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"; }; }; - 17787FF8AE61CF0DF18B6E6CEE91FA72 /* ReadMostlySharedPtr.h in Headers */ = {isa = PBXBuildFile; fileRef = F64742258C6EF3E1F9C88DADBD27295E /* ReadMostlySharedPtr.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 178286487A3917A52ADDA30234B596A8 /* RCTInputAccessoryViewContent.h in Headers */ = {isa = PBXBuildFile; fileRef = C6047C5622988513A77CF76E8BE0CD9F /* RCTInputAccessoryViewContent.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 17841417263BB19547CE11E028BE5168 /* Color+Interpolation.h in Headers */ = {isa = PBXBuildFile; fileRef = 003B854D5742DC9F339D3D3F25B09576 /* Color+Interpolation.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 178418AB535645E5813031843C43EDB3 /* TOCroppedImageAttributes.m in Sources */ = {isa = PBXBuildFile; fileRef = 4EBC54B71950E3E9223F51E241B05BA5 /* TOCroppedImageAttributes.m */; }; - 179AC0C613BF4E4496C979691FFABAF9 /* RNFetchBlobNetwork.m in Sources */ = {isa = PBXBuildFile; fileRef = 8B7051532588B84E1D86679E3355DAE6 /* RNFetchBlobNetwork.m */; }; - 179F1B7CF16289D0041B9FD46B6C9A33 /* Sse.h in Headers */ = {isa = PBXBuildFile; fileRef = FEEA2711BAA6C175F6373B87C94FEA5C /* Sse.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 17A9BA44633DF846494EA2883A19B344 /* FIROptions.m in Sources */ = {isa = PBXBuildFile; fileRef = 2BB10CDB95E75C6961B3BB55A463C9BF /* FIROptions.m */; }; - 17ABEC1193D0F191B283A63F529DD88D /* FormatArg.h in Headers */ = {isa = PBXBuildFile; fileRef = 14562566D7E2D611A5AEB28A2033E764 /* FormatArg.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 17B62C34B0212E5F525DD2DC5CBB4046 /* vlog_is_on.cc in Sources */ = {isa = PBXBuildFile; fileRef = 64F1C6DC263490A0830F3D93F7AEC22D /* vlog_is_on.cc */; settings = {COMPILER_FLAGS = "-Wno-shorten-64-to-32"; }; }; - 17BEA2B9B80399632CD7633B7F79F475 /* RCTCxxUtils.mm in Sources */ = {isa = PBXBuildFile; fileRef = BF55835DEC39E3DA93EFFAB8A7E93815 /* RCTCxxUtils.mm */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - 17CD512E8F7DBE4D02B042069421E8BC /* RCTAnimationUtils.h in Headers */ = {isa = PBXBuildFile; fileRef = 275B06783B4CBD407AB1C9906AB4FC35 /* RCTAnimationUtils.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 17F234096E694DD37AE892CFCF12E038 /* SDMemoryCache.m in Sources */ = {isa = PBXBuildFile; fileRef = B42749E166A6F32EB791289DDD896CB2 /* SDMemoryCache.m */; }; - 17F81717D18C092C2D664D60B5D17FEB /* utils.h in Headers */ = {isa = PBXBuildFile; fileRef = 845121F58E60C9853B35C0969291ADC2 /* utils.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 17FA4798975CD4D76DFA2CA17240306E /* HazptrThrLocal.h in Headers */ = {isa = PBXBuildFile; fileRef = 7BDF2E19961193DD18051E70754886F2 /* HazptrThrLocal.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 18035A2E53C70220C42E897E695D0DAB /* FlipperResponderImpl.h in Headers */ = {isa = PBXBuildFile; fileRef = 45AFBA3BB759B887B744ADC25D4DF6D7 /* FlipperResponderImpl.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 182098CB0D0FEC18AF86F463EF9378F0 /* FIRCLSFileManager.m in Sources */ = {isa = PBXBuildFile; fileRef = 59A422662B4C7E84503A2F4A62B082F6 /* FIRCLSFileManager.m */; }; - 1828B92ABC2D0B980F416A1A705DD84B /* IOThreadPoolExecutor.h in Headers */ = {isa = PBXBuildFile; fileRef = 5C6F10F55828C306F9087EA3BE6FFA76 /* IOThreadPoolExecutor.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 184A2738957445716377307432FFB525 /* JSCExecutorFactory.mm in Sources */ = {isa = PBXBuildFile; fileRef = 6D15A2BDD2DD1DDE07F55DA3ED1F6D2A /* JSCExecutorFactory.mm */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - 184B7378A165D30CF4D897FC088B6A3B /* YGNodePrint.h in Headers */ = {isa = PBXBuildFile; fileRef = AFA925ABF9B55E902B2FC9DB241E3192 /* YGNodePrint.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 1876B071407BDA1BC8DC4A9D72D53653 /* F14Policy.h in Headers */ = {isa = PBXBuildFile; fileRef = EAF20ABA35CE7DAC773C403F7BD7C4F4 /* F14Policy.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 18975E03D53D1621B2A98B40A41F173E /* RCTLinkingManager.mm in Sources */ = {isa = PBXBuildFile; fileRef = E4AC6DA50FDB54B47545655896A80D4E /* 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"; }; }; - 18AA5C3668BDE6115B6B0FBDE761D7AE /* FIRInstallationsLogger.h in Headers */ = {isa = PBXBuildFile; fileRef = E240658062D7BD715785CFECCEAF544C /* FIRInstallationsLogger.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 18ADE7806255BA0087D7EF5FE11A9F34 /* REAValueNode.h in Headers */ = {isa = PBXBuildFile; fileRef = 82ED9F1782E3FD8F7E0CB9DA88B7D1C7 /* REAValueNode.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 18BB11E87ADBBBFAD61E80195A60466E /* UMReactNativeAdapter.h in Headers */ = {isa = PBXBuildFile; fileRef = 2995DF92AA3FBAEA5B1D8A964592AFC5 /* UMReactNativeAdapter.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 18CAE40387B841447FF92D7A5DE89369 /* rescaler_utils.h in Headers */ = {isa = PBXBuildFile; fileRef = 69E9EBCDB1ECAB7A20C2934E5487BCD8 /* rescaler_utils.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 18FEE97804D02EBF8548F403287A8E13 /* filters_sse2.c in Sources */ = {isa = PBXBuildFile; fileRef = 70F794C19EB963A9D7CFF9111E434BEC /* filters_sse2.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; - 1902AC52CCDA099D0C77B2C822170BF0 /* SDImageGIFCoder.h in Headers */ = {isa = PBXBuildFile; fileRef = 2CA2B960B9E1731D599484C0CE3BA035 /* SDImageGIFCoder.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 191381381246BD51F53D82A3FAC983BB /* FIRCLSHost.h in Headers */ = {isa = PBXBuildFile; fileRef = 9A0DB699138E7ADD7B50FBB90AF68DDE /* FIRCLSHost.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 19140B66C17B626ACD9B1344DFC89002 /* evutil_rand.c in Sources */ = {isa = PBXBuildFile; fileRef = 0D9C23B493FEC20AFFD1BE25C3AE1594 /* evutil_rand.c */; }; - 1920FCE36808E9EF6B045689ED3E1F8A /* SDWebImagePrefetcher.h in Headers */ = {isa = PBXBuildFile; fileRef = ACF202B61D194289B0E43EA1932CB5ED /* SDWebImagePrefetcher.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 1925C8BD802F4AEFD79E05F9B89015CD /* pb_common.h in Headers */ = {isa = PBXBuildFile; fileRef = 2943A07F6C1324D10B05C1B00DB35875 /* pb_common.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 19318B20CF5DFE527CF77A58B2AB233B /* VibrancyViewManager.h in Headers */ = {isa = PBXBuildFile; fileRef = B1B5F8F61C6845AF170F2EED2DAE8326 /* VibrancyViewManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 195934DEE449B865C196D000ED30C1AD /* strtod.h in Headers */ = {isa = PBXBuildFile; fileRef = 97D8DC1607DCE53508DE8A2DF929757A /* strtod.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 19600F12693B457DBCED7262CE692645 /* ThreadedExecutor.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 01742674828B7DB5C4115878466F5134 /* ThreadedExecutor.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -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\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors"; }; }; - 1980AA2070B5D05EE9D82CEA0657A228 /* diy-fp.h in Headers */ = {isa = PBXBuildFile; fileRef = 5DA06A75A3E5419934A4FD58166B2332 /* diy-fp.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 199D7DAAC28C6E00E2EB1928E4FB7E28 /* SDImageLoadersManager.h in Headers */ = {isa = PBXBuildFile; fileRef = D4E8533611C40EE3FCB6EF0597A4181F /* SDImageLoadersManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 19A604CDD4BB3615C930FD458FB317C7 /* RCTComponentEvent.m in Sources */ = {isa = PBXBuildFile; fileRef = E73576E4DD271746E8BF6040262BEDEA /* RCTComponentEvent.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - 19A859C754D9D92295FCE3E2925B68AD /* RCTHTTPRequestHandler.mm in Sources */ = {isa = PBXBuildFile; fileRef = DFE622CE288FAC9F6429A57296A9C7DA /* 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"; }; }; - 19B01D769D300D03144CE77C90F0E24E /* BugsnagStateEvent.m in Sources */ = {isa = PBXBuildFile; fileRef = 0E588F486C0468F453CA323CCA1D6C38 /* BugsnagStateEvent.m */; }; - 19BC35952A4222CBA76BFCC510F8C8B4 /* ThreadedRepeatingFunctionRunner.h in Headers */ = {isa = PBXBuildFile; fileRef = 9BBA1BDA6B1594B64653392F0F7A2436 /* ThreadedRepeatingFunctionRunner.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 19BD8B956040B5CDF9D802839ED1A248 /* FlipperKit-umbrella.h in Headers */ = {isa = PBXBuildFile; fileRef = F0E13337EC10017E2AFDE5434B762C18 /* FlipperKit-umbrella.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 19BF795BEBEBDD5B3FEF1E20160B7B3D /* SafeAssert.h in Headers */ = {isa = PBXBuildFile; fileRef = 65C750CF4B56A5F3925533462CABEC7A /* SafeAssert.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 19CE1C2C80280F075781649BA2D1586C /* JsArgumentHelpers.h in Headers */ = {isa = PBXBuildFile; fileRef = 972A33A68333AB5F1158E2DD2B039E97 /* JsArgumentHelpers.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 19DA084E18BB0C5EDB193E347F57CD33 /* HighlighterViewManager.h in Headers */ = {isa = PBXBuildFile; fileRef = B7BC91B67A80E1AB170A8F6E59819C61 /* HighlighterViewManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 19E023F7AFA0C82E80A9B8AA7C9E1BEB /* FlipperConnectionManagerImpl.h in Headers */ = {isa = PBXBuildFile; fileRef = A278CD47BA9CBE42767AD48876A27A33 /* FlipperConnectionManagerImpl.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 19EC8AE3BE8DF10A03B36ED6A32716E6 /* ClockGettimeWrappers.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 8E4879361D6DE644A9C5A10461131D73 /* ClockGettimeWrappers.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -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\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors"; }; }; - 19F8A3E15F562BDB3BE4EB669EC0865B /* Atomic.h in Headers */ = {isa = PBXBuildFile; fileRef = 3D4F5116A90608016B3C8971E284CBB8 /* Atomic.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 1A1C8CC2FE5020E056D6C5B0BFCC0A26 /* backward_references_enc.h in Headers */ = {isa = PBXBuildFile; fileRef = 961AD9B86A4FFB2F74738BAF22D70B68 /* backward_references_enc.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 1A39E8A5DB4B6AC65E3B4A71519D4A5A /* BugsnagSession.h in Headers */ = {isa = PBXBuildFile; fileRef = 31F582B92EDB6EB3FBA239D9BC06A49B /* BugsnagSession.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 1A452B01BC619B891ADB3D961851437B /* FIRComponentContainer.m in Sources */ = {isa = PBXBuildFile; fileRef = 294353905D4A2AB06259E346B63186D5 /* FIRComponentContainer.m */; }; - 1A4832D88543410F232BC959FA8FF50E /* GDTCOREvent_Private.h in Headers */ = {isa = PBXBuildFile; fileRef = 981334D1B99AA550C5C38286FB70EB92 /* GDTCOREvent_Private.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 1A52E5F79E28E019DE28EEDEE55E4C3E /* GULNetworkMessageCode.h in Headers */ = {isa = PBXBuildFile; fileRef = 765C7F6D692CD6A890EC5C076DD04165 /* GULNetworkMessageCode.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 1A59BF25E00AC27F34D1FFE86F94DA63 /* SlowFingerprint.h in Headers */ = {isa = PBXBuildFile; fileRef = 2E43413B26C98EF6028F572F7427F9E6 /* SlowFingerprint.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 1A59ECBBBF291915A95AF29FB03136B3 /* FIRCLSCodeMapping.h in Headers */ = {isa = PBXBuildFile; fileRef = 4BC96ED503285A52E16D54ABA224AABF /* FIRCLSCodeMapping.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 1A619BB8B9DF57D0228F68ACF757B75F /* RCTConvert+REATransition.h in Headers */ = {isa = PBXBuildFile; fileRef = 7E6FC010879F7EE8CDCA75EFA68919D7 /* RCTConvert+REATransition.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 1A7570D57693A5066C8BA5B8334C9665 /* EmitterFlowable.h in Headers */ = {isa = PBXBuildFile; fileRef = 3C85908CDB0ACD631B1B1E037E04BD63 /* EmitterFlowable.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 1A8BE41F96349EE0FF79E0AE076BBF15 /* RSocketRequester.cpp in Sources */ = {isa = PBXBuildFile; fileRef = D967740974DAB66D1FEA4D0A3D483511 /* RSocketRequester.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -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 -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors"; }; }; - 1A90D841D8FB2CEF9B86EE4730922635 /* RCTSurfaceHostingProxyRootView.h in Headers */ = {isa = PBXBuildFile; fileRef = 6F7DD3947C6404858F17C6C80EC228E4 /* RCTSurfaceHostingProxyRootView.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 1A9EF9B5ECDDEE133878EB02EE10E08A /* BugsnagReactNativePlugin.h in Headers */ = {isa = PBXBuildFile; fileRef = 2BE066C60E8DFBD22751401C52C64631 /* BugsnagReactNativePlugin.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 1AAEA1214FD69F25379A238D485EAD22 /* SysTime.h in Headers */ = {isa = PBXBuildFile; fileRef = EC68D88BEDF536EA7336B88F76A1E0F8 /* SysTime.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 1AB409368DE96B84F159C045C652405A /* RNNotifications.m in Sources */ = {isa = PBXBuildFile; fileRef = 84F81D9B45FDBD78B5ACB07C50EBCCB6 /* RNNotifications.m */; }; - 1ABBF71F4DFE8FF9E8C6D409691E1FE1 /* Shell.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 00D5C969B704D8EC2C092FF7BFCCAA79 /* Shell.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -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\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors"; }; }; - 1AE4FDB8BF0CC461D5AA0E328D6F1566 /* BSG_KSCrashReportFields.h in Headers */ = {isa = PBXBuildFile; fileRef = 09980FBD264D2DD8D9054DC82F6EA5F5 /* BSG_KSCrashReportFields.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 1AEAA393B0602568C6A83EFEBD5890DA /* RCTDiffClampAnimatedNode.m in Sources */ = {isa = PBXBuildFile; fileRef = 3C4440B36E277CE16DA33BC400C130CC /* 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"; }; }; - 1AEF393F6F6443C05A46E4B847A56B15 /* FKPortForwardingCommon.h in Headers */ = {isa = PBXBuildFile; fileRef = 8352C4658640E252FE8BB25FCEDF2A0A /* FKPortForwardingCommon.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 1B00F3F2D8A4C7348ECF02BA20E123CA /* FlipperCppBridgingConnection.h in Headers */ = {isa = PBXBuildFile; fileRef = 5347884F300F09F9653A026F17BCD141 /* FlipperCppBridgingConnection.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 1B0A3A52DDBB21A37E4DB0E7E6665289 /* lossless_enc_sse2.c in Sources */ = {isa = PBXBuildFile; fileRef = A328A991453EF3EA707048259AEBC009 /* lossless_enc_sse2.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; - 1B34B01AD09173BBC5538C496B9146B5 /* MallocImpl.h in Headers */ = {isa = PBXBuildFile; fileRef = 12165C66AD4A3FAE0B695344667405C6 /* MallocImpl.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 1B5250910A8378105768CC1505F2633E /* TypeInfo.h in Headers */ = {isa = PBXBuildFile; fileRef = 8664497135BCFA9897D91A8767C2B915 /* TypeInfo.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 1B5685DA79700779C2199E325FFB65EC /* SKStateUpdateCPPWrapper.h in Headers */ = {isa = PBXBuildFile; fileRef = 493FC93BC275FAAD101E6DE53C3A6E29 /* SKStateUpdateCPPWrapper.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 1B6D73AC966FDB7E917CF13DDA19E5CA /* Array.h in Headers */ = {isa = PBXBuildFile; fileRef = 311084FAB238D4B04EF72063D8B3C7DC /* Array.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 1B966B801EEB421750F04FFF774E354F /* RNCAppearanceProviderManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 38DE4B91225B3BFBA01EE2221CA2B29E /* RNCAppearanceProviderManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 1BADA32F3E82507B22F7A966F8A4278D /* JsArgumentHelpers-inl.h in Headers */ = {isa = PBXBuildFile; fileRef = 07F8A416674D20EB4979BAF9EBF3D176 /* JsArgumentHelpers-inl.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 1BAFAD4E2C8D9BAB9C51AB5EA0ACD873 /* event.h in Headers */ = {isa = PBXBuildFile; fileRef = 677A0291688B635D3F8CBAEE82288760 /* event.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 1BB9DF24C3C74F8AB123E0C43DC8D3C2 /* RCTConvert+CoreLocation.m in Sources */ = {isa = PBXBuildFile; fileRef = 229996EBA18541FD5A6EABDF119E951D /* 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"; }; }; - 1BD74BD6F353B5DF14065F07B357F5F9 /* ChannelResponder.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 511E9E59D0ED620364C19CBDB853ABE6 /* ChannelResponder.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -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 -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors"; }; }; - 1C0D5DB4CB91116A6DEB3474D537120C /* BSG_KSObjC.c in Sources */ = {isa = PBXBuildFile; fileRef = 880C9C45607A70557E9BA69E0F44E00D /* BSG_KSObjC.c */; }; - 1C26515EED65B95C1190B35FDAB7E02B /* UIImage+Resize.m in Sources */ = {isa = PBXBuildFile; fileRef = 60EA4B570BE390DC3171F49D41731488 /* UIImage+Resize.m */; }; - 1C2B7BB5F971DDDF39FDE99579055823 /* BugsnagError.m in Sources */ = {isa = PBXBuildFile; fileRef = CEA3B35EB09CCF2BD8C1C215046FBDBC /* BugsnagError.m */; }; - 1C6496929ABD278E240091EABBA34A78 /* UnboundedQueue.h in Headers */ = {isa = PBXBuildFile; fileRef = 90C1BBCC13D38BBBE0B1EF10702BDF8A /* UnboundedQueue.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 1C7383BAA47CA9E13132413DF2BAA949 /* RCTMultilineTextInputView.h in Headers */ = {isa = PBXBuildFile; fileRef = 0FE5ED29CEF5FAFC8F13E402F3E4412C /* RCTMultilineTextInputView.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 1C8399EE1429A35628EA1E4D0730D385 /* SDInternalMacros.h in Headers */ = {isa = PBXBuildFile; fileRef = F711B71C9191D701EF0B6D739CAF2971 /* SDInternalMacros.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 1C8EC169B592E48D66A57DB786533C77 /* EXVideoView.m in Sources */ = {isa = PBXBuildFile; fileRef = ECF30685940A43B4A6F919BCADA28019 /* EXVideoView.m */; }; - 1CCA91BC3B96B07AAD25258D201A58E6 /* SharedMutex.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 73EF414ADC9425D54A581AC4EDED9B24 /* 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"; }; }; - 1CCC7B9B965662ECD1484CF466F4CB24 /* ParallelMap.h in Headers */ = {isa = PBXBuildFile; fileRef = 6E994E6FB4BBB5D87BDF1A7DE791E5E6 /* ParallelMap.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 1CCF39EBFA3B0F687CB1FBD4825BCD3B /* AsyncTimeout.cpp in Sources */ = {isa = PBXBuildFile; fileRef = D2F655E41C63BAB63A290AB9417740CC /* AsyncTimeout.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -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\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors"; }; }; - 1CD8228904959A0F2004A91825A7F395 /* BSGConnectivity.h in Headers */ = {isa = PBXBuildFile; fileRef = 111352AA53F0093A3AB2AEB343C37458 /* BSGConnectivity.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 1CE5F2290B7C60867EEE0B5DB19EDC93 /* logging.cc in Sources */ = {isa = PBXBuildFile; fileRef = 76A2FBF4184A2FCA5AC7623C4BC03C3C /* logging.cc */; settings = {COMPILER_FLAGS = "-Wno-shorten-64-to-32"; }; }; - 1D0679D726977001CE033A643C628E85 /* CString.cpp in Sources */ = {isa = PBXBuildFile; fileRef = C9106D8860AE51771CD2A85A8D20BB16 /* 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"; }; }; - 1D309C64B4D69A23E8630807F8AA238A /* ScheduledSingleSubscription.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 9BC77CD967B59458E50857129DF0EB80 /* ScheduledSingleSubscription.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -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 -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors"; }; }; - 1D3B480205019899A8751D4AE61687D4 /* Codel.h in Headers */ = {isa = PBXBuildFile; fileRef = 1A4213B6882D8C685BE04A8787BC1E6A /* Codel.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 1D3E4DAA9D20125343E2A9B507B98E45 /* FIRCLSAsyncOperation_Private.h in Headers */ = {isa = PBXBuildFile; fileRef = 50B8DC3F1C20DA72280B66682F52676F /* FIRCLSAsyncOperation_Private.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 1D445ABA784FEE3D0B7F312B8A8A9C2F /* RCTAutoInsetsProtocol.h in Headers */ = {isa = PBXBuildFile; fileRef = 6298AE3E0AD6B0EB0E8FA035BC850A15 /* RCTAutoInsetsProtocol.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 1D4C0FF9FEA112E531027830F20B689E /* UMModuleRegistryDelegate.h in Headers */ = {isa = PBXBuildFile; fileRef = ED75D8954D22516560576D647EF26B78 /* UMModuleRegistryDelegate.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 1D5245C3295FF95AECC56EDEAE5E589E /* FIRCLSMachOSlice.m in Sources */ = {isa = PBXBuildFile; fileRef = 63D0C21CDE1E08E58AFE3105E685007B /* FIRCLSMachOSlice.m */; }; - 1D5C8E7B129FCC2F9E9C159A750FDAB5 /* RNConfigReader-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 520BB052543E92220A00A5375AC4F2A9 /* RNConfigReader-dummy.m */; }; - 1D785D7B4FF0460F8D6B5A64B52D39D8 /* BSG_KSCrashAdvanced.h in Headers */ = {isa = PBXBuildFile; fileRef = D928F49253BF59C0396D955092552CE1 /* BSG_KSCrashAdvanced.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 1D7DB118618B351899CFA202028AD8E8 /* TOCropView.h in Headers */ = {isa = PBXBuildFile; fileRef = 5DB6C7D6E115FC52ECED1026C673AD3A /* TOCropView.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 1D8713966308008808AF2CCE29C4120C /* Access.h in Headers */ = {isa = PBXBuildFile; fileRef = D698A54C40003FD1EE0618F5FCF5A4ED /* Access.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 1D89BCE06C52E7607390939321044E27 /* RCTConvert+REATransition.m in Sources */ = {isa = PBXBuildFile; fileRef = 5904BCC1697988B38283030C5C0C88DF /* RCTConvert+REATransition.m */; }; - 1DB1A4C1A222094CEE75624D2FA14BF6 /* Spin.h in Headers */ = {isa = PBXBuildFile; fileRef = 752F50B33E0456ED5566DDBB00DF1A71 /* Spin.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 1DB48BA6EF4B41FD116488C346A18C33 /* TokenBucket.h in Headers */ = {isa = PBXBuildFile; fileRef = BA1A677DC8F9D0351B40C2A6CE7308C9 /* TokenBucket.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 1DD0AA3319223905443F8D6AC9BA8996 /* FirebaseCoreInternal.h in Headers */ = {isa = PBXBuildFile; fileRef = 02E08451045D001829AD93FC5DDDC2FE /* FirebaseCoreInternal.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 1DF0C2D60D4845010213E72709AE1F71 /* RCTImageViewManager.h in Headers */ = {isa = PBXBuildFile; fileRef = F96FEC904C3C515E17B3C84FE3C2C8D5 /* RCTImageViewManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 1DFC34534A46877DFEDA098D230C6652 /* ARTCGFloatArray.h in Headers */ = {isa = PBXBuildFile; fileRef = B301AAB908F0277D9B59DFA5796189EB /* ARTCGFloatArray.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 1E1456286C1D93DC2A848A173C6CA46E /* ImageCropPicker.h in Headers */ = {isa = PBXBuildFile; fileRef = 295599FD34D82437BF3C41270FBB2523 /* ImageCropPicker.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 1E30EEB7D6B9759D49F69E1416E3B440 /* RCTImageBlurUtils.m in Sources */ = {isa = PBXBuildFile; fileRef = 581B0AD8D2AF95FB3BA0D971E4BE811A /* 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"; }; }; - 1E317E04BF342BB3DAB443FD72BB9F5B /* JSExecutor.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 5D43D654FCA7F23771F07696175762B7 /* JSExecutor.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - 1E32F7CE1D3CF957B543C046354F1217 /* FIRCLSAsyncOperation.m in Sources */ = {isa = PBXBuildFile; fileRef = 16F0EA6482987F1240C9EF62BC419BB1 /* FIRCLSAsyncOperation.m */; }; - 1E45AD76507CCAB53A38EEEE1D9C153A /* SDAnimatedImageView.m in Sources */ = {isa = PBXBuildFile; fileRef = 984F1BFA478C3F2BB470222B51A85C46 /* SDAnimatedImageView.m */; }; - 1E70EA50F887C38D2F8DECBBD3BC1EF9 /* UMUIManager.h in Headers */ = {isa = PBXBuildFile; fileRef = C09EA5E56B1A86D17A324942FE907F38 /* UMUIManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 1E71463BA220F76AABE65F5136B1E1EF /* ARTContainer.h in Headers */ = {isa = PBXBuildFile; fileRef = C4152E0A282E1646120955713F62D908 /* ARTContainer.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 1E7DEB4C9EF4EDB1A9CE56FC20D9C25D /* ARTRadialGradient.m in Sources */ = {isa = PBXBuildFile; fileRef = DC304B4145DD0AFD8E5888E0F029F416 /* ARTRadialGradient.m */; }; - 1E8116D71068E350AB2A0B8D74ACFAB7 /* Tearable.h in Headers */ = {isa = PBXBuildFile; fileRef = B3D9CC080476DE1289297FCA471067E9 /* Tearable.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 1E988475BF6DC371658262C5C990D771 /* Portability.h in Headers */ = {isa = PBXBuildFile; fileRef = 8F8E66A5F4B94E306A243192C02F093F /* Portability.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 1EA00BB90A2416E6B517B59204229A53 /* EnvironmentUtil.h in Headers */ = {isa = PBXBuildFile; fileRef = EB8DD2A0419BC72BF274073FC1A56A06 /* EnvironmentUtil.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 1EA668840F5AFF314318FFCE80179EDC /* bignum-dtoa.cc in Sources */ = {isa = PBXBuildFile; fileRef = 14BDA591D15263674DB406B72E60712C /* bignum-dtoa.cc */; settings = {COMPILER_FLAGS = "-Wno-unreachable-code"; }; }; - 1EAF0E603E4703193505672F7C408F88 /* RCTBundleURLProvider.mm in Sources */ = {isa = PBXBuildFile; fileRef = 7656DD83199B7D21A2A2AFE76A975118 /* RCTBundleURLProvider.mm */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - 1EB1F8D1175E397B97ECAC94849B8BD8 /* FIRLibrary.h in Headers */ = {isa = PBXBuildFile; fileRef = 3350438F260AD1099BB622B3DD2B7478 /* FIRLibrary.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 1EC1D0106DA54AE665470D7BDF0C2A09 /* FBLPromiseError.h in Headers */ = {isa = PBXBuildFile; fileRef = A2DD810F8278E0F12D995044E5BF7A15 /* FBLPromiseError.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 1ED3A3DB18B0D7129F78B640C0F033FD /* RNSScreenContainer.h in Headers */ = {isa = PBXBuildFile; fileRef = 52FA215B0AABD63CF4160AC620BF6AF6 /* RNSScreenContainer.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 1ED9C70CDE3DDD6999ACAB0AA9FE9BAE /* NetOps.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 23CFC27A0D600C50FD6262EBCF48AAB9 /* 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"; }; }; - 1EE248615173AB6BB2FCBAA025F46DDA /* RCTPicker.h in Headers */ = {isa = PBXBuildFile; fileRef = AD585F5C53DCFDAFFB4294C34CF88D09 /* RCTPicker.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 1EE4CD5E575C6A8AFAD073B6381B945E /* NSDataBigString.h in Headers */ = {isa = PBXBuildFile; fileRef = 01F2D0B018A8C0602D50AE13EB355AD0 /* NSDataBigString.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 1EED76577B9AC7C813A4F04F990FB9FB /* F14Set-fwd.h in Headers */ = {isa = PBXBuildFile; fileRef = E41EB8C393836F73849E4A9EC52E1A37 /* F14Set-fwd.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 1F0A9700C5762EBB561C0FEE7BA02233 /* FIRInteropEventNames.h in Headers */ = {isa = PBXBuildFile; fileRef = 54A0241C5AB2ECD06DAE4825A6FBAABE /* FIRInteropEventNames.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 1F12214A7A2A9C44C9270D58EB9B9084 /* ARTSurfaceView.m in Sources */ = {isa = PBXBuildFile; fileRef = 81228D55716D17AA0DE748C8160BB301 /* ARTSurfaceView.m */; }; - 1F4C86F457D6C516F3065BCC585C247E /* BitIteratorDetail.h in Headers */ = {isa = PBXBuildFile; fileRef = 7ABDE4FF616E844389AC74A4458AFF47 /* BitIteratorDetail.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 1F63274583B5A8D8520FBA89792D4368 /* FrameType.cpp in Sources */ = {isa = PBXBuildFile; fileRef = CBB9ED84AB9A1E593EF7C4C7413E06F0 /* FrameType.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -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 -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors"; }; }; - 1F8133D40BCD1DC1E7E70084ACD1BDF6 /* LockTraits.h in Headers */ = {isa = PBXBuildFile; fileRef = FD7CEB9400B120D3967B693B0B157334 /* LockTraits.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 1F91056AB2E5BDE9FEF3F26B1103E5F6 /* react-native-background-timer-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 4E43DDC445CD2E8A4C9B98D3A5864896 /* react-native-background-timer-dummy.m */; }; - 1F9F08A55FB89C661C517E18FFCD4CF3 /* FIRCLSRecordBase.m in Sources */ = {isa = PBXBuildFile; fileRef = 36C2D4F83741C5DF31ACE32DA45B4D33 /* FIRCLSRecordBase.m */; }; - 1FBC28A70C19505EBE72775A2F9405DD /* ExecutionObserver.h in Headers */ = {isa = PBXBuildFile; fileRef = EC226F2BAC9F1180223CF366941ED6C2 /* ExecutionObserver.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 1FC21E84DC59264D219EB20962EC583D /* UncaughtExceptions.h in Headers */ = {isa = PBXBuildFile; fileRef = F8CD2C6096A9D4F117D18EEE386A1A90 /* UncaughtExceptions.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 1FDAF175D4A758961788CBF5F77DB38A /* FBReactNativeSpec-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = CAFCAA2659951C5F2840A793D96B938F /* FBReactNativeSpec-dummy.m */; }; - 1FE5B4058F3915EEC84A7A7AEB6FDAC7 /* RCTWebSocketExecutor.h in Headers */ = {isa = PBXBuildFile; fileRef = 70867544D01800EA6114ADA436856864 /* RCTWebSocketExecutor.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 204CC23D814BF60981D1BFC5562AC7B1 /* REANode.h in Headers */ = {isa = PBXBuildFile; fileRef = F09E3CE4EFFEADA4D5525E7AC223798F /* REANode.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 20500299F95F8C983CB80993D67BB4CF /* UIImage+ForceDecode.m in Sources */ = {isa = PBXBuildFile; fileRef = 40957D11A50DE6E72211996E3F5392B0 /* UIImage+ForceDecode.m */; }; - 20597B4AA31830D973C0D549DA719033 /* RCTConvertHelpers.h in Headers */ = {isa = PBXBuildFile; fileRef = 6CFF6339FBEA769B1F8F933E9BB6D49B /* RCTConvertHelpers.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 2059C762FF7431AA8970406CAB41153A /* REAJSCallNode.m in Sources */ = {isa = PBXBuildFile; fileRef = E1E10551E1BA25B796460E47DC1ED197 /* REAJSCallNode.m */; }; - 206FE56E79C9810CE8BB59594B2194DC /* diy-fp.cc in Sources */ = {isa = PBXBuildFile; fileRef = 7E190197A8BCD54D5B863CD1090FC782 /* diy-fp.cc */; settings = {COMPILER_FLAGS = "-Wno-unreachable-code"; }; }; - 208790D70277C3A907BFE89FD71D90F5 /* DiscriminatedPtrDetail.h in Headers */ = {isa = PBXBuildFile; fileRef = 462C48E8BA7700B5491CB4AB994C7950 /* DiscriminatedPtrDetail.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 2092AAC3D67ECC6390654FB817FE0F37 /* Function.h in Headers */ = {isa = PBXBuildFile; fileRef = BB1B2F8D8B7929C7DD01DEADCFB8FD3F /* Function.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 20975EBC575B2229860269A70A137099 /* FIRExceptionModel_Private.h in Headers */ = {isa = PBXBuildFile; fileRef = B50E06C043C66E717739CED2E150DC3A /* FIRExceptionModel_Private.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 20A7717BBB6E400E9B407132FE778A5C /* ARTShape.h in Headers */ = {isa = PBXBuildFile; fileRef = 372D48682B9E2DF058C7841B584D9BC1 /* ARTShape.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 20B9950C8682BAC51156EA4C7B830D77 /* FIRCLSURLSession.m in Sources */ = {isa = PBXBuildFile; fileRef = BA68EB70167AC162F9C6BF90C3190740 /* FIRCLSURLSession.m */; }; - 210F1D30C3DFB035E1A9692D1BED1846 /* GDTCCTUploader.h in Headers */ = {isa = PBXBuildFile; fileRef = AEEFB0BA442774E323DD9CC6CD76ECA4 /* GDTCCTUploader.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 21171CB95AC7DD57CE2BC6091A8C9747 /* yuv.c in Sources */ = {isa = PBXBuildFile; fileRef = AFFA37E0D240F51E9319F97795876607 /* yuv.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; - 2123782372A76ED2C3C54D140890CF06 /* RCTConvert+ART.h in Headers */ = {isa = PBXBuildFile; fileRef = 5A8E6865E8B1705CA95C0ED9EB913458 /* RCTConvert+ART.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 21338B20D39BB99556A31FAFB41A8902 /* ThreadLock_Win32.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 78F6CA26048D0032F0E6D6ECC660D451 /* ThreadLock_Win32.cpp */; settings = {COMPILER_FLAGS = "-x objective-c++ -fno-objc-arc"; }; }; - 216D3A827A9C05623245832B45292A60 /* SysTypes.h in Headers */ = {isa = PBXBuildFile; fileRef = D328775106F074AD45878F03B4247CCD /* SysTypes.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 21928F97CB8DD68D56445C0FE0A4C01B /* FIRStackFrame.m in Sources */ = {isa = PBXBuildFile; fileRef = 148BD4524563EAE73DE3CA93B337855C /* FIRStackFrame.m */; }; - 219DD23CD8486CC2AA835B51ABF754AB /* BSGFileLocations.m in Sources */ = {isa = PBXBuildFile; fileRef = 9A28152C927DBE33FC159F237838CA4F /* BSGFileLocations.m */; }; - 219FCD15E8D1202D62E2225EB1CC36F3 /* ScheduledFrameTransport.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 8B44F205BF9B9D8EE635E4D9543EFAF1 /* ScheduledFrameTransport.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -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 -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors"; }; }; - 21BD907A7C18430BFC99924E646FABB6 /* Futex.h in Headers */ = {isa = PBXBuildFile; fileRef = D387CEB2E8DFB44CA15F0A1870D36947 /* Futex.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 21C46952977D276ECC73AC5161C4249F /* OpenSSLCertUtils.cpp in Sources */ = {isa = PBXBuildFile; fileRef = E0E6313449FF04D37ED86F79B8A8A3E2 /* OpenSSLCertUtils.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -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\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors"; }; }; - 21D5FFFD0D7BF76BB7A8811DCAF73A7B /* FIRCLSURLSessionDataTask.m in Sources */ = {isa = PBXBuildFile; fileRef = 5217079C508569C2D0F031D958008DBB /* FIRCLSURLSessionDataTask.m */; }; - 21D8D2EB50CDC73DCD4D46F5B2CA9F3E /* FBLPromise+Race.m in Sources */ = {isa = PBXBuildFile; fileRef = AB72D0C7A9094E258164E9D11158FC88 /* FBLPromise+Race.m */; }; - 21DB32A29534CE7CA19A7B23CCF26EFF /* NSError+BSG_SimpleConstructor.h in Headers */ = {isa = PBXBuildFile; fileRef = 87EF8DAC74FFF7785C03693CE6ED7236 /* NSError+BSG_SimpleConstructor.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 21E6B0A439E4AC6DF9B18FAB2FD60242 /* JSBigString.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 975AFAA25345A61144FCBD53F33CA621 /* JSBigString.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - 21EC8C03E63160300BFABE8195A35C64 /* FIRCLSFABNetworkClient.m in Sources */ = {isa = PBXBuildFile; fileRef = ED865F1DE44468A0B0B652D71ED61413 /* FIRCLSFABNetworkClient.m */; }; - 21F93C0E91338F357D5F63A991EC85A9 /* RCTUIUtils.h in Headers */ = {isa = PBXBuildFile; fileRef = 1786B30D3A2D0FDA491DA441AA95B05F /* RCTUIUtils.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 21FD0E8961C0BC063CDA41227DE1731A /* demux.c in Sources */ = {isa = PBXBuildFile; fileRef = 4A509BA41AB36AFEFE7EC02BD8CA6ED5 /* demux.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; - 2217AF1A7AE7984BF040F4C1BC02EBAA /* BugsnagBreadcrumb.h in Headers */ = {isa = PBXBuildFile; fileRef = 4670D8DA5D87EEFC41A8D2E7E4631AC8 /* BugsnagBreadcrumb.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 222557FED1601E4892088088E6C5F3E7 /* SysStat.h in Headers */ = {isa = PBXBuildFile; fileRef = B601C6E328718F723F5CE385782660DD /* SysStat.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 2229B836BCE066BCE8443CEAD075AB36 /* RNCSafeAreaView.h in Headers */ = {isa = PBXBuildFile; fileRef = 85F0409B00976E265E97759FCCD27E57 /* RNCSafeAreaView.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 22587FCC4C181D57C16E6C1E232D6813 /* GoogleDataTransport.h in Headers */ = {isa = PBXBuildFile; fileRef = 22E37A1F9FEB8ACD0F110A8146B5BCD2 /* GoogleDataTransport.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 22681799654BC4E6A8D51777712BCCE1 /* quant.h in Headers */ = {isa = PBXBuildFile; fileRef = A3667F9A5A9B50046346F725B90E6303 /* quant.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 229A5016DE40AB05A69EE93DE3FD7CD3 /* yuv_sse41.c in Sources */ = {isa = PBXBuildFile; fileRef = AF5285E913D9C8AD1A6810470E198466 /* yuv_sse41.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; - 22B0D872A32EB9D92B78C88E5132F47A /* FIRCLSExecutionIdentifierModel.m in Sources */ = {isa = PBXBuildFile; fileRef = 24E802A44DA54111432497AF0EBADE6C /* FIRCLSExecutionIdentifierModel.m */; }; - 22D21580A36305FED693B1D815397CEC /* RCTLayoutAnimation.m in Sources */ = {isa = PBXBuildFile; fileRef = DACBA26AE500A3366C8A944D81FB5518 /* RCTLayoutAnimation.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - 22D8AB1C11924EB111F57471486DEA69 /* RCTRefreshableProtocol.h in Headers */ = {isa = PBXBuildFile; fileRef = 1F26C9949B8C13255F0D9E2BF80025C9 /* RCTRefreshableProtocol.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 22E1D06C4A77C0F1F7DFBC536D00AC58 /* ARTRenderableManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 5C916787C74604D8FD50FB4D7B25FFDA /* ARTRenderableManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 22F714CC10EAB443B6ABDAC10220B7DB /* picture_enc.c in Sources */ = {isa = PBXBuildFile; fileRef = 98173C30AAAEB60BB67F719BDE999FA1 /* picture_enc.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; - 2300FD1051763DEC87ABAA44DA4C843E /* RNDateTimePickerManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 5CAB83F1E564EEB611ED28B0CEAF30FE /* RNDateTimePickerManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 230DD04E738438C0BB1D05464F2D3A36 /* GDTCCTNanopbHelpers.m in Sources */ = {isa = PBXBuildFile; fileRef = 524B7125CFC13FA52439FAA76CEAE3D1 /* GDTCCTNanopbHelpers.m */; }; - 23107AD6D4230C7D76762ACF7E2D818E /* SDImageCacheDefine.h in Headers */ = {isa = PBXBuildFile; fileRef = 3F4C9252C0AB1D6B047BB24CD5E7172C /* SDImageCacheDefine.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 23107CD51E85F36D174BE09761E08392 /* RCTPbkdf2.h in Headers */ = {isa = PBXBuildFile; fileRef = 2AED415BF2CA0F102E482E3B33CF499C /* RCTPbkdf2.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 232A0DF7892DC1668AD991D30E045B4D /* RCTComponent.h in Headers */ = {isa = PBXBuildFile; fileRef = 3991D9E8935C272F2BEBD8F363AF3305 /* RCTComponent.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 2335D16DD99C5CCB7145356D9439A1ED /* SafeAreaManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 2F85A36A7DF29262707FF6EAC03F1745 /* SafeAreaManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 234AE68428A5817BAFE963A80FC365AF /* UnboundedQueue.h in Headers */ = {isa = PBXBuildFile; fileRef = C5AE0C796CB2CF1C33E96DBE07AC523A /* UnboundedQueue.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 234D274F9F5FFD3DA770F18B5B82BFDC /* Cursor.cpp in Sources */ = {isa = PBXBuildFile; fileRef = E56CEBB5E690CE30375C80AABF6B4CE1 /* 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"; }; }; - 23576D738C9549A2D6CF08392F1968E8 /* YGNodePrint.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 603131F97BAA207E67383A8A998042A4 /* YGNodePrint.cpp */; settings = {COMPILER_FLAGS = "-fno-omit-frame-pointer -fexceptions -Wall -Werror -std=c++1y -fPIC -fno-objc-arc"; }; }; - 23587B85B626669925991587D263DE57 /* EXSessionUploadTaskDelegate.m in Sources */ = {isa = PBXBuildFile; fileRef = A8D091FBDDF484E5548B37CF0E4988D8 /* EXSessionUploadTaskDelegate.m */; }; - 2360957858DAAB5C4427FBFC56EA02F8 /* TOCropViewController-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = E9DAA69C91C5D71F71C166021395D3BE /* TOCropViewController-dummy.m */; }; - 236D0A035C52490418BDFF3A6DADA561 /* Dirent.h in Headers */ = {isa = PBXBuildFile; fileRef = A568645E3EC4F41A6B8E54985BE21DD0 /* Dirent.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 238014D7C36D9F7526816B138E188F1A /* ExceptionWrapper.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 8D8867473DC9435ABC10784A09B021FE /* 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"; }; }; - 23B63806D9A476DC97D4110167D0DDEA /* RNCMaskedView.m in Sources */ = {isa = PBXBuildFile; fileRef = 00B64C68E8E48A836E1764A9AA6F83DE /* RNCMaskedView.m */; }; - 23BB62BE51D77E2B43E962B7694233AB /* FBLPromiseError.m in Sources */ = {isa = PBXBuildFile; fileRef = 13F667B2253495881B8BBB79ED397290 /* FBLPromiseError.m */; }; - 23BE38F41651FCA01863B7A6577A49FC /* Format.cpp in Sources */ = {isa = PBXBuildFile; fileRef = E55E4E782BC0B7CC36EAD9507597C474 /* 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"; }; }; - 23E05DB7ADBD88E8C03CC484D1F1099F /* Subscriber.h in Headers */ = {isa = PBXBuildFile; fileRef = 46472793B74C28B0DD2EFD7560D4848A /* Subscriber.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 23ED68709D70B2CEEA2C60ED444BDE7C /* ssim_sse2.c in Sources */ = {isa = PBXBuildFile; fileRef = 402AAB81A0A41700074D0620AF821F75 /* ssim_sse2.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; - 23F880255FD99355C2934B672C938E94 /* RNFBCrashlytics-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = A95ACD68CF68B792E1500C4081DB693C /* RNFBCrashlytics-dummy.m */; }; - 23F8CC4360DEF34ADA9029CC0CAAC322 /* firebasecore.nanopb.c in Sources */ = {isa = PBXBuildFile; fileRef = F709182254F371DCB7FC9E4E5AD51402 /* firebasecore.nanopb.c */; }; - 23FA7352988280C2EE623B66427EC13B /* evrpc-internal.h in Headers */ = {isa = PBXBuildFile; fileRef = 6E32947F097148F59B3F1E82CA8CFAF1 /* evrpc-internal.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 23FD3872340E08901DFBF08C81D0ED3D /* CoreCachedSharedPtr.h in Headers */ = {isa = PBXBuildFile; fileRef = E41FB7DBD8033F45915F4E81DBA50E0F /* CoreCachedSharedPtr.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 240FC32361C410EF5F84BF6DEBE42548 /* ReactNativeART-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = C00C64F14C3A18BFFF5DCDBD56C60169 /* ReactNativeART-dummy.m */; }; - 2429E3881443A705B671125FD7304B92 /* SKTapListenerImpl.h in Headers */ = {isa = PBXBuildFile; fileRef = 343F5A180BBCD24462D71E00FBD98C87 /* SKTapListenerImpl.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 242B4C9538838E112A2F3ADC2B09907F /* SDWebImageDownloaderOperation.h in Headers */ = {isa = PBXBuildFile; fileRef = FEC8FE60ECAE340F1C62F76ABB5097D5 /* SDWebImageDownloaderOperation.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 243BA7838B8733171E500BDFB3A064EB /* RCTConvert+ART.m in Sources */ = {isa = PBXBuildFile; fileRef = 68486419F43F8281CD207605D2E14272 /* RCTConvert+ART.m */; }; - 2473B3A11F2AAFD2AEC14066336220B8 /* BlockingQueue.h in Headers */ = {isa = PBXBuildFile; fileRef = B15175F2164C98A39C87EB95FFC28E02 /* BlockingQueue.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 247B18B81BF3699B89335484EA7329B9 /* Sched.h in Headers */ = {isa = PBXBuildFile; fileRef = D74ABFF01BBF287ECFE62FA3E7B8555B /* Sched.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 2487FE5A99FD79EF599EEF75AA4F1083 /* ARTSolidColor.h in Headers */ = {isa = PBXBuildFile; fileRef = 2A3D59FB3665A31F8B7500521E96B781 /* ARTSolidColor.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 24922AE63038BF9070EEF1A784504CC4 /* Event.h in Headers */ = {isa = PBXBuildFile; fileRef = 9CA4C13C6B5E00891719B5CBCDD2123D /* Event.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 24BA1F49C4507CCF322D930F33B14289 /* RCTSurfaceStage.h in Headers */ = {isa = PBXBuildFile; fileRef = E5539CD4B01605A209EAE449CD37F855 /* RCTSurfaceStage.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 24EA3B2522D9DF4FB974E36ADBD39160 /* RelaxedConcurrentPriorityQueue.h in Headers */ = {isa = PBXBuildFile; fileRef = 430CB77D6D03E7480CD6EDB29C7352B3 /* RelaxedConcurrentPriorityQueue.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 24F696A8C818E37AD166CEEBF8F06EF8 /* RecordIO.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 60F3BCBDD6A323B314E65E8E2810E3C2 /* RecordIO.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -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\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors"; }; }; - 24FEC3570B7CFADEE03E408B9D96ECDD /* lossless.h in Headers */ = {isa = PBXBuildFile; fileRef = AB112A4A6AAFBE00566605E8813D47AF /* lossless.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 250423D40E0CB60B44F882AB8CA2CA16 /* log.c in Sources */ = {isa = PBXBuildFile; fileRef = 73A59776370089BF47A36F0979BECF4A /* log.c */; }; - 2521F9856149979A42BD40EC1A36DC2E /* lossless_neon.c in Sources */ = {isa = PBXBuildFile; fileRef = 22B13775F5C133858DE4AF2F01D40718 /* lossless_neon.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; - 252A150408A553D4807BFECE84C73499 /* react-native-orientation-locker-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 04CFEFB3F1120ED65335C3CA7E6A4ED3 /* react-native-orientation-locker-dummy.m */; }; - 254B0BF69C96F789ADFB18FA9AF72268 /* RNFBPreferences.h in Headers */ = {isa = PBXBuildFile; fileRef = D86615BEDC991166E3F53C91B920E5FC /* RNFBPreferences.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 255F950E8099EED4CECC91F825B3B86A /* FIRCLSBinaryImage.h in Headers */ = {isa = PBXBuildFile; fileRef = 302BF3C74637C7DB351858B047839178 /* FIRCLSBinaryImage.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 25713931BC02A60B534F4C57EBE12C09 /* CustomizationPoint.h in Headers */ = {isa = PBXBuildFile; fileRef = F3F9C7E6CC836240AC4DBF3C75028666 /* CustomizationPoint.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 258DFD96720C1C98BD6A3BC06B72A9C0 /* react-native-webview-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = EFF316F1C4228437B26E8ADBDF40A0F0 /* react-native-webview-dummy.m */; }; - 259003BE28ACB34D29ACA844506C320C /* SaturatingSemaphore.h in Headers */ = {isa = PBXBuildFile; fileRef = D8A89591EFBF3724820EDA6841A165CE /* SaturatingSemaphore.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 25CCAEBEBC15EA8E17F271377684FA16 /* RCTBlobManager.h in Headers */ = {isa = PBXBuildFile; fileRef = CE720B80740482075792A51EC72C64FF /* RCTBlobManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 25DB1E24B453C0ECE4DA407E7761D440 /* EXLocalAuthentication-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 6E0689640886583CF0A244F816A2FD5B /* EXLocalAuthentication-dummy.m */; }; - 25DF77BE316A1163F0FA609A33BB82FC /* EXFileSystem.m in Sources */ = {isa = PBXBuildFile; fileRef = FDD2686C962849789E028510F6F2B0A6 /* EXFileSystem.m */; }; - 2604D2DFCF3930C8A726A34DB94510B6 /* RCTMultipartStreamReader.h in Headers */ = {isa = PBXBuildFile; fileRef = 6E00A3B55B15D71B2CD3B55336524196 /* RCTMultipartStreamReader.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 2609BD2E9E0D419FE3947E43911A3CDD /* RCTTextAttributes.h in Headers */ = {isa = PBXBuildFile; fileRef = CBE1616AF656630B81600BEF0C1320C4 /* RCTTextAttributes.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 2618A37300CBD575841A44C1378E1600 /* RCTAppState.h in Headers */ = {isa = PBXBuildFile; fileRef = 314D6A4AC5227189966DFE96E9021D45 /* RCTAppState.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 261D98D32F84567AA07152CDE66ACB76 /* FutureExecutor.h in Headers */ = {isa = PBXBuildFile; fileRef = C37B23A8A1B5BEEEB622D8D6A3A35F81 /* FutureExecutor.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 263C0741EBE17E17FEC8B94D476BD824 /* RNRootViewGestureRecognizer.h in Headers */ = {isa = PBXBuildFile; fileRef = 144360F619B1568C4D6288B0C0FB58B8 /* RNRootViewGestureRecognizer.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 2648771F3EE08F9A7300249832B31AC6 /* openssl_aesv8-armx.S in Sources */ = {isa = PBXBuildFile; fileRef = BCE8B2C58C7A5FFE918225BF23BF842E /* openssl_aesv8-armx.S */; }; - 2649DFD21575F940A3F141DE39D20B6F /* RCTFrameAnimation.m in Sources */ = {isa = PBXBuildFile; fileRef = BFB833A212D11C1F41AC5557EFFF34D4 /* 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"; }; }; - 267FBF5FD39D9633691B813B405D0B81 /* RNCSliderManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 025631EC319F114D70200FF936D0F45C /* RNCSliderManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 26909CC481BBD0A975E13405C296F70D /* Asm.h in Headers */ = {isa = PBXBuildFile; fileRef = DB1694FAC251DD37A22E57B2BDFFEB94 /* Asm.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 269731BDE3E775BB018007D8F1125681 /* BugsnagSession+Private.h in Headers */ = {isa = PBXBuildFile; fileRef = A87D058A90DAB0C942B4AAC56C56B15C /* BugsnagSession+Private.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 26BC6B57BA643B8EF2D8C2502E412AA7 /* FIRCLSRecordApplication.h in Headers */ = {isa = PBXBuildFile; fileRef = D7E5EC94D71759DD5DA4BF40DACD91FA /* FIRCLSRecordApplication.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 26C06DF0C138BD4034D77B0C895A5C1C /* Malloc.h in Headers */ = {isa = PBXBuildFile; fileRef = AB92F07C8F16DC3AB790670FF753DD93 /* Malloc.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 26CE6ADE5C4058BA9884954DC249CDB4 /* RSocketStateMachine.cpp in Sources */ = {isa = PBXBuildFile; fileRef = A0E9033941C3AB907B1B7A92CE61D944 /* RSocketStateMachine.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -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 -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors"; }; }; - 26DBB145EBAD40456F69AF3485472A66 /* vp8l_dec.c in Sources */ = {isa = PBXBuildFile; fileRef = 7AC7CEAE075D5FE37F18F69929AF0DB6 /* vp8l_dec.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; - 26FC4635EE2D1635ED3F5F0CDDAD50C9 /* GroupVarint.cpp in Sources */ = {isa = PBXBuildFile; fileRef = ADA91F9364E85FD662C943D0540B2363 /* GroupVarint.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -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\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors"; }; }; - 2702ED30FCC572A9119745BA58C104F4 /* REACallFuncNode.h in Headers */ = {isa = PBXBuildFile; fileRef = 95409ABF25D42C8C7A43CEB383BB217A /* REACallFuncNode.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 2712B1F4F2358B9B6EA596621350901D /* PBUtility.h in Headers */ = {isa = PBXBuildFile; fileRef = 5E18EDA82B7F891804060AECEF71B5BE /* PBUtility.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 272F9453B65E11E7B647D37D494D663C /* RCTNativeAnimatedTurboModule.h in Headers */ = {isa = PBXBuildFile; fileRef = 06384479D373E19F9C14A08E0BFF3788 /* RCTNativeAnimatedTurboModule.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 272FE84B8033B2CF75AA53A9F9A84345 /* SKViewControllerDescriptor.h in Headers */ = {isa = PBXBuildFile; fileRef = 754E234EEBF74BEB989FA3F5F1BC97FF /* SKViewControllerDescriptor.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 2730FE054CC61C90703D708DF8B87F6A /* RNScreens-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 8B5EA7310EF8CC88530EBDC323C4F645 /* RNScreens-dummy.m */; }; - 275B1BA50739CFF9BDB246E10F662653 /* RNNotificationEventHandler.h in Headers */ = {isa = PBXBuildFile; fileRef = D548161C546809C36062E8F56DB53607 /* RNNotificationEventHandler.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 2791D2CCA183E84173CDA03EA5D0B031 /* Sockets.h in Headers */ = {isa = PBXBuildFile; fileRef = 3856A7B799D915322E5F6E56FB2ED6E1 /* Sockets.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 279436A2D859CBB5D60A18A8B8C6C584 /* CertificateUtils.cpp in Sources */ = {isa = PBXBuildFile; fileRef = F1A969915DD37E525AB5C521D62D6480 /* CertificateUtils.cpp */; settings = {COMPILER_FLAGS = "-DFLIPPER_OSS=1 -DFB_SONARKIT_ENABLED=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -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"; }; }; - 279A852563A70AD5D906A401684F2160 /* SDAnimatedImagePlayer.m in Sources */ = {isa = PBXBuildFile; fileRef = C12603CA84D0C123860475E5587EF16D /* SDAnimatedImagePlayer.m */; }; - 27B2383E0B5A555A167FBA7411E909F3 /* RCTKeyCommands.m in Sources */ = {isa = PBXBuildFile; fileRef = 614947D4527A86D0737DD42B9A20A26A /* RCTKeyCommands.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - 27B6CCE48225BC56652E9E3223D38C4F /* ARTShape.m in Sources */ = {isa = PBXBuildFile; fileRef = 077F86B7F0AB320485085AB7FE12E1DE /* ARTShape.m */; }; - 27BB0973F6FF125510D96C52B8733B1D /* FIRInstallationsLogger.m in Sources */ = {isa = PBXBuildFile; fileRef = 3146EE7F2F7253CE4A19AE42577E2750 /* FIRInstallationsLogger.m */; }; - 27C9277485F05BCE39CFD89C84B143A7 /* EXAppleAuthenticationButton.h in Headers */ = {isa = PBXBuildFile; fileRef = C63764A8CAAA45692EA96FB71D6BA9E0 /* EXAppleAuthenticationButton.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 27D0E2522841DF2944FED2A3D82EC208 /* PriorityLifoSemMPMCQueue.h in Headers */ = {isa = PBXBuildFile; fileRef = 7189806B62CAABC6A938101E021B1B48 /* PriorityLifoSemMPMCQueue.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 27E10DB134C275BDF145041E9A3F02CC /* BugsnagErrorTypes.h in Headers */ = {isa = PBXBuildFile; fileRef = 0293E4585956F99026832F6B4E390EDA /* BugsnagErrorTypes.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 27EC06980DAE5F1CB3C930E0876C6E7A /* FIRCoreDiagnosticsData.h in Headers */ = {isa = PBXBuildFile; fileRef = 8CBCC34DEE63E69D64899C43FD54A785 /* FIRCoreDiagnosticsData.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 27EE22789E26A87B574810CE289A90CB /* AtomicLinkedList.h in Headers */ = {isa = PBXBuildFile; fileRef = 213D548C6546BE0F12326CB0627B85DF /* AtomicLinkedList.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 27FD9762250CD5783825714901D62ECB /* DynamicBoundedQueue.h in Headers */ = {isa = PBXBuildFile; fileRef = 60F35749AE880A93AA3F8B9E8DEF69B0 /* DynamicBoundedQueue.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 27FE2C33CEA4B00DC5EC0E3F3512E805 /* TimedDrivableExecutor.h in Headers */ = {isa = PBXBuildFile; fileRef = FD9EDEDEF1E88E6DCEF209BD0AF2F483 /* TimedDrivableExecutor.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 28085BC66E36F02A849AAAA3C51B6E1F /* RCTUITextView.h in Headers */ = {isa = PBXBuildFile; fileRef = C8644BEA899187C9860C8C5A4BCE9404 /* RCTUITextView.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 28098F9A22E786BB01EE05A3138AADE9 /* SDImageAssetManager.m in Sources */ = {isa = PBXBuildFile; fileRef = D86896FB5858820428D3DDDC6CD96A55 /* SDImageAssetManager.m */; }; - 281D197F89B7CA018E1CD0794593B335 /* RCTNativeAnimatedNodesManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 5922923155F3938505DC98B5FD1F7886 /* RCTNativeAnimatedNodesManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 282A04F3A48ECC7D11237EEC32CB6DA7 /* FIRCLSURLSessionAvailability.h in Headers */ = {isa = PBXBuildFile; fileRef = 45933FD560F9D023DC39B0A5D8792B0B /* FIRCLSURLSessionAvailability.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 2834EA176ACD637355B57D95609C2F08 /* upsampling_mips_dsp_r2.c in Sources */ = {isa = PBXBuildFile; fileRef = 959DD080ECCEA10F66B1BC358DD0AD32 /* upsampling_mips_dsp_r2.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; - 283AFD452334B12F42705D0863AE779D /* EDFThreadPoolExecutor.cpp in Sources */ = {isa = PBXBuildFile; fileRef = C25265491BA05D7DA07E73525B2E5ADE /* 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"; }; }; - 283D05532A3E76E3D39078DF6620984E /* Flipper-Folly-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = BF872E3366FF64D781D6F38C56729C8B /* Flipper-Folly-dummy.m */; }; - 284D8A228174B9C50C29853A1D48BCD5 /* ja.lproj in Resources */ = {isa = PBXBuildFile; fileRef = EFFA369D0A99F61C59AC66A7809A1D45 /* ja.lproj */; }; - 2858B9CE1458A308A88FBB080973A2BD /* React-RCTVibration-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = C9C9A2BE6194882D45341E0D8CEE3C18 /* React-RCTVibration-dummy.m */; }; - 28666E2FF035B67FFC6B707C397B53C4 /* YGLayoutExtensions.swift in Sources */ = {isa = PBXBuildFile; fileRef = 50F4AC2A1A2E84993D0251C762782555 /* YGLayoutExtensions.swift */; }; - 28688192DE40010DCE7006D4CDFA9920 /* histogram_enc.h in Headers */ = {isa = PBXBuildFile; fileRef = 6D67E32F1621EB8851E0CC5B2C35BB15 /* histogram_enc.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 2878DA8AB79437BE25FD83B8BAC93A39 /* pb_common.c in Sources */ = {isa = PBXBuildFile; fileRef = C6AF3E49B2DBFEA9ACFC6345FDDDB37F /* pb_common.c */; settings = {COMPILER_FLAGS = "-fno-objc-arc -fno-objc-arc -fno-objc-arc"; }; }; - 2881A409DC377A1F6222AAC4B5A19F0F /* RCTDecayAnimation.m in Sources */ = {isa = PBXBuildFile; fileRef = 6D04BB5E40BA5D8B5192C6EEBBD84FE1 /* 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"; }; }; - 288EA9A8AD939D34A4CBEF2EE225AD56 /* RCTMaskedViewManager.h in Headers */ = {isa = PBXBuildFile; fileRef = EB5AE6725DBDBA72012A0E3EDB522345 /* RCTMaskedViewManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 28A194AC1159FD8D578C2EB3AFBCDA00 /* Demangle.cpp in Sources */ = {isa = PBXBuildFile; fileRef = EB34A2FB4CEB74806B9886BC1034D7F6 /* Demangle.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -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\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors"; }; }; - 28AB19E6514735B79E5536ECE2F00D3D /* RCTAssert.h in Headers */ = {isa = PBXBuildFile; fileRef = 7EECDBA9C2689D8B2D852984061BAE5C /* RCTAssert.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 28B8EFF1F2B56609C0BD6A08F5B0007B /* FBLPromise+Do.m in Sources */ = {isa = PBXBuildFile; fileRef = B0F4A1B84ED63749F8044921E15E45F5 /* FBLPromise+Do.m */; }; - 28C78E22D8E13C7D5E5C641339C1BA3D /* StorageGetters.h in Headers */ = {isa = PBXBuildFile; fileRef = DCF019AC633D3837A65275E1E41BEBD5 /* StorageGetters.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 28E338037BD6C773C461C4A323E4F264 /* BSGGlobals.m in Sources */ = {isa = PBXBuildFile; fileRef = D42007B4C16C152C107FFE5553789732 /* BSGGlobals.m */; }; - 290D481DD7BD973CB373FF1082807305 /* RCTNativeAnimatedNodesManager.m in Sources */ = {isa = PBXBuildFile; fileRef = 85E37AF30AB738B8B5EFA1D488C0E827 /* 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"; }; }; - 29143025EEB9F61FB4B8A88936490615 /* RCTFileReaderModule.h in Headers */ = {isa = PBXBuildFile; fileRef = 26870246B6A46B10CD4C9299DE8C3D25 /* RCTFileReaderModule.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 2917B430E75377F1ADC6752F355FB031 /* SDMemoryCache.h in Headers */ = {isa = PBXBuildFile; fileRef = CD2F3B487E3BAE150BE5331123974954 /* SDMemoryCache.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 29215116C566B3A606C4C673B7A4104A /* SDWebImageCacheSerializer.h in Headers */ = {isa = PBXBuildFile; fileRef = 1B86A59900D99654F5C7B2EBC25EA41E /* SDWebImageCacheSerializer.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 2923635EE489552AA7C35BE76C087410 /* RSocketStats.h in Headers */ = {isa = PBXBuildFile; fileRef = 63AE044CCFF233460DB6306511A7B7C2 /* RSocketStats.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 296B36145E06FF6D567226927EC8ACEF /* RNFBAppModule.h in Headers */ = {isa = PBXBuildFile; fileRef = 64272172F300480AAB5564037E52F9C2 /* RNFBAppModule.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 296C9B0730FC3C327E691F340B194BD9 /* RangeSse42.h in Headers */ = {isa = PBXBuildFile; fileRef = 13A70D257EB606DB7DAE4D4BDCEDE0A7 /* RangeSse42.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 296CD68624835C2269CB492288E28911 /* SysMembarrier.cpp in Sources */ = {isa = PBXBuildFile; fileRef = FF1278116DDF6E31C0A121D313ECD61B /* SysMembarrier.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -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\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors"; }; }; - 297A29978B37E09128C3AB079E82B03F /* FIRCLSMachO.h in Headers */ = {isa = PBXBuildFile; fileRef = FFDB7FAA8CFF007C8D2DBF497D5F7D2C /* FIRCLSMachO.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 298153CBD5834911CF7F5E38F56BF310 /* RCTCxxMethod.mm in Sources */ = {isa = PBXBuildFile; fileRef = AEB135E8942546DB1AF42D3CF1B59508 /* RCTCxxMethod.mm */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - 29897EEA9E3268B3BDC4BE3A293D7635 /* raw_logging.cc in Sources */ = {isa = PBXBuildFile; fileRef = 421A4791005C1BA0283FE5ED2FEEF2AF /* raw_logging.cc */; settings = {COMPILER_FLAGS = "-Wno-shorten-64-to-32"; }; }; - 299283C7E20E0AD83A0737430AED1042 /* ScheduledRSocketResponder.cpp in Sources */ = {isa = PBXBuildFile; fileRef = EF77B45DE1171993B31D40830A5CB5B4 /* ScheduledRSocketResponder.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -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 -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors"; }; }; - 29949AABA20DB0E9366F79D24F25911D /* File.h in Headers */ = {isa = PBXBuildFile; fileRef = FA5E26E72716FB2C14E4628E317D45D2 /* File.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 2997FEA8C3D0FCF668DC5C47DE4D5AD5 /* RCTUITextField.h in Headers */ = {isa = PBXBuildFile; fileRef = 5ACE5409F7D0811D41E16155430497AC /* RCTUITextField.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 29A8D2481CD3257C9100A8507DF97B1E /* GDTCORTransformer_Private.h in Headers */ = {isa = PBXBuildFile; fileRef = 2A7B74E25DCF95117BA1DB7832421E28 /* GDTCORTransformer_Private.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 29D468554BB01EE1116FDA0ED3859FE1 /* ExceptionWrapper.h in Headers */ = {isa = PBXBuildFile; fileRef = 86B97EE47635299C9D8446981F698087 /* ExceptionWrapper.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 29E7CC7F14FE4116D10F914951DD17BA /* GDTCORTransport.h in Headers */ = {isa = PBXBuildFile; fileRef = FAD97A42DFA849596624DD41A3ACE426 /* GDTCORTransport.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 2A00043AE307D261B553E4FC459642A1 /* MPMCPipelineDetail.h in Headers */ = {isa = PBXBuildFile; fileRef = 9E5AD003D0351443AD6EA78593F25440 /* MPMCPipelineDetail.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 2A2EDA847403A97588ACFEF6F3B2E8E6 /* RCTRootView.h in Headers */ = {isa = PBXBuildFile; fileRef = 2A9DA7B3DEEF2490D3AFF80D02558599 /* RCTRootView.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 2A3EC22155B8F0F30F0593D97BF9BFB9 /* ExecutorWithPriority-inl.h in Headers */ = {isa = PBXBuildFile; fileRef = 9B7ACB1294CE1C97BF683629EF603AB7 /* ExecutorWithPriority-inl.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 2A493B365180564C43897233FB469DDA /* RNCSafeAreaViewLocalData.h in Headers */ = {isa = PBXBuildFile; fileRef = B2B1577097A380C5EFC177FF78557FF4 /* RNCSafeAreaViewLocalData.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 2A88D2578399C204312EB28F3D5FB7C2 /* Fcntl.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 2380FF5BB3C57B87167C2E233299EC05 /* Fcntl.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -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\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors"; }; }; - 2A8A7784018B5DEE7731FFEE1D3A6C62 /* utils.h in Headers */ = {isa = PBXBuildFile; fileRef = 4B01481011B177B9ED93006300270E5A /* utils.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 2AA511BFE6E6DA363E500CC1EF6F515B /* Pbkdf2.m in Sources */ = {isa = PBXBuildFile; fileRef = 5959A814B9579DC7EF9000E11F7FE3D0 /* Pbkdf2.m */; }; - 2AA599D168ED7150F55B27A8DCC59539 /* FIROptions.h in Headers */ = {isa = PBXBuildFile; fileRef = C5536BC129A4DDE4A2E9C777B33C13C1 /* FIROptions.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 2AA8E34FE6C5BE7FCB0EE28F3412D592 /* AsyncPipe.h in Headers */ = {isa = PBXBuildFile; fileRef = F8FD5A216F32168394C74F3137AD387D /* AsyncPipe.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 2AB7867E0D3A0245079044891019401A /* React-RCTAnimation-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 88924A7F0E7ED8E66C1C0A3ABE595DE3 /* React-RCTAnimation-dummy.m */; }; - 2ADF441F3E38E8BE45201791A19C96B5 /* ExecutorWithPriority-inl.h in Headers */ = {isa = PBXBuildFile; fileRef = 50A35339F5AB5829AC849060EC4E180B /* ExecutorWithPriority-inl.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 2AE38FB5DC67BDC738B19935A3748C41 /* FIRAppAssociationRegistration.m in Sources */ = {isa = PBXBuildFile; fileRef = 7F90B4D772589C134A9486E832D59BFB /* FIRAppAssociationRegistration.m */; }; - 2AEB67A72FC65473A464B6A75FED5F93 /* pb.h in Headers */ = {isa = PBXBuildFile; fileRef = 7F763AD72B33D446728D68075D4A6AC7 /* pb.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 2AF8FA27F6F7D973BA41558473B00457 /* EXFilePermissionModule.h in Headers */ = {isa = PBXBuildFile; fileRef = 6397ABA682F826ECC4ADD5A6A5140726 /* EXFilePermissionModule.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 2B0367EBF5494DD605CCA7F32AFD6759 /* GULUserDefaults.h in Headers */ = {isa = PBXBuildFile; fileRef = F80EFFD5CEFD057F6C9AB017625E04C0 /* GULUserDefaults.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 2B0A8958E3B687E1A8784203E791D3A3 /* FIRCLSUnwind.h in Headers */ = {isa = PBXBuildFile; fileRef = 6EA1D92786FCD194CDB476F296BED4AD /* FIRCLSUnwind.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 2B11C84CB20A5EE791B7D49F42903DC6 /* RCTShadowView+Layout.h in Headers */ = {isa = PBXBuildFile; fileRef = 8F3D2E2F139A91C05083EABCCFB6A079 /* RCTShadowView+Layout.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 2B136DF6010B19CFB7ED6716E7EF3427 /* strlcpy-internal.h in Headers */ = {isa = PBXBuildFile; fileRef = 666D07CFFA0543E74260EBDA643C53E5 /* strlcpy-internal.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 2B2CF2FBBEE55C4718C13D17AF5ED129 /* RCTScrollEvent.m in Sources */ = {isa = PBXBuildFile; fileRef = 3D8210E7D61088E626BC33C0AFF31B23 /* RCTScrollEvent.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - 2B3D05273B0E0A9BF4B0761F0A8175B7 /* AtomicUnorderedMapUtils.h in Headers */ = {isa = PBXBuildFile; fileRef = C37A75FDB49EFCEE4A1211875E3F47BA /* AtomicUnorderedMapUtils.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 2B675CC9B444D9F8C03E091D90673A8E /* FIROptionsInternal.h in Headers */ = {isa = PBXBuildFile; fileRef = DDA7ABA5C0D80550BED808644A658551 /* FIROptionsInternal.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 2BA69D9D542370C30F15F680DA1AAE7A /* QBImagePickerController.h in Headers */ = {isa = PBXBuildFile; fileRef = 7A4E2F3708CA04A758B943E594737114 /* QBImagePickerController.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 2BA96075480427D00E22DD8824A6F6B0 /* tree_enc.c in Sources */ = {isa = PBXBuildFile; fileRef = F6841ECB79AB4A38CB837F68495B3AB0 /* tree_enc.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; - 2BB815DC23FADD07BD442AC043C800AE /* ThreadPoolExecutor.cpp in Sources */ = {isa = PBXBuildFile; fileRef = D2D9FC5046BFD665D655F0ECFA346B84 /* 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"; }; }; - 2BCB8213F928827594F54D71B96F1C30 /* MessageTypes.cpp in Sources */ = {isa = PBXBuildFile; fileRef = FBD63547CE6A0E4EBC76D27EBE26B64E /* MessageTypes.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - 2BE074B6CB1F2AC2A40231A8A4B80BC4 /* TimedDrivableExecutor.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 14A2F9FF0806DF09D8520391D7F71997 /* 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"; }; }; - 2BF37E22CAE988ED80A04EC372271304 /* IPAddress.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 9141D4AE95A883D2B8AEE11992DA5379 /* IPAddress.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -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\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors"; }; }; - 2C152D0255D34823A94655288092C778 /* TimekeeperScheduledExecutor.cpp in Sources */ = {isa = PBXBuildFile; fileRef = D9104C131E539E312ABC6D17CDBFF06A /* TimekeeperScheduledExecutor.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -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\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors"; }; }; - 2C1A730FBE5012A1920AC739E1CD10AC /* UMDefines.h in Headers */ = {isa = PBXBuildFile; fileRef = 06C5D22E47F15524A4FB15097A215F42 /* UMDefines.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 2C47B3E9B2BE6E9A18EB65E07A4D4CF6 /* RCTSurfaceView.mm in Sources */ = {isa = PBXBuildFile; fileRef = 32A5033B53147739415CD64E50CB0241 /* RCTSurfaceView.mm */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - 2C4AA4302706540F5D9CFB78B8F4A905 /* SocketFileDescriptorMap.h in Headers */ = {isa = PBXBuildFile; fileRef = 655295FC2D10FA8D103EC75D8A0C884B /* SocketFileDescriptorMap.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 2C51EBBB84C3CDE431260663E2DF2793 /* ThreadCachedLists.h in Headers */ = {isa = PBXBuildFile; fileRef = 685C9C5FD5924F761267DFE1A9612E80 /* ThreadCachedLists.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 2C722B52E7BF530547F3B5F053F2965E /* RAMBundleRegistry.h in Headers */ = {isa = PBXBuildFile; fileRef = 12287278B9CB792002A71AB641016514 /* RAMBundleRegistry.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 2C7498F371D225A59784DD693611FB7D /* RCTImageStoreManager.mm in Sources */ = {isa = PBXBuildFile; fileRef = 34AB4B3088C51FCD93965DF27C55C21E /* 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"; }; }; - 2C76438416AEE979405D966F2A12A10F /* EventBaseThread.h in Headers */ = {isa = PBXBuildFile; fileRef = 775D02E0BCC26F06F0C7E64E8F728344 /* EventBaseThread.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 2C7CD02757F50746084DE37EEDD96B6C /* Log.h in Headers */ = {isa = PBXBuildFile; fileRef = 3603C8C324489767CDF0E94A5AEFAAC5 /* Log.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 2CB6213D090F803B4D049F127D9D0CF9 /* contents.xcworkspacedata in Sources */ = {isa = PBXBuildFile; fileRef = C27CA06AF20B21BE9B9CF6351CF39A10 /* contents.xcworkspacedata */; }; - 2CC81781632EE1FADEEBBBB01AEB41F2 /* DynamicConverter.h in Headers */ = {isa = PBXBuildFile; fileRef = 27C25D4CBD6AD371E662EA30DDEB4FA4 /* DynamicConverter.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 2CD2DCE747D9CD488EBAC0E80EF8D851 /* F14Set.h in Headers */ = {isa = PBXBuildFile; fileRef = E267A724BD8FE80839D12EA727B73AA5 /* F14Set.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 2CEEF0B606087671DF4FDE83D5D6AC5D /* Flipper-DoubleConversion-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = CBD7F32DD3F52D110764E7A7679E3C64 /* Flipper-DoubleConversion-dummy.m */; }; - 2CF0FA338624C03E739AC9F032833D7D /* MessageInterfaces.h in Headers */ = {isa = PBXBuildFile; fileRef = F71DB06084160D809A34D0F0449453D5 /* MessageInterfaces.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 2CFAC05B6DBD8BFF2BB800BCE09795B8 /* Try-inl.h in Headers */ = {isa = PBXBuildFile; fileRef = 0B67C4B41669063ADAD31C56F4EF5A81 /* Try-inl.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 2CFCB4CF85B49C6B63BB759EA9D76575 /* GCDAsyncSocket.m in Sources */ = {isa = PBXBuildFile; fileRef = EA81D63A714DF53A54E422BCA8FA65DE /* GCDAsyncSocket.m */; }; - 2D05F352298AEA840027E18E284108F1 /* RCTSRWebSocket.m in Sources */ = {isa = PBXBuildFile; fileRef = B04A0DBA2F42C8B8861D99EDCA183129 /* RCTSRWebSocket.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - 2D0F2C45839727BDA71B1E35E5238BBD /* Math.h in Headers */ = {isa = PBXBuildFile; fileRef = C81C1CDD0B6CEA783E7B2FED5B4A6A4D /* Math.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 2D10CBDE9447CF713F4462E36482F0D8 /* random_utils.c in Sources */ = {isa = PBXBuildFile; fileRef = 554C9744B627BCE0D470D29FD391FE4F /* random_utils.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; - 2D3C1900D6418690DA2E8E12DB6F280A /* GULKeychainUtils.h in Headers */ = {isa = PBXBuildFile; fileRef = 90BCAF1AC58CAB9DA6A0307E93957A3D /* GULKeychainUtils.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 2D431B541A56A364975325B640563339 /* ObservableConcatOperators.h in Headers */ = {isa = PBXBuildFile; fileRef = 9622CBA20F72B0317AA01CD58030645E /* ObservableConcatOperators.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 2D7787C5A1E5784F81E3DFADA0C2F91B /* SSLOptions.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 8C32EFB899197ECB36CD52A99530F9D3 /* SSLOptions.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -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\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors"; }; }; - 2D8EE7B807FBD6FDA457C1EAA7D36002 /* SDWebImageOptionsProcessor.m in Sources */ = {isa = PBXBuildFile; fileRef = BC10A03BA6895C6F997D6FD59A9DBCB7 /* SDWebImageOptionsProcessor.m */; }; - 2D980EA7799AB6230B2E6EBA169EB09A /* RCTRawTextShadowView.m in Sources */ = {isa = PBXBuildFile; fileRef = D6B54A82E94BF7B2CFD4B0174A07DE6C /* RCTRawTextShadowView.m */; }; - 2D9A653571B1C70BDE32D6C5314F0B6C /* FIRInstallationsHTTPError.m in Sources */ = {isa = PBXBuildFile; fileRef = 82CD836887898CD56425D5AE3E6F3813 /* FIRInstallationsHTTPError.m */; }; - 2DA5B6299698F0399C184E699FA70120 /* FIRCLSExecutionIdentifierModel.h in Headers */ = {isa = PBXBuildFile; fileRef = 1480E96A65A01446E22091CDD5C48855 /* FIRCLSExecutionIdentifierModel.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 2DB236D8916D7BACECF324AF5165D4A6 /* QBSlomoIconView.m in Sources */ = {isa = PBXBuildFile; fileRef = 7A5058AECCABB9E39123724170D99D66 /* QBSlomoIconView.m */; }; - 2DCFFD1F366CEFD36684503C59492F2B /* TypeList.h in Headers */ = {isa = PBXBuildFile; fileRef = EA8C4045E05D9C71E7B35F1F39E7D037 /* TypeList.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 2DDF2CC2DDA6B43F80AEF12C47D5D408 /* EXImageLoader.h in Headers */ = {isa = PBXBuildFile; fileRef = 26E421091A9BB8C1DB5E4CA5715FF029 /* EXImageLoader.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 2DE40C44B661361407541F327C39F180 /* SDmetamacros.h in Headers */ = {isa = PBXBuildFile; fileRef = F0A4024A7743D4E8FC58B80F1A7A3CA9 /* SDmetamacros.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 2DE5851C32276E5A115362D3A94F45F7 /* FLEXNetworkRecorder.h in Headers */ = {isa = PBXBuildFile; fileRef = 40D346238B3A3AF31BB285B00C29A094 /* FLEXNetworkRecorder.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 2DED901D588A61AFC204121DD35F236B /* CoreModulesPlugins.mm in Sources */ = {isa = PBXBuildFile; fileRef = AF33CE15513792246634152E3DCA3C2B /* 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"; }; }; - 2DF43115CC8D29B67CBD373DEBDD9AF7 /* BSGGlobals.h in Headers */ = {isa = PBXBuildFile; fileRef = E3BC7A6739A79A73F4091DEBB379CD0A /* BSGGlobals.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 2DF8327B64A3FE6D1774882D0595DAE8 /* RCTFPSGraph.m in Sources */ = {isa = PBXBuildFile; fileRef = 896D88B2987A64FD6E6A606176592663 /* 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"; }; }; - 2DFD6067CC6E815EF4EEDC04EE964D93 /* jsilib.h in Headers */ = {isa = PBXBuildFile; fileRef = 8C1132CCBD5C35499E22128E3F54A07B /* jsilib.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 2E00B1B2C7BF3736BE40EFAF8F90F7B9 /* UMReactNativeEventEmitter.h in Headers */ = {isa = PBXBuildFile; fileRef = 38566BD58F1A1BD25F8A4793D6740999 /* UMReactNativeEventEmitter.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 2E00C1BC9902D8526F10483B81C8E6B0 /* IOBuf.h in Headers */ = {isa = PBXBuildFile; fileRef = EBB2C777B8701067235AF173874B4438 /* IOBuf.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 2E175864082CAE1492153921B6B06DCD /* RNConfigReader.h in Headers */ = {isa = PBXBuildFile; fileRef = 61966A99342D60B517BD347F8A86DA49 /* RNConfigReader.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 2E2A420D51F91B0C7470EFADB38581D0 /* BugsnagReactNativePlugin.m in Sources */ = {isa = PBXBuildFile; fileRef = BED4D545EAB9F7C4A9B42407D30E8441 /* BugsnagReactNativePlugin.m */; }; - 2E5BE117A10751BBD2F538BF3C95251F /* SpookyHashV1.h in Headers */ = {isa = PBXBuildFile; fileRef = 61CB4D4ACAB911DE070EDC4C8B5F88DC /* SpookyHashV1.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 2E62C4F6E1AC4E5F45A9EE72EADE3760 /* UIImageView+WebCache.h in Headers */ = {isa = PBXBuildFile; fileRef = AB45991526D712A35DE228423BC25B30 /* UIImageView+WebCache.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 2E747A10B8DF8CD114B01FC0F7096084 /* HazptrUtils.h in Headers */ = {isa = PBXBuildFile; fileRef = 6A55C04E01ACF9ECB1600AECCFCBD53C /* HazptrUtils.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 2E88B98AACD8D9D2134933AB6CA36C8A /* SDWebImageDownloader.m in Sources */ = {isa = PBXBuildFile; fileRef = 1B83C5B505E0B8D0D8572D5D9ECEF9D1 /* SDWebImageDownloader.m */; }; - 2EC50908C0DF2E0175B0838A6C05871F /* SDImageAPNGCoder.m in Sources */ = {isa = PBXBuildFile; fileRef = F563103478429FABE9D3126BBB73415A /* SDImageAPNGCoder.m */; }; - 2EF451A980660F39F52CFE588EEC8F68 /* CocoaAsyncSocket-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 3F813FC47D3E286B891888504333930C /* CocoaAsyncSocket-dummy.m */; }; - 2EFB459B385D80E031BF573FF6A128C3 /* ExceptionWrapper.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 4BA0DC74B20FFB89DC6B793878214871 /* ExceptionWrapper.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -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\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors"; }; }; - 2F0572B89DC0FCF6449204A686CEFD23 /* EXLocalAuthentication.m in Sources */ = {isa = PBXBuildFile; fileRef = 7C2765C0E9ACB7E4846FB7A43CA21755 /* EXLocalAuthentication.m */; }; - 2F2CE2C3F8A7C0C790BD647255ECF5AD /* cct.nanopb.h in Headers */ = {isa = PBXBuildFile; fileRef = CF23CC817A95D2D6EC9B51B5E14343C7 /* cct.nanopb.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 2F64DC35A9F59D5820F03D3DB86F7C96 /* PolyException.h in Headers */ = {isa = PBXBuildFile; fileRef = 4225A60B45A95BED41217E53FC10BDDB /* PolyException.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 2F6652E46DC338548662367B81915F25 /* NSDataBigString.mm in Sources */ = {isa = PBXBuildFile; fileRef = 027210AF12960DA75E0E13687A8B0A07 /* NSDataBigString.mm */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - 2F67DA389E43964EE5271FB02C284A56 /* RSocketClient.cpp in Sources */ = {isa = PBXBuildFile; fileRef = FF00494CCECEB92C703520915AF2DF03 /* RSocketClient.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -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 -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors"; }; }; - 2F689061F70B495C0E7036234947A4A4 /* SanitizeThread.h in Headers */ = {isa = PBXBuildFile; fileRef = 536F7347189B2519493855E0FBBF78CB /* SanitizeThread.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 2F772B47B5AD2FF4FFF7F24F16190C5A /* SDWebImageDownloaderResponseModifier.h in Headers */ = {isa = PBXBuildFile; fileRef = 281DE879623596E0556DFE46F612EF83 /* SDWebImageDownloaderResponseModifier.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 2F7BEE2B0414D2430FEBDE422D82E716 /* RNSScreenStackHeaderConfig.h in Headers */ = {isa = PBXBuildFile; fileRef = 034507F582A52D986314724EA30140A2 /* RNSScreenStackHeaderConfig.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 2FAF4B1D2951B1AE7B14AAF36637057A /* FBLPromise.h in Headers */ = {isa = PBXBuildFile; fileRef = EC33EB81EAFE738D028161A843133FDA /* FBLPromise.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 2FB54946DFE25176C6E77A6D5A70C9DA /* RNLongPressHandler.m in Sources */ = {isa = PBXBuildFile; fileRef = 07A975EBBEF16BAA2DD5A684DF560E5B /* RNLongPressHandler.m */; }; - 2FB8C5E4C5631954EAD3757441F763C9 /* MallocImpl.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 070AF3A34162C4E169CC46A26A40058E /* MallocImpl.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -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\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors"; }; }; - 2FCF5F079212CB005E504CF40C4C951B /* dynamic.h in Headers */ = {isa = PBXBuildFile; fileRef = 05EB11B4088E4CA6D0CB872253BCFCCF /* dynamic.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 2FF87901C9FB5CF83D1E7452BE807E64 /* AtFork.cpp in Sources */ = {isa = PBXBuildFile; fileRef = F7108AEA271F505A21FEBB5ABFFBDDCF /* AtFork.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -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\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors"; }; }; - 3005B9C27D2B3D431E6F151C2ED6D8F7 /* RCTUITextField.m in Sources */ = {isa = PBXBuildFile; fileRef = 107BF0D79A81DCBF9F2C7251D501A63A /* RCTUITextField.m */; }; - 303544A415680F1EDFE79AA7B091CEF5 /* MemoryIdler.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 2964002BFB205F392D39B2C836B6AE19 /* 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"; }; }; - 3041989153CDC0261E17B708E0FA20D7 /* RCTAsyncLocalStorage.mm in Sources */ = {isa = PBXBuildFile; fileRef = 86AA0BB8AB1F81709D8DAE74879B068D /* 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"; }; }; - 304AC0416D078BC7F11EE314363C4AD3 /* MessageConverters.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 77EB9E7906E4AF58634F7804B1AC54B1 /* MessageConverters.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - 3068CA0DD0D8EC9304B89DCD5E2711FD /* FIRCLSUnwind_arm.c in Sources */ = {isa = PBXBuildFile; fileRef = 04CD318B73650A813269D865DF4D5037 /* FIRCLSUnwind_arm.c */; }; - 3069B47EA58DF457310D8947EF04D3CB /* SDFileAttributeHelper.h in Headers */ = {isa = PBXBuildFile; fileRef = 55C2494C1C2BAC91A84EA92BDE1AA6A9 /* SDFileAttributeHelper.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 306E69A39FD10D6450030E5C403DBC8E /* HazptrRec.h in Headers */ = {isa = PBXBuildFile; fileRef = C6E690072E939AEE09A66F89F821D423 /* HazptrRec.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 3074282C68DEE5AC2B02E9FBC1A86839 /* RCTActivityIndicatorViewManager.h in Headers */ = {isa = PBXBuildFile; fileRef = FFFB3400D9B937F709EDAA8E0F84A585 /* RCTActivityIndicatorViewManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 30863A08BF81155B3C301BA2C93883AC /* alpha_processing_neon.c in Sources */ = {isa = PBXBuildFile; fileRef = 644633337DCD128ED7793DA3C7441FEB /* alpha_processing_neon.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; - 30AC6FFF5D61AB8AF0C7149DD6865F89 /* RCTModuleData.h in Headers */ = {isa = PBXBuildFile; fileRef = B2AD51EBD6D9EED1E920D3576E9CD20B /* RCTModuleData.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 30B8AC2B88FED6107EFCA0F48F1D2F50 /* JSIDynamic.h in Headers */ = {isa = PBXBuildFile; fileRef = 83F0718D4AC46929A67616693A2E5E6A /* JSIDynamic.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 30BD1E879CEDC30627C17464F7DDC23D /* SDImageCacheConfig.h in Headers */ = {isa = PBXBuildFile; fileRef = 2420C687E305DFC74BEF6A8AB892BC01 /* SDImageCacheConfig.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 30C84494833989A226DDE968247C8173 /* RCTLocalAssetImageLoader.mm in Sources */ = {isa = PBXBuildFile; fileRef = A296FCCEBB73CBA5F8831A307C3B5D91 /* 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"; }; }; - 30E3F8C6D0872E7CB330BB479D714084 /* Fcntl.h in Headers */ = {isa = PBXBuildFile; fileRef = DDB2BB56871CCE78DA7807E3C85737B7 /* Fcntl.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 30EB71AF68C1EBBC1A4D190075FC73B5 /* RCTShadowView.m in Sources */ = {isa = PBXBuildFile; fileRef = AC415482470B49FA58A52B81A346C781 /* RCTShadowView.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - 30F4FC699C6CB4F084AD1E1C2A59D27E /* RCTImageView.h in Headers */ = {isa = PBXBuildFile; fileRef = 53EA4730DD9F53694EA672E36F0054AF /* RCTImageView.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 30FE7FBDB66FF4147763FD808FF614D5 /* AsyncTimeout.h in Headers */ = {isa = PBXBuildFile; fileRef = 81EBB074B75AC78031E9362402A44DAE /* AsyncTimeout.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 3118025E4549BE00C617F4F6ABA09DEB /* RCTSinglelineTextInputViewManager.m in Sources */ = {isa = PBXBuildFile; fileRef = B79E44E27992535930335B6EE61DC447 /* RCTSinglelineTextInputViewManager.m */; }; - 313E8A8AEA5A22BDF46F9792635DE5DD /* BSG_KSMachApple.h in Headers */ = {isa = PBXBuildFile; fileRef = 9F3324150D838B5A79EFFA3B7990E404 /* BSG_KSMachApple.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 315B81DC2BCD2E169C26F9AE7BF89BAE /* ScheduledRSocketResponder.h in Headers */ = {isa = PBXBuildFile; fileRef = 98CA4C533F56EA8774B37B7E5CFD6E7A /* ScheduledRSocketResponder.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 3167828D81549108E01BC503CA5EB814 /* SDWebImageDownloaderDecryptor.m in Sources */ = {isa = PBXBuildFile; fileRef = EC23D8DB996B1FE92A084940B1F28352 /* SDWebImageDownloaderDecryptor.m */; }; - 316821A6D6464A67A56AB3343DCA87C8 /* ScheduledExecutor.h in Headers */ = {isa = PBXBuildFile; fileRef = 105C6BEDBE480010F2F7F515B213FBBD /* ScheduledExecutor.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 318D33E151FB74850FED3780E7CC1597 /* vp8li_enc.h in Headers */ = {isa = PBXBuildFile; fileRef = 83B05D19439553D21178193FF0C75B05 /* vp8li_enc.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 31A2B597AA17492026482C3FE76F8714 /* RNCCameraRollManager.m in Sources */ = {isa = PBXBuildFile; fileRef = 91509E398C1544A50BA682D970B0C426 /* RNCCameraRollManager.m */; }; - 31A9C0B7972ED646DD42B8AB48EC754C /* FIRCLSReportAdapter.h in Headers */ = {isa = PBXBuildFile; fileRef = 8A3DB7B67BAC8384B203734EB780A8EA /* FIRCLSReportAdapter.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 31BDFEFC6ED8283237E1FAFD05763978 /* ReactMarker.cpp in Sources */ = {isa = PBXBuildFile; fileRef = A711B6DDF5746588A5FFCD5E330DBF3D /* ReactMarker.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - 31C9C28D1D271197565CAB47CDD68212 /* EXFileSystemAssetLibraryHandler.h in Headers */ = {isa = PBXBuildFile; fileRef = 0D76CCB0098127BEAEB1754CFB47C021 /* EXFileSystemAssetLibraryHandler.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 31D7206FED6867269B7EF6D2C1E20B32 /* BSG_KSJSONCodec.h in Headers */ = {isa = PBXBuildFile; fileRef = D79ECBAD9D023B23590DA3F9860C4878 /* BSG_KSJSONCodec.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 31E825642E6F8923F689DCF2BCED6740 /* FBLPromise+Await.m in Sources */ = {isa = PBXBuildFile; fileRef = 66EE8C7854B55B201886046863BC7BF0 /* FBLPromise+Await.m */; }; - 320B341D246BF6670B88F45ED45F35C8 /* RNFBUtilsModule.m in Sources */ = {isa = PBXBuildFile; fileRef = 306FDD037C73399B0B0783FC8DF4D453 /* RNFBUtilsModule.m */; }; - 3261E2311B5543A83F7EC3D9D28D0D25 /* EXAppleAuthenticationMappings.h in Headers */ = {isa = PBXBuildFile; fileRef = 7EF6B9A47FFA6087F2E4D57B895577D6 /* EXAppleAuthenticationMappings.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 3271B61D5311B0A1E22EA540F1C0948D /* jsi.cpp in Sources */ = {isa = PBXBuildFile; fileRef = D3CA87F3981BA1FAD1B5A90A2FB91D9D /* jsi.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - 327589EC8A6265707CCFE874EA642053 /* ManualTimekeeper.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 44D271098B5BCC88549B07E033D7938E /* 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"; }; }; - 3278DD4E8C945A15F7BD4A4D15A2DB70 /* FIRCLSSettings.m in Sources */ = {isa = PBXBuildFile; fileRef = 5A9D7451AAEF6D630785986A58FDC007 /* FIRCLSSettings.m */; }; - 328252FB5DC2DF774B6902BE393ADB09 /* UMErrorCodes.h in Headers */ = {isa = PBXBuildFile; fileRef = 85EBAEA75FFA7DD5F1973B6C687C2441 /* UMErrorCodes.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 3297803A1036B923EA911A24F231B3A5 /* BSG_KSMach_x86_64.c in Sources */ = {isa = PBXBuildFile; fileRef = 3BE5E4F1B8D8EEEACB8C8E1EBE765069 /* BSG_KSMach_x86_64.c */; }; - 32A4EF8E09B848C461511F561251CC0C /* SKHighlightOverlay.mm in Sources */ = {isa = PBXBuildFile; fileRef = 1756CBAB34D943C6297BED0A55482AA7 /* SKHighlightOverlay.mm */; settings = {COMPILER_FLAGS = "-DDEBUG=1 -DFLIPPER_OSS=1 -DFB_SONARKIT_ENABLED=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -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"; }; }; - 32C8655D48F40867932997718E4CFB01 /* BSGJSONSerialization.m in Sources */ = {isa = PBXBuildFile; fileRef = DDB24E02EA6FB47F447446D284BE71FF /* BSGJSONSerialization.m */; }; - 32EA84EA6DE44E1C762DFD5A7368D1D6 /* diy-fp.cc in Sources */ = {isa = PBXBuildFile; fileRef = A045463B429A15AE4E7D8C9C7D3D25CC /* diy-fp.cc */; settings = {COMPILER_FLAGS = "-Wno-unreachable-code"; }; }; - 32EB13EEFFE187E1629F0CFE625069A8 /* GDTCORReachability.m in Sources */ = {isa = PBXBuildFile; fileRef = D75A2CFEEF6B8B25305A84FB7831CDD0 /* GDTCORReachability.m */; }; - 3307A812F26ED03659E84F5C45F81999 /* TurboModuleUtils.h in Headers */ = {isa = PBXBuildFile; fileRef = ACA61489DCBF21D8BF85939ECCD147C3 /* TurboModuleUtils.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 33187A10BF5CF09073D396DCE97FF6ED /* RNNotificationUtils.m in Sources */ = {isa = PBXBuildFile; fileRef = 54DFF4FA1AFD8A70E0EE2531B28728BA /* RNNotificationUtils.m */; }; - 33265A4F09DB8FB51B801C3BA92AD81B /* DefaultKeepAliveExecutor.h in Headers */ = {isa = PBXBuildFile; fileRef = D275BB6BB5DDB9ADBCA034837339D4E6 /* DefaultKeepAliveExecutor.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 33325583D03F08A5A8004F9B8219253E /* it.lproj in Resources */ = {isa = PBXBuildFile; fileRef = 54C880A4BF84B88F1F9DADFB3F064F43 /* it.lproj */; }; - 333D12D69079F2758E9D420A9DB33103 /* RCTInputAccessoryShadowView.h in Headers */ = {isa = PBXBuildFile; fileRef = E62636EB54EBAC8FFAAD4C44CF3B71D7 /* RCTInputAccessoryShadowView.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 33482CEF63E6E903662CB9FFA4347F0A /* AsyncGeneratorShim.h in Headers */ = {isa = PBXBuildFile; fileRef = 5B42126EAF02047EADFC9E6162C406BC /* AsyncGeneratorShim.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 3366E76CA4F7EBBE50E98AAD07B05D76 /* Conv.h in Headers */ = {isa = PBXBuildFile; fileRef = 1F52333D428D405656E110A96D202CD1 /* Conv.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 336AF32DA88EC4C2FF4831C3A7C3D0F3 /* FIRCLSInternalReport.m in Sources */ = {isa = PBXBuildFile; fileRef = A3803A14867971EE2F7147E185238DC3 /* FIRCLSInternalReport.m */; }; - 33734444F047897F92D31377FE37DBD8 /* FIRBundleUtil.h in Headers */ = {isa = PBXBuildFile; fileRef = D4F1C532F9BEF20239D3696E29DB5A39 /* FIRBundleUtil.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 33A3F9A3EC7C85FF053EA3936284ADCD /* GDTCORTransformer.m in Sources */ = {isa = PBXBuildFile; fileRef = 12BEA7F7C4B73D1E36CD768C9F3B9301 /* GDTCORTransformer.m */; }; - 33AB5242D543303153929BD24123AE64 /* BitIterator.h in Headers */ = {isa = PBXBuildFile; fileRef = 80465CD88BDB7A9BE15102CF50241913 /* BitIterator.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 33BD0254FA27EDD2F22654E1DBB7DDF5 /* SKDescriptorMapper.mm in Sources */ = {isa = PBXBuildFile; fileRef = CABA488DABFBFA90F5E1369C3D813996 /* SKDescriptorMapper.mm */; settings = {COMPILER_FLAGS = "-DDEBUG=1 -DFLIPPER_OSS=1 -DFB_SONARKIT_ENABLED=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -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"; }; }; - 33D7E712B6D5A211E267078385732A82 /* RSocketStats.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 5C127F75FA6077FB8DAB2F87EFD5DC08 /* RSocketStats.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -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 -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors"; }; }; - 33DC591EFDAA7BD1D9D6B57E95171696 /* RNFBSharedUtils.m in Sources */ = {isa = PBXBuildFile; fileRef = 7B8AF369F25FF411A049E73F240EF7F1 /* RNFBSharedUtils.m */; }; - 33E2AC6E5506D025DF52F40BA239CC9C /* StreamThroughputTcp.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 89F8DA17B84406296466CA0BD7774307 /* StreamThroughputTcp.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -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 -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors"; }; }; - 342D1318DCDB772504BB7EACE319F360 /* JSBundleType.h in Headers */ = {isa = PBXBuildFile; fileRef = 1EF300043F25CCBF87B4550F45407717 /* JSBundleType.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 34A3DED0678C7C9230EEBB6D3516425A /* TOCropView.m in Sources */ = {isa = PBXBuildFile; fileRef = 6F36E13AC167DFE778E66EEF82E1F9E6 /* TOCropView.m */; }; - 34A6F22C9D2DA470407AF6936B1D1610 /* JSCRuntime.h in Headers */ = {isa = PBXBuildFile; fileRef = AA817559181B1223AA1F194FBE06B705 /* JSCRuntime.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 34B5B887C7B414AB3FE6CD1820C6F32F /* FLEXNetworkRecorder.mm in Sources */ = {isa = PBXBuildFile; fileRef = D73071E48F25255F5B10C19EEF913046 /* FLEXNetworkRecorder.mm */; settings = {COMPILER_FLAGS = "-DDEBUG=1 -DFLIPPER_OSS=1 -DFB_SONARKIT_ENABLED=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -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"; }; }; - 34C855B4D2D833A164F66599252142EE /* Compression.m in Sources */ = {isa = PBXBuildFile; fileRef = 4EDBEF597A90BB3A563FD690349CFDDE /* Compression.m */; }; - 34C876C26AE9A2DC16B7F2A2904AB89A /* stop_watch.h in Headers */ = {isa = PBXBuildFile; fileRef = A7AE6578BD7F7F96E800B58A62BFCE2D /* stop_watch.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 34CDA8FAD8119952CBD91C7D548C5ED5 /* thread_utils.h in Headers */ = {isa = PBXBuildFile; fileRef = 4B70EDFA652908C411936321ADE7A72C /* thread_utils.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 34EB58E99226DB3F518AA6E287587D9F /* RCTInputAccessoryView.h in Headers */ = {isa = PBXBuildFile; fileRef = D9B8B92F24A47BEF9C95B210D292BA64 /* RCTInputAccessoryView.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 34F0DFD8C37DD65D469E3F42AB15B984 /* UniqueInstance.h in Headers */ = {isa = PBXBuildFile; fileRef = 9E04DE717E041E0009FD97ED613179E4 /* UniqueInstance.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 34FCF45CC9D0DBB89D51453FC691EDD8 /* GDTCORClock.h in Headers */ = {isa = PBXBuildFile; fileRef = 463B9B93FEF2AB780CA5E2E4FC38E86E /* GDTCORClock.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 34FEF1A443ACECD48D8BAF56D4E467AF /* SafeAssert.cpp in Sources */ = {isa = PBXBuildFile; fileRef = D57829D18EEE1D92E43BA2B93BFD087E /* 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 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_PTHREAD=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - 350046EFA57783C5A668ADFB917575FF /* YGStyle.h in Headers */ = {isa = PBXBuildFile; fileRef = E36DAA2644DEBB87D9DAF5D9B3E3637D /* YGStyle.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 350AE613C31DFA3D74DD3EBABEE7883D /* Connection.cpp in Sources */ = {isa = PBXBuildFile; fileRef = EE211749CD18ADB36400BEAD047FD706 /* Connection.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - 354317C878C4259A7AA4EB5A594D59AC /* BSG_KSBacktrace.h in Headers */ = {isa = PBXBuildFile; fileRef = ABD11CDC541F63D4559316516DA9F8BE /* BSG_KSBacktrace.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 3546ED5CE75CAB5E009E202B611C43BF /* AtomicStruct.h in Headers */ = {isa = PBXBuildFile; fileRef = D688BD0666F5655DF0C68C2D97CA9956 /* AtomicStruct.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 35568ABDF4D98AB458321E04288A84BA /* JSINativeModules.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 923755E9F99621CC05524BE00627817C /* JSINativeModules.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - 356B3BFBDE9967FEB7D091B1DD01EFF4 /* evthread.c in Sources */ = {isa = PBXBuildFile; fileRef = 58273B190325B547D525894CCAF07636 /* evthread.c */; }; - 35796E3D5AE1DED7559A23D85CA14899 /* RNRandomBytes.m in Sources */ = {isa = PBXBuildFile; fileRef = 27871E35046D797BDFC6AB677CBFE34B /* RNRandomBytes.m */; }; - 357F2273B939C6DE75EA2B2D4FD21600 /* SDImageAssetManager.h in Headers */ = {isa = PBXBuildFile; fileRef = D93CBCD48E40E7740CBB907E63A0A0DD /* SDImageAssetManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 358EAD4E2641D9749EBA400F92077D00 /* UIView+WebCache.h in Headers */ = {isa = PBXBuildFile; fileRef = 186F2C22A26007A725E79335C5E6BC62 /* UIView+WebCache.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 35AA6CC8D0F97816A9D58A19CEE8B93A /* Format.h in Headers */ = {isa = PBXBuildFile; fileRef = B90E21FA5E3F701B8D278B2E7060FECA /* Format.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 35CDAB6F50715003C03DC9B2DA983D22 /* upsampling.c in Sources */ = {isa = PBXBuildFile; fileRef = 16740E5B21418D74BF0EB7B99959E337 /* upsampling.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; - 35DCAD050BA0BCC1D31C85BC3F5DA2AA /* JSModulesUnbundle.h in Headers */ = {isa = PBXBuildFile; fileRef = F458D12292FA35B08C9A39B64CF76800 /* JSModulesUnbundle.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 35DF1072ADB110CFF3A06D61D16DE76C /* UIColor+SDHexString.m in Sources */ = {isa = PBXBuildFile; fileRef = 837EFFA6ADD6F536B9A48C66A773DD2B /* UIColor+SDHexString.m */; }; - 35EC1CCF497D02207D4E8FD41D54F57E /* evmap-internal.h in Headers */ = {isa = PBXBuildFile; fileRef = CF0C1E54F3BF3139BD54F1B42B3175A4 /* evmap-internal.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 35F31B052EB9880575BAFBE21A0C2328 /* GlobalShutdownSocketSet.h in Headers */ = {isa = PBXBuildFile; fileRef = 77ACDDC07D639F420CA1C30073310AC8 /* GlobalShutdownSocketSet.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 35F500EAF587605B1E45BA1D934062F4 /* frame_dec.c in Sources */ = {isa = PBXBuildFile; fileRef = 086B1B9630B10C0C7A5C473B6B1D4EDD /* frame_dec.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; - 36153F8ED16F228983425E4CCB9638EF /* RNFetchBlobReqBuilder.h in Headers */ = {isa = PBXBuildFile; fileRef = 8AC9189025B8BE1B454FF175813E2356 /* RNFetchBlobReqBuilder.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 362CFCE2FAB3468B2C45FE890D99ADD1 /* json_patch.h in Headers */ = {isa = PBXBuildFile; fileRef = E51E3D93489327FBA7B49801806BF032 /* json_patch.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 3630703BA714A7B643C662E8F4C9B5E6 /* fast-dtoa.cc in Sources */ = {isa = PBXBuildFile; fileRef = F1D841594AC0B3715C4A76A17BDB42B0 /* fast-dtoa.cc */; settings = {COMPILER_FLAGS = "-Wno-unreachable-code"; }; }; - 36485D4AD5ACC4DAAC0A312048B6F34B /* bit_reader_utils.h in Headers */ = {isa = PBXBuildFile; fileRef = FEDED317099F2F9D101BBB2B59B5DC84 /* bit_reader_utils.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 365D26FAE0517554640DE85CCED99E1E /* Types.h in Headers */ = {isa = PBXBuildFile; fileRef = E87529B1BAFDF45BD486509718772E8E /* Types.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 368975B32CE2B1A514EEDE0959DC2CAF /* FrameTransportImpl.h in Headers */ = {isa = PBXBuildFile; fileRef = EECEF8976E9A1DE282356790E4A04086 /* FrameTransportImpl.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 368C0B35C87176A00FD1BB60B421CFBE /* FIRErrors.h in Headers */ = {isa = PBXBuildFile; fileRef = E654F3DD214C3891F78D738C606F77F9 /* FIRErrors.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 36AC42E0DA8E51DC848F18C6518C0B93 /* RecordIO-inl.h in Headers */ = {isa = PBXBuildFile; fileRef = 8DA209082F197D4EEA07EDCF022523BD /* RecordIO-inl.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 36B358A11DCCB0C6CCB1E6ADC77DAF1C /* SKTapListener.h in Headers */ = {isa = PBXBuildFile; fileRef = A2C445EAF42760A0FA5EB239EA31565B /* SKTapListener.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 36B593E3EA6335C118B7782DA8E12CD2 /* BugsnagSessionTrackingApiClient.h in Headers */ = {isa = PBXBuildFile; fileRef = C89060B13A5EAABE289966B9B7599BED /* BugsnagSessionTrackingApiClient.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 36E0163696574F8B786D05BA08F3D391 /* Demangle.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 2E989BFAB2A9F137B9B90605149AC2B9 /* 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"; }; }; - 36E05C04602F9E6516D0A648301766FD /* BugsnagApp+Private.h in Headers */ = {isa = PBXBuildFile; fileRef = CC8FAA1C912262D8FB04EABEE005863E /* BugsnagApp+Private.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 36E6AFE617AE7AB8850CC1E6397F4B66 /* FIRCLSNetworkOperation.h in Headers */ = {isa = PBXBuildFile; fileRef = 88F8A7279BB40AE2387BE1D231002F03 /* FIRCLSNetworkOperation.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 36FC9E7DA822EB5CC83DA18A93D11F43 /* GLog.h in Headers */ = {isa = PBXBuildFile; fileRef = 04D979379AC3B5C4CC390B73EEDE68C6 /* GLog.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 37113E6861E12CD3E0C84DC1757B96FF /* Barrier.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 3D34BCB9EA9CF11A5F9C06040A886B25 /* 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"; }; }; - 372BCB0009F5ADC08084781A24633A50 /* RCTSinglelineTextInputViewManager.h in Headers */ = {isa = PBXBuildFile; fileRef = E60B63962F0015EBE01DA39997A2EC56 /* RCTSinglelineTextInputViewManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 373A62DDF62516AF417A05F1F09DC021 /* yuv_sse2.c in Sources */ = {isa = PBXBuildFile; fileRef = EE1C228CC76D024E333510EC9F96FACE /* yuv_sse2.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; - 373A7ECDE84CE707C755E1958C235731 /* SoftRealTimeExecutor.h in Headers */ = {isa = PBXBuildFile; fileRef = C8755BAEBC83C22B03BD7DB43383D48B /* SoftRealTimeExecutor.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 373F0400E31E06EC9D70F59328E1EE3E /* UMModuleRegistryAdapter.h in Headers */ = {isa = PBXBuildFile; fileRef = A1761F12273ABDA4063CBDC302557BC3 /* UMModuleRegistryAdapter.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 376CCD7ECFADBCEC62644326EA6F8C64 /* Framer.h in Headers */ = {isa = PBXBuildFile; fileRef = 57B323E86461E56DCA658BB778E3012C /* Framer.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 3772ADCA3BF208AE5047B9C835BA547D /* BSG_KSMach.c in Sources */ = {isa = PBXBuildFile; fileRef = FC83FB36E6881FC37B06AB32B3F37279 /* BSG_KSMach.c */; }; - 37916BFF37015D489D43ED58CEC40F92 /* RCTBaseTextInputShadowView.h in Headers */ = {isa = PBXBuildFile; fileRef = 5D3EA5B4B575BDA257735202166064A3 /* RCTBaseTextInputShadowView.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 3794DEFCE1137CAA39E051791D6F57D7 /* RCTInputAccessoryViewManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 90C7C147085C240CCCF67AB7DD43F1AD /* RCTInputAccessoryViewManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 37A298F5F8D603F694F6D0BB8324AE3C /* String.h in Headers */ = {isa = PBXBuildFile; fileRef = AEE92C474B44CBA057719274639B2098 /* String.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 37AD0EC05AB90190AA9D1F16A10A480C /* SetupResumeAcceptor.h in Headers */ = {isa = PBXBuildFile; fileRef = 2ACCE6DDD9D46016A77D2950B591793B /* SetupResumeAcceptor.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 37D8C92D8800CC042AD2FF1F189A0477 /* RCTSurfaceRootShadowView.h in Headers */ = {isa = PBXBuildFile; fileRef = 129BF999B117C84BAB3A73C84ADAD27B /* RCTSurfaceRootShadowView.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 37F160837E019F9DE8A93F3461DACA1F /* RNEventEmitter.h in Headers */ = {isa = PBXBuildFile; fileRef = 7283EB23F32AC740B558D0C30B95E95C /* RNEventEmitter.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 37F3E3931EE30BFF95688AEE1C609630 /* NetOps.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 6B13A8544A674349A2B8685A22CF4DA5 /* NetOps.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -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\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors"; }; }; - 37F728E6C65C0376778980D627EEEA0B /* IPAddress.cpp in Sources */ = {isa = PBXBuildFile; fileRef = A1CDB664089BF1448C4BA69FBA03D6CE /* IPAddress.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -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\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors"; }; }; - 37FD29FAC19693BF91BA579CD22F86D3 /* RCTVibration.mm in Sources */ = {isa = PBXBuildFile; fileRef = 1B7A5687EC3FECBF2152FC845F27CF0C /* 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"; }; }; - 38079F6978D9A598E473A97D33DD9958 /* GULOriginalIMPConvenienceMacros.h in Headers */ = {isa = PBXBuildFile; fileRef = A7F777A235BC6BD096853867E94D2332 /* GULOriginalIMPConvenienceMacros.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 3808B8A26AB922A642AC3788161E6DDA /* BSG_KSCrashType.h in Headers */ = {isa = PBXBuildFile; fileRef = D20343DBF407D8021B5FCD3EC802C4E2 /* BSG_KSCrashType.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 380CD0B08F298700A7E95946BDF89368 /* RCTSliderManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 1594760C53DFE83CD8366904004212D3 /* RCTSliderManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 38160C63D11A43E440FF35A7E4DF1233 /* FIRCLSURLBuilder.m in Sources */ = {isa = PBXBuildFile; fileRef = AAB6149E896399EC0424B0B9EE28140D /* FIRCLSURLBuilder.m */; }; - 382EFB561844FBD4A301E24BB7552F19 /* filters_utils.c in Sources */ = {isa = PBXBuildFile; fileRef = 854392E79DEFD120A20C066DCB55C4AF /* filters_utils.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; - 3877D502A13BEF8A8E61D65114013193 /* FlowableDoOperator.h in Headers */ = {isa = PBXBuildFile; fileRef = E1F7A0D97DA95FFB171D971F6CDBA8A3 /* FlowableDoOperator.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 3894D991CF7F1D3CD74B7101F3A2FC3D /* Demangle.h in Headers */ = {isa = PBXBuildFile; fileRef = 5B49FDBF3FC01A38C036AFDF31332825 /* Demangle.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 38A95EFC134FD4FA47A4CF67F5BD425C /* BugsnagError.h in Headers */ = {isa = PBXBuildFile; fileRef = A6D61B128EC0F6DFF20B04348BA44CDF /* BugsnagError.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 38AFC6746695FC442AB7D8FED57F0083 /* bignum.h in Headers */ = {isa = PBXBuildFile; fileRef = F6EA10A90AA1593D6A98F29E04F47B9E /* bignum.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 38C19E1BDBC1EBF019C3D0A8CF1C7B5F /* FIRConfiguration.h in Headers */ = {isa = PBXBuildFile; fileRef = D6C5BB22211A7F56D8953B1A2AE24CEC /* FIRConfiguration.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 38C58C53984AD093A58AA3C8C2123743 /* RangeSse42.h in Headers */ = {isa = PBXBuildFile; fileRef = DD0660AC75549E78737B5FC624874D50 /* RangeSse42.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 38D3B34D08BA7B972A8B94E5DCE52765 /* RCTImageLoaderLoggable.h in Headers */ = {isa = PBXBuildFile; fileRef = A35A7DE406B8FAE3EB7579B1AD3ACF49 /* RCTImageLoaderLoggable.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 38DD59C79FFD46AE751323372548DB62 /* RCTRedBoxSetEnabled.h in Headers */ = {isa = PBXBuildFile; fileRef = 82205CE222B6E04489CA0E4B9CB5DABD /* RCTRedBoxSetEnabled.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 38E21F4BBD3CE55A1F7A6521A400C11E /* GDTCORPlatform.m in Sources */ = {isa = PBXBuildFile; fileRef = 96CFDA90AB401FBA7E4CFF0BEF711DF7 /* GDTCORPlatform.m */; }; - 38F3A9FF95E7EC5B6862FD37BE263AAB /* SDAnimatedImageView+WebCache.m in Sources */ = {isa = PBXBuildFile; fileRef = 9C1ADDEEF0CD70CEAF9F4B1C55F0E0D4 /* SDAnimatedImageView+WebCache.m */; }; - 38FD81FB7631F917EDD0E9E29097F3A4 /* RCTSafeAreaView.m in Sources */ = {isa = PBXBuildFile; fileRef = 642047E681784F26A48404E6D40A6ABD /* RCTSafeAreaView.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - 3905638F5D114B5957346FAB5DE79EF9 /* UMEventEmitterService.h in Headers */ = {isa = PBXBuildFile; fileRef = FBD206A4E40645F8B1B0CA79E1EBD3D2 /* UMEventEmitterService.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 3905EDAD6B0D8E00081ECB52A04E0CA3 /* Portability.h in Headers */ = {isa = PBXBuildFile; fileRef = 2A9CC50E192B5C6EDAF41409F4688612 /* Portability.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 391A55BBBB4A0FDE96C1FA9C62A16DA3 /* CoreModulesPlugins.h in Headers */ = {isa = PBXBuildFile; fileRef = AD0D3A362D811F5EAEB5C140E2BDCCEF /* CoreModulesPlugins.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 3953B7589F73A848B0C6A8C0BBE8EE95 /* openssl_opensslconf.h in Headers */ = {isa = PBXBuildFile; fileRef = B4F4D024338D6DCA927F3774F1084E88 /* openssl_opensslconf.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 395D879EB82946D7564A77E43D2FF02C /* PublishProcessor.h in Headers */ = {isa = PBXBuildFile; fileRef = F09857F1319ADC4E8AA076419B8A0A33 /* PublishProcessor.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 396586DD3A1B2B90C096DC3C8D2AEE2C /* Launder.h in Headers */ = {isa = PBXBuildFile; fileRef = EBEF24FFE00373397C3BD58477679B7D /* Launder.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 396D2A75713581498DCD60CB5355239A /* Restart.h in Headers */ = {isa = PBXBuildFile; fileRef = 2F063F42597664A28DB5D13D0BAD4FE9 /* Restart.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 39B794E176F65B8F2A766370B31996D7 /* RCTSurfaceHostingProxyRootView.mm in Sources */ = {isa = PBXBuildFile; fileRef = FB66E981678899432AAEE22D2D1F4B7F /* RCTSurfaceHostingProxyRootView.mm */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - 39BAE3ED446B4441CFDD20EF58C47848 /* FIRExceptionModel.m in Sources */ = {isa = PBXBuildFile; fileRef = 6E137C9A8D2E3E9A5EF10B8265E9656A /* FIRExceptionModel.m */; }; - 39BF7EDA8EDC4391604D1AFFEF7EE00E /* RNLongPressHandler.h in Headers */ = {isa = PBXBuildFile; fileRef = 60A8A8253558AB307ED8E84CF4F5D614 /* RNLongPressHandler.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 39C7B8CBC7FF6C71A08118BE63C072A0 /* Peertalk.h in Headers */ = {isa = PBXBuildFile; fileRef = 32D1463A74A42DAEDD2840B3434A62A1 /* Peertalk.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 39CD182F2B1EAC51016774AEEBEF7C7B /* RCTKeyCommands.h in Headers */ = {isa = PBXBuildFile; fileRef = 992DD574BFA6E0642113BB1C117173AB /* RCTKeyCommands.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 39E6AC4E276515BDB5C7DFD71C6325E8 /* Unit.h in Headers */ = {isa = PBXBuildFile; fileRef = BBC73BC2EAC1CDAC3847AABE5647B8D4 /* Unit.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 39F4FE38925F09D6917B09C17FC395D7 /* BSG_KSJSONCodec.c in Sources */ = {isa = PBXBuildFile; fileRef = 7975AC71361D847C020289BF2CE5BBB9 /* BSG_KSJSONCodec.c */; }; - 3A033B1083DF60512428067B1FAE1217 /* StaticSingletonManager.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 33B2EEF5CF6FD114264C2B7489C6CBFA /* 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"; }; }; - 3A0EBA9C20A091090BCC639E8D8BA6DB /* StreamResponder.cpp in Sources */ = {isa = PBXBuildFile; fileRef = C041368CA726A7C4BA1CF1337AC041DB /* StreamResponder.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -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 -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors"; }; }; - 3A1D52589C5F6CDFBC9A14EB108BA417 /* react-native-cameraroll-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = E5E64F267161CCD740E6E399862D33D0 /* react-native-cameraroll-dummy.m */; }; - 3A24567EAA97CA2C452EEE45118017C3 /* openssl_aes.h in Headers */ = {isa = PBXBuildFile; fileRef = 6A011C3AE203A4A6BA8BC9AEE521484F /* openssl_aes.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 3A5D03DE5C0D231A53DD02D0791A134A /* CancellationToken.h in Headers */ = {isa = PBXBuildFile; fileRef = 1F0EE0F7910D4DE8ACCD1C5AA15A07C8 /* CancellationToken.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 3A5DB1E5EC7C9DB692B411AC12981758 /* UMAppLoader-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = EB1889F513B963203313D59B84A4D47D /* UMAppLoader-dummy.m */; }; - 3A66F22642029C92543E830D308926C5 /* FirebaseCore.h in Headers */ = {isa = PBXBuildFile; fileRef = 28E2BAFBF464123D07D80E88EC64B836 /* FirebaseCore.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 3A758E4BB74593FC69CF6D1539496DC9 /* RNCWKProcessPoolManager.m in Sources */ = {isa = PBXBuildFile; fileRef = EDCEE072649FFB5B0DD762223223B843 /* RNCWKProcessPoolManager.m */; }; - 3A773AC8A639262A73ED3F671D3DF883 /* FIRLogger.m in Sources */ = {isa = PBXBuildFile; fileRef = 4E7CEA9CAE2AF0E1A5E22F2EDDD3E2BE /* FIRLogger.m */; }; - 3A79003B3C6161DBD186FB8AEE8336D9 /* SDAnimatedImageRep.m in Sources */ = {isa = PBXBuildFile; fileRef = BD53164FA67EF8F1844D6FCCE10D3DC3 /* SDAnimatedImageRep.m */; }; - 3A7BCDE44C29DA26A8AA3EA7B357BEFE /* CoreCachedSharedPtr.h in Headers */ = {isa = PBXBuildFile; fileRef = 6A2ABF0D6496094126D0C76FF799A01F /* CoreCachedSharedPtr.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 3A80011D06CE81B3729E6A53F8AEC274 /* FIRCoreDiagnosticsConnector.h in Headers */ = {isa = PBXBuildFile; fileRef = 942912A1EA0A7436F2FDD973903DF116 /* FIRCoreDiagnosticsConnector.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 3A894C316EDB26C15B5AB26BFC368B9A /* RCTTextViewManager.h in Headers */ = {isa = PBXBuildFile; fileRef = D3F24519187C0062D2335EF4A06B631F /* RCTTextViewManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 3A9AFAD65F39A476230BE77CB67A61DC /* SocketAddress.h in Headers */ = {isa = PBXBuildFile; fileRef = 862386D325E2D34453FACDF8BC1C8191 /* SocketAddress.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 3AB69594FD46CD50CAA872FD72BFBD02 /* RsaFormatter.m in Sources */ = {isa = PBXBuildFile; fileRef = 4158D7C8F9D15F608EA072E56C9C5029 /* RsaFormatter.m */; }; - 3AEF0F6BDB4995D323D6D53A6CE2889D /* SKSearchResultNode.h in Headers */ = {isa = PBXBuildFile; fileRef = 31C5EC4D0F956F3425D9D0AA293684FB /* SKSearchResultNode.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 3AF04B5480C7868A38CFD0AE3E12ED86 /* JSIExecutor.cpp in Sources */ = {isa = PBXBuildFile; fileRef = E61AF1CB17B0CA8E7D4A8158361F4DF4 /* JSIExecutor.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - 3B118620D13197BEF9C2AE1C32953CED /* MemoryResource.h in Headers */ = {isa = PBXBuildFile; fileRef = 14B414E138B4DADDE37A307B4CF155EB /* MemoryResource.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 3B2098DABCFE776E94FEE04DF9557CF0 /* RCTImageLoader.mm in Sources */ = {isa = PBXBuildFile; fileRef = 827B56C1E939D2F8F150F08DF0948799 /* 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"; }; }; - 3B22D56012AD29B234EEEFC6BEB010B1 /* ExecutionObserver.h in Headers */ = {isa = PBXBuildFile; fileRef = 3EAD0B3A6057A359919AA91B85A91C4F /* ExecutionObserver.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 3B51D3D9AAA380C3D1AF31EA058324A7 /* BSG_KSCrashReport.h in Headers */ = {isa = PBXBuildFile; fileRef = 789E43D8893122D597A2C48EDB7CFD7C /* BSG_KSCrashReport.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 3B5D0BC23D913CFC18B4AB92B50CE407 /* RCTTransformAnimatedNode.m in Sources */ = {isa = PBXBuildFile; fileRef = 0A99368FA9B7C56371503B6CE44602A8 /* 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"; }; }; - 3B6922D14B23A155308E5D72318FB004 /* RCTSafeAreaViewManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 35C462873D8556B83C39A330E577312B /* RCTSafeAreaViewManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 3B8202F37017BCF36C9E1187A99CF2E6 /* InlineExecutor.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 71D33565832EF9643AF1A9C72CFC9A05 /* InlineExecutor.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -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\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors"; }; }; - 3B894FCBE494A56B522B87BECE5D410E /* RNLocalize.h in Headers */ = {isa = PBXBuildFile; fileRef = 5B314EBC0F63CD448CFF48D750EBD705 /* RNLocalize.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 3B995CA64D0EFAC634D5A07D1607BD05 /* FIRCLSURLSessionConfiguration.h in Headers */ = {isa = PBXBuildFile; fileRef = 1EC80EEA530279E219DA9C2BAFC44698 /* FIRCLSURLSessionConfiguration.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 3BAB342428D70E0BD373376061AA0D9F /* RCTSurfaceRootView.mm in Sources */ = {isa = PBXBuildFile; fileRef = 580DCF30E8F730B898A9CB6FDA5A1DBA /* RCTSurfaceRootView.mm */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - 3BC8A17E25A16AE5B69685FAA02CDF95 /* HHWheelTimer.h in Headers */ = {isa = PBXBuildFile; fileRef = BBD00687D106C7D010206329B7785BEC /* HHWheelTimer.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 3BCFD00E61EAE61F79B4D2A008A04B81 /* BSG_KSCrashSentry.h in Headers */ = {isa = PBXBuildFile; fileRef = 4D6D624CF810AD92E2B2562C0562C073 /* BSG_KSCrashSentry.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 3BD336E24043640DDAFE96AF385E7B07 /* Padded.h in Headers */ = {isa = PBXBuildFile; fileRef = ED305439FEC86D5CE3B0292A6FA4B6DB /* Padded.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 3BE3507396BCD9046119593DA76BA96B /* EliasFanoCoding.h in Headers */ = {isa = PBXBuildFile; fileRef = 2FA223FDB03BD8D6326DE81D5DD9B6F2 /* EliasFanoCoding.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 3BECADEE8D5E7673C2E6F02336EBA8AA /* ShutdownSocketSet.h in Headers */ = {isa = PBXBuildFile; fileRef = B5354F53863FEF868B169393D964F0FA /* ShutdownSocketSet.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 3C0325CDBA1A56CDCD0C36F821AA4F3A /* ThreadedExecutor.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 6791FB3EDD564BD9752FDCCF60CA3EBA /* 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"; }; }; - 3C0A4A66954EE859B051995A3CEE4486 /* Base-inl.h in Headers */ = {isa = PBXBuildFile; fileRef = 0C123BAA55F6AFD3FBB4D6479169F9F8 /* Base-inl.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 3C23CE96F170FF3CAEB7DFB8F6FEE7CA /* Futex.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 4BA812FB89277D12BBAE8052D0AA1C09 /* Futex.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -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\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors"; }; }; - 3C28036859ED2DDAFAD9A8446165E5EB /* ScopeGuard.cpp in Sources */ = {isa = PBXBuildFile; fileRef = C8AF838B4B48FCC4915595140A0E4514 /* ScopeGuard.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -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\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors"; }; }; - 3C3A894C2424566C1BFE2F179BD639B6 /* SDAssociatedObject.m in Sources */ = {isa = PBXBuildFile; fileRef = E16681AEC54C6821A4E5D9301BB830F5 /* SDAssociatedObject.m */; }; - 3C488B3D05385A680DB1E77F826DEBD7 /* EventBase.cpp in Sources */ = {isa = PBXBuildFile; fileRef = BD6FB50291DEB555A1866C9D465DAE39 /* EventBase.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -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\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors"; }; }; - 3C57A5998E3C56F45EB85FD136D87A85 /* AtomicHashMap.h in Headers */ = {isa = PBXBuildFile; fileRef = 770C9E7B377482C3CDAC5BFD3DBD94DE /* AtomicHashMap.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 3C57B9928E0E9E9146182C7BB5615F19 /* UMAppLoaderInterface.h in Headers */ = {isa = PBXBuildFile; fileRef = 3996EDD823280D882ED08A7C542F9AD8 /* UMAppLoaderInterface.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 3C772F0F0D4074A208C0CE702C66CFC8 /* REABezierNode.m in Sources */ = {isa = PBXBuildFile; fileRef = BC1DFE2FED2A0B13126963E15601113B /* REABezierNode.m */; }; - 3C7DEC79D39077473E41A50EEB0BB965 /* ObservingInputAccessoryViewTemp.h in Headers */ = {isa = PBXBuildFile; fileRef = B4874D1CB2474417B8C726895842F734 /* ObservingInputAccessoryViewTemp.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 3C80B23F1A75FFF0AE88382E90F6110B /* FIRInstallationsItem.m in Sources */ = {isa = PBXBuildFile; fileRef = 171E2F7335FA3822401B90809CDF31D2 /* FIRInstallationsItem.m */; }; - 3C83A352957F4D0F78D2A55A9EF7D879 /* RCTImageShadowView.m in Sources */ = {isa = PBXBuildFile; fileRef = 15D83FE08FADE0344CE2715E708B14D5 /* 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"; }; }; - 3C8D3504424E11229C9F4C2DE3F90EB0 /* EXAppleAuthentication.m in Sources */ = {isa = PBXBuildFile; fileRef = B952CB53081748F46C04F821010B3D86 /* EXAppleAuthentication.m */; }; - 3C96271835A0B32B50C211AC15AB4203 /* AsyncSSLSocket.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 678C4DAE117185D4BB58E20B091B3292 /* AsyncSSLSocket.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -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\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors"; }; }; - 3CDBA62C0981F9265B1854CFB8F28EDF /* RCTInspector.mm in Sources */ = {isa = PBXBuildFile; fileRef = B47797D3D59C968EF82764FEA01FCDB7 /* RCTInspector.mm */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - 3CEAFD78911BA6D587B7AC4E39BB8846 /* BugsnagApiClient.m in Sources */ = {isa = PBXBuildFile; fileRef = 112D962E5A1F21D8C0DCB29477800458 /* BugsnagApiClient.m */; }; - 3CFD6EF64399B69E630C48EBDC973198 /* SSLSessionImpl.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 3A4BB6035141C108E1A0BA59217CE37D /* SSLSessionImpl.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -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\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors"; }; }; - 3D458A73BE03264CC6356E19A9BDF408 /* BSG_KSCrash.m in Sources */ = {isa = PBXBuildFile; fileRef = 92043D3966AF5FC9C59E6083D1D92325 /* BSG_KSCrash.m */; }; - 3D4CCA6EFA5A66F713D91F7EDBAF0EB1 /* ARTSurfaceViewManager.m in Sources */ = {isa = PBXBuildFile; fileRef = 048BA257BC45490465B8024434ADA4F9 /* ARTSurfaceViewManager.m */; }; - 3D4EF1FC24ECF3F028C557D2021E8172 /* RCTTextViewManager.m in Sources */ = {isa = PBXBuildFile; fileRef = DF281B7C5E8720EB7DC9F94FAA8F7B42 /* RCTTextViewManager.m */; }; - 3D63EB42FBA44BC88FAD046B11549673 /* ConsumerBase.cpp in Sources */ = {isa = PBXBuildFile; fileRef = CE8225378D28D5807F1B16BB9BAE9DC8 /* ConsumerBase.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -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 -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors"; }; }; - 3D7FCE55565746109356E2FFB25784BC /* FIRCLSUtility.h in Headers */ = {isa = PBXBuildFile; fileRef = C16EB91026B1EF04C1DC87BB87155F18 /* FIRCLSUtility.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 3D8BB01FBCC4609E0DFCEA30883AA71F /* RCTBaseTextInputView.m in Sources */ = {isa = PBXBuildFile; fileRef = 9950AA3B543B1E92A2B0EE75F9A5621F /* RCTBaseTextInputView.m */; }; - 3D9A9C98302AD02F0517D4F51C4F7926 /* Sha.h in Headers */ = {isa = PBXBuildFile; fileRef = C79C9B6348AE626037636647482DFC5E /* Sha.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 3D9FF20B4F86C86E56A22BF9F06F6072 /* BSGNotificationBreadcrumbs.m in Sources */ = {isa = PBXBuildFile; fileRef = EB917A79529EC54B6B6890E1CC8DAB5D /* BSGNotificationBreadcrumbs.m */; }; - 3DD324A83D2A3296E4A68434DFD24495 /* huffman_encode_utils.c in Sources */ = {isa = PBXBuildFile; fileRef = 0F5D190FECA2BE663103CD614226C896 /* huffman_encode_utils.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; - 3DD38D40F94071D2CED71A2CB4EB6462 /* RCTModalHostView.m in Sources */ = {isa = PBXBuildFile; fileRef = DF6110689FAD371694B43752C553C769 /* RCTModalHostView.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - 3DEBF433071A69345226315B12A34660 /* buffer.c in Sources */ = {isa = PBXBuildFile; fileRef = 5EF8A94048C6DB061F18D39393DD8E0C /* buffer.c */; }; - 3E05A4A62C97013F053D32CA64C78998 /* openssl_aes_locl.h in Headers */ = {isa = PBXBuildFile; fileRef = 6931DC644FEDF73FEBBE11DF0C21A77D /* openssl_aes_locl.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 3E63734D1194F7760186EE0E9B1BBB70 /* BSGUIKit.h in Headers */ = {isa = PBXBuildFile; fileRef = 33E0D68A84FF625B142642B4F3D770BB /* BSGUIKit.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 3E6B36323BA8365F4E3C075502B6ECE3 /* BugsnagKVStoreObjC.h in Headers */ = {isa = PBXBuildFile; fileRef = F162080DEB1F229CAD72B7EF91B26785 /* BugsnagKVStoreObjC.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 3E6ECF43672534E568332758BCCB14A3 /* FIRCLSMachO.m in Sources */ = {isa = PBXBuildFile; fileRef = 2777CBD18D9C43C9A3474489B0460131 /* FIRCLSMachO.m */; }; - 3E6FC3DAFF8EB72DFAB42F5D76548FB3 /* SKObject.mm in Sources */ = {isa = PBXBuildFile; fileRef = D5931E02E7529784C22BB8BEB80A6E2D /* SKObject.mm */; settings = {COMPILER_FLAGS = "-DDEBUG=1 -DFLIPPER_OSS=1 -DFB_SONARKIT_ENABLED=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -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"; }; }; - 3EA5765463A3C9866CA7D04931BF88DB /* cost_enc.c in Sources */ = {isa = PBXBuildFile; fileRef = 5B226505A9C8CFF13FE2314419290926 /* cost_enc.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; - 3EADD986136F129665CF13F57A204699 /* Conv.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 8ADD9A407E7D7F73D4235E69A029B08D /* 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"; }; }; - 3EB02BA4EE079C232B94963033B65C33 /* Yoga.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 0D5DAD0301106C54829D77F89B127853 /* Yoga.cpp */; settings = {COMPILER_FLAGS = "-fno-omit-frame-pointer -fexceptions -Wall -Werror -std=c++1y -fPIC -fno-objc-arc"; }; }; - 3EB26E9B057A8FBB27863EC0A60A088A /* Poly-inl.h in Headers */ = {isa = PBXBuildFile; fileRef = 729D1112986370E02BFA684FD3F582D1 /* Poly-inl.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 3ECA2ACAD23C3C43D52D7E5864567544 /* FrameFlags.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 99BE2F500519335CDB65E84AFD50FDF5 /* FrameFlags.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -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 -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors"; }; }; - 3ED41AFA7014EE36BCDE8F7F64AE701F /* RCTDevLoadingView.h in Headers */ = {isa = PBXBuildFile; fileRef = 9730C5179AB23C55654E2F7644F4C25F /* RCTDevLoadingView.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 3EF354A64BF8E943F74D0F1F8B0A522B /* Invoke.h in Headers */ = {isa = PBXBuildFile; fileRef = FD6C8D5A0B4CCBA5486FD113C97A9D07 /* Invoke.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 3F11C61D791254FE82AF5696C3212533 /* RCTSinglelineTextInputView.h in Headers */ = {isa = PBXBuildFile; fileRef = E213DA801612E3BBF9E1C0B2821BD9CA /* RCTSinglelineTextInputView.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 3F1B71A9630F8C25208DD6D8011BB669 /* ModuleRegistry.cpp in Sources */ = {isa = PBXBuildFile; fileRef = CFEEC4B26238A97760C661FC6EBEEDE7 /* ModuleRegistry.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - 3F49C05C1F38C287BBDBC20C50942AD9 /* Try.h in Headers */ = {isa = PBXBuildFile; fileRef = 690044B01CE1973C18744D256E86F459 /* Try.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 3F5457418BEF647D02B131A6E0470981 /* pt.lproj in Resources */ = {isa = PBXBuildFile; fileRef = 83DC996CF00F18599135A2312BD308E7 /* pt.lproj */; }; - 3F65FB7F4DAE604C00698B892A461C5F /* RCTSurfaceHostingView.h in Headers */ = {isa = PBXBuildFile; fileRef = D8E85493FCB78658F657C88B19877EB1 /* RCTSurfaceHostingView.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 3F7C6D11987DBF6BE7D1D559465C42BA /* MMKVStorage.m in Sources */ = {isa = PBXBuildFile; fileRef = 6C8504725868A39F09E3FFF4D0A5E3DC /* MMKVStorage.m */; }; - 3F7FFA66E3CB2AE4C2C28000B2504EA3 /* MemoryFile.h in Headers */ = {isa = PBXBuildFile; fileRef = 52AD7AD43F17197B72F79473014FB75E /* MemoryFile.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 3F9EA02248DF676A9068E2A34DB95F15 /* PThread.h in Headers */ = {isa = PBXBuildFile; fileRef = 6A41D7E2DBBC26D635269DD18909A0B0 /* PThread.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 3FA2B6E0EA9DD7075A48A390DD99DE32 /* SysTime.h in Headers */ = {isa = PBXBuildFile; fileRef = D3AA599DC936541F96C2A0FDEDADF1A2 /* SysTime.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 3FC6FC4AFD6E249471A5B1357DD1DC35 /* RCTInspectorDevServerHelper.mm in Sources */ = {isa = PBXBuildFile; fileRef = 3A45D48E274BFCE3C858D392D9F949CA /* RCTInspectorDevServerHelper.mm */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - 3FCA43963CFBB1D7B26C2ED0E70CF540 /* picture_rescale_enc.c in Sources */ = {isa = PBXBuildFile; fileRef = 5415899438777A95114A46A19EB4EB86 /* picture_rescale_enc.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; - 3FD15065DD5B71BC510CF615120A4085 /* CustomizationPoint.h in Headers */ = {isa = PBXBuildFile; fileRef = 4DAEC73A517CF97C666864661DB55390 /* CustomizationPoint.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 3FD1E2BAF8E02708AD77D0CF6ACEDE76 /* RCTUIImageViewAnimated.m in Sources */ = {isa = PBXBuildFile; fileRef = 63A78931AA61F6FBBB499A3DEE605446 /* 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"; }; }; - 400B2D5426EDD7BB687E105A535FFC4F /* FIRCLSNetworkOperation.m in Sources */ = {isa = PBXBuildFile; fileRef = 29D360BE948B0B8AE79B6F6128A14937 /* FIRCLSNetworkOperation.m */; }; - 400F6CC9C1C0E8BA7502546F2E90A94D /* BugsnagAppWithState+Private.h in Headers */ = {isa = PBXBuildFile; fileRef = 93C39DD0F16BF1BE85C726C64342D0CA /* BugsnagAppWithState+Private.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 4028F4A2FA61F7F522E740ACA1631462 /* OpenSSLThreading.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 358EE261026F11C402B0460DCA40BD33 /* OpenSSLThreading.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -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\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors"; }; }; - 402A7175D1DA76B1C36BE4E87FEC62F8 /* GDTCCTCompressionHelper.h in Headers */ = {isa = PBXBuildFile; fileRef = AEA69030E785D72A0C0CC8E9C51F1A44 /* GDTCCTCompressionHelper.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 402AA162AFEAEC1B6132CB0288A3BFD0 /* BlockingQueue.h in Headers */ = {isa = PBXBuildFile; fileRef = EC1DE8EA926E548E11AF410E548B8716 /* BlockingQueue.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 402D6962AD538E6E50E3594A883A7B3A /* Range.h in Headers */ = {isa = PBXBuildFile; fileRef = 4B8D76CAE2FEE7117E9E0A6C31E9CFEB /* Range.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 40378A16692F39DCEA32A5DEABB04831 /* RCTInvalidating.h in Headers */ = {isa = PBXBuildFile; fileRef = B2A940E26A5A7DA164A5F39A2B057952 /* RCTInvalidating.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 404246BE3A5E04C3F51BA53DA62938CE /* HHWheelTimer-fwd.h in Headers */ = {isa = PBXBuildFile; fileRef = 1F2C767F744E3778FCAA39E128F8FBF0 /* HHWheelTimer-fwd.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 405B90F1820030D31FBB58861E6F805A /* Format-inl.h in Headers */ = {isa = PBXBuildFile; fileRef = 3F7AF7C24195A31AE72C879CAD00133C /* Format-inl.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 406B29AA1C2DFC085E6C133DAABB7F94 /* Utils.h in Headers */ = {isa = PBXBuildFile; fileRef = D48E7AE778250FC2EF3E2A77AB216EB9 /* Utils.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 40B5FD30347255E3BCE18EB7A331BF5B /* EXLocalAuthentication.h in Headers */ = {isa = PBXBuildFile; fileRef = A4193D9F18881BC00CADFFE156D0A4E8 /* EXLocalAuthentication.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 40B8649E07A8C59F168398FD3E05D4F1 /* BitIterator.h in Headers */ = {isa = PBXBuildFile; fileRef = BD8642644F3A2804EB341CF7DF6465E8 /* BitIterator.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 40D4AE600C1F8BF22160F87C3A0466CA /* UIImage+Transform.h in Headers */ = {isa = PBXBuildFile; fileRef = 635ABD2D0367C7A831A83C0C4FD12CF2 /* UIImage+Transform.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 40DBCC71D3CB20AF4B6A8D6C4925463A /* FirebaseInstallations.h in Headers */ = {isa = PBXBuildFile; fileRef = F2384F9FCDC8C8E4F8092212A51E69BE /* FirebaseInstallations.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 40F6ABEFC7D0BC7D3D71C0B885066F85 /* FBLPromise+Recover.h in Headers */ = {isa = PBXBuildFile; fileRef = 624B9F811291F5AF60BF66DA62A4BC33 /* FBLPromise+Recover.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 40FCFC031F3028FFEDDAEC94A6DBF84A /* OpenSSLVersionFinder.h in Headers */ = {isa = PBXBuildFile; fileRef = 9A633EE03144C9F1454429E6F8B2C160 /* OpenSSLVersionFinder.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 411BC398D773361AA1A8BDB49399CCBD /* RSocketServerState.h in Headers */ = {isa = PBXBuildFile; fileRef = 3FAAD852C1CA9EF26844E8FA4D7D7229 /* RSocketServerState.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 41346D8AF9BAE91AFBF7D03542B2C00F /* SynchronizedPtr.h in Headers */ = {isa = PBXBuildFile; fileRef = E5337603B78A222B6B5B57618DB6080B /* SynchronizedPtr.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 41442FF1B6E0018786917CCB032C0F54 /* Benchmark.h in Headers */ = {isa = PBXBuildFile; fileRef = B0465C015983248F32D4F2E83D69D8D1 /* Benchmark.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 414499A93680D2FAF99296FF7CA077C7 /* RCTVirtualTextShadowView.m in Sources */ = {isa = PBXBuildFile; fileRef = 8F2791169A71E8FC83E4BD3E327C47D1 /* RCTVirtualTextShadowView.m */; }; - 419258E63004A311A862C221B364BA3E /* F14Map.h in Headers */ = {isa = PBXBuildFile; fileRef = 8F238380E1440E17738C994469B85113 /* F14Map.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 4193CD12C3490067C1BE06595D7E0E8A /* FIRCLSFABHost.m in Sources */ = {isa = PBXBuildFile; fileRef = CE52DDDD28C1BCF00DA998C465092169 /* FIRCLSFABHost.m */; }; - 41942A251B51E1E5848D5067C74AF19C /* RCTTiming.h in Headers */ = {isa = PBXBuildFile; fileRef = E854F6CC4EF3F49C1842C5F714E0A458 /* RCTTiming.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 41A9798E0250EB919ACBAEE90FC8DA76 /* BaselinesTcp.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 180D1B18482573ABC89BFE48788B6AAC /* BaselinesTcp.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -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 -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors"; }; }; - 41BDA24DD77F73EF6DDDD86752B72D4D /* RCTNullability.h in Headers */ = {isa = PBXBuildFile; fileRef = 146111A52CB56AEC590C1C250424F771 /* RCTNullability.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 41D12585C0B84C82BCE9DB966C19333B /* REAStyleNode.m in Sources */ = {isa = PBXBuildFile; fileRef = 20D29AC790079739A24F54BE9F434E94 /* REAStyleNode.m */; }; - 41DB830C3D2569D21C9BDA61E0277EFC /* SDWebImageOperation.m in Sources */ = {isa = PBXBuildFile; fileRef = 5D95CD156892E8171703B58D48E2D707 /* SDWebImageOperation.m */; }; - 41DC8D5C155C60A9D369996F19991671 /* Flowables.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 23FF30501568EB42FA7C87FC4B4E0038 /* Flowables.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -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 -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors"; }; }; - 41E2B574369FE2E44FD00865E6AF15AC /* BugsnagPluginClient.h in Headers */ = {isa = PBXBuildFile; fileRef = 94D9587D0AA314F54749BAC8F4AD0D86 /* BugsnagPluginClient.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 41F5664F2892AE0931988788DE71F5B8 /* StreamRequester.cpp in Sources */ = {isa = PBXBuildFile; fileRef = CE1A3BE870187D9779BD588E99A4BA1E /* StreamRequester.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -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 -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors"; }; }; - 41FD5923DC509DC4130D7310A6C94840 /* AsyncSignalHandler.h in Headers */ = {isa = PBXBuildFile; fileRef = E55B796088A5C84D7AFE45AE1D13C2DC /* AsyncSignalHandler.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 4211D833BE8D2195686F497A99A9DC54 /* RCTTextShadowView.h in Headers */ = {isa = PBXBuildFile; fileRef = 73E46AB944E91B060A550C4C5605837C /* RCTTextShadowView.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 4215168C3F040A5EFF86F32F14A845FF /* RCTManagedPointer.h in Headers */ = {isa = PBXBuildFile; fileRef = 07A9DC99CB96BC7EB1CBC7EFF6B4718A /* RCTManagedPointer.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 421E289534216EBA4E6C73FDDF9561C3 /* mux_types.h in Headers */ = {isa = PBXBuildFile; fileRef = 53FBAA5077083A561752542CB9651EF7 /* mux_types.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 4228177C22A0E104C931768E9C8BC6A0 /* UIView+Private.h in Headers */ = {isa = PBXBuildFile; fileRef = B319FBAEAC3E1E7C2A80BB51E7C7F421 /* UIView+Private.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 425A77DC42C460EA51D519A6F002C2C6 /* RNCAppearance.m in Sources */ = {isa = PBXBuildFile; fileRef = 7E357F7D22698AB72EC4DED0CB3475B8 /* RNCAppearance.m */; }; - 4262D06D3600F874667A475ED027E611 /* SpinLock.h in Headers */ = {isa = PBXBuildFile; fileRef = 43BA4D2D3218ED77C5BA9CB2D3F81FD1 /* SpinLock.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 426BE8C7DC428C09A055A4824E261931 /* ARTSolidColor.m in Sources */ = {isa = PBXBuildFile; fileRef = AE6C0F640CBDB125D6165A9FE5277811 /* ARTSolidColor.m */; }; - 4285CFE97DDDC37E46B7F6A738AF453A /* FlipperKitNetworkPlugin.h in Headers */ = {isa = PBXBuildFile; fileRef = CE0AECC804B24895157FC7CA0CBEC546 /* FlipperKitNetworkPlugin.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 428CBF6659DFC01912B8FCD0FCA5F01C /* Subprocess.cpp in Sources */ = {isa = PBXBuildFile; fileRef = A2FEB54F65AC6BA164AB7601C6A11F0B /* Subprocess.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -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\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors"; }; }; - 4291F719591E6254362677774D6D6FA9 /* RCTModalManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 5E14FCE40864E45913A2C969C0B2D7A1 /* RCTModalManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 429D5AF22C1503EE67F12B8CDFC7824B /* react-native-simple-crypto-umbrella.h in Headers */ = {isa = PBXBuildFile; fileRef = E6F8E4122200E27EF9E2B713BD332D98 /* react-native-simple-crypto-umbrella.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 42A3B315F2BD4D64A3E5B18C97D46B9F /* SafeAreaSpacerViewManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 9A52031D01DDD2FCD2A068151409B973 /* SafeAreaSpacerViewManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 42B7254FC96318A55B9ED899ADCE7753 /* Checksum.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 1B95FD1CBD6AAFC3CF3DA514411F74B4 /* Checksum.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -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\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors"; }; }; - 42E0430B8DA3229997AEABE19613DDC7 /* RCTDataRequestHandler.h in Headers */ = {isa = PBXBuildFile; fileRef = B55B72929A8B06D0ABA87CB5C61D4A15 /* RCTDataRequestHandler.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 42F0C73EE19E2178BA4ECC0FD2E9835C /* GULSwizzler.m in Sources */ = {isa = PBXBuildFile; fileRef = 073A0F73F0D948124331D5ED633FED78 /* GULSwizzler.m */; }; - 42FB6A12F694483E9AA4A9F7F782EF01 /* IPAddress.h in Headers */ = {isa = PBXBuildFile; fileRef = 46BED2DF70C6BAE76102F1EED1551686 /* IPAddress.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 42FF2861D381E4E6636B147647E28D03 /* EXConstants.h in Headers */ = {isa = PBXBuildFile; fileRef = BA3C1544B3D3A1541D6FC1E84475A9C8 /* EXConstants.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 4310A299E74141136C117071DD7189EE /* ThreadName.h in Headers */ = {isa = PBXBuildFile; fileRef = E0ACDEC4D4AAA9175FD58CD68F056807 /* ThreadName.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 43145B633FF6A614472DE97FF874B5D2 /* SharedPromise.h in Headers */ = {isa = PBXBuildFile; fileRef = 93346F13A155B02B6626A101E5194AC7 /* SharedPromise.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 431CDB32429010B551BE7322FCF0F7E6 /* RCTTextDecorationLineType.h in Headers */ = {isa = PBXBuildFile; fileRef = ED45D171CC848818FB692BD38CF0737E /* RCTTextDecorationLineType.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 432E799AB3151AB0F05B632BD5C1A7EE /* RWSpinLock.h in Headers */ = {isa = PBXBuildFile; fileRef = 6FBB3076E8F8AAE9C08B725DFAB0C8D3 /* RWSpinLock.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 4333F98005E818C3C8ECF8E67A7446BB /* RCTBridge.m in Sources */ = {isa = PBXBuildFile; fileRef = D4962E415A146278EC19A739E2A05AA7 /* RCTBridge.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - 4351A141FCB441D627EF3F1FA731FEF0 /* MMKV_Android.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 8EDA43460C2BF99C5B6F022209E0DA90 /* MMKV_Android.cpp */; settings = {COMPILER_FLAGS = "-x objective-c++ -fno-objc-arc"; }; }; - 4359488778D841642E8F1A87B9909D9D /* RCTJSIExecutorRuntimeInstaller.mm in Sources */ = {isa = PBXBuildFile; fileRef = 233D8B94F298076784E62FDA89226294 /* RCTJSIExecutorRuntimeInstaller.mm */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - 4366D90D10E2A1395FAC0E032CA3CE50 /* BugsnagStackframe.m in Sources */ = {isa = PBXBuildFile; fileRef = E05EC65CB6F61CB2A94A6FA66F5CBEBC /* BugsnagStackframe.m */; }; - 436F3281CCFEFCC21E7C471E42B620B5 /* StackTraceUtils.h in Headers */ = {isa = PBXBuildFile; fileRef = 4DADCE70A75208DE25BE7771DD9DF0DE /* StackTraceUtils.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 43866C275CB5A92A40CB8CD8048E9853 /* RCTSliderManager.m in Sources */ = {isa = PBXBuildFile; fileRef = 9D638D4F4487C7E2904849EB50E2914D /* RCTSliderManager.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - 43910ED896EDD4B570EF1DDBC231ECBD /* BSG_KSSignalInfo.h in Headers */ = {isa = PBXBuildFile; fileRef = 9C0A981168E1E4D33DE99B228E8298F7 /* BSG_KSSignalInfo.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 43B84069BD4A6B4FF44802448A25A011 /* Log.cpp in Sources */ = {isa = PBXBuildFile; fileRef = BC86EC8B18C511C23A361D514C240D1B /* Log.cpp */; settings = {COMPILER_FLAGS = "-DFLIPPER_OSS=1 -DFB_SONARKIT_ENABLED=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -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"; }; }; - 43D752B706C184AD577F8786CE3C79CF /* NSImage+Compatibility.h in Headers */ = {isa = PBXBuildFile; fileRef = 1848CF67F1E051B439DED093BDF53A20 /* NSImage+Compatibility.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 43ED3671E791340A24575A2BCCBDB35E /* SKNetworkReporter.h in Headers */ = {isa = PBXBuildFile; fileRef = A669D8965DD5F59135852201EAA4B1C7 /* SKNetworkReporter.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 43F303705A6DC66874C32187C20F45CF /* EventBase.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 9D175055633CCF57160228809C16FCB1 /* 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"; }; }; - 43FF3F46155BF15CF9CD29503EE1A5F4 /* AsyncPauseState.h in Headers */ = {isa = PBXBuildFile; fileRef = 17B2D7D6EB299F30ECB668D48EFFC693 /* AsyncPauseState.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 4409AA9931E5AF9D9BEB05B2F5AE2E80 /* EXFileSystem.h in Headers */ = {isa = PBXBuildFile; fileRef = 10639F022D17F4276CF9139CD9340027 /* EXFileSystem.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 4409FE7A0169053175DBFBCCC833A7EA /* RCTNetworkTask.h in Headers */ = {isa = PBXBuildFile; fileRef = 78B7E72795E2B29EDDE0ACDB1A9D248B /* RCTNetworkTask.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 44164DCF7E00143ACA29DF5D852853D3 /* FBVector.h in Headers */ = {isa = PBXBuildFile; fileRef = EB9F25DCA076A959BA3546C7479973C1 /* FBVector.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 441807BF25D44D9142F7835CCEF37D5E /* UIImage+Extension.m in Sources */ = {isa = PBXBuildFile; fileRef = 2E8A4966347DDE08B91EE969C520C066 /* UIImage+Extension.m */; }; - 442A9F3F5102B23A2525348D1712C3EB /* RNCConnectionState.m in Sources */ = {isa = PBXBuildFile; fileRef = 6D96E809EA4CE71B2F3930CB24DB6293 /* RNCConnectionState.m */; }; - 443312CA59A6E1457D3B350E18DE8415 /* RCTAlertManager.h in Headers */ = {isa = PBXBuildFile; fileRef = DFCBE7E816E8C610AEBD170C5BEB2938 /* RCTAlertManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 4437790AFB5B075D85F7B21FEED15681 /* ThreadName.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 63181DA198763B9B8CAD33951BAC9300 /* 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"; }; }; - 444058A00D921890F65A1912BD982240 /* F14Mask.h in Headers */ = {isa = PBXBuildFile; fileRef = 03026205607C4B1019C6B373E3907ECC /* F14Mask.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 44649B4D179A6D95CBFE298A21ABDAEE /* DeviceUID.m in Sources */ = {isa = PBXBuildFile; fileRef = BFB871EFCC026E0E1B2229CA8B6C8679 /* DeviceUID.m */; }; - 4495C89C7717888F591DEE349A4F6F96 /* RCTSafeAreaViewLocalData.m in Sources */ = {isa = PBXBuildFile; fileRef = CE6D47E068EE3C3F710FDCC6A5571833 /* RCTSafeAreaViewLocalData.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - 44A2C2B77D6697AF9C075067D181128F /* RNDocumentPicker.h in Headers */ = {isa = PBXBuildFile; fileRef = C9F3D0F0276B02303042AD8CEDE218BF /* RNDocumentPicker.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 44BBFC9CC5DCFF37B39640D6AC26FE9D /* Constexpr.h in Headers */ = {isa = PBXBuildFile; fileRef = 2249782DAE38F15094B7368177F456FD /* Constexpr.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 44C30A49FFA6E8FF123B92A83F76D90F /* RCTConvert+FIRApp.h in Headers */ = {isa = PBXBuildFile; fileRef = B4B0CDEF0F319F78ECA60005B35D15D0 /* RCTConvert+FIRApp.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 44D2B8BD2AEF6A1BDD1D6B7EA48DBDAE /* GDTCORReachability_Private.h in Headers */ = {isa = PBXBuildFile; fileRef = AA94BB85E6121A9830C7A5CCF2A3185F /* GDTCORReachability_Private.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 44D6110F384D2495E7F4134D0323B894 /* RCTTextView.m in Sources */ = {isa = PBXBuildFile; fileRef = 1D723EE26569B7CC5274D4FDAAC06E73 /* RCTTextView.m */; }; - 44E4D135C7785F93B9A74EF56125AF81 /* FormatTraits.h in Headers */ = {isa = PBXBuildFile; fileRef = E26ADF16295C527BD74FD846E1F63094 /* FormatTraits.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 44F0D24470725F6870DCBDDF508E20B2 /* RCTRawTextShadowView.h in Headers */ = {isa = PBXBuildFile; fileRef = DF89921367DDB419FD2E008843163C09 /* RCTRawTextShadowView.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 45027211520A83A43ECD43DDF3FB690C /* RNCAsyncStorage.h in Headers */ = {isa = PBXBuildFile; fileRef = B83C0C0C4E720AD644EF057182F53228 /* RNCAsyncStorage.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 4507F49E7950BB9955DBAD3428A8AD42 /* UIImage+MemoryCacheCost.m in Sources */ = {isa = PBXBuildFile; fileRef = 02164D00426ECD469441E2BF301F9366 /* UIImage+MemoryCacheCost.m */; }; - 451BFDFAFAE8D8891BD2C57B7F2A03CB /* YGValue.h in Headers */ = {isa = PBXBuildFile; fileRef = 040D2C66F76925DFE2827DAF8892434C /* YGValue.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 452EE77850BF8C1838507E8BFACD50F5 /* RCTNetworking.h in Headers */ = {isa = PBXBuildFile; fileRef = C9F7D7AF91C7C14AE0306582CCBDCC34 /* RCTNetworking.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 4532FC9B2FF644C5C410C573A94B0721 /* GDTCORRegistrar.h in Headers */ = {isa = PBXBuildFile; fileRef = FFD1CAE105527CF63F11A820AD292567 /* GDTCORRegistrar.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 456CD44FA0F845BF7CD383DF7843F3F3 /* Libgen.h in Headers */ = {isa = PBXBuildFile; fileRef = D7BEB610C4B614A30006C73B615D4BD0 /* Libgen.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 4589FB9F4C633F5BC4F35A225EC04022 /* rn-extensions-share-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = E311CA96855FCF8855795BD4CE0AED45 /* rn-extensions-share-dummy.m */; }; - 45B36E6C971F7A316A842376DB9214F1 /* ConnectionContextStore.h in Headers */ = {isa = PBXBuildFile; fileRef = FD35FC9A29C7C86E783D3C8A3A0DEF3A /* ConnectionContextStore.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 45B84991F3DDB761174CA1018A4ABCED /* BugsnagNotifier.m in Sources */ = {isa = PBXBuildFile; fileRef = F0F1A127EAB2FFE1F6FA20CA11630AA4 /* BugsnagNotifier.m */; }; - 45DAD8A15DB92D3C574536C544059C61 /* GroupVarintDetail.h in Headers */ = {isa = PBXBuildFile; fileRef = BC914DD1DC14DB1242681F2556E73482 /* GroupVarintDetail.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 45E9F1F4ECA95E205CA5F3BAA5DDD435 /* GoogleDataTransportCCTSupport-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = CE804605C2C458698224684169342575 /* GoogleDataTransportCCTSupport-dummy.m */; }; - 45FC837D63E1E7BC1DC7E97E87E7AE40 /* GULSecureCoding.h in Headers */ = {isa = PBXBuildFile; fileRef = 69461254E0F0D3F1C43476F6235680E3 /* GULSecureCoding.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46060379C20C4FAA7FD9337F7AA44DF6 /* Foreach.h in Headers */ = {isa = PBXBuildFile; fileRef = F55B26C281E7CC639D090359C95AF714 /* Foreach.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 460676F48B947C7C92DE87157A4977C6 /* RCTNativeAnimatedTurboModule.mm in Sources */ = {isa = PBXBuildFile; fileRef = E65DF580CDF8C63ECECC8CD73F27ABBF /* 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"; }; }; - 4619A961B733255DDD743C68A831E543 /* SDImageCodersManager.m in Sources */ = {isa = PBXBuildFile; fileRef = BBC9D9225EE71E347821C2095E8B0833 /* SDImageCodersManager.m */; }; - 46258E4E4DB9DACC7E53B7947578268E /* buffer_dec.c in Sources */ = {isa = PBXBuildFile; fileRef = DB04AFD2052A8B45AA419361620B12A1 /* buffer_dec.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; - 46569C6E31F484EEB4BF76A96E4C292E /* MicroSpinLock.h in Headers */ = {isa = PBXBuildFile; fileRef = 7C83D83A0D4C1323C708527D106098BC /* MicroSpinLock.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 467198D61E341D7309CA386E549C8DA6 /* TimeoutManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 9C8354DC313E0CA6CCE6E30B455DCCB4 /* TimeoutManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 4679089A46139CE98EF4118919A199EA /* SDImageCoder.h in Headers */ = {isa = PBXBuildFile; fileRef = E5FE7116DCC620D7CF0E83B589FADB2C /* SDImageCoder.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46B712F6F1E738C9F9DA79DD9153EB69 /* EXAudioRecordingPermissionRequester.m in Sources */ = {isa = PBXBuildFile; fileRef = 40D6B8422E3644B47E48FEDC7A277629 /* EXAudioRecordingPermissionRequester.m */; }; - 46BDC8664B52DD0ABA3C83509A3CF5B3 /* UMReactNativeEventEmitter.m in Sources */ = {isa = PBXBuildFile; fileRef = 4535D92010F9CAB039FDCFF9CD6BA233 /* UMReactNativeEventEmitter.m */; }; - 46C3EA4C3AAEBECD4B0A4E5C55FE78DB /* RNCookieManagerIOS.m in Sources */ = {isa = PBXBuildFile; fileRef = 810D5871ADA0B4191B15B5E4A9394733 /* RNCookieManagerIOS.m */; }; - 46CD4609566349E69C6E989C1DD4333B /* RsaFormatter.h in Headers */ = {isa = PBXBuildFile; fileRef = 50E1A35CCEA1D5F6736BC55A46B04A86 /* RsaFormatter.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46ECC4DE6D6ABB55EF63B1A0B0E47670 /* Partial.h in Headers */ = {isa = PBXBuildFile; fileRef = 3A77F6EE9A506C325B1356B3440C8FF4 /* Partial.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46ECEE66EBB2AB03E6D9E8FDCEF69082 /* Rcu-inl.h in Headers */ = {isa = PBXBuildFile; fileRef = 2A897F4C8EDD4045318816540C3C8C81 /* Rcu-inl.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46F0958D845D9810E8663CA56827901A /* REAFunctionNode.h in Headers */ = {isa = PBXBuildFile; fileRef = 3E6D248CD28BE41F933CC681EACB82F8 /* REAFunctionNode.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 470C67E65B177A7564DDDB30088B6452 /* fixed-dtoa.h in Headers */ = {isa = PBXBuildFile; fileRef = 52AC005AA38CFB40CD236E225477B6B6 /* fixed-dtoa.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 470D84054BE68EBCD10DA1B419F5B392 /* Unicode.h in Headers */ = {isa = PBXBuildFile; fileRef = C6F73EEAFB5B026BF8C70AC11A3B4748 /* Unicode.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 471C23EFC3B4EB699E9706D4D70B983A /* BSG_KSDynamicLinker.c in Sources */ = {isa = PBXBuildFile; fileRef = F576BCC4172904927F23B98D1F64E741 /* BSG_KSDynamicLinker.c */; }; - 472F79A9320D3E43024073CD0B263DF6 /* PasswordInFile.h in Headers */ = {isa = PBXBuildFile; fileRef = 112246D068CDB2E5FEDB9BA4F6062328 /* PasswordInFile.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 474D7FCF15A3B421352E285865B58036 /* FirebaseCoreInternal.h in Headers */ = {isa = PBXBuildFile; fileRef = 4769820499D04031C91A6FC6F516BD20 /* FirebaseCoreInternal.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 477900BFE4D8F0089150884765F3683E /* RCTCustomKeyboardViewControllerTemp.m in Sources */ = {isa = PBXBuildFile; fileRef = B59BA6E9E92F0A289F145CF2CEF05F1D /* RCTCustomKeyboardViewControllerTemp.m */; }; - 4787C765809BDEB7CDBD760923AA6145 /* EXResumablesManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 15F390A298B8A009BF341A8EED660992 /* EXResumablesManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 478CFF7C460F6F8F5E1A888C143003C6 /* RCTKeyboardObserver.mm in Sources */ = {isa = PBXBuildFile; fileRef = E5B537ACAE05A9107F8CA4D4676B8F34 /* 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"; }; }; - 4791AEBD2EF07F700133803644EF238D /* FBLPromise+Validate.h in Headers */ = {isa = PBXBuildFile; fileRef = 0DE4DBCF1EF8FB8026A41D493816EC57 /* FBLPromise+Validate.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 4793A678C35D5580DBB3D441A00985E0 /* RCTBaseTextShadowView.m in Sources */ = {isa = PBXBuildFile; fileRef = 157D66F636D88398C690DA2EA50D5955 /* RCTBaseTextShadowView.m */; }; - 4794617BBCE41B683926DABB9D23F886 /* iocp-internal.h in Headers */ = {isa = PBXBuildFile; fileRef = 095F9DC78A02A5B297431EB32A49075F /* iocp-internal.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 47ABC69700EB814528FB6C7D5061012B /* RCTBorderDrawing.h in Headers */ = {isa = PBXBuildFile; fileRef = 730CBBDFDEB767F625E342CD591BCFBD /* RCTBorderDrawing.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 47C3A7F9187D9740C31AB36F6018C7B8 /* RCTEventEmitter.m in Sources */ = {isa = PBXBuildFile; fileRef = EA885519C9B954A79F80E54872CB9A51 /* RCTEventEmitter.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - 47E77AC8AD869ECF994E57F8801A37E5 /* bignum-dtoa.h in Headers */ = {isa = PBXBuildFile; fileRef = 41B4DD6B88E7EA1B7760F352EBEE8C01 /* bignum-dtoa.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 47FA41B6777D0E2534AAAF1091BC0174 /* BugsnagDeviceWithState+Private.h in Headers */ = {isa = PBXBuildFile; fileRef = CA138AF36FD6DF96FF7BC56831E4DBF0 /* BugsnagDeviceWithState+Private.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 4820CEA0B8A8891D32B12DD46643F165 /* FIRCLSSettingsOnboardingManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 0A7589870AE8D1910F6EEA19A4EBE644 /* FIRCLSSettingsOnboardingManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 482296C6BF9F8D449888AC9AE7BB4205 /* RCTPlatform.mm in Sources */ = {isa = PBXBuildFile; fileRef = 5CC09DC9037224C3B66F8AC19F2B6059 /* 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"; }; }; - 48377D5A0E1191DF1A7A4EF7FB68767E /* VibrancyViewManager.m in Sources */ = {isa = PBXBuildFile; fileRef = A60901098A81B5D3F5D589CC582F5A4F /* VibrancyViewManager.m */; }; - 485A8FAF133E892419B9A17549688A28 /* Array.h in Headers */ = {isa = PBXBuildFile; fileRef = EA0EF4A0499795DDFB3E11E94D6A68F2 /* Array.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 4876BA2C3E410BDFB2D33AD5D5FD6246 /* crashlytics.nanopb.c in Sources */ = {isa = PBXBuildFile; fileRef = DA3D9803A70D7FC57E9B8275A62D4EEB /* crashlytics.nanopb.c */; }; - 487905310AB081D904E4C522B81EEE63 /* UMModuleRegistry.h in Headers */ = {isa = PBXBuildFile; fileRef = 6810A6ED3034CA85E3808DA46E080054 /* UMModuleRegistry.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 488F61406BEDE6F4616F4CC38E094A58 /* RCTSurfaceRootView.h in Headers */ = {isa = PBXBuildFile; fileRef = 87F2CBC95E98D64C0ADA8517411FE08D /* RCTSurfaceRootView.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 4892B1BDBB7D346D4997009A7DF67E70 /* MiniPBCoder.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 0A7AB20268DD9E2D622B86E629FAA4AD /* MiniPBCoder.cpp */; settings = {COMPILER_FLAGS = "-x objective-c++ -fno-objc-arc"; }; }; - 48A736D9C6BBAADD1CB80E538201A11F /* GDTCORLifecycle.m in Sources */ = {isa = PBXBuildFile; fileRef = F96321D27807E501875E9B7AD050A2D2 /* GDTCORLifecycle.m */; }; - 48C9DF8A509B2566D2AFAA469B293A15 /* Bits.h in Headers */ = {isa = PBXBuildFile; fileRef = 6E88B1A9026F546D449585CF54CEB725 /* Bits.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 48CD221FA8C0B22F24AE312156CE39FE /* SKInvalidation.h in Headers */ = {isa = PBXBuildFile; fileRef = FF6FDC0558CA5B4149283A7623418B24 /* SKInvalidation.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 490962D63AE09938A0AE80A4D42EABEE /* BugsnagErrorTypes.m in Sources */ = {isa = PBXBuildFile; fileRef = 916E3D76B71C70231A1C7B52E8287F82 /* BugsnagErrorTypes.m */; }; - 493A139909EC2A35A95110A6B5FD438E /* RCTScrollView.m in Sources */ = {isa = PBXBuildFile; fileRef = 329287767C04EA1A5446C112A2C80F58 /* RCTScrollView.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - 494460796E071DA7A3403D207B8C2106 /* REAPropsNode.m in Sources */ = {isa = PBXBuildFile; fileRef = 6A3F39F545F907AF8B49B170FBE2599D /* REAPropsNode.m */; }; - 4948379656F73C54C13A405B38039FBB /* openssl_arm_arch.h in Headers */ = {isa = PBXBuildFile; fileRef = E54E206E6640A82C57D50C0627552E5F /* openssl_arm_arch.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 494D040922C07D9B11A4E157C72AB24E /* REAFunctionNode.m in Sources */ = {isa = PBXBuildFile; fileRef = 45CA01141554D9AC3DBB8776F286FFEC /* REAFunctionNode.m */; }; - 4965FAC76BAD5B203BCEB04891631F91 /* SerialExecutor.h in Headers */ = {isa = PBXBuildFile; fileRef = 11EA49134E74A72B02BED62851EB1823 /* SerialExecutor.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 49677AEE26CE7521599D4EED43DA48CE /* RCTPointerEvents.h in Headers */ = {isa = PBXBuildFile; fileRef = 34B6A22FA44252C9AB9425D730AB19FD /* RCTPointerEvents.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 496823F46E4529AB28BC1FAE9348EBA5 /* SDWebImageTransitionInternal.h in Headers */ = {isa = PBXBuildFile; fileRef = 4C5953F908AA69045DC18DFE62C0EB9E /* SDWebImageTransitionInternal.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 497C3B78847A7BADF517C253BA5E71D1 /* ConcurrentSkipList.h in Headers */ = {isa = PBXBuildFile; fileRef = D72BB39F5E1E5882B7FBD679B664534B /* ConcurrentSkipList.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 498C505AE16C2FB90A1660FF065B9323 /* EXHaptics-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = D39EE2ECB1DCDBE29E86E36789934FD5 /* EXHaptics-dummy.m */; }; - 499C74045DCD37C361CC7956644C6648 /* React-RCTSettings-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = DB014116AB6D8DA1BB2E892E70011113 /* React-RCTSettings-dummy.m */; }; - 49BFDCBF94337915EAD45F19726A4FCF /* EventUtil.h in Headers */ = {isa = PBXBuildFile; fileRef = 7BEEB143F660792E34A92AA98D4043D4 /* EventUtil.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 49C0B183B4F5FFE194CB004E12946AF0 /* SerialExecutor.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 565C98C0F87D64F187F1425AEA777E05 /* SerialExecutor.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - 49CFF82F054C02C71EB543D9AD308E3F /* FarmHash.h in Headers */ = {isa = PBXBuildFile; fileRef = A84C7960CEE6FB114D2D907465B2C77D /* FarmHash.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 49D6527B677B2AAE061BD43ADDB24CF0 /* RNCSafeAreaProviderManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 27CAEC8C4FCBBA856272D59A8F1440A9 /* RNCSafeAreaProviderManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 49D7470C79EFC400474DE5FBFD2B3173 /* ARTBrush.m in Sources */ = {isa = PBXBuildFile; fileRef = 328FF4DA3783FF0044814C6596A7871C /* ARTBrush.m */; }; - 49DB03F31465778B5A09F19853272DEB /* bit_reader_inl_utils.h in Headers */ = {isa = PBXBuildFile; fileRef = 416EEA29D5AD9BC6C8A5E7C50814100B /* bit_reader_inl_utils.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 4A038EE7E83F410033B3E4F908E1A2BD /* GULKeychainUtils.m in Sources */ = {isa = PBXBuildFile; fileRef = 8D413F8DFA6A6911681D61472C0DC9EF /* GULKeychainUtils.m */; }; - 4A1A3D1448044BE8BAD31EF82C668CFC /* EXVideoView.h in Headers */ = {isa = PBXBuildFile; fileRef = 1349DA30B40712C2BCB6BB6A3EEFFB69 /* EXVideoView.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 4A27DE1BB86074198A35CE8AE56AE79F /* RCTInputAccessoryViewManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 90C7C147085C240CCCF67AB7DD43F1AD /* RCTInputAccessoryViewManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 4A296B707F105086AF826C612F14625F /* Arena.h in Headers */ = {isa = PBXBuildFile; fileRef = 761B0A90B62FD46941587EE7D33277AE /* Arena.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 4A4B4055A9F1F063DB1A15F63AE1C897 /* FlipperConnectionManager.h in Headers */ = {isa = PBXBuildFile; fileRef = A7D5D462C841F0799D424EE3599BFBD4 /* FlipperConnectionManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 4A4D2C43DC3CC5F5DAA9248AA245BB60 /* REABezierNode.h in Headers */ = {isa = PBXBuildFile; fileRef = 9A7DC932EBFEA8EAD11B91E04EC2CE30 /* REABezierNode.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 4A516E7A9D04DA71300E3AD0B30785B7 /* vlog_is_on.cc in Sources */ = {isa = PBXBuildFile; fileRef = 1D0833EFB29C9DBA18B45BB7E8104330 /* vlog_is_on.cc */; settings = {COMPILER_FLAGS = "-Wno-shorten-64-to-32"; }; }; - 4A54C761EC622CBC62B5E12C272849A0 /* SDImageCachesManager.m in Sources */ = {isa = PBXBuildFile; fileRef = A1A5738D7D8CEF7C7CE36B9B805C5EA8 /* SDImageCachesManager.m */; }; - 4A71F821E54673C99BC36A7E0C8559DD /* ru.lproj in Resources */ = {isa = PBXBuildFile; fileRef = 2054197C408D33E1C62FD02C30E9B296 /* ru.lproj */; }; - 4A7EEB5555FB4DFBBB51C1985F5198B5 /* Memory.h in Headers */ = {isa = PBXBuildFile; fileRef = 7BC49A12A1FFA6C6DBE2E137733C3CDD /* Memory.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 4A81DC32A7AE9A5732018ECFCEDE113B /* json_patch.h in Headers */ = {isa = PBXBuildFile; fileRef = 7A68BE5DE275AC8222532BCA9206A279 /* json_patch.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 4A83FF8540FC1E5AC6F8B3D3AB4BFCE1 /* SDImageFrame.m in Sources */ = {isa = PBXBuildFile; fileRef = F00FBEAB647FF5D3E69DF36C8F70061B /* SDImageFrame.m */; }; - 4A87681B2E5F60DE4F84A1DE2D9A366C /* RNCSliderManager.m in Sources */ = {isa = PBXBuildFile; fileRef = 40D47D7CB3CE368C41CE58178D446F27 /* RNCSliderManager.m */; }; - 4A9EEACD394A2527D52BE9FBCD820482 /* Base.h in Headers */ = {isa = PBXBuildFile; fileRef = 339FD1678F620533FC6D3666F36ED195 /* Base.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 4AA80E18D22E5FC59D5E5CD88ED9E04F /* RCTConvert+FFFastImage.m in Sources */ = {isa = PBXBuildFile; fileRef = 18BE84982E8F142FE9CDCC750B190D31 /* RCTConvert+FFFastImage.m */; }; - 4ABAB6F84DCE317295FBF19A1C3D5E19 /* RNCPicker.h in Headers */ = {isa = PBXBuildFile; fileRef = E99CEF4EEC42A2629D3B68DA23D0046B /* RNCPicker.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 4ABE8705BDB321574F4F61F889C3859B /* BSG_KSSignalInfo.c in Sources */ = {isa = PBXBuildFile; fileRef = 5215B67020579C32FA153F00EE4FBC8D /* BSG_KSSignalInfo.c */; }; - 4AC8E46FE3E049BAFE138C17E5F2F4DF /* HazptrObj.h in Headers */ = {isa = PBXBuildFile; fileRef = EFC449A78C30152FAB91048DC5A53E0E /* HazptrObj.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 4AD594C99F5F9AEADA609ABDFE7824C1 /* SecureStorage.h in Headers */ = {isa = PBXBuildFile; fileRef = F15808387AB6C7A111FF6C455A1A6FE9 /* SecureStorage.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 4B0AA0FF47AF0C550C254EA7E5479004 /* FIRInstallationsStore.m in Sources */ = {isa = PBXBuildFile; fileRef = 38DBC4FE53A7D3A0516B8339987659B6 /* FIRInstallationsStore.m */; }; - 4B12799E755CB200D243F333C2512095 /* GDTCORRegistrar_Private.h in Headers */ = {isa = PBXBuildFile; fileRef = 2D0AFB3AA334082BD476F588855D6AE5 /* GDTCORRegistrar_Private.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 4B2B14B11BBAB7061E32994C675ECB52 /* FramedReader.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 6DF210C698286DA9A48D500C07B827B0 /* FramedReader.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -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 -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors"; }; }; - 4B3B08B714505AF5FB0D877B29D5BFBE /* Assume-inl.h in Headers */ = {isa = PBXBuildFile; fileRef = ADDEF0085804B78FFCF10A662AA36569 /* Assume-inl.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 4B775E673D081DA2FF9BF0165C923980 /* Hash.h in Headers */ = {isa = PBXBuildFile; fileRef = 1525B451ACD76144D005B1730EFC66B9 /* Hash.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 4B814079650D36D0B48229B67C2A586E /* BugsnagPlatformConditional.h in Headers */ = {isa = PBXBuildFile; fileRef = 5824F8E1DF5A3B5BE9B2B0B16CF93383 /* BugsnagPlatformConditional.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 4B81A8236E613827AE47E57915B19CF6 /* Iterator.h in Headers */ = {isa = PBXBuildFile; fileRef = 5BDE5CE1F29F2B5E710DBC832F28D9B5 /* Iterator.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 4B8989820AF46587E5B34974B8600961 /* BugsnagDevice+Private.h in Headers */ = {isa = PBXBuildFile; fileRef = FD082006079338D62D08663C33A48A59 /* BugsnagDevice+Private.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 4B8DC3A62E196B5D326951CCDB056524 /* MMKVPredef.h in Headers */ = {isa = PBXBuildFile; fileRef = 8F1DA2CEA3CE04463B0A7359D8CA5609 /* MMKVPredef.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 4B9F133F7F2D32D9FF3DDB53BAEE6898 /* FIRErrors.h in Headers */ = {isa = PBXBuildFile; fileRef = 4ADFD1409A834BF3CF99EFB686438DC2 /* FIRErrors.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 4BB2C36DAB83B30496C46064533F9E6D /* FormatTraits.h in Headers */ = {isa = PBXBuildFile; fileRef = 7AF0EDBD81AE0FAFA35C0AB0497212B4 /* FormatTraits.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 4BC3232DE85368FA2F2F5CC41067A64F /* FIRConfigurationInternal.h in Headers */ = {isa = PBXBuildFile; fileRef = 7016FEDF15804B202D40011AFA46C7A1 /* FIRConfigurationInternal.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 4BC5BBDB0B438C2FE47E9523FE3EBACA /* FlowableConcatOperators.h in Headers */ = {isa = PBXBuildFile; fileRef = F87FD82161211A08881DC52942907F6B /* FlowableConcatOperators.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 4BD77697149811C1F407A76DA3E9A104 /* MemoryFile.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 8FACAC187B44157FC8DE8BAD258EBE36 /* MemoryFile.cpp */; settings = {COMPILER_FLAGS = "-x objective-c++"; }; }; - 4C02B8524DECD82205FF950EDF13D089 /* SKYogaKitHelper.h in Headers */ = {isa = PBXBuildFile; fileRef = EAD20D2095CADB729BA7A29DFD8EFFDF /* SKYogaKitHelper.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 4C05964EA35463E1FCA4E487E19984DF /* UIView+WebCacheOperation.h in Headers */ = {isa = PBXBuildFile; fileRef = B4BA5D239213ECF054E3BA8966E4EC22 /* UIView+WebCacheOperation.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 4C0FB38752F52422B68F00B61096DA81 /* webp_enc.c in Sources */ = {isa = PBXBuildFile; fileRef = D00CE9B3086FA1A05219E162F854B74F /* webp_enc.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; - 4C445E6747B8E94B019FEEF7C21F7DED /* RCTRefreshControl.m in Sources */ = {isa = PBXBuildFile; fileRef = EFBF0F66DD05093A50745A956B265F83 /* RCTRefreshControl.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - 4C474604DD5468DD9C9F317FA4FA3A0E /* BlurEffectWithAmount.m in Sources */ = {isa = PBXBuildFile; fileRef = 67CAA565D53A463C56D681FD8D161D9F /* BlurEffectWithAmount.m */; }; - 4C5620701364AFA3AC0ADF714ABA4707 /* SKNamed.h in Headers */ = {isa = PBXBuildFile; fileRef = A2F0117A83EC190EDCF3EEEA2CB09250 /* SKNamed.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 4C63D46F18DB44C5D575C32C77AD75E3 /* BSG_KSCrashSentry_Private.h in Headers */ = {isa = PBXBuildFile; fileRef = 02EEEB11E2FA732C018BCB28638DAAB8 /* BSG_KSCrashSentry_Private.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 4C760F61E843795E2C719F947CE10CAE /* RCTModuleMethod.h in Headers */ = {isa = PBXBuildFile; fileRef = EA449C581CDD206DD064779B64A3A908 /* RCTModuleMethod.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 4C7FF52184D2CD05A127020050065426 /* F14SetFallback.h in Headers */ = {isa = PBXBuildFile; fileRef = 69845DF7E945F2C245A84A9EB73674A1 /* F14SetFallback.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 4C8B76E847EC1BF281896A794EDB1B8C /* log-internal.h in Headers */ = {isa = PBXBuildFile; fileRef = C4D0A9D298494CD59E36A2F6D0BA0F3A /* log-internal.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 4CA6AA1E6FC5220A868011C67D9F6263 /* RSocketServiceHandler.h in Headers */ = {isa = PBXBuildFile; fileRef = 9336B954C54F0EF7BD2CC0490E9C3813 /* RSocketServiceHandler.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 4CABF90A6CC7B3CAE60DC2CE6417E6ED /* FIRHeartbeatInfo.h in Headers */ = {isa = PBXBuildFile; fileRef = F1863201D0BA8344F02D2910F23AADA4 /* FIRHeartbeatInfo.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 4CB49DDA06B3214B63E6668E7015A02B /* DistributedMutexSpecializations.h in Headers */ = {isa = PBXBuildFile; fileRef = 4687F8325AF288C107CAFE8BE316EEDD /* DistributedMutexSpecializations.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 4CB58B352ED63496F6BA9A68A54D0F23 /* CallbackOStream.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 52032420A8153D9845D314223D4F5169 /* CallbackOStream.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - 4CBED6F5F7B278DF05D1712F2B57F771 /* IPAddressV6.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 46CD1A9F5FC1F1EAE2FBD43827A6D039 /* IPAddressV6.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -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\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors"; }; }; - 4CC475EAFA33E11FCEC6CB223DFDF4DB /* RCTStyleAnimatedNode.m in Sources */ = {isa = PBXBuildFile; fileRef = 8D9037CD1178822F4B7F101ED0CEE3EA /* 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"; }; }; - 4CD3E5D6975449E11EA7818BDBB8AB80 /* QBAssetsViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = 0E68C66A69B7E5F622F5B5273FC096A4 /* QBAssetsViewController.m */; }; - 4CFF2BBA882ED477A9E4345DDF73ED77 /* RNDocumentPicker.m in Sources */ = {isa = PBXBuildFile; fileRef = 4150B1022A1C4EA48976C1918DB2DA4D /* RNDocumentPicker.m */; }; - 4D1594E5EFD6E781FB4620B93DB5881D /* FIRCLSSignal.c in Sources */ = {isa = PBXBuildFile; fileRef = 3E88D846200DFC32E1B1FB4A60EAF730 /* FIRCLSSignal.c */; }; - 4D4BD957CD7F1CA4AE3C82636B555645 /* Pods-ShareRocketChatRN-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 81ABB69299E6F3BB892E995CFDCECD7A /* Pods-ShareRocketChatRN-dummy.m */; }; - 4D7CEF19C85F6BC5460961BC5485FC18 /* RCTSwitch.m in Sources */ = {isa = PBXBuildFile; fileRef = FCAF45D355DD370C372A77984C10FA2C /* RCTSwitch.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - 4D99B2B3A7A62015822A0A822F91E1A2 /* SKScrollViewDescriptor.h in Headers */ = {isa = PBXBuildFile; fileRef = C231A474BA8817ABE62D624B50C23C9E /* SKScrollViewDescriptor.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 4DA9A2CE52A774F6E12F7225BCB37C58 /* BSG_KSCrashDoctor.h in Headers */ = {isa = PBXBuildFile; fileRef = 829C9C9E602BAD1C89CF50E09A76222B /* BSG_KSCrashDoctor.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 4DD10EBE04E6E11B7083EF36AE7D8B2C /* GDTCORAssert.h in Headers */ = {isa = PBXBuildFile; fileRef = F9EF06F5F49DEB53FEDFF233A23B10D5 /* GDTCORAssert.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 4DDFCEB061C1FE440C3D5D8596BE6AD8 /* FIRCLSURLSessionDownloadTask.h in Headers */ = {isa = PBXBuildFile; fileRef = 5669BD5467E7448A1D8086103C214E2E /* FIRCLSURLSessionDownloadTask.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 4DE4C2FB99F649377787BE4C345D8257 /* Pods-defaults-RocketChatRN-umbrella.h in Headers */ = {isa = PBXBuildFile; fileRef = BE44CBCE6C75B26E95A4555F9D976298 /* Pods-defaults-RocketChatRN-umbrella.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 4DEE22EEF03836691A02E9D3A4A77664 /* nl.lproj in Resources */ = {isa = PBXBuildFile; fileRef = 54DE1CD8942989BC6D0340E4917972AE /* nl.lproj */; }; - 4DF36527D3A7802F9EA507DB401DCCF3 /* ConcurrentBitSet.h in Headers */ = {isa = PBXBuildFile; fileRef = 12B923F05BC76AE6BE7912614DF2CFC6 /* ConcurrentBitSet.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 4E08FBF5C951665935FE86F50D5658AF /* ThreadWheelTimekeeper.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 55F82640CBEB65A43180581A1F52B31B /* 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"; }; }; - 4E1060D94440D030C75B728F17B4E62E /* FBLPromise+Async.h in Headers */ = {isa = PBXBuildFile; fileRef = 6AD2999A13828C3996ABC48EF58DB9E0 /* FBLPromise+Async.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 4E42DCB68654CEED81BEBA0848EC23A1 /* MoveWrapper.h in Headers */ = {isa = PBXBuildFile; fileRef = 1CF6006987F5370C7D44118131A77BA4 /* MoveWrapper.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 4E49985A76A0E9C42B0A7FCAA6FB6963 /* AsyncServerSocket.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 79045EA0EA1525B86D20B46C46E39329 /* AsyncServerSocket.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -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\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors"; }; }; - 4E5498D98181B6454712EFE0C893C115 /* RCTCxxModule.h in Headers */ = {isa = PBXBuildFile; fileRef = DA0EB8F4CBDE9D79FB27DC6176E546B1 /* RCTCxxModule.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 4E7BFB414A91A4DE6836A298E608D04C /* Subprocess.h in Headers */ = {isa = PBXBuildFile; fileRef = 714617101653AABBA370CB7F07BC74DD /* Subprocess.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 4E9728DDD2540A598B4A2EA1987D3A06 /* FIRCLSMachOBinary.h in Headers */ = {isa = PBXBuildFile; fileRef = 877E589A8BF687225F8BDA9BB84A5517 /* FIRCLSMachOBinary.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 4E978A17F20DEB0A27FACDDB01A38339 /* ThreadId.h in Headers */ = {isa = PBXBuildFile; fileRef = C594E33B7F2DC2B31F6CDCF045C05323 /* ThreadId.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 4ECA09D18B0433F6A20F7DB163F4A44B /* RCTDataRequestHandler.mm in Sources */ = {isa = PBXBuildFile; fileRef = BFF2B93582DD82BCA452AC0DBA5D0647 /* 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"; }; }; - 4ECA8AB87CACA91A8453DEDB024490EE /* FIRAppInternal.h in Headers */ = {isa = PBXBuildFile; fileRef = 343B97D9EEBAB3B0515FD53C6201334A /* FIRAppInternal.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 4F10400EB72C276F310ADA233A70702A /* BugsnagHandledState.m in Sources */ = {isa = PBXBuildFile; fileRef = 5C31E2A1FFF7C0019D735887896DF06A /* BugsnagHandledState.m */; }; - 4F1888340128350A88BF3E489F1627D7 /* evrpc.c in Sources */ = {isa = PBXBuildFile; fileRef = A6665D8FC0F6D068B435FA4B02F47F71 /* evrpc.c */; }; - 4F26EBD2749025287A7A88728765E0DB /* RCTTypeSafety-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 08272036C5209030B6CF0F4CEFE8A1DA /* RCTTypeSafety-dummy.m */; }; - 4F3A2790874ECF685CE39EA7AAE03BA4 /* DistributedMutex.h in Headers */ = {isa = PBXBuildFile; fileRef = 5955B368F840981A96CA92E5EC8D0045 /* DistributedMutex.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 4F3BD3BE852B39C37BC0B057226C3AFD /* SysTime.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 7F7FAEEC6D720AA177A3ABE4D635B2D2 /* SysTime.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -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\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors"; }; }; - 4F426F9B6B60D20CB43D55A9B2C7CA41 /* yuv_neon.c in Sources */ = {isa = PBXBuildFile; fileRef = 5B9A6ACBF39BC62B711A68ECDD7E99A5 /* yuv_neon.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; - 4F65F5014A66BB1F16FCF93125B34451 /* RCTBridge+Private.h in Headers */ = {isa = PBXBuildFile; fileRef = F9DD0BC61611D57C9D11D949E99F4721 /* RCTBridge+Private.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 4F904BA5741A0BA71D31FEC303F92216 /* dec_mips32.c in Sources */ = {isa = PBXBuildFile; fileRef = 083D2D5543B3909AD297AD13441396FE /* dec_mips32.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; - 4F9276C1C94759732502CEC0BA944BC3 /* UIImage+GIF.h in Headers */ = {isa = PBXBuildFile; fileRef = 7F9C61CA331FC7DDC4C288FE4E047574 /* UIImage+GIF.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 4F95A6314EEBFB019A803250EABDD951 /* RCTTextSelection.h in Headers */ = {isa = PBXBuildFile; fileRef = 1B218D186F54EF65DEED555A468AC649 /* RCTTextSelection.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 4FC36D3475E49C9BBA7F9A5C212A9B37 /* Rsa.h in Headers */ = {isa = PBXBuildFile; fileRef = DDA8E082D0DF3E4233CC86CFC94A7648 /* Rsa.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 4FDFDFFA69D2E1FA2615D2E4F458E3D4 /* String-inl.h in Headers */ = {isa = PBXBuildFile; fileRef = 07E05E20935578086C3DCD67D966155F /* String-inl.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 4FE8D98987A6FDD3B1A738A9BC1BD9A1 /* RCTAnimationPlugins.mm in Sources */ = {isa = PBXBuildFile; fileRef = 05DDF222C3236A930FA1D2041D5FB6DF /* 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"; }; }; - 500986BB00B0E28339E9B748BF07B6E9 /* CodedInputDataCrypt.h in Headers */ = {isa = PBXBuildFile; fileRef = 1EA1B57C073AC14B20B5E5905D1131EA /* CodedInputDataCrypt.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 504CEE5F9FF06D29D232A1CA492B5600 /* RCTBackedTextInputDelegate.h in Headers */ = {isa = PBXBuildFile; fileRef = FD028CB98C9F9EFDFAFBE551B94565B8 /* RCTBackedTextInputDelegate.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 505FA2D0E8D4EB29D480D580953B2FBE /* RCTComponentData.h in Headers */ = {isa = PBXBuildFile; fileRef = D8B03F145549407E02F672A812CBA01E /* RCTComponentData.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 50631BB3515A42658EE5F6727B379DC2 /* EventBaseBackendBase.cpp in Sources */ = {isa = PBXBuildFile; fileRef = FF6856A70766A3EF1370F83A8EB1690C /* 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"; }; }; - 50668E56839E8F930095C023C388E1BF /* DeferObservable.h in Headers */ = {isa = PBXBuildFile; fileRef = BBFF18BC3711F0D248974C74C2D2F962 /* DeferObservable.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 507BC7D36F26735B7FAE621BCBEF1F36 /* FIRCLSdSYM.m in Sources */ = {isa = PBXBuildFile; fileRef = 11A5473574DB8F5B87B8A158CA9708F7 /* FIRCLSdSYM.m */; }; - 508F4CA2E6E0F85CCBFA800E312BB1C5 /* RCTLogBox.h in Headers */ = {isa = PBXBuildFile; fileRef = A8C11BD5F904EC7DB1CB1B99D289E15A /* RCTLogBox.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 509480C2D9CF831F8EE3B684EC35A45A /* StreamResponder.h in Headers */ = {isa = PBXBuildFile; fileRef = C6F45D5F31EF86F02D6CEF8DC22D0725 /* StreamResponder.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 509D010F95001E7A8176186A276EC9E8 /* ScopeGuard.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 33A7E941A4206E08C5B025F4C63C64D2 /* 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"; }; }; - 50A46F9B51069B9DB316D8C0D4FF127B /* FIRBundleUtil.m in Sources */ = {isa = PBXBuildFile; fileRef = B3513E19B47BF3451C5B25B0E2ED515B /* FIRBundleUtil.m */; }; - 50B5D01606E7DED4B0206FEBC0A1BA3A /* JSCExecutorFactory.h in Headers */ = {isa = PBXBuildFile; fileRef = 04977148DE9C9EE89321F0AA165BDE05 /* JSCExecutorFactory.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 50B834389F0A52EF9DC6C27DE7CD7111 /* RNCPickerManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 319D4C18691771677FE83CCAF8807DBC /* RNCPickerManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 50D61DE9D7A8590D2821D64451FE1496 /* SDImageTransformer.h in Headers */ = {isa = PBXBuildFile; fileRef = F71F5BB161EFE16845835C17D1071F44 /* SDImageTransformer.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 50F61412775FE7D4FE7BBF73B6AC4B8F /* es.lproj in Resources */ = {isa = PBXBuildFile; fileRef = 9AEB5D60F61E5CFCED85D70717DD27A5 /* es.lproj */; }; - 5115FF3AD021AE6BF984D9D06CA1F063 /* ManualTimekeeper.h in Headers */ = {isa = PBXBuildFile; fileRef = 81B637E3ADF97DD6C410CDCA1F53A559 /* ManualTimekeeper.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 511B3FAF54CD973EC918CF37E7F01C95 /* RCTTurboModule.mm in Sources */ = {isa = PBXBuildFile; fileRef = EA880D94604F3BDF76B355942BB36599 /* RCTTurboModule.mm */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - 51214DB5A30202B500A2B7D03E56E343 /* AsyncUDPSocket.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 5DFF7397E09CAEAD4EF98B7FC86A0F4F /* AsyncUDPSocket.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -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\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors"; }; }; - 51376E94D372BC7B3BAC6EC9175918F0 /* Latch.h in Headers */ = {isa = PBXBuildFile; fileRef = A8452C7C5F850E613A7F3ACCEB22A96A /* Latch.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 514546F2D8310E7F4C88A2C1BF4D6939 /* MMKV.h in Headers */ = {isa = PBXBuildFile; fileRef = 871379DC580A9906566837C1B872A61C /* MMKV.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 515AB3A02C455B5847ED4B3599923401 /* RuntimeAdapter.h in Headers */ = {isa = PBXBuildFile; fileRef = 2EB2ED7BBB8478C051F527DDEF79EC6F /* RuntimeAdapter.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 517492A9DB1BE570124104ABD1E074FB /* FlipperCertificateExchangeMedium.h in Headers */ = {isa = PBXBuildFile; fileRef = 4384560BA5989E2B948CB1DB46E0181E /* FlipperCertificateExchangeMedium.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 518A7E73E691F8A7EB9865679279CCF6 /* PriorityThreadFactory.h in Headers */ = {isa = PBXBuildFile; fileRef = 55B349C864E792E7F69E016CCB3CD3A5 /* PriorityThreadFactory.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 519418231152DE7965E65EC152039E43 /* RNPanHandler.m in Sources */ = {isa = PBXBuildFile; fileRef = 56BCA2B97E1DAE73AA56E72BEEFB6722 /* RNPanHandler.m */; }; - 519481BF2A8FD895AFA82E945A8D141E /* PolyException.h in Headers */ = {isa = PBXBuildFile; fileRef = DAACBB6E0B5F70EA6D859B825E7C77C7 /* PolyException.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 519CEB1CF0632BD4CAEC31A5D86E9DA4 /* StaticTracepoint.h in Headers */ = {isa = PBXBuildFile; fileRef = 5D701AED020EB1DA57B6FDE8E105FA78 /* StaticTracepoint.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 51A4F8CD4AA7BE9D2E696DCA8AE0F874 /* Aligned.h in Headers */ = {isa = PBXBuildFile; fileRef = 288958F4742B33959C00CCDA830DEF73 /* Aligned.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 51B67D2931EB4CCA7F07B76A066A8217 /* EXAppleAuthenticationMappings.m in Sources */ = {isa = PBXBuildFile; fileRef = 12765E6C0FE3B8B56C136DB523CAC8DA /* EXAppleAuthenticationMappings.m */; }; - 51C1FFC5E15D1AC45B9AAA9CBEB5A955 /* FrameSerializer.h in Headers */ = {isa = PBXBuildFile; fileRef = EEC53FB638BA80024B5BEB0C515A1750 /* FrameSerializer.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 51D3700FEEFA90864982B1032E26BF9C /* FIRCLSOperation.h in Headers */ = {isa = PBXBuildFile; fileRef = F667AE46E263A7A517E722D9B783D79B /* FIRCLSOperation.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 51DF4E7D681852F71D8435935ADF11FB /* kqueue.c in Sources */ = {isa = PBXBuildFile; fileRef = 19D8F967D64197E724B3530AC7D14799 /* kqueue.c */; }; - 51EA1E266FCC622C10B5E031B822F96F /* StorageIndexer.m in Sources */ = {isa = PBXBuildFile; fileRef = E930EFE217233CB3748BF3259CC7C4C4 /* StorageIndexer.m */; }; - 51EAD4304BBE7F35D895B0B7CA19B049 /* RCTProfileTrampoline-x86_64.S in Sources */ = {isa = PBXBuildFile; fileRef = 04CEC819B28EEF081FB1A60A969A8641 /* RCTProfileTrampoline-x86_64.S */; }; - 51EB6CD6227514158D2DB1C52438BC2C /* NSButton+WebCache.h in Headers */ = {isa = PBXBuildFile; fileRef = 696DE55C286BFCE9ABFD2B09F49FBF2C /* NSButton+WebCache.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 521BFDE9B74DB13FC9C7541CACCB11B1 /* Payload.h in Headers */ = {isa = PBXBuildFile; fileRef = F85832130A3148FE810602F0E05D38C5 /* Payload.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 52247987D1E7B79399E678A6682FFBF7 /* RNCAsyncStorage-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 2787A45A8735757BF89DF8998E247CF0 /* RNCAsyncStorage-dummy.m */; }; - 5235586EF4F37E089CB0466A3D29952D /* REAUtils.h in Headers */ = {isa = PBXBuildFile; fileRef = 872D2FCB86AC74686DC67A7EE65FA3A1 /* REAUtils.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 523BE73D9C77E2B415B1830145587823 /* evsignal-internal.h in Headers */ = {isa = PBXBuildFile; fileRef = F068A4842CE3553A27782E11612DDC0C /* evsignal-internal.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 523F02EA0EF6E9EAF4553423C8E872E9 /* RCTSafeAreaViewLocalData.h in Headers */ = {isa = PBXBuildFile; fileRef = 199B4D9418A060D8E6D101491598E0C2 /* RCTSafeAreaViewLocalData.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 52489BC03892984727EF0E18F51CA909 /* Exceptions.h in Headers */ = {isa = PBXBuildFile; fileRef = 55294EC3E504C8BA006BB2B2EBA6DAC8 /* Exceptions.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 525681D085B5C73EF380EA0520995BA4 /* bufferevent_ratelim.c in Sources */ = {isa = PBXBuildFile; fileRef = 39305B4A5D50A8905FE3337AF9BCC606 /* bufferevent_ratelim.c */; }; - 52639A0ECD241362B0BD6FCEEBA881E0 /* IOExecutor.h in Headers */ = {isa = PBXBuildFile; fileRef = 97091FD93643FE8D36CD583C5E548E92 /* IOExecutor.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 5265BB288BE7022F66692322DC4A1FA8 /* WarmResumeManager.h in Headers */ = {isa = PBXBuildFile; fileRef = F16029932C4F596513746C170634EF45 /* WarmResumeManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 528CD6DB1523A496CBB45E611E2CDD42 /* ObservableOperator.h in Headers */ = {isa = PBXBuildFile; fileRef = 06D9659F8777F15807BD0E8F05A9A56A /* ObservableOperator.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 52D293AD9A91867323F5D527B2D6FD2B /* SpookyHashV2.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 3F9E5087DC25C01058CCEF28892B1C75 /* 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"; }; }; - 52FC4C285BD391CC8D308407ACE86BB3 /* HighlighterViewManager.m in Sources */ = {isa = PBXBuildFile; fileRef = 4881DB0D5458E784FDA1D1DB2C6C66BD /* HighlighterViewManager.m */; }; - 52FC8D37FC21A6A1729B415C479B0A45 /* GULUserDefaults.m in Sources */ = {isa = PBXBuildFile; fileRef = BD569C16ACD867CA9120A03F34357CB6 /* GULUserDefaults.m */; }; - 5305B3D1845996CAE48B884F62A700AE /* RCTBorderStyle.h in Headers */ = {isa = PBXBuildFile; fileRef = A442BB7FDC24744FFABDB77D2DC980A9 /* RCTBorderStyle.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 530DE462E0FF44DFF2D4097D1F364F55 /* ConcurrentHashMap.h in Headers */ = {isa = PBXBuildFile; fileRef = ACCA7A6E3C142EF4A0ACFF27DA8855EE /* ConcurrentHashMap.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 5313E8917DB2674A66D9B5BD586D9284 /* TOCropOverlayView.m in Sources */ = {isa = PBXBuildFile; fileRef = 6A0A2760653BF9EBB93B810586FD6825 /* TOCropOverlayView.m */; }; - 5314F052CBD1660721A471757A6960A2 /* SysResource.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 3E17D8288C72780F8067F47CB16FDE7E /* SysResource.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -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\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors"; }; }; - 532419B8F6C92922633064EB3BF4DD29 /* Combine-inl.h in Headers */ = {isa = PBXBuildFile; fileRef = A9F8ACCF50BC8F3E29983A656D96F585 /* Combine-inl.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 5329DF0639EECDF46FF0D39B96066679 /* SKSearchResultNode.m in Sources */ = {isa = PBXBuildFile; fileRef = CF052B7BAEBD12FB552E6AAA12CE3E99 /* SKSearchResultNode.m */; settings = {COMPILER_FLAGS = "-DDEBUG=1 -DFLIPPER_OSS=1 -DFB_SONARKIT_ENABLED=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -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"; }; }; - 53310C7E51592F35B731482C04256849 /* ScopedTraceSection.h in Headers */ = {isa = PBXBuildFile; fileRef = 2276E935AF07959AB2B1F1212BD9EF3F /* ScopedTraceSection.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 533D723DBDC1987B2F81ECF1A82E9F48 /* EXSessionDownloadTaskDelegate.m in Sources */ = {isa = PBXBuildFile; fileRef = DAD7E54D8867A225CF32D8C459853200 /* EXSessionDownloadTaskDelegate.m */; }; - 53670FBF51CAFFBB4ABBF3D2640B8137 /* ConnectionContextStore.cpp in Sources */ = {isa = PBXBuildFile; fileRef = F581C9A5F02DED7814305888D182DF40 /* ConnectionContextStore.cpp */; settings = {COMPILER_FLAGS = "-DFLIPPER_OSS=1 -DFB_SONARKIT_ENABLED=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -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"; }; }; - 5370CBA4ACBE7AEC5EF7A382F7043145 /* Connection.h in Headers */ = {isa = PBXBuildFile; fileRef = E3B827B8FE180C2C5A5139B362493C4C /* Connection.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 5372184DEE4B05BD26EAF265AA46579F /* REABlockNode.h in Headers */ = {isa = PBXBuildFile; fileRef = C9513ADBC8F5FD588932B568C8D26DDB /* REABlockNode.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 53A36BDEA07F386B37520635B600148D /* LifoSemMPMCQueue.h in Headers */ = {isa = PBXBuildFile; fileRef = 3EA9D6AF988840673AF7540C73AF91E8 /* LifoSemMPMCQueue.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 53C44FE753F00DA8FEA2EFCE693BDF2E /* Arena.h in Headers */ = {isa = PBXBuildFile; fileRef = 7BE09AE7D89E67A3549EB8A5B7B2CD7E /* Arena.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 53C524B776B176967BC868CF2F36B40F /* ko.lproj in Resources */ = {isa = PBXBuildFile; fileRef = 121C082C44622369A24320E0608F7EBA /* ko.lproj */; }; - 53C8034D5914E864883C58EFAFFCD535 /* NestedCommandLineApp.h in Headers */ = {isa = PBXBuildFile; fileRef = 3358D2CA5F4B26E8D42DF90BC66436BD /* NestedCommandLineApp.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 53CA5D35728E9D0983ABACA0581B5123 /* RCTBaseTextInputViewManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 9327F9C7E8982E0CE3C75DE507864913 /* RCTBaseTextInputViewManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 53DEA63DF1BB7C514C985DD0BE8ABF91 /* RCTI18nManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 0EC88FAC2B7478A7FC834D49B9513A81 /* RCTI18nManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 53E0798A557C9D66C44522A1B37588D6 /* yuv.h in Headers */ = {isa = PBXBuildFile; fileRef = EC406A8E1DF9CEE11C8A055B76618D94 /* yuv.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 540F416C28C21D48FAED8BBBFD21572D /* ExceptionWrapper.h in Headers */ = {isa = PBXBuildFile; fileRef = 11F3B1FB18F5565F8113DB73ACB4066F /* ExceptionWrapper.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 541C7B542BE9DAA6202E136237A05192 /* RNCSafeAreaProvider.m in Sources */ = {isa = PBXBuildFile; fileRef = 0FDB50B420BB773426F9F40E91C07B38 /* RNCSafeAreaProvider.m */; }; - 54215A72743129B3F6E99C1A98273D4E /* GULMutableDictionary.m in Sources */ = {isa = PBXBuildFile; fileRef = 1B66C0BC893BAE6AF6FA76CBE2469AA8 /* GULMutableDictionary.m */; }; - 5427EC2709C8F7F4AABA09565DF07D2F /* Synchronized.h in Headers */ = {isa = PBXBuildFile; fileRef = 033C850F3FEB52866E0474A4C21D0158 /* Synchronized.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 543EE0A6E553C33AEB1C61AC88CF42ED /* REAValueNode.m in Sources */ = {isa = PBXBuildFile; fileRef = 8EF4B26C6D38B2DF9388C95BAED0C0C0 /* REAValueNode.m */; }; - 543FD4FAA346F4E1FC73BD3C0AC0F7CA /* UMErrorCodes.m in Sources */ = {isa = PBXBuildFile; fileRef = E2C20142D7302B9F6BD186560877B9BF /* UMErrorCodes.m */; }; - 544B0A17D4EF8DF1A62AD4C97B7DF962 /* RNFastImage-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = CE58441B97197A9C77EC5B3FA60736DD /* RNFastImage-dummy.m */; }; - 54574A563AC07DC31E7F70C6E177FAA5 /* SDAnimatedImagePlayer.h in Headers */ = {isa = PBXBuildFile; fileRef = BE8FE5ABD07B445E6E17FBDE8B6AF829 /* SDAnimatedImagePlayer.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 5468B18F248F48CC7444DAB53E55683B /* FlipperStateUpdateListener.h in Headers */ = {isa = PBXBuildFile; fileRef = 0700BA622A0AFEE9C4E6E9C7422B940A /* FlipperStateUpdateListener.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 546CDA51CECAAD8E40A35673B6AF16EC /* AsyncSocketException.cpp in Sources */ = {isa = PBXBuildFile; fileRef = F9590B544AC71E50DB3D4A1FD459091F /* AsyncSocketException.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -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\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors"; }; }; - 546D73DEF4FD408C5791A9BCE5DC92D3 /* RCTBlobManager.h in Headers */ = {isa = PBXBuildFile; fileRef = CE720B80740482075792A51EC72C64FF /* RCTBlobManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 54880C500712D7E15C7E85BEEE11A60D /* EXAppleAuthenticationRequest.h in Headers */ = {isa = PBXBuildFile; fileRef = C590CA6D07CAF60A863741EFE53EDA7A /* EXAppleAuthenticationRequest.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 54AB0BE1465DA5D73C20D87AC8FDC895 /* BugsnagThread.h in Headers */ = {isa = PBXBuildFile; fileRef = 86A4D1DD994C66B202FFE6800530D499 /* BugsnagThread.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 54BD891D56D4AC60DB75C0BDD22BB108 /* FIRConfiguration.m in Sources */ = {isa = PBXBuildFile; fileRef = 6D491A5BE778C93D4886A5C866040891 /* FIRConfiguration.m */; }; - 54ECA723AA87FD13E6470CE43E753CAD /* SKInvalidation.m in Sources */ = {isa = PBXBuildFile; fileRef = C2661B362B6625627DF372579E7AEF04 /* SKInvalidation.m */; settings = {COMPILER_FLAGS = "-DDEBUG=1 -DFLIPPER_OSS=1 -DFB_SONARKIT_ENABLED=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -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"; }; }; - 54F2E38408AE876595C7FF75B4F0FCEE /* GDTCOREvent.m in Sources */ = {isa = PBXBuildFile; fileRef = E15545D395D44A2CB1B9694E05BA0A65 /* GDTCOREvent.m */; }; - 550A080E68943939CA95B7F4E6485F49 /* RNGestureHandler-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = E9A7FD5F85D4E9397A1DFCA59AA21099 /* RNGestureHandler-dummy.m */; }; - 5530E15FC0D84020B802A86170A1AD19 /* BSG_KSMach_x86_32.c in Sources */ = {isa = PBXBuildFile; fileRef = 95886B2AC7494B540A28ECCD92E6914D /* BSG_KSMach_x86_32.c */; }; - 55862533AF8EB81C065EBAE19625B899 /* YGLayout.m in Sources */ = {isa = PBXBuildFile; fileRef = 49D53E5ECAFF69A7D6F6C7CCC60D004A /* YGLayout.m */; }; - 558DE6ADB371227D79637DA212919A67 /* Time.h in Headers */ = {isa = PBXBuildFile; fileRef = 842065B8B3BD58AC120D1C31CB5FB335 /* Time.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 55C7553AC2432769683FCFA6743ECDD0 /* MacAddress.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 38258EDC2ECDB25B79EB77612803051E /* MacAddress.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -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\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors"; }; }; - 55CC116AF16D57CDC38060B2AFE35B50 /* fast-dtoa.cc in Sources */ = {isa = PBXBuildFile; fileRef = 0B5AB93A1A9D7CB8293F5DDF39830F9C /* fast-dtoa.cc */; settings = {COMPILER_FLAGS = "-Wno-unreachable-code"; }; }; - 55D4426FFCD98521C5E8B02841D11556 /* Frame.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 04518E1251B37EFB9CC7C85F2C6F79BF /* Frame.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -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 -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors"; }; }; - 55E17DB6E0D564BB0F61FADAF54E149A /* AtomicNotification.h in Headers */ = {isa = PBXBuildFile; fileRef = 78BC83CC850F23118262A47B9213D1B4 /* AtomicNotification.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 55F765F37C59C5C960CB40C562CA9CBE /* RNNotificationParser.m in Sources */ = {isa = PBXBuildFile; fileRef = 3243616DB85F9A421BA274E17024AB10 /* RNNotificationParser.m */; }; - 55FD51B36E2F32FBC86416608362E437 /* FIRCLSFCRAnalytics.m in Sources */ = {isa = PBXBuildFile; fileRef = B2479DB2FE66EE76609DF15B3AB5F1F9 /* FIRCLSFCRAnalytics.m */; }; - 560B893D25CFB3CE6099204CC3F920B4 /* MPMCPipelineDetail.h in Headers */ = {isa = PBXBuildFile; fileRef = 2C5800E04BD2368D3CB11E16D4EF1829 /* MPMCPipelineDetail.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 5612514BC1843E72BF91B29AFB21F139 /* RNCConnectionState.h in Headers */ = {isa = PBXBuildFile; fileRef = 0F71F642AF3DE7DD9E1E4E9BE0B3DBBD /* RNCConnectionState.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 5634D3743245D9A52ACAEA08B3128EEF /* Singleton.h in Headers */ = {isa = PBXBuildFile; fileRef = 52487E7EA3FF06EFCB57D1CD9FA0DCF2 /* Singleton.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 565A40C9715DD79B31B0702BA634E8AE /* UIColor+SKSonarValueCoder.h in Headers */ = {isa = PBXBuildFile; fileRef = 41718BA175DA03A8FF8BD8BC05A1E6E8 /* UIColor+SKSonarValueCoder.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 5669798FA515371E08A7DAF4BDC87760 /* FIRCLSThreadArrayOperation.m in Sources */ = {isa = PBXBuildFile; fileRef = 39A87EC33C3AE727827CE0318565876B /* FIRCLSThreadArrayOperation.m */; }; - 568F5CB571EFC06386733DFBA6509666 /* FIRCLSRecordHost.h in Headers */ = {isa = PBXBuildFile; fileRef = 6469A47D128F2A11EBBF60DD1195B115 /* FIRCLSRecordHost.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 568FA58DBDB7030FDAAD0B6F2B520755 /* EventFDWrapper.h in Headers */ = {isa = PBXBuildFile; fileRef = 01F562B383893768D4CE562C173AF28B /* EventFDWrapper.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 56A21965CF32BA684B8581838BE19F35 /* RCTImageCache.m in Sources */ = {isa = PBXBuildFile; fileRef = C19F872B607A5D258F69243BA87A938D /* 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"; }; }; - 56CC7F0B9354791C231BE0A4C795482F /* F14Map-fwd.h in Headers */ = {isa = PBXBuildFile; fileRef = 6035C4A147C0B8830C13A13C56336ABA /* F14Map-fwd.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 56E7F7A5D57875476E4E42193B33772E /* IOThreadPoolExecutor.cpp in Sources */ = {isa = PBXBuildFile; fileRef = A5D16A061AC19EBE3F2A997C614F5904 /* IOThreadPoolExecutor.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -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\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors"; }; }; - 56ED895217017BD48610677C02E2FA85 /* FIRCLSCompactUnwind_Private.h in Headers */ = {isa = PBXBuildFile; fileRef = A651A21FE23C668C852E87BDECE35979 /* FIRCLSCompactUnwind_Private.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 56F7980FD755DC837527569DB31DC8BD /* RNRootViewGestureRecognizer.m in Sources */ = {isa = PBXBuildFile; fileRef = 4B98073CFC9C25D3AC7C10F3E831926B /* RNRootViewGestureRecognizer.m */; }; - 570C74C728841871D4DBEB6FA4A15497 /* RNCWebViewManager.m in Sources */ = {isa = PBXBuildFile; fileRef = 7505D90D2C884C300D75B003B59BB35E /* RNCWebViewManager.m */; }; - 570E09B1C702A22295002978F51E87D4 /* threadsafe.h in Headers */ = {isa = PBXBuildFile; fileRef = 89A476ACB3FE57D02EC16766114B7E08 /* threadsafe.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 570E71BFCB10F0D0CC22FE747564297E /* AtomicUtil-inl.h in Headers */ = {isa = PBXBuildFile; fileRef = 767B925C026CB9A6115D2DAA8564ACF5 /* AtomicUtil-inl.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 5735964EABD42A40E1A4FB00D74231AC /* FileUtilDetail.h in Headers */ = {isa = PBXBuildFile; fileRef = 21208A38F5A34E06291195EF0E2908C6 /* FileUtilDetail.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 5757B9E2D363214326CFF9EB235140B0 /* SDWebImageDownloaderOperation.m in Sources */ = {isa = PBXBuildFile; fileRef = 8ECE261CF9D06F4361E4A1F9279B98FE /* SDWebImageDownloaderOperation.m */; }; - 576BFE5A753D35D748B26D692B7D23D3 /* ScopeGuard.h in Headers */ = {isa = PBXBuildFile; fileRef = 43032CE22287A7D741D63E15464A404B /* ScopeGuard.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 576D1D3D0255B54FFBDDCB00855FE397 /* PTChannel.m in Sources */ = {isa = PBXBuildFile; fileRef = D59DB87E3210D516D896651D27738B12 /* PTChannel.m */; }; - 576FAE68D62B75975E61E4306DA51C22 /* Yoga-internal.h in Headers */ = {isa = PBXBuildFile; fileRef = 04925E4C65CD37F4F5BCEA972570D447 /* Yoga-internal.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 5771D1F5AF09F22675A90661B35C5C29 /* BlurViewManager.m in Sources */ = {isa = PBXBuildFile; fileRef = 9CA76A689A2C2A3731103D8254D9FCA7 /* BlurViewManager.m */; }; - 579403A7E23A3D1B484B09EDFBABF685 /* Uri.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 5903689357297B6FC54A8D0B3466D988 /* Uri.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -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\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors"; }; }; - 57A2877226035C314F1E3DB50EA716AC /* FIRCLSNetworkClient.m in Sources */ = {isa = PBXBuildFile; fileRef = CF8644F271E44401C198A359C279E6A2 /* FIRCLSNetworkClient.m */; }; - 57A3AD09873EE8EA44F22BBF2FD6571F /* AsymmetricMemoryBarrier.h in Headers */ = {isa = PBXBuildFile; fileRef = DA0C110A12A0BD5E9A1907F4493D4C96 /* AsymmetricMemoryBarrier.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 57A9150670042BDF5454DF3A09F0BF20 /* bignum.h in Headers */ = {isa = PBXBuildFile; fileRef = 7BB74AB265F6AE55D2337D7E434DFC7C /* bignum.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 57B0B7CAAE8B64CB2AF282C5A17ECCE1 /* MicroLock.h in Headers */ = {isa = PBXBuildFile; fileRef = 8EB7532A0A3B8B481335D17280B270C0 /* MicroLock.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 57BC0C321B24948DE44EB7D7F8B5D7E7 /* RCTMaskedView.m in Sources */ = {isa = PBXBuildFile; fileRef = 0FC97E9950E503E79D263EADAE92167A /* RCTMaskedView.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - 57D78F83991F15800B0EF39A76C40A7C /* Orientation.h in Headers */ = {isa = PBXBuildFile; fileRef = 94BE9A0B11F10DD46B5AEFD4178E116F /* Orientation.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 57DF71855BA890D631892D2A4B2EBF5D /* RCTScrollableProtocol.h in Headers */ = {isa = PBXBuildFile; fileRef = F68BA11CC0C275B67DC8ECAFC32E5A60 /* RCTScrollableProtocol.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 57E4B19F74D99E1B3A27D31AC87A7006 /* evutil.c in Sources */ = {isa = PBXBuildFile; fileRef = F6AB4587E201E4C23AB7619E10ED0427 /* evutil.c */; }; - 57EA197249DC5CC52EFE8F17C9427B3A /* FIRCLSRecordBase.h in Headers */ = {isa = PBXBuildFile; fileRef = BF67BBDCA673E1FB5C1DD2309AF4CB54 /* FIRCLSRecordBase.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 58061F438DF6EACD997877BB0B2EBBCA /* React-perflogger-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 776B3012326972E4E0C073ECF6219795 /* React-perflogger-dummy.m */; }; - 5807F6B080990E0B767B0BE449E8ECFB /* RCTImageUtils.h in Headers */ = {isa = PBXBuildFile; fileRef = D5E55A4EAD292CC5AB8F7832A3894AAB /* RCTImageUtils.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 580AF9B17AF0DC866C596952274164B9 /* FIRCLSMachOBinary.m in Sources */ = {isa = PBXBuildFile; fileRef = 4FFD4768964A96ED914AFC1FB2C3CD28 /* FIRCLSMachOBinary.m */; }; - 5822C44912002F529B8D36067CA5BED5 /* BugsnagKVStore.h in Headers */ = {isa = PBXBuildFile; fileRef = E5D4170E4147969786CE3297B8D288DF /* BugsnagKVStore.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 58368D45926FD1B6881772D7AA2BFFD0 /* RCTTurboModule.h in Headers */ = {isa = PBXBuildFile; fileRef = 02A07C2CF210CB58858459A1FB92D628 /* RCTTurboModule.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 585BA85A9E284A84802094B584F65CC1 /* ThreadedExecutor.h in Headers */ = {isa = PBXBuildFile; fileRef = B56F12B746CB0F16C8001E746A25E3D0 /* ThreadedExecutor.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 5862194834EAEBC5983B2B6DE7F7D8BC /* GlobalShutdownSocketSet.cpp in Sources */ = {isa = PBXBuildFile; fileRef = F80D14207A4BC374E1108E515C59113B /* GlobalShutdownSocketSet.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -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\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors"; }; }; - 58654A065C7D9BC74483DB9875A1F7EF /* RCTLinkingPlugins.h in Headers */ = {isa = PBXBuildFile; fileRef = 3F078F39E28D25346F07A1C58BABEFCD /* RCTLinkingPlugins.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 586AF66AA034395EF22197C56E9C3041 /* Stdio.cpp in Sources */ = {isa = PBXBuildFile; fileRef = C447F5E1A3B40FDA187DD4B2BB4E3656 /* Stdio.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -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\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors"; }; }; - 58703AB85DDAA7CC1B8525B5CEB0D83F /* demux.h in Headers */ = {isa = PBXBuildFile; fileRef = B9703E1EC5B12F2D715115AC6A7FBB93 /* demux.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 587AFE04A5B41C8A9141EE2635529E04 /* RCTProfileTrampoline-arm64.S in Sources */ = {isa = PBXBuildFile; fileRef = C23E608D6ECDE8DAF3600B13F5FD8ABC /* RCTProfileTrampoline-arm64.S */; }; - 587CF6EC3B6FEB93465F0CD513A9AD09 /* RCTURLRequestHandler.h in Headers */ = {isa = PBXBuildFile; fileRef = F5C24A28F7BE299202A4BE137E4D7B83 /* RCTURLRequestHandler.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 5885A380130872574F2275F30DB28F49 /* BSG_KSMach_Arm64.c in Sources */ = {isa = PBXBuildFile; fileRef = 00B98116A9CCF0A918097FB180D34F09 /* BSG_KSMach_Arm64.c */; }; - 58913D434D1F05CD24A2CDB16D9E6986 /* Request.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 000558890AD12FA455201ABBBD9084C3 /* 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"; }; }; - 589A0FA2BB8D8D82ABEE5BCB8958B23C /* Malloc.h in Headers */ = {isa = PBXBuildFile; fileRef = 04EFE173DFCD42C297A5081E121E245C /* Malloc.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 589C23108B805E0EBF232A4D1C231745 /* BugsnagBreadcrumbs.h in Headers */ = {isa = PBXBuildFile; fileRef = F759368598F3CB12858EFD5919BB5FB1 /* BugsnagBreadcrumbs.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 58A2CFAAF578864F9A77830CE86EE050 /* FIRAEvent+Internal.m in Sources */ = {isa = PBXBuildFile; fileRef = 807FB3BD4F4C8DC51A9131B966235F59 /* FIRAEvent+Internal.m */; }; - 58AF9CCBEEF7E4BCD4301166C851AA06 /* ThreadWheelTimekeeperHighRes.h in Headers */ = {isa = PBXBuildFile; fileRef = 7740BA7FA0A7CD669E269EA357054220 /* ThreadWheelTimekeeperHighRes.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 58B5B5F5980F2C3C031C83B27AEF20A0 /* ClockGettimeWrappers.h in Headers */ = {isa = PBXBuildFile; fileRef = 836C95D081ECB5434F342E17A88F8CA0 /* ClockGettimeWrappers.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 58C6339E7789D7039C3B799F993C4221 /* ResumeManager.h in Headers */ = {isa = PBXBuildFile; fileRef = ED9DA0CE1A4AFD77FC0FFB024D143F70 /* ResumeManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 58CE638F9A39594D5B03261D56EF3679 /* RCTInputAccessoryViewContent.m in Sources */ = {isa = PBXBuildFile; fileRef = D138E7168D289E33D969E784634487E8 /* RCTInputAccessoryViewContent.m */; }; - 58D7F9C57D9E8C42867BC4BD992FE79E /* BugsnagConfiguration.m in Sources */ = {isa = PBXBuildFile; fileRef = B3DDF3E68ACB1EB42C9B28FEFE55CD1A /* BugsnagConfiguration.m */; }; - 58DBC0FAFB21C7C9F841A75D0647F3E9 /* FBLPromise+Reduce.h in Headers */ = {isa = PBXBuildFile; fileRef = 4BC6D68855B4DB60DC353DDD7CB64C15 /* FBLPromise+Reduce.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 58DDE1BB125D4D4F64A9A661E08F1CD3 /* FIRCLSCrashedMarkerFile.c in Sources */ = {isa = PBXBuildFile; fileRef = 6A4B08830BCD18DEC0487928F7DD1183 /* FIRCLSCrashedMarkerFile.c */; }; - 58E1660575B93C51FE5C9208E4D2ACDA /* REATransition.h in Headers */ = {isa = PBXBuildFile; fileRef = CA241484EAD056CDDD9937901FD9EFBA /* REATransition.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 58E2F5D71ADB5020DAF740BCD132F6E7 /* RCTBlobManager.mm in Sources */ = {isa = PBXBuildFile; fileRef = 8FCFA71E7FBCE4592668FE90C1220BE6 /* 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"; }; }; - 58F91D19BEC6968923335ABE9AAB2D1C /* OpenSSLPtrTypes.h in Headers */ = {isa = PBXBuildFile; fileRef = E6A7AB775F20AF1DAAFE10B7A75707F6 /* OpenSSLPtrTypes.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 593EF2505647C864AB0382709F612330 /* RNCAssetsLibraryRequestHandler.h in Headers */ = {isa = PBXBuildFile; fileRef = 68F5A2D99D26FA53F6F483CE78272FCB /* RNCAssetsLibraryRequestHandler.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 594C24B46B687D9E3DDC9441F8BA2005 /* DelayedDestructionBase.h in Headers */ = {isa = PBXBuildFile; fileRef = 62F459488D43AA27FF3659559D36B974 /* DelayedDestructionBase.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 595485B6D37BA39E69DFFB6B33FE5D58 /* AsyncTimeout.h in Headers */ = {isa = PBXBuildFile; fileRef = B21C9729FD9EC0FB30E16883878AF772 /* AsyncTimeout.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 597FE2C24B558EAE467990DDAA424325 /* RNDeviceInfo-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 52056FC19AE5CE79FA448C8CD56E2440 /* RNDeviceInfo-dummy.m */; }; - 59ADFE9353A5AFC51521D50B882605C7 /* UIView+React.h in Headers */ = {isa = PBXBuildFile; fileRef = 9E74F12D027EC60353BA18DC9C8F057C /* UIView+React.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 59B329A3C21EC40388C438F5978C2BD8 /* CodedInputData.h in Headers */ = {isa = PBXBuildFile; fileRef = 2430CFEC73944B4E6CBACE3570B2F700 /* CodedInputData.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 59DE9E944049E3F8FDF20927F5A182E9 /* GULAppEnvironmentUtil.h in Headers */ = {isa = PBXBuildFile; fileRef = 3ADA24494E344DDAD822C6DA6B4EF030 /* GULAppEnvironmentUtil.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 59EBC93ADCBFCA9F0540BBABAA2B1386 /* RNDateTimePicker-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 5DE1DEECA7B95C2F487E21F26B6995B3 /* RNDateTimePicker-dummy.m */; }; - 59F6D34C25A88847AF8335D9E4FF1D5C /* FIRAEvent+Internal.h in Headers */ = {isa = PBXBuildFile; fileRef = B00F17CD86E0960793ED999778327FA0 /* FIRAEvent+Internal.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 5A0171736A5F613B8B569D74BBD43F03 /* ThreadPoolExecutor.h in Headers */ = {isa = PBXBuildFile; fileRef = 144FCDDA6C4928F6C6EC8F1864CEE384 /* ThreadPoolExecutor.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 5A1801ADF0F9E33B736EECEF44836F82 /* experiments.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 14AA7A8B170D786D4D560A3331126720 /* experiments.cpp */; settings = {COMPILER_FLAGS = "-fno-omit-frame-pointer -fexceptions -Wall -Werror -std=c++1y -fPIC -fno-objc-arc"; }; }; - 5A1BAFF7CF411FC918F477C48C53AA63 /* diy-fp.h in Headers */ = {isa = PBXBuildFile; fileRef = F3489AA7582FB320BAC9935E0E332756 /* diy-fp.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 5A2849A983BC591DF6CC2F775AF11C57 /* React-Core-umbrella.h in Headers */ = {isa = PBXBuildFile; fileRef = 6A19D8BD47C70E27B2D60A385E031D01 /* React-Core-umbrella.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 5A45D5194444588369ECA279EFBEF9EE /* UTF8String.h in Headers */ = {isa = PBXBuildFile; fileRef = 4990C4B9B9AA45A9F6839CFF93A49CEC /* UTF8String.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 5A7963A2F614AEC47409EE8111A1BF63 /* RCTBackedTextInputViewProtocol.h in Headers */ = {isa = PBXBuildFile; fileRef = 219E0924E0BE9C7E6130A5F93A67232A /* RCTBackedTextInputViewProtocol.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 5A81F2512F2E55549E9044D9D8DF322F /* thread_utils.c in Sources */ = {isa = PBXBuildFile; fileRef = F5C23D5F46756EE864E58C1346D30056 /* thread_utils.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; - 5A885EA7F6852FC3D4F9A5C4A7A34098 /* CxxNativeModule.h in Headers */ = {isa = PBXBuildFile; fileRef = 959538869682DE8F5F8416B71AFB8690 /* CxxNativeModule.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 5A9299BC657C6780109E101A8C0B5F5B /* REAParamNode.m in Sources */ = {isa = PBXBuildFile; fileRef = 95E467C2CA3EAB1FECEF9E2AD4F9B632 /* REAParamNode.m */; }; - 5AAE28F93F533CF23C21399546C6AF83 /* iterator_enc.c in Sources */ = {isa = PBXBuildFile; fileRef = A86994FD156A22B3C21CE4E425A6D6B9 /* iterator_enc.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; - 5AB3B61A4C4F42AA53A9A921D6B6BC7F /* SKScrollViewDescriptor.m in Sources */ = {isa = PBXBuildFile; fileRef = 86D3CC47B0C340A700E877DEF908FAA8 /* SKScrollViewDescriptor.m */; settings = {COMPILER_FLAGS = "-DDEBUG=1 -DFLIPPER_OSS=1 -DFB_SONARKIT_ENABLED=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -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"; }; }; - 5ABAAC805A0E6516E938929B89E18DFE /* SingletonThreadLocal.h in Headers */ = {isa = PBXBuildFile; fileRef = D980C0A62EE8742795B8DE601B15EB93 /* SingletonThreadLocal.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 5ACB9343E2D8BF78910FB661AB784444 /* RCTAppState.mm in Sources */ = {isa = PBXBuildFile; fileRef = 696B1D52D0D68745C933A07535EEDDCF /* 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"; }; }; - 5B17C07022BB8181DA586246F4E32483 /* RNSScreenContainer.m in Sources */ = {isa = PBXBuildFile; fileRef = 885E67E45CB9292D54C7AE825D2CC130 /* RNSScreenContainer.m */; }; - 5B1D944060E287AF5B5FF3611112FA51 /* RCTTextSelection.h in Headers */ = {isa = PBXBuildFile; fileRef = 1B218D186F54EF65DEED555A468AC649 /* RCTTextSelection.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 5B292C17A00ED1B61A3B6F8E1E7E3775 /* Foreach-inl.h in Headers */ = {isa = PBXBuildFile; fileRef = 28B56D2A63D67651137709B2BDCEE69D /* Foreach-inl.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 5B354EA4FB84CF6F18B858676BC0ED74 /* React-RCTImage-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 1B354C853DA1F53692CF84A3B1ABC877 /* React-RCTImage-dummy.m */; }; - 5B7A7BFD69A9EFA8D49D60F17DCC69E4 /* RCTSettingsPlugins.h in Headers */ = {isa = PBXBuildFile; fileRef = AA33C72486C653056728F07308087B0D /* RCTSettingsPlugins.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 5B9B4E230AE1E89B389C639026B26FC0 /* RCTProgressViewManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 60816C0E7B00326FCAD09074D41D8E75 /* RCTProgressViewManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 5BAD5884C31E4DEC20B64EF102A862D0 /* FrameHeader.h in Headers */ = {isa = PBXBuildFile; fileRef = 510790E68DCEBCD3A692226FBC4D7816 /* FrameHeader.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 5BB861E2813B0F0460BA5A26EC894C9B /* GDTCORFlatFileStorage.m in Sources */ = {isa = PBXBuildFile; fileRef = A1F1A4CF23D301F5E48F1A6FF632D891 /* GDTCORFlatFileStorage.m */; }; - 5BC4A1F8F61B108E4380A8140B76D883 /* RNGestureHandlerButton.h in Headers */ = {isa = PBXBuildFile; fileRef = 85782E5A0FDBD520761C5860C266BA68 /* RNGestureHandlerButton.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 5BF1CA6A168AEAC6F9C7040377145467 /* vp8i_enc.h in Headers */ = {isa = PBXBuildFile; fileRef = F84258E26BD1F2E4F4E845499D19D291 /* vp8i_enc.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 5BF800372EBBB02FED49E86FA9823B84 /* BSG_KSCrash.h in Headers */ = {isa = PBXBuildFile; fileRef = 432D193BB206D15FA4F612B0D3090FBC /* BSG_KSCrash.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 5BF82DC3638FD03C13ABF0EE0429BA4F /* EXConstants-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = C5BAF70E5AB8A74B2B59C84C0A57DF1A /* EXConstants-dummy.m */; }; - 5BFABBC5EB4A72002B2A3613D5B4E9B8 /* RCTExceptionsManager.mm in Sources */ = {isa = PBXBuildFile; fileRef = 773AEAE125E1B97FCE5EFAB6EFE16A8A /* 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"; }; }; - 5C0E80E34CD7B0260A5748BDAE50A077 /* SysFile.cpp in Sources */ = {isa = PBXBuildFile; fileRef = BB390DCFA35B0EAECFFD2DE810925E64 /* SysFile.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -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\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors"; }; }; - 5C1BF6C712A517436D42DA25639A21A4 /* RNVectorIconsManager.m in Sources */ = {isa = PBXBuildFile; fileRef = 6F0154D8ACB77B410E5B940FAA48A9FE /* RNVectorIconsManager.m */; }; - 5C2E8B571A9425AC10B3CA0A964DDDF1 /* FBLPromise+Then.m in Sources */ = {isa = PBXBuildFile; fileRef = 9F3B0002B8624CBE05928C53384482F2 /* FBLPromise+Then.m */; }; - 5C4E76845D343CA10A65FB4CD3F161BE /* RNCAppearance.h in Headers */ = {isa = PBXBuildFile; fileRef = F081E4DF5CFA79D41D16C87B19AD63DB /* RNCAppearance.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 5C58024B37BFE04C0F8CA568438113E8 /* HardwareConcurrency.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 96E65B84F0413A12D554FE770DB991AD /* HardwareConcurrency.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -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\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors"; }; }; - 5C62820C2BA76DFE7B38ED75B95B5DBD /* GULKeychainStorage.m in Sources */ = {isa = PBXBuildFile; fileRef = C8029B6FA3BDC64E572449C131DB4F9A /* GULKeychainStorage.m */; }; - 5C6F04DA7B52116C8E87D3BA0039B1BB /* RCTI18nUtil.h in Headers */ = {isa = PBXBuildFile; fileRef = 355D6578FE6CE7A9FFF81C56C9A18088 /* RCTI18nUtil.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 5C79E726C0A10A77C209336D12E21881 /* Checksum.h in Headers */ = {isa = PBXBuildFile; fileRef = 18991E23AA99F50B64E25A247D7A6330 /* Checksum.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 5CA3E4EA9D89288AB6804CF6C3B5769F /* bufferevent_sock.c in Sources */ = {isa = PBXBuildFile; fileRef = 92CF4CA7AA549F6D173DB1F3510DAF47 /* bufferevent_sock.c */; }; - 5CA581817E8C0B33FF4E56320738F1F2 /* NSData+EXFileSystem.m in Sources */ = {isa = PBXBuildFile; fileRef = 29DCEFBF38171CEEA0288A959C33AA72 /* NSData+EXFileSystem.m */; }; - 5CD3724C69BC011F60FA77CC0DB697A7 /* RCTActionSheetManager.mm in Sources */ = {isa = PBXBuildFile; fileRef = 6ED4D25011BAD0ECDF0976D92211BF3F /* 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"; }; }; - 5CF0A75C038C22CE06F634627E61E30C /* FIRErrorCode.h in Headers */ = {isa = PBXBuildFile; fileRef = 867B29A1250B07A84E8BC281E2916F23 /* FIRErrorCode.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 5D1371E42154175C05431D1C51818977 /* ColdResumeHandler.h in Headers */ = {isa = PBXBuildFile; fileRef = A30625DAC877C1D1E7E335916E73632A /* ColdResumeHandler.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 5D18FE936D740AB24774604FA78258C5 /* RCTRedBoxSetEnabled.m in Sources */ = {isa = PBXBuildFile; fileRef = 2DFFAD9F41C6A92527EED93D7F1EB23C /* RCTRedBoxSetEnabled.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - 5D1EABB076B0608332F1A2E988E33B9B /* UMReactFontManager.m in Sources */ = {isa = PBXBuildFile; fileRef = 35E8349DDFB19341CFB6AF34F3E9C974 /* UMReactFontManager.m */; }; - 5D84E4EDC421E22D3E69513DAA0F96FE /* FIRInstallationsItem+RegisterInstallationAPI.h in Headers */ = {isa = PBXBuildFile; fileRef = C20492402F9EA7E3B8AD53A1D41FC5D2 /* FIRInstallationsItem+RegisterInstallationAPI.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 5D8E3A78DEA434C6BDA5D6E8A30E6847 /* EXAppleAuthenticationButton.m in Sources */ = {isa = PBXBuildFile; fileRef = 6B462E204A57616C620FCD610EFD07A8 /* EXAppleAuthenticationButton.m */; }; - 5D9ECFBF9393943065377394556F052B /* Sockets.cpp in Sources */ = {isa = PBXBuildFile; fileRef = FDDAAF3643795C5D07BFB71694E8382D /* Sockets.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -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\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors"; }; }; - 5DA3BB119040617ED48F6F9C591798E6 /* RNTapHandler.h in Headers */ = {isa = PBXBuildFile; fileRef = 903A7619FDE7ED53437A19C410F5B823 /* RNTapHandler.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 5DA4CAD43BDF62B98AEFB3665BA2F268 /* SDImageIOCoder.m in Sources */ = {isa = PBXBuildFile; fileRef = B1FF6B2CA1B1140675F34754AA1FAC9C /* SDImageIOCoder.m */; }; - 5DAACE5BEAF998A4F0F81F700E9983A0 /* ParallelMap-inl.h in Headers */ = {isa = PBXBuildFile; fileRef = 41B034CB24DAE6CFF748E08DAD09A2DA /* ParallelMap-inl.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 5DE06AF9D79E86D0AA2AD237B4F7E69B /* TurboModuleBinding.cpp in Sources */ = {isa = PBXBuildFile; fileRef = A0F186D93E942FD055EA978A99397B35 /* TurboModuleBinding.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - 5DE9EA3212F1D3EC397C6CAF552A3249 /* Random-inl.h in Headers */ = {isa = PBXBuildFile; fileRef = A241079C26BA7316518080B63897BAF8 /* Random-inl.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 5DF803DC1FA30F567356E277663E433B /* RCTLayoutAnimationGroup.m in Sources */ = {isa = PBXBuildFile; fileRef = 077BEFF3805136F3DA0C317B2C868616 /* RCTLayoutAnimationGroup.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - 5E2500118A397A383D4018C3DF7F0583 /* GCDAsyncUdpSocket.m in Sources */ = {isa = PBXBuildFile; fileRef = 46B53E77B1FA9966C50B3BF377B08F20 /* GCDAsyncUdpSocket.m */; }; - 5E2AB8CFCA0F7A6B20B5DC681CA42CEC /* Padded.h in Headers */ = {isa = PBXBuildFile; fileRef = 67A7E38CB6EA455F1DB1AC26C42A0EFA /* Padded.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 5E414935DECD018A79FCD98D5ECFB1B1 /* TOCropOverlayView.h in Headers */ = {isa = PBXBuildFile; fileRef = 257487F947497776522450F01A975F69 /* TOCropOverlayView.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 5E47BD915BAFE5C0C0FD9434EA5DFBA4 /* F14IntrinsicsAvailability.h in Headers */ = {isa = PBXBuildFile; fileRef = 140AAC91E8ED0B016C8DC8C5131FF746 /* F14IntrinsicsAvailability.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 5E55FEF6B1ACB8BDC0276C53FFB57E4E /* RCTModuloAnimatedNode.h in Headers */ = {isa = PBXBuildFile; fileRef = FA71C084C162276FBC53CF96C82956E1 /* RCTModuloAnimatedNode.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 5E5740A839F22A3B1F1E82EEE037ABB1 /* MiniPBCoder_OSX.cpp in Sources */ = {isa = PBXBuildFile; fileRef = AF92831C225D2F0E3C8CE8446FF6B84F /* MiniPBCoder_OSX.cpp */; settings = {COMPILER_FLAGS = "-x objective-c++ -fno-objc-arc"; }; }; - 5E57502CF408A766C5F086B8D85CCC6C /* DispatchMessageQueueThread.h in Headers */ = {isa = PBXBuildFile; fileRef = E612D2832D116E527EFCC79329C6BEC5 /* DispatchMessageQueueThread.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 5E599F3B4FC0CBFEC781EB62E40097D3 /* BSGInternalErrorReporter.h in Headers */ = {isa = PBXBuildFile; fileRef = DA81A58DABB5895D1ECF1FDA42B13D66 /* BSGInternalErrorReporter.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 5E890A65624ACC983E0F0ABF665A1607 /* LNInterpolable.m in Sources */ = {isa = PBXBuildFile; fileRef = 32CFF859FF41FB0A551A8E139D688D17 /* LNInterpolable.m */; }; - 5E8C2383E95A9ABDEA362756F0EF1949 /* SerialExecutor.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 779317CA3A38F38A2E8452DA500B10EB /* 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"; }; }; - 5E8F17796B17F546DBEFF101502550DA /* EXWebBrowser-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 1E8378298D5B969F8DE52819062D87F2 /* EXWebBrowser-dummy.m */; }; - 5E9341355BDD556BA684BB9608900B92 /* TimeoutQueue.h in Headers */ = {isa = PBXBuildFile; fileRef = 36FB2386D2E70E78CC8780D01AEE8E72 /* TimeoutQueue.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 5E950C4119D60003FE6444EC34C04393 /* BSGConnectivity.m in Sources */ = {isa = PBXBuildFile; fileRef = D05C1CEC62104465904E3A67032B0338 /* BSGConnectivity.m */; }; - 5ECFAEB0D811F5F3FEB2E0FE2C10CF05 /* EXAppleAuthenticationButtonViewManagers.m in Sources */ = {isa = PBXBuildFile; fileRef = E690CF7FDCEF70E0454A91E9EB1E11EA /* EXAppleAuthenticationButtonViewManagers.m */; }; - 5ED409C600B403347DB47FF315192F6E /* IPAddressException.h in Headers */ = {isa = PBXBuildFile; fileRef = 6B9475DFB50607546ADDE85EFFA6AB56 /* IPAddressException.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 5ED9D2F2CBE4B16E1EB40C7DEE1FBEA6 /* RSocketResponder.h in Headers */ = {isa = PBXBuildFile; fileRef = 3791BF953E422EA15E7E7944B8F4CA24 /* RSocketResponder.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 5F05F5021A2CEDD9E8394C7F1EC08142 /* UMModuleRegistry.m in Sources */ = {isa = PBXBuildFile; fileRef = 32D34E1C373307BDCED0A4343DFDA2C3 /* UMModuleRegistry.m */; }; - 5F18435162F79A70F22EADF7AECE81AD /* RCTSettingsManager.mm in Sources */ = {isa = PBXBuildFile; fileRef = 0CC423979935EE595B6D7953492ABE5E /* 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"; }; }; - 5F1AEC8A4A2038A3A647588151ECB571 /* OpenSSLHash.h in Headers */ = {isa = PBXBuildFile; fileRef = D55EECDF82319E1B43BAC813BD004C14 /* OpenSSLHash.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 5F1AFE6A2C8A803A0110BAC9966A2E33 /* StreamStateMachineBase.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 7C11E1C5E45CC15821A35863F16FA1B0 /* StreamStateMachineBase.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -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 -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors"; }; }; - 5F1FF7EDDFF9B4DA7A30D8F812B4F5BA /* RCTObjcExecutor.h in Headers */ = {isa = PBXBuildFile; fileRef = B1F760470CBA775E2C937B689C311319 /* RCTObjcExecutor.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 5F1FFA71A8B407128A8335A014360FEF /* CacheLocality.h in Headers */ = {isa = PBXBuildFile; fileRef = 43AEA98D17B75654E59BC31D37C4AE24 /* CacheLocality.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 5F26D9FED3E7EDE39A69830E54ED4291 /* RNCAsyncStorage.m in Sources */ = {isa = PBXBuildFile; fileRef = C0180E0DAAFCDC1180358204BBF1D0EE /* RNCAsyncStorage.m */; }; - 5F352AC09521B86E73CB59AE05822FED /* REAOperatorNode.h in Headers */ = {isa = PBXBuildFile; fileRef = D5D99E68D42DB1FFA29F7AD244CD2F3C /* REAOperatorNode.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 5F4DABCF59088EC74586C43C8B4CB03F /* FlipperConnectionManagerImpl.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 3BFA84E1B478F0D4404E7812D2B6B035 /* FlipperConnectionManagerImpl.cpp */; settings = {COMPILER_FLAGS = "-DFLIPPER_OSS=1 -DFB_SONARKIT_ENABLED=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -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"; }; }; - 5F4EA37F2A1D13FFF931A2F1578C238A /* BSGEventUploadObjectOperation.h in Headers */ = {isa = PBXBuildFile; fileRef = B0D5A182C42291DAF7F26A11BD8C8483 /* BSGEventUploadObjectOperation.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 5F5254B5432CF6141A81648035CD1D10 /* Thread.h in Headers */ = {isa = PBXBuildFile; fileRef = 17FB77BE527E85166F4699810C508556 /* Thread.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 5F873FCC3EB5E0BB8737881DDB0DFCAE /* ErrorCode.h in Headers */ = {isa = PBXBuildFile; fileRef = A180CF8E7D7BE31D09455978DA60DC12 /* ErrorCode.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 5F97A8053DE2FC0B0BFD6A5B96BA40EB /* Pods-defaults-RocketChatRN-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = F21CCAF47107D491C484F4743F565B80 /* Pods-defaults-RocketChatRN-dummy.m */; }; - 5F99BF5C6B9D8326C29B9B132D4E3F65 /* BSGEventUploadOperation.m in Sources */ = {isa = PBXBuildFile; fileRef = 039B1088A923BF790ADA0AC7732F66D2 /* BSGEventUploadOperation.m */; }; - 5F9D5E361C41CF262D91F88F47740F1F /* Registration.cpp in Sources */ = {isa = PBXBuildFile; fileRef = F83A4C8812F4CB19573C1DD3BB28018E /* Registration.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - 5FA5414EBE168CEE9BCB28654ACD0F15 /* ProtocolVersion.h in Headers */ = {isa = PBXBuildFile; fileRef = 2137BD408F80C49698ED16257310376A /* ProtocolVersion.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 5FD56362A5ABA26F2BDD438F96F264C2 /* BugsnagDevice.m in Sources */ = {isa = PBXBuildFile; fileRef = 0B2BF373E5089F4C67C4A01143AC410A /* BugsnagDevice.m */; }; - 5FD7A5D93B82A94BF6C30EAD75A929CD /* en.lproj in Resources */ = {isa = PBXBuildFile; fileRef = 00A792DB181EE87A94B1014D67850B27 /* en.lproj */; }; - 5FECC9DC73C82BEE2C93F78E5727FAFD /* AutoAttachUtils.h in Headers */ = {isa = PBXBuildFile; fileRef = DA6569714811CB81F5058D796EF7AD4A /* AutoAttachUtils.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 5FEE5BDBDE95EC8E66EA8D23D50D2EF8 /* hu.lproj in Resources */ = {isa = PBXBuildFile; fileRef = 80211F1678ED1CAB959ACFB0AE2E477D /* hu.lproj */; }; - 6016B9B2BAC17596F20366A9BDCCBF14 /* backward_references_enc.c in Sources */ = {isa = PBXBuildFile; fileRef = 8D6FA0A067E58BD035A8CB254BF874DD /* backward_references_enc.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; - 6018F1F609977889E1F1EE2B345FACA3 /* SDWebImageDefine.h in Headers */ = {isa = PBXBuildFile; fileRef = 5AD3167E0123CD275B0C9FCABD515EA8 /* SDWebImageDefine.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 6025DB2810AD9610FE29F2358937B917 /* BugsnagSessionTrackingApiClient.m in Sources */ = {isa = PBXBuildFile; fileRef = 85850D0F4EDDE83B68C1D3E63B63EB40 /* BugsnagSessionTrackingApiClient.m */; }; - 6031E0502A6786780985A6CB3EDCC7A8 /* Uri-inl.h in Headers */ = {isa = PBXBuildFile; fileRef = D5840566E7BBCE62361B020239DE8975 /* Uri-inl.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 6070CCA6F9A616F45577C94FBD984F9B /* ThreadLock.cpp in Sources */ = {isa = PBXBuildFile; fileRef = AC806598F97772C30B60BE5001B27B85 /* ThreadLock.cpp */; settings = {COMPILER_FLAGS = "-x objective-c++"; }; }; - 6078026A3F3104A6A5182525FA596CE0 /* TimedDrivableExecutor.cpp in Sources */ = {isa = PBXBuildFile; fileRef = BCA937F2B436CFAF9FF094281DB97064 /* TimedDrivableExecutor.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -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\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors"; }; }; - 60877E6E89FA799A74973B8A083F844D /* FIRCLSLogger.h in Headers */ = {isa = PBXBuildFile; fileRef = 9372AC00A3DB1B500E10C1F4B72DB57E /* FIRCLSLogger.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 608C3844EA3A3504918A7E6FDBDEFD6F /* sorted_vector_types.h in Headers */ = {isa = PBXBuildFile; fileRef = 363933C9D4336A82E96B622D5B760E34 /* sorted_vector_types.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 609618B919606D5A3B849C9F352F31E0 /* json.h in Headers */ = {isa = PBXBuildFile; fileRef = 12105428025D405B7878360FB13F8519 /* json.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 60BED3285C35999D6343CEC41FE96B01 /* AtomicUtils.h in Headers */ = {isa = PBXBuildFile; fileRef = F3D4269EDDDB1D35DEE5FFE4C47815A6 /* AtomicUtils.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 60C3DB96455C78B971AC1E12780020BD /* Conv.h in Headers */ = {isa = PBXBuildFile; fileRef = B8861BD54155CF886F44EE104B6E00F2 /* Conv.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 60C79DBEB10D3C91C7B58759D7D0BBA1 /* GTest.h in Headers */ = {isa = PBXBuildFile; fileRef = 5E191E90BBC4E5C7147A7B5E598B5512 /* GTest.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 60D05C1846C1099AF1F69F19F60CD9A8 /* RCTAsyncLocalStorage.h in Headers */ = {isa = PBXBuildFile; fileRef = 8D994088F51E423A98794D609E35CAF6 /* RCTAsyncLocalStorage.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 60D7D3204D561C0319BDA6EA0417CD18 /* BSG_KSSysCtl.h in Headers */ = {isa = PBXBuildFile; fileRef = 7F78273B44B4DA42DBE6141598922D84 /* BSG_KSSysCtl.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 60F1116344968E0A933978501B3FE871 /* RCTModalHostView.h in Headers */ = {isa = PBXBuildFile; fileRef = 3553D4C544A3BEDF55E4F169FB3755E3 /* RCTModalHostView.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 610100047A3B2943C1E775BD951913A4 /* frame_enc.c in Sources */ = {isa = PBXBuildFile; fileRef = 825B2285A1530B004DDAD6CEE1315843 /* frame_enc.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; - 6103BA579E4EBDA8905021EE51B42818 /* FIRCLSInternalReport.h in Headers */ = {isa = PBXBuildFile; fileRef = 0E92081CF67467605D8B96788527E441 /* FIRCLSInternalReport.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 610E940BDD71169498ECD3AA2234C11A /* RCTValueAnimatedNode.m in Sources */ = {isa = PBXBuildFile; fileRef = 70A8F6F5498FFF2183DE83495A2A6750 /* 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"; }; }; - 611F973C7F5AE3FD0849C3A797420DC8 /* Optional.h in Headers */ = {isa = PBXBuildFile; fileRef = B1F5D075BFE910A7152B6F26241607C1 /* Optional.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 6138767A374766B39CCF6C2C0230EE70 /* BSGAppHangDetector.m in Sources */ = {isa = PBXBuildFile; fileRef = 7D61EC35D28B4EF1C2E3F7DB04DB7EB7 /* BSGAppHangDetector.m */; }; - 6158E244F532062055A91802715E341C /* enc_neon.c in Sources */ = {isa = PBXBuildFile; fileRef = F150D58501413FC437A7A472E236321E /* enc_neon.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; - 616D9595A59F74EEA8E43E861D352030 /* select.c in Sources */ = {isa = PBXBuildFile; fileRef = E7D0233C155796C1E13046A0A2621FFB /* select.c */; }; - 6174F6F3E3A163F2D1B0946070992168 /* FlipperClient.mm in Sources */ = {isa = PBXBuildFile; fileRef = EA3D4260045DA638F2FF39E754353EC0 /* FlipperClient.mm */; settings = {COMPILER_FLAGS = "-DDEBUG=1 -DFLIPPER_OSS=1 -DFB_SONARKIT_ENABLED=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -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"; }; }; - 618A90B3C7E52FC0DD62F1283AC35A9E /* filters_neon.c in Sources */ = {isa = PBXBuildFile; fileRef = CF6F2DB2D18A812C3A854361966399FB /* filters_neon.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; - 618E7AEF02E573C84CE04A368EAFC7F7 /* FlipperResponder.h in Headers */ = {isa = PBXBuildFile; fileRef = 81D5CF11457126BB7F19358332C49508 /* FlipperResponder.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 61903100839950E79E4F154D48535629 /* REAEventNode.h in Headers */ = {isa = PBXBuildFile; fileRef = DD57B527F7CD29DAD0193178373998AA /* REAEventNode.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 61985204CBD35AE73925533FA35342AE /* RCTPickerManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 6A49593F09314002179F647E3B3F9781 /* RCTPickerManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 619E0AA7123347A2EA0C5DBE38C599E7 /* Indestructible.h in Headers */ = {isa = PBXBuildFile; fileRef = 9353040D7264C12287CD0206AAA0DA10 /* Indestructible.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 61A3E12DFD961FCC6A9DA80F6E4FE731 /* Hardware.h in Headers */ = {isa = PBXBuildFile; fileRef = A0E7DE312BB0A7E371784C7A0DDCFEEA /* Hardware.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 61A4D183366D53341ED86D3A848C19C5 /* SDWeakProxy.h in Headers */ = {isa = PBXBuildFile; fileRef = 13C689EA90FD217368087E73B44A992F /* SDWeakProxy.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 61A5AB33E679B61B2331215BDECC6405 /* FIRCLSFile.h in Headers */ = {isa = PBXBuildFile; fileRef = AFDEB7B9A74282D9812379970531FCAB /* FIRCLSFile.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 61B194DCD91EF21781CF28D27BA9B2FB /* YGLayout+Private.h in Headers */ = {isa = PBXBuildFile; fileRef = 48703AABCD31CFFBC91011A16BF55EEC /* YGLayout+Private.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 61B28B50E03C7BE3253491D8F006D271 /* RCTClipboard.mm in Sources */ = {isa = PBXBuildFile; fileRef = 6D4488B3A6E4CE9B4FDFD87803624CEF /* 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"; }; }; - 61BD57CD51211EA0A9DB92D277E082FD /* FBLPromise+Then.h in Headers */ = {isa = PBXBuildFile; fileRef = 75ACAE008DA57AB16A0C12D15D86D5FE /* FBLPromise+Then.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 61CBD9E97EBD2B6F2F92C3C0EB28BD38 /* RSocketServiceHandler.cpp in Sources */ = {isa = PBXBuildFile; fileRef = E9379D71B955ED8CE023DC49B56E9AD4 /* RSocketServiceHandler.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -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 -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors"; }; }; - 61D13734DEF38BF8839408FEF25C758E /* SSLContext.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 8EE023928DA39891828783C169ACD22E /* SSLContext.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -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\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors"; }; }; - 61D711722811BCDE4D3B2248CBC248A3 /* RNVectorIconsManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 611AE1380C322873C05FF482BC9482F7 /* RNVectorIconsManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 61FC86BAB3F7E066FF14F7518F8CA93D /* RNFetchBlobRequest.m in Sources */ = {isa = PBXBuildFile; fileRef = 463EAB7F09AAE5365F3A56A8C90295A1 /* RNFetchBlobRequest.m */; }; - 6208B747EB7E443BDA69445E6B075A19 /* RNFetchBlobFS.h in Headers */ = {isa = PBXBuildFile; fileRef = 7BC33DE4C5189CC11594CC9726C5E670 /* RNFetchBlobFS.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 620BBD004B46D6532436B369989B8805 /* RCTInterpolationAnimatedNode.m in Sources */ = {isa = PBXBuildFile; fileRef = B1BC2E3C86586718127703C3E68A9E23 /* 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"; }; }; - 6236886412510651B07EACD678AC47E4 /* ClockGettimeWrappers.h in Headers */ = {isa = PBXBuildFile; fileRef = 2ABB4D4481DB4A0DC59ADFAA1D7E6372 /* ClockGettimeWrappers.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 6251A02DB72390A5C0ECDBAEBFD1E020 /* React-jsi-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 047F29786AB3962508FB437472C96F1A /* React-jsi-dummy.m */; }; - 6251E32809F84C0C181F83C267237A29 /* RCTRsaUtils.m in Sources */ = {isa = PBXBuildFile; fileRef = C70CAFDE76103EF6F4BE78422776CD56 /* RCTRsaUtils.m */; }; - 625C79F2F1EAB08046841844DF3BE32E /* REANodesManager.h in Headers */ = {isa = PBXBuildFile; fileRef = A8DC685D979E2B8BDE1E93424E8F30FA /* REANodesManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 62947729CE8EDE21EAD5BCFCBEB05599 /* MPMCPipeline.h in Headers */ = {isa = PBXBuildFile; fileRef = 9F78E8173F3AD7E6C2E45CB1615BC1F9 /* MPMCPipeline.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 62F2738719CBF468CDB2F05C46056AEC /* RCTSRWebSocket.h in Headers */ = {isa = PBXBuildFile; fileRef = 9B4E35C0E3E457D89A4DF2403BB432CA /* RCTSRWebSocket.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 62F571EB3D98817641F22836C9F553FF /* GULHeartbeatDateStorage.h in Headers */ = {isa = PBXBuildFile; fileRef = 7E5ED61984AC5D0734B2848B826BA9D7 /* GULHeartbeatDateStorage.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 62F98BA5412B5FB7570380992EEF3FEC /* RuntimeAdapter.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 74DB06B63902EA9FEA6180E8CEF465B4 /* RuntimeAdapter.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - 6302E3A8C9854E1DD9131E4E68736C86 /* SysMembarrier.h in Headers */ = {isa = PBXBuildFile; fileRef = 973D4FEE9B301EE619FA03B31A4F2933 /* SysMembarrier.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 630CD241C5AA42CE774C9BFA9A696616 /* http-internal.h in Headers */ = {isa = PBXBuildFile; fileRef = 964ED3AFCF1FA95EB0D582FF7DD71626 /* http-internal.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 6324CEA058C36C2AB3898277F61AF7CA /* AtomicUtil.h in Headers */ = {isa = PBXBuildFile; fileRef = 897624EA4822C72FCC452205A90DFCEE /* AtomicUtil.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 633839A081D24300E24454B213E95B79 /* vlog_is_on.h in Headers */ = {isa = PBXBuildFile; fileRef = B45474904DD6995F174BFA84F6F23090 /* vlog_is_on.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 6347D3083AA8E9A98638C444C394A08E /* FIRInstallationsIDController.m in Sources */ = {isa = PBXBuildFile; fileRef = 5ED3A731B84B5126546C42978C09FCD0 /* FIRInstallationsIDController.m */; }; - 6355F5DDE186A325C9963BBEEE4AD1F3 /* RCTMultilineTextInputViewManager.m in Sources */ = {isa = PBXBuildFile; fileRef = 44D4034EE561C21C1F6F12E807E4ABC5 /* RCTMultilineTextInputViewManager.m */; }; - 635AC8C91A50E2A66FB0174958259F49 /* Request.h in Headers */ = {isa = PBXBuildFile; fileRef = 707628E00EAB111824A6EB05D32A9831 /* Request.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 635D49C9DC370EF32ABABED4F2A82DC7 /* zh-Hans.lproj in Resources */ = {isa = PBXBuildFile; fileRef = 35B92DD54E7AC89C7BAF3A9792630E8D /* zh-Hans.lproj */; }; - 63658421DBCEA2944E16A7B1519EDDE1 /* RNForceTouchHandler.h in Headers */ = {isa = PBXBuildFile; fileRef = 209F29716FAF00EE6C3A8047B39A532A /* RNForceTouchHandler.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 63673DE21DB1F119EC1D939438DB6D92 /* Benchmarks.cpp in Sources */ = {isa = PBXBuildFile; fileRef = AF153272AA59E892E9EAFBABC890E928 /* Benchmarks.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -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 -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors"; }; }; - 63903477E986678EEF4D66961AF6E752 /* RCTActivityIndicatorView.m in Sources */ = {isa = PBXBuildFile; fileRef = 0B7EED2877664F3483849BEAA627B0CA /* RCTActivityIndicatorView.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - 6394657ACB0503D2648B5ADDE06E60D8 /* BSGConfigurationBuilder.m in Sources */ = {isa = PBXBuildFile; fileRef = 414D87E844AD74314047F1E73E041E3B /* BSGConfigurationBuilder.m */; }; - 63C76AF781A6666668509F2888403697 /* FIRHeartbeatInfo.h in Headers */ = {isa = PBXBuildFile; fileRef = 7D7EFA14CEAB378BAE4FD09AA6B5FDF1 /* FIRHeartbeatInfo.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 63C8BF6584365FE5CCAF3F31672FCB1D /* UMAppLifecycleListener.h in Headers */ = {isa = PBXBuildFile; fileRef = 0A8135C214F18C12DA255B2595E7E617 /* UMAppLifecycleListener.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 63FC4E37220FC7EE188C62CFF861FB85 /* color_cache_utils.h in Headers */ = {isa = PBXBuildFile; fileRef = 9A418F3C1CC849FB2AF5C76D1273ABA1 /* color_cache_utils.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 640B0BE977DF7D94FCD0A4F172FC7218 /* ExceptionWrapper-inl.h in Headers */ = {isa = PBXBuildFile; fileRef = FD939B493E1F5FBBC1297B44B2E9A962 /* ExceptionWrapper-inl.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 6419EA620A4327B1CA9F84D9B2B25B3F /* DelayedDestruction.h in Headers */ = {isa = PBXBuildFile; fileRef = 8628666FA737EDC5296AE41BD832DECF /* DelayedDestruction.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 641C6DE1FA2A39820F7C64E78DFCE7E2 /* SKButtonDescriptor.h in Headers */ = {isa = PBXBuildFile; fileRef = 937111731B8DBCD33C8B4E822A0195D2 /* SKButtonDescriptor.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 64292AB7F050E845946ED2FFA659A8D3 /* RCTTextTransform.h in Headers */ = {isa = PBXBuildFile; fileRef = 6471F18D06F32C511636C48B2D479CCC /* RCTTextTransform.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 6438CE3547CB26B43D1B5E98E6F3482D /* UncaughtExceptions.h in Headers */ = {isa = PBXBuildFile; fileRef = 444A46906D8E12F1A3B33616C40E9FE0 /* UncaughtExceptions.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 644033B56B8B2B6392CE033FE82002EA /* SysStat.h in Headers */ = {isa = PBXBuildFile; fileRef = 876DB1F6D29925E73C087F2C3AB36795 /* SysStat.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 64528F0D2C0894F24DE6341F006E9940 /* RCTSettingsPlugins.mm in Sources */ = {isa = PBXBuildFile; fileRef = 697AD1D3EC759E22877C4FDBCFCF6816 /* 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"; }; }; - 645C8C3EFE78BB2D84881B0B1BEDCA25 /* GULNetwork.h in Headers */ = {isa = PBXBuildFile; fileRef = 85BCB73B53578F6422484F9D3075B556 /* GULNetwork.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 6462F738AC590747E44531D71D470C07 /* rescaler_sse2.c in Sources */ = {isa = PBXBuildFile; fileRef = AE6427E508F8E6A55971C77A7E65FEB1 /* rescaler_sse2.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; - 647B2902910277BA44ECE069B54E33FE /* TOActivityCroppedImageProvider.m in Sources */ = {isa = PBXBuildFile; fileRef = 4B0DA798E2D2355D319142E0A3A2AD19 /* TOActivityCroppedImageProvider.m */; }; - 64A433BECEAE8EE4C0B1E351C2245446 /* FIRInstallationsStoredItem.h in Headers */ = {isa = PBXBuildFile; fileRef = 9141094EE1ED49F64CDFCC8C60B96156 /* FIRInstallationsStoredItem.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 64CDDA9192CD46BF2A1A5AF02853D51C /* FIRCLSSignal.h in Headers */ = {isa = PBXBuildFile; fileRef = 7141B2FD3EAB6D6D1972EF3F045B9845 /* FIRCLSSignal.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 64D2C67E4B3C2F6F3554DA3FD77388CA /* FlipperCppBridgingResponder.h in Headers */ = {isa = PBXBuildFile; fileRef = AC9BB0D68164184A242BC72EFA1AC562 /* FlipperCppBridgingResponder.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 64DC11C71A29CB9CEB58B881C2571975 /* REATransitionValues.h in Headers */ = {isa = PBXBuildFile; fileRef = F0A55BFC31DE0F8623420BCCFBAA7569 /* REATransitionValues.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 64DDB2096FCEB4BA4C16FAAE035409C8 /* RNCSlider.h in Headers */ = {isa = PBXBuildFile; fileRef = A4A5845B88A33EFDB6AAE2D6706453D8 /* RNCSlider.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 64F562359BABBDFA268CDA6D272F0AE9 /* Conv.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 0B922E44971B3921CDD009FE8B22C4CF /* Conv.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -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\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors"; }; }; - 6501794A2DCC86BF8CAD68E8F519C9C0 /* F14Defaults.h in Headers */ = {isa = PBXBuildFile; fileRef = 29BB2342D6548FB4328A430E838AF6D1 /* F14Defaults.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 6513CBA48EFFD461EFC05067DC66C081 /* ARTLinearGradient.h in Headers */ = {isa = PBXBuildFile; fileRef = 29B811FAE251A530D910EA08052ED41D /* ARTLinearGradient.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 651674CBC6C7A91D1FFC3C055BE72179 /* SSLOptions.h in Headers */ = {isa = PBXBuildFile; fileRef = C91950A7DFC8996A18ADDFAB2C6DD073 /* SSLOptions.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 651B1E070356E2EF27D6FFD2B836573B /* RNFBAnalyticsModule.h in Headers */ = {isa = PBXBuildFile; fileRef = 2071AD3F0AFE230C3414C7848E15AE62 /* RNFBAnalyticsModule.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 652535943BB13DDE845A40783352BB92 /* SKNodeDescriptor.h in Headers */ = {isa = PBXBuildFile; fileRef = FB1CD31848D10613306C97D58F26A6AC /* SKNodeDescriptor.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 653459802284CE6651EC63E4FE53574D /* RNSScreenStack.h in Headers */ = {isa = PBXBuildFile; fileRef = A157D526C4A9B116FFA877831071C982 /* RNSScreenStack.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 6568AE628DD401BDCBE61AF646E45D2B /* FBString.h in Headers */ = {isa = PBXBuildFile; fileRef = 8F6A790A04657521BE6AAFBD73CE25EC /* FBString.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 656DE1A2781A099BCF527AE265AC9E87 /* TestSubscriber.h in Headers */ = {isa = PBXBuildFile; fileRef = EDBCFDE5CEA3ACBEA4B2452C2223DD05 /* TestSubscriber.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 658D96DA70C0C5BE84045B487F632D55 /* EventBaseLocal.h in Headers */ = {isa = PBXBuildFile; fileRef = 2BA78A360616F5D78A8FC1A42DB78ED7 /* EventBaseLocal.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 65A6C5944DBF78D1CB3D02CB39F3B9A4 /* Singleton.cpp in Sources */ = {isa = PBXBuildFile; fileRef = A9AC8519E29D55ED91FE0970464B8F9D /* Singleton.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -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\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors"; }; }; - 65AD94D38D856A41614DFA5415ADC2B8 /* RCTVibrationPlugins.mm in Sources */ = {isa = PBXBuildFile; fileRef = E62A1F105A07C4476D9363A56E5BBAA8 /* 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"; }; }; - 65BB9259C00547753692FEC9237D26A8 /* PriorityLifoSemMPMCQueue.h in Headers */ = {isa = PBXBuildFile; fileRef = 64EC894656BBCA746633441C44840EB0 /* PriorityLifoSemMPMCQueue.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 65BB939302DE362B80705E458570E2A7 /* HazptrThrLocal.h in Headers */ = {isa = PBXBuildFile; fileRef = C4C3CFCA8CF7497E1AF0C2007F1378E0 /* HazptrThrLocal.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 65C0148ACE376DDC06D427B338BC7650 /* RCTModalHostViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = DBC5AB500EC382238A41629F473B0C66 /* RCTModalHostViewController.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - 65C74D2584D6797A3E0D97AF23CAA48B /* FBLPromise+Delay.m in Sources */ = {isa = PBXBuildFile; fileRef = 1A749AD6FFFE36A24DFDAD2619EB68F7 /* FBLPromise+Delay.m */; }; - 65DD5D1631553E1E96874C8EE0D84395 /* AtomicHashArray-inl.h in Headers */ = {isa = PBXBuildFile; fileRef = B024CE0A8658C173B1A92EAEF273CA05 /* AtomicHashArray-inl.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 65DDAAA470834D29BA1275BC6B046830 /* FIRCLSInternalLogging.h in Headers */ = {isa = PBXBuildFile; fileRef = B001EE8C196C9E10035286FE7EE84032 /* FIRCLSInternalLogging.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 65E113916A6D73B2D25154BA86ED7ABD /* RCTShadowView.h in Headers */ = {isa = PBXBuildFile; fileRef = 507D17D398B3DB183218F5B94245D41A /* RCTShadowView.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 65E9FF4CA5F9EED15A6209842F87864F /* RCTRawTextViewManager.m in Sources */ = {isa = PBXBuildFile; fileRef = BACE883A39343A35E0D7C43689B9A13E /* RCTRawTextViewManager.m */; }; - 65EC54AD1DDB7484A796D13D3349B2FF /* MMKVLog.cpp in Sources */ = {isa = PBXBuildFile; fileRef = F8D2E7E327EF00F423CF3CB0003837EE /* MMKVLog.cpp */; settings = {COMPILER_FLAGS = "-x objective-c++"; }; }; - 66055437E69E3F37EA297BB224C19206 /* ScheduledSubscription.h in Headers */ = {isa = PBXBuildFile; fileRef = DB5DD268804BED7D139485C26E2CEB48 /* ScheduledSubscription.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 662F27E366728074F54CAFDEAA1CAC57 /* UMReactLogHandler.m in Sources */ = {isa = PBXBuildFile; fileRef = DFF170F26E49AF34B2AED8CAC632BA14 /* UMReactLogHandler.m */; }; - 663E76306372562B3B9FB297D1B691A6 /* FIRCLSProcessReportOperation.m in Sources */ = {isa = PBXBuildFile; fileRef = 220D75BBF7829017349A979BCB734ED4 /* FIRCLSProcessReportOperation.m */; }; - 665DEE4108939A764454440EDB8FFF85 /* RNCConnectionStateWatcher.m in Sources */ = {isa = PBXBuildFile; fileRef = F96EAFECE7254CF38639FE8E3ECF86BF /* RNCConnectionStateWatcher.m */; }; - 6666AAD9AB8B935BD8BDFEB40203DD6F /* json_pointer.h in Headers */ = {isa = PBXBuildFile; fileRef = 5BC13F39AC5C4806FD4BEED0207D40BA /* json_pointer.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 66698945FC4D14442C3E342CD678DF93 /* BSG_KSJSONCodecObjC.m in Sources */ = {isa = PBXBuildFile; fileRef = E9C9B3A573476303618E7B4B8707A48D /* BSG_KSJSONCodecObjC.m */; }; - 6673DDF5345DE77DB170780DBD0DB924 /* MPMCQueue.h in Headers */ = {isa = PBXBuildFile; fileRef = F350699D1059C8E80FBC4C4DF05A2B0E /* MPMCQueue.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 667682D83524A8EF4189EF4D71A4980B /* RCTConvert+FIRApp.m in Sources */ = {isa = PBXBuildFile; fileRef = C38A463A289BDC39E11BEFD5870CA52C /* RCTConvert+FIRApp.m */; }; - 667D90AB55A64D2CD23330A89227CA31 /* PBUtility.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 3B8270C83DA3FCB589B40A874C110126 /* PBUtility.cpp */; settings = {COMPILER_FLAGS = "-x objective-c++"; }; }; - 6680CD80FDFCE26A84446A5540610C29 /* CodedInputDataCrypt_OSX.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 55D8C288D400FF1755F9015056E5E34A /* CodedInputDataCrypt_OSX.cpp */; settings = {COMPILER_FLAGS = "-x objective-c++ -fno-objc-arc"; }; }; - 66838508E25D2A74B65A800C2E2550BE /* AtomicSharedPtr.h in Headers */ = {isa = PBXBuildFile; fileRef = 0B55A127DD622501C234A7CAB8F25911 /* AtomicSharedPtr.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 66850B455CF11F763B39531A79717335 /* String.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 1969D4A64C9DBF508235F802293B8EBD /* 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"; }; }; - 668839311B0563511CDFFCC224FAA9A4 /* Yoga-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 78D86B2A9ECB46E74E8330B64B2E55F9 /* Yoga-dummy.m */; }; - 668A490D69CB85D2AFC31BFCACAAD08D /* vi.lproj in Resources */ = {isa = PBXBuildFile; fileRef = 725581291AB34A22FDD48D80C8380B6A /* vi.lproj */; }; - 668A6606B9BE4082AAE3945FD8B2B2DC /* ConcurrentSkipList-inl.h in Headers */ = {isa = PBXBuildFile; fileRef = 216BEC9C3E14F94116B4559C40897AF2 /* ConcurrentSkipList-inl.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 6698BD3FA72C69E840C846E0AA571CDD /* stl_logging.h in Headers */ = {isa = PBXBuildFile; fileRef = 16C56A67498F67A0A0D04C27463CCFCB /* stl_logging.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 66A76620260AF301301987428CB47476 /* BugsnagNotifier.h in Headers */ = {isa = PBXBuildFile; fileRef = F20E738D3A69438E1C122F9A0597DA9A /* BugsnagNotifier.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 66BCBD15AB1E7055EF4307A53937A2E1 /* FIRAEvent.h in Headers */ = {isa = PBXBuildFile; fileRef = 5344EE5042D2982D98BB85F45FACA5BB /* FIRAEvent.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 66C800A732BB3C65E5F12F4933B66993 /* YGEnums.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 8431F6CE5B1B0F548F4F3EB21BC2AE40 /* YGEnums.cpp */; settings = {COMPILER_FLAGS = "-fno-omit-frame-pointer -fexceptions -Wall -Werror -std=c++1y -fPIC -fno-objc-arc"; }; }; - 66CE684CFE1E3A9D776867C8DB343E9C /* RCTBlobCollector.mm in Sources */ = {isa = PBXBuildFile; fileRef = 5C9B552556AD3AC3AC9A1FF4D59CECE1 /* 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"; }; }; - 66EC00C3BA308273BCE7E2C4D52616D2 /* RNCConnectionStateWatcher.h in Headers */ = {isa = PBXBuildFile; fileRef = 66B424E1E337CAC9AA470426F174F470 /* RNCConnectionStateWatcher.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 66EC088D09885CACB63A0B1996A7CF99 /* EDFThreadPoolExecutor.h in Headers */ = {isa = PBXBuildFile; fileRef = AF1AA0233F4B030FCA8C522FDDCED681 /* EDFThreadPoolExecutor.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 66F17155BB74D1A25B7BAD95B0912164 /* FBLPromise+Delay.h in Headers */ = {isa = PBXBuildFile; fileRef = 7C4E364F9508DC861238EE4AB7F3EEE1 /* FBLPromise+Delay.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 673A3C624095CA07ADFDC209BD9482E8 /* SysUio.h in Headers */ = {isa = PBXBuildFile; fileRef = 9BF2FD70B586966F632DE0F4C3452BC4 /* SysUio.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 673D16F24EC51395DA2AF82A3B2AA8A4 /* idec_dec.c in Sources */ = {isa = PBXBuildFile; fileRef = 684772E1C17950688E2D02F4D586194B /* idec_dec.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; - 674273BFACDBC6F2371AFB9E1182AA93 /* LongLivedObject.h in Headers */ = {isa = PBXBuildFile; fileRef = FB13979D42C83C133B136F38E22E8680 /* LongLivedObject.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 6747A3599A7AADEF987461560A86E34D /* react-native-mmkv-storage-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 1FDBA1499FAC5D38003778610D1DFAC8 /* react-native-mmkv-storage-dummy.m */; }; - 676492E9DD248E0948A9709BA125FB98 /* FIRCLSCompoundOperation.h in Headers */ = {isa = PBXBuildFile; fileRef = 38F5C29B8BABB356CD6F46011DAFE915 /* FIRCLSCompoundOperation.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 676BE96EA626EE4D9F24B503B3F59F55 /* QBAssetCell.m in Sources */ = {isa = PBXBuildFile; fileRef = 5E798A9318B82BB207DAEBB2D6604A9E /* QBAssetCell.m */; }; - 679047F1F7EB04FD1C9F3BEF43D34E17 /* GFlags.h in Headers */ = {isa = PBXBuildFile; fileRef = 8EBC48E874B62E68701ECFA4FB7CA363 /* GFlags.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 67913F0B299F0D20A8574EDFBF77D63B /* IOExecutor.h in Headers */ = {isa = PBXBuildFile; fileRef = A4A32A4AC472CF79969A87EDAEC04E29 /* IOExecutor.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 67E0BFE732F3DD432118F7EFAE59071C /* RCTKeyCommandConstants.m in Sources */ = {isa = PBXBuildFile; fileRef = 583CAA829AE25EB98694B65A874253F7 /* RCTKeyCommandConstants.m */; }; - 6811D0C627954C82912E0B0FBCD71ED2 /* FrameTransportImpl.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 8E6307960B1F6D0785F439482293F689 /* FrameTransportImpl.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -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 -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors"; }; }; - 68247A1214CCFBDCE83A58A5350FC820 /* SingletonStackTrace.h in Headers */ = {isa = PBXBuildFile; fileRef = 5DEC62479ED4703A3493A030B50AC9AE /* SingletonStackTrace.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 6886805185073E12B2F1C583458CF34D /* ReactMarker.h in Headers */ = {isa = PBXBuildFile; fileRef = 5C4DE2956E605D7F293176107A826EBA /* ReactMarker.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 6899B4222602B51E16B6BC444C70BDE9 /* Rcu-inl.h in Headers */ = {isa = PBXBuildFile; fileRef = 83A36CA920B64E06B7FE6550C363A78E /* Rcu-inl.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 689A03B1331EB2ECAEF60397C3C14027 /* RCTImagePlugins.mm in Sources */ = {isa = PBXBuildFile; fileRef = E3FBC406B7914F6D0D0800690D849E54 /* 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"; }; }; - 689D00BB474B03A13DDA26DF254ABF39 /* Iterators.h in Headers */ = {isa = PBXBuildFile; fileRef = F6DAA1715ADF9A5DE86C19321C5B86A2 /* Iterators.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 68D246EA7FA9E1083F1E404E4C4A3970 /* FIRCLSNetworkResponseHandler.h in Headers */ = {isa = PBXBuildFile; fileRef = 4393B1186FA44A018BBFA28C519A8C4A /* FIRCLSNetworkResponseHandler.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 68D5D6DE29118FE09F709E43DAC3E138 /* RCTBaseTextInputViewManager.m in Sources */ = {isa = PBXBuildFile; fileRef = 8F5705395441466192BD91D1B715A784 /* RCTBaseTextInputViewManager.m */; }; - 68F2B4B67DA6803F21510623B2AAD127 /* RCTUIManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 781C339E09C3A84606F79E7D18E333E6 /* RCTUIManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 690510EF924CBB9EB1F3739DC422D3D2 /* ARTPattern.h in Headers */ = {isa = PBXBuildFile; fileRef = EE003B14F3BDD73E4063997EC4E2607F /* ARTPattern.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 690A6A6992A39B73203B2871070678E2 /* RNCNetInfo.m in Sources */ = {isa = PBXBuildFile; fileRef = CFE777E168A9AFBF074D469F9EFF7C47 /* RNCNetInfo.m */; }; - 69357FB22F7AA63DE7A488CB1AA950FA /* BugsnagPluginClient.m in Sources */ = {isa = PBXBuildFile; fileRef = C7D2C8A889B69DBFF16BE95AB81BB04C /* BugsnagPluginClient.m */; }; - 694EC39CF5027061C2DBA2242F788C81 /* SDWebImageDefine.m in Sources */ = {isa = PBXBuildFile; fileRef = 05292F4C9A6B2D46210E32F7F6BBAE86 /* SDWebImageDefine.m */; }; - 6972EE81FA37E8317A730ADE9136D406 /* RNFBCrashlyticsModule.m in Sources */ = {isa = PBXBuildFile; fileRef = AD664037CDFA6CCEDAAA356ABF4A0B56 /* RNFBCrashlyticsModule.m */; }; - 697560C208A7E78115A5D95D204BE0B9 /* Utility.h in Headers */ = {isa = PBXBuildFile; fileRef = 761205744C0A0C3ECE16EE27DD734BFD /* Utility.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 69827671C869E0C6BDDEE5BB0058D2F1 /* MMKVHandler.h in Headers */ = {isa = PBXBuildFile; fileRef = F664652BB858F525BA3D936AEB2F1E1B /* MMKVHandler.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 699B52AA6BA53B58E1B33843917C01C2 /* ThreadName.h in Headers */ = {isa = PBXBuildFile; fileRef = 4E04F05AACD8047089A85B4474584ADE /* ThreadName.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 69C7BE94793C6FDF6F1C67B14956F741 /* SwappableEventBase.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 43D561D4EA27F9FF3B798E950D15E161 /* SwappableEventBase.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -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 -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors"; }; }; - 69FC648BAC90824D3423DCFC56C2FEEC /* InspectorInterfaces.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 3C0E6135E6AF4241D0A7A7B3239C76BD /* InspectorInterfaces.cpp */; }; - 69FE42AC5122E56178A4CA34C9743273 /* RSocket.h in Headers */ = {isa = PBXBuildFile; fileRef = 004B54212A40E4C7916C9EE6DDD93C63 /* RSocket.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 6A039FF84F6CD8D55484C034F66B007D /* SDDisplayLink.h in Headers */ = {isa = PBXBuildFile; fileRef = E9E08C14A6995E6EB264EB5847FC74CC /* SDDisplayLink.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 6A1D8AACE5AC26F3AC7B09CF608BD6D7 /* log.h in Headers */ = {isa = PBXBuildFile; fileRef = 3FA35B251233E0CD2A62A22DE7413B9E /* log.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 6A1F7261235C2DD375F9E7FE4EF2F98F /* JSCRuntime.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 100FF3BEA5FECADD67AD149C0ECC3CB4 /* JSCRuntime.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - 6A5D8B5248F2C089BA82FFBE4FFE9910 /* RCTSurfaceView+Internal.h in Headers */ = {isa = PBXBuildFile; fileRef = EA44814345FD3334AE3676B7C6390179 /* RCTSurfaceView+Internal.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 6A6BC7C740587DDFC30448AFC965AD5D /* alpha_processing_mips_dsp_r2.c in Sources */ = {isa = PBXBuildFile; fileRef = D24C2A558A4C2CF8CAD1BE5E4935C980 /* alpha_processing_mips_dsp_r2.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; - 6A7FE58131360F95F295FF2B3FE793EC /* FIRCLSReportAdapter_Private.h in Headers */ = {isa = PBXBuildFile; fileRef = 1E1007F4054FC430ED1A198952B47D69 /* FIRCLSReportAdapter_Private.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 6A8165E3426549D612357585B6D337D0 /* signalhandler.cc in Sources */ = {isa = PBXBuildFile; fileRef = 16A223CEA878D93518E9E43F6E112732 /* signalhandler.cc */; settings = {COMPILER_FLAGS = "-Wno-shorten-64-to-32"; }; }; - 6AAC5DB5BE77AA22690EA241A578EF35 /* Windows.h in Headers */ = {isa = PBXBuildFile; fileRef = 36E4866295DA29143E64F3AADB213048 /* Windows.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 6AD7DAA8CF490793B3134CD081131277 /* de.lproj in Resources */ = {isa = PBXBuildFile; fileRef = B09923908C0ED67A7B5131B7BB580CEE /* de.lproj */; }; - 6AFD9A72E1934955857F6D5E8A63C6C7 /* EvictingCacheMap.h in Headers */ = {isa = PBXBuildFile; fileRef = 389CFC3E4D576AC52BDAAC552137FFF1 /* EvictingCacheMap.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 6B1A5FE6CBE29C4CDAB495164C349C83 /* TLSDefinitions.h in Headers */ = {isa = PBXBuildFile; fileRef = 8EB6966C2F4A349FF86C237F57F846FA /* TLSDefinitions.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 6B253D1E348E022DBC796B0D05ACEEE8 /* ThreadId.h in Headers */ = {isa = PBXBuildFile; fileRef = 760D8A6ADF87C5E2101909974CE1C931 /* ThreadId.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 6B3E6EA5D791F205EA3D76CD13C1D706 /* openssl_aes-armv4.S in Sources */ = {isa = PBXBuildFile; fileRef = 7EA857DA8A2209FA98D02BE1E40ADEC8 /* openssl_aes-armv4.S */; }; - 6B44DC3251C1E6AB1A5A258E5D9518BA /* EventBaseManager.cpp in Sources */ = {isa = PBXBuildFile; fileRef = B12663CABBD318E5F233935D392A54B0 /* EventBaseManager.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -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\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors"; }; }; - 6B55B4D2D6C4FA9879371F32CDDCFF88 /* DynamicBoundedQueue.h in Headers */ = {isa = PBXBuildFile; fileRef = 9D45DA6845E2F96A779737D9DF9A488F /* DynamicBoundedQueue.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 6B5A31480789AC447C5D5AB82535FC71 /* RCTConvert+FIROptions.m in Sources */ = {isa = PBXBuildFile; fileRef = 003CEEB7A99455C56D1CC82459FFC621 /* RCTConvert+FIROptions.m */; }; - 6B5E337646B5C75DFA036C6BF3E7802C /* Cursor.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 1AFBC8012C03C0758C3004F0FFCDDE3B /* Cursor.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -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\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors"; }; }; - 6B62D86C0B32288E0B4C91EDAC0E08BD /* HazptrThreadPoolExecutor.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 7230FD2897AE4D58AEFEA90FAF377284 /* HazptrThreadPoolExecutor.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -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\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors"; }; }; - 6B69D4008B61299672F88009F247EE21 /* RCTSwitch.h in Headers */ = {isa = PBXBuildFile; fileRef = DA75C6D163FC79F2CB585CA01FA60FE5 /* RCTSwitch.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 6B6C023AC6244017CF6B5114D1BDEF60 /* RNCookieManagerIOS.h in Headers */ = {isa = PBXBuildFile; fileRef = 8443DF482A4A09A72E9EE2EF68264AA6 /* RNCookieManagerIOS.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 6BA48DB67AB9CA5A4192C9D3C9C26AFC /* RequestResponseThroughputTcp.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 3F3B13C8319674F7011E2EC4ECF09EA6 /* RequestResponseThroughputTcp.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -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 -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors"; }; }; - 6BAFB26E5D55CD25EFC7642EDF1928A1 /* RCTUITextView.m in Sources */ = {isa = PBXBuildFile; fileRef = 0B74A30016078BE56D8EE4ADF85FB7C6 /* RCTUITextView.m */; }; - 6BB921326F75036C1DAF8B9CCA9A4DDC /* UMNativeModulesProxy.h in Headers */ = {isa = PBXBuildFile; fileRef = 3D05B428018345AF3E7B23DCC82F3F59 /* UMNativeModulesProxy.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 6BCB044CC249C1016C650C7BFD223F52 /* WaitOptions.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 6FC51C20FB20896CA9591C38F77525E7 /* 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"; }; }; - 6BDB83456597137959DAB8620D7E4403 /* BugsnagEvent.h in Headers */ = {isa = PBXBuildFile; fileRef = D59570E752E35C2A399AE364FF6C7326 /* BugsnagEvent.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 6BDCE2AFBD3084C1B1071F967DB9AFB3 /* SwappableEventBase.h in Headers */ = {isa = PBXBuildFile; fileRef = 7036E8E663E35BB5DB6C32198B066FE6 /* SwappableEventBase.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 6BFDE04BEC481A56186541540895AEBB /* SKStateUpdateCPPWrapper.mm in Sources */ = {isa = PBXBuildFile; fileRef = CD9E7EF418A1E7DC076C5815A0AC9131 /* SKStateUpdateCPPWrapper.mm */; settings = {COMPILER_FLAGS = "-DDEBUG=1 -DFLIPPER_OSS=1 -DFB_SONARKIT_ENABLED=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -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"; }; }; - 6C0797F3576DA1417BDC75D89B6BCEFD /* SDImageGraphics.m in Sources */ = {isa = PBXBuildFile; fileRef = A1877D4F4969CD370E0D2105E0DBF43E /* SDImageGraphics.m */; }; - 6C07DD3F535691C84DFDF5413E3FC550 /* MMKV_OSX.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 162726B5507F0F382038F5353E150133 /* MMKV_OSX.cpp */; settings = {COMPILER_FLAGS = "-x objective-c++ -fno-objc-arc"; }; }; - 6C0CCE36F8E4912DFEFE54ADFB7B1107 /* RNCSafeAreaProviderManager.m in Sources */ = {isa = PBXBuildFile; fileRef = F12F35269850391E9FAF0153A7CE2C48 /* RNCSafeAreaProviderManager.m */; }; - 6C0F526A67E8BE75D66EC3B19CDA2916 /* UIView+SKInvalidation.mm in Sources */ = {isa = PBXBuildFile; fileRef = 7656B7BFE45650CC91E9A7D6BC46B62C /* UIView+SKInvalidation.mm */; settings = {COMPILER_FLAGS = "-DDEBUG=1 -DFLIPPER_OSS=1 -DFB_SONARKIT_ENABLED=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -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"; }; }; - 6C23F08FC3706DE1C3C6378605625257 /* Portability.h in Headers */ = {isa = PBXBuildFile; fileRef = E4840827025F06AA40F6ECA03F460647 /* Portability.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 6C2702E9C2559DF25271C677EFD299F5 /* BSGNotificationBreadcrumbs.h in Headers */ = {isa = PBXBuildFile; fileRef = CCB97095D881D3E0D5625AFC68D06EA2 /* BSGNotificationBreadcrumbs.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 6C5CA627C6773917F08E39A4CD4BA162 /* DistributedMutex-inl.h in Headers */ = {isa = PBXBuildFile; fileRef = FA0A3AAE1D9214E3A5BF27D002C29A5E /* DistributedMutex-inl.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 6C72993BF92D000A3B4A2E293C217D52 /* BugsnagSessionTrackingPayload.m in Sources */ = {isa = PBXBuildFile; fileRef = 4E3D0BB48FDDCBE29E682D48D2261735 /* BugsnagSessionTrackingPayload.m */; }; - 6C7D2A35CA85C3F5E6003C1A7BD3A13E /* HHWheelTimer.h in Headers */ = {isa = PBXBuildFile; fileRef = A9B044D3E141763E51736E7D14D52B9F /* HHWheelTimer.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 6CAEBFCA4126D6A6EDCEA9C7F27D9300 /* fixed-dtoa.h in Headers */ = {isa = PBXBuildFile; fileRef = 978BA8A0B9691E1FD6D7C40F23C87A4E /* fixed-dtoa.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 6CB56BCBFBCF14734411CAB9B93ABCF7 /* ieee.h in Headers */ = {isa = PBXBuildFile; fileRef = EA12FAEFE8EE553CC6DEF4727ED0D5FD /* ieee.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 6CBDD8B277C6EAD6FE2FE166EE895F14 /* bignum-dtoa.cc in Sources */ = {isa = PBXBuildFile; fileRef = 280005C2D697F4B8EE5FA8D2A16214F8 /* bignum-dtoa.cc */; settings = {COMPILER_FLAGS = "-Wno-unreachable-code"; }; }; - 6CCDCDE388B9F1EEFC52F8C273143825 /* Syslog.h in Headers */ = {isa = PBXBuildFile; fileRef = 5B1A3A030C5391095F45FBDA62640A67 /* Syslog.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 6CF49AE7B6C309BE2662A69E723097BC /* Hmac.m in Sources */ = {isa = PBXBuildFile; fileRef = FF9C3D5930CF0F4DF3E43D8EC1FD1858 /* Hmac.m */; }; - 6D02A809D77869DFDF2443FA9A088610 /* SDWebImageDownloaderRequestModifier.h in Headers */ = {isa = PBXBuildFile; fileRef = B876C23C439C3C7CCABB78AE23C0A80D /* SDWebImageDownloaderRequestModifier.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 6D22D1AD550585E38EE88565B9B3BF11 /* EventBaseLocal.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 62211D510BC0A02100BC630FA71A248E /* EventBaseLocal.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -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\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors"; }; }; - 6D256E9CCE5CBB06F9901AA759E569D5 /* FIRCLSInstallIdentifierModel.m in Sources */ = {isa = PBXBuildFile; fileRef = 4EED55B8EA691269ACB175FDEF3A7FC1 /* FIRCLSInstallIdentifierModel.m */; }; - 6D30282648F1A14F609AF954AA50D51C /* GULReachabilityChecker.h in Headers */ = {isa = PBXBuildFile; fileRef = D6E2DBCF4B67D998B4EB021A9E07EAC8 /* GULReachabilityChecker.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 6D3CF28C73BB41714C44DDDE94CFFC44 /* BSGConfigurationBuilder.h in Headers */ = {isa = PBXBuildFile; fileRef = AE894CCD5487DD70504F6EFA69532ADF /* BSGConfigurationBuilder.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 6D3EF4948D919B5B149404B2F11CED5E /* ReadMostlySharedPtr.h in Headers */ = {isa = PBXBuildFile; fileRef = EE1A20F80817C3502570E241C4933149 /* ReadMostlySharedPtr.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 6D4221604A646F7E15D58162641C7719 /* RNBridgeModule.m in Sources */ = {isa = PBXBuildFile; fileRef = E649690720DE207C55AEC9762403EB41 /* RNBridgeModule.m */; }; - 6D46F592A9CE37438A8A7E2AAE723102 /* SKDescriptorMapper.h in Headers */ = {isa = PBXBuildFile; fileRef = 7A2EDFBE8E6EBC1A2691133E5F859A12 /* SKDescriptorMapper.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 6D4A26D55E85DEC9A4AACDECE47C81D8 /* QueuedImmediateExecutor.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 2FB05ECB092D5342169D9D9695DF77D5 /* 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"; }; }; - 6D4DA454B5C96B4A5E1C91327F02E316 /* FIRDiagnosticsData.h in Headers */ = {isa = PBXBuildFile; fileRef = 0AEA0EB941EDBAE9DCC795D9615CD443 /* FIRDiagnosticsData.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 6D62CF3B1271710DDDF00C71219BE253 /* GULMutableDictionary.h in Headers */ = {isa = PBXBuildFile; fileRef = 3AC7AC6810C2996CF21B58F57C3F54A4 /* GULMutableDictionary.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 6D65DABCE3BA9864F29473D0B6975BD0 /* UMViewManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 8A53EC9FB8607A9EC1BD5F88AE6F883E /* UMViewManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 6D6839659D9FF6E53BE79D2C7890ED90 /* ManualExecutor.h in Headers */ = {isa = PBXBuildFile; fileRef = 618086732FB8BEF7EB0994CD5B8498CD /* ManualExecutor.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 6D9755259A707C938C2CC4638386369E /* MapUtil.h in Headers */ = {isa = PBXBuildFile; fileRef = 285AC2398EBE625A8D9A4F1277BBAADE /* MapUtil.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 6D97796F1B12FDA9067E22A9FB927C1B /* RNPushKitEventListener.h in Headers */ = {isa = PBXBuildFile; fileRef = 6057631DB1CAF97943B1AA60672D95C2 /* RNPushKitEventListener.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 6DA84A603D543734E965829C73DA57EE /* RCTConvert+Text.h in Headers */ = {isa = PBXBuildFile; fileRef = 99B7A76C5FDAC071619973B54DEF69DE /* RCTConvert+Text.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 6DAC0A5F611F20734DCBF0D37C24D85C /* RCTCxxConvert.m in Sources */ = {isa = PBXBuildFile; fileRef = 9DBBB127A1D2B1415678647D1AF3E00C /* RCTCxxConvert.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - 6DD6E2BDA043C5ED618E8F663927D0A4 /* RCTPickerManager.m in Sources */ = {isa = PBXBuildFile; fileRef = 2877506D87948E011C9FBF18BDAB9E75 /* RCTPickerManager.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - 6E137A29CD533B6DC7CAFF9AE0CC87F6 /* StreamFragmentAccumulator.h in Headers */ = {isa = PBXBuildFile; fileRef = 0BF02578CD55A4686096FD853394854D /* StreamFragmentAccumulator.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 6E2DEC0CF72D4CCEEA35E88BA4746941 /* Aligned.h in Headers */ = {isa = PBXBuildFile; fileRef = 58B8205D88F6BC2164C9E39D657287A0 /* Aligned.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 6E3875895687D5E24DAEB1F699A93853 /* HHWheelTimer.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 156FA2E86BCB36706E2E70639A7A49EE /* HHWheelTimer.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -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\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors"; }; }; - 6E3A38C95DA5C2389A7AC4E99D7F7A29 /* MallocImpl.cpp in Sources */ = {isa = PBXBuildFile; fileRef = DD55A550A260F6C74B624318596B279D /* 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"; }; }; - 6E4370E000F3BCE9094F9EC550AFCE42 /* zh-Hant.lproj in Resources */ = {isa = PBXBuildFile; fileRef = A890CCB8BF008676AE761ACA4F9AA0B0 /* zh-Hant.lproj */; }; - 6E54B68FE612B2BA5D50122DDD6B2B06 /* RCTAnimationPlugins.h in Headers */ = {isa = PBXBuildFile; fileRef = 1C88629AF7D9C7E7E38F3E17677FC2DC /* RCTAnimationPlugins.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 6E663C0E9CDDACF0984A08465FBDD414 /* FIRCLSCompoundOperation.m in Sources */ = {isa = PBXBuildFile; fileRef = 1DFF3208242ED749C395BE3D2E37E627 /* FIRCLSCompoundOperation.m */; }; - 6E6CA7E11C46C66BB11D936B24282382 /* RNRandomBytes.h in Headers */ = {isa = PBXBuildFile; fileRef = 0ABF1EC3358A7E3827364D165457E312 /* RNRandomBytes.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 6E911793C10323798EA7F34E06F3354E /* FFFastImageView.m in Sources */ = {isa = PBXBuildFile; fileRef = AF14A4D82AF1821431DB8664A697F559 /* FFFastImageView.m */; }; - 6E947B625270EA7AB41F6E216A5009A4 /* RCTInputAccessoryShadowView.h in Headers */ = {isa = PBXBuildFile; fileRef = E62636EB54EBAC8FFAAD4C44CF3B71D7 /* RCTInputAccessoryShadowView.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 6E9781A4E5428881254790D7AD977110 /* GULAppEnvironmentUtil.h in Headers */ = {isa = PBXBuildFile; fileRef = F4894891D2683756B59E4356267E11C3 /* GULAppEnvironmentUtil.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 6E9F108D7D1F600FA41DD8FD7B34E427 /* ResumeIdentificationToken.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 11E5B920D013929A3A29D9659EF6473D /* ResumeIdentificationToken.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -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 -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors"; }; }; - 6EB0D63BA7071E402F4BA0E892B08BFC /* REABlockNode.m in Sources */ = {isa = PBXBuildFile; fileRef = 51932962389B22CF23FD8BB7939CDE28 /* REABlockNode.m */; }; - 6EB17A2C35F93B589374CC71B641941A /* alpha_processing.c in Sources */ = {isa = PBXBuildFile; fileRef = DD97A2E781B1133BD6C71C1544A56098 /* alpha_processing.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; - 6EB3C6157C944D0F14B7CDB932F34940 /* Baton.h in Headers */ = {isa = PBXBuildFile; fileRef = C7B7B89B9C2CBFE2FA20597CAE914577 /* Baton.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 6EBC739B30CA8FAD48C3951AFCCA66B6 /* FIRCoreDiagnostics.m in Sources */ = {isa = PBXBuildFile; fileRef = 99CDE89A9ABDA7BAFFE28A851DB55DB9 /* FIRCoreDiagnostics.m */; }; - 6ECBF5784368998C907A12EEC0B0C73A /* RNCSafeAreaProvider.h in Headers */ = {isa = PBXBuildFile; fileRef = 78947469984D2FD1BB8948C883C719B0 /* RNCSafeAreaProvider.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 6ECC16AACFB6BC5FF0B7EFE9C278BB62 /* ProxyLockable.h in Headers */ = {isa = PBXBuildFile; fileRef = A7E4D3C5DD7542CA12F52F8F049EA1A4 /* ProxyLockable.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 6ED0B77BA74C2B218B0EAE9971B70E2C /* Common.cpp in Sources */ = {isa = PBXBuildFile; fileRef = BA7064702BBDD1BA702AF42B10B58528 /* Common.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -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 -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors"; }; }; - 6ED1741AE0930CF58147E317CCD6F91D /* fixed-dtoa.cc in Sources */ = {isa = PBXBuildFile; fileRef = C5FBB4CF298ADFEDE3E0D4083594D093 /* fixed-dtoa.cc */; settings = {COMPILER_FLAGS = "-Wno-unreachable-code"; }; }; - 6ED79CE9B1C60420A72964EA773FF253 /* quant_levels_dec_utils.h in Headers */ = {isa = PBXBuildFile; fileRef = C9754419D7609BFF0E75CE875DCC4656 /* quant_levels_dec_utils.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 6EFACFAD993B3F07E82F8A4F7F028BAD /* RCTModalHostViewManager.h in Headers */ = {isa = PBXBuildFile; fileRef = DE76F127E42557B9BD2B3676495F1E2F /* RCTModalHostViewManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 6EFEC9EECB474DA7EDEDB78F970B3E49 /* FIRVersion.h in Headers */ = {isa = PBXBuildFile; fileRef = 747BE71E8C82E7E029D0E1901F01B273 /* FIRVersion.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 6F018B8B904C5B98D4F49822187A7B54 /* RNDateTimePickerManager.m in Sources */ = {isa = PBXBuildFile; fileRef = 0D5FFC28F633CA358E6A299EB5727859 /* RNDateTimePickerManager.m */; }; - 6F01B049AB62CE236C245639313F3490 /* BridgeNativeModulePerfLogger.h in Headers */ = {isa = PBXBuildFile; fileRef = 32CA7828799A6E45E4AA667862A300B4 /* BridgeNativeModulePerfLogger.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 6F167C246E753AD7AECF421830191574 /* RCTBaseTextInputShadowView.m in Sources */ = {isa = PBXBuildFile; fileRef = 6909DC17B79287F476ED5275B90B517D /* RCTBaseTextInputShadowView.m */; }; - 6F16CB6B1386F1F35A15E6D88064CF44 /* RNFBVersion.m in Sources */ = {isa = PBXBuildFile; fileRef = 8AAD0CD25566C3DF95A09CE18005BFDD /* RNFBVersion.m */; }; - 6F198B6796FC75BF8EB121B170497165 /* filters_mips_dsp_r2.c in Sources */ = {isa = PBXBuildFile; fileRef = D72FD378C4B1FCB1EF395201B2FA0620 /* filters_mips_dsp_r2.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; - 6F1F8EF644016A395B41D4E944A6BADE /* react-native-cookies-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 3F27913042F4D16F669BC9B55EF37EC3 /* react-native-cookies-dummy.m */; }; - 6F221D7F6CB8F6D47C61F60872300E5F /* RCTWebSocketExecutor.mm in Sources */ = {isa = PBXBuildFile; fileRef = 6F815F8790C9087086FE9DE411255EBF /* 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"; }; }; - 6F26D779C3AB2A1197DB0289B4936A92 /* UIImage+CropRotate.h in Headers */ = {isa = PBXBuildFile; fileRef = 6358C91D6EFFFEE83C8D79EAC09C685D /* UIImage+CropRotate.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 6F5F811E0EBD3A9488F59B825FA147CA /* RCTWrapperViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = D64EC9825D8C6C4D2EE46C9A5061CA48 /* RCTWrapperViewController.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - 6F710F7118FC5A2ECFCE14AD2C1A3AB0 /* upsampling_msa.c in Sources */ = {isa = PBXBuildFile; fileRef = F656E9E9B098FF51164E8EDD69ECDCB0 /* upsampling_msa.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; - 6F77535C9D8949A90B14C03B87365550 /* vp8_dec.c in Sources */ = {isa = PBXBuildFile; fileRef = 058BEC2FCC8D1DBEBCBBF9C636C2C347 /* vp8_dec.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; - 6F82B689E48C467E2CF41A3B6A759380 /* FIRInstallationsItem+RegisterInstallationAPI.m in Sources */ = {isa = PBXBuildFile; fileRef = CB8D1B05F7691BAED8591CFF2B187C65 /* FIRInstallationsItem+RegisterInstallationAPI.m */; }; - 6FA871B54E72B4E9FF0F5F7933D29E7E /* log.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 20A5C47A270AF6321ACE7FF6B82E0F0F /* log.cpp */; settings = {COMPILER_FLAGS = "-fno-omit-frame-pointer -fexceptions -Wall -Werror -std=c++1y -fPIC -fno-objc-arc"; }; }; - 6FABF4915BCC69ADE3B3F3F1B82E3FF7 /* FIRInstallationsIDController.h in Headers */ = {isa = PBXBuildFile; fileRef = 00D323FBBD73EFACF837D4D6D25372A0 /* FIRInstallationsIDController.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 6FCA2F372DEBDDCFDCDA656D5A6C4BAE /* Replaceable.h in Headers */ = {isa = PBXBuildFile; fileRef = 7BA6F36479FF33E103FFB4087E81E9E2 /* Replaceable.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 6FCAE02A315A815A3FE09DEB876CC22A /* FileUtil.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 28C3762D3397CC9F4A3AE546622E7715 /* FileUtil.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -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\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors"; }; }; - 6FE0FE4F0977D4552305755C8A250A62 /* RCTBaseTextInputViewManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 9327F9C7E8982E0CE3C75DE507864913 /* RCTBaseTextInputViewManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 7037271A15F2CB08758C6BEDFB9051A2 /* BugsnagSystemState.m in Sources */ = {isa = PBXBuildFile; fileRef = EA8AF9736E107436330E00907D1BA6BC /* BugsnagSystemState.m */; }; - 704DE8D9DD360A4DA69CCC3F2833D9DA /* FBLPromise+Timeout.m in Sources */ = {isa = PBXBuildFile; fileRef = 51E0ED49F68A92B12E47D0F02CD1C207 /* FBLPromise+Timeout.m */; }; - 70525EE2AE0A8EAB9E09D6E5EEC75709 /* picture_psnr_enc.c in Sources */ = {isa = PBXBuildFile; fileRef = 9E6C0F837C54854E825A6330E8F6E8F3 /* picture_psnr_enc.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; - 70592AB014726A5CC92B21CAC66CE575 /* InlineExecutor.h in Headers */ = {isa = PBXBuildFile; fileRef = E6047876F69097A9838EEBDAF3540193 /* InlineExecutor.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 7079D2284B5A94EF0486E2A6CE323907 /* Allowance.h in Headers */ = {isa = PBXBuildFile; fileRef = 0A5EB232FEA7CEB1E0F7D4D8788C470F /* Allowance.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 707CE58DD716CCAC79AA0E87EA03E104 /* FlipperCppBridgingConnection.mm in Sources */ = {isa = PBXBuildFile; fileRef = 26801AEDC8F6E1A70C04F7068509ECA3 /* FlipperCppBridgingConnection.mm */; settings = {COMPILER_FLAGS = "-DDEBUG=1 -DFLIPPER_OSS=1 -DFB_SONARKIT_ENABLED=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -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"; }; }; - 707D76C987DFAB631D3EA0591433FD93 /* RCTSlider.h in Headers */ = {isa = PBXBuildFile; fileRef = D53862AF54CF2656B4120C75EA8B3C4B /* RCTSlider.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 707DD45C921F816DD808AC7FEBF32F7F /* FIRCoreDiagnosticsConnector.h in Headers */ = {isa = PBXBuildFile; fileRef = 1ED1518F9B4D91C7212B1DF24337648F /* FIRCoreDiagnosticsConnector.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 708596174C426482EAB10A939EE95A73 /* RCTAnimatedNode.m in Sources */ = {isa = PBXBuildFile; fileRef = 87E47624EA5966C953C89E28C2FA8F10 /* 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"; }; }; - 70B3A3692ABB332F42F8D3271F051AA3 /* WriteChainAsyncTransportWrapper.h in Headers */ = {isa = PBXBuildFile; fileRef = 4657CCCB92CCDDA25EF0802548198033 /* WriteChainAsyncTransportWrapper.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 70BA92339B45B7035005EDC43DA9163C /* FIRCLSException.h in Headers */ = {isa = PBXBuildFile; fileRef = 30CCD0C483D6373D7BD16F68B8220D19 /* FIRCLSException.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 70BAF6CCBA1760F825DB9CAF1FFACE87 /* FIRCLSUnwind_x86.c in Sources */ = {isa = PBXBuildFile; fileRef = 5BD5DC609D90282613BD259D7B7025A0 /* FIRCLSUnwind_x86.c */; }; - 70E57E5970E580AC7ABE4739A244964F /* ThreadedExecutor.h in Headers */ = {isa = PBXBuildFile; fileRef = E7FA9A7A65259B3BD7831B47502FF765 /* ThreadedExecutor.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 70FC0423D5D85A10276C019472AD7DAE /* RCTAes.h in Headers */ = {isa = PBXBuildFile; fileRef = E361178BFF0F0A5AC12C76B6300B8268 /* RCTAes.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 70FD0E1BF62707D472539EA510D3CD4D /* DelayedDestruction.h in Headers */ = {isa = PBXBuildFile; fileRef = 50D23022535AF7BD0EF89E7177B837EF /* DelayedDestruction.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 710F57D653259521280B34661797F7E9 /* ARTRenderableManager.m in Sources */ = {isa = PBXBuildFile; fileRef = 7AED5BBB1861BBE84645A9A7B9670CE9 /* ARTRenderableManager.m */; }; - 713C6F605871E06DE7AB2C2E2F5649FA /* IDStore.m in Sources */ = {isa = PBXBuildFile; fileRef = 32CA8CF10AFF6284DDC6E0B008D3FF2F /* IDStore.m */; }; - 716C3D75774219593ADBFD710534546A /* HighlighterView.h in Headers */ = {isa = PBXBuildFile; fileRef = B4EE1F2A065F2CF26B2C1EB0F8CFB0F7 /* HighlighterView.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 7183BC486E567391C52F0BD24D2C8DE8 /* Color+Interpolation.m in Sources */ = {isa = PBXBuildFile; fileRef = 1FA781FE35B9737A289A6F6DE796B40D /* Color+Interpolation.m */; }; - 71A9ACF58258BB5E6D877E50E89456B5 /* RCTMultipartDataTask.m in Sources */ = {isa = PBXBuildFile; fileRef = C637D5D18B465F42A4FE037A2B898D4C /* RCTMultipartDataTask.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - 71E1E65FC95FBE0B472944B5FB54DC42 /* ChecksumDetail.h in Headers */ = {isa = PBXBuildFile; fileRef = CF77D25B62CE45B31D07F75CB0D5E5D5 /* ChecksumDetail.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 71F37F6A18744FC71A4B25E1C978793B /* TcpDuplexConnection.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 1A54E82E346C84E98425FADAF6834BFD /* TcpDuplexConnection.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -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 -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors"; }; }; - 72098E2C4C902E4CDD614A1784A1BD33 /* RCTDisplayLink.m in Sources */ = {isa = PBXBuildFile; fileRef = 60FC3B7F56EDDDD84C2E753CD47A7FAE /* RCTDisplayLink.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - 720C6FED7064F5B2CA7DFABC3737EEE0 /* CertificateUtils.h in Headers */ = {isa = PBXBuildFile; fileRef = A6DEDACF54C93C17C745DAFA77E4CCB4 /* CertificateUtils.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 721D32ED454E0AC0D85D80EAEA855ED0 /* FireAndForgetResponder.h in Headers */ = {isa = PBXBuildFile; fileRef = E2E51B08C8241F5CB9E1911832BB6E5C /* FireAndForgetResponder.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 72252121A1DE75FC3545164356F2EF7E /* RCTSinglelineTextInputView.m in Sources */ = {isa = PBXBuildFile; fileRef = 4C4E63781EB5282F7FBEC911DEA07DD1 /* RCTSinglelineTextInputView.m */; }; - 723F16A71B0E2F9C992B3CDADBC09B65 /* SysMman.h in Headers */ = {isa = PBXBuildFile; fileRef = 96971B5D8949E96B552B0C7CFBD06F72 /* SysMman.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 72549412543114AF2370F5106413C22A /* RemoteObjectsTable.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 0C64E5996EF4943B03113E475C59389D /* RemoteObjectsTable.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - 7261ED5DBF9549B8EB9D33B100FBD8EE /* RNCAssetsLibraryRequestHandler.m in Sources */ = {isa = PBXBuildFile; fileRef = 7039C0FCA8DD90A20EE87615ECC66BC8 /* RNCAssetsLibraryRequestHandler.m */; }; - 726550DFA7415A96DF508C5DB3E9D1A6 /* FIRCLSBinaryImage.m in Sources */ = {isa = PBXBuildFile; fileRef = 912C4CF3278E3ADA0ED28931B9049835 /* FIRCLSBinaryImage.m */; }; - 72718F504B4599F50C6A9FFE7DA6A11D /* GDTCCTPrioritizer.m in Sources */ = {isa = PBXBuildFile; fileRef = 1BCDE75F8D6EB7B2E4AD002DD63895A9 /* GDTCCTPrioritizer.m */; }; - 7274E4B1F2A9A0B8015B99A25039148A /* RCTSurface.h in Headers */ = {isa = PBXBuildFile; fileRef = DAA93BB561277F589EFD5B03D3A98A18 /* RCTSurface.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 72863FD64CB37488DFCAA34D2E51FC5C /* HazptrObjLinked.h in Headers */ = {isa = PBXBuildFile; fileRef = 556022F0512FB062A96153D84CAD318B /* HazptrObjLinked.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 729177AC4FB9AB7E5636278ECFF278E6 /* ARTText.m in Sources */ = {isa = PBXBuildFile; fileRef = 64087F3B75718DA47431935A6FF88F39 /* ARTText.m */; }; - 72A0E8FDFE35A40DED03137BBD91453D /* CallstackHelper.h in Headers */ = {isa = PBXBuildFile; fileRef = C9609E96411BE8E2F628880FC339B53F /* CallstackHelper.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 72A1D70A96C55BABF56C96E7421A8BB8 /* InlineFunctionRef.h in Headers */ = {isa = PBXBuildFile; fileRef = BA200C7606484DA619B8C99C0D67660B /* InlineFunctionRef.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 72AE353F6459709595E6BE7249EB24A0 /* RCTBridgeModule.h in Headers */ = {isa = PBXBuildFile; fileRef = 03ABA597EB18982DC357D7D005E5E3B1 /* RCTBridgeModule.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 72AECF8F7F70957CF01216736807D921 /* filters.c in Sources */ = {isa = PBXBuildFile; fileRef = 4C1FE474229C2ACA4C7C4D7B00D43C22 /* filters.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; - 72AFFE897E8DA214C265F5DC15B4AA97 /* FireForgetThroughputTcp.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 13B41F4359159EB8EC87945C0C5A7C17 /* FireForgetThroughputTcp.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -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 -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors"; }; }; - 72B79343BEEF80D9F1F138B20C2489C9 /* ChannelResponder.h in Headers */ = {isa = PBXBuildFile; fileRef = 03627D3C4570EDDCB741491956019B46 /* ChannelResponder.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 72C0EDDBB8B83ED74127F63F35B2861E /* RCTDatePickerManager.m in Sources */ = {isa = PBXBuildFile; fileRef = 27E98DA502B46B1061E58261CCB42964 /* RCTDatePickerManager.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - 72DB98A7214AC51B5BB3D4AB42827DD4 /* Frame.h in Headers */ = {isa = PBXBuildFile; fileRef = 37988D45D75D810E145A28997B557A81 /* Frame.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 72F3BC2265A372E83C3178B3EBC113A5 /* RNPushKit.h in Headers */ = {isa = PBXBuildFile; fileRef = 6FA0AD66C02F21425433DDB9366CD22F /* RNPushKit.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 72FCEFFA1DB40434BBF9EBF5B25F92B6 /* RSocketRequester.h in Headers */ = {isa = PBXBuildFile; fileRef = F741A695174331064C6F1F03D184685B /* RSocketRequester.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 730EDA55060A6B6283950D48CDAC5EAC /* TimeoutManager.h in Headers */ = {isa = PBXBuildFile; fileRef = CE6DA0E0588B8854385C4C0A03DAB96E /* TimeoutManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 73180619049657209DC7D86AC88197A4 /* RNCSafeAreaViewMode.h in Headers */ = {isa = PBXBuildFile; fileRef = 50380A13EC2534D9286401EBD03FB7FF /* RNCSafeAreaViewMode.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 734530C3D3B6CE3CAB7BE35B0B4E47CE /* FlipperClient.h in Headers */ = {isa = PBXBuildFile; fileRef = FCB7E3B5334ABF28474FCC48E3B1C68D /* FlipperClient.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 736593F49220248663C77052CDA35D96 /* RCTMultipartStreamReader.m in Sources */ = {isa = PBXBuildFile; fileRef = EF976FDB7A999CA6E88171129823FFF7 /* RCTMultipartStreamReader.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - 7368DAF4F1A6D47816005BCE05065217 /* FFFastImageSource.h in Headers */ = {isa = PBXBuildFile; fileRef = 8373F8F5AA7C5023F46D1F4436A71193 /* FFFastImageSource.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 7372AE251EDE259D667A76E98DDA8952 /* Dirent.h in Headers */ = {isa = PBXBuildFile; fileRef = 4A1451795BAB36BC948A32F0BA98E35F /* Dirent.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 73955004694D9FE3FB39014F8184720B /* ThreadFactory.h in Headers */ = {isa = PBXBuildFile; fileRef = 78D4A07F409C5EC209DE0046743FB84C /* ThreadFactory.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 73BC7980BBD7CF1F54A7FFAA4521D880 /* FBLPromise+All.h in Headers */ = {isa = PBXBuildFile; fileRef = 44F48B8158CB28A50A3532A4FA69E365 /* FBLPromise+All.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 73CDFB033D0E3825627A6893DE2F4AC6 /* RSocketException.h in Headers */ = {isa = PBXBuildFile; fileRef = 9029E13E354946400DACF29547B6439D /* RSocketException.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 73E652BF7E0000DE1560E4173FD963D6 /* BSG_KSCrashDoctor.m in Sources */ = {isa = PBXBuildFile; fileRef = EA26F49E2AADEDB96790941D0189B8D0 /* BSG_KSCrashDoctor.m */; }; - 73F234DE8E462A14D565BD660373F0EB /* IOBufQueue.cpp in Sources */ = {isa = PBXBuildFile; fileRef = BCFB13C2659CB7FE3E33BC3301B57589 /* IOBufQueue.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -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\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors"; }; }; - 73F2DE2DFEC35D02AFB0C1A7674EDBED /* ProducerConsumerQueue.h in Headers */ = {isa = PBXBuildFile; fileRef = A5C6E23D40EB9A3E072F8F115094E957 /* ProducerConsumerQueue.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 73FD7DB1F807452982CA25D94FE3EBFC /* FIRInstallationsAPIService.h in Headers */ = {isa = PBXBuildFile; fileRef = C2C0E90FEA77DD0E5EFF604B618FDA96 /* FIRInstallationsAPIService.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 740BDFD795EEEC91E8A49EF49555734B /* FIRInstallationsVersion.m in Sources */ = {isa = PBXBuildFile; fileRef = D4A2BE8CFED384AE4AC4EC33BB298903 /* FIRInstallationsVersion.m */; }; - 7421731FA748A63961375FB27388E154 /* RCTProfileTrampoline-arm.S in Sources */ = {isa = PBXBuildFile; fileRef = 2714A8AFC726F79408724707E031F80F /* RCTProfileTrampoline-arm.S */; }; - 74224F0B4C7D6FC974A6EA003FB4CCA1 /* SDImageCoderHelper.h in Headers */ = {isa = PBXBuildFile; fileRef = 473EAED02F9A9B0273273EC3A0DC6C8F /* SDImageCoderHelper.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 74283D7AF59E59C2A67C57FD1270C185 /* muxread.c in Sources */ = {isa = PBXBuildFile; fileRef = 8DD7506B4DC024949AB693811564957D /* muxread.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; - 742F343DC951F6D0943301DED9E57D37 /* GLog.h in Headers */ = {isa = PBXBuildFile; fileRef = E8BFDC44834812D83E93BA1CF7F08FA1 /* GLog.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 7430009CA2DF5FF39941A4DEEB74F68D /* RCTEventDispatcher.m in Sources */ = {isa = PBXBuildFile; fileRef = E4111FAF4E1B43ADB06B9376F8FA80E8 /* RCTEventDispatcher.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - 7438FB3ADC2462E87AF4F062F02A01F0 /* NSTextStorage+FontScaling.h in Headers */ = {isa = PBXBuildFile; fileRef = 4C2EDAD5ABAACBC7C7EDE94447778269 /* NSTextStorage+FontScaling.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 74460AAD747CE1FDC52AF07443FC5AE7 /* UMCore-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 7A7E94FCC43BD2D48FF40007268678CB /* UMCore-dummy.m */; }; - 746320644311D743D6A0355853EF5E40 /* SKTouch.m in Sources */ = {isa = PBXBuildFile; fileRef = D900E79A9D933E573EB8C221244030C1 /* SKTouch.m */; settings = {COMPILER_FLAGS = "-DDEBUG=1 -DFLIPPER_OSS=1 -DFB_SONARKIT_ENABLED=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -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"; }; }; - 748FDF3139F4EEBF346D3E4511BCE23E /* RCTMultiplicationAnimatedNode.m in Sources */ = {isa = PBXBuildFile; fileRef = 02FF1085A4CCD4E09581C17A9D3F00D0 /* 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"; }; }; - 7496FA2D60BA5639F033A049DC8D66AC /* GDTCOREventDataObject.h in Headers */ = {isa = PBXBuildFile; fileRef = 38EBC25C4EA7FD49EB95B1FDD35C5B50 /* GDTCOREventDataObject.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 749D9ED1D5046AA077A8117DCE9060A3 /* SDWebImageTransition.m in Sources */ = {isa = PBXBuildFile; fileRef = 61C5237AA4FF1AE4631BC96A273B9D85 /* SDWebImageTransition.m */; }; - 74BBCD8076758367A2E601E093DBEF08 /* RNForceTouchHandler.m in Sources */ = {isa = PBXBuildFile; fileRef = ADF844E92090E13A94B7FFED33503E01 /* RNForceTouchHandler.m */; }; - 74C122F86DEE82000A0B2FD0234A2597 /* UnboundedBlockingQueue.h in Headers */ = {isa = PBXBuildFile; fileRef = D701A1CF1CB4D49D5A42D1C4A0CC106E /* UnboundedBlockingQueue.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 74D73E484F36568492DE9CD998056438 /* TypeList.h in Headers */ = {isa = PBXBuildFile; fileRef = D218CD7A1D139E9F1C38C68C1D1BC373 /* TypeList.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 74EC9FC61381750280381C1CA3FEF94E /* FIRCLSReportManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 33DD3E5B5A4DC8E6EF82F41A5E8D1A7D /* FIRCLSReportManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 74FEA037C0B559D5A6993E80EB2B01AF /* AtomicStruct.h in Headers */ = {isa = PBXBuildFile; fileRef = 8907F3F77CF6C50D7C220B4046CFA9A7 /* AtomicStruct.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 7527BE9A3C0C5EE41BF46B779B459185 /* event.h in Headers */ = {isa = PBXBuildFile; fileRef = ADD183449DEFDDF51E3C7BBCAB364AE6 /* event.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 754427C520B00051F07209896D84E2E3 /* FIRCLSRecordIdentity.h in Headers */ = {isa = PBXBuildFile; fileRef = 2C54CBEF7275D9470822FE0D250A5B09 /* FIRCLSRecordIdentity.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 7555CBB8C7CE60187519502264C38AFC /* RCTCxxMethod.h in Headers */ = {isa = PBXBuildFile; fileRef = DD4D85719B708A4778BF1B148B6F1152 /* RCTCxxMethod.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 755886C6600CA19D2131AC31F915C1F8 /* tree_dec.c in Sources */ = {isa = PBXBuildFile; fileRef = 0060E421CEEA15B5BFBDDC917B0CBD7F /* tree_dec.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; - 758815415A1F6F013FCEBA1E8506A336 /* GlobalThreadPoolList.cpp in Sources */ = {isa = PBXBuildFile; fileRef = C10A6CED735847F162A4E0FA40C2F42D /* GlobalThreadPoolList.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -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\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors"; }; }; - 75AA13A50D482793A956B5C73E50851D /* ThreadCachedInt.h in Headers */ = {isa = PBXBuildFile; fileRef = 82169797FE5B608D75B4F5F79C13280D /* ThreadCachedInt.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 75B7528A26AF6C0CBC84C022FDA9DCE3 /* REAAlwaysNode.m in Sources */ = {isa = PBXBuildFile; fileRef = C9B967E1CE6B4A87E51F75B5187C594A /* REAAlwaysNode.m */; }; - 75B861A4F6C192CA2320A4246AE28CD0 /* Semaphore.h in Headers */ = {isa = PBXBuildFile; fileRef = 2FD8BFB766C4D8652467E620E4061E38 /* Semaphore.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 75FFA5D4DAF4B30AB4670DB7ABCEB7B2 /* ShutdownSocketSet.cpp in Sources */ = {isa = PBXBuildFile; fileRef = B145BBC0D222D042C25563A552C7B1F1 /* ShutdownSocketSet.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -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\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors"; }; }; - 75FFF39AF07816160B214CEDC0C83CE9 /* SysMembarrier.h in Headers */ = {isa = PBXBuildFile; fileRef = 6A07399903C688EED824AF5CD4ED6843 /* SysMembarrier.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 76107C17DBE52BD14D380C97394F867A /* SDImageHEICCoder.m in Sources */ = {isa = PBXBuildFile; fileRef = 4B47B609D18EF820F82E8AF062AE571D /* SDImageHEICCoder.m */; }; - 762BE04B82F75E8D3186DED12EEC1A2E /* FBLPromise+All.m in Sources */ = {isa = PBXBuildFile; fileRef = 3951C11FDC3F933B2738237DE4204F58 /* FBLPromise+All.m */; }; - 764780972CE5CD95C1823F362A677743 /* Iterators.h in Headers */ = {isa = PBXBuildFile; fileRef = ED61FC0FD69FCF27EEEA00BC72707CD9 /* Iterators.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 764C99C1046573D77473F83B3732F15B /* RCTComponentEvent.h in Headers */ = {isa = PBXBuildFile; fileRef = 23292AEFC97696E4FD1368554942AD87 /* RCTComponentEvent.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 764FE9DE50BEF7F6AF3DDE46F8E72C70 /* RCTTiming.mm in Sources */ = {isa = PBXBuildFile; fileRef = 86D860598D8AF40A45A7B59E29840C40 /* 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"; }; }; - 765BD0311739F1F0D7FECBE67F69D0A1 /* FIRCoreDiagnosticsConnector.h in Headers */ = {isa = PBXBuildFile; fileRef = 084464DD1DF0BC6D3E42DE008CC002BA /* FIRCoreDiagnosticsConnector.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 766D65440C42BE2CDEAABF1CE4963730 /* RNCAppearanceProvider.h in Headers */ = {isa = PBXBuildFile; fileRef = 04804CCF30D5C8B761937C80FB88841A /* RNCAppearanceProvider.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 76783968E292A3913D292A873924E543 /* NetworkSocket.h in Headers */ = {isa = PBXBuildFile; fileRef = F19F759098215F99E10C42499F69820B /* NetworkSocket.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 769D876AF550FAF17144EC1E0B3AD06B /* EXFileSystemLocalFileHandler.m in Sources */ = {isa = PBXBuildFile; fileRef = 70A8EB919807F827463064A126AD186A /* EXFileSystemLocalFileHandler.m */; }; - 76A2FE9AAF994264132E9FAFB1E9D14D /* NativeToJsBridge.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 90A795B88B61AAA21793461B45F9B037 /* NativeToJsBridge.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - 76DB1847A3A19D8DB784D90F6148BA56 /* FIRCLSMachException.c in Sources */ = {isa = PBXBuildFile; fileRef = FC7E6596644453D30491DBA091AAF494 /* FIRCLSMachException.c */; }; - 76DFE67A360211093104F59FC1DD7225 /* RCTView+SafeAreaCompat.m in Sources */ = {isa = PBXBuildFile; fileRef = EE1629DBC0F2312E94B2E5DA2A46C3D9 /* RCTView+SafeAreaCompat.m */; }; - 76EB03CDF432ECDB51026A46AEF9B9F5 /* HardwareConcurrency.h in Headers */ = {isa = PBXBuildFile; fileRef = 92A76AE2B586872B9AE72F08122BB086 /* HardwareConcurrency.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 76EDAE2B2C19EEBD786B950168002CF4 /* EXWebBrowser.m in Sources */ = {isa = PBXBuildFile; fileRef = DD639A12C46710EA1B2D9A2641AF3122 /* EXWebBrowser.m */; }; - 770623923B88E39E0AC5D3D95AF462A9 /* Framer.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 50CAB6141E979DA768868D1CC0D4777B /* Framer.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -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 -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors"; }; }; - 7736EB5FC8539EA2386AFE8EA9FC1458 /* REAAlwaysNode.h in Headers */ = {isa = PBXBuildFile; fileRef = ED625D5A21C9F1B61CFF7642D677FE07 /* REAAlwaysNode.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 77379788FAC491A37C432F1932F29BA5 /* DiscriminatedPtr.h in Headers */ = {isa = PBXBuildFile; fileRef = 4EA1683C021C4EC5FEE026813886B9B8 /* DiscriminatedPtr.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 773B10943F29DDC184B12F4C754EC61D /* MemoryFile_OSX.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 0211423EA326AFDF60ED4C1C6496C396 /* MemoryFile_OSX.cpp */; settings = {COMPILER_FLAGS = "-x objective-c++"; }; }; - 7758183F47357814C59B378BD1E09173 /* BSG_KSCrashSentry_CPPException.h in Headers */ = {isa = PBXBuildFile; fileRef = 0A8FD8A2B5ADA3C0135616C5DB527628 /* BSG_KSCrashSentry_CPPException.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 7764F4863A8FA97FD68D7978A7679691 /* en.lproj in Resources */ = {isa = PBXBuildFile; fileRef = 2D581ED99932190F20B005D628B8B0D3 /* en.lproj */; }; - 77931165EF4C3D5E345752A28601F000 /* SKViewDescriptor.mm in Sources */ = {isa = PBXBuildFile; fileRef = C58BA3EBB523D3E170AA5B68803E20C3 /* SKViewDescriptor.mm */; settings = {COMPILER_FLAGS = "-DDEBUG=1 -DFLIPPER_OSS=1 -DFB_SONARKIT_ENABLED=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -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"; }; }; - 77A67E4E97A48D847F86420983FAC694 /* logging.cc in Sources */ = {isa = PBXBuildFile; fileRef = 4E73EEF74DB33CC28663FD33E8340D37 /* logging.cc */; settings = {COMPILER_FLAGS = "-Wno-shorten-64-to-32"; }; }; - 77AFB32048D3F0BF36FA708D486F5AC2 /* SDImageTransformer.m in Sources */ = {isa = PBXBuildFile; fileRef = 670D865981D234F25D9D09BEEA071BAF /* SDImageTransformer.m */; }; - 77BA0BE783A875FAD30888155C7D8045 /* RCTConvert.h in Headers */ = {isa = PBXBuildFile; fileRef = A2284343BA5188575777B171B3DF19A5 /* RCTConvert.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 77C35194EA7A1C61CAE18FB5B083818F /* AtomicNotification-inl.h in Headers */ = {isa = PBXBuildFile; fileRef = 0E37DC15B8F6DE03E03EB0C7D0597E83 /* AtomicNotification-inl.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 77C75675FA2DCD64142B414546899501 /* RNFetchBlobRequest.h in Headers */ = {isa = PBXBuildFile; fileRef = D73244402DD95F9ACCC241FA741963AD /* RNFetchBlobRequest.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 77D0A7B7F096A7B52315BB33327E9432 /* FramedReader.h in Headers */ = {isa = PBXBuildFile; fileRef = F479CFB21AB01D2A48131512847D204F /* FramedReader.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 77FB0A04BCF38560BCF66548826A35A0 /* RCTInputAccessoryShadowView.m in Sources */ = {isa = PBXBuildFile; fileRef = 9B45635ECCFEB9E3F7E1FB505F12D162 /* RCTInputAccessoryShadowView.m */; }; - 77FC76296E4C94AF29B95282D0CEB5BD /* FIRInstallationsAuthTokenResult.h in Headers */ = {isa = PBXBuildFile; fileRef = D492EF8863AEA098B6A3F3255B3F8CB9 /* FIRInstallationsAuthTokenResult.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 7802283CA511FAB7381AF5F5130ABBB9 /* RCTNativeModule.mm in Sources */ = {isa = PBXBuildFile; fileRef = 5D7BE327B326B95C648585A7BE370A3A /* RCTNativeModule.mm */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - 780C81B5BEBF13C3B163DF4CC32A393E /* EXReactNativeUserNotificationCenterProxy.h in Headers */ = {isa = PBXBuildFile; fileRef = B36D2A2E934218455F4CFB5C60922B9A /* EXReactNativeUserNotificationCenterProxy.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 781597CBB7FB055B8047F8F6328564E9 /* SocketFastOpen.h in Headers */ = {isa = PBXBuildFile; fileRef = 8CCF2A4D4486F1371EF28C581C24CF65 /* SocketFastOpen.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 78199885E36C4A211D13CE556CC88F3A /* FIRCLSFABHost.h in Headers */ = {isa = PBXBuildFile; fileRef = D6367FCCF442159AB5CD62FC726DC2DA /* FIRCLSFABHost.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 782AE9703673D9E7B6373962D83D21D5 /* TimeoutQueue.h in Headers */ = {isa = PBXBuildFile; fileRef = 51C259A9824478DE5643E9C5F2A26E91 /* TimeoutQueue.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 782C8658CE0707085AD6F1BD666AC343 /* Overload.h in Headers */ = {isa = PBXBuildFile; fileRef = A6EFB7B6FFED346EE8755ECD26CD7F23 /* Overload.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 78405647A6A7F00C7D6F2517B828F704 /* FBLPromise+Retry.m in Sources */ = {isa = PBXBuildFile; fileRef = 7C3AE8AB82104DA1D57947D5F350DF05 /* FBLPromise+Retry.m */; }; - 7852ECB633DB5C7D5A1B5D95F81FA77B /* SysMman.cpp in Sources */ = {isa = PBXBuildFile; fileRef = E72DF4E8DF7E1FAE2347EB412774F23C /* SysMman.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -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\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors"; }; }; - 786EAC74EB45E325C2F7139A5BFB2D88 /* FIRInstallationsIIDStore.m in Sources */ = {isa = PBXBuildFile; fileRef = CD72FF4935D9AD07EEF34CDEC0AFC91F /* FIRInstallationsIIDStore.m */; }; - 78899AEE1FE20941C866289A09E406AB /* RCTBaseTextShadowView.h in Headers */ = {isa = PBXBuildFile; fileRef = E2631F974453177DD607E7B3C7AFD9A2 /* RCTBaseTextShadowView.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 78947210A83984AF9CA92D5382835733 /* FirebaseInstallations-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = C56282F270075C6B28A3525902415FFD /* FirebaseInstallations-dummy.m */; }; - 7896A8FE21EE94860B0E96AAC9B61487 /* EDFThreadPoolExecutor.h in Headers */ = {isa = PBXBuildFile; fileRef = 58FA23D37D8D8DF8F7AEEF92C9A7F627 /* EDFThreadPoolExecutor.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 789AF8DAA29E045F7DAEC605CFE51B6A /* RCTPropsAnimatedNode.m in Sources */ = {isa = PBXBuildFile; fileRef = DAFAD979CBC200B5DB75C39E4AE29EED /* 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"; }; }; - 78A494F42E6BE9DD4C11FFC6BEB36A59 /* RCTLogBoxView.mm in Sources */ = {isa = PBXBuildFile; fileRef = 2ED748BD35A98F47D36456871617E751 /* 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"; }; }; - 78A7C63DDB2CEB5F4DD9E510CF6AB585 /* webpi_dec.h in Headers */ = {isa = PBXBuildFile; fileRef = 2E763E54264B6EE3E48C2E8F9CC09D76 /* webpi_dec.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 78D75497D8A4D1E7B532209B05BA4E8E /* RNSScreen.h in Headers */ = {isa = PBXBuildFile; fileRef = 478A05532884A912CEC3CE2A3FBFBDAB /* RNSScreen.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 78DD24A22EAEE029FC0EF5954F72FF8B /* QuotientMultiSet-inl.h in Headers */ = {isa = PBXBuildFile; fileRef = F8A79B87F04F432DCEF4AB0A2C2E513F /* QuotientMultiSet-inl.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 78E7366A8362328F55824C86CB7F021E /* AtomicRef.h in Headers */ = {isa = PBXBuildFile; fileRef = 486C74AA4878D5F7A4C090DB04C9CE3B /* AtomicRef.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 78EC08F36BDA5D40A3686EAF9CD37F3D /* dynamic-inl.h in Headers */ = {isa = PBXBuildFile; fileRef = DC04B7B67B78CB967E161CCB71C613AE /* dynamic-inl.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 790C1CBCF10E10C920AC90949460AA22 /* NotificationQueue.h in Headers */ = {isa = PBXBuildFile; fileRef = AD590E4013E1628FF06BDECB4388B4EA /* NotificationQueue.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 791B49A6260449B26C147F7ECD101762 /* double-conversion.cc in Sources */ = {isa = PBXBuildFile; fileRef = 909FE8760C800877AB48CD3590A9B3E6 /* double-conversion.cc */; settings = {COMPILER_FLAGS = "-Wno-unreachable-code"; }; }; - 79314B31C855F5FE78CE981BF7A42755 /* RCTLocalAssetImageLoader.h in Headers */ = {isa = PBXBuildFile; fileRef = 13B7AA56ECC8D13805741C6ACCC28520 /* RCTLocalAssetImageLoader.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 7941AC9AFC2BDE8C9F65E4C1633F1AD8 /* EventHandler.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 50E9B9774D4A3DD88A0582AB9E279476 /* 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"; }; }; - 79448E08B4EC193283F9709AC0475F49 /* BSG_KSCrashSentry_MachException.c in Sources */ = {isa = PBXBuildFile; fileRef = E4B494359C9B23346165C652A401B302 /* BSG_KSCrashSentry_MachException.c */; }; - 79692A32EA834AB1A73C7CB1FCF0804F /* Synchronized.h in Headers */ = {isa = PBXBuildFile; fileRef = B37CF269BCAE8B7D2A9F579D77ED442F /* Synchronized.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 797454970ABFC8DB75DEA80C02AA629B /* Function.h in Headers */ = {isa = PBXBuildFile; fileRef = C2DA9F23FE8526DB70B1265FB9EDB63B /* Function.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 797B776C5B3EB4F16684EEEA7215BBF7 /* FlipperKitNetworkPlugin.mm in Sources */ = {isa = PBXBuildFile; fileRef = 8ABA4E5F665B0B8B414DBC00C6F5F45A /* FlipperKitNetworkPlugin.mm */; settings = {COMPILER_FLAGS = "-DDEBUG=1 -DFLIPPER_OSS=1 -DFB_SONARKIT_ENABLED=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -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"; }; }; - 7981C7D4547EC52A33E929A57747F9E0 /* YGNode.h in Headers */ = {isa = PBXBuildFile; fileRef = 2EFE75415A489ABB03321806F54AB213 /* YGNode.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 79AA16D3A14B3FD53117A93B8A0EB0C1 /* SKObject.h in Headers */ = {isa = PBXBuildFile; fileRef = 40D77212AD7D72BB9EB317A8F71F76AC /* SKObject.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 79B1C578A132B8F64BAF787C2C32C973 /* SDAnimatedImageRep.h in Headers */ = {isa = PBXBuildFile; fileRef = D7356C5A625D90CA214661C8C6D6F794 /* SDAnimatedImageRep.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 79BD2B37C24FCEA4D340749EB6DBA603 /* FBLPromise+Testing.m in Sources */ = {isa = PBXBuildFile; fileRef = 80633C5A8B082AA86AFAECD105185D55 /* FBLPromise+Testing.m */; }; - 79C100BDA09644B75240324EC18ECF02 /* React-RCTText-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 9973427BC849E103A860FA21364BE7BB /* React-RCTText-dummy.m */; }; - 79DD0BAADE65E8C839FF8CEA48FD77AB /* EventBaseThread.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 6D716AC570A14D99A2182905FE68EC50 /* EventBaseThread.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -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\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors"; }; }; - 79E9F5A233FE519BCD4C17C56B7CB560 /* ScheduledSubscription.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 55768652A0C6C1024B76E44458316F0D /* ScheduledSubscription.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -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 -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors"; }; }; - 7A0933F0E3D652CF12F1731560BD8207 /* RCTImageSource.m in Sources */ = {isa = PBXBuildFile; fileRef = F317354C786766822DD67A7E191EA343 /* RCTImageSource.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - 7A117409B4D9D5F37FA5557FA84E1448 /* EXFileSystemAssetLibraryHandler.m in Sources */ = {isa = PBXBuildFile; fileRef = 4DA85919DC6C929D42B9C85978020E39 /* EXFileSystemAssetLibraryHandler.m */; }; - 7A453093A32DF8BF58019348FB62B3C5 /* FIRCLSReportUploader.h in Headers */ = {isa = PBXBuildFile; fileRef = 69D3B6CCE8A8969EE3C7CAFE9900BFCE /* FIRCLSReportUploader.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 7A4B12E8B954775145887FBAA5047500 /* ScheduledSingleSubscription.h in Headers */ = {isa = PBXBuildFile; fileRef = 55DE32077AF24CFA4B8C6153B81CE367 /* ScheduledSingleSubscription.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 7A5BDD3BBE43A139E4EA1AB988EB1BBB /* RNBootSplash.h in Headers */ = {isa = PBXBuildFile; fileRef = E8407F7D051C127800BA923758D2BCDF /* RNBootSplash.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 7A75F9FFE1C65984AA22CBBC6B10AA0D /* Observer.h in Headers */ = {isa = PBXBuildFile; fileRef = 23EB914976C05BD72A2209E4A5D7B2D3 /* Observer.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 7A761194468A5C4508DF4A4380B0F5EF /* RCTDisplayWeakRefreshable.h in Headers */ = {isa = PBXBuildFile; fileRef = D78EEF985308C79B8FBBEB68CCDDFABD /* RCTDisplayWeakRefreshable.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 7AA21B533D5798C73B2EEACC345DA1A3 /* BSG_KSCrashSentry_NSException.m in Sources */ = {isa = PBXBuildFile; fileRef = EA4C94D30D9F5FC1CCCEB7C2FFEA5CEF /* BSG_KSCrashSentry_NSException.m */; }; - 7ABD5D017599151524C29FE32BB27F57 /* RemoteObjectsTable.h in Headers */ = {isa = PBXBuildFile; fileRef = 72631910F86F3EE0DD864035E0C8BB24 /* RemoteObjectsTable.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 7AC001C3E4B80BCF42D9B631D7DADABC /* ParkingLot.cpp in Sources */ = {isa = PBXBuildFile; fileRef = EA73FDEB663FBC04237C1E36C9FAB412 /* 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"; }; }; - 7AC267FD6E65A190C5750F40D88B6FD9 /* enc_mips32.c in Sources */ = {isa = PBXBuildFile; fileRef = CC9EC9A93BF2708C130F9C64C754CAA6 /* enc_mips32.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; - 7AC739868CD617F6BDB0222B3E728167 /* FlipperStep.h in Headers */ = {isa = PBXBuildFile; fileRef = 819501D9827962ADC0B59DDBC46D6313 /* FlipperStep.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 7ADEA04EA038281DECB855D4D14A7D88 /* HHWheelTimer-fwd.h in Headers */ = {isa = PBXBuildFile; fileRef = CC14741F8FDEC687198BDBA374E6780E /* HHWheelTimer-fwd.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 7AE9FA7CFFB3766DB0BD22641EE81FCD /* BugsnagConfiguration+Private.h in Headers */ = {isa = PBXBuildFile; fileRef = 8658DD24119E5EAE6FFA7E2582255C55 /* BugsnagConfiguration+Private.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 7B0539B2F5676BAC20F7F72B52A3DB81 /* RCTTouchHandler.m in Sources */ = {isa = PBXBuildFile; fileRef = 40C245091BB61392A5C0FEFAF15BF406 /* RCTTouchHandler.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - 7B103045F2399439212CA76D5FC9F459 /* Libgen.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 31D20C85F5829B2CD3A10D7F0581B896 /* Libgen.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -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\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors"; }; }; - 7B2531366A546B86F71C91DD5F523677 /* EXResumablesManager.m in Sources */ = {isa = PBXBuildFile; fileRef = 23EEA2A9DD8C96756CD217E2C8C65B28 /* EXResumablesManager.m */; }; - 7B336AF6BCA40B15F88D91B65EE144A6 /* Malloc.h in Headers */ = {isa = PBXBuildFile; fileRef = A67B831BF4C65D29F2045462D7945319 /* Malloc.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 7B33FB22F1E51564603732E2C0E5CD31 /* RCTProfileTrampoline-i386.S in Sources */ = {isa = PBXBuildFile; fileRef = 2A8F95830D3F54E598653D2A822A45C8 /* RCTProfileTrampoline-i386.S */; }; - 7B35ED9FDB607FF2BAC61958778E8D25 /* String.h in Headers */ = {isa = PBXBuildFile; fileRef = 36565EF649A1D1CC9CC7CB756E6298A9 /* String.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 7B36A14A4EFCA658EDF10D5D5239D94F /* RCTDivisionAnimatedNode.m in Sources */ = {isa = PBXBuildFile; fileRef = 2BA3E5792BCC8BDA3697E65514DAA0E4 /* 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"; }; }; - 7B490EEED30BC49A2E89D5D491F10A54 /* RSocketTransport.h in Headers */ = {isa = PBXBuildFile; fileRef = 997BBF1F370A66F6EAD822AE43E3E6F0 /* RSocketTransport.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 7B5E02FC04FA92D42BE4FB2F809E4FC5 /* lossless_enc_neon.c in Sources */ = {isa = PBXBuildFile; fileRef = 7C8E82EC8AAEA9B4CE0D2B7BCD31E075 /* lossless_enc_neon.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; - 7B8CB4EE825252177DB35713E569A4CA /* RNFlingHandler.h in Headers */ = {isa = PBXBuildFile; fileRef = D0B9B3241560309851012EDF6E8A3626 /* RNFlingHandler.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 7BA075AFCDB27316C30CDA198DA823C3 /* ConcurrentHashMap.h in Headers */ = {isa = PBXBuildFile; fileRef = B490FDB36545F4DD07EA59B9D2ABF055 /* ConcurrentHashMap.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 7BAEF8B38FF4642539597FAC97925D62 /* Hardware.h in Headers */ = {isa = PBXBuildFile; fileRef = 4A7DC779EC9F79607D650D429C2CFB5E /* Hardware.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 7BAF94A22126FD75E9E54E20A112566E /* QBAssetsViewController.h in Headers */ = {isa = PBXBuildFile; fileRef = F5EB7201D728C7DB3F37A71DB6AF6C98 /* QBAssetsViewController.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 7BC05BE6D3004430297C9058BCCF689C /* openssl_md5_one.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 3A0ABE66A02A244D2459E1093B2CB640 /* openssl_md5_one.cpp */; settings = {COMPILER_FLAGS = "-x objective-c++ -fno-objc-arc"; }; }; - 7BCECB7A8F72787B3FB4FE1460578329 /* RCTUtilsUIOverride.h in Headers */ = {isa = PBXBuildFile; fileRef = 1B21BCAB8E12847B8E6F62ADC277BB13 /* RCTUtilsUIOverride.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 7BD251B6597B6A64B8B3E0E06A70216E /* SocketOptionMap.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 0D4D83CF4BCF22D89386EBB6F4EED2E2 /* SocketOptionMap.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -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\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors"; }; }; - 7BE06A02899C4D21EE4B2751BFF8C3A2 /* StaticTracepoint.h in Headers */ = {isa = PBXBuildFile; fileRef = 4A21DCEF09547DEB64B4744FAAD03666 /* StaticTracepoint.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 7BE5B56712FD018392367AC45E7CC119 /* UTF8String.h in Headers */ = {isa = PBXBuildFile; fileRef = B38BE1DD0BFD5C7BECE27605B2D9D362 /* UTF8String.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 7BEAD01E849AC4D7C9506CAB5D7F03E1 /* RCTSettingsManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 6588EE64A2769BC2FE5EC0F6D78CD8E4 /* RCTSettingsManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 7BF8D79B86FDBA7350E8460C878E2DA4 /* jsilib-posix.cpp in Sources */ = {isa = PBXBuildFile; fileRef = D5AB44E082B868273CCA855943AA3210 /* 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"; }; }; - 7C1E5969B5C22F5FA5DF8BDF5EA60FDC /* ManualExecutor.h in Headers */ = {isa = PBXBuildFile; fileRef = BB96B5172CA1FDCD97A37E07C1F50BC1 /* ManualExecutor.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 7C2820D4FF4C112DC90A8B3D7B84274D /* CString.h in Headers */ = {isa = PBXBuildFile; fileRef = 2D2390B0DF63D8AA73976078BCD5CB07 /* CString.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 7C3EF3CF2AD941A1B0EAF2894E674DA8 /* SKIOSNetworkAdapter.h in Headers */ = {isa = PBXBuildFile; fileRef = 0004622AC40407B1ADAD515879B469CB /* SKIOSNetworkAdapter.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 7C8CA8992291A9A75E8DB854A4CC73BE /* Range.h in Headers */ = {isa = PBXBuildFile; fileRef = F0B9BDE093A1DAEEACF5BFC7242457E0 /* Range.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 7CAE789754D569EFA0A1E48EEA8BCDC7 /* RCTUIManagerUtils.m in Sources */ = {isa = PBXBuildFile; fileRef = 31D0FBC843D7D2564E682644B2AA4E9C /* RCTUIManagerUtils.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - 7CB87F458C00A4EC6D11312E0F019199 /* SharedMutex.h in Headers */ = {isa = PBXBuildFile; fileRef = B9BE633D011E108B8B50930D8EE40B41 /* SharedMutex.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 7CBC0B786C74863410DA18D1BE7DD73A /* Traits.h in Headers */ = {isa = PBXBuildFile; fileRef = B6D2E1D1CAC874F5DD7600D748D64C55 /* Traits.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 7CC599917A6E93AB56DD25ABBD9272C3 /* UnboundedBlockingQueue.h in Headers */ = {isa = PBXBuildFile; fileRef = CA7D82AD20F59E7EA3AB0E410CD00BD2 /* UnboundedBlockingQueue.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 7D20AD84EBC8559AE1142427250549A9 /* RCTInspectorDevServerHelper.h in Headers */ = {isa = PBXBuildFile; fileRef = DD6B376F981D957E30F8608A3BD3C449 /* RCTInspectorDevServerHelper.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 7D617B334260196169E0FE8AD7D20FCF /* HHWheelTimer.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 9833E76FD72AA77BD04299DE95E2078A /* 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"; }; }; - 7D65E22401B87E8D0DAFEF5834CCA3C5 /* DynamicParser.h in Headers */ = {isa = PBXBuildFile; fileRef = 48040670F59DBB3F85B5BDCCA8100CAC /* DynamicParser.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 7D88EE1929DEFE96EF497F85DA08C04E /* FIRCLSAsyncOperation.h in Headers */ = {isa = PBXBuildFile; fileRef = AB2EBB07BB6780F2CFD6D21C26BE1E35 /* FIRCLSAsyncOperation.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 7D93618A159EA534B4196ECBD2902DB4 /* CpuId.h in Headers */ = {isa = PBXBuildFile; fileRef = F5C5DF4C60B77F8383B42AB7ACBA6C09 /* CpuId.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 7D94D7FB203B2287C1355BD5F5F1F784 /* ARTGroup.h in Headers */ = {isa = PBXBuildFile; fileRef = 480AA8188F9EA701921324A062433032 /* ARTGroup.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 7D9978DD97658EB943E1EA22B33DAA08 /* UniqueInstance.h in Headers */ = {isa = PBXBuildFile; fileRef = B798703660D7BD3CEAD6BD9B086379AA /* UniqueInstance.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 7D9E6443BD24A99D1B173DCA77B5218F /* RCTBaseTextInputView.h in Headers */ = {isa = PBXBuildFile; fileRef = 075FCEEF9548E5D0153233C7A55D489D /* RCTBaseTextInputView.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 7DD0C09C604FE90E8A7194BE8C7DE737 /* CachelinePadded.h in Headers */ = {isa = PBXBuildFile; fileRef = E509FD956BD9317B6C7E872F35A42704 /* CachelinePadded.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 7DD7714471F9616142A0A440D6447ECB /* TimekeeperScheduledExecutor.h in Headers */ = {isa = PBXBuildFile; fileRef = E51825EED7240CC4E05BE009AC454015 /* TimekeeperScheduledExecutor.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 7DE7D30D7C202F40E14C4D074F1951FE /* FIRCLSReportUploader_Private.h in Headers */ = {isa = PBXBuildFile; fileRef = 50C41EF12D05B64B2E575D8C73550625 /* FIRCLSReportUploader_Private.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 7DE99E010F718BBD8EA0270E477F2618 /* FrameHeader.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 046E65A5FA88EDA7B63523764877B119 /* FrameHeader.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -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 -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors"; }; }; - 7E51F5112CD885712DFA7EDB05CF47B8 /* FileUtilDetail.h in Headers */ = {isa = PBXBuildFile; fileRef = DDAF0C9DBFFF10B30338CC4C086D1271 /* FileUtilDetail.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 7E6F72747D10C9B7CD78587E9FE6884E /* FIRInstallationsAuthTokenResult.m in Sources */ = {isa = PBXBuildFile; fileRef = 18571F19C03D63DC9FA1F9030B6EA0B9 /* FIRInstallationsAuthTokenResult.m */; }; - 7E6F9733E017E01726C98AA15FF2BA80 /* BugsnagEvent+Private.h in Headers */ = {isa = PBXBuildFile; fileRef = 00F410D95A943CF72FF7F8650F7719CF /* BugsnagEvent+Private.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 7E739B036E984FDD2D816E2DA1FAFF91 /* EventBaseBackendBase.h in Headers */ = {isa = PBXBuildFile; fileRef = 560446E9ECE8A3E9D5852595DDB3F947 /* EventBaseBackendBase.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 7E7C215179C583CC74036539DE29F4F3 /* AsyncSocket.h in Headers */ = {isa = PBXBuildFile; fileRef = F9443F644AE9D404E5CF0E1FF4F41249 /* AsyncSocket.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 7E7FFA60C1D90B81838454BD4D483BB7 /* StorageIndexer.h in Headers */ = {isa = PBXBuildFile; fileRef = 0AAB951C7E48D6D0976BFBBFE23D2F04 /* StorageIndexer.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 7E97C5F8F526ABED9B6C515CF3A2E142 /* EXSessionTaskDelegate.m in Sources */ = {isa = PBXBuildFile; fileRef = CC024E46040AD05842D1554339DB9DFF /* EXSessionTaskDelegate.m */; }; - 7EAB35268C3CC56C21DB094408FEBD84 /* AsyncSocketBase.h in Headers */ = {isa = PBXBuildFile; fileRef = 86DB9FF8A5FF212C97C3C37B038AAD4A /* AsyncSocketBase.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 7EC66A8857EA461928FA8D0D6E7D5155 /* Expected.h in Headers */ = {isa = PBXBuildFile; fileRef = 74331866546A2EF1194D00398E03F336 /* Expected.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 7EC9FD40B9B32FE93A86C3612F9B7C73 /* Hazptr-fwd.h in Headers */ = {isa = PBXBuildFile; fileRef = F8A293D697BEB0EB90B945383C617400 /* Hazptr-fwd.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 7EE009D01AF9BF64E81BE23BEE6F844B /* picture_tools_enc.c in Sources */ = {isa = PBXBuildFile; fileRef = CF5736726F34C338E30E0C2E192BFCEC /* picture_tools_enc.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; - 7EE4BC1ABEDBA90659B24F141AF2AE91 /* RCTAssert.m in Sources */ = {isa = PBXBuildFile; fileRef = 441502CC4AA123448A17A4F45A9351DD /* RCTAssert.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - 7EF5228B349A0A9705737D3366EF9FE6 /* ErrorCode.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 2F0F85D3DB77B73B2A983CB6A7ABF28B /* ErrorCode.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -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 -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors"; }; }; - 7F0A0E39C4B92F83FED7F63723E33BFF /* BugsnagSessionTracker.m in Sources */ = {isa = PBXBuildFile; fileRef = 7AE5CF45ABF4F6803BE087F741E80D4C /* BugsnagSessionTracker.m */; }; - 7F2AF7F6F21535CB0B16803076D6F010 /* UIImage+ForceDecode.h in Headers */ = {isa = PBXBuildFile; fileRef = 30775C17AD0C769308C8D4EBB9172108 /* UIImage+ForceDecode.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 7F2C6B04937DE29D98E39DF427E81959 /* cost_mips_dsp_r2.c in Sources */ = {isa = PBXBuildFile; fileRef = B9168CE688658C39AAA643B653709B19 /* cost_mips_dsp_r2.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; - 7F466EB6DF3E18B0EC2248B60B6A529B /* GDTCOREvent.h in Headers */ = {isa = PBXBuildFile; fileRef = 5CF3C79BD496F82B25133B4BBF8480A7 /* GDTCOREvent.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 7F545E647D39C256AD2575EC05D96D09 /* dec_clip_tables.c in Sources */ = {isa = PBXBuildFile; fileRef = 52670FF4817FA37ED38D1FAEBA55FE4C /* dec_clip_tables.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; - 7F78D9D983D7313785567B09AD93F9C2 /* BSGStorageMigratorV0V1.m in Sources */ = {isa = PBXBuildFile; fileRef = F401C944F2D198765DF6DC6A29B04212 /* BSGStorageMigratorV0V1.m */; }; - 7F8BAADDB284D0971026D330A2F1205A /* RCTCxxModule.mm in Sources */ = {isa = PBXBuildFile; fileRef = 7FE97DB842A59B5C2F615564FE5857EE /* RCTCxxModule.mm */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - 7F8D9FA55E2B841AEE4E3E70D09BFF35 /* BugsnagReactNative.m in Sources */ = {isa = PBXBuildFile; fileRef = 49835B928F1BD03B9BF8EFAFBC8B036A /* BugsnagReactNative.m */; }; - 7FA84C7CD5E366109C6B77E2A129C827 /* EDFThreadPoolExecutor.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 1CD803A9BEF9283EC2BA36AE359720AB /* EDFThreadPoolExecutor.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -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\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors"; }; }; - 7FB3CBE5BFDA11CB860B075A35EE3BFE /* RNSScreenStack.m in Sources */ = {isa = PBXBuildFile; fileRef = A77AADE54BAD99ECC1C2D6DFE43F452A /* RNSScreenStack.m */; }; - 7FC128EEA44FBE52AFF124900D4154CF /* UMUtilities.m in Sources */ = {isa = PBXBuildFile; fileRef = DECCCE09E7F014EABBD87DC1B1B5C2B0 /* UMUtilities.m */; }; - 7FC583A38AF7701D89913D5C5855A6FB /* huffman_utils.h in Headers */ = {isa = PBXBuildFile; fileRef = 32393333791182EC6F342CFCF50B78E5 /* huffman_utils.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 7FEAA9546ABF03904AAF6FF37C703F86 /* RCTKeyCommandConstants.h in Headers */ = {isa = PBXBuildFile; fileRef = BF72C69834CD282DFCE8ACCEEB7995E4 /* RCTKeyCommandConstants.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 7FF2E7325B201D1B10F7F692F86F6A5E /* LongLivedObject.cpp in Sources */ = {isa = PBXBuildFile; fileRef = A154FC57002D4A7C3A176A9677A855C0 /* LongLivedObject.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - 8036795D9FDBFCED6072CEA8AF77C6DE /* SmallLocks.h in Headers */ = {isa = PBXBuildFile; fileRef = 9660208B0CEFAE20C259097910CE9787 /* SmallLocks.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 8047FE35403325F4DADBC219D6DA75D8 /* ARTBrush.h in Headers */ = {isa = PBXBuildFile; fileRef = A9082B2BD3226DFFA225E5FFFB855224 /* ARTBrush.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 804C2BF2B5D48E0D4B9D56BFCF064540 /* raw_logging.h in Headers */ = {isa = PBXBuildFile; fileRef = 33CA2D791B052E6E11AC901556D70981 /* raw_logging.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 806D0A8C4C3A3CCCAE6FE0905BE8A994 /* BSG_KSCrashSentry_CPPException.mm in Sources */ = {isa = PBXBuildFile; fileRef = E3BBE7A4CE823D2C68A59F6AA015FA1C /* BSG_KSCrashSentry_CPPException.mm */; }; - 8097093CE2BDB0F92292DB82D8C3E84A /* BugsnagBreadcrumb+Private.h in Headers */ = {isa = PBXBuildFile; fileRef = 73C84770ED47B977C24E8DC125B6EC1B /* BugsnagBreadcrumb+Private.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 809BA0C4B85D298B26F1746657E5EFC8 /* RNCSlider.m in Sources */ = {isa = PBXBuildFile; fileRef = A4E5D8024113C04A308B589034455548 /* RNCSlider.m */; }; - 80A1125795308BA217DCA8B8694A9BD5 /* pl.lproj in Resources */ = {isa = PBXBuildFile; fileRef = E9727559286383AEBBDE40C6EC18F9F5 /* pl.lproj */; }; - 80E7699B50C52242C98EFC2BD9235E1B /* REATransitionManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 1D5E991FA1F0360C7AAA387F45E784D2 /* REATransitionManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 80EBA8DD6148D9BB730B02135BF4BBF3 /* FileUtil.h in Headers */ = {isa = PBXBuildFile; fileRef = AA074CE31B00318F430EE520E2BB8096 /* FileUtil.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 80FA1A9F4EE87D999EE8DE727165AA7E /* ReactNativeUiLib-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = AE8AC1829EFA92E41449AE5D122C171F /* ReactNativeUiLib-dummy.m */; }; - 810C9DA3B4AD46B1EFD35806B7599CE9 /* FIROptionsInternal.h in Headers */ = {isa = PBXBuildFile; fileRef = B66CDF20D4E34DD68D5EEBC0BAE954FD /* FIROptionsInternal.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 8110D3253B83576E967CD129392AF7C6 /* MacAddress.h in Headers */ = {isa = PBXBuildFile; fileRef = EFAF65A558262424D56BC320489FDC28 /* MacAddress.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 811E741095A86BE41D5FFF8B8A57F71B /* BugsnagCrashSentry.h in Headers */ = {isa = PBXBuildFile; fileRef = 320D2D9ED3CB8B62056C35DC07E096D4 /* BugsnagCrashSentry.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 813B0A04E9F0D15D00BC41403564F37E /* SDWebImageCacheKeyFilter.m in Sources */ = {isa = PBXBuildFile; fileRef = 71EF12AE0C678D1106C73CA089B8FDAC /* SDWebImageCacheKeyFilter.m */; }; - 8140514C7C64A055A01F738AF5FE076D /* UMExportedModule.m in Sources */ = {isa = PBXBuildFile; fileRef = B775B43D0D55C6186D1F81AACAC574A6 /* UMExportedModule.m */; }; - 815232FF104ADC5B9E035083E4E29634 /* RCTSafeAreaViewManager.m in Sources */ = {isa = PBXBuildFile; fileRef = 94DB5F79A325AE3462321F5B421B3675 /* RCTSafeAreaViewManager.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - 8167843771E3B47476358AFD9885E554 /* SDDeviceHelper.m in Sources */ = {isa = PBXBuildFile; fileRef = 028531ED5B236705CDB771CB2927310C /* SDDeviceHelper.m */; }; - 81A2FFCFB7C5FB3DD14807DDA43C839A /* RNBackgroundTimer.h in Headers */ = {isa = PBXBuildFile; fileRef = F59574F26EAD934B166EC8F9C822F2FD /* RNBackgroundTimer.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 81B5731D55B383BBAA088D9AFEA7328A /* SDWebImageError.h in Headers */ = {isa = PBXBuildFile; fileRef = 25706E9BC7882308E1CBADFE1696B9B3 /* SDWebImageError.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 81CBA279C2D7F9FEDC5F11CE2ECFFB58 /* UIColor+SDHexString.h in Headers */ = {isa = PBXBuildFile; fileRef = 8C64D5E749D0C9E115805E9FF856C854 /* UIColor+SDHexString.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 81DF7074ADBE7B72728CF21BAD425B47 /* lossless_enc_sse41.c in Sources */ = {isa = PBXBuildFile; fileRef = 1C1EE646B96355CEC7249BBC052C77EC /* lossless_enc_sse41.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; - 81E1BECFF015AAC4B6740FF761011701 /* RCTDisplayLink.h in Headers */ = {isa = PBXBuildFile; fileRef = 79BFEF1825847DD28E26539EE299B92B /* RCTDisplayLink.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 81EFF28CA9DB0F08B24762355295F8F8 /* RCTAlertController.m in Sources */ = {isa = PBXBuildFile; fileRef = E6E79FE021EE1FF1B04B701B1D757EEB /* 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"; }; }; - 8200366131B5B6B9EFDCE7A2F71EF9BC /* ConnectionSet.h in Headers */ = {isa = PBXBuildFile; fileRef = 37F4A35654D7581640A4041759FD1C2B /* ConnectionSet.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 8209AB28F2C10DE6E05725D67980B868 /* RCTNativeAnimatedModule.mm in Sources */ = {isa = PBXBuildFile; fileRef = 6CADFA2A40FBABA870ABD822D9B135E7 /* 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"; }; }; - 820A37B2380C9A5F617F676F1BD63079 /* HazptrThreadPoolExecutor.cpp in Sources */ = {isa = PBXBuildFile; fileRef = E2C60A3260F71E892868D6AD6AEAF785 /* 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"; }; }; - 8219A72DF5F0D9ADF8EE6548F22B1012 /* Observables.cpp in Sources */ = {isa = PBXBuildFile; fileRef = AE90C8B5FF1EB890795F8EFBBE3B16F2 /* Observables.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -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 -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors"; }; }; - 824C84CF6B400E0942B2866D95294CC4 /* FBCxxFollyDynamicConvert.h in Headers */ = {isa = PBXBuildFile; fileRef = 6940E70BC2B82A3348601D7EB06E6568 /* FBCxxFollyDynamicConvert.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 826F3B2FB4ECF5FA48963C64000BDB32 /* SingletonRelaxedCounter.h in Headers */ = {isa = PBXBuildFile; fileRef = 14C7ED7A9BB3E80BD1FFA1CB82001C31 /* SingletonRelaxedCounter.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 827AF42DCA6F6EA709B194DFB836C856 /* Hash.h in Headers */ = {isa = PBXBuildFile; fileRef = 1552C077ACD09853FBB69E829A0ACB17 /* Hash.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 8292AD15ACEF94D94BC20F700AD9E23A /* GlobalExecutor.h in Headers */ = {isa = PBXBuildFile; fileRef = 8D0C14BFCFF30C61341F3F7AF0BE77AC /* GlobalExecutor.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 82940B4A35BBAA49939E09C3493C5409 /* ConnectionDemux.h in Headers */ = {isa = PBXBuildFile; fileRef = 0CCA0D29921C0C30861DFC9EA324B1CC /* ConnectionDemux.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 829E92AEC5D3847D88CF8C71C82874B4 /* anim_decode.c in Sources */ = {isa = PBXBuildFile; fileRef = 530F1C764011FFBC084B034896A6E8A4 /* anim_decode.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; - 82B7894B29F805155E87F73CD2336CEC /* json_pointer.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 42E07FEF574DA0ECD1BC7F643A4EC7CE /* 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"; }; }; - 82E7A8035A91E672B4BDCA59E4E21E99 /* RCTManagedPointer.mm in Sources */ = {isa = PBXBuildFile; fileRef = 8AD0F0D4592049D910132658A22E08AB /* RCTManagedPointer.mm */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - 82F65CF078D09E8C005421B6EDD67F49 /* AtomicNotification.h in Headers */ = {isa = PBXBuildFile; fileRef = 0AA7D6C7EE116FB089F092288EDD2DDB /* AtomicNotification.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 83000B2E422499D45FBF61BCF36CEB93 /* FIRCLSProfiling.h in Headers */ = {isa = PBXBuildFile; fileRef = 96A65951DF1FD441212C181B834813A3 /* FIRCLSProfiling.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 830EB97DC135460E1D5778A13B643A56 /* BugsnagEvent.m in Sources */ = {isa = PBXBuildFile; fileRef = 63C45641EB5DB3C16645B6FADBA569B7 /* BugsnagEvent.m */; }; - 8316E4D799B9260284EC4C167E7C9C81 /* BugsnagKVStore.c in Sources */ = {isa = PBXBuildFile; fileRef = BFF9EC62AB53882036DC920F1DC18E0E /* BugsnagKVStore.c */; }; - 8317678B229ECCA17A5FB85AD458F037 /* VibrancyView.h in Headers */ = {isa = PBXBuildFile; fileRef = E65F59936EEA71AA441C0A9D942FFAEA /* VibrancyView.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 83275ADA5A6DB026C1CDBE784270C59F /* RCTUITextField.h in Headers */ = {isa = PBXBuildFile; fileRef = 5ACE5409F7D0811D41E16155430497AC /* RCTUITextField.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 83344A36E5121FC0C1AAF26F92D551DE /* FLEXNetworkTransaction.m in Sources */ = {isa = PBXBuildFile; fileRef = 8F1AE93585C2CC012BB0818F5C033122 /* FLEXNetworkTransaction.m */; settings = {COMPILER_FLAGS = "-DDEBUG=1 -DFLIPPER_OSS=1 -DFB_SONARKIT_ENABLED=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -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"; }; }; - 83474599635C0AB87BD99C9475E49771 /* Flipper-Glog-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = B335892566A9D0203E6E06C4932EBC6B /* Flipper-Glog-dummy.m */; }; - 83560D799D66A44B6025A30F0E203297 /* GDTCORTransformer.h in Headers */ = {isa = PBXBuildFile; fileRef = 459058C8C420DB25AC00366251542B31 /* GDTCORTransformer.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 835772349195398E0BFCC6F418AAA71D /* Utility.h in Headers */ = {isa = PBXBuildFile; fileRef = 92568FDF28118EA53C8947A0124C1273 /* Utility.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 8377AADFCADC26F754FE60AAE8EE5683 /* MPMCQueue.h in Headers */ = {isa = PBXBuildFile; fileRef = 7E75554C6C3D8AB01B1D0B5851FEACB5 /* MPMCQueue.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 837DAA54A335AE778D45281B9B71687E /* EXSessionUploadTaskDelegate.h in Headers */ = {isa = PBXBuildFile; fileRef = 81EB88AF33AF8FCFE87CD8EACA206B4F /* EXSessionUploadTaskDelegate.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 838B6C9A10FAB50834AF50D067369F63 /* BSGEventUploadKSCrashReportOperation.m in Sources */ = {isa = PBXBuildFile; fileRef = 574448DDB956D4C4A26897FFD13475A1 /* BSGEventUploadKSCrashReportOperation.m */; }; - 83A90E8B7FDE9818721E8002C5F8D919 /* UIImage+MemoryCacheCost.h in Headers */ = {isa = PBXBuildFile; fileRef = 9C5FEF15984208664BD1D21E2627057A /* UIImage+MemoryCacheCost.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 83ABD9CC69D169904083B7387D9F9262 /* HazptrRec.h in Headers */ = {isa = PBXBuildFile; fileRef = 4B6B9023DD73576E9A084D6BAB8A8500 /* HazptrRec.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 83EE56FE1B991A5596F66613FF207E3D /* BSGSerialization.m in Sources */ = {isa = PBXBuildFile; fileRef = CA5710B5600A232F2F638BD59F307CCC /* BSGSerialization.m */; }; - 84124AE25EBFFE6A589291D9F9F408C9 /* HazptrDomain.h in Headers */ = {isa = PBXBuildFile; fileRef = 73E41D6E861C487FF12A532066A0920A /* HazptrDomain.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 84179ECCE7AA9C97A327A6401F722F80 /* TurnSequencer.h in Headers */ = {isa = PBXBuildFile; fileRef = 0F0F007E490BD7A6AD5E2861E1F025A7 /* TurnSequencer.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 84242CF4A052DB04E88AF99C26F083BC /* RCTImageLoader.h in Headers */ = {isa = PBXBuildFile; fileRef = CB338AADDEBFFCE1DAE9153E8BD54079 /* RCTImageLoader.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 8426B85C97EB7E927A5B60C8F33BDC34 /* GDTCORUploadCoordinator.h in Headers */ = {isa = PBXBuildFile; fileRef = 23D46A4B7D4AF7D3AD7C0C7AC6357FA1 /* GDTCORUploadCoordinator.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 842C67398B5E5B183E98774CFDE33CB1 /* BugsnagKeys.h in Headers */ = {isa = PBXBuildFile; fileRef = D03FB8816A2AB881FD70B5B6B25F9651 /* BugsnagKeys.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 845985CF5A68FF849D17450459946D3F /* FIRCLSdSYM.h in Headers */ = {isa = PBXBuildFile; fileRef = FF1E5960C85CE08107861C1055BE68B1 /* FIRCLSdSYM.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 84634F1E1435697C00C422F41292E26D /* RCTVirtualTextShadowView.h in Headers */ = {isa = PBXBuildFile; fileRef = 478DF8C445CCDF77B39FA9B32149D61C /* RCTVirtualTextShadowView.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 8463995436BC0640AB9003330E55A77A /* MicroLock.h in Headers */ = {isa = PBXBuildFile; fileRef = B4FBBE4BE1E75B75A567276F3B442B94 /* MicroLock.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 847355C63F4362007816EEEC9C478601 /* FIRCLSDataParsing.c in Sources */ = {isa = PBXBuildFile; fileRef = 043397C0E2974CE55163AFD49A0BFBA1 /* FIRCLSDataParsing.c */; }; - 849264ECD2A1B188F8221C0D9504E330 /* RCTLayoutAnimation.h in Headers */ = {isa = PBXBuildFile; fileRef = 550F4A1CB3049209E177D33601E9B7C0 /* RCTLayoutAnimation.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 84ABD0A337B65FBFB553EDB51835D8D6 /* ProxyLockable-inl.h in Headers */ = {isa = PBXBuildFile; fileRef = 3B61349BDE1BBD7581068301130AA7B8 /* ProxyLockable-inl.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 84ACD61B97AD00786A33F91D32FD4992 /* RCTRootShadowView.m in Sources */ = {isa = PBXBuildFile; fileRef = F619F6E9441077F0E51EB483160227A3 /* RCTRootShadowView.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - 84B10907D43DD570150B876D985FB33D /* Foreach-inl.h in Headers */ = {isa = PBXBuildFile; fileRef = 84A7E4EA97CD08BAA03992168255DF5F /* Foreach-inl.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 84DC2EA18DF9E7B97321C9B61F1F4A26 /* RCTJavaScriptLoader.h in Headers */ = {isa = PBXBuildFile; fileRef = 9CFA170F05C3C601903D7C2A7A727F25 /* RCTJavaScriptLoader.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 84DF6CCEF557C0A6293198D98F755141 /* FirebaseCrashlytics-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 54016B7EE3DEBAD705D147B677B5369F /* FirebaseCrashlytics-dummy.m */; }; - 84EA0952DF11169AA9927BCA0AD50CAB /* enc_mips_dsp_r2.c in Sources */ = {isa = PBXBuildFile; fileRef = DE10C6C8FDDFDEA4542FC71322F6D75A /* enc_mips_dsp_r2.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; - 84EC5DA53066483EC80B2F2110F6AE25 /* libevent-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 3D196C4EDEB47415D485A0236AC6D8D3 /* libevent-dummy.m */; }; - 84EFF21EFDB35A95B7022ED715485541 /* StaticTracepoint-ELFx86.h in Headers */ = {isa = PBXBuildFile; fileRef = A96FC450C08890803E2BAB0375AA0B02 /* StaticTracepoint-ELFx86.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 85043B05FEE95C701F50E019113AE2BF /* StringKeyedSet.h in Headers */ = {isa = PBXBuildFile; fileRef = 61C1AC94DA8359D54DFA47BA5050F019 /* StringKeyedSet.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 85125DBD7C968CF0836266E8C810EC87 /* FIRCLSDemangleOperation.mm in Sources */ = {isa = PBXBuildFile; fileRef = E0C4E152DE6AB8C0C9C6931C1350B01B /* FIRCLSDemangleOperation.mm */; }; - 8530672DFE52B69CF52258E3A952DD07 /* IPAddress.h in Headers */ = {isa = PBXBuildFile; fileRef = EB7F915F146B38A65846A157B7FB3EC6 /* IPAddress.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 853E8B3E4B9502AC2D1B8BA984123FA2 /* FBLPromise+Always.m in Sources */ = {isa = PBXBuildFile; fileRef = EFDCFE3582FA69D9B77B4B503E169BE2 /* FBLPromise+Always.m */; }; - 854CAD54469506BFE668C1A805B1ECDE /* RangeSse42.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 3AF1EEF7F1F5EBC06486735CE5F3E758 /* RangeSse42.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -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\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors"; }; }; - 85633AF74F8624D79B9F700CC67696AB /* Future-pre.h in Headers */ = {isa = PBXBuildFile; fileRef = 6BFB4F0358B1ACEFB5E3C7512D6AD07A /* Future-pre.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 8576C2E6FE0D4B9F83AE7BE0B466E1CB /* React-Core-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 9AE69C4075F10FB677FDB33EC3800CD5 /* React-Core-dummy.m */; }; - 8577C9A386712B9ABF982FE880A1072D /* FIRCLSContext.h in Headers */ = {isa = PBXBuildFile; fileRef = 1E39C777BCB1CBEC757CF7DB20CD46B3 /* FIRCLSContext.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 8578DDFE959A8B9E849C90273A27334C /* lossless_sse2.c in Sources */ = {isa = PBXBuildFile; fileRef = F60B8B4C00F766209BDBF4C89C226F47 /* lossless_sse2.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; - 8587D2228B4EF7D0261FB74DE8EF99F6 /* Format-inl.h in Headers */ = {isa = PBXBuildFile; fileRef = A1B24C17B642E8896288A691DB8F105C /* Format-inl.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 858A0C6D75E5E564AE0AB1C0499498BE /* RCTScrollView.h in Headers */ = {isa = PBXBuildFile; fileRef = 838D1BC1B1D71324DA582F1D93B77A63 /* RCTScrollView.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 85B417A893DC287D0A57F68E501B497A /* PackedSyncPtr.h in Headers */ = {isa = PBXBuildFile; fileRef = D086FD2DC70AB96A859578DC6120A23B /* PackedSyncPtr.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 85B8F33ABCFCEA5D376A43B1DB3AD8FA /* UninitializedMemoryHacks.h in Headers */ = {isa = PBXBuildFile; fileRef = 62DA78B0C8B22C0F5F258C14B2B653A9 /* UninitializedMemoryHacks.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 85BD31E00EC5C96D4C167856A04AC9E5 /* CancellationToken-inl.h in Headers */ = {isa = PBXBuildFile; fileRef = F9A922675A0AEE799DFC55AF54CD6D29 /* CancellationToken-inl.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 85C065D11414723018B96EA8E79BB826 /* InspectorState.h in Headers */ = {isa = PBXBuildFile; fileRef = F2A83070D76D4896271A32C9846E7EAC /* InspectorState.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 85D704B1FB1B5234CC4748F1634186ED /* RCTMultiplicationAnimatedNode.h in Headers */ = {isa = PBXBuildFile; fileRef = E75DC717CE866A378A65C768DBF983EE /* RCTMultiplicationAnimatedNode.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 862D6D73149966399B22478C16E11F8E /* RCTAnimationType.h in Headers */ = {isa = PBXBuildFile; fileRef = 60D1A26443E475C946E7CBB625FC3318 /* RCTAnimationType.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 86454D38412005D85921EEF3D75901B2 /* Poly.h in Headers */ = {isa = PBXBuildFile; fileRef = FF502F3EBDB9A79E6731736B20C705A2 /* Poly.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 864DF121D43C18629973838F25311351 /* FIRComponent.h in Headers */ = {isa = PBXBuildFile; fileRef = 37E86C5D337B57126E07CA772629577A /* FIRComponent.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 86651F73CFBD505788C532FA87A02464 /* RCTAccessibilityManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 5AE726FBD7EA3190FFA99F5A8DF3F737 /* RCTAccessibilityManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 8672C1643AC92F19E0E0DE401FFEA402 /* Fixture.h in Headers */ = {isa = PBXBuildFile; fileRef = 05C29C67833AA8536353E274D98D3DF9 /* Fixture.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 868340B25C4BA08F09F7064CEF2C97DB /* FBLPromise+Catch.m in Sources */ = {isa = PBXBuildFile; fileRef = F52F845A189384EC9BBD6B8783511AD3 /* FBLPromise+Catch.m */; }; - 869311CB33FA7DDC918D26F9477BD90C /* ssim.c in Sources */ = {isa = PBXBuildFile; fileRef = A61F1D11A4487E7EB38BE9486F5B775B /* ssim.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; - 869AF1FA3CA8A58E80C69F407728F9C5 /* GULReachabilityMessageCode.h in Headers */ = {isa = PBXBuildFile; fileRef = 071524D959DA1A66674ED6538F569B20 /* GULReachabilityMessageCode.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 86B1E7288D9558909F90EB88F53F5916 /* GULUserDefaults.h in Headers */ = {isa = PBXBuildFile; fileRef = 960AFA97C6DCB819D930DEC1EA15BF49 /* GULUserDefaults.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 86B534E23C762F4C102C3D057E28B99F /* RCTLinkingPlugins.mm in Sources */ = {isa = PBXBuildFile; fileRef = 3B97C66180DF19949AF1558D6A0033C4 /* 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"; }; }; - 86CF760C678BE3261CC6D1EFA70CCA61 /* RNGestureHandler.m in Sources */ = {isa = PBXBuildFile; fileRef = B651F536139C25C10C31A34A85FEFB3B /* RNGestureHandler.m */; }; - 86F4B23D5F969E0293D08F7A3C41AB0F /* BSG_KSCrashIdentifier.h in Headers */ = {isa = PBXBuildFile; fileRef = 43AF0B370689AA129AD26A1065F12CAE /* BSG_KSCrashIdentifier.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 8706AFEFAB22494BE072E1FEA9EAAE3B /* RCTScrollContentShadowView.m in Sources */ = {isa = PBXBuildFile; fileRef = 81A05C8E8890D8184D5C24DB13E3B2D9 /* RCTScrollContentShadowView.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - 8712A013B77EFFFE014DA5E077E5AD8F /* PTProtocol.h in Headers */ = {isa = PBXBuildFile; fileRef = 7F934D5CF6DFDE0A7D00F52698ED4CA6 /* PTProtocol.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 872AD763BA18B8492B37B7F874738366 /* React-RCTBlob-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 28A8F597A0C2B9228920010A7D3BA31D /* React-RCTBlob-dummy.m */; }; - 873D5BBC800EC81BA055921080E0AD26 /* en.lproj in Resources */ = {isa = PBXBuildFile; fileRef = C33C6F61CDBFDA394DA7D50D55E37F81 /* en.lproj */; }; - 87469251DF01A53605D1D124DECD9442 /* RNCAsyncStorageDelegate.h in Headers */ = {isa = PBXBuildFile; fileRef = F28AFBA649D98C9468C89AEAE0F12E2D /* RNCAsyncStorageDelegate.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 874929B9211E983EF8666A593A52C81F /* BugsnagConfiguration.h in Headers */ = {isa = PBXBuildFile; fileRef = 74C2665FF0FD8E698863719998648C12 /* BugsnagConfiguration.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 874B590FD8C3A1294C494CD5F4EA6C7E /* openssl_md5_locl.h in Headers */ = {isa = PBXBuildFile; fileRef = 15286ADE9046ACD7BB6938AB34C77DDC /* openssl_md5_locl.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 876A6A5DA33B81786F967190C0671563 /* FIRCoreDiagnosticsData.h in Headers */ = {isa = PBXBuildFile; fileRef = FC6D40DB7C45B03A921125161D7D475E /* FIRCoreDiagnosticsData.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 8779CE84F6D672DD69A5443A229CB3EC /* FBLPromise+Reduce.m in Sources */ = {isa = PBXBuildFile; fileRef = 0271636F098B9253BAF63D59B427D695 /* FBLPromise+Reduce.m */; }; - 878C0A25C824EF3B277CC512A0220D8A /* lossless_enc_msa.c in Sources */ = {isa = PBXBuildFile; fileRef = D796A028626A993301936F75D47B1E5F /* lossless_enc_msa.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; - 87BC99FFD3F4C09623A5C8D6EA5A8166 /* ThreadLocalDetail.h in Headers */ = {isa = PBXBuildFile; fileRef = 6B6792230C95B3E30825ACD9B116B40D /* ThreadLocalDetail.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 87CE2D5341C70A15F3D5CDF03FEB5B8D /* YGMacros.h in Headers */ = {isa = PBXBuildFile; fileRef = 7580B58FA5ADD47A6A8B642F8F19CB50 /* YGMacros.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 87D24C209ED7E58108EBB3064EA2EE45 /* RCTModalHostViewManager.m in Sources */ = {isa = PBXBuildFile; fileRef = BB425AA1BAB6D0A9A235C609336095DA /* RCTModalHostViewManager.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - 87D844AA8BE16811A4A7BDB925ECFED3 /* RNGestureHandlerRegistry.m in Sources */ = {isa = PBXBuildFile; fileRef = 34BBD5BBCA8379CE3AC869AF69F13FA2 /* RNGestureHandlerRegistry.m */; }; - 87DF170F86D7B09B7E208D3D667CCE20 /* CompactValue.h in Headers */ = {isa = PBXBuildFile; fileRef = 43FE0A52F652BCA6541CD75F6855A028 /* CompactValue.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 87E01C152DAB64EDBA5630CF2A452E5F /* FIRCLSNetworkClient.h in Headers */ = {isa = PBXBuildFile; fileRef = FB93C116608C7D0893D4BF7038D99D1F /* FIRCLSNetworkClient.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 87FAE4A24D333EB4AEA5BF72137525E4 /* RCTLinkingManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 603DE106673E866A530CB5FBA50E0F94 /* RCTLinkingManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 8803911BE03AAB7FC2FD32E9091C3413 /* Arena-inl.h in Headers */ = {isa = PBXBuildFile; fileRef = 5EC93F69EB17565DC472711C55309B4C /* Arena-inl.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 8826F32DD76619864079E4D5AF5D36BE /* BSG_KSCrashC.h in Headers */ = {isa = PBXBuildFile; fileRef = EEEF5FAAE4B42250CBF1B3FF63D486E3 /* BSG_KSCrashC.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 884B5F19587F1A3FEA68030A268D572F /* FlipperKitReactPlugin.m in Sources */ = {isa = PBXBuildFile; fileRef = 8031872DCCE430B11F0E3C6A6E3DC9FC /* FlipperKitReactPlugin.m */; settings = {COMPILER_FLAGS = "-DDEBUG=1 -DFLIPPER_OSS=1 -DFB_SONARKIT_ENABLED=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -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"; }; }; - 88C808AB0898EEF8B94E01F1A7CEA8DC /* Stdio.h in Headers */ = {isa = PBXBuildFile; fileRef = 98C8C0BAD902465510161FDA9A574223 /* Stdio.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 88E117081C5E333018F94699ECC05F16 /* RCTJSScriptLoaderModule.h in Headers */ = {isa = PBXBuildFile; fileRef = 8DC86699D7FF06D9AC2D7824184FFD21 /* RCTJSScriptLoaderModule.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 88EA06C0214D08253801EAB5946BFB7B /* ManualTimekeeper.h in Headers */ = {isa = PBXBuildFile; fileRef = 08FA31C50853621E0FBE3852C4C240DC /* ManualTimekeeper.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 88FB00DA4C7C599F38772B29B6B39AA8 /* SpookyHashV2.h in Headers */ = {isa = PBXBuildFile; fileRef = 50261AF3C745BB3A0CDFA2344529F574 /* SpookyHashV2.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 89013A6DFF0630C6D13CF2DEEEA681E7 /* Assume.h in Headers */ = {isa = PBXBuildFile; fileRef = C86DF7EF0D2DB8F15D67CAB2D5C16B89 /* Assume.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 8918DC8B349ABC5E0F857B3F3A79D075 /* GULReachabilityChecker.m in Sources */ = {isa = PBXBuildFile; fileRef = 2B718F26729C506A76A2B66E211E6927 /* GULReachabilityChecker.m */; }; - 8927E0F08B36EF9815D7A476CE9E753F /* UIView+WebCache.m in Sources */ = {isa = PBXBuildFile; fileRef = C86BB786B3B58004A16C9CAF9B645A88 /* UIView+WebCache.m */; }; - 8952518B702D1DCBAB0EB6FA822A7BBD /* SanitizeThread.cpp in Sources */ = {isa = PBXBuildFile; fileRef = A27423CFA6F234FE0C8C47A25AA11A1E /* SanitizeThread.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -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\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors"; }; }; - 89566524B54CD995DD46313D083F8E2A /* RCTBlobPlugins.mm in Sources */ = {isa = PBXBuildFile; fileRef = 89E76C6091B3365DFAFAB90BF5C9CFDF /* 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"; }; }; - 896421FEC4C27E1D4527EBA03ECF5037 /* SDAsyncBlockOperation.h in Headers */ = {isa = PBXBuildFile; fileRef = 5D7795BE80B6157A02063B428151BA3C /* SDAsyncBlockOperation.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 896F8CA8A963FD3DA7B78752A73DFDCF /* RCTConvert+CoreLocation.h in Headers */ = {isa = PBXBuildFile; fileRef = A01A966EA9B80F740CA05FDAE563EFD8 /* RCTConvert+CoreLocation.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 89797E2212FB09B884ACDE399A2B1B06 /* Sockets.h in Headers */ = {isa = PBXBuildFile; fileRef = FE5C2E5ECE500F046DDAEFBB1AA82A09 /* Sockets.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 899535A2E478C13DA2D193CA3BE28847 /* ipv6-internal.h in Headers */ = {isa = PBXBuildFile; fileRef = 72835F36D45E0327A28A757A7B2340F9 /* ipv6-internal.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 899FFCA3B165C5CD1981DB5BCCAD5239 /* EXAudioSessionManager.m in Sources */ = {isa = PBXBuildFile; fileRef = F8D50667E4ED06A26937DE3CB1093BF5 /* EXAudioSessionManager.m */; }; - 89A9FCC7ABF5C38919E8F045224CC8BB /* FIRAnalyticsConfiguration.m in Sources */ = {isa = PBXBuildFile; fileRef = 3F522791A3F04533C3EE619702346991 /* FIRAnalyticsConfiguration.m */; }; - 89AE893A96F60B5E879214A05480D1C3 /* BSG_KSObjC.h in Headers */ = {isa = PBXBuildFile; fileRef = E2B5FC28C6329188208C5332F782776C /* BSG_KSObjC.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 89CC065E38105426D8C34465243945BB /* Conv.h in Headers */ = {isa = PBXBuildFile; fileRef = 0284EBCEAA398D64FA047A23F7CE1818 /* Conv.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 89CEE170B3342EB702B3A9B2C1AD7861 /* NSButton+WebCache.m in Sources */ = {isa = PBXBuildFile; fileRef = B29C1B4AEAB65007F1EE031667FAF0FC /* NSButton+WebCache.m */; }; - 89D4E55B3B9C400960A626ACF043D719 /* bufferevent-internal.h in Headers */ = {isa = PBXBuildFile; fileRef = 6A1E9C1B0EFF5B1C55F68933D06863DE /* bufferevent-internal.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 89E84F8839C0774350C23C68CE2E37D3 /* DecoratedAsyncTransportWrapper.h in Headers */ = {isa = PBXBuildFile; fileRef = BFA4879CBA92A53717B01D68F383A73F /* DecoratedAsyncTransportWrapper.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 89F6EC1FCF0F8D600C23E302E580B078 /* F14Mask.h in Headers */ = {isa = PBXBuildFile; fileRef = 065FBA790EB915D267BFD279DCEA5863 /* F14Mask.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 8A0031FD5982F5CC51FD1C1F189F99F3 /* GDTCOREventTransformer.h in Headers */ = {isa = PBXBuildFile; fileRef = DA1A7C7065BBB16BAB98F0BA2DBDF640 /* GDTCOREventTransformer.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 8A098B3129C68AA270BDF0E6212E6B8B /* RCTBaseTextViewManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 66F0D8BBD14EFB8EA9197CDCE644FAB0 /* RCTBaseTextViewManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 8A352045E1BAAC27B90EF7BE3CB24C1B /* File.cpp in Sources */ = {isa = PBXBuildFile; fileRef = FAFCCD7B99AE6159D261163AC8C4ABBF /* File.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -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\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors"; }; }; - 8A469132AC842D6FAC073671391109DA /* BSGEventUploadKSCrashReportOperation.h in Headers */ = {isa = PBXBuildFile; fileRef = 3B58D254DBD56810C7C07ABA162011BB /* BSGEventUploadKSCrashReportOperation.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 8A55987C4F771B347469F38084E35465 /* RNGestureHandlerDirection.h in Headers */ = {isa = PBXBuildFile; fileRef = 1E688FE81B06A10237ADB57140A2DC8C /* RNGestureHandlerDirection.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 8A5A286273E341E6CC3BBCF13EE92739 /* BugsnagBreadcrumbs.m in Sources */ = {isa = PBXBuildFile; fileRef = C60F0BD5F22F65B8ECCCB31C20A6C5E1 /* BugsnagBreadcrumbs.m */; }; - 8A5EBC158E3587759189F90128C1E8AF /* GFlags.h in Headers */ = {isa = PBXBuildFile; fileRef = 183DEFA82BC9DB9C9B0C37345C7E6763 /* GFlags.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 8A6897540FD7F2E503BDB0FF9A072853 /* BSGStorageMigratorV0V1.h in Headers */ = {isa = PBXBuildFile; fileRef = D40C3533BF228493CCEDE27D1FB64084 /* BSGStorageMigratorV0V1.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 8A6C3B3B30FDE9299D4B64509B9671C7 /* NamedThreadFactory.h in Headers */ = {isa = PBXBuildFile; fileRef = B3C6BFB580171BD8CB2AC2C4D3FDE006 /* NamedThreadFactory.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 8A736F87F6376165CEF7471B8148F5CE /* GULAppDelegateSwizzler.h in Headers */ = {isa = PBXBuildFile; fileRef = 4FD51AC155A82E1BD08CC8EEB840440C /* GULAppDelegateSwizzler.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 8A7548CF5CC84894C8EBD3F48A997860 /* SDImageLoader.m in Sources */ = {isa = PBXBuildFile; fileRef = 636EA45DECCDA93699ABC2B3569AB75E /* SDImageLoader.m */; }; - 8A7CA5DBE530728426BE5AA59945F7CE /* VirtualExecutor.h in Headers */ = {isa = PBXBuildFile; fileRef = B6256683A3DCE9CB6912C1017947136B /* VirtualExecutor.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 8A7D91895A1BB38D3CFDBB931E0718E7 /* String-inl.h in Headers */ = {isa = PBXBuildFile; fileRef = BA128D60C396E9F6F2E87021A86DF3E9 /* String-inl.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 8A8A4A4AEAA9205C8F4C8B12DF5395F2 /* Portability.h in Headers */ = {isa = PBXBuildFile; fileRef = 97E927B66185AC875950011515566C7E /* Portability.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 8ACE8E6D499B1E6DE4E2918E26526832 /* Select64.h in Headers */ = {isa = PBXBuildFile; fileRef = 2F67A5F42B06C732F114178CBE4CA845 /* Select64.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 8AE0F3756B30F9D2A378D68E4596A514 /* UIColor+SKSonarValueCoder.mm in Sources */ = {isa = PBXBuildFile; fileRef = 112FB65056DB5FBF8B435ACD05AF3E49 /* UIColor+SKSonarValueCoder.mm */; settings = {COMPILER_FLAGS = "-DDEBUG=1 -DFLIPPER_OSS=1 -DFB_SONARKIT_ENABLED=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -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"; }; }; - 8AF95E3907FA15C3A152A802BCAE4032 /* FIRCLSURLSessionTask.h in Headers */ = {isa = PBXBuildFile; fileRef = 98B00F71EF99AF2042883F39A85341E1 /* FIRCLSURLSessionTask.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 8B076718314BF12CC935D17DB55025E0 /* GULNetworkLoggerProtocol.h in Headers */ = {isa = PBXBuildFile; fileRef = E5FBFF562348BFED4DA0A752A2AEC5F5 /* GULNetworkLoggerProtocol.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 8B710645EC5AA2DACA3445C51FB82FFF /* crashlytics.nanopb.h in Headers */ = {isa = PBXBuildFile; fileRef = 5463A1ED9389FDAE33B159B05CD39CCD /* crashlytics.nanopb.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 8B8EE6BEDB54E7F2E8211F51AFB1E0D2 /* Core.h in Headers */ = {isa = PBXBuildFile; fileRef = 0B5DDF99B9B8A7E45B951E939DAB22B0 /* Core.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 8B97D5122D76BF0A49B4A245FF6B161A /* Syslog.h in Headers */ = {isa = PBXBuildFile; fileRef = 21DE4820CB09FD8DF00F8B3310FA446F /* Syslog.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 8BA94BDFAEBC1986F5E16919F3DFD3CF /* TimekeeperScheduledExecutor.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 08F7AB15CCBD249EB8343CB69FCE435F /* 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"; }; }; - 8BACD6D08335CACDAC7EC574B832A193 /* READebugNode.m in Sources */ = {isa = PBXBuildFile; fileRef = 9505DA46341E16895E696AA8B1B082ED /* READebugNode.m */; }; - 8BADD1737DFD5A2D18F8FF8EF4EFB689 /* RNDateTimePicker.m in Sources */ = {isa = PBXBuildFile; fileRef = C9AEE440B62716E7DC763567258B5DB4 /* RNDateTimePicker.m */; }; - 8BB527F62230ED1D60A76E499B58B239 /* Aes.m in Sources */ = {isa = PBXBuildFile; fileRef = 6EC653EE003D3BA9DA51B6784B49E387 /* Aes.m */; }; - 8BB6F6A8D5D7B8E662AA9CE480A597CD /* IPAddressSource.h in Headers */ = {isa = PBXBuildFile; fileRef = B46B99D18C68C5C66A1CED7FA48ADB82 /* IPAddressSource.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 8BBD0D34D3880E1B2867AFE0EE22513C /* SingletonStackTrace.h in Headers */ = {isa = PBXBuildFile; fileRef = 4B7124FEDB72AB8418902207CD8F8B49 /* SingletonStackTrace.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 8BD59AB174FB17C09F5A44A5632B9D84 /* pb_encode.c in Sources */ = {isa = PBXBuildFile; fileRef = F75799BE5F54F996D3AE4DDCC29FB260 /* pb_encode.c */; settings = {COMPILER_FLAGS = "-fno-objc-arc -fno-objc-arc"; }; }; - 8BF892C4EF966B6ED49D8CBBC5763393 /* BugsnagMetadataStore.h in Headers */ = {isa = PBXBuildFile; fileRef = 6E29334AD715950C356E291A618D2281 /* BugsnagMetadataStore.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 8C02B4C2C15F9CE5B9E2E6093EF8F870 /* de.lproj in Resources */ = {isa = PBXBuildFile; fileRef = 297E3326962EB460F2F3DCCB46B61FDD /* de.lproj */; }; - 8C341F59EB6702C296FE4472CB9E3D91 /* EXFileSystem-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 40192D0027FE3F73F92FFE2B8AF7A78F /* EXFileSystem-dummy.m */; }; - 8C611C1AB3CC92E4D9AFCC6B2E3159DB /* SanitizeLeak.cpp in Sources */ = {isa = PBXBuildFile; fileRef = FFEEEAA43F9E2279D73C849BE609807E /* SanitizeLeak.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -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\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors"; }; }; - 8C61FFCE29A8CBBA864BC03EE36A3DE3 /* RSocketParameters.h in Headers */ = {isa = PBXBuildFile; fileRef = BE25E45DF047A25091D66D41617ACFD5 /* RSocketParameters.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 8C6DB584B29654F57187DA7D2307DC7F /* RCTMultilineTextInputView.m in Sources */ = {isa = PBXBuildFile; fileRef = B4507C7DFD6A67ED8484D249AA895C20 /* RCTMultilineTextInputView.m */; }; - 8C72EEB1093407065DF28EFD78615266 /* ParkingLot.cpp in Sources */ = {isa = PBXBuildFile; fileRef = E79C2D119F2D803A10DD36C7E1C7AC04 /* ParkingLot.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -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\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors"; }; }; - 8C7AF050002526AD3F6E6BC046F6DB2B /* Access.h in Headers */ = {isa = PBXBuildFile; fileRef = 96BF2D34B47DCE54AA42D94CBA7CA081 /* Access.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 8C8E96F03A7BAB6B3647BD0F76CB7810 /* RNFetchBlobNetwork.h in Headers */ = {isa = PBXBuildFile; fileRef = F2E3027F493B38842E9FDBD22E957D27 /* RNFetchBlobNetwork.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 8C99C499FC2AC2AC1C191A6146CDED0E /* EXAV-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 93A57444DDE85F66B2D236FA286C7281 /* EXAV-dummy.m */; }; - 8CA192619C34A9394EAC3F5090897B62 /* UICollectionView+SKInvalidation.mm in Sources */ = {isa = PBXBuildFile; fileRef = 9A04AB43580B7A96DD95CED1945FA3D0 /* UICollectionView+SKInvalidation.mm */; settings = {COMPILER_FLAGS = "-DDEBUG=1 -DFLIPPER_OSS=1 -DFB_SONARKIT_ENABLED=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -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"; }; }; - 8CAB8CB4895B8C60422A6632042C3366 /* NSError+BSG_SimpleConstructor.m in Sources */ = {isa = PBXBuildFile; fileRef = 6250AE0BC5C931BC2D8257FEA03EC40D /* NSError+BSG_SimpleConstructor.m */; }; - 8CBD6D0CB530855D2D1E3DC8A7034F91 /* RCTDevLoadingViewSetEnabled.m in Sources */ = {isa = PBXBuildFile; fileRef = 9CB068C3C1090FBC4AC6414F186E9BE8 /* RCTDevLoadingViewSetEnabled.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - 8CC0F0CD004FF65F42A36EA181353ACA /* RNCSafeAreaViewManager.h in Headers */ = {isa = PBXBuildFile; fileRef = ED66C4774C8544D1E55121F478A0810D /* RNCSafeAreaViewManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 8CC1C6C841AB94CEA8787AF5754571C1 /* UMReactLogHandler.h in Headers */ = {isa = PBXBuildFile; fileRef = 81095CC27AB0AD6D943702F4AAED8A59 /* UMReactLogHandler.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 8CDCDE18C697839C023F356FE9EDADF3 /* RNFBVersion.h in Headers */ = {isa = PBXBuildFile; fileRef = D9D89707F1744A3D93B48B799E2D5D7C /* RNFBVersion.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 8CEB7B8EBD88672CF65829C3F587814B /* RValueReferenceWrapper.h in Headers */ = {isa = PBXBuildFile; fileRef = 8AFD581736261F2861B84FE2B7207D9B /* RValueReferenceWrapper.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 8D0784FEB22B291920237AE2737B9120 /* RCTErrorInfo.h in Headers */ = {isa = PBXBuildFile; fileRef = DA75C4879252CC32645B3BD2E5E3AFD2 /* RCTErrorInfo.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 8D0D92757235B7EAFEA4E8CAF5EFE0F5 /* RCTFrameAnimation.h in Headers */ = {isa = PBXBuildFile; fileRef = 316A90574F4767203686A7B623BD08DF /* RCTFrameAnimation.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 8D165B355BDB7DE684E2F22405105A8D /* RCTI18nUtil.m in Sources */ = {isa = PBXBuildFile; fileRef = 9BFF8F1D045AC3CDC40AF33C85E5F676 /* RCTI18nUtil.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - 8D27EBDDF0A002BDB9FF045C72FBA1BE /* RNLocalize.m in Sources */ = {isa = PBXBuildFile; fileRef = 88503417B54D3757756715839F7FDEE0 /* RNLocalize.m */; }; - 8D2EBBC706AF49A6626065134CA8E728 /* HeterogeneousAccess-fwd.h in Headers */ = {isa = PBXBuildFile; fileRef = 509A1E62B3E7BC802847A7DB7EF72A0C /* HeterogeneousAccess-fwd.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 8D6C3F1F79AD9E77B35ADA3F3027D678 /* Sched.h in Headers */ = {isa = PBXBuildFile; fileRef = 7142F1FB30D196FFDE9E3CEBCCCE4C8B /* Sched.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 8D78EC568FFCF862DCB52A7619379AC5 /* Preprocessor.h in Headers */ = {isa = PBXBuildFile; fileRef = 23DAE6AA300B3D3D134253810C2441BE /* Preprocessor.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 8D7A34A51D1BF6496B2B25144BED79BB /* FileUtil.h in Headers */ = {isa = PBXBuildFile; fileRef = 2C4D8DF159A741D57577CD8295426EBB /* FileUtil.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 8D7C15503C98FAC8A720818659B92809 /* RCTSha.m in Sources */ = {isa = PBXBuildFile; fileRef = 7547F8E6B74F348AA102F489A03E09D9 /* RCTSha.m */; }; - 8D7EF30110E8C8440594225B49A8BEB1 /* MMKV.h in Headers */ = {isa = PBXBuildFile; fileRef = 8AE7CE9F04ED973A0AB63ADFD39B84B0 /* MMKV.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 8D810A73247D24216F6C059D1B33842C /* StreamsWriter.cpp in Sources */ = {isa = PBXBuildFile; fileRef = E4B12CEC68F65F6CC49C9E3844577875 /* StreamsWriter.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -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 -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors"; }; }; - 8D8D8F73E9D672FA84FC9E6D137AAB93 /* vp8_dec.h in Headers */ = {isa = PBXBuildFile; fileRef = AF21403E28C34FCEB1EB5AD97C2AAF24 /* vp8_dec.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 8D9011DAC5D088182EA6F8AF8D9416C4 /* RCTObjcExecutor.mm in Sources */ = {isa = PBXBuildFile; fileRef = C70B44F70601F2E891612366843D044B /* RCTObjcExecutor.mm */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - 8DE47431F6BBBA3BCD7EFF8AB414BB88 /* Try.h in Headers */ = {isa = PBXBuildFile; fileRef = E4FC8715E1EB40E6DA91B572FD796DA9 /* Try.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 8DE75F8DC93F2864EC9A6B622E944672 /* RCTActivityIndicatorViewManager.m in Sources */ = {isa = PBXBuildFile; fileRef = D0D88DE9238F87B08F5FA4F0049515F4 /* RCTActivityIndicatorViewManager.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - 8DE788B27EBABE1BFF153505676730FA /* SKBufferingPlugin.mm in Sources */ = {isa = PBXBuildFile; fileRef = 9665E96A1951706C8EAE0C847E4E7288 /* SKBufferingPlugin.mm */; settings = {COMPILER_FLAGS = "-DDEBUG=1 -DFLIPPER_OSS=1 -DFB_SONARKIT_ENABLED=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -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"; }; }; - 8DF7DC8310894831D8646315D603E511 /* CancellationToken.h in Headers */ = {isa = PBXBuildFile; fileRef = 6BF6B2F608C86C28E7AFB5A77D03196D /* CancellationToken.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 8E122355E6BA25746F4CE38701EA9755 /* RCTDevLoadingView.mm in Sources */ = {isa = PBXBuildFile; fileRef = AB67EAA6F30A859AE4F167D603F2160B /* 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"; }; }; - 8E29E3515A4CEE0ED7F3697351C05B17 /* RCTBlobPlugins.h in Headers */ = {isa = PBXBuildFile; fileRef = F339762AA8DD6F76C7A6BE4A9051877A /* RCTBlobPlugins.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 8E2A6C95A1BB81D7E57A02DCCD8A2C2E /* FIRCLSConstants.m in Sources */ = {isa = PBXBuildFile; fileRef = C567B7482E7DA9EA3E8295E3F0050D90 /* FIRCLSConstants.m */; }; - 8E3971C08DB59B15538760096809208F /* FIRCLSByteUtility.h in Headers */ = {isa = PBXBuildFile; fileRef = C7AB557274CF57A02EC21EC9FDC67657 /* FIRCLSByteUtility.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 8E4B38B0A7C618B7C40A651DBC09933C /* BugsnagAppWithState.m in Sources */ = {isa = PBXBuildFile; fileRef = 0433A26CA9AB21D0ECDE15D53044AC50 /* BugsnagAppWithState.m */; }; - 8E4CD8279B03971C20A8662740220463 /* Request.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 85E337353277B5A943B144A297742D26 /* Request.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -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\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors"; }; }; - 8E73B3FEAAB27D443738E8A7E1F37E81 /* FIRCLSReportAdapter.m in Sources */ = {isa = PBXBuildFile; fileRef = 587CA81CE7102CB1AE338DEDA0A1B0D5 /* FIRCLSReportAdapter.m */; }; - 8EB9C98AC989799E41909A8834947C72 /* RCTHTTPRequestHandler.h in Headers */ = {isa = PBXBuildFile; fileRef = FC74A77541F9CFAEA3B265B8EBB9F649 /* RCTHTTPRequestHandler.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 8EBADBD4A48F5BA161B98DE9144AAD7E /* RNReanimated-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = E495647157E078E4359FE6D76B770AB8 /* RNReanimated-dummy.m */; }; - 8ED434F65C6CD8B824D294363AF15573 /* GULLogger.m in Sources */ = {isa = PBXBuildFile; fileRef = 97443E49951B2C31C21D22A095CED0A6 /* GULLogger.m */; }; - 8EE4B0736B0CEDE6316C8A83608B9BDE /* RCTEventDispatcher.mm in Sources */ = {isa = PBXBuildFile; fileRef = 97B763A074EB5BD7EAE91979A432F6AC /* 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"; }; }; - 8EEE2C04C3417139A09910CC35AB10D0 /* Init.h in Headers */ = {isa = PBXBuildFile; fileRef = E4A5AC96B92CF782E2E8B80ED46C299D /* Init.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 8EEF7CD07FA75F69C2C5859CD72C4F17 /* FrameSerializer_v1_0.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 52BF20AE590FB1B2AEB17652F1AF704E /* FrameSerializer_v1_0.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -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 -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors"; }; }; - 8EF11F21E7E5930C0D6029D97BA6ACD4 /* NSData+ImageContentType.m in Sources */ = {isa = PBXBuildFile; fileRef = E22B4113FC51C7241A0EF4BA6B002A14 /* NSData+ImageContentType.m */; }; - 8EF24FBD4186CB3967B9A668798F0EA4 /* dynamic.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 26E253A144B29FD6ACEB1D84A5B4F6C2 /* 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"; }; }; - 8EFC658A04363FD5F4B3429F47DAE731 /* GMock.h in Headers */ = {isa = PBXBuildFile; fileRef = 1D887A378298359AE26B8C8F180008B1 /* GMock.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 8F18BB721E90597C34F381B4FBDAD1C7 /* F14Map.h in Headers */ = {isa = PBXBuildFile; fileRef = 64B3EB06DBD57A098DB73AE093530DC6 /* F14Map.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 8F1CFE1C548EBA700E1583A4BB38E91B /* RCTBackedTextInputDelegate.h in Headers */ = {isa = PBXBuildFile; fileRef = FD028CB98C9F9EFDFAFBE551B94565B8 /* RCTBackedTextInputDelegate.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 8F24D7B2BC340084B0DE94FA59D24ECA /* RNPinchHandler.m in Sources */ = {isa = PBXBuildFile; fileRef = FBCC9D8F5D3463434F12152F53AD744A /* RNPinchHandler.m */; }; - 8F3404F2E966D28AF2C2B29F9AA66BDE /* Pretty.h in Headers */ = {isa = PBXBuildFile; fileRef = F091B10FC5021AF0D2DC79A4895E6728 /* Pretty.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 8F4D3FBC5A6E396605A910B085F498A4 /* String.cpp in Sources */ = {isa = PBXBuildFile; fileRef = C97FBA18067CC52B4EC4531841DDA970 /* String.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -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\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors"; }; }; - 8F63AB259A7D51B011EA55DE02E7B0FB /* EXPermissions-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 2949045990424B924BB4ACE1FF5B0454 /* EXPermissions-dummy.m */; }; - 8F63D7B66058468FDD54E8BE68B22A79 /* SoftRealTimeExecutor.h in Headers */ = {isa = PBXBuildFile; fileRef = 8CB5A4488DD9C1D73C063B5AF6E4F7D2 /* SoftRealTimeExecutor.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 8F655760E09FBC3301FAA0051E37D708 /* ja.lproj in Resources */ = {isa = PBXBuildFile; fileRef = 1588731ED24E7943B390F4C87491A950 /* ja.lproj */; }; - 8F7A04661F3A22BE0E2663332D2A6A8D /* quant_enc.c in Sources */ = {isa = PBXBuildFile; fileRef = 4FE7B594CF6867E71FE4E2301AFEAD29 /* quant_enc.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; - 8F91450DD2DCB3F9006CB4AB7EBB9A78 /* BugsnagMetadata.m in Sources */ = {isa = PBXBuildFile; fileRef = D50DC825479EC74D8D93ED11C4676228 /* BugsnagMetadata.m */; }; - 8FC8BE266412278F6A06262CEFC25FE7 /* RootView.m in Sources */ = {isa = PBXBuildFile; fileRef = A49F25B700EE4A6775B874F4E8AD3D62 /* RootView.m */; }; - 8FC9D64BA5DA1D77663ED2FEF2CD8655 /* BSG_KSCrashContext.h in Headers */ = {isa = PBXBuildFile; fileRef = 98F664E7D76100C647C47911BF525392 /* BSG_KSCrashContext.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 8FD0D61258D48BD6FBAD941A36B02F05 /* UIImage+Transform.m in Sources */ = {isa = PBXBuildFile; fileRef = 4B7258AD88FCB09A3552091074015F17 /* UIImage+Transform.m */; }; - 8FDC14CCA3C4455A80E93218279CE76C /* RCTDatePickerManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 8579EF0DCAD00BFCB49994109AB73B0D /* RCTDatePickerManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 8FEA7CCBE95369836128207D21E7EBFE /* UMModuleRegistryHolderReactModule.h in Headers */ = {isa = PBXBuildFile; fileRef = C4BF2CCBBF5CE374288FBFF0D54C7ADF /* UMModuleRegistryHolderReactModule.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 9000ED0C5C7BF90A5AD7B407D0EA396E /* EXConstants.m in Sources */ = {isa = PBXBuildFile; fileRef = D9F75E7DAE922168FF40B90D585476A7 /* EXConstants.m */; }; - 90044CACDD6007A10615C083AB31992C /* RNFBPreferences.m in Sources */ = {isa = PBXBuildFile; fileRef = EBA6F0DD4A3B953CD39A34A3970D8304 /* RNFBPreferences.m */; }; - 9004BD3B2B71C20129D136519D9E375D /* QBVideoIconView.m in Sources */ = {isa = PBXBuildFile; fileRef = 4ACD3C341BF3A171077258DD2E353362 /* QBVideoIconView.m */; }; - 9014D8322A35D5B1A0CBBEEB9C9541EC /* Merge.h in Headers */ = {isa = PBXBuildFile; fileRef = 47C84FA9DBDB8034B972C27156F21F00 /* Merge.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 901A21999171DB399A3D9A5EFE5F3982 /* tr.lproj in Resources */ = {isa = PBXBuildFile; fileRef = 1161903683157589F2902EBB4CEB72F0 /* tr.lproj */; }; - 9030807EEA24116BF4444DEE216C7551 /* RCTExceptionsManager.h in Headers */ = {isa = PBXBuildFile; fileRef = EE0C19A707DD76A72F53CE519B41D6C0 /* RCTExceptionsManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 903224E1E03C45F810C7705242CC2B58 /* RCTRawTextViewManager.h in Headers */ = {isa = PBXBuildFile; fileRef = AA7FC102D46DBA597743B98D535FAB2F /* RCTRawTextViewManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 9069E0FA345EC63F1745A5E3E5E9F113 /* SDImageLoader.h in Headers */ = {isa = PBXBuildFile; fileRef = F2644328A8685FAFB272DAD706AC4A36 /* SDImageLoader.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 906F81B02AF6433FF551221C78F8683D /* RNNotificationCenter.m in Sources */ = {isa = PBXBuildFile; fileRef = D5C9EB3DD6251F36240159CAB9F95695 /* RNNotificationCenter.m */; }; - 90898528AD53B423E23A21318A6F70E7 /* BugsnagStateEvent.h in Headers */ = {isa = PBXBuildFile; fileRef = F1D45A2B71EC9AA7167B5151A6B1F0D2 /* BugsnagStateEvent.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 908DB569499743B13CF4A71098C1597C /* encode.h in Headers */ = {isa = PBXBuildFile; fileRef = C9DAB19BAE0886CC6E1FC7AEE195FB70 /* encode.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 909575A23DA3834C241BB2951C78C9B9 /* Assume.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 0DE80E422D8FB9F62B9655C08E9C59A2 /* Assume.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -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\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors"; }; }; - 90AC36E8F28EC86B055ACB4988775AAC /* FlipperRSocketResponder.h in Headers */ = {isa = PBXBuildFile; fileRef = D1F9BC25A5F9A6EBE79C5FC99E1ACCCB /* FlipperRSocketResponder.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 90B7136DA748BF199BB9AC94575B04AB /* F14Map-fwd.h in Headers */ = {isa = PBXBuildFile; fileRef = 57296D14B37F4B594C34FDEC9A63E717 /* F14Map-fwd.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 90BFEB6BD2D9B45D07BAF16DDD09BCC0 /* MicroSpinLock.h in Headers */ = {isa = PBXBuildFile; fileRef = 051BC3CCB1F2C53A32AE05774FB983A7 /* MicroSpinLock.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 90C43B022CDB590EAB13056B0DECE6CD /* FixedString.h in Headers */ = {isa = PBXBuildFile; fileRef = 83E759385470971E9A1619229F94FBAC /* FixedString.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 90D4E356DE236811912A53AF5685871C /* RCTTouchEvent.m in Sources */ = {isa = PBXBuildFile; fileRef = 617B784FD1DFF9097BAFE1E2344EB943 /* RCTTouchEvent.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - 90FD96A7A02207605747CFBF643974A7 /* BugsnagLastRunInfo+Private.h in Headers */ = {isa = PBXBuildFile; fileRef = 0A1AB6D01744E2320165DCECBB1BE4F9 /* BugsnagLastRunInfo+Private.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 9107C33AC303B0FDBF48960A1C38A25D /* StaticSingletonManager.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 20F6BA2AE366AF4C6F7F93F4965CD616 /* StaticSingletonManager.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -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\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors"; }; }; - 913ACA8018B736349C7F9E1D8A6AAD25 /* ScheduledSubscriber.h in Headers */ = {isa = PBXBuildFile; fileRef = E081C312DD756143481ED6E7E4B81ACD /* ScheduledSubscriber.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 91413F1EF37BD8FA6A1CBC584FFF7644 /* UMSingletonModule.h in Headers */ = {isa = PBXBuildFile; fileRef = F4BA021EFDD407D4A27AEF8D47D838CA /* UMSingletonModule.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 9145E6F9C497F86A5A5696818E016C54 /* UMUtilities.h in Headers */ = {isa = PBXBuildFile; fileRef = 7D20DEEC7640A7E26DE4F76A033D9641 /* UMUtilities.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 9145F5B49C89845D76BE58FD9E1ED346 /* Random.h in Headers */ = {isa = PBXBuildFile; fileRef = A954D4E2C3B902244793F2C11C9ED0B0 /* Random.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 9156CAE7B51C32678CE8B93FB88C60E3 /* SKViewDescriptor.h in Headers */ = {isa = PBXBuildFile; fileRef = FBEBC8AE4B5592403820E4F187C46A48 /* SKViewDescriptor.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 9163C28767CEFDD971EF06E1A97CD6A8 /* dec_sse41.c in Sources */ = {isa = PBXBuildFile; fileRef = 158853D4DAF24639C36E51C1EB0294AF /* dec_sse41.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; - 916BEC475B5C16D4508CE4054AF30CBB /* Retrying.h in Headers */ = {isa = PBXBuildFile; fileRef = 8D689EB828C16EC54FA9EE86DC83F4C7 /* Retrying.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 91BAAE27526FBD0127C99B01A007C98C /* minheap-internal.h in Headers */ = {isa = PBXBuildFile; fileRef = 0A87D13283D45B725FCA1772F8ACC6C5 /* minheap-internal.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 91C4219B8C33403CBB129D16B3AEB18A /* FIRCLSReport.h in Headers */ = {isa = PBXBuildFile; fileRef = 3BEBFA68C05885A1CC3877F22208E6D8 /* FIRCLSReport.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 91D0BC0B7FEA729E15BDF86C85B51597 /* RNCWebViewManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 58BEA1567C200E7F5F6B279975DF007C /* RNCWebViewManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 91F4D8CB03F3BBCE4923A59D78A728E1 /* Varint.h in Headers */ = {isa = PBXBuildFile; fileRef = 213E5645948B35C26F6888909095F5A8 /* Varint.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 91FDD7B907E719D2F2F085B7BB70929B /* EXAV.m in Sources */ = {isa = PBXBuildFile; fileRef = FA857FDABCDE1F76E178BF9A5E3828C2 /* EXAV.m */; }; - 921A650AECDA9052B65E419FFDDEF356 /* PriorityUnboundedQueueSet.h in Headers */ = {isa = PBXBuildFile; fileRef = 1CE60A3BCA8C0C72394A52F3E828C894 /* PriorityUnboundedQueueSet.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 9228FBB2923CDAF3D6791B69E6835A65 /* Sched.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 5F26D293A32C713B8BFCD57BD007346D /* Sched.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -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\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors"; }; }; - 923DA1F34D80B84C331142BD8DD784AF /* FBCxxFollyDynamicConvert.mm in Sources */ = {isa = PBXBuildFile; fileRef = B6AC1192986FF4E613E462BDDD84A013 /* FBCxxFollyDynamicConvert.mm */; settings = {COMPILER_FLAGS = "-DDEBUG=1 -DFLIPPER_OSS=1 -DFB_SONARKIT_ENABLED=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -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"; }; }; - 924651FEE2C95494D7F5ADBA69D12031 /* SharedMutex.h in Headers */ = {isa = PBXBuildFile; fileRef = FF6809C3B5759B98830548E16DE1858D /* SharedMutex.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 92470F6719AB3B3AAA122E66ED371ADF /* fr.lproj in Resources */ = {isa = PBXBuildFile; fileRef = 1892B79315556CD65E27E57D81FA5045 /* fr.lproj */; }; - 925CF7CD41AE898D4DEEB7616CA5B541 /* RCTDeviceInfo.mm in Sources */ = {isa = PBXBuildFile; fileRef = F2C8F1BCEEA27866D3346B8A49A98330 /* 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"; }; }; - 9262F8918746D2B8170AB029AC4D0CD8 /* GDTCORTransport_Private.h in Headers */ = {isa = PBXBuildFile; fileRef = A9AE808ED601364F3208A8ECB8B3C571 /* GDTCORTransport_Private.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 926998A0F32ADB050748C38E7318833A /* RootView.h in Headers */ = {isa = PBXBuildFile; fileRef = 2C1EE05A18109AA23C61F78E7E447A87 /* RootView.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 926B192DD06AE82CBAF1291DADFF3A7C /* TcpDuplexConnection.h in Headers */ = {isa = PBXBuildFile; fileRef = 8450CF4C473130B21E41CB49420EB6B3 /* TcpDuplexConnection.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 927992BEE5DDAF0315DF981C8C2E3080 /* ConcurrentSkipList-inl.h in Headers */ = {isa = PBXBuildFile; fileRef = 7E9567E0914302535C295590D9E802F2 /* ConcurrentSkipList-inl.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 9296EABE38970C4C8CBC5ED4C3B76CAF /* IOBufQueue.h in Headers */ = {isa = PBXBuildFile; fileRef = 0CCD17A67031E9AD6CB5C8FE0052D1EE /* IOBufQueue.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 92DAFF1F4ABDE52F6555C4EA66EBA4EE /* evmap.c in Sources */ = {isa = PBXBuildFile; fileRef = 53E6098912BE03536ECD4B1FE675B237 /* evmap.c */; }; - 92ECB1EA9F733DB78D57CB37AC97F94C /* AtomicUnorderedMap.h in Headers */ = {isa = PBXBuildFile; fileRef = 99AE7D08E695C2160D38F69BBEDC8E2F /* AtomicUnorderedMap.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 930062A5A8C222364AD62FB680436D33 /* GlobalExecutor.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 3552447EDDD2011D9AD21F5EA2B9B7FF /* 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"; }; }; - 93016A61649F76D78403148C998A04A3 /* StorageGetters.m in Sources */ = {isa = PBXBuildFile; fileRef = 67C0A615EC5CE05FBDFF23BFEF29B103 /* StorageGetters.m */; }; - 93067C332A3635A565BB7B4C29D48B48 /* IPAddressV4.h in Headers */ = {isa = PBXBuildFile; fileRef = 18E4B2F4BB2F7FF67DB269B56E4CCDF0 /* IPAddressV4.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 932F771CAD81C4422716974440C09370 /* AsyncSSLSocket.h in Headers */ = {isa = PBXBuildFile; fileRef = 8FB6953130C3692368ABA9E95DDF35CD /* AsyncSSLSocket.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 93319A17DA7B2F1F5C2DD3C79FDCA9B5 /* Sleeper.h in Headers */ = {isa = PBXBuildFile; fileRef = F3D4718735FCE29271043BE67B3D5EF2 /* Sleeper.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 933A07344B992D335D2C0DA6C3451F0C /* SKEnvironmentVariables.m in Sources */ = {isa = PBXBuildFile; fileRef = 8123AF2E83A4B7A6DEE967C1E895AAAF /* SKEnvironmentVariables.m */; settings = {COMPILER_FLAGS = "-DDEBUG=1 -DFLIPPER_OSS=1 -DFB_SONARKIT_ENABLED=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -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"; }; }; - 933DEC12775DEC888B3ABA33F7343DB3 /* TurboModulePerfLogger.h in Headers */ = {isa = PBXBuildFile; fileRef = 95996D377A3676FC12259D965827644A /* TurboModulePerfLogger.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 9344AC8DA1CA95B1279D92A28B9BEF50 /* FIRCLSByteUtility.m in Sources */ = {isa = PBXBuildFile; fileRef = 7F648289041B3DCBC9D738576A3D9B2A /* FIRCLSByteUtility.m */; }; - 9356480FE2C0B1AC4DD2926EC33872F3 /* RCTStatusBarManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 7D85B1D5F8F87719F04404EECA61FC8B /* RCTStatusBarManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 9356626D0B8EFBB1DB26262450B668DF /* Foreach.h in Headers */ = {isa = PBXBuildFile; fileRef = FDCC2F6EA2E74361965F0588E6B7717B /* Foreach.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 93615681DC11EDA378DE5A6DA28FF2C6 /* UIImage+Metadata.m in Sources */ = {isa = PBXBuildFile; fileRef = 8E95659D462FBF4F81F91F6EBA259A81 /* UIImage+Metadata.m */; }; - 93647E033464B389D0979DA7305B82E9 /* RCTImageEditingManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 379AAF32EBE1F942AD81C1C42FA1E080 /* RCTImageEditingManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 9369E582C7B7E6AEF32D9043CA0C75FC /* StampedPtr.h in Headers */ = {isa = PBXBuildFile; fileRef = A8B3E5DAFD46EE56452724AED9AC92DC /* StampedPtr.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 936DAFC95400C8B430D1360E1D55C6A9 /* FlatCombiningPriorityQueue.h in Headers */ = {isa = PBXBuildFile; fileRef = 62BD993AF8582A2D4517FBE2A6DCCB40 /* FlatCombiningPriorityQueue.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 937086FFC7948E4E3A69D50545826BFF /* FBLPromise+Catch.h in Headers */ = {isa = PBXBuildFile; fileRef = 857B28839350C25A775AB9D97BFFFE9B /* FBLPromise+Catch.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 93740B1B6CE3C60E0001A5B562F5E602 /* RCTVirtualTextViewManager.m in Sources */ = {isa = PBXBuildFile; fileRef = CD173BD5FA0D4297EBFCFC4693B7BEEA /* RCTVirtualTextViewManager.m */; }; - 939018139DB23E4D0E2E66A95B4D6B0A /* AtomicHashMap-inl.h in Headers */ = {isa = PBXBuildFile; fileRef = 8CE91CAD974A0975205D751C86C23139 /* AtomicHashMap-inl.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 93917FF9167C4ADCC440E46FAD552235 /* GULSecureCoding.h in Headers */ = {isa = PBXBuildFile; fileRef = 2A052AC762DA5E58222E584F38CB2FF1 /* GULSecureCoding.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 93A006518188D01FA30E1F6365DC975D /* Payload.cpp in Sources */ = {isa = PBXBuildFile; fileRef = CCB7250174E85BADCF71CD4CF0B6F9A1 /* Payload.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -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 -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors"; }; }; - 93A08BA6808129C1BDE7A3E06F6AD14E /* PBEncodeItem.hpp in Headers */ = {isa = PBXBuildFile; fileRef = 0C1F0F63DF855EE0FDBA4FD6852B893E /* PBEncodeItem.hpp */; settings = {ATTRIBUTES = (Project, ); }; }; - 93B1B5AA846FF98B591DE480C117BF1F /* RNNotificationCenterListener.m in Sources */ = {isa = PBXBuildFile; fileRef = D25EC3A6EE178FA0BB33279376E6666B /* RNNotificationCenterListener.m */; }; - 93B7CC2BC6377B5EEA2C5AA84798F6ED /* SDWebImageIndicator.h in Headers */ = {isa = PBXBuildFile; fileRef = 883E39C9150F6F0FFA19107EE0D2FC9E /* SDWebImageIndicator.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 93B8902F9E4ECDCF100F6D3D75DF2EA0 /* ConnectionAcceptor.h in Headers */ = {isa = PBXBuildFile; fileRef = EB418C913486EA3E3381B3FE24AA0955 /* ConnectionAcceptor.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 93B9DC0C3F92C778B215E563CC2BFEDD /* FIRCLSUnwind.c in Sources */ = {isa = PBXBuildFile; fileRef = 9BBE384FEBA7D7ECA92B70B0FA235097 /* FIRCLSUnwind.c */; }; - 93BD2606CEB0E6BD13D9B58558E0174F /* RCTFileRequestHandler.h in Headers */ = {isa = PBXBuildFile; fileRef = 11DAD95EB383741A607A74A0E7158358 /* RCTFileRequestHandler.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 93C0C00B856FEE25CEF5D5233F2EEEA5 /* SafeAreaSpacerView.m in Sources */ = {isa = PBXBuildFile; fileRef = C19F8470C15F18F4285BAA5A9A8A8BF5 /* SafeAreaSpacerView.m */; }; - 93D79DC8C7DB57CEA927802B73C488AD /* RCTBaseTextShadowView.h in Headers */ = {isa = PBXBuildFile; fileRef = E2631F974453177DD607E7B3C7AFD9A2 /* RCTBaseTextShadowView.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 93F3E16A0AE33535CD7E648C75BFD070 /* Windows.h in Headers */ = {isa = PBXBuildFile; fileRef = 57772953C8F6A7EE7549195AE3766F39 /* Windows.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 941365C5D1C3695EA97A505E64FF0BDC /* UMLogManager.m in Sources */ = {isa = PBXBuildFile; fileRef = 1FEC121FD23728582B9C1DF5E28A277B /* UMLogManager.m */; }; - 945549C70EFC3F79AC3BBFDAAF64CEC8 /* EXSessionResumableDownloadTaskDelegate.m in Sources */ = {isa = PBXBuildFile; fileRef = 413F677E17E91D83904D400E7DF52DBA /* EXSessionResumableDownloadTaskDelegate.m */; }; - 945CBE8DC5A89E8B2A802782D34C814E /* FIRCLSSymbolicationOperation.h in Headers */ = {isa = PBXBuildFile; fileRef = 22403A1A10B620C8AEDD2BB6D04A48F1 /* FIRCLSSymbolicationOperation.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 94770C3B5FCE6EA75207AB1A811C6604 /* enc_msa.c in Sources */ = {isa = PBXBuildFile; fileRef = 241FD3A495440FC29D4AC6656455F0FF /* enc_msa.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; - 949928E6C313A91D09BB1AABDF665E67 /* filter_enc.c in Sources */ = {isa = PBXBuildFile; fileRef = D811B83316C917BE0F602B3C2A560270 /* filter_enc.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; - 94A1D2E0A64D7695409280C57C72C973 /* RNGestureHandlerState.h in Headers */ = {isa = PBXBuildFile; fileRef = A0B884808F87BC14E17E0C76EDF5FFA4 /* RNGestureHandlerState.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 94C401FCBE56C3D8E3F9FC8149002F39 /* REAConcatNode.m in Sources */ = {isa = PBXBuildFile; fileRef = F028259E27D1417958999A7A7A1310D2 /* REAConcatNode.m */; }; - 94D5DF55DE38E5D656484E932FDAB8A5 /* ChannelRequester.h in Headers */ = {isa = PBXBuildFile; fileRef = E50E37E179D4BCED1B314EEEDDEF6C2E /* ChannelRequester.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 94DE26BC203CCB24065246DC2F5E5241 /* ExecutorWithPriority.h in Headers */ = {isa = PBXBuildFile; fileRef = 284F8BD84956D62791B3DD3B673A9587 /* ExecutorWithPriority.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 94E22A927F0A3998FC7C087A9F6AF8CF /* Bits.h in Headers */ = {isa = PBXBuildFile; fileRef = 932CD41FA6D89BAE46722550106F1928 /* Bits.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 94E8A69947F3D20A3B835B5DA9876061 /* FIRCLSDwarfUnwind.h in Headers */ = {isa = PBXBuildFile; fileRef = ED6C9E7E40237984988F15B2078AE5EE /* FIRCLSDwarfUnwind.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 94ECE7823125C2F243E5600CFACF196A /* BugsnagUser.h in Headers */ = {isa = PBXBuildFile; fileRef = 37CC656B732014A6AD8CB3244611BEEB /* BugsnagUser.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 94EF6F8203070585CB312B152F7CCEB2 /* BugsnagApp.m in Sources */ = {isa = PBXBuildFile; fileRef = 86E61A981CF42C4B23BAB5518A622CB0 /* BugsnagApp.m */; }; - 9503F20855D4E3A6AC1EAE8E1417E8E9 /* Init.h in Headers */ = {isa = PBXBuildFile; fileRef = 23E0C20316338E7EB9BFE9DF8D664C73 /* Init.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 9520567DFF1E33FDE004255CA2E36006 /* PolyDetail.h in Headers */ = {isa = PBXBuildFile; fileRef = 52BC7916B2B7B219EB6FC9CC2A5AB472 /* PolyDetail.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 952C03C87320F5421BFC44147C0754F5 /* RCTModuleData.mm in Sources */ = {isa = PBXBuildFile; fileRef = 9F7C36C1C750664D152408323FD6AE48 /* RCTModuleData.mm */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - 9536EFC8A863828718F2E80E09F86040 /* FIRCLSURLSessionTask_PrivateMethods.h in Headers */ = {isa = PBXBuildFile; fileRef = 6EDA96412237D84713DD44019D1495A1 /* FIRCLSURLSessionTask_PrivateMethods.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 953F85698B627AE09C3DD80D5CDDBC0E /* syntax_enc.c in Sources */ = {isa = PBXBuildFile; fileRef = EE8277FB56719177EFE2FAC4CDBCA097 /* syntax_enc.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; - 954FF1A37B9B52498BA929669D4593FF /* SDImageHEICCoder.h in Headers */ = {isa = PBXBuildFile; fileRef = F24DFCD6A2EC058E56485B04B0AD967E /* SDImageHEICCoder.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 9555BE4B01AA12D6D5212D900CBCAC13 /* BSGJSONSerialization.h in Headers */ = {isa = PBXBuildFile; fileRef = AFFEB724A1817711BD36B10EF0CDD742 /* BSGJSONSerialization.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 955E1266974E8A5514883D7147B2915A /* webp_dec.c in Sources */ = {isa = PBXBuildFile; fileRef = B95EEB8F6BF6053F409241818BF479A4 /* webp_dec.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; - 955EC830DB7E6205DE2C545D1430285C /* UMBridgeModule.h in Headers */ = {isa = PBXBuildFile; fileRef = 21ECF7AE502B94FDB7E0B8BD862E867A /* UMBridgeModule.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 95682DB918A38BB1030F5C8BAE296186 /* FIRComponentType.h in Headers */ = {isa = PBXBuildFile; fileRef = 3A519F6518C260D0FF48E82C2A8808A4 /* FIRComponentType.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 95814D79AAAA24FC9B2AF1E7B033D9ED /* AtomicHashMap-inl.h in Headers */ = {isa = PBXBuildFile; fileRef = AFAAC35F1D7EBA12FAE2CE82168A8B09 /* AtomicHashMap-inl.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 958ED40251156B3487E967A9EE8F6D34 /* Async.h in Headers */ = {isa = PBXBuildFile; fileRef = 3345BB29570C13C9BC107CEF66202103 /* Async.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 9599EE47E7D00E7669EF97CE21CE0F82 /* UIImage+CropRotate.m in Sources */ = {isa = PBXBuildFile; fileRef = BA1EB84932C3877DF0FC3BAC3427CC29 /* UIImage+CropRotate.m */; }; - 95C0EAA456A571DE40255FAB0844D51F /* RCTRedBox.mm in Sources */ = {isa = PBXBuildFile; fileRef = ADEFD5B66F064F5EDDCD15BA9C6B49FC /* 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"; }; }; - 95D9A4E9C6C22BCD760F0B4F98D75CFC /* ConnectionSet.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 8E2014914A30DCE80206DBE67159FBDD /* ConnectionSet.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -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 -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors"; }; }; - 95DB4A98C401CDCA6F7B1EB83439FDB3 /* RCTJSStackFrame.h in Headers */ = {isa = PBXBuildFile; fileRef = 60914E3939A0BE01C52CB41770FDFB11 /* RCTJSStackFrame.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 95DC1F244036A5706D377BEFCC38DA94 /* Bits.h in Headers */ = {isa = PBXBuildFile; fileRef = 1F27B274B4E3C0B45C501A1018E1EDC8 /* Bits.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 95FB1B0523025D27006A9FA0B4202561 /* SDWebImageCompat.h in Headers */ = {isa = PBXBuildFile; fileRef = D9162D718DE8040C51ADEB85D83D40F4 /* SDWebImageCompat.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 960179F05779105EE3A00DB753C8598C /* FrameSerializer_v1_0.h in Headers */ = {isa = PBXBuildFile; fileRef = 0DADF679A872CBFB525E32F6FFD908B9 /* FrameSerializer_v1_0.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 9607920C4F5D89ED64A8627215345206 /* GTest.h in Headers */ = {isa = PBXBuildFile; fileRef = 442ECB432E7884203A62F2A6522EF418 /* GTest.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 9624DFA3C4B2B4CF6C6F0DE32AF39F33 /* RNNotificationUtils.h in Headers */ = {isa = PBXBuildFile; fileRef = 312650FE7FD503D2EC40D1882CCEA092 /* RNNotificationUtils.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 96338E6BC94006C0CE93AE63489A3806 /* BSG_KSMach.h in Headers */ = {isa = PBXBuildFile; fileRef = 4A791F484CACBA763C26A0655365C583 /* BSG_KSMach.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 9634AFC21DDFD8E2C548CB40AB4E5FBF /* FBLPromise+Always.h in Headers */ = {isa = PBXBuildFile; fileRef = 5489F8899DE48A12C9A910B77CFBAACF /* FBLPromise+Always.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 963C344D6CDE8CC99B00F13A7ABCEAB0 /* bit_reader_utils.c in Sources */ = {isa = PBXBuildFile; fileRef = 45420B71146AFC154A4B2DF43AD79E2B /* bit_reader_utils.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; - 963DFB09DAB4DBBE715082D650F56D54 /* RNCSafeAreaShadowView.h in Headers */ = {isa = PBXBuildFile; fileRef = 5B7929894D1887234B31F855496F5AC9 /* RNCSafeAreaShadowView.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 963E3001EC1C7B83627A8380DF2542F2 /* animi.h in Headers */ = {isa = PBXBuildFile; fileRef = 7CD6F641BB6063F13EA12BA92620DE6E /* animi.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 963FAD9160F07C085CC97E4732801A76 /* FIRErrors.m in Sources */ = {isa = PBXBuildFile; fileRef = 34C8B1D1EEFDCEED588CE148E11B47E2 /* FIRErrors.m */; }; - 964568B7F177E0B89B43306339455E72 /* React-RCTNetwork-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = BE088D34B31ACFBDBA428DB61D2FC8FE /* React-RCTNetwork-dummy.m */; }; - 9648B0E231D355C9D5A583D06D200E8E /* ModuleRegistry.h in Headers */ = {isa = PBXBuildFile; fileRef = 20F579A80884E8844CCC2526B455F17A /* ModuleRegistry.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 965AE4D5DF4F8752CE18FB9D7A9EC758 /* RCTTextSelection.m in Sources */ = {isa = PBXBuildFile; fileRef = 773F67187D644D69CDBF5E12F7BABA77 /* RCTTextSelection.m */; }; - 9660409D716F18F214C56BAAF05E1C6E /* Exception.h in Headers */ = {isa = PBXBuildFile; fileRef = 4CBD13E740A98CB3DE73F9DF0337B28B /* Exception.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 96651362E3E2662033FFC90FF27D3907 /* UIView+WebCacheOperation.m in Sources */ = {isa = PBXBuildFile; fileRef = 71FC4AB86EE39074E96E5C28674EA949 /* UIView+WebCacheOperation.m */; }; - 966A72D655B9C94BC0A31219C94E0739 /* TLRefCount.h in Headers */ = {isa = PBXBuildFile; fileRef = 4E0B0B3CDA631795F2F5D588FCF8AA9E /* TLRefCount.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 96A10F915F72DE9920B401F3174FAA01 /* SDWebImageOperation.h in Headers */ = {isa = PBXBuildFile; fileRef = FC77D4B7D9EDE13C7061E4AD80EBDD69 /* SDWebImageOperation.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 96B124D88EDD4869CBC4AA56B706AA1C /* SDImageWebPCoder.m in Sources */ = {isa = PBXBuildFile; fileRef = E737CD50AB9187B1427A4BE435D43ED7 /* SDImageWebPCoder.m */; }; - 96B9900D9BA39ADBED3C0F96B6BF4E94 /* FIRCLSURLSessionDataTask_PrivateMethods.h in Headers */ = {isa = PBXBuildFile; fileRef = 4100516A2F71C4FCEFF4C192A3E25A5C /* FIRCLSURLSessionDataTask_PrivateMethods.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 96B99A41C40A1A3169D98FBD78D534F8 /* RCTBackedTextInputDelegateAdapter.h in Headers */ = {isa = PBXBuildFile; fileRef = 35B7D5020B6E5BA9A2FE52CC9AE126AD /* RCTBackedTextInputDelegateAdapter.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 96C4068BF122CA796B64BDFD2468381B /* FLEXUtility.h in Headers */ = {isa = PBXBuildFile; fileRef = BD98F0005A10B45C2B6F183D42D31D3C /* FLEXUtility.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 96C813DD10F6E8310B8CF558F76E9EC0 /* FIRCLSNetworkResponseHandler.m in Sources */ = {isa = PBXBuildFile; fileRef = 17927E411F9A2BFFE622A58AC94ABD1E /* FIRCLSNetworkResponseHandler.m */; }; - 96E23068A9895BEC6FD614D9A55A7C50 /* JSIndexedRAMBundle.h in Headers */ = {isa = PBXBuildFile; fileRef = AB332063C3B127E3C0129F7EC7B091A0 /* JSIndexedRAMBundle.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 970CF579AB845CB452C58353282EB636 /* QueuedImmediateExecutor.h in Headers */ = {isa = PBXBuildFile; fileRef = B46883F207ACBB452D6EE32DEAF039EE /* QueuedImmediateExecutor.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 970F38B31FF7C1E2F02ADE0593EA6557 /* Codel.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 785B606FC7774F8E8A8F2286341D5D4E /* Codel.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -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\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors"; }; }; - 97167D777B4DAC9E490D28F0B718C656 /* FIRLogger.h in Headers */ = {isa = PBXBuildFile; fileRef = 96FF04602D313A035A686E37DB0AD9DD /* FIRLogger.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 9719CB28665F8595C191B9535932CC5E /* rescaler_msa.c in Sources */ = {isa = PBXBuildFile; fileRef = 4E464EDB507E574CC1C3824FD4BEF570 /* rescaler_msa.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; - 9720A773DB6EF850CE18B59044EA720F /* GDTCORTransport.m in Sources */ = {isa = PBXBuildFile; fileRef = 47AB360C660F2545750D62C057AECBF9 /* GDTCORTransport.m */; }; - 973E219025889250EFE8533DFE8FF0D5 /* FIRCLSAllocate.h in Headers */ = {isa = PBXBuildFile; fileRef = 7E3A58C5C01BED5DD03BE3F5A0FB6D11 /* FIRCLSAllocate.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 9745509726C4E9561C274CF4B498643A /* SocketFastOpen.cpp in Sources */ = {isa = PBXBuildFile; fileRef = FF4A69A3C859B09ABE519C0CD4F41FC9 /* SocketFastOpen.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -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\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors"; }; }; - 9745BB9C64BB16CDB4F6652AFB49C74F /* BugsnagBreadcrumb.m in Sources */ = {isa = PBXBuildFile; fileRef = 4B96ADDB9FD90F50AE207FA323FF1978 /* BugsnagBreadcrumb.m */; }; - 976824E60D18ED9C1634C1DEC3770977 /* SDWebImageCacheSerializer.m in Sources */ = {isa = PBXBuildFile; fileRef = CD6D9EE4F9E1E2024338F163648B0426 /* SDWebImageCacheSerializer.m */; }; - 976C56B4C53CD7753DDC2FA9A852BE4B /* GlobalThreadPoolList.h in Headers */ = {isa = PBXBuildFile; fileRef = 8987A4D1D0660908F0E583A0A5E1D8EC /* GlobalThreadPoolList.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 976E2CF54F0AEDC5BDF05F775B1DD1ED /* UMModuleRegistryProvider.h in Headers */ = {isa = PBXBuildFile; fileRef = 65A8ACF1D7DE947873F2F653FE01B728 /* UMModuleRegistryProvider.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 97747D78210FB0127E34B55647D55E80 /* huffman_encode_utils.h in Headers */ = {isa = PBXBuildFile; fileRef = 3194A8673DB4A5FEE86505230F0E1A74 /* huffman_encode_utils.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 97805879832810482FA9569DB0F653EC /* UMReactFontManager.h in Headers */ = {isa = PBXBuildFile; fileRef = FF9B1705147C4A4C0497F3D38501F86C /* UMReactFontManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 97DF42D60D472C78ABB42974C4672803 /* Orientation.m in Sources */ = {isa = PBXBuildFile; fileRef = 00A8005D412C799A8395E4C8BA76C5D6 /* Orientation.m */; }; - 97E3759E24C3B2EEF1771F0A1320B8AB /* RCTUIManager.m in Sources */ = {isa = PBXBuildFile; fileRef = DE10C5B336D195F78AE3691779E4C990 /* RCTUIManager.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - 9810B4E23A7B4ED9BD0E96374FE46FD3 /* ProxyLockable.h in Headers */ = {isa = PBXBuildFile; fileRef = 46CDBAA05655D7D881FA38D4BD265FF0 /* ProxyLockable.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 981161FD3F202C634F438C067D922A8F /* KeyboardTrackingViewTempManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 05C1523679D85B2912D83941C003FF06 /* KeyboardTrackingViewTempManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 98144B1DC740485421ED3BDF91CE89D8 /* UMNativeModulesProxy.m in Sources */ = {isa = PBXBuildFile; fileRef = 0AA408A83949F54272C0B48056AB7749 /* UMNativeModulesProxy.m */; }; - 981C079E747231C729CA0D5E793AA6EC /* SDWebImageDownloaderRequestModifier.m in Sources */ = {isa = PBXBuildFile; fileRef = C1B96F85E728B20381F51A90D5688A0B /* SDWebImageDownloaderRequestModifier.m */; }; - 9828B25D9B287B56BAFC3BFB98771B5D /* FIRAppAssociationRegistration.h in Headers */ = {isa = PBXBuildFile; fileRef = 89DBA7C561C5E445FC40A52A05441870 /* FIRAppAssociationRegistration.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 9831470C75FF63850CF99E426ED06C43 /* RCTMultilineTextInputViewManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 395A42BD9767360C5A6BF5EB5CDB1A2E /* RCTMultilineTextInputViewManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 983C07B9FA7CD711227A49EADA39E4D3 /* BSG_KSMachHeaders.c in Sources */ = {isa = PBXBuildFile; fileRef = AB69548D24BE673DDA52B188807B39E6 /* BSG_KSMachHeaders.c */; }; - 984FABFD18FC0EE396366BE536CAA0CD /* Promise-inl.h in Headers */ = {isa = PBXBuildFile; fileRef = F850DA2AF3D46F85AD5CA6273D824993 /* Promise-inl.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 984FC07221CF2331700F4A4A1D041536 /* strlcpy.c in Sources */ = {isa = PBXBuildFile; fileRef = 6E06CF35D5BF7A55466AB24B113BEC05 /* strlcpy.c */; }; - 98674B6F902D96C5C51E908741BC41B7 /* GULNSDataInternal.h in Headers */ = {isa = PBXBuildFile; fileRef = DC2814881692783265682204F533FCA5 /* GULNSDataInternal.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 9884E80C7D6E76D1716EE79DCD264E3D /* Flowables.h in Headers */ = {isa = PBXBuildFile; fileRef = 77B4AD5BD0867366BCAC679EF4C7DD7F /* Flowables.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 98876F1B587BD92DBD0457B3B0584F00 /* common_sse41.h in Headers */ = {isa = PBXBuildFile; fileRef = 35EE45AAA32375675BA4E409CE39608C /* common_sse41.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 9887978226B50484F4C32672E5A66385 /* openssl_cfb128.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 4C0D19222FBB7FD8D7B92CB3243EABD1 /* openssl_cfb128.cpp */; settings = {COMPILER_FLAGS = "-x objective-c++ -fno-objc-arc"; }; }; - 988D42C8242951CEA30038F87D5F8795 /* BlurViewManager.h in Headers */ = {isa = PBXBuildFile; fileRef = F1CAFDC9749A658C4C770C094DF84470 /* BlurViewManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 9893816C3E70F236B24AE27C7E8E771D /* EXConstantsService.h in Headers */ = {isa = PBXBuildFile; fileRef = 99A6421B152D69680B967E3A392F1F99 /* EXConstantsService.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 9897FC31A052A2CA0933518F865E72B4 /* RCTActivityIndicatorView.h in Headers */ = {isa = PBXBuildFile; fileRef = 1215CA56CB2009D56FA56A842354661A /* RCTActivityIndicatorView.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 98A56F29B85029091394F250DC9C5FDC /* SDImageIOAnimatedCoder.h in Headers */ = {isa = PBXBuildFile; fileRef = 93DF72D593084C73110B41D3BABC0BC0 /* SDImageIOAnimatedCoder.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 98ABC6BDC82C7CEAA1173731B394035E /* RCTJSInvokerModule.h in Headers */ = {isa = PBXBuildFile; fileRef = 11F4D1232243030A9C086F45393EDA6A /* RCTJSInvokerModule.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 98AED2FFC0C16A6D054C24C13543D8E1 /* SysFile.h in Headers */ = {isa = PBXBuildFile; fileRef = 52292E739162D20DA20E175D11C9397D /* SysFile.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 98B07CD7F6BC44CEA3E8579EF59EC375 /* GULAppEnvironmentUtil.m in Sources */ = {isa = PBXBuildFile; fileRef = 4A2B792B80ED688B169D906DB78A6E39 /* GULAppEnvironmentUtil.m */; }; - 98BD3575D637BF290382049544412C01 /* DrivableExecutor.h in Headers */ = {isa = PBXBuildFile; fileRef = 2632AD27AF35AE4D7B055CA92A3B1858 /* DrivableExecutor.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 98D0580987857A7AF9889D71E9361EA3 /* ThreadCachedArena.h in Headers */ = {isa = PBXBuildFile; fileRef = C996B89FC9E4665A6ADF3EF655EC8278 /* ThreadCachedArena.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 98D3E4C436C835AF5AB4442A209204E8 /* LifoSemMPMCQueue.h in Headers */ = {isa = PBXBuildFile; fileRef = A83265905D820ED86E7A6C8F2B1722CE /* LifoSemMPMCQueue.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 98D42452DF576790B4A295BC04E94D0F /* GULSceneDelegateSwizzler_Private.h in Headers */ = {isa = PBXBuildFile; fileRef = BDA60B5F2263D814E171E633B919C049 /* GULSceneDelegateSwizzler_Private.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 98D8061FB7CA86CC8EDFA009792BA5F7 /* FIRCLSMachException.h in Headers */ = {isa = PBXBuildFile; fileRef = 4650214C8D06B983E210DAE986824CDF /* FIRCLSMachException.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 98F2601D5231BA9F1361DB92F1692C2A /* BugsnagError+Private.h in Headers */ = {isa = PBXBuildFile; fileRef = E80DD25952CCAFAE57F3977CEC976B49 /* BugsnagError+Private.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 9919F6E33ED9112EDE8C94603CD3CECD /* RNJitsiMeetViewManager.m in Sources */ = {isa = PBXBuildFile; fileRef = 753AAAB7744B065CE8CE50EB04D985B3 /* RNJitsiMeetViewManager.m */; }; - 991AD6B91E69CF3A2F8601C97B028027 /* ConsumerBase.h in Headers */ = {isa = PBXBuildFile; fileRef = 26F915F6B91658E6473DBAF385C33F60 /* ConsumerBase.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 99606626046C468208E5F53058764E0F /* json.h in Headers */ = {isa = PBXBuildFile; fileRef = B00A3D811FE95BAA79458C70701C7D1E /* json.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 996D279A4E7172BE58B81521E7A164B3 /* id.lproj in Resources */ = {isa = PBXBuildFile; fileRef = 4EEE229A6F5FBD1E1646B6DF98A66DD4 /* id.lproj */; }; - 996F0F0AFA7803AA64EECCD8B63711F2 /* FIRCLSSettings.h in Headers */ = {isa = PBXBuildFile; fileRef = B6951FFCEC3C2314DC3AF5B2C5BE38D1 /* FIRCLSSettings.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 998B3239AD98B6B72E9E1898ADCC248D /* RCTWeakProxy.h in Headers */ = {isa = PBXBuildFile; fileRef = ED30428981B0CC60BB4328E0F7C7F14A /* RCTWeakProxy.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 99972D38A478C11F945900513A5B25AA /* StreamFragmentAccumulator.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 8412BB89120242D71285FD959BAB4CE2 /* StreamFragmentAccumulator.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -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 -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors"; }; }; - 99AEF020AD403D33E3547834F98A6BB1 /* RNFBCrashlyticsInitProvider.h in Headers */ = {isa = PBXBuildFile; fileRef = D004E755154C0609093CBA5A993FFB05 /* RNFBCrashlyticsInitProvider.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 99C9141904EB81B6CF2971AB346B5BD2 /* stop_watch.h in Headers */ = {isa = PBXBuildFile; fileRef = 2290DE35F2FE49F15FDED12428AEDACB /* stop_watch.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 99D81E8323CC7858CFB0611AA7A21D02 /* quant_dec.c in Sources */ = {isa = PBXBuildFile; fileRef = ED04B609E205529A34A85339041DF566 /* quant_dec.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; - 99E0CBC11C689E6886E826D3D19162C2 /* StringKeyedMap.h in Headers */ = {isa = PBXBuildFile; fileRef = A56FDAA3345D4565EECAADA887F4A7EE /* StringKeyedMap.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 99F6FE2431580AE74D0EBBE8F19DF850 /* FIRCLSMultipartMimeStreamEncoder.h in Headers */ = {isa = PBXBuildFile; fileRef = 74FC53950672DDDEAE0DC47EA151ABEF /* FIRCLSMultipartMimeStreamEncoder.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 9A0EEA24210537F43E8DA92336DA3F8C /* GlobalThreadPoolList.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 86C9BD0FB1C49F89C85AB3AEE0919D46 /* 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"; }; }; - 9A1794F7C3CFD08A0834B1B7BA874C03 /* ThreadCachedInts.h in Headers */ = {isa = PBXBuildFile; fileRef = 467EFFCEBA0775F7D87CA343E87134AF /* ThreadCachedInts.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 9A235B58B77F5773DEFB23676FE48ACF /* GMock.h in Headers */ = {isa = PBXBuildFile; fileRef = 493DCB98EA5DCFD10DAB11CBB5E00622 /* GMock.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 9A357B71BD6AD9B5FB78741E775AF56C /* Poly-inl.h in Headers */ = {isa = PBXBuildFile; fileRef = C94CA6CA326F12DDC913D558730C0BFA /* Poly-inl.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 9A3A1F20B890409A02089B1795146204 /* FIRComponentContainer.h in Headers */ = {isa = PBXBuildFile; fileRef = 9F2E5E567F2A3E3F8FACC128F1C8B145 /* FIRComponentContainer.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 9A4764272B17E0B5E1B5872BD4975C9E /* react-native-restart-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 9F198B4D94F74E5EB473430661ECBF52 /* react-native-restart-dummy.m */; }; - 9A4C22A2AF221410AE0409CE54CF8AA7 /* UIImage+Metadata.h in Headers */ = {isa = PBXBuildFile; fileRef = 3063FC67A941CB517B8CBB84E4A02102 /* UIImage+Metadata.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 9A518E0BA688C9DD7F172081CB74201F /* BSG_KSCrashSentry_NSException.h in Headers */ = {isa = PBXBuildFile; fileRef = 435AE9BC5C9E3CF7503A8F43DB6123FC /* BSG_KSCrashSentry_NSException.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 9A530787EE154EC14A1E0C2D94DA0B5D /* RCTImageURLLoaderWithAttribution.mm in Sources */ = {isa = PBXBuildFile; fileRef = F23AD8558F75A3F91F8721E980114C00 /* 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"; }; }; - 9A552D2A35F377A8BC4E5851CB5D592C /* DynamicConverter.h in Headers */ = {isa = PBXBuildFile; fileRef = 9B408B54017E7CCE97492E0497ADAAD3 /* DynamicConverter.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 9A5FADAB4F03FE48215FE539AD6CDB6C /* RNFetchBlobProgress.h in Headers */ = {isa = PBXBuildFile; fileRef = 021802B622F23E1BF04496EDA30089F5 /* RNFetchBlobProgress.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 9A671261BCF03BE822F27247E58DB967 /* FrameType.h in Headers */ = {isa = PBXBuildFile; fileRef = 992BE0FF9C4E7E0A4E2106380FB6AEC1 /* FrameType.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 9A8AF5825B359550081D18DC8E2BDE40 /* RCTInspectorPackagerConnection.h in Headers */ = {isa = PBXBuildFile; fileRef = 0EBF0C796FE60145654DE7FB23E26B32 /* RCTInspectorPackagerConnection.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 9A8F74EDC8845731B3186DD9CB2206FE /* RCTHmac.h in Headers */ = {isa = PBXBuildFile; fileRef = 41CD4FE0B9F16B00300218C0DC70ABF9 /* RCTHmac.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 9A9583FD6786C84B93880BB30FF5C1AF /* IOBuf.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 45269C5EE793D1B620BDCB32BD86F9FA /* IOBuf.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -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\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors"; }; }; - 9AB6657E83BD14D2C907F19FB0C0F1A4 /* SKNamed.mm in Sources */ = {isa = PBXBuildFile; fileRef = 2C27E6A4B9DEE937229E32BDF9455656 /* SKNamed.mm */; settings = {COMPILER_FLAGS = "-DDEBUG=1 -DFLIPPER_OSS=1 -DFB_SONARKIT_ENABLED=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -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"; }; }; - 9ABB33AEEE09EBBC624F71BA25EDB4A0 /* RCTBackedTextInputViewProtocol.h in Headers */ = {isa = PBXBuildFile; fileRef = 219E0924E0BE9C7E6130A5F93A67232A /* RCTBackedTextInputViewProtocol.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 9ACF5CA7A74E330B5145DAF34CCAF6F7 /* decode.h in Headers */ = {isa = PBXBuildFile; fileRef = 04EE6D85344BB560A07B1DB6773B6A74 /* decode.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 9ACF83B889FD019FAB8881F0F08518B1 /* TOCropViewController.h in Headers */ = {isa = PBXBuildFile; fileRef = 51852D46308FFDE1FBDB5D68507E6D81 /* TOCropViewController.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 9AE1BF2B8C06C9D43AB6D88FA2A5D716 /* filters_utils.h in Headers */ = {isa = PBXBuildFile; fileRef = 06F5134F46BE5F3A905A0A76DA52F28E /* filters_utils.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 9B1DBD98BCC78A9847749E8403E3A747 /* F14IntrinsicsAvailability.h in Headers */ = {isa = PBXBuildFile; fileRef = B23643BC6130F9372FAFC59EED9BF7DA /* F14IntrinsicsAvailability.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 9B502C3D5C2C88FD044031F5629F9620 /* RCTJSStackFrame.m in Sources */ = {isa = PBXBuildFile; fileRef = 4F49D2F2C2B99010A57070BFAB8D543D /* RCTJSStackFrame.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - 9B818382C927F7F0DE02D30CE78C27D5 /* FIRCoreDiagnosticsConnector.m in Sources */ = {isa = PBXBuildFile; fileRef = 65C39BD507722298D52DB1270A2BFABE /* FIRCoreDiagnosticsConnector.m */; }; - 9B91F23E1812387F4DFEF1005D75EE0B /* RCTRootContentView.m in Sources */ = {isa = PBXBuildFile; fileRef = A762AC50A28DDAF26213B122E713022B /* RCTRootContentView.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - 9B9514F43EC1D5BEFC4033B1E6E204A6 /* SDWebImage-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 4EF4B6BBDDA951ECBADDA983E7E93BAB /* SDWebImage-dummy.m */; }; - 9B9A827789220660BD62DB1C2D0702C4 /* alpha_enc.c in Sources */ = {isa = PBXBuildFile; fileRef = 6D394A72631D12B745FC13EBB49EBD4A /* alpha_enc.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; - 9BA15B9892D3EC5C5388D2E7F3505CF3 /* RNFBAnalytics-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = E28A2805C79CA4D8B140FB3487A2714D /* RNFBAnalytics-dummy.m */; }; - 9BA8009B2521899A38C7CAC400260168 /* RCTLog.mm in Sources */ = {isa = PBXBuildFile; fileRef = 3D16741B2FF5CADCB83B655457C3DF69 /* RCTLog.mm */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - 9BC0D67BD4D38C4DA73406E7E3B61A54 /* FIRCLSRecordHost.m in Sources */ = {isa = PBXBuildFile; fileRef = 4376713BCD5106D4E76A07353B85BF9E /* FIRCLSRecordHost.m */; }; - 9BE0A66EE0341AE2031B16A946AE7134 /* Format.h in Headers */ = {isa = PBXBuildFile; fileRef = A8C055FC19F0A2F755E33523A31825D8 /* Format.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 9BEE00BB7843DECEBCCC9CE448E22BE3 /* FIRCLSUUID.h in Headers */ = {isa = PBXBuildFile; fileRef = 849FC69E990B83A69FC8A87B83C1C2EB /* FIRCLSUUID.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 9BF173CE03826AB08A9316384881F05B /* Align.h in Headers */ = {isa = PBXBuildFile; fileRef = 5D09B9B81C4A268D1194275F7C4547BF /* Align.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 9C0C52960C0A73443BD28E0AA31235FC /* RNJitsiMeetView.m in Sources */ = {isa = PBXBuildFile; fileRef = 30CB0B977F5A73E7AFE59076D674E06D /* RNJitsiMeetView.m */; }; - 9C1969845430F861B1864B23D09116D1 /* MemoryFile_Android.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 65F7A0C6C87BF5E149864516855F9BB0 /* MemoryFile_Android.cpp */; settings = {COMPILER_FLAGS = "-x objective-c++ -fno-objc-arc"; }; }; - 9C38EED02588E7C20459E10CDED18D31 /* Instance.cpp in Sources */ = {isa = PBXBuildFile; fileRef = CC132ACF573618FC05434FE77430522E /* Instance.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - 9C44596AD88361EE037E481F11AFCD46 /* Future-inl.h in Headers */ = {isa = PBXBuildFile; fileRef = F893670BC5A985D6ABFC6BDA419F2EB6 /* Future-inl.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 9C4F857EE33490DDAF8F64624CB89334 /* MapUtil.h in Headers */ = {isa = PBXBuildFile; fileRef = 485C781CBCAEAD3D09B21CB983E20236 /* MapUtil.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 9C685250F6657B677C9751191D744104 /* Hardware.h in Headers */ = {isa = PBXBuildFile; fileRef = 37E3F2AB320DD034E64B19E8A465385D /* Hardware.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 9C7735F2163F420136DB896DE154101D /* RCTConvertHelpers.mm in Sources */ = {isa = PBXBuildFile; fileRef = FAC8A167DF1A7C0901FE50F1DE77AB71 /* RCTConvertHelpers.mm */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32"; }; }; - 9C7D6F99CF240719DB4609D8680EF70F /* strtod.h in Headers */ = {isa = PBXBuildFile; fileRef = 35D047C1E86408DCC29C1953F2CF1AC9 /* strtod.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 9C805678F5165F588DE03BD1325DD1DD /* FIRComponent.h in Headers */ = {isa = PBXBuildFile; fileRef = 779A992D4CEE8008A2CEE3910FEF2805 /* FIRComponent.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 9C9159682493E8E331DF45EB0BBF078F /* OpenSSL.h in Headers */ = {isa = PBXBuildFile; fileRef = A8E323CFE2D9B1962135FED636658650 /* OpenSSL.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 9C923EDE6371EF17239F4F7972ED20FB /* HazptrObjLinked.h in Headers */ = {isa = PBXBuildFile; fileRef = 2F99A0B6BBCF0E40F9EDF94E751A3821 /* HazptrObjLinked.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 9C9DB4ADD6FC782042C672782FC7F9D4 /* UMViewManager.m in Sources */ = {isa = PBXBuildFile; fileRef = EA6CA669DB11D03491E655AF46257689 /* UMViewManager.m */; }; - 9CB817E466F6B428CA0564B061F94D5B /* CodedInputDataCrypt.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 1158999A56B57AE4217C56B63FFFA59A /* CodedInputDataCrypt.cpp */; settings = {COMPILER_FLAGS = "-x objective-c++ -fno-objc-arc"; }; }; - 9CC5875E36C76821BB01311FC7311F03 /* RCTRefreshControl.h in Headers */ = {isa = PBXBuildFile; fileRef = 960B662DBF07CC6F9D678776B42D2D22 /* RCTRefreshControl.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 9CCB4E32C86B5F29292A363E0F3D1C0B /* QBVideoIndicatorView.m in Sources */ = {isa = PBXBuildFile; fileRef = 21A6053EC3D1830C964689171A8B773B /* QBVideoIndicatorView.m */; }; - 9CCEEFB441CA6B23DFE4EA82F82CC299 /* RSocketClient.h in Headers */ = {isa = PBXBuildFile; fileRef = ADB42F84974E7CE03E7F919814FB22A4 /* RSocketClient.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 9CD7A18C212E1348BF32FF6AF5A105C1 /* json.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 1E3906B67AE280892E16D218B31CE65D /* 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"; }; }; - 9CFE04F45DC1F039A11B13448B9DC3BB /* WTCallback.h in Headers */ = {isa = PBXBuildFile; fileRef = D7D9D01F1D4E888BD17D69E7D442D3DF /* WTCallback.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 9D0157C2516C902B0C5668F1D7ECE8B4 /* cpu.c in Sources */ = {isa = PBXBuildFile; fileRef = 54D5F480D3D001B12F3F9B7A708902AB /* cpu.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; - 9D0AB6793FDBB0A452D2D260D1BE70A7 /* BugsnagDeviceWithState.h in Headers */ = {isa = PBXBuildFile; fileRef = 4206D953AD1F576B3D25AB9DF3998B7E /* BugsnagDeviceWithState.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 9D17F4AEB3B893D699911679E3901887 /* ConcurrentBitSet.h in Headers */ = {isa = PBXBuildFile; fileRef = DD0E1AD5E554C9C1E9D21507A4CEB48F /* ConcurrentBitSet.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 9D182943C7340DBD8F9573412ED42D84 /* RCTConvert+Transform.m in Sources */ = {isa = PBXBuildFile; fileRef = 48FF49A5736D3E0E27EEF1C0B1B69DEE /* 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"; }; }; - 9D18B87E5733F74063319AF98E905A83 /* FIRCLSThreadState.h in Headers */ = {isa = PBXBuildFile; fileRef = 99D63D6DE4959BB4E1B63AC9F0799982 /* FIRCLSThreadState.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 9D195665137A6FD3B32E5032C6AA28F4 /* RCTTextShadowView.m in Sources */ = {isa = PBXBuildFile; fileRef = FE11B48849D25AB2247070F9E98D8372 /* RCTTextShadowView.m */; }; - 9D31D779DCFDF0E99E28FB0970213820 /* RCTEventDispatcherProtocol.h in Headers */ = {isa = PBXBuildFile; fileRef = BED751D1A47742D040BC09C13B8E004A /* RCTEventDispatcherProtocol.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 9D518DF59F149F1D368C6CD8732D5AAA /* EvictingCacheMap.h in Headers */ = {isa = PBXBuildFile; fileRef = F90EED1DC20A348419D2B4FB2DCB70F7 /* EvictingCacheMap.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 9D5946C6E9DFE4704357CB5F9284E4DE /* FIRCLSURLSessionUploadTask.m in Sources */ = {isa = PBXBuildFile; fileRef = D1C3457EB97C2E145F1E6A47676EB365 /* FIRCLSURLSessionUploadTask.m */; }; - 9D5F402198C55E089E900CEED637C489 /* FIRInstallationsSingleOperationPromiseCache.h in Headers */ = {isa = PBXBuildFile; fileRef = 56EA0A0FE0344C01612010C4CCF72387 /* FIRInstallationsSingleOperationPromiseCache.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 9D6CA7E422AC999BD7D683CCF7A99813 /* utilities.cc in Sources */ = {isa = PBXBuildFile; fileRef = 20FB1C46B3A480564D18373330A4363E /* utilities.cc */; settings = {COMPILER_FLAGS = "-Wno-shorten-64-to-32"; }; }; - 9D81100F4C48477434A860FDCEB3410C /* REAPropsNode.h in Headers */ = {isa = PBXBuildFile; fileRef = 3B52C25E241A136F30D3AFEA155BECF7 /* REAPropsNode.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 9D846344563C09C82E7CAF7A706A80CC /* AsyncUDPSocket.h in Headers */ = {isa = PBXBuildFile; fileRef = 1857653120D5622FD9F39A9D005F8B7E /* AsyncUDPSocket.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 9D87D311C26340D5D291CFB93D9E9D86 /* SDWebImageCacheKeyFilter.h in Headers */ = {isa = PBXBuildFile; fileRef = E411C8BA0F4807158FF937325ED18B84 /* SDWebImageCacheKeyFilter.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 9D93D9974E5D46E2B0944764C6CA3D4D /* GDTCORUploadCoordinator.m in Sources */ = {isa = PBXBuildFile; fileRef = A90DA217769C6CAEDBADCEFC36C37E03 /* GDTCORUploadCoordinator.m */; }; - 9D9F5487A0E5A8EA62872F1929529624 /* UIButton+WebCache.h in Headers */ = {isa = PBXBuildFile; fileRef = F16E8A00A68196A9CE422DD73DF4B061 /* UIButton+WebCache.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 9DBF53CC7EE3CC11DF8C5654E85D1D5A /* RCTModalManager.m in Sources */ = {isa = PBXBuildFile; fileRef = F27BB7B44D3D4D6F369D067EAC8C428F /* RCTModalManager.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - 9DC24FFC0CCB93AB78DF3B1041915EE6 /* Config.h in Headers */ = {isa = PBXBuildFile; fileRef = CCFEC6EEED220D1BD667FF0839451C3E /* Config.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 9DC35C14F95C46E9374E20B715F57EB6 /* DeferFlowable.h in Headers */ = {isa = PBXBuildFile; fileRef = 0C399D5AF94FACC5E5C007509E34ABC1 /* DeferFlowable.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 9DCDFA688EB66A3D36CB49F387411C28 /* RNCWebView.h in Headers */ = {isa = PBXBuildFile; fileRef = 39494CE5C6E65BE2867714886194D196 /* RNCWebView.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 9DF605AC1E79FDBBEEF14DC2C0F98422 /* ProgramOptions.h in Headers */ = {isa = PBXBuildFile; fileRef = D341FB6C784B8F24292A0C10871CB739 /* ProgramOptions.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 9E003E8C0250A351940CD51439FB964E /* BlurEffectWithAmount.h in Headers */ = {isa = PBXBuildFile; fileRef = 501761ADCF286CCADF126E860D725360 /* BlurEffectWithAmount.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 9E15132D738425623615DAFB0C2D89E1 /* bignum-dtoa.h in Headers */ = {isa = PBXBuildFile; fileRef = 4993498A328BEB89326E75F6E62CD440 /* bignum-dtoa.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 9E32DF386C7B6419161C5398DD25C077 /* RCTMultipartDataTask.h in Headers */ = {isa = PBXBuildFile; fileRef = 735F9214AF5AF9C5F1500BB498DBDC15 /* RCTMultipartDataTask.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 9E361E89925BB36D99B2C97D0C635C00 /* FIRStackFrame_Private.h in Headers */ = {isa = PBXBuildFile; fileRef = F905161DEF3AFDF41768E0E23B15FB64 /* FIRStackFrame_Private.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 9E48A1068E67EEC3A9632F1BAA053634 /* SDGraphicsImageRenderer.m in Sources */ = {isa = PBXBuildFile; fileRef = CD5D732B125633DF2A14954BE4893DD4 /* SDGraphicsImageRenderer.m */; }; - 9E52D50A55E938F8DDEBFCA82EA88363 /* SysUio.cpp in Sources */ = {isa = PBXBuildFile; fileRef = AC3B6E2A54F07D4CA19C1041C8695202 /* 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 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_PTHREAD=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - 9E5E374A990E869A862DB188F141597C /* PasswordInFile.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 274B19FA8A792CB235E69E5DD624093F /* PasswordInFile.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -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\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors"; }; }; - 9EA5F1348EA8C3A44969FF0B1F1F0D19 /* RCTView.m in Sources */ = {isa = PBXBuildFile; fileRef = 7A039AC3AF9B6A4E8EC9068BFFB63CDE /* RCTView.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - 9EBD5A167465C22DF34E58C565104D32 /* SDDiskCache.m in Sources */ = {isa = PBXBuildFile; fileRef = 43926C42B8EDE22B6094E95AC9E82CC8 /* SDDiskCache.m */; }; - 9ED2961FDD61DFAB3A56FBBBB219DB53 /* RCTBaseTextViewManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 66F0D8BBD14EFB8EA9197CDCE644FAB0 /* RCTBaseTextViewManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 9EE41C5E1C26BD0FC27AE776729FC792 /* Bits.h in Headers */ = {isa = PBXBuildFile; fileRef = 5F7131E80F05E6182455932994237783 /* Bits.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 9EEAD4B922E38308A370C93A16E612B9 /* Demangle.h in Headers */ = {isa = PBXBuildFile; fileRef = 50E5E39E08E43D6230F656F5307A4CD1 /* Demangle.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 9EF06D70B0E1CDDEB59C9199483CEA50 /* Tearable.h in Headers */ = {isa = PBXBuildFile; fileRef = 0B9F4EA75F69F6FBF04FED883FE345FF /* Tearable.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 9F0FEA0255A36C897A3DE56B17865AB1 /* SpinLock.h in Headers */ = {isa = PBXBuildFile; fileRef = E9AB1651105F9583CE5F40B209236A82 /* SpinLock.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 9F2D4D2A7BD02828FF833F3F267BD743 /* ARTSurfaceViewManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 0717248847249C2F0906B2AF1AC14BA2 /* ARTSurfaceViewManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 9F36780B8C742E37C036EE4F8A2B5370 /* Builtins.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 6DE2E381F8E1CE4FA0EC39A780E182F4 /* Builtins.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -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\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors"; }; }; - 9F51C6614E341953C2241386E269CF5B /* UIImage+WebP.m in Sources */ = {isa = PBXBuildFile; fileRef = 5F62DCB13F6FE4400AF13DBBAB827945 /* UIImage+WebP.m */; }; - 9F7F58E0246EE4AFC13AC9BBD7E2CB17 /* RNCommandsHandler.h in Headers */ = {isa = PBXBuildFile; fileRef = 8E049A2A502254569AAD1E846716AAF6 /* RNCommandsHandler.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 9F8EB12BC10441086E0A5D204EEBC722 /* RNFBAnalyticsModule.m in Sources */ = {isa = PBXBuildFile; fileRef = 8BE6ADD1D1BE6811A03AFB71BBB1B55C /* RNFBAnalyticsModule.m */; }; - 9FDCAB9E0D704899E93E71953BCDE16B /* UMJavaScriptContextProvider.h in Headers */ = {isa = PBXBuildFile; fileRef = 91A46B091E0CF0D8EC21498BA37BBE37 /* UMJavaScriptContextProvider.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 9FF2917107FAFF00FDB75E76F5F610FC /* RNCAppearanceProviderManager.m in Sources */ = {isa = PBXBuildFile; fileRef = 6C038D726C9B5961986DC385A924ED87 /* RNCAppearanceProviderManager.m */; }; - 9FF5160E99B84923A6A847416332AF99 /* RCTAes.m in Sources */ = {isa = PBXBuildFile; fileRef = 8EC04E43DE6799F166D0E055BB69C5F7 /* RCTAes.m */; }; - 9FF8AD4003970A7474066E65DB8DAEB5 /* BSGEventUploadObjectOperation.m in Sources */ = {isa = PBXBuildFile; fileRef = 27B7CEE5273A820E4FE8C0B13071E6DC /* BSGEventUploadObjectOperation.m */; }; - A0208F37510AA099AECED2795C67D8FD /* Barrier.h in Headers */ = {isa = PBXBuildFile; fileRef = 18B7462B3C061DE486F2ECD2DBB0EFC8 /* Barrier.h */; settings = {ATTRIBUTES = (Project, ); }; }; - A034395A57C117CF6F15AEC3C5C98E20 /* BSG_KSBacktrace_Private.h in Headers */ = {isa = PBXBuildFile; fileRef = 7BA63D71EF3A6A046A72FA153D8D8971 /* BSG_KSBacktrace_Private.h */; settings = {ATTRIBUTES = (Project, ); }; }; - A058862E9D28E12FD2BBED5B2C4639EF /* GULNetwork.m in Sources */ = {isa = PBXBuildFile; fileRef = 28862980D7EC5653DE2716BB9B13C94C /* GULNetwork.m */; }; - A08031FDC8C48D7DF1EFDA08866F8249 /* CancelingSubscriber.h in Headers */ = {isa = PBXBuildFile; fileRef = 588E2150CDB29AE75B83DC77C9A0D29C /* CancelingSubscriber.h */; settings = {ATTRIBUTES = (Project, ); }; }; - A0810DC5994E2B656E998C7B0700374B /* ProtocolVersion.cpp in Sources */ = {isa = PBXBuildFile; fileRef = DEDF0041639EE57E1B34CD0EB872879D /* ProtocolVersion.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -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 -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors"; }; }; - A0ACC7F83CDC302F2DF88876292419FB /* RNCPickerManager.m in Sources */ = {isa = PBXBuildFile; fileRef = 7085CC1C2C2A9C58F7099F2ADC7F4AE6 /* RNCPickerManager.m */; }; - A0B16A8ED149E376671B47003709E603 /* RNRootView-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 7E82EE73F5EEB92B1F189A5C87C94C90 /* RNRootView-dummy.m */; }; - A0C2A7A099376750545501AB6AC0A049 /* Codel.h in Headers */ = {isa = PBXBuildFile; fileRef = 5A4D44FB517A2D94D03CAEC0D755B71A /* Codel.h */; settings = {ATTRIBUTES = (Project, ); }; }; - A0CD2A76FE4C0970F1753683D1E65C1D /* EXAVPlayerData.h in Headers */ = {isa = PBXBuildFile; fileRef = 304FE7BE8CD5D7068F8DDD996E27BD76 /* EXAVPlayerData.h */; settings = {ATTRIBUTES = (Project, ); }; }; - A0D84F19DF6A2644B90B33F30528E60D /* Init.cpp in Sources */ = {isa = PBXBuildFile; fileRef = B58D427C9F4C3FA81D777B5ACD90965F /* Init.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -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\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors"; }; }; - A0EC40F3934CCAFFC6EF3D498D3F499F /* EXAudioSessionManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 9ED419A662981D7AE5D0F29FA5445E7C /* EXAudioSessionManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; - A0F985796CE79ED953E93EC40DDB214B /* FIRCLSFCRAnalytics.h in Headers */ = {isa = PBXBuildFile; fileRef = AAA30A7DDBAFFF09EFBED557C00B0D64 /* FIRCLSFCRAnalytics.h */; settings = {ATTRIBUTES = (Project, ); }; }; - A0FEFACF7FCC7EB50E3D658D8C1A19AF /* FKPortForwardingServer.m in Sources */ = {isa = PBXBuildFile; fileRef = E5DBA3610AA54AC09C951A55CEA789D4 /* FKPortForwardingServer.m */; settings = {COMPILER_FLAGS = "-DDEBUG=1 -DFLIPPER_OSS=1 -DFB_SONARKIT_ENABLED=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -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"; }; }; - A13D2953A26A78E54FF5F10BDCC20A73 /* CodedInputData.cpp in Sources */ = {isa = PBXBuildFile; fileRef = BE976562678AD794F1D9F2F35E89CA6D /* CodedInputData.cpp */; settings = {COMPILER_FLAGS = "-x objective-c++ -fno-objc-arc"; }; }; - A1511D7B745F233DBE0D869661A2246C /* SKRequestInfo.h in Headers */ = {isa = PBXBuildFile; fileRef = 3A8CCCBE73A3BFD287D74C0DFBF7B010 /* SKRequestInfo.h */; settings = {ATTRIBUTES = (Project, ); }; }; - A15D2CEDFCD3E131001DFF1B971C79A2 /* FIRInstallationsItem.h in Headers */ = {isa = PBXBuildFile; fileRef = 3EF4E581C7EAB7D5EBD1377F06CA0214 /* FIRInstallationsItem.h */; settings = {ATTRIBUTES = (Project, ); }; }; - A15F4392D179EEA136BA24FEBE1BE4BF /* FIRCLSException.mm in Sources */ = {isa = PBXBuildFile; fileRef = 0AE8790703D5118D50FCE795027DAE86 /* FIRCLSException.mm */; }; - A168A5FBE5A246193CE358644F7987B5 /* dec_mips_dsp_r2.c in Sources */ = {isa = PBXBuildFile; fileRef = 56C70B4DCF1B4B7B72930A3391747A64 /* dec_mips_dsp_r2.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; - A1697D24BEFB10575F03B2B164735B84 /* FIRCLSHandler.m in Sources */ = {isa = PBXBuildFile; fileRef = D232B35AB8CB2A662E1C23302D9213F2 /* FIRCLSHandler.m */; }; - A16C18D9138296744AFF8F7F748CF827 /* HighlighterView.m in Sources */ = {isa = PBXBuildFile; fileRef = 29D8C493EAE7FD366C03A3D9A1E33139 /* HighlighterView.m */; }; - A179F06BD85B96B08B79E6936B455152 /* Yoga-umbrella.h in Headers */ = {isa = PBXBuildFile; fileRef = 9E8370F57B4CD8FC9815CC109C7CF48C /* Yoga-umbrella.h */; settings = {ATTRIBUTES = (Project, ); }; }; - A185AA0D4887B2CE699640D4D7AFA626 /* ARTTextFrame.h in Headers */ = {isa = PBXBuildFile; fileRef = 58EC4AF8CC887E52459F1B6E3EC87A2F /* ARTTextFrame.h */; settings = {ATTRIBUTES = (Project, ); }; }; - A1869E7C288CC107421EA50CAB3D7A45 /* changelist-internal.h in Headers */ = {isa = PBXBuildFile; fileRef = 3307140B2150CE64DA8836A94A018B22 /* changelist-internal.h */; settings = {ATTRIBUTES = (Project, ); }; }; - A1BD3EF5F8E40C42F8C2E6311902DF10 /* PTProtocol.m in Sources */ = {isa = PBXBuildFile; fileRef = 57700021537417430A8DB243329E7650 /* PTProtocol.m */; }; - A1C723DD6E878F903B55C583CA39F0C4 /* dec_msa.c in Sources */ = {isa = PBXBuildFile; fileRef = 494B87A43A32CA29805FA67042D33BDE /* dec_msa.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; - A1C79D5750AA6CFA04B7291D91E3559E /* Inspector.h in Headers */ = {isa = PBXBuildFile; fileRef = 16CE48BF7953C0C2AE3725FB0BA0A62C /* Inspector.h */; settings = {ATTRIBUTES = (Project, ); }; }; - A1DF2260D770695708A419261895CF05 /* IntrusiveList.h in Headers */ = {isa = PBXBuildFile; fileRef = 64AEE34E39F21439039BA2068927D0F2 /* IntrusiveList.h */; settings = {ATTRIBUTES = (Project, ); }; }; - A208B9DF1228D576CCBB475A7493C95B /* Aes.h in Headers */ = {isa = PBXBuildFile; fileRef = 24A3417FE1B047417425727CDF0DA377 /* Aes.h */; settings = {ATTRIBUTES = (Project, ); }; }; - A20934A1553BFE2A0426BE5CEB658A85 /* ARTNodeManager.m in Sources */ = {isa = PBXBuildFile; fileRef = A800C3F16DC464A4511CDAE609AFBA34 /* ARTNodeManager.m */; }; - A230A636EBAA3FC7C21F16C0CB813B2C /* UniqueInstance.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 60A78B90FBEAE0D288D92B02DE601C21 /* UniqueInstance.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -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\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors"; }; }; - A243DA45E5E811575BE6D9C8D5D19B0A /* TupleOps.h in Headers */ = {isa = PBXBuildFile; fileRef = 634C827508AD23CC96DA5F402D7C9362 /* TupleOps.h */; settings = {ATTRIBUTES = (Project, ); }; }; - A2460B0823D5836054A3DA49144854D1 /* RCTView.h in Headers */ = {isa = PBXBuildFile; fileRef = 567132C080CB36CCAE683AD8A7F396F3 /* RCTView.h */; settings = {ATTRIBUTES = (Project, ); }; }; - A289DB69283EBE2268B03595065884E8 /* RSocketStateMachine.h in Headers */ = {isa = PBXBuildFile; fileRef = 9B5CC4A2C693BCADBAABAD140462B77B /* RSocketStateMachine.h */; settings = {ATTRIBUTES = (Project, ); }; }; - A29292B06DA79A3685EBB0F9251FBF23 /* CheckedMath.h in Headers */ = {isa = PBXBuildFile; fileRef = 3756EE7F1DFB6475A746872E741191EA /* CheckedMath.h */; settings = {ATTRIBUTES = (Project, ); }; }; - A29838D1EF56622F3749F84D0B6778BC /* LNInterpolation.h in Headers */ = {isa = PBXBuildFile; fileRef = 365DCA14B065A771C6DEA582FB1A0EF1 /* LNInterpolation.h */; settings = {ATTRIBUTES = (Project, ); }; }; - A2AE641A8D2B83A7B992D6949D1CFEE4 /* RCTConvert.m in Sources */ = {isa = PBXBuildFile; fileRef = 8F14D03B87A58FC1FBE0393BB896B286 /* RCTConvert.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - A2B02DD670D2C4BF160232567D2A55CC /* RNCWKProcessPoolManager.h in Headers */ = {isa = PBXBuildFile; fileRef = DA0734961EB066403A23D40DD5CB7F39 /* RNCWKProcessPoolManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; - A2B4F839B3333CC8F88A58378DB5F8C4 /* FIRExceptionModel.h in Headers */ = {isa = PBXBuildFile; fileRef = 72505AE0D9A7E5D7961E65C7BC1D3030 /* FIRExceptionModel.h */; settings = {ATTRIBUTES = (Project, ); }; }; - A2CAC7A8053A56639056B47EE21F3AD3 /* ClientResumeStatusCallback.h in Headers */ = {isa = PBXBuildFile; fileRef = A5C656C37A50DDE3A50DF9C5554CE5FF /* ClientResumeStatusCallback.h */; settings = {ATTRIBUTES = (Project, ); }; }; - A2E238E6B2EE0E3563AFFF989B1A6C07 /* FIRCoreDiagnosticsInterop.h in Headers */ = {isa = PBXBuildFile; fileRef = 26C4479AE2FD2A23C40DCA31F4837852 /* FIRCoreDiagnosticsInterop.h */; settings = {ATTRIBUTES = (Project, ); }; }; - A2E4E857A1D8BFFEE31E4221565D5EA5 /* RCTSurfaceHostingView.mm in Sources */ = {isa = PBXBuildFile; fileRef = 940D3485BDD3CAB77D10FE84E6AEE696 /* RCTSurfaceHostingView.mm */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - A2E682F4C51FB0D40F11E29E16B98DAA /* AsymmetricMemoryBarrier.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 9761F3CC3B223CD48DD9834FAD2DB33B /* AsymmetricMemoryBarrier.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -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\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors"; }; }; - A2E97D51F262F31E91DA87975BB2285B /* Sse.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 4CECE588B11B66574740EDC761BC4245 /* Sse.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -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\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors"; }; }; - A2EBC94A29EB94DE285B6B97F6DD140F /* NetworkSocket.h in Headers */ = {isa = PBXBuildFile; fileRef = AC2EEB1C5D2349E639546215C18B912F /* NetworkSocket.h */; settings = {ATTRIBUTES = (Project, ); }; }; - A328868CCCC1DA31336386A7BE4ED320 /* SysUio.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 1EF847C047A35D234BA6D2C802DA29CE /* SysUio.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -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\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors"; }; }; - A32C6F0217B5D8317CF1565279E257CC /* FKUserDefaultsPlugin.h in Headers */ = {isa = PBXBuildFile; fileRef = 84FCCA45C59E07CDDF03842BAA20E30E /* FKUserDefaultsPlugin.h */; settings = {ATTRIBUTES = (Project, ); }; }; - A3337963E345B87DD57F81879C9A8BCC /* GroupVarint.h in Headers */ = {isa = PBXBuildFile; fileRef = 8A55EA8DB6FFFDD98AC945B1B3D554C6 /* GroupVarint.h */; settings = {ATTRIBUTES = (Project, ); }; }; - A3377E75A6E4A4461B63CFAAC884C5F3 /* UMAppLoaderProvider.h in Headers */ = {isa = PBXBuildFile; fileRef = 8CAFCFDEAC634A6E70497DD50AFA9962 /* UMAppLoaderProvider.h */; settings = {ATTRIBUTES = (Project, ); }; }; - A3466D1CD3E5ABD9DC1A6EFC5A4DA647 /* cached-powers.cc in Sources */ = {isa = PBXBuildFile; fileRef = 73BE7F7E69A8E5DF009A8FD8C3FE67B6 /* cached-powers.cc */; settings = {COMPILER_FLAGS = "-Wno-unreachable-code"; }; }; - A3494010791A1B02EDFFFC93611785D1 /* Fixture.cpp in Sources */ = {isa = PBXBuildFile; fileRef = C10EF9F124CA4DE97790AECBE28BBB56 /* Fixture.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -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 -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors"; }; }; - A3728DFC1D081CD0D9AE67AB8083DFEC /* TimeoutQueue.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 29A82CA43E2FB7A6EF4D228560B1C21A /* TimeoutQueue.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -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\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors"; }; }; - A37FB8913F1C27F36D6F39F87E0D3F53 /* RNCCameraRollManager.h in Headers */ = {isa = PBXBuildFile; fileRef = B8F219340A061E4C9BCAE205A836076D /* RNCCameraRollManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; - A38ECAF476A0C28A54DCBCA2A616397C /* Math.h in Headers */ = {isa = PBXBuildFile; fileRef = 4AD14B53656A77114A33E2075E243ACF /* Math.h */; settings = {ATTRIBUTES = (Project, ); }; }; - A395D179AB5A02E082760F7058AB581B /* yuv_mips32.c in Sources */ = {isa = PBXBuildFile; fileRef = 228D6DB21FCFE39B36DCB5F42552FB22 /* yuv_mips32.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; - A3B5C8FA91E861C82F13D5F1B46D4BE3 /* RCTBackedTextInputDelegateAdapter.m in Sources */ = {isa = PBXBuildFile; fileRef = 009BC89DA592B58B06F9C36A0827E973 /* RCTBackedTextInputDelegateAdapter.m */; }; - A3B65AB352EDA7A1F5E17B1FE72CDF37 /* EXWebBrowser.h in Headers */ = {isa = PBXBuildFile; fileRef = BD74D03C3EB4CC221C70AE0F7F2DB24E /* EXWebBrowser.h */; settings = {ATTRIBUTES = (Project, ); }; }; - A3D5109AF9418C4ED1014068A3857A80 /* Random-inl.h in Headers */ = {isa = PBXBuildFile; fileRef = 2C93158493456F2BAA4F220083CADB69 /* Random-inl.h */; settings = {ATTRIBUTES = (Project, ); }; }; - A3E71FBB1483CF35881D3F3F7A5E0853 /* demangle.cc in Sources */ = {isa = PBXBuildFile; fileRef = 2CE7BF3DDCFD977FF416D41F80C473E0 /* demangle.cc */; settings = {COMPILER_FLAGS = "-Wno-shorten-64-to-32"; }; }; - A3EE66389AE23C408A84E13950F65C82 /* RNGestureHandlerManager.m in Sources */ = {isa = PBXBuildFile; fileRef = 42961159B1D3A64B02FE53F5D5921D7B /* RNGestureHandlerManager.m */; }; - A3F02B5565BA3484B7A7776FD60043D7 /* json_patch.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 97F0CE7DDECCEC0566F9F9C3954CF19F /* json_patch.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -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\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors"; }; }; - A3FBFA622F9CB74AEEF3B54D50D134A7 /* utils.c in Sources */ = {isa = PBXBuildFile; fileRef = 7963E4D9437C77A4AD380A283F73B8CD /* utils.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; - A3FFB0CDF15C9147801E908C9F77B60E /* FixedString.h in Headers */ = {isa = PBXBuildFile; fileRef = 860239C88599BC26C8132EA2A3B02158 /* FixedString.h */; settings = {ATTRIBUTES = (Project, ); }; }; - A40B29DD535C1AAB0BB8FD290362F887 /* AtomicHashUtils.h in Headers */ = {isa = PBXBuildFile; fileRef = E36301726B1651C9836AC75A92EAE3EC /* AtomicHashUtils.h */; settings = {ATTRIBUTES = (Project, ); }; }; - A434867A0A2FF3CAAA587EFED4C718B0 /* Spin.h in Headers */ = {isa = PBXBuildFile; fileRef = C420F3C2B52E600E348B204665C68FD2 /* Spin.h */; settings = {ATTRIBUTES = (Project, ); }; }; - A442BD5B32CB4C51316F28EE52A9DF89 /* SlowFingerprint.h in Headers */ = {isa = PBXBuildFile; fileRef = A8A50CF4DE81C41A118A56BE7BDB341C /* SlowFingerprint.h */; settings = {ATTRIBUTES = (Project, ); }; }; - A46AAF7A42339DEEC13CDDF0F836FBB2 /* Restart.m in Sources */ = {isa = PBXBuildFile; fileRef = 85E941E45C8BA1C7C836427904213DD1 /* Restart.m */; }; - A47017A92B6E1B7454CAE81AC13B6D51 /* Demangle.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 71AE22565DA82EAA87D9FBFEE7C353B9 /* 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"; }; }; - A47BD48D65FC05A97543388F60CCC4B5 /* ThreadWheelTimekeeper.h in Headers */ = {isa = PBXBuildFile; fileRef = 9EEEEE02F2EDE8821AF6967B644451D7 /* ThreadWheelTimekeeper.h */; settings = {ATTRIBUTES = (Project, ); }; }; - A4BC6FA20AC696FFB4D868DEA7EDA236 /* TOCroppedImageAttributes.h in Headers */ = {isa = PBXBuildFile; fileRef = ACDE026E7E3436E45FCF245D8CB49C47 /* TOCroppedImageAttributes.h */; settings = {ATTRIBUTES = (Project, ); }; }; - A4C2F0DCFE8D97F5EFF367A714DF5676 /* ARTNodeManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 03617C7B382C83B9380716415C7DC53F /* ARTNodeManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; - A4D30486F1E8291816F11D42A5A07BC1 /* BSG_KSJSONCodecObjC.h in Headers */ = {isa = PBXBuildFile; fileRef = 0F1AF0D76254361FAB87C8DBA8DF7440 /* BSG_KSJSONCodecObjC.h */; settings = {ATTRIBUTES = (Project, ); }; }; - A4D5520D0137473949DA762ED51C1E97 /* ARTRadialGradient.h in Headers */ = {isa = PBXBuildFile; fileRef = 22A686E40495B915A10C8270E6551F91 /* ARTRadialGradient.h */; settings = {ATTRIBUTES = (Project, ); }; }; - A4E2278DE2B49437B4CD2FF986432740 /* SDDiskCache.h in Headers */ = {isa = PBXBuildFile; fileRef = A239EAE2E123539A743F11FE6B18B97B /* SDDiskCache.h */; settings = {ATTRIBUTES = (Project, ); }; }; - A4EB397137AF42402B719E65C00F4D34 /* ExceptionWrapper-inl.h in Headers */ = {isa = PBXBuildFile; fileRef = 3887EC7543C5FB4AF86290527D48BD28 /* ExceptionWrapper-inl.h */; settings = {ATTRIBUTES = (Project, ); }; }; - A4F70A8EA65D11D1C2EF962CA3C9D9CA /* RCTRedBoxExtraDataViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = 1F19CC5C35BF909ABD4BC370AB26FF49 /* RCTRedBoxExtraDataViewController.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - A4F849F5F0D9CD393F337409679534FC /* PTUSBHub.h in Headers */ = {isa = PBXBuildFile; fileRef = 1D4EC3A4E9152127A244D35219F44B64 /* PTUSBHub.h */; settings = {ATTRIBUTES = (Project, ); }; }; - A4FC5E70F57E6F605AB36D79BD1A85E9 /* REAClockNodes.m in Sources */ = {isa = PBXBuildFile; fileRef = E02E32A237431173E06EC82446A1EB12 /* REAClockNodes.m */; }; - A5105769B93B9486FA7E8B7EA1A1BADC /* FIRInstallationsIIDStore.h in Headers */ = {isa = PBXBuildFile; fileRef = 7ED107C7D265D1E13894AC662AE1149C /* FIRInstallationsIIDStore.h */; settings = {ATTRIBUTES = (Project, ); }; }; - A5201ED9AAC6F75922AD9ADECE5482F6 /* GULSceneDelegateSwizzler.h in Headers */ = {isa = PBXBuildFile; fileRef = 843C93882E727468AB416A5D1983E793 /* GULSceneDelegateSwizzler.h */; settings = {ATTRIBUTES = (Project, ); }; }; - A55AA887E70C89BE11C87C87982C071A /* Future-pre.h in Headers */ = {isa = PBXBuildFile; fileRef = E49BA4E0B5A65C4D0C289A3CE128B70B /* Future-pre.h */; settings = {ATTRIBUTES = (Project, ); }; }; - A56001E1BB1E95CAE9BC063E754D877E /* FlipperClient+Testing.h in Headers */ = {isa = PBXBuildFile; fileRef = EE722C6B5031C8949D777F1EFEFB3201 /* FlipperClient+Testing.h */; settings = {ATTRIBUTES = (Project, ); }; }; - A561094B2C1666262F94C267FDA7E1F3 /* FIRCLSProfiling.c in Sources */ = {isa = PBXBuildFile; fileRef = A86457AA05C659AA93937FFB3628D5CC /* FIRCLSProfiling.c */; }; - A5714B3CE67D965BB55C26E18ADD415C /* SSLSession.h in Headers */ = {isa = PBXBuildFile; fileRef = C68F5547801F990A641A430EE0156A96 /* SSLSession.h */; settings = {ATTRIBUTES = (Project, ); }; }; - A579CFA764794FC388DF642548112395 /* ColdResumeHandler.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 028F059CB4349635173D9E95BC622538 /* ColdResumeHandler.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -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 -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors"; }; }; - A59724AD1F1CE42A2AE041D2E11E6664 /* RCTConstants.h in Headers */ = {isa = PBXBuildFile; fileRef = 0DF7D4E5C52A9D6120E9A575058D3F6A /* RCTConstants.h */; settings = {ATTRIBUTES = (Project, ); }; }; - A5D95892398465BC514EE0762F274222 /* RCTComponentData.m in Sources */ = {isa = PBXBuildFile; fileRef = 8BE1EDF4BEF9F1060858A53C96B4DFD3 /* RCTComponentData.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - A5E1FF257FB3D23FC44DCF57A2B01DCD /* openssl_md5_dgst.cpp in Sources */ = {isa = PBXBuildFile; fileRef = C482D8D7D2504F96998F7712D5357600 /* openssl_md5_dgst.cpp */; settings = {COMPILER_FLAGS = "-x objective-c++ -fno-objc-arc"; }; }; - A5E2BA2B8B10761D4471CB6F249BE824 /* RCTSegmentedControl.m in Sources */ = {isa = PBXBuildFile; fileRef = 37027DF918D6FE52D89F88CB601858ED /* RCTSegmentedControl.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - A5FCB6B55E3928F85A22473396309862 /* BugsnagStacktrace.h in Headers */ = {isa = PBXBuildFile; fileRef = E1BED444528B620E58346B09FA9CED47 /* BugsnagStacktrace.h */; settings = {ATTRIBUTES = (Project, ); }; }; - A6171B40A37E1034F69687E3297CD922 /* IndexedMemPool.h in Headers */ = {isa = PBXBuildFile; fileRef = FF259A97C6851A6DFEA8E80CC64AAE13 /* IndexedMemPool.h */; settings = {ATTRIBUTES = (Project, ); }; }; - A61F13BCBA8D6AFBE20D1AD144404972 /* CpuId.h in Headers */ = {isa = PBXBuildFile; fileRef = DC98663CBAC5D49967881800F0B876E9 /* CpuId.h */; settings = {ATTRIBUTES = (Project, ); }; }; - A63D3C9078880427DF2EFE45777C1658 /* SDGraphicsImageRenderer.h in Headers */ = {isa = PBXBuildFile; fileRef = 6081D20F35C515C6DB4F00B0209A46F4 /* SDGraphicsImageRenderer.h */; settings = {ATTRIBUTES = (Project, ); }; }; - A6588D14E11C8EA60BFD863260803D30 /* Hazptr-fwd.h in Headers */ = {isa = PBXBuildFile; fileRef = C1A92D7C500C0C8CEF6AC4E77BC0643D /* Hazptr-fwd.h */; settings = {ATTRIBUTES = (Project, ); }; }; - A6655A84B7D43672CF9624EBF16C90A9 /* Singleton.h in Headers */ = {isa = PBXBuildFile; fileRef = 8C2BF6D7D29BA84505F3F81A66087F40 /* Singleton.h */; settings = {ATTRIBUTES = (Project, ); }; }; - A6684C723B4BA6FF7F1E3F582A221488 /* BaselinesAsyncSocket.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 7F0D2C5FD5821F14AF72DA3AA3FE84F6 /* BaselinesAsyncSocket.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -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 -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors"; }; }; - A66A6A6EEDE7043322F4D35299D8F086 /* ieee.h in Headers */ = {isa = PBXBuildFile; fileRef = FD1A4FB0F4464BD1370B5260F737A4F1 /* ieee.h */; settings = {ATTRIBUTES = (Project, ); }; }; - A67FF8C3DE0A185E7F2C09BFECA17607 /* SysSyscall.h in Headers */ = {isa = PBXBuildFile; fileRef = 988D1D5D5262936DBBB6D4BF4F110318 /* SysSyscall.h */; settings = {ATTRIBUTES = (Project, ); }; }; - A699D4DEDADFC42D669EE52778F04DD4 /* RNLocalize-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 1FE7C4C0DA60ED2DAB89FD5B20737950 /* RNLocalize-dummy.m */; }; - A69BB090C0E7390A0A4467F374AC3750 /* ReactNativeVersion.h in Headers */ = {isa = PBXBuildFile; fileRef = C32367A944FF6A86BFA89489019B2D6B /* ReactNativeVersion.h */; settings = {ATTRIBUTES = (Project, ); }; }; - A6E495CEEF8FE8631479CF2DACD79B3B /* UMPermissionsInterface.h in Headers */ = {isa = PBXBuildFile; fileRef = 1A1F19A586D4C0D63EA88B6ECDC690E2 /* UMPermissionsInterface.h */; settings = {ATTRIBUTES = (Project, ); }; }; - A6E5EEE860308A0594167C9797B28DFB /* QBAlbumCell.h in Headers */ = {isa = PBXBuildFile; fileRef = 7799E6AB9741A90186122CF2B9D0146D /* QBAlbumCell.h */; settings = {ATTRIBUTES = (Project, ); }; }; - A6E6A61A5926512C598F2D930D4E4454 /* AtomicNotification.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 386A37173A1941791DC8E94F369E85DF /* 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"; }; }; - A6EE17CA67549690D6248EC617824D99 /* bufferevent_pair.c in Sources */ = {isa = PBXBuildFile; fileRef = 5E28E5E5D8F3D49FB0BC9C998D181E05 /* bufferevent_pair.c */; }; - A6F4F2B55EAD7992311E5DB8727F38E7 /* RCT-Folly-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = ADE3B99706E1995C0DCAAE8F4B722ECF /* RCT-Folly-dummy.m */; }; - A6FB08F43AC56A72A3E139510B062C60 /* StreamRequester.h in Headers */ = {isa = PBXBuildFile; fileRef = 1A70B7A56F68D3486558EAE18A64C6DE /* StreamRequester.h */; settings = {ATTRIBUTES = (Project, ); }; }; - A700FD1BA7E3BDF2459BCAA513D69E42 /* lossless_enc_mips32.c in Sources */ = {isa = PBXBuildFile; fileRef = BFF4279A327AF0457A60C98234BFA95B /* lossless_enc_mips32.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; - A7023EF767996520E6C1098B4D640123 /* CPUThreadPoolExecutor.cpp in Sources */ = {isa = PBXBuildFile; fileRef = EDAC98E95F85540E8E1A36A7C48A79E6 /* 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"; }; }; - A70E9982A76216219772B033E8581976 /* KeepaliveTimer.h in Headers */ = {isa = PBXBuildFile; fileRef = 281397F1AB9BD21C08DEE8E0501AACA4 /* KeepaliveTimer.h */; settings = {ATTRIBUTES = (Project, ); }; }; - A71A0589A9470E137E62B8499CE12F37 /* Unicode.cpp in Sources */ = {isa = PBXBuildFile; fileRef = E80635EC34953AA8AD4B2B9D96B1F1D6 /* Unicode.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -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\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors"; }; }; - A728C27174F569E0771AB95FF01601D7 /* mm-internal.h in Headers */ = {isa = PBXBuildFile; fileRef = 62241FF2F74F1894A38653432A83E2DB /* mm-internal.h */; settings = {ATTRIBUTES = (Project, ); }; }; - A72D0A3F6AB1CCB1A25B627C50E7A304 /* TOCropViewConstants.h in Headers */ = {isa = PBXBuildFile; fileRef = 4F0EBDA87DC8D3A4C9A7FF510D285709 /* TOCropViewConstants.h */; settings = {ATTRIBUTES = (Project, ); }; }; - A73F59A76E54905051967B30487D7F40 /* String.h in Headers */ = {isa = PBXBuildFile; fileRef = 110CD94C79C42A487EE1D6CC50098487 /* String.h */; settings = {ATTRIBUTES = (Project, ); }; }; - A74285097C22BDE7C1C9243EB0997C39 /* RCTFPSGraph.h in Headers */ = {isa = PBXBuildFile; fileRef = 597A1AF2A1F2D22B468797A24BCF763B /* RCTFPSGraph.h */; settings = {ATTRIBUTES = (Project, ); }; }; - A743EF1695A5EB316B236F4632BC0C56 /* RCTShadowView+Internal.m in Sources */ = {isa = PBXBuildFile; fileRef = 9DFE6F4142248275D50E279C9D26E398 /* 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"; }; }; - A755794A98FEDE5B9A152DC8CD92F051 /* FIRCoreDiagnosticsInterop.h in Headers */ = {isa = PBXBuildFile; fileRef = AD6A0F2BBD4B6CB65337D865E0A1505F /* FIRCoreDiagnosticsInterop.h */; settings = {ATTRIBUTES = (Project, ); }; }; - A75F67BAE109D953729054CA3FCE37CB /* Flipper-PeerTalk-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = E2800914624977D069D1D05693D208F8 /* Flipper-PeerTalk-dummy.m */; }; - A76A3B0FD8A7A2B9F3F3DDF6DBCB24A6 /* RCTImageLoaderWithAttributionProtocol.h in Headers */ = {isa = PBXBuildFile; fileRef = 356DA93D46F12173410FCFE8AA805443 /* RCTImageLoaderWithAttributionProtocol.h */; settings = {ATTRIBUTES = (Project, ); }; }; - A77D6938B7F3D9408D0B3B7EDD44D72F /* F14Table.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 5D807357EC0B10568626B6462BAE2112 /* 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"; }; }; - A792CF240973925FAC1D90216203587F /* BugsnagMetadata+Private.h in Headers */ = {isa = PBXBuildFile; fileRef = CB4CB6D66748FA47C30357F2544B39B2 /* BugsnagMetadata+Private.h */; settings = {ATTRIBUTES = (Project, ); }; }; - A797757BCA62DCB2DA63763AC95E605B /* RNCSafeAreaShadowView.m in Sources */ = {isa = PBXBuildFile; fileRef = FCA58601E5C7F004185388335C86AF23 /* RNCSafeAreaShadowView.m */; }; - A79A31C80EE85DF62E6D0AEDED9919D9 /* ThreadCachedArena.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 80482005A3D7C74B5C232B9C7E752CA0 /* ThreadCachedArena.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -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\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors"; }; }; - A7AC1BCEB4AEB7843724AE600B5AA6DE /* ThreadWheelTimekeeper.h in Headers */ = {isa = PBXBuildFile; fileRef = 52B3BD3001DD4C280B48DC3695188A70 /* ThreadWheelTimekeeper.h */; settings = {ATTRIBUTES = (Project, ); }; }; - A7AD0987FE60D826155AADAE2011BB96 /* REACondNode.m in Sources */ = {isa = PBXBuildFile; fileRef = 93BBACFC282DB3608E7443B4F8F92F19 /* REACondNode.m */; }; - A7B19110F6C50400AC05B9A114F84C7C /* CheckedMath.h in Headers */ = {isa = PBXBuildFile; fileRef = C1AF891DE00053BEBECE069FAE7BD92E /* CheckedMath.h */; settings = {ATTRIBUTES = (Project, ); }; }; - A7CBB4FA781535D20605D6B3D7AEB381 /* RNNotificationEventHandler.m in Sources */ = {isa = PBXBuildFile; fileRef = 55EDE0BD7CB5DAA7AD533C74F9DEF1AD /* RNNotificationEventHandler.m */; }; - A7CEAC9EFCB3B1F5252F52B12F7C3F07 /* RCTSegmentedControlManager.m in Sources */ = {isa = PBXBuildFile; fileRef = 9C139F30664C2AC9E917F2E99A29FE32 /* RCTSegmentedControlManager.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - A7D487DEFB60AB98A44CA314D89B8562 /* RCTViewManager.m in Sources */ = {isa = PBXBuildFile; fileRef = 275A1C7F93D8659DCE761FDF9A9267C4 /* RCTViewManager.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - A7EA91E9ED828D185AE4832A3C5C14BD /* VirtualEventBase.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 429C870EF7851C5214B985CA7719601D /* VirtualEventBase.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -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\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors"; }; }; - A7EFAF3E7361E6F92B0B20F6F3506DB8 /* Barrier.cpp in Sources */ = {isa = PBXBuildFile; fileRef = BCE3200B783F0F1D598AC56BA7FD6A23 /* Barrier.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -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\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors"; }; }; - A7F4991EEF9FEA3AB0660ED6D057E8B7 /* Futex-inl.h in Headers */ = {isa = PBXBuildFile; fileRef = 6498003091836BC30C2529E6F103179E /* Futex-inl.h */; settings = {ATTRIBUTES = (Project, ); }; }; - A80242B51D34FF77020DB9D101761CB5 /* F14Policy.h in Headers */ = {isa = PBXBuildFile; fileRef = 6D32352F57E8F9AA7298DD4C5C8B23BD /* F14Policy.h */; settings = {ATTRIBUTES = (Project, ); }; }; - A807D123779294573E8E4B4AEA8A48CC /* RCTLogBoxView.h in Headers */ = {isa = PBXBuildFile; fileRef = 41301A2B164A2E2586DB33EB7EA7DFC7 /* RCTLogBoxView.h */; settings = {ATTRIBUTES = (Project, ); }; }; - A82DB05881F02CBAEEBED5C8718D0CA6 /* RCTMessageThread.mm in Sources */ = {isa = PBXBuildFile; fileRef = 4138CC76BD93E8D27D33B1DC80BFD1A7 /* RCTMessageThread.mm */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - A86B1DA2BDDBBD0C6CD613087B93FB65 /* FIRInstallationsAuthTokenResultInternal.h in Headers */ = {isa = PBXBuildFile; fileRef = 3B930A32F432993FA5735ED7FFD3E125 /* FIRInstallationsAuthTokenResultInternal.h */; settings = {ATTRIBUTES = (Project, ); }; }; - A8757210B189373A8F6800E3D648FDC9 /* MMBuffer.h in Headers */ = {isa = PBXBuildFile; fileRef = 118760F70DE10C3E528868D8AFF69793 /* MMBuffer.h */; settings = {ATTRIBUTES = (Project, ); }; }; - A87955D2F6EC86549EDA9CEC467A55FE /* ParkingLot.h in Headers */ = {isa = PBXBuildFile; fileRef = 504AD14FE100A20D8DC16B176158574E /* ParkingLot.h */; settings = {ATTRIBUTES = (Project, ); }; }; - A888AB9A147D572E01262314CF212A56 /* QBCheckmarkView.h in Headers */ = {isa = PBXBuildFile; fileRef = C9A67E3773B8A1005ED03BE3434F1EC5 /* QBCheckmarkView.h */; settings = {ATTRIBUTES = (Project, ); }; }; - A8C55227E7345848AE25DF6256D11697 /* SparseByteSet.h in Headers */ = {isa = PBXBuildFile; fileRef = 313463C598C757EF8F324DB0BF06F135 /* SparseByteSet.h */; settings = {ATTRIBUTES = (Project, ); }; }; - A8F329035721A4811B6D08E6D1F9E3A8 /* ThreadLocal.h in Headers */ = {isa = PBXBuildFile; fileRef = DD9F427E6ADEB4967A1DDC5A41D08DB5 /* ThreadLocal.h */; settings = {ATTRIBUTES = (Project, ); }; }; - A8F48D6FDA7DC4F7CD2D730D80338885 /* ThreadCachedLists.h in Headers */ = {isa = PBXBuildFile; fileRef = 598D07341ECC791245D8956E8B93C174 /* ThreadCachedLists.h */; settings = {ATTRIBUTES = (Project, ); }; }; - A90CFB8A65FC740039748C6F0EA9E385 /* EnvUtil.h in Headers */ = {isa = PBXBuildFile; fileRef = E6E9C7C5B109498EC681F09D923E5C93 /* EnvUtil.h */; settings = {ATTRIBUTES = (Project, ); }; }; - A9219290BAFC9320C040414C7C096F8A /* FBLPromise+Any.h in Headers */ = {isa = PBXBuildFile; fileRef = C3F26F9B4FA2A351DDE03859A88225A7 /* FBLPromise+Any.h */; settings = {ATTRIBUTES = (Project, ); }; }; - A941D36C5A98A16B4C7D04F59C0B43D8 /* Cursor.h in Headers */ = {isa = PBXBuildFile; fileRef = AD42BC2ED1D7BE159095952915525A01 /* Cursor.h */; settings = {ATTRIBUTES = (Project, ); }; }; - A954EEA377C1E08A74957C57229BF3D0 /* OpenSSLUtils.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 0EB0E8506FB986DC31C6541AA2C48B9F /* OpenSSLUtils.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -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\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors"; }; }; - A963EA2AB502E00FF947FDA166E2245B /* ThreadWheelTimekeeper.cpp in Sources */ = {isa = PBXBuildFile; fileRef = B1E2BB6BFC8F3CCCB19085DD174E8AC0 /* ThreadWheelTimekeeper.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -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\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors"; }; }; - A97E82F2ECC85130A0E39FBDF6A6BFB3 /* ARTGroupManager.h in Headers */ = {isa = PBXBuildFile; fileRef = EBDFCF84A98A224047685A16A587A47E /* ARTGroupManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; - A987BB2EFCFDD16AE5272D1504F2D53E /* RCTFrameUpdate.m in Sources */ = {isa = PBXBuildFile; fileRef = 1555779B195006E8667B063A0B6672BF /* RCTFrameUpdate.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - A9880C57EA9B744B76C42C4EF4578501 /* AtomicHashUtils.h in Headers */ = {isa = PBXBuildFile; fileRef = 210C8413BB03BC4DB926FE8A054C875D /* AtomicHashUtils.h */; settings = {ATTRIBUTES = (Project, ); }; }; - A995BD0C1733104660741A8C0EFCDD8C /* RNNotificationsStore.h in Headers */ = {isa = PBXBuildFile; fileRef = 65931E231ED87291782F00320FD5E79D /* RNNotificationsStore.h */; settings = {ATTRIBUTES = (Project, ); }; }; - A998280BDC990828199EFD63CD44BAED /* FlipperClient.h in Headers */ = {isa = PBXBuildFile; fileRef = 4EFA9ED6AB17B41486EAB2148F8C24B5 /* FlipperClient.h */; settings = {ATTRIBUTES = (Project, ); }; }; - A9A3C721A26D345F49174C2DA3FD1DC3 /* RCTRootContentView.h in Headers */ = {isa = PBXBuildFile; fileRef = B6D4F2FE824E43B1277BA6B136BEC7B6 /* RCTRootContentView.h */; settings = {ATTRIBUTES = (Project, ); }; }; - A9BAF1CE9D7BD16EED813E56330E3DA4 /* logging.h in Headers */ = {isa = PBXBuildFile; fileRef = 33765EF0361FC5BD317E8134536E9D59 /* logging.h */; settings = {ATTRIBUTES = (Project, ); }; }; - A9EE7BC356770E7F447795297AF96EB7 /* BugsnagDevice.h in Headers */ = {isa = PBXBuildFile; fileRef = E1122B8B9816D5222710898DE93C3090 /* BugsnagDevice.h */; settings = {ATTRIBUTES = (Project, ); }; }; - A9F1F8D1A6634F8DF7AAD9A9EC25C55E /* ConnectionDemux.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 6AFEA695161609385AB7DFD9B211A61C /* ConnectionDemux.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - A9F2A2B5D8116181ED2BF0A26D866044 /* BugsnagFileStore.m in Sources */ = {isa = PBXBuildFile; fileRef = E99D032CA45AE795463E8CCFCA3FBE80 /* BugsnagFileStore.m */; }; - AA0852ACB57A6324AA958B84F2A182B0 /* Pods-NotificationService-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 24DD06DF3760AA8A84A2FD651A74E8B0 /* Pods-NotificationService-dummy.m */; }; - AA0BFC9BC59DF4049037E1DD10B705AD /* Utility.h in Headers */ = {isa = PBXBuildFile; fileRef = 6FED52E48A4F7480A2C6FF36C02DB30A /* Utility.h */; settings = {ATTRIBUTES = (Project, ); }; }; - AA1EAFD3C6E9238FEF569EBABC26F334 /* enc_sse2.c in Sources */ = {isa = PBXBuildFile; fileRef = 901A7545398A64492BA691CD54AE2FEE /* enc_sse2.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; - AA41B8C492E810ED1AD5292AC4AE26CA /* FIROptionsInternal.h in Headers */ = {isa = PBXBuildFile; fileRef = 6497352FEB02FB97EDC668D210D9D639 /* FIROptionsInternal.h */; settings = {ATTRIBUTES = (Project, ); }; }; - AA558F7C06E2B933D3E83076DF8F60FE /* JSITracing.cpp in Sources */ = {isa = PBXBuildFile; fileRef = BC2640F7778BB7204E46524DA5B3D0EF /* JSITracing.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - AA6A169580691D45F4221AB2CDA4A99A /* HazptrThreadPoolExecutor.h in Headers */ = {isa = PBXBuildFile; fileRef = 55831EB804F47E27775A4F202AAEC9A5 /* HazptrThreadPoolExecutor.h */; settings = {ATTRIBUTES = (Project, ); }; }; - AA725C371ED2465746D713B036D28AF2 /* ImageCropPicker.m in Sources */ = {isa = PBXBuildFile; fileRef = 69B4659927463CDABCB118B5DEC7ED20 /* ImageCropPicker.m */; }; - AA79ED9A4703C5F659B3D4D6CB6AA990 /* RCTCxxConvert.h in Headers */ = {isa = PBXBuildFile; fileRef = 5478710FAB2D5DE952BA4AE4F25FEC57 /* RCTCxxConvert.h */; settings = {ATTRIBUTES = (Project, ); }; }; - AA8786B1E717B7028B8C7A29960B1945 /* RCTDevMenu.h in Headers */ = {isa = PBXBuildFile; fileRef = 90825145145C82A8F4E45D55BA6ED37E /* RCTDevMenu.h */; settings = {ATTRIBUTES = (Project, ); }; }; - AAA732D139B9BE837D80B39EC68181E3 /* Malloc.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 4A250A57F6B6B341255994B45DE729FA /* Malloc.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -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\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors"; }; }; - AAB5C5B03C4B35890CA385F194E30F0D /* bit_writer_utils.c in Sources */ = {isa = PBXBuildFile; fileRef = D76E8495FF3C4F45E05A1D077E2B3DF0 /* bit_writer_utils.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; - AABE0151CF2AA84D99EFD318653A72C9 /* random_utils.h in Headers */ = {isa = PBXBuildFile; fileRef = 7F976042875AB37E3178DA3B51131C0F /* random_utils.h */; settings = {ATTRIBUTES = (Project, ); }; }; - AACAE8B50254D4575DF72C7697FB9844 /* FIRCLSURLSession.h in Headers */ = {isa = PBXBuildFile; fileRef = B3EA108D86B0FF481C6D662FACD8A709 /* FIRCLSURLSession.h */; settings = {ATTRIBUTES = (Project, ); }; }; - AADE3C16B51F368C44AC0105848D5EF1 /* JSITracing.h in Headers */ = {isa = PBXBuildFile; fileRef = E4B78EBBF959C2EAF87A2DCF877BD136 /* JSITracing.h */; settings = {ATTRIBUTES = (Project, ); }; }; - AAF190F7F93D42B0CD6904B3EEE03C8C /* RNFetchBlobConst.m in Sources */ = {isa = PBXBuildFile; fileRef = 542B769074BF2AB509D9DC76111A3546 /* RNFetchBlobConst.m */; }; - AAFD05B264409A2D51250C69CC85D958 /* ObservableDoOperator.h in Headers */ = {isa = PBXBuildFile; fileRef = 469FC656713290E03642BE6E71A20834 /* ObservableDoOperator.h */; settings = {ATTRIBUTES = (Project, ); }; }; - AB05625C8EC4E6CA1BB7948F7D17E02C /* SDWebImageManager.m in Sources */ = {isa = PBXBuildFile; fileRef = B7EC11A8C0A5E64EF001007C760450B6 /* SDWebImageManager.m */; }; - AB18A726571872F0C8239763CC6D920A /* QBAlbumsViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = 35D9EBB8F22D3DE7D5E65D8D66CBAADC /* QBAlbumsViewController.m */; }; - AB42CFC583E8514B1472D4E189E642C1 /* BugsnagSessionTracker.h in Headers */ = {isa = PBXBuildFile; fileRef = 2F7346407420D349CF5ADF41C420A657 /* BugsnagSessionTracker.h */; settings = {ATTRIBUTES = (Project, ); }; }; - AB5EEADD611551F76B1652F318B4F2A9 /* SysFile.h in Headers */ = {isa = PBXBuildFile; fileRef = 361B3EAC5B4BA385FD118F17A9B0D62E /* SysFile.h */; settings = {ATTRIBUTES = (Project, ); }; }; - AB7755A7FD58CE31155DB8DE775005AC /* FKPortForwardingServer.h in Headers */ = {isa = PBXBuildFile; fileRef = 76F1A8FD599DF8E618FA93B58360A75C /* FKPortForwardingServer.h */; settings = {ATTRIBUTES = (Project, ); }; }; - AB779F9A692679019B8633CD2190FFD9 /* SafeAreaSpacerViewLocalData.m in Sources */ = {isa = PBXBuildFile; fileRef = 853DA4003B234224D0BEF3F4ABD94970 /* SafeAreaSpacerViewLocalData.m */; }; - AB950B153635AD4C2EB9D4A5291B0E23 /* alphai_dec.h in Headers */ = {isa = PBXBuildFile; fileRef = 3714F374E87928906502C9E5AF26AEBF /* alphai_dec.h */; settings = {ATTRIBUTES = (Project, ); }; }; - AB99634DA96321A237AE20780AF99442 /* BSG_KSCrashSentry.c in Sources */ = {isa = PBXBuildFile; fileRef = 4F26628CAEF27009D5B48EE73606060B /* BSG_KSCrashSentry.c */; }; - ABABE611ED362BDA1542225012D4AD12 /* Malloc.h in Headers */ = {isa = PBXBuildFile; fileRef = 570C4FC163FDB50A3BA899B5D8E85574 /* Malloc.h */; settings = {ATTRIBUTES = (Project, ); }; }; - ABBE966D954BB36BDC39ADFBFF1BDE87 /* RCTFollyConvert.h in Headers */ = {isa = PBXBuildFile; fileRef = 9B49A76A77062C6D3136B4DCCE6D2A60 /* RCTFollyConvert.h */; settings = {ATTRIBUTES = (Project, ); }; }; - ABC045BE3432367241A03F4AFC7F7D57 /* FirebaseCore-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = B427BF719A851FABFC69FC83BC0A0D4F /* FirebaseCore-dummy.m */; }; - ABC1564A6ED9E3208CB6332C685E9C61 /* EXAV.h in Headers */ = {isa = PBXBuildFile; fileRef = F52F4AA3524EB137E5E1FCD4279DD068 /* EXAV.h */; settings = {ATTRIBUTES = (Project, ); }; }; - ABEEBD0673B548D627CC5B3F80BD92D1 /* GoogleUtilities-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 10D3CBD349DDBEDD8BC29FF16094AFD1 /* GoogleUtilities-dummy.m */; }; - AC07949E783BFDF67AC22940998E8226 /* RNCSafeAreaViewLocalData.m in Sources */ = {isa = PBXBuildFile; fileRef = A8FE5B5DF100160357515A6D5DE374A9 /* RNCSafeAreaViewLocalData.m */; }; - AC1E57AD0F2410022F32B5AEC7550E90 /* BugsnagThread+Private.h in Headers */ = {isa = PBXBuildFile; fileRef = 784506C0C4C013F8ABF39538C9B3BB10 /* BugsnagThread+Private.h */; settings = {ATTRIBUTES = (Project, ); }; }; - AC43FF2B24EC0DB43DF5226D9E2A8159 /* react-native-slider-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 17845CAD6F547C1EDF098F0E862265FE /* react-native-slider-dummy.m */; }; - AC544C3109A91CDD8920894107B1E23E /* FIRComponentContainer.h in Headers */ = {isa = PBXBuildFile; fileRef = 62349CEF1BEF279D189F7115CFD85FD1 /* FIRComponentContainer.h */; settings = {ATTRIBUTES = (Project, ); }; }; - AC5F1F69DB0B68228DD0866AEBBF7E9E /* REAModule.h in Headers */ = {isa = PBXBuildFile; fileRef = D0BFF27AF933BF8DFC29BAD4589847E5 /* REAModule.h */; settings = {ATTRIBUTES = (Project, ); }; }; - AC5F7A2B2353C1264922FB3A3646492A /* SharedPromise.h in Headers */ = {isa = PBXBuildFile; fileRef = 1F3B6EF4D34085B601971A0296E98F21 /* SharedPromise.h */; settings = {ATTRIBUTES = (Project, ); }; }; - AC8ADECF94911C0429EDC66F7B818E08 /* GDTCORPrioritizer.h in Headers */ = {isa = PBXBuildFile; fileRef = 9230371FE9E5F6AED627EE5E80815F4A /* GDTCORPrioritizer.h */; settings = {ATTRIBUTES = (Project, ); }; }; - ACA90AD16226D5D51376C4FDC175AD7E /* FIRComponentContainerInternal.h in Headers */ = {isa = PBXBuildFile; fileRef = 7ACF75B83E9BCF1F92190D41B8827A12 /* FIRComponentContainerInternal.h */; settings = {ATTRIBUTES = (Project, ); }; }; - ACB5C9060E7EFFB2CDC6585D543B1C5D /* SocketAddress.cpp in Sources */ = {isa = PBXBuildFile; fileRef = BF88558A95843F4AD6A7248E71B60DEF /* SocketAddress.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -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\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors"; }; }; - ACCBC0A492904AC439A5C4845F21599B /* Expected.h in Headers */ = {isa = PBXBuildFile; fileRef = 3AE56CA7AC8987C48F156489C4059B75 /* Expected.h */; settings = {ATTRIBUTES = (Project, ); }; }; - ACDF1E6F5B939622CFE95CE1AC11EE8C /* SysResource.h in Headers */ = {isa = PBXBuildFile; fileRef = 7B3BCBAF0DBA3247D26157C240545AF1 /* SysResource.h */; settings = {ATTRIBUTES = (Project, ); }; }; - ACDFBDADC0ED6A592142E1E878169D69 /* RNFBCrashlyticsModule.h in Headers */ = {isa = PBXBuildFile; fileRef = B7882807A6DD96AEF4AE5270F95E61EE /* RNFBCrashlyticsModule.h */; settings = {ATTRIBUTES = (Project, ); }; }; - ACE3F48B3A5120CDE5F4C8DDD67A6F41 /* RNFBRCTEventEmitter.m in Sources */ = {isa = PBXBuildFile; fileRef = 992A830F43307EFD1D876DEB3FA56EB6 /* RNFBRCTEventEmitter.m */; }; - AD1034B39445041581BDF4D206FA8229 /* RCTJavaScriptExecutor.h in Headers */ = {isa = PBXBuildFile; fileRef = 89D1E92791BD83D34D81B52060907553 /* RCTJavaScriptExecutor.h */; settings = {ATTRIBUTES = (Project, ); }; }; - AD31F71541F4A2B0ABF44F822C2B6362 /* MicroSpinLock.h in Headers */ = {isa = PBXBuildFile; fileRef = ED213EAFD7F2C5486CCED6F2A9B5A25F /* MicroSpinLock.h */; settings = {ATTRIBUTES = (Project, ); }; }; - AD3DD021B18EB103C144A17DBB759DC5 /* REAParamNode.h in Headers */ = {isa = PBXBuildFile; fileRef = DC66BC4DB4CD3441B632CC2F80B5ADB5 /* REAParamNode.h */; settings = {ATTRIBUTES = (Project, ); }; }; - AD4255A67BE6756205F692B2552700E3 /* FBLPromise+Async.m in Sources */ = {isa = PBXBuildFile; fileRef = 7552AC22B045F411D709DEF542496909 /* FBLPromise+Async.m */; }; - AD438DD0D0E357DFB295D4272D0333F8 /* RCTAnimatedImage.h in Headers */ = {isa = PBXBuildFile; fileRef = F5BABE80C6537FD2891E8B6959445D25 /* RCTAnimatedImage.h */; settings = {ATTRIBUTES = (Project, ); }; }; - AD614F6A78B1F5CDB4EC03DFB6E8A148 /* SDInternalMacros.m in Sources */ = {isa = PBXBuildFile; fileRef = 160095035BD762C24128DBBFF7451196 /* SDInternalMacros.m */; }; - AD62627C39B5BAF324061B71ECAA46F9 /* VibrancyView.m in Sources */ = {isa = PBXBuildFile; fileRef = 7E329469FAA7DDFFCC66C76EDC885390 /* VibrancyView.m */; }; - AD6B9BBDD9ED6B8402E4100A5A87BA99 /* NativeToJsBridge.h in Headers */ = {isa = PBXBuildFile; fileRef = CFBC2C9D2EE19A36E1AAE876E3BF5D26 /* NativeToJsBridge.h */; settings = {ATTRIBUTES = (Project, ); }; }; - AD74398D0DD5ADA213399CCB52882A7A /* RNPinchHandler.h in Headers */ = {isa = PBXBuildFile; fileRef = B2ECBA9C7F58B36347D49D2C42DC9E92 /* RNPinchHandler.h */; settings = {ATTRIBUTES = (Project, ); }; }; - AD811EE43CC60A940768EEA939DCFBA4 /* react-native-document-picker-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = BE8085DDE5007490C571E6E464198B33 /* react-native-document-picker-dummy.m */; }; - AD91D024AD639FACF7D9F42AF6129707 /* RNNotificationCenterMulticast.m in Sources */ = {isa = PBXBuildFile; fileRef = A25214D7DAAEF582BA04DF499825DF44 /* RNNotificationCenterMulticast.m */; }; - ADA454AA835BAABBB159DB202663ADC5 /* GDTCORLifecycle.h in Headers */ = {isa = PBXBuildFile; fileRef = 6A312051722868095F0B57B9DF72AD23 /* GDTCORLifecycle.h */; settings = {ATTRIBUTES = (Project, ); }; }; - ADC23879FB31CC882AE2F80096C8AD2A /* OpenSSLHash.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 61F4312D6E2ABF2D879843953CC06ABF /* OpenSSLHash.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -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\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors"; }; }; - ADFBFD2755F27A89A81F87CF9308A7C7 /* FlipperDiagnosticsViewController.h in Headers */ = {isa = PBXBuildFile; fileRef = 1E5C1EF5ACFAEA6C34BD6D5DEDC3FD68 /* FlipperDiagnosticsViewController.h */; settings = {ATTRIBUTES = (Project, ); }; }; - AE0195E93037B4A541B7C05657A75124 /* BlurView.h in Headers */ = {isa = PBXBuildFile; fileRef = C6FC6468868664B70D3E281882C24504 /* BlurView.h */; settings = {ATTRIBUTES = (Project, ); }; }; - AE020D03524481E7248DE8B85D4747A0 /* vlog_is_on.h in Headers */ = {isa = PBXBuildFile; fileRef = 8DAEA4597188EA7C15AAD0C4B323ECE1 /* vlog_is_on.h */; settings = {ATTRIBUTES = (Project, ); }; }; - AE16B4E3BDF61432CDEBCC66CCF4F8BA /* FIRComponent.h in Headers */ = {isa = PBXBuildFile; fileRef = FFDB251CDA064A494DD8DE2607DC5A3A /* FIRComponent.h */; settings = {ATTRIBUTES = (Project, ); }; }; - AE264A0FE866E63BFC8F65FAA747BBAF /* huffman_utils.c in Sources */ = {isa = PBXBuildFile; fileRef = 75FE639F23AD7D3BB243E0AD9988E003 /* huffman_utils.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; - AE2B61A3969F93747B7A340C844157AE /* SDDisplayLink.m in Sources */ = {isa = PBXBuildFile; fileRef = B89880C34A22F7D671DEC637659A0068 /* SDDisplayLink.m */; }; - AE4B01E7A1BAD40332ADE43828CB8170 /* RCTModuloAnimatedNode.m in Sources */ = {isa = PBXBuildFile; fileRef = EBB7562BD808A9A1D1BC43A8E0459F7E /* 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"; }; }; - AE6417572C1B73A3BC1D19FB6B6E9D24 /* EXVideoThumbnailsModule.m in Sources */ = {isa = PBXBuildFile; fileRef = 3F633FC9A4ECFED62A7161EF40385593 /* EXVideoThumbnailsModule.m */; }; - AE6CD51389F55D84C7C2A9F3C6CDCE3B /* signalhandler.cc in Sources */ = {isa = PBXBuildFile; fileRef = DBB54F45B678B6B1A2F5299F690252AB /* signalhandler.cc */; settings = {COMPILER_FLAGS = "-Wno-shorten-64-to-32"; }; }; - AE803C306F7E05141A38A7EDAC1D7DE0 /* ExecutorWithPriority.h in Headers */ = {isa = PBXBuildFile; fileRef = 349578B9758BE83C43BA33926084D1E3 /* ExecutorWithPriority.h */; settings = {ATTRIBUTES = (Project, ); }; }; - AE81BD3229B6B6E342141272C635F1F0 /* RCTSurfacePresenterStub.h in Headers */ = {isa = PBXBuildFile; fileRef = EA8A071B5F6B8CB45234079D7A7C9042 /* RCTSurfacePresenterStub.h */; settings = {ATTRIBUTES = (Project, ); }; }; - AE871159CF90726BE1CFFFF3907799EB /* RCTTextView.h in Headers */ = {isa = PBXBuildFile; fileRef = 6C42293110E4BFCD51D38CDFD8A3C674 /* RCTTextView.h */; settings = {ATTRIBUTES = (Project, ); }; }; - AE8E089B1265ED7BBA669E42AAE2C29B /* AsyncTransport.h in Headers */ = {isa = PBXBuildFile; fileRef = 1C418CFFC9F39E1A5FC204E52C134F4C /* AsyncTransport.h */; settings = {ATTRIBUTES = (Project, ); }; }; - AE8E8102078EE245DF10219AF7E44E69 /* BSGFileLocations.h in Headers */ = {isa = PBXBuildFile; fileRef = 3572364D36B575E095ED6CF97556C4E5 /* BSGFileLocations.h */; settings = {ATTRIBUTES = (Project, ); }; }; - AE8ED93EFCB2EB5E2F103286196BBAE2 /* Lazy.h in Headers */ = {isa = PBXBuildFile; fileRef = F706C3AD388C5F7FBE62C7B79AE8E90C /* Lazy.h */; settings = {ATTRIBUTES = (Project, ); }; }; - AE8EF360BDF060DE71F36DA2FF79D905 /* YGLayout.h in Headers */ = {isa = PBXBuildFile; fileRef = B575DF54154C3EFCDB5A1FF18BDE48A3 /* YGLayout.h */; settings = {ATTRIBUTES = (Project, ); }; }; - AE92AF417DB6D1DA316995270A8DD46C /* Stdlib.h in Headers */ = {isa = PBXBuildFile; fileRef = 974A52EA9574697A6D4F84ABF5566E6E /* Stdlib.h */; settings = {ATTRIBUTES = (Project, ); }; }; - AE9D98FE8AB2BD6E78EC9A67AFD995A9 /* MMKV-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 0529D73D9878D4E0EC0416AE14565F83 /* MMKV-dummy.m */; }; - AEA407EB3009BBA61F44A67E705D2FC5 /* RCTProfile.h in Headers */ = {isa = PBXBuildFile; fileRef = E5D28F0A61F7D7F137B1FB7DCFDA4210 /* RCTProfile.h */; settings = {ATTRIBUTES = (Project, ); }; }; - AED782460FC95297554B397BBF3C259C /* MessageTypesInlines.h in Headers */ = {isa = PBXBuildFile; fileRef = B5DC539B8635A83E5170C5A413DDBF15 /* MessageTypesInlines.h */; settings = {ATTRIBUTES = (Project, ); }; }; - AEDABA06F80505899270CCD9BDD50ECF /* GULKeychainStorage.h in Headers */ = {isa = PBXBuildFile; fileRef = AE1F66FF6A4EA4EFE43EADA7E95E849A /* GULKeychainStorage.h */; settings = {ATTRIBUTES = (Project, ); }; }; - AEDDDA1CAF95B0D1BF5A6109B5D3AE8C /* SDWebImageTransition.h in Headers */ = {isa = PBXBuildFile; fileRef = 6C237B5740E47D383CF27A8B511D0898 /* SDWebImageTransition.h */; settings = {ATTRIBUTES = (Project, ); }; }; - AEEB4B35435D6890705DB189DE95AAC1 /* React-RCTLinking-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 0ED04B806B0C2054B1FD194C3753377E /* React-RCTLinking-dummy.m */; }; - AEF05CDAB81952E555757CD0733C9BD9 /* RCTFrameUpdate.h in Headers */ = {isa = PBXBuildFile; fileRef = 08C0C37735B43D597197AEF6D2CDE1C9 /* RCTFrameUpdate.h */; settings = {ATTRIBUTES = (Project, ); }; }; - AEF90FF07FA0142CD1B5EAB04528B497 /* CPortability.h in Headers */ = {isa = PBXBuildFile; fileRef = DF6F68824D610DAD329C4F8A043CE87E /* CPortability.h */; settings = {ATTRIBUTES = (Project, ); }; }; - AF164A48C2D0FF88D9316CC0F3E8CA69 /* TurboCxxModule.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 2F879142E2EE93DE74FB3050AB0E2791 /* TurboCxxModule.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - AF248CBAA17691DB46F5335818C47F44 /* vp8l_enc.c in Sources */ = {isa = PBXBuildFile; fileRef = D80FDE7E34FA2982674064A6D85232B8 /* vp8l_enc.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; - AF2FEA8132BFD8DF55EE2EC0B9A17984 /* Futex.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 1F21DE85C6358409AE64C374D0EC91C2 /* 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"; }; }; - AF39B2243320A56D81A8D3362E412803 /* ratelim-internal.h in Headers */ = {isa = PBXBuildFile; fileRef = 3FC593F0F6C973BD78BDD755CB42A289 /* ratelim-internal.h */; settings = {ATTRIBUTES = (Project, ); }; }; - AF436367FEB919A330A61CFDD0E84FB5 /* FIRHeartbeatInfo.h in Headers */ = {isa = PBXBuildFile; fileRef = 0228AAAC9829BF3F36E457F5D71714FB /* FIRHeartbeatInfo.h */; settings = {ATTRIBUTES = (Project, ); }; }; - AF51E183E8533478637F6D604F2A4C37 /* RCTBorderDrawing.m in Sources */ = {isa = PBXBuildFile; fileRef = 6525E5BC4FA81595E90608B5DC99A111 /* RCTBorderDrawing.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - AF6EE48569161C686172753B582E9575 /* NSValue+Interpolation.h in Headers */ = {isa = PBXBuildFile; fileRef = BECE1E300CED3753A0542E5F1E4AF11E /* NSValue+Interpolation.h */; settings = {ATTRIBUTES = (Project, ); }; }; - AF82D01E703407AD30DD9F0A5F304C2A /* RCTRedBoxExtraDataViewController.h in Headers */ = {isa = PBXBuildFile; fileRef = D6BB52881A2A5900E7C1260BC6523D0A /* RCTRedBoxExtraDataViewController.h */; settings = {ATTRIBUTES = (Project, ); }; }; - AF8453F7B39B8BCC9901A0E7D52BAFC5 /* File.h in Headers */ = {isa = PBXBuildFile; fileRef = 9BD3EAC8DAC65366C406E05DB227732B /* File.h */; settings = {ATTRIBUTES = (Project, ); }; }; - AF94C09ED2B735772D41239FA5FD6574 /* HazptrDomain.h in Headers */ = {isa = PBXBuildFile; fileRef = 9EF736721F771CE99651D129AB365263 /* HazptrDomain.h */; settings = {ATTRIBUTES = (Project, ); }; }; - AF9DE104A3F8D40B0B59925CC2F17E8B /* FIRLibrary.h in Headers */ = {isa = PBXBuildFile; fileRef = 6B6AF267F4A7C6DE4A649FA84CE33D1D /* FIRLibrary.h */; settings = {ATTRIBUTES = (Project, ); }; }; - AFB0357A2827C867FFCA1ED78A9AD5E0 /* GULKeychainStorage.h in Headers */ = {isa = PBXBuildFile; fileRef = E7D565D7D6C306053C2BDFCF2E18FB85 /* GULKeychainStorage.h */; settings = {ATTRIBUTES = (Project, ); }; }; - AFB1FC261EC88C0F1E6C9034AABAA68A /* EXPermissions.m in Sources */ = {isa = PBXBuildFile; fileRef = 274876894F46385888D92B5FF70E18B5 /* EXPermissions.m */; }; - AFB718D73456E3985F6A9536B44D463C /* RCTImageEditingManager.mm in Sources */ = {isa = PBXBuildFile; fileRef = E93BF2785F1FCD510171B2995196D697 /* 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"; }; }; - AFC5D6776D35A4051489751846E0DCBF /* UIImage+GIF.m in Sources */ = {isa = PBXBuildFile; fileRef = 6D744C16B2F99CC6C399F2964E2BED17 /* UIImage+GIF.m */; }; - AFD8676AAFE8CE4B71DEB1F0383F8F3E /* FIRAnalyticsConfiguration.h in Headers */ = {isa = PBXBuildFile; fileRef = 4AD8233600FFB546B71BAF0EBB79D22B /* FIRAnalyticsConfiguration.h */; settings = {ATTRIBUTES = (Project, ); }; }; - AFE5A446BAE5432B9084DC260CC3D290 /* QBAssetCell.h in Headers */ = {isa = PBXBuildFile; fileRef = 92CAD975CD7A20E93B55EF4E59090F99 /* QBAssetCell.h */; settings = {ATTRIBUTES = (Project, ); }; }; - B0336447FA8DB6BA8E36A9A3F043449D /* Promise.h in Headers */ = {isa = PBXBuildFile; fileRef = 84F337E321B6C51564FA2BBE9406F7E8 /* Promise.h */; settings = {ATTRIBUTES = (Project, ); }; }; - B040F8366135289459EBCF6D0D6AD2E7 /* SDAsyncBlockOperation.m in Sources */ = {isa = PBXBuildFile; fileRef = FD3B4717E08D79F7EEEE2083AA6BD770 /* SDAsyncBlockOperation.m */; }; - B05662CD367FD21359CC4C8A27AE0083 /* Exception.h in Headers */ = {isa = PBXBuildFile; fileRef = 210647A8DAB9BA0BC3CFFB53080E24FC /* Exception.h */; settings = {ATTRIBUTES = (Project, ); }; }; - B059169033D13B19976DC2F48C6C3D55 /* CPUThreadPoolExecutor.cpp in Sources */ = {isa = PBXBuildFile; fileRef = DBEFB7984A9AC1B43EEEAD4ACC05B2E0 /* CPUThreadPoolExecutor.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -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\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors"; }; }; - B0911740F21E6BE59A24761E62BB74F7 /* log_severity.h in Headers */ = {isa = PBXBuildFile; fileRef = 4F95F367C474284471D55C9963F1F6D2 /* log_severity.h */; settings = {ATTRIBUTES = (Project, ); }; }; - B0BF4161D9D94D3D2E3B8FA4DD873F1B /* ReactNativeShareExtension.m in Sources */ = {isa = PBXBuildFile; fileRef = 6E0611FB660329A962544FF42EC9A319 /* ReactNativeShareExtension.m */; }; - B0CFA8308BF23AFE48E7688DD862CF30 /* SDImageFrame.h in Headers */ = {isa = PBXBuildFile; fileRef = 30C66852419F645A443E08E8C32C0703 /* SDImageFrame.h */; settings = {ATTRIBUTES = (Project, ); }; }; - B0DA64A8BB081A5E63787205F75BB660 /* FIRCLSDemangleOperation.h in Headers */ = {isa = PBXBuildFile; fileRef = E9F3A729CD9D33AD75FD8C1B0BBC0ECD /* FIRCLSDemangleOperation.h */; settings = {ATTRIBUTES = (Project, ); }; }; - B0DA8371D4294ED2A19873058D58D87B /* UMViewManagerAdapter.h in Headers */ = {isa = PBXBuildFile; fileRef = A8B24971382BB080E93170E98E414535 /* UMViewManagerAdapter.h */; settings = {ATTRIBUTES = (Project, ); }; }; - B0E8850FC59E770D0425EB8638A64101 /* openssl_md5.h in Headers */ = {isa = PBXBuildFile; fileRef = 3C3297542C5015ECE437ADDA002D57BF /* openssl_md5.h */; settings = {ATTRIBUTES = (Project, ); }; }; - B0ED107F3AAF83FDD3035D0B3D864953 /* GCDAsyncUdpSocket.h in Headers */ = {isa = PBXBuildFile; fileRef = 8CB4425DEDB29C7C46FA36E77962311C /* GCDAsyncUdpSocket.h */; settings = {ATTRIBUTES = (Project, ); }; }; - B0FF11CF10D681CF091E43272BCF9168 /* FKTextSearchable.h in Headers */ = {isa = PBXBuildFile; fileRef = E46D73F190A6730B576634310DE76E76 /* FKTextSearchable.h */; settings = {ATTRIBUTES = (Project, ); }; }; - B1013306F4D903EA4671ED172CEFF591 /* GULNSData+zlib.h in Headers */ = {isa = PBXBuildFile; fileRef = AE886A948A2579DB6EF611D087C1C182 /* GULNSData+zlib.h */; settings = {ATTRIBUTES = (Project, ); }; }; - B13BC297B38927E7038C469BACCDED96 /* ConstexprMath.h in Headers */ = {isa = PBXBuildFile; fileRef = 4A665DDBA684A68855493C39C9A17880 /* ConstexprMath.h */; settings = {ATTRIBUTES = (Project, ); }; }; - B1483314748D0FDB00B54C324A0CDE1E /* RCTLog.h in Headers */ = {isa = PBXBuildFile; fileRef = D900AC4A16FB055481C7D4BB42394972 /* RCTLog.h */; settings = {ATTRIBUTES = (Project, ); }; }; - B159EA16ECB07992DA8EDFA18146296F /* EXSessionTaskDispatcher.m in Sources */ = {isa = PBXBuildFile; fileRef = 7B6DD548394A644C697223589C5139FB /* EXSessionTaskDispatcher.m */; }; - B1792929E4D558B21151EC1BC3701695 /* EventBase.h in Headers */ = {isa = PBXBuildFile; fileRef = 742DFD3C79A95BFA465F215781AFD8CD /* EventBase.h */; settings = {ATTRIBUTES = (Project, ); }; }; - B18CCD55A5094A337C7E6F49212AB06F /* FIRInstallationsStoredAuthToken.h in Headers */ = {isa = PBXBuildFile; fileRef = CD0A3443C6A7213D97CFC3BE33030908 /* FIRInstallationsStoredAuthToken.h */; settings = {ATTRIBUTES = (Project, ); }; }; - B1917338B3C536A39D7472DF946BD906 /* config_enc.c in Sources */ = {isa = PBXBuildFile; fileRef = 78805741973DFB53A145A589929A9B63 /* config_enc.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; - B1B15F99542746BAD493CB3FD93D7A70 /* WarmResumeManager.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 96467C509C117597F95EFD14D4F49097 /* WarmResumeManager.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -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 -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors"; }; }; - B1B20AF0F14E4DD36E6CC45CA1EB7CC7 /* RCTScrollContentViewManager.m in Sources */ = {isa = PBXBuildFile; fileRef = DB991B88FA1191D58DA60D46AA320720 /* RCTScrollContentViewManager.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - B1C32CD1158DB4B3623222010A8DA212 /* FingerprintPolynomial.h in Headers */ = {isa = PBXBuildFile; fileRef = 270500ED0A569CA88773DA34EB2A806A /* FingerprintPolynomial.h */; settings = {ATTRIBUTES = (Project, ); }; }; - B1CC8805D8F4BD1D5D0FEE58EB4EF70A /* PackedSyncPtr.h in Headers */ = {isa = PBXBuildFile; fileRef = 915A7157FB89341848EA3CD577FD6C95 /* PackedSyncPtr.h */; settings = {ATTRIBUTES = (Project, ); }; }; - B1FE94297DF545970CC7AF2A9176D4A1 /* TimeoutManager.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 4B58A282A684CE85411B72C0613BB634 /* TimeoutManager.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -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\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors"; }; }; - B212CEACA4D5887073A5682158E1CADA /* Instructions.h in Headers */ = {isa = PBXBuildFile; fileRef = 61BC42558FD1A68292D50CDD2D1E6983 /* Instructions.h */; settings = {ATTRIBUTES = (Project, ); }; }; - B23770D5542A4EEC3B0989C9F51FC04F /* Hash.h in Headers */ = {isa = PBXBuildFile; fileRef = 0E0FD9AABD54D4C664E1E35921489745 /* Hash.h */; settings = {ATTRIBUTES = (Project, ); }; }; - B2459278296D4635FAADE93B461C7330 /* Singleton.cpp in Sources */ = {isa = PBXBuildFile; fileRef = E0D470BF6CA037D3474A1794EE56F3EC /* 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"; }; }; - B248E08537C1D8181641399AAC23D4BE /* CodedOutputData.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 0B8F8F56D3C45B3777329256B1275595 /* CodedOutputData.cpp */; settings = {COMPILER_FLAGS = "-x objective-c++ -fno-objc-arc"; }; }; - B24A7823434538AD86BD5B7034F55191 /* REATransitionManager.m in Sources */ = {isa = PBXBuildFile; fileRef = 08A0BFC7788EA8338F32393B48AEC433 /* REATransitionManager.m */; }; - B24E3BAD29A34380E54D23FC65CBFF04 /* EXSessionDownloadTaskDelegate.h in Headers */ = {isa = PBXBuildFile; fileRef = 61FFC7CC0B3B4AA85642907AD9B5C5CB /* EXSessionDownloadTaskDelegate.h */; settings = {ATTRIBUTES = (Project, ); }; }; - B257932FFE1BE8D5812AD70B932A056C /* BugsnagSessionTrackingPayload.h in Headers */ = {isa = PBXBuildFile; fileRef = 8B8B3AB8E994E97D8D8B5A5956B0383F /* BugsnagSessionTrackingPayload.h */; settings = {ATTRIBUTES = (Project, ); }; }; - B25B6061C19470C58F3C94B4AA16A79E /* FIRCLSURLSessionConfiguration.m in Sources */ = {isa = PBXBuildFile; fileRef = 1BC2C2D517C3AAECFF85699B7FA6FB09 /* FIRCLSURLSessionConfiguration.m */; }; - B26722E1965B1F4916CCBAFA24446D51 /* Singleton.h in Headers */ = {isa = PBXBuildFile; fileRef = A19D959C2D30B646978CC853404DA1BA /* Singleton.h */; settings = {ATTRIBUTES = (Project, ); }; }; - B2827E524051AE5967DDB9E4599BEB18 /* AsyncTrace.h in Headers */ = {isa = PBXBuildFile; fileRef = A976071786DC29EB8FCFEB8885F34F6C /* AsyncTrace.h */; settings = {ATTRIBUTES = (Project, ); }; }; - B290F86C7C26CD71231E7658CCD0560C /* BSG_RFC3339DateTool.h in Headers */ = {isa = PBXBuildFile; fileRef = BD56632D10B1E370B66E12A3E178C53C /* BSG_RFC3339DateTool.h */; settings = {ATTRIBUTES = (Project, ); }; }; - B294E1F5467A401A4FC3A346B25C5426 /* ReentrantAllocator.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 9E3873CDFC6CC882995CB4188C6285B5 /* ReentrantAllocator.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -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\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors"; }; }; - B2AD496BCA1C18C8EE984FB2210866DA /* BugsnagKeys.m in Sources */ = {isa = PBXBuildFile; fileRef = 62915D9EE18CF11F2284CBAEA75CC96E /* BugsnagKeys.m */; }; - B2BDB48F0761D9CE87E8893D3EA0162E /* RCTSlider.m in Sources */ = {isa = PBXBuildFile; fileRef = A81CB8F7CCCAFF5C081E6D88856ABE8C /* RCTSlider.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - B2C41EF392D8BEDA63316B36023197EC /* RCTUIManagerObserverCoordinator.h in Headers */ = {isa = PBXBuildFile; fileRef = C7A950D965978616E154B786E20C04CE /* RCTUIManagerObserverCoordinator.h */; settings = {ATTRIBUTES = (Project, ); }; }; - B2C53D745BBE33BD353EBF8D8092AE1C /* DrivableExecutor.h in Headers */ = {isa = PBXBuildFile; fileRef = 7D26E0223B986942AE9A33FFAB0D09D4 /* DrivableExecutor.h */; settings = {ATTRIBUTES = (Project, ); }; }; - B2D0A495E7EEBC80157C48FABCD74630 /* SafeAssert.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 920403F95D8B596C5E2AFA4076FF68C6 /* SafeAssert.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -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\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors"; }; }; - B2D3B946BBED766A1748B18A5CD870CB /* BSG_Jailbreak.h in Headers */ = {isa = PBXBuildFile; fileRef = A9341F7BF84C0221A1AD1B597F136AD2 /* BSG_Jailbreak.h */; settings = {ATTRIBUTES = (Project, ); }; }; - B2D3DE2F11BBCE706EB59DB6070B2B58 /* Benchmark.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 1A2F80DEFE681CACE159542DB9E6A231 /* Benchmark.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -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\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors"; }; }; - B2E2062939AFC23D321DB5608724EE79 /* REATransformNode.h in Headers */ = {isa = PBXBuildFile; fileRef = 4C9FD89B38C20D172047C1DFFA6CFCC8 /* REATransformNode.h */; settings = {ATTRIBUTES = (Project, ); }; }; - B2F09CE5B6DEC7861DEB857D857359A6 /* InitThreadFactory.h in Headers */ = {isa = PBXBuildFile; fileRef = 7C2B6BD46CD0D6B84F5DF2CAE06AA6F6 /* InitThreadFactory.h */; settings = {ATTRIBUTES = (Project, ); }; }; - B30E412545D6605AD071B064F3CEB3C0 /* IOObjectCache.h in Headers */ = {isa = PBXBuildFile; fileRef = 75563EAB5D1BADF587F512EF467D9CB1 /* IOObjectCache.h */; settings = {ATTRIBUTES = (Project, ); }; }; - B314869AB7CEE997246109CF7188AC9D /* evhttp.h in Headers */ = {isa = PBXBuildFile; fileRef = 64FDB424456A4DD24183CF1B2202D02E /* evhttp.h */; settings = {ATTRIBUTES = (Project, ); }; }; - B3332A84D9912EB7F5ED71A1311D3D0A /* RCTErrorInfo.m in Sources */ = {isa = PBXBuildFile; fileRef = C572FF6900F516C43191EAD1DD36F938 /* RCTErrorInfo.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - B33B0D66A8DC44143120627EAA48AD19 /* Unistd.h in Headers */ = {isa = PBXBuildFile; fileRef = 49ADD9E9092F2EBE6E2D3FCF1CEF87FB /* Unistd.h */; settings = {ATTRIBUTES = (Project, ); }; }; - B33CE41C4988FB62274C9435DC7AC7C4 /* FIRCLSSerializeSymbolicatedFramesOperation.m in Sources */ = {isa = PBXBuildFile; fileRef = 097D9FA33676D30ACB7766C84788F795 /* FIRCLSSerializeSymbolicatedFramesOperation.m */; }; - B345CC201A352A71FA8F55C2BE56A0C5 /* RCTKeyCommandsManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 7BD4BC06C4F2B33F49A31B34CEFC5BAE /* RCTKeyCommandsManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; - B34CA863D04544F9C500C4C0D1DBC1EB /* RCTImageDataDecoder.h in Headers */ = {isa = PBXBuildFile; fileRef = 67A418ACC80C140583AE0AC6CFFA5D8B /* RCTImageDataDecoder.h */; settings = {ATTRIBUTES = (Project, ); }; }; - B352754E405D47A9A18AAD81551C10D6 /* SysTypes.h in Headers */ = {isa = PBXBuildFile; fileRef = F42986ECFFA483050295D48982F1A735 /* SysTypes.h */; settings = {ATTRIBUTES = (Project, ); }; }; - B36E026BFA975B0E2972DC9E4FD2F913 /* ManualTimekeeper.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 092F24E4BE5DD6FB8A6ABE16A9CDBF1D /* ManualTimekeeper.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -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\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors"; }; }; - B373926EB36227F58E78EAE3ECB9B8FA /* EventHandler.h in Headers */ = {isa = PBXBuildFile; fileRef = 466E3D289B88C4EDE7CC37D8C9EEC208 /* EventHandler.h */; settings = {ATTRIBUTES = (Project, ); }; }; - B384D913C27C00381B305B156B2CE235 /* SDImageHEICCoderInternal.h in Headers */ = {isa = PBXBuildFile; fileRef = 4AA541D7BE961CC64F2D9CCD2719F85C /* SDImageHEICCoderInternal.h */; settings = {ATTRIBUTES = (Project, ); }; }; - B384EC60C20044A64775F3511E0F8741 /* JemallocHugePageAllocator.h in Headers */ = {isa = PBXBuildFile; fileRef = 8D2EA741293DB1E455E1E6953536B516 /* JemallocHugePageAllocator.h */; settings = {ATTRIBUTES = (Project, ); }; }; - B3A9FF3DB1A3DAB8502F509E47036BE4 /* FIRInstallationsStatus.h in Headers */ = {isa = PBXBuildFile; fileRef = 13D532F8576952B1731BD9017ABEF549 /* FIRInstallationsStatus.h */; settings = {ATTRIBUTES = (Project, ); }; }; - B3C78FBA541D3F4F79A193E9A54BAF3C /* RCTUIManagerObserverCoordinator.mm in Sources */ = {isa = PBXBuildFile; fileRef = CA5B2F76C7122E579D86F19EDCFF9E89 /* RCTUIManagerObserverCoordinator.mm */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - B3D7A8D8919292B71A7E53674AAD7917 /* RNBackgroundTimer.m in Sources */ = {isa = PBXBuildFile; fileRef = 23F38D8B8018A84BB11E245D1381A5EA /* RNBackgroundTimer.m */; }; - B3E6599D03A2A32C1FC3DF33F602CF9E /* RCTDatePicker.h in Headers */ = {isa = PBXBuildFile; fileRef = 6D7916C3FADB90D716EC5DFF41BB3D99 /* RCTDatePicker.h */; settings = {ATTRIBUTES = (Project, ); }; }; - B40825AF99A25154DD5B39CECF6B91EC /* AsymmetricMemoryBarrier.h in Headers */ = {isa = PBXBuildFile; fileRef = 7536C3E69616C9AB111495D6F460242E /* AsymmetricMemoryBarrier.h */; settings = {ATTRIBUTES = (Project, ); }; }; - B40E600B226D6BF07D00DF3545C182F6 /* RCTSurfaceProtocol.h in Headers */ = {isa = PBXBuildFile; fileRef = 18F0FA4FDA122C17C4DCBEB2AA25B85E /* RCTSurfaceProtocol.h */; settings = {ATTRIBUTES = (Project, ); }; }; - B4133E795AF7C7D3E5B416E3F9A45083 /* Try-inl.h in Headers */ = {isa = PBXBuildFile; fileRef = 51BFC1D0986C540B6E8C5C8456C71D32 /* Try-inl.h */; settings = {ATTRIBUTES = (Project, ); }; }; - B4159B42027607464FD854F55FCFA0BB /* RCTWeakProxy.m in Sources */ = {isa = PBXBuildFile; fileRef = A1A2C8C7FD4B43B1CCE15E34F066D5BD /* RCTWeakProxy.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - B417219BDCE735A0005816B083301995 /* FIRInstallations.m in Sources */ = {isa = PBXBuildFile; fileRef = 808157E8035BB54AD67EED203B4A8AD8 /* FIRInstallations.m */; }; - B4251A5F7467E8E98DD197694FE2A21A /* CallOnce.h in Headers */ = {isa = PBXBuildFile; fileRef = 67547ABBE9B4176AC94A8DF3675333BE /* CallOnce.h */; settings = {ATTRIBUTES = (Project, ); }; }; - B4262D0FB26F5109D7A33BF8AE598C48 /* ScheduledExecutor.h in Headers */ = {isa = PBXBuildFile; fileRef = 6D873A659FB8A00376E60A16382DB886 /* ScheduledExecutor.h */; settings = {ATTRIBUTES = (Project, ); }; }; - B428D05EDCA4A93A1CBD29D4B85FE924 /* RCTCxxBridgeDelegate.h in Headers */ = {isa = PBXBuildFile; fileRef = 26172BF87BFBC776186999961DEE3E6A /* RCTCxxBridgeDelegate.h */; settings = {ATTRIBUTES = (Project, ); }; }; - B42B61CA53608ED500BF6F4844DFF698 /* RCTConvert+Text.m in Sources */ = {isa = PBXBuildFile; fileRef = 1090A8F0485EF829EB52414930011E85 /* RCTConvert+Text.m */; }; - B44DEBB13C380A2262EEBAB1E9819100 /* UMKernelService.h in Headers */ = {isa = PBXBuildFile; fileRef = CAF651E25771DF3B08038A53419DD063 /* UMKernelService.h */; settings = {ATTRIBUTES = (Project, ); }; }; - B456AADA44B434304D44DB6CDED80B31 /* json.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 28E6791CB338BCC501263524B29045DC /* json.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -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\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors"; }; }; - B45A660C46CF428C44680BE932076DC0 /* EventBaseBackendBase.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 3B752E769E8F38741D11CE8E7DAFF4BE /* EventBaseBackendBase.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -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\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors"; }; }; - B464CECAB2AD956A6037B55A3571E4CB /* BSG_KSCrashReportVersion.h in Headers */ = {isa = PBXBuildFile; fileRef = 140BF54141B2674E32CB6707116B3D52 /* BSG_KSCrashReportVersion.h */; settings = {ATTRIBUTES = (Project, ); }; }; - B46E92A9BDF530C40112651D07ECD171 /* Shell.h in Headers */ = {isa = PBXBuildFile; fileRef = 797A5D5B3084449D2EA9A26C6A00D6A0 /* Shell.h */; settings = {ATTRIBUTES = (Project, ); }; }; - B4874BB64E2E480A7ECF3DF5738418F2 /* UMViewManagerAdapterClassesRegistry.m in Sources */ = {isa = PBXBuildFile; fileRef = 00C2884BADE0F97B775E97637AA0FA78 /* UMViewManagerAdapterClassesRegistry.m */; }; - B496E304F33DC09768D039910FBFEE55 /* FirebaseCoreDiagnostics-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 484E5B8BC9CBD9EC6129C95BC0566EA4 /* FirebaseCoreDiagnostics-dummy.m */; }; - B4A4BB0EAC693F443AE4FF6DCC2E808C /* IOVec.h in Headers */ = {isa = PBXBuildFile; fileRef = EC8909AA3E1DF660755798850979DAAF /* IOVec.h */; settings = {ATTRIBUTES = (Project, ); }; }; - B4AB02391CC37766B2D39816760ACDCA /* cached-powers.h in Headers */ = {isa = PBXBuildFile; fileRef = 142DDC0602F382620626934657D3292E /* cached-powers.h */; settings = {ATTRIBUTES = (Project, ); }; }; - B4B661CB6D518A89233618AE326B75F0 /* EXHapticsModule.m in Sources */ = {isa = PBXBuildFile; fileRef = 68166958B14ADCB402252DD19DBCF907 /* EXHapticsModule.m */; }; - B4BA42922FF158551F2813420C9373F6 /* FIRInteropParameterNames.h in Headers */ = {isa = PBXBuildFile; fileRef = B39FA304FAD2133BE2076EF1F90A524A /* FIRInteropParameterNames.h */; settings = {ATTRIBUTES = (Project, ); }; }; - B516D345CDA82EC5B3371926EFAB0570 /* Overload.h in Headers */ = {isa = PBXBuildFile; fileRef = 6C8D435674D93881B7111A8FBBEE9D1E /* Overload.h */; settings = {ATTRIBUTES = (Project, ); }; }; - B524795FE267A021CBB88BCD94E9ED79 /* Stdlib.cpp in Sources */ = {isa = PBXBuildFile; fileRef = E82BBCC6FC3B357369DB911A9DDB8310 /* Stdlib.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -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\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors"; }; }; - B530C7AAE230E317036FEADA50B18058 /* MoveWrapper.h in Headers */ = {isa = PBXBuildFile; fileRef = 4DA348A7D21149FE8CE8BB8E70E897ED /* MoveWrapper.h */; settings = {ATTRIBUTES = (Project, ); }; }; - B53EE05F4F890F2B3C687492B3BF9EBF /* DelayedDestructionBase.h in Headers */ = {isa = PBXBuildFile; fileRef = 3151C13364D2D1FBA4AA7C9D512719D8 /* DelayedDestructionBase.h */; settings = {ATTRIBUTES = (Project, ); }; }; - B53EF4FF2D793FB3C7F88D716621F395 /* FireAndForgetResponder.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 50F2B1496321F64AD7B0998350D4D009 /* FireAndForgetResponder.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -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 -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors"; }; }; - B542268BDDA8EC0E9448BFDCE2A3D04E /* EXConstantsService.m in Sources */ = {isa = PBXBuildFile; fileRef = 2A213939D88D46C9D88D0BBCEF62E13D /* EXConstantsService.m */; }; - B55237054455486BC4B657E185484CF3 /* mux.h in Headers */ = {isa = PBXBuildFile; fileRef = 6CF53837C68C7B590404D59EF0192BFC /* mux.h */; settings = {ATTRIBUTES = (Project, ); }; }; - B55D409363D06F48469D9A32530E329F /* ReactCommon-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 4D978CC181C344845AC6FDCFAE716AC1 /* ReactCommon-dummy.m */; }; - B56D782E3B1A2A5796BABBE1D71783B1 /* HazptrHolder.h in Headers */ = {isa = PBXBuildFile; fileRef = DB5270A4484D1B65DE6FE5335163CC17 /* HazptrHolder.h */; settings = {ATTRIBUTES = (Project, ); }; }; - B57B52D7A8E312AEA8300E770D5651DD /* REATransition.m in Sources */ = {isa = PBXBuildFile; fileRef = D0ACA1571BAA3C0B215051D0BB3BC857 /* REATransition.m */; }; - B57D74184B1605395EF887E546B3192A /* SingleWriterFixedHashMap.h in Headers */ = {isa = PBXBuildFile; fileRef = 18C569751F640461AACE7DB4F9B16D40 /* SingleWriterFixedHashMap.h */; settings = {ATTRIBUTES = (Project, ); }; }; - B5886017B34755D6C5F8D35BA13DBC9E /* RCTRsa.h in Headers */ = {isa = PBXBuildFile; fileRef = 44849A07404CF4A3B58A4DA314A75331 /* RCTRsa.h */; settings = {ATTRIBUTES = (Project, ); }; }; - B594FF6E7040805B0D32D24AE00ADB7D /* BSG_KSArchSpecific.h in Headers */ = {isa = PBXBuildFile; fileRef = 72A91CE4609B0AF92D06577F1DD39A0F /* BSG_KSArchSpecific.h */; settings = {ATTRIBUTES = (Project, ); }; }; - B5997E72FAF27BC4965545B78D6CA9A1 /* event-internal.h in Headers */ = {isa = PBXBuildFile; fileRef = 85679925C7418CFBC8047231557F405D /* event-internal.h */; settings = {ATTRIBUTES = (Project, ); }; }; - B59C06871DCE000F9A508FAD6FB2432D /* React-cxxreact-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = BF5415DDB9E4FE5CFE25F782B29B7048 /* React-cxxreact-dummy.m */; }; - B59E853C035D262E6A0D83F888AC18E4 /* IOBufQueue.h in Headers */ = {isa = PBXBuildFile; fileRef = 75363C348BFBE2799A03172F6AA1D7EF /* IOBufQueue.h */; settings = {ATTRIBUTES = (Project, ); }; }; - B59F6BBF55F0B4C9AF524FFF1EDD30A0 /* UMAppDelegateWrapper.h in Headers */ = {isa = PBXBuildFile; fileRef = B1E53AC7BC87F814F9DFAFF685664566 /* UMAppDelegateWrapper.h */; settings = {ATTRIBUTES = (Project, ); }; }; - B5D0D30876A5170B761E98DB026CE76D /* FlipperStep.cpp in Sources */ = {isa = PBXBuildFile; fileRef = F043E4504C069306DD6A6870ABB75F40 /* FlipperStep.cpp */; settings = {COMPILER_FLAGS = "-DFLIPPER_OSS=1 -DFB_SONARKIT_ENABLED=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -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"; }; }; - B5E656D8C4B4823CB7C772A212B84E2B /* AtomicIntrusiveLinkedList.h in Headers */ = {isa = PBXBuildFile; fileRef = 6AF2C1FE145FB923BB121653B852C92F /* AtomicIntrusiveLinkedList.h */; settings = {ATTRIBUTES = (Project, ); }; }; - B6118CFF7DE16573F36615E1EE3D51FA /* F14Table.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 4B7ABF9B133936B32C5EF56502D08238 /* F14Table.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -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\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors"; }; }; - B611B30852DB6AAE303158B5B7A716B9 /* SharedPromise-inl.h in Headers */ = {isa = PBXBuildFile; fileRef = 647CE40CF1C8A2EB7C6DA7AD4397FDC3 /* SharedPromise-inl.h */; settings = {ATTRIBUTES = (Project, ); }; }; - B6196655F52E19CC5BE9A898ED7C834C /* REAOperatorNode.m in Sources */ = {isa = PBXBuildFile; fileRef = 13204C62D0A43D74E6AA57C8A4CDD9AC /* REAOperatorNode.m */; }; - B61FD98A4393A3A00DAC223680A918C9 /* FBLPromise+Retry.h in Headers */ = {isa = PBXBuildFile; fileRef = 79EB358D44D6C8AF5B7D86450DD1FEAB /* FBLPromise+Retry.h */; settings = {ATTRIBUTES = (Project, ); }; }; - B63DE8331AD5905142273EE181380953 /* UIButton+WebCache.m in Sources */ = {isa = PBXBuildFile; fileRef = F29E3DA00733EA6D3619E628AEB20A0D /* UIButton+WebCache.m */; }; - B642186F4E6D94051FBB0F12F04B2A39 /* UIImageView+HighlightedWebCache.m in Sources */ = {isa = PBXBuildFile; fileRef = 5DAE9BA82BA92370D5416D2AE6FA9324 /* UIImageView+HighlightedWebCache.m */; }; - B65159AA9444F1081BE92C86ADBC253F /* RCTBridge.h in Headers */ = {isa = PBXBuildFile; fileRef = 761D2449B1CD7B8FA9187B26166B2AC4 /* RCTBridge.h */; settings = {ATTRIBUTES = (Project, ); }; }; - B669576911541B17F8E380C2F8125FC5 /* InterProcessLock_Android.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 23744ABA4509EF6CB80AC27DE1337FAE /* InterProcessLock_Android.cpp */; settings = {COMPILER_FLAGS = "-x objective-c++ -fno-objc-arc"; }; }; - B6969C5DD8443C58885144AF099B195A /* upsampling_neon.c in Sources */ = {isa = PBXBuildFile; fileRef = 469009AF4E41FD57592E38B8933095BE /* upsampling_neon.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; - B69795678AEC78B288B9535BB47CFA19 /* FIRInstallationsErrorUtil.m in Sources */ = {isa = PBXBuildFile; fileRef = 07B23753CEF78E886235745063A4B131 /* FIRInstallationsErrorUtil.m */; }; - B69964744F1853C554C9CF308BE6BA8E /* EXVideoThumbnailsModule.h in Headers */ = {isa = PBXBuildFile; fileRef = 55D1B6B22130A6906F858A24EBA49AC0 /* EXVideoThumbnailsModule.h */; settings = {ATTRIBUTES = (Project, ); }; }; - B6AC4AFFC191BE0174DE35A9835B2800 /* FlipperStateUpdateListener.h in Headers */ = {isa = PBXBuildFile; fileRef = CA751CAFBA7E102722EC9DE334A0204A /* FlipperStateUpdateListener.h */; settings = {ATTRIBUTES = (Project, ); }; }; - B6B8D90E1D9071ADCB74D1E342D9EF52 /* GDTCOREvent+GDTCCTSupport.m in Sources */ = {isa = PBXBuildFile; fileRef = 045DC00385FFA069EE7A16F3DED4A670 /* GDTCOREvent+GDTCCTSupport.m */; }; - B6C272BCCC4F51420570C8209ADEA2D1 /* anim_encode.c in Sources */ = {isa = PBXBuildFile; fileRef = 58B94465E6740BC4396BE9B1AA8814EC /* anim_encode.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; - B6DD124EDA34919378A5066C533318B9 /* RCTEventAnimation.h in Headers */ = {isa = PBXBuildFile; fileRef = B7BAE7EC72A94B862129150291E3A12E /* RCTEventAnimation.h */; settings = {ATTRIBUTES = (Project, ); }; }; - B6E9F5C3D140751D6EC41E094C64D8ED /* Ordering.h in Headers */ = {isa = PBXBuildFile; fileRef = F9AB6E248D04BFEA6DDB12144F24888A /* Ordering.h */; settings = {ATTRIBUTES = (Project, ); }; }; - B6FEA1C2CE452A46C58EE49FEA9A8E07 /* KeyValueHolder.h in Headers */ = {isa = PBXBuildFile; fileRef = 3554E36A810D8574E002C2092B9121F1 /* KeyValueHolder.h */; settings = {ATTRIBUTES = (Project, ); }; }; - B71F61D27BBE4CE6D629DC18A95DB476 /* SKObjectHash.h in Headers */ = {isa = PBXBuildFile; fileRef = DD94706F88D0811C813652FD44EAA9F1 /* SKObjectHash.h */; settings = {ATTRIBUTES = (Project, ); }; }; - B73A17158667F865B59F6FF3974C9AD7 /* RCTAnimationUtils.m in Sources */ = {isa = PBXBuildFile; fileRef = 2A3F22FAC952E5430A805F4537973541 /* 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"; }; }; - B74045F762624D00FCC20B887DA4C3B2 /* HazptrObj.h in Headers */ = {isa = PBXBuildFile; fileRef = A1EB5F02162EBF607D4F46A727A08B51 /* HazptrObj.h */; settings = {ATTRIBUTES = (Project, ); }; }; - B754500F6E3CD14107A63C18D06AC057 /* UMUserNotificationCenterProxyInterface.h in Headers */ = {isa = PBXBuildFile; fileRef = 58817D2F48C0FC9AF0AB1D02CBEE1801 /* UMUserNotificationCenterProxyInterface.h */; settings = {ATTRIBUTES = (Project, ); }; }; - B75618877550F3FC1A675F1A92F09E8D /* GlobalExecutor.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 6C1989CBEB6492178FB599E7162B2097 /* GlobalExecutor.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -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\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors"; }; }; - B75F28FEB4C8E08B0ABF50EFC7D07891 /* RNFlingHandler.m in Sources */ = {isa = PBXBuildFile; fileRef = 59BD0C07D24524D4C340E46EC4907F53 /* RNFlingHandler.m */; }; - B777045A0B6188B81FEBFA6615EEC91F /* react-native-notifications-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = A79E6B0FA53228F0C22FDAE97E39A414 /* react-native-notifications-dummy.m */; }; - B784264D390418B691C769B9EBF482D2 /* IPAddressV6.h in Headers */ = {isa = PBXBuildFile; fileRef = 4A7A40CF223EA236B4C3E3A43161EBA8 /* IPAddressV6.h */; settings = {ATTRIBUTES = (Project, ); }; }; - B78EB638E31B896CCFA38A9765572393 /* BugsnagAppWithState.h in Headers */ = {isa = PBXBuildFile; fileRef = BB7A5AF8671A1E7E75DC19F1F6616F9F /* BugsnagAppWithState.h */; settings = {ATTRIBUTES = (Project, ); }; }; - B7BC620E2F0F296F50DC9DA7BBE977E4 /* RCTImageShadowView.h in Headers */ = {isa = PBXBuildFile; fileRef = D61D7C469D560268F734071F40F27401 /* RCTImageShadowView.h */; settings = {ATTRIBUTES = (Project, ); }; }; - B7FAC62809E437CDEDC06940F32E5E7B /* FIRCLSCompactUnwind.h in Headers */ = {isa = PBXBuildFile; fileRef = B97145061E4F7F28CDE503B069456A48 /* FIRCLSCompactUnwind.h */; settings = {ATTRIBUTES = (Project, ); }; }; - B81DB7CFBD37CAA024A91B555809BF71 /* FIRInstallationsVersion.h in Headers */ = {isa = PBXBuildFile; fileRef = 9DB1D8FE765BE7361DB47698214C8827 /* FIRInstallationsVersion.h */; settings = {ATTRIBUTES = (Project, ); }; }; - B829AC4A201437872BBBFE86C77C3B27 /* TOCropScrollView.h in Headers */ = {isa = PBXBuildFile; fileRef = 64AA081DD681754AE4C37B1CF1559595 /* TOCropScrollView.h */; settings = {ATTRIBUTES = (Project, ); }; }; - B8366768FB76A4815B0A90A670780E97 /* ErrorUtils.h in Headers */ = {isa = PBXBuildFile; fileRef = 36ECDE525D4C7376F5E88469F9AA0F0E /* ErrorUtils.h */; settings = {ATTRIBUTES = (Project, ); }; }; - B86868C18467F17EA53E7F0160AB5252 /* TurboModulePerfLogger.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 5E6C0041DF66013D73FBEED12E372544 /* TurboModulePerfLogger.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - B875EABBD116B4987FD2958D90290146 /* BugsnagStacktrace.m in Sources */ = {isa = PBXBuildFile; fileRef = 6810FE9C38430A012054DCA1F480FCA3 /* BugsnagStacktrace.m */; }; - B87B8695BDEF0D417CCD9B3B07E3760F /* dynamic-inl.h in Headers */ = {isa = PBXBuildFile; fileRef = F0DBC971FD93CC9B2793DC0B11B8E605 /* dynamic-inl.h */; settings = {ATTRIBUTES = (Project, ); }; }; - B88263CFE9B9337C1AB4D9667DA89EC9 /* PriorityUnboundedBlockingQueue.h in Headers */ = {isa = PBXBuildFile; fileRef = 7FB87EB46998796DCFC2FA8FAB22730B /* PriorityUnboundedBlockingQueue.h */; settings = {ATTRIBUTES = (Project, ); }; }; - B893A1A5E35F431E601D05B9DCF5D935 /* RNGestureHandlerModule.m in Sources */ = {isa = PBXBuildFile; fileRef = 258482B084569DC0C1112CA43660CA3A /* RNGestureHandlerModule.m */; }; - B895839B7E06B29CAF736BAA351D01B4 /* FIRComponent.m in Sources */ = {isa = PBXBuildFile; fileRef = 63A7B528365B39E6C6E9F68527A0D320 /* FIRComponent.m */; }; - B898DB08A50FBB4C579539CB1CFEEA72 /* poll.c in Sources */ = {isa = PBXBuildFile; fileRef = 7B4FCBFF3CE54A00C2F44A31FB4C5FA7 /* poll.c */; }; - B8AC3BD4F6CF70F207FCFF3C2931599D /* openssl_md32_common.h in Headers */ = {isa = PBXBuildFile; fileRef = F84D66B66D9C1D0B7FA28AC0AF726DA5 /* openssl_md32_common.h */; settings = {ATTRIBUTES = (Project, ); }; }; - B8B7AAF4D7B596C9248BB611E889DDCB /* FIRCLSDwarfUnwind.c in Sources */ = {isa = PBXBuildFile; fileRef = 2C1FABDEA357FDEA4376B5426958FB0D /* FIRCLSDwarfUnwind.c */; }; - B8EE199139365259464A9A4E63FB031B /* FBReactNativeSpec-generated.mm in Sources */ = {isa = PBXBuildFile; fileRef = F68A5EB0647CE6880D14B79F96C6735C /* FBReactNativeSpec-generated.mm */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-nullability-completeness"; }; }; - B8F4F7753D9026C4E4123F757B812AFA /* AtomicHashArray.h in Headers */ = {isa = PBXBuildFile; fileRef = DEDFCDEDEC54C491C5F3C67AFD4F3CB5 /* AtomicHashArray.h */; settings = {ATTRIBUTES = (Project, ); }; }; - B90BC90D6C772811A4998C72B965F487 /* pt-BR.lproj in Resources */ = {isa = PBXBuildFile; fileRef = 25CEA0EDE1F1F4F5ED0DD3050A6FF576 /* pt-BR.lproj */; }; - B92D9B88277945504CAADB5CC35CE28C /* DefaultKeepAliveExecutor.h in Headers */ = {isa = PBXBuildFile; fileRef = 4652354732BAAD1E1BF37A644FBCFB1D /* DefaultKeepAliveExecutor.h */; settings = {ATTRIBUTES = (Project, ); }; }; - B93E4EEF29EEF84B3C95C07BDCBBC523 /* Future.h in Headers */ = {isa = PBXBuildFile; fileRef = 08AB72659E4E8BC3FCDF3F0DEB0E6611 /* Future.h */; settings = {ATTRIBUTES = (Project, ); }; }; - B9409907B52C65EE32E83279A15715AB /* UIImage+ExtendedCacheData.h in Headers */ = {isa = PBXBuildFile; fileRef = 2EEC082619F0F996306EE06C9EE41BD4 /* UIImage+ExtendedCacheData.h */; settings = {ATTRIBUTES = (Project, ); }; }; - B95952822BE50446EBB4404EB4C8BD77 /* IPAddress.h in Headers */ = {isa = PBXBuildFile; fileRef = 0E9FC43B02A652C5EFBABABA7B5033D8 /* IPAddress.h */; settings = {ATTRIBUTES = (Project, ); }; }; - B96236ABFA0949FD10F5FFF77480787E /* SDAnimatedImage.h in Headers */ = {isa = PBXBuildFile; fileRef = 96C961D244E629D8F1928A1FD8230EC6 /* SDAnimatedImage.h */; settings = {ATTRIBUTES = (Project, ); }; }; - B97262F67EBB48AB6DD08AEF39CDF101 /* REACondNode.h in Headers */ = {isa = PBXBuildFile; fileRef = C60C273209D11C25647302AA4EE459C7 /* REACondNode.h */; settings = {ATTRIBUTES = (Project, ); }; }; - B97C4023C89040E46F0B1CFDFDF2C598 /* RCTGIFImageDecoder.h in Headers */ = {isa = PBXBuildFile; fileRef = 9BA3DE51E17B480EAFB1A0B28D2E7932 /* RCTGIFImageDecoder.h */; settings = {ATTRIBUTES = (Project, ); }; }; - B99941D9C114E272C7E600F5C789D2CC /* Pods-defaults-Rocket.Chat-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 1755BCB66039C137A85759A7F94BCBA6 /* Pods-defaults-Rocket.Chat-dummy.m */; }; - B9AA93D67423904B9BD77404229C8CBE /* FlowableOperator.h in Headers */ = {isa = PBXBuildFile; fileRef = 49A802672B0D87070DE29302B001CBCD /* FlowableOperator.h */; settings = {ATTRIBUTES = (Project, ); }; }; - B9B61BFCB52244663AAE509BAD50BC13 /* RCTConvert+Text.h in Headers */ = {isa = PBXBuildFile; fileRef = 99B7A76C5FDAC071619973B54DEF69DE /* RCTConvert+Text.h */; settings = {ATTRIBUTES = (Project, ); }; }; - B9C785E004C42A3A7870E839436ADB3E /* Sse.h in Headers */ = {isa = PBXBuildFile; fileRef = 7368C7BB10308A0411937E8FED486628 /* Sse.h */; settings = {ATTRIBUTES = (Project, ); }; }; - B9D4C1AA0D160D18DA7EF4EFE2465998 /* QBVideoIndicatorView.h in Headers */ = {isa = PBXBuildFile; fileRef = 02AB655AA81715AD591B40A32DD7A704 /* QBVideoIndicatorView.h */; settings = {ATTRIBUTES = (Project, ); }; }; - B9E0F2BB25FE380FB287CB60FE2EACFD /* SmallLocks.h in Headers */ = {isa = PBXBuildFile; fileRef = 2579C83AE47641A16DCDEB3AD0508DBB /* SmallLocks.h */; settings = {ATTRIBUTES = (Project, ); }; }; - B9F4749C940D6C6A23EC38670DA9336E /* BugsnagApiClient.h in Headers */ = {isa = PBXBuildFile; fileRef = 70BFA5E481DB2ED2EDD2DC75CC99DB74 /* BugsnagApiClient.h */; settings = {ATTRIBUTES = (Project, ); }; }; - B9FB9E4F14C22337C2184B19BB95A8E1 /* decorator.h in Headers */ = {isa = PBXBuildFile; fileRef = 124EB0925EE1CAB42EC4BBD5C77ED793 /* decorator.h */; settings = {ATTRIBUTES = (Project, ); }; }; - BA07A5475D4C2C9E8E58363EBE4408E2 /* SDWebImageOptionsProcessor.h in Headers */ = {isa = PBXBuildFile; fileRef = B042F5A5AB0621F4132E429D09681A9B /* SDWebImageOptionsProcessor.h */; settings = {ATTRIBUTES = (Project, ); }; }; - BA0F446E1D8F95413391AFC486FF19AD /* Preprocessor.h in Headers */ = {isa = PBXBuildFile; fileRef = AA8DA18CA91D26D11E1BAE2D71DFBFF6 /* Preprocessor.h */; settings = {ATTRIBUTES = (Project, ); }; }; - BA1F859DA9C7D7E97692E817984C15A3 /* React-CoreModules-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 592DD183E51F970BE56CF088A5393452 /* React-CoreModules-dummy.m */; }; - BA27A3CBDEF6E0931E13F60F176ED32C /* Stdio.h in Headers */ = {isa = PBXBuildFile; fileRef = 2B8E8C68AEE768BDD9E736F62AB3056B /* Stdio.h */; settings = {ATTRIBUTES = (Project, ); }; }; - BA2EC5894867731AC833E5117AC88C1D /* RCTSubtractionAnimatedNode.m in Sources */ = {isa = PBXBuildFile; fileRef = 43CFFE187D922E2A69DF28EEEF6CB5D5 /* 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"; }; }; - BA2F26CF50000640E27F834339683F3F /* react-native-appearance-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 5AE33E6B0FBB3B12DA4E53484838DA32 /* react-native-appearance-dummy.m */; }; - BA329500D43B9B6E482F57767412CB67 /* FIRCLSDownloadAndSaveSettingsOperation.m in Sources */ = {isa = PBXBuildFile; fileRef = 2D2D7C2D1FF6405FC4F8DCCBEB33D66F /* FIRCLSDownloadAndSaveSettingsOperation.m */; }; - BA39E72B3E5987D3570AB7E33150CDFE /* UIView+React.m in Sources */ = {isa = PBXBuildFile; fileRef = 0DDBD5E783F16003D79827A5B335C2E9 /* 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"; }; }; - BA8692E70D5290EE1836F18FB4D71134 /* ParkingLot.h in Headers */ = {isa = PBXBuildFile; fileRef = 7B4997BE75B671F317C2EF73421AF78C /* ParkingLot.h */; settings = {ATTRIBUTES = (Project, ); }; }; - BA8D18096CD1A46BB82D8F529110E8CD /* BugsnagEventDeserializer.h in Headers */ = {isa = PBXBuildFile; fileRef = A8328F6F268BE9F930BB69676027BA42 /* BugsnagEventDeserializer.h */; settings = {ATTRIBUTES = (Project, ); }; }; - BAA136554781CBBC00EB2AD138681AFA /* FlipperUtil.m in Sources */ = {isa = PBXBuildFile; fileRef = F5344B45D2A5F2585D79F4084CC0F9EA /* FlipperUtil.m */; settings = {COMPILER_FLAGS = "-DDEBUG=1 -DFLIPPER_OSS=1 -DFB_SONARKIT_ENABLED=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -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"; }; }; - BAAED780974B80EC0F40FA7F16FB68B2 /* Bugsnag+Private.h in Headers */ = {isa = PBXBuildFile; fileRef = 8CEF6312A691D6DB22CF8785A46A0F92 /* Bugsnag+Private.h */; settings = {ATTRIBUTES = (Project, ); }; }; - BAC849F7D7DCDBE9A0E3F0EC732EBB9E /* BugsnagStackframe.h in Headers */ = {isa = PBXBuildFile; fileRef = 74EF1021D13B81EA41A5928C1E898140 /* BugsnagStackframe.h */; settings = {ATTRIBUTES = (Project, ); }; }; - BAF7DBC68C422EC3C942F15AB21310C4 /* Hmac.h in Headers */ = {isa = PBXBuildFile; fileRef = 7350AC9E8B2BC0D2157BBD0C505BCEB7 /* Hmac.h */; settings = {ATTRIBUTES = (Project, ); }; }; - BAFD461E05A8B4826167309DA792C604 /* MPMCPipeline.h in Headers */ = {isa = PBXBuildFile; fileRef = EF66ECB1C963FF6FB3F5A9F987CF61D3 /* MPMCPipeline.h */; settings = {ATTRIBUTES = (Project, ); }; }; - BB03B83D12B84257758E03B1E7B338C2 /* Flowable.h in Headers */ = {isa = PBXBuildFile; fileRef = E0363F552304962F69D4227E89A03FD4 /* Flowable.h */; settings = {ATTRIBUTES = (Project, ); }; }; - BB2157B9CBD4FC48ECCCACB047F27180 /* AsyncServerSocket.h in Headers */ = {isa = PBXBuildFile; fileRef = 596F10574E5D420FE66BBA5FD276D16F /* AsyncServerSocket.h */; settings = {ATTRIBUTES = (Project, ); }; }; - BB3D2B73FB11475D233EC0141BA67FD3 /* BSG_KSCrashSentry_Signal.c in Sources */ = {isa = PBXBuildFile; fileRef = 54491F5B3AE4721132EE26759F4E88F4 /* BSG_KSCrashSentry_Signal.c */; }; - BB4F6AF89A15D0B403F5AAAB5360A704 /* GULLoggerCodes.h in Headers */ = {isa = PBXBuildFile; fileRef = 842CE69EF38520DDAA52171D3B28A041 /* GULLoggerCodes.h */; settings = {ATTRIBUTES = (Project, ); }; }; - BB562842ACFA3EAFA7C91E495616B572 /* RCTRedBox.h in Headers */ = {isa = PBXBuildFile; fileRef = 29C3FBC8358D2B9354ADE309861B9CDE /* RCTRedBox.h */; settings = {ATTRIBUTES = (Project, ); }; }; - BB95A3870C6FC9F84284FAA4BF733FEA /* FIRCLSUserDefaults_private.h in Headers */ = {isa = PBXBuildFile; fileRef = E0E7621907959CFCC82A5725717C078F /* FIRCLSUserDefaults_private.h */; settings = {ATTRIBUTES = (Project, ); }; }; - BBA3BA78EE75EE6BE23A64B27B6B7FFB /* FIRCLSProcess.c in Sources */ = {isa = PBXBuildFile; fileRef = 5334928FBB0132296272FEA11164A514 /* FIRCLSProcess.c */; }; - BBAD67E32BECDCD7F5E0D56A64ECFD72 /* BSG_KSString.h in Headers */ = {isa = PBXBuildFile; fileRef = 308C47CE2D3A09406168330B0D50A90F /* BSG_KSString.h */; settings = {ATTRIBUTES = (Project, ); }; }; - BBBD6E8CB02C498A552D18842EE4D1D9 /* RCTUtils.m in Sources */ = {isa = PBXBuildFile; fileRef = E4A6BA210B4EFD203AABF20E4E4B840D /* RCTUtils.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - BBC28273B135F97C57377B610C5BDA19 /* Semaphore.h in Headers */ = {isa = PBXBuildFile; fileRef = 701E5530C6B17E2445815FABEF3968E4 /* Semaphore.h */; settings = {ATTRIBUTES = (Project, ); }; }; - BBCA45D0BC4E0B116345A1B6E4EDA811 /* RCTStatusBarManager.mm in Sources */ = {isa = PBXBuildFile; fileRef = 0D4E47CF87EA1B46B2B44533C1B5C444 /* 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"; }; }; - BBD515D6180E71256A0A9CB0BF778447 /* Promise-inl.h in Headers */ = {isa = PBXBuildFile; fileRef = 272CDB0FA827230F8DE743CE89D46813 /* Promise-inl.h */; settings = {ATTRIBUTES = (Project, ); }; }; - BBE575A5924112AFBCF759BE914C6D8D /* event_tagging.c in Sources */ = {isa = PBXBuildFile; fileRef = E551AF1B96A249735565C79072A99930 /* event_tagging.c */; }; - BBF12E0628081E0A6B307FA2D6AF6BC3 /* BugsnagPlugin.h in Headers */ = {isa = PBXBuildFile; fileRef = F9AF0CE3E531CB7ECF512BA158A835A9 /* BugsnagPlugin.h */; settings = {ATTRIBUTES = (Project, ); }; }; - BC0975A30F8FEEC9A8E5F8798F052344 /* MemoryMapping.h in Headers */ = {isa = PBXBuildFile; fileRef = F7A9DDBA9BFFE646492645017B4ED408 /* MemoryMapping.h */; settings = {ATTRIBUTES = (Project, ); }; }; - BC1ADA4083FC3463E1592442D3AAD071 /* BSG_KSDynamicLinker.h in Headers */ = {isa = PBXBuildFile; fileRef = 0B87A5BBA8FA573F708551CD582ECB53 /* BSG_KSDynamicLinker.h */; settings = {ATTRIBUTES = (Project, ); }; }; - BC1EAA3E5AE771CFB2E8C2F44E3ABF8A /* ScopedLock.hpp in Headers */ = {isa = PBXBuildFile; fileRef = 792D7911DF2A48D00794E7EC7357C1F8 /* ScopedLock.hpp */; settings = {ATTRIBUTES = (Project, ); }; }; - BC2E89F8D82C209DF700599CBB398BC2 /* RCTView+SafeAreaCompat.h in Headers */ = {isa = PBXBuildFile; fileRef = B40DF7C2CDE03744D98968D0D2ACF035 /* RCTView+SafeAreaCompat.h */; settings = {ATTRIBUTES = (Project, ); }; }; - BC55C7CADBBAE050ED0BB3E32A64E9AF /* RCTEventEmitter.h in Headers */ = {isa = PBXBuildFile; fileRef = 9942BE296BDC9338E1E5B26D1CFF0853 /* RCTEventEmitter.h */; settings = {ATTRIBUTES = (Project, ); }; }; - BC5940202315DE2869ADDF89548E4809 /* Core.h in Headers */ = {isa = PBXBuildFile; fileRef = 8C5A833DB4603F418D6E176A275CB16F /* Core.h */; settings = {ATTRIBUTES = (Project, ); }; }; - BC7D90C5BB326EA7771348567FB2BF44 /* FIRComponentType.m in Sources */ = {isa = PBXBuildFile; fileRef = 03E7B4CBB3C83D80F339CB90C1B315FE /* FIRComponentType.m */; }; - BC7E55A776CDFCD7D54EF579B10B8236 /* ReactNativeShareExtension.h in Headers */ = {isa = PBXBuildFile; fileRef = 3DD200BF5701502D7B4E9ACFF160CDC1 /* ReactNativeShareExtension.h */; settings = {ATTRIBUTES = (Project, ); }; }; - BC8F5A06EB0ED683D5CA55D7E6D84C44 /* rescaler_mips32.c in Sources */ = {isa = PBXBuildFile; fileRef = FE0A9EDABB70F6E69735C65E4CB586B9 /* rescaler_mips32.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; - BC9A6B52422C58DE5EDE6E4CE44BD9A0 /* Exception.h in Headers */ = {isa = PBXBuildFile; fileRef = 331FC717C92873188CC5A657D146E0CA /* Exception.h */; settings = {ATTRIBUTES = (Project, ); }; }; - BC9AA287DB9D1F3C1E2E37BCD07E16EF /* RCTPlatform.h in Headers */ = {isa = PBXBuildFile; fileRef = BA82B896587B196F261A9B1D9428EEB3 /* RCTPlatform.h */; settings = {ATTRIBUTES = (Project, ); }; }; - BCB94D920D9304C0F6C6B4A97211F740 /* RCTRsa.m in Sources */ = {isa = PBXBuildFile; fileRef = 9C2FF72F433B5B816D4642C6E2EEAB91 /* RCTRsa.m */; }; - BCC1BBE162E3C4498352B192A8F7F093 /* ARTRenderable.m in Sources */ = {isa = PBXBuildFile; fileRef = 7C0B43A991C621D8375536967E7F702D /* ARTRenderable.m */; }; - BCD14AAD371AD7DBACD31606BCAF0EA5 /* SpookyHashV1.h in Headers */ = {isa = PBXBuildFile; fileRef = D64E5F3C5FEBB3D23A3B391A2C24C43A /* SpookyHashV1.h */; settings = {ATTRIBUTES = (Project, ); }; }; - BCDDD0F39B08EFCAAD199EBB7569352F /* ProxyLockable-inl.h in Headers */ = {isa = PBXBuildFile; fileRef = A94A8FADCF705A06FA759CBDCA969EB6 /* ProxyLockable-inl.h */; settings = {ATTRIBUTES = (Project, ); }; }; - BCE6AFFBB228B0AB83252F2EA6716C7F /* RequestResponseResponder.cpp in Sources */ = {isa = PBXBuildFile; fileRef = E503A206DA16C1284D11C3DA57A0F135 /* RequestResponseResponder.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -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 -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors"; }; }; - BCECA4F80E7AE8459C0C0D8DF87D5DB9 /* Hardware.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 681A1AB2EE91831DCFF815571703FE6D /* 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"; }; }; - BD162DFD42C21940FDF960095DEF6686 /* GULNSData+zlib.m in Sources */ = {isa = PBXBuildFile; fileRef = 040B1FEA4D1BB34B7A5D3231137088C5 /* GULNSData+zlib.m */; }; - BD186137B210BDEE0479BF8275367291 /* RNNotifications.h in Headers */ = {isa = PBXBuildFile; fileRef = E8A17AD3EF22B3EDE7BC6C2E0715F83F /* RNNotifications.h */; settings = {ATTRIBUTES = (Project, ); }; }; - BD19592FD2EE47C1DF3DBB4264F6BD9B /* rescaler_utils.c in Sources */ = {isa = PBXBuildFile; fileRef = 3C69E16660B149ABB112C2C8F03FF6CE /* rescaler_utils.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; - BD2D7E41781C3994DDE1CA5418311905 /* RCTDevSettings.h in Headers */ = {isa = PBXBuildFile; fileRef = 3653433E05093D7DD292F6CF1840A064 /* RCTDevSettings.h */; settings = {ATTRIBUTES = (Project, ); }; }; - BD31373787DBDBEBB6B55B5DB5B9FA1B /* SDImageCoderHelper.m in Sources */ = {isa = PBXBuildFile; fileRef = 25BDB5BBBC679FA82A17FC504F679035 /* SDImageCoderHelper.m */; }; - BD5DDA97AA9E4938F96BC384018A764B /* RNPanHandler.h in Headers */ = {isa = PBXBuildFile; fileRef = D4C7960CE956C5F384C6FCFE3EF90FF5 /* RNPanHandler.h */; settings = {ATTRIBUTES = (Project, ); }; }; - BD6272FAA0121FB7DA4977388E4B983F /* FIRCLSURLBuilder.h in Headers */ = {isa = PBXBuildFile; fileRef = 6D035BF61D6DF1BDDA08411148CE3E73 /* FIRCLSURLBuilder.h */; settings = {ATTRIBUTES = (Project, ); }; }; - BD7457227DA7BF85700073928C5DAC6B /* cost_sse2.c in Sources */ = {isa = PBXBuildFile; fileRef = C9147CB539C346522CDE0A26BEEAD07A /* cost_sse2.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; - BD77429A83C5A96A341E7EFE5CD6D1CE /* Checksum.h in Headers */ = {isa = PBXBuildFile; fileRef = 30E0158E717F1ED37C490CDF675CB681 /* Checksum.h */; settings = {ATTRIBUTES = (Project, ); }; }; - BD8052DA6717CAD254815B690E2DF5AD /* TcpConnectionFactory.h in Headers */ = {isa = PBXBuildFile; fileRef = 8AE6FF8CF2D49101587FD8DFC0377561 /* TcpConnectionFactory.h */; settings = {ATTRIBUTES = (Project, ); }; }; - BD8F8D1E2C7AFD6EDD1E52E3BE2728D8 /* RCTDevLoadingViewSetEnabled.h in Headers */ = {isa = PBXBuildFile; fileRef = BCABB017733DA167CDCE49C71D027269 /* RCTDevLoadingViewSetEnabled.h */; settings = {ATTRIBUTES = (Project, ); }; }; - BD915EF6F0525B2E12C96CF877C5261C /* Util.h in Headers */ = {isa = PBXBuildFile; fileRef = 1AF8240480B74734E9ACF9DCC64540B5 /* Util.h */; settings = {ATTRIBUTES = (Project, ); }; }; - BDA86160C344F123B4DFC750293BAD3B /* FIRCLSApplicationIdentifierModel.m in Sources */ = {isa = PBXBuildFile; fileRef = C4EC293F2FD023668E6B3531C1E85E2D /* FIRCLSApplicationIdentifierModel.m */; }; - BDC40C36D8665788E5F4C11F8AEB049B /* evdns.c in Sources */ = {isa = PBXBuildFile; fileRef = C8F7A0909CE76DB246CB41A3FF611281 /* evdns.c */; }; - BDF55DAA84EC07ACB12B59E6FD9E58E9 /* String.h in Headers */ = {isa = PBXBuildFile; fileRef = A421F2EFDBAA96C876AB25BD44230474 /* String.h */; settings = {ATTRIBUTES = (Project, ); }; }; - BE19AE06EF5878BAB8A999F87B1085F6 /* ARTSurfaceView.h in Headers */ = {isa = PBXBuildFile; fileRef = 10E8EE79A039D0EAA20868FC060EDE3C /* ARTSurfaceView.h */; settings = {ATTRIBUTES = (Project, ); }; }; - BE1EC289878D8BA4F3AC01EC2E153E53 /* SDImageCache.m in Sources */ = {isa = PBXBuildFile; fileRef = 32049DBA956FAF95AB8A99703E214354 /* SDImageCache.m */; }; - BE23A68225DE90277929A9DB9E0EBA18 /* GULNetworkURLSession.m in Sources */ = {isa = PBXBuildFile; fileRef = 6E981642F410BB1CAC1402953B1C9C35 /* GULNetworkURLSession.m */; }; - BE43F0800E11F3DDB0951EBCF34A13B5 /* RCTBlobCollector.h in Headers */ = {isa = PBXBuildFile; fileRef = 6CCC914F4F5E3F78B40CCDAC0BDEB908 /* RCTBlobCollector.h */; settings = {ATTRIBUTES = (Project, ); }; }; - BE6D9D39189D07C4D778D76C8C6C8ADD /* BSG_KSMach_Arm.c in Sources */ = {isa = PBXBuildFile; fileRef = 0916BB36DF829DD5FD4D51AA3D725A7B /* BSG_KSMach_Arm.c */; }; - BE71D068B4CFDF3DADE649849D6A9BE7 /* SequencedExecutor.h in Headers */ = {isa = PBXBuildFile; fileRef = 1B95CA518AB99C7208289965A486D6FE /* SequencedExecutor.h */; settings = {ATTRIBUTES = (Project, ); }; }; - BE77BF5D3D009AA27EA6E3E6B0863A9C /* LockTraits.h in Headers */ = {isa = PBXBuildFile; fileRef = C27DC7AE4DE697B574D21F7A3A57FB75 /* LockTraits.h */; settings = {ATTRIBUTES = (Project, ); }; }; - BE82ACD42D28685F5C61C944DD7C167F /* MemoryIdler.cpp in Sources */ = {isa = PBXBuildFile; fileRef = FED12E0BDD67E0F93E53BEFCF504D270 /* MemoryIdler.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -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\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors"; }; }; - BE9111930A53F9427B75DAEC76358FAA /* RCTI18nManager.mm in Sources */ = {isa = PBXBuildFile; fileRef = 0CAE1967C4A341DC0BBDF6A55DE59DAC /* 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"; }; }; - BE9151386B4667D9C62341DA5B973C84 /* RNFetchBlobProgress.m in Sources */ = {isa = PBXBuildFile; fileRef = 659AF947B8078759249913E120B5CC48 /* RNFetchBlobProgress.m */; }; - BEA051E333B51EA6833E9916AC3ACEDB /* BSG_KSCrashReport.c in Sources */ = {isa = PBXBuildFile; fileRef = 4B5B3779D6AB8FEFC561F8749A3E7170 /* BSG_KSCrashReport.c */; }; - BEBA37988A07D40FBA4A1EFB2A777324 /* IntrusiveList.h in Headers */ = {isa = PBXBuildFile; fileRef = 1859134AD65C65ED5257C915403A0415 /* IntrusiveList.h */; settings = {ATTRIBUTES = (Project, ); }; }; - BEC08D7CAEEBEA53D39B959B139BADB8 /* RCTInputAccessoryViewManager.m in Sources */ = {isa = PBXBuildFile; fileRef = 92DC2AC6A377D3C7250197995BC60280 /* RCTInputAccessoryViewManager.m */; }; - BEC8B8C8F9282C3EF2B5699365285652 /* FlipperConnection.h in Headers */ = {isa = PBXBuildFile; fileRef = 4BA1950E3338CF90E6291F27458625C5 /* FlipperConnection.h */; settings = {ATTRIBUTES = (Project, ); }; }; - BEDC718C7FCEC1777A0E533CBC49F5BA /* UIView+Yoga.h in Headers */ = {isa = PBXBuildFile; fileRef = EBDAEB955E4ABF88F7711DF389E903E3 /* UIView+Yoga.h */; settings = {ATTRIBUTES = (Project, ); }; }; - BEF36AF189692C55712C910F23773B20 /* BugsnagEndpointConfiguration.h in Headers */ = {isa = PBXBuildFile; fileRef = 9B513B2654AB7DD415E90B2561132369 /* BugsnagEndpointConfiguration.h */; settings = {ATTRIBUTES = (Project, ); }; }; - BEFBD45A13D450C763FF87FB1D1F70CD /* TimerFD.h in Headers */ = {isa = PBXBuildFile; fileRef = 34AB1BEDE616A3B49F4EE42ECC2C6D3C /* TimerFD.h */; settings = {ATTRIBUTES = (Project, ); }; }; - BF36C47B969919C688B90BD62088EA24 /* LNAnimatorTemp.m in Sources */ = {isa = PBXBuildFile; fileRef = B1E561BB53064F378156F22F2A0939AC /* LNAnimatorTemp.m */; }; - BF4FF9EB6ADAFF86757F337E0621AB1D /* Optional.h in Headers */ = {isa = PBXBuildFile; fileRef = 1B7B1EAFBA5C026A9F7DA41C1B308F5A /* Optional.h */; settings = {ATTRIBUTES = (Project, ); }; }; - BF5652FC75DEB65387D6A531F402A0D4 /* FIRCLSHandler.h in Headers */ = {isa = PBXBuildFile; fileRef = 43169030F1ECA77C243FA88624499E18 /* FIRCLSHandler.h */; settings = {ATTRIBUTES = (Project, ); }; }; - BF816AB4447CFFD40BFE770CC740F8B6 /* Likely.h in Headers */ = {isa = PBXBuildFile; fileRef = 0153F266157533ACE5EA59284B4E8922 /* Likely.h */; settings = {ATTRIBUTES = (Project, ); }; }; - BF99C118754DCAC57106804DA2B0F10A /* double-conversion.h in Headers */ = {isa = PBXBuildFile; fileRef = 45688CB7F4790EFA9F1BA88B21774843 /* double-conversion.h */; settings = {ATTRIBUTES = (Project, ); }; }; - BFAC2A31967D18362DE39231B68C71C0 /* SafeAreaManager.m in Sources */ = {isa = PBXBuildFile; fileRef = B46F85E40519FA5AB0A27F10596B9823 /* SafeAreaManager.m */; }; - BFAD310B725A5C5BA13A9CE769B4406B /* GlobalThreadPoolList.h in Headers */ = {isa = PBXBuildFile; fileRef = 7C6E28B05FDE1F1220AB6DE4481E0C48 /* GlobalThreadPoolList.h */; settings = {ATTRIBUTES = (Project, ); }; }; - BFBC129906C693DBA91C528843C87CF4 /* FIRCLSCodeMapping.m in Sources */ = {isa = PBXBuildFile; fileRef = C94A27A28BC851B411267E9F4705266D /* FIRCLSCodeMapping.m */; }; - BFCE2633AC63D06451B82D15550FE863 /* util-internal.h in Headers */ = {isa = PBXBuildFile; fileRef = EF9EDC6CDBDDC9EA7F72BB6CE3AF8C23 /* util-internal.h */; settings = {ATTRIBUTES = (Project, ); }; }; - BFD3F91EFE71F86F85736FC76F0931E5 /* RCTResizeMode.h in Headers */ = {isa = PBXBuildFile; fileRef = 0D260A02AF49F7EB75B4F755BE42C822 /* RCTResizeMode.h */; settings = {ATTRIBUTES = (Project, ); }; }; - BFE5D33FA497C1078345F79EA17476E5 /* REAAllTransitions.m in Sources */ = {isa = PBXBuildFile; fileRef = F16498BF973941A83EFADF8207428D45 /* REAAllTransitions.m */; }; - BFE76612EA1566B36EA5E570C88367F0 /* Pods-defaults-Rocket.Chat-umbrella.h in Headers */ = {isa = PBXBuildFile; fileRef = 9FF15DDF56C721A3A36BEBEC97A731D5 /* Pods-defaults-Rocket.Chat-umbrella.h */; settings = {ATTRIBUTES = (Project, ); }; }; - BFECB647E8A5B6D24DF0DD022EFF5C4F /* event.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 9F2555743479256A7A6B651E39603366 /* event.cpp */; settings = {COMPILER_FLAGS = "-fno-omit-frame-pointer -fexceptions -Wall -Werror -std=c++1y -fPIC -fno-objc-arc"; }; }; - BFEDE59416E380750A27049D2B666B3B /* RNCSafeAreaViewMode.m in Sources */ = {isa = PBXBuildFile; fileRef = 9D9709598D5DB757633AC6B35AA28861 /* RNCSafeAreaViewMode.m */; }; - C013E60B226CFB6918496978B17A0794 /* FIRCLSURLSessionDataTask.h in Headers */ = {isa = PBXBuildFile; fileRef = 7C0C072C906C75C8B707432DD2546F53 /* FIRCLSURLSessionDataTask.h */; settings = {ATTRIBUTES = (Project, ); }; }; - C01CF57D26F45814D82273CE3DBDC613 /* MicroLock.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 01FC364F6C6E3B591535A7FC19249754 /* MicroLock.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -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\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors"; }; }; - C020B7AA6210B61D38BE6D61E8872D1E /* FIRApp.m in Sources */ = {isa = PBXBuildFile; fileRef = 592DC2321A8788889B3D76D68D24B042 /* FIRApp.m */; }; - C029E26863B3C57950073AD8BF04163A /* RNFBCrashlyticsInitProvider.m in Sources */ = {isa = PBXBuildFile; fileRef = 7EF1B4B664E008E8F33B1CBE45A07A6F /* RNFBCrashlyticsInitProvider.m */; }; - C035DD39E1A7B709C3EA4B0B04A4558F /* cct.nanopb.c in Sources */ = {isa = PBXBuildFile; fileRef = E9F2CFBAAFD22F8C32D71F9E71BC5619 /* cct.nanopb.c */; }; - C0387547532533C56F624CBF18875631 /* dynamic.h in Headers */ = {isa = PBXBuildFile; fileRef = B868B6CA52D88A582EACBA25D7B6A530 /* dynamic.h */; settings = {ATTRIBUTES = (Project, ); }; }; - C03C41AB03FEA74D617CECEDBC2FB5D3 /* SysSyscall.h in Headers */ = {isa = PBXBuildFile; fileRef = 80840BAF96C12C2F4F42314F720FB483 /* SysSyscall.h */; settings = {ATTRIBUTES = (Project, ); }; }; - C03FDB5BD0BA11C8D88F8A1E82EE2733 /* SafeAreaSpacerViewManager.m in Sources */ = {isa = PBXBuildFile; fileRef = 9FA635843704EF8F520FAF3EEA7C13FB /* SafeAreaSpacerViewManager.m */; }; - C0494C79337EC8400F085386EFCEC26C /* FIRInstallationsSingleOperationPromiseCache.m in Sources */ = {isa = PBXBuildFile; fileRef = 487D1690697E71AB3608BBB1B971C59D /* FIRInstallationsSingleOperationPromiseCache.m */; }; - C04E744AF14D144E1D90678E2CCACD1E /* RCTReconnectingWebSocket.h in Headers */ = {isa = PBXBuildFile; fileRef = 9E28708E421A551C02DCD2DDE407CF2A /* RCTReconnectingWebSocket.h */; settings = {ATTRIBUTES = (Project, ); }; }; - C085F4A89DD1B12F07E9A72DD99F9358 /* Flipper-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 1139C8C34759E7654D2D541DBF65F60B /* Flipper-dummy.m */; }; - C087E4ADE4EBFE4CD26F1C47857ADE15 /* FIRCLSAllocate.c in Sources */ = {isa = PBXBuildFile; fileRef = 4F3909692D2EB196C7259A673D4E0BC7 /* FIRCLSAllocate.c */; }; - C08F8BD457CE8D7EA3488BCFE7B34EB8 /* BugsnagSystemState.h in Headers */ = {isa = PBXBuildFile; fileRef = C9BD5139DF22D21BF4CB4F97E6819226 /* BugsnagSystemState.h */; settings = {ATTRIBUTES = (Project, ); }; }; - C09D2A795632FF3661D7A2A9F4B9D33E /* MMKVStorage.h in Headers */ = {isa = PBXBuildFile; fileRef = B558A1DF0DF86EF02FB44FA2DBAE46B7 /* MMKVStorage.h */; settings = {ATTRIBUTES = (Project, ); }; }; - C0B76728A1CD3342EB4E66B93E233712 /* RCTFileReaderModule.h in Headers */ = {isa = PBXBuildFile; fileRef = 26870246B6A46B10CD4C9299DE8C3D25 /* RCTFileReaderModule.h */; settings = {ATTRIBUTES = (Project, ); }; }; - C0B8C5BD6789054006E1A25C4473561C /* REASetNode.m in Sources */ = {isa = PBXBuildFile; fileRef = D560D51D8AE4A5857AA12820C4EE5243 /* REASetNode.m */; }; - C0C189D972DCCFBE746A1C449F9650ED /* FlipperCppBridgingResponder.mm in Sources */ = {isa = PBXBuildFile; fileRef = 108C40B5CEAA44D87AFF2EFE6CE2ADFF /* FlipperCppBridgingResponder.mm */; settings = {COMPILER_FLAGS = "-DDEBUG=1 -DFLIPPER_OSS=1 -DFB_SONARKIT_ENABLED=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -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"; }; }; - C0D3909925CECE8527B23FFFF3CE3D46 /* GDTCORClock.m in Sources */ = {isa = PBXBuildFile; fileRef = 189DE0E4F9AFDB2E31C4C4257EE2E2BF /* GDTCORClock.m */; }; - C0D6679739C9A0F93BCA9B8766246421 /* lossless_mips_dsp_r2.c in Sources */ = {isa = PBXBuildFile; fileRef = 1426D4C7456CF932B66DD1B74A1CC592 /* lossless_mips_dsp_r2.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; - C0DD2D64498DD9D944EA6DD68F513E55 /* RCTUIImageViewAnimated.h in Headers */ = {isa = PBXBuildFile; fileRef = 6CD0239177EF8EE0D59AB9A4F5F3C1F4 /* RCTUIImageViewAnimated.h */; settings = {ATTRIBUTES = (Project, ); }; }; - C0EAB7F81C5DBB752E7A7A6287547EB9 /* ScheduledFrameProcessor.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 4290579F62D9CCDBE1FEE050E84B7F2C /* ScheduledFrameProcessor.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -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 -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors"; }; }; - C0ECD621AE5138605933B8C0EFD6D52B /* jsi-inl.h in Headers */ = {isa = PBXBuildFile; fileRef = 32C94E4DC8CC970EE989EA673AF074B6 /* jsi-inl.h */; settings = {ATTRIBUTES = (Project, ); }; }; - C0F09C80CA920E9A4B8C4B4E52DBE162 /* UIImage+WebP.h in Headers */ = {isa = PBXBuildFile; fileRef = AAEA2C6C59C3DCDBD6EC36A6FF34CCDB /* UIImage+WebP.h */; settings = {ATTRIBUTES = (Project, ); }; }; - C123F40DBFEC89D122E463D9E04781A7 /* FiberIOExecutor.h in Headers */ = {isa = PBXBuildFile; fileRef = 990A00178717052F257E58B288D15A84 /* FiberIOExecutor.h */; settings = {ATTRIBUTES = (Project, ); }; }; - C14B18A7EC253AAD89F84D382C12E6FC /* RCTConvert+FFFastImage.h in Headers */ = {isa = PBXBuildFile; fileRef = D34F0718894EB8BF26A6311E5213A124 /* RCTConvert+FFFastImage.h */; settings = {ATTRIBUTES = (Project, ); }; }; - C15CDAD20752647B75E3142709C89414 /* MethodCall.h in Headers */ = {isa = PBXBuildFile; fileRef = 8C1679586971637160054AD84FFF9389 /* MethodCall.h */; settings = {ATTRIBUTES = (Project, ); }; }; - C17DF4E10EDA251A28D14E0D2595D4F0 /* MMKVLog_Android.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 0B128A0B7CEFBBB191EF90420A0CCC0C /* MMKVLog_Android.cpp */; settings = {COMPILER_FLAGS = "-x objective-c++ -fno-objc-arc"; }; }; - C1835068B045C9D229AD59B8EEE34442 /* RWSpinLock.h in Headers */ = {isa = PBXBuildFile; fileRef = 8759EFD10AA0DA5C62FA058D4B47E9E9 /* RWSpinLock.h */; settings = {ATTRIBUTES = (Project, ); }; }; - C1AD23EAFCA7808C317A7CB7BF9046D9 /* RCTViewManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 3E9BC6BA0472A721C157966D72DC29E8 /* RCTViewManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; - C1BE8CB912D009C1F46C370E0445F88A /* SKApplicationDescriptor.h in Headers */ = {isa = PBXBuildFile; fileRef = 944C0D1EFE3AB1A70D936F9AB2715AC3 /* SKApplicationDescriptor.h */; settings = {ATTRIBUTES = (Project, ); }; }; - C1CEF38AAA3E585D09D4A4A027680D5A /* FIRAppInternal.h in Headers */ = {isa = PBXBuildFile; fileRef = 7343CA8A9C7528DFE57EC1F85F33C409 /* FIRAppInternal.h */; settings = {ATTRIBUTES = (Project, ); }; }; - C1F5B6C056D7E7B8A752E8F986E7EF6E /* MemoryIdler.h in Headers */ = {isa = PBXBuildFile; fileRef = CD6D627770512A04521700EC63B07BE2 /* MemoryIdler.h */; settings = {ATTRIBUTES = (Project, ); }; }; - C202B9AB7F9B4CEAFD1B1F2F2540DE8B /* ARTGroup.m in Sources */ = {isa = PBXBuildFile; fileRef = 4E6FD3789AE32FF2039C5FC657EAA0A4 /* ARTGroup.m */; }; - C23992AD3B76C2513FC792700ED6576F /* IOBuf.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 4F58D090ED485B4C0D8704E5502A8CCA /* 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"; }; }; - C2441B05A32F5CCC1A7DB2CBC81756FF /* AtomicRef.h in Headers */ = {isa = PBXBuildFile; fileRef = 39558BEC676CF0090DC6F863F28DCF08 /* AtomicRef.h */; settings = {ATTRIBUTES = (Project, ); }; }; - C25BD3B0B908A21A015ED5632EF26214 /* FlipperConnection.h in Headers */ = {isa = PBXBuildFile; fileRef = 7283439E2F42BB1F01D41FDBA247CAFE /* FlipperConnection.h */; settings = {ATTRIBUTES = (Project, ); }; }; - C25EE53FE53FC768EB023382FA5B9F23 /* ThreadName.cpp in Sources */ = {isa = PBXBuildFile; fileRef = B5841F5B83CE4B881DD2006D46B09497 /* ThreadName.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -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\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors"; }; }; - C26FB6F2F864B104FF3EE4A1F2E8AEF6 /* GlobalExecutor.h in Headers */ = {isa = PBXBuildFile; fileRef = 4836A09444BBA1E2ED8276289A682230 /* GlobalExecutor.h */; settings = {ATTRIBUTES = (Project, ); }; }; - C2A48E4D38C30AEC19ED20923D2B1310 /* SSLSessionImpl.h in Headers */ = {isa = PBXBuildFile; fileRef = 1336466C47E2463B99D3F5FB5F02507F /* SSLSessionImpl.h */; settings = {ATTRIBUTES = (Project, ); }; }; - C2A9A93881649082F6BC3B439811FD4D /* AsyncTrace.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 279EF3E4CDD5ED4115C487922F3CCA98 /* 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"; }; }; - C2BA117A9770B59539D70AC8CF0B3919 /* Bits.h in Headers */ = {isa = PBXBuildFile; fileRef = 0A466DFCCBBD36B9700AC88D7B170FE2 /* Bits.h */; settings = {ATTRIBUTES = (Project, ); }; }; - C2BA80FAE37E31948F0DF31B11EF0C61 /* ThreadPoolExecutor.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 4CED0991748193F85234B92043C467E6 /* ThreadPoolExecutor.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -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\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors"; }; }; - C2D371BCDE127B5878F0FF77DFCDDEF3 /* FIRCLSDwarfUnwindRegisters.h in Headers */ = {isa = PBXBuildFile; fileRef = EB719189CCE4314E49807A63718D917B /* FIRCLSDwarfUnwindRegisters.h */; settings = {ATTRIBUTES = (Project, ); }; }; - C2E005149D9E34D4CD8B3898F64A6557 /* RCTFont.h in Headers */ = {isa = PBXBuildFile; fileRef = 81191814B978606260CA5B4EC460E41E /* RCTFont.h */; settings = {ATTRIBUTES = (Project, ); }; }; - C2E529124A3E05FBCD4753DC5CAC5BDB /* Builtins.h in Headers */ = {isa = PBXBuildFile; fileRef = A4B11545965ABE6C7AB237B1765A88BC /* Builtins.h */; settings = {ATTRIBUTES = (Project, ); }; }; - C2F1D652887DB52DA555C2A06DECE80F /* FIRCLSDwarfExpressionMachine.h in Headers */ = {isa = PBXBuildFile; fileRef = FD1931A7004B7A0B8E31C246FAE641BB /* FIRCLSDwarfExpressionMachine.h */; settings = {ATTRIBUTES = (Project, ); }; }; - C2F7D57AEBD6F80C32C61B4B8808F394 /* InlineFunctionRef.h in Headers */ = {isa = PBXBuildFile; fileRef = 921B4C6825D843743335AA43D91F5D25 /* InlineFunctionRef.h */; settings = {ATTRIBUTES = (Project, ); }; }; - C3038ABE6CAFF664E7F866CF64C2981C /* Singleton-inl.h in Headers */ = {isa = PBXBuildFile; fileRef = F32DF292FF18701CD4296B0F2A789C71 /* Singleton-inl.h */; settings = {ATTRIBUTES = (Project, ); }; }; - C32C2D0AAAA70DD39C569CE01927CA2D /* FFFastImageSource.m in Sources */ = {isa = PBXBuildFile; fileRef = 340F84EFB61AC1E0D0E05C5702D390AE /* FFFastImageSource.m */; }; - C333CA1C76B724128394EB60F3035FD4 /* dsp.h in Headers */ = {isa = PBXBuildFile; fileRef = D4E5EA08053591079B41F2327DF440C6 /* dsp.h */; settings = {ATTRIBUTES = (Project, ); }; }; - C346B099F2CA0366B622C1C587648F56 /* FlipperInitConfig.h in Headers */ = {isa = PBXBuildFile; fileRef = 7D3A80EE210FFA27031327E4B6770689 /* FlipperInitConfig.h */; settings = {ATTRIBUTES = (Project, ); }; }; - C3512E455DD3243F4A667ED18E596E42 /* SpookyHashV2.h in Headers */ = {isa = PBXBuildFile; fileRef = C699DCC52925CA7072A737F15E0BA4DF /* SpookyHashV2.h */; settings = {ATTRIBUTES = (Project, ); }; }; - C3526B4559076B3A4B3E014D48676190 /* RNNotificationsStore.m in Sources */ = {isa = PBXBuildFile; fileRef = 26205161AA50954D082DD6F48826695F /* RNNotificationsStore.m */; }; - C352E931E9708460024B6A87B5A60EDA /* EXReactNativeUserNotificationCenterProxy.m in Sources */ = {isa = PBXBuildFile; fileRef = 952F961F3F5395DE74B427AED838B647 /* EXReactNativeUserNotificationCenterProxy.m */; }; - C3662E2AE7983EC94BDF96703E99BC9F /* NSTextStorage+FontScaling.m in Sources */ = {isa = PBXBuildFile; fileRef = 15565FCA1BC916623C1F71E4B5EDA377 /* NSTextStorage+FontScaling.m */; }; - C36B9283425F12ECC2050D75E1307C9F /* AtomicLinkedList.h in Headers */ = {isa = PBXBuildFile; fileRef = A767B1B3873B1AF05F2881B4DAC3C7F2 /* AtomicLinkedList.h */; settings = {ATTRIBUTES = (Project, ); }; }; - C36D239092F494BA227E1E009150FA44 /* fa-IR.lproj in Resources */ = {isa = PBXBuildFile; fileRef = 82654E144A90FED84B5D39EE71AF431F /* fa-IR.lproj */; }; - C36F2E30F11858A980A2B0AC4D51176F /* GULApplication.h in Headers */ = {isa = PBXBuildFile; fileRef = D2CB543418A0278B8EA4AF0B5E8165B1 /* GULApplication.h */; settings = {ATTRIBUTES = (Project, ); }; }; - C36F9D27CCEF65B13958231B7A8507DA /* RNFBRCTEventEmitter.h in Headers */ = {isa = PBXBuildFile; fileRef = BD56CEF8B6BCD247C23E4101C7DD84AC /* RNFBRCTEventEmitter.h */; settings = {ATTRIBUTES = (Project, ); }; }; - C391D6D135F86F6C014A27F72E5BF051 /* BSG_KSLogger.m in Sources */ = {isa = PBXBuildFile; fileRef = BBE9C3596335651D37543687ED4457F1 /* BSG_KSLogger.m */; }; - C39C5C5F077C288B8E7969B9469E6FDD /* FBLPromise+Any.m in Sources */ = {isa = PBXBuildFile; fileRef = FD05E41D3DBD6CEB5FA70823CF4C4329 /* FBLPromise+Any.m */; }; - C3CC5C2D318326E54F2BCE9CCC8D7D91 /* EventBaseManager.cpp in Sources */ = {isa = PBXBuildFile; fileRef = A18608C4217F3EFA8C0D2A878CF092C2 /* 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"; }; }; - C3D4AA82F90AD3E88C29B68BB710A6E3 /* TOCropToolbar.h in Headers */ = {isa = PBXBuildFile; fileRef = 5ED1781E466357A234FAA7C7480F39C7 /* TOCropToolbar.h */; settings = {ATTRIBUTES = (Project, ); }; }; - C3D701FECC2A441C37B153E09D524DC0 /* AtomicHashArray.h in Headers */ = {isa = PBXBuildFile; fileRef = 094CBF061F9D96166BC5518B23A1D231 /* AtomicHashArray.h */; settings = {ATTRIBUTES = (Project, ); }; }; - C406FEEF31CF686493465384620506F8 /* FBVector.h in Headers */ = {isa = PBXBuildFile; fileRef = 73E2107DD4CEDAC8631E3F8D4AC29C87 /* FBVector.h */; settings = {ATTRIBUTES = (Project, ); }; }; - C40D96F3F09D91117D896EF643057452 /* openssl_aes_core.cpp in Sources */ = {isa = PBXBuildFile; fileRef = F46660C998520D7CE088FE9B174D1ED5 /* openssl_aes_core.cpp */; settings = {COMPILER_FLAGS = "-x objective-c++ -fno-objc-arc"; }; }; - C42DC65831F83CAF2411C9871984741D /* evutil.h in Headers */ = {isa = PBXBuildFile; fileRef = 7194150125DD93BA2E704772FCAE9146 /* evutil.h */; settings = {ATTRIBUTES = (Project, ); }; }; - C448184D7074A255FA942FAABF63BE3E /* FIRCLSDataCollectionToken.m in Sources */ = {isa = PBXBuildFile; fileRef = 4DDF6F91919BA6848F310D266B5EF1FB /* FIRCLSDataCollectionToken.m */; }; - C4578E50CF2B8BDF7FD4D24DB5366E0D /* ScopedEventBaseThread.h in Headers */ = {isa = PBXBuildFile; fileRef = 344D4B81A4B4C0FF7F5D353EC4EDC00A /* ScopedEventBaseThread.h */; settings = {ATTRIBUTES = (Project, ); }; }; - C46F05B3ED722664DFDBCE04571A60DC /* RCTHmac.m in Sources */ = {isa = PBXBuildFile; fileRef = 519F01F1D80CFDFC7A49BCA212123ABB /* RCTHmac.m */; }; - C4874BB8745D0F5C2CAB6CCD454A21B6 /* AtomicNotification-inl.h in Headers */ = {isa = PBXBuildFile; fileRef = 614730BC9C015864F40F7F79D3DA1546 /* AtomicNotification-inl.h */; settings = {ATTRIBUTES = (Project, ); }; }; - C4875AFE3E0E6ADCCD55A92826E4D0E6 /* kqueue-internal.h in Headers */ = {isa = PBXBuildFile; fileRef = 4F27E3FDA8B6F4EE4FE0EA2B5D213B03 /* kqueue-internal.h */; settings = {ATTRIBUTES = (Project, ); }; }; - C48D2F9E3CEBF11D9A51339919A361F7 /* OpenSSL.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 134DA3EF0958741484AC765F914EC417 /* OpenSSL.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -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\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors"; }; }; - C4C03E773E3F2039EDD4608040AE1A16 /* Baton.h in Headers */ = {isa = PBXBuildFile; fileRef = 37BED821BCAC65D707441E38B19A810D /* Baton.h */; settings = {ATTRIBUTES = (Project, ); }; }; - C4D8D303C627D8C88E7EFDED3136DB7B /* GDTCORRegistrar.m in Sources */ = {isa = PBXBuildFile; fileRef = 482C6BFEBA32EB9077DAFBC6513FFC1D /* GDTCORRegistrar.m */; }; - C4EC8520030171572ACEBEDC3F411692 /* SpookyHashV1.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 29DF24F2AEDFDE6DADBA573079529B6B /* SpookyHashV1.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -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\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors"; }; }; - C510A95FDA87CDF78A5818FE2557E543 /* RCTTextTransform.h in Headers */ = {isa = PBXBuildFile; fileRef = 6471F18D06F32C511636C48B2D479CCC /* RCTTextTransform.h */; settings = {ATTRIBUTES = (Project, ); }; }; - C51547B8E83E413BD853C0992A778242 /* fi.lproj in Resources */ = {isa = PBXBuildFile; fileRef = 8731BAC61933E776D4154A97D7F4D917 /* fi.lproj */; }; - C5180F74035A4324B3B91F835CBD9C4B /* Uri.h in Headers */ = {isa = PBXBuildFile; fileRef = 42C85A45524DE2BA8DD6A46943FFF9E1 /* Uri.h */; settings = {ATTRIBUTES = (Project, ); }; }; - C52C91728A295B9C27A0BE06655C1356 /* pb_encode.h in Headers */ = {isa = PBXBuildFile; fileRef = 0F73A7482432ABE08919D16E9DCE3ADC /* pb_encode.h */; settings = {ATTRIBUTES = (Project, ); }; }; - C54300E7D1A20676479781630519CA52 /* ARTNode.m in Sources */ = {isa = PBXBuildFile; fileRef = 5C7493E37DFFDB0A29EA930EBD0F25C2 /* ARTNode.m */; }; - C55EE5DD5BAA32F483004324C2B7671E /* Traits.h in Headers */ = {isa = PBXBuildFile; fileRef = EAF8ACC31CCAED2FF89273D035C7A486 /* Traits.h */; settings = {ATTRIBUTES = (Project, ); }; }; - C564CA1C948A4164A7FDE6A21A6CE060 /* RCTSurfaceView.h in Headers */ = {isa = PBXBuildFile; fileRef = C761D7AE50CD6FB34E193946254D6163 /* RCTSurfaceView.h */; settings = {ATTRIBUTES = (Project, ); }; }; - C56A64527F4D082866908640566D58C6 /* StringKeyedUnorderedSet.h in Headers */ = {isa = PBXBuildFile; fileRef = ECDC3BE6EAC7A6FAD7234E57E15E0496 /* StringKeyedUnorderedSet.h */; settings = {ATTRIBUTES = (Project, ); }; }; - C56C88C4EF0ADD5B7799CB8F250F2CBC /* RCTInspectorPackagerConnection.m in Sources */ = {isa = PBXBuildFile; fileRef = F47828A6ACE63FA46BE094630CED9783 /* RCTInspectorPackagerConnection.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - C579D78A093916EDC93710ECD7155D17 /* MemoryFile_Win32.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 6E1E0315F092C2654B08337CEF9B874D /* MemoryFile_Win32.cpp */; settings = {COMPILER_FLAGS = "-x objective-c++ -fno-objc-arc"; }; }; - C586D634D95E7C695024F7E565F686C5 /* RCTAccessibilityManager.mm in Sources */ = {isa = PBXBuildFile; fileRef = 708F4376C358D7131052A82B9135C4A6 /* 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"; }; }; - C5E6305E57CB33EF0A786E636755F86E /* HazptrThreadPoolExecutor.h in Headers */ = {isa = PBXBuildFile; fileRef = 03749A1A62575AF10C8C927110589F8D /* HazptrThreadPoolExecutor.h */; settings = {ATTRIBUTES = (Project, ); }; }; - C5E7721E5278C44044B620EA795E05AC /* muxi.h in Headers */ = {isa = PBXBuildFile; fileRef = 0296DE86E440E4C1E3E73A957A6FA40E /* muxi.h */; settings = {ATTRIBUTES = (Project, ); }; }; - C5F1C24380ADC624375A88C28E32A692 /* Event.h in Headers */ = {isa = PBXBuildFile; fileRef = 80C0413E19A2DBCC3F6918891B6DCA41 /* Event.h */; settings = {ATTRIBUTES = (Project, ); }; }; - C5FE71B6895178CA7BA0718E5D7A6E2F /* Ordering.h in Headers */ = {isa = PBXBuildFile; fileRef = 9388BB3EF820E441837B5478F65B29FC /* Ordering.h */; settings = {ATTRIBUTES = (Project, ); }; }; - C603C2ABD8116FEC72AD491A1E031FB6 /* CodedOutputData.h in Headers */ = {isa = PBXBuildFile; fileRef = 38E1632332F89B9EB75BFF0DB62BFA66 /* CodedOutputData.h */; settings = {ATTRIBUTES = (Project, ); }; }; - C61571D703CD4F1C642EE0DBB8115596 /* CppAttributes.h in Headers */ = {isa = PBXBuildFile; fileRef = 61FAF4CE050658BE2F201783FE487029 /* CppAttributes.h */; settings = {ATTRIBUTES = (Project, ); }; }; - C618C6F3031111905EFA16B7DB2507CF /* Stdlib.h in Headers */ = {isa = PBXBuildFile; fileRef = 759AE7B54AF92C3EFB888E9A1E4A49F9 /* Stdlib.h */; settings = {ATTRIBUTES = (Project, ); }; }; - C626BEBCAB1B039F085164B1E759495B /* SDWebImageDownloaderDecryptor.h in Headers */ = {isa = PBXBuildFile; fileRef = 99BC38F149A766A810843A66109219B8 /* SDWebImageDownloaderDecryptor.h */; settings = {ATTRIBUTES = (Project, ); }; }; - C628502E7671AF7DD973E0C886FA4D81 /* RCTTrackingAnimatedNode.m in Sources */ = {isa = PBXBuildFile; fileRef = 43D4CFD7E0C1B4DBC898DD936DB82101 /* 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"; }; }; - C654408A00FA87DE8365928FF35EB9A9 /* BugsnagEndpointConfiguration.m in Sources */ = {isa = PBXBuildFile; fileRef = B374D73EA1612B85750D61AE6F16271F /* BugsnagEndpointConfiguration.m */; }; - C6558249403AA8AAAE7A66D934535A3D /* EventHandler.h in Headers */ = {isa = PBXBuildFile; fileRef = 915614263E2FD7EFE2949E5B1BC80034 /* EventHandler.h */; settings = {ATTRIBUTES = (Project, ); }; }; - C656765D42B2A46EEFDFFC5BDE9C3A6F /* Likely.h in Headers */ = {isa = PBXBuildFile; fileRef = 7E7FEF0E48A56300697B528E63674E6A /* Likely.h */; settings = {ATTRIBUTES = (Project, ); }; }; - C694C902CB6B08D83BF780CD3242470A /* RNFBApp-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = FD122D95D3FA4E6535A1CA894145D057 /* RNFBApp-dummy.m */; }; - C69D732CBF9BD36348A06DC1B7E219AE /* SDAnimatedImageView.h in Headers */ = {isa = PBXBuildFile; fileRef = EE109F48562DC7EEFB22086F85702B57 /* SDAnimatedImageView.h */; settings = {ATTRIBUTES = (Project, ); }; }; - C6BD1291B903A8C016CFE78F28898570 /* Fcntl.h in Headers */ = {isa = PBXBuildFile; fileRef = 37A59588AB9E695C969A7A078928DA45 /* Fcntl.h */; settings = {ATTRIBUTES = (Project, ); }; }; - C6D877AC27DE164D09C71E13AD485D57 /* fr.lproj in Resources */ = {isa = PBXBuildFile; fileRef = 05FAE5D72DBDBDFEF33497FEB33A3454 /* fr.lproj */; }; - C6E11F383D9AEA2AE26AC331C44C62C4 /* UIImage+Resize.h in Headers */ = {isa = PBXBuildFile; fileRef = AF492A2FAAF74AC6ADAD5E79DCE6A08A /* UIImage+Resize.h */; settings = {ATTRIBUTES = (Project, ); }; }; - C6EB1C1A102CC2220F0925D864BD6978 /* SDImageCachesManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 523701F2861A9AF389FC2C6E43D86D49 /* SDImageCachesManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; - C6EB2487A325317FC7C079B1857B45A4 /* BugsnagHandledState.h in Headers */ = {isa = PBXBuildFile; fileRef = FF4FBD82B67BC08F0D6292D2D201F97D /* BugsnagHandledState.h */; settings = {ATTRIBUTES = (Project, ); }; }; - C6F4BA46AD7C80265340802E164930BE /* EXAppleAuthenticationRequest.m in Sources */ = {isa = PBXBuildFile; fileRef = 8448FB44BB6062AC013CFCC3DDC33FDD /* EXAppleAuthenticationRequest.m */; }; - C6F8F9EE91335E210D1EB79F6CF83C0D /* YGLayout.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 0D2CC58B4BCB1C4FF563AF13F3F12026 /* YGLayout.cpp */; settings = {COMPILER_FLAGS = "-fno-omit-frame-pointer -fexceptions -Wall -Werror -std=c++1y -fPIC -fno-objc-arc"; }; }; - C6FECF61DE6E81971764C4B0ECA900D5 /* RCTTextAttributes.m in Sources */ = {isa = PBXBuildFile; fileRef = 37E96A7AD6E875A29E6DCE288196CCA0 /* RCTTextAttributes.m */; }; - C70664E2F987CEEEE7E2B242C4FB1F8D /* FlipperDiagnosticsViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = 4A0DE597E4F93AA89C807FF6F46D7B65 /* FlipperDiagnosticsViewController.m */; settings = {COMPILER_FLAGS = "-DDEBUG=1 -DFLIPPER_OSS=1 -DFB_SONARKIT_ENABLED=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -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"; }; }; - C7067CD5CB8611FA35C12D47EF3C85FE /* crc32_armv8.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 67801958A02500B281EC81392CED35CE /* crc32_armv8.cpp */; settings = {COMPILER_FLAGS = "-x objective-c++ -fno-objc-arc"; }; }; - C70DA51A309ECBB13EBC57C271D30CCF /* glog-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = A9A235A975FFA925CF1A128115C1D9A2 /* glog-dummy.m */; }; - C71804C09B6FFDDDB87274633968E06F /* cached-powers.cc in Sources */ = {isa = PBXBuildFile; fileRef = 773CD67E1C5C5916902E835142CB8110 /* cached-powers.cc */; settings = {COMPILER_FLAGS = "-Wno-unreachable-code"; }; }; - C74CA2044C99BC7C2C412810E4966DB6 /* SKBufferingPlugin.h in Headers */ = {isa = PBXBuildFile; fileRef = BA6C0D4B6015D75E5E7148299643A578 /* SKBufferingPlugin.h */; settings = {ATTRIBUTES = (Project, ); }; }; - C751CB8EC8698564E9876BF59CC7CC25 /* EXAudioRecordingPermissionRequester.h in Headers */ = {isa = PBXBuildFile; fileRef = AA115C6C6F3591F70233C194A5D280DA /* EXAudioRecordingPermissionRequester.h */; settings = {ATTRIBUTES = (Project, ); }; }; - C7657C0ACEBF275180FC66F5D819862F /* react-native-safe-area-context-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 5CD4624DD0FCA9E92E21136ACCE7F269 /* react-native-safe-area-context-dummy.m */; }; - C76CFF4115D2E081E952EE6BF2989503 /* TimerFDTimeoutManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 761424EAD5660486653AC7FB3BFC141F /* TimerFDTimeoutManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; - C7912E805DDDEA5097A95753ADD42CD0 /* BugsnagCollections.m in Sources */ = {isa = PBXBuildFile; fileRef = ADC303935FF231B0CA9192400CD9661F /* BugsnagCollections.m */; }; - C799D50AF668B26893FFCA305D8833C6 /* react-native-netinfo-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 97EEA106B8FDE670E90842205BDC5135 /* react-native-netinfo-dummy.m */; }; - C79D3C861913BECF40F5A4EFCDE0E522 /* UMPermissionsMethodsDelegate.m in Sources */ = {isa = PBXBuildFile; fileRef = A353F7E086D2B4C0BCD3F3CF28DF872F /* UMPermissionsMethodsDelegate.m */; }; - C79DA87A08D4B20BB5BCE3EEB056EB35 /* AtomicUnorderedMapUtils.h in Headers */ = {isa = PBXBuildFile; fileRef = F308F629276CE5EA8D6AC34229F4156C /* AtomicUnorderedMapUtils.h */; settings = {ATTRIBUTES = (Project, ); }; }; - C7A4F66306C901380D5E82734D65BFCC /* RNFBMeta.m in Sources */ = {isa = PBXBuildFile; fileRef = 16D3F3AAD051C0568C7766CD69007D0A /* RNFBMeta.m */; }; - C7A8454E5AF2F4AE893EDD450EC30FF0 /* Fingerprint.cpp in Sources */ = {isa = PBXBuildFile; fileRef = AC33911EFC3CBBE0C2DBB62F33FEE78B /* Fingerprint.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -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\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors"; }; }; - C7AF7002CDF38300F56C322257D16E4E /* RCTNetworking.mm in Sources */ = {isa = PBXBuildFile; fileRef = A4B57CE6698F52AC38D62EEC7933FC7E /* 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"; }; }; - C7BF157D628A84C29ACDC5C41CB2D195 /* ExecutorWithPriority.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 54A5A7C199B2EF8C220DCFD279A36398 /* 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"; }; }; - C7C1574B8782249D7BA1D934090957F8 /* dwarf.h in Headers */ = {isa = PBXBuildFile; fileRef = 74B062219A682207723A6303E2CA31A6 /* dwarf.h */; settings = {ATTRIBUTES = (Project, ); }; }; - C7E766F4F82FADDE4BCDE8E6DF6ADB6D /* backward_references_cost_enc.c in Sources */ = {isa = PBXBuildFile; fileRef = 44CDC77F327D712E76506179E42099DA /* backward_references_cost_enc.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; - C7F308C78C338F122701BB6A918721FE /* FirebaseCoreInternal.h in Headers */ = {isa = PBXBuildFile; fileRef = 5029C3F1FAC79F19E9E6338F44DB533D /* FirebaseCoreInternal.h */; settings = {ATTRIBUTES = (Project, ); }; }; - C80F54D99C2A289E5258B468883E4ABD /* QueuedImmediateExecutor.h in Headers */ = {isa = PBXBuildFile; fileRef = B533344AF098D6D3E0A567188723B749 /* QueuedImmediateExecutor.h */; settings = {ATTRIBUTES = (Project, ); }; }; - C82AA31805A940547F8138D26E9CD549 /* EXFilePermissionModule.m in Sources */ = {isa = PBXBuildFile; fileRef = A9357393A4888576CA047A140A767760 /* EXFilePermissionModule.m */; }; - C82C3F004F3331A254FE01488C0CB011 /* picture_csp_enc.c in Sources */ = {isa = PBXBuildFile; fileRef = 9827822A10AE401C50A145D0783F598F /* picture_csp_enc.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; - C82EB4D749EA8DB61D3C0D6715FC06F3 /* FlowableObserveOnOperator.h in Headers */ = {isa = PBXBuildFile; fileRef = 7B11CBC013C592CAFFF90DDC74BBBEE3 /* FlowableObserveOnOperator.h */; settings = {ATTRIBUTES = (Project, ); }; }; - C84A2013A7C8788C1F6EE1194635FD71 /* cached-powers.h in Headers */ = {isa = PBXBuildFile; fileRef = 116B22E616273DE891DEFDE938A5D623 /* cached-powers.h */; settings = {ATTRIBUTES = (Project, ); }; }; - C851F91C454485DBA39BA50F76DAE48F /* InterProcessLock.h in Headers */ = {isa = PBXBuildFile; fileRef = C3DE00015B04BC59D5769982E8B2F861 /* InterProcessLock.h */; settings = {ATTRIBUTES = (Project, ); }; }; - C871BAE6DCFE636B9F7FD7C7DF0E43C9 /* RCTInterpolationAnimatedNode.h in Headers */ = {isa = PBXBuildFile; fileRef = DF924119346381ACE894F12EB6E0AF5E /* RCTInterpolationAnimatedNode.h */; settings = {ATTRIBUTES = (Project, ); }; }; - C877547EF57278560C6623670718DC5E /* YGEnums.h in Headers */ = {isa = PBXBuildFile; fileRef = BD92A024E058A1F1ACA50D8C9EA59838 /* YGEnums.h */; settings = {ATTRIBUTES = (Project, ); }; }; - C89897F473DA6D4E875D2025BDB8FC8F /* FIRCLSUserLogging.h in Headers */ = {isa = PBXBuildFile; fileRef = E2352E5FBE76E56B7B7BA6EF4F362CA4 /* FIRCLSUserLogging.h */; settings = {ATTRIBUTES = (Project, ); }; }; - C8A5CBB006E2DC0331B7AD53115A8B72 /* TOCropViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = FB1C906AA0D780C3960F0FCABF91285B /* TOCropViewController.m */; }; - C8E107F9EA155DCF846D2CC4796ACF23 /* IOVec.h in Headers */ = {isa = PBXBuildFile; fileRef = 3AF66D31DBF731A2EB5A4616B400EED2 /* IOVec.h */; settings = {ATTRIBUTES = (Project, ); }; }; - C8F768C639AF094247415FAA7DFEEA67 /* RCTFollyConvert.mm in Sources */ = {isa = PBXBuildFile; fileRef = BE6BA2C9AB3AF5A8930FB3A8745D4505 /* RCTFollyConvert.mm */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - C8FAE77DBB29DE8CFA5B0E79264BA50F /* FIRCLSURLSession_PrivateMethods.h in Headers */ = {isa = PBXBuildFile; fileRef = AC6ACF007CE014EF66FDD4CA87758D24 /* FIRCLSURLSession_PrivateMethods.h */; settings = {ATTRIBUTES = (Project, ); }; }; - C90063E06BC4D2C17D1A547337D1889D /* RCTFileReaderModule.mm in Sources */ = {isa = PBXBuildFile; fileRef = 1742A79C0C3E90899FB5F9FBA7D59CC0 /* 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"; }; }; - C9077969FC06CED405C91255F82B5E47 /* RCTScrollViewManager.m in Sources */ = {isa = PBXBuildFile; fileRef = 85DF6CE874D2DF49B49C7EEA5F4E7BD7 /* RCTScrollViewManager.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - C90AFF718E45E2616D23519AC26AD09A /* UMAppRecordInterface.h in Headers */ = {isa = PBXBuildFile; fileRef = 4C4AB3BD3F116A129775D8C459F218F9 /* UMAppRecordInterface.h */; settings = {ATTRIBUTES = (Project, ); }; }; - C9146A02C705D1F930D4F7A4F6EA2BAA /* BugsnagConfigSerializer.m in Sources */ = {isa = PBXBuildFile; fileRef = 4EA0D8520C977127B4CFE93E6E40CCE0 /* BugsnagConfigSerializer.m */; }; - C918B262B36820B5E0F08F9C3B048892 /* RNGestureHandlerManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 9B679B86B635682E764C49E591251FBD /* RNGestureHandlerManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; - C946491B429ADF2746E9B82FE02E1DA9 /* Indestructible.h in Headers */ = {isa = PBXBuildFile; fileRef = 37ED6C8E5748E3D977D1C2577627B96E /* Indestructible.h */; settings = {ATTRIBUTES = (Project, ); }; }; - C95C73195D66781C2965906E821593AF /* enc.c in Sources */ = {isa = PBXBuildFile; fileRef = 6699132F7FA7337ED210A2AEF692D1CD /* enc.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; - C9605C8430A5D8564D15A04ADC9566D4 /* UninitializedMemoryHacks.h in Headers */ = {isa = PBXBuildFile; fileRef = E9C8ED646C0773D3BB14C7CEA285BB54 /* UninitializedMemoryHacks.h */; settings = {ATTRIBUTES = (Project, ); }; }; - C96875B5DDBA407587AEE0D39BEFE2C0 /* InspectorInterfaces.h in Headers */ = {isa = PBXBuildFile; fileRef = F4158AE7E59BBE121CFE1EC34EF5D4B8 /* InspectorInterfaces.h */; settings = {ATTRIBUTES = (Project, ); }; }; - C96C23DD35B35085A98FAA492DD88019 /* CPUThreadPoolExecutor.h in Headers */ = {isa = PBXBuildFile; fileRef = 252927535F70E0F87C20A16C6B6C1BE1 /* CPUThreadPoolExecutor.h */; settings = {ATTRIBUTES = (Project, ); }; }; - C9747AC666B1A6CE845FA9468C46617E /* FIRErrorCode.h in Headers */ = {isa = PBXBuildFile; fileRef = 9DAEC44B30FD86D9A2F84B6E93CE9B64 /* FIRErrorCode.h */; settings = {ATTRIBUTES = (Project, ); }; }; - C9B171CD2F985BB6100973AC2085042D /* FIRCLSReportManager_Private.h in Headers */ = {isa = PBXBuildFile; fileRef = 17C0CD6ADA9BC193B0782803DC4943F7 /* FIRCLSReportManager_Private.h */; settings = {ATTRIBUTES = (Project, ); }; }; - C9B3319CB6BB4B73DE7650348A98AA88 /* CodingDetail.h in Headers */ = {isa = PBXBuildFile; fileRef = 9161C064CF73C4FE3FD901619FBA9101 /* CodingDetail.h */; settings = {ATTRIBUTES = (Project, ); }; }; - C9C8B73891305304B88FBF37BD8A1463 /* GULAppDelegateSwizzler_Private.h in Headers */ = {isa = PBXBuildFile; fileRef = 181AF9851716867B9D19B12D9C435955 /* GULAppDelegateSwizzler_Private.h */; settings = {ATTRIBUTES = (Project, ); }; }; - C9D678DE52EFAFAEA7D75268855D5BC0 /* RCTTextView.h in Headers */ = {isa = PBXBuildFile; fileRef = 6C42293110E4BFCD51D38CDFD8A3C674 /* RCTTextView.h */; settings = {ATTRIBUTES = (Project, ); }; }; - C9DA35E6875F7CA08B65CE508A400D9B /* mips_macro.h in Headers */ = {isa = PBXBuildFile; fileRef = E9EB53456EF9DFAB70B1BF7C11D270BC /* mips_macro.h */; settings = {ATTRIBUTES = (Project, ); }; }; - C9DB3F6776E8ED6731FC38B3F8CB8B80 /* jsi.h in Headers */ = {isa = PBXBuildFile; fileRef = C9BE03A9ED4C0B01D14B481322AEEF98 /* jsi.h */; settings = {ATTRIBUTES = (Project, ); }; }; - C9E59730EEF2DC8EAF2A569B46A51C29 /* neon.h in Headers */ = {isa = PBXBuildFile; fileRef = D844116E0E005795AB0B48CDE2A3E004 /* neon.h */; settings = {ATTRIBUTES = (Project, ); }; }; - C9EA62D21D56735F45703DF41D755994 /* SharedPromise-inl.h in Headers */ = {isa = PBXBuildFile; fileRef = 14451A0D609106DE62DD81E5F0B87427 /* SharedPromise-inl.h */; settings = {ATTRIBUTES = (Project, ); }; }; - C9EF7E847E879A6A606BE532188EF26F /* TimeoutManager.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 62AE8B9F5D600E833DBC71FCA6DD3A00 /* 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"; }; }; - CA151941369D6E7C1501824B9461475D /* color_cache_utils.c in Sources */ = {isa = PBXBuildFile; fileRef = 116093A73B32F5F786FD46E2F9307F24 /* color_cache_utils.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; - CA215C84F48DBB4875A89A8BDFC578E7 /* FirebaseCrashlytics.h in Headers */ = {isa = PBXBuildFile; fileRef = 2760A9D6AEC74F2005ED1B8F8B3AFCA9 /* FirebaseCrashlytics.h */; settings = {ATTRIBUTES = (Project, ); }; }; - CA240718EEF2AE9F8B429FCD8CB52C0B /* experiments-inl.h in Headers */ = {isa = PBXBuildFile; fileRef = 9D14E9A01BCC594A2A85D381466E888B /* experiments-inl.h */; settings = {ATTRIBUTES = (Project, ); }; }; - CA320FCF97D98AFBA7A1948E8188AE81 /* Rcu.h in Headers */ = {isa = PBXBuildFile; fileRef = F69B4FD77A2ECAB40F80D5B29BFC7385 /* Rcu.h */; settings = {ATTRIBUTES = (Project, ); }; }; - CA40EA20D735E45DBAE1C1563AEF5EC1 /* logging.h in Headers */ = {isa = PBXBuildFile; fileRef = 9572A0E17A29F17FD5B5BA89C0AB5DE0 /* logging.h */; settings = {ATTRIBUTES = (Project, ); }; }; - CA4BF0650049C0816C537A89740D27E3 /* FileUtil.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 63E1B74E561C965DABC1A328D38BBD67 /* 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 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_PTHREAD=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - CA55FD2F5BF2D01EDF0D2E4D1370BF7C /* RCTWebSocketModule.mm in Sources */ = {isa = PBXBuildFile; fileRef = 000055EB58F9954C08827947C49DEAA3 /* 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"; }; }; - CA6FCC4C5E3A724C6AF340E43C604318 /* SDImageIOAnimatedCoderInternal.h in Headers */ = {isa = PBXBuildFile; fileRef = BCFA9E7DF0704A04BDB7768D0ACCCCF0 /* SDImageIOAnimatedCoderInternal.h */; settings = {ATTRIBUTES = (Project, ); }; }; - CAA1D5E69DFF645CDB4B918BC511F924 /* utilities.cc in Sources */ = {isa = PBXBuildFile; fileRef = 350DD9B6FE8FD8B0CC9BC694C7DF881F /* utilities.cc */; settings = {COMPILER_FLAGS = "-Wno-shorten-64-to-32"; }; }; - CAB146FAC6468A8D16B74FCEABAE5013 /* UIView+Yoga.m in Sources */ = {isa = PBXBuildFile; fileRef = 4773ED3ABA888E69EA224359149F325D /* UIView+Yoga.m */; }; - CAD4AB3BDE57B4104B82BA05EEDB698A /* RCTErrorCustomizer.h in Headers */ = {isa = PBXBuildFile; fileRef = 3F8F686F684238FD8D654AA6C5D5B1DA /* RCTErrorCustomizer.h */; settings = {ATTRIBUTES = (Project, ); }; }; - CADB5A27752BEE26409B9BC2F040DA41 /* SDImageCache.h in Headers */ = {isa = PBXBuildFile; fileRef = 794E673F0C3BE71ED6B7DD19CAB7EB7B /* SDImageCache.h */; settings = {ATTRIBUTES = (Project, ); }; }; - CAE644D7DC0F3CC3A1A3326AD7F1991A /* SocketAddress.h in Headers */ = {isa = PBXBuildFile; fileRef = 3FB18B497B48508BD83F35E98B89335D /* SocketAddress.h */; settings = {ATTRIBUTES = (Project, ); }; }; - CAF3E80D9F68C3ED544BBBF1CD35C3C7 /* StreamThroughputMemory.cpp in Sources */ = {isa = PBXBuildFile; fileRef = DA377E3CB010F7FAD6550A7731DC2069 /* StreamThroughputMemory.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -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 -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors"; }; }; - CAFFC17E94ACA75D2EECDB6D7BA90684 /* RCTTypedModuleConstants.mm in Sources */ = {isa = PBXBuildFile; fileRef = 7AF194825F5D1BAADE276FBE93BA8106 /* RCTTypedModuleConstants.mm */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32"; }; }; - CB14643836801BA417C2F336D66E589C /* RCTAdditionAnimatedNode.h in Headers */ = {isa = PBXBuildFile; fileRef = 70D108EC355DF85A27E3C4DBC75DF773 /* RCTAdditionAnimatedNode.h */; settings = {ATTRIBUTES = (Project, ); }; }; - CB21F25297C33C46791DC1D290564FCF /* predictor_enc.c in Sources */ = {isa = PBXBuildFile; fileRef = E3E88B0CE350E5F46AB94F51A3084A92 /* predictor_enc.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; - CB508CC193CBEAD7FE7C1FEDF3911E98 /* dec_sse2.c in Sources */ = {isa = PBXBuildFile; fileRef = 463C40BF9D263B0F0FFCC31EBEE4F3DD /* dec_sse2.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; - CB520E5F2F0C61DD826B07B0C8279521 /* FrameProcessor.h in Headers */ = {isa = PBXBuildFile; fileRef = 16AB2D3191B6E98E712415EDA749A526 /* FrameProcessor.h */; settings = {ATTRIBUTES = (Project, ); }; }; - CB65070F7A8D8C6D2C6C72FA4C6C28E5 /* BugsnagSession.m in Sources */ = {isa = PBXBuildFile; fileRef = 0E3C403950789D25A935DB168DD8426B /* BugsnagSession.m */; }; - CB664A38E158F561D73C35981A9D3413 /* AsyncSocket.cpp in Sources */ = {isa = PBXBuildFile; fileRef = D96F714DCDDAD43778C9DE25AB46587B /* AsyncSocket.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -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\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors"; }; }; - CB7660AC037B89E2E575D95CB7D3C7EE /* raw_logging.h in Headers */ = {isa = PBXBuildFile; fileRef = 5A1D49F08EA04CD0332FF2CEDCE38B9E /* raw_logging.h */; settings = {ATTRIBUTES = (Project, ); }; }; - CBC0D7D83AC8DC707FC09ACB3A9FA910 /* Barrier.h in Headers */ = {isa = PBXBuildFile; fileRef = 58C6E7E33F256B29ECC94140A062E1F8 /* Barrier.h */; settings = {ATTRIBUTES = (Project, ); }; }; - CBCBD455CD0EB79AF0127230B36FC289 /* vp8li_dec.h in Headers */ = {isa = PBXBuildFile; fileRef = DB583B583C1BD1062181AF46E3326085 /* vp8li_dec.h */; settings = {ATTRIBUTES = (Project, ); }; }; - CBD6809F52257DFD2A9A398DC32C1B40 /* sorted_vector_types.h in Headers */ = {isa = PBXBuildFile; fileRef = 12899CF7B0A4C003456EED43A6AC7EAB /* sorted_vector_types.h */; settings = {ATTRIBUTES = (Project, ); }; }; - CBE16D2BBDA9C7A285BD7EB7F33EC804 /* rescaler_mips_dsp_r2.c in Sources */ = {isa = PBXBuildFile; fileRef = 452CC8CE14DB69F8B48468BE79829A20 /* rescaler_mips_dsp_r2.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; - CC21BDC9851642B380A4486829931AC4 /* RCTPackagerConnection.h in Headers */ = {isa = PBXBuildFile; fileRef = 26DD49E2C4934CD535EFBBAABC571FE2 /* RCTPackagerConnection.h */; settings = {ATTRIBUTES = (Project, ); }; }; - CC283DD0AD2A7B28AB323189E63F03E1 /* DiscriminatedPtr.h in Headers */ = {isa = PBXBuildFile; fileRef = 8EA8AD2545A0AD14865A826A89AF03BD /* DiscriminatedPtr.h */; settings = {ATTRIBUTES = (Project, ); }; }; - CC36D278983BC52DC73CCEB939A04CB9 /* FIRCLSSymbolicationOperation.m in Sources */ = {isa = PBXBuildFile; fileRef = 98D20082443CB51499254D58AA1B64FD /* FIRCLSSymbolicationOperation.m */; }; - CC3B88AB958F404688AE62BDA3A6C3A5 /* da-DK.lproj in Resources */ = {isa = PBXBuildFile; fileRef = F7B36E0655F52B09126B8CB05E74753E /* da-DK.lproj */; }; - CC61627241CDCD59428B70C9024D03E2 /* lossless_msa.c in Sources */ = {isa = PBXBuildFile; fileRef = DCA962ED9AF42D56D730366FF8D1B34F /* lossless_msa.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; - CC9EE1EA9BEAE99D7BC6F4D5AC0F445D /* Yoga.h in Headers */ = {isa = PBXBuildFile; fileRef = B21A11DD91D2D39B41DAC66618429CFE /* Yoga.h */; settings = {ATTRIBUTES = (Project, ); }; }; - CCABE8B4469A6526D2B920DFBC343B30 /* RequestResponseResponder.h in Headers */ = {isa = PBXBuildFile; fileRef = 7878CA8D54C4B07AC9493E905F05E20B /* RequestResponseResponder.h */; settings = {ATTRIBUTES = (Project, ); }; }; - CCBFCD926376358EA3F8C9CE60AD0690 /* NSBezierPath+SDRoundedCorners.m in Sources */ = {isa = PBXBuildFile; fileRef = 7878050845433B5C208F692C2F294BE2 /* NSBezierPath+SDRoundedCorners.m */; }; - CCC84C35A4690B73C0ECD674B60F4B11 /* RNCSafeAreaViewEdges.m in Sources */ = {isa = PBXBuildFile; fileRef = A6B53E018BB1410AE17A0898B3DB1F13 /* RNCSafeAreaViewEdges.m */; }; - CCD630CAA821C053BC16E2FFCF600165 /* SDWebImageCompat.m in Sources */ = {isa = PBXBuildFile; fileRef = 1D0B5D9A2C2A0FC990882F9357818AA7 /* SDWebImageCompat.m */; }; - CCE3AC1E9995394EED23A43954C1756C /* Assume.cpp in Sources */ = {isa = PBXBuildFile; fileRef = E5F7C4CFBBA3148E9239CEC7A806D43C /* 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"; }; }; - CCF14197FDD2C32ABD799E0CE8675E2E /* DeviceUID.h in Headers */ = {isa = PBXBuildFile; fileRef = 7CA405638D48DB19A0E0CFF3F8B4738F /* DeviceUID.h */; settings = {ATTRIBUTES = (Project, ); }; }; - CCF179687494CAF641F6DBDA486E39B9 /* FlipperKitCertificateProvider.h in Headers */ = {isa = PBXBuildFile; fileRef = D3747BB10FAC0DDEE8A101726C4278CA /* FlipperKitCertificateProvider.h */; settings = {ATTRIBUTES = (Project, ); }; }; - CCFA88517B1E1E998517D844FB53B076 /* YGConfig.h in Headers */ = {isa = PBXBuildFile; fileRef = E3BEF7877F768148E3E79A624A08A9FF /* YGConfig.h */; settings = {ATTRIBUTES = (Project, ); }; }; - CD13073FA6A65CF6B4E5496AB2E10B27 /* RCTScrollEvent.h in Headers */ = {isa = PBXBuildFile; fileRef = 91C32104C640587A2B646FD89013D4BF /* RCTScrollEvent.h */; settings = {ATTRIBUTES = (Project, ); }; }; - CD18D05EC7A3744FB5CB0A864892D1F9 /* LockFreeRingBuffer.h in Headers */ = {isa = PBXBuildFile; fileRef = CEE0941739C9D8C648BEE31B28E6BAB0 /* LockFreeRingBuffer.h */; settings = {ATTRIBUTES = (Project, ); }; }; - CD2D9BAD0026BA6D30BFA2A89C346B6C /* FIRInstallationsIIDTokenStore.h in Headers */ = {isa = PBXBuildFile; fileRef = D9BD28134A368C0AFA8B5E2C29BC4702 /* FIRInstallationsIIDTokenStore.h */; settings = {ATTRIBUTES = (Project, ); }; }; - CD3A30F730893D1F4841FD531134835A /* ScopedEventBaseThread.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 42E9A5F1D01E71AAEF7A1C0EE956D535 /* ScopedEventBaseThread.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -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\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors"; }; }; - CD4D62E1F9528311A4263EC567C7FE1D /* REATransformNode.m in Sources */ = {isa = PBXBuildFile; fileRef = E366B66C03DB791740DF2536692620C1 /* REATransformNode.m */; }; - CD538293A04683B38F16D55B9CF35F8C /* RSocketServer.h in Headers */ = {isa = PBXBuildFile; fileRef = FAD7A3F2CAE2409B8C2A9B0EE30BF275 /* RSocketServer.h */; settings = {ATTRIBUTES = (Project, ); }; }; - CD6AF50A5B8935155294A78A2118C81D /* double-conversion.cc in Sources */ = {isa = PBXBuildFile; fileRef = 54E3357E369C5F5A2A821A386ABF801A /* double-conversion.cc */; settings = {COMPILER_FLAGS = "-Wno-unreachable-code"; }; }; - CD85334FA3FB2C48BDDCFD5B7582A33A /* Subscription.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 3675C963C782F3ECF1D355995424942C /* Subscription.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -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 -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors"; }; }; - CD906EEB88C36C351AFB0F56A02B1366 /* PublisherBase.h in Headers */ = {isa = PBXBuildFile; fileRef = 211FA11436C5447F1240832819907A3B /* PublisherBase.h */; settings = {ATTRIBUTES = (Project, ); }; }; - CD99725614EF09BD6C2DE0E7B16332B9 /* RangeCommon.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 43BC01F6464C78A7AD978DBF451A3241 /* RangeCommon.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -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\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors"; }; }; - CDA2371D774ACA93CE19FF42E7153242 /* EnableSharedFromThis.h in Headers */ = {isa = PBXBuildFile; fileRef = D4228F768266D79383C00EDA869BA843 /* EnableSharedFromThis.h */; settings = {ATTRIBUTES = (Project, ); }; }; - CDA331C833BF7FDEFDED3067EA1790EF /* enc_sse41.c in Sources */ = {isa = PBXBuildFile; fileRef = CA9DB25258DD17465318AC4999B7F0F0 /* enc_sse41.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; - CDAFB2F61C2414EB9B05177D1C5983FA /* TurboCxxModule.h in Headers */ = {isa = PBXBuildFile; fileRef = E84CBA71F965032851FABF0DCEB5989E /* TurboCxxModule.h */; settings = {ATTRIBUTES = (Project, ); }; }; - CDBE4F53CF3FD78516D49F0BC0795396 /* PThread.cpp in Sources */ = {isa = PBXBuildFile; fileRef = CE71E32B1F316D819469B576AFFD0199 /* PThread.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -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\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors"; }; }; - CDC8CD8304521025E708103ECA714DBF /* Chrono.h in Headers */ = {isa = PBXBuildFile; fileRef = 7D4E753D377F1A7B0CEEECEF14FBDE54 /* Chrono.h */; settings = {ATTRIBUTES = (Project, ); }; }; - CDE9592C89D6616496AE868975DAA166 /* VirtualEventBase.h in Headers */ = {isa = PBXBuildFile; fileRef = AD234ACED22A090F331A623760C1DA2E /* VirtualEventBase.h */; settings = {ATTRIBUTES = (Project, ); }; }; - CDF8D44C2F9F90A60B89872332770571 /* MallctlHelper.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 4B72CF035DDDD520F1E8BB2BAC516F3B /* MallctlHelper.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -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\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors"; }; }; - CE09119F5E89BD9B7BBEAF10739BB37F /* RCTShadowView+Internal.h in Headers */ = {isa = PBXBuildFile; fileRef = 7C0A0A6CB3381FB125B7DB0B51F1D7DC /* RCTShadowView+Internal.h */; settings = {ATTRIBUTES = (Project, ); }; }; - CE2B3B182A9C3A9220DC7E1DA756810F /* Common.h in Headers */ = {isa = PBXBuildFile; fileRef = 80AB0B92F34862EBF7AAE62BCD3BFB2C /* Common.h */; settings = {ATTRIBUTES = (Project, ); }; }; - CE2CE42DF8B4E7774E166CA0D0185836 /* RNCMaskedView-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = E55D28053CED82024BBF5606B125B4AD /* RNCMaskedView-dummy.m */; }; - CE3DCB701721124C62283C4ADD022EE1 /* REAClockNodes.h in Headers */ = {isa = PBXBuildFile; fileRef = 867184BCA9B2D56CB73DAE176DC85425 /* REAClockNodes.h */; settings = {ATTRIBUTES = (Project, ); }; }; - CE4B52C51120C8BE3B053B0357A109BE /* EXSessionTaskDelegate.h in Headers */ = {isa = PBXBuildFile; fileRef = 09C6346F854CFF3D0E2B723676D88233 /* EXSessionTaskDelegate.h */; settings = {ATTRIBUTES = (Project, ); }; }; - CE5BBBC50EE983AD02227AA651A7CE08 /* RCTImageURLLoaderWithAttribution.h in Headers */ = {isa = PBXBuildFile; fileRef = 9A61FEF3F9A3004BC803F9B58AF3184B /* RCTImageURLLoaderWithAttribution.h */; settings = {ATTRIBUTES = (Project, ); }; }; - CE6C2C115033C2392F23079D5C9ED359 /* GDTCORUploader.h in Headers */ = {isa = PBXBuildFile; fileRef = 5F996B391DAE5F571B5F458C5A371768 /* GDTCORUploader.h */; settings = {ATTRIBUTES = (Project, ); }; }; - CE6F2163B7B0C45E141427CB6E333B82 /* signal.c in Sources */ = {isa = PBXBuildFile; fileRef = 19778043EF9C8D5381A4CDCD7EABD478 /* signal.c */; }; - CE710677CE3345C396654665122297A0 /* SKHighlightOverlay.h in Headers */ = {isa = PBXBuildFile; fileRef = 998986BB30812E936C369038CBD6799A /* SKHighlightOverlay.h */; settings = {ATTRIBUTES = (Project, ); }; }; - CE80A7D32D993EC9B26559195F7F4F26 /* AtomicUtils.h in Headers */ = {isa = PBXBuildFile; fileRef = F581E23D64DDD0F3D518E17717970CA0 /* AtomicUtils.h */; settings = {ATTRIBUTES = (Project, ); }; }; - CE975AA7DD86B64588E5307378BB41B1 /* RNCMaskedViewManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 739C26D6C8C0848BCEE6E33039D4CA57 /* RNCMaskedViewManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; - CE9F206E287A434B5255CBDBFD61798F /* Memory.h in Headers */ = {isa = PBXBuildFile; fileRef = BA30F381505351432375646265A3BE63 /* Memory.h */; settings = {ATTRIBUTES = (Project, ); }; }; - CEA334A548F00533CA7D6C97630A1361 /* UMSingletonModule.m in Sources */ = {isa = PBXBuildFile; fileRef = BF1A76C52BB358B20970029ABBCE6EB5 /* UMSingletonModule.m */; }; - CEB1E58162A49E2197F919AC89E691FF /* EXVideoThumbnails-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 467A1C2E44EBBD5913A8C578602C5AAE /* EXVideoThumbnails-dummy.m */; }; - CEB6202FE80A2AD4486BCF529B2352A8 /* ThreadLocalDetail.cpp in Sources */ = {isa = PBXBuildFile; fileRef = B017EE09913730740C6957C49A600CCC /* 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"; }; }; - CEC9AA9E45792542573CF4B0282DCC83 /* TLRefCount.h in Headers */ = {isa = PBXBuildFile; fileRef = C52D5EEE205E1F7DD0555001CB7F2C05 /* TLRefCount.h */; settings = {ATTRIBUTES = (Project, ); }; }; - CECAD9C08AC9E06EFB4EFF3228A1D74F /* MemoryResource.h in Headers */ = {isa = PBXBuildFile; fileRef = CF92CB2DC5E901A2117D9D01EE01BBBE /* MemoryResource.h */; settings = {ATTRIBUTES = (Project, ); }; }; - CED362515D3FA00D4CF4C576A0029C56 /* PriorityUnboundedBlockingQueue.h in Headers */ = {isa = PBXBuildFile; fileRef = C336B4D8990B6662D77B53EDCBDC9C6D /* PriorityUnboundedBlockingQueue.h */; settings = {ATTRIBUTES = (Project, ); }; }; - CEDC5C22EEC8745138C80BC61242BDC3 /* alpha_processing_sse41.c in Sources */ = {isa = PBXBuildFile; fileRef = D6CB014D6F64A3F8BA9B0124907F5578 /* alpha_processing_sse41.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; - CEE7978CF238C44FA9EED8927B72164E /* DestructorCheck.h in Headers */ = {isa = PBXBuildFile; fileRef = B3DC606F8383444756BD0A8665311ACC /* DestructorCheck.h */; settings = {ATTRIBUTES = (Project, ); }; }; - CEEEE8755AB696A190B0B8D14314E5A5 /* BSG_KSCrashType.c in Sources */ = {isa = PBXBuildFile; fileRef = 6BB250331658AE5163B01B81D50B014F /* BSG_KSCrashType.c */; }; - CEF7EB0FFE0CE09AF8937C1946D2D8CB /* AtFork.h in Headers */ = {isa = PBXBuildFile; fileRef = D03E0BDAF9B99DCFE7142FA24C3753B9 /* AtFork.h */; settings = {ATTRIBUTES = (Project, ); }; }; - CF089CD590B8378757174BA76641D10C /* RCTRootViewInternal.h in Headers */ = {isa = PBXBuildFile; fileRef = DC257BCEEAB24E409CAE1A8E70D2C27C /* RCTRootViewInternal.h */; settings = {ATTRIBUTES = (Project, ); }; }; - CF0E2747232F5A846554C68D23BA09D6 /* StaticSingletonManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 09F08A801E02AEB6C1E8F95750DFC75C /* StaticSingletonManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; - CF2226F7606A7188EA83A3592C4B1FAA /* NativeModule.h in Headers */ = {isa = PBXBuildFile; fileRef = DF5DAB21386A74C921BAC62E663D7583 /* NativeModule.h */; settings = {ATTRIBUTES = (Project, ); }; }; - CF370A828F7AA0767B77ABD35B3EBE37 /* event.c in Sources */ = {isa = PBXBuildFile; fileRef = 598202B7E8219B4266CB62E0A114604D /* event.c */; }; - CF3993166467D7999DCB674C42CDADBF /* ManualExecutor.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 66A3E0F59BFBF183C03632E2F93359A4 /* ManualExecutor.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -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\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors"; }; }; - CF46A2F93CDFE9DB77D7EF26ACC643C2 /* RCTAppearance.mm in Sources */ = {isa = PBXBuildFile; fileRef = C32591EEDE3377EF9F2D1BAFD2185D97 /* 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"; }; }; - CF59274ACA4E2644E5611797A10AF8FA /* Cast.h in Headers */ = {isa = PBXBuildFile; fileRef = C98E349E86046891AFC5FF8A087E9764 /* Cast.h */; settings = {ATTRIBUTES = (Project, ); }; }; - CF8905DB51A1A790C4044CC84CF6661E /* SKTapListenerImpl.m in Sources */ = {isa = PBXBuildFile; fileRef = D19A4CA590DD20503C9910C053E7E6EC /* SKTapListenerImpl.m */; settings = {COMPILER_FLAGS = "-DDEBUG=1 -DFLIPPER_OSS=1 -DFB_SONARKIT_ENABLED=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -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"; }; }; - CF8B47CC905105974FF7ACAE6FA8A302 /* FIRCLSOnboardingOperation.m in Sources */ = {isa = PBXBuildFile; fileRef = 441EAB302C099E80DE9A5B559150B9ED /* FIRCLSOnboardingOperation.m */; }; - CF9D6BE88091A67009ED603CF200C617 /* FIRHeartbeatInfo.m in Sources */ = {isa = PBXBuildFile; fileRef = 1A8F7FA2623FB4162CFFE9AC380521F2 /* FIRHeartbeatInfo.m */; }; - CFA9E0CDEB5E1E0ACBA68783BFCD46DC /* SDWebImageDownloaderResponseModifier.m in Sources */ = {isa = PBXBuildFile; fileRef = CAAEF98599CE9874378A568A022A2BC7 /* SDWebImageDownloaderResponseModifier.m */; }; - CFACDE4788C46861F0CEACE722EC0289 /* FIRCLSInstallIdentifierModel.h in Headers */ = {isa = PBXBuildFile; fileRef = 1AEEDE00F48399B38ECC97FB2A33A46A /* FIRCLSInstallIdentifierModel.h */; settings = {ATTRIBUTES = (Project, ); }; }; - CFB71CF502F8556C04CDBD00948319A0 /* File-inl.h in Headers */ = {isa = PBXBuildFile; fileRef = 182A4AD9ECC2018EF67F3EC8BF813BBD /* File-inl.h */; settings = {ATTRIBUTES = (Project, ); }; }; - CFC44134A09EF6B00F5A933A61E8EB00 /* GDTCORUploadPackage_Private.h in Headers */ = {isa = PBXBuildFile; fileRef = 8D721A4D99E3EBB65E1C7B97E9D78DA4 /* GDTCORUploadPackage_Private.h */; settings = {ATTRIBUTES = (Project, ); }; }; - CFD8C0C1E94C6D25D401F425ACCEC229 /* FlipperKitLayoutPlugin.mm in Sources */ = {isa = PBXBuildFile; fileRef = F3DD32D017B1DA9E161BB9E0F4188B94 /* FlipperKitLayoutPlugin.mm */; settings = {COMPILER_FLAGS = "-DDEBUG=1 -DFLIPPER_OSS=1 -DFB_SONARKIT_ENABLED=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -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"; }; }; - CFF1CD9585A08783617CCBE27165930E /* BugsnagClient.m in Sources */ = {isa = PBXBuildFile; fileRef = D30DBF5B6FCBC3771FC82D8F61B0DDE1 /* BugsnagClient.m */; }; - D0069E977045411B013D0ADD8CAFC48F /* RNFetchBlobFS.m in Sources */ = {isa = PBXBuildFile; fileRef = F1A2D374367175141CF15B034A500836 /* RNFetchBlobFS.m */; }; - D0097323F911AA507C33D0394B4A737B /* FIRCLSProcess.h in Headers */ = {isa = PBXBuildFile; fileRef = 52E1F69E1D0368EFA784C9D21D7DBD74 /* FIRCLSProcess.h */; settings = {ATTRIBUTES = (Project, ); }; }; - D024F7482C4086F306FA04A9F5B1F3F4 /* SDImageCodersManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 52707312B51286806012D175CCFF6E9E /* SDImageCodersManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; - D0436E60D6C2DDACADBBBDE556416C60 /* QBImagePickerController.m in Sources */ = {isa = PBXBuildFile; fileRef = 269B79E04D74D32BB3857DEFBC2B344E /* QBImagePickerController.m */; }; - D043B51DB08FE072B47051B436D37103 /* GULHeartbeatDateStorage.m in Sources */ = {isa = PBXBuildFile; fileRef = E815744FFA2710E1B7D0A4B6EED45E59 /* GULHeartbeatDateStorage.m */; }; - D05968B92AC18C1A9BA37F4C96B5649A /* SKRequestInfo.m in Sources */ = {isa = PBXBuildFile; fileRef = DB9FFA6AFE6BDC6D8DC0FE90FDB23935 /* SKRequestInfo.m */; settings = {COMPILER_FLAGS = "-DDEBUG=1 -DFLIPPER_OSS=1 -DFB_SONARKIT_ENABLED=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -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"; }; }; - D06DFFD00B69AF3A2D1EFF973DE6E084 /* BitVectorCoding.h in Headers */ = {isa = PBXBuildFile; fileRef = 5617917CB20E847E1CF7B0488DD757C5 /* BitVectorCoding.h */; settings = {ATTRIBUTES = (Project, ); }; }; - D0986605E0627CFF3EB4026422617121 /* RCTRootView.m in Sources */ = {isa = PBXBuildFile; fileRef = 8040A7E3C4F4E92E5B9FC6E74CD3B7B0 /* RCTRootView.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - D0AB34E28BFD9EB328F9B831521843F3 /* TypedIOBuf.h in Headers */ = {isa = PBXBuildFile; fileRef = 64C7DEA7D869F455672B981CDD297434 /* TypedIOBuf.h */; settings = {ATTRIBUTES = (Project, ); }; }; - D0DD0C14147CA8C77BA30A1B8F208588 /* FBLPromisePrivate.h in Headers */ = {isa = PBXBuildFile; fileRef = 59ED6F706C9D0F558FED09E373412B9C /* FBLPromisePrivate.h */; settings = {ATTRIBUTES = (Project, ); }; }; - D0E0C10F5F95F06BEC438F95275F3312 /* WaitOptions.h in Headers */ = {isa = PBXBuildFile; fileRef = D967B64E4416C42C87B408BA762B2AB4 /* WaitOptions.h */; settings = {ATTRIBUTES = (Project, ); }; }; - D0F7B2D66885EA0FA527E9FC5916DF84 /* EXKeepAwake.h in Headers */ = {isa = PBXBuildFile; fileRef = CEEE463F217CBE6145E587648B5C4980 /* EXKeepAwake.h */; settings = {ATTRIBUTES = (Project, ); }; }; - D13EF0014C8F8FA12C590F99457D9E70 /* FIRAValue.h in Headers */ = {isa = PBXBuildFile; fileRef = 6691DF0CB8F296A5B4193C56713D9084 /* FIRAValue.h */; settings = {ATTRIBUTES = (Project, ); }; }; - D157303F63B79D99F4E20DE11AF439B5 /* CacheLocality.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 167F8EE3DCF2AB9B35CD71207B01ED5C /* 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"; }; }; - D15946E73D70CB1841EB5B5F5BA8572C /* YGFloatOptional.h in Headers */ = {isa = PBXBuildFile; fileRef = 6CD2507059F1C896B0B80005FEC8F1CC /* YGFloatOptional.h */; settings = {ATTRIBUTES = (Project, ); }; }; - D159D4E11432836449A732BACDD0E057 /* QBSlomoIconView.h in Headers */ = {isa = PBXBuildFile; fileRef = BFEFAFEBF84E9FBD4F8AD032AB419A71 /* QBSlomoIconView.h */; settings = {ATTRIBUTES = (Project, ); }; }; - D182608FDFEC21E7230DFE29FA430907 /* RNPushKit.m in Sources */ = {isa = PBXBuildFile; fileRef = AF88246064A0F24D2BEA1AAA4535D82C /* RNPushKit.m */; }; - D1C31A83063B0A21CF36717D96EA3A21 /* SafeAreaSpacerViewLocalData.h in Headers */ = {isa = PBXBuildFile; fileRef = F328B6D74BBFF9B06C0F13B48B5952DA /* SafeAreaSpacerViewLocalData.h */; settings = {ATTRIBUTES = (Project, ); }; }; - D1E586071A86357590A2A4FBDE39BCEF /* Memory.h in Headers */ = {isa = PBXBuildFile; fileRef = 96137BB348C0ED1939CB13E295939E4C /* Memory.h */; settings = {ATTRIBUTES = (Project, ); }; }; - D1F3694BF15942027B96B7B51C44037E /* RCTImageUtils.m in Sources */ = {isa = PBXBuildFile; fileRef = 939CB389DABA0DEE02F6290050EF69F1 /* 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"; }; }; - D1F820E1B9CF092DE1DDB26D3B359259 /* MacAddress.h in Headers */ = {isa = PBXBuildFile; fileRef = B7554BFC029B0AB8A8E3D5C447DEA119 /* MacAddress.h */; settings = {ATTRIBUTES = (Project, ); }; }; - D208C88D025D7E970BB9010A96C747C1 /* fa.lproj in Resources */ = {isa = PBXBuildFile; fileRef = FE2D8D8C28338380E5C7F236E7D59928 /* fa.lproj */; }; - D2196EA9298C2730B852270880A3D2A3 /* AutoAttachUtils.cpp in Sources */ = {isa = PBXBuildFile; fileRef = C1D2B47E1C5431346888E77888673620 /* AutoAttachUtils.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - D227A3BB1C487095211B979FBDB76050 /* FLEXNetworkObserver.mm in Sources */ = {isa = PBXBuildFile; fileRef = B373A07D6A1D7A65054827E179FE0B52 /* FLEXNetworkObserver.mm */; settings = {COMPILER_FLAGS = "-DDEBUG=1 -DFLIPPER_OSS=1 -DFB_SONARKIT_ENABLED=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -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"; }; }; - D2307735353F2006466FDE9A67651D61 /* zh-Hans.lproj in Resources */ = {isa = PBXBuildFile; fileRef = C50601436C1024EC64C217FF43FAB96F /* zh-Hans.lproj */; }; - D2897D08B1DA43E504A3C24516E47151 /* Subscription.h in Headers */ = {isa = PBXBuildFile; fileRef = 2D874C0B29A25EF40764F5DBF1F06554 /* Subscription.h */; settings = {ATTRIBUTES = (Project, ); }; }; - D28CD09BFDFD2E5AC3DF534BA5C77D0A /* SKHiddenWindow.m in Sources */ = {isa = PBXBuildFile; fileRef = 8910ED61EA488A224272FCA22AD8C114 /* SKHiddenWindow.m */; settings = {COMPILER_FLAGS = "-DDEBUG=1 -DFLIPPER_OSS=1 -DFB_SONARKIT_ENABLED=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -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"; }; }; - D29760FAD4D69F06FF9A81876EFC1A2D /* RCTDevSettings.mm in Sources */ = {isa = PBXBuildFile; fileRef = 5ECE145F88E238B706A47CA042E7F8C0 /* 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"; }; }; - D2AAEC5DBFA46DDE544625396C250E62 /* UMModuleRegistryAdapter.m in Sources */ = {isa = PBXBuildFile; fileRef = EFD07F0983ABE92891B7D4414B44854B /* UMModuleRegistryAdapter.m */; }; - D2B3C29CBC3E151E266D33F83C27BDC6 /* BridgeNativeModulePerfLogger.cpp in Sources */ = {isa = PBXBuildFile; fileRef = DCE53D3A2A477839449B9C6C35566704 /* BridgeNativeModulePerfLogger.cpp */; }; - D2BA301327CE06F4657E997B1B814C4A /* FIRErrorCode.h in Headers */ = {isa = PBXBuildFile; fileRef = 9881046FDD9C36E6167F04A001FF345A /* FIRErrorCode.h */; settings = {ATTRIBUTES = (Project, ); }; }; - D2C18CE6DA881FC9208B52198C458A61 /* FBLPromise.m in Sources */ = {isa = PBXBuildFile; fileRef = DA6C6CDB3F61B53988510109BBA0ABDB /* FBLPromise.m */; }; - D2C6862CA0D2BE7734CB670D76F5F41D /* Utils.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 786DC84CE97474698A7E3B5134CC6EB1 /* Utils.cpp */; settings = {COMPILER_FLAGS = "-fno-omit-frame-pointer -fexceptions -Wall -Werror -std=c++1y -fPIC -fno-objc-arc"; }; }; - D2C6965AD9CC35C97016CC32EA67D671 /* RCTScrollViewManager.h in Headers */ = {isa = PBXBuildFile; fileRef = EE70FC63C3A4A9EC29E4C29EEEF55D45 /* RCTScrollViewManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; - D2CC01F33EC29210743242BD1913E7F7 /* FIRCLSProcessReportOperation.h in Headers */ = {isa = PBXBuildFile; fileRef = EC6B215909BFDC7A355DECAD3E931417 /* FIRCLSProcessReportOperation.h */; settings = {ATTRIBUTES = (Project, ); }; }; - D2E12B7DB0913B55C4CF2D24C1AE4B7A /* FBLPromise+Wrap.m in Sources */ = {isa = PBXBuildFile; fileRef = 95D457B73EC18B3EE005F27734E9C2EC /* FBLPromise+Wrap.m */; }; - D2E714CA017CA0D99284441DB9C445EA /* SanitizeLeak.h in Headers */ = {isa = PBXBuildFile; fileRef = 080AB2B7CB8699758B3D6C0D17453CBC /* SanitizeLeak.h */; settings = {ATTRIBUTES = (Project, ); }; }; - D3231E825E527E678ED877374F3A8D24 /* RCTPropsAnimatedNode.h in Headers */ = {isa = PBXBuildFile; fileRef = E759369F67438720C9E32980E6886097 /* RCTPropsAnimatedNode.h */; settings = {ATTRIBUTES = (Project, ); }; }; - D32AD22F447180DC0416C806572DD1BC /* FIRDependency.m in Sources */ = {isa = PBXBuildFile; fileRef = BD73AA891D62385187260FC9FAF1E975 /* FIRDependency.m */; }; - D35ACE0CEEF80562686C638C5DA76039 /* Executor.h in Headers */ = {isa = PBXBuildFile; fileRef = 30AF8D3CCB290A00C1F861CCCCE68A94 /* Executor.h */; settings = {ATTRIBUTES = (Project, ); }; }; - D35C269AED058F51D41E7E3310A0CC15 /* MicroSpinLock.h in Headers */ = {isa = PBXBuildFile; fileRef = 234F0314DE67CB4B3A250EF8DDD92405 /* MicroSpinLock.h */; settings = {ATTRIBUTES = (Project, ); }; }; - D36112C86BBBB1C82A9B4E0B61951F7D /* FIRDependency.h in Headers */ = {isa = PBXBuildFile; fileRef = 3165B7C50B8D93136632716AD3961A52 /* FIRDependency.h */; settings = {ATTRIBUTES = (Project, ); }; }; - D36CBFFEDA290CB706D0E0195ECAE5F6 /* format_constants.h in Headers */ = {isa = PBXBuildFile; fileRef = BAABEC84C45BD5093160DF0FDE106A1C /* format_constants.h */; settings = {ATTRIBUTES = (Project, ); }; }; - D372D81C9F919B230772EFF5A44BAF7B /* FIRCLSRecordApplication.m in Sources */ = {isa = PBXBuildFile; fileRef = 1AD786D1FFEBD9B081A0830735573F7E /* FIRCLSRecordApplication.m */; }; - D3751571D5412DDF07AD3924F2558FDA /* RNCAppearanceProvider.m in Sources */ = {isa = PBXBuildFile; fileRef = 2B4BC89835F0B426BA24544643826522 /* RNCAppearanceProvider.m */; }; - D386146023749E669569309813E8B5AF /* EXAppleAuthentication-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = C2CC138F3EBFE8E6414F78D511270704 /* EXAppleAuthentication-dummy.m */; }; - D39FCD8AD6F41BD4D52BC9BC3069712B /* FIRCLSDataCollectionArbiter.h in Headers */ = {isa = PBXBuildFile; fileRef = A462BE5BC8918B04994A88A4585974A6 /* FIRCLSDataCollectionArbiter.h */; settings = {ATTRIBUTES = (Project, ); }; }; - D3C9B0E55EDFD3B00CDE51CF4FEC5843 /* UIImageView+WebCache.m in Sources */ = {isa = PBXBuildFile; fileRef = E5DD2E4A3E1B76BAD034115D0188B153 /* UIImageView+WebCache.m */; }; - D3E5CA72D9FBC6571203CAC3C2F50D70 /* FIRLoggerLevel.h in Headers */ = {isa = PBXBuildFile; fileRef = 5B18306BC869E0A6F64DC3423EC37D63 /* FIRLoggerLevel.h */; settings = {ATTRIBUTES = (Project, ); }; }; - D3EE36FD52C27DA3FC46CDC4A1007EE2 /* RNSScreen.m in Sources */ = {isa = PBXBuildFile; fileRef = AB37EFF737ECCA2E5C39C1BB53DB1638 /* RNSScreen.m */; }; - D3F2A2007343CB68F1B43CD7359A7FED /* RCTWrapperViewController.h in Headers */ = {isa = PBXBuildFile; fileRef = 492C2F67A9C418ADE27FE61B3781B974 /* RCTWrapperViewController.h */; settings = {ATTRIBUTES = (Project, ); }; }; - D42F1F4E5EBE1986A2CB8A2C3D76706A /* RCTKeyboardObserver.h in Headers */ = {isa = PBXBuildFile; fileRef = 2C4686785AFDD41B0581622BD388B30E /* RCTKeyboardObserver.h */; settings = {ATTRIBUTES = (Project, ); }; }; - D430141FB77ACDCE8D23AA0CF9AB2496 /* BSGEventUploader.h in Headers */ = {isa = PBXBuildFile; fileRef = AB2B5D58205F45FDC1B97AF9658D4492 /* BSGEventUploader.h */; settings = {ATTRIBUTES = (Project, ); }; }; - D436A5EE1529A25F83A9CFE1B803E04D /* FIRCLSReportUploader.m in Sources */ = {isa = PBXBuildFile; fileRef = C21363F67760B2C4D800FA5E6E6B6A07 /* FIRCLSReportUploader.m */; }; - D445613AD4881CC441E92192D9EF211E /* GDTCCTPrioritizer.h in Headers */ = {isa = PBXBuildFile; fileRef = 2D86212C9EE02C3B1D98668EF11183C4 /* GDTCCTPrioritizer.h */; settings = {ATTRIBUTES = (Project, ); }; }; - D46643CE3FC304A26E3BFD6D55C7BC10 /* RNCPicker.m in Sources */ = {isa = PBXBuildFile; fileRef = 08383837DC6D5400661DBAEDFAC174C8 /* RNCPicker.m */; }; - D4897215571C3F50ACC5A323696E6BAC /* RCTImageBlurUtils.h in Headers */ = {isa = PBXBuildFile; fileRef = 87F3ACB4AF1829993FE242559CF76FCA /* RCTImageBlurUtils.h */; settings = {ATTRIBUTES = (Project, ); }; }; - D49264E31D0396BC7B225BD5A42DE88B /* LNAnimatorTemp.h in Headers */ = {isa = PBXBuildFile; fileRef = 992D41F7A137097278CF3EDB63F141AE /* LNAnimatorTemp.h */; settings = {ATTRIBUTES = (Project, ); }; }; - D4A2368768AF9A79E6798B8B6AC659DD /* RCTBundleURLProvider.h in Headers */ = {isa = PBXBuildFile; fileRef = DFBC3A559DA99D3C1938A7085FF679F6 /* RCTBundleURLProvider.h */; settings = {ATTRIBUTES = (Project, ); }; }; - D4B0113D7006C10EECE8D98AB9C402D4 /* SKSwizzle.h in Headers */ = {isa = PBXBuildFile; fileRef = 7581311455DB6CDA5EE85DCA93A6D7AC /* SKSwizzle.h */; settings = {ATTRIBUTES = (Project, ); }; }; - D4DFA298781F60CC6ACB3953617F78C7 /* FIRCLSURLSessionDownloadTask.m in Sources */ = {isa = PBXBuildFile; fileRef = AB3C3EBE83825F847588B9C5EFE94821 /* FIRCLSURLSessionDownloadTask.m */; }; - D500045B4F3FEA85B3CDE453BA7F6AAA /* StaticSingletonManager.h in Headers */ = {isa = PBXBuildFile; fileRef = E553F01BE30FCC53EB6EE5B3FA54B6B5 /* StaticSingletonManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; - D5080033449BA3D8EFC1FEEBC05DF097 /* GDTCORAssert.m in Sources */ = {isa = PBXBuildFile; fileRef = 1B1D16C4FA2EE254799289AADD10A332 /* GDTCORAssert.m */; }; - D51D97CC1C3D3A0CB163946FC25C5FA4 /* SocketFastOpen.h in Headers */ = {isa = PBXBuildFile; fileRef = 1EFAA1EC8ABC4B195F6D05DB2149CC0A /* SocketFastOpen.h */; settings = {ATTRIBUTES = (Project, ); }; }; - D52FB42711662B1E4BECDD8DC3A84AAA /* BugsnagReactNativeEmitter.h in Headers */ = {isa = PBXBuildFile; fileRef = 208FA81342E93D1EEFE65C0E4EF49F03 /* BugsnagReactNativeEmitter.h */; settings = {ATTRIBUTES = (Project, ); }; }; - D53F1CD39BA109B297DB22917B41C7AC /* RCTClipboard.h in Headers */ = {isa = PBXBuildFile; fileRef = 2361CE3F774C1F8B37B55A13CBBD1863 /* RCTClipboard.h */; settings = {ATTRIBUTES = (Project, ); }; }; - D5771A96DEDA22780A943A3205E9911E /* PropagateConst.h in Headers */ = {isa = PBXBuildFile; fileRef = 8F3EFD758F22BA8D07980A6B2CCC00D3 /* PropagateConst.h */; settings = {ATTRIBUTES = (Project, ); }; }; - D57AACE4DA19F9E8ED579B02426AED39 /* TOCropScrollView.m in Sources */ = {isa = PBXBuildFile; fileRef = B8BFDD279AF1CA07792F3710FF5DC905 /* TOCropScrollView.m */; }; - D57C62ADF8D8109993292B4D8CF6839D /* SerialExecutor.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 1EC50934E3A2BC5FF287395B8A34E26E /* SerialExecutor.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -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\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors"; }; }; - D5A5E45A6B3AE55F375F492CE662497C /* RCTTypedModuleConstants.h in Headers */ = {isa = PBXBuildFile; fileRef = 0B5104E51CBBF3CC7204A871489BF7FA /* RCTTypedModuleConstants.h */; settings = {ATTRIBUTES = (Project, ); }; }; - D5B239CA770C23F84A2E2CF134FC8BFF /* SysStat.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 38EEC9DFD8C2803A99DE518F66CAE9DD /* SysStat.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -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\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors"; }; }; - D5BB24CD4D82D48AE68984151DF21DA8 /* RNFetchBlobReqBuilder.m in Sources */ = {isa = PBXBuildFile; fileRef = DF395A5AE875959199CDB011ADB83A79 /* RNFetchBlobReqBuilder.m */; }; - D5EB92A602170EED10EDF074306EABD1 /* ARTShapeManager.m in Sources */ = {isa = PBXBuildFile; fileRef = C9A7663B51899E9286FE8EFD38D72255 /* ARTShapeManager.m */; }; - D5F055E6D09FB50DFC8C8803944C6797 /* FIRAppInternal.h in Headers */ = {isa = PBXBuildFile; fileRef = 72D64CBEA652505759A9A44431D4712A /* FIRAppInternal.h */; settings = {ATTRIBUTES = (Project, ); }; }; - D5F05C28E40410B6532F191DCFBCB88D /* RCTImageSource.h in Headers */ = {isa = PBXBuildFile; fileRef = 226310A8D5AB574DE177101E74A1DE17 /* RCTImageSource.h */; settings = {ATTRIBUTES = (Project, ); }; }; - D5F415B8677FEAC11CCE89E120FC6E7D /* NativeModulePerfLogger.h in Headers */ = {isa = PBXBuildFile; fileRef = 4D7771767C0A64A4CFEC135F4E46E7A1 /* NativeModulePerfLogger.h */; settings = {ATTRIBUTES = (Project, ); }; }; - D601647EED2BA32715513D94C6430635 /* Arena-inl.h in Headers */ = {isa = PBXBuildFile; fileRef = FAE388C4C377F211302B9CBF05455030 /* Arena-inl.h */; settings = {ATTRIBUTES = (Project, ); }; }; - D619026D176024695BC48B605229A5CA /* IOThreadPoolExecutor.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 9AE40EC74114F2FFBD6CF82143D0C4A4 /* 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"; }; }; - D61F03C559E92884248EF73D7FFBF798 /* EXAVPlayerData.m in Sources */ = {isa = PBXBuildFile; fileRef = C7C2268BCC9BE5C1853C9EEE1432E4DB /* EXAVPlayerData.m */; }; - D62CEFC5FFE2D0D1E6A526806353A616 /* RNNativeViewHandler.h in Headers */ = {isa = PBXBuildFile; fileRef = FE3BF3728F1CB1F893F7BFC06E6505EC /* RNNativeViewHandler.h */; settings = {ATTRIBUTES = (Project, ); }; }; - D63727DCE35DE5DD0587FA1FD2B24E75 /* BSG_KSString.c in Sources */ = {isa = PBXBuildFile; fileRef = F426EC127A24804A5AF0A94BBCFFD9E3 /* BSG_KSString.c */; }; - D6379F6D470211E5CA23A286FD7DECC4 /* MMKVMetaInfo.hpp in Headers */ = {isa = PBXBuildFile; fileRef = 76A8C67765DA89F084B107A64F614A08 /* MMKVMetaInfo.hpp */; settings = {ATTRIBUTES = (Project, ); }; }; - D639203BB1E71731E27F44A2B455D821 /* BugsnagStackframe+Private.h in Headers */ = {isa = PBXBuildFile; fileRef = C7A634C0809C6C8B3F48DAA06217C421 /* BugsnagStackframe+Private.h */; settings = {ATTRIBUTES = (Project, ); }; }; - D6417458F7CBA6609D7995D851BD4FB9 /* UMLogManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 92E81D540171FAD8E231E1AF4066DB6B /* UMLogManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; - D6588F6CE574B0985EF73B75894AA779 /* RCTSafeAreaShadowView.m in Sources */ = {isa = PBXBuildFile; fileRef = C546EB9A217A4633A47E8498CCE72DC9 /* RCTSafeAreaShadowView.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - D66730DAC3D36B39891FABD9BDCBB137 /* RNCMaskedViewManager.m in Sources */ = {isa = PBXBuildFile; fileRef = A5105BEB6D09F367043F57348917EBD3 /* RNCMaskedViewManager.m */; }; - D697AF9D7C3AA5965359BAF7F01CB8F3 /* BitIteratorDetail.h in Headers */ = {isa = PBXBuildFile; fileRef = B910507E6F3163603403C8E93367A32B /* BitIteratorDetail.h */; settings = {ATTRIBUTES = (Project, ); }; }; - D699743FF4AFA471649D7C40F6A197E2 /* GDTCORConsoleLogger.m in Sources */ = {isa = PBXBuildFile; fileRef = D77046677C44FB3A05A464AB21EAB128 /* GDTCORConsoleLogger.m */; }; - D6A4CB7D75E3E43A684491B7B4C0D44E /* project.pbxproj in Sources */ = {isa = PBXBuildFile; fileRef = C184B7335460D0CE1CA51D5B2D27A070 /* project.pbxproj */; }; - D6B1752A123903CB7F7336002C074DB6 /* Align.h in Headers */ = {isa = PBXBuildFile; fileRef = A8BE121CC2AC61A2582FB032C7E7D75D /* Align.h */; settings = {ATTRIBUTES = (Project, ); }; }; - D6B706DF527F79D46421A1AB781116DA /* Rsa.m in Sources */ = {isa = PBXBuildFile; fileRef = 2A11218245C003EDA9A0CB086BF522E4 /* Rsa.m */; }; - D6CDDF35F148CC13038E00192E23F228 /* yuv_mips_dsp_r2.c in Sources */ = {isa = PBXBuildFile; fileRef = 8ACA5A3A6CD82F1DFA5BA81BA8BA4E2B /* yuv_mips_dsp_r2.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; - D6D72FF37F4A4847471FA94F09191175 /* RCTUITextView.h in Headers */ = {isa = PBXBuildFile; fileRef = C8644BEA899187C9860C8C5A4BCE9404 /* RCTUITextView.h */; settings = {ATTRIBUTES = (Project, ); }; }; - D6F133DEE22C4D0EE2BA65C1F5DB9ED9 /* BSG_KSLogger.h in Headers */ = {isa = PBXBuildFile; fileRef = 0EAC3F88A630AB3DF219B13A70581EEB /* BSG_KSLogger.h */; settings = {ATTRIBUTES = (Project, ); }; }; - D7064E936651DB1B199C98919E3DD50F /* SequencedExecutor.h in Headers */ = {isa = PBXBuildFile; fileRef = 80B008CA424CDE6C865EAD3147A8E58C /* SequencedExecutor.h */; settings = {ATTRIBUTES = (Project, ); }; }; - D719FD0D9C43804E35518A8345E76621 /* InterProcessLock_Win32.cpp in Sources */ = {isa = PBXBuildFile; fileRef = F857F1D4F6B0DA51D90C2E47D9113790 /* InterProcessLock_Win32.cpp */; settings = {COMPILER_FLAGS = "-x objective-c++ -fno-objc-arc"; }; }; - D71ADD949E5B71AA9A76AEC37C234894 /* SDImageWebPCoder.h in Headers */ = {isa = PBXBuildFile; fileRef = 655AB00308011B638B5EA2AA6AE30280 /* SDImageWebPCoder.h */; settings = {ATTRIBUTES = (Project, ); }; }; - D733A734F0541967B73273D3D8CFBF80 /* fast-dtoa.h in Headers */ = {isa = PBXBuildFile; fileRef = 4647C9AE1DB91B4C22C79A10ACFCDDC6 /* fast-dtoa.h */; settings = {ATTRIBUTES = (Project, ); }; }; - D73B7BC25E0A81E82E9A72BBFB787DDD /* Request.h in Headers */ = {isa = PBXBuildFile; fileRef = 9915685C01F70A36E07105E093943607 /* Request.h */; settings = {ATTRIBUTES = (Project, ); }; }; - D73DF66D11E2F433F4565EA01E85C62C /* RCTModuleMethod.mm in Sources */ = {isa = PBXBuildFile; fileRef = FA40170E5CE0A56BEF48BE0B6D7955AA /* RCTModuleMethod.mm */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - D74C449490F2547B3074E72651672C3C /* MessageConverters.h in Headers */ = {isa = PBXBuildFile; fileRef = F5851EAB8954DE15BC38C794A0139EA3 /* MessageConverters.h */; settings = {ATTRIBUTES = (Project, ); }; }; - D78258F296A9A39EBBDAD892C9BEFE1E /* muxinternal.c in Sources */ = {isa = PBXBuildFile; fileRef = 1C846DAFD37C35A25F692FCE7C6E93F9 /* muxinternal.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; - D78F88D509A69BC393D2D42308D3FE23 /* RCTTextShadowView.h in Headers */ = {isa = PBXBuildFile; fileRef = 73E46AB944E91B060A550C4C5605837C /* RCTTextShadowView.h */; settings = {ATTRIBUTES = (Project, ); }; }; - D7A68A1C097762915261A2A3B43306E3 /* ARTText.h in Headers */ = {isa = PBXBuildFile; fileRef = 00D7029CDF36815B074ED319C2F18BE3 /* ARTText.h */; settings = {ATTRIBUTES = (Project, ); }; }; - D7A7DAC5E6DDFA5D837FF09AF577F7B9 /* upsampling_sse2.c in Sources */ = {isa = PBXBuildFile; fileRef = 924EC671F2BB84B649EB05BB2E750512 /* upsampling_sse2.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; - D7B16A5FCA924A6B5753536F5BA2C70B /* PublisherBase.cpp in Sources */ = {isa = PBXBuildFile; fileRef = E72D1BAC77A444AB18BD08E79FF60128 /* PublisherBase.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -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 -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors"; }; }; - D7B9E25CD820E32E1A7169C913D64D26 /* SKResponseInfo.m in Sources */ = {isa = PBXBuildFile; fileRef = 069B7DCA8602CC04FFB29B10C5827D79 /* SKResponseInfo.m */; settings = {COMPILER_FLAGS = "-DDEBUG=1 -DFLIPPER_OSS=1 -DFB_SONARKIT_ENABLED=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -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"; }; }; - D7BDE86F5429FC91EC5AFE77B646263C /* ARTPattern.m in Sources */ = {isa = PBXBuildFile; fileRef = 9846051E8163DD05F07AEFC5926019F2 /* ARTPattern.m */; }; - D7CA9A41BEE6B7F1F33F91BEC2A2A6A4 /* Hash.h in Headers */ = {isa = PBXBuildFile; fileRef = B9B3872121E4529E8679F086AD34150F /* Hash.h */; settings = {ATTRIBUTES = (Project, ); }; }; - D7D3E4DF9F097B5C380A18F4D95B58DC /* UMViewManagerAdapterClassesRegistry.h in Headers */ = {isa = PBXBuildFile; fileRef = 16E471A27712CE9EB296524FB0C8DBB3 /* UMViewManagerAdapterClassesRegistry.h */; settings = {ATTRIBUTES = (Project, ); }; }; - D7D40BF7CADE1583366937B309F97F1F /* cost_enc.h in Headers */ = {isa = PBXBuildFile; fileRef = 9DAB026597DCEA620D82C5772AAF6B91 /* cost_enc.h */; settings = {ATTRIBUTES = (Project, ); }; }; - D7D4DEEE9049C83D3E986C0D603E0EB3 /* BSG_KSFileUtils.c in Sources */ = {isa = PBXBuildFile; fileRef = FA91F551FEA0B48AF49F7EDFF5C38E56 /* BSG_KSFileUtils.c */; }; - D82A6841B202F23715929FE0F4221F22 /* RNNotificationParser.h in Headers */ = {isa = PBXBuildFile; fileRef = 1B981C23504E6D05D84784151C16C344 /* RNNotificationParser.h */; settings = {ATTRIBUTES = (Project, ); }; }; - D82F397694B952F8BF294D1848C1B499 /* FlowableTimeoutOperator.h in Headers */ = {isa = PBXBuildFile; fileRef = 5FF6612843F3346BFEAF10A6DC11B13E /* FlowableTimeoutOperator.h */; settings = {ATTRIBUTES = (Project, ); }; }; - D84CC55B6501F56A726E04E5767D2901 /* String.cpp in Sources */ = {isa = PBXBuildFile; fileRef = A95B6FF5792E56C7262B028418ECB65D /* String.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -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\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors"; }; }; - D84E163D51C6027FF4ABFC25F29FE9F0 /* FFFastImageView.h in Headers */ = {isa = PBXBuildFile; fileRef = A7BE38DF3D2C4B8BFB184F5F4F3B0276 /* FFFastImageView.h */; settings = {ATTRIBUTES = (Project, ); }; }; - D8A40B9FDC860CC977827E0A51177CBC /* Flipper-RSocket-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 2E7C44F8E7F7F762E989594768FD709E /* Flipper-RSocket-dummy.m */; }; - D8AFFF6B833110971D9FF24ECBE9D53C /* FIRCLSFileManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 145B5155DFCA70A7E41B34A4765E2C92 /* FIRCLSFileManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; - D8B8414B0EEDB283573099875A60B927 /* SanitizeThread.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 8200BAC2C1DEC23C001DE5C895A8CC79 /* 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"; }; }; - D8D97FEE8590A66A86E60AED24888D48 /* RCTFont.mm in Sources */ = {isa = PBXBuildFile; fileRef = 7516BE3DA685CEDF74312C0C1CA78095 /* RCTFont.mm */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - D8DF1DD9A5F06AEFC5CE19ABD243C9AF /* RNFBAppModule.m in Sources */ = {isa = PBXBuildFile; fileRef = B98CDF7AE9D73022D3C6DAAA3A63DBE7 /* RNFBAppModule.m */; }; - D8EB44941D789C53931B41B40870ACA3 /* BugsnagApp.h in Headers */ = {isa = PBXBuildFile; fileRef = B8B04429ED933128C921E875024E3240 /* BugsnagApp.h */; settings = {ATTRIBUTES = (Project, ); }; }; - D8F73E92507A63E4729A5D0D2883C892 /* RCTCxxUtils.h in Headers */ = {isa = PBXBuildFile; fileRef = DA0A31425FD62D5681ABB35C58430178 /* RCTCxxUtils.h */; settings = {ATTRIBUTES = (Project, ); }; }; - D906CEAF253DA06916C5F4C4C0072313 /* Constexpr.h in Headers */ = {isa = PBXBuildFile; fileRef = 0AE90D932F5FFCC1DBCCA7B9D17A6B0C /* Constexpr.h */; settings = {ATTRIBUTES = (Project, ); }; }; - D913F93C31A0C37A068FEEE5952951FF /* LNInterpolable.h in Headers */ = {isa = PBXBuildFile; fileRef = A84D4EF51DA254BE4994B6F594A91701 /* LNInterpolable.h */; settings = {ATTRIBUTES = (Project, ); }; }; - D924EBBC6FC0EAA7CD07BCA4407045B4 /* FIRCLSSymbolResolver.m in Sources */ = {isa = PBXBuildFile; fileRef = FE8D16AF667A7D8A41E9D13981967F3B /* FIRCLSSymbolResolver.m */; }; - D92707BDC9E09F40EF5EF92F91137001 /* FIRCLSDefines.h in Headers */ = {isa = PBXBuildFile; fileRef = 70E5267514362AC438D2016BFB6782C3 /* FIRCLSDefines.h */; settings = {ATTRIBUTES = (Project, ); }; }; - D92C788B6791E1E36CF211895BB1F275 /* RCTPicker.m in Sources */ = {isa = PBXBuildFile; fileRef = 9EF4F1EDCD4553A3703C9FCDACB61264 /* RCTPicker.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - D92DF2B418F87CF4D9ED49621C1EAB78 /* DistributedMutex.cpp in Sources */ = {isa = PBXBuildFile; fileRef = AC65BF4B9DD13A49749589F7DAC592CE /* 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"; }; }; - D933C1F78DB716F99CA801EAA8AEC422 /* StaticConst.h in Headers */ = {isa = PBXBuildFile; fileRef = F1CC8DA0187F606BF5BF0A4A91CC75AB /* StaticConst.h */; settings = {ATTRIBUTES = (Project, ); }; }; - D93AC3A2690A202A9C45D9C1DA332413 /* SKMacros.h in Headers */ = {isa = PBXBuildFile; fileRef = 153D793297698FE9116592E393746B99 /* SKMacros.h */; settings = {ATTRIBUTES = (Project, ); }; }; - D94DE5C6E9898C501FA251E8465C01A4 /* Launder.h in Headers */ = {isa = PBXBuildFile; fileRef = 48D3CB40A59D83C6E945D88CC2CC0214 /* Launder.h */; settings = {ATTRIBUTES = (Project, ); }; }; - D95040C0CF3CAC10FF5AEA99C35E1E58 /* SDWebImageError.m in Sources */ = {isa = PBXBuildFile; fileRef = 34D668980C096A561A31A2EB2F6A66BC /* SDWebImageError.m */; }; - D972F5EC4D1CE557AB25C327414C72B1 /* YGConfig.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 60048274722CA6F80CC4A99152E981E4 /* YGConfig.cpp */; settings = {COMPILER_FLAGS = "-fno-omit-frame-pointer -fexceptions -Wall -Werror -std=c++1y -fPIC -fno-objc-arc"; }; }; - D9738A5D5063C4AAD2E2DCA6BBBEA999 /* F14Set-fwd.h in Headers */ = {isa = PBXBuildFile; fileRef = 69B07D62B4420F1F79859BE4CEBE6317 /* F14Set-fwd.h */; settings = {ATTRIBUTES = (Project, ); }; }; - D9816DA79E4A89D012EDC77D599C79CD /* FIRCLSHost.m in Sources */ = {isa = PBXBuildFile; fileRef = DD7A1D12AC47F0A2F9DB230C5B19CCA8 /* FIRCLSHost.m */; }; - D98D5E0F70D655730F87FDEF7277F9B0 /* REATransitionValues.m in Sources */ = {isa = PBXBuildFile; fileRef = 225B31F9882865796B3764AE575F14B9 /* REATransitionValues.m */; }; - D9979D4C0853054CCA71AB8B13AAE6D2 /* FingerprintPolynomial.h in Headers */ = {isa = PBXBuildFile; fileRef = 93F5D0BEA9EEDC395520623630745A92 /* FingerprintPolynomial.h */; settings = {ATTRIBUTES = (Project, ); }; }; - D997D811B799C6F563F7A549E2622A89 /* Singleton-inl.h in Headers */ = {isa = PBXBuildFile; fileRef = E0F792E72F8179297D7FA3C6EDE6C734 /* Singleton-inl.h */; settings = {ATTRIBUTES = (Project, ); }; }; - D9A221A4D8C2277FE9AADCDD1BA5CCBF /* RNNotificationCenterListener.h in Headers */ = {isa = PBXBuildFile; fileRef = 660AB5C7E94D9F3FEF94F33259865B5F /* RNNotificationCenterListener.h */; settings = {ATTRIBUTES = (Project, ); }; }; - D9A4B1CEC3F8F1E58D71FC63B7157A77 /* FramedDuplexConnection.cpp in Sources */ = {isa = PBXBuildFile; fileRef = DDC9FC6CAA3FE7456CC806F378220131 /* FramedDuplexConnection.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -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 -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors"; }; }; - D9AA422172FB18F295A44E0E50907FCF /* RCTJavaScriptLoader.mm in Sources */ = {isa = PBXBuildFile; fileRef = 68C9E6D3EB09E903470E81DBF85202E6 /* RCTJavaScriptLoader.mm */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - D9C007F8515910F392AE437FFFB668B7 /* FIRInstallationsHTTPError.h in Headers */ = {isa = PBXBuildFile; fileRef = 1CD4739532193BEA6F2B46CE2CAC3A2A /* FIRInstallationsHTTPError.h */; settings = {ATTRIBUTES = (Project, ); }; }; - D9D7640C312E4F5D10B045C66F25D16D /* RCTConvert+RNNotifications.m in Sources */ = {isa = PBXBuildFile; fileRef = ADC19C5F25BC45B39BBB809E36798BF8 /* RCTConvert+RNNotifications.m */; }; - D9DB265BD5ECBEB3A4CA1F30BF923A0E /* BSG_KSSystemInfo.m in Sources */ = {isa = PBXBuildFile; fileRef = 357963FAA9DC468CA01E17439E7FDD5D /* BSG_KSSystemInfo.m */; }; - D9DFBDF32AB87D1C4EB6859F8A76C74B /* RCTPerformanceLogger.m in Sources */ = {isa = PBXBuildFile; fileRef = 76DC70ECDB4F06A59740A2EF006983BE /* RCTPerformanceLogger.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - D9E55E55808083151D350DFE70673992 /* RCTParserUtils.h in Headers */ = {isa = PBXBuildFile; fileRef = C1E1432BBE969A04A27A1692A1197129 /* RCTParserUtils.h */; settings = {ATTRIBUTES = (Project, ); }; }; - D9E56CAFC3D3CA6E9278C409750D1D92 /* IPAddressV4.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 100412FA16CB816F8170F047DB52EF09 /* IPAddressV4.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -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\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors"; }; }; - D9E6889BE1390C1ADDD017DF60828CAA /* QBAlbumCell.m in Sources */ = {isa = PBXBuildFile; fileRef = B02D8D43A8E6786CF62BCF30E24A36D9 /* QBAlbumCell.m */; }; - D9E9C329BF597E2E428C2D675E8A86F5 /* RCTImageStoreManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 792FFD4B7461BB989E9DBD562EAB13A6 /* RCTImageStoreManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; - D9F50AD2C225F2BAFB37B63EE3342763 /* SDAssociatedObject.h in Headers */ = {isa = PBXBuildFile; fileRef = 0B4CE6901EC9E33F4A67CF767719781D /* SDAssociatedObject.h */; settings = {ATTRIBUTES = (Project, ); }; }; - DA0273ED3C6B6C8E35B2179344B3425E /* RSocket.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 552069D1E4D7D8A5F376A2B75A54636F /* RSocket.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -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 -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors"; }; }; - DA12577AE96A6BA6526A239AA272C315 /* FBDefines.h in Headers */ = {isa = PBXBuildFile; fileRef = 5CEEAEB3328E9D73020B5EB925D69D19 /* FBDefines.h */; settings = {ATTRIBUTES = (Project, ); }; }; - DA26A62676193E5AE666016857349688 /* FIRCLSConstants.h in Headers */ = {isa = PBXBuildFile; fileRef = 02A8C77EFD540D767BD0CD3496846B86 /* FIRCLSConstants.h */; settings = {ATTRIBUTES = (Project, ); }; }; - DA3A6D4B91E98084D3B36D771775F171 /* RCTConvert+Transform.h in Headers */ = {isa = PBXBuildFile; fileRef = 50CEE436DC02365678F6BE65F5CB4CA0 /* RCTConvert+Transform.h */; settings = {ATTRIBUTES = (Project, ); }; }; - DA5B234D2C7447805A850DD2CF2ACD7C /* FIRCLSApplicationIdentifierModel.h in Headers */ = {isa = PBXBuildFile; fileRef = 01609FC711059045DED41A7F851F5D95 /* FIRCLSApplicationIdentifierModel.h */; settings = {ATTRIBUTES = (Project, ); }; }; - DA5E041BEFF72C59C071D7258A59A8FB /* F14Set.h in Headers */ = {isa = PBXBuildFile; fileRef = 7DDD0E4D55A3F32EBF355204599D60A0 /* F14Set.h */; settings = {ATTRIBUTES = (Project, ); }; }; - DA91581A135FBD08725A415CD0ECDC13 /* RCTSegmentedControl.h in Headers */ = {isa = PBXBuildFile; fileRef = ED50B52E1E0AF213DCD66EE91D277AA9 /* RCTSegmentedControl.h */; settings = {ATTRIBUTES = (Project, ); }; }; - DA91A5760E369728340BAE8F57D0A9A8 /* rescaler.c in Sources */ = {isa = PBXBuildFile; fileRef = 7397E539A39B1BE430B7A86A3D7AA9B3 /* rescaler.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; - DA9AA176337618B6466E7F9E7EB803AB /* react-native-simple-crypto-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 86F6DE72AF784651FC53232D648747AE /* react-native-simple-crypto-dummy.m */; }; - DAA5228B008C0185D8C176AF7531098D /* NSBezierPath+SDRoundedCorners.h in Headers */ = {isa = PBXBuildFile; fileRef = 06ECDC5ED362821B60045388E5F81984 /* NSBezierPath+SDRoundedCorners.h */; settings = {ATTRIBUTES = (Project, ); }; }; - DAC5C94AF7AB1BA34AF6931A68C5EEA4 /* QueuedImmediateExecutor.cpp in Sources */ = {isa = PBXBuildFile; fileRef = D0F7ABFB07A02E065BC573837BB2AFFB /* QueuedImmediateExecutor.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -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\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors"; }; }; - DADF7CC02FCF98E38F97F37C36E88327 /* FIRCrashlytics.m in Sources */ = {isa = PBXBuildFile; fileRef = 7D62A205D7B6D909481AF0182C083272 /* FIRCrashlytics.m */; }; - DB1270F702F323E608761D625B2F42AC /* GULSwizzler.h in Headers */ = {isa = PBXBuildFile; fileRef = A1BF68D59DC67100D469927A60889975 /* GULSwizzler.h */; settings = {ATTRIBUTES = (Project, ); }; }; - DB24AFA9CF5BE1A91B8F5ECE5C2E31C2 /* FIRCLSUserLogging.m in Sources */ = {isa = PBXBuildFile; fileRef = BF6EEDE5D31E9583322CA71355AE74EB /* FIRCLSUserLogging.m */; }; - DB40E542043D4AC2BFCDC4174D8AE521 /* cost_mips32.c in Sources */ = {isa = PBXBuildFile; fileRef = DA6EA58A70A87346A369EECF66BD4BC8 /* cost_mips32.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; - DB429C6AD36DDC50FBE3D0D0196DA61D /* REATransitionAnimation.m in Sources */ = {isa = PBXBuildFile; fileRef = 32423B2579BF05539AC55667519D1939 /* REATransitionAnimation.m */; }; - DB5501D8315E2BCBB882A376AED5DAEB /* Pbkdf2.h in Headers */ = {isa = PBXBuildFile; fileRef = 8EACE304750D1CAA3FD4150AB0A736B1 /* Pbkdf2.h */; settings = {ATTRIBUTES = (Project, ); }; }; - DB7262BBB4F834F3A01B925C36904813 /* SDWebImageDownloader.h in Headers */ = {isa = PBXBuildFile; fileRef = 27AFB0003553227843B979313B68397D /* SDWebImageDownloader.h */; settings = {ATTRIBUTES = (Project, ); }; }; - DB7670CDFE36D5ABD929F278C60440DA /* OpenSSLThreading.h in Headers */ = {isa = PBXBuildFile; fileRef = 37920939AB5D980EE983073A8D803CDA /* OpenSSLThreading.h */; settings = {ATTRIBUTES = (Project, ); }; }; - DB7B67449561234FC6D01F91A37A14D9 /* String-inl.h in Headers */ = {isa = PBXBuildFile; fileRef = 83F37D98A00763F81E61FCC64732810A /* String-inl.h */; settings = {ATTRIBUTES = (Project, ); }; }; - DB8B3B153135F5ECF31EE1AB8F2E6DA7 /* Poly.h in Headers */ = {isa = PBXBuildFile; fileRef = C00EDB550A0E30C35EF12C0F95474382 /* Poly.h */; settings = {ATTRIBUTES = (Project, ); }; }; - DBB2F9754690951A904C68188C09ED2D /* REAJSCallNode.h in Headers */ = {isa = PBXBuildFile; fileRef = A40D35B3E223EE3A59C70211AF70DD57 /* REAJSCallNode.h */; settings = {ATTRIBUTES = (Project, ); }; }; - DBC6FACD2511EA706CC5B0A95F5DAD28 /* StaticConst.h in Headers */ = {isa = PBXBuildFile; fileRef = 4A04C5093939CC2837C05F0DF48DDCAA /* StaticConst.h */; settings = {ATTRIBUTES = (Project, ); }; }; - DBEA75B0AE2F043D833BACC0A562B65A /* HermesExecutorFactory.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 4D2FBE8FEFA4D8FD974BDC25702872C8 /* HermesExecutorFactory.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - DBF2434A96C2E42D1ACC6988DBB62BA7 /* RCTPackagerClient.h in Headers */ = {isa = PBXBuildFile; fileRef = 95C952DEB1AD9F4915CC2757BC264465 /* RCTPackagerClient.h */; settings = {ATTRIBUTES = (Project, ); }; }; - DC0803998AE54A4AB8530C7E5B4B513F /* FIRInstallationsErrors.h in Headers */ = {isa = PBXBuildFile; fileRef = 0799A00B1DC38572550D734432304845 /* FIRInstallationsErrors.h */; settings = {ATTRIBUTES = (Project, ); }; }; - DC0EB06A66F21984C2EB2E996098C5DF /* AsymmetricMemoryBarrier.cpp in Sources */ = {isa = PBXBuildFile; fileRef = A6697BFBED15299BCC3A039345ADA674 /* 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"; }; }; - DC23E3E8977BCBD29CEB5F71651AA6E1 /* FIRCLSThreadArrayOperation.h in Headers */ = {isa = PBXBuildFile; fileRef = A6B2FA02FE906EFA9535232DB0BAF5D0 /* FIRCLSThreadArrayOperation.h */; settings = {ATTRIBUTES = (Project, ); }; }; - DC2C1429201667273E0DDB3D64838FB0 /* MessageQueueThread.h in Headers */ = {isa = PBXBuildFile; fileRef = BF3037CDFDFCB0CB5E66960695EEF907 /* MessageQueueThread.h */; settings = {ATTRIBUTES = (Project, ); }; }; - DC41021FE286A094DCAC89B11B6E4B99 /* RCTFileRequestHandler.mm in Sources */ = {isa = PBXBuildFile; fileRef = 6F1A6CB5AD58A8B648B42C549671774B /* 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"; }; }; - DC4D5E9EB8940AF380BDFD5C67A8C252 /* PriorityUnboundedQueueSet.h in Headers */ = {isa = PBXBuildFile; fileRef = 8263CCFE9BAAD61D8DE661674A7EA03D /* PriorityUnboundedQueueSet.h */; settings = {ATTRIBUTES = (Project, ); }; }; - DC52B33D5A84CFEA074BFAA9C4B4EE3C /* SafeAssert.h in Headers */ = {isa = PBXBuildFile; fileRef = 733ED06FBC1F2020F12228873F997D20 /* SafeAssert.h */; settings = {ATTRIBUTES = (Project, ); }; }; - DC5381B47E4756E84E90722FA138338E /* epolltable-internal.h in Headers */ = {isa = PBXBuildFile; fileRef = 3DFA608104A26481888AF421986C11E4 /* epolltable-internal.h */; settings = {ATTRIBUTES = (Project, ); }; }; - DC6E6A1A98E8B24F39EA0D6181805A66 /* RCTGIFImageDecoder.mm in Sources */ = {isa = PBXBuildFile; fileRef = 8BEA84648DD179648D9C23A7512E5D32 /* 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"; }; }; - DC7C5DDFA528B734F5DD2CF9D567E2DB /* FIRLogger.h in Headers */ = {isa = PBXBuildFile; fileRef = 80313E41FC783BC7ACFB49F771393302 /* FIRLogger.h */; settings = {ATTRIBUTES = (Project, ); }; }; - DC7EA3F3EEA542ECA961CDACE2717DF6 /* FIRStackFrame.h in Headers */ = {isa = PBXBuildFile; fileRef = E84B304A0A3E5E63A9395D43DACFBEC1 /* FIRStackFrame.h */; settings = {ATTRIBUTES = (Project, ); }; }; - DCB4C62D443119ED8477FC9E8B8D97FC /* FIRCLSUserDefaults.m in Sources */ = {isa = PBXBuildFile; fileRef = C3266B4D8442BC0F9230B842A2B712B9 /* FIRCLSUserDefaults.m */; }; - DCB591F70D024C7AAC42AA36CCB49F25 /* FIRCLSDwarfExpressionMachine.c in Sources */ = {isa = PBXBuildFile; fileRef = CE30F05F7BDE8ECCE8129CA563DFC777 /* FIRCLSDwarfExpressionMachine.c */; }; - DCC3DA2DE9E5E380C04A72257BAAD392 /* UICollectionView+SKInvalidation.h in Headers */ = {isa = PBXBuildFile; fileRef = 25A3922725F2DB608224CDDA8A856D1A /* UICollectionView+SKInvalidation.h */; settings = {ATTRIBUTES = (Project, ); }; }; - DCC486E06B438F7952630278E1089691 /* FIRInstallations.h in Headers */ = {isa = PBXBuildFile; fileRef = 0B32040CFCC394F3ABA8903C6AD30C71 /* FIRInstallations.h */; settings = {ATTRIBUTES = (Project, ); }; }; - DCC4E9743FB4D744B3F776C28E2CA9BC /* Executor.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 472D02EEF0092AF824E9106FFB083347 /* Executor.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -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\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors"; }; }; - DCCA6EF3D161D03493D6CE42AE0C4725 /* HeterogeneousAccess.h in Headers */ = {isa = PBXBuildFile; fileRef = 4F54D13B31B2191DE26549C9CCCE60BB /* HeterogeneousAccess.h */; settings = {ATTRIBUTES = (Project, ); }; }; - DCE446F21BA7F3772780ACCD62C28739 /* quant_levels_dec_utils.c in Sources */ = {isa = PBXBuildFile; fileRef = 5E650516DB771BA1A51A67A821704DA4 /* quant_levels_dec_utils.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; - DCFA2E2EEE02F9B231D85A8D66D82089 /* GDTCORFlatFileStorage.h in Headers */ = {isa = PBXBuildFile; fileRef = A95381923A4483CA559F35A6430C2197 /* GDTCORFlatFileStorage.h */; settings = {ATTRIBUTES = (Project, ); }; }; - DD081433E41DE52CCBBAE3180F4101D5 /* BugsnagUser+Private.h in Headers */ = {isa = PBXBuildFile; fileRef = B50E418173626EB95A687FAA9F1361ED /* BugsnagUser+Private.h */; settings = {ATTRIBUTES = (Project, ); }; }; - DD169F5C2F1D754944D10F6145EAD5DC /* RCTSwitchManager.m in Sources */ = {isa = PBXBuildFile; fileRef = AFE9F1D8D32C245F4D11F96848D588CB /* RCTSwitchManager.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - DD2AA1140A7BD95979BE03E8D2686ACA /* FIRComponentType.h in Headers */ = {isa = PBXBuildFile; fileRef = BC06AD0CDFCDE2EBDF8C53D6CA3E097A /* FIRComponentType.h */; settings = {ATTRIBUTES = (Project, ); }; }; - DD3E6E1902E40CC6F8AA31C643F4C811 /* evbuffer-internal.h in Headers */ = {isa = PBXBuildFile; fileRef = D567A3C8BCF2DBFD5392F80573BD4FB4 /* evbuffer-internal.h */; settings = {ATTRIBUTES = (Project, ); }; }; - DD4F379A9919A17472C3446915D48F66 /* lossless_enc_mips_dsp_r2.c in Sources */ = {isa = PBXBuildFile; fileRef = 181BB8553F5626DBE6B2445592F321BF /* lossless_enc_mips_dsp_r2.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; - DD50E4101B1B9D10BE6E079AF19111E5 /* HermesExecutorFactory.h in Headers */ = {isa = PBXBuildFile; fileRef = D746FBE13B9C27EC693E1F439D3AB800 /* HermesExecutorFactory.h */; settings = {ATTRIBUTES = (Project, ); }; }; - DD5A91C88C50B6E345164EE16875FCD7 /* RCTTextViewManager.h in Headers */ = {isa = PBXBuildFile; fileRef = D3F24519187C0062D2335EF4A06B631F /* RCTTextViewManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; - DD5D2ABF03FE9935FB11BF0F64FE9638 /* BasicTransportCertificate.h in Headers */ = {isa = PBXBuildFile; fileRef = 95ADE5F1DC7D299FB47B126861411FA9 /* BasicTransportCertificate.h */; settings = {ATTRIBUTES = (Project, ); }; }; - DD6A7331C782135D32653E0BED52374D /* firebasecore.nanopb.h in Headers */ = {isa = PBXBuildFile; fileRef = 31F5A89B5ABCFC4ABDCC5D2DE0378269 /* firebasecore.nanopb.h */; settings = {ATTRIBUTES = (Project, ); }; }; - DD7FDFC771C3584A42A21F45609A0DF1 /* TimekeeperScheduledExecutor.h in Headers */ = {isa = PBXBuildFile; fileRef = A09076E9363084BD2F32C9CFAB0F4542 /* TimekeeperScheduledExecutor.h */; settings = {ATTRIBUTES = (Project, ); }; }; - DDB186BBB355BAE984A900B3699294F8 /* GULKeychainUtils.h in Headers */ = {isa = PBXBuildFile; fileRef = 14833B7595C20284FE302A11D245BE8D /* GULKeychainUtils.h */; settings = {ATTRIBUTES = (Project, ); }; }; - DDC59E287FF049BB667BB0B791D9BDF7 /* EventBaseManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 03AA07AD50C90033067A6D07CFA342DA /* EventBaseManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; - DDF6DFA184C997891626C5C3A47C257B /* FIRCLSFeatures.h in Headers */ = {isa = PBXBuildFile; fileRef = DD6E84E7343B2D60B6A59A0E7D041EEA /* FIRCLSFeatures.h */; settings = {ATTRIBUTES = (Project, ); }; }; - DDFBC3EFC013D9246025E07C6DACD3E7 /* SystraceSection.h in Headers */ = {isa = PBXBuildFile; fileRef = 533BF04B4077FA2D7C5F3204BADA4DAF /* SystraceSection.h */; settings = {ATTRIBUTES = (Project, ); }; }; - DDFF865D8D064E0B6075E1461369807B /* RequestResponseRequester.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 3F8B9DD0F5D0C01D1578E7363E4E1DC9 /* RequestResponseRequester.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -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 -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors"; }; }; - DE1C14D01E85896B387B87D2284F4AB3 /* FBString.h in Headers */ = {isa = PBXBuildFile; fileRef = C79056AE4E814424756A05CE2F5F997D /* FBString.h */; settings = {ATTRIBUTES = (Project, ); }; }; - DE2671A20D07FD176748B24C52A40828 /* CString.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 90358B946F0DAB2C5B52E737964E5B0B /* CString.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -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\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors"; }; }; - DE37170FE1DF4C4A49165D0441232C6D /* DistributedMutex.h in Headers */ = {isa = PBXBuildFile; fileRef = 2739ED4AC4CA3076A994D92159F6CF55 /* DistributedMutex.h */; settings = {ATTRIBUTES = (Project, ); }; }; - DE3B56D5420B33673E24DDF32E842FAC /* REANode.m in Sources */ = {isa = PBXBuildFile; fileRef = F42A2624F056C94D80F5503354B73FFC /* REANode.m */; }; - DE58086041812271F3833AC3559B3404 /* ScheduledSingleObserver.h in Headers */ = {isa = PBXBuildFile; fileRef = D90A516468223E4268E626853F28BA1E /* ScheduledSingleObserver.h */; settings = {ATTRIBUTES = (Project, ); }; }; - DE63DE9A38879C344A03A442684C8E4B /* Pods-ShareRocketChatRN-umbrella.h in Headers */ = {isa = PBXBuildFile; fileRef = BAED847E8A22919EDDB894F3B4C38BFF /* Pods-ShareRocketChatRN-umbrella.h */; settings = {ATTRIBUTES = (Project, ); }; }; - DE7817AE8DE28073A58E0980D75417D5 /* EventBase.h in Headers */ = {isa = PBXBuildFile; fileRef = 26785966E130F952CD8CB3ACCFD3A7D6 /* EventBase.h */; settings = {ATTRIBUTES = (Project, ); }; }; - DE7DC2A119709F925CFF7C472006F34D /* Unistd.h in Headers */ = {isa = PBXBuildFile; fileRef = B334C8C9484417B4553E4A2ADA7991EA /* Unistd.h */; settings = {ATTRIBUTES = (Project, ); }; }; - DE7F31B717C1AFF9AE9855BA794E870C /* IOBuf.h in Headers */ = {isa = PBXBuildFile; fileRef = 07CC778AB6214B8185DC0E6A75BB8F83 /* IOBuf.h */; settings = {ATTRIBUTES = (Project, ); }; }; - DE9A812C1D07F06E232DAF78B5F275CE /* SDDeviceHelper.h in Headers */ = {isa = PBXBuildFile; fileRef = 041B9921682550847342142D5C565844 /* SDDeviceHelper.h */; settings = {ATTRIBUTES = (Project, ); }; }; - DE9E6432F63DE00E6C4E76AA48F5B3EC /* evutil_time.c in Sources */ = {isa = PBXBuildFile; fileRef = 8069BAC4F69AE5E45CBB8F33CB396B67 /* evutil_time.c */; }; - DE9EECAEB02E90C521E3EE1E8FA0E1EC /* RValueReferenceWrapper.h in Headers */ = {isa = PBXBuildFile; fileRef = 955FF74652B28A8FB2FF9E3F715C9545 /* RValueReferenceWrapper.h */; settings = {ATTRIBUTES = (Project, ); }; }; - DEAB09F0EA0C46D82A7CB5A98B9F93A1 /* bit_writer_utils.h in Headers */ = {isa = PBXBuildFile; fileRef = F20A431211371FE48A41C08351C700CA /* bit_writer_utils.h */; settings = {ATTRIBUTES = (Project, ); }; }; - DEB2EB6994835EE62BF927E7D5FFCE42 /* RCTScrollContentView.h in Headers */ = {isa = PBXBuildFile; fileRef = 1758A6F4E7F4EDB8C7347927B69C4110 /* RCTScrollContentView.h */; settings = {ATTRIBUTES = (Project, ); }; }; - DEC474ED66B696D8408365EAB5156FE3 /* Builtins.h in Headers */ = {isa = PBXBuildFile; fileRef = D5871C9F2D5BC90B1A9AB94AC972717E /* Builtins.h */; settings = {ATTRIBUTES = (Project, ); }; }; - DEE1DE6BAD057DE55A402BAB9EC971C1 /* FIRLogger.h in Headers */ = {isa = PBXBuildFile; fileRef = 7EC7BD368C6B452764445084F34B5EFD /* FIRLogger.h */; settings = {ATTRIBUTES = (Project, ); }; }; - DF16F4DE7431CE790556C323F0863251 /* Observable.h in Headers */ = {isa = PBXBuildFile; fileRef = 2E456B5367A75D26021F4533FD7F0291 /* Observable.h */; settings = {ATTRIBUTES = (Project, ); }; }; - DF181CC0649D43E56891EB25905C1BAB /* CodedInputData_OSX.cpp in Sources */ = {isa = PBXBuildFile; fileRef = CD30F9D9684EBC52D35FC0E36B792B13 /* CodedInputData_OSX.cpp */; settings = {COMPILER_FLAGS = "-x objective-c++ -fno-objc-arc"; }; }; - DF41FDC835C9BCC2D838A0AD84DBF932 /* BugsnagReactNativeEmitter.m in Sources */ = {isa = PBXBuildFile; fileRef = F136C717FB0B4F7B7A23AF3EFAA2FF44 /* BugsnagReactNativeEmitter.m */; }; - DF44B3B16907193F463835D0D8134D16 /* FBLPromise+Await.h in Headers */ = {isa = PBXBuildFile; fileRef = 3E88485AF27879EA1753CBF403408C7A /* FBLPromise+Await.h */; settings = {ATTRIBUTES = (Project, ); }; }; - DF4B52A0F364CE66DE67D667D69DFC2D /* FIRCLSFABAsyncOperation.h in Headers */ = {isa = PBXBuildFile; fileRef = F71D2A9EEEBCF6C9678A20634F0036C8 /* FIRCLSFABAsyncOperation.h */; settings = {ATTRIBUTES = (Project, ); }; }; - DF5366DCF4A15500578057AC06F9B0B4 /* TokenBucket.h in Headers */ = {isa = PBXBuildFile; fileRef = 23D92F955B626161AF653427B4BBB71B /* TokenBucket.h */; settings = {ATTRIBUTES = (Project, ); }; }; - DF5E2EA62D02D4D4A1246CBB2ADB8F8E /* IPAddressV6.h in Headers */ = {isa = PBXBuildFile; fileRef = 8BFF647876CB7C31171CD68C2B2688E5 /* IPAddressV6.h */; settings = {ATTRIBUTES = (Project, ); }; }; - DF6155000965C82531C7D91B846B7BA7 /* near_lossless_enc.c in Sources */ = {isa = PBXBuildFile; fileRef = 93C97B60047255164EA4F8718B8EC42B /* near_lossless_enc.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; - DF63D688EF74C85087F01384D4F70504 /* FBLPromises.h in Headers */ = {isa = PBXBuildFile; fileRef = 1C92285652DE1BEBF56EDE5BBC235C1B /* FBLPromises.h */; settings = {ATTRIBUTES = (Project, ); }; }; - DF7AC9B4F2B180734337D0063EF08A6E /* RCTShadowView+Layout.m in Sources */ = {isa = PBXBuildFile; fileRef = F7E66212CF7771A3C2BB41F23B4A3798 /* 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"; }; }; - DF85E8B7E8DA2537CB6C5868CFAE92A6 /* FBLPromise+Validate.m in Sources */ = {isa = PBXBuildFile; fileRef = C8C92828DAAD3DF19095AB319D64147F /* FBLPromise+Validate.m */; }; - DF9556B84ADFE4CE9EE11C32BE59194F /* REATransitionAnimation.h in Headers */ = {isa = PBXBuildFile; fileRef = 5E386DC9A27321FB9860CF02FA9F8D03 /* REATransitionAnimation.h */; settings = {ATTRIBUTES = (Project, ); }; }; - DFCE9FC9D7B2760398E849A1405D3783 /* IOThreadPoolExecutor.h in Headers */ = {isa = PBXBuildFile; fileRef = 28D50C0EAC121DA5EA76E53EF81A12AA /* IOThreadPoolExecutor.h */; settings = {ATTRIBUTES = (Project, ); }; }; - DFDB8A745CC983AD5A277564FF3B8372 /* AtomicHashMap.h in Headers */ = {isa = PBXBuildFile; fileRef = 734E703831B26FFA5CD930FA8D15BE86 /* AtomicHashMap.h */; settings = {ATTRIBUTES = (Project, ); }; }; - DFE59671B86E2E11EC0F3234177CDD9B /* UMUtilitiesInterface.h in Headers */ = {isa = PBXBuildFile; fileRef = 6E0CDCC5D6ED7F4BA5BD967EE9279F4B /* UMUtilitiesInterface.h */; settings = {ATTRIBUTES = (Project, ); }; }; - E0074BF3D32BEE86A3053A56AA83EF78 /* GDTCORDataFuture.h in Headers */ = {isa = PBXBuildFile; fileRef = 8A097A82EB5F9568D3CD84603C037131 /* GDTCORDataFuture.h */; settings = {ATTRIBUTES = (Project, ); }; }; - E007E02271F546E9B8D8376023177D50 /* FIRCLSCrashedMarkerFile.h in Headers */ = {isa = PBXBuildFile; fileRef = 464D88FB4501E834EE17D24AF6A393EF /* FIRCLSCrashedMarkerFile.h */; settings = {ATTRIBUTES = (Project, ); }; }; - E02250DF77C1E2EAA629A4823968E917 /* RCTProgressViewManager.m in Sources */ = {isa = PBXBuildFile; fileRef = 0935676F54EB3972A0752F9B8008D1CC /* RCTProgressViewManager.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - E05070D25885B36129E52C0862B2E5B2 /* ARTGroupManager.m in Sources */ = {isa = PBXBuildFile; fileRef = E2C4F5D506247FD844878A1AA9B5B87E /* ARTGroupManager.m */; }; - E0739E40731A4673DF29B8721AA3F9D7 /* BugsnagLogger.h in Headers */ = {isa = PBXBuildFile; fileRef = 12BC7C47A9E234FC866C54A93E6763D3 /* BugsnagLogger.h */; settings = {ATTRIBUTES = (Project, ); }; }; - E074A92FAFC9BA43A47C45F5F611B6C5 /* RCTAnimationDriver.h in Headers */ = {isa = PBXBuildFile; fileRef = 18FFB6B8E3B72F4BA864DD9530CC7A6F /* RCTAnimationDriver.h */; settings = {ATTRIBUTES = (Project, ); }; }; - E0857B46FD1EA2B56B7D051FA3CC5C61 /* REANodesManager.m in Sources */ = {isa = PBXBuildFile; fileRef = D700921BD027F1AA96650E3B71E9DC89 /* REANodesManager.m */; }; - E08EF91F51F1271B2BD7F533727AB7BC /* FIRCLSFABAsyncOperation.m in Sources */ = {isa = PBXBuildFile; fileRef = 5AB921F5A3DEFCBC88A0237C87AA2066 /* FIRCLSFABAsyncOperation.m */; }; - E0B59B9295BB44A284B36AE953330A80 /* FFFastImageViewManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 345FF1F313D26A85327F53FEF66D5C49 /* FFFastImageViewManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; - E0C74EBAD5EA1E588C4565B77D8D13F1 /* RNJitsiMeetView.h in Headers */ = {isa = PBXBuildFile; fileRef = 46F8E31A46FEC6CF9983BA7069B34C96 /* RNJitsiMeetView.h */; settings = {ATTRIBUTES = (Project, ); }; }; - E0D01F18FBF0E7F1BFE86D87EED1B044 /* NamedThreadFactory.h in Headers */ = {isa = PBXBuildFile; fileRef = CEC466FD202E23F29881E8BEB39E7530 /* NamedThreadFactory.h */; settings = {ATTRIBUTES = (Project, ); }; }; - E0D527B58633D3FF8CF9FA991A945A4D /* FIRCLSReport_Private.h in Headers */ = {isa = PBXBuildFile; fileRef = 454E9EA0FB4C60C3075490BC8A0DE5D9 /* FIRCLSReport_Private.h */; settings = {ATTRIBUTES = (Project, ); }; }; - E0E93A84EBA20CDD445AAB056E39D70A /* DistributedMutex-inl.h in Headers */ = {isa = PBXBuildFile; fileRef = 53BC247758C79B3738AB7B8F4964FCEE /* DistributedMutex-inl.h */; settings = {ATTRIBUTES = (Project, ); }; }; - E12A5DA02DAAED067B7D62596133CAF6 /* BSGOnErrorSentBlock.h in Headers */ = {isa = PBXBuildFile; fileRef = 3D6A7D1051A44C58772B267CE3C0CB9D /* BSGOnErrorSentBlock.h */; settings = {ATTRIBUTES = (Project, ); }; }; - E130BDA5A728FB1624154E19747F60D3 /* F14MapFallback.h in Headers */ = {isa = PBXBuildFile; fileRef = 6D72FDDBC60397E485A899802B6F59BA /* F14MapFallback.h */; settings = {ATTRIBUTES = (Project, ); }; }; - E13D2DBC0C5F739D44100A7E44533913 /* RCTScrollContentViewManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 9C470A77658DF10376C0D0C59415D547 /* RCTScrollContentViewManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; - E16B561E1E6DD97CFF1FE312FFAD1FA5 /* JSIndexedRAMBundle.cpp in Sources */ = {isa = PBXBuildFile; fileRef = F492C284CDCC72A9270CF65696729407 /* JSIndexedRAMBundle.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - E1721A2CA9E2F8E0A07ACF6F63792BE4 /* RSocketConnectionEvents.h in Headers */ = {isa = PBXBuildFile; fileRef = A93E8BB7D84136FC86255E9EA99F0019 /* RSocketConnectionEvents.h */; settings = {ATTRIBUTES = (Project, ); }; }; - E17965B0328E7F8BE6634B28269E67EC /* GDTCORDataFuture.m in Sources */ = {isa = PBXBuildFile; fileRef = 9411A527A4DE7B8E9CA14E97E7DDA16C /* GDTCORDataFuture.m */; }; - E181EFF1D82F2C246F3C692C681462BC /* REAModule.m in Sources */ = {isa = PBXBuildFile; fileRef = 20A19B867E87A3F15E66D9D7C0D9DE34 /* REAModule.m */; }; - E1846F7769E342C8CC122EFCFDFFFF49 /* FarmHash.h in Headers */ = {isa = PBXBuildFile; fileRef = E72C685352DEFE901EBBF6470E4C2F4E /* FarmHash.h */; settings = {ATTRIBUTES = (Project, ); }; }; - E18E958D2C730FEF152AF9E45CB29DE0 /* BSG_KSCrashState.m in Sources */ = {isa = PBXBuildFile; fileRef = A81B190C680DAF19D634822AB23DBCAD /* BSG_KSCrashState.m */; }; - E1A0B76EB7A3746A55E41F8DB7C14008 /* RCTSurfaceSizeMeasureMode.h in Headers */ = {isa = PBXBuildFile; fileRef = BDCD4150CA90CA54D93291168F2D3975 /* RCTSurfaceSizeMeasureMode.h */; settings = {ATTRIBUTES = (Project, ); }; }; - E1BC0D14ED3A587781CAE3748E5012E8 /* UMEventEmitter.h in Headers */ = {isa = PBXBuildFile; fileRef = C90799EA218551C7B83AA144EDE89E53 /* UMEventEmitter.h */; settings = {ATTRIBUTES = (Project, ); }; }; - E1C08D8BB37248117121A8AAD57619B9 /* RCTWebSocketModule.h in Headers */ = {isa = PBXBuildFile; fileRef = 479E5A6756BD9FAFAF7BDE8B58EA1D30 /* RCTWebSocketModule.h */; settings = {ATTRIBUTES = (Project, ); }; }; - E1C92AEEAF907D9FBB3D536670867DE4 /* UMAppLoaderProvider.m in Sources */ = {isa = PBXBuildFile; fileRef = 042CB045CACE7AFFA4B656B882496E4A /* UMAppLoaderProvider.m */; }; - E1E7F6AE0FA5552149A6DAF46A638E17 /* FIRVersion.m in Sources */ = {isa = PBXBuildFile; fileRef = A1017F5C6F53C539BC0122C7CDA019A9 /* FIRVersion.m */; }; - E1E8D74B6DEAF85073752EB8E2E0C9A3 /* RCTCrypto-Bridging-Header.h in Headers */ = {isa = PBXBuildFile; fileRef = AC997D5A6CE46D81B2A9839825070905 /* RCTCrypto-Bridging-Header.h */; settings = {ATTRIBUTES = (Project, ); }; }; - E1EC97CD6A2CFBFBEF3A7C1F95357D0E /* Enumerate.h in Headers */ = {isa = PBXBuildFile; fileRef = B69368CC35C431BE1843055E90E0E6C7 /* Enumerate.h */; settings = {ATTRIBUTES = (Project, ); }; }; - E1EE9A2383D47B81240AAC2F8A5180F7 /* BugsnagConfigSerializer.h in Headers */ = {isa = PBXBuildFile; fileRef = 6E14464624A16C87A3E048A7BD5D4F68 /* BugsnagConfigSerializer.h */; settings = {ATTRIBUTES = (Project, ); }; }; - E20F8D73A5558DB8A285D2348303FBB5 /* FIRCLSThreadState.c in Sources */ = {isa = PBXBuildFile; fileRef = C95ECC7C9717D97B9AC7FD144C98ADF2 /* FIRCLSThreadState.c */; }; - E2103F6E72B586B0B789AB5AF1129ADA /* Checksum.h in Headers */ = {isa = PBXBuildFile; fileRef = DDCF0E1C73520263E3B6793D999FC73E /* Checksum.h */; settings = {ATTRIBUTES = (Project, ); }; }; - E220520B33F0E2BB0B58F5DB6E7BE855 /* Executor.cpp in Sources */ = {isa = PBXBuildFile; fileRef = FC3C2EC41A218DD33B6276EB82F35EF5 /* 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"; }; }; - E238B035225EF52CD614F5A43D1D1842 /* BSG_KSCrashSentry_MachException.h in Headers */ = {isa = PBXBuildFile; fileRef = 1AF4330BD6DD0F1AAC8EAA362E56F1F4 /* BSG_KSCrashSentry_MachException.h */; settings = {ATTRIBUTES = (Project, ); }; }; - E23A708DCF25B7E9D64B8E5A35C925E5 /* DynamicParser-inl.h in Headers */ = {isa = PBXBuildFile; fileRef = E7FEFE9C75C4B0D2872A9B3DB2E10D6B /* DynamicParser-inl.h */; settings = {ATTRIBUTES = (Project, ); }; }; - E24306CF618953F06E4CEFE26434420D /* CxxNativeModule.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 1B9BACB0377CD8C8008AD405848F4D2C /* CxxNativeModule.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - E248DDA578AB249E354FF39B372C5B20 /* GULSceneDelegateSwizzler.m in Sources */ = {isa = PBXBuildFile; fileRef = 842663EF20781EC453C3AB321DD4BF19 /* GULSceneDelegateSwizzler.m */; }; - E2494524ACA7CCAC62E1BCC82E2D2A63 /* UMReactNativeAdapter.m in Sources */ = {isa = PBXBuildFile; fileRef = 4FD65F73976A789DD9400A46AC219377 /* UMReactNativeAdapter.m */; }; - E24E2880B9541172E92097A2F2A41F8F /* FIRCLSUnwind_arch.h in Headers */ = {isa = PBXBuildFile; fileRef = A81308D786A9569FA6C94767535A684F /* FIRCLSUnwind_arch.h */; settings = {ATTRIBUTES = (Project, ); }; }; - E24E6BB4A43943E203A932C0E62A7E54 /* Flowable_FromObservable.h in Headers */ = {isa = PBXBuildFile; fileRef = 7F4298341DE529438F567BC7B6605C84 /* Flowable_FromObservable.h */; settings = {ATTRIBUTES = (Project, ); }; }; - E2678CB85A787B8F52CFC6D6ED563BFB /* Enumerate.h in Headers */ = {isa = PBXBuildFile; fileRef = 92F409B54F566135765FA15FF2FD4B10 /* Enumerate.h */; settings = {ATTRIBUTES = (Project, ); }; }; - E275864857518C091CD5FF4CEEE87FB0 /* PTChannel.h in Headers */ = {isa = PBXBuildFile; fileRef = 13BE33B0C55DC851925EE31F13B66FAE /* PTChannel.h */; settings = {ATTRIBUTES = (Project, ); }; }; - E286B125FB87DD987B73E01676C9DF73 /* alpha_dec.c in Sources */ = {isa = PBXBuildFile; fileRef = CF4BDEC955538583A9CAA48843409B0D /* alpha_dec.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; - E287F3777D57C93AED5AE1838AFF1954 /* RCTBackedTextInputDelegateAdapter.h in Headers */ = {isa = PBXBuildFile; fileRef = 35B7D5020B6E5BA9A2FE52CC9AE126AD /* RCTBackedTextInputDelegateAdapter.h */; settings = {ATTRIBUTES = (Project, ); }; }; - E2B38B0E73DFE014ACC3FCBFC43496FD /* FFFastImageViewManager.m in Sources */ = {isa = PBXBuildFile; fileRef = A930981C438F317DEF84316287E3A808 /* FFFastImageViewManager.m */; }; - E2C0076B7E76F787D079378C56AFB9E4 /* GDTCCTUploader.m in Sources */ = {isa = PBXBuildFile; fileRef = 46BA6E771CACE78454D8AA68F8424498 /* GDTCCTUploader.m */; }; - E2D24444928BD2DA8C9796FB4B3A7EFF /* SKButtonDescriptor.mm in Sources */ = {isa = PBXBuildFile; fileRef = 39AE4BCE95194D82309404D0B73449CD /* SKButtonDescriptor.mm */; settings = {COMPILER_FLAGS = "-DDEBUG=1 -DFLIPPER_OSS=1 -DFB_SONARKIT_ENABLED=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -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"; }; }; - E2D6ED674D98986B806DDBEA7B6E5741 /* FIRInstallationsStore.h in Headers */ = {isa = PBXBuildFile; fileRef = 07DF80C3CCE5F07D6160CBD62078D66D /* FIRInstallationsStore.h */; settings = {ATTRIBUTES = (Project, ); }; }; - E2D8B411A8238AA3D624F4155EC28400 /* BSG_KSMachHeaders.h in Headers */ = {isa = PBXBuildFile; fileRef = CADCD6AC0A44BC12DF3E31CFFCB2A47D /* BSG_KSMachHeaders.h */; settings = {ATTRIBUTES = (Project, ); }; }; - E2DB19525BA7F7B8A4FFBD0D59429E8D /* RCTEventAnimation.m in Sources */ = {isa = PBXBuildFile; fileRef = 6319E115C683CD8817790D3D6A945E4D /* 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"; }; }; - E2E16C5A891AA50B977D10AD3A13CE5A /* RNGestureHandlerRegistry.h in Headers */ = {isa = PBXBuildFile; fileRef = 50046DFFDEC7605D743CF83B7EB9EB5B /* RNGestureHandlerRegistry.h */; settings = {ATTRIBUTES = (Project, ); }; }; - E2E18A2DBE2732797495B41D2EE5416C /* BugsnagSessionFileStore.m in Sources */ = {isa = PBXBuildFile; fileRef = 07BABC1C04DAB1CEC0A77A7D6B220B6A /* BugsnagSessionFileStore.m */; }; - E2FEB34C99A3FEE2F60E0E5D878D9839 /* RCTInspector.h in Headers */ = {isa = PBXBuildFile; fileRef = 2A1622AFF8166C9BC2526873A6A31D07 /* RCTInspector.h */; settings = {ATTRIBUTES = (Project, ); }; }; - E302A08DFACD7D2D968BECA274855770 /* UIImage+MultiFormat.h in Headers */ = {isa = PBXBuildFile; fileRef = ED716E78774947E880E7508529601934 /* UIImage+MultiFormat.h */; settings = {ATTRIBUTES = (Project, ); }; }; - E3081231821B59ADDD2818523005B20C /* ThreadLock.h in Headers */ = {isa = PBXBuildFile; fileRef = 9728A1D78B6345338374226E0BB3DB05 /* ThreadLock.h */; settings = {ATTRIBUTES = (Project, ); }; }; - E30B1A23959255EC0E8B0D2B79865C73 /* RNFBMeta.h in Headers */ = {isa = PBXBuildFile; fileRef = CA557537137B6A0D183A619E100A10F7 /* RNFBMeta.h */; settings = {ATTRIBUTES = (Project, ); }; }; - E310D21896D715F3DB403CAB922B0986 /* FIRApp.h in Headers */ = {isa = PBXBuildFile; fileRef = 6F0271863C4BA41E4574C7D6BB595537 /* FIRApp.h */; settings = {ATTRIBUTES = (Project, ); }; }; - E312281FD29F99F67D349635D1F088ED /* SafeAreaSpacerView.h in Headers */ = {isa = PBXBuildFile; fileRef = F26E8EE3627DD007995E38872AAFA34A /* SafeAreaSpacerView.h */; settings = {ATTRIBUTES = (Project, ); }; }; - E3189CA4D7BFEF893F93E00F4659392F /* REAAllTransitions.h in Headers */ = {isa = PBXBuildFile; fileRef = AB0B72218F11A875FF74D719EE5216C6 /* REAAllTransitions.h */; settings = {ATTRIBUTES = (Project, ); }; }; - E319702B13D890B6693825B6D4960D0F /* BugsnagSessionTracker+Private.h in Headers */ = {isa = PBXBuildFile; fileRef = 10EE657F01EBB6BCF4637D1124C1343B /* BugsnagSessionTracker+Private.h */; settings = {ATTRIBUTES = (Project, ); }; }; - E3231EC68447E270A1CA6E248D40AED6 /* Cursor.h in Headers */ = {isa = PBXBuildFile; fileRef = 92D2413E4C09A3C32914CC71A085E54D /* Cursor.h */; settings = {ATTRIBUTES = (Project, ); }; }; - E32572B49BE011598A41D34DE5749AA7 /* FIRCLSLogger.m in Sources */ = {isa = PBXBuildFile; fileRef = 1CDE6771380C768E14FD930E19FBAEFB /* FIRCLSLogger.m */; }; - E328E8141AF969CC6B6E80958E20061B /* EXHapticsModule.h in Headers */ = {isa = PBXBuildFile; fileRef = 5D74EF68D1949BD56732B7EAB1BFCE79 /* EXHapticsModule.h */; settings = {ATTRIBUTES = (Project, ); }; }; - E32FFFE81DB576328C2027DFBFDDD91D /* FutureExecutor.h in Headers */ = {isa = PBXBuildFile; fileRef = 5009B368367C8DF2D7EF0B5BE9AE61BE /* FutureExecutor.h */; settings = {ATTRIBUTES = (Project, ); }; }; - E333596113348FB3D30D794BDE155D03 /* RCTBaseTextInputShadowView.h in Headers */ = {isa = PBXBuildFile; fileRef = 5D3EA5B4B575BDA257735202166064A3 /* RCTBaseTextInputShadowView.h */; settings = {ATTRIBUTES = (Project, ); }; }; - E33EB14E3EDA09265E5DE985BBBDD2FE /* UMAppLifecycleService.h in Headers */ = {isa = PBXBuildFile; fileRef = E86E5936B7E74BEB90393903C90CB8F1 /* UMAppLifecycleService.h */; settings = {ATTRIBUTES = (Project, ); }; }; - E341738B130ED4CB85C14610CCD846CD /* UIResponder+FirstResponderTemp.h in Headers */ = {isa = PBXBuildFile; fileRef = 3DA24849CCBBC6DD9C7740C89655776A /* UIResponder+FirstResponderTemp.h */; settings = {ATTRIBUTES = (Project, ); }; }; - E3482831201B92E1A06A0C22936FF637 /* SaturatingSemaphore.h in Headers */ = {isa = PBXBuildFile; fileRef = E315D7B79159981A3EBB25FF9ED5CAE2 /* SaturatingSemaphore.h */; settings = {ATTRIBUTES = (Project, ); }; }; - E373BD1E813C120BA7D43D7B324ECA80 /* Pods-NotificationService-umbrella.h in Headers */ = {isa = PBXBuildFile; fileRef = 44036119557B4464513ACB6E0DD07799 /* Pods-NotificationService-umbrella.h */; settings = {ATTRIBUTES = (Project, ); }; }; - E394E8C024891B64EECB0EE9D1E5A0C1 /* GDTCCTCompressionHelper.m in Sources */ = {isa = PBXBuildFile; fileRef = B44CE495171BBFB5DACBAF704180480D /* GDTCCTCompressionHelper.m */; }; - E3AB29EC69ADEBED2A8AD3743CE6E97F /* SynchronizedPtr.h in Headers */ = {isa = PBXBuildFile; fileRef = F0CB1544ADBADE695E5E2247DDC9EFF7 /* SynchronizedPtr.h */; settings = {ATTRIBUTES = (Project, ); }; }; - E3BBD6400CB4849B935042E456D7754B /* MallocImpl.h in Headers */ = {isa = PBXBuildFile; fileRef = ED12C7802BB41CE6B9622FA5B3D33026 /* MallocImpl.h */; settings = {ATTRIBUTES = (Project, ); }; }; - E3C0B7A799C90330E6182830EA35F0B7 /* FrameSerializer.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 3530B06F6C9BBE90FDCBF0F5DB4BDD03 /* FrameSerializer.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -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 -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors"; }; }; - E3C141C47F1B86D503200DDF64F8C321 /* FIRLibrary.h in Headers */ = {isa = PBXBuildFile; fileRef = 21232C6BB4536A408BDAE2BB5D559AD2 /* FIRLibrary.h */; settings = {ATTRIBUTES = (Project, ); }; }; - E3C599A3EE360F5FC0399D3B9E6489D7 /* lossless_common.h in Headers */ = {isa = PBXBuildFile; fileRef = EEAAAEE3BEC255C0C7A96639641B3098 /* lossless_common.h */; settings = {ATTRIBUTES = (Project, ); }; }; - E3C5C6E11CEE73172271A32F56AF9311 /* AsyncUDPServerSocket.h in Headers */ = {isa = PBXBuildFile; fileRef = C384BD5C849992AA306DD4C7B352C41A /* AsyncUDPServerSocket.h */; settings = {ATTRIBUTES = (Project, ); }; }; - E3D2E67EE693D1735BBA23C5B5F518C9 /* Futex.h in Headers */ = {isa = PBXBuildFile; fileRef = 83D65B87F81FC79D264226D68569D33A /* Futex.h */; settings = {ATTRIBUTES = (Project, ); }; }; - E3E250596E76E13A5DA85D4C557AA50F /* BugsnagReactNative.h in Headers */ = {isa = PBXBuildFile; fileRef = C5FD43B9AFE049BA54629F93A34D0BF1 /* BugsnagReactNative.h */; settings = {ATTRIBUTES = (Project, ); }; }; - E3EC0F97A46B322061908FCE6427EF05 /* RCTReloadCommand.h in Headers */ = {isa = PBXBuildFile; fileRef = 67B0B5C0025E7B120F21C60622927C4C /* RCTReloadCommand.h */; settings = {ATTRIBUTES = (Project, ); }; }; - E3F552D538BEDDFDF4624325039278CC /* RCTRootViewDelegate.h in Headers */ = {isa = PBXBuildFile; fileRef = F22CCC95CE1E45D47814E4D6F87F62FD /* RCTRootViewDelegate.h */; settings = {ATTRIBUTES = (Project, ); }; }; - E4005B3330ADF61EE793B59F23C2C6F2 /* UMModuleRegistryProvider.m in Sources */ = {isa = PBXBuildFile; fileRef = FC3B2F6648E4E990484D03409B3C47C2 /* UMModuleRegistryProvider.m */; }; - E45C3A5908024632B4833F497CB23688 /* RCTVersion.m in Sources */ = {isa = PBXBuildFile; fileRef = 9227C3987BC3C6437A9CA0B0FE0DC784 /* RCTVersion.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - E46AB4A1F4011A352ABAC15FBEFFE12C /* RCTDevSplitBundleLoader.mm in Sources */ = {isa = PBXBuildFile; fileRef = A4E286F0D5D5A1C67FF8F09F07A85C09 /* 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"; }; }; - E485454502FCAF5D7458D07251E75ED2 /* StringKeyedCommon.h in Headers */ = {isa = PBXBuildFile; fileRef = B9E52071A61994BF47D9A3698EB8E196 /* StringKeyedCommon.h */; settings = {ATTRIBUTES = (Project, ); }; }; - E48AEFAFDAC08F2EACE5AA4CB98D3944 /* RCTMessageThread.h in Headers */ = {isa = PBXBuildFile; fileRef = 91F4CDD7DFE9FE5BC9DB09A0AF6C5080 /* RCTMessageThread.h */; settings = {ATTRIBUTES = (Project, ); }; }; - E49188CCEC47F2B014FEF6031EED26C5 /* PTPrivate.h in Headers */ = {isa = PBXBuildFile; fileRef = 701944664DEF41CE893374775990E72D /* PTPrivate.h */; settings = {ATTRIBUTES = (Project, ); }; }; - E4A0F70A4C1573A50E12ADDFCAB1818E /* MallctlHelper.cpp in Sources */ = {isa = PBXBuildFile; fileRef = C92973A386C0B253E39A7584ED55CFFC /* 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"; }; }; - E4A1E303B799247E1BFE00752CF53B0B /* FramedDuplexConnection.h in Headers */ = {isa = PBXBuildFile; fileRef = EE7E08EF7B1252B45B70331226DB8144 /* FramedDuplexConnection.h */; settings = {ATTRIBUTES = (Project, ); }; }; - E4A30EC10888C6AE1C92B59EC078EF38 /* ARTTextManager.m in Sources */ = {isa = PBXBuildFile; fileRef = 1EAEEC68C0C4EF5223271B9D61A19D6F /* ARTTextManager.m */; }; - E4A5D4B6B6E51731DC54DCEF2061BC80 /* PTUSBHub.m in Sources */ = {isa = PBXBuildFile; fileRef = 3BDF8F521A698660A217C9B7AC6B17AA /* PTUSBHub.m */; }; - E4D42E2CAAE1119F464246ABA3B38A6A /* MMKV_IO.h in Headers */ = {isa = PBXBuildFile; fileRef = 20DD2DCEC6778419564746DE9727F304 /* MMKV_IO.h */; settings = {ATTRIBUTES = (Project, ); }; }; - E4D551EFA6582D7F0F98EE42615DB46C /* FIRCLSSettingsOnboardingManager.m in Sources */ = {isa = PBXBuildFile; fileRef = D406C3172FD33987CC90D98C292F301B /* FIRCLSSettingsOnboardingManager.m */; }; - E4D7C5E29BF0B21F741392FDF5BD9615 /* FIRCLSRecordIdentity.m in Sources */ = {isa = PBXBuildFile; fileRef = F9F717971EB4CADD925F4933F21D6A1B /* FIRCLSRecordIdentity.m */; }; - E4DFAC5B7C4EFF623E1DA10693B2F1F4 /* bufferevent.c in Sources */ = {isa = PBXBuildFile; fileRef = 457BF153D04F4820C937FA37AFCD368D /* bufferevent.c */; }; - E4F80941C373599F876C3F96452058D4 /* FutureSplitter.h in Headers */ = {isa = PBXBuildFile; fileRef = E288C521FCC2E603C406F068150CCF85 /* FutureSplitter.h */; settings = {ATTRIBUTES = (Project, ); }; }; - E51BF3266E364412BE10CFAF038B0327 /* ms.lproj in Resources */ = {isa = PBXBuildFile; fileRef = DE1BFDAFC28F339CABA7846F7BD52752 /* ms.lproj */; }; - E51E9B99FFBC62320E3D6E7DDA2AB29B /* UMAppDelegateWrapper.m in Sources */ = {isa = PBXBuildFile; fileRef = F7C40C88F5C3C5FE1938B1CEC0B1179C /* UMAppDelegateWrapper.m */; }; - E51EA6F839FA559C21E7EB6626BF236B /* cost.c in Sources */ = {isa = PBXBuildFile; fileRef = CFB354F515813222413E2132DB870EBF /* cost.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; - E52247D7B717F25E749A7C0F6098820D /* UIImage+ExtendedCacheData.m in Sources */ = {isa = PBXBuildFile; fileRef = AFBA0DC87250CE5452721227940656DE /* UIImage+ExtendedCacheData.m */; }; - E532571B41B3C0C592E16E27057593A0 /* FirebaseInstallationsInternal.h in Headers */ = {isa = PBXBuildFile; fileRef = 91F251357B1B861D6BECB35B97540576 /* FirebaseInstallationsInternal.h */; settings = {ATTRIBUTES = (Project, ); }; }; - E55392C6684C8F1393B2D06412EF1961 /* UMPermissionsMethodsDelegate.h in Headers */ = {isa = PBXBuildFile; fileRef = 471436C5FCF70211E89590CF81E793B6 /* UMPermissionsMethodsDelegate.h */; settings = {ATTRIBUTES = (Project, ); }; }; - E5558D09A1CAA1BF0B765E9A32E030D9 /* RCTDisplayWeakRefreshable.m in Sources */ = {isa = PBXBuildFile; fileRef = 193324800AD3DBFE52C49B3E1428D6D4 /* 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"; }; }; - E557A000450604046656D73ABB02905E /* RNGestureHandlerButton.m in Sources */ = {isa = PBXBuildFile; fileRef = 4931A8E8445EAB969B58E1A2F8890A80 /* RNGestureHandlerButton.m */; }; - E55CB5FD7795FAC2F29E4E2B5B827F08 /* BSG_RFC3339DateTool.m in Sources */ = {isa = PBXBuildFile; fileRef = C9825762599913C6EB8217C8F9C4D952 /* BSG_RFC3339DateTool.m */; }; - E5699989A56C61DD94A9C6A17C253494 /* RWSpinLock.h in Headers */ = {isa = PBXBuildFile; fileRef = 51C4E5F5418C933B54618D04FE90B1EC /* RWSpinLock.h */; settings = {ATTRIBUTES = (Project, ); }; }; - E56F517254A3DD415A94128FFB078AB7 /* EXSessionResumableDownloadTaskDelegate.h in Headers */ = {isa = PBXBuildFile; fileRef = 7267D00F1FD7F2751F6F318FB868C7EA /* EXSessionResumableDownloadTaskDelegate.h */; settings = {ATTRIBUTES = (Project, ); }; }; - E5717D12A46C230DF81B959C316D3076 /* RNVectorIcons-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 831F2BE7509E960A2247F8069F11035A /* RNVectorIcons-dummy.m */; }; - E58DE23836329FAFADE45085CA848146 /* CallbackOStream.h in Headers */ = {isa = PBXBuildFile; fileRef = EF987966C8243A6D7B2997CCB6DEBF19 /* CallbackOStream.h */; settings = {ATTRIBUTES = (Project, ); }; }; - E5A0AB695B3144ECD8E5C17837CAC24B /* listener.c in Sources */ = {isa = PBXBuildFile; fileRef = 6AFD3DAEA617156BF2B54EC866156EA4 /* listener.c */; }; - E5A22EBC18FF7ED857C3242BA10F97BE /* MallctlHelper.h in Headers */ = {isa = PBXBuildFile; fileRef = 9D9E57DF4A08C75F2004E8D4518455E9 /* MallctlHelper.h */; settings = {ATTRIBUTES = (Project, ); }; }; - E5A4D111A0374E196120025589C610DA /* RCTJSIExecutorRuntimeInstaller.h in Headers */ = {isa = PBXBuildFile; fileRef = E623D939ADE2AE10BEAA3C1B7D16981B /* RCTJSIExecutorRuntimeInstaller.h */; settings = {ATTRIBUTES = (Project, ); }; }; - E5C364BADE3B7F40B26C80274EEEA9B4 /* REASetNode.h in Headers */ = {isa = PBXBuildFile; fileRef = 098C33BAFFF906D6D3AF3583C8832657 /* REASetNode.h */; settings = {ATTRIBUTES = (Project, ); }; }; - E5CD926415F1A3789CDD8A16D76A34B4 /* RCTModalHostViewController.h in Headers */ = {isa = PBXBuildFile; fileRef = 8D0A6E6852DDB2645E8D6F3F1EE778C7 /* RCTModalHostViewController.h */; settings = {ATTRIBUTES = (Project, ); }; }; - E5DC173E6B529F892B09C8C35C99D2A1 /* ARTLinearGradient.m in Sources */ = {isa = PBXBuildFile; fileRef = 6F94301C0561DD443C43F2F07AE4968F /* ARTLinearGradient.m */; }; - E60B6DC94775A5650B20341846210269 /* BugsnagKVStoreObjC.m in Sources */ = {isa = PBXBuildFile; fileRef = B397F83E5364B2FB27FC44746EC7445B /* BugsnagKVStoreObjC.m */; }; - E6117DD34413A1D86C9FC793933387DA /* TOActivityCroppedImageProvider.h in Headers */ = {isa = PBXBuildFile; fileRef = 83BF47C14F8ECEF5838A4507B32CC1A7 /* TOActivityCroppedImageProvider.h */; settings = {ATTRIBUTES = (Project, ); }; }; - E64521D3CF0885A1354CC21DFE9C9257 /* JSExecutor.h in Headers */ = {isa = PBXBuildFile; fileRef = 1899CDD77970FCB7A8B18F971C4DD188 /* JSExecutor.h */; settings = {ATTRIBUTES = (Project, ); }; }; - E64AF3AEC1364B323D9F70FE52130B72 /* AtomicHashArray-inl.h in Headers */ = {isa = PBXBuildFile; fileRef = 68B8924F51A5D653C23A9DA652BE953B /* AtomicHashArray-inl.h */; settings = {ATTRIBUTES = (Project, ); }; }; - E673E0352A8B4350E45B7A109D3D4021 /* EXKeepAwake.m in Sources */ = {isa = PBXBuildFile; fileRef = 442D2F71BDC5E59CA5DF4FA8490BFFD9 /* EXKeepAwake.m */; }; - E67EAB639865313CF8223FCAA5C0E439 /* CancellationToken-inl.h in Headers */ = {isa = PBXBuildFile; fileRef = F8BC1EE68A6BE949F205AF0A712CB58C /* CancellationToken-inl.h */; settings = {ATTRIBUTES = (Project, ); }; }; - E688352A73C514B356DE50C892D60988 /* RCTAlertManager.mm in Sources */ = {isa = PBXBuildFile; fileRef = 2794BF391589D1CFB5280CB6BDDBE022 /* 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"; }; }; - E69A3E96DC48CAC5F62DB2C99EF60952 /* JSIExecutor.h in Headers */ = {isa = PBXBuildFile; fileRef = D2BAFB5712B5C8FFFE439BE7B8832975 /* JSIExecutor.h */; settings = {ATTRIBUTES = (Project, ); }; }; - E6B11ADEAF0C851FED1210EA162F751B /* NetOps.h in Headers */ = {isa = PBXBuildFile; fileRef = 073C7A7AF4093E077B81947FA20CD463 /* NetOps.h */; settings = {ATTRIBUTES = (Project, ); }; }; - E6B8C0201823B78660AFB9CD89094146 /* JSBundleType.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 32A022EC517F10D917BF4DBC33E5C851 /* JSBundleType.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - E6F2F6D29BF5EF222846D24FFFA2A518 /* GDTCORTargets.h in Headers */ = {isa = PBXBuildFile; fileRef = 3C79B1F5A3844A1537C78A0F404800A7 /* GDTCORTargets.h */; settings = {ATTRIBUTES = (Project, ); }; }; - E6F9AB804046A1761C274E1978C9D181 /* types.h in Headers */ = {isa = PBXBuildFile; fileRef = B93F6DD0458524D09451B650252973D4 /* types.h */; settings = {ATTRIBUTES = (Project, ); }; }; - E713B02A8A389710B1613C452E72D5D0 /* FLEXNetworkTransaction.h in Headers */ = {isa = PBXBuildFile; fileRef = 2EE81361339C5E1930DAF6A4CFD01B74 /* FLEXNetworkTransaction.h */; settings = {ATTRIBUTES = (Project, ); }; }; - E72A250087B7A73BA20E9A12E6C3E5AF /* RCTSourceCode.mm in Sources */ = {isa = PBXBuildFile; fileRef = 2C17B2692915442C061B9BD0B2FC5D68 /* 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"; }; }; - E7427A2777ABB574E03689696119599E /* Cursor-inl.h in Headers */ = {isa = PBXBuildFile; fileRef = 81A496C1E15F3F3AC37175B4920FF619 /* Cursor-inl.h */; settings = {ATTRIBUTES = (Project, ); }; }; - E7597C7ED2697CB348881A37BE1F38AC /* upsampling_sse41.c in Sources */ = {isa = PBXBuildFile; fileRef = E7D542686358449C4464EF32763BE4A2 /* upsampling_sse41.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; - E7650BE94EC3643FD0EDFFB53BF239DF /* RCTRefreshControlManager.m in Sources */ = {isa = PBXBuildFile; fileRef = 534C4979DAEE0F420291383A100BED53 /* RCTRefreshControlManager.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - E76A6CD9B0CAA7A92D2CD5FA84F9EB2F /* TestUtil.h in Headers */ = {isa = PBXBuildFile; fileRef = CF84CF3255A89822E1EF8A2A7F263EE8 /* TestUtil.h */; settings = {ATTRIBUTES = (Project, ); }; }; - E76E10019899FF866B81BACD8AEFF56F /* EXVideoManager.h in Headers */ = {isa = PBXBuildFile; fileRef = A439185E722B36F1A8B1BEE7BDC71514 /* EXVideoManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; - E783EEAA611C3967BA049B75B021BE67 /* EXVideoPlayerViewController.h in Headers */ = {isa = PBXBuildFile; fileRef = 563880E140BAE9F0CD6A507B16D921F3 /* EXVideoPlayerViewController.h */; settings = {ATTRIBUTES = (Project, ); }; }; - E78878CE7EE4B42C7C4346121F3F117B /* Libgen.h in Headers */ = {isa = PBXBuildFile; fileRef = 79335A93D83AE486F8FF48BDCC4B04CE /* Libgen.h */; settings = {ATTRIBUTES = (Project, ); }; }; - E7A441822611FBF3B41573EC9F8CCE90 /* SDWebImageManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 71E1DD6187842470489C1B6D031A902E /* SDWebImageManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; - E7C452B9BC1F38B436C532BFDE929F52 /* CacheLocality.cpp in Sources */ = {isa = PBXBuildFile; fileRef = EBC93F84D6D9CE3D89CABD497B79A55E /* CacheLocality.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -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\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors"; }; }; - E7C668C15E723EEB34BEA9FE018B660B /* ResumeIdentificationToken.h in Headers */ = {isa = PBXBuildFile; fileRef = FB4559CDF57FC81DD76DA71C08892047 /* ResumeIdentificationToken.h */; settings = {ATTRIBUTES = (Project, ); }; }; - E7DC3A48C27C44F5B0FF9EBB27B4D428 /* log_severity.h in Headers */ = {isa = PBXBuildFile; fileRef = 6FE8D5121E05847BA6EB20C418665D7B /* log_severity.h */; settings = {ATTRIBUTES = (Project, ); }; }; - E7FF87C342CABA9F8DA69B9A88DE6C88 /* PropagateConst.h in Headers */ = {isa = PBXBuildFile; fileRef = 06EF2F083C06FEFE6A287DC283072E67 /* PropagateConst.h */; settings = {ATTRIBUTES = (Project, ); }; }; - E81E93C14C4A2EF29E40389982ED4E00 /* FIRInstallationsIIDTokenStore.m in Sources */ = {isa = PBXBuildFile; fileRef = C335481D064FA5535D3CC9FB9822A2BF /* FIRInstallationsIIDTokenStore.m */; }; - E8256CCC9C51CDB0B77A25C40B45A640 /* ThriftStreamShim.h in Headers */ = {isa = PBXBuildFile; fileRef = B37603DEF7D9FC146306428CF41DA217 /* ThriftStreamShim.h */; settings = {ATTRIBUTES = (Project, ); }; }; - E85DE6E2E1C8995860DD4132D41337B1 /* RNRotationHandler.h in Headers */ = {isa = PBXBuildFile; fileRef = 9805FAF985C740CD5AF04BB3DC67F701 /* RNRotationHandler.h */; settings = {ATTRIBUTES = (Project, ); }; }; - E866C091A893AAF10C5066C6A8FB9348 /* RCTImageCache.h in Headers */ = {isa = PBXBuildFile; fileRef = 54C3DB7CB50F66858BBCF53041CFFA71 /* RCTImageCache.h */; settings = {ATTRIBUTES = (Project, ); }; }; - E86D442FF5731A59E3C3E938879B3EA5 /* VirtualEventBase.h in Headers */ = {isa = PBXBuildFile; fileRef = F40F4D13C064134A3B808F152E583CC3 /* VirtualEventBase.h */; settings = {ATTRIBUTES = (Project, ); }; }; - E87F01115D4BD92EA8565C73AD975317 /* Subscription.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 30179570988891F43F9A54B32C56A700 /* Subscription.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -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 -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors"; }; }; - E8853B8ED3D089F47C87A8100A7A6434 /* RNConfigReader.m in Sources */ = {isa = PBXBuildFile; fileRef = 6EC09334D862F611D8B61F433B6C8440 /* RNConfigReader.m */; }; - E8A7615B2E19C59185F3FE545094D0E8 /* EXImageLoader-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 6DD121FD76E97C58E23365FDFC628B14 /* EXImageLoader-dummy.m */; }; - E90955012B852D78214EA864F1EB2B9C /* demangle.cc in Sources */ = {isa = PBXBuildFile; fileRef = A0A9FF330B926B4379D094F6AE01C7C2 /* demangle.cc */; settings = {COMPILER_FLAGS = "-Wno-shorten-64-to-32"; }; }; - E91A24F10E4E63BA9511C3AA3B608772 /* RCTParserUtils.m in Sources */ = {isa = PBXBuildFile; fileRef = DC3AB289AEEAE80022BC8C183E917049 /* RCTParserUtils.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - E91C35A4C74C464094403DF24CF12329 /* UIImageView+HighlightedWebCache.h in Headers */ = {isa = PBXBuildFile; fileRef = CB780F18AF9E3DAFA1FD46D41E5ACBC1 /* UIImageView+HighlightedWebCache.h */; settings = {ATTRIBUTES = (Project, ); }; }; - E92E23581BA92C98435DC0BD7E016324 /* FBLPromise+Race.h in Headers */ = {isa = PBXBuildFile; fileRef = 335D89C0A9606E132F58F72559506EDF /* FBLPromise+Race.h */; settings = {ATTRIBUTES = (Project, ); }; }; - E94C0A8806DEC18D6873CF569F01FA1A /* TurboModuleBinding.h in Headers */ = {isa = PBXBuildFile; fileRef = 470178089A8B574E25BA6E16B07CA254 /* TurboModuleBinding.h */; settings = {ATTRIBUTES = (Project, ); }; }; - E95D6946EAAC0D88A62A9C4EF71E1A8A /* RNImageCropPicker-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 44747932CB8EA27D3A71CBE61CC868EB /* RNImageCropPicker-dummy.m */; }; - E981E67817B348038BCC8545CE70A25A /* RNFBUtilsModule.h in Headers */ = {isa = PBXBuildFile; fileRef = BA6458BF22C37B2D7D59E6DEA84BBD75 /* RNFBUtilsModule.h */; settings = {ATTRIBUTES = (Project, ); }; }; - E99F98EAA91670CB3B54381E89CE82C1 /* RNDeviceInfo.h in Headers */ = {isa = PBXBuildFile; fileRef = 218D3AFA6E45B878589B1C721E75F5CA /* RNDeviceInfo.h */; settings = {ATTRIBUTES = (Project, ); }; }; - E9A6AB521B793BA618431BFD74AFC3FD /* EventBaseBackendBase.h in Headers */ = {isa = PBXBuildFile; fileRef = CDE9A556EC556FFEFABB9A9F7E9DD557 /* EventBaseBackendBase.h */; settings = {ATTRIBUTES = (Project, ); }; }; - E9CEBB7DBEE768BE09E9129A3DC9A49C /* EXKeepAwake-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = C15118AF7B06E7AA8617780010187407 /* EXKeepAwake-dummy.m */; }; - E9D9BBF8E856ACD90E0A72F9595434A9 /* RecoverableError.h in Headers */ = {isa = PBXBuildFile; fileRef = BC4E6281F75612E2835E8AAAFBCF5CEB /* RecoverableError.h */; settings = {ATTRIBUTES = (Project, ); }; }; - E9DD38E9466D37938076B85D6346A169 /* RNGestureHandlerEvents.h in Headers */ = {isa = PBXBuildFile; fileRef = F784B594BAB762A38CFE432CC18FE196 /* RNGestureHandlerEvents.h */; settings = {ATTRIBUTES = (Project, ); }; }; - E9E1B0FF5CCBA128F3D2EF11C42EA0B4 /* FKUserDefaultsPlugin.m in Sources */ = {isa = PBXBuildFile; fileRef = 637C838337F31ED529BCEA41C0F4A3E4 /* FKUserDefaultsPlugin.m */; settings = {COMPILER_FLAGS = "-DDEBUG=1 -DFLIPPER_OSS=1 -DFB_SONARKIT_ENABLED=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -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"; }; }; - E9F140B18AA5E8078FEA649BE33DF599 /* SysUio.h in Headers */ = {isa = PBXBuildFile; fileRef = 8FD0422E27ABD51A7F0B26BBD184FBA7 /* SysUio.h */; settings = {ATTRIBUTES = (Project, ); }; }; - EA18555CD41CC2920EEFCFB2B9EB978B /* CallOnce.h in Headers */ = {isa = PBXBuildFile; fileRef = EF0C759B7ECF1822BCBF5D46FEDB41A8 /* CallOnce.h */; settings = {ATTRIBUTES = (Project, ); }; }; - EA26CEF95BAF2888C211317D52469E95 /* FlipperKitReactPlugin.h in Headers */ = {isa = PBXBuildFile; fileRef = 09E75510AF24F314A6051E17B976164F /* FlipperKitReactPlugin.h */; settings = {ATTRIBUTES = (Project, ); }; }; - EA31A21E8987D47CFA4D774D8DB6D85F /* FlipperState.h in Headers */ = {isa = PBXBuildFile; fileRef = E70FB33CFF014F38A4E95193A259BC24 /* FlipperState.h */; settings = {ATTRIBUTES = (Project, ); }; }; - EA4C621BAD9D0BDC885592CB2C3A6A79 /* Time.h in Headers */ = {isa = PBXBuildFile; fileRef = 837E9CF02683AFD9515312499D96F62E /* Time.h */; settings = {ATTRIBUTES = (Project, ); }; }; - EA7C749C114B176E77A7E80384C2B23A /* GULSecureCoding.m in Sources */ = {isa = PBXBuildFile; fileRef = 4CFB0570DCDE324E6BE1532D8CF0082E /* GULSecureCoding.m */; }; - EAA8AEA1DF510379312DCF16E8ED4DA1 /* ManualExecutor.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 0F6E45DC830E5CA7848322A1858380CD /* 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"; }; }; - EAD62CEACD1BD0A3C1606C0803DF3BC9 /* SKViewControllerDescriptor.m in Sources */ = {isa = PBXBuildFile; fileRef = 9FC7A652DA51D9F0183EA2D12E37F94B /* SKViewControllerDescriptor.m */; settings = {COMPILER_FLAGS = "-DDEBUG=1 -DFLIPPER_OSS=1 -DFB_SONARKIT_ENABLED=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -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"; }; }; - EB04398384E73EE07BD888F6792DD980 /* UMLogHandler.h in Headers */ = {isa = PBXBuildFile; fileRef = C34BB7C9B5B6543C0E09A57C1B4F97EC /* UMLogHandler.h */; settings = {ATTRIBUTES = (Project, ); }; }; - EB0D803A2824E1D994956F64A7BC4E81 /* MasterPtr.h in Headers */ = {isa = PBXBuildFile; fileRef = A7A0905593F2528C6B73F62C34691F05 /* MasterPtr.h */; settings = {ATTRIBUTES = (Project, ); }; }; - EB14C78C69BA17F8F57A3486D8055C53 /* RCTDeviceInfo.h in Headers */ = {isa = PBXBuildFile; fileRef = 2A201E321369369E539FE39ED859515D /* RCTDeviceInfo.h */; settings = {ATTRIBUTES = (Project, ); }; }; - EB1C1F81B0144E43EF807D2C8EE59965 /* RCTRootShadowView.h in Headers */ = {isa = PBXBuildFile; fileRef = 744A8C51F58F8778C55BA80C9470047A /* RCTRootShadowView.h */; settings = {ATTRIBUTES = (Project, ); }; }; - EB1D80A3D49F992E63EE8FCDBA258D0B /* GULLogger.h in Headers */ = {isa = PBXBuildFile; fileRef = BC1B59FA7B55DBD9453B1CDEE536A836 /* GULLogger.h */; settings = {ATTRIBUTES = (Project, ); }; }; - EB2099304CD314EEFF0206113176CE9C /* BSG_KSCrashC.c in Sources */ = {isa = PBXBuildFile; fileRef = 971CD715DCCACC85D5AB2AD820C9B7A7 /* BSG_KSCrashC.c */; }; - EB24DBDCAF2863C9CBF16FBA8F968E22 /* RCTNetworkPlugins.mm in Sources */ = {isa = PBXBuildFile; fileRef = 785EDE9EB6D9A2635C20A40E0D42021D /* 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"; }; }; - EB29EA2290C82DFF3A2C141D4867B820 /* RCTMaskedView.h in Headers */ = {isa = PBXBuildFile; fileRef = 920E913BF836AE4C356DD271D480E02C /* RCTMaskedView.h */; settings = {ATTRIBUTES = (Project, ); }; }; - EB33AEF5874FE6570CCB62F87298A82E /* RCTImageViewManager.mm in Sources */ = {isa = PBXBuildFile; fileRef = B69F271A5C44B69E65EC9A06D5CF0CA2 /* 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"; }; }; - EB38E6BE25B7A0A918A282060959C00B /* Varint.h in Headers */ = {isa = PBXBuildFile; fileRef = ACF5B261D4C1ED5A6B4EA7D551B4517C /* Varint.h */; settings = {ATTRIBUTES = (Project, ); }; }; - EB4D1037A2EC03E69751E5C1401D3A96 /* BSGEventUploadOperation.h in Headers */ = {isa = PBXBuildFile; fileRef = 3BF80B3C5C9D06C7E4861B18B24125A9 /* BSGEventUploadOperation.h */; settings = {ATTRIBUTES = (Project, ); }; }; - EB4FFF9C252FD851EA6F308B0FD6E94E /* quant_levels_utils.h in Headers */ = {isa = PBXBuildFile; fileRef = 0D15D4485815571BD58306D43BF2AB9E /* quant_levels_utils.h */; settings = {ATTRIBUTES = (Project, ); }; }; - EB59014043847D75B55B6F7FE01BF13E /* FIRCLSCompactUnwind.c in Sources */ = {isa = PBXBuildFile; fileRef = 68CBB36E7717339C490EC08F8C06B009 /* FIRCLSCompactUnwind.c */; }; - EB607671CA68A5497FB3F4992778BCFF /* double-conversion.h in Headers */ = {isa = PBXBuildFile; fileRef = BDA2A69E14FB628DD6843A24D005F18D /* double-conversion.h */; settings = {ATTRIBUTES = (Project, ); }; }; - EB6336F6D097B9A2678B064AE483EB45 /* FIRDiagnosticsData.m in Sources */ = {isa = PBXBuildFile; fileRef = F38C5303F7B521491FE9BA5EC76CB6E8 /* FIRDiagnosticsData.m */; }; - EB80238017884F125B9784E8A82770E5 /* FunctionScheduler.h in Headers */ = {isa = PBXBuildFile; fileRef = 7329DC9DC46804A4F663CE828B7DF7E1 /* FunctionScheduler.h */; settings = {ATTRIBUTES = (Project, ); }; }; - EB85F554E3C07512319B854B78F101F8 /* RCTVirtualTextViewManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 0E66BD9275AF1DCFAE284A18EDB3DB96 /* RCTVirtualTextViewManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; - EBA4B42F86FA19C9293C03AD8686145B /* StorageSetters.h in Headers */ = {isa = PBXBuildFile; fileRef = C36FF5D1A5B1A0456D961B26047AFBF3 /* StorageSetters.h */; settings = {ATTRIBUTES = (Project, ); }; }; - EBEA8CA3A1E924E17947C277172F2B33 /* AsyncTrace.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 39209F2A8F1496454A4AE88A288F0C42 /* AsyncTrace.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -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\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors"; }; }; - EC08FBF9D42E49D3830F7EE7F7EDF9CB /* RCTSurfaceSizeMeasureMode.mm in Sources */ = {isa = PBXBuildFile; fileRef = 1DE1EF90DC2BBDA0ABA8208EFED815A0 /* RCTSurfaceSizeMeasureMode.mm */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - EC2648D49060E72BCCF4EF228A121609 /* FormatArg.h in Headers */ = {isa = PBXBuildFile; fileRef = CAB2A0986BCA709B4AF09D1754932213 /* FormatArg.h */; settings = {ATTRIBUTES = (Project, ); }; }; - EC301CF66B7105F0C3976DECE6A4014D /* FIRCLSPackageReportOperation.m in Sources */ = {isa = PBXBuildFile; fileRef = 2ED9BF56428DBA0DE10A75282936070F /* FIRCLSPackageReportOperation.m */; }; - EC4B34E3C4C20F841A8551C05428934C /* TurboModuleUtils.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 58185E3C2604FA10E23E4B814C6AA23A /* TurboModuleUtils.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - EC56E8D37A1EF91594F4F85BBB6CF794 /* ThreadFactory.h in Headers */ = {isa = PBXBuildFile; fileRef = 6325EB92C709FD51590164146B016D32 /* ThreadFactory.h */; settings = {ATTRIBUTES = (Project, ); }; }; - EC61B0BE381C36711C2C87B124C01AE9 /* UMModuleRegistryConsumer.h in Headers */ = {isa = PBXBuildFile; fileRef = A1CE18A3F321A875155302101DDA52BE /* UMModuleRegistryConsumer.h */; settings = {ATTRIBUTES = (Project, ); }; }; - ECA65EB0676276BB1A6987E7DA9AE058 /* pb_decode.c in Sources */ = {isa = PBXBuildFile; fileRef = 5C80621220CDF16B10C3A915E83A66BE /* pb_decode.c */; settings = {COMPILER_FLAGS = "-fno-objc-arc -fno-objc-arc"; }; }; - ECBD429060DEC16908D656440A81BDF4 /* RNFetchBlob.h in Headers */ = {isa = PBXBuildFile; fileRef = 84FACB1B8A9DB495EDF073E347729893 /* RNFetchBlob.h */; settings = {ATTRIBUTES = (Project, ); }; }; - ECC014D16CBC092CE3F8DF77EE1BA855 /* REAConcatNode.h in Headers */ = {isa = PBXBuildFile; fileRef = B8D8BFEBC605F5B2FC3A82710426E43C /* REAConcatNode.h */; settings = {ATTRIBUTES = (Project, ); }; }; - ECCF81F5F061B785593B1BD3E433F28C /* EXAppleAuthentication.h in Headers */ = {isa = PBXBuildFile; fileRef = C8A62565FF0C008C8CCCA2F926455E43 /* EXAppleAuthentication.h */; settings = {ATTRIBUTES = (Project, ); }; }; - ECD0C5360E7811C936155AAEF32D7CBD /* FIRCLSUnwind_x86.h in Headers */ = {isa = PBXBuildFile; fileRef = 199D2E3FA4093CD5CBD0F97D0EE70B56 /* FIRCLSUnwind_x86.h */; settings = {ATTRIBUTES = (Project, ); }; }; - ECDED650F177962D4CFA65C9DDF3811F /* ConstexprMath.h in Headers */ = {isa = PBXBuildFile; fileRef = A6168E0E97D94D09DC85AA49AC1CF4B7 /* ConstexprMath.h */; settings = {ATTRIBUTES = (Project, ); }; }; - ECDFD0F589A0A23AAD6BE0D550CC85A0 /* RangeCommon.h in Headers */ = {isa = PBXBuildFile; fileRef = 65F1AC1A3944F25FB966B24E6E90882F /* RangeCommon.h */; settings = {ATTRIBUTES = (Project, ); }; }; - ECE7BD204DA630BB4A0AE60A0B54BE92 /* Subscription.h in Headers */ = {isa = PBXBuildFile; fileRef = B4A78ECF85E46B193729EC71AE037CAC /* Subscription.h */; settings = {ATTRIBUTES = (Project, ); }; }; - ECEB3AB42101DDB0A76B27EE16178031 /* FIRInstallationsStoredItem.m in Sources */ = {isa = PBXBuildFile; fileRef = CA53479D1F7EC6FB3472EFF20F157B6C /* FIRInstallationsStoredItem.m */; }; - ED1294A4072B1958A6928F5A789D4C13 /* EXVideoPlayerViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = B0B5D9B71A83EC9F23FB5432F6A776D9 /* EXVideoPlayerViewController.m */; }; - ED276E5B54D36A9E60A7C3A7A97C1ADB /* GDTCORStorageProtocol.h in Headers */ = {isa = PBXBuildFile; fileRef = BC5FD72C5B1D80E461FC33D412719E91 /* GDTCORStorageProtocol.h */; settings = {ATTRIBUTES = (Project, ); }; }; - ED48F81E61659B7183C6AF81E77DD27B /* Retrying.h in Headers */ = {isa = PBXBuildFile; fileRef = F9AE333ECA95951FD8ED4424A16B3433 /* Retrying.h */; settings = {ATTRIBUTES = (Project, ); }; }; - ED5D88309179900553D4065574C01DC4 /* QBImagePicker.storyboard in Resources */ = {isa = PBXBuildFile; fileRef = D20C1F69C8D64CF80267E0043A39E62E /* QBImagePicker.storyboard */; }; - ED95056D908C3FE236BD332F2DA1549D /* Unicode.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 7CB388056028D7AA7C6FD0156B291F39 /* 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"; }; }; - ED9A4149E250CE19F6B6ADFF81DBE62F /* SpookyHashV2.cpp in Sources */ = {isa = PBXBuildFile; fileRef = A2FB913EDB37F8913760401CA81068BD /* SpookyHashV2.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -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\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors"; }; }; - EDBF1C362EA0C9F90761D9057516CA3B /* ScheduledFrameProcessor.h in Headers */ = {isa = PBXBuildFile; fileRef = BE9AC67A44540CE72419BBE469231EA5 /* ScheduledFrameProcessor.h */; settings = {ATTRIBUTES = (Project, ); }; }; - EDDD108D041C3EF38FB9EBF5A4315BF7 /* BugsnagMetadata.h in Headers */ = {isa = PBXBuildFile; fileRef = 416922757DBB94A29AA7BA3BE7FD9908 /* BugsnagMetadata.h */; settings = {ATTRIBUTES = (Project, ); }; }; - EDE8ADD40B65AF973CED240BB4BC2C11 /* RCTImageURLLoader.h in Headers */ = {isa = PBXBuildFile; fileRef = 4DA6CCA1909E5F67EFB196C7F3C14F29 /* RCTImageURLLoader.h */; settings = {ATTRIBUTES = (Project, ); }; }; - EDF9E2C50AD21BB24559C6D83A519B36 /* AtomicUtil-inl.h in Headers */ = {isa = PBXBuildFile; fileRef = 4D4991C2BF9015361FE42050C678D141 /* AtomicUtil-inl.h */; settings = {ATTRIBUTES = (Project, ); }; }; - EE3C85BC78098BB8342507D78A02E897 /* SDImageCacheConfig.m in Sources */ = {isa = PBXBuildFile; fileRef = 7CECBAB05A930D507AE7B0E29056A501 /* SDImageCacheConfig.m */; }; - EE47B233BA980AE3837F75CC6B7D2CE4 /* RCTReconnectingWebSocket.m in Sources */ = {isa = PBXBuildFile; fileRef = 0DF5EBAE45D17E0DE1799E01B3B01984 /* RCTReconnectingWebSocket.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - EE5459EB7041FBE34FA586F697DF57C2 /* BSG_KSBacktrace.c in Sources */ = {isa = PBXBuildFile; fileRef = 66E95A42F0A22197DC0CC828955BCA58 /* BSG_KSBacktrace.c */; }; - EE5F72696C9020B21043E4DB6F811F5A /* SharedProxyCxxModule.h in Headers */ = {isa = PBXBuildFile; fileRef = A01526E3DCC0E11B78DB0E7B3B6F7FB2 /* SharedProxyCxxModule.h */; settings = {ATTRIBUTES = (Project, ); }; }; - EE62E14DF77191186F73849ABBD334FE /* SanitizeThread.h in Headers */ = {isa = PBXBuildFile; fileRef = 909324D1FAB7D91BCC27BF30156B1037 /* SanitizeThread.h */; settings = {ATTRIBUTES = (Project, ); }; }; - EE6B2DF70DF2108CA2E097E4FBBC8A02 /* RCTLayout.m in Sources */ = {isa = PBXBuildFile; fileRef = 94F84EA98D279AB2D0F27FD2F47507A5 /* RCTLayout.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - EE72470E02CA36D0B1EF920FA84B4C8E /* instrumentation.h in Headers */ = {isa = PBXBuildFile; fileRef = 19C40F199DC8A09E224DB48995827F5E /* instrumentation.h */; settings = {ATTRIBUTES = (Project, ); }; }; - EE7FE8B47BEAE181FE13934EE9DA0995 /* RCTPerformanceLogger.h in Headers */ = {isa = PBXBuildFile; fileRef = A8D24D469956C8F6DAEE7C47B001D415 /* RCTPerformanceLogger.h */; settings = {ATTRIBUTES = (Project, ); }; }; - EE82C20EC17914E39BAFE0150F4A68C6 /* BSG_KSCrashSentry_Signal.h in Headers */ = {isa = PBXBuildFile; fileRef = CDF16ECD50D0280EC60B6417A2282ABA /* BSG_KSCrashSentry_Signal.h */; settings = {ATTRIBUTES = (Project, ); }; }; - EE8BC667B237C35A621AA66F6E3B6E3A /* LifoSem.h in Headers */ = {isa = PBXBuildFile; fileRef = F5C47C24A4E9B381B4471B21AF14D50F /* LifoSem.h */; settings = {ATTRIBUTES = (Project, ); }; }; - EE9C7AAB735A46CF2BD44DE9B71A4A6B /* raw_logging.cc in Sources */ = {isa = PBXBuildFile; fileRef = 644E133CF3831EA6989CE8834B6575E6 /* raw_logging.cc */; settings = {COMPILER_FLAGS = "-Wno-shorten-64-to-32"; }; }; - EEB0ED6DDF616D30E5C8260D5E17D9F8 /* SysResource.h in Headers */ = {isa = PBXBuildFile; fileRef = C4AFB3459812979FCF112335B1814369 /* SysResource.h */; settings = {ATTRIBUTES = (Project, ); }; }; - EECAE7C1CFCFA1C953F0F4FD74697DCD /* Utility.h in Headers */ = {isa = PBXBuildFile; fileRef = 6ADEB961DEDA65743BCB157D54689070 /* Utility.h */; settings = {ATTRIBUTES = (Project, ); }; }; - EECD6ABA1686747B7A909816221D84D6 /* RCTSafeAreaView.h in Headers */ = {isa = PBXBuildFile; fileRef = B7789F4DD5CB94A03DCE8958303BAB32 /* RCTSafeAreaView.h */; settings = {ATTRIBUTES = (Project, ); }; }; - EEE36BA373727B18FD3B8DEADC356D57 /* Partial.h in Headers */ = {isa = PBXBuildFile; fileRef = AD85699B31E40102C07F98DDD2FD6527 /* Partial.h */; settings = {ATTRIBUTES = (Project, ); }; }; - EEECF7D9260ADCFC3B9947694DE24B59 /* io_dec.c in Sources */ = {isa = PBXBuildFile; fileRef = 68060AEBDFA64E78B014DA913C5C68F2 /* io_dec.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; - EF03AC67826FC3FAA7B815C0F471D0DA /* PThread.h in Headers */ = {isa = PBXBuildFile; fileRef = 42E3DD27E3C62F7A40FD2F65470B1589 /* PThread.h */; settings = {ATTRIBUTES = (Project, ); }; }; - EF070EC98256E60B908537CA9A022E54 /* Thread.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 3956A43D3DF53657C5F1C8AB141FCA72 /* Thread.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - EF2EAB38780976FD8FB6EC7D76B06051 /* FIRCLSGlobals.h in Headers */ = {isa = PBXBuildFile; fileRef = B48D3B93369EBB01AFF2CD25B126C52E /* FIRCLSGlobals.h */; settings = {ATTRIBUTES = (Project, ); }; }; - EF2FC081E2C1F8E7DC310E222BF43F55 /* RCTNativeModule.h in Headers */ = {isa = PBXBuildFile; fileRef = 90E0C5C1D038330241A0A2B207F13D08 /* RCTNativeModule.h */; settings = {ATTRIBUTES = (Project, ); }; }; - EF350862356CA2CA24CD9557640C1ADB /* RNBridgeModule.h in Headers */ = {isa = PBXBuildFile; fileRef = E1F1FF326CB1EAE4FF47CAA50C53DD6E /* RNBridgeModule.h */; settings = {ATTRIBUTES = (Project, ); }; }; - EF384063531EC93D811EE18EA798964A /* RCTAnimatedNode.h in Headers */ = {isa = PBXBuildFile; fileRef = 56E5FA42808A7E3FA3882E05796F2BE2 /* RCTAnimatedNode.h */; settings = {ATTRIBUTES = (Project, ); }; }; - EF43B0B2935894B2E28A9745F76C33BB /* UniqueInstance.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 42D2022526F4B2777243BC68F4ABF49F /* 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"; }; }; - EF6E7BB7625002F41585CBB2162532B8 /* FIRDependency.h in Headers */ = {isa = PBXBuildFile; fileRef = F77B5FF434ABB196616C9FDD68A45DBA /* FIRDependency.h */; settings = {ATTRIBUTES = (Project, ); }; }; - EF751BFB54ACCF62AD691C93A1D636D8 /* FiberIOExecutor.h in Headers */ = {isa = PBXBuildFile; fileRef = D8698ACE66F07F626C2B700C0BA8D62B /* FiberIOExecutor.h */; settings = {ATTRIBUTES = (Project, ); }; }; - EF763F9D299027011E7E2D9D77FF645A /* IOBufQueue.cpp in Sources */ = {isa = PBXBuildFile; fileRef = E2BB7A4727306FDE5D3F4BFAFD898726 /* 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"; }; }; - EF7CDFA2C1805CED24ABDC5E5F281A2E /* Phase.h in Headers */ = {isa = PBXBuildFile; fileRef = 1E89B6B8FDB288DDFFC2F6F07006D9FA /* Phase.h */; settings = {ATTRIBUTES = (Project, ); }; }; - EF8A7AAE140B717E7D4865D7BEC2A810 /* RCTSurfaceDelegate.h in Headers */ = {isa = PBXBuildFile; fileRef = 4D2B5DC912FBCDE6B892CA46F279A39D /* RCTSurfaceDelegate.h */; settings = {ATTRIBUTES = (Project, ); }; }; - EF8EC827EA6C28C10C06AE297C7C4558 /* SDWebImageIndicator.m in Sources */ = {isa = PBXBuildFile; fileRef = 55B433F142C10604DED65C5B3CD6AE2C /* SDWebImageIndicator.m */; }; - EFB0E8A9826CE09004DD59FF5F413CD4 /* RCTAppearance.h in Headers */ = {isa = PBXBuildFile; fileRef = 7A608E0C3CA94318016EB7D1EC63456F /* RCTAppearance.h */; settings = {ATTRIBUTES = (Project, ); }; }; - EFBC69F78EC6D96B4C4E4C93B50EC74A /* Registration.h in Headers */ = {isa = PBXBuildFile; fileRef = 3F3BD9FE0ECD5B49CEFE657B3B74DA51 /* Registration.h */; settings = {ATTRIBUTES = (Project, ); }; }; - EFC03F1EAEC36B032E66084433B4DBAA /* evdns.h in Headers */ = {isa = PBXBuildFile; fileRef = F5F787DF75B9E09594E5251817DDFB91 /* evdns.h */; settings = {ATTRIBUTES = (Project, ); }; }; - EFDC26BEF6564DFD8368512DB220CC16 /* ARTNode.h in Headers */ = {isa = PBXBuildFile; fileRef = 0FAD6BB44C5FCB7E7D3E10085572B5B0 /* ARTNode.h */; settings = {ATTRIBUTES = (Project, ); }; }; - EFEDDF3B8F0F41CFE8144762FA8C088B /* endian_inl_utils.h in Headers */ = {isa = PBXBuildFile; fileRef = 82908EB5AA22CDA5F63B991A8908CDC9 /* endian_inl_utils.h */; settings = {ATTRIBUTES = (Project, ); }; }; - F0005D0971491565CD5110C617DD4E5C /* RCTProfile.m in Sources */ = {isa = PBXBuildFile; fileRef = BF6A49E6A21E30BB62BAC2885B08D2F2 /* RCTProfile.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - F02C1AC3BB6EACA478292626B862C6AB /* JSONSchema.h in Headers */ = {isa = PBXBuildFile; fileRef = 1BE2CE95755FD233875DDCC84C917EA0 /* JSONSchema.h */; settings = {ATTRIBUTES = (Project, ); }; }; - F031EFBB04D85BDF1D3CE1603D03A720 /* RNGestureHandlerEvents.m in Sources */ = {isa = PBXBuildFile; fileRef = 70C686F8D4EC9EA5ED579895B57B2716 /* RNGestureHandlerEvents.m */; }; - F03855329B4AD75B96659D181EA21531 /* Uri.h in Headers */ = {isa = PBXBuildFile; fileRef = 8C8477445D129B95B0123B10B04C8B2A /* Uri.h */; settings = {ATTRIBUTES = (Project, ); }; }; - F05FDA8067FD7D1C0E1E67A69560BB9A /* EventBaseManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 68E5B1003B8DCEFF9213D3CA6C3AA20D /* EventBaseManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; - F07567CCB1BD3727ED17130BAC97D1E8 /* vp8i_dec.h in Headers */ = {isa = PBXBuildFile; fileRef = 4340B7430F3D81B338E9EB775A64D8D7 /* vp8i_dec.h */; settings = {ATTRIBUTES = (Project, ); }; }; - F07AEF86AC6121F76D4FC73E398D9F4C /* Core.h in Headers */ = {isa = PBXBuildFile; fileRef = 147256C1CA6ECB603F9BCC7C65C426CE /* Core.h */; settings = {ATTRIBUTES = (Project, ); }; }; - F07D0AE11822588E3F719C7B61A8B80C /* experiments.h in Headers */ = {isa = PBXBuildFile; fileRef = A72F4F01C82EB2FEF9C866D788AA26ED /* experiments.h */; settings = {ATTRIBUTES = (Project, ); }; }; - F095FDC20B3FDC932972555EA99830D2 /* ChannelRequester.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 18BD1B7E92E88CC14EC8DE9514733A18 /* ChannelRequester.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -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 -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors"; }; }; - F0A2FE162C0A1632A19056A64FDF9458 /* RCTVirtualTextViewManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 0E66BD9275AF1DCFAE284A18EDB3DB96 /* RCTVirtualTextViewManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; - F0B7A5CEBB42EB368B082EAE88141AA0 /* FKUserDefaultsSwizzleUtility.h in Headers */ = {isa = PBXBuildFile; fileRef = 98C50B476070D8672516720D0DC6473F /* FKUserDefaultsSwizzleUtility.h */; settings = {ATTRIBUTES = (Project, ); }; }; - F12A6FFE202439992AF17C7AE792019F /* UIView+SKInvalidation.h in Headers */ = {isa = PBXBuildFile; fileRef = 5617A0417C21E344068EC440BE7AE2FA /* UIView+SKInvalidation.h */; settings = {ATTRIBUTES = (Project, ); }; }; - F13B15A4EF14C60B975E49962DF70965 /* FlipperPlugin.h in Headers */ = {isa = PBXBuildFile; fileRef = 34489AAB6DBFFF119F52D9D8F28A5A0D /* FlipperPlugin.h */; settings = {ATTRIBUTES = (Project, ); }; }; - F14E2E18B4F2DC8E75A988E85DE77DA0 /* SysMman.h in Headers */ = {isa = PBXBuildFile; fileRef = 4B1D0814E55E56B96BFC377C0059C7FF /* SysMman.h */; settings = {ATTRIBUTES = (Project, ); }; }; - F16076BAB6001BD0FED3950911E50C56 /* Math.h in Headers */ = {isa = PBXBuildFile; fileRef = D32F6732FAD1516979A5B9333CC2ED3F /* Math.h */; settings = {ATTRIBUTES = (Project, ); }; }; - F16322AB5F37F1184E6B4AC0BBFB671F /* BSG_KSCrashState.h in Headers */ = {isa = PBXBuildFile; fileRef = 0A7315913B6B00C96B1969BC6DB6EA51 /* BSG_KSCrashState.h */; settings = {ATTRIBUTES = (Project, ); }; }; - F1657CAD67C98E4364AE50501E714606 /* Demangle.h in Headers */ = {isa = PBXBuildFile; fileRef = D25CC58E2E6BE4726CC342479689DE85 /* Demangle.h */; settings = {ATTRIBUTES = (Project, ); }; }; - F19164904B4C3E07CAF375DE95909F1C /* WaitOptions.h in Headers */ = {isa = PBXBuildFile; fileRef = DF0B15772E0E0B0756F827B79AD46102 /* WaitOptions.h */; settings = {ATTRIBUTES = (Project, ); }; }; - F194212CD638F0EC8581A5D413EA480F /* RNCWebView.m in Sources */ = {isa = PBXBuildFile; fileRef = 5621347BF283A428BFA1DECDA7C75631 /* RNCWebView.m */; }; - F1D6CAB5D35412D70DB5C6F42EDA2BA9 /* OpenSSLCertUtils.h in Headers */ = {isa = PBXBuildFile; fileRef = DC49F5F953C7FE75F85B0FE2D307C478 /* OpenSSLCertUtils.h */; settings = {ATTRIBUTES = (Project, ); }; }; - F1D9164589C65FCA0D769B432C50F608 /* http.c in Sources */ = {isa = PBXBuildFile; fileRef = A16956E0F13387473A1FADDE58ECD237 /* http.c */; }; - F1DDE8B1ED3759299992830E7CEE480A /* Exception.h in Headers */ = {isa = PBXBuildFile; fileRef = 71958D0A1F6512F350E97FAA14DCFAB9 /* Exception.h */; settings = {ATTRIBUTES = (Project, ); }; }; - F22BD3E903F69569F8C839A08E3DA61B /* NetOps.h in Headers */ = {isa = PBXBuildFile; fileRef = C702EBD3C9260919ACAA7E0A82E95960 /* NetOps.h */; settings = {ATTRIBUTES = (Project, ); }; }; - F249DEECE91482636A20524122003F89 /* ThreadPoolExecutor.h in Headers */ = {isa = PBXBuildFile; fileRef = 8A8419792B253793EEFA61EE8E0A6E9E /* ThreadPoolExecutor.h */; settings = {ATTRIBUTES = (Project, ); }; }; - F25843714AD080F571DFAB9C7B6E4925 /* MMKV.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 5CA67C3517994DD4BC785DB3A2B4FB1A /* MMKV.cpp */; settings = {COMPILER_FLAGS = "-x objective-c++ -fno-objc-arc"; }; }; - F277AAD3A9C1DF3D27CD5B747DA1BFE0 /* String.h in Headers */ = {isa = PBXBuildFile; fileRef = 7799E18DBF8044E92CF250F46DCD321D /* String.h */; settings = {ATTRIBUTES = (Project, ); }; }; - F28FC996E9D7C12E3F41C1B640ABB2A5 /* Compression.h in Headers */ = {isa = PBXBuildFile; fileRef = 5321578E4C914574AC5A3F7F7ACF0704 /* Compression.h */; settings = {ATTRIBUTES = (Project, ); }; }; - F2A7A5F33E7DF4C6A8F5520A66AF831D /* FlipperKitLayoutPlugin.h in Headers */ = {isa = PBXBuildFile; fileRef = 302B252F9DADA18163B5E886774704D3 /* FlipperKitLayoutPlugin.h */; settings = {ATTRIBUTES = (Project, ); }; }; - F2D0A70D9E495E49F40A40BACD25A8B1 /* FKUserDefaultsSwizzleUtility.m in Sources */ = {isa = PBXBuildFile; fileRef = 269F7282EBA65F5D446AC2E31FB83CF0 /* FKUserDefaultsSwizzleUtility.m */; settings = {COMPILER_FLAGS = "-DDEBUG=1 -DFLIPPER_OSS=1 -DFB_SONARKIT_ENABLED=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -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"; }; }; - F2DE71C4957C076193C528C12CE4C299 /* SDImageIOAnimatedCoder.m in Sources */ = {isa = PBXBuildFile; fileRef = 3B8A3FAEDB2F64DD6D6F17CD24CA370D /* SDImageIOAnimatedCoder.m */; }; - F337F1DB7A57DD1C80FA03307D48110E /* FIRCLSOnboardingOperation.h in Headers */ = {isa = PBXBuildFile; fileRef = 08A2D3ED61203699C6E69AEB06D1C0BA /* FIRCLSOnboardingOperation.h */; settings = {ATTRIBUTES = (Project, ); }; }; - F346B3C863F2759CFDD3C928B7889B25 /* FIRAnalyticsInterop.h in Headers */ = {isa = PBXBuildFile; fileRef = 374704F57732D2F851254C648CA148F2 /* FIRAnalyticsInterop.h */; settings = {ATTRIBUTES = (Project, ); }; }; - F34F42EF7B5ADEE10A59D0AFF3E9F4B9 /* TestObserver.h in Headers */ = {isa = PBXBuildFile; fileRef = C259D520D409213364BF1A2188CC03BC /* TestObserver.h */; settings = {ATTRIBUTES = (Project, ); }; }; - F3654A6E076904EE3BA4D9EB5E4A5502 /* Promise.h in Headers */ = {isa = PBXBuildFile; fileRef = BD083BEA419C7DF1EB778B933C9AEA62 /* Promise.h */; settings = {ATTRIBUTES = (Project, ); }; }; - F389A8E30178964CE0918520E4C63453 /* ThreadCachedInts.h in Headers */ = {isa = PBXBuildFile; fileRef = 2D813A9476AB28E62E3DA121A0362C1B /* ThreadCachedInts.h */; settings = {ATTRIBUTES = (Project, ); }; }; - F3949D4F8485FC7B07488774BC4777F4 /* FIRCrashlytics.h in Headers */ = {isa = PBXBuildFile; fileRef = 2C616658CC648E09155A506047BDB957 /* FIRCrashlytics.h */; settings = {ATTRIBUTES = (Project, ); }; }; - F395703BBAD9330714B1C1D18106D2E7 /* pb_decode.h in Headers */ = {isa = PBXBuildFile; fileRef = A72E28AEF6DF1265BDD71B5670AF408C /* pb_decode.h */; settings = {ATTRIBUTES = (Project, ); }; }; - F3A5DC70729A04DC781EC89C2BF28DE8 /* RCTSurfacePresenterStub.m in Sources */ = {isa = PBXBuildFile; fileRef = CC799336E05389500EC88E957FB42160 /* RCTSurfacePresenterStub.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - F3B7F04FA362B8A3AA3B307AA9407029 /* SingleWriterFixedHashMap.h in Headers */ = {isa = PBXBuildFile; fileRef = EAD4FACB9D0471C931F15BC3D70024B9 /* SingleWriterFixedHashMap.h */; settings = {ATTRIBUTES = (Project, ); }; }; - F3CD94B46A7D70F303A1A7B69A1D7FF9 /* BugsnagLastRunInfo.m in Sources */ = {isa = PBXBuildFile; fileRef = 434E94F8ABB8EC5550FB9722BBAB5A64 /* BugsnagLastRunInfo.m */; }; - F3D1277CC08C275020B3DCDDC03630CF /* ar.lproj in Resources */ = {isa = PBXBuildFile; fileRef = D138EEBF36D8E69C1BB1C575F483FB4B /* ar.lproj */; }; - F3E2B0A5740BE497B3C034AA098983DC /* ObservingInputAccessoryViewTemp.m in Sources */ = {isa = PBXBuildFile; fileRef = F0E2A3B05B70177D3701F3E365014AB2 /* ObservingInputAccessoryViewTemp.m */; }; - F3EC25FB83B45B7741D842E9CEA9B424 /* F14Table.h in Headers */ = {isa = PBXBuildFile; fileRef = 3C405EC7A77603ED777850B068C8117B /* F14Table.h */; settings = {ATTRIBUTES = (Project, ); }; }; - F40FA2995909681AF26E5DEA3A8E31D3 /* Invoke.h in Headers */ = {isa = PBXBuildFile; fileRef = 393CE8EC718597E11A7CEECF30F7B927 /* Invoke.h */; settings = {ATTRIBUTES = (Project, ); }; }; - F413973DA3F708F736163BDA441E6923 /* PromisesObjC-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = DC80956E306D104D9DA8EE53BC5F76CE /* PromisesObjC-dummy.m */; }; - F417563AE9F7E963923D828B729120FD /* EventUtil.h in Headers */ = {isa = PBXBuildFile; fileRef = D6DA5D70F73C5260C38572CAB82003DB /* EventUtil.h */; settings = {ATTRIBUTES = (Project, ); }; }; - F419AD6BA03935A851798FF9697FB620 /* EXImageLoader.m in Sources */ = {isa = PBXBuildFile; fileRef = 2BE952648F93797D468722B37002481C /* EXImageLoader.m */; }; - F423B832E82766817CCB176696EE0DFC /* READebugNode.h in Headers */ = {isa = PBXBuildFile; fileRef = 6DE49ECD736F3A64C331F6A1E4F30C4E /* READebugNode.h */; settings = {ATTRIBUTES = (Project, ); }; }; - F42ADE5933BC4A89804B49459E74A76D /* RCTSubtractionAnimatedNode.h in Headers */ = {isa = PBXBuildFile; fileRef = 5FE6C989797E55076A1A74AF992750C5 /* RCTSubtractionAnimatedNode.h */; settings = {ATTRIBUTES = (Project, ); }; }; - F42C8BF58D5B89A62977257C8D106EE5 /* DoubleConversion-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = E3D5FF0ED8DC8C460ACAF715A3DACD19 /* DoubleConversion-dummy.m */; }; - F42FE2DAABBD5FA9F6CD238D8F09EF5D /* Rcu.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 7D6DC76017C081128AF141B447DA147B /* 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"; }; }; - F4367E4512400BBFF59CB94299823ECC /* FIRComponentType.h in Headers */ = {isa = PBXBuildFile; fileRef = 2151DEF50B4887F6217F1F2C8F83338A /* FIRComponentType.h */; settings = {ATTRIBUTES = (Project, ); }; }; - F440ADBAB2236E5C36D7C95AAA11AEDE /* TcpConnectionAcceptor.h in Headers */ = {isa = PBXBuildFile; fileRef = F83F91B2D05DD47B50B966F30439E031 /* TcpConnectionAcceptor.h */; settings = {ATTRIBUTES = (Project, ); }; }; - F466FD1A825158171BB105F385CE38FF /* RNNativeViewHandler.m in Sources */ = {isa = PBXBuildFile; fileRef = E64D6F2518426A503477914FC7324C80 /* RNNativeViewHandler.m */; }; - F47834738C3399C03CB112AC256CD918 /* FireAndForgetBasedFlipperResponder.h in Headers */ = {isa = PBXBuildFile; fileRef = AA3C8BBE1A936D7951F79A44B7FD02E2 /* FireAndForgetBasedFlipperResponder.h */; settings = {ATTRIBUTES = (Project, ); }; }; - F480B6E9D345916E799C85E993804112 /* AtFork.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 56519DD0C7D108E7542EE6CBD4386759 /* 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"; }; }; - F483BEA179CC564681C7B18DDCEE9377 /* RNDateTimePicker.h in Headers */ = {isa = PBXBuildFile; fileRef = 01BFEF506A51006C8E0ADF8BA799173D /* RNDateTimePicker.h */; settings = {ATTRIBUTES = (Project, ); }; }; - F496D87AA8C7371E866779C107874687 /* FIRCLSMultipartMimeStreamEncoder.m in Sources */ = {isa = PBXBuildFile; fileRef = CBD2370D02EB3B8FBD40A033B277308D /* FIRCLSMultipartMimeStreamEncoder.m */; }; - F49C2FA8B1239AA5E35582766C9F05C6 /* RNPushKitEventListener.m in Sources */ = {isa = PBXBuildFile; fileRef = 9284728F7EFB51C94FA364446012C888 /* RNPushKitEventListener.m */; }; - F4A418B2450656A9D2987B969129CF86 /* SDFileAttributeHelper.m in Sources */ = {isa = PBXBuildFile; fileRef = A45B86740B69AAA5C0F05B0A58EDE5CF /* SDFileAttributeHelper.m */; }; - F4B02419BA3DFF8783C2541D0104A8CF /* ExecutorWithPriority.cpp in Sources */ = {isa = PBXBuildFile; fileRef = AD8969F8B8FA962CAE381726C768953E /* ExecutorWithPriority.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -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\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors"; }; }; - F4C08A0CF246E3DE0AD81633533E750A /* SafeAreaSpacerShadowView.m in Sources */ = {isa = PBXBuildFile; fileRef = F2D103493A4E5E2BFF321613C9284ED7 /* SafeAreaSpacerShadowView.m */; }; - F4D59FBF8971EED16A3A357859818125 /* RNCommandsHandler.m in Sources */ = {isa = PBXBuildFile; fileRef = 996F677F0C4D75E0BA8139D2D0B4FF19 /* RNCommandsHandler.m */; }; - F4EA0B1497921A488822DE891ABC0448 /* Hazptr.h in Headers */ = {isa = PBXBuildFile; fileRef = 0968102F2373098DC9AE92B7935D4ED8 /* Hazptr.h */; settings = {ATTRIBUTES = (Project, ); }; }; - F4F60C96F4B74BC9F42ECE082210F3C9 /* Pretty.h in Headers */ = {isa = PBXBuildFile; fileRef = 144B46E1E0D1B4E0404E9472E9B7ED9B /* Pretty.h */; settings = {ATTRIBUTES = (Project, ); }; }; - F4FE80AB2EA8DD144D7457A12534D90D /* QBAlbumsViewController.h in Headers */ = {isa = PBXBuildFile; fileRef = F090F061AC5C4B0E1DC3E845757F1542 /* QBAlbumsViewController.h */; settings = {ATTRIBUTES = (Project, ); }; }; - F53CBB9B5039D55ED5F17513D84F2FBD /* Subprocess.h in Headers */ = {isa = PBXBuildFile; fileRef = 7627539D8AF7D002F4A4360B6B27BFFF /* Subprocess.h */; settings = {ATTRIBUTES = (Project, ); }; }; - F53E3E1E16D23A3C1C612D460BB12515 /* ro.lproj in Resources */ = {isa = PBXBuildFile; fileRef = 8A8E9CFBF687EC1E6D5F284EC2205B4D /* ro.lproj */; }; - F542426BD34A99AA4D65072269298C3F /* RCTBaseTextViewManager.m in Sources */ = {isa = PBXBuildFile; fileRef = CDD860D6ECAD3BA713BD4D1F7DC63507 /* RCTBaseTextViewManager.m */; }; - F5501B9BD875517E4B2EC3FBC896C4C7 /* RCTRawTextViewManager.h in Headers */ = {isa = PBXBuildFile; fileRef = AA7FC102D46DBA597743B98D535FAB2F /* RCTRawTextViewManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; - F55D50D48DDECD7537EBA6D3AE0AF38D /* TcpConnectionAcceptor.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 45194B070A74DA7215769FF55734FF1C /* TcpConnectionAcceptor.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -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 -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors"; }; }; - F55FA4914C9CAC4809FDA00BAF1D17DC /* HazptrHolder.h in Headers */ = {isa = PBXBuildFile; fileRef = FA45F4A628D2428B77D2FC2F4E4BD03F /* HazptrHolder.h */; settings = {ATTRIBUTES = (Project, ); }; }; - F56F310CAC7CB10F55EAE8F2E1C6E694 /* evconfig-private.h in Headers */ = {isa = PBXBuildFile; fileRef = 77E27FA756A6B7F123B5FD0442782FD4 /* evconfig-private.h */; settings = {ATTRIBUTES = (Project, ); }; }; - F572861425F80702F338EDE222E82FC2 /* AtomicUnorderedMap.h in Headers */ = {isa = PBXBuildFile; fileRef = 614BA35B6914DE93A82BE6DC1195EBE9 /* AtomicUnorderedMap.h */; settings = {ATTRIBUTES = (Project, ); }; }; - F58A750DFFCE00A7F8C473C4394C935A /* RCTInputAccessoryView.m in Sources */ = {isa = PBXBuildFile; fileRef = AF1052A3AA28D97DA92D09B41486C8AE /* RCTInputAccessoryView.m */; }; - F59CA967320D9BB376F3A50E43278038 /* SerialExecutor.h in Headers */ = {isa = PBXBuildFile; fileRef = CBC7720687E8A53CEA1A579059D11CFD /* SerialExecutor.h */; settings = {ATTRIBUTES = (Project, ); }; }; - F5B06968D07E0905DC00289C01AABB9D /* StreamsWriter.h in Headers */ = {isa = PBXBuildFile; fileRef = B173169CAFCA51717A0990FA0F85CAF4 /* StreamsWriter.h */; settings = {ATTRIBUTES = (Project, ); }; }; - F5B44CD867B849504948CCAA1D0DF236 /* ARTRenderable.h in Headers */ = {isa = PBXBuildFile; fileRef = C6CFB06B15368338718A38E06350FC81 /* ARTRenderable.h */; settings = {ATTRIBUTES = (Project, ); }; }; - F5BC5D47E562AD877ED6742AB4589960 /* SKResponseInfo.h in Headers */ = {isa = PBXBuildFile; fileRef = 0146ECCB0970B6BA42AE57E3AE89E1E4 /* SKResponseInfo.h */; settings = {ATTRIBUTES = (Project, ); }; }; - F5BD0E6B6DF3CB46CF3A1BCF73ADDE09 /* FIRCLSContext.m in Sources */ = {isa = PBXBuildFile; fileRef = 1E4230BE8F440376E8C2056CE10932FB /* FIRCLSContext.m */; }; - F5D3E6ADF8346099642D6B94121F5D00 /* RCTImageLoaderProtocol.h in Headers */ = {isa = PBXBuildFile; fileRef = E6C7448F6E74F1B3741E80C1407DB9AA /* RCTImageLoaderProtocol.h */; settings = {ATTRIBUTES = (Project, ); }; }; - F5E4735FFE2E2971E6330450EE6B82FC /* EXFileSystemLocalFileHandler.h in Headers */ = {isa = PBXBuildFile; fileRef = 79D0F4BEC16414280B347604DB4E25E4 /* EXFileSystemLocalFileHandler.h */; settings = {ATTRIBUTES = (Project, ); }; }; - F5ED92DD00217F5B31E36D164EB8FA4E /* Fingerprint.h in Headers */ = {isa = PBXBuildFile; fileRef = 7D1197EAB8DC51BB58614FA311213FE6 /* Fingerprint.h */; settings = {ATTRIBUTES = (Project, ); }; }; - F5F3A2C47046A40E8452C02B8209E5E0 /* BSGInternalErrorReporter.m in Sources */ = {isa = PBXBuildFile; fileRef = 023D1714BC6B2A0B494473E614844FA4 /* BSGInternalErrorReporter.m */; }; - F5FEE2C3E452876030ADB3D139C7B3EB /* RCTTransformAnimatedNode.h in Headers */ = {isa = PBXBuildFile; fileRef = 03FBFF30594F0CEA591FF451970653F4 /* RCTTransformAnimatedNode.h */; settings = {ATTRIBUTES = (Project, ); }; }; - F604CDE3522C85E4D2A64D403542A20F /* GULLoggerLevel.h in Headers */ = {isa = PBXBuildFile; fileRef = 1B02821B6E81E20C9CC6052F61C621C4 /* GULLoggerLevel.h */; settings = {ATTRIBUTES = (Project, ); }; }; - F64F96678B2FACF209B69700EAE9879A /* MiniPBCoder.h in Headers */ = {isa = PBXBuildFile; fileRef = A760025F9DCA8E281E648E58C5F5CFD8 /* MiniPBCoder.h */; settings = {ATTRIBUTES = (Project, ); }; }; - F6546656BBCDA692D8AC0DAF2B22316B /* Benchmark.h in Headers */ = {isa = PBXBuildFile; fileRef = C56532EC0EFA749A87186D083FF75C66 /* Benchmark.h */; settings = {ATTRIBUTES = (Project, ); }; }; - F69B725D133A0C17F68F1AE4EA9CD309 /* SSLContext.h in Headers */ = {isa = PBXBuildFile; fileRef = B2ACB7C42F1DE37F79D071DC63437F91 /* SSLContext.h */; settings = {ATTRIBUTES = (Project, ); }; }; - F6BBB5AB6F0FBE1D39BFB1B2E8542B81 /* IStream.h in Headers */ = {isa = PBXBuildFile; fileRef = 321BE554D2E363EDFEC003839ADA7C62 /* IStream.h */; settings = {ATTRIBUTES = (Project, ); }; }; - F6DA5FFDC62D0B4EE86F28F1704D258C /* ScopeGuard.h in Headers */ = {isa = PBXBuildFile; fileRef = E96622D92C07CF69EA6BEF2AA363F0A1 /* ScopeGuard.h */; settings = {ATTRIBUTES = (Project, ); }; }; - F6DD8C63B7B4C00F5466C6FE217FA62E /* GroupVarintDetail.h in Headers */ = {isa = PBXBuildFile; fileRef = 4C7DD8FD043A47577F15DC6CF75B2B5F /* GroupVarintDetail.h */; settings = {ATTRIBUTES = (Project, ); }; }; - F6F78D543DAE080607B3A86197FAF7AC /* GULNetworkConstants.h in Headers */ = {isa = PBXBuildFile; fileRef = 5E3947DC22A5110AC3C2BEA168E2B5E5 /* GULNetworkConstants.h */; settings = {ATTRIBUTES = (Project, ); }; }; - F700728CE6044893606501F341C4D0AB /* Executor.h in Headers */ = {isa = PBXBuildFile; fileRef = FBB320002E181B764E4B39247F2C49AA /* Executor.h */; settings = {ATTRIBUTES = (Project, ); }; }; - F717871519E8CD3340D51DE6CAC298E2 /* RCTDatePicker.m in Sources */ = {isa = PBXBuildFile; fileRef = 3E21C45B397F5E0D718972EB9A1AA3BD /* RCTDatePicker.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - F71B248075F1936754E6DDDC27E61B0E /* SetupResumeAcceptor.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 3E9C9ECE7547F686B756902C9B85AD0D /* SetupResumeAcceptor.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -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 -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors"; }; }; - F71E2166131BB9A8CA28F29B0683CC0D /* BugsnagCrashSentry.m in Sources */ = {isa = PBXBuildFile; fileRef = 01EE423A9240BC77F04F0954BFE9AB21 /* BugsnagCrashSentry.m */; }; - F726406A8833FEB1EDF44B032CBB3C11 /* RCTMaskedViewManager.m in Sources */ = {isa = PBXBuildFile; fileRef = F19FBB1C6850FD0D010A5CE4BEA22D3D /* RCTMaskedViewManager.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - F73A7E6B081017C3B9444BEC325487FD /* PolyDetail.h in Headers */ = {isa = PBXBuildFile; fileRef = D10F12D128550E3DC072FBFC7CAF85D8 /* PolyDetail.h */; settings = {ATTRIBUTES = (Project, ); }; }; - F75C507189DEFCF81FF4E230CFCFE137 /* rn-fetch-blob-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = B2239967123C25EBE50C9AE997EBA3B2 /* rn-fetch-blob-dummy.m */; }; - F76FA8AB88F47BE2D45B7F9D375A558C /* RCTKeyCommandsManager.m in Sources */ = {isa = PBXBuildFile; fileRef = 598032C41ED7209D4D75542FF1256B60 /* RCTKeyCommandsManager.m */; }; - F7701AA1791854F24F2B744B6A3F331C /* BugsnagReactNative-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 4A503693896CA041F220F3392F98D2C4 /* BugsnagReactNative-dummy.m */; }; - F78AD42E06E698509C976499DFF58EE2 /* Inspector.cpp in Sources */ = {isa = PBXBuildFile; fileRef = CCE6F0D85D54A00E182C45B6F5C344B2 /* Inspector.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - F78BDCE200CF17AE1A5CFD0DA4EE3649 /* histogram_enc.c in Sources */ = {isa = PBXBuildFile; fileRef = 85CCC568F8B4853890D4002955C643F0 /* histogram_enc.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; - F7A8CFC115E01C98F9E257A450DB654C /* FIRCLSUUID.m in Sources */ = {isa = PBXBuildFile; fileRef = 5DFDE0F1F6827D9150F1F6A956057CA6 /* FIRCLSUUID.m */; }; - F7B1E491A90F97D1FBB88B009239465A /* RCTSurfaceRootShadowView.m in Sources */ = {isa = PBXBuildFile; fileRef = BB9CC1354ABBC880F7DDB6106CBDE2D0 /* RCTSurfaceRootShadowView.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - F7C53EEBECE430E1D0E3F10C65584D3B /* ApplyTuple.h in Headers */ = {isa = PBXBuildFile; fileRef = F0DD32790BF0B2290C451608FE612652 /* ApplyTuple.h */; settings = {ATTRIBUTES = (Project, ); }; }; - F7D92A1BA55DBFAAB8644E21271B2079 /* RCTRawTextShadowView.h in Headers */ = {isa = PBXBuildFile; fileRef = DF89921367DDB419FD2E008843163C09 /* RCTRawTextShadowView.h */; settings = {ATTRIBUTES = (Project, ); }; }; - F7DA8F02B7D644C6C622BA63C474EDBF /* RNNotificationCenter.h in Headers */ = {isa = PBXBuildFile; fileRef = 389CD7741351AB924E728EC4798FC86B /* RNNotificationCenter.h */; settings = {ATTRIBUTES = (Project, ); }; }; - F7F5DA933AAFFD1325DEBD7BB63FAAD5 /* SKBufferingPlugin+CPPInitialization.h in Headers */ = {isa = PBXBuildFile; fileRef = 30FBF9F21765CD2B2B91FB4335FCE513 /* SKBufferingPlugin+CPPInitialization.h */; settings = {ATTRIBUTES = (Project, ); }; }; - F8143EDA79D6763906F40D9441E20944 /* Future-inl.h in Headers */ = {isa = PBXBuildFile; fileRef = 86C8AFAF52D4784EC7065D0D01FB286C /* Future-inl.h */; settings = {ATTRIBUTES = (Project, ); }; }; - F8410DD99AEA707624CAE2C75F100A07 /* RCTLayoutAnimationGroup.h in Headers */ = {isa = PBXBuildFile; fileRef = E2E3E7B7F4020EE3A3F8B639ACC00310 /* RCTLayoutAnimationGroup.h */; settings = {ATTRIBUTES = (Project, ); }; }; - F8450B01C250F8071A2E452265156B8E /* RCTUtilsUIOverride.m in Sources */ = {isa = PBXBuildFile; fileRef = A968324B0784C8F950C8F9ED1FEECC6C /* RCTUtilsUIOverride.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - F8531266741C25FBB15DC1B26005C9BA /* RNFBJSON.m in Sources */ = {isa = PBXBuildFile; fileRef = 2A8048665A94723F5E7236C65B4D80F5 /* RNFBJSON.m */; }; - F8581013E9700E95EFB3B792418EE3BD /* RCTScrollContentView.m in Sources */ = {isa = PBXBuildFile; fileRef = 6F662D0D4F3FA959BF89BA93821F6FAB /* RCTScrollContentView.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - F87C8D54DCD81FF760596C59228DF29D /* Math.h in Headers */ = {isa = PBXBuildFile; fileRef = 0BD55AF06C4C5D21CB16B94666B41A91 /* Math.h */; settings = {ATTRIBUTES = (Project, ); }; }; - F893EEE93FE9E361D5164F9A36039008 /* FIRCLSDataCollectionToken.h in Headers */ = {isa = PBXBuildFile; fileRef = EB5BB0A2EBE0C8E9B64B96F6CE49737A /* FIRCLSDataCollectionToken.h */; settings = {ATTRIBUTES = (Project, ); }; }; - F894D9BC72932EE71A6908B345618405 /* CString.h in Headers */ = {isa = PBXBuildFile; fileRef = BE4B2EC9E780573AB23F987993FB301D /* CString.h */; settings = {ATTRIBUTES = (Project, ); }; }; - F8A18CD4C4AAAF3D84EE1059ACEB39F6 /* REACallFuncNode.m in Sources */ = {isa = PBXBuildFile; fileRef = 41BEDDA58A460F4905BC985C1FDBC27D /* REACallFuncNode.m */; }; - F8AF944A4ED054C3018E552E279D5065 /* dynamic.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 6CFDA273373426936C27E061A9BA16A2 /* dynamic.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -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\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors"; }; }; - F8B01FF90F9647EBEC9472A1F0CE3FAE /* RCTReloadCommand.m in Sources */ = {isa = PBXBuildFile; fileRef = 84EC04911BB9E6D9B7856568B9938009 /* RCTReloadCommand.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - F8C12BEA8CCBBEB7AD47DD2BBD95A09C /* SDImageCachesManagerOperation.h in Headers */ = {isa = PBXBuildFile; fileRef = BD3ECCBE605E838A98E04315AF90943A /* SDImageCachesManagerOperation.h */; settings = {ATTRIBUTES = (Project, ); }; }; - F8D330CDC93404A50EE610DBA2891A13 /* RCTCustomInputControllerTemp.m in Sources */ = {isa = PBXBuildFile; fileRef = 1BE007A3B2DCB6601D82C16DCA04FC1C /* RCTCustomInputControllerTemp.m */; }; - F920995B05B070A46E6D3FE7E394CAD4 /* common_sse2.h in Headers */ = {isa = PBXBuildFile; fileRef = 03B96308C041D885CCF507BE7B0B0340 /* common_sse2.h */; settings = {ATTRIBUTES = (Project, ); }; }; - F925F2DF0DA791631303F1AA46832B0D /* FIRCLSUserDefaults.h in Headers */ = {isa = PBXBuildFile; fileRef = 6F25DD195E34542EF84D539694EAD5F0 /* FIRCLSUserDefaults.h */; settings = {ATTRIBUTES = (Project, ); }; }; - F9354085A78A02E78585F70FBA552E2A /* FLEXNetworkObserver.h in Headers */ = {isa = PBXBuildFile; fileRef = 5409A05504A9224238190E1A66F61FAD /* FLEXNetworkObserver.h */; settings = {ATTRIBUTES = (Project, ); }; }; - F935DFCE71C759180A282D16D7FB403E /* MessageTypes.h in Headers */ = {isa = PBXBuildFile; fileRef = A2E6B5FB00130B2A74065468823F5126 /* MessageTypes.h */; settings = {ATTRIBUTES = (Project, ); }; }; - F97495E352CF05902D9B5F5C6A10E2B7 /* SingletonStackTrace.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 0B6320C3DD794AA8706FA4994AD76ADA /* SingletonStackTrace.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -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\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors"; }; }; - F9938D98AD7A356B19576DECAB347044 /* RNFetchBlob.m in Sources */ = {isa = PBXBuildFile; fileRef = E476010170478AC9D7AA25B09F7DCF62 /* RNFetchBlob.m */; }; - F9B3090242E6375F92F75FFF4FB52EA0 /* BSG_KSSysCtl.c in Sources */ = {isa = PBXBuildFile; fileRef = 5A73746A235A5F24EC13651F3F434619 /* BSG_KSSysCtl.c */; }; - F9B4C40ED3AE5323869D3417BF7DC7A5 /* CPortability.h in Headers */ = {isa = PBXBuildFile; fileRef = 17EAE7495E58442FC2FD7773A34CB238 /* CPortability.h */; settings = {ATTRIBUTES = (Project, ); }; }; - F9D870A3B72CBE475B83E1ACB9A0C764 /* RSocketParameters.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 74CD68F1A3B029127CCDC4D6601C3655 /* RSocketParameters.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -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 -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors"; }; }; - F9DB58EDFFBD2FF300718C58DA7CE7EC /* jsilib-windows.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 3F5483E0672F46DDF80A6F09BA5152C4 /* 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"; }; }; - F9DC9CB3BAB3963BD8C0D38E698176CE /* RCTCustomKeyboardViewControllerTemp.h in Headers */ = {isa = PBXBuildFile; fileRef = 568E4B473F5892180E742DDA535A93AE /* RCTCustomKeyboardViewControllerTemp.h */; settings = {ATTRIBUTES = (Project, ); }; }; - F9DED28C8F0BF383F184013D5E1D17D8 /* Sleeper.h in Headers */ = {isa = PBXBuildFile; fileRef = 70675BE4961BC87599BFAD42BBF644C4 /* Sleeper.h */; settings = {ATTRIBUTES = (Project, ); }; }; - F9E0D81E416FFB96308516C42F708EEF /* IndexedMemPool.h in Headers */ = {isa = PBXBuildFile; fileRef = 3DBCF2CFA6B9196E782F05003BFEB3E3 /* IndexedMemPool.h */; settings = {ATTRIBUTES = (Project, ); }; }; - F9F252C6CB2D90DB3C37E770875DA4C8 /* ConnectionFactory.h in Headers */ = {isa = PBXBuildFile; fileRef = 5B00BE8F8B05FC8407638AC7886DFA5A /* ConnectionFactory.h */; settings = {ATTRIBUTES = (Project, ); }; }; - F9F2C514B5F410C5C47CCCD541D1BFEA /* RNPushKitEventHandler.m in Sources */ = {isa = PBXBuildFile; fileRef = 737C47ACA6A64D7767636BBE62E6B723 /* RNPushKitEventHandler.m */; }; - FA079F4E038F040BC1393469199594D3 /* HardwareConcurrency.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 1BB261D6EBB0A06A931BB83D097DB32C /* 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"; }; }; - FA0C73AAE530EE6055621F5CDC948D93 /* Future.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 209301772AC99034EB96B79FE63096F9 /* 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"; }; }; - FA25C6CA15033C044CCBED3A73A9113C /* IDStore.h in Headers */ = {isa = PBXBuildFile; fileRef = A8F437656C3AF0F0D47F9C9E340C3D0B /* IDStore.h */; settings = {ATTRIBUTES = (Project, ); }; }; - FA2D65F4643529979AE0BB3F019E9075 /* FIRComponentContainer.h in Headers */ = {isa = PBXBuildFile; fileRef = 603227E13E228FE45C25D295A158787D /* FIRComponentContainer.h */; settings = {ATTRIBUTES = (Project, ); }; }; - FA471FD4EE12D741156C47EDBA0385EE /* SafeAreaSpacerShadowView.h in Headers */ = {isa = PBXBuildFile; fileRef = 589DC083B14AD4EC32A765ECD809C693 /* SafeAreaSpacerShadowView.h */; settings = {ATTRIBUTES = (Project, ); }; }; - FA49438D6C0BCCC65FCD9C21D2716BA2 /* Config.h in Headers */ = {isa = PBXBuildFile; fileRef = AB22F01A08BB12BFA3F69194EBE722CF /* Config.h */; settings = {ATTRIBUTES = (Project, ); }; }; - FA6660038CBA76F686ECABE77A152FCC /* evthread-internal.h in Headers */ = {isa = PBXBuildFile; fileRef = F3B55915438E2A778BBDC814F29F37B8 /* evthread-internal.h */; settings = {ATTRIBUTES = (Project, ); }; }; - FA6D6A963577403FC707CABAF0AE9FB3 /* RCTTurboModuleManager.mm in Sources */ = {isa = PBXBuildFile; fileRef = C63DD0A29BA912799F564DF84CD28550 /* RCTTurboModuleManager.mm */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - FA796C85756A2D3381F95947B0D5F080 /* SparseByteSet.h in Headers */ = {isa = PBXBuildFile; fileRef = BD1B5313E3DFB75390C1A4251F51B5DE /* SparseByteSet.h */; settings = {ATTRIBUTES = (Project, ); }; }; - FA7E5B69817F25D0D615E996A920FF71 /* AtomicUtil.h in Headers */ = {isa = PBXBuildFile; fileRef = 47C809345916A8DA682664885653FA91 /* AtomicUtil.h */; settings = {ATTRIBUTES = (Project, ); }; }; - FA84A09F9FCCD5CC3B296E3569081596 /* FIRCLSURLSessionTask.m in Sources */ = {isa = PBXBuildFile; fileRef = C16AEF8FC19B26B9C212A7F9183DDF93 /* FIRCLSURLSessionTask.m */; }; - FA85A65FD7213D2D1AF43CB59CFE3B88 /* Async.h in Headers */ = {isa = PBXBuildFile; fileRef = 18ADCDBC13F2746435E16CDFE483C6DD /* Async.h */; settings = {ATTRIBUTES = (Project, ); }; }; - FA885E83C0A511A39AA042E2E0E02467 /* Asm.h in Headers */ = {isa = PBXBuildFile; fileRef = 7936B2B68C9F299497D44B44C6790BD2 /* Asm.h */; settings = {ATTRIBUTES = (Project, ); }; }; - FA9BA27127C0DB8995D656B16DBE1606 /* OpenSSL.h in Headers */ = {isa = PBXBuildFile; fileRef = 2FDB606CC614250FF6B4EC84434F465A /* OpenSSL.h */; settings = {ATTRIBUTES = (Project, ); }; }; - FACBA11E2FEAFBCC29029092787EE507 /* AESCrypt.cpp in Sources */ = {isa = PBXBuildFile; fileRef = E2196A5273FA07E66750CC0BAF09C27D /* AESCrypt.cpp */; settings = {COMPILER_FLAGS = "-x objective-c++ -fno-objc-arc"; }; }; - FAD9E0CD359A697C70B85ACE2A0AE80C /* MMKVCore-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = B32D5C22FD2CA2DB5B184D29AD6792C8 /* MMKVCore-dummy.m */; }; - FAE802F76276D16BC040417FB9D92C6D /* RCTTurboModuleManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 9CA6E8C4E777904A2FD84541C7D45F8D /* RCTTurboModuleManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; - FAEFBE0231107508B5B80D629BE11E4E /* TimedDrivableExecutor.h in Headers */ = {isa = PBXBuildFile; fileRef = E5110EEC4FB7CF35A200C38520B5D6C3 /* TimedDrivableExecutor.h */; settings = {ATTRIBUTES = (Project, ); }; }; - FB02388BD13ADEBC2904E3B51791738A /* GoogleDataTransport-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 1EC02292322F492419329A9C87450E9F /* GoogleDataTransport-dummy.m */; }; - FB030E0B40723163A8A5CC37778237DB /* QBCheckmarkView.m in Sources */ = {isa = PBXBuildFile; fileRef = 445FC593F30485717EBE305592618FD6 /* QBCheckmarkView.m */; }; - FB11F5CB79F19A60348E516F49319F5C /* SDWebImagePrefetcher.m in Sources */ = {isa = PBXBuildFile; fileRef = BD96F42BE96BED51567382ECD48D9017 /* SDWebImagePrefetcher.m */; }; - FB13683FEEC61CA6568704C5039EDC4F /* ARTShapeManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 821EFB2AD57FC7AAF6E4807273C20B56 /* ARTShapeManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; - FB364DE81C0EDF06910F910E3ACA8AE5 /* json_pointer.cpp in Sources */ = {isa = PBXBuildFile; fileRef = B2B8C59FD073EE3821727E5FF2FE7236 /* json_pointer.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -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\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors"; }; }; - FB5AF1D223AF92E6A9EC5CA178A5758A /* SSLErrors.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 8F490AB1187BEA7440DB7027375B3B9D /* SSLErrors.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -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\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors"; }; }; - FB829381B9950A960832FC619CF30F7B /* RCTVirtualTextShadowView.h in Headers */ = {isa = PBXBuildFile; fileRef = 478DF8C445CCDF77B39FA9B32149D61C /* RCTVirtualTextShadowView.h */; settings = {ATTRIBUTES = (Project, ); }; }; - FB85BD84C6D686B07BB2BEC64973CD3C /* RCTMultilineTextInputViewManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 395A42BD9767360C5A6BF5EB5CDB1A2E /* RCTMultilineTextInputViewManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; - FBBBA70AA350A601D3F8B8BB338AE08C /* msa_macro.h in Headers */ = {isa = PBXBuildFile; fileRef = EBB8FDCD812D4599E46C88E2E592A7FB /* msa_macro.h */; settings = {ATTRIBUTES = (Project, ); }; }; - FBBBB3541F7462AF3C858EFA9BC186D9 /* libwebp-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 93D2A241AFA45A6CEEA2FA5F519FF56E /* libwebp-dummy.m */; }; - FBBDEC2BDA59B862344D0590603D6153 /* rescaler_neon.c in Sources */ = {isa = PBXBuildFile; fileRef = 65C4D9484C6E95E9F01F5CA361F5F57E /* rescaler_neon.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; - FBC1DE4DED3201D61E5A0BC445113987 /* FlipperRSocketResponder.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 717F866F052C70065D76AAF36F80803C /* FlipperRSocketResponder.cpp */; settings = {COMPILER_FLAGS = "-DFLIPPER_OSS=1 -DFB_SONARKIT_ENABLED=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -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"; }; }; - FBD4C87AAF60E0EEB52CDD9FF5C9F9E2 /* RCTDevSplitBundleLoader.h in Headers */ = {isa = PBXBuildFile; fileRef = 934CDE0CBDE9A0282A8DEC058F6C14E1 /* RCTDevSplitBundleLoader.h */; settings = {ATTRIBUTES = (Project, ); }; }; - FBECF2514DF1D74D6F649DB1ABE31225 /* YogaKit-umbrella.h in Headers */ = {isa = PBXBuildFile; fileRef = D4565DF68C06D16A9AA04709FCD92143 /* YogaKit-umbrella.h */; settings = {ATTRIBUTES = (Project, ); }; }; - FBEFC6BBE6F4A16DBB5336D798FAA110 /* Observables.h in Headers */ = {isa = PBXBuildFile; fileRef = 43861F8B5D923063441C6C9B76B000CA /* Observables.h */; settings = {ATTRIBUTES = (Project, ); }; }; - FBF7EFB6C67314E259032F2DFC7848A8 /* bignum.cc in Sources */ = {isa = PBXBuildFile; fileRef = C6E1B1212C5D216DCE70D3FACC3B83DB /* bignum.cc */; settings = {COMPILER_FLAGS = "-Wno-unreachable-code"; }; }; - FBF813ACF4E92E8E24F513B35C3617BD /* FutureSplitter.h in Headers */ = {isa = PBXBuildFile; fileRef = 3F484593EFF29DBA96F4D324F71F0098 /* FutureSplitter.h */; settings = {ATTRIBUTES = (Project, ); }; }; - FC0CCEFD25A9732DC68C9BD03B05B41E /* RCTSurfaceRootShadowViewDelegate.h in Headers */ = {isa = PBXBuildFile; fileRef = 207111C4FFBA3C94778096073B011DFE /* RCTSurfaceRootShadowViewDelegate.h */; settings = {ATTRIBUTES = (Project, ); }; }; - FC1B5FD19FCDCAF216292C28BE46E018 /* RSocketServer.cpp in Sources */ = {isa = PBXBuildFile; fileRef = B98616A239AE9A3B63B404892883D35F /* RSocketServer.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -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 -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors"; }; }; - FC2BD403DE14AEC7344CD795921030D8 /* SerialExecutor.h in Headers */ = {isa = PBXBuildFile; fileRef = E43D0C392A379945AB4092E47E7E0531 /* SerialExecutor.h */; settings = {ATTRIBUTES = (Project, ); }; }; - FC3DD5BA299719F678DBA3620384A310 /* UMReactNativeAdapter-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 4F04F335D30B43118E83087B7DED120B /* UMReactNativeAdapter-dummy.m */; }; - FC4849280C2CCF6BA68B6EE0C0D7034B /* Util.h in Headers */ = {isa = PBXBuildFile; fileRef = 1E7A67F3728F9137FBCE4D5B6613BAEE /* Util.h */; settings = {ATTRIBUTES = (Project, ); }; }; - FC553389ABB0F4D6E5E06F53079E0C21 /* NSData+EXFileSystem.h in Headers */ = {isa = PBXBuildFile; fileRef = 0846ECB42999CAB007D3A70379B7B14A /* NSData+EXFileSystem.h */; settings = {ATTRIBUTES = (Project, ); }; }; - FC63A7720B39BB353C17EC6DBA1B75E2 /* ExceptionString.h in Headers */ = {isa = PBXBuildFile; fileRef = 337F59CD81DBE94A74954F4597B94B9C /* ExceptionString.h */; settings = {ATTRIBUTES = (Project, ); }; }; - FC68F89AE74DF9CAEBBECD03626CDAB7 /* pl.lproj in Resources */ = {isa = PBXBuildFile; fileRef = 23F9A8394A485E9F98B11A001596AA9B /* pl.lproj */; }; - FC860918E0749AB204DFF627C64D3B47 /* UIImage+Extension.h in Headers */ = {isa = PBXBuildFile; fileRef = C5F18678F590CDEA4A6F29AF36D8C5DC /* UIImage+Extension.h */; settings = {ATTRIBUTES = (Project, ); }; }; - FCA1AF98518897B7CC3CEFDF7CB449FE /* SSLErrors.h in Headers */ = {isa = PBXBuildFile; fileRef = 04B3591ACFC47620F91491211E4222FB /* SSLErrors.h */; settings = {ATTRIBUTES = (Project, ); }; }; - FCA849F84E72CF56C35BC8B5F5D5F66E /* FBLPromise+Wrap.h in Headers */ = {isa = PBXBuildFile; fileRef = 89E52F7FC20434097820D21A19F7A961 /* FBLPromise+Wrap.h */; settings = {ATTRIBUTES = (Project, ); }; }; - FCC25C0A4981E4F16C0E3E8AB119B20E /* HeterogeneousAccess-fwd.h in Headers */ = {isa = PBXBuildFile; fileRef = 8371C3FBE908131FE0B4BAAE1E6D2F52 /* HeterogeneousAccess-fwd.h */; settings = {ATTRIBUTES = (Project, ); }; }; - FCD017F2EF045002D81B4CE631655D98 /* F14Defaults.h in Headers */ = {isa = PBXBuildFile; fileRef = D4BCB0CAAD65FBB0F6AE920BC1F835D6 /* F14Defaults.h */; settings = {ATTRIBUTES = (Project, ); }; }; - FCEB42558EF0B97A8A1B09FD39B1FC22 /* RCTPerfMonitor.mm in Sources */ = {isa = PBXBuildFile; fileRef = BD6E8DBC6B22B90257F40CEF70FDC667 /* 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"; }; }; - FCFB43F70DC48824AC9E96CFA0F6553B /* RCTTextAttributes.h in Headers */ = {isa = PBXBuildFile; fileRef = CBE1616AF656630B81600BEF0C1320C4 /* RCTTextAttributes.h */; settings = {ATTRIBUTES = (Project, ); }; }; - FD087BC349ECC6A1FA17FD94380851FB /* RequestResponseRequester.h in Headers */ = {isa = PBXBuildFile; fileRef = 3A7FDCF8B52F0218F9B22DA685FFF3FD /* RequestResponseRequester.h */; settings = {ATTRIBUTES = (Project, ); }; }; - FD0AA929035E8769EAD3705B0E03B3E4 /* FlipperCppWrapperPlugin.h in Headers */ = {isa = PBXBuildFile; fileRef = 8C9EAC92532EB2946D33D8AB3EAAEA74 /* FlipperCppWrapperPlugin.h */; settings = {ATTRIBUTES = (Project, ); }; }; - FD129BC6B9313BFA23A0215B7954E1A9 /* FIRAnalyticsInteropListener.h in Headers */ = {isa = PBXBuildFile; fileRef = 5FAA8AA11C5B657BABEB5CA3B444722F /* FIRAnalyticsInteropListener.h */; settings = {ATTRIBUTES = (Project, ); }; }; - FD1C5DE1C8EA4DD2B3A7C534407DAE22 /* KeepaliveTimer.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 9B421A26D9964D79519F4A35E88647A2 /* KeepaliveTimer.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -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 -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors"; }; }; - FD1D10004339566EC97E1BE66A754E99 /* Combine.h in Headers */ = {isa = PBXBuildFile; fileRef = AC4A668B78FF89E6A3E4160725FD7B7F /* Combine.h */; settings = {ATTRIBUTES = (Project, ); }; }; - FD36059DEE8DB7CAEB95981C66A449B8 /* TOCropViewControllerTransitioning.m in Sources */ = {isa = PBXBuildFile; fileRef = 7B7B40FEF2CA07AB1DFF7B12D0DB76A7 /* TOCropViewControllerTransitioning.m */; }; - FD39BB86380813E98FCFAF982373FCE5 /* MMBuffer.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 77DFA611185C19D8EA65EBBE6DD2DF6C /* MMBuffer.cpp */; settings = {COMPILER_FLAGS = "-x objective-c++ -fno-objc-arc"; }; }; - FD3DEE6F0E76FA12BE459C2CF4F17C91 /* BSGAppKit.h in Headers */ = {isa = PBXBuildFile; fileRef = 7F9BD92B9BDF85B886D741E7E003973C /* BSGAppKit.h */; settings = {ATTRIBUTES = (Project, ); }; }; - FD458728871ACFAB7620555A0E392E2B /* GDTCORUploadPackage.m in Sources */ = {isa = PBXBuildFile; fileRef = 14558547256AFB38419983E2662EBC1E /* GDTCORUploadPackage.m */; }; - FD54F13C5360061F3D62D4CFF0190D4E /* FIRCLSUtility.m in Sources */ = {isa = PBXBuildFile; fileRef = A76299CA52706D2EDE496A287FA92AA8 /* FIRCLSUtility.m */; }; - FD57B92590D98B6BEAE8C764B166793B /* EventHandler.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 27C22E18F4FEEECB7C921B89D1C16AF1 /* EventHandler.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -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\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors"; }; }; - FD7AFFC6D5C5A0AB19D7A299DCF80C53 /* BSGEventUploader.m in Sources */ = {isa = PBXBuildFile; fileRef = B35A3F11DC99091C6A796255001C7507 /* BSGEventUploader.m */; }; - FD8A5A31FCD9651F2760850EA6316217 /* CancellationToken.cpp in Sources */ = {isa = PBXBuildFile; fileRef = B6170D91BAB843A4CF639875AD18E134 /* CancellationToken.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -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\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors"; }; }; - FD9D2B1391857EB1DA533DA12C11449E /* MallctlHelper.h in Headers */ = {isa = PBXBuildFile; fileRef = F968A99F776F201893FF2E12F10DC872 /* MallctlHelper.h */; settings = {ATTRIBUTES = (Project, ); }; }; - FDAFCF93AA9427D7F785F14E5688B51F /* RCTBridgeDelegate.h in Headers */ = {isa = PBXBuildFile; fileRef = 0158C3C5F6B59D4937DE62B2199DE0AA /* RCTBridgeDelegate.h */; settings = {ATTRIBUTES = (Project, ); }; }; - FDD08C701ED7B16D211FA23D3C53BAF8 /* Semaphore.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 932E20379D08F815983A1E168E8F071D /* Semaphore.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -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\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors"; }; }; - FDDF25EB74BFB8878206959BC43F9877 /* RNFetchBlobConst.h in Headers */ = {isa = PBXBuildFile; fileRef = 17C4A2EBA9F786833C9E659FC731CFD7 /* RNFetchBlobConst.h */; settings = {ATTRIBUTES = (Project, ); }; }; - FDF5D29630E190EB4A8F06336AE4E850 /* Sha.m in Sources */ = {isa = PBXBuildFile; fileRef = AB12C6E2A0D5BC8A894FCE32AE68E684 /* Sha.m */; }; - FDF90A05AE6A1F8CED53C4EE16422835 /* EnvironmentUtil.m in Sources */ = {isa = PBXBuildFile; fileRef = 9D3481C77D8830B0B3647B64636CAFB1 /* EnvironmentUtil.m */; }; - FDFA4939AEFCAA031871BA6D9007634E /* EXAVObject.h in Headers */ = {isa = PBXBuildFile; fileRef = 9EDAFE445CC359519665AD447C4AF68D /* EXAVObject.h */; settings = {ATTRIBUTES = (Project, ); }; }; - FDFF9DE163669489BBD11E7E90784DC2 /* FlipperResponder.h in Headers */ = {isa = PBXBuildFile; fileRef = 87787F196653CC71282BF0F30B7D5C0A /* FlipperResponder.h */; settings = {ATTRIBUTES = (Project, ); }; }; - FE048CEB029685ED3CACC21E42F5FEB6 /* SDImageLoadersManager.m in Sources */ = {isa = PBXBuildFile; fileRef = 1153C7F2D8D7F8298826538F83EADA0E /* SDImageLoadersManager.m */; }; - FE1E96B4DA373D5CACE1872D7729E99B /* OpenSSLUtils.h in Headers */ = {isa = PBXBuildFile; fileRef = 141EF977202A47725867A9CCA553B222 /* OpenSSLUtils.h */; settings = {ATTRIBUTES = (Project, ); }; }; - FE211241B8318FDD1EFD11B10E1B6934 /* Shared.h in Headers */ = {isa = PBXBuildFile; fileRef = 53119D11FE6E6BB4AE2A001EE20671DB /* Shared.h */; settings = {ATTRIBUTES = (Project, ); }; }; - FE23A1698D877DC567BC8EE7AD3CE6DC /* RCTDevMenu.mm in Sources */ = {isa = PBXBuildFile; fileRef = F89FCCEDA81EAB26185CEB2124BC010D /* 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"; }; }; - FE2C22D7DC3B0FD7E2030EA23CA5F8D9 /* InterProcessLock.cpp in Sources */ = {isa = PBXBuildFile; fileRef = A922CE6E628589CA169E46B45E4FEA3D /* InterProcessLock.cpp */; settings = {COMPILER_FLAGS = "-x objective-c++"; }; }; - FE3C3B0B3883246F0682DE32E4403B67 /* StreamStateMachineBase.h in Headers */ = {isa = PBXBuildFile; fileRef = 8497CB456BD2A261AC99B47B49846351 /* StreamStateMachineBase.h */; settings = {ATTRIBUTES = (Project, ); }; }; - FE45590DC6481B504D4976FCEE0B3AA1 /* UMViewManagerAdapter.m in Sources */ = {isa = PBXBuildFile; fileRef = BB8D81B8EB25444591F57C018D815DEE /* UMViewManagerAdapter.m */; }; - FE56B62C2BB29649B78C5311B055B5F0 /* ThreadCachedInt.h in Headers */ = {isa = PBXBuildFile; fileRef = 1BBC025510EABED14B092533E2EA14D6 /* ThreadCachedInt.h */; settings = {ATTRIBUTES = (Project, ); }; }; - FE90F7C86A82F529B56E6F539A53D5E7 /* FIRCLSDataCollectionArbiter.m in Sources */ = {isa = PBXBuildFile; fileRef = DBD5CDF8A3997C9089262005FF386AE1 /* FIRCLSDataCollectionArbiter.m */; }; - FE91D4CE8EB1E5645B5EA03FD8AF7A5B /* AsyncTimeout.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 02D341EE62165381DC8B938DD706B0F0 /* 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"; }; }; - FE9CD4D3CC9D436B3254E68C2966B64F /* FIRCLSURLSessionDownloadTask_PrivateMethods.h in Headers */ = {isa = PBXBuildFile; fileRef = 617DC4CFBCE1FAC3EED379342C098A6D /* FIRCLSURLSessionDownloadTask_PrivateMethods.h */; settings = {ATTRIBUTES = (Project, ); }; }; - FEB45505BBFC4EAAD736DF6A877696F0 /* BSGEventUploadFileOperation.h in Headers */ = {isa = PBXBuildFile; fileRef = DF6E83B328726602E52506BBD87E3626 /* BSGEventUploadFileOperation.h */; settings = {ATTRIBUTES = (Project, ); }; }; - FEB65AD9CB5FDC801700767B929391BE /* GULAppDelegateSwizzler.m in Sources */ = {isa = PBXBuildFile; fileRef = F4DE545BA22392C8F815EBCF42429004 /* GULAppDelegateSwizzler.m */; }; - FED7CB0111233FDDE983BD43A60EAFF1 /* dec.c in Sources */ = {isa = PBXBuildFile; fileRef = BEC8E3B1DECB8985FD462B8ED229F93D /* dec.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; - FEE0256EC5380D6EFD6E1AAEC3874D1C /* QuotientMultiSet.h in Headers */ = {isa = PBXBuildFile; fileRef = F2BB8F624E91CC8BB4F8EAA5F175A5EA /* QuotientMultiSet.h */; settings = {ATTRIBUTES = (Project, ); }; }; - FF16F8A70236D799CF6C59260437A9E4 /* IPAddressException.h in Headers */ = {isa = PBXBuildFile; fileRef = A19A4B820CD795CEC835A155BEA73DCA /* IPAddressException.h */; settings = {ATTRIBUTES = (Project, ); }; }; - FF31481AC6A639FC4776B15F11BEDFDB /* RCTUIManagerUtils.h in Headers */ = {isa = PBXBuildFile; fileRef = 9F347E42EA64B7AFE343CE9A4E497834 /* RCTUIManagerUtils.h */; settings = {ATTRIBUTES = (Project, ); }; }; - FF4B834692E782EFFC462685C3C08329 /* BugsnagUser.m in Sources */ = {isa = PBXBuildFile; fileRef = 259DFDEAE65227AFC9022670B9B73495 /* BugsnagUser.m */; }; - FF578342D52A8E5DAD10B1FD4CB8AF59 /* FIRCLSSymbolResolver.h in Headers */ = {isa = PBXBuildFile; fileRef = D8DC5D16E9213B3F499E8791592C12EC /* FIRCLSSymbolResolver.h */; settings = {ATTRIBUTES = (Project, ); }; }; - FF6048F48555885A8EFAFB330BEAB301 /* RNTapHandler.m in Sources */ = {isa = PBXBuildFile; fileRef = 1275FBF2FBD9C7995AA9987864CA1174 /* RNTapHandler.m */; }; - FF6E1A5BD1EE2C973778ECB8437F8381 /* symbolize.cc in Sources */ = {isa = PBXBuildFile; fileRef = ABF1B552E10C4896CB1C682734BDDECF /* symbolize.cc */; settings = {COMPILER_FLAGS = "-Wno-shorten-64-to-32"; }; }; - FF763B2DFBE7645C079F90B2475900E8 /* RCTLogBox.mm in Sources */ = {isa = PBXBuildFile; fileRef = 1B3F7EED940B46ECFC021D632EC4EE86 /* 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"; }; }; - FFD0E17082D51F889FE4684D72B833A4 /* SocketFileDescriptorMap.h in Headers */ = {isa = PBXBuildFile; fileRef = 2E23C9017DF38BEE442275A1E8AC6343 /* SocketFileDescriptorMap.h */; settings = {ATTRIBUTES = (Project, ); }; }; - FFD594DBA168EACB992388FA54912F5A /* GULNetworkURLSession.h in Headers */ = {isa = PBXBuildFile; fileRef = 7B2914B9B967D4181977345B5C172F7D /* GULNetworkURLSession.h */; settings = {ATTRIBUTES = (Project, ); }; }; - FFED6BCFDE9AD6E6887401D22FF5D9C3 /* VirtualEventBase.cpp in Sources */ = {isa = PBXBuildFile; fileRef = CCBA08FC978D2D5552E2C77919C442BC /* 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"; }; }; - FFF03AE42095BE4F7E20384AD7AA1742 /* strtod.cc in Sources */ = {isa = PBXBuildFile; fileRef = 7ABB4E8B99C98B574CB424B8DDFAA63C /* strtod.cc */; settings = {COMPILER_FLAGS = "-Wno-unreachable-code"; }; }; + 0009B56E3DB9193A3673C64B5D69DF5F /* BSG_KSSystemInfo.h in Headers */ = {isa = PBXBuildFile; fileRef = 6B42EC716CE6BAE68D1852206CF3E6C8 /* BSG_KSSystemInfo.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 0021AA5B2981B4FD7ACFF842EDA230BF /* FBLPromise+Timeout.m in Sources */ = {isa = PBXBuildFile; fileRef = AD9E48B645FD5F52BE09363C823EAA97 /* FBLPromise+Timeout.m */; }; + 002489DEBDCB4BBE4F6BC1164D3F7F41 /* RCTShadowView+Layout.m in Sources */ = {isa = PBXBuildFile; fileRef = 2CB30789220E5792478E52B860728C9F /* 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"; }; }; + 0027ACB25A453EC52DEDC36640BCC044 /* RCTPbkdf2.m in Sources */ = {isa = PBXBuildFile; fileRef = E330670D615FDD6559EFB2776AA38D5F /* RCTPbkdf2.m */; }; + 0028B33CFD58D134D7F27DC7007C149B /* EXPermissions.h in Headers */ = {isa = PBXBuildFile; fileRef = C47D3095036C31C6B96CA8592A209873 /* EXPermissions.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 002B9641F94C2363C6BBC927CB2F5216 /* LongLivedObject.cpp in Sources */ = {isa = PBXBuildFile; fileRef = F06DF5583F13FAE37BE8F8BDB6801DEE /* LongLivedObject.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + 0038BF5B82BF92721A0B7766B9069885 /* ru.lproj in Resources */ = {isa = PBXBuildFile; fileRef = FBAA7D070E6470295A9B6E90BB3291FE /* ru.lproj */; }; + 003E8B90B10FA24F16A307B03D9B06E0 /* SysStat.h in Headers */ = {isa = PBXBuildFile; fileRef = 1A90FD6091CA22C8568DA6CC406B555B /* SysStat.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 0047DBF5E132682AC29E0A9C42DA08F9 /* iterator_enc.c in Sources */ = {isa = PBXBuildFile; fileRef = 78C55C9D9EBB57B54F71BC1DD7FBD097 /* iterator_enc.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; + 005FED848FD97443183F835B4239A800 /* RCTConvert+CoreLocation.m in Sources */ = {isa = PBXBuildFile; fileRef = DD503C772E0582A17452A72977BA5452 /* 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"; }; }; + 0071807ECB474BC9BF8059B5424612DF /* DistributedMutexSpecializations.h in Headers */ = {isa = PBXBuildFile; fileRef = 471959F080EB5F6566C9E165FCADA6E7 /* DistributedMutexSpecializations.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 00942B5BA9AC4AE48F03B6BAA2B4DA51 /* MMKVCore-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = D222CD863DC0F5C199799A779CD0F404 /* MMKVCore-dummy.m */; }; + 00970C26F813B29A6F37E7A396A1F863 /* RNCPicker-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 3C9B034E0D2FD72A5F38B5750FB667B1 /* RNCPicker-dummy.m */; }; + 00B32A8A8EFA078756452D6A2F11F8F1 /* PasswordInFile.h in Headers */ = {isa = PBXBuildFile; fileRef = 347F47FAE5B2B7AF04BF3A6796417DD8 /* PasswordInFile.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 00B899E652CFE178DC2E53C8C5645DDA /* EventBaseBackendBase.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 65F9A20C18286657B51C804366B3B161 /* 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"; }; }; + 00D65BC9B1F5CB3F3C4677C6E8B3725E /* vlog_is_on.h in Headers */ = {isa = PBXBuildFile; fileRef = AAF379D6CFF2D0FC6401068CAA891B66 /* vlog_is_on.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 00EC6D24C98DA8598B10E1C04F7B3160 /* MMKVLog.cpp in Sources */ = {isa = PBXBuildFile; fileRef = AA255A2E76C1D22D1B27D797B7928B90 /* MMKVLog.cpp */; settings = {COMPILER_FLAGS = "-x objective-c++"; }; }; + 011DF98536337AEAEF1ADC85CEF642AA /* Subscription.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 36B43E04C192429200B971BCA766EE2B /* Subscription.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -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 -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors"; }; }; + 013553D3D8B3EBB2A097ACD5AC6083A6 /* Benchmarks.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 826FC00055EF9A1713E52FA84C707BE3 /* Benchmarks.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -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 -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors"; }; }; + 01517F5CE655F6DC89AFB04EE34BCB4E /* RCTDataRequestHandler.mm in Sources */ = {isa = PBXBuildFile; fileRef = 3B9957E2C48D243E6052077D17D96840 /* 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"; }; }; + 01570B63C754F6DF54937B39CEF596C3 /* RCTPickerManager.m in Sources */ = {isa = PBXBuildFile; fileRef = AA64FA3F890E3BEF86836EBC8B4FF332 /* RCTPickerManager.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + 016B978A443BD882EA7E0EDE183C3424 /* Pods-defaults-Rocket.Chat-umbrella.h in Headers */ = {isa = PBXBuildFile; fileRef = 9FF15DDF56C721A3A36BEBEC97A731D5 /* Pods-defaults-Rocket.Chat-umbrella.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 016D425B08D0FD6A03819FB6A7F8793C /* YGValue.h in Headers */ = {isa = PBXBuildFile; fileRef = D738BCAB7F79BC193091F33A4DE06B44 /* YGValue.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 017F62D5A617EDF06647FEDBAEA533EA /* REAEventNode.m in Sources */ = {isa = PBXBuildFile; fileRef = 3FF50B662CE593C996E03B0F9E392976 /* REAEventNode.m */; }; + 01821AC02B2B3B925F0C47029D5C30B7 /* Futex.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 840CD15E3AF1BBA51C82C1C8F8440D02 /* Futex.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -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\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors"; }; }; + 0182D149451CFF12647D832BEA0D633E /* WaitOptions.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 2522BC763DC7F90EE753EDEE4FE5C0D9 /* 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"; }; }; + 0185A152FD11A7BA49EC765C5AC029B8 /* EDFThreadPoolExecutor.cpp in Sources */ = {isa = PBXBuildFile; fileRef = DBDF1114FDDCD5D98105C66E3195F985 /* 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"; }; }; + 01A8B5DE2ED13D398DF2F059D6577937 /* SDFileAttributeHelper.m in Sources */ = {isa = PBXBuildFile; fileRef = E1F93ED3671627B465FF6F04D7101D11 /* SDFileAttributeHelper.m */; }; + 01B5E83605163939447E23FA6A4A49C1 /* StorageSetters.m in Sources */ = {isa = PBXBuildFile; fileRef = 6C074DF871C0E31CBD4C7796492FC54B /* StorageSetters.m */; }; + 01BBCE4DC22320DBD5DEB3EB7AFF8870 /* FIRCLSDataParsing.c in Sources */ = {isa = PBXBuildFile; fileRef = F6C6B4E0355CC1484A7FD00EBDA99622 /* FIRCLSDataParsing.c */; }; + 01C591AEA7504EF361D12F3C97A2B6D9 /* SingletonRelaxedCounter.h in Headers */ = {isa = PBXBuildFile; fileRef = F074BE2BAC445D8077F083CE97035C93 /* SingletonRelaxedCounter.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 01D5E90249AE4DFA53798839771B2A77 /* EXSessionTaskDispatcher.h in Headers */ = {isa = PBXBuildFile; fileRef = 78899B6ADC5B51ED31F2185F1DC3DF76 /* EXSessionTaskDispatcher.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 01EDAE9EBF8DF30E2E318B3E68AD485A /* RNBootSplash-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 76639CAE0288EDD790D54B5342F2A83D /* RNBootSplash-dummy.m */; }; + 01FB821208C03FB94A6C30D7FDFE55C4 /* upsampling_neon.c in Sources */ = {isa = PBXBuildFile; fileRef = D7C1D107B6E2F4C60FFF533308092BFF /* upsampling_neon.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; + 01FE73C0F8783F41D57595A426AA52DA /* Rcu.cpp in Sources */ = {isa = PBXBuildFile; fileRef = D79AC027A1B23F36045E29A37C63DAA1 /* 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"; }; }; + 02159ED38B970675E818684A94F80CBA /* Combine.h in Headers */ = {isa = PBXBuildFile; fileRef = 357F2C617D5EA562E3B1F7260E66B9DE /* Combine.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 022220C3E0F73384332B0A29E15BDF51 /* AtomicLinkedList.h in Headers */ = {isa = PBXBuildFile; fileRef = 7EA5A61005A36E7CBA14332A2841BAEE /* AtomicLinkedList.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 0224F4EF5069542E8664E41035230E28 /* SDWebImageIndicator.m in Sources */ = {isa = PBXBuildFile; fileRef = DBAD0CD82749AD1074C4D8E8A28A9EC2 /* SDWebImageIndicator.m */; }; + 0225E048B96DB11B8FFF8B9CB2BF1459 /* FileUtil.cpp in Sources */ = {isa = PBXBuildFile; fileRef = F24891A200C44A22D9D76A370CA3F7D4 /* 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 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_PTHREAD=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + 02287497554908DF2E482B6644E04389 /* ModuleRegistry.h in Headers */ = {isa = PBXBuildFile; fileRef = F9C7F6857302085BBF86C401C4DE192B /* ModuleRegistry.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 022ADD2E6EC4B6A2463449CEFBCF62F9 /* RSocketStats.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 33B24E80D660D66811180391F16DD06E /* RSocketStats.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -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 -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors"; }; }; + 023807DA6F7B9AF3C7D5C3C3FD214DC9 /* vp8li_enc.h in Headers */ = {isa = PBXBuildFile; fileRef = 75A7A6098346A3A03DD28149317E41DD /* vp8li_enc.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 02438E5F62FE137E005B6BA2ED9444B2 /* AutoAttachUtils.cpp in Sources */ = {isa = PBXBuildFile; fileRef = E0D4FE657221BBED4DC51E0EEB808D83 /* AutoAttachUtils.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + 024FBAD949FFCC68C2C288CAC5A20C39 /* Checksum.h in Headers */ = {isa = PBXBuildFile; fileRef = 9C2C2C287E99390465AF82ACDCED1D10 /* Checksum.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 02502269A52710C6E85B16FD22539419 /* CallbackOStream.h in Headers */ = {isa = PBXBuildFile; fileRef = 424CA68846CB2722AF9979E9AE569D5D /* CallbackOStream.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 025EB6EF4D6645131D8EFC7F41E1D0A2 /* RCTBackedTextInputDelegate.h in Headers */ = {isa = PBXBuildFile; fileRef = B75D7EF0D60FCFBA75FE3515D84FF9A4 /* RCTBackedTextInputDelegate.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 0264B550231974927DC7D43958A3855A /* HHWheelTimer.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 33285BC0B5AD55172387D11630F57543 /* HHWheelTimer.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -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\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors"; }; }; + 0270EC6EBCCA762B874296362241F92C /* experiments-inl.h in Headers */ = {isa = PBXBuildFile; fileRef = E6EAE357D82F2E13F6104993B12B3A06 /* experiments-inl.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 02A6C324D88E16F0A1702FEA16DBD392 /* Sockets.h in Headers */ = {isa = PBXBuildFile; fileRef = 6C686D2F46D547B1A7F7B2C10D29E315 /* Sockets.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 02B1D90F9A8BB4D5D7281C8CF4453985 /* UIResponder+FirstResponderTemp.m in Sources */ = {isa = PBXBuildFile; fileRef = A58E11BC4303D841C176EC359F3ECFB2 /* UIResponder+FirstResponderTemp.m */; }; + 02CD8DF60C9214B70F1DED7CAA72EA36 /* ARTShadow.h in Headers */ = {isa = PBXBuildFile; fileRef = 815C0D7BEE0A4D30C0D38BB6B938F1A8 /* ARTShadow.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 02FB7BAD63357BEB057E82AA74BEA8AC /* MethodCall.h in Headers */ = {isa = PBXBuildFile; fileRef = E4C69F25A2BEB7A59CD853002DC3ED09 /* MethodCall.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 03035D242FDFF6B03D6A3E9C23024340 /* RCTEventDispatcher.m in Sources */ = {isa = PBXBuildFile; fileRef = 2D518A14B7415A7E01F104C00B1616C7 /* RCTEventDispatcher.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + 03052B41ECEE6D3C7E49F6FEE4CC2B14 /* EventBaseThread.h in Headers */ = {isa = PBXBuildFile; fileRef = 73FE7CE15D9FFDA6583FFF20364AE989 /* EventBaseThread.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 0322BF9808212788A46E97AF9ABBEC45 /* NSTextStorage+FontScaling.h in Headers */ = {isa = PBXBuildFile; fileRef = 703652B3ED103950657D2AD13978ED5B /* NSTextStorage+FontScaling.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 035ABDBD827EF6B667B0A81C4BC891BE /* FlipperConnectionImpl.h in Headers */ = {isa = PBXBuildFile; fileRef = E540DDA1FC9323CD80D9AA672062CC35 /* FlipperConnectionImpl.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 036F1B3EB0007ECEA9C05DA526BC55EC /* ThreadedExecutor.h in Headers */ = {isa = PBXBuildFile; fileRef = BF48C1FBA27345C7E65E927C1F0C5D4B /* ThreadedExecutor.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 03A19F1838D04CA0D990E4FCCCD56ACB /* GULHeartbeatDateStorage.h in Headers */ = {isa = PBXBuildFile; fileRef = 92D9BA5F2835454A664AE1823699E248 /* GULHeartbeatDateStorage.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 03B4B5F630ED44205E4E7C4A6403A863 /* BSG_KSCrashIdentifier.m in Sources */ = {isa = PBXBuildFile; fileRef = A32E1D826D45C6D87E282C7C2E0CC917 /* BSG_KSCrashIdentifier.m */; }; + 03B896328498C56507DD71A99447EBD5 /* AtomicIntrusiveLinkedList.h in Headers */ = {isa = PBXBuildFile; fileRef = 5864D5B667CF319943544AD7A538A00A /* AtomicIntrusiveLinkedList.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 03BE10B35EF16F43D2B705E6E3475920 /* RCTImageCache.m in Sources */ = {isa = PBXBuildFile; fileRef = D6CB5BF60AC415D82DF23C7F7BEDC080 /* 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"; }; }; + 03C6E8E2740435CCF5F8065C790CC53C /* SDAssociatedObject.m in Sources */ = {isa = PBXBuildFile; fileRef = 05BBEAFED41DC04A0FEF07809A9016E7 /* SDAssociatedObject.m */; }; + 03C9FDF164D46EE142863B39C3ED3353 /* FlipperClient.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 89445D944710DD22FFEDB2D88CFD8060 /* FlipperClient.cpp */; settings = {COMPILER_FLAGS = "-DFLIPPER_OSS=1 -DFB_SONARKIT_ENABLED=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -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"; }; }; + 03E82591072A50A5DED71EF03E95E245 /* SKTouch.h in Headers */ = {isa = PBXBuildFile; fileRef = 667AB0A6DA1DC13B5D02A965480DFE35 /* SKTouch.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 03F8BCE3228A9B43553B52224F80D2E6 /* SKEnvironmentVariables.h in Headers */ = {isa = PBXBuildFile; fileRef = 16EE35AB7500A0BC5263CE164841F438 /* SKEnvironmentVariables.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 04092E20D9150EA09E155ED63597633E /* SDWebImageWebPCoder-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = F450D69FF61503349DAA40ADE9ABB40D /* SDWebImageWebPCoder-dummy.m */; }; + 040C63909832D441D83E7382147DA28D /* SpookyHashV2.h in Headers */ = {isa = PBXBuildFile; fileRef = F379A2FA213B159CAA445AAFC58A1691 /* SpookyHashV2.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 04235E93206B3B87BC82491690432DDA /* JSBundleType.h in Headers */ = {isa = PBXBuildFile; fileRef = 0F675EFFAE3ECFB12FB48516DB4E756C /* JSBundleType.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 042CD1B77F9434DA0DCE07B7CFF23F85 /* Poly.h in Headers */ = {isa = PBXBuildFile; fileRef = 0C65E06A78DA05CF42AF17F7327766FD /* Poly.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 043A3C60F5332C73F2F5115F82814323 /* Singleton-inl.h in Headers */ = {isa = PBXBuildFile; fileRef = 329DEB85A873E356B2446F9ECB360374 /* Singleton-inl.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 04BEDD063CE189F838D41922DFCE707A /* CustomizationPoint.h in Headers */ = {isa = PBXBuildFile; fileRef = 4AE9A813378088DD3354A41B88EE8A37 /* CustomizationPoint.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 04DD25D88999FC215524E56A4B63C416 /* TimedDrivableExecutor.h in Headers */ = {isa = PBXBuildFile; fileRef = 8664E5B2718F9802247E1F3B386F19BB /* TimedDrivableExecutor.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 04DEE63D94A45644BC353E7E5910CE70 /* RCTInspectorDevServerHelper.h in Headers */ = {isa = PBXBuildFile; fileRef = 1CBDE06F5604623677F48CC521E897F4 /* RCTInspectorDevServerHelper.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 050A4C0AB45141943BD14FE606A1B1D1 /* RCTView.m in Sources */ = {isa = PBXBuildFile; fileRef = DBD1A6E618F01836ED2B06599555D1AF /* RCTView.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + 05171B0FD02E062464DC1D292F3072BD /* stl_logging.h in Headers */ = {isa = PBXBuildFile; fileRef = 1D4F80F38FCBDB98573E1F28BFD1E1E8 /* stl_logging.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 0524D12E76C8A25E9297604C91B3E220 /* RNBootSplash.m in Sources */ = {isa = PBXBuildFile; fileRef = 2ACD73300513534D548675E0674A31D7 /* RNBootSplash.m */; }; + 0544B429E459BDD2637651E48DFC2FB5 /* AsyncUDPServerSocket.h in Headers */ = {isa = PBXBuildFile; fileRef = 8606F646A8CB95D290ADED17916FB4C9 /* AsyncUDPServerSocket.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 05452A64B4B61941CB4A68E7DA7F6D8F /* KeyValueHolder.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 2CDFD1719E051485FDF97FBFDF31A9DB /* KeyValueHolder.cpp */; settings = {COMPILER_FLAGS = "-x objective-c++ -fno-objc-arc"; }; }; + 055B4D27C2659219838D1257DD8AE550 /* RNNotificationCenterMulticast.h in Headers */ = {isa = PBXBuildFile; fileRef = C5944E4011C8B8BCFBAEC469F128BE4C /* RNNotificationCenterMulticast.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 0562BFEC36491B2EA18AC761FD989375 /* BugsnagClient+Private.h in Headers */ = {isa = PBXBuildFile; fileRef = F75D536DA30AA1A0D79332B0C6A2C5D2 /* BugsnagClient+Private.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 0562FF22475F02DC1FF568AA64E3178D /* FrameSerializer_v1_0.h in Headers */ = {isa = PBXBuildFile; fileRef = 8C83E0915495B8F27BA7E3333C668216 /* FrameSerializer_v1_0.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 0565F2BDAC1FDB34DF4F181AD348497C /* RCTUtilsUIOverride.m in Sources */ = {isa = PBXBuildFile; fileRef = E7995DC0480B1067A3A2F82B55A71617 /* RCTUtilsUIOverride.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + 059D54C7900E6C5E7A1656452C19BD19 /* UMExportedModule.m in Sources */ = {isa = PBXBuildFile; fileRef = 73644C402ADDBC4FF79DD1C7CA3E356D /* UMExportedModule.m */; }; + 05B30A11139FAA4C296F13732F0CF0FA /* Common.h in Headers */ = {isa = PBXBuildFile; fileRef = 07112AD0BBE4E4D25675317B961F84F6 /* Common.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 05BA66332B3694407C999AF9FF290D0F /* SharedPromise-inl.h in Headers */ = {isa = PBXBuildFile; fileRef = 14FA4AE04F50F603C9098CA23EC1EABA /* SharedPromise-inl.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 05E8768ADFF5C698243A41CE2CF7437E /* MRCCanary.m in Sources */ = {isa = PBXBuildFile; fileRef = F9B9B7A1BC468EDEA5B4AAEB6BE0EF96 /* MRCCanary.m */; }; + 0618DAD253EDE3B3EC9FF32A7AE290EF /* BugsnagFileStore.h in Headers */ = {isa = PBXBuildFile; fileRef = D38A1786D45DEDF79279416210586D76 /* BugsnagFileStore.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 0624ED818D1DA2DFE0F1E8F494360C55 /* Likely.h in Headers */ = {isa = PBXBuildFile; fileRef = F830869A5BA9B0311FE238D8C392EEEC /* Likely.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 062B136FCBC2166709605B9A9F5AC515 /* FIRCLSDownloadAndSaveSettingsOperation.m in Sources */ = {isa = PBXBuildFile; fileRef = CF82A4E77B9640A6213D6DEDBD251B47 /* FIRCLSDownloadAndSaveSettingsOperation.m */; }; + 06446531B156F096A6517433B3B36536 /* bit_reader_utils.h in Headers */ = {isa = PBXBuildFile; fileRef = FD743512C597807DC9CB219BC47D7BFA /* bit_reader_utils.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 06514FD84CC576BCCE44F89EE61A7F68 /* GCDAsyncSocket.h in Headers */ = {isa = PBXBuildFile; fileRef = 1C0CD7E02E0E472C9B929866A2372DFB /* GCDAsyncSocket.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 066047ABB9A27063B409C533B72812C2 /* SecureStorage.m in Sources */ = {isa = PBXBuildFile; fileRef = 5EDD6E0F5C05F19348940A2935DDABAB /* SecureStorage.m */; }; + 066A4AF44ED446E0F09372AF5FCD846E /* RNFBCrashlytics-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 3433252E366EF683263DDBDA7944D562 /* RNFBCrashlytics-dummy.m */; }; + 066ED332399AA3B4AEE9F9FDDDE056BD /* RCTMultiplicationAnimatedNode.m in Sources */ = {isa = PBXBuildFile; fileRef = 78194703ABB0C2AABBEBA0D955718ECF /* 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"; }; }; + 0670A01365D51964753FDE922077B5CE /* Benchmark.h in Headers */ = {isa = PBXBuildFile; fileRef = 2BF683C0A6F77183447CC8C0FE004089 /* Benchmark.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 06790325DF359DC61EAC515295D64139 /* RNEventEmitter.m in Sources */ = {isa = PBXBuildFile; fileRef = DEECB65E82C196738DA8DC63518F4D82 /* RNEventEmitter.m */; }; + 06851EF6600EDF5ED23E0A58E27F1798 /* WarmResumeManager.cpp in Sources */ = {isa = PBXBuildFile; fileRef = C0B33919C6008C738F795DC16361E687 /* WarmResumeManager.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -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 -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors"; }; }; + 068AFEE58D6A906D9F47BD5F0AD3D391 /* SKIOSNetworkAdapter.mm in Sources */ = {isa = PBXBuildFile; fileRef = 7095A402B5482B6BE3A9D8FA0C03C65A /* SKIOSNetworkAdapter.mm */; settings = {COMPILER_FLAGS = "-DDEBUG=1 -DFLIPPER_OSS=1 -DFB_SONARKIT_ENABLED=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -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"; }; }; + 068DEE637CF18C5CA28D8C37AA84BCAA /* json_patch.h in Headers */ = {isa = PBXBuildFile; fileRef = 76C44D2EB10A8D6EAD5158565F3B4133 /* json_patch.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 06E7A3C0A3EC51C15BF0012BBCDA97F4 /* EventBaseManager.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 6B9D52116EF29753E11DFFCCCD9A8FD6 /* EventBaseManager.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -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\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors"; }; }; + 06EEA7CC0CAE7BD60BE91A9D8A980D84 /* BSGSerialization.h in Headers */ = {isa = PBXBuildFile; fileRef = C08B6C4F14452F11A0C35EAA5606EC2B /* BSGSerialization.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 06F0869D9283AB99E6DD859D6316C4D8 /* Try.h in Headers */ = {isa = PBXBuildFile; fileRef = 11D11709A02DAC16E66B9177BBA65E73 /* Try.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 070A0B4A433A4975EB5201CC7026FFBE /* UIView+WebCache.h in Headers */ = {isa = PBXBuildFile; fileRef = 2D84EE168450234B3920B655E2D481DB /* UIView+WebCache.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 070DFC4FF425C3333CDA1B4CF472F37A /* SDMemoryCache.m in Sources */ = {isa = PBXBuildFile; fileRef = AAF80F5CDD0C1A755D4B8DA5DF2DBFEA /* SDMemoryCache.m */; }; + 0710A355E522F6D9B0552EDF30543409 /* Asm.h in Headers */ = {isa = PBXBuildFile; fileRef = D136BF5DA8A5079F5840F05FE141612C /* Asm.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 07245ACD0FF8044A77CCCDC3CD78B618 /* KeyboardTrackingViewTempManager.m in Sources */ = {isa = PBXBuildFile; fileRef = 209A06FCAB1163AC2F80059DF78157D3 /* KeyboardTrackingViewTempManager.m */; }; + 0727B31AF6A686D215A1D79044CC7EF6 /* BSG_KSFileUtils.h in Headers */ = {isa = PBXBuildFile; fileRef = 6D39637C2F6FBE9A49E684837499B6F0 /* BSG_KSFileUtils.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 073DCC695D13DB5ADB1267F6898FD028 /* Unistd.cpp in Sources */ = {isa = PBXBuildFile; fileRef = D5DCE34AE44ABDAD954DBB33B552D7F0 /* Unistd.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -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\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors"; }; }; + 0746AB68FBCB749E63D00CB7B39EDA52 /* RCTBlobPlugins.h in Headers */ = {isa = PBXBuildFile; fileRef = E9D6318A61A6F05A93D364FA8B61523A /* RCTBlobPlugins.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 075B78EED4607267A18948CE1A146EEA /* FIRCLSThreadArrayOperation.m in Sources */ = {isa = PBXBuildFile; fileRef = 51CBD072695636FFFB70286D87493724 /* FIRCLSThreadArrayOperation.m */; }; + 076AC398D90C893055CD6E009E0CC615 /* threadsafe.h in Headers */ = {isa = PBXBuildFile; fileRef = 2C6DA39E33EAAAA7F63EC7CD283876DB /* threadsafe.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 0770A96449257D8A83944EE3FE30A3BC /* ARTTextManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 57A21B3CEB4C3FDC799A2532C3FC64F9 /* ARTTextManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 0775ADE6EC95C3A12A492BC7E9100215 /* RCTConvert+Transform.h in Headers */ = {isa = PBXBuildFile; fileRef = 2136A1213D6C72B551A9BF56644E3BD9 /* RCTConvert+Transform.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 078DB6CDC05034BE78880C7819F9AD52 /* RCTRootViewInternal.h in Headers */ = {isa = PBXBuildFile; fileRef = 1C048DC831E92AF829D40260E0EE5707 /* RCTRootViewInternal.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 079CA6AB1D51456697EED613C8F59644 /* NSData+ImageContentType.m in Sources */ = {isa = PBXBuildFile; fileRef = A4E7DC6BCE96DD8740ED05BA6A458413 /* NSData+ImageContentType.m */; }; + 07C08BCAA677A52F8832E05AB38BD353 /* RCTWebSocketModule.h in Headers */ = {isa = PBXBuildFile; fileRef = 59CD62A3389AF34FBFAAB69561CC308D /* RCTWebSocketModule.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 07CA76F75690AE09E4BA7AE4FD32BB84 /* UMModuleRegistryHolderReactModule.m in Sources */ = {isa = PBXBuildFile; fileRef = 66677E39F319BF04D6A888B1BF319131 /* UMModuleRegistryHolderReactModule.m */; }; + 07D2DE5824F54F322A419D1459871F61 /* IPAddressV6.h in Headers */ = {isa = PBXBuildFile; fileRef = 57A5EFBDFDD084412B6D2D5F28C9E6F3 /* IPAddressV6.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 07E0C1C05B9A47CC0F9B05CE86AA69C7 /* RCTBaseTextInputShadowView.h in Headers */ = {isa = PBXBuildFile; fileRef = 4DD0CE71E75131AF51D4C4432112F823 /* RCTBaseTextInputShadowView.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 0802363F1036E9E2EF6517AFA8E5969F /* FBLPromise+Always.m in Sources */ = {isa = PBXBuildFile; fileRef = 671EBB409B6D480819A13A112FAD3776 /* FBLPromise+Always.m */; }; + 081ADD96F6A1869FBCFF970045A59329 /* evrpc.h in Headers */ = {isa = PBXBuildFile; fileRef = 7257EC5583EBC0AE79AE858C600CFEE8 /* evrpc.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 0846C745AE899192240A2B22A8F75BD2 /* React-RCTNetwork-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 4EFF16B0135E733955067386D6ADBFA2 /* React-RCTNetwork-dummy.m */; }; + 08480CE58BD618A3856B2AA4143B7ABD /* BlurView.m in Sources */ = {isa = PBXBuildFile; fileRef = F54C1971B91025F5A8D7CE3B712EB115 /* BlurView.m */; }; + 084EA95AF4F0597F643894A35C7E23D9 /* RCTSinglelineTextInputViewManager.h in Headers */ = {isa = PBXBuildFile; fileRef = ADDE8828F81CA4F99392A484A6D64E28 /* RCTSinglelineTextInputViewManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 0855EBD3046984F53081B889D97C0760 /* SDImageCache.h in Headers */ = {isa = PBXBuildFile; fileRef = 6AA77FDE9E333D8DA875578AFCB911BF /* SDImageCache.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 088BD831000E11C7AD301FC06FDFEDDC /* RCTRootContentView.h in Headers */ = {isa = PBXBuildFile; fileRef = CC17FC05F12D85955D1E11D8DBE50B44 /* RCTRootContentView.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 088D87F19B884CD533E0B8959C874570 /* MessageTypes.h in Headers */ = {isa = PBXBuildFile; fileRef = 02C06F0AED9141629F70A32B1FFC0898 /* MessageTypes.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 08995D2EE5F4089D30B7B8F013810D4B /* FBLPromise.h in Headers */ = {isa = PBXBuildFile; fileRef = CB7745F211E436DA3D41D94069D34EDF /* FBLPromise.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 08F3255E3A3DD96E8D9735DBB45CFA30 /* TOCropToolbar.m in Sources */ = {isa = PBXBuildFile; fileRef = 3C1C76C6851C9229EAC939FB40F8E638 /* TOCropToolbar.m */; }; + 08F54F26E79AD5CE6D95403300F941CC /* AsyncGeneratorShim.h in Headers */ = {isa = PBXBuildFile; fileRef = 520200035F2C53EC379867018D7BCA3B /* AsyncGeneratorShim.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 08FE01E6E385043DD42A42D4C111A425 /* RNCSafeAreaView.m in Sources */ = {isa = PBXBuildFile; fileRef = E9EFEE604999AB71CEEFEB069E932646 /* RNCSafeAreaView.m */; }; + 08FE082C5EFAAF8DB4C384DC82A24B61 /* SDWebImageDownloaderRequestModifier.m in Sources */ = {isa = PBXBuildFile; fileRef = 84D22347A70550A51F01CACB738F8696 /* SDWebImageDownloaderRequestModifier.m */; }; + 090CFBE4406371D791D2FBB837A032B9 /* QBVideoIconView.h in Headers */ = {isa = PBXBuildFile; fileRef = 7AA711C7FE1B29E72984FCB9113EEE56 /* QBVideoIconView.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 090D7A939BD0E4141C321406BD304C0A /* RNCMaskedView.h in Headers */ = {isa = PBXBuildFile; fileRef = 3C2D2EF764AD5072A5C661EB748F92DE /* RNCMaskedView.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 091B32DC9B35A27D260CB658F65DBB73 /* FlipperKit-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 17E4C5A160AADEA7769B84DF7FBE0F0E /* FlipperKit-dummy.m */; }; + 091D3B6C5B4BF7EA8A9F5CF1FC98F3A0 /* EXVideoManager.m in Sources */ = {isa = PBXBuildFile; fileRef = E767C837A93698578654244485430BB9 /* EXVideoManager.m */; }; + 093492410D1092DF7E465408CDCE1180 /* REAStyleNode.h in Headers */ = {isa = PBXBuildFile; fileRef = 8EC52E80CADEF66553D7D2E3E861E66A /* REAStyleNode.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 09625D9B254D356D886B629E49A85B44 /* Function.h in Headers */ = {isa = PBXBuildFile; fileRef = 053C50443DEEF5963D7872427E38B8D8 /* Function.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 0964E8FE54335EBFEF304D2B98183D47 /* RCTRedBox.h in Headers */ = {isa = PBXBuildFile; fileRef = 4D1FD5CE2558DD09C75F927E5236A0FB /* RCTRedBox.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 09724AFECBA67030CCBDDEC111AA7381 /* RCTSha.h in Headers */ = {isa = PBXBuildFile; fileRef = 571B85305485907B54ADAEE11543070C /* RCTSha.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 097D9BB45C7C6A9F07E194B5B62ECC62 /* RNPushKitEventHandler.h in Headers */ = {isa = PBXBuildFile; fileRef = 8E779D86D839C8CB46320F82EB6BE302 /* RNPushKitEventHandler.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 09980EDAF830BCF8BA8FE0F5E6C3C743 /* filters_mips_dsp_r2.c in Sources */ = {isa = PBXBuildFile; fileRef = 249F6060E53408E049D3E4C72D8B36C0 /* filters_mips_dsp_r2.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; + 09AE18893DC88E6EFC177B6124385A89 /* GDTCORDirectorySizeTracker.h in Headers */ = {isa = PBXBuildFile; fileRef = DE83F965334111733A182914FB049851 /* GDTCORDirectorySizeTracker.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 09C1F983DEEA9C7F571482D5B2177CA1 /* NSBezierPath+SDRoundedCorners.h in Headers */ = {isa = PBXBuildFile; fileRef = B697A893B8DC509D12C177DA13AD0D49 /* NSBezierPath+SDRoundedCorners.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 09C6833F3E7ECB787699922EB7DD9833 /* Iterator.h in Headers */ = {isa = PBXBuildFile; fileRef = 9AAB1F452A5C9549CD4BE20F3FB5CEED /* Iterator.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 09C8003ADEB8200218E5297E85A68C19 /* FIRCLSExecutionIdentifierModel.m in Sources */ = {isa = PBXBuildFile; fileRef = 7E04EDC4EBE5CE7420C0769CB5A27E35 /* FIRCLSExecutionIdentifierModel.m */; }; + 09E0AF842E2488D2085F2EEA94175CFD /* DefaultKeepAliveExecutor.h in Headers */ = {isa = PBXBuildFile; fileRef = AF3EC9BE7E477CCA5AA4752CB8907463 /* DefaultKeepAliveExecutor.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 09F06A47D6509845FBF2C8008325EF65 /* HazptrHolder.h in Headers */ = {isa = PBXBuildFile; fileRef = B8407499D8B29EE08B4B629AE7F04EBD /* HazptrHolder.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 09FC3F4E6F34D7C80A2790A63842A122 /* cached-powers.cc in Sources */ = {isa = PBXBuildFile; fileRef = C05EBA7ECA9BA88FCC5B5514DCFD4B8D /* cached-powers.cc */; settings = {COMPILER_FLAGS = "-Wno-unreachable-code"; }; }; + 0A0CE34CA9179397A330D4722F7FADB8 /* lossless_enc_sse41.c in Sources */ = {isa = PBXBuildFile; fileRef = 33FF563A86EB3F4F1BB2B2C90E4917B2 /* lossless_enc_sse41.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; + 0A0F924BEDB66B36140C0412B7C28B07 /* libMMKV.mm in Sources */ = {isa = PBXBuildFile; fileRef = F236C869FB3E9E8F0765998742979893 /* libMMKV.mm */; }; + 0A16DE274AFCD1A3C5F5A38E36820DD1 /* RSocketResponder.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 17A9D03748A1F6493E29DE072BCEA91E /* RSocketResponder.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -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 -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors"; }; }; + 0A279C3E604AF38251E0B139CAC0972A /* FLEXUtility.mm in Sources */ = {isa = PBXBuildFile; fileRef = 5E1E4D569A7C56B34DDFAD94B3072738 /* FLEXUtility.mm */; settings = {COMPILER_FLAGS = "-DDEBUG=1 -DFLIPPER_OSS=1 -DFB_SONARKIT_ENABLED=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -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"; }; }; + 0A5682DB3E39CD226BAE53FC5D3EADCE /* RCTMaskedViewManager.m in Sources */ = {isa = PBXBuildFile; fileRef = BB186A09DE72D55E392646ED4CDA28F5 /* RCTMaskedViewManager.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + 0A6E2C66791B2BF331A358B7F6E92483 /* BugsnagDeviceWithState.m in Sources */ = {isa = PBXBuildFile; fileRef = CE9BB285173AAB80FD42F78CEB01AE75 /* BugsnagDeviceWithState.m */; }; + 0A82ED97D123269E32199B33A9B7EC18 /* ConstexprMath.h in Headers */ = {isa = PBXBuildFile; fileRef = 71517FF808D8631FF5B5D81F43696874 /* ConstexprMath.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 0A9B37E24C6342D8B9D74B0234E8882E /* SDImageCacheConfig.m in Sources */ = {isa = PBXBuildFile; fileRef = 44ED5289A0AEC6C4A0076A0D63358700 /* SDImageCacheConfig.m */; }; + 0AA0FBEC139EC1BCCF7A93CDF20B0CF1 /* RCTAppState.h in Headers */ = {isa = PBXBuildFile; fileRef = 1D0C4BF06CD34906FCE76E3ECC41F595 /* RCTAppState.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 0AAC2A8976EDCF7BB9813A41548A792D /* UMInternalModule.h in Headers */ = {isa = PBXBuildFile; fileRef = 89A788B18FC3CB1C4233F5338DF9D973 /* UMInternalModule.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 0AB0058593030C3B0EAD62529088458B /* SKHiddenWindow.h in Headers */ = {isa = PBXBuildFile; fileRef = 1E9F8F003D4E5587DD3E7297DE4498E4 /* SKHiddenWindow.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 0AB0E18EE74D192587F41B96143C012A /* BugsnagLastRunInfo.h in Headers */ = {isa = PBXBuildFile; fileRef = EEB2FCC69C421CD84466BFEAD77BAE37 /* BugsnagLastRunInfo.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 0AC20C619FF4E98D49AAEDFBAEB07820 /* Portability.h in Headers */ = {isa = PBXBuildFile; fileRef = 26B5C42151EC86C5ACAE9945FEA65EEE /* Portability.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 0AC4EFC9AFC76105BC389E0E3A528CF5 /* RCTI18nUtil.h in Headers */ = {isa = PBXBuildFile; fileRef = 41ABBA113585D0FB5DF0F328F057B6AB /* RCTI18nUtil.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 0AF76157B80DC67602C273CA784F4480 /* SDWebImageDownloaderDecryptor.h in Headers */ = {isa = PBXBuildFile; fileRef = B4DB01298D1239EC66FB772919F29746 /* SDWebImageDownloaderDecryptor.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 0AF8457E468A285F8F6CD45B587D41A6 /* DistributedMutexSpecializations.h in Headers */ = {isa = PBXBuildFile; fileRef = 5F74FFA25BD89324C424E5BFB2996D1A /* DistributedMutexSpecializations.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 0B126408506C350F2F30E1ABD5C11CAA /* Fingerprint.h in Headers */ = {isa = PBXBuildFile; fileRef = 3B4330915FBF9E480ABB0763353B6AA8 /* Fingerprint.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 0B47DBFDB0527287B0F70B3A82A83B38 /* BugsnagSessionFileStore.h in Headers */ = {isa = PBXBuildFile; fileRef = 6348158250BDD61323E00A96E6F8C450 /* BugsnagSessionFileStore.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 0B6A2152EA13AD759DCC2F495DF3893C /* OpenSSLUtils.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 57E1C8E6FFB110822F4AA89BC3B8D2E5 /* OpenSSLUtils.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -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\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors"; }; }; + 0B8B8928B99FC908A6F602E15DD9BA16 /* SharedProxyCxxModule.h in Headers */ = {isa = PBXBuildFile; fileRef = DEE206A5A73797C0F70635F3A25EF1E1 /* SharedProxyCxxModule.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 0B9A228FAE63BBBFB0D38338186B4100 /* Sched.h in Headers */ = {isa = PBXBuildFile; fileRef = 5C8D32374615F6D261DC4ADC7AF965F8 /* Sched.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 0BB7999E1A365E1FDD92D916C4A62328 /* ThreadId.h in Headers */ = {isa = PBXBuildFile; fileRef = 323635FF4162DAE7E641FCD906CC1FF3 /* ThreadId.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 0BBDAD03EF08CA1EDDE9FBBA70BFD9F9 /* RCTCustomInputControllerTemp.h in Headers */ = {isa = PBXBuildFile; fileRef = 0CF2233A0E480F3AB0FBCAAFAB9A6E26 /* RCTCustomInputControllerTemp.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 0BC8480BB7062F05FE8DAB9397701E28 /* RCTRsaUtils.swift in Sources */ = {isa = PBXBuildFile; fileRef = 7417AF546946DB3AE84FBD6B4126AAA3 /* RCTRsaUtils.swift */; }; + 0BD8C050D61553F042D7DFDCB215FD96 /* RCTBlobManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 42255A0747B67DE55BFC28AC63FA7534 /* RCTBlobManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 0C1321B2F1B8C6C85A30A05936FE9A3B /* jsi-inl.h in Headers */ = {isa = PBXBuildFile; fileRef = 18A608A84D0F936007B682AD1951D0F9 /* jsi-inl.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 0C1A8C77F3A11672CA002D3243A515AD /* TimeoutManager.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 43706B6B95F90A70C0EB27D0F76F622D /* 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"; }; }; + 0C1CAD160E2E8E70AE3CCFEC4B7D8F83 /* SDDeviceHelper.m in Sources */ = {isa = PBXBuildFile; fileRef = CDB9FE50CE65AB62B2DC4B171E743E27 /* SDDeviceHelper.m */; }; + 0C38B737B9D8B1E3E836F17C70929866 /* RCTInputAccessoryViewContent.h in Headers */ = {isa = PBXBuildFile; fileRef = BF627F29C14D735D7BB79511FDDB0BB4 /* RCTInputAccessoryViewContent.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 0C3CE579EE191107A402B6213A80D92C /* utils.h in Headers */ = {isa = PBXBuildFile; fileRef = 8E666680A1331834563A1F790787D4D5 /* utils.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 0C3FB7EA2727EFEA7AEB4F767DD2163D /* CancellationToken.h in Headers */ = {isa = PBXBuildFile; fileRef = 74C23D7F5EEA624E95EE2680E31C495E /* CancellationToken.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 0C472DAC5CAD999E16F8473DD261676A /* IOBufQueue.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 4F413A04A3B4C83265FDF5F6F3F7FE53 /* IOBufQueue.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -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\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors"; }; }; + 0C49F960254DA95A025FABC4C2D84AD1 /* Lazy.h in Headers */ = {isa = PBXBuildFile; fileRef = 6FB19E0C817B782B82874230D900D548 /* Lazy.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 0C5B700AF7E918761233AFD1C923D5D2 /* Hazptr-fwd.h in Headers */ = {isa = PBXBuildFile; fileRef = 87BFE9FCF390938D469B498A36BE6C69 /* Hazptr-fwd.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 0C6A328033E16CDCCB194BC370716880 /* Utility.h in Headers */ = {isa = PBXBuildFile; fileRef = 658041429E32DF02374A9C53F349F852 /* Utility.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 0C7C197B1D7D237E6D09BDD33FD7C7CD /* IOThreadPoolExecutor.h in Headers */ = {isa = PBXBuildFile; fileRef = EE8DD79105FD6CD7F21384E0BB0B584F /* IOThreadPoolExecutor.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 0C7E639EDDA6AE0CEE2AC7C09EE026CB /* StreamThroughputTcp.cpp in Sources */ = {isa = PBXBuildFile; fileRef = CDB02E1C3FD1D61CA44327824DF1C0AD /* StreamThroughputTcp.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -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 -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors"; }; }; + 0C806A8813DAC8593957C7E52650FB76 /* HazptrDomain.h in Headers */ = {isa = PBXBuildFile; fileRef = B39E4C3BF6FBE891D24FB9FB58B1A83A /* HazptrDomain.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 0C92C424934794E9115D2C2BD970B28C /* OpenSSL.h in Headers */ = {isa = PBXBuildFile; fileRef = 23BADA26EC9BE889FE04DFB0F5EFCFAC /* OpenSSL.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 0C939B629EEAF4A9E39315166187BA8D /* RCTUIManager.m in Sources */ = {isa = PBXBuildFile; fileRef = 397D7F76A2BFD0A62919AD6CC7C2AFFF /* RCTUIManager.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + 0CA7F92173CDAEB58AAC69CB88FD95A9 /* AsyncSocketException.h in Headers */ = {isa = PBXBuildFile; fileRef = E19B50AA4726F2C347CC9F9427E40319 /* AsyncSocketException.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 0CA8037128DBC7C6B80D9DFBFDEE0249 /* SKSwizzle.mm in Sources */ = {isa = PBXBuildFile; fileRef = 063E4525BA253FEC8A4D1283D8465E2D /* SKSwizzle.mm */; settings = {COMPILER_FLAGS = "-DDEBUG=1 -DFLIPPER_OSS=1 -DFB_SONARKIT_ENABLED=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -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"; }; }; + 0CB3338E3CCA33860940328877817D87 /* RCTSpringAnimation.m in Sources */ = {isa = PBXBuildFile; fileRef = 59AA3C22A4FE83B34832756488941D94 /* 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"; }; }; + 0CCF6CD925A1487BFF728600F8654C9B /* GroupVarintDetail.h in Headers */ = {isa = PBXBuildFile; fileRef = D68049508BF0E5CC421C7CC5DB78B59A /* GroupVarintDetail.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 0CCF7F39735C5EB91000A061C7146D08 /* GDTCORConsoleLogger.m in Sources */ = {isa = PBXBuildFile; fileRef = 3517D861B595A7821184640F0BE4490D /* GDTCORConsoleLogger.m */; }; + 0CD772F3CA8AFCDA2C782863F83E34ED /* SDImageFrame.h in Headers */ = {isa = PBXBuildFile; fileRef = 264DC8E81F8771A101522171898276FC /* SDImageFrame.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 0CE810B12665960D1BF99B9DE1F882A9 /* TOCropView.m in Sources */ = {isa = PBXBuildFile; fileRef = 9E9236BF00C9FDCE2CFAB89E5365DABB /* TOCropView.m */; }; + 0CFE4D342581C8BFC6F7309481DC7F3E /* Unicode.cpp in Sources */ = {isa = PBXBuildFile; fileRef = A601D5464B05A583EFCE0E2965D83BE8 /* Unicode.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -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\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors"; }; }; + 0D0B0FC02320C284BC292CCB6DCDF10E /* BSG_KSObjCApple.h in Headers */ = {isa = PBXBuildFile; fileRef = 8860396888A40AA2D0F453E8FEE384A0 /* BSG_KSObjCApple.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 0D28E4B29E5AEED3111CEAF1219ABADB /* BugsnagCollections.h in Headers */ = {isa = PBXBuildFile; fileRef = 22FD3CD3C14D4A27147C7FD131AC67B1 /* BugsnagCollections.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 0D470498A1E745DD780450741266E903 /* http.c in Sources */ = {isa = PBXBuildFile; fileRef = 62B007BB105C236972648B36F9F24A2A /* http.c */; }; + 0D4E85109926BBCF06A45C0AB5B53B76 /* RCTTextAttributes.h in Headers */ = {isa = PBXBuildFile; fileRef = 4AE859DB73B60453019C741A10E0F20C /* RCTTextAttributes.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 0D9C733C19C269F70510EC6A188DCD2C /* Hazptr.cpp in Sources */ = {isa = PBXBuildFile; fileRef = ED1FC1838AC20AA29DBAE02E95FAA743 /* Hazptr.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -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\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors"; }; }; + 0DB60B8F544E04426307890BFCE2B019 /* UMUtilities.h in Headers */ = {isa = PBXBuildFile; fileRef = 196B684FE01202205F7C293DDDC2A697 /* UMUtilities.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 0DEECDFBA4DE00E9FEA4A32904A5C8AD /* RCTTextShadowView.m in Sources */ = {isa = PBXBuildFile; fileRef = 2B8F70455DFC37E55AF0D4CB3D1903A2 /* RCTTextShadowView.m */; }; + 0DFD179C756592AB01A8841EA1B44299 /* Poly.h in Headers */ = {isa = PBXBuildFile; fileRef = B8A8FD6E338F770746C2515FF05ED4E3 /* Poly.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 0E080F1E747A9D515BE9D22D88AD8F18 /* GTest.h in Headers */ = {isa = PBXBuildFile; fileRef = EFAD5EE7E50BC426E4036746EAF035F0 /* GTest.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 0E2E2C6FF5241928DEBD933F4B74BA08 /* RNJitsiMeetViewManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 3C559E3DA31957EBFEC0E161361DD497 /* RNJitsiMeetViewManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 0E392BC202D6404A17BAC4E9DA6ADEA5 /* ht-internal.h in Headers */ = {isa = PBXBuildFile; fileRef = 20BB672B1ED38F35C99F568A333291C4 /* ht-internal.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 0E4202F4898D47325175B6D4AB7DE623 /* AsyncSocketException.cpp in Sources */ = {isa = PBXBuildFile; fileRef = CF19331C4BFCF98FDBF977DB471ED58B /* AsyncSocketException.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -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\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors"; }; }; + 0E449C03873A708ED7C9E7B9863F8F99 /* MPMCQueue.h in Headers */ = {isa = PBXBuildFile; fileRef = 5DB6D4BFADE9E179B6CE6211B5C9535D /* MPMCQueue.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 0E573933358CB624E531943CB81F4D1A /* BlockingQueue.h in Headers */ = {isa = PBXBuildFile; fileRef = FD3A0B4E8CF1B34B3A4E43A21FE9BAD7 /* BlockingQueue.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 0E671896643FED91DF8202D4EF4D0015 /* UMModuleRegistryConsumer.h in Headers */ = {isa = PBXBuildFile; fileRef = A6069B0CE5871CE390C0BF17513DAB9B /* UMModuleRegistryConsumer.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 0E75A51375C4953BB8691BF8B6359CD3 /* BSGEventUploadFileOperation.m in Sources */ = {isa = PBXBuildFile; fileRef = D360CDBB3F44D031ECD8095EC7D2DA6B /* BSGEventUploadFileOperation.m */; }; + 0E7E92F364517CF87B49722AE529F8B3 /* SSLOptions.h in Headers */ = {isa = PBXBuildFile; fileRef = D78B65C229F9D0E7291DEFF4B6725894 /* SSLOptions.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 0E7FBEE01CB0B7C1CD117BF6B6961B8D /* dynamic-inl.h in Headers */ = {isa = PBXBuildFile; fileRef = 654108A5820A9ABD604CFC74958161C4 /* dynamic-inl.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 0EAC9730F80AA2D6D5A23EBDA0B4A4E8 /* StreamsWriter.cpp in Sources */ = {isa = PBXBuildFile; fileRef = B316952DD73BA4536327BAC2F0C3085C /* StreamsWriter.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -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 -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors"; }; }; + 0EB04EB6370A0097BEDD05E8E45A436E /* SDImageLoadersManager.h in Headers */ = {isa = PBXBuildFile; fileRef = F1D8F2EE73988327CFE6DD4EA11D606D /* SDImageLoadersManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 0ECABF3238BC16C0456A9A55D13E78C7 /* BugsnagEventDeserializer.m in Sources */ = {isa = PBXBuildFile; fileRef = ACFE58F4770B1DD6CAA4F08F6E09FDB0 /* BugsnagEventDeserializer.m */; }; + 0EF5CD7DFDF7DB7FCB1490E08F54E6C7 /* FingerprintPolynomial.h in Headers */ = {isa = PBXBuildFile; fileRef = 97C85C41CE66F2DB92F38874F06E6344 /* FingerprintPolynomial.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 0F24194DB450B38B3C8399FC9AA75C56 /* FBLPromise+Retry.m in Sources */ = {isa = PBXBuildFile; fileRef = F5482F3FA62ED2DDA5C9E62A59C92487 /* FBLPromise+Retry.m */; }; + 0F2AAE10F9BA1DED4E711A3FBA2E1649 /* RNRotationHandler.m in Sources */ = {isa = PBXBuildFile; fileRef = 58519E4FEB91B7580E9B7363FEF12612 /* RNRotationHandler.m */; }; + 0F2C447A8B2E00B012ED4BA187C11448 /* BugsnagThread.m in Sources */ = {isa = PBXBuildFile; fileRef = 040DF08DF9FBD2E0C494597214DED9CB /* BugsnagThread.m */; }; + 0F32FC0B4F3A3581B39543C67ABB9555 /* GFlags.h in Headers */ = {isa = PBXBuildFile; fileRef = 1C97342A3E9D7DEF1AC86F5B99518105 /* GFlags.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 0F352681CB362352125563F110EA8004 /* StaticTracepoint.h in Headers */ = {isa = PBXBuildFile; fileRef = B25041660018CCFC686A1BCEBBC6700A /* StaticTracepoint.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 0F49A2E9D56B8E78B5A453E9F7A788D9 /* FlipperPlugin.h in Headers */ = {isa = PBXBuildFile; fileRef = 179DE4BAD48DE65AB612FD237939782A /* FlipperPlugin.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 0F5E9ECC5E6943F852F867A054E10DC0 /* IOS7Polyfill.h in Headers */ = {isa = PBXBuildFile; fileRef = 4151E6E8CD22D62817BFD176F46C47B2 /* IOS7Polyfill.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 0F65A1A60A246043D6BC97F0B955C4F0 /* RemoteObjectsTable.h in Headers */ = {isa = PBXBuildFile; fileRef = FD461EE59FE4B4B89FF3F7146CEB210A /* RemoteObjectsTable.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 0F679AFE541FD3314C176461A5C721B8 /* StringKeyedCommon.h in Headers */ = {isa = PBXBuildFile; fileRef = B38339CD40565498AB3A0F135F383164 /* StringKeyedCommon.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 0F774309774C438DB355CCD2F5F3B3C9 /* GULLoggerLevel.h in Headers */ = {isa = PBXBuildFile; fileRef = 1A2582A0D7CD2DB2109561639E902BC9 /* GULLoggerLevel.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 0F77C1E509E3104168A71A86B936A8CF /* SKApplicationDescriptor.m in Sources */ = {isa = PBXBuildFile; fileRef = CFD0D773F2FCE6B5C0D56C2842DB0467 /* SKApplicationDescriptor.m */; settings = {COMPILER_FLAGS = "-DDEBUG=1 -DFLIPPER_OSS=1 -DFB_SONARKIT_ENABLED=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -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"; }; }; + 0F856B9E0FD09097F3B8CF888531F34E /* JemallocNodumpAllocator.h in Headers */ = {isa = PBXBuildFile; fileRef = 5775ADFBB74ED75DEFFE18D8CA627FAD /* JemallocNodumpAllocator.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 0F87F04BF95BFD28A16838EAB6A92E55 /* FIRInstallationsIIDTokenStore.m in Sources */ = {isa = PBXBuildFile; fileRef = F9FD59B33C4ADE83A2C7E66A89D544B6 /* FIRInstallationsIIDTokenStore.m */; }; + 0F8F42DBAD3056AE007CD216DF74A306 /* Codel.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 0C35B1979695650F734AC54105C3ED8F /* 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"; }; }; + 0FAD0CB172277C8F61217E74BE8904E8 /* EDFThreadPoolExecutor.h in Headers */ = {isa = PBXBuildFile; fileRef = 46BBC9B222608E0E230078D3521E37A2 /* EDFThreadPoolExecutor.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 0FE885E54EB2AD1508542B863534F972 /* MessageTypes.cpp in Sources */ = {isa = PBXBuildFile; fileRef = D44C0140539A59A18FE89CE33D234A04 /* MessageTypes.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + 0FFD5227B9B90E7A5A3C35B2BF24E36C /* BitIteratorDetail.h in Headers */ = {isa = PBXBuildFile; fileRef = EC301A08BE3237E8EBE79C29BA2180C8 /* BitIteratorDetail.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 100546FA55A6A911F99281D3E4545C47 /* cost_enc.h in Headers */ = {isa = PBXBuildFile; fileRef = A30BDD6D18D3E6C8BE21D0EE933FEC3A /* cost_enc.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 100C21A02143035E1CBE33AC1B76F326 /* ThreadLocalDetail.h in Headers */ = {isa = PBXBuildFile; fileRef = 5B8BD7373D246A01D50CF1FCB4510433 /* ThreadLocalDetail.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 10292FF65AB64E249B2D1D74E2BEFB8F /* Shared.m in Sources */ = {isa = PBXBuildFile; fileRef = 13DFE388CEDD89331C7130FB57E3D3D8 /* Shared.m */; }; + 102FB979C7A6B117BEFF843D064AB8D4 /* RCTProfile.m in Sources */ = {isa = PBXBuildFile; fileRef = B904EDD7A21392FF5218370D4C03BFD1 /* RCTProfile.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + 1037EA3982A30AC2C78DAEBE4E6E892E /* SDWebImage.h in Headers */ = {isa = PBXBuildFile; fileRef = F19C3F3CCF694603ACEC809519F74205 /* SDWebImage.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 1043542EFBACD82404025754B2B8C645 /* SKNodeDescriptor.mm in Sources */ = {isa = PBXBuildFile; fileRef = 5735D8B0589DE7582511C83B1D932989 /* SKNodeDescriptor.mm */; settings = {COMPILER_FLAGS = "-DDEBUG=1 -DFLIPPER_OSS=1 -DFB_SONARKIT_ENABLED=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -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"; }; }; + 10461CC2BC0164993A7BDA589945D896 /* StampedPtr.h in Headers */ = {isa = PBXBuildFile; fileRef = 7E27EFE4910AE5DC5AFC602ABA55139A /* StampedPtr.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 105F962932C375B95CC8308D0E73ADED /* GlobalExecutor.h in Headers */ = {isa = PBXBuildFile; fileRef = A9D27B78632B4D950CAC99302388240E /* GlobalExecutor.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 1083DE8AF0A357ACEF9D9BC74556035C /* FIRInstallationsStore.m in Sources */ = {isa = PBXBuildFile; fileRef = 12B4D0E69B42898FEE7C64F75658DD45 /* FIRInstallationsStore.m */; }; + 1085003D8B2A4450BE38128F9914EC97 /* TcpConnectionAcceptor.h in Headers */ = {isa = PBXBuildFile; fileRef = 68ECE53B36A62F07366780830325CAB6 /* TcpConnectionAcceptor.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 108AE943FFD960CA6936BDF4864ADA62 /* Checksum.h in Headers */ = {isa = PBXBuildFile; fileRef = 7D68A83D62AC5EA286C25D57233F524A /* Checksum.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 1095DA2DAEF01B7C3553ED261E431280 /* DistributedMutex.h in Headers */ = {isa = PBXBuildFile; fileRef = F54EC49EE27595E7E1A857F791CC1C27 /* DistributedMutex.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 10B3761610629E3B934BB8C1DB8C6CC8 /* ScheduledSingleSubscription.h in Headers */ = {isa = PBXBuildFile; fileRef = 7A484DDABB84263AD064B6E98671AE8B /* ScheduledSingleSubscription.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 10B8AD812C1894D236B3637997F1E06E /* IPAddressV4.h in Headers */ = {isa = PBXBuildFile; fileRef = F93717F4C8C2112025E8814378E75D48 /* IPAddressV4.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 10C959EBE6C5627B66703C36CAB92827 /* TestObserver.h in Headers */ = {isa = PBXBuildFile; fileRef = 5B521E87425A4CF714B0790D468D35FF /* TestObserver.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 10D3D8BF0E3CA1E949AF2F839C0321A1 /* FIRAppAssociationRegistration.m in Sources */ = {isa = PBXBuildFile; fileRef = B49D41C143E58F3495723D2CF6FD6BF7 /* FIRAppAssociationRegistration.m */; }; + 10D4590EBF35739CF28F26DEE8F91B4E /* UIColor+SDHexString.m in Sources */ = {isa = PBXBuildFile; fileRef = 5D56E1417CC17922E45A1213CF47145C /* UIColor+SDHexString.m */; }; + 10EEBC3F7BC86C32E9A0DBFEEF6FFA04 /* UIImage+GIF.m in Sources */ = {isa = PBXBuildFile; fileRef = 5C276E40FB11F208975252A027EF257B /* UIImage+GIF.m */; }; + 10F9F87FA5267F4D4AF486A99A82080A /* Event.h in Headers */ = {isa = PBXBuildFile; fileRef = 0BD13C95C12A0845B251BAEF7C0E30A1 /* Event.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 1108508861B3E3C7F1417640E6E7BF7F /* json.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 94206CF6E7B7962F10AA8B2B1B313F9D /* json.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -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\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors"; }; }; + 111710D2DDA820B176CD26DFC954B1F6 /* FIRCLSMachO.h in Headers */ = {isa = PBXBuildFile; fileRef = 38E8AA73BA78784B368978C9A1A16C35 /* FIRCLSMachO.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 11231378DFABBFD74020590AA4BFDFDF /* RNSScreenStackHeaderConfig.m in Sources */ = {isa = PBXBuildFile; fileRef = D02C6ABB28463CB47A581157D3C68849 /* RNSScreenStackHeaderConfig.m */; }; + 112CC9427321C72575D6006F2CD9457A /* RCTInputAccessoryShadowView.h in Headers */ = {isa = PBXBuildFile; fileRef = 5CAA66F6DB529C14D44B812675A4468A /* RCTInputAccessoryShadowView.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 113EB3C685DE5000477ED03FC2FA5155 /* Spin.h in Headers */ = {isa = PBXBuildFile; fileRef = 9C4715389C063A644FD9B1177AA7D2AD /* Spin.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 115C2B117416BB05279FB9EBA783DD7A /* PBEncodeItem.hpp in Headers */ = {isa = PBXBuildFile; fileRef = E8F5E04EDAF61B931754F5347ABAA5B8 /* PBEncodeItem.hpp */; settings = {ATTRIBUTES = (Project, ); }; }; + 116BBEDDFF59397F37DAD75887421EA9 /* RCTSurfaceStage.h in Headers */ = {isa = PBXBuildFile; fileRef = DF75627473938CFD636AEA4D64C5EE54 /* RCTSurfaceStage.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 117156EED437F2EF7ED3A222F7DD7032 /* RCTTouchHandler.h in Headers */ = {isa = PBXBuildFile; fileRef = BE4BF2B90A39CF8DBE4933FC5F6E71E1 /* RCTTouchHandler.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 118DA3A6C7C79897FC18E852D8D25CEA /* RCTModalManager.m in Sources */ = {isa = PBXBuildFile; fileRef = 4AD13B8E59FB608E9875ACFB14DB1B2B /* RCTModalManager.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + 119CD1193BF1EFEC25FB318D7CC7EE09 /* rescaler_utils.h in Headers */ = {isa = PBXBuildFile; fileRef = 0E256B2666895EC9CF08227E622C6892 /* rescaler_utils.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 11C63587CB9CFC3F36D750D8F819AC2A /* RCTImageStoreManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 8487E2CA389C2872CE4D384E888CE6B9 /* RCTImageStoreManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 11DE6CA0BAD5412AC7AFE66D7C57A1FD /* PriorityUnboundedQueueSet.h in Headers */ = {isa = PBXBuildFile; fileRef = 11B57D9AB31BF88D761590967129678D /* PriorityUnboundedQueueSet.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 11EACFBF7B8A8ADF8B03F0B6AEBB9AB3 /* FIRInstallationsErrorUtil.m in Sources */ = {isa = PBXBuildFile; fileRef = E74CA33DC4408297AB9312E4ADD10393 /* FIRInstallationsErrorUtil.m */; }; + 11EEF7434F3CB8C5E98B7AC320AE0A99 /* FIRErrors.h in Headers */ = {isa = PBXBuildFile; fileRef = 2A043FAA13A27B2B62A791DD5EC7F592 /* FIRErrors.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 1202FC46787FDC5FCE5A4086A65FF161 /* Synchronized.h in Headers */ = {isa = PBXBuildFile; fileRef = DB1323C9DA03F365D3974FE452471AC1 /* Synchronized.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 123673DD72A698F0C680B0369FAE04A7 /* Windows.h in Headers */ = {isa = PBXBuildFile; fileRef = 2DFD728DF9D1616DDD018BD16AF24D08 /* Windows.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 123C1480D4EA487EA78A750D16868A3E /* MMKVMetaInfo.hpp in Headers */ = {isa = PBXBuildFile; fileRef = 70AB97C866EC4883C3549BD4D9E70EB2 /* MMKVMetaInfo.hpp */; settings = {ATTRIBUTES = (Project, ); }; }; + 123D708009A1EB9B8963256E2977D8EE /* AESCrypt.h in Headers */ = {isa = PBXBuildFile; fileRef = 5853C7858745BDC0AECED015B132A3DF /* AESCrypt.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 123F25470A20B6865EE31DA102D79ADE /* FIRCLSUnwind_arm.c in Sources */ = {isa = PBXBuildFile; fileRef = E1713A5588F8D04B6CA83CD72D7E26D0 /* FIRCLSUnwind_arm.c */; }; + 1269D4C0ED48C68E928D7F77536B0416 /* RNCSafeAreaViewManager.m in Sources */ = {isa = PBXBuildFile; fileRef = A9D8EC8975C06F9981D05C04B002E935 /* RNCSafeAreaViewManager.m */; }; + 127E92E08E641E50810D7639DDEAB8EF /* JSINativeModules.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 073BE3EF857A2E9BD04B152B8F9524CD /* JSINativeModules.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + 12848068DAE2A4EDDE56C93A05053998 /* RCTTransformAnimatedNode.m in Sources */ = {isa = PBXBuildFile; fileRef = A4318DB425556BD36065E7BFE615F68F /* 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"; }; }; + 12973860A04C8D66CB33D43657920BD7 /* ManualExecutor.h in Headers */ = {isa = PBXBuildFile; fileRef = 1EA6BFAE763CA45256D20AC1C876EAE9 /* ManualExecutor.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 1297EBA70554372883595F79E1663C02 /* RNGestureHandler.h in Headers */ = {isa = PBXBuildFile; fileRef = 4EFB5A68337E6B1673E953CF8E8FE331 /* RNGestureHandler.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 12C480A6B7C3A5398BA1EF5F9ED0A2E9 /* FIRCLSCompactUnwind_Private.h in Headers */ = {isa = PBXBuildFile; fileRef = 59FC09B88591434507CC1AB2FDB224F1 /* FIRCLSCompactUnwind_Private.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 12CC3A8B57436CFE77772345EA6C6851 /* BSG_KSSystemInfoC.h in Headers */ = {isa = PBXBuildFile; fileRef = E6541407FBC45AD01D6C67E86D304935 /* BSG_KSSystemInfoC.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 12D8142AAF65EE8A115784DB981CBA55 /* KeyCommands-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 6A0B6A1B74F6240D061C16E7A8517D50 /* KeyCommands-dummy.m */; }; + 12EB37B14C88AED393B9A783CC525A20 /* Memory.h in Headers */ = {isa = PBXBuildFile; fileRef = E0ED632A690028C20D54E6F3A7876D12 /* Memory.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 130C229A798E375398E6C5663F9E3387 /* FIRCLSByteUtility.m in Sources */ = {isa = PBXBuildFile; fileRef = DD27B446E08664EF31F0CFB66BC3578C /* FIRCLSByteUtility.m */; }; + 132725CAA50279DF84E3EA2E6A934050 /* RCTComponentEvent.m in Sources */ = {isa = PBXBuildFile; fileRef = E14F97DFBA6EDB24AE0BA2664AEA03E7 /* RCTComponentEvent.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + 1340CDEB18EB6B55261CFC70F7415357 /* MMKVLog.h in Headers */ = {isa = PBXBuildFile; fileRef = C3DE11FB3C66C7DE7FD2E306BA250BB9 /* MMKVLog.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 1347A606F2FFC757B47E7BB520B989AB /* BugsnagClient.h in Headers */ = {isa = PBXBuildFile; fileRef = D4379BCDE544B189C14DEA4F7CDC496D /* BugsnagClient.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 13567409C076ABF0000D237F64B0592C /* BSGAppHangDetector.h in Headers */ = {isa = PBXBuildFile; fileRef = 75F1836F8CC9C426B26F8EEE1ECE4D5C /* BSGAppHangDetector.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 135E02AE405969EF60EB9ED19EF69179 /* FBLPromise+Wrap.h in Headers */ = {isa = PBXBuildFile; fileRef = B65B9F2A9526E214078BD707BDCC2D26 /* FBLPromise+Wrap.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 1379B0785830C9D4200C31A2A610459C /* DynamicBoundedQueue.h in Headers */ = {isa = PBXBuildFile; fileRef = 58C124214334D215C571233F174C083D /* DynamicBoundedQueue.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 13955229B8A946EEFEF1D5D623011D34 /* Bugsnag.m in Sources */ = {isa = PBXBuildFile; fileRef = 491D7E76386CC39B7D3DA418C8BDF3F3 /* Bugsnag.m */; }; + 1399EEA6FCAF0336A0FF30FDDFD483AD /* FIRCLSURLBuilder.h in Headers */ = {isa = PBXBuildFile; fileRef = 121DD1F09E8CD3C53B0E6E1715834DE8 /* FIRCLSURLBuilder.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 13A86F770355EDB61806747D3CD2A624 /* RCTBridge.m in Sources */ = {isa = PBXBuildFile; fileRef = 02CE0DDBE38304A04A05DEF7F5FE3CAD /* RCTBridge.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + 13AE964355BF3A30F4B769AE55473D0C /* Enumerate.h in Headers */ = {isa = PBXBuildFile; fileRef = 8B42A19F67132E1C6AB2FBCA32F5410D /* Enumerate.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 13BC94F0ACAA7972E91589EB80D2CEC3 /* RCTConvert+RNNotifications.h in Headers */ = {isa = PBXBuildFile; fileRef = 9D7BF1DD96609446F172113B64BFAE2F /* RCTConvert+RNNotifications.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 13CEB1B34518BF11E92D2DDDC9A7BA6B /* BSG_KSCrashReportWriter.h in Headers */ = {isa = PBXBuildFile; fileRef = A57488A1DF1FBC162D26AA9A1E49FC7F /* BSG_KSCrashReportWriter.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 13DA04B0F979992769E432DBFF641596 /* GDTCORConsoleLogger.h in Headers */ = {isa = PBXBuildFile; fileRef = 053CA373BD5F378835A56B7120D20A24 /* GDTCORConsoleLogger.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 13E0B8083C77AC197283DBF2E085F77D /* TimerFD.h in Headers */ = {isa = PBXBuildFile; fileRef = 2E0B130F0EDA36A6DC22F6BFF7580C99 /* TimerFD.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 14145C265AEB6E2AF8B6BE5468C80C3C /* RCTBorderStyle.h in Headers */ = {isa = PBXBuildFile; fileRef = 14A980A1F6A5351277268F114470A347 /* RCTBorderStyle.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 1429B9C3708FA347D6C374F63722F3A6 /* ConcurrentSkipList.h in Headers */ = {isa = PBXBuildFile; fileRef = E9D56396B82765C9C86F9435AABF8ADB /* ConcurrentSkipList.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 1437F8AD000D15D1909BF8190485B21F /* RCTRedBoxExtraDataViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = 6EE0C5A09F4412AFA85384470C4E09CE /* RCTRedBoxExtraDataViewController.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + 143E4A43861EBD1AD358EA4EAEF5DB4C /* SDWebImageTransitionInternal.h in Headers */ = {isa = PBXBuildFile; fileRef = 00B2205C58EB486B6313EC54BE2896D0 /* SDWebImageTransitionInternal.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 1443544E4ED78F9E2E9AF56A8DC2BD60 /* EXVideoPlayerViewControllerDelegate.h in Headers */ = {isa = PBXBuildFile; fileRef = 1C7C86FBA70F8F4B2E985D926E9ED8C1 /* EXVideoPlayerViewControllerDelegate.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 1469297FAC1D481152506BCECFF6E076 /* FirebaseCoreDiagnostics-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 05EB8F810BAF57C53BB703D4662738BE /* FirebaseCoreDiagnostics-dummy.m */; }; + 146B04CB7EFBA47B094BA351681FD7D0 /* UnboundedQueue.h in Headers */ = {isa = PBXBuildFile; fileRef = 3E7C236A5DF80F7A8F26A2A730EC81EE /* UnboundedQueue.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 1491D560BEB19894FC1C8CDAF8EA67FE /* FIRCLSProcess.c in Sources */ = {isa = PBXBuildFile; fileRef = E0BB57D21ED84CE263E1CE65E9576113 /* FIRCLSProcess.c */; }; + 14A87F60DAF6071C345441662C5A4EDF /* Cursor.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 54FBE15BA1D187A4AEFAFA03FEFC9C25 /* 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"; }; }; + 14A8E57EC1C343395E78E4FA6FB1B60E /* FBLPromise+All.m in Sources */ = {isa = PBXBuildFile; fileRef = 10520864986AC74E006BBF6148DE74DA /* FBLPromise+All.m */; }; + 14B5715EDD3E500DBC80FBA55D614500 /* FIROptions.m in Sources */ = {isa = PBXBuildFile; fileRef = 6F6FC2381953D8CC4C8047736CEDB43F /* FIROptions.m */; }; + 14D462BC8D521629E0E1D310C7DAB77F /* Bugsnag.h in Headers */ = {isa = PBXBuildFile; fileRef = 7BF8661320B466C1F5A30A9F6C78911D /* Bugsnag.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 14EF8BD103E775F17E2375740F395B59 /* ObservableDoOperator.h in Headers */ = {isa = PBXBuildFile; fileRef = 95503C247F5429F6E5C0317D8BCA8A9A /* ObservableDoOperator.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 14F281D6536469ACB45BD441C238638A /* react-native-jitsi-meet-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = DA84AA5EDB8540934AFDE0056B486425 /* react-native-jitsi-meet-dummy.m */; }; + 1505B36824645072D7C0348ABE578B10 /* SDFileAttributeHelper.h in Headers */ = {isa = PBXBuildFile; fileRef = 688EF260FB61D08789469748B8495A10 /* SDFileAttributeHelper.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 1507CD09ADFB633C1483488855ED5195 /* ExecutorWithPriority-inl.h in Headers */ = {isa = PBXBuildFile; fileRef = 4EB838DCA6BEE96C8E8347222F32D6E7 /* ExecutorWithPriority-inl.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 152F3BA25B8B0F950634ABEA209D9520 /* MessageTypesInlines.h in Headers */ = {isa = PBXBuildFile; fileRef = 545A99D73B6AF3C5CE7D098FDB345E72 /* MessageTypesInlines.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 153A35D525E60C8D3F22126121437AAD /* EventBase.h in Headers */ = {isa = PBXBuildFile; fileRef = A23A4947A1B36DA2A9D086CE451C65B1 /* EventBase.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 157FCED34BD3B6B7931CFF97A166899B /* BasicTransportCertificate.h in Headers */ = {isa = PBXBuildFile; fileRef = 8361C68194C6E65F993234F30CD0D120 /* BasicTransportCertificate.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 15841A44E9F38BBB2C5D49350922E10E /* YGConfig.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 11EF47C53C4E679048BC90E967DEA688 /* YGConfig.cpp */; settings = {COMPILER_FLAGS = "-fno-omit-frame-pointer -fexceptions -Wall -Werror -std=c++1y -fPIC -fno-objc-arc"; }; }; + 15896D76FDC427E83052344D7EA9934F /* RNGestureHandlerModule.h in Headers */ = {isa = PBXBuildFile; fileRef = FB89335A51E5ED3CA6083050F7673144 /* RNGestureHandlerModule.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 15A9EAB9C5536CA0371703D13A7CCB3E /* RCTConvert.h in Headers */ = {isa = PBXBuildFile; fileRef = CE19C469714E90E6046C7BB53DFECFFD /* RCTConvert.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 15E91BD536DF213A23E5F7AC6B4C10E8 /* Pods-ShareRocketChatRN-umbrella.h in Headers */ = {isa = PBXBuildFile; fileRef = BAED847E8A22919EDDB894F3B4C38BFF /* Pods-ShareRocketChatRN-umbrella.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 15EBE00030192A312CE041F99C70149F /* RequestResponseRequester.cpp in Sources */ = {isa = PBXBuildFile; fileRef = BA99F33CB1BE0E6FF8F2B36C459CFCAE /* RequestResponseRequester.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -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 -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors"; }; }; + 15F5180613B16824522E75FF3BBD82F8 /* RNFBVersion.h in Headers */ = {isa = PBXBuildFile; fileRef = 9B448EEF196BC34CAABD90DDD6E824BD /* RNFBVersion.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 15FEA48CE1262EC1BC9FE30DB15E8CEC /* FIRConfigurationInternal.h in Headers */ = {isa = PBXBuildFile; fileRef = BE632B847C3388AFC7C215B03240E2F3 /* FIRConfigurationInternal.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 160F270DC385E9C00587FB20ADE2E7BF /* FlipperCertificateProvider.h in Headers */ = {isa = PBXBuildFile; fileRef = EFFA9C330697F1C695ACB214D18D70F9 /* FlipperCertificateProvider.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 161EA5331EA7CFB79CE421CF2D34B80E /* MiniPBCoder.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 1D6942D068B09895C41350CB6C8CC2A0 /* MiniPBCoder.cpp */; settings = {COMPILER_FLAGS = "-x objective-c++ -fno-objc-arc"; }; }; + 16439D5F2BC17BA5A8F09779B09C76EB /* dsp.h in Headers */ = {isa = PBXBuildFile; fileRef = C8A12A33D06B594ABBEF1E48E3E85A16 /* dsp.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 1648FD35A33B5EF8C8B58A3C2B697731 /* GDTCORFlatFileStorage.m in Sources */ = {isa = PBXBuildFile; fileRef = 54946FE14E42A0C43FE23C82BCBAFBAA /* GDTCORFlatFileStorage.m */; }; + 165B38ADDE0D6A5E86C9A023AD2F7416 /* strtod.cc in Sources */ = {isa = PBXBuildFile; fileRef = 7F7AD7BC28C9471F9722B61DA33E2C02 /* strtod.cc */; settings = {COMPILER_FLAGS = "-Wno-unreachable-code"; }; }; + 16638CFEBFCF81BB884E5140AF782F42 /* RNCSafeAreaViewEdges.h in Headers */ = {isa = PBXBuildFile; fileRef = 305D26CFA761F37B3D47E07007EC7B10 /* RNCSafeAreaViewEdges.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 1673051120737E8AFD929B68490C0FBE /* RCTBridgeModule.h in Headers */ = {isa = PBXBuildFile; fileRef = 58189553A81DAB14B80317C7FAD3B6D4 /* RCTBridgeModule.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 1686E658AF00D79A5D8EF1F3629B0F3F /* FIROptionsInternal.h in Headers */ = {isa = PBXBuildFile; fileRef = 19BF4ECC51547C51107B3FCF3410CBDE /* FIROptionsInternal.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 169CB94A8FAE1994D99A6988D9B511FA /* SonarKitNetworkPlugin+CPPInitialization.h in Headers */ = {isa = PBXBuildFile; fileRef = F2E7E882068AFFD0D788B616C92B5C4B /* SonarKitNetworkPlugin+CPPInitialization.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 16AE6CCC7D6E8B90193A5B409E1DF7A1 /* PicoSpinLock.h in Headers */ = {isa = PBXBuildFile; fileRef = A98037ED1EC3C4BD6B05A6FF59336A08 /* PicoSpinLock.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 16B346C56CCC6B1A57F37F1664CF905F /* Padded.h in Headers */ = {isa = PBXBuildFile; fileRef = 82BB956AEDA8DF0B9321C43CCC62EDF0 /* Padded.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 16B4688CAD8DE1DBDCCF7045D215A213 /* rescaler_sse2.c in Sources */ = {isa = PBXBuildFile; fileRef = 1A36517820140511F2A7CA13C100543D /* rescaler_sse2.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; + 16C2806AECF9D3AA6283E295081DF67C /* json_pointer.h in Headers */ = {isa = PBXBuildFile; fileRef = 3934E42C240DA3063BD1AC4EF695CEA4 /* json_pointer.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 16D6AF7A753D6159FAAFB4F548EE630E /* SKDispatchQueue.h in Headers */ = {isa = PBXBuildFile; fileRef = 94B75D8DFA6087D12A00F22627596B00 /* SKDispatchQueue.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 16DA3275B74A220727BF2C99C7646884 /* IntrusiveList.h in Headers */ = {isa = PBXBuildFile; fileRef = E4B0D417A284D85E11C0002AB9A27794 /* IntrusiveList.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 16F6C413CB5A40D9F012015E3FD4D125 /* MicroSpinLock.h in Headers */ = {isa = PBXBuildFile; fileRef = 688E8F5E88D5CC006C64A88621FE40AE /* MicroSpinLock.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 17062D6BE0624FEE08C77FBDD2AA695D /* log.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 438F9C3779F6BDA03A38EC647FD69CC2 /* log.cpp */; settings = {COMPILER_FLAGS = "-fno-omit-frame-pointer -fexceptions -Wall -Werror -std=c++1y -fPIC -fno-objc-arc"; }; }; + 170AB88FAD0F4C61B341ACCDE34EF30D /* react-native-blur-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = A10EEBDD70E24A024D7E6587F1225DD7 /* react-native-blur-dummy.m */; }; + 17172BA83412F990A66E82F33D2DFC2E /* RNDeviceInfo.m in Sources */ = {isa = PBXBuildFile; fileRef = 5BFE91A875DDEAD9CC8256B23F04BF88 /* RNDeviceInfo.m */; }; + 171896943BBFAA6163ED338C342A16C8 /* ThreadPoolExecutor.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 838D4CE26A6C6AE7A27D939C780B2D15 /* ThreadPoolExecutor.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -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\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors"; }; }; + 1726B1F1F58C820750C19A8205D39564 /* FIRInstallationsItem+RegisterInstallationAPI.h in Headers */ = {isa = PBXBuildFile; fileRef = 9E583AE0B79ADCAFA06F714C42CC11AA /* FIRInstallationsItem+RegisterInstallationAPI.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 17424544A674FD7632997CF393933D47 /* RNCNetInfo.h in Headers */ = {isa = PBXBuildFile; fileRef = A8ED4FC37F45F282C42B8DB967D8F07D /* RNCNetInfo.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 17429748F7E064714C59EC8694727F4E /* Uri-inl.h in Headers */ = {isa = PBXBuildFile; fileRef = DDF3F3DE44951223CA46296DCF7D8E7F /* Uri-inl.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 1760092F334E32B88EE00A3B80D8BBF2 /* JSCExecutorFactory.h in Headers */ = {isa = PBXBuildFile; fileRef = 1960D56E4D19A1C62EB36FDC3EC3071F /* JSCExecutorFactory.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 17683473E0FF2B42CCCF9FAB9E17557C /* FlipperState.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 0897E020451836245A908CBBB9AFCCD2 /* FlipperState.cpp */; settings = {COMPILER_FLAGS = "-DFLIPPER_OSS=1 -DFB_SONARKIT_ENABLED=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -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"; }; }; + 176C9E315CBF4E6E4042641DC6C8504E /* RCTImageDataDecoder.h in Headers */ = {isa = PBXBuildFile; fileRef = A5B4AE691E43B8B3A2967DE826F9AD7A /* RCTImageDataDecoder.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 17841417263BB19547CE11E028BE5168 /* Color+Interpolation.h in Headers */ = {isa = PBXBuildFile; fileRef = D6B274FFC451DF078D950A38CA3B7134 /* Color+Interpolation.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 178702EA528CE0D51563EB77A6475AB8 /* SaturatingSemaphore.h in Headers */ = {isa = PBXBuildFile; fileRef = 08A59F0DE37F1C78D22058822CF368F8 /* SaturatingSemaphore.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 179AC0C613BF4E4496C979691FFABAF9 /* RNFetchBlobNetwork.m in Sources */ = {isa = PBXBuildFile; fileRef = E35B447FE84DFCBF82D5E0E79DEB9EFD /* RNFetchBlobNetwork.m */; }; + 179DF8F785D2F361049B3ADCE0326AAB /* TimedDrivableExecutor.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 654F6D6BF4D05C60FE527A20451CF793 /* 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"; }; }; + 17B0EABC708A38BE735D617E20E20BF3 /* MiniPBCoder_OSX.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 60686497E1A2DD6B97461E8F97C63EC4 /* MiniPBCoder_OSX.cpp */; settings = {COMPILER_FLAGS = "-x objective-c++ -fno-objc-arc"; }; }; + 17D1AE379FC85DB8C55D1373881246F6 /* jsilib-posix.cpp in Sources */ = {isa = PBXBuildFile; fileRef = FC766911E19B3B3A13737CDCDCA2B610 /* 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"; }; }; + 17D4801DE0C4953F756182DC7D65A06E /* SDImageGraphics.m in Sources */ = {isa = PBXBuildFile; fileRef = 218CF96A79E95351A8CD8A43240E1517 /* SDImageGraphics.m */; }; + 17E1D229F87EE984B0BF092600B9E7EE /* ExceptionString.h in Headers */ = {isa = PBXBuildFile; fileRef = AD3E68E6F82A75FE3EB0FD47443FBD54 /* ExceptionString.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 17F0CB39736C0ED3CBA5E45539700047 /* hu.lproj in Resources */ = {isa = PBXBuildFile; fileRef = 88634999BAA1C0342A70D48584930D65 /* hu.lproj */; }; + 18035A2E53C70220C42E897E695D0DAB /* FlipperResponderImpl.h in Headers */ = {isa = PBXBuildFile; fileRef = 7AFD54C7506900B0B8E92D9FC738426D /* FlipperResponderImpl.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 18128F781C06ED8E144C508F0DC2AA71 /* GDTCORDirectorySizeTracker.h in Headers */ = {isa = PBXBuildFile; fileRef = 4A0EEBD114D5C97DC68BAE115096E92D /* GDTCORDirectorySizeTracker.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 18249DC50B1EB50B25F1B22503661F32 /* RCTComponentData.m in Sources */ = {isa = PBXBuildFile; fileRef = 0000F319375A277EF8E1E5058ECD39E9 /* RCTComponentData.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + 182BB128759D1A9E3F70E1740F07330E /* PriorityUnboundedBlockingQueue.h in Headers */ = {isa = PBXBuildFile; fileRef = A014BE425C5CBD9DDC7C274146B4321C /* PriorityUnboundedBlockingQueue.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 182CE1F30A29C405CE09DFDB8082F13D /* RCTLayout.h in Headers */ = {isa = PBXBuildFile; fileRef = 1EA1660C495D301B4D88925F663734E4 /* RCTLayout.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 1831F1C8A034DFBD9B9A23358C734254 /* EventBaseManager.cpp in Sources */ = {isa = PBXBuildFile; fileRef = C5CCC1E5D273AAD82F90D01B0FAB97B7 /* 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"; }; }; + 1841491FD5A121F658BC20805C158E98 /* RCTScrollViewManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 19C03714E1CFB1CE5B3485C6DA8FF0D4 /* RCTScrollViewManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 1855441164B0A38244DE3F632821D34C /* HazptrThreadPoolExecutor.h in Headers */ = {isa = PBXBuildFile; fileRef = 963D100AE3F34EC8E0415BDE41ED843A /* HazptrThreadPoolExecutor.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 1860012B6568D74080F8AC4063756EBE /* Rcu-inl.h in Headers */ = {isa = PBXBuildFile; fileRef = 18B3EBD7535B5948A767680D08D99FAA /* Rcu-inl.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 18A790934BBA7FFD42B9CE9386DB1683 /* RCTSinglelineTextInputView.h in Headers */ = {isa = PBXBuildFile; fileRef = 21E9B10350B20B46F457F1680D484330 /* RCTSinglelineTextInputView.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 18ADE7806255BA0087D7EF5FE11A9F34 /* REAValueNode.h in Headers */ = {isa = PBXBuildFile; fileRef = 3F633D0D6647123D1AFE1E37975AAB6D /* REAValueNode.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 18BB11E87ADBBBFAD61E80195A60466E /* UMReactNativeAdapter.h in Headers */ = {isa = PBXBuildFile; fileRef = 11A9510DE133A9F0D171C1943D3E3BBD /* UMReactNativeAdapter.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 18BE475AA589CA7E412B68666762DB15 /* F14Table.cpp in Sources */ = {isa = PBXBuildFile; fileRef = CBDE4A3F073F40553782AFDA8631AFEF /* 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"; }; }; + 18C0C6D3BB140055DA991CF3135DAFB7 /* cs.lproj in Resources */ = {isa = PBXBuildFile; fileRef = E67E4622717AF2F4B726295DFD25C04A /* cs.lproj */; }; + 18C7BF12ECFF6C04D5DC78E7EE5F9017 /* GULSwizzler.h in Headers */ = {isa = PBXBuildFile; fileRef = BECA37A5BFCB63F2C4A1A1E3A36A40F1 /* GULSwizzler.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 18D04E693C694B26ACA5B104618F7B3A /* GULAppEnvironmentUtil.h in Headers */ = {isa = PBXBuildFile; fileRef = 402ECC98F44C7DA60F37BE67E646438B /* GULAppEnvironmentUtil.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 18D1BD17215C5CB6A20AF03CE24857A2 /* TokenBucket.h in Headers */ = {isa = PBXBuildFile; fileRef = 0B3BD969A42852F70E4CDFEFFE2DA3F7 /* TokenBucket.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 191BA42F8BC8D313438F769C5ABD9B30 /* Future-inl.h in Headers */ = {isa = PBXBuildFile; fileRef = F37EB6A0766E146E621A1D6868989631 /* Future-inl.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 1922868E7235F69D994C84C617ABC8C9 /* RCTShadowView.h in Headers */ = {isa = PBXBuildFile; fileRef = 903F7945B94ED2046D609A119505B599 /* RCTShadowView.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 19314400D1A74DED7FD7D1C3C90D74C1 /* SaturatingSemaphore.h in Headers */ = {isa = PBXBuildFile; fileRef = 96A3D3EABA6E54D205950E7FBE97DCFD /* SaturatingSemaphore.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 19318B20CF5DFE527CF77A58B2AB233B /* VibrancyViewManager.h in Headers */ = {isa = PBXBuildFile; fileRef = E87B9BAF7FB45DB14BF0B14F2C108FEC /* VibrancyViewManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 193D6F96A92CA2DFA562A8D98211AF44 /* RCTBackedTextInputViewProtocol.h in Headers */ = {isa = PBXBuildFile; fileRef = 2E61B9C64B2D129473FDA65B7ECD84A2 /* RCTBackedTextInputViewProtocol.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 19577EDA2DEFEC0BB940E5F2F283077E /* PBUtility.h in Headers */ = {isa = PBXBuildFile; fileRef = 0862772803D66228B31F317DE74EA50F /* PBUtility.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 19891171D63F6E4B054E5D97A7D8A3A0 /* ScheduledExecutor.h in Headers */ = {isa = PBXBuildFile; fileRef = 36985CC41AD668DDCE8329112FDF0E03 /* ScheduledExecutor.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 19A410646DF6FAB5345790AD1ED322D2 /* ObservableOperator.h in Headers */ = {isa = PBXBuildFile; fileRef = 0421732F2E3E823263A486C10562D634 /* ObservableOperator.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 19A9BB7310DFB72C4F9D0F1F980A4733 /* ShutdownSocketSet.h in Headers */ = {isa = PBXBuildFile; fileRef = CE8E01EDDBCB255B9EE76CCCEC2040FA /* ShutdownSocketSet.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 19B01D769D300D03144CE77C90F0E24E /* BugsnagStateEvent.m in Sources */ = {isa = PBXBuildFile; fileRef = 8E7B6BD8B49906D9FB21FEEB60A6F08E /* BugsnagStateEvent.m */; }; + 19BD8B956040B5CDF9D802839ED1A248 /* FlipperKit-umbrella.h in Headers */ = {isa = PBXBuildFile; fileRef = 62CDF72440C72EDDC9431E8C76523788 /* FlipperKit-umbrella.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 19CFBDB9CB33DA50D22EE51944F1A54E /* FIRCLSFABNetworkClient.m in Sources */ = {isa = PBXBuildFile; fileRef = 8FFBB874C46CEA50E77139029650AB86 /* FIRCLSFABNetworkClient.m */; }; + 19DA084E18BB0C5EDB193E347F57CD33 /* HighlighterViewManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 431FFEB87527809BC652981A82736970 /* HighlighterViewManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 19E023F7AFA0C82E80A9B8AA7C9E1BEB /* FlipperConnectionManagerImpl.h in Headers */ = {isa = PBXBuildFile; fileRef = C5FE5A7E16D6D204C71CF2B1969DF7CC /* FlipperConnectionManagerImpl.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 19E54691DE138F8B0EB41115FC4976F3 /* FIRCLSFABAsyncOperation.m in Sources */ = {isa = PBXBuildFile; fileRef = D6A0958D442C7ED7922F3B3CA4AB56D1 /* FIRCLSFABAsyncOperation.m */; }; + 19EB549CD8DE9BFC0BA9F586E6F5F070 /* rescaler_mips32.c in Sources */ = {isa = PBXBuildFile; fileRef = D42EB438306BF26D95C38B486BEA38F9 /* rescaler_mips32.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; + 1A07E22C519215A7231FF80645CAC7C7 /* Foreach.h in Headers */ = {isa = PBXBuildFile; fileRef = 76D98B03F725F9FA39EACB0C80231C84 /* Foreach.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 1A2F37C4EF2FB7D704F10824A3074C6C /* PropagateConst.h in Headers */ = {isa = PBXBuildFile; fileRef = D83E5303B275BAFD350DF4571C18EBF2 /* PropagateConst.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 1A3988D871F5207C7C14A5F537A270DC /* F14Map.h in Headers */ = {isa = PBXBuildFile; fileRef = BC1D5E6895E2C8CD1B0087DA90AFADC7 /* F14Map.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 1A39A0B1EA4CF33DB4E957FD1528F4EF /* GULKeychainStorage.m in Sources */ = {isa = PBXBuildFile; fileRef = E18F26C7E0C16B106C7477F1CE0EA23F /* GULKeychainStorage.m */; }; + 1A39A40F84C395BA32CA215EAB20B360 /* RCTBlobPlugins.mm in Sources */ = {isa = PBXBuildFile; fileRef = AC0791A944E94810FB0D0C9E34E28DAE /* 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"; }; }; + 1A39E8A5DB4B6AC65E3B4A71519D4A5A /* BugsnagSession.h in Headers */ = {isa = PBXBuildFile; fileRef = B85912FF145CE36B398A5D5381E12159 /* BugsnagSession.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 1A3EAACB065FB96BC720C892A07A87F3 /* FIRStackFrame_Private.h in Headers */ = {isa = PBXBuildFile; fileRef = F5C6295C545DD73F3BA7592066FC1F44 /* FIRStackFrame_Private.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 1A5AD1547FDFC9213BE08C485652B16A /* RCTSurfaceView.h in Headers */ = {isa = PBXBuildFile; fileRef = C36B6A7DA9E95014AADD74A5CD021257 /* RCTSurfaceView.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 1A619BB8B9DF57D0228F68ACF757B75F /* RCTConvert+REATransition.h in Headers */ = {isa = PBXBuildFile; fileRef = BC2D76F8ACCFF11154DE53A671ADA898 /* RCTConvert+REATransition.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 1A7E669690A3B5BFE8D7A29A6B5EEE53 /* Promise-inl.h in Headers */ = {isa = PBXBuildFile; fileRef = 2EE70142C25E38591140016B1C0031C2 /* Promise-inl.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 1A85D5AF13C26DAF79FE20EEB06C11BC /* FIRAnalyticsConfiguration.h in Headers */ = {isa = PBXBuildFile; fileRef = BA2104C28844C7A572B36FAA240809B3 /* FIRAnalyticsConfiguration.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 1A8C8F92ED93718A5B363B42DDB1E735 /* RNFBMeta.m in Sources */ = {isa = PBXBuildFile; fileRef = 39F32567CACF1FECCE5A668745D14D17 /* RNFBMeta.m */; }; + 1A8D05CB328FD85F000AA4CEA6E9AF47 /* Cursor-inl.h in Headers */ = {isa = PBXBuildFile; fileRef = F65D143C60A6A95F37D9162CEEBC6D75 /* Cursor-inl.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 1A9C4D6A6B69D46A83BC1E78D771D578 /* CString.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 8696586383D5D0415F1A652D22EBC9C1 /* 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"; }; }; + 1A9EF9B5ECDDEE133878EB02EE10E08A /* BugsnagReactNativePlugin.h in Headers */ = {isa = PBXBuildFile; fileRef = E2F2B2A8ACCA4D1DCBB169367C885EFF /* BugsnagReactNativePlugin.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 1AB409368DE96B84F159C045C652405A /* RNNotifications.m in Sources */ = {isa = PBXBuildFile; fileRef = CBBD9597A707810EA51D856CEEC6016F /* RNNotifications.m */; }; + 1AE4FDB8BF0CC461D5AA0E328D6F1566 /* BSG_KSCrashReportFields.h in Headers */ = {isa = PBXBuildFile; fileRef = 209E0E8E3219BE52389EA82293090B01 /* BSG_KSCrashReportFields.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 1AEF393F6F6443C05A46E4B847A56B15 /* FKPortForwardingCommon.h in Headers */ = {isa = PBXBuildFile; fileRef = ED72FD77FD32A7E8A196A2240EC9F8EF /* FKPortForwardingCommon.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 1B00F3F2D8A4C7348ECF02BA20E123CA /* FlipperCppBridgingConnection.h in Headers */ = {isa = PBXBuildFile; fileRef = 0C2B5C7B89947DABE9B5B1426582AB43 /* FlipperCppBridgingConnection.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 1B2447063A74A5AC1CA17A5D4AABAB8E /* Semaphore.h in Headers */ = {isa = PBXBuildFile; fileRef = 5D89DEB814977A437FD107EF1C5CB55E /* Semaphore.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 1B249829119D112B0420A4265D56FA48 /* FIRInstallationsLogger.m in Sources */ = {isa = PBXBuildFile; fileRef = 98B837F26EC99DCB7279A533520ACC3D /* FIRInstallationsLogger.m */; }; + 1B5214E938F6595C2F3CC2C5206DA765 /* Cursor-inl.h in Headers */ = {isa = PBXBuildFile; fileRef = 8315EC8BE2696659FC483DFE2C5E2F5D /* Cursor-inl.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 1B5685DA79700779C2199E325FFB65EC /* SKStateUpdateCPPWrapper.h in Headers */ = {isa = PBXBuildFile; fileRef = 69653E54BD2897D978CFE51D112C6D29 /* SKStateUpdateCPPWrapper.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 1B66A816A27D551A3723FD8BE43F71F0 /* RCTResizeMode.h in Headers */ = {isa = PBXBuildFile; fileRef = 397D96EA496FBA592A8F15664A9ED2B6 /* RCTResizeMode.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 1B66BA0F5EB595601C54AB6A7331C57E /* Try-inl.h in Headers */ = {isa = PBXBuildFile; fileRef = 27B99204B3477D76CDD6ACB35BA16893 /* Try-inl.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 1B864980B86F0F6FABD5E99CA77C31EE /* Unicode.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 483E6694416C54375E0EA371B5DD1552 /* 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"; }; }; + 1B966B801EEB421750F04FFF774E354F /* RNCAppearanceProviderManager.h in Headers */ = {isa = PBXBuildFile; fileRef = B8FB8DCC4FA54C16CC43FA4D5B055A47 /* RNCAppearanceProviderManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 1B977250A87A932CCDC3A8C5D7926C3A /* FIRCLSCrashedMarkerFile.h in Headers */ = {isa = PBXBuildFile; fileRef = D5FACD49A2D051595D62C927DA9FFDFB /* FIRCLSCrashedMarkerFile.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 1BD48824A0DECB1EAFCFF61C626BB736 /* Format.h in Headers */ = {isa = PBXBuildFile; fileRef = B01693F81A1CAD93402D7E2E150E6331 /* Format.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 1BE7DE9ABDDF2DBD8EDAE8BBD8FD5018 /* IOBufQueue.h in Headers */ = {isa = PBXBuildFile; fileRef = 531B75F2A324E32931E4288AC13D9DC0 /* IOBufQueue.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 1C05DBEE1744B9E133C2635064D7649D /* AsymmetricMemoryBarrier.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 58E9E86FA73FFA3DFB799C0CC0A0551F /* AsymmetricMemoryBarrier.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -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\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors"; }; }; + 1C0828C7ED774A64A5D24639500F9A3E /* Random-inl.h in Headers */ = {isa = PBXBuildFile; fileRef = E900F67C8DDDC40135FFCE9958BE486C /* Random-inl.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 1C0D5DB4CB91116A6DEB3474D537120C /* BSG_KSObjC.c in Sources */ = {isa = PBXBuildFile; fileRef = 53900BCEE51277BE0F3EA3875F8989F5 /* BSG_KSObjC.c */; }; + 1C14F2EE582188EA1A23639B4E982814 /* SDWebImageDefine.h in Headers */ = {isa = PBXBuildFile; fileRef = 384F0859719D9843F7C7FA76F0EA926F /* SDWebImageDefine.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 1C2125023C04FBA187156634E86FAB18 /* FIROptionsInternal.h in Headers */ = {isa = PBXBuildFile; fileRef = 6C3AF7CE91E8F8CE88130AA34B1745CE /* FIROptionsInternal.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 1C26515EED65B95C1190B35FDAB7E02B /* UIImage+Resize.m in Sources */ = {isa = PBXBuildFile; fileRef = 7AE17C12D9DA6F3CAA60799AC0F75100 /* UIImage+Resize.m */; }; + 1C2A1369989F3BCB3BC9ABADF9797A81 /* vp8l_dec.c in Sources */ = {isa = PBXBuildFile; fileRef = C312E05EF3D713D9648C61B28E1AAB3A /* vp8l_dec.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; + 1C2B7BB5F971DDDF39FDE99579055823 /* BugsnagError.m in Sources */ = {isa = PBXBuildFile; fileRef = 685187C15867A3C0DE83D77B9F5B3A7A /* BugsnagError.m */; }; + 1C4BCA88A4201B458E54EED42A4268C7 /* TurboModulePerfLogger.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 00CA343D159C24F3AD85A34D609C5B01 /* TurboModulePerfLogger.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + 1C69A4ADDFE0915C2D192B089CCED4E7 /* ScheduledFrameProcessor.h in Headers */ = {isa = PBXBuildFile; fileRef = 657882E0A02D92232D9F6BBCA2379183 /* ScheduledFrameProcessor.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 1C82EE8EC42E439BA54A71BA4EC50341 /* AsyncSocket.cpp in Sources */ = {isa = PBXBuildFile; fileRef = F796CA545A9F9C266A8DE3AE34F32647 /* AsyncSocket.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -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\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors"; }; }; + 1C82FB73B8C6742C569057BC1574BBB5 /* RCTPackagerClient.h in Headers */ = {isa = PBXBuildFile; fileRef = 99058BE0A3D642B8735DB2DA74E35876 /* RCTPackagerClient.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 1C88821AB42A60D7EA6DEBE0B2B0F8D9 /* DynamicParser.h in Headers */ = {isa = PBXBuildFile; fileRef = D6B0C7E4DEBDBB2E175176E7E5FD6FAC /* DynamicParser.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 1C8CEAB38EB57E52ECF5EE97058DD32C /* TurboModuleBinding.h in Headers */ = {isa = PBXBuildFile; fileRef = 6BCBAE427C2C90AE929A34EABEBBACE3 /* TurboModuleBinding.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 1C8EC169B592E48D66A57DB786533C77 /* EXVideoView.m in Sources */ = {isa = PBXBuildFile; fileRef = C55A79EB50BB30463EDFCC0A38DAE4CC /* EXVideoView.m */; }; + 1CB1B0C9F7F3B05B67FAA30DDD03749D /* UIImage+Transform.h in Headers */ = {isa = PBXBuildFile; fileRef = F57B9746C57D5E93F3933A24BD4A76E8 /* UIImage+Transform.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 1CD27887BCA588CCA19A07221D57AAE3 /* NSImage+Compatibility.m in Sources */ = {isa = PBXBuildFile; fileRef = 5035B7873CF1F7310D5D1F423C937273 /* NSImage+Compatibility.m */; }; + 1CD8228904959A0F2004A91825A7F395 /* BSGConnectivity.h in Headers */ = {isa = PBXBuildFile; fileRef = 9065431250E40827CDAF45747568F67A /* BSGConnectivity.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 1CDA8A5DF725336E3759E1E8462D1240 /* GULLogger.h in Headers */ = {isa = PBXBuildFile; fileRef = 011687BE4E9B130A5FA52D6D8E667065 /* GULLogger.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 1CE344E9BCD4519E224A2D98FB72C3A8 /* Hash.h in Headers */ = {isa = PBXBuildFile; fileRef = 852FB1A3F85A83904943A8C9F5056B49 /* Hash.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 1D0CF2FBD8951E68A489FFE9CC4116F3 /* AtFork.h in Headers */ = {isa = PBXBuildFile; fileRef = EECA4C602AB40654CF18C580823F2E1D /* AtFork.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 1D28678D782CF24654F25934D1BA14FA /* AsyncTrace.h in Headers */ = {isa = PBXBuildFile; fileRef = 87C00BCC33C5E8F2D5446C505FFE2938 /* AsyncTrace.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 1D5C8E7B129FCC2F9E9C159A750FDAB5 /* RNConfigReader-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = E4878457DAD0DD21255A055941A61A09 /* RNConfigReader-dummy.m */; }; + 1D77599FD25D2562981CD7223E77C244 /* MMKV.h in Headers */ = {isa = PBXBuildFile; fileRef = E358D84192D39F3403238DD6343235A1 /* MMKV.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 1D785D7B4FF0460F8D6B5A64B52D39D8 /* BSG_KSCrashAdvanced.h in Headers */ = {isa = PBXBuildFile; fileRef = 30AC685DA58BD7F75FE616B7EC283AF0 /* BSG_KSCrashAdvanced.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 1D7E7CFBCF6C8AC9BD001F4A821CE86D /* UIImage+Metadata.m in Sources */ = {isa = PBXBuildFile; fileRef = 2B364DA950FE04F9EE2EABD89FA4992D /* UIImage+Metadata.m */; }; + 1D89BCE06C52E7607390939321044E27 /* RCTConvert+REATransition.m in Sources */ = {isa = PBXBuildFile; fileRef = A028B596E96BBAFE851F533BD3E845E1 /* RCTConvert+REATransition.m */; }; + 1D904738EB23B143D87CAA7230593F8C /* dynamic.h in Headers */ = {isa = PBXBuildFile; fileRef = DF9128C5BE69B6D2BADFA8FC0035EFD0 /* dynamic.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 1DADAC17C284FCE8EF5E4D0231CA8AE9 /* GULSecureCoding.m in Sources */ = {isa = PBXBuildFile; fileRef = C6E040984100ED986B0756DED66A8C07 /* GULSecureCoding.m */; }; + 1DB0A8EFC63A895763C687F735A7883E /* decorator.h in Headers */ = {isa = PBXBuildFile; fileRef = 197F55797A406CA1FDC933CB23EE8E2C /* decorator.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 1DC4F2A5767FD53B1C5F7E7C36FB2652 /* NetOps.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 34B6397D2A0478171396C115517087AE /* NetOps.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -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\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors"; }; }; + 1DFC34534A46877DFEDA098D230C6652 /* ARTCGFloatArray.h in Headers */ = {isa = PBXBuildFile; fileRef = E7B6328667F2FA8DF55197698F02ED7E /* ARTCGFloatArray.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 1DFED015A98A99D202D27C6F7291D83B /* SocketFastOpen.h in Headers */ = {isa = PBXBuildFile; fileRef = E7D7E5764E0D01068DAFEF7FE7D871CB /* SocketFastOpen.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 1DFF41F598415D020408E406CB166331 /* React-RCTVibration-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = A713C4D8C2CE5B3EFD1B7903550824F7 /* React-RCTVibration-dummy.m */; }; + 1E017DB7F25D88D4B6350E2EE787F74C /* fa-IR.lproj in Resources */ = {isa = PBXBuildFile; fileRef = A290D9C2C1BC4AB169772A94FD2E226D /* fa-IR.lproj */; }; + 1E1456286C1D93DC2A848A173C6CA46E /* ImageCropPicker.h in Headers */ = {isa = PBXBuildFile; fileRef = 1504C61606908441BCDB1E6DE9E99F8D /* ImageCropPicker.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 1E26A5B2B788EB3C522978018B4FA24C /* ThreadPoolExecutor.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 819B26C8113598C4B7D8AEF45B07224A /* 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"; }; }; + 1E4BD21C6E031521B4C175F502A53699 /* Latch.h in Headers */ = {isa = PBXBuildFile; fileRef = 040F7E7B6E634434DFC89127AAC83D15 /* Latch.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 1E54675A031D03B9D05AB422036A06F2 /* RCTAssert.h in Headers */ = {isa = PBXBuildFile; fileRef = CAA3D0AD0975E79689071935C41A3566 /* RCTAssert.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 1E54D580CD1D3C1BD801C16BD9B004A7 /* RCTBaseTextInputShadowView.m in Sources */ = {isa = PBXBuildFile; fileRef = 8CEE6577EEF1351F77E4734688BCE310 /* RCTBaseTextInputShadowView.m */; }; + 1E65DE1AF2FFCB41CBC450EE7FDB7D1D /* ExecutorWithPriority.h in Headers */ = {isa = PBXBuildFile; fileRef = B546841AE02F300AB74A33E2E4B8BF4C /* ExecutorWithPriority.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 1E71463BA220F76AABE65F5136B1E1EF /* ARTContainer.h in Headers */ = {isa = PBXBuildFile; fileRef = 317C9714098DF1C7FBF145CB6AE50AFB /* ARTContainer.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 1E7DEB4C9EF4EDB1A9CE56FC20D9C25D /* ARTRadialGradient.m in Sources */ = {isa = PBXBuildFile; fileRef = FACACF017AF83855282D16388F775642 /* ARTRadialGradient.m */; }; + 1E8995DE09EC955395619144395F7AE0 /* FBLPromise+Validate.m in Sources */ = {isa = PBXBuildFile; fileRef = 55A679876C2AB3BE5151840BEA7F86EA /* FBLPromise+Validate.m */; }; + 1E8A4925E70F080765CFE0FCA2D0799C /* StreamResponder.h in Headers */ = {isa = PBXBuildFile; fileRef = 4CD16689C0CE720E915AA45FEE447997 /* StreamResponder.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 1EA00BB90A2416E6B517B59204229A53 /* EnvironmentUtil.h in Headers */ = {isa = PBXBuildFile; fileRef = 4F8AF30685BDE2D3E73B41E511348C4B /* EnvironmentUtil.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 1EB50F32E2AB0DB45F61ABB586DEE335 /* FrameHeader.h in Headers */ = {isa = PBXBuildFile; fileRef = 4FD91DABC2ACBF3238E5B7DFB7E65B83 /* FrameHeader.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 1EBFC9B5C0988A385B9A6FBEED59F959 /* RCTInputAccessoryShadowView.h in Headers */ = {isa = PBXBuildFile; fileRef = 5CAA66F6DB529C14D44B812675A4468A /* RCTInputAccessoryShadowView.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 1ECA45B29146CD433A42C9536BEC65DF /* RCTBridge.h in Headers */ = {isa = PBXBuildFile; fileRef = D0FE38529652F813FF0712E9EFF2E516 /* RCTBridge.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 1ED3A3DB18B0D7129F78B640C0F033FD /* RNSScreenContainer.h in Headers */ = {isa = PBXBuildFile; fileRef = ADCBE5CD617D332C60C0C6661CCE293D /* RNSScreenContainer.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 1EE3652F447C90D26FC34635453A626E /* RNFBSharedUtils.m in Sources */ = {isa = PBXBuildFile; fileRef = C270D3C8DD62D73590FDBDB26EFA004D /* RNFBSharedUtils.m */; }; + 1EF39F3CAF246AF4A1F3456FD54AE376 /* RCTDiffClampAnimatedNode.m in Sources */ = {isa = PBXBuildFile; fileRef = 890DBE2775C6B20E13D2BCB165968CF4 /* 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"; }; }; + 1EF67A42C308DD7022E4CBCB5C4C9B49 /* FIRComponentContainer.h in Headers */ = {isa = PBXBuildFile; fileRef = 3AEDCC89AADF30FEC4D3F9DE13587C37 /* FIRComponentContainer.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 1F12214A7A2A9C44C9270D58EB9B9084 /* ARTSurfaceView.m in Sources */ = {isa = PBXBuildFile; fileRef = 05D9534D56631962FF95E76190B6D47D /* ARTSurfaceView.m */; }; + 1F1391A87FA4B9A5786DB3574CB9438D /* SysFile.cpp in Sources */ = {isa = PBXBuildFile; fileRef = C5A7A1A8C9CD668E521FF94CBB54A013 /* SysFile.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -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\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors"; }; }; + 1F6381969CC17A0AE1985824FBD1F6B6 /* AsyncTimeout.h in Headers */ = {isa = PBXBuildFile; fileRef = 95EA1CB0FDBF910C585689F704B5831B /* AsyncTimeout.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 1F64B5BFFC8CA72CDE2F10433DD026A6 /* FIRLogger.m in Sources */ = {isa = PBXBuildFile; fileRef = 8B8C8CA38B97A952982286A04166D93A /* FIRLogger.m */; }; + 1F6B3FEEC35ED314C1F8259BCB9C7AB6 /* UMAppLifecycleListener.h in Headers */ = {isa = PBXBuildFile; fileRef = 1AA62C4CFE08E458DFE5EF0187C26F04 /* UMAppLifecycleListener.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 1F91056AB2E5BDE9FEF3F26B1103E5F6 /* react-native-background-timer-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 37F1C18A4491901D5F5CB3B40424AC9C /* react-native-background-timer-dummy.m */; }; + 1F92ECC824FA21B3803A283D014A0084 /* Future.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 2EBBD655B44823D31A908BA6C3B96697 /* Future.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -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\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors"; }; }; + 1FA01AF745DC60249524BBDE544528B0 /* double-conversion.h in Headers */ = {isa = PBXBuildFile; fileRef = 7F616776571B3C3B67FC89C2A77682E6 /* double-conversion.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 1FB31EDD2DC4A772B300629247602584 /* RCTImageURLLoader.h in Headers */ = {isa = PBXBuildFile; fileRef = 09F09D9CAEC455E79664FD96C88C27CF /* RCTImageURLLoader.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 1FC33F239475C3B0B9B9818FA55EFD48 /* FrameType.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 7A5E80FDFC53B12ABD075832C3EFE0D1 /* FrameType.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -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 -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors"; }; }; + 203BD4496A347D83A68764D21B1D8053 /* TurboCxxModule.h in Headers */ = {isa = PBXBuildFile; fileRef = D771DA0527D7B0DDB41B94E3FE5842CE /* TurboCxxModule.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 204CC23D814BF60981D1BFC5562AC7B1 /* REANode.h in Headers */ = {isa = PBXBuildFile; fileRef = 56D78C2ED078AA32E770656F63173371 /* REANode.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 20513BAAE51A2EAB3DA4B717D72CE13F /* SDImageCacheDefine.m in Sources */ = {isa = PBXBuildFile; fileRef = 90169179608738F3EE20B24798F5018A /* SDImageCacheDefine.m */; }; + 2059C762FF7431AA8970406CAB41153A /* REAJSCallNode.m in Sources */ = {isa = PBXBuildFile; fileRef = E24A8FF6BC602FBE633329C0DF646AAA /* REAJSCallNode.m */; }; + 20874F925A640960D1DE9DED271DE123 /* FIRErrors.h in Headers */ = {isa = PBXBuildFile; fileRef = 540F0A04FC92B2DEEDCA2FBF692D382E /* FIRErrors.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 208F59F8F4DDFD1F31C4A584F2D2D6A1 /* AtomicRef.h in Headers */ = {isa = PBXBuildFile; fileRef = 2109CB5F9ED104223A72C779DFCBD94F /* AtomicRef.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 20A7717BBB6E400E9B407132FE778A5C /* ARTShape.h in Headers */ = {isa = PBXBuildFile; fileRef = BE6473D5079526E5C6B8062E82E6FFB5 /* ARTShape.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 20B37962947783D3B62DBE61AD9FFB18 /* SDAnimatedImagePlayer.h in Headers */ = {isa = PBXBuildFile; fileRef = 935C2364F12FB415DB80BD6BD122E7BB /* SDAnimatedImagePlayer.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 20EE6F176C27012887289F8538E38D36 /* token_enc.c in Sources */ = {isa = PBXBuildFile; fileRef = 0ACF20B0ADF9DCB6AEA57FBAA51CFFE5 /* token_enc.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; + 20EFF89ACBF5F09A9EC55E9ECDC6C096 /* Conv.cpp in Sources */ = {isa = PBXBuildFile; fileRef = E1D4345844A51A3143929344413ED7AB /* 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"; }; }; + 211DF223B97DEC315AB0ABAD84AFB7AC /* SDImageAPNGCoder.h in Headers */ = {isa = PBXBuildFile; fileRef = CF0EF9A6A38D72EBECC7D87700F442CD /* SDImageAPNGCoder.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 2123782372A76ED2C3C54D140890CF06 /* RCTConvert+ART.h in Headers */ = {isa = PBXBuildFile; fileRef = D22C18325FC64BD5613A3743881012D5 /* RCTConvert+ART.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 2126434FD180C45AD98E9DFAE3D7D400 /* buffer.c in Sources */ = {isa = PBXBuildFile; fileRef = 081D3C4FBA5F23C00AADD0ADC4D6EA3D /* buffer.c */; }; + 212CFBEDC14B9FF651E42A73C5EF3B2C /* FIRCoreDiagnostics.m in Sources */ = {isa = PBXBuildFile; fileRef = 367428339A7DC5646DB19BBBF30E151F /* FIRCoreDiagnostics.m */; }; + 2135A10EC2193AE1690ED5E751F280C3 /* lossless_enc.c in Sources */ = {isa = PBXBuildFile; fileRef = 5DDF4A02FCBB726E6C9995035E4885AD /* lossless_enc.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; + 215B3E635975F058839776D098648CCB /* FramedReader.cpp in Sources */ = {isa = PBXBuildFile; fileRef = D0CE421CC8A4C9837026846BCDE1A445 /* FramedReader.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -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 -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors"; }; }; + 216A4655E01B2006F378255AC42EEA7D /* FIRCoreDiagnosticsInterop.h in Headers */ = {isa = PBXBuildFile; fileRef = 993B8BBCAC56746549B6BC04232AE17F /* FIRCoreDiagnosticsInterop.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 21978626423AEB08C373132AC106E87B /* CompactValue.h in Headers */ = {isa = PBXBuildFile; fileRef = B34DD17F4E32CC762E39A207CBD45B1F /* CompactValue.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 219B175D27CB40CFB5E3CFC43B990018 /* RCTDevLoadingView.h in Headers */ = {isa = PBXBuildFile; fileRef = 99708DECC904CFAAF7578A5A192C3842 /* RCTDevLoadingView.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 219DD23CD8486CC2AA835B51ABF754AB /* BSGFileLocations.m in Sources */ = {isa = PBXBuildFile; fileRef = 8A3DECD325F002CC7E736BE7DEFC7AD0 /* BSGFileLocations.m */; }; + 21A2CA5452ABFA16FDECB399B79982FE /* RCTValueAnimatedNode.m in Sources */ = {isa = PBXBuildFile; fileRef = 553344DFAAE5322163B1FDF517DE2754 /* 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"; }; }; + 21AE3C4E79CC99A8F261E7E4B4E8D8DD /* RCTKeyboardObserver.h in Headers */ = {isa = PBXBuildFile; fileRef = A5BCD82F46DBC338B1AEF948C94D162C /* RCTKeyboardObserver.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 21C253FD7F9CC606AA50D589AE612A12 /* FBLPromise+Always.h in Headers */ = {isa = PBXBuildFile; fileRef = 1A81DBB43980F9F09031CC29D0F03195 /* FBLPromise+Always.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 21DB32A29534CE7CA19A7B23CCF26EFF /* NSError+BSG_SimpleConstructor.h in Headers */ = {isa = PBXBuildFile; fileRef = E991E5E47993FFF5CC39C7778660689E /* NSError+BSG_SimpleConstructor.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 21DE53367B552AB45DBEFBB9964692BA /* RSocketParameters.h in Headers */ = {isa = PBXBuildFile; fileRef = 760863F9772B27FF17279E053C58DAA5 /* RSocketParameters.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 21E47E1078D911B8101B24E624809D3B /* FIRCoreDiagnosticsData.h in Headers */ = {isa = PBXBuildFile; fileRef = 2BC6BBD8A28F29719B12F01C18074170 /* FIRCoreDiagnosticsData.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 21E9793389C66442F2829B66C037F07A /* RCTSourceCode.h in Headers */ = {isa = PBXBuildFile; fileRef = EA3932D03662A7605E9CC644AA503CE7 /* RCTSourceCode.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 220A9C996CD7F9214C4B87CD800F41AC /* Hazptr.h in Headers */ = {isa = PBXBuildFile; fileRef = D9A7DFA907DA186A887DEF894D608770 /* Hazptr.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 2217AF1A7AE7984BF040F4C1BC02EBAA /* BugsnagBreadcrumb.h in Headers */ = {isa = PBXBuildFile; fileRef = 6D06E3BDF0E602210146086EAFB9FD00 /* BugsnagBreadcrumb.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 221D68FC4910CA45669F4A8774403903 /* Hardware.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 7F06B8E0102E9A6491115E7718C3CFA5 /* 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"; }; }; + 2223160C653476CCE0537703F66FA2B3 /* YGMacros.h in Headers */ = {isa = PBXBuildFile; fileRef = 9767E8B1CE2B3E52386A6752C7982703 /* YGMacros.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 2229B836BCE066BCE8443CEAD075AB36 /* RNCSafeAreaView.h in Headers */ = {isa = PBXBuildFile; fileRef = 9C448EF2EA084A44F21CE2F67C41DE25 /* RNCSafeAreaView.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 222B51991EB2AF1CFBE0C938DAA48087 /* UMDefines.h in Headers */ = {isa = PBXBuildFile; fileRef = 9B6E7F5DAA2E02F6D3737E7F5CE5B5C5 /* UMDefines.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 222EAB200E0E64FB909CDD4DDE1CE30F /* RNFBMeta.h in Headers */ = {isa = PBXBuildFile; fileRef = 5D5D617BF1BC0026ECDB3CAFB3817335 /* RNFBMeta.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 225E481670E17DDCCCD7C017B2E92CDF /* upsampling_mips_dsp_r2.c in Sources */ = {isa = PBXBuildFile; fileRef = 8858FF334D5274ECA287E8F4500FE701 /* upsampling_mips_dsp_r2.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; + 2273984123CCD0C2D4C62CBADD7DABCA /* AsyncUDPSocket.h in Headers */ = {isa = PBXBuildFile; fileRef = ADCE13A437B51A8E4DE08350213790B2 /* AsyncUDPSocket.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 22811FE91A5BC31B5542F766899F3108 /* SDImageWebPCoder.h in Headers */ = {isa = PBXBuildFile; fileRef = 8EC8CDA467619A6E8A2024C3EA0D2BFB /* SDImageWebPCoder.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 2289B69EFB04F7CA5DECC57722286CA6 /* FIRCLSNetworkResponseHandler.m in Sources */ = {isa = PBXBuildFile; fileRef = F97078FCF30CC35CA7715F874B527C7D /* FIRCLSNetworkResponseHandler.m */; }; + 22C161B7A7E21ED0AB7F6260DF99E29A /* nl.lproj in Resources */ = {isa = PBXBuildFile; fileRef = B09CBD69C7A804AE3E4219DDD94A3EA4 /* nl.lproj */; }; + 22CB393C25704375E99272389E3BE173 /* Pretty.h in Headers */ = {isa = PBXBuildFile; fileRef = 2A5D7AB7198DAE60B2A8928D766760D4 /* Pretty.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 22CB58F8BDC1C96120ED1EA6A9E45306 /* String.h in Headers */ = {isa = PBXBuildFile; fileRef = A2B5A8E537600162AB8597D49A7BE2FC /* String.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 22D0950BA53FC4AFD42918B5A984F14E /* IOThreadPoolExecutor.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 1F4DA30E9E47E418AF24A7BCFEA48801 /* IOThreadPoolExecutor.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -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\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors"; }; }; + 22DD03599EE48DF50CC18B883D194596 /* RCTPlatform.h in Headers */ = {isa = PBXBuildFile; fileRef = E8652DC586A8078BE224572772939625 /* RCTPlatform.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 22E1D06C4A77C0F1F7DFBC536D00AC58 /* ARTRenderableManager.h in Headers */ = {isa = PBXBuildFile; fileRef = A5546F85DD45F445015199630CB347A5 /* ARTRenderableManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 22FFF099533551B987BD31888D94EF57 /* Async.h in Headers */ = {isa = PBXBuildFile; fileRef = C16A0090D8D00D4BFED6D88CD18B4DD2 /* Async.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 2300FD1051763DEC87ABAA44DA4C843E /* RNDateTimePickerManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 99660FDC1706DDB1D718EA06874CB12E /* RNDateTimePickerManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 2304DBD8D44151DCDDC18B98B337B081 /* json.h in Headers */ = {isa = PBXBuildFile; fileRef = FE42936A36A0F14375B8229211963068 /* json.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 23107CD51E85F36D174BE09761E08392 /* RCTPbkdf2.h in Headers */ = {isa = PBXBuildFile; fileRef = A9EAC6E8CF6D7191C20BC30D81A57E80 /* RCTPbkdf2.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 2312F6A41DAE9C4E10D5BE1BB3B20748 /* FIRInstallationsVersion.h in Headers */ = {isa = PBXBuildFile; fileRef = 54CE73AA7F6B4AB2117180DC6185A2BF /* FIRInstallationsVersion.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 232DAAA2C3C9F093DFE21A8AF65C2171 /* Format.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 042590CFF9F29612616F3E0B9C5C5622 /* Format.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -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\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors"; }; }; + 2335D16DD99C5CCB7145356D9439A1ED /* SafeAreaManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 18627B4FB3750C350C14C81CE2081CF7 /* SafeAreaManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 23448D84E26BF80165522BD84BC3849A /* IOVec.h in Headers */ = {isa = PBXBuildFile; fileRef = BFAFF725F0A6788E42AD5BD768D7EC8A /* IOVec.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 234632BFD6A50418CABA478FEC1314C9 /* pt.lproj in Resources */ = {isa = PBXBuildFile; fileRef = 392D8A7E2F4366764C7D4CB28AD08701 /* pt.lproj */; }; + 234F801E8972095E2A54059F65BF331D /* ExceptionWrapper.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 306A7746A817174FB49080AC18C2D568 /* ExceptionWrapper.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -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\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors"; }; }; + 23587B85B626669925991587D263DE57 /* EXSessionUploadTaskDelegate.m in Sources */ = {isa = PBXBuildFile; fileRef = 99AC71BDA4E2D7CCAC66A1A334011E41 /* EXSessionUploadTaskDelegate.m */; }; + 236337A18A1F1F5B2669AA0959D78451 /* Dirent.h in Headers */ = {isa = PBXBuildFile; fileRef = 1048FF356DAB0F04F25A2308556E8DAD /* Dirent.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 23911B16D5512CB07EA379CB1E338A20 /* RCTViewManager.m in Sources */ = {isa = PBXBuildFile; fileRef = 2620369B9DA20711E1AA55FCCFA45CA8 /* RCTViewManager.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + 2391C8777B895BEF9708CA2847068F77 /* SparseByteSet.h in Headers */ = {isa = PBXBuildFile; fileRef = A60637556B2A0F2278472AD01746E6BF /* SparseByteSet.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 23A75EB832AA965C7D28F4BBCC09C757 /* experiments.h in Headers */ = {isa = PBXBuildFile; fileRef = EA5A03D8EFFE75949B7FAAB79BFDECDC /* experiments.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 23AD49C7DC845EC9002756841E7D6A7E /* FutureExecutor.h in Headers */ = {isa = PBXBuildFile; fileRef = 6DBFBD43A91B1A8FA1E5BCD2E75B1630 /* FutureExecutor.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 23B63806D9A476DC97D4110167D0DDEA /* RNCMaskedView.m in Sources */ = {isa = PBXBuildFile; fileRef = 03CA7117622B8F8E0F440614EC0EEBBB /* RNCMaskedView.m */; }; + 23BDC1380F6DBB645C83CD1D691C7CDF /* fixed-dtoa.cc in Sources */ = {isa = PBXBuildFile; fileRef = 3A374B8F80F74CB8599270F5E70F1305 /* fixed-dtoa.cc */; settings = {COMPILER_FLAGS = "-Wno-unreachable-code"; }; }; + 23DA4722831C03B4FB7DEFC9E64A8DCE /* Registration.h in Headers */ = {isa = PBXBuildFile; fileRef = 2373181AEE35D5708C0CB66D27D510E9 /* Registration.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 24090256342C69A74C33C2D6CDF4A8D7 /* FIRCLSSerializeSymbolicatedFramesOperation.m in Sources */ = {isa = PBXBuildFile; fileRef = FF4A54CF894C8947A9E4D75D0738ACA3 /* FIRCLSSerializeSymbolicatedFramesOperation.m */; }; + 240FC32361C410EF5F84BF6DEBE42548 /* ReactNativeART-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 15E5D39416253D4FF2FDDB79A68D2714 /* ReactNativeART-dummy.m */; }; + 241B56E43A5F06E73865D72FB92EA8C2 /* CallOnce.h in Headers */ = {isa = PBXBuildFile; fileRef = 191DA0295160C1B6F24AD7022AD09C6B /* CallOnce.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 2420EB8DABC669359EF5BA205DF61DD3 /* OpenSSL.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 3296480C9430B68D8799FCB88CD1C0EA /* OpenSSL.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -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\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors"; }; }; + 2429E3881443A705B671125FD7304B92 /* SKTapListenerImpl.h in Headers */ = {isa = PBXBuildFile; fileRef = 6AB49E65BB5ABD127A84D611C1CB62CE /* SKTapListenerImpl.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 242AC409EF5C360BE1628BECB99C3FE4 /* UMSingletonModule.m in Sources */ = {isa = PBXBuildFile; fileRef = 1928F203C63BD628DE6CC3FAB3B25A8C /* UMSingletonModule.m */; }; + 2439111F5952811905ECB301D0E0E690 /* ConnectionDemux.cpp in Sources */ = {isa = PBXBuildFile; fileRef = ACB53D4AFB059ACDB104EB813B5E8A8C /* ConnectionDemux.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + 243BA7838B8733171E500BDFB3A064EB /* RCTConvert+ART.m in Sources */ = {isa = PBXBuildFile; fileRef = 9582915FE4E63A436F37137EFED1A579 /* RCTConvert+ART.m */; }; + 24579D1F6152E624C671094685FD08D8 /* QueuedImmediateExecutor.h in Headers */ = {isa = PBXBuildFile; fileRef = 68424E50B4C6668FA714883E0188D11D /* QueuedImmediateExecutor.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 24655BCF08BB7328E02CC2F9E60C8151 /* RCTErrorCustomizer.h in Headers */ = {isa = PBXBuildFile; fileRef = 14DD3A5C68C0DED534D63AB8DA1C88F7 /* RCTErrorCustomizer.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 2476B575292BED46B681A69D39816FBF /* RCTAnimationPlugins.mm in Sources */ = {isa = PBXBuildFile; fileRef = B98DB40B7B38129B280E814B98F7BFF0 /* 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"; }; }; + 248167E4FBE79DCA05F2D639C192ADD2 /* Assume.h in Headers */ = {isa = PBXBuildFile; fileRef = C33090DF54A87168F762E93E9BA72418 /* Assume.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 2487FE5A99FD79EF599EEF75AA4F1083 /* ARTSolidColor.h in Headers */ = {isa = PBXBuildFile; fileRef = ACBAEA79CA733659BB119586B0A39EAA /* ARTSolidColor.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 24880C4E8BA96EA0EEB025160E4A83C6 /* FIRInstallationsVersion.m in Sources */ = {isa = PBXBuildFile; fileRef = 2359E112F64A66EE9D8494191A688182 /* FIRInstallationsVersion.m */; }; + 24968C13D7489BCE26941C507EE637EE /* DynamicConverter.h in Headers */ = {isa = PBXBuildFile; fileRef = DCAC4087891D28E90586EE4821EA2D67 /* DynamicConverter.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 24CD16F2B3F23940C16EFD45C85B6F06 /* types.h in Headers */ = {isa = PBXBuildFile; fileRef = 4862C88581F94CFA64355B637B32BFAB /* types.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 251030875A30A4A1E08F106E0E3E9D7C /* RCTDefines.h in Headers */ = {isa = PBXBuildFile; fileRef = D166197618128ABC3A4BC88F932FB2F5 /* RCTDefines.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 25178E2E0F2B02200E788782DDB60FCE /* CodedInputDataCrypt_OSX.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 1A01A8487A446A06412C2DA00ED26455 /* CodedInputDataCrypt_OSX.cpp */; settings = {COMPILER_FLAGS = "-x objective-c++ -fno-objc-arc"; }; }; + 2520B3CCC912056E714A8D8BF6549227 /* diy-fp.h in Headers */ = {isa = PBXBuildFile; fileRef = 8DB30AA2AB4ABB31BA516196FFA0BC03 /* diy-fp.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 252A150408A553D4807BFECE84C73499 /* react-native-orientation-locker-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = A28B1A5C7E386E8E089F4393DA365C78 /* react-native-orientation-locker-dummy.m */; }; + 253AB4C0503EDF986DEACE0E8744C0FA /* HardwareConcurrency.h in Headers */ = {isa = PBXBuildFile; fileRef = 0F852748CBF2D7F24EEE4BF4DD0D4B44 /* HardwareConcurrency.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 25509654F0BB85513EFF85CC3BEC2ECC /* JsArgumentHelpers.h in Headers */ = {isa = PBXBuildFile; fileRef = 354A1ABA776921DDC4A04874C756A010 /* JsArgumentHelpers.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 255FF3AA9E3F8711E098D7193630B6EE /* CppAttributes.h in Headers */ = {isa = PBXBuildFile; fileRef = 7BB137BF7BF5201BDF328D62857222C2 /* CppAttributes.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 257B2C32FE35A8635FBDDC3C04FD24B9 /* json_patch.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 6AC34E7F3A5A712ED59C6A7096763FE5 /* json_patch.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -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\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors"; }; }; + 258098B821AF00403A235A191E2EC2FC /* UMKernelService.h in Headers */ = {isa = PBXBuildFile; fileRef = D16FF83056B9FD37359BCD7A742ECF77 /* UMKernelService.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 258DFD96720C1C98BD6A3BC06B72A9C0 /* react-native-webview-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 11EB762104ABC3B16FD943E6556ABDD5 /* react-native-webview-dummy.m */; }; + 25B5E246A78A8F10CCC183E033EA6D65 /* ClockGettimeWrappers.h in Headers */ = {isa = PBXBuildFile; fileRef = 3DB5088FFF3CF35BFF695132D02D28B2 /* ClockGettimeWrappers.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 25C604E3691E13AB5610BD2A53E6FCBD /* json.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 0FD226AF0745698A007150B90DFE35A0 /* 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"; }; }; + 25D2D0E1AC4A8136A2232F4F211A784B /* Init.h in Headers */ = {isa = PBXBuildFile; fileRef = 7C09D822B4DF504D9A136A56FF99D342 /* Init.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 25DB1E24B453C0ECE4DA407E7761D440 /* EXLocalAuthentication-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 32E3DB8EF90E3DA497528CA8E34D164C /* EXLocalAuthentication-dummy.m */; }; + 25DF77BE316A1163F0FA609A33BB82FC /* EXFileSystem.m in Sources */ = {isa = PBXBuildFile; fileRef = 0F0A1F9F3687152FD079AC216204703A /* EXFileSystem.m */; }; + 25E102E24A4BB025735BA78165F39347 /* UIView+WebCache.m in Sources */ = {isa = PBXBuildFile; fileRef = D6DC43FAAB93BD1B22373A30CE42C566 /* UIView+WebCache.m */; }; + 25E68BCBC83B192573FC930415D10B85 /* backward_references_enc.h in Headers */ = {isa = PBXBuildFile; fileRef = 62C2BAE5054CC7730B97BC48A0C22945 /* backward_references_enc.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 25EE03E12B1C1866CB753523FF7D55E5 /* SafeAssert.cpp in Sources */ = {isa = PBXBuildFile; fileRef = E81D6597FD41EC2250920BE7EA8BA98D /* SafeAssert.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -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\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors"; }; }; + 260FD019B03AF9C56B34BAC1EA54881A /* ThreadWheelTimekeeper.h in Headers */ = {isa = PBXBuildFile; fileRef = 56B08D226B9BC079AF4E97C5363BBF6A /* ThreadWheelTimekeeper.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 2628C174DDD2FC307A13C95A1378C4A3 /* IndexedMemPool.h in Headers */ = {isa = PBXBuildFile; fileRef = EEE4B84A16F6FDFDD94DE3D376866E57 /* IndexedMemPool.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 263A41595D71A567F0143C8F3FB17C1A /* GDTCORClock.h in Headers */ = {isa = PBXBuildFile; fileRef = A2362C88A1AFCFDEAA6AD7F6E6D5EE7A /* GDTCORClock.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 263C0741EBE17E17FEC8B94D476BD824 /* RNRootViewGestureRecognizer.h in Headers */ = {isa = PBXBuildFile; fileRef = 52A59F967C9E8AAF8C5C7C04C94801C3 /* RNRootViewGestureRecognizer.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 26435812BE5B1D87787E076A194ABDB7 /* DiscriminatedPtrDetail.h in Headers */ = {isa = PBXBuildFile; fileRef = 1D7CA54C3CC5E6931E2862151529CC7E /* DiscriminatedPtrDetail.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 265157FEE4999B44E4832C3E37B2105D /* SDWebImageDownloader.m in Sources */ = {isa = PBXBuildFile; fileRef = 06F2263D2C162FB6EBDC2E0471865FF0 /* SDWebImageDownloader.m */; }; + 2675721FA4234216EAC94BCE945B1BD2 /* HeterogeneousAccess.h in Headers */ = {isa = PBXBuildFile; fileRef = 5C5186B7C67E0B78E6E54EC761EF15D4 /* HeterogeneousAccess.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 267FBF5FD39D9633691B813B405D0B81 /* RNCSliderManager.h in Headers */ = {isa = PBXBuildFile; fileRef = B6ECD3FBC736FB8C0DDCEAD684BA16E3 /* RNCSliderManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 2683209D9F1E66218DDBE6884C673B58 /* PThread.cpp in Sources */ = {isa = PBXBuildFile; fileRef = C3A4C29F98C2DD45327F6406A9C707B7 /* PThread.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -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\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors"; }; }; + 268C947B142816218E2F58A901BD9EC4 /* SDWebImageIndicator.h in Headers */ = {isa = PBXBuildFile; fileRef = F0A26ECFDC84508746B22EFAD978180B /* SDWebImageIndicator.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 268F67BA110C335FFD332DCCF198C9EC /* IPAddressV4.h in Headers */ = {isa = PBXBuildFile; fileRef = 473033DCB389A4E126D78CEC8D1C991C /* IPAddressV4.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 26933A5C393A0E1D9A727F5CC6E909BA /* RSocketServiceHandler.h in Headers */ = {isa = PBXBuildFile; fileRef = FAF3F09255F1D2DE831CECC41208BD08 /* RSocketServiceHandler.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 269731BDE3E775BB018007D8F1125681 /* BugsnagSession+Private.h in Headers */ = {isa = PBXBuildFile; fileRef = 03739C7A744631D8719C0BBC0FAA77AA /* BugsnagSession+Private.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 26981057B264A6718219718CE3728771 /* ConcurrentHashMap.h in Headers */ = {isa = PBXBuildFile; fileRef = FE1CBD37357CD9E7632A37818BB633A1 /* ConcurrentHashMap.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 26A345928FBECD9450CF7B16BA53A3AF /* SingletonStackTrace.h in Headers */ = {isa = PBXBuildFile; fileRef = DABDBD196E6571BD342353CF5AA6740F /* SingletonStackTrace.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 26AC8294F4D2D53A0EAB5E65CBB84BE0 /* F14Defaults.h in Headers */ = {isa = PBXBuildFile; fileRef = 50D4EFBF53C0A6CF329A48DAA8F7795D /* F14Defaults.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 26AFDFF2230BD13ED8CF7C38F54AEA09 /* RSocketTransport.h in Headers */ = {isa = PBXBuildFile; fileRef = 34F495AEC35C641A75B111FEC3FBA89F /* RSocketTransport.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 26B40AA6321331AC9355EBC401C85B60 /* RNFBCrashlyticsInitProvider.h in Headers */ = {isa = PBXBuildFile; fileRef = A8A4C4865DD5F2FBBD92A53B3C1CF964 /* RNFBCrashlyticsInitProvider.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 26C4DF08AF448404B40174B44973C71A /* ChannelRequester.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 1E3D9120908BE2B007676F80A40D1FBE /* ChannelRequester.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -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 -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors"; }; }; + 26D43AA34D8CF641A69177ADCFE78EAC /* ThreadLock.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 1AB733080E0BC6F890739987E6D8854F /* ThreadLock.cpp */; settings = {COMPILER_FLAGS = "-x objective-c++"; }; }; + 26F7B4FCCECFB7978C970A3AD1A70215 /* ConnectionDemux.h in Headers */ = {isa = PBXBuildFile; fileRef = C8C7E5B7C97E0586A05F011016042666 /* ConnectionDemux.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 2702ED30FCC572A9119745BA58C104F4 /* REACallFuncNode.h in Headers */ = {isa = PBXBuildFile; fileRef = 046AC0F27CF51F993B0460A0A57F014A /* REACallFuncNode.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 270BD2C56BB4AC932956A4CD4A67EFE8 /* SysUio.h in Headers */ = {isa = PBXBuildFile; fileRef = 41CA4E123F9F9F6E4C41BD82BBC6D783 /* SysUio.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 2721576CCFF6D38EA7602AFC8D6FD278 /* FIRCLSMachException.h in Headers */ = {isa = PBXBuildFile; fileRef = 3D5ADCD328BE2EA66010C79CABADA29F /* FIRCLSMachException.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 272BC9F9E75CD049D1BB806035D4DA4D /* HHWheelTimer.h in Headers */ = {isa = PBXBuildFile; fileRef = E6CDEBBD0A515FDA086530130EC3F198 /* HHWheelTimer.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 272FE84B8033B2CF75AA53A9F9A84345 /* SKViewControllerDescriptor.h in Headers */ = {isa = PBXBuildFile; fileRef = 29E84E084165D246715180500A2282EA /* SKViewControllerDescriptor.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 2730FE054CC61C90703D708DF8B87F6A /* RNScreens-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 20C59C8C8A34D7F9C8BC92D693CBFDCE /* RNScreens-dummy.m */; }; + 27586E38B3FF97D714DC19F2D58728F5 /* GoogleDataTransport-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 1BE0E836F457AD43B41535DC70C29F39 /* GoogleDataTransport-dummy.m */; }; + 275B1BA50739CFF9BDB246E10F662653 /* RNNotificationEventHandler.h in Headers */ = {isa = PBXBuildFile; fileRef = A1B1893DB617FD868202311D82D507F9 /* RNNotificationEventHandler.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 2791516D3139E56FD1F3797A690297C4 /* MallctlHelper.h in Headers */ = {isa = PBXBuildFile; fileRef = EF6A3687A89707FF71DBAC25B3C28AB2 /* MallctlHelper.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 279436A2D859CBB5D60A18A8B8C6C584 /* CertificateUtils.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 00092D8F33AE638AF5550472249AE34F /* CertificateUtils.cpp */; settings = {COMPILER_FLAGS = "-DFLIPPER_OSS=1 -DFB_SONARKIT_ENABLED=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -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"; }; }; + 27A1212FDD9131D67C5E6EA464F0F0C0 /* alphai_dec.h in Headers */ = {isa = PBXBuildFile; fileRef = E20842BB9F561E665311E5C26920917A /* alphai_dec.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 27A7E819AF32F3A5E86B981966AE0482 /* HazptrThrLocal.h in Headers */ = {isa = PBXBuildFile; fileRef = 6C9FB5380FB1EDDBCDB7457FBAF3B916 /* HazptrThrLocal.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 27B6CCE48225BC56652E9E3223D38C4F /* ARTShape.m in Sources */ = {isa = PBXBuildFile; fileRef = C1D6FE29065E9A121578B8F30FA54DCD /* ARTShape.m */; }; + 27BA241C23682D3DA8E4DE3D04BC6664 /* FIRCLSReportUploader.h in Headers */ = {isa = PBXBuildFile; fileRef = 8BB71BC185A6662B732F211659D872C7 /* FIRCLSReportUploader.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 27BDC46DB24AE69B5D9FBA646EA43C26 /* FIRCLSFCRAnalytics.m in Sources */ = {isa = PBXBuildFile; fileRef = 876EBA8CB774461F4DF92A66C46C4478 /* FIRCLSFCRAnalytics.m */; }; + 27C599AC2F41B6D92D4B8F5156F5F727 /* SDImageCoder.m in Sources */ = {isa = PBXBuildFile; fileRef = 43C4CD0611716D8B6B933C7734E356A8 /* SDImageCoder.m */; }; + 27C9277485F05BCE39CFD89C84B143A7 /* EXAppleAuthenticationButton.h in Headers */ = {isa = PBXBuildFile; fileRef = EC60535B983E35A579A059DDDC106B11 /* EXAppleAuthenticationButton.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 27DA54E62A0ABBD387158C23D49D8E6B /* IPAddress.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 2E95ECA446B2B2218286127C64EE4608 /* IPAddress.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -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\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors"; }; }; + 27DCB393F1B8E79866B071E4F861D673 /* ScopedEventBaseThread.h in Headers */ = {isa = PBXBuildFile; fileRef = 17CEB2C18AD7BC3A2DA630CFE3519CF7 /* ScopedEventBaseThread.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 27E10DB134C275BDF145041E9A3F02CC /* BugsnagErrorTypes.h in Headers */ = {isa = PBXBuildFile; fileRef = 7A63FEB9A47A3240CF00E09EFD4156A2 /* BugsnagErrorTypes.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 280B6BF6E9B764C87039372012166E39 /* FIRCLSRecordApplication.m in Sources */ = {isa = PBXBuildFile; fileRef = 0B180A6F6802A7A61E6F91452DE30BD0 /* FIRCLSRecordApplication.m */; }; + 28281B792B0815FCA9E02AB4BF44308C /* SysMman.h in Headers */ = {isa = PBXBuildFile; fileRef = 362F9EB68924126BE0D0F262A660BA2A /* SysMman.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 28360A41E98E9A0CFC88F32E48E0813C /* RCTSafeAreaViewManager.m in Sources */ = {isa = PBXBuildFile; fileRef = C8589FA79D7E30BE09851C2648720ADC /* RCTSafeAreaViewManager.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + 2863C2CF557A1BC8CAC90DA17CE9D8BD /* RCTHTTPRequestHandler.mm in Sources */ = {isa = PBXBuildFile; fileRef = 41DF9C1BA38FCCA93950CA4977947BE9 /* 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"; }; }; + 286E741BE1156A0D49FCDC37E4A71715 /* Benchmark.h in Headers */ = {isa = PBXBuildFile; fileRef = 03FAAF776192C8E274D9579018D31C29 /* Benchmark.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 2876AE58BEF67C7CE395147072550520 /* ConsumerBase.h in Headers */ = {isa = PBXBuildFile; fileRef = 1329A9576B25701FE7200B3333966D55 /* ConsumerBase.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 287BADBB18089397CF815CA77167690B /* ThreadedExecutor.cpp in Sources */ = {isa = PBXBuildFile; fileRef = B533013C01209F83514298BFEB3D9617 /* 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"; }; }; + 28C78E22D8E13C7D5E5C641339C1BA3D /* StorageGetters.h in Headers */ = {isa = PBXBuildFile; fileRef = D241A7C39A64E6352F74442DF94CADAC /* StorageGetters.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 28E338037BD6C773C461C4A323E4F264 /* BSGGlobals.m in Sources */ = {isa = PBXBuildFile; fileRef = DAC0F7B0065D32DA0B58D23C9729310E /* BSGGlobals.m */; }; + 290E7365DE006BABA2ACAFF54A9D2C72 /* RSocketParameters.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 5E9BDE07FCC8F639F6B0B8D965E6BCDE /* RSocketParameters.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -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 -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors"; }; }; + 2925BFA37C7DD8504219C79C48BD8AA6 /* FIRComponent.h in Headers */ = {isa = PBXBuildFile; fileRef = 82D18E992787A1F0B4D161AA392C11F1 /* FIRComponent.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 292B57F0F0680C7C43071665B3BA52F8 /* FIRCLSUserLogging.h in Headers */ = {isa = PBXBuildFile; fileRef = CEEE6393BE39442384D5C5561A4317CE /* FIRCLSUserLogging.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 294E6CB9AA816BCD09ABD0D7ED0B025C /* RCTSurfaceRootView.h in Headers */ = {isa = PBXBuildFile; fileRef = 12CAACA147F3FE2825C7E083D3FAC507 /* RCTSurfaceRootView.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 29501A73E0CEE10A8E23667D92E379C6 /* RCTAnimatedImage.m in Sources */ = {isa = PBXBuildFile; fileRef = 31B736BE7228184663AE1A86DF4C1C1F /* 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"; }; }; + 2967B0EE9F56A7195E72FE42A13A1479 /* GroupVarintDetail.h in Headers */ = {isa = PBXBuildFile; fileRef = 77E733A8C1B0A792B0DFB189CCEA0EE5 /* GroupVarintDetail.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 2969DDDC231154FB7B58A898C9A9A803 /* FIRCLSMultipartMimeStreamEncoder.m in Sources */ = {isa = PBXBuildFile; fileRef = 8B6866C798B95F624F633B93873652D3 /* FIRCLSMultipartMimeStreamEncoder.m */; }; + 29B28D1AF94EC5ED0DDA52B7CB7276BA /* FBLPromise+Catch.m in Sources */ = {isa = PBXBuildFile; fileRef = 6E210C1E6DB22B962D984FAB153D25BC /* FBLPromise+Catch.m */; }; + 29F58B73220152592DC2EC311A9C945D /* AtomicNotification.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 26A693C18C7E2490192E9F27BDF66E38 /* AtomicNotification.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -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\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors"; }; }; + 29FA7674F60292DCDFDF3FDC2F0F3D16 /* F14Table.h in Headers */ = {isa = PBXBuildFile; fileRef = BC850027576B40183C5DBB2AA9E3D153 /* F14Table.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 2A1EF3770CD572F40FEC4A2FBA2A78BC /* RCTMultilineTextInputView.m in Sources */ = {isa = PBXBuildFile; fileRef = 30125186ABE2360AECA131EE8B8E7204 /* RCTMultilineTextInputView.m */; }; + 2A3B65B21B2AC8BA6F41E87CEDAF5B45 /* logging.cc in Sources */ = {isa = PBXBuildFile; fileRef = B3691DD6BCD74E7E5AC60CA66EC5B91C /* logging.cc */; settings = {COMPILER_FLAGS = "-Wno-shorten-64-to-32"; }; }; + 2A493B365180564C43897233FB469DDA /* RNCSafeAreaViewLocalData.h in Headers */ = {isa = PBXBuildFile; fileRef = AF0745E0046A86F0A431A89A77372F33 /* RNCSafeAreaViewLocalData.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 2A55DDAA9A0882F49E99A5EC88FBD4E1 /* GoogleUtilities-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = B2F4EC6DC896E7B729A777B3662E1116 /* GoogleUtilities-dummy.m */; }; + 2A5D436215DE3DC5A112D6EC5A58D8D7 /* TypeInfo.h in Headers */ = {isa = PBXBuildFile; fileRef = BF2BA5624423FD9F222021A05B549B0A /* TypeInfo.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 2A6EA62FD0AF0B03BFCA679325A35CE5 /* SDImageCachesManagerOperation.m in Sources */ = {isa = PBXBuildFile; fileRef = EC7C7FD009F5B1DBEFEB0C39DCC9B2B6 /* SDImageCachesManagerOperation.m */; }; + 2A975BB1A61E4B427CF92C79AE596B61 /* Stdlib.h in Headers */ = {isa = PBXBuildFile; fileRef = B86D5CCFC7E2896E992AC90FC20B1E90 /* Stdlib.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 2A9F6C61FC096C9326A0EEFBB0EF70B1 /* FIRCLSConstants.m in Sources */ = {isa = PBXBuildFile; fileRef = 6D7CA1E307063F03E9CAEE3145E5FA9F /* FIRCLSConstants.m */; }; + 2AA511BFE6E6DA363E500CC1EF6F515B /* Pbkdf2.m in Sources */ = {isa = PBXBuildFile; fileRef = CE14F644111E4EF96C004A501E7E3F89 /* Pbkdf2.m */; }; + 2AD7DC546E1F05A9AC230096A06840EA /* RNFBJSON.h in Headers */ = {isa = PBXBuildFile; fileRef = 67884F02AFA4A4C5CD877BAE71140A8E /* RNFBJSON.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 2ADABC038F91F8180BEB756578300736 /* KeepaliveTimer.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 1812504A074771DDFF9A406E4531F4FA /* KeepaliveTimer.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -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 -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors"; }; }; + 2AF8FA27F6F7D973BA41558473B00457 /* EXFilePermissionModule.h in Headers */ = {isa = PBXBuildFile; fileRef = 10259BF2673C5F3A94B58CFD311CFEE8 /* EXFilePermissionModule.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 2AFA984F591325ECC7D420355EAAAA13 /* TOCropToolbar.h in Headers */ = {isa = PBXBuildFile; fileRef = C036C9C64E0B5AEFC84E6F3EE2A92F56 /* TOCropToolbar.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 2B35A2B4E44724A4DC680C761C64948E /* rescaler_msa.c in Sources */ = {isa = PBXBuildFile; fileRef = EE9F37816B96DBBDAEBD78874B51350E /* rescaler_msa.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; + 2B4BC91E960BE8215E74412B95F9D6C9 /* neon.h in Headers */ = {isa = PBXBuildFile; fileRef = 1B0BE4F6E0348631EC7C024F5D9D6294 /* neon.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 2B8738D906D2CA05D0046B8F698F92DD /* FIRCLSInstallIdentifierModel.h in Headers */ = {isa = PBXBuildFile; fileRef = B8943F0EDDB176A73456D9B22DDBC978 /* FIRCLSInstallIdentifierModel.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 2B89DE112C76E19C8C4E1FBA1C70365A /* TurboModule.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 80B83EC9FC27F2E0D1A6E4727A1B12EE /* TurboModule.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + 2B954D63D976E5FB8B707BC95B75B87A /* SSLContext.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 203BEA05B06B2E1A1534E494846FD7DE /* SSLContext.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -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\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors"; }; }; + 2BA69D9D542370C30F15F680DA1AAE7A /* QBImagePickerController.h in Headers */ = {isa = PBXBuildFile; fileRef = EAA732B815650B9BD28A764FEF918484 /* QBImagePickerController.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 2BA85B354BB0620219F27B10C11A0253 /* TypeInfo.h in Headers */ = {isa = PBXBuildFile; fileRef = 4461B980BF294265D94A5EEFB7E0810C /* TypeInfo.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 2BAB6032428EE28B11A37B5DF0D52561 /* FIRCLSDataParsing.h in Headers */ = {isa = PBXBuildFile; fileRef = F8DEE4D76290DC1C1FDE7E486F7F1862 /* FIRCLSDataParsing.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 2BCC4B43D1A38602A10E5F73F56BAA68 /* TypedIOBuf.h in Headers */ = {isa = PBXBuildFile; fileRef = DE7125DE27A7A99E457DA6CC95894E6A /* TypedIOBuf.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 2BD7FCA8209308DDB0E7BB1B9D848402 /* Yoga.h in Headers */ = {isa = PBXBuildFile; fileRef = B4E4B99D6878885DE3CB3CFDFA415FA5 /* Yoga.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 2BEC26C9565DF6117005E46EB80BB2AE /* RCTModuleData.mm in Sources */ = {isa = PBXBuildFile; fileRef = 67D05A18B709D6E8245B2D69BBAFFE09 /* RCTModuleData.mm */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + 2BFCD0A656C3B53071CB397D022D9976 /* F14Mask.h in Headers */ = {isa = PBXBuildFile; fileRef = 50B74FB029CC42CDD6EF08D625FD4079 /* F14Mask.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 2C070552599A85A8F17ACEDC29271A56 /* RCTSafeAreaShadowView.m in Sources */ = {isa = PBXBuildFile; fileRef = E29EC038ADE36DEC92B372698811EEC4 /* RCTSafeAreaShadowView.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + 2C118E9BFEDC4217B2772E7BDF3519BD /* FIRCLSHandler.m in Sources */ = {isa = PBXBuildFile; fileRef = 1F1435941A1E7FCF0BA13968468F6641 /* FIRCLSHandler.m */; }; + 2C23C4AB4FB7C9AFDC7C84785AE11D35 /* Types.h in Headers */ = {isa = PBXBuildFile; fileRef = 54ECCCA6485814F6D3A1A8F2DCE48A16 /* Types.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 2C326559EE14F4C0A14F2C834AFE33D8 /* vp8_dec.c in Sources */ = {isa = PBXBuildFile; fileRef = 81FA9926975AB558C726AB2EC298B020 /* vp8_dec.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; + 2C38C9750A22C493F4BCBFB79079F6E4 /* FBLPromise+Any.h in Headers */ = {isa = PBXBuildFile; fileRef = 829439B6F9662A89D220F0C0F5D27A14 /* FBLPromise+Any.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 2C4B1F4592E20288807989D3EAF2488A /* enc_mips_dsp_r2.c in Sources */ = {isa = PBXBuildFile; fileRef = 7ABB24C5F472E64F7F2F8FE129DF2BFA /* enc_mips_dsp_r2.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; + 2C647155E3C88B8A765E72894C34D9DE /* huffman_utils.c in Sources */ = {isa = PBXBuildFile; fileRef = 402D6004D8D8936777EB46B8FC8B1C9D /* huffman_utils.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; + 2C698A0AD94670E3F3AD35ABB561EBF6 /* JSBigString.h in Headers */ = {isa = PBXBuildFile; fileRef = 32428EF17285EA0A68E148C734E1B78F /* JSBigString.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 2C70C1B1149ACCF5395F04A6C9116364 /* cost_enc.c in Sources */ = {isa = PBXBuildFile; fileRef = B7E88D2F833179F2F02DB5A5C8DC2734 /* cost_enc.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; + 2C73B2275ABCA972F6D283E5BA44B239 /* ManualExecutor.h in Headers */ = {isa = PBXBuildFile; fileRef = 3ABE255032543017699AF31C85725309 /* ManualExecutor.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 2C7CD02757F50746084DE37EEDD96B6C /* Log.h in Headers */ = {isa = PBXBuildFile; fileRef = 4A58B56C9403B416F76F52128D627C06 /* Log.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 2C8F4567DBC5AB1023D6F1E202732CA7 /* FIRCLSLogger.h in Headers */ = {isa = PBXBuildFile; fileRef = A977CF3BA76F162374A0F4762F5BDE58 /* FIRCLSLogger.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 2CB6213D090F803B4D049F127D9D0CF9 /* contents.xcworkspacedata in Sources */ = {isa = PBXBuildFile; fileRef = 5892DADA7DB089BA3D5F12C2C39FA1E6 /* contents.xcworkspacedata */; }; + 2CCF23B9AF455D5D96980D148EFB75D2 /* HazptrThreadPoolExecutor.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 5FC82E595D591D4B64F4CFE54F774BBC /* 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"; }; }; + 2CFCB4CF85B49C6B63BB759EA9D76575 /* GCDAsyncSocket.m in Sources */ = {isa = PBXBuildFile; fileRef = F31E184818299EDC875D14017A91F0EC /* GCDAsyncSocket.m */; }; + 2D301ABAF708097EE231C5A0DB736A80 /* Singleton-inl.h in Headers */ = {isa = PBXBuildFile; fileRef = 6A3BC0554BF40ACE6A8748267F84038F /* Singleton-inl.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 2D7BE2254AF879D4CFE02DB49937F434 /* RCTReloadCommand.m in Sources */ = {isa = PBXBuildFile; fileRef = FDE0DDE655FE59C18B987D220FCBF80E /* RCTReloadCommand.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + 2D868806F89B22F94A2D3C9FE6474A1C /* FBLPromise+Reduce.m in Sources */ = {isa = PBXBuildFile; fileRef = E7205498D2F3F369D9740496F9922020 /* FBLPromise+Reduce.m */; }; + 2D895E2938EF7EFAB0ABB202F9CAB4D5 /* FBVector.h in Headers */ = {isa = PBXBuildFile; fileRef = 6CD1052889D91B98A0D07B276141723B /* FBVector.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 2DB236D8916D7BACECF324AF5165D4A6 /* QBSlomoIconView.m in Sources */ = {isa = PBXBuildFile; fileRef = 49FE1FF251A307308528A7C61047385C /* QBSlomoIconView.m */; }; + 2DBA0F8EF132A08B31930703FE793D57 /* CPUThreadPoolExecutor.h in Headers */ = {isa = PBXBuildFile; fileRef = B5C79F57E46A0E0A2844B65E90A40377 /* CPUThreadPoolExecutor.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 2DCFEB2D47327734DDEC3868C929D5D1 /* RCTLocalAssetImageLoader.mm in Sources */ = {isa = PBXBuildFile; fileRef = AC730EFB80AB1A4B11A4CAE8295075DC /* 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"; }; }; + 2DDF2CC2DDA6B43F80AEF12C47D5D408 /* EXImageLoader.h in Headers */ = {isa = PBXBuildFile; fileRef = 5E32AB3F8346FE3131E262D7FC3BCBB7 /* EXImageLoader.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 2DE5851C32276E5A115362D3A94F45F7 /* FLEXNetworkRecorder.h in Headers */ = {isa = PBXBuildFile; fileRef = 9A67A8CA4910C21CB87423C954D39115 /* FLEXNetworkRecorder.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 2DED61DF52F58E54E7798548CFC73A9E /* UniqueInstance.cpp in Sources */ = {isa = PBXBuildFile; fileRef = CADE3B66C3F30EA04D381F4C01914FD7 /* 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"; }; }; + 2DED901D588A61AFC204121DD35F236B /* CoreModulesPlugins.mm in Sources */ = {isa = PBXBuildFile; fileRef = FC135A6F68C0A8FBC3B924A43F41306C /* 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"; }; }; + 2DF43115CC8D29B67CBD373DEBDD9AF7 /* BSGGlobals.h in Headers */ = {isa = PBXBuildFile; fileRef = 8200515752D33D5F883C291B2285950E /* BSGGlobals.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 2DF706914A075A8748310140EB67E793 /* ExceptionString.h in Headers */ = {isa = PBXBuildFile; fileRef = 5EED4F8FE233A27531DE0D14ABEDE1BD /* ExceptionString.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 2DF8327B64A3FE6D1774882D0595DAE8 /* RCTFPSGraph.m in Sources */ = {isa = PBXBuildFile; fileRef = D96F6558003383FD9384D345C606AA44 /* 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"; }; }; + 2DFB6E0B0F83A9BEC1689FD7ED0FBC25 /* FIRCLSThreadState.h in Headers */ = {isa = PBXBuildFile; fileRef = 54D6FE91E066A49CEB31577D89B62768 /* FIRCLSThreadState.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 2E00B1B2C7BF3736BE40EFAF8F90F7B9 /* UMReactNativeEventEmitter.h in Headers */ = {isa = PBXBuildFile; fileRef = 537B1A2D5A531436E67DA7F538C794F8 /* UMReactNativeEventEmitter.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 2E175864082CAE1492153921B6B06DCD /* RNConfigReader.h in Headers */ = {isa = PBXBuildFile; fileRef = 907F12A5AC833E515F4925CF4B537581 /* RNConfigReader.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 2E1A2DB7D876E6C4F0B94F4CA92F05B7 /* RCTWeakProxy.h in Headers */ = {isa = PBXBuildFile; fileRef = 8C369B8A95598DD04AF7432E31EEA407 /* RCTWeakProxy.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 2E1F5BC9E1BA0DA4412AD60AF55D750A /* RCTCxxBridge.mm in Sources */ = {isa = PBXBuildFile; fileRef = 07BEBBAD948D4A1DEFC269F12E5E80BF /* RCTCxxBridge.mm */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + 2E2A420D51F91B0C7470EFADB38581D0 /* BugsnagReactNativePlugin.m in Sources */ = {isa = PBXBuildFile; fileRef = DA99AFF483616230158822497780D24B /* BugsnagReactNativePlugin.m */; }; + 2E36677B5AD047F0FDCF53F13D79065D /* FrameType.h in Headers */ = {isa = PBXBuildFile; fileRef = D7C3074D50DEDDB9AFFB91F3D45C7179 /* FrameType.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 2E70694A89C8816DC12C41242A9F384E /* DestructorCheck.h in Headers */ = {isa = PBXBuildFile; fileRef = D374BA343D3CF4DC839241C8B3F14C24 /* DestructorCheck.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 2E717091DF26940F4E479BB6BB4DA208 /* RCTBlobManager.mm in Sources */ = {isa = PBXBuildFile; fileRef = B30E609D568365127079DE15F8F18390 /* 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"; }; }; + 2E957BFAF00D217306CF506E1706C7A1 /* FirebaseCoreInternal.h in Headers */ = {isa = PBXBuildFile; fileRef = 259F6E7CCEFB5E9DB441DC4CFFF0B868 /* FirebaseCoreInternal.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 2EB427AA741B0843E634188D429C128E /* EventUtil.h in Headers */ = {isa = PBXBuildFile; fileRef = E925EBA91ACA78CE2B3EB8CFC56CE146 /* EventUtil.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 2EE584792D3CB86EAD71AE972742439A /* GlobalShutdownSocketSet.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 1A0EF8B2BC80C6EC5E6B732596FAA0F4 /* GlobalShutdownSocketSet.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -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\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors"; }; }; + 2EF451A980660F39F52CFE588EEC8F68 /* CocoaAsyncSocket-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 5B00FF93A1ADC567B1107BE1F3FB30EE /* CocoaAsyncSocket-dummy.m */; }; + 2EFCABAC8C93ACE4A219D60FDF19D60F /* log.c in Sources */ = {isa = PBXBuildFile; fileRef = ACC92146647DE8B73C921197D0F36B64 /* log.c */; }; + 2F0572B89DC0FCF6449204A686CEFD23 /* EXLocalAuthentication.m in Sources */ = {isa = PBXBuildFile; fileRef = 5CE4FA9E6DCE1303903955F78A5FF1DB /* EXLocalAuthentication.m */; }; + 2F0971B130BF7115A12E53D124D1E168 /* TOCropViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = B045E9D2723576894CFADB8CF99D1BDC /* TOCropViewController.m */; }; + 2F389B1842DB2788C24CB3C558F1E069 /* FrameHeader.cpp in Sources */ = {isa = PBXBuildFile; fileRef = F10520B4E2457035556B41CB3D68C96E /* FrameHeader.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -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 -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors"; }; }; + 2F4198D9F013C9FE111E61D1259B0DA8 /* SDWebImageCompat.m in Sources */ = {isa = PBXBuildFile; fileRef = A1C4352DCBB57612077AB0EA4D037BC8 /* SDWebImageCompat.m */; }; + 2F7302CC7E38A125BAD5E0FA5AE64FDB /* json_pointer.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 80D20AF86BA07B70D836BC28CBABB53E /* 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"; }; }; + 2F7716E1304BA3585532874E4A33E540 /* UMCore-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = D5BCB869F0778DBD7819480C485B6BCB /* UMCore-dummy.m */; }; + 2F7B5754C8FBAA85A036D509B89076F2 /* PropagateConst.h in Headers */ = {isa = PBXBuildFile; fileRef = AE48CE0491B4D11FA8A9B4406D7594B9 /* PropagateConst.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 2F7BEE2B0414D2430FEBDE422D82E716 /* RNSScreenStackHeaderConfig.h in Headers */ = {isa = PBXBuildFile; fileRef = AB4847BCD9AC4671DFCBC8795CDC7DBD /* RNSScreenStackHeaderConfig.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 2F96C64F61A0B39BE9EB6652B6A280AA /* Framer.h in Headers */ = {isa = PBXBuildFile; fileRef = DA9CB1EBD91EFEE2DA3CF4E11EAEFDD0 /* Framer.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 2FA5972B9E7F6192C06B0F4A642BE6C4 /* RSocketStateMachine.cpp in Sources */ = {isa = PBXBuildFile; fileRef = BC1DC87184145EA55F828E06FB2A2AD0 /* RSocketStateMachine.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -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 -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors"; }; }; + 2FB54946DFE25176C6E77A6D5A70C9DA /* RNLongPressHandler.m in Sources */ = {isa = PBXBuildFile; fileRef = 2BEBC1A69ED4882FD92FD4958E2610A0 /* RNLongPressHandler.m */; }; + 2FB98563FD7C4C036BD54CD88398BAE6 /* AtomicUtil.h in Headers */ = {isa = PBXBuildFile; fileRef = 760F69725DE0C3F05950188EAA4AB1B7 /* AtomicUtil.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 2FB9E9C3BF97CEB4F65A708378D9BA4E /* Utility.h in Headers */ = {isa = PBXBuildFile; fileRef = FFD1A511B550CDC9B86240DC9ED622A5 /* Utility.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 2FD311C2EA42991D89EC699AFECD44AD /* PicoSpinLock.h in Headers */ = {isa = PBXBuildFile; fileRef = 3422B976058623B73B07D29CF203DFFD /* PicoSpinLock.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 2FE6C6CA9FA949DB7EFB3464C102D168 /* RCTUtils.m in Sources */ = {isa = PBXBuildFile; fileRef = A4F52189F0AF31689D4C70B36C44D1A9 /* RCTUtils.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + 300F7A682752B99F26394CF98E396364 /* RCTProgressViewManager.m in Sources */ = {isa = PBXBuildFile; fileRef = 866840E0C2491C06E2E8070A1943FE07 /* RCTProgressViewManager.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + 300F7B23593DEF8943B5AAA783616DBC /* Subscription.h in Headers */ = {isa = PBXBuildFile; fileRef = B2DC601003B56909E4E622587FF16416 /* Subscription.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 302087EB6A2F33B77DE680C8FF4D24A4 /* RSocketRequester.h in Headers */ = {isa = PBXBuildFile; fileRef = A85228D7B9EC8EF927D8DC036E08B119 /* RSocketRequester.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 302E6C6C8AC11F575B24769D63047BB9 /* EventBaseBackendBase.h in Headers */ = {isa = PBXBuildFile; fileRef = 228CEDEB544D70320F1FA5497145205B /* EventBaseBackendBase.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 3039028BC33A465EFD0A75F7FA18D50D /* SDMemoryCache.h in Headers */ = {isa = PBXBuildFile; fileRef = B2FD527FF5DA6B6E6330F03166CA0B63 /* SDMemoryCache.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 303CC7AA9890BAD0B71A510E44533B59 /* SanitizeThread.cpp in Sources */ = {isa = PBXBuildFile; fileRef = F3C4D0D2462F12988B951082840298D4 /* 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"; }; }; + 30403037E9E91EF0E6628756F2110FD6 /* SharedMutex.h in Headers */ = {isa = PBXBuildFile; fileRef = 4AE26825253BF5B34B42D1707DA20966 /* SharedMutex.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 30409C1FCA7716C70C1CCB07EF46DB4E /* SDImageLoader.h in Headers */ = {isa = PBXBuildFile; fileRef = 01C730C3064C03A4329119B3E97E6BD2 /* SDImageLoader.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 3041989153CDC0261E17B708E0FA20D7 /* RCTAsyncLocalStorage.mm in Sources */ = {isa = PBXBuildFile; fileRef = 9EAF4D65E03E37FE5ADDAC62B76870F8 /* 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"; }; }; + 304CB786717E7B5008BF6E94B27D7DAF /* TimeoutManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 5B408C6E714917EC3AEA908A60D7D4D0 /* TimeoutManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 305520E619756675DF9D699007D3E8BE /* TimedDrivableExecutor.h in Headers */ = {isa = PBXBuildFile; fileRef = 8FF8D787CE740246DD485EC2B9980630 /* TimedDrivableExecutor.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 3061DA6EB7B3AFDEAC3A9EE7C274EDCE /* ManualTimekeeper.h in Headers */ = {isa = PBXBuildFile; fileRef = D4E00FFFEE4E93E4614D889757FDD006 /* ManualTimekeeper.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 306B4BB0E7A7FC3095C364A0FF2AB5EF /* Flowables.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 8106C55F6EB8A83C7B846CC3E85A8B18 /* Flowables.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -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 -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors"; }; }; + 30763EF1132DCDB7F8CA2AD3CDAB76C0 /* UIImage+MultiFormat.m in Sources */ = {isa = PBXBuildFile; fileRef = 9FE4C61F261844691C8E404357836761 /* UIImage+MultiFormat.m */; }; + 3081F919C2D2A6A08A2EA1A054FD7201 /* UMLogManager.h in Headers */ = {isa = PBXBuildFile; fileRef = EF3D4BEE22F6CEEFC22E8EAB98F576D9 /* UMLogManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 3089F67BAC4927931C3B495179149E7F /* Semaphore.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 82FC21C6B790C0A4D4F723B59261612D /* Semaphore.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -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\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors"; }; }; + 308E79E52E0EE03792C429EF76E7AD06 /* Instructions.h in Headers */ = {isa = PBXBuildFile; fileRef = 6B210EFE9775B601C94CD70CDD1C8F12 /* Instructions.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 3098EBEF9719137A78260C92558CE65A /* Subscriber.h in Headers */ = {isa = PBXBuildFile; fileRef = A129FA173BD1DFA8F6367D62CEE74D07 /* Subscriber.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 30C1BA843B39BA4D0FA3E536CA174CA7 /* RCTSurfaceSizeMeasureMode.h in Headers */ = {isa = PBXBuildFile; fileRef = EB8B96665FF79081B9EFCA774FB85C18 /* RCTSurfaceSizeMeasureMode.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 30C79BF542456D3F223154B033FFA1D0 /* RCTBaseTextViewManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 9436B91C9FF161478B84F75E61058C78 /* RCTBaseTextViewManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 30E947A0A0DF57A582B795F37E5D358D /* SDWebImageTransition.m in Sources */ = {isa = PBXBuildFile; fileRef = D266F32E36F1D9B01C20BA9CF95F70A5 /* SDWebImageTransition.m */; }; + 311554A8174B845BC22DA18303E70A04 /* Config.h in Headers */ = {isa = PBXBuildFile; fileRef = 0F4E6AECD44AD9B7789C35E28341A3B9 /* Config.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 3120A800D922D6EE3DFC424F34D89465 /* vp8i_dec.h in Headers */ = {isa = PBXBuildFile; fileRef = BDFFE1CC2C91451B462C153CA49ABA6B /* vp8i_dec.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 3124199D85FFF022B824D2B885BDC318 /* GLog.h in Headers */ = {isa = PBXBuildFile; fileRef = 9ABF5F5E8AA1A3AAE865E95E2E84B143 /* GLog.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 313DC2FBD3E00CFDE9F3C766C29F8D2E /* GoogleDataTransport.h in Headers */ = {isa = PBXBuildFile; fileRef = 20CE23FE0767DB939DCE8E3DAEA26426 /* GoogleDataTransport.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 313E8A8AEA5A22BDF46F9792635DE5DD /* BSG_KSMachApple.h in Headers */ = {isa = PBXBuildFile; fileRef = 96D9C1CF38ABB091FCA84C472795BFEA /* BSG_KSMachApple.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 3141F51226BA0E27DAE098311328E9DB /* MemoryIdler.h in Headers */ = {isa = PBXBuildFile; fileRef = 77262912BE00AA027F8A8E95643F00B9 /* MemoryIdler.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 314CD668EC6B0C16EB498CD8AE5D7AC1 /* UIImage+ExtendedCacheData.h in Headers */ = {isa = PBXBuildFile; fileRef = 958AC6930E90C161303CD3BE53186744 /* UIImage+ExtendedCacheData.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 31931718900441593F276E931ECF70C6 /* SysSyscall.h in Headers */ = {isa = PBXBuildFile; fileRef = E8F1B8C288CB8F577C1F3C18AAF8DE82 /* SysSyscall.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 319333A17B1DF0874DE9B35F0C581B66 /* RCTTypeSafety-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 2E45A073CA24752D8FF0BA280FC352AA /* RCTTypeSafety-dummy.m */; }; + 319601F655E055B0BAA4B5B6940CFDF5 /* DiscriminatedPtrDetail.h in Headers */ = {isa = PBXBuildFile; fileRef = 5415847CF0A60D1C2FD6EDBF1A9684CA /* DiscriminatedPtrDetail.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 319931AB20A25852481A3B5FFCAA4664 /* AsymmetricMemoryBarrier.h in Headers */ = {isa = PBXBuildFile; fileRef = 51FF4293E7C2143586656CC260F20B3D /* AsymmetricMemoryBarrier.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 31A0B5848DA1A7AC37D65BFFAADE1F45 /* RCTBackedTextInputDelegate.h in Headers */ = {isa = PBXBuildFile; fileRef = B75D7EF0D60FCFBA75FE3515D84FF9A4 /* RCTBackedTextInputDelegate.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 31A2B597AA17492026482C3FE76F8714 /* RNCCameraRollManager.m in Sources */ = {isa = PBXBuildFile; fileRef = 83436CB34880CC0D890517A4022A8D9C /* RNCCameraRollManager.m */; }; + 31C9383F9C068932971F7DE87330E133 /* ManualTimekeeper.cpp in Sources */ = {isa = PBXBuildFile; fileRef = DAC3018CB7636026856C12EC99B1754E /* ManualTimekeeper.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -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\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors"; }; }; + 31C9C28D1D271197565CAB47CDD68212 /* EXFileSystemAssetLibraryHandler.h in Headers */ = {isa = PBXBuildFile; fileRef = 41E0A2B112737D4AD08256D301DDD0BF /* EXFileSystemAssetLibraryHandler.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 31D7206FED6867269B7EF6D2C1E20B32 /* BSG_KSJSONCodec.h in Headers */ = {isa = PBXBuildFile; fileRef = 52FC2C23B825C00D94BE09128D07281B /* BSG_KSJSONCodec.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 31EA9985CB7629817894FFDC4E81F184 /* SingletonThreadLocal.h in Headers */ = {isa = PBXBuildFile; fileRef = 380D7607FB8910E25D6677BF663DA183 /* SingletonThreadLocal.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 3219977D78B4A62023E2368ABE11AB96 /* RCTTrackingAnimatedNode.h in Headers */ = {isa = PBXBuildFile; fileRef = DF4AAE5C0B13A8AF7BF6C0CF3CE90BBB /* RCTTrackingAnimatedNode.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 323E819C735C9E8B962812DDA5C1E3F0 /* ConsumerBase.cpp in Sources */ = {isa = PBXBuildFile; fileRef = F78211D4FD23D27644E347F720DC8E1C /* ConsumerBase.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -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 -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors"; }; }; + 324324B762A07B2AA62A03B6A95927DA /* RWSpinLock.h in Headers */ = {isa = PBXBuildFile; fileRef = 87413EB62FE0622ED938C3FEC62C3B72 /* RWSpinLock.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 3261E2311B5543A83F7EC3D9D28D0D25 /* EXAppleAuthenticationMappings.h in Headers */ = {isa = PBXBuildFile; fileRef = ACCE3F9E79A8D57667C0A1EEC19B960F /* EXAppleAuthenticationMappings.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 326F40F02FABF3A5A19E7503ED2A9E81 /* pl.lproj in Resources */ = {isa = PBXBuildFile; fileRef = B3A7081A4A4B2E57040505D3748DD58C /* pl.lproj */; }; + 327563F60D5D8E32FBBC70C12A61E2F4 /* UMViewManager.m in Sources */ = {isa = PBXBuildFile; fileRef = D98CDBB8EE1165A5BE4DED01657BC9E3 /* UMViewManager.m */; }; + 327695FE5EE483C9B6F9A06EC48E7A08 /* pb_common.h in Headers */ = {isa = PBXBuildFile; fileRef = BFB3EAD1F08052928F837173A84FB07D /* pb_common.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 328B2DBBA7A8BA1E3E80EE984216060A /* EventBaseLocal.h in Headers */ = {isa = PBXBuildFile; fileRef = C523B1BC29A1768450EB25F94A158E36 /* EventBaseLocal.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 328FD10A036EC10F526967BA5ACB1EE5 /* SharedPromise-inl.h in Headers */ = {isa = PBXBuildFile; fileRef = 8A3CD1724E34DA7DB517E1335B01419F /* SharedPromise-inl.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 329221506B9AA6E06120CEB3A900A6CD /* RangeSse42.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 4038167DF645ABBE79A04216181C2F39 /* RangeSse42.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -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\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors"; }; }; + 3297803A1036B923EA911A24F231B3A5 /* BSG_KSMach_x86_64.c in Sources */ = {isa = PBXBuildFile; fileRef = DABFDAABF70DF58C7B47B299BD23472F /* BSG_KSMach_x86_64.c */; }; + 32A05DDE22FDA7908D1269F750A05974 /* TokenBucket.h in Headers */ = {isa = PBXBuildFile; fileRef = E2CFCB04C5B5C726E1082EAF0B9E003D /* TokenBucket.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 32A4EF8E09B848C461511F561251CC0C /* SKHighlightOverlay.mm in Sources */ = {isa = PBXBuildFile; fileRef = 634439167118190AB0E4E384E0FA9DEE /* SKHighlightOverlay.mm */; settings = {COMPILER_FLAGS = "-DDEBUG=1 -DFLIPPER_OSS=1 -DFB_SONARKIT_ENABLED=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -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"; }; }; + 32AB4D2353B3D18707FE2E492EB733EB /* UIColor+SDHexString.h in Headers */ = {isa = PBXBuildFile; fileRef = 4993B0E0C5C84652892DCF59D89415EA /* UIColor+SDHexString.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 32C8655D48F40867932997718E4CFB01 /* BSGJSONSerialization.m in Sources */ = {isa = PBXBuildFile; fileRef = F45431E727CEC1C36147A703596FF74F /* BSGJSONSerialization.m */; }; + 32F609CF9E603A14E6B44EEF31397B09 /* FrameTransportImpl.h in Headers */ = {isa = PBXBuildFile; fileRef = F1EE0156D120B7A7DAC12B5C1B0D5126 /* FrameTransportImpl.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 3307BE4EBA2AAC98B41E6BEED1888D57 /* SDImageFrame.m in Sources */ = {isa = PBXBuildFile; fileRef = 1948A6D0CDF7975A216C1681F5AD37B4 /* SDImageFrame.m */; }; + 3308411CB19F2675D0B896646C0C51A4 /* TOCropViewController.h in Headers */ = {isa = PBXBuildFile; fileRef = 04B43B5267D59EB7B1978AF41A1C1D7F /* TOCropViewController.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 33187A10BF5CF09073D396DCE97FF6ED /* RNNotificationUtils.m in Sources */ = {isa = PBXBuildFile; fileRef = 24F0769A180D025917138DCC3DD3869D /* RNNotificationUtils.m */; }; + 33358483E6758BBB59BA47C928DF5938 /* FIRCLSReportManager.m in Sources */ = {isa = PBXBuildFile; fileRef = 4BAEAF056D6389DB6B5F2D45F2D7F6C0 /* FIRCLSReportManager.m */; }; + 3350775E7C927FDC80CF1CFB4B720A95 /* HHWheelTimer-fwd.h in Headers */ = {isa = PBXBuildFile; fileRef = BC0A833D86EBE30F2D3F35AAFCB253EF /* HHWheelTimer-fwd.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 339134F01A78B4102373B2A44F54320A /* RCTConstants.h in Headers */ = {isa = PBXBuildFile; fileRef = DC9B06C8AD7A8CB32E98F5C17BE1548B /* RCTConstants.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 339DAEEE1A1C35769BC811DE1435E024 /* evsignal-internal.h in Headers */ = {isa = PBXBuildFile; fileRef = 9A9E308C336BF53207877FDF436CC583 /* evsignal-internal.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 33AF968B9F9F73D7DC506770754FD4C1 /* RCTTextView.h in Headers */ = {isa = PBXBuildFile; fileRef = 23C6CD8DEB7156865D90C7DA489E00A9 /* RCTTextView.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 33BD0254FA27EDD2F22654E1DBB7DDF5 /* SKDescriptorMapper.mm in Sources */ = {isa = PBXBuildFile; fileRef = 8D7CBF8334137587AB49D63DBB7EE10D /* SKDescriptorMapper.mm */; settings = {COMPILER_FLAGS = "-DDEBUG=1 -DFLIPPER_OSS=1 -DFB_SONARKIT_ENABLED=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -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"; }; }; + 33C4412357E668C88FAFCAF8BEBC9F0D /* AtomicReadMostlyMainPtr.h in Headers */ = {isa = PBXBuildFile; fileRef = 40B73320ECD2CAB7B88F207E66F46964 /* AtomicReadMostlyMainPtr.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 33C5033223DC6B767D2D9CC028ED1D04 /* FIRCLSCompoundOperation.h in Headers */ = {isa = PBXBuildFile; fileRef = 5A7260818D23202F237A776AC5EF9A37 /* FIRCLSCompoundOperation.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 33C6657C10483B1B3F626D6D25680170 /* Foreach-inl.h in Headers */ = {isa = PBXBuildFile; fileRef = A99AE43C0ED933C968518E5C8CCE6085 /* Foreach-inl.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 33CF52CC8EDB0DAF0DBE6493D5D57B30 /* RCTUIManagerObserverCoordinator.h in Headers */ = {isa = PBXBuildFile; fileRef = 56A7CE68D94ED992183FA601211EB7C0 /* RCTUIManagerObserverCoordinator.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 33F6B55A10272F5DD5CED07C8A251A8D /* RCTClipboard.h in Headers */ = {isa = PBXBuildFile; fileRef = 57F4BEB4EAD11CEF0512A863E45AF88F /* RCTClipboard.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 34022629C642FDCFE49651FF1CBB78A9 /* dynamic.h in Headers */ = {isa = PBXBuildFile; fileRef = 66A9E39CF28CBE2676B8824193EFED4B /* dynamic.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 34042CE4EBB31CC4A443F027386B8059 /* GlobalThreadPoolList.cpp in Sources */ = {isa = PBXBuildFile; fileRef = F3F2F4373C12768936C270504E041C55 /* 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"; }; }; + 340A8AAAB9F280E6421B56391704ED6C /* FirebaseCore-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = AFB3DA1084FEC7BFD1B3B27BE5F973F5 /* FirebaseCore-dummy.m */; }; + 34873A667E74A5AAEB8ECB6C020EDB74 /* RCTDisplayLink.h in Headers */ = {isa = PBXBuildFile; fileRef = 215A5D0D0D87FB5454CB21FDE836220D /* RCTDisplayLink.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 34B0152827D5252EE5AC41A8D2A954A7 /* FBLPromise+Do.m in Sources */ = {isa = PBXBuildFile; fileRef = CBEF697AAB8C9A5121EC4DB2FFFF5D8A /* FBLPromise+Do.m */; }; + 34B5B887C7B414AB3FE6CD1820C6F32F /* FLEXNetworkRecorder.mm in Sources */ = {isa = PBXBuildFile; fileRef = 3B0ED4D83E90C4EEB5FDD7D6FC48AB5E /* FLEXNetworkRecorder.mm */; settings = {COMPILER_FLAGS = "-DDEBUG=1 -DFLIPPER_OSS=1 -DFB_SONARKIT_ENABLED=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -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"; }; }; + 34BCDBC930E0110D3CB3F663414D4F54 /* evutil_rand.c in Sources */ = {isa = PBXBuildFile; fileRef = 75AD37BCFF8968B13A9E9FBCD55AF142 /* evutil_rand.c */; }; + 34BE8FB09CCE0F3CFDB755C268A85CF1 /* LongLivedObject.h in Headers */ = {isa = PBXBuildFile; fileRef = 00386ED3F5F0A03625243B098D97F38A /* LongLivedObject.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 34C855B4D2D833A164F66599252142EE /* Compression.m in Sources */ = {isa = PBXBuildFile; fileRef = 6F857D7A9F2EEFD5B9868211790701B1 /* Compression.m */; }; + 34E2D16BCB27AE9F60D65DEFA0C0AA9E /* FIRCLSUtility.h in Headers */ = {isa = PBXBuildFile; fileRef = 8D54FE0E7DBE4A49017A481F042BDC24 /* FIRCLSUtility.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 34EEAACA6336D2A717F1934AF87F2C7B /* WarmResumeManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 5CF8400C1FF7E5A0FC9E033047B9DF61 /* WarmResumeManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 34F9E8304AEAA062D74CCC7F66B1E658 /* SharedMutex.h in Headers */ = {isa = PBXBuildFile; fileRef = B5E1A6E74F8AA555D9E3F9ABB31513BC /* SharedMutex.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 350866AAB0538CE7B567446F68AE3495 /* openssl_md5_one.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 6059EB66B19D9C499452C7E4269AF05C /* openssl_md5_one.cpp */; settings = {COMPILER_FLAGS = "-x objective-c++ -fno-objc-arc"; }; }; + 3518578A0867A0CF0035AFB9DAE6E126 /* stop_watch.h in Headers */ = {isa = PBXBuildFile; fileRef = 89C96B793E2ABB5FB08EA692081D8C69 /* stop_watch.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 352BCB52C36E0DE7C25D6589275B4D1A /* FIRCLSException.h in Headers */ = {isa = PBXBuildFile; fileRef = E939F2E1F58D724AC907BB671CC49047 /* FIRCLSException.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 352DE05E2DBDD12D37C47186E570284B /* mm-internal.h in Headers */ = {isa = PBXBuildFile; fileRef = 7ED7CFDD19D9F5C3886F6A5635255DAE /* mm-internal.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 354317C878C4259A7AA4EB5A594D59AC /* BSG_KSBacktrace.h in Headers */ = {isa = PBXBuildFile; fileRef = E62CF2366AEA19ECB171DDE5AEDCE7D1 /* BSG_KSBacktrace.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 356B7F37620EBF37125D94F0D171BAD8 /* FIRCLSSettings.h in Headers */ = {isa = PBXBuildFile; fileRef = 7E3BB59D0E486762F3F329E8C18CEF27 /* FIRCLSSettings.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 35796E3D5AE1DED7559A23D85CA14899 /* RNRandomBytes.m in Sources */ = {isa = PBXBuildFile; fileRef = 66442F9D1BF8284CC8FFF8C87AA720B2 /* RNRandomBytes.m */; }; + 357FFC46F7F3E5CA818F8D1A39670C84 /* VirtualExecutor.h in Headers */ = {isa = PBXBuildFile; fileRef = 64908B46E12CAF504E5BEC4BAB6F8ED0 /* VirtualExecutor.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 35CFD417D18AF81C28D734AE9BB98C06 /* YogaKit-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 382F713E7632721E001DE0D7ACC15E76 /* YogaKit-dummy.m */; }; + 35D16B12B6346A9165DCA39944A55F34 /* RCTInputAccessoryView.h in Headers */ = {isa = PBXBuildFile; fileRef = 180CBAA0F1BD54DBF5E3C1C1E7E37174 /* RCTInputAccessoryView.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 35F54A065C7D8D1D4C845DD391A77E9E /* instrumentation.h in Headers */ = {isa = PBXBuildFile; fileRef = 17BAC1B3D9840CFB9D3EE84C102C5968 /* instrumentation.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 36153F8ED16F228983425E4CCB9638EF /* RNFetchBlobReqBuilder.h in Headers */ = {isa = PBXBuildFile; fileRef = 6F826C12232902831C6A8A5B51932167 /* RNFetchBlobReqBuilder.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 36339B3801EABE63938E05808B46BB0D /* SDmetamacros.h in Headers */ = {isa = PBXBuildFile; fileRef = 880AE41B2B3D9C41D0C32762C5E330D8 /* SDmetamacros.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 364D5AD721393E3F8C4598F4CAE6C1A2 /* Pods-NotificationService-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 24DD06DF3760AA8A84A2FD651A74E8B0 /* Pods-NotificationService-dummy.m */; }; + 3668D1A3BEC9E725B7EBB8FEF7A03F65 /* GULKeychainUtils.h in Headers */ = {isa = PBXBuildFile; fileRef = B2C132FB32D0B4C3D6E4FDA06C9AE554 /* GULKeychainUtils.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 367E95132546EFECE22354A89DB161DA /* FIRHeartbeatInfo.m in Sources */ = {isa = PBXBuildFile; fileRef = 79665451110932A2A4A62F49046CB8BE /* FIRHeartbeatInfo.m */; }; + 367F7744E737A2EE1C5A7A965E004A6F /* GFlags.h in Headers */ = {isa = PBXBuildFile; fileRef = C44E14BE03F6FFE681870AED03433C0E /* GFlags.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 368B9A8C61496188BC621D71F6C00BEE /* FlowableTimeoutOperator.h in Headers */ = {isa = PBXBuildFile; fileRef = B902AAFDCACA9FCCED6F2CACFDA43EC6 /* FlowableTimeoutOperator.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 3696E123146DCF7F6B68107015DB3E5A /* CoreModulesPlugins.h in Headers */ = {isa = PBXBuildFile; fileRef = 5C380D14E8DBD8C0F44438D5E224E4B4 /* CoreModulesPlugins.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 36972585593E61BF8E8488CDC933237E /* pb_decode.h in Headers */ = {isa = PBXBuildFile; fileRef = 114B9563272568A2F32B3AE68BBCCDFE /* pb_decode.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 36B358A11DCCB0C6CCB1E6ADC77DAF1C /* SKTapListener.h in Headers */ = {isa = PBXBuildFile; fileRef = AE03D954CA04298775A9A3379F965E0D /* SKTapListener.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 36B593E3EA6335C118B7782DA8E12CD2 /* BugsnagSessionTrackingApiClient.h in Headers */ = {isa = PBXBuildFile; fileRef = EAAD84A5D28E911B8134B69981F3F2C2 /* BugsnagSessionTrackingApiClient.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 36B8C10CFAAC747ECB55721D96A81BA6 /* FIRCLSReportAdapter_Private.h in Headers */ = {isa = PBXBuildFile; fileRef = 4A38C01DAE4D449991D0E6CD498F2D02 /* FIRCLSReportAdapter_Private.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 36C0DE16C73ED07AC2DC655C4F8472BD /* JSITracing.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 2AC5C3B1B34E86A8D913067DBD164087 /* JSITracing.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + 36C600209372720FCA59DDD3FC3C676F /* Cursor.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 11DF038B3CD26D41991303A4297AFBB8 /* Cursor.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -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\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors"; }; }; + 36D84F9BCA367058A7F45120F3418D29 /* Hazptr.h in Headers */ = {isa = PBXBuildFile; fileRef = A8F550FC3C93B3A025BC59A59C8DFA40 /* Hazptr.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 36E05C04602F9E6516D0A648301766FD /* BugsnagApp+Private.h in Headers */ = {isa = PBXBuildFile; fileRef = 69C7BF5BD05898AE65B22F4D2FA3E6C7 /* BugsnagApp+Private.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 36E919B17D4755B60F55483138E15CFA /* RCTModuleMethod.mm in Sources */ = {isa = PBXBuildFile; fileRef = 88607196F9F59E4FB83FF232C7A6D42B /* RCTModuleMethod.mm */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + 370255E4741FEC829572A78E8D8F0581 /* CxxNativeModule.h in Headers */ = {isa = PBXBuildFile; fileRef = A3AAE258AB6B1C65738363B2F5C0B1AE /* CxxNativeModule.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 370AFDEE8CAFA827C325A8C6A0BC520E /* File.h in Headers */ = {isa = PBXBuildFile; fileRef = A85D36FF0E68AA85158F238FF245A5A1 /* File.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 3711A6F6B64292C85B41AAF2703804F6 /* FBReactNativeSpec.h in Headers */ = {isa = PBXBuildFile; fileRef = F76EE1C98010B48017F99E9415B09082 /* FBReactNativeSpec.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 372BF46B0BBBE22BF9195F5E01DEB4EA /* FIRCLSSymbolResolver.h in Headers */ = {isa = PBXBuildFile; fileRef = E4E3AE5EDA62C95B4A4110C93361957C /* FIRCLSSymbolResolver.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 373ADEBE544AA4D2263ACC15E9F1B1F9 /* ExceptionWrapper.h in Headers */ = {isa = PBXBuildFile; fileRef = 40E4547F4925B916A078D86AF0DE87BD /* ExceptionWrapper.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 373F0400E31E06EC9D70F59328E1EE3E /* UMModuleRegistryAdapter.h in Headers */ = {isa = PBXBuildFile; fileRef = CFD5CD332C25FA50FADC4490C8D3F493 /* UMModuleRegistryAdapter.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 3757283125FD4BFA326450C67888FE94 /* ApplyTuple.h in Headers */ = {isa = PBXBuildFile; fileRef = AC55B0799EE63B29DC2437C51EB50477 /* ApplyTuple.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 375CD1A4B3539EF0BE5CAB7C1A9CD5F7 /* RCTJSStackFrame.h in Headers */ = {isa = PBXBuildFile; fileRef = 42F7B7B97204360BD8D3B5F9379FC544 /* RCTJSStackFrame.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 3772ADCA3BF208AE5047B9C835BA547D /* BSG_KSMach.c in Sources */ = {isa = PBXBuildFile; fileRef = A96F312A95C5FB7D75C6209A97196BF4 /* BSG_KSMach.c */; }; + 3799C31A023E9DD55E5AFCBC74A97AE4 /* Flipper-RSocket-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 908AEBD907478D7638C62BD46D4F7F90 /* Flipper-RSocket-dummy.m */; }; + 379E5555329A6A9F0BEB5ED2D8216392 /* HazptrDomain.h in Headers */ = {isa = PBXBuildFile; fileRef = 0D91C1EF24F8B3150F8D446611EEF869 /* HazptrDomain.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 37F160837E019F9DE8A93F3461DACA1F /* RNEventEmitter.h in Headers */ = {isa = PBXBuildFile; fileRef = 59244AA97058CEFA1EAF8F4CA79757DD /* RNEventEmitter.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 3808B8A26AB922A642AC3788161E6DDA /* BSG_KSCrashType.h in Headers */ = {isa = PBXBuildFile; fileRef = 2762D991F37475322F6ADECC124F9BCD /* BSG_KSCrashType.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 3820CFEC7FC9BD898A0570CB844213C4 /* GlobalExecutor.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 9D1A6CE8093A8BE304A4D57E2D5CC924 /* 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"; }; }; + 382128E0322DD168BD2A06F2643DFE08 /* Invoke.h in Headers */ = {isa = PBXBuildFile; fileRef = 1E00FE2FB4F34B818551B9FBCDCCFE4F /* Invoke.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 38223179E1751572E4A94EB19C8E13CA /* pb_encode.c in Sources */ = {isa = PBXBuildFile; fileRef = B7936606279EB4447A57B80121C06276 /* pb_encode.c */; settings = {COMPILER_FLAGS = "-fno-objc-arc -fno-objc-arc"; }; }; + 38997E68B2A849C74D81F52882A304B3 /* ThreadCachedArena.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 6B56D8B256A08D6F3440335ABEED8ECF /* ThreadCachedArena.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -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\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors"; }; }; + 38A41B1475DB3440DFB2CA4D1DF2A59E /* RCTCxxUtils.mm in Sources */ = {isa = PBXBuildFile; fileRef = 17323B5A1FCF01A9DEA3C31A29F96404 /* RCTCxxUtils.mm */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + 38A95EFC134FD4FA47A4CF67F5BD425C /* BugsnagError.h in Headers */ = {isa = PBXBuildFile; fileRef = 3D7062CBF2A45873E87D49AE1209E874 /* BugsnagError.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 38B90A03D5ED6B088A18AF457DA2D36A /* Aligned.h in Headers */ = {isa = PBXBuildFile; fileRef = 1F30B757D6483351807D2725860DD6B6 /* Aligned.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 38CC7C1065C0169DA0F6386E5D50143E /* ThreadPoolExecutor.h in Headers */ = {isa = PBXBuildFile; fileRef = FC058A64BDCD34CD6DF5447D0622A941 /* ThreadPoolExecutor.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 38EE37C9B51608646ADC1D05EE79A9B7 /* DelayedDestructionBase.h in Headers */ = {isa = PBXBuildFile; fileRef = 48D8B573FAFDCBAEC2E0C9E47D554EF7 /* DelayedDestructionBase.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 38F9CAAA19803432D27A0CAA32143EDB /* SysTypes.h in Headers */ = {isa = PBXBuildFile; fileRef = 229BF4DB003EEA81B974BE955D879E5C /* SysTypes.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 391AC3B6B5A494EF0613C7C352D4FBBC /* Hardware.h in Headers */ = {isa = PBXBuildFile; fileRef = 1FA8B920DE7C39C8F61C5628BAA95663 /* Hardware.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 392E1F3EA646CF82A0AA37816787B299 /* SDImageIOCoder.h in Headers */ = {isa = PBXBuildFile; fileRef = 17F095D41ADF3C95ABD68678CE18CEA0 /* SDImageIOCoder.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 393CACEEEA07756470C5746E4A321D33 /* FutureDAG.h in Headers */ = {isa = PBXBuildFile; fileRef = B8FAFFA070B07CA0DB9F87AE324C23EA /* FutureDAG.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 394746DB7D475E37DABB280917788C85 /* ModuleRegistry.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 6078EAA74D7CAF3E61BC7BBB5D95C330 /* ModuleRegistry.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + 396D2A75713581498DCD60CB5355239A /* Restart.h in Headers */ = {isa = PBXBuildFile; fileRef = 940A3662887443C415A3B1D34DF8A3EA /* Restart.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 398870254561C27547949B7B640F8787 /* log-internal.h in Headers */ = {isa = PBXBuildFile; fileRef = 51C810468B8101B10537F681C449FE02 /* log-internal.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 398A604B619E315082C2DDD6E0EF2B81 /* RCTSafeAreaView.m in Sources */ = {isa = PBXBuildFile; fileRef = F88748E761D6697D9DD3CCA1F52FDE08 /* RCTSafeAreaView.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + 3991329608BD07C36D92E222C7B4524E /* JSExecutor.h in Headers */ = {isa = PBXBuildFile; fileRef = DFD628481C697E806262FE83EEF0901E /* JSExecutor.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 39ADF21BB527C1E76BC231F574B0D63A /* YGStyle.h in Headers */ = {isa = PBXBuildFile; fileRef = 06B25885B5B7649C2548FCE36F209555 /* YGStyle.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 39BA91C02FE47CE43BCDC08C2E5E7A00 /* strlcpy-internal.h in Headers */ = {isa = PBXBuildFile; fileRef = 6485941607DED1C562F39E7E637068A8 /* strlcpy-internal.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 39BEA7A8A8B3FD346C92A6F3634BC628 /* SingleWriterFixedHashMap.h in Headers */ = {isa = PBXBuildFile; fileRef = 7ED3EE3653736C321CF15A16803B4FC4 /* SingleWriterFixedHashMap.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 39BF7EDA8EDC4391604D1AFFEF7EE00E /* RNLongPressHandler.h in Headers */ = {isa = PBXBuildFile; fileRef = 047FBF4C58243D39D4D3FA11C326F2B7 /* RNLongPressHandler.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 39C7B8CBC7FF6C71A08118BE63C072A0 /* Peertalk.h in Headers */ = {isa = PBXBuildFile; fileRef = EA66EA6A980D001ED348488BAFD37249 /* Peertalk.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 39E7730D50854C9BA938A35A0742B335 /* Checksum.h in Headers */ = {isa = PBXBuildFile; fileRef = 99D65B5DD0728878C6747E042CADDE03 /* Checksum.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 39F01D2871C164C3E61257660E2D12CE /* pl.lproj in Resources */ = {isa = PBXBuildFile; fileRef = 7744B9FE1F06A2813519D47E760A5C6C /* pl.lproj */; }; + 39F4FE38925F09D6917B09C17FC395D7 /* BSG_KSJSONCodec.c in Sources */ = {isa = PBXBuildFile; fileRef = 9A7390090F7B70ACFD253A824EBC9E60 /* BSG_KSJSONCodec.c */; }; + 3A1D52589C5F6CDFBC9A14EB108BA417 /* react-native-cameraroll-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 3DB10551A09EF324D60D88F1CD3C1468 /* react-native-cameraroll-dummy.m */; }; + 3A28B07C67C16DA68C8968859CAA8F50 /* RCTImageLoader.h in Headers */ = {isa = PBXBuildFile; fileRef = 873DA728CDF6509E742A2C1A707C07B7 /* RCTImageLoader.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 3A2E34FC266A7C71012BCC38B398A394 /* Exception.h in Headers */ = {isa = PBXBuildFile; fileRef = 9F69EA0F0BB305B299410EEDF8633580 /* Exception.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 3A3C3FA9A6D152B00B0A12D231FB0FE3 /* FIRCLSAsyncOperation_Private.h in Headers */ = {isa = PBXBuildFile; fileRef = 0049C0BE5C128F7EA0EC0991B9DBD9CC /* FIRCLSAsyncOperation_Private.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 3A4B08BB855E0FD8D2B23FD5D6F10C72 /* RCTUIImageViewAnimated.h in Headers */ = {isa = PBXBuildFile; fileRef = 3BB7931DFB57CC6DE32FB1D4421B8D4C /* RCTUIImageViewAnimated.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 3A5DB1E5EC7C9DB692B411AC12981758 /* UMAppLoader-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = AEFA078EB7DE2F215A9B9A6C4E542DB2 /* UMAppLoader-dummy.m */; }; + 3A638C6910A745D1282F62E74273D6A4 /* Aligned.h in Headers */ = {isa = PBXBuildFile; fileRef = 5EF5A53339F7C8BA0A6122E4896CBB43 /* Aligned.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 3A6B7A8818F60528F4CF8615BDF6EBEC /* DelayedDestructionBase.h in Headers */ = {isa = PBXBuildFile; fileRef = 41C7DF93FE6BBC6A992A84170F904509 /* DelayedDestructionBase.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 3A6EF28AAB1CEE9548C2645D361C61E2 /* NSTextStorage+FontScaling.h in Headers */ = {isa = PBXBuildFile; fileRef = 703652B3ED103950657D2AD13978ED5B /* NSTextStorage+FontScaling.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 3A758E4BB74593FC69CF6D1539496DC9 /* RNCWKProcessPoolManager.m in Sources */ = {isa = PBXBuildFile; fileRef = 4828A9C2DD4992FE17E2DD6ABF34B4F2 /* RNCWKProcessPoolManager.m */; }; + 3A7CF3B9BA945F5C9621399AE2865C8A /* RCTModalHostViewManager.m in Sources */ = {isa = PBXBuildFile; fileRef = 24D8AA5A085E1895F66FD84301C1430C /* RCTModalHostViewManager.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + 3A8937477FE3F79EB60994B13983B5B7 /* TypeList.h in Headers */ = {isa = PBXBuildFile; fileRef = E4E90D9EB96E434849D3D9AE7AE6E2DA /* TypeList.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 3AB69594FD46CD50CAA872FD72BFBD02 /* RsaFormatter.m in Sources */ = {isa = PBXBuildFile; fileRef = 68B9B14D4B822F0B1C8EFF9014D985E6 /* RsaFormatter.m */; }; + 3ACEEE971B2EDD26B7B97BFC2D95DBB9 /* GDTCORReachability.h in Headers */ = {isa = PBXBuildFile; fileRef = 02CD3AEF0F712A99CEE6286238AF66F6 /* GDTCORReachability.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 3ADC58C4189E6F0AE1603B77A021731D /* FirebaseCoreInternal.h in Headers */ = {isa = PBXBuildFile; fileRef = 3FA0CCF04D2E6683749FEDC56756898D /* FirebaseCoreInternal.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 3AEF0F6BDB4995D323D6D53A6CE2889D /* SKSearchResultNode.h in Headers */ = {isa = PBXBuildFile; fileRef = 264B6AD08F886F66A088AED318F4BAB7 /* SKSearchResultNode.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 3AEFA8582AF411706F549A015BEC5132 /* RCTScrollContentView.h in Headers */ = {isa = PBXBuildFile; fileRef = 66D7CD4D3A3A5E7B98BB29538DD00B04 /* RCTScrollContentView.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 3AF0395BC51A0FCE98FEE475DFDB8087 /* RCTModalHostViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = 822B77C3AA2FBC02C2739C0FADC34A4A /* RCTModalHostViewController.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + 3AF1AA005C56C75810117A34ECC2A794 /* GroupVarint.cpp in Sources */ = {isa = PBXBuildFile; fileRef = F7DECC70BFE17F20696B8FCFB273831D /* GroupVarint.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -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\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors"; }; }; + 3AF8D2CBC0F98CD8631D0BB460212876 /* SDWebImageCacheKeyFilter.h in Headers */ = {isa = PBXBuildFile; fileRef = 71D4741A2CD0FA7B25CAD6903C900456 /* SDWebImageCacheKeyFilter.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 3B13C625C1AD587BD6DB806451FB06DC /* Executor.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 6C35E3B8FD85E101ECDD7EEA1F9119D9 /* 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"; }; }; + 3B13C92CABF829A0C6FAC6DF8E666AA6 /* ThreadWheelTimekeeperHighRes.h in Headers */ = {isa = PBXBuildFile; fileRef = 7414F8587276C8A3970ADA33C6D729F3 /* ThreadWheelTimekeeperHighRes.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 3B249E976B7A75EF78D0FAA37103682F /* FBString.h in Headers */ = {isa = PBXBuildFile; fileRef = D50C4EFDCEEF6D65DA96B2B16A3BFCF7 /* FBString.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 3B269252249380E89F08507F91532631 /* FBLPromise+Delay.m in Sources */ = {isa = PBXBuildFile; fileRef = CA25F46C0F5D8FD0E0E3722EC50F3AE5 /* FBLPromise+Delay.m */; }; + 3B51D3D9AAA380C3D1AF31EA058324A7 /* BSG_KSCrashReport.h in Headers */ = {isa = PBXBuildFile; fileRef = F6A1DCC469A89C1E8B42121ADE8559B8 /* BSG_KSCrashReport.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 3B5545B85768C1B05082322D8CCE6047 /* SpookyHashV2.h in Headers */ = {isa = PBXBuildFile; fileRef = 02FE0B215D1E746856E1910E826333AF /* SpookyHashV2.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 3B890FFC095B8A728F822AA5021D1F83 /* ThreadCachedLists.h in Headers */ = {isa = PBXBuildFile; fileRef = 5CB23A641765B5B1373F6D38AEF5164F /* ThreadCachedLists.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 3B894FCBE494A56B522B87BECE5D410E /* RNLocalize.h in Headers */ = {isa = PBXBuildFile; fileRef = CCC432188685D40CE399E751B2621ADE /* RNLocalize.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 3B9F64ADB00BE46ED9371817608A08A5 /* SpinLock.h in Headers */ = {isa = PBXBuildFile; fileRef = CD4BD38B816D63A9E21E04313DF74D02 /* SpinLock.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 3BC7F5B33645B60FCB17D8F964BB2295 /* RCTInspectorDevServerHelper.mm in Sources */ = {isa = PBXBuildFile; fileRef = C1F7E1EEB19A423B1476F31F15A38E33 /* RCTInspectorDevServerHelper.mm */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + 3BCB08EA696CE116B81947B2118DB815 /* RCTVibration.h in Headers */ = {isa = PBXBuildFile; fileRef = 09329ADBC95266AAE6EBA50B5B8A9A47 /* RCTVibration.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 3BCFD00E61EAE61F79B4D2A008A04B81 /* BSG_KSCrashSentry.h in Headers */ = {isa = PBXBuildFile; fileRef = 5807F2C33809D5E878C86A6F5D2315FC /* BSG_KSCrashSentry.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 3C0ECD44CA71B46C62BA0CFFC633AEC3 /* AsyncPipe.h in Headers */ = {isa = PBXBuildFile; fileRef = 211A066A61C5BB6009F0B0D2C9D391D4 /* AsyncPipe.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 3C12CA4424E2B0E1DA44115E6753B360 /* FBLPromise+Wrap.m in Sources */ = {isa = PBXBuildFile; fileRef = 9CB4C3582A95DA599575D178F835328A /* FBLPromise+Wrap.m */; }; + 3C1691D1D428167217CDFF069343D91A /* SDDiskCache.h in Headers */ = {isa = PBXBuildFile; fileRef = 539A6E8F934239B5FD3A14AB9B340C44 /* SDDiskCache.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 3C2E265D591A097C72CE82A601A39FBD /* RCTVersion.h in Headers */ = {isa = PBXBuildFile; fileRef = B18DD986F43F3181EBB8DA82ADF5FC77 /* RCTVersion.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 3C45B95EE521FB18E181C7154517DD31 /* evdns.c in Sources */ = {isa = PBXBuildFile; fileRef = 389FB89D8950DA7F5B9FFE5CED0B4CCA /* evdns.c */; }; + 3C54CD9F6D8C914AA581D26AAE94EB4C /* NativeModulePerfLogger.h in Headers */ = {isa = PBXBuildFile; fileRef = F7099AD4BEC621BFBE7F24E626653828 /* NativeModulePerfLogger.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 3C57B9928E0E9E9146182C7BB5615F19 /* UMAppLoaderInterface.h in Headers */ = {isa = PBXBuildFile; fileRef = 0223030B097EBFB099D8AB118CD11BBD /* UMAppLoaderInterface.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 3C5BF75D2C741B7DE2EAC6F4280F84ED /* SDWebImageDownloaderRequestModifier.h in Headers */ = {isa = PBXBuildFile; fileRef = BBF3FDB13C0A9D56D65CA198AA2DA3EC /* SDWebImageDownloaderRequestModifier.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 3C714B20528FAD3024B8A395B474937F /* RCTSubtractionAnimatedNode.m in Sources */ = {isa = PBXBuildFile; fileRef = 8446E1ECBC8E356830D0AD92EB9A084E /* 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"; }; }; + 3C744F12B6358499994D69864AD03C9F /* Stdlib.h in Headers */ = {isa = PBXBuildFile; fileRef = 3D6EFC185C3CB20617B05FB791D48475 /* Stdlib.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 3C772F0F0D4074A208C0CE702C66CFC8 /* REABezierNode.m in Sources */ = {isa = PBXBuildFile; fileRef = D0DE27E36E7ADC9C6CEA3497966BCFA1 /* REABezierNode.m */; }; + 3C7DEC79D39077473E41A50EEB0BB965 /* ObservingInputAccessoryViewTemp.h in Headers */ = {isa = PBXBuildFile; fileRef = 6A99A29EA0ACDDD52DF9E15CA881F13D /* ObservingInputAccessoryViewTemp.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 3C856FDB6A622104E116AE2E1111E224 /* DistributedMutex.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 6F529978CE6C0E0515FDBA2200333180 /* 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"; }; }; + 3C8D3504424E11229C9F4C2DE3F90EB0 /* EXAppleAuthentication.m in Sources */ = {isa = PBXBuildFile; fileRef = 9193DB1178F58229FE5634006E64A332 /* EXAppleAuthentication.m */; }; + 3CACA406226FCF075C83F2DAD7EF5E49 /* RCTLayoutAnimation.h in Headers */ = {isa = PBXBuildFile; fileRef = EDCBCE60597A66C80CD7DB9A15E9A891 /* RCTLayoutAnimation.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 3CEAFD78911BA6D587B7AC4E39BB8846 /* BugsnagApiClient.m in Sources */ = {isa = PBXBuildFile; fileRef = 66074927E6539E29BBA0ED4F00318A9E /* BugsnagApiClient.m */; }; + 3D2926CEEA2B35D897D1C107FD637D81 /* RCTModalHostView.m in Sources */ = {isa = PBXBuildFile; fileRef = C563392C1183EBD6083BB71BBC3750E9 /* RCTModalHostView.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + 3D458A73BE03264CC6356E19A9BDF408 /* BSG_KSCrash.m in Sources */ = {isa = PBXBuildFile; fileRef = 77E1D9BE2F3DC659E9C74E3BEFACFCE1 /* BSG_KSCrash.m */; }; + 3D4CCA6EFA5A66F713D91F7EDBAF0EB1 /* ARTSurfaceViewManager.m in Sources */ = {isa = PBXBuildFile; fileRef = 63C6A97615FA067C31D1487283EBFFA2 /* ARTSurfaceViewManager.m */; }; + 3D5786F3ECF7071F7EE2A6C5F4970478 /* React-Core-umbrella.h in Headers */ = {isa = PBXBuildFile; fileRef = 45F742A342CFA03B6BF8A6D4A5B2680A /* React-Core-umbrella.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 3D7D837676C65BA9EB415136ADEF1C0D /* bignum.h in Headers */ = {isa = PBXBuildFile; fileRef = 4F19EBB764AAEA5EFBA09D04D4CD5CE7 /* bignum.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 3D9A9C98302AD02F0517D4F51C4F7926 /* Sha.h in Headers */ = {isa = PBXBuildFile; fileRef = FE97BFFD142F98C3E36949A71B50973D /* Sha.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 3D9EB14CCF6AB4F7F7243A12A2764002 /* Registration.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 0AC7FC3622777EC65F2374A6FEDEB0AE /* Registration.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + 3D9FF20B4F86C86E56A22BF9F06F6072 /* BSGNotificationBreadcrumbs.m in Sources */ = {isa = PBXBuildFile; fileRef = 29464E7FD027FD5149FB2AECB0F0EC55 /* BSGNotificationBreadcrumbs.m */; }; + 3DB110E5A1002C35E9839FC3118C89F2 /* DistributedMutex-inl.h in Headers */ = {isa = PBXBuildFile; fileRef = D5DF871E5541F85348A02BB5A56F8F6D /* DistributedMutex-inl.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 3DE236DC629F21FB94861689F4BF9F1D /* OpenSSLThreading.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 5C16693E94A226699E21DCFEF6C01428 /* OpenSSLThreading.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -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\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors"; }; }; + 3DED6A1D3BFFCF13ED6591597F12501D /* Merge.h in Headers */ = {isa = PBXBuildFile; fileRef = BE88319027CF3F72369EE2AD402EE208 /* Merge.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 3E16AE7E47F2B3E0D83160DF17629140 /* ca.lproj in Resources */ = {isa = PBXBuildFile; fileRef = 6194DCE370868826A0343A26D07F27F6 /* ca.lproj */; }; + 3E33FA21071DE622B8D6CA108DFE8747 /* FIRCoreDiagnosticsConnector.h in Headers */ = {isa = PBXBuildFile; fileRef = 7A18B4EF573945FD212FE4535C4A34A2 /* FIRCoreDiagnosticsConnector.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 3E3438B9F1FF38931FB93DD8B5F37C4B /* RCTSubtractionAnimatedNode.h in Headers */ = {isa = PBXBuildFile; fileRef = 92A28529F13E7C0684B21B2C829C9C6A /* RCTSubtractionAnimatedNode.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 3E63734D1194F7760186EE0E9B1BBB70 /* BSGUIKit.h in Headers */ = {isa = PBXBuildFile; fileRef = 90CE700FC7EF1C20C9AF19AF6DFC6BEF /* BSGUIKit.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 3E6B36323BA8365F4E3C075502B6ECE3 /* BugsnagKVStoreObjC.h in Headers */ = {isa = PBXBuildFile; fileRef = B1CB6CEF5FF06DC6153CDA4F8DA55607 /* BugsnagKVStoreObjC.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 3E6FC3DAFF8EB72DFAB42F5D76548FB3 /* SKObject.mm in Sources */ = {isa = PBXBuildFile; fileRef = A0C699DAC074F9AFFCF08DC96AC6F29C /* SKObject.mm */; settings = {COMPILER_FLAGS = "-DDEBUG=1 -DFLIPPER_OSS=1 -DFB_SONARKIT_ENABLED=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -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"; }; }; + 3E75B287AAE3D91328D7C5CA8FF3E111 /* NetOps.h in Headers */ = {isa = PBXBuildFile; fileRef = 0B33D0495A2346C54731C56B6BC40E95 /* NetOps.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 3E964E671B26681C68DB97CABC124D2E /* BitIterator.h in Headers */ = {isa = PBXBuildFile; fileRef = 589423F4956A24AFA2886654B7146DD1 /* BitIterator.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 3ECA98F320C2F2B88B9355199278B37B /* MemoryIdler.h in Headers */ = {isa = PBXBuildFile; fileRef = D93CF1F0237213AA754C54DE0EFA5366 /* MemoryIdler.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 3EE76AF26121FA86E23A87CD206BC2BC /* RCTScrollEvent.h in Headers */ = {isa = PBXBuildFile; fileRef = 14598FCDA7590A69056BCAF77CC5C78C /* RCTScrollEvent.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 3EF464C5942F6F6A903C7FB746E5466F /* MMKVPredef.h in Headers */ = {isa = PBXBuildFile; fileRef = 2D81AFBC0D5035D488B0F2F703430734 /* MMKVPredef.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 3EFD6677064D19D44766FC9F001EDF2B /* RCTInputAccessoryViewManager.m in Sources */ = {isa = PBXBuildFile; fileRef = 84EA6539FAAD1DC307A5A800A5718C58 /* RCTInputAccessoryViewManager.m */; }; + 3F065935550D5DF75DBE033D1FD9AFAF /* UIImage+WebP.h in Headers */ = {isa = PBXBuildFile; fileRef = EB7A6496AAF2B236C87CC456EB447314 /* UIImage+WebP.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 3F09B6C7576B1928FD43C6816F14062C /* FIRCoreDiagnosticsData.h in Headers */ = {isa = PBXBuildFile; fileRef = 7B71B0CC0F6273737CDF8C46BE213058 /* FIRCoreDiagnosticsData.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 3F2410FDEBFAC627907367258222C0B7 /* FIRAppInternal.h in Headers */ = {isa = PBXBuildFile; fileRef = 1542535B316655E0CAA2115661BDEC04 /* FIRAppInternal.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 3F2A79D0D6BC796EA4586CCAC003C36C /* bufferevent_sock.c in Sources */ = {isa = PBXBuildFile; fileRef = C681F2E67CBE2A839B3525F23341F454 /* bufferevent_sock.c */; }; + 3F31F700DABD349D0EFD4D496AF38F70 /* FIRCLSMachOSlice.h in Headers */ = {isa = PBXBuildFile; fileRef = 30C5EFCAA7C6CE7C31E738D159F7C9FE /* FIRCLSMachOSlice.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 3F7C6D11987DBF6BE7D1D559465C42BA /* MMKVStorage.m in Sources */ = {isa = PBXBuildFile; fileRef = 35A9D47A4ABC348BC5E30791D60A4626 /* MMKVStorage.m */; }; + 3F7E208B3FF5B0605F5E1988F1319DE2 /* SafeAssert.cpp in Sources */ = {isa = PBXBuildFile; fileRef = DC1F22AE25B37DF87B934AFEE2507496 /* 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 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_PTHREAD=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + 3F9017768CB61E6121958E6759A8BA8F /* raw_logging.h in Headers */ = {isa = PBXBuildFile; fileRef = 843CE0263333BE3F22348BA6A99B4224 /* raw_logging.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 3FAAD91ED8EF39BAC094393CFCBC22CA /* RCTPropsAnimatedNode.h in Headers */ = {isa = PBXBuildFile; fileRef = E87C8355BA03A7A58F8952F04ADC0F64 /* RCTPropsAnimatedNode.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 3FAD1171562AC6B3B94C3ACC89462B93 /* CacheLocality.h in Headers */ = {isa = PBXBuildFile; fileRef = 3000FD46CAF4EBF7A223C354DAFFA0A5 /* CacheLocality.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 3FD0458202BD781415FB40B90C0F3440 /* NetOps.h in Headers */ = {isa = PBXBuildFile; fileRef = 3DCD644BDA2902B850E63DD97008ECA8 /* NetOps.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 3FE7943C5B720BA82E1D90D34CE206D5 /* FireAndForgetResponder.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 59F022EF092EB9F714DCCA53A46A977A /* FireAndForgetResponder.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -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 -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors"; }; }; + 3FF192F71AD2B4D20C21CA54FC2AA0AE /* RCTModuleMethod.h in Headers */ = {isa = PBXBuildFile; fileRef = E84CD843B3717222F5638748ABAAACC4 /* RCTModuleMethod.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 3FFB5B8064FB1AAE2C99A88A708FC13F /* DuplexConnection.h in Headers */ = {isa = PBXBuildFile; fileRef = 3FB5C3DB4F86649869C6EBD20E9F3283 /* DuplexConnection.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 400F6CC9C1C0E8BA7502546F2E90A94D /* BugsnagAppWithState+Private.h in Headers */ = {isa = PBXBuildFile; fileRef = C9ACC95C7DC421A6470BC58FCCF662D4 /* BugsnagAppWithState+Private.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 401FB01868892C92FB1FA0B4437E11E2 /* DistributedMutex.h in Headers */ = {isa = PBXBuildFile; fileRef = 285331CA47C6E381B537A8A928F0000B /* DistributedMutex.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 4022F4B904D59593DD9F42C1AA013579 /* RCTScrollContentViewManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 2D82F8AD0C5FFA93020AC88F7B9DE1DE /* RCTScrollContentViewManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 4030E86271E59BD135B76F4C563F3A44 /* WTCallback.h in Headers */ = {isa = PBXBuildFile; fileRef = 880CC022B3A49C85900B12E8E5D40565 /* WTCallback.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 403FC94BD8EB91DDC0D1B65DF84672F4 /* RCTBlobManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 42255A0747B67DE55BFC28AC63FA7534 /* RCTBlobManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 405E04A99629FC80F4A17AF9BA83A599 /* mips_macro.h in Headers */ = {isa = PBXBuildFile; fileRef = 8954E515C9EA5FE1276F0B6305ABA5B5 /* mips_macro.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 40726A2D8288C2FF2224D0E00D989654 /* Foreach.h in Headers */ = {isa = PBXBuildFile; fileRef = 4A24194A9FD9FD0A9265EC19D085FAAC /* Foreach.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 4080FF47DBA56C9871E99A681953BAA9 /* Iterator.h in Headers */ = {isa = PBXBuildFile; fileRef = 0FAFCA4F6611BEE461E87F168FD164B9 /* Iterator.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 409BE5F865C0798AC50CB924D282C824 /* RSocketStateMachine.h in Headers */ = {isa = PBXBuildFile; fileRef = 686690D1A2F8AF1F778AD3D51CEB18D4 /* RSocketStateMachine.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 40AE7D87F298E888058D4684C69793D5 /* RCTBaseTextShadowView.h in Headers */ = {isa = PBXBuildFile; fileRef = 30B57C8C502BC389EAF27871AC63A3B7 /* RCTBaseTextShadowView.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 40B5490D28C62CA30EC1057E958078E0 /* Math.h in Headers */ = {isa = PBXBuildFile; fileRef = 8D0932134BE08040CE2AF1A84596E95D /* Math.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 40B5FD30347255E3BCE18EB7A331BF5B /* EXLocalAuthentication.h in Headers */ = {isa = PBXBuildFile; fileRef = 6A9ACC81048E74B2488B111E9310B84A /* EXLocalAuthentication.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 40BAF149459192B7C987EE9CF032F769 /* RCTModalHostViewManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 897876E2437844D406605450A3332829 /* RCTModalHostViewManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 40DD545013213F880342D299E41A760D /* ThreadLocalDetail.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 0082B8F3D3A8CB52B12C341537D3DFBB /* ThreadLocalDetail.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -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\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors"; }; }; + 40E27231399DB6039A838B412BF59F4E /* StaticConst.h in Headers */ = {isa = PBXBuildFile; fileRef = 1194EEDAEB70B9943D93B72CC6101C03 /* StaticConst.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 40F55C4B4D3116A7C2BAD3B6DD43ACE8 /* RCTBaseTextInputShadowView.h in Headers */ = {isa = PBXBuildFile; fileRef = 4DD0CE71E75131AF51D4C4432112F823 /* RCTBaseTextInputShadowView.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 410B5016FB7CC451EB33AE9048386261 /* CodedOutputData.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 57404C60E34D39D975216747AF908EA0 /* CodedOutputData.cpp */; settings = {COMPILER_FLAGS = "-x objective-c++ -fno-objc-arc"; }; }; + 4115894DB6653BE8FCDF834AED9BE82E /* FIRCLSUserDefaults_private.h in Headers */ = {isa = PBXBuildFile; fileRef = 5869C5B02869FD5705BE60AD7EE16C70 /* FIRCLSUserDefaults_private.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 412EFCE930537845CA8040E9325458AE /* ManualExecutor.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 618FA9408310D1F9AC23A222D04FD512 /* ManualExecutor.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -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\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors"; }; }; + 4134589CD5BB0E380C4AB3EC019A5D56 /* JSIExecutor.h in Headers */ = {isa = PBXBuildFile; fileRef = C62F97A54A3192C080A56A0D23E51642 /* JSIExecutor.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 41393D56F7AC509F9D211A858E965AED /* picture_enc.c in Sources */ = {isa = PBXBuildFile; fileRef = A967F62BFC8C0C3006531BF6D8076FE5 /* picture_enc.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; + 41527CB02685BCFBB3FE5EFCA7988E80 /* FileUtil.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 793834A6F24BC13804CDDC0DF5FD1339 /* FileUtil.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -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\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors"; }; }; + 415651B0B04A9675D65D0F6B459C40CF /* RCTAnimatedNode.h in Headers */ = {isa = PBXBuildFile; fileRef = FCA38B1F87AE7FB2F491C9B71303C3CB /* RCTAnimatedNode.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 419595CC62A9913FD22DFD52DB55808D /* UIView+WebCacheOperation.h in Headers */ = {isa = PBXBuildFile; fileRef = 8609E8579BA1CCBA984F733DF5270E34 /* UIView+WebCacheOperation.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 41962BCDBC130A8389DB23D93A3B626D /* RCTVirtualTextShadowView.h in Headers */ = {isa = PBXBuildFile; fileRef = 9A73CE23FB147CF6D296F0FE430DBF47 /* RCTVirtualTextShadowView.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 41B55E788AF70D8BC8504A649075E98F /* tree_dec.c in Sources */ = {isa = PBXBuildFile; fileRef = A0F49EB1261E67C62D442AE9CEB9691F /* tree_dec.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; + 41B610812DA9DA8C39C1C7C6C3ECCBE5 /* FIRCLSThreadArrayOperation.h in Headers */ = {isa = PBXBuildFile; fileRef = E6438A9D92D63FE37954A555CF17180E /* FIRCLSThreadArrayOperation.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 41D12585C0B84C82BCE9DB966C19333B /* REAStyleNode.m in Sources */ = {isa = PBXBuildFile; fileRef = D5F1F178A9CE6827C6BDFADD69C75AF4 /* REAStyleNode.m */; }; + 41DE60A216FD49F5CBDC272E08221DB9 /* JsArgumentHelpers-inl.h in Headers */ = {isa = PBXBuildFile; fileRef = BC93DAC52933D53B45689FDD4C0EF852 /* JsArgumentHelpers-inl.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 41E2B574369FE2E44FD00865E6AF15AC /* BugsnagPluginClient.h in Headers */ = {isa = PBXBuildFile; fileRef = E7C894C4FDB3B68AC61B2DFAE33695BA /* BugsnagPluginClient.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 420BDA242854BB970E037A16885E81EC /* RCTSegmentedControlManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 765F72C556C6A9D00A4540B670EA3B12 /* RCTSegmentedControlManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 4214E7DF312F7A40002ECB2D30F48262 /* RCTConvert+FIROptions.h in Headers */ = {isa = PBXBuildFile; fileRef = 81E711EDF86BDA4016B5F2285F371B00 /* RCTConvert+FIROptions.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 422DDA622ACE6072DACEE88BF34F4BF1 /* Hash.h in Headers */ = {isa = PBXBuildFile; fileRef = 6487D1EEF593CD86E57C4C814142B9AE /* Hash.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 423B4FC47ED7D4197B3C337E53E52513 /* CPUThreadPoolExecutor.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 7DF1E9E210D354D670D9DEA8E812714B /* CPUThreadPoolExecutor.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -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\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors"; }; }; + 423F4AD2B07C2565D5AC0B7BF0EE553A /* RCTReconnectingWebSocket.m in Sources */ = {isa = PBXBuildFile; fileRef = C675EE07F0452E7FDC6693E3AC1BAC01 /* RCTReconnectingWebSocket.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + 424C5607C90DC70D170D6F4D7D0CFA2E /* SDWebImageDownloaderConfig.h in Headers */ = {isa = PBXBuildFile; fileRef = CF8F3C91A2EE74028AE13839CD858594 /* SDWebImageDownloaderConfig.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 42566F4F9DE42F2E6D41EB3031374442 /* RNFBUtilsModule.m in Sources */ = {isa = PBXBuildFile; fileRef = 88C029A7ED9C2B67B1F4E99BF9082AD8 /* RNFBUtilsModule.m */; }; + 425A77DC42C460EA51D519A6F002C2C6 /* RNCAppearance.m in Sources */ = {isa = PBXBuildFile; fileRef = 0A5068E62DFB91FBFDBF5178997F072B /* RNCAppearance.m */; }; + 426BE8C7DC428C09A055A4824E261931 /* ARTSolidColor.m in Sources */ = {isa = PBXBuildFile; fileRef = 0213B2F9E22E92E5BAA6AE198A55BB24 /* ARTSolidColor.m */; }; + 4276794B6F515C099E1B6308790AAA7E /* FIRCLSFileManager.m in Sources */ = {isa = PBXBuildFile; fileRef = 3C8E21899D97ACD85858531A8C82D092 /* FIRCLSFileManager.m */; }; + 4285CFE97DDDC37E46B7F6A738AF453A /* FlipperKitNetworkPlugin.h in Headers */ = {isa = PBXBuildFile; fileRef = 6CC22BA0E6A034B3AD81DF40A241DC49 /* FlipperKitNetworkPlugin.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 429D5AF22C1503EE67F12B8CDFC7824B /* react-native-simple-crypto-umbrella.h in Headers */ = {isa = PBXBuildFile; fileRef = 1C81D211652C3CD57829B1D19B946B92 /* react-native-simple-crypto-umbrella.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 42A049766F3D26C71C0D0AF97F66892C /* UIButton+WebCache.m in Sources */ = {isa = PBXBuildFile; fileRef = 756D4D016E362247F0D78FDECC82E4EE /* UIButton+WebCache.m */; }; + 42A3B315F2BD4D64A3E5B18C97D46B9F /* SafeAreaSpacerViewManager.h in Headers */ = {isa = PBXBuildFile; fileRef = EFA380136E56EF1168C73643B83C1765 /* SafeAreaSpacerViewManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 42AF1C93129B26746D69420AABC40E9C /* IOExecutor.h in Headers */ = {isa = PBXBuildFile; fileRef = 5A92FF992EECFACB98A6AAE324DA9864 /* IOExecutor.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 42C4E432F5DF9246EC190347046E5C2D /* FIRAppInternal.h in Headers */ = {isa = PBXBuildFile; fileRef = 9C8244B617C5DF72EE1513EE6A6D1B91 /* FIRAppInternal.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 42FF2861D381E4E6636B147647E28D03 /* EXConstants.h in Headers */ = {isa = PBXBuildFile; fileRef = 22FF8B9B1D2BEBF80716D353543AFF62 /* EXConstants.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 42FFA7672D87777878365C321FC903E7 /* RCTGIFImageDecoder.h in Headers */ = {isa = PBXBuildFile; fileRef = 93A55AA66A5CAC2977A683C098422295 /* RCTGIFImageDecoder.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 431993D2416E7AD8AE3E3D29AEC1C342 /* evconfig-private.h in Headers */ = {isa = PBXBuildFile; fileRef = 3E55414F03ED03FDD211CFB1B9724B33 /* evconfig-private.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 4331FBEC455EF64172081FECFC67B005 /* UMPermissionsMethodsDelegate.m in Sources */ = {isa = PBXBuildFile; fileRef = 4C59D321808B4D4853809E71D9177619 /* UMPermissionsMethodsDelegate.m */; }; + 4333132F10BE8EBB62FEFA56F87BEFC6 /* RCTTransformAnimatedNode.h in Headers */ = {isa = PBXBuildFile; fileRef = BDC54EB2B374B18C1E3098F5191D6F65 /* RCTTransformAnimatedNode.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 434E9D60B617E6257BBDB07DC597116C /* Launder.h in Headers */ = {isa = PBXBuildFile; fileRef = 0FFED4693A29A850B3D22BC8E48C65F3 /* Launder.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 43509EF81CDE6997AACDEE3200946AAB /* Sockets.h in Headers */ = {isa = PBXBuildFile; fileRef = 5E96393EF5F2E715A2A4FB38477CC360 /* Sockets.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 4360E78D9036954974E2D1F4F090D2A0 /* Arena.h in Headers */ = {isa = PBXBuildFile; fileRef = 5E1472FF99D10835581E8AAFCD67475B /* Arena.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 4366D90D10E2A1395FAC0E032CA3CE50 /* BugsnagStackframe.m in Sources */ = {isa = PBXBuildFile; fileRef = 03D6A1B21A46BA36C992FD5E70666AEA /* BugsnagStackframe.m */; }; + 43910ED896EDD4B570EF1DDBC231ECBD /* BSG_KSSignalInfo.h in Headers */ = {isa = PBXBuildFile; fileRef = 003B816CAC62C3D5B14958153513504D /* BSG_KSSignalInfo.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 439F03ACA468CD96892AAA20DF976EFF /* DispatchMessageQueueThread.h in Headers */ = {isa = PBXBuildFile; fileRef = 79AF205F6686F71CCAAE0138FB96710F /* DispatchMessageQueueThread.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 43AB6E3BEEE0664406F1F2E1F0A1D7D7 /* JSIndexedRAMBundle.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 95414DFF7A18D72D48FA7AE92DDDA857 /* JSIndexedRAMBundle.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + 43B84069BD4A6B4FF44802448A25A011 /* Log.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 6508735523027061E297F1F9074E7E8A /* Log.cpp */; settings = {COMPILER_FLAGS = "-DFLIPPER_OSS=1 -DFB_SONARKIT_ENABLED=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -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"; }; }; + 43D1E786B519AE146A705B95810E9ACF /* RCTEventEmitter.h in Headers */ = {isa = PBXBuildFile; fileRef = 262812C215454383CBEB720087E45AAE /* RCTEventEmitter.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 43ED3671E791340A24575A2BCCBDB35E /* SKNetworkReporter.h in Headers */ = {isa = PBXBuildFile; fileRef = 2F9D16D75DC649DDF67EFB91F7E5D4B8 /* SKNetworkReporter.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 43FFA32A63BDC96BBE6E40833BF3ACD9 /* Sse.h in Headers */ = {isa = PBXBuildFile; fileRef = E6318B70E54C826E673F6F63003CADF4 /* Sse.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 4409AA9931E5AF9D9BEB05B2F5AE2E80 /* EXFileSystem.h in Headers */ = {isa = PBXBuildFile; fileRef = 2E568B34CBD06DBB1EC126FFD4D26639 /* EXFileSystem.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 440B61228DA306BAA18E131C6673685E /* RCTUIManagerUtils.h in Headers */ = {isa = PBXBuildFile; fileRef = AE5A3BA5D8DE9CB34BA3DF05889E17BF /* RCTUIManagerUtils.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 44124D99464BA70F832E4225962F42E9 /* SDWeakProxy.m in Sources */ = {isa = PBXBuildFile; fileRef = 2C643E525D4DDDEE6ABC165EDE7AEEF2 /* SDWeakProxy.m */; }; + 441807BF25D44D9142F7835CCEF37D5E /* UIImage+Extension.m in Sources */ = {isa = PBXBuildFile; fileRef = 96CF5E5631A3BC277F3C295FC0CCB840 /* UIImage+Extension.m */; }; + 4425D865C382E5A7F66B2E324A4A8BB3 /* Base.h in Headers */ = {isa = PBXBuildFile; fileRef = C9CADE12C60EAC1E368649669F8D6BC9 /* Base.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 442A9F3F5102B23A2525348D1712C3EB /* RNCConnectionState.m in Sources */ = {isa = PBXBuildFile; fileRef = 1D549A6D5989F2158CE879EFC2085EED /* RNCConnectionState.m */; }; + 443046F952CC4A6DD3C507C48DE91D5A /* UnboundedBlockingQueue.h in Headers */ = {isa = PBXBuildFile; fileRef = 68E993A7ADE7EB87E977855544F925C6 /* UnboundedBlockingQueue.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 4431529E609EBFEFCD9A9F0522622860 /* ThreadFactory.h in Headers */ = {isa = PBXBuildFile; fileRef = F0F8563E9938CC5830771DEEF4DF34A9 /* ThreadFactory.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 44323A3518A22BA571F1F7BB40EAA188 /* evhttp.h in Headers */ = {isa = PBXBuildFile; fileRef = C16B3DC6A579069815AE1C282805757A /* evhttp.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 443EFA18E0081EE874C92BDAD3B0D587 /* quant_levels_utils.h in Headers */ = {isa = PBXBuildFile; fileRef = 16FA00BA18C730B33832BCE768ED9745 /* quant_levels_utils.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 445C459D23548C39A8579598F51990DF /* MicroSpinLock.h in Headers */ = {isa = PBXBuildFile; fileRef = 7FF78F0A9E5B4ACEA598CB4F3FB8D8A0 /* MicroSpinLock.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 445FE40A8756625D3BB441AFC8D781F7 /* Random.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 684A13CB17F071F18471277B50CA0442 /* Random.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -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\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors"; }; }; + 44649B4D179A6D95CBFE298A21ABDAEE /* DeviceUID.m in Sources */ = {isa = PBXBuildFile; fileRef = 055F0E9CE681A8EA4F97ED0376B32CF3 /* DeviceUID.m */; }; + 4465C45D4695797C2A3DE9BDC37D711B /* PriorityThreadFactory.h in Headers */ = {isa = PBXBuildFile; fileRef = 3B64DF0B9A39FF28BE6E5A469640DDC9 /* PriorityThreadFactory.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 44677B7384171E497510D6874F77702E /* FIRCoreDiagnosticsConnector.h in Headers */ = {isa = PBXBuildFile; fileRef = 915DDE4D9CAD1164B7707A88FE4F4F71 /* FIRCoreDiagnosticsConnector.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 447717119C6B75EFF74006F60AD2A14E /* TLRefCount.h in Headers */ = {isa = PBXBuildFile; fileRef = 39C8B8AB0A93F88E925A4908467DAFB3 /* TLRefCount.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 448336F6DF315CC4F5DFB58F9658CBE8 /* RCTUIManagerUtils.m in Sources */ = {isa = PBXBuildFile; fileRef = B9C229BBB6B5FFF41B76C1FD24EB7592 /* RCTUIManagerUtils.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + 448A4596C0E27C078EE9ED1B6EB20972 /* SysResource.h in Headers */ = {isa = PBXBuildFile; fileRef = 7154D5F1DE0AE77A127CB922196A6E64 /* SysResource.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 44A1FCD233885EDF566B04881AF877D1 /* alpha_enc.c in Sources */ = {isa = PBXBuildFile; fileRef = E42359BFAB47E421C142D3E16A23D74E /* alpha_enc.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; + 44A2C2B77D6697AF9C075067D181128F /* RNDocumentPicker.h in Headers */ = {isa = PBXBuildFile; fileRef = CFACE0911429A6BA3F871B013D8B2399 /* RNDocumentPicker.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 44A76D245F51967C4D4ABF657BDC16DB /* RCTShadowView+Internal.m in Sources */ = {isa = PBXBuildFile; fileRef = 8D8E9D74AF97B2385EB4FA87CD2EBF52 /* 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"; }; }; + 44B1337C2281CAE971673E2776D0201A /* demangle.cc in Sources */ = {isa = PBXBuildFile; fileRef = 256514FB22EE5A636AFCAFE671661604 /* demangle.cc */; settings = {COMPILER_FLAGS = "-Wno-shorten-64-to-32"; }; }; + 44BA0919DCD34C837C62DE281FBE2613 /* LockTraits.h in Headers */ = {isa = PBXBuildFile; fileRef = AB8F60078DBFD9815D9D7E54C3F811CB /* LockTraits.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 44C6A5124C73DBF765C4B1C37479F012 /* Future.h in Headers */ = {isa = PBXBuildFile; fileRef = CEE02671D4EA7343C8E882B0DF465236 /* Future.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 44CAB347B71247D918F8960615D4F9FD /* RCTRootViewDelegate.h in Headers */ = {isa = PBXBuildFile; fileRef = 9EF1056B23A9B94F36664ED877D70BF7 /* RCTRootViewDelegate.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 44DBB81112CE284D0DA37BA72F5C78EA /* UniqueInstance.h in Headers */ = {isa = PBXBuildFile; fileRef = 1E0B646FACFA8D0A694DC4B3C7DFD225 /* UniqueInstance.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 44F22299E6464B476ECC6E382A04D759 /* Subscription.h in Headers */ = {isa = PBXBuildFile; fileRef = 5EBEFB8A6FCE9E056223261A9B679700 /* Subscription.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 45027211520A83A43ECD43DDF3FB690C /* RNCAsyncStorage.h in Headers */ = {isa = PBXBuildFile; fileRef = 81240458546B2B5965C60E0E8653C7AA /* RNCAsyncStorage.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 4505DF4DD84A599A619DF1DE436F12C5 /* NSDataBigString.mm in Sources */ = {isa = PBXBuildFile; fileRef = BB6A4BFC1EEDAE5C44DB4423FB8E880C /* NSDataBigString.mm */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + 45071B92EC3E13ECC2ABDC5C1A38EA71 /* Hash.h in Headers */ = {isa = PBXBuildFile; fileRef = EB5BD72842B6A007F1E9CC23CA36DABB /* Hash.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 4514E86B3B587A8B117E16A1A94A265E /* AtomicHashArray-inl.h in Headers */ = {isa = PBXBuildFile; fileRef = 676AA9C2B87B470193388477ED0D5DE2 /* AtomicHashArray-inl.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 451A5CA1F17D605756FDE5898F32A848 /* double-conversion.h in Headers */ = {isa = PBXBuildFile; fileRef = 0DDC858D4AD0F13BD80D03A8B2525311 /* double-conversion.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 45278774CAED220927197B19F74CB392 /* backward_references_cost_enc.c in Sources */ = {isa = PBXBuildFile; fileRef = 54CF59A9E9D07E96C9C6306F75169284 /* backward_references_cost_enc.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; + 4527B02244AE6A00EFFAD063F7F4119B /* Preprocessor.h in Headers */ = {isa = PBXBuildFile; fileRef = EBDCD2C2A1B8831B8C5993F9DA647E96 /* Preprocessor.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 45502B5E9EBD03B609CAC807FBF6C64E /* RCTBaseTextInputView.h in Headers */ = {isa = PBXBuildFile; fileRef = B4AC3D11CD080D4B84DFC82ACE482AE0 /* RCTBaseTextInputView.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 4550EB9B60716D779EF90FB3774FA702 /* diy-fp.h in Headers */ = {isa = PBXBuildFile; fileRef = B19C5C8B6FBF23E225D37116C98A1A26 /* diy-fp.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 4589FB9F4C633F5BC4F35A225EC04022 /* rn-extensions-share-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 1682A9D6E802A874CA54DD6AFD6CADD4 /* rn-extensions-share-dummy.m */; }; + 459BC86CC13B71D7C83F5ECB9A027272 /* VirtualEventBase.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 2CF250AE6DD1E4E2DE99F4622E838810 /* 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"; }; }; + 45B36E6C971F7A316A842376DB9214F1 /* ConnectionContextStore.h in Headers */ = {isa = PBXBuildFile; fileRef = 133F2B8DF0A141FC6062F4CC612F6372 /* ConnectionContextStore.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 45B84991F3DDB761174CA1018A4ABCED /* BugsnagNotifier.m in Sources */ = {isa = PBXBuildFile; fileRef = 7066A5AA23A744829427EB4506080E4E /* BugsnagNotifier.m */; }; + 45BB49B9CBBEECBAAADF38D7882A6250 /* RCTDivisionAnimatedNode.m in Sources */ = {isa = PBXBuildFile; fileRef = 40AC5652DD86CBB3A47EC3620B61FF41 /* 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"; }; }; + 45BF28D55FD1BC7C5D5BEDF3FBE4280C /* FIRCLSUUID.m in Sources */ = {isa = PBXBuildFile; fileRef = 97EACA374DAEF6EBE6E4B85CC24B0FF1 /* FIRCLSUUID.m */; }; + 45C319E60E1DCAFEFA55B50F91E57E2A /* StringKeyedMap.h in Headers */ = {isa = PBXBuildFile; fileRef = A727200FB1C30F038E22BDF6D2F7B371 /* StringKeyedMap.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 45DE61173BCAAD3F4F939C0CC4A2D930 /* RNFBAnalyticsModule.h in Headers */ = {isa = PBXBuildFile; fileRef = E721B6881F3C08E2F491A70FCC2BEF12 /* RNFBAnalyticsModule.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 45EF0E506DE17E3713AF75754D2B635B /* F14MapFallback.h in Headers */ = {isa = PBXBuildFile; fileRef = 726369BB028B98D11DCF83EA88A6757B /* F14MapFallback.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46156EE87FA159A5A85A658077D18283 /* RCTRefreshableProtocol.h in Headers */ = {isa = PBXBuildFile; fileRef = 53CE8828D990C1D32594CB9ADA75AAEB /* RCTRefreshableProtocol.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46167FB48070648AFE43F22E3CA41F3C /* AtomicHashMap-inl.h in Headers */ = {isa = PBXBuildFile; fileRef = 3FF2A20F6597C36D1257A7BDF71D0437 /* AtomicHashMap-inl.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46177CF62589B4BCBF20FF62ED343B04 /* GULLogger.h in Headers */ = {isa = PBXBuildFile; fileRef = 999048AB0EB9CC2EB28D51EDDDBAA9B4 /* GULLogger.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46511E31082FC0B30D70D0B436EF5935 /* GULMutableDictionary.m in Sources */ = {isa = PBXBuildFile; fileRef = 8E0AEF464378C51B421A6713B4A467EF /* GULMutableDictionary.m */; }; + 4677B4B03447ED10448784B0C158951E /* AtomicHashArray.h in Headers */ = {isa = PBXBuildFile; fileRef = 367C1203029972C23E13878D72E68E00 /* AtomicHashArray.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 467E47CBA26C703F318E16182D4DC7EC /* alpha_processing_mips_dsp_r2.c in Sources */ = {isa = PBXBuildFile; fileRef = C3A5CB191248FBE18048B5D6CF31A54C /* alpha_processing_mips_dsp_r2.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; + 46ADA46C17AF592928429F454298C04F /* bufferevent_ratelim.c in Sources */ = {isa = PBXBuildFile; fileRef = 200802D09309021A6DB81B6BABDFA193 /* bufferevent_ratelim.c */; }; + 46B712F6F1E738C9F9DA79DD9153EB69 /* EXAudioRecordingPermissionRequester.m in Sources */ = {isa = PBXBuildFile; fileRef = 8D446EF8FABEBAF49DC15B370BDE1205 /* EXAudioRecordingPermissionRequester.m */; }; + 46BDC8664B52DD0ABA3C83509A3CF5B3 /* UMReactNativeEventEmitter.m in Sources */ = {isa = PBXBuildFile; fileRef = B7B6F4407290E480EAD41439189B1E15 /* UMReactNativeEventEmitter.m */; }; + 46C3EA4C3AAEBECD4B0A4E5C55FE78DB /* RNCookieManagerIOS.m in Sources */ = {isa = PBXBuildFile; fileRef = 8430C65609AC44547193B99C840DB700 /* RNCookieManagerIOS.m */; }; + 46CD4609566349E69C6E989C1DD4333B /* RsaFormatter.h in Headers */ = {isa = PBXBuildFile; fileRef = ADA3196766C374BC80B399D6B8F0537B /* RsaFormatter.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46EBF2C504B9C69BE832B049A833F00C /* event.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 929288C0C91551931B3A305BF75A7CBE /* event.cpp */; settings = {COMPILER_FLAGS = "-fno-omit-frame-pointer -fexceptions -Wall -Werror -std=c++1y -fPIC -fno-objc-arc"; }; }; + 46F0958D845D9810E8663CA56827901A /* REAFunctionNode.h in Headers */ = {isa = PBXBuildFile; fileRef = 306DDCB537058D4906C882B918F95498 /* REAFunctionNode.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46FA76FD60DE3EE60B76EDA2785B2305 /* Asm.h in Headers */ = {isa = PBXBuildFile; fileRef = ED6FC95257E7936177CDEC7059C0124E /* Asm.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 471C23EFC3B4EB699E9706D4D70B983A /* BSG_KSDynamicLinker.c in Sources */ = {isa = PBXBuildFile; fileRef = F016796C74A38DBC3F969759C3838DFB /* BSG_KSDynamicLinker.c */; }; + 47436FBEF715BA72E2A2DDC9A7012F96 /* Singleton.h in Headers */ = {isa = PBXBuildFile; fileRef = 126E56C14084FA8D6350815F9542A432 /* Singleton.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 47445AF12E88035A1A6D06F34735ECC6 /* GULReachabilityChecker.h in Headers */ = {isa = PBXBuildFile; fileRef = B64D20EEA3C8C271224C33D9424FE4BC /* GULReachabilityChecker.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 47450857A8045428156A14CC5D7C4623 /* FrameFlags.cpp in Sources */ = {isa = PBXBuildFile; fileRef = D947A721D0BCB8B7BDC2BB99963EB67B /* FrameFlags.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -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 -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors"; }; }; + 474F9842F0216AA8E7F06AB16CFC5BD0 /* AsyncSSLSocket.h in Headers */ = {isa = PBXBuildFile; fileRef = 74EFA916AE075E7F8971F2E1F8FE3FA8 /* AsyncSSLSocket.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 475B782BAB8773C68DE75568D4F1A006 /* kqueue.c in Sources */ = {isa = PBXBuildFile; fileRef = 4743B6A02FF67662103272A46445056D /* kqueue.c */; }; + 4760A8C30FB4E4765968D8AEAFD6E3E2 /* alpha_processing_sse2.c in Sources */ = {isa = PBXBuildFile; fileRef = 5E853505E212DCA8AE078E5D79A52995 /* alpha_processing_sse2.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; + 476E26DBF97E507380F5864ABE6ADE84 /* sorted_vector_types.h in Headers */ = {isa = PBXBuildFile; fileRef = 5881A4D7EADFAA121CA078AFB887E861 /* sorted_vector_types.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 4777BE059170C1D17B9A17ADA6796C82 /* RCTImageShadowView.m in Sources */ = {isa = PBXBuildFile; fileRef = 7955ED1B6B2DD3172B03B4E3478C1ABC /* 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"; }; }; + 477900BFE4D8F0089150884765F3683E /* RCTCustomKeyboardViewControllerTemp.m in Sources */ = {isa = PBXBuildFile; fileRef = 6FAADBBA1CE616A466AEC1F955A800A9 /* RCTCustomKeyboardViewControllerTemp.m */; }; + 47797B39A9B3A15DBBB9F97AF4C8311B /* ThreadCachedArena.h in Headers */ = {isa = PBXBuildFile; fileRef = C07D929F467CAAB69D2FFA4E77C393E7 /* ThreadCachedArena.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 477C7D8BA4A317BAB719A37FCBE8FE51 /* Malloc.h in Headers */ = {isa = PBXBuildFile; fileRef = 40D332CAF4B62684CD18066ADA0D482F /* Malloc.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 4782355C1E066416D8459353C74BF569 /* RCTURLRequestHandler.h in Headers */ = {isa = PBXBuildFile; fileRef = 9960632C404B1ECAF125F6460DCA1C9A /* RCTURLRequestHandler.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 4787C765809BDEB7CDBD760923AA6145 /* EXResumablesManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 630DFE07FA0BACFA067723A18560F110 /* EXResumablesManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 478AEB096ADD4A6A6E94957F44050528 /* QueuedImmediateExecutor.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 17709E6A9CCC50ABA08578DF3B215015 /* 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"; }; }; + 478CFF7C460F6F8F5E1A888C143003C6 /* RCTKeyboardObserver.mm in Sources */ = {isa = PBXBuildFile; fileRef = 7982CB5D73E0D2114B268367D808FC2F /* 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"; }; }; + 47A925FF0D8D5FBC9C1BFA9FB0C0DB33 /* FIRComponentContainer.h in Headers */ = {isa = PBXBuildFile; fileRef = DA36EFB8A253B32980DA920615833F66 /* FIRComponentContainer.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 47AB0808E131C78B8BB92F7AEB9DFAC3 /* RCTParserUtils.m in Sources */ = {isa = PBXBuildFile; fileRef = EB918D28A13F814594FF66347950AD00 /* RCTParserUtils.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + 47AB67717D42D6ED52BC94B92C0C8FA9 /* FileUtilDetail.h in Headers */ = {isa = PBXBuildFile; fileRef = E29F1B28FB69628C4FC255D6304DD01F /* FileUtilDetail.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 47C91FA7C1F8BF9DA46C0DC944B2E1BF /* SDDeviceHelper.h in Headers */ = {isa = PBXBuildFile; fileRef = F1525F5D012CCCBA79287FC90249EA61 /* SDDeviceHelper.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 47DCD55611568CF497AFBFA394F01128 /* GlobalThreadPoolList.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 7D6E9E3E829A40EEF1A1AAD55F30B222 /* GlobalThreadPoolList.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -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\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors"; }; }; + 47FA41B6777D0E2534AAAF1091BC0174 /* BugsnagDeviceWithState+Private.h in Headers */ = {isa = PBXBuildFile; fileRef = 3B2AFF33229882339749583AE74849FA /* BugsnagDeviceWithState+Private.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 481B3840FA73493AD1AA4F89ADF86EE1 /* UncaughtExceptions.h in Headers */ = {isa = PBXBuildFile; fileRef = 459A1664B57098D65E6B587BEFD0BED1 /* UncaughtExceptions.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 481FAB803128B57572DDDCD55F534D3F /* RCTUITextView.m in Sources */ = {isa = PBXBuildFile; fileRef = 78C025510C9E9E9C4548DB10467B35FA /* RCTUITextView.m */; }; + 482296C6BF9F8D449888AC9AE7BB4205 /* RCTPlatform.mm in Sources */ = {isa = PBXBuildFile; fileRef = D62F9413E9543BF9437FF1A09736306A /* 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"; }; }; + 482A04CB7973A50771D0DB0033B39C01 /* FIRCLSDataCollectionToken.h in Headers */ = {isa = PBXBuildFile; fileRef = 8A1784689596DE6BE297AAC0C0775A4E /* FIRCLSDataCollectionToken.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 48310B1DCA3899D9E5E6C6C03DB99428 /* RCTImageEditingManager.mm in Sources */ = {isa = PBXBuildFile; fileRef = F405B50EACD439F73F1A0EA0FDB3EC24 /* 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"; }; }; + 48377D5A0E1191DF1A7A4EF7FB68767E /* VibrancyViewManager.m in Sources */ = {isa = PBXBuildFile; fileRef = 4D13B14D2930B44891B6F473C593C6E9 /* VibrancyViewManager.m */; }; + 484014C0D5498BED1B9DB230855798C9 /* common_dec.h in Headers */ = {isa = PBXBuildFile; fileRef = 2A00D35E4CC68942CA0444D9534E5267 /* common_dec.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 485EC6632A13DE4BCA028CA61B0EF5C9 /* SingletonStackTrace.cpp in Sources */ = {isa = PBXBuildFile; fileRef = CD9EA923835F8F0DC093F10A4C280953 /* SingletonStackTrace.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -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\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors"; }; }; + 4868C4B5BA284E2F23176ED2A8B41EBF /* RCTImageView.mm in Sources */ = {isa = PBXBuildFile; fileRef = 6B91F87BB4D4FAC6EEB305BE78E8BBB1 /* 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"; }; }; + 48880A092D9145D599A01862AD12202F /* quant_dec.c in Sources */ = {isa = PBXBuildFile; fileRef = 1722118F0E2EE10900EAFA19222731DD /* quant_dec.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; + 488CFA9669A774D45268F716204DE09F /* RNFBCrashlyticsModule.m in Sources */ = {isa = PBXBuildFile; fileRef = C6A0C31BD9C61BA1C30F779E8279AF1D /* RNFBCrashlyticsModule.m */; }; + 4896387F3752F53D830BF3573BCC2DE0 /* RCTRawTextShadowView.h in Headers */ = {isa = PBXBuildFile; fileRef = 8FB1C4D54632CC114605D22467F9372D /* RCTRawTextShadowView.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 48A540684E68E0D72E8E63F17FE8CE80 /* Bits.h in Headers */ = {isa = PBXBuildFile; fileRef = A075277F9D8C3C4B42DF84526EEB3506 /* Bits.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 48B743F6CE3DBAEA23C4680E383F42B0 /* FIRCurrentDateProvider.h in Headers */ = {isa = PBXBuildFile; fileRef = 95E2DB6F1DB9AD6DC2CF79A05A0D5233 /* FIRCurrentDateProvider.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 48CD221FA8C0B22F24AE312156CE39FE /* SKInvalidation.h in Headers */ = {isa = PBXBuildFile; fileRef = B0706F0483156F03FEFD862EB587B92B /* SKInvalidation.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 48E45A8DF049F7BDC91252BE8F97C348 /* TurboModulePerfLogger.h in Headers */ = {isa = PBXBuildFile; fileRef = BC37A07A078953FA9C67B14C2308FE3B /* TurboModulePerfLogger.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 48E5AB4756E69C072E88DB49D6A56A63 /* Arena-inl.h in Headers */ = {isa = PBXBuildFile; fileRef = 54D6162A681BB47031E3AA3A4213F515 /* Arena-inl.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 48FA394C94334DB09428BE87EE7B05CC /* Memory.h in Headers */ = {isa = PBXBuildFile; fileRef = D97D0D61F193378B1415E9746A9E09D9 /* Memory.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 49006794D0E9F23D6D2AB23EF628FC0E /* RSocketException.h in Headers */ = {isa = PBXBuildFile; fileRef = 4AFDB174B549F4BE754596DB44CDB018 /* RSocketException.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 490962D63AE09938A0AE80A4D42EABEE /* BugsnagErrorTypes.m in Sources */ = {isa = PBXBuildFile; fileRef = 65C871EF5A78ADCEF923C694CC0DA910 /* BugsnagErrorTypes.m */; }; + 4913764A3B21DD320483111F4D91EDF7 /* UniqueInstance.h in Headers */ = {isa = PBXBuildFile; fileRef = F8D488C84A7D59AABCEB805B424A3232 /* UniqueInstance.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 491A6401D3462581FA1107131356EDA9 /* VirtualEventBase.h in Headers */ = {isa = PBXBuildFile; fileRef = 33AB3A626BC19570CCB463F5CB4624F7 /* VirtualEventBase.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 493EB6FEC8DB25331EEADD6C2CF12943 /* FIRCLSApplication.h in Headers */ = {isa = PBXBuildFile; fileRef = 7F9693DB8B96C131B911B0816AF4EAB7 /* FIRCLSApplication.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 494460796E071DA7A3403D207B8C2106 /* REAPropsNode.m in Sources */ = {isa = PBXBuildFile; fileRef = 55F0E3389C100B389E973E2C19F86A61 /* REAPropsNode.m */; }; + 494D040922C07D9B11A4E157C72AB24E /* REAFunctionNode.m in Sources */ = {isa = PBXBuildFile; fileRef = 4D48B9A0D7207F3DEA16387FE4D6C765 /* REAFunctionNode.m */; }; + 496786D7BCFF7C9B43F19578122E15D2 /* Futex-inl.h in Headers */ = {isa = PBXBuildFile; fileRef = 813B160069A2D6A422253431B5B92A23 /* Futex-inl.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 496C8AB8DC79AE9A38715A4C73FA2269 /* RCTSurfaceRootShadowViewDelegate.h in Headers */ = {isa = PBXBuildFile; fileRef = 4886B5D5B38A14525A2E22C9C9E0B877 /* RCTSurfaceRootShadowViewDelegate.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 4981416321B820A52EB175D25A8E93F1 /* common_sse2.h in Headers */ = {isa = PBXBuildFile; fileRef = 34EF63733361F1327546C2888C2E39EE /* common_sse2.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 498C505AE16C2FB90A1660FF065B9323 /* EXHaptics-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 48015236B93E01880EC193330B870139 /* EXHaptics-dummy.m */; }; + 49978924CE1584E98DCACF305D3C272D /* FIRCLSDataCollectionToken.m in Sources */ = {isa = PBXBuildFile; fileRef = ADD6216FDE061903E534DD598E79DDA1 /* FIRCLSDataCollectionToken.m */; }; + 49A99E1A857A881F767EC4DE72614343 /* lossless.c in Sources */ = {isa = PBXBuildFile; fileRef = F9CC0145BE94C17477E376B71955FD47 /* lossless.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; + 49BA8C30979411A79B99D51810EF5205 /* RCTConvert+FIROptions.m in Sources */ = {isa = PBXBuildFile; fileRef = D27E33A14AD00A478FDF10B3EE52BF87 /* RCTConvert+FIROptions.m */; }; + 49D6527B677B2AAE061BD43ADDB24CF0 /* RNCSafeAreaProviderManager.h in Headers */ = {isa = PBXBuildFile; fileRef = BF340157E2DB3F706AFCD381A9700B8A /* RNCSafeAreaProviderManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 49D7470C79EFC400474DE5FBFD2B3173 /* ARTBrush.m in Sources */ = {isa = PBXBuildFile; fileRef = 58386FEBED776C08ADA276F70C8BCC83 /* ARTBrush.m */; }; + 4A07B035E82069D898A4B74A624AB98A /* AsyncServerSocket.cpp in Sources */ = {isa = PBXBuildFile; fileRef = F1224CF1FAC20781A12765F7749CA93C /* AsyncServerSocket.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -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\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors"; }; }; + 4A1A3D1448044BE8BAD31EF82C668CFC /* EXVideoView.h in Headers */ = {isa = PBXBuildFile; fileRef = 0AA9F196BCBD8019F6673CD26051C0C3 /* EXVideoView.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 4A2CE88C7FB5475825DD5FE664C18BD0 /* ThreadWheelTimekeeper.cpp in Sources */ = {isa = PBXBuildFile; fileRef = D36AD3EF5E73964B40ACFADCAB874208 /* 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"; }; }; + 4A4B4055A9F1F063DB1A15F63AE1C897 /* FlipperConnectionManager.h in Headers */ = {isa = PBXBuildFile; fileRef = BF5409D991F72DFC729CA5C3956D7377 /* FlipperConnectionManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 4A4BB0231234CF86A712668287C611F0 /* en.lproj in Resources */ = {isa = PBXBuildFile; fileRef = ACF1F4AC32DB4B49B8963B1F798941BA /* en.lproj */; }; + 4A4D2C43DC3CC5F5DAA9248AA245BB60 /* REABezierNode.h in Headers */ = {isa = PBXBuildFile; fileRef = 185A2895867FEA89B6C3318CD2EDF7B3 /* REABezierNode.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 4A5EEF5D75684FAD1DBC7FFCA55979E1 /* RCTImageBlurUtils.m in Sources */ = {isa = PBXBuildFile; fileRef = EF9B17918BC9B80C3A6A70878E0E66D7 /* 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"; }; }; + 4A87681B2E5F60DE4F84A1DE2D9A366C /* RNCSliderManager.m in Sources */ = {isa = PBXBuildFile; fileRef = 5A0A4FF9FD59597A96466F61C0AD162D /* RNCSliderManager.m */; }; + 4AA80E18D22E5FC59D5E5CD88ED9E04F /* RCTConvert+FFFastImage.m in Sources */ = {isa = PBXBuildFile; fileRef = 715E6361440D35EA7E293AD4B624606B /* RCTConvert+FFFastImage.m */; }; + 4AA9444E0C79147834BB44858CD9B2A0 /* zh-Hant.lproj in Resources */ = {isa = PBXBuildFile; fileRef = 1841CB4A2479C0353942AC067E46AFF6 /* zh-Hant.lproj */; }; + 4AB37DBFB65E3CDFE553A1A876EFD292 /* MicroSpinLock.h in Headers */ = {isa = PBXBuildFile; fileRef = BA739C03B0E7AE13D575D4822A0E9810 /* MicroSpinLock.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 4AB3CCE1BD95C8D4B7108C04AB61B28E /* Combine-inl.h in Headers */ = {isa = PBXBuildFile; fileRef = EDB7E6AC9EA604F902C8BA66329C6727 /* Combine-inl.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 4ABAB6F84DCE317295FBF19A1C3D5E19 /* RNCPicker.h in Headers */ = {isa = PBXBuildFile; fileRef = 93074C0BB58E9B56D2043AA01605C9BC /* RNCPicker.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 4ABE8705BDB321574F4F61F889C3859B /* BSG_KSSignalInfo.c in Sources */ = {isa = PBXBuildFile; fileRef = 5CC54E56BD40A7D7B702FED4E0D869AF /* BSG_KSSignalInfo.c */; }; + 4AD594C99F5F9AEADA609ABDFE7824C1 /* SecureStorage.h in Headers */ = {isa = PBXBuildFile; fileRef = 3BEAA460A23771D599DF023A79A4EA4F /* SecureStorage.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 4AE958548F5C64C47213734EFD752C5A /* PriorityLifoSemMPMCQueue.h in Headers */ = {isa = PBXBuildFile; fileRef = 403EECD2D76FEC9AD50732349E5854CF /* PriorityLifoSemMPMCQueue.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 4AED17B604B26F5979DF844729481D31 /* ProxyLockable.h in Headers */ = {isa = PBXBuildFile; fileRef = 7D88CBD1547D70BDD6CAE506B1D38851 /* ProxyLockable.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 4B18AE9BC7BE94FC25C40FC06B9D0CC1 /* FramedReader.h in Headers */ = {isa = PBXBuildFile; fileRef = 1A9F8591F2B098D7202BFA3E470BF076 /* FramedReader.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 4B47DD0C6C71E48C8DE8A43958E6E75D /* MallocImpl.cpp in Sources */ = {isa = PBXBuildFile; fileRef = BCAB5F9355E7B67E72281C118F7E9B44 /* 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"; }; }; + 4B736CD9AFF47AB990F5C77BEB4C8875 /* signalhandler.cc in Sources */ = {isa = PBXBuildFile; fileRef = 64D9B9F25B0FB550384CCEE01DDDB3E2 /* signalhandler.cc */; settings = {COMPILER_FLAGS = "-Wno-shorten-64-to-32"; }; }; + 4B814079650D36D0B48229B67C2A586E /* BugsnagPlatformConditional.h in Headers */ = {isa = PBXBuildFile; fileRef = 8BAD30A36D29548F628F420A0F4C8FC8 /* BugsnagPlatformConditional.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 4B8989820AF46587E5B34974B8600961 /* BugsnagDevice+Private.h in Headers */ = {isa = PBXBuildFile; fileRef = AA50E88895FD316E36B9363CA3AA21B7 /* BugsnagDevice+Private.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 4B8B133743DF27A73AAC856B9D503465 /* FIRInstallationsItem.h in Headers */ = {isa = PBXBuildFile; fileRef = 0A9419B6A5D619E948EA95FCA9FBA8E0 /* FIRInstallationsItem.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 4B94EE251870274A9E1A0E1667CC481A /* anim_encode.c in Sources */ = {isa = PBXBuildFile; fileRef = 7ADFE15812F3798C25514138FF72D250 /* anim_encode.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; + 4B9B44AC07BE7375036630205140044A /* GDTCORRegistrar_Private.h in Headers */ = {isa = PBXBuildFile; fileRef = 421188BB62E77BEEEC88633D0C21785B /* GDTCORRegistrar_Private.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 4BA21040668A5272321E130E8D9C9371 /* FIRCLSReport_Private.h in Headers */ = {isa = PBXBuildFile; fileRef = 7BF737847D1F4D5B207FFF25A89E7EC4 /* FIRCLSReport_Private.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 4BAE5799A01F3FFED5188F873B459140 /* RNFBCrashlyticsModule.h in Headers */ = {isa = PBXBuildFile; fileRef = F468F920BF6EB11ED152DCCDE798BEB8 /* RNFBCrashlyticsModule.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 4BB30E423EE3E12B8A881FB974AEEFF5 /* format_constants.h in Headers */ = {isa = PBXBuildFile; fileRef = 5AD8B1BD6DA5ECE5B6FAEAC0B509E273 /* format_constants.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 4BCAE11C13F0876EEE825531B1AC7E04 /* RCTPackagerConnection.mm in Sources */ = {isa = PBXBuildFile; fileRef = E556E64E8575166C57A3D7ECD8CF7122 /* RCTPackagerConnection.mm */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + 4BD86A792CE46A907C03E15CA7A5843D /* Stdio.h in Headers */ = {isa = PBXBuildFile; fileRef = DEFEF26DB3E2778B721B53A1C9AE98A9 /* Stdio.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 4BE093A591B11BD93D6DFD54D631F8AF /* UMModuleRegistryDelegate.h in Headers */ = {isa = PBXBuildFile; fileRef = 6A6E7FEF56C865C3E93762F434D9E7D2 /* UMModuleRegistryDelegate.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 4BFA6EC42522A4EC937649F2B97C0F66 /* RCTShadowView+Layout.h in Headers */ = {isa = PBXBuildFile; fileRef = 9BF261C9B75258A3F31BA963ED60C856 /* RCTShadowView+Layout.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 4C02B8524DECD82205FF950EDF13D089 /* SKYogaKitHelper.h in Headers */ = {isa = PBXBuildFile; fileRef = A51061D375D8ABF74537A515EC57C4AD /* SKYogaKitHelper.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 4C11B1460C01530329D9A1633832D026 /* FIRCLSOnboardingOperation.h in Headers */ = {isa = PBXBuildFile; fileRef = 59F4136A3156CB0C7F9E63466095582E /* FIRCLSOnboardingOperation.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 4C2013C25A6D8FD84F7379F77F1549A9 /* GULKeychainStorage.h in Headers */ = {isa = PBXBuildFile; fileRef = 4F63FB8C00FDE84A14231F4368DFB9BB /* GULKeychainStorage.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 4C225DD430A54E44C4EA6745916C7A2B /* GDTCORTransformer.h in Headers */ = {isa = PBXBuildFile; fileRef = D593B296E32B92BB806548E326673D7A /* GDTCORTransformer.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 4C474604DD5468DD9C9F317FA4FA3A0E /* BlurEffectWithAmount.m in Sources */ = {isa = PBXBuildFile; fileRef = 00F5BDD07E195066EC47D3280702A669 /* BlurEffectWithAmount.m */; }; + 4C5263BB5A9183E60831332CD92F45B1 /* String-inl.h in Headers */ = {isa = PBXBuildFile; fileRef = E0D110C27AE0AB7AC9945656D9E7629E /* String-inl.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 4C5620701364AFA3AC0ADF714ABA4707 /* SKNamed.h in Headers */ = {isa = PBXBuildFile; fileRef = C8D74C63DDB2002D35AE9930980E43A9 /* SKNamed.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 4C626E6608551490376CD1EEF96C3B32 /* Singleton.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 6EAEF8CD2447B107397ED36052625E6F /* 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"; }; }; + 4C63D46F18DB44C5D575C32C77AD75E3 /* BSG_KSCrashSentry_Private.h in Headers */ = {isa = PBXBuildFile; fileRef = 6956FA0BEEA18B2C999C9AF16B8C84FC /* BSG_KSCrashSentry_Private.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 4C8032B39D6C4CD174A8A9AC9FDAC392 /* AsyncSocket.h in Headers */ = {isa = PBXBuildFile; fileRef = 2D2AC3C536ABC9FAA50F8255EC14CBDB /* AsyncSocket.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 4CCE595A109C28EED9933E5B007C28F7 /* FBLPromise+Async.h in Headers */ = {isa = PBXBuildFile; fileRef = CC997E074FE62510CA0786366A9E1389 /* FBLPromise+Async.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 4CD3E5D6975449E11EA7818BDBB8AB80 /* QBAssetsViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = 2DFE00B59DDA7259EA323C7F5D23F5A7 /* QBAssetsViewController.m */; }; + 4CE2687C77D3FE7221665AB7B73DBB2B /* FIRInstallationsItem+RegisterInstallationAPI.m in Sources */ = {isa = PBXBuildFile; fileRef = 96408A247A8585E195EFE59F6D2A8F94 /* FIRInstallationsItem+RegisterInstallationAPI.m */; }; + 4CE430C551E840C1D580C59F626541C6 /* ProducerConsumerQueue.h in Headers */ = {isa = PBXBuildFile; fileRef = 86E622B354BC8BF6AB06EA1630F4405D /* ProducerConsumerQueue.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 4CFF2BBA882ED477A9E4345DDF73ED77 /* RNDocumentPicker.m in Sources */ = {isa = PBXBuildFile; fileRef = 2F00848A4EE9AF993619862BE538B869 /* RNDocumentPicker.m */; }; + 4D220AEEE1E7FFCD72F956083035B081 /* NSImage+Compatibility.h in Headers */ = {isa = PBXBuildFile; fileRef = CFD4F8C4C727F66BB925CF7F3ECA74D5 /* NSImage+Compatibility.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 4D30044BD67D3A8A975BA8682EC93811 /* IOObjectCache.h in Headers */ = {isa = PBXBuildFile; fileRef = 89C656AE8DDF5E63FDEEF5C082CDE4F5 /* IOObjectCache.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 4D36F8F74849E605387C35EFCB0D5115 /* CPUThreadPoolExecutor.cpp in Sources */ = {isa = PBXBuildFile; fileRef = E32E47B2EB301B509BAE594765A2A40C /* 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"; }; }; + 4D74B0BD2882AA715F2F7CE3D119B7EF /* UIImage+MemoryCacheCost.m in Sources */ = {isa = PBXBuildFile; fileRef = B54B72A35DD0CD55E0840174847E759A /* UIImage+MemoryCacheCost.m */; }; + 4D7556973BE5B3F1662521748D3B9F4D /* CachelinePadded.h in Headers */ = {isa = PBXBuildFile; fileRef = D43565053E48A0F015E2978B5F8D68A2 /* CachelinePadded.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 4D77D6E62543FD0D02916498ECC84D27 /* en.lproj in Resources */ = {isa = PBXBuildFile; fileRef = 9CAEB29520E2068F454FF971EDBA977A /* en.lproj */; }; + 4D8317759C43E212AFBAE40C0FB66262 /* MicroLock.cpp in Sources */ = {isa = PBXBuildFile; fileRef = BD15CE40B518BC6FFE519660FEFE7ABA /* MicroLock.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -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\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors"; }; }; + 4D8C78402C33BFD6D602053420A72503 /* FramedDuplexConnection.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 9DFF722C9D68928E81A928D28CE99CED /* FramedDuplexConnection.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -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 -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors"; }; }; + 4D96B3C2520AE74FCC0F71FC5D20FD09 /* EventBase.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 1CF6E15BE461120372F834677473B4EA /* EventBase.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -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\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors"; }; }; + 4D99B2B3A7A62015822A0A822F91E1A2 /* SKScrollViewDescriptor.h in Headers */ = {isa = PBXBuildFile; fileRef = 9FCF037A8C66C92036A5020D7BE6073D /* SKScrollViewDescriptor.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 4DA9A2CE52A774F6E12F7225BCB37C58 /* BSG_KSCrashDoctor.h in Headers */ = {isa = PBXBuildFile; fileRef = 9BAD85DAE3C54E43EED133E9F0A73741 /* BSG_KSCrashDoctor.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 4E024AFFBF38DEB477F7592A333900D3 /* rescaler_mips_dsp_r2.c in Sources */ = {isa = PBXBuildFile; fileRef = 0DA1B8F35D94DD544B17F036604E9ED5 /* rescaler_mips_dsp_r2.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; + 4E1C9A783988796E37DECB8B8B750D66 /* json.h in Headers */ = {isa = PBXBuildFile; fileRef = 9B7FF8134BA75FBD5E98F96D5C9D32AE /* json.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 4E223449F086273EC497170A81D2E562 /* FrameSerializer.h in Headers */ = {isa = PBXBuildFile; fileRef = E3064AA592E63D119E4B6ADA43C9659A /* FrameSerializer.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 4E26FE729E196D239F98D431E2B07DAD /* RCTDivisionAnimatedNode.h in Headers */ = {isa = PBXBuildFile; fileRef = 46D20B68B02C602D5A8962FAB8EF7F0C /* RCTDivisionAnimatedNode.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 4E281E2B08F7AF7CE7932C4B013869F3 /* HHWheelTimer.h in Headers */ = {isa = PBXBuildFile; fileRef = D8B3766BD51485AF86C68E0F8988ADD2 /* HHWheelTimer.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 4E2CFFC499C7A1935D36785AB1444671 /* CodedInputDataCrypt.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 1417DCF8792914775794BB987C8CCE35 /* CodedInputDataCrypt.cpp */; settings = {COMPILER_FLAGS = "-x objective-c++ -fno-objc-arc"; }; }; + 4E58EB50E39873968C9C209F53EF7CF6 /* SSLContext.h in Headers */ = {isa = PBXBuildFile; fileRef = CBA7F0902B9323448D6EF74B5B5DD7EC /* SSLContext.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 4E7FD2752F3657D2D03CAFB7AD42A2D9 /* OpenSSLThreading.h in Headers */ = {isa = PBXBuildFile; fileRef = 043BCDACE8EA56CC42EE0C736713015C /* OpenSSLThreading.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 4E81E27B91920F65DBA593A96D7DE6B1 /* BitIterator.h in Headers */ = {isa = PBXBuildFile; fileRef = C234DB5B3DCA472579F8C0C36ADF15C8 /* BitIterator.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 4E8E6C8CB03E1462A4D94E9AFAC56113 /* UMExportedModule.h in Headers */ = {isa = PBXBuildFile; fileRef = 21094771FB6E09728AC794C4A8881F7C /* UMExportedModule.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 4EB3D002989971C16227CCBDF93F59FF /* RCTBaseTextInputViewManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 111328621E8618D4724ED150108E8ECC /* RCTBaseTextInputViewManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 4EBF3C27250A5BED162C85CF763BDC0F /* YGLayout.m in Sources */ = {isa = PBXBuildFile; fileRef = 8BE2B495AB39DC5BC0A14688CBF90625 /* YGLayout.m */; }; + 4EC0906A0A98125ACEA7B7BFBC709EC4 /* IOThreadPoolExecutor.h in Headers */ = {isa = PBXBuildFile; fileRef = F1C03CC5E39DFB5CD535DBCE5F959EDC /* IOThreadPoolExecutor.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 4ED59E0FD21A714D773388670E864E51 /* RCTUITextField.h in Headers */ = {isa = PBXBuildFile; fileRef = 60E23A1AB6F172911238053287791884 /* RCTUITextField.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 4F10400EB72C276F310ADA233A70702A /* BugsnagHandledState.m in Sources */ = {isa = PBXBuildFile; fileRef = F04D2978A22BB01CC8D75C9356763B9F /* BugsnagHandledState.m */; }; + 4F1B6BE5EE1335D85B7CD5F7C9AFE0FC /* Select64.h in Headers */ = {isa = PBXBuildFile; fileRef = 22FDC9A6956563AE2CC1CCCE72FE0C17 /* Select64.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 4F2C566C7ACCA1CE5518BD14B834372B /* FirebaseCrashlytics.h in Headers */ = {isa = PBXBuildFile; fileRef = 58872FFB8DFE0488B0E139AEF233ADD0 /* FirebaseCrashlytics.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 4F339311C1AD18E857D9ED8EFE7F0830 /* FBLPromise+Delay.h in Headers */ = {isa = PBXBuildFile; fileRef = 5FF5D6E6965540C165C816BE7E0D3F05 /* FBLPromise+Delay.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 4F6782C1A84D9329340E9B8D7E0FCC5A /* RCTInputAccessoryViewContent.h in Headers */ = {isa = PBXBuildFile; fileRef = BF627F29C14D735D7BB79511FDDB0BB4 /* RCTInputAccessoryViewContent.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 4F7A173A3613672DDE883573710B12D9 /* ssim.c in Sources */ = {isa = PBXBuildFile; fileRef = 0FBE01D13F5CCA3ADD8B3375BDFFEC8C /* ssim.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; + 4F9FB518A0215BFC3ED5904FC93EEE14 /* evmap.c in Sources */ = {isa = PBXBuildFile; fileRef = 3285BDA7D5B88ACFF734C44217A25493 /* evmap.c */; }; + 4FA7DDFB58AAB1B4D07282C97B3A8656 /* GULHeartbeatDateStorage.h in Headers */ = {isa = PBXBuildFile; fileRef = B76E59CE14DF9432450E8D201717765C /* GULHeartbeatDateStorage.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 4FBB27C88BD574385E044C90FD940215 /* RCTTypedModuleConstants.mm in Sources */ = {isa = PBXBuildFile; fileRef = 08F23C71D0DA22DC5CD8E28001306B89 /* RCTTypedModuleConstants.mm */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32"; }; }; + 4FC36D3475E49C9BBA7F9A5C212A9B37 /* Rsa.h in Headers */ = {isa = PBXBuildFile; fileRef = 620AB4522D0CF02D6205FEC37D7FDEA7 /* Rsa.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 50010ED5365ED60D7A47E80352F4D81A /* MMKV_Android.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 816BDED2019A060CBAA4FCEA7DF7D636 /* MMKV_Android.cpp */; settings = {COMPILER_FLAGS = "-x objective-c++ -fno-objc-arc"; }; }; + 500D24619C979C372E284634F9763B80 /* FBLPromiseError.m in Sources */ = {isa = PBXBuildFile; fileRef = A490E4633614F23366F2CA288D7711EE /* FBLPromiseError.m */; }; + 5014317C66E3B8DF996601EDA058BD49 /* GULSecureCoding.h in Headers */ = {isa = PBXBuildFile; fileRef = AD5272F35581455FCB38C329C710D92E /* GULSecureCoding.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 502EC8452441104A95D839D7F5F94E54 /* RCTDisplayWeakRefreshable.m in Sources */ = {isa = PBXBuildFile; fileRef = C1979C5F2ECD6347C6568631CD0FA9D3 /* 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"; }; }; + 50475DF9346489E44E71F0EBD04E82FB /* RCTAnimationDriver.h in Headers */ = {isa = PBXBuildFile; fileRef = 79741A574F95677A119A9C98B9A3CF7F /* RCTAnimationDriver.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 504C2875772F5DE5399293CCA3E64D2A /* FIRInstallations.h in Headers */ = {isa = PBXBuildFile; fileRef = 040FF851D30C23B39D7E38A14D54F92B /* FIRInstallations.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 5050D4595E0B099FD13F3997073DE03E /* AtomicUtils.h in Headers */ = {isa = PBXBuildFile; fileRef = E55193D3600A210F71F9BEB5BEB6BE15 /* AtomicUtils.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 5058516CFF7208E7465B2ABEBFF90CF9 /* SDImageAPNGCoder.m in Sources */ = {isa = PBXBuildFile; fileRef = 44AAFFEF5C348699BCAC4CDE634AF2B7 /* SDImageAPNGCoder.m */; }; + 5063CF89529776B50316EF113E85BC2F /* SDGraphicsImageRenderer.m in Sources */ = {isa = PBXBuildFile; fileRef = 302FD0776486D9FEB0388127D5C51FDB /* SDGraphicsImageRenderer.m */; }; + 50904C33ABE461DB41AF66CC456337F3 /* HazptrObjLinked.h in Headers */ = {isa = PBXBuildFile; fileRef = 827765BE7CB51576FCDF1D3B59CCCC35 /* HazptrObjLinked.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 50973F0D946B06A5D4FA5775C72E8DA4 /* MPMCPipelineDetail.h in Headers */ = {isa = PBXBuildFile; fileRef = 20250D610646EF8FC603D64E86A09BFF /* MPMCPipelineDetail.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 50B7ADCCE85E549BC80E61674D3A8942 /* FIRCLSDownloadAndSaveSettingsOperation.h in Headers */ = {isa = PBXBuildFile; fileRef = 3AD4F747F7528B663EBEC800817BC8C5 /* FIRCLSDownloadAndSaveSettingsOperation.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 50B834389F0A52EF9DC6C27DE7CD7111 /* RNCPickerManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 81FB001C7716874E02062E3A23DC5118 /* RNCPickerManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 50BEB2AE8DAE21E73CA4AA64A6AD83F7 /* FIRDependency.h in Headers */ = {isa = PBXBuildFile; fileRef = B8787063496C665D382D5BDE7DDDC67D /* FIRDependency.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 50CAAF1C6E17D95C23508AE92FA86A05 /* GDTCCTNanopbHelpers.m in Sources */ = {isa = PBXBuildFile; fileRef = 1B585001B92D572D8D108B01DE563D87 /* GDTCCTNanopbHelpers.m */; }; + 50DFC5EBF7F3919E2AFB3425E04202A3 /* FIRExceptionModel_Private.h in Headers */ = {isa = PBXBuildFile; fileRef = 13EF5D78F1055C12E86C76B87215666F /* FIRExceptionModel_Private.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 50E5D8A047658D0EAD402D0AFFAEA726 /* RSocketClient.h in Headers */ = {isa = PBXBuildFile; fileRef = 3CFC40D774313BAD493B0E0E5376C3F7 /* RSocketClient.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 50F52119E3956D663176B47DE5A416A8 /* RCTScrollView.m in Sources */ = {isa = PBXBuildFile; fileRef = 5FE632E11891141E1F9FEB4E7C3C3094 /* RCTScrollView.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + 50FC8A5A7904E6F9466C54F1D7BFAF61 /* GDTCORClock.m in Sources */ = {isa = PBXBuildFile; fileRef = 1333D058D8C0815919B49B15E4565AE7 /* GDTCORClock.m */; }; + 51237210E050E5A3EC6AAEB881A60383 /* RangeCommon.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 0FBF9B744930F8653A9076072C717F10 /* RangeCommon.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -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\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors"; }; }; + 512F006D86A89F733FFDBE1F8A4CC07C /* SDImageIOAnimatedCoder.h in Headers */ = {isa = PBXBuildFile; fileRef = 051A45F3034AE2C79868BC8527E387A9 /* SDImageIOAnimatedCoder.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 513858AE5EC3C9B49953082DC2B47905 /* FIRCLSUnwind.c in Sources */ = {isa = PBXBuildFile; fileRef = 4EB6D979FF618406692B3FE66D4CF555 /* FIRCLSUnwind.c */; }; + 514546F2D8310E7F4C88A2C1BF4D6939 /* MMKV.h in Headers */ = {isa = PBXBuildFile; fileRef = CDE3A6B231C42D2F2242F34E5614826A /* MMKV.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 5164E64881026C024F9B50EF37E62E25 /* RCTMultilineTextInputViewManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 859AF4488EA571ABE765C273F5099CED /* RCTMultilineTextInputViewManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 517492A9DB1BE570124104ABD1E074FB /* FlipperCertificateExchangeMedium.h in Headers */ = {isa = PBXBuildFile; fileRef = 4807090FD5FCE064FDD184B3B1CA0D10 /* FlipperCertificateExchangeMedium.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 5188BD8020DC6300794725A025214DFF /* InlineExecutor.h in Headers */ = {isa = PBXBuildFile; fileRef = 3E9A76ACFE187697991B64661B1FC349 /* InlineExecutor.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 518A164797C7638936C7BA6C59E60EC0 /* FutureExecutor.h in Headers */ = {isa = PBXBuildFile; fileRef = D401EC1775668C9F237B9E67D6025E9F /* FutureExecutor.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 519418231152DE7965E65EC152039E43 /* RNPanHandler.m in Sources */ = {isa = PBXBuildFile; fileRef = FD57249DC6AFC9BAEFDF3786523C45EE /* RNPanHandler.m */; }; + 51B67D2931EB4CCA7F07B76A066A8217 /* EXAppleAuthenticationMappings.m in Sources */ = {isa = PBXBuildFile; fileRef = 47DC74C70FADE5A2C3FC4104F57341ED /* EXAppleAuthenticationMappings.m */; }; + 51E523C74436C19AC6960BFF693B84C3 /* RCTMultipartDataTask.m in Sources */ = {isa = PBXBuildFile; fileRef = DF85DCBBC868D6D6912BB276E4493F91 /* RCTMultipartDataTask.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + 51EA1E266FCC622C10B5E031B822F96F /* StorageIndexer.m in Sources */ = {isa = PBXBuildFile; fileRef = 14159E6EF3CEA3BC20EB32C69B33E151 /* StorageIndexer.m */; }; + 52065294B5C167A52403505D6BE397FE /* JSBundleType.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 17A8C29DB9A95FD0E6624D6C1A589262 /* JSBundleType.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + 520CBF8847D1D897D7816BB47BC77CA6 /* FBVector.h in Headers */ = {isa = PBXBuildFile; fileRef = 82265ADB9104D0423AEC16B15C031E15 /* FBVector.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 52247987D1E7B79399E678A6682FFBF7 /* RNCAsyncStorage-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = D4CC268A186C2665E8DAB88EEFCD9225 /* RNCAsyncStorage-dummy.m */; }; + 5235586EF4F37E089CB0466A3D29952D /* REAUtils.h in Headers */ = {isa = PBXBuildFile; fileRef = 91889F33FABB8B897AE43FC96DFCA87C /* REAUtils.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 523CCF68F2261FAC0A34914EF58910A0 /* TimeoutQueue.h in Headers */ = {isa = PBXBuildFile; fileRef = CD981957F83A187AFBD9176B4BFE4A60 /* TimeoutQueue.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 523F5350F8CABC24C8BF20222FE99D3D /* EDFThreadPoolExecutor.h in Headers */ = {isa = PBXBuildFile; fileRef = 71865B28FEA44BE3816EA4DEEDF67AFD /* EDFThreadPoolExecutor.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 5245E703C2AEC1B3AFE6398B8D02D6AB /* ko.lproj in Resources */ = {isa = PBXBuildFile; fileRef = 2E02143A3700FA34F89CE1C664E3231F /* ko.lproj */; }; + 524BEA37EC655920105A852861809B59 /* StreamStateMachineBase.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 72CC93EF1D5AD73A041DBDF4A2089DD2 /* StreamStateMachineBase.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -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 -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors"; }; }; + 5253613C4299913B0F23B7CB202FFDC7 /* FIRCLSOnboardingOperation.m in Sources */ = {isa = PBXBuildFile; fileRef = 3BB0FBC8A491BED5B6BA79B426C8E822 /* FIRCLSOnboardingOperation.m */; }; + 52546D5AED1CE6F1D4D68F498DC60A87 /* F14Defaults.h in Headers */ = {isa = PBXBuildFile; fileRef = 4BBF9AA19AAE13068A6CEA2177ABF545 /* F14Defaults.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 525B9111B21ADC4CD6604A928ABC3CC7 /* RCTImageUtils.h in Headers */ = {isa = PBXBuildFile; fileRef = CAAD8D8D804700F912DCF45774D314B6 /* RCTImageUtils.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 525BA54664C2AF09F7B37D1B22E0ABEC /* F14IntrinsicsAvailability.h in Headers */ = {isa = PBXBuildFile; fileRef = AEF0E048470BB3514B56999490E54844 /* F14IntrinsicsAvailability.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 526899373AF76F07633BAA1791E8E671 /* RCTSurfaceDelegate.h in Headers */ = {isa = PBXBuildFile; fileRef = 634657D9DD5D3C5D17F98FB447F0EB10 /* RCTSurfaceDelegate.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 5268A428E33B4F3EBB2B4B09116BCAFD /* IPAddressV6.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 54CD2909364338BB6E2A33BD23CF3993 /* IPAddressV6.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -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\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors"; }; }; + 527B0A16001BA3684FF0B7217F8AEB56 /* filters_utils.h in Headers */ = {isa = PBXBuildFile; fileRef = 72ECB468EFCB007738B802B8D4D804FB /* filters_utils.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 5283658AAD0A635BC6E71BFE6E46E72E /* Flipper-Folly-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 52A8F8CC113E6CB9AD4B096E8BCA0DAA /* Flipper-Folly-dummy.m */; }; + 528C867675F789C74811EDFD54F02675 /* EventBaseBackendBase.h in Headers */ = {isa = PBXBuildFile; fileRef = 2C5022D3987113C0B01B2E82CD0B910F /* EventBaseBackendBase.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 52B89D360F26BC9D04B8C51EB9139B8C /* Framer.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 78C3DD5E9BC7C9B9507FFB2A02CE7CC2 /* Framer.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -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 -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors"; }; }; + 52D14EE99B0367A9C26301E44AE3EC67 /* F14Policy.h in Headers */ = {isa = PBXBuildFile; fileRef = A4ADC28707C7AE3D5341C32BF03805D7 /* F14Policy.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 52DF97F7A00DEBE421BC95EF9E6DD58F /* crashlytics.nanopb.c in Sources */ = {isa = PBXBuildFile; fileRef = 02E47D705E5C2C051ECC606009A45B16 /* crashlytics.nanopb.c */; }; + 52E55C3BDED3802A3345089D8B275222 /* random_utils.c in Sources */ = {isa = PBXBuildFile; fileRef = CD734B7E29592FC94D2BBA360FA9BCCC /* random_utils.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; + 52FC4C285BD391CC8D308407ACE86BB3 /* HighlighterViewManager.m in Sources */ = {isa = PBXBuildFile; fileRef = 93150517B8B8E33E2B6F5B6AE637F5C8 /* HighlighterViewManager.m */; }; + 5329DF0639EECDF46FF0D39B96066679 /* SKSearchResultNode.m in Sources */ = {isa = PBXBuildFile; fileRef = 7DF05417D62931F0192E674FD34FA258 /* SKSearchResultNode.m */; settings = {COMPILER_FLAGS = "-DDEBUG=1 -DFLIPPER_OSS=1 -DFB_SONARKIT_ENABLED=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -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"; }; }; + 53310A3B917A40A9806B73551DDD8F44 /* AtomicHashArray-inl.h in Headers */ = {isa = PBXBuildFile; fileRef = C08F68C436B1B6C297B66E735AE25FE6 /* AtomicHashArray-inl.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 5332E99F41769AB92650077F00E14B1D /* GULNetworkURLSession.m in Sources */ = {isa = PBXBuildFile; fileRef = B2F6D12646EC41A9CEFB3768C870894A /* GULNetworkURLSession.m */; }; + 533D723DBDC1987B2F81ECF1A82E9F48 /* EXSessionDownloadTaskDelegate.m in Sources */ = {isa = PBXBuildFile; fileRef = 632742EB6A230FB0A73E7225931002D5 /* EXSessionDownloadTaskDelegate.m */; }; + 533EAEB3462A5DF81E7EDA318250A975 /* syntax_enc.c in Sources */ = {isa = PBXBuildFile; fileRef = 0F746F870E976031F8DEA7E93FD16CC5 /* syntax_enc.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; + 534B96AE1889EF5B483C779EDF133CD4 /* SanitizeThread.h in Headers */ = {isa = PBXBuildFile; fileRef = BD86AC1F3317A7CFA77DBFA2CA11CE98 /* SanitizeThread.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 535660D382F7A6AC31987D3681D0304A /* SocketAddress.h in Headers */ = {isa = PBXBuildFile; fileRef = D36806D4A591121A6A341FD898291244 /* SocketAddress.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 53670FBF51CAFFBB4ABBF3D2640B8137 /* ConnectionContextStore.cpp in Sources */ = {isa = PBXBuildFile; fileRef = FB04F3FFD2C843D7565D520D56347E1F /* ConnectionContextStore.cpp */; settings = {COMPILER_FLAGS = "-DFLIPPER_OSS=1 -DFB_SONARKIT_ENABLED=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -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"; }; }; + 536B6C5CBC9855346CE1F2B881993F59 /* RCTAnimatedNode.m in Sources */ = {isa = PBXBuildFile; fileRef = 745E5F049E467D7272A9FC9E3A0315CB /* 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"; }; }; + 5372184DEE4B05BD26EAF265AA46579F /* REABlockNode.h in Headers */ = {isa = PBXBuildFile; fileRef = 54CD5FD0F145D63D0153F14AD25D57B9 /* REABlockNode.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 53722B4A6F9A27A57E5E99427D791FE8 /* TimekeeperScheduledExecutor.h in Headers */ = {isa = PBXBuildFile; fileRef = 928A005C389A3F26AA596AE8D032B596 /* TimekeeperScheduledExecutor.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 53772BFF7B42097400E1548EB4BE6A91 /* HazptrRec.h in Headers */ = {isa = PBXBuildFile; fileRef = DDA78673345D42E2C2AB52A9ED40D16C /* HazptrRec.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 5377DC87BE3DC0F4290AA7E46C65C109 /* RCTMultipartStreamReader.m in Sources */ = {isa = PBXBuildFile; fileRef = B4E384DEEE8C9A58FF86C72B61FC57BF /* RCTMultipartStreamReader.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + 537A1F4064116F293AB62B472CE0953F /* String-inl.h in Headers */ = {isa = PBXBuildFile; fileRef = E0C4E2F4E4071B1AF88CB0D7BE75AA87 /* String-inl.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 53C41A7CE5BEBC2B6C712E2016793254 /* ThreadCachedArena.h in Headers */ = {isa = PBXBuildFile; fileRef = C50D2A2BB340B3D8AC276D02DDBAE733 /* ThreadCachedArena.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 53E4B72C74DA9C8F4736C4CE3ABCC967 /* RCTSurfaceProtocol.h in Headers */ = {isa = PBXBuildFile; fileRef = 32C7CA9FEE5440BE6511B1DD5DC25A37 /* RCTSurfaceProtocol.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 5405AC4BCD70AD3F57AEAF63126FC4CA /* quant_levels_dec_utils.c in Sources */ = {isa = PBXBuildFile; fileRef = D2260EFFF9AA6BC794D7AF479D1764CD /* quant_levels_dec_utils.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; + 541896560751D57037A0FE59D6003062 /* UMUtilities.m in Sources */ = {isa = PBXBuildFile; fileRef = 32DB37546014B6D2F539517579042611 /* UMUtilities.m */; }; + 541C7B542BE9DAA6202E136237A05192 /* RNCSafeAreaProvider.m in Sources */ = {isa = PBXBuildFile; fileRef = B886A62870C66C4BB66F121C1DF4FC6E /* RNCSafeAreaProvider.m */; }; + 5427E78D1BAFD94829D840270046F65E /* ScheduledSubscription.cpp in Sources */ = {isa = PBXBuildFile; fileRef = B1F8CF581CB5D7DBDA3CE18D2C0D1B28 /* ScheduledSubscription.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -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 -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors"; }; }; + 542EFF148E2A26D50BC8D5B1EBCA71DE /* Random.h in Headers */ = {isa = PBXBuildFile; fileRef = 20E4E6251BFD115F6262212735947A04 /* Random.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 5430330A140FD70258DC4E3DDC886B68 /* FIRInstallationsSingleOperationPromiseCache.m in Sources */ = {isa = PBXBuildFile; fileRef = EF49DF606834B553E1C98BF8BEF57C0F /* FIRInstallationsSingleOperationPromiseCache.m */; }; + 543EE0A6E553C33AEB1C61AC88CF42ED /* REAValueNode.m in Sources */ = {isa = PBXBuildFile; fileRef = 37C77CA46347FF94A942F9303102B26B /* REAValueNode.m */; }; + 5446271D5ACA4950004F29AD6CC74473 /* Overload.h in Headers */ = {isa = PBXBuildFile; fileRef = 6CFE14C06A219D454E82E078C9CA35D8 /* Overload.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 544A809C3B317A48568E6CEE4C18B768 /* RCTConvert+FIRApp.h in Headers */ = {isa = PBXBuildFile; fileRef = 7E8306194B37FF93351C45CE032D09DB /* RCTConvert+FIRApp.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 544B0A17D4EF8DF1A62AD4C97B7DF962 /* RNFastImage-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = D2F48ABCD4510D96E5A6230C5ACC652F /* RNFastImage-dummy.m */; }; + 545E685E2CDA721AC7A171A5252B5F32 /* IntrusiveList.h in Headers */ = {isa = PBXBuildFile; fileRef = 28C68A83D0A46C648C481EA963457CB9 /* IntrusiveList.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 54605FFDD9399B6FEDB35102DACF1899 /* FirebaseInstallationsInternal.h in Headers */ = {isa = PBXBuildFile; fileRef = DCF2641ACC996C44C1D2622BF8727B1E /* FirebaseInstallationsInternal.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 5463D8C76CC2954FADD1E0C197062027 /* RCTPicker.h in Headers */ = {isa = PBXBuildFile; fileRef = B5F5313166AD87EBAACF75ECE422CF07 /* RCTPicker.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 5468B18F248F48CC7444DAB53E55683B /* FlipperStateUpdateListener.h in Headers */ = {isa = PBXBuildFile; fileRef = 503DBF84DF18AFA2E710724C2610BC3E /* FlipperStateUpdateListener.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 54880C500712D7E15C7E85BEEE11A60D /* EXAppleAuthenticationRequest.h in Headers */ = {isa = PBXBuildFile; fileRef = DCBC7AF49AE6BD3BFE71EC733783741F /* EXAppleAuthenticationRequest.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 5499B4121A868048D050B93CFFA28035 /* logging.cc in Sources */ = {isa = PBXBuildFile; fileRef = 450E3ABB4C2C35CB59BA0E0CFD2EBB8C /* logging.cc */; settings = {COMPILER_FLAGS = "-Wno-shorten-64-to-32"; }; }; + 549B42BF95B8AFB183322BF34936A76B /* RCTAsyncLocalStorage.h in Headers */ = {isa = PBXBuildFile; fileRef = FF3DC9A5EBDB132DCA56A724FC1D10FF /* RCTAsyncLocalStorage.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 549C2DF8E8B62F539F79EA714BDAF122 /* AsyncSignalHandler.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 2AAAD906B2C1620324141AA9ADDC3FD2 /* AsyncSignalHandler.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -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\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors"; }; }; + 54AB0BE1465DA5D73C20D87AC8FDC895 /* BugsnagThread.h in Headers */ = {isa = PBXBuildFile; fileRef = 8CCB5F1B268A463563A18DB65A0BDC5F /* BugsnagThread.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 54AFE0560C274AF1E94A3793FA249320 /* RCTSpringAnimation.h in Headers */ = {isa = PBXBuildFile; fileRef = 030F3025CC8683ED91DFF18888825EB7 /* RCTSpringAnimation.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 54C90A71459B2E6A9902EFE787F7C1B1 /* event.c in Sources */ = {isa = PBXBuildFile; fileRef = CF26307A01B535F6B8CCD07C6870014A /* event.c */; }; + 54D1EB16FBEC949796BF3527C6A9E105 /* RCTNetworkPlugins.h in Headers */ = {isa = PBXBuildFile; fileRef = F6A13C3347D23CF1821E036AF8CD9008 /* RCTNetworkPlugins.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 54E8B704E74D1E83230F7990EB820136 /* FIRExceptionModel.m in Sources */ = {isa = PBXBuildFile; fileRef = BD12D0A2749451844C41B7DBE9F9F28C /* FIRExceptionModel.m */; }; + 54ECA723AA87FD13E6470CE43E753CAD /* SKInvalidation.m in Sources */ = {isa = PBXBuildFile; fileRef = 469ECA85ADFCA60DC94EEDA8ACE737AC /* SKInvalidation.m */; settings = {COMPILER_FLAGS = "-DDEBUG=1 -DFLIPPER_OSS=1 -DFB_SONARKIT_ENABLED=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -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"; }; }; + 54EE0D8B8ED39EB5DA8D96F066ADB611 /* Utility.h in Headers */ = {isa = PBXBuildFile; fileRef = 13556548C1D105A985F406FFB2BF3C2E /* Utility.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 550A080E68943939CA95B7F4E6485F49 /* RNGestureHandler-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = A612EE6AF69D3D6CCF0F30D403386C8E /* RNGestureHandler-dummy.m */; }; + 5526EE1517CFE2DF3FA2C659E2A535B8 /* ManualTimekeeper.h in Headers */ = {isa = PBXBuildFile; fileRef = 591AE380546519313FCA87162C91463F /* ManualTimekeeper.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 552C93A127A098EF6FBE32A452058572 /* bit_writer_utils.c in Sources */ = {isa = PBXBuildFile; fileRef = 8FE3240015DA25E919A097D17D00DE49 /* bit_writer_utils.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; + 5530E15FC0D84020B802A86170A1AD19 /* BSG_KSMach_x86_32.c in Sources */ = {isa = PBXBuildFile; fileRef = 3AB58E8EB1CF9347D64F4EA3DC8E76C8 /* BSG_KSMach_x86_32.c */; }; + 555D6508F207FDA7B8E05C3DD982FF64 /* TimekeeperScheduledExecutor.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 20CD2C9813B4017733274E5A18695228 /* 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"; }; }; + 556401236333C5A3C89239E52D18DFBB /* RCTNetworkPlugins.mm in Sources */ = {isa = PBXBuildFile; fileRef = 7542B6581D86DE78244807AABE670477 /* 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"; }; }; + 5579CABE7E992375141B3DE4427C9B85 /* UIView+Yoga.h in Headers */ = {isa = PBXBuildFile; fileRef = 9F95D88D96F31D25741FC673B5C98F59 /* UIView+Yoga.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 55800A84BBE7962E4CAE1C989EA4A01D /* fixed-dtoa.h in Headers */ = {isa = PBXBuildFile; fileRef = D37A0A62C432572579D7169FF41FE511 /* fixed-dtoa.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 55833ADA71758EA651C5CA15B5C499D9 /* Math.h in Headers */ = {isa = PBXBuildFile; fileRef = 0EC254646A73F5365011337CB12D6D0F /* Math.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 5584A72969B4338092230267D553752A /* SDAnimatedImageRep.h in Headers */ = {isa = PBXBuildFile; fileRef = F547618559A17BDE84AEA8C8B1A96C34 /* SDAnimatedImageRep.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 558AF7BF098D702362DA047A90370E80 /* zh-Hans.lproj in Resources */ = {isa = PBXBuildFile; fileRef = BB804F0568669C71B236C99E83947DBF /* zh-Hans.lproj */; }; + 5594F7E8B0012FB85A1BF8234911FDEA /* React-RCTSettings-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = F343002BB2B4DA1CE8C45B5552C49BE7 /* React-RCTSettings-dummy.m */; }; + 55B21A8FD0385604B053BE2D8D627D90 /* SDWebImageOptionsProcessor.h in Headers */ = {isa = PBXBuildFile; fileRef = 89CBFE37F954597846FB1ACA6B10E756 /* SDWebImageOptionsProcessor.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 55B2F348B92F5A5D975F6F8A34DB0076 /* IPAddress.h in Headers */ = {isa = PBXBuildFile; fileRef = 288F7359ACD7005F8AA874FE0FA5022D /* IPAddress.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 55D43776C925BAFDDB1923FD4F02A87A /* YogaKit-umbrella.h in Headers */ = {isa = PBXBuildFile; fileRef = D4658B75F7F786045BE392B677FA6E25 /* YogaKit-umbrella.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 55E0C74D5D6E3FDCEF7445051F13520A /* RCTDatePickerManager.h in Headers */ = {isa = PBXBuildFile; fileRef = F5E9FE96DB4AA86A910234CF52014188 /* RCTDatePickerManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 55F5E837B561C4E712A38B2332286B35 /* RCTUtilsUIOverride.h in Headers */ = {isa = PBXBuildFile; fileRef = D842E174A97F11F09A4DE8DACF7BE73A /* RCTUtilsUIOverride.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 55F765F37C59C5C960CB40C562CA9CBE /* RNNotificationParser.m in Sources */ = {isa = PBXBuildFile; fileRef = 1FC61343B66E32B55208CE054D2C8AD3 /* RNNotificationParser.m */; }; + 5612514BC1843E72BF91B29AFB21F139 /* RNCConnectionState.h in Headers */ = {isa = PBXBuildFile; fileRef = 4249071496CFF721340193A51C6307E2 /* RNCConnectionState.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 56431FB55D2B2119EB21495F94EE4734 /* IPAddressSource.h in Headers */ = {isa = PBXBuildFile; fileRef = B7819A5997833715CD3236A1380FA66B /* IPAddressSource.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 564853F7F84BE73EA7A8337BAA5B110D /* RCTInterpolationAnimatedNode.m in Sources */ = {isa = PBXBuildFile; fileRef = 15F87A544179EEEA23D2582D7E11EA29 /* 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"; }; }; + 565A40C9715DD79B31B0702BA634E8AE /* UIColor+SKSonarValueCoder.h in Headers */ = {isa = PBXBuildFile; fileRef = E115122B84BB45292C4B26E6AE03BD57 /* UIColor+SKSonarValueCoder.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 56C1FA21180106745B569F55993E72FE /* TOCropScrollView.m in Sources */ = {isa = PBXBuildFile; fileRef = 7DAFD9A92B38247EE388F189092E3525 /* TOCropScrollView.m */; }; + 56D4677EA56DB9249D95C85CA9630849 /* Tearable.h in Headers */ = {isa = PBXBuildFile; fileRef = C04BDF934280132FD2E9B83D8356207E /* Tearable.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 56EE5E1E394B16D4BA3AF1742CE1D442 /* crashlytics.nanopb.h in Headers */ = {isa = PBXBuildFile; fileRef = B9EA2BFF71FC61037E85472DC246B382 /* crashlytics.nanopb.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 56EF8DA5A7C04AF974461197F2B45903 /* color_cache_utils.h in Headers */ = {isa = PBXBuildFile; fileRef = CDE1E005AD34405685A1ADA68CDF9786 /* color_cache_utils.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 56F5FA9AAC8EC05E54DD752752FDE4FF /* MMKV_OSX.cpp in Sources */ = {isa = PBXBuildFile; fileRef = AA61CFA601E9334CDA05C3D1CCE0DFE5 /* MMKV_OSX.cpp */; settings = {COMPILER_FLAGS = "-x objective-c++ -fno-objc-arc"; }; }; + 56F7980FD755DC837527569DB31DC8BD /* RNRootViewGestureRecognizer.m in Sources */ = {isa = PBXBuildFile; fileRef = C9175199DD1119E2B5B1244B05FBA35C /* RNRootViewGestureRecognizer.m */; }; + 570C74C728841871D4DBEB6FA4A15497 /* RNCWebViewManager.m in Sources */ = {isa = PBXBuildFile; fileRef = 2DBC02AAB6A0CE2BE962F55B26B0FEC3 /* RNCWebViewManager.m */; }; + 571C9140346B509EC9EB1784C3ADC7A9 /* ClientResumeStatusCallback.h in Headers */ = {isa = PBXBuildFile; fileRef = 1C5C9FE5EED5AE4B5BB2873DA9C503F5 /* ClientResumeStatusCallback.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 571EE874F538CB2D47C1D133286C2E44 /* UMLogHandler.h in Headers */ = {isa = PBXBuildFile; fileRef = A0B366DFF56FD3B4BF2B6DCE891BF968 /* UMLogHandler.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 57447239B8EBF083F478440508047E90 /* IOExecutor.h in Headers */ = {isa = PBXBuildFile; fileRef = 564236AC06A67E7906BE90C1450FA3F2 /* IOExecutor.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 5756D2D7CBB0C28DDCF2B8F34AA6D480 /* SysMman.h in Headers */ = {isa = PBXBuildFile; fileRef = 9AD7CD8B560BA14C5DB429AC9B7BFE39 /* SysMman.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 576D1D3D0255B54FFBDDCB00855FE397 /* PTChannel.m in Sources */ = {isa = PBXBuildFile; fileRef = BB5210672C926795B942E2BF01402BAF /* PTChannel.m */; }; + 5771D1F5AF09F22675A90661B35C5C29 /* BlurViewManager.m in Sources */ = {isa = PBXBuildFile; fileRef = 808F44F5EC5432D0198D9B7F7956925D /* BlurViewManager.m */; }; + 57BB836568046003D6019714BEF84F81 /* WaitOptions.h in Headers */ = {isa = PBXBuildFile; fileRef = EB01BFCB1230B86893810B0FA743D369 /* WaitOptions.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 57D78F83991F15800B0EF39A76C40A7C /* Orientation.h in Headers */ = {isa = PBXBuildFile; fileRef = DFB76EA691E409D498FA61B91A89687F /* Orientation.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 57D7C343AE7C29997AB0C8B4C1B3712F /* RCTScrollEvent.m in Sources */ = {isa = PBXBuildFile; fileRef = 48C31898E70111242D31300C57B41592 /* RCTScrollEvent.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + 57E1E207C3AA73C2F1F51DAA6138D691 /* Access.h in Headers */ = {isa = PBXBuildFile; fileRef = AC74338314CFFDC45412C73662006009 /* Access.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 57F5CE7550B3402AABAA993CA3BEA22B /* EventHandler.h in Headers */ = {isa = PBXBuildFile; fileRef = E2109A456A1AD90F143C45FF3B76ECC7 /* EventHandler.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 57FF231DE07EC4984BF6F186C07DA7FD /* RCTFileReaderModule.mm in Sources */ = {isa = PBXBuildFile; fileRef = 62CB6807706E44E49977C5FB82C6BCC0 /* 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"; }; }; + 5815B0C94E2D9D948C6ED96D77712351 /* BaselinesTcp.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 6784B66FCD9A8C5EB48CB4446A7DD63A /* BaselinesTcp.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -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 -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors"; }; }; + 5822C44912002F529B8D36067CA5BED5 /* BugsnagKVStore.h in Headers */ = {isa = PBXBuildFile; fileRef = 05E986F5F42A4CD27147D702D802B7D3 /* BugsnagKVStore.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 582B9C8885E9C1714EDEC6565AA9DDC5 /* SDDiskCache.m in Sources */ = {isa = PBXBuildFile; fileRef = 1A2F0092199517E21640E0A5311334C6 /* SDDiskCache.m */; }; + 583C40C63153AA0DFC038D02F558709B /* F14Set.h in Headers */ = {isa = PBXBuildFile; fileRef = 9676C3DB7DFE23361D6B1FF98E9CEF18 /* F14Set.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 584C8F04D80EB3B77D6A202A5D739A37 /* SDWebImageError.m in Sources */ = {isa = PBXBuildFile; fileRef = E9951475FDDF6AB34EAEA4098D522B3A /* SDWebImageError.m */; }; + 5885A380130872574F2275F30DB28F49 /* BSG_KSMach_Arm64.c in Sources */ = {isa = PBXBuildFile; fileRef = 64545F3BFFC1522366ABE9AFBA5CD50C /* BSG_KSMach_Arm64.c */; }; + 589C23108B805E0EBF232A4D1C231745 /* BugsnagBreadcrumbs.h in Headers */ = {isa = PBXBuildFile; fileRef = 41FFB7E436C0A9942FB61D7A54FC2EB7 /* BugsnagBreadcrumbs.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 58D7F9C57D9E8C42867BC4BD992FE79E /* BugsnagConfiguration.m in Sources */ = {isa = PBXBuildFile; fileRef = 7117BFFC9553028F2923691F6DBFBA01 /* BugsnagConfiguration.m */; }; + 58DFCD0E7C316F7ACFDA80C04406BBFD /* EventCount.h in Headers */ = {isa = PBXBuildFile; fileRef = 448EE70C74D8056C9F32589D95374F71 /* EventCount.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 58E1660575B93C51FE5C9208E4D2ACDA /* REATransition.h in Headers */ = {isa = PBXBuildFile; fileRef = 40CBD16B14C6A7178F68E9FD7E4623D7 /* REATransition.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 58FAB1B01708ECAA52553F6C2EC66F7A /* RCTNativeAnimatedModule.h in Headers */ = {isa = PBXBuildFile; fileRef = 7E065284101AB5CA9BA253B6F594D886 /* RCTNativeAnimatedModule.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 5903A92557084E5ACBDBD8C18F5A34F3 /* ConnectionSet.cpp in Sources */ = {isa = PBXBuildFile; fileRef = B9D1E7CE0AF119E2C8F08C52950D93F7 /* ConnectionSet.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -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 -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors"; }; }; + 592EBA4201C2A9D6E230B0672D54276A /* UIView+Yoga.m in Sources */ = {isa = PBXBuildFile; fileRef = 06873E0A4CB49236155789B1F95DB50A /* UIView+Yoga.m */; }; + 59374C793E394994B91634B2D28B0234 /* Core-inl.h in Headers */ = {isa = PBXBuildFile; fileRef = 8C06E9E4DBACD6B7AC74F8A408C4C78D /* Core-inl.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 593EF2505647C864AB0382709F612330 /* RNCAssetsLibraryRequestHandler.h in Headers */ = {isa = PBXBuildFile; fileRef = B92888970D09A244409C3FAA59F16FF1 /* RNCAssetsLibraryRequestHandler.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 5946FF5AE953D2124A798B5145547929 /* Subscription.cpp in Sources */ = {isa = PBXBuildFile; fileRef = E6B85D082DB25A1C9DCA3E28E844D939 /* Subscription.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -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 -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors"; }; }; + 596992E0D58A0074B0EC9412F5B4D23D /* OpenSSLCertUtils.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 5029B7DBFA20537B8F3D299D3365BC07 /* OpenSSLCertUtils.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -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\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors"; }; }; + 597743E3015309A9176AAEC6F273F74B /* FIRCLSDefines.h in Headers */ = {isa = PBXBuildFile; fileRef = 509E2E32FB93F2EFADFFE8840EE60358 /* FIRCLSDefines.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 597FE2C24B558EAE467990DDAA424325 /* RNDeviceInfo-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = E3F7EA7EF7F7921678ABA06E6A73D95D /* RNDeviceInfo-dummy.m */; }; + 5982D5FE4D455DBB6E7ADA774834E49C /* FBLPromise+Validate.h in Headers */ = {isa = PBXBuildFile; fileRef = C64101AE28CB43EB122B102799DF5D94 /* FBLPromise+Validate.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 599196D6A7DB719C9EBAEF11A8F64354 /* RCTFileReaderModule.h in Headers */ = {isa = PBXBuildFile; fileRef = C951C9A15CDA8B3C95F31CE99FC1BCA8 /* RCTFileReaderModule.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 59AE946B096F4C82230A39E2F2DDA825 /* FIRLogger.h in Headers */ = {isa = PBXBuildFile; fileRef = 7B73D902D17E1F44871C986BEA5651A9 /* FIRLogger.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 59C13B4ED833B593CD33F59B51A7B5EE /* ScopeGuard.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 7F6240C6D4FC977D7D5EAC1F509F9466 /* ScopeGuard.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -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\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors"; }; }; + 59C35C2B6307E92A1E7C7E3C71C47EC0 /* FIRInstallationsStatus.h in Headers */ = {isa = PBXBuildFile; fileRef = 883107563F2F824E99F911C228B6A82F /* FIRInstallationsStatus.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 59CB0170FB2C64210D3170E2A3EAB76B /* TcpConnectionAcceptor.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 827AD32D3C28F102941B4AFB05F76826 /* TcpConnectionAcceptor.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -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 -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors"; }; }; + 59EBC93ADCBFCA9F0540BBABAA2B1386 /* RNDateTimePicker-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 88D064A435C820E2896C2463E3AA9F9F /* RNDateTimePicker-dummy.m */; }; + 59F274984A2087C0AAD14A308BBC788B /* Yoga-umbrella.h in Headers */ = {isa = PBXBuildFile; fileRef = E83B01A80E91470832F3B5D3472999BC /* Yoga-umbrella.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 59F4CB2A11654294E3E840DFC86661B6 /* FIRCLSMachOBinary.h in Headers */ = {isa = PBXBuildFile; fileRef = CB11113B67FAB5106E09D71F8C5C8A15 /* FIRCLSMachOBinary.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 5A033A32F9027B0C3C8EB62231EC34FA /* demux.h in Headers */ = {isa = PBXBuildFile; fileRef = F776D60FB667C746DF277574BF048264 /* demux.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 5A0D76399C3E75346B00C6ADB0E61356 /* SysTime.h in Headers */ = {isa = PBXBuildFile; fileRef = 17921F43AE5715AC8F9183DE79C84EC9 /* SysTime.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 5A2990F507FB948AD9EA29E382E4AB9C /* EnableSharedFromThis.h in Headers */ = {isa = PBXBuildFile; fileRef = 2F09F15D76F629CB14522980C2E43FA5 /* EnableSharedFromThis.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 5A4F8719852ED4A7D67CCC6099B164B8 /* InitThreadFactory.h in Headers */ = {isa = PBXBuildFile; fileRef = B6CDB36AA30B88F08031095EE0019709 /* InitThreadFactory.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 5A7509BF9721E4A6D3788E2C4AE7B1FF /* AtomicRef.h in Headers */ = {isa = PBXBuildFile; fileRef = 86D2FEDC6B5F5E3D2B2B115286B8EB8A /* AtomicRef.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 5A9299BC657C6780109E101A8C0B5F5B /* REAParamNode.m in Sources */ = {isa = PBXBuildFile; fileRef = 2A50237DF5DB54AF3ABCEC6C314A1F2C /* REAParamNode.m */; }; + 5AA5848E4408C9ED4B43EBBC6FBB7793 /* GTest.h in Headers */ = {isa = PBXBuildFile; fileRef = 384C06A2B9A27CF81DC9A1905DE991C0 /* GTest.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 5AB3B61A4C4F42AA53A9A921D6B6BC7F /* SKScrollViewDescriptor.m in Sources */ = {isa = PBXBuildFile; fileRef = 0230637BAEAD20FA6579CCC2F16B15CF /* SKScrollViewDescriptor.m */; settings = {COMPILER_FLAGS = "-DDEBUG=1 -DFLIPPER_OSS=1 -DFB_SONARKIT_ENABLED=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -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"; }; }; + 5ABD2044FA3E482514E674C8C275F72B /* RCTMultipartStreamReader.h in Headers */ = {isa = PBXBuildFile; fileRef = 7BC86ACC82C5EA9516C25D89CD0450B1 /* RCTMultipartStreamReader.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 5ABD6C31971AC73DC15CA39328E86E7B /* SDWebImageWebPCoder.h in Headers */ = {isa = PBXBuildFile; fileRef = D6E9C366366BC0F940F7C5C0FA27DCDC /* SDWebImageWebPCoder.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 5ABDB6E7CED86C80428EAFC48F8339F3 /* FIRCLSUserDefaults.m in Sources */ = {isa = PBXBuildFile; fileRef = 61E24D7397697438414F8AB8AE0D2B37 /* FIRCLSUserDefaults.m */; }; + 5ACB9343E2D8BF78910FB661AB784444 /* RCTAppState.mm in Sources */ = {isa = PBXBuildFile; fileRef = 877BECEB1BD5EA2DE13BF5C420F82C7C /* 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"; }; }; + 5ADBA79D9285836886123D3C6A7B99D8 /* RCTBaseTextInputViewManager.m in Sources */ = {isa = PBXBuildFile; fileRef = 60CE61FE1B097DC2250BB5CF9BFDA2A8 /* RCTBaseTextInputViewManager.m */; }; + 5AE0BF042AC8728112E2A2C828411715 /* backward_references_enc.c in Sources */ = {isa = PBXBuildFile; fileRef = 2CA64F7219DCE95748B64DB748A56919 /* backward_references_enc.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; + 5AEAB9168E46815C20183C9540B65CC1 /* RCTCxxModule.mm in Sources */ = {isa = PBXBuildFile; fileRef = D1AE227B022F913F13000625C0D13D1C /* RCTCxxModule.mm */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + 5B10E04566B9D459AFDA52B34551572A /* histogram_enc.h in Headers */ = {isa = PBXBuildFile; fileRef = AE6385F9078171EC3377BBF2BBCD6A24 /* histogram_enc.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 5B17C07022BB8181DA586246F4E32483 /* RNSScreenContainer.m in Sources */ = {isa = PBXBuildFile; fileRef = 549189282880EAC5953D1B5D58741493 /* RNSScreenContainer.m */; }; + 5B3F37A0A0649596B78C23C15162B133 /* RCTFont.mm in Sources */ = {isa = PBXBuildFile; fileRef = 782F7D4CEEAD2F0961322A8D335618C0 /* RCTFont.mm */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + 5B42A7802D51B9443CB50C80A66E85FB /* bit_reader_inl_utils.h in Headers */ = {isa = PBXBuildFile; fileRef = EB2FD639C15FAB649B31135F564AB0FA /* bit_reader_inl_utils.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 5B452BE713C209AEC71863EDDFFAB08A /* Connection.h in Headers */ = {isa = PBXBuildFile; fileRef = E9FD60CE1670E8FFE98BB60B37B90E55 /* Connection.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 5B4BC264AD15AA64D8AE26FCF19F0C15 /* FIRInstallationsStoredItem.h in Headers */ = {isa = PBXBuildFile; fileRef = DB8304DCE4775BF595E14CCF4DF2BFE3 /* FIRInstallationsStoredItem.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 5B654D698B44AFA9912BD052873C771D /* Demangle.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 0E1BFF425B21CDD748621BE4464F342A /* Demangle.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -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\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors"; }; }; + 5B6DF29E467D0E8EB9B32DB691480C39 /* thread_utils.h in Headers */ = {isa = PBXBuildFile; fileRef = 40EF232A491348E8080175DEDE147BF5 /* thread_utils.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 5B6E361997A0E8F49B992164FDB84663 /* RCTTextViewManager.h in Headers */ = {isa = PBXBuildFile; fileRef = B54F56C85788C5B0FA034D9D8D8037BD /* RCTTextViewManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 5B8AC75584CABD500B3A795998C5B31F /* da-DK.lproj in Resources */ = {isa = PBXBuildFile; fileRef = 9B5A8D4CA93B7E6695798AF9B46667CE /* da-DK.lproj */; }; + 5B8E1A9CCF70ACCFCDC9BCC443BD3ECD /* Synchronized.h in Headers */ = {isa = PBXBuildFile; fileRef = 1DDD80BC35A11E589D93968BA5745284 /* Synchronized.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 5B932B0C7D1A019B6EAADE4D31BB6DA9 /* EventBaseThread.cpp in Sources */ = {isa = PBXBuildFile; fileRef = EEE22705C82A7BD89B0F93A476726B64 /* EventBaseThread.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -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\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors"; }; }; + 5BAA5D06FEA15C10DFDBAC987A42D41E /* Hardware.h in Headers */ = {isa = PBXBuildFile; fileRef = C7124A00A370CDCBF3C1270C969985AF /* Hardware.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 5BC4A1F8F61B108E4380A8140B76D883 /* RNGestureHandlerButton.h in Headers */ = {isa = PBXBuildFile; fileRef = 1B48A4A18E8D9025FF28CF6C8D8D3214 /* RNGestureHandlerButton.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 5BC5CF73191BE5A997194ABD16CFB6E5 /* FIRInstallationsIIDStore.h in Headers */ = {isa = PBXBuildFile; fileRef = 760F88B941BACF05AEC85414CDC6B800 /* FIRInstallationsIIDStore.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 5BE6D30A76B7F29ED599AFC1E7D3BB87 /* Unicode.h in Headers */ = {isa = PBXBuildFile; fileRef = E12C71B1F21722242BA20B48FCD80C48 /* Unicode.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 5BF7C6976ADFCA35F754EF41A67E653D /* RCTVirtualTextViewManager.m in Sources */ = {isa = PBXBuildFile; fileRef = A8C3337815DE9029213AAD700DC70EC8 /* RCTVirtualTextViewManager.m */; }; + 5BF800372EBBB02FED49E86FA9823B84 /* BSG_KSCrash.h in Headers */ = {isa = PBXBuildFile; fileRef = 529445967A2C7AFF7DDFCF1540C4B318 /* BSG_KSCrash.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 5BF82DC3638FD03C13ABF0EE0429BA4F /* EXConstants-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 36E080E87D3AF4CEF4FC646D0B1AB76A /* EXConstants-dummy.m */; }; + 5BFABBC5EB4A72002B2A3613D5B4E9B8 /* RCTExceptionsManager.mm in Sources */ = {isa = PBXBuildFile; fileRef = AFA986D249892E3FFF0989691CC3B935 /* 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"; }; }; + 5C1BF6C712A517436D42DA25639A21A4 /* RNVectorIconsManager.m in Sources */ = {isa = PBXBuildFile; fileRef = 3762E3B29377E579A751F5120DD12953 /* RNVectorIconsManager.m */; }; + 5C3C57C52C268830CF3359633FB07833 /* RCTBridgeDelegate.h in Headers */ = {isa = PBXBuildFile; fileRef = A27BB64DAAB9E2500C9B4F5777EF93F0 /* RCTBridgeDelegate.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 5C3CD7B7E4EF0D8B4422EFD0BAB2DFB3 /* Rcu.h in Headers */ = {isa = PBXBuildFile; fileRef = 0B9F6D62020F4CE293D91DB00FBEBB56 /* Rcu.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 5C4E76845D343CA10A65FB4CD3F161BE /* RNCAppearance.h in Headers */ = {isa = PBXBuildFile; fileRef = 88A2A098F8A88DAB651515192E8A6D7B /* RNCAppearance.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 5C5B16C8BE96269E53355F15E2501B78 /* PolyException.h in Headers */ = {isa = PBXBuildFile; fileRef = 8839B0BB5CA1C81AA59B3A235D579ADF /* PolyException.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 5C71BEF9D2DAF983C59970C2A4FCF576 /* RNFBRCTEventEmitter.h in Headers */ = {isa = PBXBuildFile; fileRef = 031CD10AFB96D37EFA1EDE05350F7CC8 /* RNFBRCTEventEmitter.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 5CA581817E8C0B33FF4E56320738F1F2 /* NSData+EXFileSystem.m in Sources */ = {isa = PBXBuildFile; fileRef = E9674C9916F4EEC3422C811A2DCB1DC5 /* NSData+EXFileSystem.m */; }; + 5CC4145BB8D69FAE1DFC5B9D269BCC91 /* GDTCORLifecycle.m in Sources */ = {isa = PBXBuildFile; fileRef = 48CC86A9C89E089A633B393E947C6B89 /* GDTCORLifecycle.m */; }; + 5CD3724C69BC011F60FA77CC0DB697A7 /* RCTActionSheetManager.mm in Sources */ = {isa = PBXBuildFile; fileRef = D4C63E5B2D79338D7C4D0A1E7587481F /* 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"; }; }; + 5CDDC0B216E78A71F512F8E5506EE7BE /* FBLPromise+Then.h in Headers */ = {isa = PBXBuildFile; fileRef = E322625505DDB3B36E6E3A865CF9CD6B /* FBLPromise+Then.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 5CDFAB60C278BB6E2085422E62C0CED5 /* RCTModuloAnimatedNode.h in Headers */ = {isa = PBXBuildFile; fileRef = 945A3CDBC2E936DC988EF83FAEDE97F4 /* RCTModuloAnimatedNode.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 5CFDCDB5C5D8D14CBB904234D8C04F20 /* Access.h in Headers */ = {isa = PBXBuildFile; fileRef = F7B50BECA858432EF418DD563163CAED /* Access.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 5D027EC564711DEAD8BD2C58A28B5E5D /* PolyDetail.h in Headers */ = {isa = PBXBuildFile; fileRef = 60D57327D42ADF428835C46A86B42192 /* PolyDetail.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 5D1EABB076B0608332F1A2E988E33B9B /* UMReactFontManager.m in Sources */ = {isa = PBXBuildFile; fileRef = B623E45C1693994714135B7109FB2FDC /* UMReactFontManager.m */; }; + 5D2182FAE90F2CC29EE714004ADA653F /* Init.h in Headers */ = {isa = PBXBuildFile; fileRef = 7970FA004C5939305C62132D7E5D0166 /* Init.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 5D4186D93DD39D572539CC731C90B530 /* FIRCLSReportUploader_Private.h in Headers */ = {isa = PBXBuildFile; fileRef = 33905510EBCB8B4262AF53502D0AF47E /* FIRCLSReportUploader_Private.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 5D663BB4538B3B32129D8AFCCD93B783 /* SequencedExecutor.h in Headers */ = {isa = PBXBuildFile; fileRef = F5E2B237BFC19F48FDF152EAA9B894DD /* SequencedExecutor.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 5D828BE2048C487EC39BE1C07C7F3C2A /* strtod.cc in Sources */ = {isa = PBXBuildFile; fileRef = 50C9175D65389B58A1EF4F1876F53BA7 /* strtod.cc */; settings = {COMPILER_FLAGS = "-Wno-unreachable-code"; }; }; + 5D8E3A78DEA434C6BDA5D6E8A30E6847 /* EXAppleAuthenticationButton.m in Sources */ = {isa = PBXBuildFile; fileRef = 842A4201E90DF456D92F4F226977EE73 /* EXAppleAuthenticationButton.m */; }; + 5D9906D9FF68F007F8AF1E6D0E096F62 /* RCTTextSelection.m in Sources */ = {isa = PBXBuildFile; fileRef = B484992CB708582738F0C049A0B73519 /* RCTTextSelection.m */; }; + 5DA3BB119040617ED48F6F9C591798E6 /* RNTapHandler.h in Headers */ = {isa = PBXBuildFile; fileRef = 093D1518CAF330513DA2F72FD5219870 /* RNTapHandler.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 5DA65FABF819F25E95E8F3BBD7C89AC8 /* Observable.h in Headers */ = {isa = PBXBuildFile; fileRef = 5D3D49522DC4035458D2554F1CA42CEA /* Observable.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 5DD7901645984BF0363D75BF9D57406E /* Align.h in Headers */ = {isa = PBXBuildFile; fileRef = DC60E88F62613DF045EFC5E7EE59FBC2 /* Align.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 5DE1B082A536EABA29E67BE1A45D9C1D /* HazptrObj.h in Headers */ = {isa = PBXBuildFile; fileRef = CC78E64FEF64E7E898E5132651878B0A /* HazptrObj.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 5DE52A7645C7068167B39396500A6E4C /* GDTCOREvent.m in Sources */ = {isa = PBXBuildFile; fileRef = 920CE168839BE2662068B5F88C5F6B81 /* GDTCOREvent.m */; }; + 5DF2853732A30B5E83E39C81F6EF3568 /* React-jsinspector-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 32B796F3911250B131614AD71A44B9F0 /* React-jsinspector-dummy.m */; }; + 5E03FC253802DF483BCA0EE2454584FF /* FIRCoreDiagnosticsConnector.h in Headers */ = {isa = PBXBuildFile; fileRef = 90228DD9CF6B05645E6690C53AD4A221 /* FIRCoreDiagnosticsConnector.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 5E1510C5671B82ACD149ECAD81BFF647 /* Launder.h in Headers */ = {isa = PBXBuildFile; fileRef = 900768324A4F17DD15851A07B2A18578 /* Launder.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 5E1713A15AF035975CC7215A56E80B35 /* GDTCOREventTransformer.h in Headers */ = {isa = PBXBuildFile; fileRef = 662A01B30096B568A3C97F94CA374EDC /* GDTCOREventTransformer.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 5E246B7C1D806404D437C5778716DBEE /* SDImageAssetManager.h in Headers */ = {isa = PBXBuildFile; fileRef = EAB8127143A2F947099CAB92EF7626FA /* SDImageAssetManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 5E2500118A397A383D4018C3DF7F0583 /* GCDAsyncUdpSocket.m in Sources */ = {isa = PBXBuildFile; fileRef = FC69A1F119262FD7AFCB5A910A990A41 /* GCDAsyncUdpSocket.m */; }; + 5E599F3B4FC0CBFEC781EB62E40097D3 /* BSGInternalErrorReporter.h in Headers */ = {isa = PBXBuildFile; fileRef = EEBA5183DD7B72FC02092AA25A9EF007 /* BSGInternalErrorReporter.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 5E7937284AD13E1583D4875125FB0E1A /* RCTUITextView.h in Headers */ = {isa = PBXBuildFile; fileRef = 2873319379B0B369C230E6002631DCD9 /* RCTUITextView.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 5E886D934AE49599E7CF9E67BC2815DE /* Codel.h in Headers */ = {isa = PBXBuildFile; fileRef = 13FE542E8B4E1C351E47CAB1EDE5D250 /* Codel.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 5E890A65624ACC983E0F0ABF665A1607 /* LNInterpolable.m in Sources */ = {isa = PBXBuildFile; fileRef = FA7AD3865FCF52F38470178B0BCF4D69 /* LNInterpolable.m */; }; + 5E8A1D3D3C253015A5A00BB0B06F6292 /* SDWebImageDownloaderResponseModifier.h in Headers */ = {isa = PBXBuildFile; fileRef = F5EB82991A1B638E2A6F834DF732662C /* SDWebImageDownloaderResponseModifier.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 5E8F17796B17F546DBEFF101502550DA /* EXWebBrowser-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = EBA7D8B578D83D2EA70FD81B5A503184 /* EXWebBrowser-dummy.m */; }; + 5E950C4119D60003FE6444EC34C04393 /* BSGConnectivity.m in Sources */ = {isa = PBXBuildFile; fileRef = 793D0DEA208373B43465480286979A7D /* BSGConnectivity.m */; }; + 5E9B6BAF9D1E687D2ADE3AE2E6B3D1DF /* RCTDevSplitBundleLoader.h in Headers */ = {isa = PBXBuildFile; fileRef = 418764080E11C33C74227F5A2564D280 /* RCTDevSplitBundleLoader.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 5E9E587926C9A56B27F9B137AF43EF9E /* AsyncSocketBase.h in Headers */ = {isa = PBXBuildFile; fileRef = 9C9458BB8630C31C6B23D6C7E4D850AB /* AsyncSocketBase.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 5ECFAEB0D811F5F3FEB2E0FE2C10CF05 /* EXAppleAuthenticationButtonViewManagers.m in Sources */ = {isa = PBXBuildFile; fileRef = D9B81C1FE905D5C9E63A64EB76498264 /* EXAppleAuthenticationButtonViewManagers.m */; }; + 5EDB6AAB9792496FBFB53795D022195B /* RCTMaskedView.h in Headers */ = {isa = PBXBuildFile; fileRef = 0688EA3F66749DAB0F240F8FDBC6E235 /* RCTMaskedView.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 5EE368AE473461E98F0FA243D031CA97 /* RCTValueAnimatedNode.h in Headers */ = {isa = PBXBuildFile; fileRef = 5CC0990CF7E4D760637082C49C07B948 /* RCTValueAnimatedNode.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 5F26D9FED3E7EDE39A69830E54ED4291 /* RNCAsyncStorage.m in Sources */ = {isa = PBXBuildFile; fileRef = 713D18A0F927E82D9EE01184D3A0711F /* RNCAsyncStorage.m */; }; + 5F2CC02417F0F09E2ED6C21B79C5F4F1 /* SoftRealTimeExecutor.h in Headers */ = {isa = PBXBuildFile; fileRef = 1EDD7A050541CECA5F6D85542968D756 /* SoftRealTimeExecutor.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 5F3225A17D1956AEC1E23721B8BADC93 /* RCTSurfaceRootShadowView.m in Sources */ = {isa = PBXBuildFile; fileRef = A2CBC79D0EF11C29C0C619CDF9311FDF /* RCTSurfaceRootShadowView.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + 5F352AC09521B86E73CB59AE05822FED /* REAOperatorNode.h in Headers */ = {isa = PBXBuildFile; fileRef = 52265A81AB1340CED9D94D568FAD6A91 /* REAOperatorNode.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 5F4D1961447A662DA933FBBBB1924151 /* Conv.h in Headers */ = {isa = PBXBuildFile; fileRef = F98E3134D65976FD9479A6B6092A7F53 /* Conv.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 5F4DABCF59088EC74586C43C8B4CB03F /* FlipperConnectionManagerImpl.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 9BD25DA7C72B018B37F585E722698980 /* FlipperConnectionManagerImpl.cpp */; settings = {COMPILER_FLAGS = "-DFLIPPER_OSS=1 -DFB_SONARKIT_ENABLED=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -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"; }; }; + 5F4EA37F2A1D13FFF931A2F1578C238A /* BSGEventUploadObjectOperation.h in Headers */ = {isa = PBXBuildFile; fileRef = 2319748C30CD0CE60C14C11F1F4099C1 /* BSGEventUploadObjectOperation.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 5F5ED17717D2094B8D1CFBA755E6AC25 /* FIRDependency.h in Headers */ = {isa = PBXBuildFile; fileRef = 2716C2439DD679FEB55E1E62B8B38683 /* FIRDependency.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 5F7A076ED9B7BF079246B653B1280772 /* UMUserNotificationCenterProxyInterface.h in Headers */ = {isa = PBXBuildFile; fileRef = 995646CCF0E2046980210989B52D01E1 /* UMUserNotificationCenterProxyInterface.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 5F99BF5C6B9D8326C29B9B132D4E3F65 /* BSGEventUploadOperation.m in Sources */ = {isa = PBXBuildFile; fileRef = 98E2830DD301E0C3482CFFB5AD445B65 /* BSGEventUploadOperation.m */; }; + 5FA795FA23FF6086FF45385F279B47F6 /* FIRCLSReportAdapter.h in Headers */ = {isa = PBXBuildFile; fileRef = 4616D34D955F7E108D277F6B23866EDF /* FIRCLSReportAdapter.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 5FB02072FCED214759349A2B1D2F047D /* StringKeyedUnorderedSet.h in Headers */ = {isa = PBXBuildFile; fileRef = 8291E659D186A731AC71E38D30AE632F /* StringKeyedUnorderedSet.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 5FB66CF2EEBEAB9AB6A6E122FBE8E77F /* GULHeartbeatDateStorage.h in Headers */ = {isa = PBXBuildFile; fileRef = 1FC677C4009E2D403D641CDB80110FE0 /* GULHeartbeatDateStorage.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 5FB9E1D5956FEA4C2DBFCA5000D5B431 /* FIRCLSDwarfExpressionMachine.c in Sources */ = {isa = PBXBuildFile; fileRef = 0B19F8491F3710791740972EE008C422 /* FIRCLSDwarfExpressionMachine.c */; }; + 5FD56362A5ABA26F2BDD438F96F264C2 /* BugsnagDevice.m in Sources */ = {isa = PBXBuildFile; fileRef = 9F1C5606DA9104AF6B22862FAFDD0D77 /* BugsnagDevice.m */; }; + 5FD68A8294C22DF2A0BA3FDA31E284E4 /* GDTCORTransport.h in Headers */ = {isa = PBXBuildFile; fileRef = CE57DF3068D571E8ED1E135125146E4A /* GDTCORTransport.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 60087E2482A9EBBE1E82AD9F7BB96D90 /* Merge.h in Headers */ = {isa = PBXBuildFile; fileRef = BBA277E609233F77B06E75864C42C2CE /* Merge.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 600F5D2CEEB45FF0D29224EBB96D489C /* AtomicUnorderedMapUtils.h in Headers */ = {isa = PBXBuildFile; fileRef = 1164AE7B2B0C6A63415FF659EE7EDE91 /* AtomicUnorderedMapUtils.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 6016F83F6F40710690700526276DA74F /* GULAppDelegateSwizzler.m in Sources */ = {isa = PBXBuildFile; fileRef = 8B523D4F8EE3938CDA5AD7F4FC0AD84B /* GULAppDelegateSwizzler.m */; }; + 6025DB2810AD9610FE29F2358937B917 /* BugsnagSessionTrackingApiClient.m in Sources */ = {isa = PBXBuildFile; fileRef = A15E024E81E4B35210810C7A2A05232C /* BugsnagSessionTrackingApiClient.m */; }; + 602E8A5539372EF294086441009F06E5 /* MallctlHelper.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 9B4C54262ECC6C05D83CF812166F27C8 /* 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"; }; }; + 60381091C068FE48F9EBA148B3BA87EB /* UMLogManager.m in Sources */ = {isa = PBXBuildFile; fileRef = 58E549581D375FD7FF06795FADDDAEA0 /* UMLogManager.m */; }; + 6055BEC10BE9547B3A61E81CBE9950A1 /* RCTScrollContentShadowView.m in Sources */ = {isa = PBXBuildFile; fileRef = 4A465F49F85319A835359BE1BD80394A /* RCTScrollContentShadowView.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + 607A95E0FDAE53A156E20E5C9E6E7B02 /* Pretty.h in Headers */ = {isa = PBXBuildFile; fileRef = 1B54047442319FBE15A81424E73DF7FE /* Pretty.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 60815277F70A13408C14D82AE1BC58E8 /* EventBaseManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 7500D79607601E54C692678FF301E5D5 /* EventBaseManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 6081F5AABFC53761EC3D1219E8169A03 /* SDInternalMacros.h in Headers */ = {isa = PBXBuildFile; fileRef = A642F4FE514632AF6CB04E272D58AC0A /* SDInternalMacros.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 6086DAC3641BBBD677C953E1831E18B8 /* SDWebImageCacheSerializer.m in Sources */ = {isa = PBXBuildFile; fileRef = 50E81A83FFC6FFDE5C3241FE93B9A299 /* SDWebImageCacheSerializer.m */; }; + 608DF419F0A6DFC5E5E39C487C9D2026 /* AtomicSharedPtr.h in Headers */ = {isa = PBXBuildFile; fileRef = 3E1391F5FEB51B90696E18333144BE1B /* AtomicSharedPtr.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 60926A35E38148C951F6D8760069D748 /* FIRCLSRecordApplication.h in Headers */ = {isa = PBXBuildFile; fileRef = F455595C7B8188AE4C46D5F4CC159DA9 /* FIRCLSRecordApplication.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 6097EA5D9FDFC85D7C8F0ED8B12F71A7 /* SDWeakProxy.h in Headers */ = {isa = PBXBuildFile; fileRef = D69FE965D8470E992659F8AD229E1282 /* SDWeakProxy.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 6099113BC93359F3B9FF365759F0DB43 /* JSONSchema.h in Headers */ = {isa = PBXBuildFile; fileRef = 03B9B1E4E5756EB2EC8357BAE37DEB0B /* JSONSchema.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 60B3AA736BC9C4DB8C0711C7ADD4A882 /* BridgeNativeModulePerfLogger.h in Headers */ = {isa = PBXBuildFile; fileRef = 6673917DD9D4A5926D289283FF43D218 /* BridgeNativeModulePerfLogger.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 60BDB144F67871782672F611680BBDCF /* Frame.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 0A669C2FB3E713DBC488F7E6C7F31FF4 /* Frame.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -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 -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors"; }; }; + 60C407FBF1FA12CB4EF23AD2C207A67F /* Memory.h in Headers */ = {isa = PBXBuildFile; fileRef = 2F321148255C10C01F2875BF5C7DB5AD /* Memory.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 60D7D3204D561C0319BDA6EA0417CD18 /* BSG_KSSysCtl.h in Headers */ = {isa = PBXBuildFile; fileRef = F49E84A1651622E867FACDA8C6F5F079 /* BSG_KSSysCtl.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 60F6E029BBD2655E5BEDEDF49CEF2814 /* InspectorInterfaces.h in Headers */ = {isa = PBXBuildFile; fileRef = 2342F92B9B224A9643F2D47E450D4869 /* InspectorInterfaces.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 60F7E6CABF3B3FA65E877989BCC12154 /* String.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 1D3AF9C1D38A78E41B8C3516ED850625 /* 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"; }; }; + 6135C924CD9DC17900577629B45EB90E /* RCTImageLoaderLoggable.h in Headers */ = {isa = PBXBuildFile; fileRef = 1F9231F5E44746DEE0F29873146F1620 /* RCTImageLoaderLoggable.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 6138767A374766B39CCF6C2C0230EE70 /* BSGAppHangDetector.m in Sources */ = {isa = PBXBuildFile; fileRef = E6B9AB610EF64D266D39FF5B4150363C /* BSGAppHangDetector.m */; }; + 6156E1360D18DFD6DDBFFA121C779495 /* RCTSurfaceHostingView.h in Headers */ = {isa = PBXBuildFile; fileRef = C839D914356AF655FE842EE39198CC8F /* RCTSurfaceHostingView.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 6157A70ABC3633D6CE1629D02DBEC225 /* ExceptionWrapper-inl.h in Headers */ = {isa = PBXBuildFile; fileRef = D2B5427BED29EAB9A559B33BA7745FDB /* ExceptionWrapper-inl.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 6174F6F3E3A163F2D1B0946070992168 /* FlipperClient.mm in Sources */ = {isa = PBXBuildFile; fileRef = CE660E219D67034FCC5F1706EF1422DF /* FlipperClient.mm */; settings = {COMPILER_FLAGS = "-DDEBUG=1 -DFLIPPER_OSS=1 -DFB_SONARKIT_ENABLED=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -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"; }; }; + 617D20CF45C189E3D550E23FE4C4827E /* ScopedTraceSection.h in Headers */ = {isa = PBXBuildFile; fileRef = 4750A4F4690455F89FDBEAB617A89513 /* ScopedTraceSection.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 618A55190EFA824BD1AD57C09AFF79D5 /* Demangle.h in Headers */ = {isa = PBXBuildFile; fileRef = 063AF346E76173BF316BDBADEB6006B3 /* Demangle.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 618E7AEF02E573C84CE04A368EAFC7F7 /* FlipperResponder.h in Headers */ = {isa = PBXBuildFile; fileRef = C9842BA82BF3CC6B47590CA475DA33F7 /* FlipperResponder.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 61903100839950E79E4F154D48535629 /* REAEventNode.h in Headers */ = {isa = PBXBuildFile; fileRef = 58D72833615ECBB4F79C874CE1E4492E /* REAEventNode.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 61999051980963FF1A4B670DDFAD7312 /* UMEventEmitter.h in Headers */ = {isa = PBXBuildFile; fileRef = A689C86B4B08AD1F345082A0169BAB81 /* UMEventEmitter.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 61B28B50E03C7BE3253491D8F006D271 /* RCTClipboard.mm in Sources */ = {isa = PBXBuildFile; fileRef = C251FA74397E7B2F935F2108DF468B6E /* 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"; }; }; + 61CD85611650ABA123DA28910561F39C /* FlowableDoOperator.h in Headers */ = {isa = PBXBuildFile; fileRef = 8EF9DB1D163CDEB70F26F81A4C52D4D2 /* FlowableDoOperator.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 61D711722811BCDE4D3B2248CBC248A3 /* RNVectorIconsManager.h in Headers */ = {isa = PBXBuildFile; fileRef = AB810E8A6D88EC6E2B47CA5C3005F39D /* RNVectorIconsManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 61D9F89CF58F983BD17EB5E8DE23E9B1 /* openssl_aes.h in Headers */ = {isa = PBXBuildFile; fileRef = 72DABD8A2925F8AD668E0590C277F40A /* openssl_aes.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 61E5C3A016EB0486D8674A107C08C22C /* AsyncTimeout.cpp in Sources */ = {isa = PBXBuildFile; fileRef = B2A1EC0055E423BFA6B6E942F059E186 /* 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"; }; }; + 61FC86BAB3F7E066FF14F7518F8CA93D /* RNFetchBlobRequest.m in Sources */ = {isa = PBXBuildFile; fileRef = 0A72DCC2B270FAEF35327ABE4377E9AB /* RNFetchBlobRequest.m */; }; + 61FDF979424FDF9BE0D2FF1C06433662 /* Parallel-inl.h in Headers */ = {isa = PBXBuildFile; fileRef = 1316C0CCDE428C84FBD7BE654DBF34F8 /* Parallel-inl.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 6208B747EB7E443BDA69445E6B075A19 /* RNFetchBlobFS.h in Headers */ = {isa = PBXBuildFile; fileRef = 89519AAA023D40C815D13A2C6446F331 /* RNFetchBlobFS.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 620C068B105DFE5D31C626AC900DF9A5 /* Demangle.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 9147608CCF3C8761308CE5361DBEFF50 /* Demangle.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -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\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors"; }; }; + 62118257B17D426A240F3030B3F51BA4 /* React-jsiexecutor-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 3386B029270CBF405F9F29D38FFC7ED5 /* React-jsiexecutor-dummy.m */; }; + 623E2CCD0A0A282DB5601ED67CBE45DF /* RCTObjcExecutor.mm in Sources */ = {isa = PBXBuildFile; fileRef = B38FF39FA74A1AEFB9C17FD5A791AFB5 /* RCTObjcExecutor.mm */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + 6251E32809F84C0C181F83C267237A29 /* RCTRsaUtils.m in Sources */ = {isa = PBXBuildFile; fileRef = 32BF2E6349B1C33C559DEDDEFD29BB99 /* RCTRsaUtils.m */; }; + 625C79F2F1EAB08046841844DF3BE32E /* REANodesManager.h in Headers */ = {isa = PBXBuildFile; fileRef = CF65E777DED24A463115D265CE916CBF /* REANodesManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 625FFCF8B7013D3D3AAF36F9C92A2932 /* dynamic.cpp in Sources */ = {isa = PBXBuildFile; fileRef = A1CA3D1269334D265DC34656C0E265C0 /* dynamic.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -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\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors"; }; }; + 62783EDD50F65E26599BE0DA815F0400 /* Request.h in Headers */ = {isa = PBXBuildFile; fileRef = 7CC1DB286F42191D2EAA8C62A3572B26 /* Request.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 62863ED91304962D66667F85CCB7E3E4 /* GDTCORFlatFileStorage.h in Headers */ = {isa = PBXBuildFile; fileRef = 119D24750721B1EC2D973410EB358604 /* GDTCORFlatFileStorage.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 62A513EB39D14B2144AC0566EEC15707 /* FBLPromise.m in Sources */ = {isa = PBXBuildFile; fileRef = 6CA22FEDEDE239580881B34C6C38B67C /* FBLPromise.m */; }; + 62A8E2BF25F0148E4AF46C5E824D0147 /* SocketAddress.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 6C441F046FA88319E6A693637155D6B4 /* SocketAddress.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -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\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors"; }; }; + 62D45D649C2102A83C9EDAF81892F793 /* RCTTurboModuleManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 6AB2DD14EB283F12DE4CEBF4B5A703FA /* RCTTurboModuleManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 62DCD9D309CDAC8E54F9D4767C7F0D71 /* InspectorState.cpp in Sources */ = {isa = PBXBuildFile; fileRef = B883E6DE9EE8ED41A5F4978944199A05 /* InspectorState.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + 62E8BDF8F07B6CC58CE362FD0BFFE97A /* Range.h in Headers */ = {isa = PBXBuildFile; fileRef = F31F4D18704D4CF5DDE0B84BA5B40818 /* Range.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 62F9C735C6E48EF4E0B7CE3D21FD4E00 /* AsyncSSLSocket.cpp in Sources */ = {isa = PBXBuildFile; fileRef = BE5D11AEE9A2F2EF5094F9163D11D6B9 /* AsyncSSLSocket.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -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\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors"; }; }; + 630D705E1E3160B0557ABB50F6C258AA /* RSocketServer.cpp in Sources */ = {isa = PBXBuildFile; fileRef = A60204F19AF38FA7F5A1FCB3A43D6CEF /* RSocketServer.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -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 -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors"; }; }; + 630ED9879AAE930AC188219BC0A807AA /* json_patch.h in Headers */ = {isa = PBXBuildFile; fileRef = B23DFB13AC3F5FC16160D2739D8A204C /* json_patch.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 6312BA7D420AA8B80FC1396A7000B044 /* ResumeIdentificationToken.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 186F7E6D85BC225BD8ED6C1B4BFCD44A /* ResumeIdentificationToken.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -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 -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors"; }; }; + 63137D749B740725E252FEC0FC36E637 /* RCTRawTextViewManager.m in Sources */ = {isa = PBXBuildFile; fileRef = B299D23428F04BCB9299578DBB3D25E3 /* RCTRawTextViewManager.m */; }; + 63196657785D91F20874FEDD4898E7A4 /* GMock.h in Headers */ = {isa = PBXBuildFile; fileRef = BB6373697896307C1CF75D0F24CEABC4 /* GMock.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 63288EE3C17B02150EBB7F16344BBE50 /* HazptrThreadPoolExecutor.h in Headers */ = {isa = PBXBuildFile; fileRef = DA0891BE7085BF877176C4E68682D374 /* HazptrThreadPoolExecutor.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 6330A3C476B9BCAF3B7E74AF4F7F0F52 /* Arena.h in Headers */ = {isa = PBXBuildFile; fileRef = CA3996A48A9A86870035D6DCD2CC6087 /* Arena.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 633B1B5961112D8742938B3D106026E1 /* Async.h in Headers */ = {isa = PBXBuildFile; fileRef = 6B044D147F3944E7CEF9240526EEF54B /* Async.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 6351EA516F1A196B849C5AD39D6DF888 /* FIRCLSFile.m in Sources */ = {isa = PBXBuildFile; fileRef = CBC29039A8B61CBE95D13E9B7FABAE07 /* FIRCLSFile.m */; }; + 6356ED4693575AA1F48D829DDB083882 /* evutil.c in Sources */ = {isa = PBXBuildFile; fileRef = 24A3D9A69E87D7BD516F99C0BC1CBFC3 /* evutil.c */; }; + 6360BFAE5D200A8614E5B57665A4F3A6 /* SDWebImagePrefetcher.m in Sources */ = {isa = PBXBuildFile; fileRef = 6AC02FB80F0619A73BCDB49DE8DA5C68 /* SDWebImagePrefetcher.m */; }; + 63658421DBCEA2944E16A7B1519EDDE1 /* RNForceTouchHandler.h in Headers */ = {isa = PBXBuildFile; fileRef = 9FD82F983E0AD0C4D20CD38BB9B275FF /* RNForceTouchHandler.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 63691204D3C86E0301C5E5C9197518B0 /* InterProcessLock_Android.cpp in Sources */ = {isa = PBXBuildFile; fileRef = B493F54BA438354C6850587AFEE7F862 /* InterProcessLock_Android.cpp */; settings = {COMPILER_FLAGS = "-x objective-c++ -fno-objc-arc"; }; }; + 6370EACA061EDA4FD2A2C4DE468F6C5B /* FileUtilDetail.h in Headers */ = {isa = PBXBuildFile; fileRef = ADCF5534828DB3CD3A9DE9523DC4C1B8 /* FileUtilDetail.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 6394657ACB0503D2648B5ADDE06E60D8 /* BSGConfigurationBuilder.m in Sources */ = {isa = PBXBuildFile; fileRef = 44901D29FC22E4DDAEBEA19E8416A2A2 /* BSGConfigurationBuilder.m */; }; + 639F20ACC1E93D12879273ADC9D72BB1 /* FIRCLSCodeMapping.h in Headers */ = {isa = PBXBuildFile; fileRef = 82FD72CF6BE7239E867031CA2A5CDB4B /* FIRCLSCodeMapping.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 63AE6126D8D2CE6CF4EC70B01ACBE897 /* upsampling.c in Sources */ = {isa = PBXBuildFile; fileRef = BD416B2D9CA92351531929EF11CEDC2C /* upsampling.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; + 63F3A535626B9BF2ECBC5771555479D2 /* RCTDisplayLink.m in Sources */ = {isa = PBXBuildFile; fileRef = 031ACA320F67E575B42F3B356C10AFB0 /* RCTDisplayLink.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + 641C6DE1FA2A39820F7C64E78DFCE7E2 /* SKButtonDescriptor.h in Headers */ = {isa = PBXBuildFile; fileRef = D5CBA7880C6B559A0675AEB1AFA1D486 /* SKButtonDescriptor.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 6457E178B97D52FA134763004CDE1459 /* FIRCLSMachO.m in Sources */ = {isa = PBXBuildFile; fileRef = 1512FEFD3A4E2B4C25021CB37A1CD913 /* FIRCLSMachO.m */; }; + 645AA02DA2942C12593671B5926BC993 /* ScopeGuard.h in Headers */ = {isa = PBXBuildFile; fileRef = 3E4EC87D4807413BC2C9DA3F10ECFEDE /* ScopeGuard.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 646C3DE7C0B041A81633F5B6792E9EC3 /* cct.nanopb.h in Headers */ = {isa = PBXBuildFile; fileRef = A2C32E0F0891CF5F726A67ADB19EBE7E /* cct.nanopb.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 64B05124C6D1FB26D99CC4B0B9CAB32E /* SocketOptionMap.h in Headers */ = {isa = PBXBuildFile; fileRef = 546F60E8025B56327E8A6A5C195B0E7B /* SocketOptionMap.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 64C5F475199DBC62D9ADC6F900DA9257 /* enc_sse2.c in Sources */ = {isa = PBXBuildFile; fileRef = 5AD84792B8BA850F59C3948EA1781FFB /* enc_sse2.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; + 64C7567236FD8F4CB507F095C61C5925 /* quant.h in Headers */ = {isa = PBXBuildFile; fileRef = 22E98B4DDF678EB3332D2F52A3DEEE4F /* quant.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 64CCC36808CE10A05568DAC157366021 /* MasterPtr.h in Headers */ = {isa = PBXBuildFile; fileRef = AAC545D81CFA3EBA6BDC48096E92BE57 /* MasterPtr.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 64D2C67E4B3C2F6F3554DA3FD77388CA /* FlipperCppBridgingResponder.h in Headers */ = {isa = PBXBuildFile; fileRef = 2AE78BC7448998B627ECFF14288FD218 /* FlipperCppBridgingResponder.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 64DC11C71A29CB9CEB58B881C2571975 /* REATransitionValues.h in Headers */ = {isa = PBXBuildFile; fileRef = A853A4CA9DACFBF2D6B754C0FA8DC7B4 /* REATransitionValues.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 64DDB2096FCEB4BA4C16FAAE035409C8 /* RNCSlider.h in Headers */ = {isa = PBXBuildFile; fileRef = 86A048299409FEBFFC7727EBCD3377F0 /* RNCSlider.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 64DDDC1006BC3D23CA9D28A4BA0E1816 /* Codel.h in Headers */ = {isa = PBXBuildFile; fileRef = 5967AC659FA8F442DB8A30E79F49DF90 /* Codel.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 64ED67A2852AF5F7C735DF25600DBAE7 /* json_pointer.cpp in Sources */ = {isa = PBXBuildFile; fileRef = D4F83753BDBC8E000744C90B985EE321 /* json_pointer.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -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\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors"; }; }; + 650880B3A99103B2C8005CD50636E2B5 /* JSBigString.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 883E49195B7635B773600BD4C99DF71E /* JSBigString.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + 6513CBA48EFFD461EFC05067DC66C081 /* ARTLinearGradient.h in Headers */ = {isa = PBXBuildFile; fileRef = 061AE9077C7DE3A8143E392D2A7D4066 /* ARTLinearGradient.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 6521B37465F5BE14D6380434A552DE36 /* AtomicStruct.h in Headers */ = {isa = PBXBuildFile; fileRef = 39F0853AEF38A62339D708F14331F8F1 /* AtomicStruct.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 652535943BB13DDE845A40783352BB92 /* SKNodeDescriptor.h in Headers */ = {isa = PBXBuildFile; fileRef = C7259B83FDEDD3DF95D4D54C7B187BBB /* SKNodeDescriptor.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 653459802284CE6651EC63E4FE53574D /* RNSScreenStack.h in Headers */ = {isa = PBXBuildFile; fileRef = 3DCF307CD6239A322F71C3744124F1A6 /* RNSScreenStack.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 654A25953DA707FBB99F6857577945CD /* FIRInstallationsStoredAuthToken.m in Sources */ = {isa = PBXBuildFile; fileRef = 4B7D7162E4A6826DB0F5EBD39C2FC138 /* FIRInstallationsStoredAuthToken.m */; }; + 654F25C2E808F4B27F5647B0686EF18C /* ieee.h in Headers */ = {isa = PBXBuildFile; fileRef = C5884F76C5A355E9519F66C7FA22BA75 /* ieee.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 6557863E3A09017D5CF299AA788F5450 /* TOCropViewControllerTransitioning.h in Headers */ = {isa = PBXBuildFile; fileRef = 612353AF466442488436EA3AAD4EC8AF /* TOCropViewControllerTransitioning.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 6576441102E3C86E669671B47604E84D /* FIRInstallations.m in Sources */ = {isa = PBXBuildFile; fileRef = A2117B94DAEF4CF3025EF45683B75874 /* FIRInstallations.m */; }; + 657AC102699A50A7F538B1615C316D5B /* FIRCLSCompactUnwind.c in Sources */ = {isa = PBXBuildFile; fileRef = FC26680BEC1F8F093322A2729CF67C77 /* FIRCLSCompactUnwind.c */; }; + 659BCF8F0484D2879C01A1D365C9C356 /* CodedInputDataCrypt.h in Headers */ = {isa = PBXBuildFile; fileRef = 492D4D8C096AF085C5431C9BD45D860C /* CodedInputDataCrypt.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 65A18864E440372817F85F2EBBC2C63E /* random_utils.h in Headers */ = {isa = PBXBuildFile; fileRef = 887795AF5F1D1CEA41FD0AD780381379 /* random_utils.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 65D17917A74B5724A13DB1C2E639D8EF /* CacheLocality.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 00443FFCCDDF161CD8DFD017A55D4A88 /* 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"; }; }; + 65D70C58E941167C0699B8A56051BD05 /* LockTraits.h in Headers */ = {isa = PBXBuildFile; fileRef = EB9010DBE79F1BF407373D703255FF5C /* LockTraits.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 65EC1B6C817451E539952FA2572076C2 /* FIRCLSSymbolResolver.m in Sources */ = {isa = PBXBuildFile; fileRef = 07B37CA28D908A0CB36555375A78DC3F /* FIRCLSSymbolResolver.m */; }; + 65FA186C5F8E37084ECC32D4359463E9 /* cached-powers.cc in Sources */ = {isa = PBXBuildFile; fileRef = B8EAD51533CCC8510B05C61167CF30C1 /* cached-powers.cc */; settings = {COMPILER_FLAGS = "-Wno-unreachable-code"; }; }; + 66142A1C56A2505AB8B9FD732D2CBDFD /* ScopedEventBaseThread.cpp in Sources */ = {isa = PBXBuildFile; fileRef = E314D4C2C6C65DFF19CCAEA88EF912E3 /* ScopedEventBaseThread.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -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\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors"; }; }; + 661AC55F63173916BE38AA6A359900FA /* ThreadWheelTimekeeper.h in Headers */ = {isa = PBXBuildFile; fileRef = 85E65AC36ED8401F5C93F850A55F9EAA /* ThreadWheelTimekeeper.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 66219DC93FD34E57BEAEF8F276B0DE51 /* InterProcessLock.h in Headers */ = {isa = PBXBuildFile; fileRef = AAF21E78FFF83D734A0A9B816EEC7D84 /* InterProcessLock.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 662F27E366728074F54CAFDEAA1CAC57 /* UMReactLogHandler.m in Sources */ = {isa = PBXBuildFile; fileRef = 8E00F24F9A431B328FFF0FBE6C8D12FE /* UMReactLogHandler.m */; }; + 665DEE4108939A764454440EDB8FFF85 /* RNCConnectionStateWatcher.m in Sources */ = {isa = PBXBuildFile; fileRef = 7D518967F7BE26E3DE849A4B3E8A416E /* RNCConnectionStateWatcher.m */; }; + 66644639845566466080A9B9FEC5246A /* ManualTimekeeper.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 8AC43D079609983066D849416C5A1403 /* 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"; }; }; + 66698945FC4D14442C3E342CD678DF93 /* BSG_KSJSONCodecObjC.m in Sources */ = {isa = PBXBuildFile; fileRef = 7BF92FEE003EB2F5F01A583E050609E0 /* BSG_KSJSONCodecObjC.m */; }; + 666DE5BBD08B543DE99FE79E6F06422C /* rescaler_neon.c in Sources */ = {isa = PBXBuildFile; fileRef = E065FA866681DBC6AF41756D747C68A8 /* rescaler_neon.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; + 66923A4B3B11B772FFF850AB64976139 /* RemoteObjectsTable.cpp in Sources */ = {isa = PBXBuildFile; fileRef = DFCB3AAEEBFD26F496CF62E461317606 /* RemoteObjectsTable.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + 66953AFD4ED0235E0D40A31FC2C40F52 /* PriorityUnboundedQueueSet.h in Headers */ = {isa = PBXBuildFile; fileRef = BB51EAD13717EEAFF17982B9A4B2D2EC /* PriorityUnboundedQueueSet.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 669A85F4029FA6D9DEB6B9A49774FA49 /* MallctlHelper.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 332DB231FEF514DE507C28F81E6E68C0 /* MallctlHelper.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -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\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors"; }; }; + 66A76620260AF301301987428CB47476 /* BugsnagNotifier.h in Headers */ = {isa = PBXBuildFile; fileRef = 55E276AC1239C55F010D125011B44FC4 /* BugsnagNotifier.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 66A80C84B1AAB32F579240F9D6406C3F /* glog-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = C2552710DA4C088019A97F3466AD3499 /* glog-dummy.m */; }; + 66EC00C3BA308273BCE7E2C4D52616D2 /* RNCConnectionStateWatcher.h in Headers */ = {isa = PBXBuildFile; fileRef = 9685144DF6196BA90C7716B91E231B30 /* RNCConnectionStateWatcher.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 66F45766146594CAEB8594E366D9DEFB /* FIRCLSReport.m in Sources */ = {isa = PBXBuildFile; fileRef = A95740C9DB44B2E16ED1692FC13DA2B0 /* FIRCLSReport.m */; }; + 66F871BF6AF85160C8C93CCB275243D3 /* FirebaseInstallations-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = BA4C9A83EAC6E45C5DD4EDB018A07DBE /* FirebaseInstallations-dummy.m */; }; + 670DD52D8579E7D6C30DA88F5C274AC4 /* SysMembarrier.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 8C541645B9FAEC795D01A0708BA5633E /* SysMembarrier.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -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\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors"; }; }; + 671527222FBCF49129961A432AF9B5F1 /* zh-Hans.lproj in Resources */ = {isa = PBXBuildFile; fileRef = D41720A5821F5E5A55A3AF6F6AE932DC /* zh-Hans.lproj */; }; + 671BEDC069362456CBF5E565B21D3EAD /* FIRCLSNetworkOperation.h in Headers */ = {isa = PBXBuildFile; fileRef = 9E139D4F482DC617373FEB481D027CD4 /* FIRCLSNetworkOperation.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 6747A3599A7AADEF987461560A86E34D /* react-native-mmkv-storage-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = FA122F1129D1B618CC5406E1B8773EDC /* react-native-mmkv-storage-dummy.m */; }; + 6759E111017B26225D33C8243A4B4657 /* RCTRootShadowView.h in Headers */ = {isa = PBXBuildFile; fileRef = AEE04B86B08146D2599D59FFC1455CDE /* RCTRootShadowView.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 675AB1B39920AF74ED63A422F93D08CF /* RCTMultilineTextInputViewManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 859AF4488EA571ABE765C273F5099CED /* RCTMultilineTextInputViewManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 676BE96EA626EE4D9F24B503B3F59F55 /* QBAssetCell.m in Sources */ = {isa = PBXBuildFile; fileRef = 412FDAE74620E2E0B7617F9F78CC6B19 /* QBAssetCell.m */; }; + 678021BD48E9B9ED089A8B576B2F8EF5 /* FIRBundleUtil.m in Sources */ = {isa = PBXBuildFile; fileRef = 2F7BE1370A2430FB08BF1653FD466761 /* FIRBundleUtil.m */; }; + 67D58F41763490192AAD1279243C11D7 /* time-internal.h in Headers */ = {isa = PBXBuildFile; fileRef = B557807E0C158966CF51C08105365454 /* time-internal.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 67DC20534AD5465C10902DCFBB0D7F0C /* SDImageCoder.h in Headers */ = {isa = PBXBuildFile; fileRef = 6A420E90756EE33A727DDA9B85214A9C /* SDImageCoder.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 67E0BFE732F3DD432118F7EFAE59071C /* RCTKeyCommandConstants.m in Sources */ = {isa = PBXBuildFile; fileRef = 4F86D2F0E17B58BEE60783F6389F01F3 /* RCTKeyCommandConstants.m */; }; + 67E340FD8A7BE47ABE0A2397F1A95C72 /* UIImage+ForceDecode.m in Sources */ = {isa = PBXBuildFile; fileRef = 22760F50A98B7C377391FB13AA7FF9DD /* UIImage+ForceDecode.m */; }; + 680B0BEDEC247A84E478C079D0E76085 /* FIRDependency.m in Sources */ = {isa = PBXBuildFile; fileRef = CB0546AF46BE382CDD2C473260367D50 /* FIRDependency.m */; }; + 680FB41CD8D535F3CBCDE5AA80999018 /* HermesExecutorFactory.h in Headers */ = {isa = PBXBuildFile; fileRef = 2D0FDDDC5D9C5920EDAADBF5B0A01C99 /* HermesExecutorFactory.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 6816E61C06287D7B37E00E1761FD488F /* SDAnimatedImageView.h in Headers */ = {isa = PBXBuildFile; fileRef = 01346432177A0F38A31D69490AEFF979 /* SDAnimatedImageView.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 681A3588F0EB3D8EEFB7BE2ED6624D4A /* NetworkSocket.h in Headers */ = {isa = PBXBuildFile; fileRef = A2F4F46BEE9CB108C2568BC67BB843DD /* NetworkSocket.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 68623220BA16D807A53BE179FD34D21E /* Chrono.h in Headers */ = {isa = PBXBuildFile; fileRef = 9FC7EE2E473A597CD0C373812B6AB405 /* Chrono.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 688723653FE5E5D42760F017F5BDB33D /* RSocketConnectionEvents.h in Headers */ = {isa = PBXBuildFile; fileRef = B8D58CDC8C712FF30A0126DFE3675E22 /* RSocketConnectionEvents.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 68A80C25900451C864DA7014541C800D /* FIRVersion.m in Sources */ = {isa = PBXBuildFile; fileRef = 04A1CE2AFA5CDC051BF40B7AFD333CC9 /* FIRVersion.m */; }; + 68D868A2E0A6577DB18B1FBA28866474 /* RCTEventEmitter.m in Sources */ = {isa = PBXBuildFile; fileRef = 83FBD23DAF9A3F2F9BDE451EF2D8950A /* RCTEventEmitter.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + 68DBB12E322BD9BCD8D5B666E7159CF7 /* picture_tools_enc.c in Sources */ = {isa = PBXBuildFile; fileRef = E9ADB6A08763ED49D59E4EBF6C1A0D39 /* picture_tools_enc.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; + 68E32BD6FC044C785C783BC5A12CFF56 /* RCTBackedTextInputViewProtocol.h in Headers */ = {isa = PBXBuildFile; fileRef = 2E61B9C64B2D129473FDA65B7ECD84A2 /* RCTBackedTextInputViewProtocol.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 68F612877CDED957620ABE874A105BE3 /* RCTProfileTrampoline-x86_64.S in Sources */ = {isa = PBXBuildFile; fileRef = 9A4C7AA591718F482310B7277EDA147E /* RCTProfileTrampoline-x86_64.S */; }; + 68F7517D883B243C239CC7838CFFEA27 /* React-jsi-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = C075A5AF12BE0ADE8D0375177F57CB41 /* React-jsi-dummy.m */; }; + 690510EF924CBB9EB1F3739DC422D3D2 /* ARTPattern.h in Headers */ = {isa = PBXBuildFile; fileRef = 12E755A0777B889C32BD2BD50CA56C58 /* ARTPattern.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 690A6A6992A39B73203B2871070678E2 /* RNCNetInfo.m in Sources */ = {isa = PBXBuildFile; fileRef = 1AF0C8044A3AEFF8B90BC48C051D33DE /* RNCNetInfo.m */; }; + 692A76D9211A8561B848DDC7F199A72F /* FIRCLSSymbolicationOperation.h in Headers */ = {isa = PBXBuildFile; fileRef = EA1248254BDC1A7EEA87E7847F61350B /* FIRCLSSymbolicationOperation.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 693054BFA0F010794E6FBD14A08538FF /* Format.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 4BD77DCFD7AF2232774CBA3F66A179E5 /* 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"; }; }; + 69357FB22F7AA63DE7A488CB1AA950FA /* BugsnagPluginClient.m in Sources */ = {isa = PBXBuildFile; fileRef = 749DB5073BCB863BE82DBE226A795ABE /* BugsnagPluginClient.m */; }; + 694BBEF3D267ED286D72B2B011A6DCC8 /* RCTUITextField.h in Headers */ = {isa = PBXBuildFile; fileRef = 60E23A1AB6F172911238053287791884 /* RCTUITextField.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 69827671C869E0C6BDDEE5BB0058D2F1 /* MMKVHandler.h in Headers */ = {isa = PBXBuildFile; fileRef = 9610016162D10430452F416287D66266 /* MMKVHandler.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 69850740DC23D8F7E828E8BAE60DBF0B /* MacAddress.cpp in Sources */ = {isa = PBXBuildFile; fileRef = A7231535DFDA30875B03E9FF8662F2E1 /* MacAddress.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -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\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors"; }; }; + 69A1C0321397775D954D8FD3F090BF82 /* RCTRootView.m in Sources */ = {isa = PBXBuildFile; fileRef = 50B195BF3B7621AB3736102451AB19AC /* RCTRootView.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + 69A8168CEDEDC0CC037373EDFAA50978 /* Futex.cpp in Sources */ = {isa = PBXBuildFile; fileRef = D5CEF3BE626A0F51048E3A98AD749977 /* 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"; }; }; + 69ADC28400DCAC4F55B66B1902DFA75C /* MMBuffer.h in Headers */ = {isa = PBXBuildFile; fileRef = 5599301C23C5AF07564AD8BEDCDFB931 /* MMBuffer.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 69BD619A232A4623B0705D0B4FA91CD2 /* FlowableConcatOperators.h in Headers */ = {isa = PBXBuildFile; fileRef = 01E694FF9802B4585B341D1E0888152D /* FlowableConcatOperators.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 69CD6E44A3261FB28EAF5FB87AADE6B9 /* bignum.h in Headers */ = {isa = PBXBuildFile; fileRef = 858DFF766011288A0CAD951A97205936 /* bignum.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 69D0472C2AD09C233045096DDECDADBE /* FrameSerializer_v1_0.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 9A189C4054AD854F4D21C9A20DDACE85 /* FrameSerializer_v1_0.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -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 -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors"; }; }; + 69D4D1D697488B791D943DD5E1A873A2 /* UMViewManager.h in Headers */ = {isa = PBXBuildFile; fileRef = DC02F58567E3D4E85DCC5F61B24595CD /* UMViewManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 69DA21EE684C84FDC9E8B42F0D4BEC25 /* GDTCORStorageProtocol.h in Headers */ = {isa = PBXBuildFile; fileRef = C0B3EE55CDCAA648213EF694E824B6B4 /* GDTCORStorageProtocol.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 69DF212E88FD06B9E35C8A811F371E01 /* SystraceSection.h in Headers */ = {isa = PBXBuildFile; fileRef = 8332F5A457625A4469705645641E6A30 /* SystraceSection.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 69E0FC1ACC41E0B05C2202BB45C9D58A /* DistributedMutex-inl.h in Headers */ = {isa = PBXBuildFile; fileRef = 4160C448C828C2C631B18EB34826A60B /* DistributedMutex-inl.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 69E112A6EDBA392CFED9EA7BA815DB8B /* RCTTiming.h in Headers */ = {isa = PBXBuildFile; fileRef = 325375ABA11BC069C8DEF3907FB776BE /* RCTTiming.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 69ED3EBBDEB5AA1561A18AE5164E9ED7 /* FBLPromise+Catch.h in Headers */ = {isa = PBXBuildFile; fileRef = 41C6B1BB014C97D2BB8355BC6BF3F4C1 /* FBLPromise+Catch.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 69F27D2305229F7CE93C9F5C1288C1D2 /* SDWebImageManager.m in Sources */ = {isa = PBXBuildFile; fileRef = 2179D202C8285B9D088632C103064341 /* SDWebImageManager.m */; }; + 6A45542412BD62ACD2B76C26613A866A /* RCTConvert+Transform.m in Sources */ = {isa = PBXBuildFile; fileRef = DCE58ABA654029011ED09757A595D63D /* 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"; }; }; + 6A6954EFEFA6A88E30A71886E73EDA7E /* RCTConvert+Text.h in Headers */ = {isa = PBXBuildFile; fileRef = F7952731325EA7F2FB0479BCE002FE43 /* RCTConvert+Text.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 6A7115F60C3D13982138158B58CD9876 /* Align.h in Headers */ = {isa = PBXBuildFile; fileRef = 4592053D0C68A602C15997E94C66E667 /* Align.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 6AA89B347B79A384A535C0BC4DFA60F8 /* RCTBaseTextViewManager.m in Sources */ = {isa = PBXBuildFile; fileRef = 14157214B32F45B3C07C4066FD85B7D5 /* RCTBaseTextViewManager.m */; }; + 6AD4CAF4B8AB1ECDFEBE99BA64A642EA /* ChecksumDetail.h in Headers */ = {isa = PBXBuildFile; fileRef = 8289038768AE1F2DF387C5B3A1608B1B /* ChecksumDetail.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 6AF6AFA3AEF101D5016C06509BBE554E /* SDImageIOAnimatedCoder.m in Sources */ = {isa = PBXBuildFile; fileRef = A40164AC8FC8B27943881073BCCB73E9 /* SDImageIOAnimatedCoder.m */; }; + 6B0777232E6B4DBDC310B03E35502076 /* IOObjectCache.h in Headers */ = {isa = PBXBuildFile; fileRef = 61520A8CC6E222A61F1C7F43272B0F61 /* IOObjectCache.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 6B0BED0D6F09E6BE7FC3723DED144F00 /* RCTJavaScriptLoader.h in Headers */ = {isa = PBXBuildFile; fileRef = A2552646544B387A939585DEDDDF36EE /* RCTJavaScriptLoader.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 6B23B0797FAC9E14751CCC92CF16E3AC /* upsampling_sse41.c in Sources */ = {isa = PBXBuildFile; fileRef = F7BF4B7C110C63EB758933D3B7253787 /* upsampling_sse41.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; + 6B2B51BC5FBB53F94B6A933A7C3DECC7 /* MPMCPipelineDetail.h in Headers */ = {isa = PBXBuildFile; fileRef = 565020DA4DB2607E820FD854333813D0 /* MPMCPipelineDetail.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 6B579D397CC90B8B62BC989BC9FA6E9B /* RCTConvert.m in Sources */ = {isa = PBXBuildFile; fileRef = FC7BA2995D23707B039023ED3FBD9309 /* RCTConvert.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + 6B6C023AC6244017CF6B5114D1BDEF60 /* RNCookieManagerIOS.h in Headers */ = {isa = PBXBuildFile; fileRef = E09266813B868F30441EEE5D3FF16FC5 /* RNCookieManagerIOS.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 6B901EC68C973A5E81BF29D8C65786C1 /* RCTPickerManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 26254BBAC79B0EE3C6046000B1A3CB80 /* RCTPickerManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 6BB921326F75036C1DAF8B9CCA9A4DDC /* UMNativeModulesProxy.h in Headers */ = {isa = PBXBuildFile; fileRef = E34C91358CF624A99CF981CA243796DF /* UMNativeModulesProxy.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 6BB948494A3D45F4D65E9185662F4BCA /* YGLayout+Private.h in Headers */ = {isa = PBXBuildFile; fileRef = 9F46948EA5689BB7E4664C5C76413A5A /* YGLayout+Private.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 6BD69F2C5636BA40ABDD357D8B5BBB48 /* RCTTextShadowView.h in Headers */ = {isa = PBXBuildFile; fileRef = AF69F91177882A1FF2E4F2678A36644C /* RCTTextShadowView.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 6BDB83456597137959DAB8620D7E4403 /* BugsnagEvent.h in Headers */ = {isa = PBXBuildFile; fileRef = B3BF1A52461BB6FE59700736C60FB865 /* BugsnagEvent.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 6BF8456EED78750F85FC2B0609EBEA1B /* RNFBPreferences.m in Sources */ = {isa = PBXBuildFile; fileRef = AE8686E24AB11F8CD87A9FA78E5EB6F6 /* RNFBPreferences.m */; }; + 6BFDE04BEC481A56186541540895AEBB /* SKStateUpdateCPPWrapper.mm in Sources */ = {isa = PBXBuildFile; fileRef = 2876728F171E4A8E647225C921EBF544 /* SKStateUpdateCPPWrapper.mm */; settings = {COMPILER_FLAGS = "-DDEBUG=1 -DFLIPPER_OSS=1 -DFB_SONARKIT_ENABLED=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -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"; }; }; + 6C0217999010AB56C7F4E03573EBFCA3 /* JSIExecutor.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 72A173581A4B518AA08913B6A8F53796 /* JSIExecutor.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + 6C0AE5D906339E63E392DCB8994305EB /* bit_writer_utils.h in Headers */ = {isa = PBXBuildFile; fileRef = D23F052527B5208F2253747BA59D8361 /* bit_writer_utils.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 6C0CCE36F8E4912DFEFE54ADFB7B1107 /* RNCSafeAreaProviderManager.m in Sources */ = {isa = PBXBuildFile; fileRef = D5DD2C250927C510A2B49BFA22469A45 /* RNCSafeAreaProviderManager.m */; }; + 6C0F526A67E8BE75D66EC3B19CDA2916 /* UIView+SKInvalidation.mm in Sources */ = {isa = PBXBuildFile; fileRef = 61A1ABF54320C45F9827E2948BD509F9 /* UIView+SKInvalidation.mm */; settings = {COMPILER_FLAGS = "-DDEBUG=1 -DFLIPPER_OSS=1 -DFB_SONARKIT_ENABLED=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -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"; }; }; + 6C12E8CCBAED1B01D52479EF0857C199 /* dec.c in Sources */ = {isa = PBXBuildFile; fileRef = D09537518C21CE8E47566D4E1FEDE0DF /* dec.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; + 6C16D9AF4D89CFADDBC6928AAF90662C /* SDDisplayLink.m in Sources */ = {isa = PBXBuildFile; fileRef = 789AD0C6584C9EBD747942000D08F1E1 /* SDDisplayLink.m */; }; + 6C173CDFA3B765FCB54F9C3145554D26 /* Barrier.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 219F95BDC452F054919BE390CA44FAD4 /* 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"; }; }; + 6C2702E9C2559DF25271C677EFD299F5 /* BSGNotificationBreadcrumbs.h in Headers */ = {isa = PBXBuildFile; fileRef = 831653DB229DFC377339CD7F1A322DC5 /* BSGNotificationBreadcrumbs.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 6C29140CED7A5498FA7156DA5E9F9D2D /* ThreadName.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 867EB193F8D290E223001EE4A386153A /* 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"; }; }; + 6C67C1E9F1624444EE1567C8A4398E22 /* en.lproj in Resources */ = {isa = PBXBuildFile; fileRef = 21221D7FFD65102133957F9FF86FB2D8 /* en.lproj */; }; + 6C72993BF92D000A3B4A2E293C217D52 /* BugsnagSessionTrackingPayload.m in Sources */ = {isa = PBXBuildFile; fileRef = AB868C42416DE1FB18A0321E8A992EAF /* BugsnagSessionTrackingPayload.m */; }; + 6C86513F37D94CC1BFAB393B739C3170 /* Pods-NotificationService-umbrella.h in Headers */ = {isa = PBXBuildFile; fileRef = 44036119557B4464513ACB6E0DD07799 /* Pods-NotificationService-umbrella.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 6C9547E8E786FF2068E73789FEC4B286 /* TurboModule.h in Headers */ = {isa = PBXBuildFile; fileRef = E4D567FBBB517C1C45BDB8F7B8D44777 /* TurboModule.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 6CAEDD91D307223FCAD6FC809A391726 /* TOCropScrollView.h in Headers */ = {isa = PBXBuildFile; fileRef = 1026FC018D37BBD10EF12B8BF32D2F16 /* TOCropScrollView.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 6CB2029D0B2A652B23929D667365C5D4 /* GULKeychainUtils.h in Headers */ = {isa = PBXBuildFile; fileRef = 89C0E030EA23067337E4B13B2B06A6E4 /* GULKeychainUtils.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 6CCA6863B4DDFB4F65D893B9504C78B8 /* EvictingCacheMap.h in Headers */ = {isa = PBXBuildFile; fileRef = C9D10192873E10EBEFC0FD929A4FDF2A /* EvictingCacheMap.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 6CCC2EA908E8C2FD89CE8B80E28E5BA8 /* FIRCLSNetworkClient.h in Headers */ = {isa = PBXBuildFile; fileRef = F4409C0FB2CCA739DA7E9F19D29A86DB /* FIRCLSNetworkClient.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 6CCF624053F805C74C7E615D658778C1 /* AtomicSharedPtr.h in Headers */ = {isa = PBXBuildFile; fileRef = 3B3788F8258C5AFD581368264FDA6EC0 /* AtomicSharedPtr.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 6CF49AE7B6C309BE2662A69E723097BC /* Hmac.m in Sources */ = {isa = PBXBuildFile; fileRef = 67062CF6AC995696AF7FC66834D2DA65 /* Hmac.m */; }; + 6CF7E39008AA98D5027ABFB68C5478FD /* RCTTouchEvent.h in Headers */ = {isa = PBXBuildFile; fileRef = 5CF09EAFEBBB8AEFCDFC5C6F7320778C /* RCTTouchEvent.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 6D08D57265578D5FFAE3BD7D2D22A7EA /* FIRInstallationsBackoffController.m in Sources */ = {isa = PBXBuildFile; fileRef = C86569314D70F88BEAB99A136A62B607 /* FIRInstallationsBackoffController.m */; }; + 6D19413913691CC77CD4BC5FDC0D96BA /* CodedInputData.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 20536DFECCAD67C1A36C22F8BF82D921 /* CodedInputData.cpp */; settings = {COMPILER_FLAGS = "-x objective-c++ -fno-objc-arc"; }; }; + 6D26320A40A9B861D744AEEEFEBC0BED /* RCTFrameAnimation.m in Sources */ = {isa = PBXBuildFile; fileRef = EDC424833BCC9856A557DEA41C0B762C /* 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"; }; }; + 6D33EC243DDC811E14456E765CC083C7 /* muxinternal.c in Sources */ = {isa = PBXBuildFile; fileRef = 25FC21E2159D275A133F6CE2CC96B31F /* muxinternal.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; + 6D3C7A0F11751AC38D5D28EB2856581D /* RCTActivityIndicatorViewManager.m in Sources */ = {isa = PBXBuildFile; fileRef = 2F3DA8AA76ADE51D1D3003EA248189DB /* RCTActivityIndicatorViewManager.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + 6D3CF28C73BB41714C44DDDE94CFFC44 /* BSGConfigurationBuilder.h in Headers */ = {isa = PBXBuildFile; fileRef = 5499C8939B574B7612F6946AD568F52E /* BSGConfigurationBuilder.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 6D4221604A646F7E15D58162641C7719 /* RNBridgeModule.m in Sources */ = {isa = PBXBuildFile; fileRef = C7CCD833CEF922D9C81E18E742C0C72E /* RNBridgeModule.m */; }; + 6D46F592A9CE37438A8A7E2AAE723102 /* SKDescriptorMapper.h in Headers */ = {isa = PBXBuildFile; fileRef = 5F866D4AE61BE7526CE3BBD429E189A8 /* SKDescriptorMapper.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 6D769E63EE5623D3450CB6E018822BA0 /* Overload.h in Headers */ = {isa = PBXBuildFile; fileRef = F056CE86E8BEF0CA9C81C45C0AC39494 /* Overload.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 6D9365DABB216FECF93E1777FB8FAB0D /* RCTDeviceInfo.h in Headers */ = {isa = PBXBuildFile; fileRef = B7BC6BA1B4698C43960E16494772596A /* RCTDeviceInfo.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 6D97796F1B12FDA9067E22A9FB927C1B /* RNPushKitEventListener.h in Headers */ = {isa = PBXBuildFile; fileRef = E494E88B86ACCB777078C6A4EC044B55 /* RNPushKitEventListener.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 6DB7AFA7D04D78B3DD1A8F51240445EB /* GDTCORUploader.h in Headers */ = {isa = PBXBuildFile; fileRef = 65CC2C68810A23A3FCED86E4F8155C89 /* GDTCORUploader.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 6DD73C0E9BF0D7491DF0B2915830D228 /* Utility.h in Headers */ = {isa = PBXBuildFile; fileRef = B99F525FCC76E52098115B9303C55706 /* Utility.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 6DD983E9F08860EBBAC6E9CD113DFC1A /* RCTTurboModule.mm in Sources */ = {isa = PBXBuildFile; fileRef = 4C846DE60E62FB1B326BB9FACF5BC6B2 /* RCTTurboModule.mm */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + 6DDED8A723F98D9C830FCDA99ECF47B5 /* FIRDiagnosticsData.m in Sources */ = {isa = PBXBuildFile; fileRef = AE775A84C1A36A7AD7B4F6DB894723CD /* FIRDiagnosticsData.m */; }; + 6E101EC1144FD574688F6869DC107AB9 /* FIRInstallationsBackoffController.h in Headers */ = {isa = PBXBuildFile; fileRef = 20EF3CE5AEB50AB1D838CE2D9804AE4B /* FIRInstallationsBackoffController.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 6E2C6A7A7A18B480766B3BCCC2890B34 /* vp8l_enc.c in Sources */ = {isa = PBXBuildFile; fileRef = BB547C3126E1E62124EF98618F077F91 /* vp8l_enc.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; + 6E4C7C49F531440CA5DA9ED0353F454E /* QuotientMultiSet.h in Headers */ = {isa = PBXBuildFile; fileRef = 4B6D85DBCF4A8BF56933AAAC6B61DD88 /* QuotientMultiSet.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 6E5721A21E2D7940501B7DF8751FFAC0 /* Yoga-internal.h in Headers */ = {isa = PBXBuildFile; fileRef = EFB1B434B0478286A13F53815B9C66F3 /* Yoga-internal.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 6E61C518AE8F1CB984643D2DB604CD4F /* FBLPromise+Testing.m in Sources */ = {isa = PBXBuildFile; fileRef = D74B7EF944F7B4B6E8616A0630290244 /* FBLPromise+Testing.m */; }; + 6E659CB41DFD4CA88587D51D5D516D73 /* evthread.c in Sources */ = {isa = PBXBuildFile; fileRef = 68F85BD0F136D7105A87AC820BF1E89B /* evthread.c */; }; + 6E6CA7E11C46C66BB11D936B24282382 /* RNRandomBytes.h in Headers */ = {isa = PBXBuildFile; fileRef = 78C10C123C50DF2AF25F6C0556E7B78C /* RNRandomBytes.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 6E77078EFBE44E665CA184B511E3DE2D /* alpha_dec.c in Sources */ = {isa = PBXBuildFile; fileRef = F6549A9A5F99E62D99D983A74FA4A6A7 /* alpha_dec.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; + 6E7D8A95A0B012464E0893071E214D3D /* Barrier.h in Headers */ = {isa = PBXBuildFile; fileRef = 412784C7C3A0FA90CA9E2DAC98311092 /* Barrier.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 6E8128CA76023F58456F60B4B98A7A70 /* MessageQueueThread.h in Headers */ = {isa = PBXBuildFile; fileRef = 717847177FA8C973CA2A4A05213F08DF /* MessageQueueThread.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 6E911793C10323798EA7F34E06F3354E /* FFFastImageView.m in Sources */ = {isa = PBXBuildFile; fileRef = 12CBD9312625413B9F6A59F70F770748 /* FFFastImageView.m */; }; + 6EAAA6FDA4D6207184E086D3D6DAFA55 /* FIRCLSURLBuilder.m in Sources */ = {isa = PBXBuildFile; fileRef = CDA342781653B4E9B3978FB641B98241 /* FIRCLSURLBuilder.m */; }; + 6EB0B76A4AFE41608F81AEB4797A041B /* SDImageAWebPCoder.h in Headers */ = {isa = PBXBuildFile; fileRef = 12A6235C13B73EA7DC232416E3A3D511 /* SDImageAWebPCoder.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 6EB0D63BA7071E402F4BA0E892B08BFC /* REABlockNode.m in Sources */ = {isa = PBXBuildFile; fileRef = BCAD06DC4FD9F3245E74C83872F0749B /* REABlockNode.m */; }; + 6ECBF5784368998C907A12EEC0B0C73A /* RNCSafeAreaProvider.h in Headers */ = {isa = PBXBuildFile; fileRef = 9462415FFF97F7CF86775C4B3AD3AF3E /* RNCSafeAreaProvider.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 6ED7B5D9E453C11F2473015AB6E1D77F /* RCTDevMenu.h in Headers */ = {isa = PBXBuildFile; fileRef = 792B15B6607D742613734F37D1345212 /* RCTDevMenu.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 6EEBF0CB438BE9AAA9F0BB7F7FEBB3BD /* SharedPromise.h in Headers */ = {isa = PBXBuildFile; fileRef = 2A65D7B932BCE0C2808BB5E03C649E0E /* SharedPromise.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 6F018B8B904C5B98D4F49822187A7B54 /* RNDateTimePickerManager.m in Sources */ = {isa = PBXBuildFile; fileRef = E31C19D8AFC44ECFFDC07485931767FC /* RNDateTimePickerManager.m */; }; + 6F11ED230882BE37F99FB78E9DAE3F47 /* AsyncTrace.h in Headers */ = {isa = PBXBuildFile; fileRef = E61799849438E443FA8F89CB1E7DA49D /* AsyncTrace.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 6F1969232CB01DB5AD4422C4D4B3FD54 /* FIRCLSInternalReport.h in Headers */ = {isa = PBXBuildFile; fileRef = 18F36F9B70BC0D51553EACBD420A2ECA /* FIRCLSInternalReport.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 6F1A1305BF0302457027057CE1EC5745 /* MemoryFile.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 8DC96E731C0C41D2DD02BFE44F134D1B /* MemoryFile.cpp */; settings = {COMPILER_FLAGS = "-x objective-c++"; }; }; + 6F1F8EF644016A395B41D4E944A6BADE /* react-native-cookies-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 577905BFD373244428CDDA255A16A0EB /* react-native-cookies-dummy.m */; }; + 6F221D7F6CB8F6D47C61F60872300E5F /* RCTWebSocketExecutor.mm in Sources */ = {isa = PBXBuildFile; fileRef = DC8E48ECC645482C7260C86742DC8B6A /* 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"; }; }; + 6F2E0B10F1838A145910B03EB5306FBF /* ar.lproj in Resources */ = {isa = PBXBuildFile; fileRef = 7E9EB301924F7F2F85D062091DB9F47C /* ar.lproj */; }; + 6F4060BBEDBF097C01007CC6EFAFA331 /* RCTConvertHelpers.mm in Sources */ = {isa = PBXBuildFile; fileRef = 60CE2F8F6A20BC6708038724C9039D4A /* RCTConvertHelpers.mm */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32"; }; }; + 6F4491B286C532DECCB2E479750C8C1F /* RCTMessageThread.mm in Sources */ = {isa = PBXBuildFile; fileRef = EF38B10E6F6B60A3311655668D07E61F /* RCTMessageThread.mm */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + 6F451D5E3ED3C209201E05D2C0B08FF6 /* RCTStyleAnimatedNode.h in Headers */ = {isa = PBXBuildFile; fileRef = 4AD42BDC89311DA46FC142825692FAEA /* RCTStyleAnimatedNode.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 6F5381B4C48F1D4A75BABBE7A89CF69F /* Assume.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 194219E1A9BEAF2FEEA1934B5909C073 /* 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"; }; }; + 6FA21518D6BFF360A2A8C8DCF07214C5 /* bit_reader_utils.c in Sources */ = {isa = PBXBuildFile; fileRef = 8DDB1537BDCEF6E634F1E58804272357 /* bit_reader_utils.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; + 6FCD7520DCBBB2F65108ADD68D8EF005 /* GULSceneDelegateSwizzler_Private.h in Headers */ = {isa = PBXBuildFile; fileRef = A66443B2E29B8D449409ECED0B36858A /* GULSceneDelegateSwizzler_Private.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 6FDF5053FA8AEBD05C09BD8E522B61E9 /* RNFBAppModule.m in Sources */ = {isa = PBXBuildFile; fileRef = E20CAC7035E523A79C4F926DC98E7941 /* RNFBAppModule.m */; }; + 700B3DF4465216C693457CA16D58407F /* RCTImageViewManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 43FE1D1A36FFC54AF8CAFCC9E421B0D0 /* RCTImageViewManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 700D42B4A7AF81A17C26200CAF1A9386 /* Futex-inl.h in Headers */ = {isa = PBXBuildFile; fileRef = 7934C6BE5A323985ACBA856C37C6DBAC /* Futex-inl.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 7018BF6E51D08F53749EC182A6CCB2FD /* FormatTraits.h in Headers */ = {isa = PBXBuildFile; fileRef = BCE8E7A1308177D526F02E3F790A7267 /* FormatTraits.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 701CB1346973C73C32DFDDFF4C23E6F2 /* RCTImageSource.m in Sources */ = {isa = PBXBuildFile; fileRef = 39405A7559E4A2177D7CDBD659A12B11 /* RCTImageSource.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + 7021E11D519B2412A1F6933F0E986845 /* EventHandler.cpp in Sources */ = {isa = PBXBuildFile; fileRef = E929425F5DCAA5C70F87531A9D4C0899 /* EventHandler.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -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\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors"; }; }; + 702D4A46D8CDEB63D7B024F7C3980E91 /* AtomicNotification.h in Headers */ = {isa = PBXBuildFile; fileRef = 614D97D81279FEAF80BA11EA8B87E525 /* AtomicNotification.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 7037271A15F2CB08758C6BEDFB9051A2 /* BugsnagSystemState.m in Sources */ = {isa = PBXBuildFile; fileRef = 7787CE1C516F3A760BCAC0408D65DC68 /* BugsnagSystemState.m */; }; + 703F1DC06B49148D94B7CA0343E2CA4F /* RNFBJSON.m in Sources */ = {isa = PBXBuildFile; fileRef = D5C829CCC3F442A701CD2E2F09B739CB /* RNFBJSON.m */; }; + 704E4D97B1E7213A57D916F9D537F958 /* lossless.h in Headers */ = {isa = PBXBuildFile; fileRef = 9957D9BFB06677250280FB41B8D55747 /* lossless.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 70650B721D32ED886B668AD2D6A73ED1 /* AsyncTrace.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 9FE264DC6DA612A4908D1B7682BF366F /* 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"; }; }; + 707CE58DD716CCAC79AA0E87EA03E104 /* FlipperCppBridgingConnection.mm in Sources */ = {isa = PBXBuildFile; fileRef = 49289D827816FBB4F965723871C61FF4 /* FlipperCppBridgingConnection.mm */; settings = {COMPILER_FLAGS = "-DDEBUG=1 -DFLIPPER_OSS=1 -DFB_SONARKIT_ENABLED=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -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"; }; }; + 708386D5D7E50DC7AE439A9AF86E10B1 /* EnvUtil.h in Headers */ = {isa = PBXBuildFile; fileRef = D076A104DC0E6EFC414C82042DDD1B94 /* EnvUtil.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 708B1677A4A90EEBE22FF1EF37FA0E9F /* FIRDiagnosticsData.h in Headers */ = {isa = PBXBuildFile; fileRef = 1DA22A8BB0CCBC35373CA18887183FA1 /* FIRDiagnosticsData.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 70A6663F36196608669C5809C9750CF7 /* SDWebImageDownloaderOperation.m in Sources */ = {isa = PBXBuildFile; fileRef = 6881EAECE286262C32623455500E16A0 /* SDWebImageDownloaderOperation.m */; }; + 70FC0423D5D85A10276C019472AD7DAE /* RCTAes.h in Headers */ = {isa = PBXBuildFile; fileRef = BC531872A8B8408BB22C3143C0E93C2C /* RCTAes.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 70FD1459DAF23F402E8475711B50CEFB /* FIRAnalyticsConfiguration.m in Sources */ = {isa = PBXBuildFile; fileRef = 112C873DEA2E74343B0275D53DE2B1A5 /* FIRAnalyticsConfiguration.m */; }; + 7108FF19216CEFA91B70E377013F42B8 /* FIRCLSRecordIdentity.h in Headers */ = {isa = PBXBuildFile; fileRef = BB9E443E24D77E23B856F91F909B75FF /* FIRCLSRecordIdentity.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 710F57D653259521280B34661797F7E9 /* ARTRenderableManager.m in Sources */ = {isa = PBXBuildFile; fileRef = EE0C2DE45F182C1434D3B095679A8C14 /* ARTRenderableManager.m */; }; + 71261A262CD67EBA7FA084546F5B4E60 /* GULNetwork.h in Headers */ = {isa = PBXBuildFile; fileRef = 85B3131B3BE42565EBCF1FC623E68D8B /* GULNetwork.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 71328CD2BD7C185A1DDD7DC315AD303E /* MMKV_IO.cpp in Sources */ = {isa = PBXBuildFile; fileRef = E7DC01D9F4735AD047F9CF5FE1EDFD90 /* MMKV_IO.cpp */; settings = {COMPILER_FLAGS = "-x objective-c++ -fno-objc-arc"; }; }; + 7135D0F6E966B9619CC6955C74B18AAB /* GULNetworkConstants.h in Headers */ = {isa = PBXBuildFile; fileRef = 08BE1AD9E69EDE2425AF86A0B0EC0BBC /* GULNetworkConstants.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 713C6F605871E06DE7AB2C2E2F5649FA /* IDStore.m in Sources */ = {isa = PBXBuildFile; fileRef = 0F99C17F54AFF30DC1CC8A0FCED7A624 /* IDStore.m */; }; + 715A052ED8977DA1CBB4B8381ADCDBE4 /* TimedDrivableExecutor.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 9336128E4BB130A5809670702420D6C4 /* TimedDrivableExecutor.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -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\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors"; }; }; + 716C3D75774219593ADBFD710534546A /* HighlighterView.h in Headers */ = {isa = PBXBuildFile; fileRef = 1F1AA338890A235F39D8D7B65FC57680 /* HighlighterView.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 7183BC486E567391C52F0BD24D2C8DE8 /* Color+Interpolation.m in Sources */ = {isa = PBXBuildFile; fileRef = 7DACE2A66D16CFB3CB12CA2CEF2A5D4C /* Color+Interpolation.m */; }; + 719B2136E608DB4D96E4921A95EBF8C3 /* Hazptr-fwd.h in Headers */ = {isa = PBXBuildFile; fileRef = 1DC3B08C2A3EA48E6DAFE3C6E4DF4E0C /* Hazptr-fwd.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 71A2C24513C16EBE4C14054F375BD33C /* TOCropViewConstants.h in Headers */ = {isa = PBXBuildFile; fileRef = 5DA43F454DC5CD925880DA94DC007DAD /* TOCropViewConstants.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 71BD3470BD6A15C46487FDF26EBE3C21 /* ms.lproj in Resources */ = {isa = PBXBuildFile; fileRef = F7A2AF898F78167F67A4A2CA7158BD64 /* ms.lproj */; }; + 71D7BE63E04A7F4B03963A33431139F5 /* RCTReloadCommand.h in Headers */ = {isa = PBXBuildFile; fileRef = 5A47CF01E148CBB4EBE9ACFF3AE56AE5 /* RCTReloadCommand.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 71F0639D4A0105F68A9122A19C53D26E /* RCTAdditionAnimatedNode.h in Headers */ = {isa = PBXBuildFile; fileRef = 14A8F1B794881C2676CC886279448BA7 /* RCTAdditionAnimatedNode.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 71F13520F142F6CD68844A641EDD1FF1 /* FIRInstallationsIDController.h in Headers */ = {isa = PBXBuildFile; fileRef = 0E18B5EFACA1F01D22B93F8AD83F8D64 /* FIRInstallationsIDController.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 7200ED8D21C769903031B72F03FA5E68 /* ObservableConcatOperators.h in Headers */ = {isa = PBXBuildFile; fileRef = B00B844E645A4E61C5FF2BA98F7EC1E1 /* ObservableConcatOperators.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 720C6FED7064F5B2CA7DFABC3737EEE0 /* CertificateUtils.h in Headers */ = {isa = PBXBuildFile; fileRef = EE4CA88257AAA729310362DA3CFECB7C /* CertificateUtils.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 72358B62A263233A6A76871A8D03B6BB /* analysis_enc.c in Sources */ = {isa = PBXBuildFile; fileRef = 7E2C9B2D0C3A09FFAEC096EBC70A7138 /* analysis_enc.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; + 72585FB3DC33DE64DA36F1395AF6D28C /* FIRCLSPackageReportOperation.h in Headers */ = {isa = PBXBuildFile; fileRef = 12DCF98B7E6F60B84F88FCCB4F531BDC /* FIRCLSPackageReportOperation.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 7261ED5DBF9549B8EB9D33B100FBD8EE /* RNCAssetsLibraryRequestHandler.m in Sources */ = {isa = PBXBuildFile; fileRef = 6E4E4C4C47575EB1A381962922AFF296 /* RNCAssetsLibraryRequestHandler.m */; }; + 72882B109E678844A6C46D986FE0008E /* quant_levels_utils.c in Sources */ = {isa = PBXBuildFile; fileRef = FB95C4A95B0A1FA29CF82699CDF9CFBD /* quant_levels_utils.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; + 729177AC4FB9AB7E5636278ECFF278E6 /* ARTText.m in Sources */ = {isa = PBXBuildFile; fileRef = 05022649DAA6871B26D0DE0DB3506559 /* ARTText.m */; }; + 729336D22B514CF210ED7CA801C32FD0 /* SingletonStackTrace.h in Headers */ = {isa = PBXBuildFile; fileRef = 9E70C4CDC4883FAF7985FBA60AC0887C /* SingletonStackTrace.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 72A0E8FDFE35A40DED03137BBD91453D /* CallstackHelper.h in Headers */ = {isa = PBXBuildFile; fileRef = BDEB977E76B4D94A94A55E8BFEDC72EF /* CallstackHelper.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 72CC97B4F403E43D149281930D5CDDD0 /* RNFBAppModule.h in Headers */ = {isa = PBXBuildFile; fileRef = 92931E89F8A7F0F1C206F2E85A98BBE6 /* RNFBAppModule.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 72F3BC2265A372E83C3178B3EBC113A5 /* RNPushKit.h in Headers */ = {isa = PBXBuildFile; fileRef = A48DF5FFA469292B32E95C6BE59BAE9F /* RNPushKit.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 7313AF4971DAC079790EB24E97D905E7 /* SharedMutex.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 01F2AAFA56C952F1661E1128EA05303C /* 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"; }; }; + 7313E52D62761D11CB2D373A0AFD14C9 /* SingletonStackTrace.cpp in Sources */ = {isa = PBXBuildFile; fileRef = D7738A887BFB896B8399D095EB5585B5 /* 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"; }; }; + 73180619049657209DC7D86AC88197A4 /* RNCSafeAreaViewMode.h in Headers */ = {isa = PBXBuildFile; fileRef = B984B35392A6C5B1B772CE97FC230C64 /* RNCSafeAreaViewMode.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 732C3E41AB34027F0FA280EACB1D960E /* F14Set-fwd.h in Headers */ = {isa = PBXBuildFile; fileRef = A0E8607987523B8DC4650ADA3DD4954C /* F14Set-fwd.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 732F685CB0CD6185E3C58C5B23D111AB /* FirebaseInstallationsInternal.h in Headers */ = {isa = PBXBuildFile; fileRef = F37CAA1BEBD73DD2B9788530A732D1B5 /* FirebaseInstallationsInternal.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 73363905D036C07F4186B1C85EA29086 /* UMUtilitiesInterface.h in Headers */ = {isa = PBXBuildFile; fileRef = A0CEAD7740B748E268BE507A6D57D3E3 /* UMUtilitiesInterface.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 734530C3D3B6CE3CAB7BE35B0B4E47CE /* FlipperClient.h in Headers */ = {isa = PBXBuildFile; fileRef = F2A38F04DB883450BE8C18345A3BDDA3 /* FlipperClient.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 73488AB62DB09C1441FE4DB5C752616D /* ResumeIdentificationToken.h in Headers */ = {isa = PBXBuildFile; fileRef = E6DE1541D11FE040E5609B01D20E0545 /* ResumeIdentificationToken.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 734A5E121F8DBACDB165F22374831EBB /* Util.h in Headers */ = {isa = PBXBuildFile; fileRef = 8A48FF7FA570E1B9E738C674D993E353 /* Util.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 7358D1E02BF35E11E18A7B64AEDEDD86 /* YGNode.cpp in Sources */ = {isa = PBXBuildFile; fileRef = DCDA4E7345D70E01B95518BAC48043C2 /* YGNode.cpp */; settings = {COMPILER_FLAGS = "-fno-omit-frame-pointer -fexceptions -Wall -Werror -std=c++1y -fPIC -fno-objc-arc"; }; }; + 7361CBE2C1184DABB2C820A53B5E1408 /* RCTRedBoxSetEnabled.h in Headers */ = {isa = PBXBuildFile; fileRef = 5837A01194E96B3A00B4B14C1EA7EB32 /* RCTRedBoxSetEnabled.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 7368DAF4F1A6D47816005BCE05065217 /* FFFastImageSource.h in Headers */ = {isa = PBXBuildFile; fileRef = 571495843F48EC7A9AA83CD113E635F4 /* FFFastImageSource.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 7371BD09BEE4E15B6D4F07AFB698E0AE /* signal.c in Sources */ = {isa = PBXBuildFile; fileRef = F50E25A082569D3B41EF4955CEA52004 /* signal.c */; }; + 7379678B0C4DC7D0EA8C32E4ED60E466 /* MMKVLog_Android.cpp in Sources */ = {isa = PBXBuildFile; fileRef = E03AF46D82E888F3C4DF35C8FDD8CA5B /* MMKVLog_Android.cpp */; settings = {COMPILER_FLAGS = "-x objective-c++ -fno-objc-arc"; }; }; + 738372055EA4F15918D616ACA5FB15FB /* select.c in Sources */ = {isa = PBXBuildFile; fileRef = F6C827663F55B3E2CA36D075AA95F4BF /* select.c */; }; + 73C66BC6FC7EF2F2177035AC773E11B4 /* FIRCLSOperation.h in Headers */ = {isa = PBXBuildFile; fileRef = 5046672D5CD2E489583B344B69E16C33 /* FIRCLSOperation.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 73C814550679AE468A1946015D2F0F02 /* picture_csp_enc.c in Sources */ = {isa = PBXBuildFile; fileRef = 876BC048C46BD2A30D7247DE9535BB0F /* picture_csp_enc.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; + 73DA3F2DBADECDA07CAA0A8A7BB6913F /* RCTImageURLLoaderWithAttribution.h in Headers */ = {isa = PBXBuildFile; fileRef = 6AE15822D09BA9A976CC03122204B366 /* RCTImageURLLoaderWithAttribution.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 73E652BF7E0000DE1560E4173FD963D6 /* BSG_KSCrashDoctor.m in Sources */ = {isa = PBXBuildFile; fileRef = 2057A12148204AD662E2D930FF0F0F1B /* BSG_KSCrashDoctor.m */; }; + 74025AA92E23D9C1BF9A40260E53FB74 /* StaticSingletonManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 6F0891D6008317C7713937C7C563AF9F /* StaticSingletonManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 7415D83E99728821B17D4D3DE4DC8A3F /* RCTSinglelineTextInputView.h in Headers */ = {isa = PBXBuildFile; fileRef = 21E9B10350B20B46F457F1680D484330 /* RCTSinglelineTextInputView.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 741690BBF551C34EA3401F2D23ADC094 /* MallctlHelper.h in Headers */ = {isa = PBXBuildFile; fileRef = FBD0EFB0FDFF95518D453A7BFB2EBC0B /* MallctlHelper.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 7442435BD27B83761D123BA7D41245BA /* FIRCLSRecordBase.m in Sources */ = {isa = PBXBuildFile; fileRef = 710B93B6279FA34175A5EC56071595E3 /* FIRCLSRecordBase.m */; }; + 7446A247FE6186D7EC1500E016CEE6CE /* Config.h in Headers */ = {isa = PBXBuildFile; fileRef = E9D69DE3A4C9582AD3FCD7AF84477754 /* Config.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 744ED58845F155A7A6F8522102FEC205 /* FIRCLSCodeMapping.m in Sources */ = {isa = PBXBuildFile; fileRef = A10972E529A6C2808B08DC7C481B6269 /* FIRCLSCodeMapping.m */; }; + 744F4B2E157F5A8F59D41BD70AFD852B /* FIRAValue.h in Headers */ = {isa = PBXBuildFile; fileRef = 4597FB90204FAE8ED591532A95E0A588 /* FIRAValue.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 745D719F8EBC669BFD237E6D5C5D1608 /* SocketFastOpen.cpp in Sources */ = {isa = PBXBuildFile; fileRef = E3D8666BBACE87E4BE1D6B8FAC65D0C9 /* SocketFastOpen.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -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\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors"; }; }; + 746320644311D743D6A0355853EF5E40 /* SKTouch.m in Sources */ = {isa = PBXBuildFile; fileRef = F6022B2589E185C6020F07C84EB20DB4 /* SKTouch.m */; settings = {COMPILER_FLAGS = "-DDEBUG=1 -DFLIPPER_OSS=1 -DFB_SONARKIT_ENABLED=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -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"; }; }; + 746B6BAA3591C881A47E7B174730FF01 /* RCTURLRequestDelegate.h in Headers */ = {isa = PBXBuildFile; fileRef = 69F49AD1BC7A034C14092E962BD289F3 /* RCTURLRequestDelegate.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 7473443313F17F38B5B4BAD1B6F6E21B /* RCTUIImageViewAnimated.m in Sources */ = {isa = PBXBuildFile; fileRef = D40109BDD7D7379FCEE56F266A8BEE2C /* 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"; }; }; + 748E260A3E737D215CD8CF8E3EE1093E /* UMJavaScriptContextProvider.h in Headers */ = {isa = PBXBuildFile; fileRef = 2271E66BDA9F93DB2A1611868A2E746C /* UMJavaScriptContextProvider.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 74BBCD8076758367A2E601E093DBEF08 /* RNForceTouchHandler.m in Sources */ = {isa = PBXBuildFile; fileRef = 30EBFBFA2F08F5ABDF1FFC455ECFEC69 /* RNForceTouchHandler.m */; }; + 74CC6757E05507477C7F378620DEE66C /* RCTSegmentedControl.h in Headers */ = {isa = PBXBuildFile; fileRef = 2CF135AF3A7A0D72EBC7E189B34DE27D /* RCTSegmentedControl.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 74DEE378AC1043C4FCA5BE4F64B8A237 /* RCTRawTextShadowView.m in Sources */ = {isa = PBXBuildFile; fileRef = 42245DA23C66C218041FCAC33FE9FBB5 /* RCTRawTextShadowView.m */; }; + 74E0DC5132585DDEA939288348BE0297 /* GULAppEnvironmentUtil.h in Headers */ = {isa = PBXBuildFile; fileRef = 8DBEFA033BCEE191637F28CD6FF5D650 /* GULAppEnvironmentUtil.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 74ED714617CFF9C0CC961B7E0C7EF7D9 /* React-perflogger-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = E6587A2DFF4F9DDCDF2073DB2041C48F /* React-perflogger-dummy.m */; }; + 750213EA7615D4EE364B7A3EB628CD7E /* NativeModule.h in Headers */ = {isa = PBXBuildFile; fileRef = 8D03DF2B17B4C441CDAE156873B13B97 /* NativeModule.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 752AB2110E825BE0B2A2435A158A63DA /* GULReachabilityMessageCode.h in Headers */ = {isa = PBXBuildFile; fileRef = A2442D48231140AD6BCB586CE92C9E66 /* GULReachabilityMessageCode.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 7535A245FC3DA03F4196518A99F90BC2 /* FIRCLSDataCollectionArbiter.m in Sources */ = {isa = PBXBuildFile; fileRef = 5D541543B3E5D49492432F7DBE174E34 /* FIRCLSDataCollectionArbiter.m */; }; + 75665C46ED96E3D027AE5AFC169461E5 /* BridgeNativeModulePerfLogger.cpp in Sources */ = {isa = PBXBuildFile; fileRef = EB662EDE131C1868971DF3AA17B0F431 /* BridgeNativeModulePerfLogger.cpp */; }; + 757943E00401D1C2EE2BB062EF2B5E4B /* RCTSettingsPlugins.h in Headers */ = {isa = PBXBuildFile; fileRef = 65E116481ECE45EDC5359DFFCBE95964 /* RCTSettingsPlugins.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 758E5C30C6B6008D30750F9832711DF5 /* Shell.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 5F845C0B61702CD74C70D2F1C766B063 /* Shell.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -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\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors"; }; }; + 759CF4CE0D9EA0CF514BDDB43F37826D /* RCTBaseTextShadowView.m in Sources */ = {isa = PBXBuildFile; fileRef = AB46E437A1102228110B8730B5ACA59E /* RCTBaseTextShadowView.m */; }; + 75B5201E7E740AFF476FD9F71DC7FA0D /* RCTAnimationType.h in Headers */ = {isa = PBXBuildFile; fileRef = F21A04FAEE0F91FAB4A9EABA1D703194 /* RCTAnimationType.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 75B7528A26AF6C0CBC84C022FDA9DCE3 /* REAAlwaysNode.m in Sources */ = {isa = PBXBuildFile; fileRef = 14DE908F2480D77FD7F3ECA55C39E8B1 /* REAAlwaysNode.m */; }; + 75BCD38B623FA6BD81C8C0C88F55F49A /* SequencedExecutor.h in Headers */ = {isa = PBXBuildFile; fileRef = 180B2B732D98EF0E53FCC4AD48D7A10D /* SequencedExecutor.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 75BEC79C63BB1095757F29C25B8D2DF9 /* Exception.h in Headers */ = {isa = PBXBuildFile; fileRef = A38B26C9211D7346DB821D290C901A04 /* Exception.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 75C7FB9FE4AA499D6145F62036A26A77 /* nanopb-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = E61E98696B10F024465A30044F503482 /* nanopb-dummy.m */; }; + 75D89E285F32F8AC94B19D0CFB07793F /* UIImage+CropRotate.h in Headers */ = {isa = PBXBuildFile; fileRef = 502CD539F5D6390007138B8B692BD0D0 /* UIImage+CropRotate.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 75DA3ADDF1E831A90EA2F5140DDD9277 /* RCTI18nManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 0F5BB0D26E4F6DE586FDC4493B707B37 /* RCTI18nManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 75DD308CB6A774C21439648598B8DB68 /* StackTraceUtils.h in Headers */ = {isa = PBXBuildFile; fileRef = 4DE570E4EA43B841487A2B1C4E71F0A9 /* StackTraceUtils.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 75E139140D671FBDE88B9D566452FA09 /* RCTSurfaceHostingProxyRootView.h in Headers */ = {isa = PBXBuildFile; fileRef = 8AEAF0539C1E2A7D3AB5BDF7EAF0247E /* RCTSurfaceHostingProxyRootView.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 7606EDCC6BBF7F0EA553C6B324CDB6B0 /* ParkingLot.h in Headers */ = {isa = PBXBuildFile; fileRef = C52C94B0900C21DCE054013A5071B4F3 /* ParkingLot.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 761049C6E5852ED1855BF4900DEFE4AC /* FIRErrors.m in Sources */ = {isa = PBXBuildFile; fileRef = D459413E258EF08FE6AD5DE93DE10076 /* FIRErrors.m */; }; + 76380737B6CC6FFC6288E1B45DE75B0D /* AtomicHashMap.h in Headers */ = {isa = PBXBuildFile; fileRef = AD37EAA1168CC304AA093D62E194D2D1 /* AtomicHashMap.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 763DD6BC01A6C254B2B25C9AD9C24835 /* RequestResponseRequester.h in Headers */ = {isa = PBXBuildFile; fileRef = CF02DBB9D807079D900DCBC21F9261BC /* RequestResponseRequester.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 764AAD7D4556AA1D1AB6096BEC77085D /* FIRLibrary.h in Headers */ = {isa = PBXBuildFile; fileRef = B65BD07C5CB9F791C2F239B4C88BD2A4 /* FIRLibrary.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 764FE9DE50BEF7F6AF3DDE46F8E72C70 /* RCTTiming.mm in Sources */ = {isa = PBXBuildFile; fileRef = F01CA0A6C121628F76304AE1630DBC03 /* 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"; }; }; + 766036991B7A3FE9E88C4C34F627EF0C /* Executor.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 84BC7F3D2DF062075DCDB5DDFE548AD4 /* Executor.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -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\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors"; }; }; + 766D65440C42BE2CDEAABF1CE4963730 /* RNCAppearanceProvider.h in Headers */ = {isa = PBXBuildFile; fileRef = 433BA9B523064975EF515515F6C1C261 /* RNCAppearanceProvider.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 768420CFAC428710F7EDC386F62390BB /* FIRCLSMultipartMimeStreamEncoder.h in Headers */ = {isa = PBXBuildFile; fileRef = BD94D174AF2F42552D523C7512ACF60D /* FIRCLSMultipartMimeStreamEncoder.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 768FD678DF0107C1055314B77EE16A3E /* TurnSequencer.h in Headers */ = {isa = PBXBuildFile; fileRef = 9F07C8CE434FB8B78BC5450419469744 /* TurnSequencer.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 769D876AF550FAF17144EC1E0B3AD06B /* EXFileSystemLocalFileHandler.m in Sources */ = {isa = PBXBuildFile; fileRef = EBC61984E9A791396BA225C68D3F7C9C /* EXFileSystemLocalFileHandler.m */; }; + 76B5E22B814196ED54FD041392559067 /* RCTProfileTrampoline-i386.S in Sources */ = {isa = PBXBuildFile; fileRef = BBB6D44F456CC2B7A2B9F95DBCBD4686 /* RCTProfileTrampoline-i386.S */; }; + 76B7E5912A4AA973C24467DC9236A3AF /* MicroLock.h in Headers */ = {isa = PBXBuildFile; fileRef = E98ED8687320DD7F5B1A63F0E263BE94 /* MicroLock.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 76CEC20B1A5CE7D3C056F886E4ECCF87 /* RCTJavaScriptExecutor.h in Headers */ = {isa = PBXBuildFile; fileRef = CC5A512255584A64F4972E8E168758BB /* RCTJavaScriptExecutor.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 76D660277589347BDABE77D125943CFD /* AtomicNotification.h in Headers */ = {isa = PBXBuildFile; fileRef = 1E056EA80C08502FA5C2B3EDE2615AC6 /* AtomicNotification.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 76DFE67A360211093104F59FC1DD7225 /* RCTView+SafeAreaCompat.m in Sources */ = {isa = PBXBuildFile; fileRef = D2181DD524EF3D415808B30363562037 /* RCTView+SafeAreaCompat.m */; }; + 76E27AB61E7EBA73E54128F433878D6C /* AtFork.h in Headers */ = {isa = PBXBuildFile; fileRef = D67ACC2314FA2B658F92E5F068BFEE0F /* AtFork.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 76EDAE2B2C19EEBD786B950168002CF4 /* EXWebBrowser.m in Sources */ = {isa = PBXBuildFile; fileRef = 789946CE41276568CA35C0197BB15913 /* EXWebBrowser.m */; }; + 76F8D2D60500E7CD242206DB344C88B1 /* GDTCORReachability.m in Sources */ = {isa = PBXBuildFile; fileRef = 50A32D19B29D8D95569BA66C67C2598B /* GDTCORReachability.m */; }; + 77197D22B64AC0E67FC5F993ABBBBF8B /* log_severity.h in Headers */ = {isa = PBXBuildFile; fileRef = 06004423AC586CB77ACA75094F5A49CE /* log_severity.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 7727D0D04494229A276C517BF3C01386 /* Unistd.h in Headers */ = {isa = PBXBuildFile; fileRef = 8A686452C19195C621FE11F0824B780C /* Unistd.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 7736EB5FC8539EA2386AFE8EA9FC1458 /* REAAlwaysNode.h in Headers */ = {isa = PBXBuildFile; fileRef = 668660252722E7643C38397952F90CC4 /* REAAlwaysNode.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 775488287A4689B1FD16523B9CEADE9C /* SDWebImageOperation.m in Sources */ = {isa = PBXBuildFile; fileRef = BB373DBC911B3BFAE3EB62B2039ACEBC /* SDWebImageOperation.m */; }; + 7758183F47357814C59B378BD1E09173 /* BSG_KSCrashSentry_CPPException.h in Headers */ = {isa = PBXBuildFile; fileRef = 5D65FEA08350DF25703FBEB071660B67 /* BSG_KSCrashSentry_CPPException.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 77830BAD437AD92388FC0FB34931BEBC /* FIRInstallationsAuthTokenResultInternal.h in Headers */ = {isa = PBXBuildFile; fileRef = 331DFB278B4A619A11F7AA0B45220887 /* FIRInstallationsAuthTokenResultInternal.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 77926167A12FD13BC62872806255D612 /* RCTConvertHelpers.h in Headers */ = {isa = PBXBuildFile; fileRef = 89C39962E92A4BF26CBB92F6138DCC8B /* RCTConvertHelpers.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 77931165EF4C3D5E345752A28601F000 /* SKViewDescriptor.mm in Sources */ = {isa = PBXBuildFile; fileRef = 30F4ABA56CCCA41721F8816889182B60 /* SKViewDescriptor.mm */; settings = {COMPILER_FLAGS = "-DDEBUG=1 -DFLIPPER_OSS=1 -DFB_SONARKIT_ENABLED=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -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"; }; }; + 77BC4F16CCA16F1BEEEE5624A4243842 /* upsampling_msa.c in Sources */ = {isa = PBXBuildFile; fileRef = 8C5B457FF2BCABC33122783D85E61854 /* upsampling_msa.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; + 77C011CE446D25167C6EED2F89204A67 /* RCTUIManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 6E28455D8624804F2480BA8FC54717A4 /* RCTUIManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 77C75675FA2DCD64142B414546899501 /* RNFetchBlobRequest.h in Headers */ = {isa = PBXBuildFile; fileRef = 71CD9E44DA64C989303E710807944A2E /* RNFetchBlobRequest.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 77FF633532BB2E1210138FA4C0EE53C7 /* FIRHeartbeatInfo.h in Headers */ = {isa = PBXBuildFile; fileRef = A9C73AABAB83395DEABC45D6983F91D7 /* FIRHeartbeatInfo.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 780C81B5BEBF13C3B163DF4CC32A393E /* EXReactNativeUserNotificationCenterProxy.h in Headers */ = {isa = PBXBuildFile; fileRef = ED6230AA27C1221321280A84565C2157 /* EXReactNativeUserNotificationCenterProxy.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 78158C75B93A3B7AA3F0C6E44E9A7C70 /* FIRCLSRecordHost.h in Headers */ = {isa = PBXBuildFile; fileRef = F3C1F85D975715828845F12903D106E6 /* FIRCLSRecordHost.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 7826E6F107BBF51B4053095D6438627D /* StreamResponder.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 4B410A2FD9231817FB4F46C73F7032CF /* StreamResponder.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -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 -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors"; }; }; + 7850EB019E189B41E60B79126FC521AF /* muxi.h in Headers */ = {isa = PBXBuildFile; fileRef = 7B33457AAB18BD536BCA858D33C2EF4D /* muxi.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 7851A11228576A90645578D5B2E62E59 /* ThreadLocal.h in Headers */ = {isa = PBXBuildFile; fileRef = 490F194BB4F495CE504FE3E4396922DD /* ThreadLocal.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 78621D2A3690AE54C5928E76F46CDAB9 /* strtod.h in Headers */ = {isa = PBXBuildFile; fileRef = D03DD3D9967691C8C338FD67FC15AD65 /* strtod.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 787766F435F8357737B6951D6CA54D7A /* File-inl.h in Headers */ = {isa = PBXBuildFile; fileRef = FFE3A2934B2A92FDDFFA491390C78526 /* File-inl.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 78A494F42E6BE9DD4C11FFC6BEB36A59 /* RCTLogBoxView.mm in Sources */ = {isa = PBXBuildFile; fileRef = 8E0B565D7C8AEA23DC2FDB23918EC89D /* 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"; }; }; + 78CD6986588CBF10FB67067D42C273F3 /* Payload.h in Headers */ = {isa = PBXBuildFile; fileRef = 1AD061EB19068E967A52EA97CB9C0705 /* Payload.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 78CF7EB129272BC88DF8FEE6D60A95D1 /* SDImageGIFCoder.h in Headers */ = {isa = PBXBuildFile; fileRef = A1724662FE6410CBF204187731FC2B41 /* SDImageGIFCoder.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 78D75497D8A4D1E7B532209B05BA4E8E /* RNSScreen.h in Headers */ = {isa = PBXBuildFile; fileRef = 981CDDFA1C10E65722D25E7A97756788 /* RNSScreen.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 78DA7CC202FB90F3C58C7856F5549D49 /* RCTJavaScriptLoader.mm in Sources */ = {isa = PBXBuildFile; fileRef = 7D866E1BD0268B812BE334AEF790C8C2 /* RCTJavaScriptLoader.mm */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + 790B5CE4AA5E74BE3EA76EC5A688F497 /* PolyDetail.h in Headers */ = {isa = PBXBuildFile; fileRef = 062953F1B67261D26E09D46FAA488F99 /* PolyDetail.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 790C5920CBBBFBCBFAA33491816B3676 /* IPAddressException.h in Headers */ = {isa = PBXBuildFile; fileRef = 04856953888C52B8099F97CC5C1AD907 /* IPAddressException.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 7918936060A2B254F749653AEA81BDD9 /* MoveWrapper.h in Headers */ = {isa = PBXBuildFile; fileRef = 2AC9D7D097D078CA6713ED5CEA156FDC /* MoveWrapper.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 79448E08B4EC193283F9709AC0475F49 /* BSG_KSCrashSentry_MachException.c in Sources */ = {isa = PBXBuildFile; fileRef = C48F9B2393D26CDBBA0B14EDC839E061 /* BSG_KSCrashSentry_MachException.c */; }; + 796952C1E8ACD9FB8C4D39A609C53C96 /* RCTRedBoxExtraDataViewController.h in Headers */ = {isa = PBXBuildFile; fileRef = C77975A40EB793754C529E4F1E2C940F /* RCTRedBoxExtraDataViewController.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 797B776C5B3EB4F16684EEEA7215BBF7 /* FlipperKitNetworkPlugin.mm in Sources */ = {isa = PBXBuildFile; fileRef = 1C28AF71A2550395858FCAE57EF2CDDA /* FlipperKitNetworkPlugin.mm */; settings = {COMPILER_FLAGS = "-DDEBUG=1 -DFLIPPER_OSS=1 -DFB_SONARKIT_ENABLED=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -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"; }; }; + 797DC14EE8BDB905470F0108C8D7CF30 /* openssl_opensslconf.h in Headers */ = {isa = PBXBuildFile; fileRef = 6527C45E613570F8E482BCAF1012824E /* openssl_opensslconf.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 797DFB63A71BD6ADDB36319E4AFBDB77 /* RCTFrameAnimation.h in Headers */ = {isa = PBXBuildFile; fileRef = A1E15E833103B095D6A492A72302C0DD /* RCTFrameAnimation.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 797E09F0371E2509B64021BFD7CDBF79 /* RangeSse42.h in Headers */ = {isa = PBXBuildFile; fileRef = 27B20B0DAD21A07EDEA17DE882571FA0 /* RangeSse42.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 79A5D35512B8A53AC9ADED9D09319197 /* MemoryFile_Win32.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 845F9E2043E6F0A9878A5A098678C69F /* MemoryFile_Win32.cpp */; settings = {COMPILER_FLAGS = "-x objective-c++ -fno-objc-arc"; }; }; + 79AA16D3A14B3FD53117A93B8A0EB0C1 /* SKObject.h in Headers */ = {isa = PBXBuildFile; fileRef = E6BB1C756AA76D2E9FABD61C8B6FEDBC /* SKObject.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 79DF1EB7C3BF47FD2420255F8EB324B1 /* RWSpinLock.h in Headers */ = {isa = PBXBuildFile; fileRef = 2D51C38652AE7436C677B0DC14D96F78 /* RWSpinLock.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 7A117409B4D9D5F37FA5557FA84E1448 /* EXFileSystemAssetLibraryHandler.m in Sources */ = {isa = PBXBuildFile; fileRef = 0DE20519F96D10F94F99B15D83A5C0D8 /* EXFileSystemAssetLibraryHandler.m */; }; + 7A19099D91A4373D37645A2E56479CA0 /* Core.h in Headers */ = {isa = PBXBuildFile; fileRef = C2C0B2910A52A3006CF8E3988EE80E94 /* Core.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 7A5BDD3BBE43A139E4EA1AB988EB1BBB /* RNBootSplash.h in Headers */ = {isa = PBXBuildFile; fileRef = AE778A0F8856F1A013BB134498D05F4E /* RNBootSplash.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 7A659B374953ABC9F54029CBBFF87B55 /* FIRCoreDiagnosticsConnector.m in Sources */ = {isa = PBXBuildFile; fileRef = 36D3CFDA98ACA08DE6FF19AA4F97C253 /* FIRCoreDiagnosticsConnector.m */; }; + 7A85C92E0CEFE10B8F7ABFFD52AD804B /* MPMCQueue.h in Headers */ = {isa = PBXBuildFile; fileRef = 1C043B4CC815229BDEE63BE4EA8C06C4 /* MPMCQueue.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 7AA21B533D5798C73B2EEACC345DA1A3 /* BSG_KSCrashSentry_NSException.m in Sources */ = {isa = PBXBuildFile; fileRef = BDA6FCB2956855B835FE86108CE5C320 /* BSG_KSCrashSentry_NSException.m */; }; + 7AB2CA6B1CFED28BAAC966A0E960C24F /* Flowable_FromObservable.h in Headers */ = {isa = PBXBuildFile; fileRef = 4E14F46EE083E9BBBC6B8527E221DEBF /* Flowable_FromObservable.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 7AB418BEBA99EBF250CF3868D2FA61F9 /* SDWebImageDownloaderDecryptor.m in Sources */ = {isa = PBXBuildFile; fileRef = 20037769F813A6C98F1BD2857E37129E /* SDWebImageDownloaderDecryptor.m */; }; + 7AC739868CD617F6BDB0222B3E728167 /* FlipperStep.h in Headers */ = {isa = PBXBuildFile; fileRef = D76534D1CBA2C034F50357BECE4CC28D /* FlipperStep.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 7ACD7AF8CD225295970598A604A023D4 /* AtomicUtils.h in Headers */ = {isa = PBXBuildFile; fileRef = 34F2A49096DA03691B06EB432BFDD8DD /* AtomicUtils.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 7AD5D6EA0C9AA6AFD1B8D3B105D8D167 /* RCTKeyCommands.m in Sources */ = {isa = PBXBuildFile; fileRef = 3577215D16A392470FA31E62AB5B8636 /* RCTKeyCommands.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + 7ADDBA2B7986329FD6AC7D02BCAA83EB /* buffer_dec.c in Sources */ = {isa = PBXBuildFile; fileRef = 8BE0A8E494C0465711336CCCAFF41367 /* buffer_dec.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; + 7AE6DCA21982F773FD1AA5DBD5AEAFDC /* SpookyHashV1.h in Headers */ = {isa = PBXBuildFile; fileRef = B89BE205EA2CDDE020474282EB87CAB9 /* SpookyHashV1.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 7AE9FA7CFFB3766DB0BD22641EE81FCD /* BugsnagConfiguration+Private.h in Headers */ = {isa = PBXBuildFile; fileRef = 45536C4FE070219E8587C7C80FA8CE13 /* BugsnagConfiguration+Private.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 7AED70C02481B274DE0DEBAB55A8A656 /* Retrying.h in Headers */ = {isa = PBXBuildFile; fileRef = 343E33008B20D72CFB575CA422825FC7 /* Retrying.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 7AFB49D317F9ED46079E90148F66D404 /* StreamRequester.cpp in Sources */ = {isa = PBXBuildFile; fileRef = BC3DD15C5887438E50FC9EA6DC9B0853 /* StreamRequester.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -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 -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors"; }; }; + 7AFC413F8C18F0701823D97CB75D06DA /* cost.c in Sources */ = {isa = PBXBuildFile; fileRef = 01CCB1FFA00E08BE82F30FF439EC3F19 /* cost.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; + 7B0E9160CA1354F1BBB6F1C60424FAA3 /* Invoke.h in Headers */ = {isa = PBXBuildFile; fileRef = 1910682A0F88675E924A1B73E0E37BBB /* Invoke.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 7B2531366A546B86F71C91DD5F523677 /* EXResumablesManager.m in Sources */ = {isa = PBXBuildFile; fileRef = 376ACBDF21AB0C3BBDE0DD89175DC3E0 /* EXResumablesManager.m */; }; + 7B33D1ADC53795C06499B990BA8DE667 /* Libgen.cpp in Sources */ = {isa = PBXBuildFile; fileRef = AD6EC1CE10CEE5E26692EB97319A576F /* Libgen.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -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\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors"; }; }; + 7B58240D010ED6E7AC861326D1F81055 /* RCTStyleAnimatedNode.m in Sources */ = {isa = PBXBuildFile; fileRef = 7C171891BBE7C26B10078C317A927A5D /* 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"; }; }; + 7B8CB4EE825252177DB35713E569A4CA /* RNFlingHandler.h in Headers */ = {isa = PBXBuildFile; fileRef = 82655F50A075F25A1645A0BB688635B1 /* RNFlingHandler.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 7B97CA1D1E31C0DFF6BFE65B172E783D /* JSCRuntime.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 4FB3B130A3266C0BC8C92E78C515AFA5 /* JSCRuntime.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + 7B99DD45DC9D7CA53B95F5E88E310BDD /* GDTCOREvent_Private.h in Headers */ = {isa = PBXBuildFile; fileRef = 4CE4E15A384DFF38BD2A870862BE00FB /* GDTCOREvent_Private.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 7BAA3884D60901A7DDB996C239209AFC /* RCTCxxConvert.m in Sources */ = {isa = PBXBuildFile; fileRef = C909406C508DE8B5CA6D433D712E8F7B /* RCTCxxConvert.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + 7BAF94A22126FD75E9E54E20A112566E /* QBAssetsViewController.h in Headers */ = {isa = PBXBuildFile; fileRef = 26E13A24F934A03A572AE164F8303668 /* QBAssetsViewController.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 7BC5533EBE0BE5BCFF4471352FBBB54E /* logging.h in Headers */ = {isa = PBXBuildFile; fileRef = 5FCE087AAB80A33D56A2BCD92CBBD87B /* logging.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 7BDD90FD6BD07B053F410C697FE43C53 /* IPAddress.h in Headers */ = {isa = PBXBuildFile; fileRef = 86B01BC34D95DA92361410E019C8A9A2 /* IPAddress.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 7C0E2E912F3644CD139BA976AAD1CF58 /* SwappableEventBase.h in Headers */ = {isa = PBXBuildFile; fileRef = FAF4A076B4FBC752545689903A594249 /* SwappableEventBase.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 7C2000E0D92D3813E2C2A94D3ECA3CA4 /* CheckedMath.h in Headers */ = {isa = PBXBuildFile; fileRef = E170CB358FA51CCD7F155A2D1C864B82 /* CheckedMath.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 7C2033D8B4CD9DCE6C0CB946DA3EE122 /* RCTAlertController.h in Headers */ = {isa = PBXBuildFile; fileRef = 363995549CDE4BAF8C851D1A1A635AA9 /* RCTAlertController.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 7C3896693E8ADE9CC0B15D50E881ABCF /* JSITracing.h in Headers */ = {isa = PBXBuildFile; fileRef = 6F384B25208EEC617E2CF371DC262F37 /* JSITracing.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 7C3A74A569A2D3249446B44601B02DAD /* openssl_aes-armv4.S in Sources */ = {isa = PBXBuildFile; fileRef = 07582AB9F05DAA6E75C45920AD53BB92 /* openssl_aes-armv4.S */; }; + 7C3EF3CF2AD941A1B0EAF2894E674DA8 /* SKIOSNetworkAdapter.h in Headers */ = {isa = PBXBuildFile; fileRef = 47D1C4AC4F29506B214B76E2918AFF10 /* SKIOSNetworkAdapter.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 7C6264142A849B20A1061006FF0EEEAF /* RCTLog.h in Headers */ = {isa = PBXBuildFile; fileRef = E1CCD557F7181B3B0B5A3051A3CE40E6 /* RCTLog.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 7C8609D317F10C13E8884672C6501441 /* GDTCORTransformer_Private.h in Headers */ = {isa = PBXBuildFile; fileRef = BAC841220BA4DC6A7D77051B7DC0BEB3 /* GDTCORTransformer_Private.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 7C9995159766933709D527557334F079 /* Futex.h in Headers */ = {isa = PBXBuildFile; fileRef = 76252819B783B21EA5EBCC15F2027CA3 /* Futex.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 7CAB22F58D0D070B4689DF0D935B4578 /* id.lproj in Resources */ = {isa = PBXBuildFile; fileRef = A0F8C68EF6165C3215A1E5DB0929AF1D /* id.lproj */; }; + 7CBEF7548E23C96029868F3B8FE6A5DD /* RCTAnimationPlugins.h in Headers */ = {isa = PBXBuildFile; fileRef = E5358FA0CE94F364385FC3214CEE3E13 /* RCTAnimationPlugins.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 7CC138C8173EC240EAB3D392F92972C3 /* evdns.h in Headers */ = {isa = PBXBuildFile; fileRef = D477392FB9B2985D4B560FC9F00F60D9 /* evdns.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 7CC918116BD4A030FEA5557A6C0BB08B /* DelayedDestruction.h in Headers */ = {isa = PBXBuildFile; fileRef = D4138AB14AC0B59849EEE029BF2AFD4B /* DelayedDestruction.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 7CE15141692044F9F9B955CBE7DED56D /* GroupVarint.h in Headers */ = {isa = PBXBuildFile; fileRef = 153B2015317E64DC727B8D54A9D1B225 /* GroupVarint.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 7CE4FDA5AE8E4C62A98AEBF7AEB60172 /* GULReachabilityChecker.m in Sources */ = {isa = PBXBuildFile; fileRef = 22AC7B207D004914B4C98BC4AE4ACA25 /* GULReachabilityChecker.m */; }; + 7CF1F971EAF06351DED2217E00B1ED36 /* SpookyHashV1.h in Headers */ = {isa = PBXBuildFile; fileRef = F790966EA07A4F943FA0BF5E98CF2091 /* SpookyHashV1.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 7D0B8A73EAEC83F835A3265FAC5FBF18 /* common_sse41.h in Headers */ = {isa = PBXBuildFile; fileRef = DBA439DF63949719E3443EB2D2243C3E /* common_sse41.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 7D124D4425180333558E0972D741350A /* HazptrThreadPoolExecutor.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 440C948F725E90FEEDE4736FEB50E0A5 /* HazptrThreadPoolExecutor.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -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\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors"; }; }; + 7D17AA51E49957AD7618FB7788553DCA /* FIRComponentType.h in Headers */ = {isa = PBXBuildFile; fileRef = 35FAB482F279313494EED38443F620EA /* FIRComponentType.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 7D203EC3B83C37819F8CA91AC6851E05 /* SDWebImageDefine.m in Sources */ = {isa = PBXBuildFile; fileRef = B6C83B6A47820335281644C779C5D743 /* SDWebImageDefine.m */; }; + 7D38E9F6E2437B9934F20E1E42488520 /* SysFile.h in Headers */ = {isa = PBXBuildFile; fileRef = FAE4BA9A297C48914F2924C957B6FC44 /* SysFile.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 7D3CC16CD9A381322C613650B341F6F3 /* String.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 1C95842759956FAA3EDC8B5C4EA37FBE /* String.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -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\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors"; }; }; + 7D42B9166E33C70302CF5AA60960586C /* Unit.h in Headers */ = {isa = PBXBuildFile; fileRef = AB291EFF8B37D47613CB3B7E6190C674 /* Unit.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 7D94D7FB203B2287C1355BD5F5F1F784 /* ARTGroup.h in Headers */ = {isa = PBXBuildFile; fileRef = 8EC822BD3E8570C5BE901C15801CF4D5 /* ARTGroup.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 7DD3AD1B087FD022A9517DDAF3C4A407 /* String.h in Headers */ = {isa = PBXBuildFile; fileRef = 6E7F86B7B11F6AF6800F6301E582D5B7 /* String.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 7DDFEFEC58E33F77D00C9ECB556BCB67 /* util-internal.h in Headers */ = {isa = PBXBuildFile; fileRef = 6A7C489BCCB907CF21B47569110AE29B /* util-internal.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 7DE10B53F3723E79C650B2994C63C79B /* RCTTextViewManager.m in Sources */ = {isa = PBXBuildFile; fileRef = 5CAD31A89DA9638789206C0851BC19C8 /* RCTTextViewManager.m */; }; + 7DF0B0551FCE863BE73CEC60B94652DB /* RequestResponseResponder.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 01B4BB59CE0F08F46986E5A92AF0508D /* RequestResponseResponder.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -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 -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors"; }; }; + 7E06837009D73DD82C6BB8738B2271A4 /* FarmHash.h in Headers */ = {isa = PBXBuildFile; fileRef = 2522FA2658B5FB789B1D3E0BC9F6D20C /* FarmHash.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 7E57A67B85B4EFE7EE0D28BBD4EA7655 /* IOBuf.h in Headers */ = {isa = PBXBuildFile; fileRef = E4291BE5D4094204E717CF0508CFAF71 /* IOBuf.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 7E6F9733E017E01726C98AA15FF2BA80 /* BugsnagEvent+Private.h in Headers */ = {isa = PBXBuildFile; fileRef = 57C58E173752B7BA74351EF1442C087D /* BugsnagEvent+Private.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 7E7FFA60C1D90B81838454BD4D483BB7 /* StorageIndexer.h in Headers */ = {isa = PBXBuildFile; fileRef = 799FDB7BADF4CD47827FBF0CABCDF14B /* StorageIndexer.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 7E97C5F8F526ABED9B6C515CF3A2E142 /* EXSessionTaskDelegate.m in Sources */ = {isa = PBXBuildFile; fileRef = 7FAF25A61AD341A3425A0828553742A5 /* EXSessionTaskDelegate.m */; }; + 7E9C1D6402CD4ACCF7C9A2718F36B05D /* RCTImageSource.h in Headers */ = {isa = PBXBuildFile; fileRef = 8C7A4D417310DD6EE03A27AC111D31A3 /* RCTImageSource.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 7EE7AC075C3785B7C508614E6042AE8D /* FIRInstallationsAuthTokenResult.m in Sources */ = {isa = PBXBuildFile; fileRef = 3F024AA44CDFFD77E7B15C35A988977D /* FIRInstallationsAuthTokenResult.m */; }; + 7EF139A84AF3B86BDE433DF8F48B5FE1 /* muxread.c in Sources */ = {isa = PBXBuildFile; fileRef = B777DC6A61C93DBEA4C43306D00F6740 /* muxread.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; + 7F0A0E39C4B92F83FED7F63723E33BFF /* BugsnagSessionTracker.m in Sources */ = {isa = PBXBuildFile; fileRef = C73848EDC5F4BBC10E3F0D6EA0821D4D /* BugsnagSessionTracker.m */; }; + 7F1BC79BC8902FE5F4518DD037BA4218 /* AsyncTrace.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 377A48B2A92799CCD1E91FA5AD338D71 /* AsyncTrace.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -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\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors"; }; }; + 7F25D78F500CEAB31BEDF03A66EDA0A3 /* FIRCLSInstallIdentifierModel.m in Sources */ = {isa = PBXBuildFile; fileRef = 03FEDA48A5B565815A323313603FF44B /* FIRCLSInstallIdentifierModel.m */; }; + 7F425E6EC0E8F9924787CA98A5997563 /* Fcntl.h in Headers */ = {isa = PBXBuildFile; fileRef = E3F0E5A37D0A77F1842D32D82C515000 /* Fcntl.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 7F55447D364FB5739A3046A5BDE54989 /* RCTErrorInfo.m in Sources */ = {isa = PBXBuildFile; fileRef = 5E89A01F44F0E3C6CCD8601982962088 /* RCTErrorInfo.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + 7F78D9D983D7313785567B09AD93F9C2 /* BSGStorageMigratorV0V1.m in Sources */ = {isa = PBXBuildFile; fileRef = 174E2ABE9ABBAF40676AC61958A65E8B /* BSGStorageMigratorV0V1.m */; }; + 7F8D9FA55E2B841AEE4E3E70D09BFF35 /* BugsnagReactNative.m in Sources */ = {isa = PBXBuildFile; fileRef = 13BEE7CFC50BA2D9FC56FC9CFE28D4EB /* BugsnagReactNative.m */; }; + 7F997F3BAD3BC2551FFEE181A555FF86 /* FIRCLSApplication.m in Sources */ = {isa = PBXBuildFile; fileRef = 7EF389B42AB085E5B091E9300E955B80 /* FIRCLSApplication.m */; }; + 7FAFE4D7C1A540DEEBADB659F62F7F86 /* Range.h in Headers */ = {isa = PBXBuildFile; fileRef = 6B255EADE5F6CF8584636E95B0D26B66 /* Range.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 7FB3CBE5BFDA11CB860B075A35EE3BFE /* RNSScreenStack.m in Sources */ = {isa = PBXBuildFile; fileRef = FA0893D5CF2FA5B4FB0B667DC3784E3A /* RNSScreenStack.m */; }; + 7FB887785BE21865786F67AE943A326E /* GULAppDelegateSwizzler_Private.h in Headers */ = {isa = PBXBuildFile; fileRef = 8D357E39610B78B1B1423DF059D09C27 /* GULAppDelegateSwizzler_Private.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 7FCAC6CFC7422F25DA1355270A9EB7D0 /* RCTVirtualTextViewManager.h in Headers */ = {isa = PBXBuildFile; fileRef = E9053330601A717F1DD225D45861FA62 /* RCTVirtualTextViewManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 7FDA70EED310E1FF35808E78A3136E35 /* RCTImageViewManager.mm in Sources */ = {isa = PBXBuildFile; fileRef = 3DF75861838DDABC8AF9BE7F154D114E /* 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"; }; }; + 7FEAA9546ABF03904AAF6FF37C703F86 /* RCTKeyCommandConstants.h in Headers */ = {isa = PBXBuildFile; fileRef = 1B8FC75898BE387DE90BBEF2A78DD45F /* RCTKeyCommandConstants.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 7FF0067335EABBFE087D139C872D17BC /* RSocketServer.h in Headers */ = {isa = PBXBuildFile; fileRef = 4364FC67F9D8304BD684CD412D7A3FD2 /* RSocketServer.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 7FF7B8E74BA7BD91DB11E345B9A52672 /* GoogleDataTransportInternal.h in Headers */ = {isa = PBXBuildFile; fileRef = E5463DB18FF3651C69C2B5E057281EAF /* GoogleDataTransportInternal.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 800AA10285F70241D7D971D3AB039624 /* ScopeGuard.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 43AE178B9B5E4B3E30829F7F68433FB5 /* 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"; }; }; + 803FBC8BD6065F9E745A3C69025620FA /* FIRCLSDwarfUnwind.h in Headers */ = {isa = PBXBuildFile; fileRef = 3E3C445DD362E006552ED9B94020C8E1 /* FIRCLSDwarfUnwind.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 8047FE35403325F4DADBC219D6DA75D8 /* ARTBrush.h in Headers */ = {isa = PBXBuildFile; fileRef = F2BEE07964007060837060C4054614E4 /* ARTBrush.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 804F4CC4701DC02AFCC00472AFA74893 /* RCTTextTransform.h in Headers */ = {isa = PBXBuildFile; fileRef = 7D5C34423FCB2323B104CA61F72766FB /* RCTTextTransform.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 804F7B4FFE36059343291307A758966F /* SDWebImageDownloaderOperation.h in Headers */ = {isa = PBXBuildFile; fileRef = 627A5F2F82BCBD2FF9C1D568E32124AF /* SDWebImageDownloaderOperation.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 806D0A8C4C3A3CCCAE6FE0905BE8A994 /* BSG_KSCrashSentry_CPPException.mm in Sources */ = {isa = PBXBuildFile; fileRef = 33DCB070BC1552B9AC0A497A56B5E840 /* BSG_KSCrashSentry_CPPException.mm */; }; + 807744C9315630AA005C40DE3F085137 /* SDImageCachesManagerOperation.h in Headers */ = {isa = PBXBuildFile; fileRef = E2E64270484232874B989E1185FE02C0 /* SDImageCachesManagerOperation.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 8077F86A30980D35AB6E0EB0B5368A70 /* AutoAttachUtils.h in Headers */ = {isa = PBXBuildFile; fileRef = E0482C81ACC1C403CBC884E10E066760 /* AutoAttachUtils.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 807A4A7A0A4557F86C82FCE5DB7EA52C /* DrivableExecutor.h in Headers */ = {isa = PBXBuildFile; fileRef = 6D807C14AE957A1545813F8580F2C0A5 /* DrivableExecutor.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 80858FBAF26FDF6CCBA2BA39391070E8 /* de.lproj in Resources */ = {isa = PBXBuildFile; fileRef = 5F1812CF7408473FCCA9C61A9726AF51 /* de.lproj */; }; + 808AF6B45283C1F01E6B15457FA755E0 /* SysSyscall.h in Headers */ = {isa = PBXBuildFile; fileRef = 2FD10DDCF7E386F3F6B677536D0D66A5 /* SysSyscall.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 8097093CE2BDB0F92292DB82D8C3E84A /* BugsnagBreadcrumb+Private.h in Headers */ = {isa = PBXBuildFile; fileRef = A6EAD134FABE877CC4CB14654D71CEE3 /* BugsnagBreadcrumb+Private.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 809BA0C4B85D298B26F1746657E5EFC8 /* RNCSlider.m in Sources */ = {isa = PBXBuildFile; fileRef = DB49284BA60C9CDB17FC0A52E6C52C2F /* RNCSlider.m */; }; + 80A679210F0CBE2EFFD34C1EAA3E4429 /* RCTNetworkTask.h in Headers */ = {isa = PBXBuildFile; fileRef = 8A899A46E2ED8F4DF284B11457BD4CBA /* RCTNetworkTask.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 80B24FA8A7FD002BB0A95BF990DE6096 /* yuv_sse2.c in Sources */ = {isa = PBXBuildFile; fileRef = B9B133B19C128B94A13984973C723D0F /* yuv_sse2.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; + 80B99D0A70FFF4A8F2149D1257C65518 /* NSButton+WebCache.h in Headers */ = {isa = PBXBuildFile; fileRef = 404AC726DBF50850379A3DDC4A0451EB /* NSButton+WebCache.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 80E7699B50C52242C98EFC2BD9235E1B /* REATransitionManager.h in Headers */ = {isa = PBXBuildFile; fileRef = C1241CA78447F3917B5348A7FA35A374 /* REATransitionManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 80ED33BA98350BCEC806864EE6E95140 /* SysResource.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 082D12697560FA62C0B82A82EABDD9AC /* SysResource.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -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\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors"; }; }; + 80F2B96AD06D9127890FC6A8A371FEF1 /* RCTInspector.mm in Sources */ = {isa = PBXBuildFile; fileRef = 7B7836002F21AA5B01ED169B22015880 /* RCTInspector.mm */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + 80FA1A9F4EE87D999EE8DE727165AA7E /* ReactNativeUiLib-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 4CCC840D3A806A7EC55CB844053F80BD /* ReactNativeUiLib-dummy.m */; }; + 80FEFFE4F05655F1A4CE360FC82C6B55 /* MapUtil.h in Headers */ = {isa = PBXBuildFile; fileRef = 5096EC4B214144A44F64E49C8BA6CF67 /* MapUtil.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 81041F67F71ADDDA5354E1BF7FC9E251 /* RCTImageUtils.m in Sources */ = {isa = PBXBuildFile; fileRef = A07870FDB1FE7BBE4F539AA836EA893D /* 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"; }; }; + 811426BA8FB57EEC116E6FDE2F62A12D /* RangeSse42.h in Headers */ = {isa = PBXBuildFile; fileRef = C9F56858BC85BFB3E1F009D076FC02AC /* RangeSse42.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 811E741095A86BE41D5FFF8B8A57F71B /* BugsnagCrashSentry.h in Headers */ = {isa = PBXBuildFile; fileRef = BD42A2C009514DC873362B80B05007E1 /* BugsnagCrashSentry.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 8120B3214378166A5E6F0A742EE5D5C8 /* RCTWrapperViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = 5E9B1BD5B1ED703FC6D681CE9B9E43AB /* RCTWrapperViewController.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + 813154FEC14449E50D4A67806DB21A75 /* TimeoutQueue.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 0DEF232E0A0D4067D1ED22A9871162C0 /* TimeoutQueue.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -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\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors"; }; }; + 813A9CF9C4175FD5398A975C668165D3 /* PThread.h in Headers */ = {isa = PBXBuildFile; fileRef = 2162F9DA6A26F7A1AF77AB4FF72956DC /* PThread.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 813CA236C9978F8CF68DD1CFA6176FB0 /* ThreadLock_Win32.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 8DA53BF5F3B812DED81579DE9A22DC40 /* ThreadLock_Win32.cpp */; settings = {COMPILER_FLAGS = "-x objective-c++ -fno-objc-arc"; }; }; + 813EE8D66A862412E3D5A43562750C95 /* Enumerate.h in Headers */ = {isa = PBXBuildFile; fileRef = 37143F1C896D1FFE32C7DC1480F6F0A7 /* Enumerate.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 814C03FCBCD88232173D927CCBEFD156 /* frame_dec.c in Sources */ = {isa = PBXBuildFile; fileRef = 360304384D9ED295F63EF9BF36F487FF /* frame_dec.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; + 817211F50ED4836F4079B653F5F1191F /* GDTCCTNanopbHelpers.h in Headers */ = {isa = PBXBuildFile; fileRef = E332AEF40249C0BD861884BBD88AE916 /* GDTCCTNanopbHelpers.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 818A4EDB7071A0EE1CC59E49EDDA5FB2 /* openssl_md5.h in Headers */ = {isa = PBXBuildFile; fileRef = 4B3B7BE12857B6EFF346805FA5BDB910 /* openssl_md5.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 81A2FFCFB7C5FB3DD14807DDA43C839A /* RNBackgroundTimer.h in Headers */ = {isa = PBXBuildFile; fileRef = 304AD20C70DB3E64039789A15DBB9415 /* RNBackgroundTimer.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 81AB39DF85BEC6AA50FA4768B64E0728 /* Conv.h in Headers */ = {isa = PBXBuildFile; fileRef = CDE0A0AD204BBDC0BBF8F8CDD50CF5FF /* Conv.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 81C9BDCC2F92DE67DBFF42C8A1B44A8F /* SpookyHashV2.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 2746101C4A665ABA35C6E5805E1B69E1 /* SpookyHashV2.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -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\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors"; }; }; + 81E85D64B98D8D2447E35D283DF270C1 /* RCTModuloAnimatedNode.m in Sources */ = {isa = PBXBuildFile; fileRef = 9B72B432D840B5DBE7A9FF102A3D30CB /* 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"; }; }; + 81EFF28CA9DB0F08B24762355295F8F8 /* RCTAlertController.m in Sources */ = {isa = PBXBuildFile; fileRef = FB11CDFCB970930C223AB157A8D8800A /* 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"; }; }; + 81F106C671BE8A5DA4A130F192CD2192 /* TOCroppedImageAttributes.m in Sources */ = {isa = PBXBuildFile; fileRef = AE3A3D6B37CCEF385FE230EDB88E483D /* TOCroppedImageAttributes.m */; }; + 82024B389A2C322F715D08FB69C7C499 /* InspectorState.h in Headers */ = {isa = PBXBuildFile; fileRef = 5AFFCEC5536830FDBADF795006808DBA /* InspectorState.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 8232E29D7F834AB5186A21BDFA134BCD /* Preprocessor.h in Headers */ = {isa = PBXBuildFile; fileRef = 9014B91BCD5A69C788727A81994C48F0 /* Preprocessor.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 823FEACED54FBDE40614B8C7FC3DD960 /* RCTLogBoxView.h in Headers */ = {isa = PBXBuildFile; fileRef = 54DAB02A271605CA8E777D0C62060EEC /* RCTLogBoxView.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 824C84CF6B400E0942B2866D95294CC4 /* FBCxxFollyDynamicConvert.h in Headers */ = {isa = PBXBuildFile; fileRef = EE4D20166977C496105B00B3B3E2749B /* FBCxxFollyDynamicConvert.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 82568F6164D3F18C30767964C15134B5 /* RCTLinkingManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 04ABEFA8B77F5DA53B77E0213920F9B9 /* RCTLinkingManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 8277633CF4218185C31DB89D053D8D3B /* YGNodePrint.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 31E91C55845E195172F9EC2487D1EC84 /* YGNodePrint.cpp */; settings = {COMPILER_FLAGS = "-fno-omit-frame-pointer -fexceptions -Wall -Werror -std=c++1y -fPIC -fno-objc-arc"; }; }; + 82AE449A83988CE81EEBC6D430BFC344 /* jsilib.h in Headers */ = {isa = PBXBuildFile; fileRef = 4E79C59E90A3E09FB62059F97F3AE427 /* jsilib.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 82CAD2FBACD2DE7144C7B2DDCC9D75DD /* Time.h in Headers */ = {isa = PBXBuildFile; fileRef = 91EF17B4E96C325051493245CC43FC73 /* Time.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 82CB0BD0243F3CB4EE8AC1BE2AC644A6 /* filters_sse2.c in Sources */ = {isa = PBXBuildFile; fileRef = AA40C6A1953C0DDCEA500B451F593A1B /* filters_sse2.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; + 82E62457DB6DA99CCF29E3829E0ACD82 /* Future.h in Headers */ = {isa = PBXBuildFile; fileRef = E518A968D204E2B4A079F40115E26296 /* Future.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 82FCE7990AB949B12E59D22C97E47373 /* FIRCLSdSYM.h in Headers */ = {isa = PBXBuildFile; fileRef = 1F2E9CE19D7C85E3104D06BB9BAD3EFB /* FIRCLSdSYM.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 830EB97DC135460E1D5778A13B643A56 /* BugsnagEvent.m in Sources */ = {isa = PBXBuildFile; fileRef = EDF7C04F611F867F36DBBD81BDA2A1D1 /* BugsnagEvent.m */; }; + 8315CA762D6800CBB0FBC7061F5DFC7B /* SDWebImageDownloaderConfig.m in Sources */ = {isa = PBXBuildFile; fileRef = 59EAF42B2DD35E28B043F4E1DF08829A /* SDWebImageDownloaderConfig.m */; }; + 8316E4D799B9260284EC4C167E7C9C81 /* BugsnagKVStore.c in Sources */ = {isa = PBXBuildFile; fileRef = 107BC9AC4578A69B39C27751985613B7 /* BugsnagKVStore.c */; }; + 8317678B229ECCA17A5FB85AD458F037 /* VibrancyView.h in Headers */ = {isa = PBXBuildFile; fileRef = BD48C0475A0B45B50A7F1D966947CCB0 /* VibrancyView.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 831D458CA9B523E3E613FF643A86FD55 /* SysTypes.h in Headers */ = {isa = PBXBuildFile; fileRef = DE9EF59EB47BEE522C0C3250922393F0 /* SysTypes.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 831D9B0890AECE0DA15E7840C8846A2F /* FIRCLSSymbolicationOperation.m in Sources */ = {isa = PBXBuildFile; fileRef = 8830792B869914D4B37C64CD3D5FABC9 /* FIRCLSSymbolicationOperation.m */; }; + 832A67EE187DF3CA7C03CD78FBA5ACB7 /* StringKeyedUnorderedMap.h in Headers */ = {isa = PBXBuildFile; fileRef = 1B64C46BE16567F63E27EF6ADFE47B77 /* StringKeyedUnorderedMap.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 83344A36E5121FC0C1AAF26F92D551DE /* FLEXNetworkTransaction.m in Sources */ = {isa = PBXBuildFile; fileRef = A2D8871D252BE47ECD2EAE390C67E065 /* FLEXNetworkTransaction.m */; settings = {COMPILER_FLAGS = "-DDEBUG=1 -DFLIPPER_OSS=1 -DFB_SONARKIT_ENABLED=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -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"; }; }; + 83462DAACFADDCF15C4CDB4466074118 /* SDImageCachesManager.m in Sources */ = {isa = PBXBuildFile; fileRef = 6D9EBB18615ABD47C0EAEE3D802C5D74 /* SDImageCachesManager.m */; }; + 834AFB1EF62E140C176C1BB684068F75 /* SerialExecutor.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 90886ED3F19323A4ED158C3E18181CD8 /* 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"; }; }; + 83619E1DAA452D4B63050AD03BC64600 /* SDImageGIFCoder.m in Sources */ = {isa = PBXBuildFile; fileRef = A8D67169B06CDD791F18902CECE9AD36 /* SDImageGIFCoder.m */; }; + 836A51775B71B5F0BAFA7B9BA24CFCB6 /* BlockingQueue.h in Headers */ = {isa = PBXBuildFile; fileRef = 9376D3DA733EB7A9F52EB85BA7A6D7BF /* BlockingQueue.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 83783EC64E9E5793C4998FA55C630CB1 /* ExecutorWithPriority.h in Headers */ = {isa = PBXBuildFile; fileRef = 1FFC9CF165C8A81F5E9A6FA7EA21DDBB /* ExecutorWithPriority.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 837DAA54A335AE778D45281B9B71687E /* EXSessionUploadTaskDelegate.h in Headers */ = {isa = PBXBuildFile; fileRef = BAA3DD4AC9BDA7FCA8B5336DF5A8FF4E /* EXSessionUploadTaskDelegate.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 837F1648F640687283C9F86B86D7FB86 /* RCTConvert+Text.m in Sources */ = {isa = PBXBuildFile; fileRef = 7DE8F262818B68B3D9479342809A3FA5 /* RCTConvert+Text.m */; }; + 838B6C9A10FAB50834AF50D067369F63 /* BSGEventUploadKSCrashReportOperation.m in Sources */ = {isa = PBXBuildFile; fileRef = BFBBB4AF1B39739BA1EE28615B12873F /* BSGEventUploadKSCrashReportOperation.m */; }; + 8391D96D07ED2DB35FDBC5CD042CBBB7 /* FIRComponentType.h in Headers */ = {isa = PBXBuildFile; fileRef = 6C8BCA9A00B4A3BC15885EB9772FD3D2 /* FIRComponentType.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 83A09F590CAEABCC278F5901399B9BF1 /* IOBufQueue.cpp in Sources */ = {isa = PBXBuildFile; fileRef = B5B464FB942D06E211A0B48F5C9B02AF /* 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"; }; }; + 83A5F5E1A80ABA06391633800A6CB0CD /* Fingerprint.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 69ED92C27C57BC7D8C608891AB0C03F7 /* Fingerprint.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -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\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors"; }; }; + 83AC9830BEB7A2FD14DA3E55971D32B7 /* RCTSurfaceRootView.mm in Sources */ = {isa = PBXBuildFile; fileRef = 01470023B303C56FCE2DB25EA4A0A414 /* RCTSurfaceRootView.mm */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + 83AF08961086CD527D94E707137339F3 /* EventBase.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 0AB70B3409E908C33138CAB53F67E0D5 /* 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"; }; }; + 83BA10CEAC0431BF6547DDAD4F1E70C8 /* ProxyLockable-inl.h in Headers */ = {isa = PBXBuildFile; fileRef = 6715A7DB80FD5793EDFA838C19F87158 /* ProxyLockable-inl.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 83EE56FE1B991A5596F66613FF207E3D /* BSGSerialization.m in Sources */ = {isa = PBXBuildFile; fileRef = 74ED020DAD572E4DDD2ED2ADB981442F /* BSGSerialization.m */; }; + 83F78784C38C0B3A38C7CCFA974E0662 /* MemoryResource.h in Headers */ = {isa = PBXBuildFile; fileRef = 281152DE90BFBC5E9484FF8CF2828A7A /* MemoryResource.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 84221376164B04636F0F548C64CBDFCA /* webp_enc.c in Sources */ = {isa = PBXBuildFile; fileRef = ECB0B10DD768508DCF778839CB5DB229 /* webp_enc.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; + 8428C57F2DF6A4981F18F4D882DC2B58 /* SDImageCacheDefine.h in Headers */ = {isa = PBXBuildFile; fileRef = 634FBF6AE5BADA79617F9F32D1B57C96 /* SDImageCacheDefine.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 842C67398B5E5B183E98774CFDE33CB1 /* BugsnagKeys.h in Headers */ = {isa = PBXBuildFile; fileRef = 0C92569759A532197BCA2EC4CA3E0CE0 /* BugsnagKeys.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 842E8766C07802C0383CC24A3A65B0E2 /* Sched.h in Headers */ = {isa = PBXBuildFile; fileRef = D0264B1AA2FEBFDA697D93A28E7A2766 /* Sched.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 8453FD519DEF6FBA73824E02620E365F /* yuv_sse41.c in Sources */ = {isa = PBXBuildFile; fileRef = 220BCA6B5683FB1D8C6533560D89F67F /* yuv_sse41.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; + 8455B15C49E52ADC17FF3D8682F5A708 /* FirebaseInstallations.h in Headers */ = {isa = PBXBuildFile; fileRef = 4ACB3D8CA8F2D8F84A6C9806BCAECF81 /* FirebaseInstallations.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 845A5F8286B91410319682C2119BE8FD /* SDImageTransformer.h in Headers */ = {isa = PBXBuildFile; fileRef = 6C525B2DF385293AEFA725B02555587B /* SDImageTransformer.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 845B1BC1FEDDE7961B99B882C6BDE15B /* F14Map-fwd.h in Headers */ = {isa = PBXBuildFile; fileRef = 41B65593E50D50EE5DA6B750C435C308 /* F14Map-fwd.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 84818131EC99A4ED0EC61CBEC40A684F /* RCTBaseTextShadowView.h in Headers */ = {isa = PBXBuildFile; fileRef = 30B57C8C502BC389EAF27871AC63A3B7 /* RCTBaseTextShadowView.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 848488FBC659AC83A39F1867650866D2 /* GULUserDefaults.h in Headers */ = {isa = PBXBuildFile; fileRef = 1D9DEB733CE9D2A9744D90E5190C5223 /* GULUserDefaults.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 8486391646A272928D81F3FEAFF7C6F4 /* raw_logging.cc in Sources */ = {isa = PBXBuildFile; fileRef = 950830CC50FB7E47054D6B2FC97B23A1 /* raw_logging.cc */; settings = {COMPILER_FLAGS = "-Wno-shorten-64-to-32"; }; }; + 84B3625C2308C373E9F7B738632C3AAB /* Retrying.h in Headers */ = {isa = PBXBuildFile; fileRef = 57A3DDFBF93551A9D6E44B573799103C /* Retrying.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 84B47A5B57BCA35B65F927A06DAB409A /* Connection.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 31EAE2348931B6712BC22A0BBBE2FEEA /* Connection.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + 84B580CC79E17C65966A8B4F8A5F6E78 /* SlowFingerprint.h in Headers */ = {isa = PBXBuildFile; fileRef = E8CD8BDFE2CDD261866203AA17B0D151 /* SlowFingerprint.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 850330CC6E7DC21086AA2E5CE9E7E6E3 /* Fcntl.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 35C32ECC9FF89242B7948ACB3158C6F3 /* Fcntl.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -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\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors"; }; }; + 85590CC3B2D018F12A59FDDB2AB5F49F /* ParkingLot.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 92AA7A8871EC7BD75F099AC1FBF339D8 /* ParkingLot.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -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\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors"; }; }; + 85659015F36795FE0D83D8271C79801B /* ExceptionWrapper.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 48F05A44C3DE98AD7CC3C95E6DF15BB3 /* 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"; }; }; + 856A017D864BC114CD55C803190D05BC /* SSLErrors.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 0A10EBFACCD271C893BFF7AFBD61C0AA /* SSLErrors.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -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\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors"; }; }; + 85B2BB1E08DC12377F013B43C169BD9F /* QueuedImmediateExecutor.h in Headers */ = {isa = PBXBuildFile; fileRef = 138C0F6559EA9BA0327EBE7EACDB80B0 /* QueuedImmediateExecutor.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 85EDDF72D03E2FC1812E176C61DDFFE9 /* RCTAssert.m in Sources */ = {isa = PBXBuildFile; fileRef = E1A29F8E06F7F92E4BA68304B65854A9 /* RCTAssert.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + 860A9343A2C75081829E75CF76A5D7F8 /* ThreadLocalDetail.h in Headers */ = {isa = PBXBuildFile; fileRef = 62B79DF71A222F875FC185094EE63E5B /* ThreadLocalDetail.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 863B6A66C83184A0C303CFBDF53B29BE /* enc_neon.c in Sources */ = {isa = PBXBuildFile; fileRef = 11A05424FD6DC91ACD07606792A56420 /* enc_neon.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; + 8646F9A47FAE2E278FD6E1547507EC83 /* TimerFDTimeoutManager.h in Headers */ = {isa = PBXBuildFile; fileRef = D1B16CC3EAAE53003608FE62B2BCCEAF /* TimerFDTimeoutManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 866C4EDB67920E7EE34DA3DC2B145DC7 /* SDWebImageOptionsProcessor.m in Sources */ = {isa = PBXBuildFile; fileRef = A0836689A6A9839A624AA1AD3532F0FC /* SDWebImageOptionsProcessor.m */; }; + 86714AC2E3E898D7435B26DDFBF01453 /* lossless_enc_msa.c in Sources */ = {isa = PBXBuildFile; fileRef = 51A89D94B04B388F9A6FBE820D1F8A67 /* lossless_enc_msa.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; + 86772668A5F386BD245A952A0D181E81 /* fast-dtoa.h in Headers */ = {isa = PBXBuildFile; fileRef = 19F041F4C5B129A4F3340E1D2B7D9ECF /* fast-dtoa.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 86B22B1DFF1CF026EE4407A6431E6C0C /* RCTRedBoxSetEnabled.m in Sources */ = {isa = PBXBuildFile; fileRef = 989CE4BB67CB2751A57CC3D5BA309B0F /* RCTRedBoxSetEnabled.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + 86B662617F5CE4B53B09240EBB5B6F69 /* Traits.h in Headers */ = {isa = PBXBuildFile; fileRef = 77A9290A2C292C253EE055401DABDC7A /* Traits.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 86BEC1042A8C124EBACFC8D0EB3C4B00 /* CacheLocality.h in Headers */ = {isa = PBXBuildFile; fileRef = 4C671BB06639AC59084C4EC4A755406A /* CacheLocality.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 86C0DDF7CB72AFD9C536CEB3909453E4 /* ColdResumeHandler.h in Headers */ = {isa = PBXBuildFile; fileRef = 2B59DBB7F0438F49EE3ED69F5F807ADB /* ColdResumeHandler.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 86C456E86F1B53EF4D7AC6A7DB8110F7 /* React-RCTAnimation-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = A644314535FE9D782FC2FC48295F0C9B /* React-RCTAnimation-dummy.m */; }; + 86CF760C678BE3261CC6D1EFA70CCA61 /* RNGestureHandler.m in Sources */ = {isa = PBXBuildFile; fileRef = 6B0676CBD8A71AE5BD3ECE33CD28BCF2 /* RNGestureHandler.m */; }; + 86D49CC4AA8C4C7F2D09E6696E47ABE7 /* Unit.h in Headers */ = {isa = PBXBuildFile; fileRef = AD72F8ABD0DC27C9178229557159F668 /* Unit.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 86DC07E8D557C4E362D2CB2777263CF9 /* UTF8String.h in Headers */ = {isa = PBXBuildFile; fileRef = 78ABC46229F06E66CDABC8B7A9AEF8BE /* UTF8String.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 86F4B23D5F969E0293D08F7A3C41AB0F /* BSG_KSCrashIdentifier.h in Headers */ = {isa = PBXBuildFile; fileRef = 0F63E6F72664253D8476D965B0EB350B /* BSG_KSCrashIdentifier.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 8712A013B77EFFFE014DA5E077E5AD8F /* PTProtocol.h in Headers */ = {isa = PBXBuildFile; fileRef = 219D029E25645D50037F8635115F8CDD /* PTProtocol.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 871D34F3E8CEE3F303D15B5A565CAAB0 /* Demangle.h in Headers */ = {isa = PBXBuildFile; fileRef = CE091935A1DE9BA3CB8F71FAADE961E3 /* Demangle.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 873B002CFFF728D8D26627E4698AB4FD /* FIRStackFrame.h in Headers */ = {isa = PBXBuildFile; fileRef = 764B48474BD6B94786EA33F556A80ED0 /* FIRStackFrame.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 87469251DF01A53605D1D124DECD9442 /* RNCAsyncStorageDelegate.h in Headers */ = {isa = PBXBuildFile; fileRef = 0ADBD03590FCD60BAC613B75EB93D7DC /* RNCAsyncStorageDelegate.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 874929B9211E983EF8666A593A52C81F /* BugsnagConfiguration.h in Headers */ = {isa = PBXBuildFile; fileRef = 284E66D4E54073CC3BE652D34F0741C2 /* BugsnagConfiguration.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 8796DC2E1B2C24972B6A0F5534461FB9 /* ThreadPoolExecutor.h in Headers */ = {isa = PBXBuildFile; fileRef = 37AA5C97E3144FC649F744AF6B84F357 /* ThreadPoolExecutor.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 87BE97BA22AE666332768F8ABB2AF321 /* Thread.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 2C5B7359072A46C3DADEE3375647BCDD /* Thread.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + 87D3F9D8FB75BD4558CBF71F2535E33B /* HazptrObj.h in Headers */ = {isa = PBXBuildFile; fileRef = 7DF8C92D46016A35A83CB010E642BB0F /* HazptrObj.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 87D5B8A1931558845FCD728218EEFDFF /* SysMman.cpp in Sources */ = {isa = PBXBuildFile; fileRef = E326346C3F6F956C4A7A0CD43686C0C5 /* SysMman.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -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\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors"; }; }; + 87D844AA8BE16811A4A7BDB925ECFED3 /* RNGestureHandlerRegistry.m in Sources */ = {isa = PBXBuildFile; fileRef = E79EC242E65EB52F2828B86D9E7A0D80 /* RNGestureHandlerRegistry.m */; }; + 87DC91BAC5421645CF68B488E44BFF12 /* Cast.h in Headers */ = {isa = PBXBuildFile; fileRef = C6CA12A7D42612E84AD5D864686753EC /* Cast.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 87E94EAD1407AB3D0A885280CB31DAC3 /* MicroSpinLock.h in Headers */ = {isa = PBXBuildFile; fileRef = A19B3641972DFDEF6C610329D938A577 /* MicroSpinLock.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 87EC7F451F61A17E3F4837DAAF8A5F90 /* GDTCOREvent+GDTCCTSupport.h in Headers */ = {isa = PBXBuildFile; fileRef = 42083A5D7C30970CA64E67A67A008624 /* GDTCOREvent+GDTCCTSupport.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 87F5E5D7D5DF362A9473E33C84ACF60C /* VirtualExecutor.h in Headers */ = {isa = PBXBuildFile; fileRef = 15E54C1FCBDB6D01629B4590A7595A68 /* VirtualExecutor.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 87FB67E20260F294117B054CAABDFBCD /* RSocket.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 252A87767BF8EA29A2BDE4C59032DFAA /* RSocket.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -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 -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors"; }; }; + 88061694D4B7A686EC235952F82FA55C /* RCTBlobCollector.mm in Sources */ = {isa = PBXBuildFile; fileRef = 0C70C99F15D0DDBF409A862AC97E6D30 /* 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"; }; }; + 88169C2D768B45AED334A3CEA05F6BA1 /* StaticConst.h in Headers */ = {isa = PBXBuildFile; fileRef = 280111A76B1C4441C56FBC049D43007C /* StaticConst.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 881982B8FC9FDD1169B1C467D5B6B334 /* jsilib-windows.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 08BF95E4BB3E1137A8F20FE77A35F431 /* 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"; }; }; + 8826F32DD76619864079E4D5AF5D36BE /* BSG_KSCrashC.h in Headers */ = {isa = PBXBuildFile; fileRef = 99E7DF70F984A46560879C1A2A386C3F /* BSG_KSCrashC.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 883E06D686E2C49CF9437371F69CD93E /* ReactCommon-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 0A677091F7E6C895CF485AFF88061238 /* ReactCommon-dummy.m */; }; + 8841F926DB529F811D294DA5BB32D9F3 /* RCTTextAttributes.h in Headers */ = {isa = PBXBuildFile; fileRef = 4AE859DB73B60453019C741A10E0F20C /* RCTTextAttributes.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 884B5F19587F1A3FEA68030A268D572F /* FlipperKitReactPlugin.m in Sources */ = {isa = PBXBuildFile; fileRef = 5C97A1734BC7663A4E9187904238E2D7 /* FlipperKitReactPlugin.m */; settings = {COMPILER_FLAGS = "-DDEBUG=1 -DFLIPPER_OSS=1 -DFB_SONARKIT_ENABLED=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -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"; }; }; + 884CDFE18303D7D1123950465FFD6F73 /* RCTNativeAnimatedNodesManager.m in Sources */ = {isa = PBXBuildFile; fileRef = E0776908675D32B6902509CA0A010DF6 /* 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"; }; }; + 88540562668A34017D268C9F8365E64F /* RCTActionSheetManager.h in Headers */ = {isa = PBXBuildFile; fileRef = C90E5B92A22F2756779B3B9CBBDC0969 /* RCTActionSheetManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 886ED443FB7FFC532743166CBA504E68 /* EventHandler.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 9137730D6D9EF23883779E2130ACF74C /* 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"; }; }; + 88D0474C1E8AF058203537EEFE35D0F3 /* SysUio.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 70B7BD0D0B421B8006B6EB76290296FC /* 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 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_PTHREAD=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + 88D59EE9D9D2E8390594E52C8FE03E45 /* lossless_enc_mips_dsp_r2.c in Sources */ = {isa = PBXBuildFile; fileRef = 4090544ABDE3D7A5BF2604D40CFBF9DC /* lossless_enc_mips_dsp_r2.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; + 88E414A008D00918F84D6F708F50348E /* stop_watch.h in Headers */ = {isa = PBXBuildFile; fileRef = BAE05B179A4809DD45875E8223B3DCA2 /* stop_watch.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 88E71FCE46498975F3F68C1A5EF7615B /* RCTSRWebSocket.h in Headers */ = {isa = PBXBuildFile; fileRef = 6F0151729363AA82CD2A1FD179D23A78 /* RCTSRWebSocket.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 89133507027493A55232F14D0FB7BE6B /* FBLPromise+Race.m in Sources */ = {isa = PBXBuildFile; fileRef = 3409DC708CDB92D27E2192ACB8B25864 /* FBLPromise+Race.m */; }; + 892CFFA857BFECF0765A52E38FE54D14 /* filters.c in Sources */ = {isa = PBXBuildFile; fileRef = A187271DBE453899DB38732023FAD7FC /* filters.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; + 8942EAB571F4706468006DB21B3589F7 /* FIRCLSSignal.c in Sources */ = {isa = PBXBuildFile; fileRef = 1AC00B115DA4151054C6109CF6F127F7 /* FIRCLSSignal.c */; }; + 8969350335908AD5E341E64B4983D43B /* ThreadName.h in Headers */ = {isa = PBXBuildFile; fileRef = AD928CF3372D9798FA1B78C5FD00C83D /* ThreadName.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 899FFCA3B165C5CD1981DB5BCCAD5239 /* EXAudioSessionManager.m in Sources */ = {isa = PBXBuildFile; fileRef = E12C0BD97750A1146C29953C5321F5A2 /* EXAudioSessionManager.m */; }; + 89A9AE5C643C896CC007D0B005C968AD /* StreamsWriter.h in Headers */ = {isa = PBXBuildFile; fileRef = A29D0534ACBDE9B678310F276EED3E82 /* StreamsWriter.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 89AE893A96F60B5E879214A05480D1C3 /* BSG_KSObjC.h in Headers */ = {isa = PBXBuildFile; fileRef = B5AAFDBDD30C2F921CC79B715028D2FD /* BSG_KSObjC.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 89CCD63A3E0912DE0A93D0034B75F8DF /* HeterogeneousAccess-fwd.h in Headers */ = {isa = PBXBuildFile; fileRef = 24C7FCC135FC406035CE40FDC263188D /* HeterogeneousAccess-fwd.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 89D5341F0F42E0F8ECFBA947673891B8 /* FIRInstallationsHTTPError.m in Sources */ = {isa = PBXBuildFile; fileRef = E68ABF8D733C8D4CB8759E1864D8DA10 /* FIRInstallationsHTTPError.m */; }; + 89E274065983E4542141DF84D915E518 /* small_vector.h in Headers */ = {isa = PBXBuildFile; fileRef = 8D2E471C6C5C2E2936DC0F3469F01C84 /* small_vector.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 89F7703964FFD980238DEF88FE77F9B3 /* RCTNullability.h in Headers */ = {isa = PBXBuildFile; fileRef = 35200401D9A9A266DED2D8F5DAEA0733 /* RCTNullability.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 89FD11C93513AD72C332859369274F9A /* Cursor.h in Headers */ = {isa = PBXBuildFile; fileRef = 57BA2E3DE3BD6E99C21F9BD955EE1E88 /* Cursor.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 8A2931F97A548AE5071862068EF0C329 /* React-Core-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 9BCA63BA8EB46EB8BDEA34E41CAF24A1 /* React-Core-dummy.m */; }; + 8A33EFAB7447DD787F9372D6639E53A7 /* alpha_processing_sse41.c in Sources */ = {isa = PBXBuildFile; fileRef = 0D9E13B42D8071E41F8329AE4CCFD5E1 /* alpha_processing_sse41.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; + 8A38653D5A2C296F2BB3C4FF02571095 /* ErrorCode.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 9351A95DC0CA462DA49B4D338052E5F9 /* ErrorCode.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -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 -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors"; }; }; + 8A469132AC842D6FAC073671391109DA /* BSGEventUploadKSCrashReportOperation.h in Headers */ = {isa = PBXBuildFile; fileRef = 0BECBBF1D7639FF3BEDA01B7F7A8D053 /* BSGEventUploadKSCrashReportOperation.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 8A55987C4F771B347469F38084E35465 /* RNGestureHandlerDirection.h in Headers */ = {isa = PBXBuildFile; fileRef = A719A1FE15388E43AFA1D2D2B8F5270B /* RNGestureHandlerDirection.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 8A5A286273E341E6CC3BBCF13EE92739 /* BugsnagBreadcrumbs.m in Sources */ = {isa = PBXBuildFile; fileRef = 1C32CB42A0B9314C31EE1A23564DCAD5 /* BugsnagBreadcrumbs.m */; }; + 8A6897540FD7F2E503BDB0FF9A072853 /* BSGStorageMigratorV0V1.h in Headers */ = {isa = PBXBuildFile; fileRef = 185EE55983019FB930E6BF2CAEB834EC /* BSGStorageMigratorV0V1.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 8A6BFFA21F3015872B3B5B583655D84A /* FIRCLSFABHost.m in Sources */ = {isa = PBXBuildFile; fileRef = 98277B8A184BC8C047CE83E5FC4F83F7 /* FIRCLSFABHost.m */; }; + 8A76C93A9E9019759489819806E937E1 /* Varint.h in Headers */ = {isa = PBXBuildFile; fileRef = F06A096379BAFA71C2F1705052E9B92B /* Varint.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 8AA1ACBFD25C2F731CC51BBA372BA951 /* GDTCORStorageEventSelector.h in Headers */ = {isa = PBXBuildFile; fileRef = 7CD0812C8669FB0FF221A36F2337B9B0 /* GDTCORStorageEventSelector.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 8AA228EC1F8276FC487C2A78BC1002A4 /* jsi.h in Headers */ = {isa = PBXBuildFile; fileRef = 3C91F989F4A5054ED55ABECA0C159C36 /* jsi.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 8AC9426F08C790F7CB7AE466216DB77B /* RCTSafeAreaShadowView.h in Headers */ = {isa = PBXBuildFile; fileRef = 21D090713EF4723A06E95FD652DDFFB1 /* RCTSafeAreaShadowView.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 8AD2EFE57156521DA71D51BCE28F3107 /* FIRComponent.h in Headers */ = {isa = PBXBuildFile; fileRef = FE0CEE3875F4D526EEDF6C494EE9B551 /* FIRComponent.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 8AE0F3756B30F9D2A378D68E4596A514 /* UIColor+SKSonarValueCoder.mm in Sources */ = {isa = PBXBuildFile; fileRef = 5BC0E75BEA0C3729BC189F05C73306F3 /* UIColor+SKSonarValueCoder.mm */; settings = {COMPILER_FLAGS = "-DDEBUG=1 -DFLIPPER_OSS=1 -DFB_SONARKIT_ENABLED=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -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"; }; }; + 8B1C10F7F1E8A707C0F2E3242AC10E28 /* RCTImageShadowView.h in Headers */ = {isa = PBXBuildFile; fileRef = 1F80CD4FAF04DDBDE0833E5B6AA3A018 /* RCTImageShadowView.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 8B29743F2FBB85A66FD94AA61E1DE829 /* FIRCLSCompactUnwind.h in Headers */ = {isa = PBXBuildFile; fileRef = 39514F362C2622FBF4F9344250F93731 /* FIRCLSCompactUnwind.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 8B2CFEF161D015AC7C40EBF90D5B59DB /* RCTImageEditingManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 303F643C98184E4DB34F120D81CF162A /* RCTImageEditingManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 8B3FCCC14D04E0965CD9EC368F3C3006 /* fast-dtoa.h in Headers */ = {isa = PBXBuildFile; fileRef = 0E05463CDBE3D07BACC3A485DCB768FC /* fast-dtoa.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 8B5DB7A7B817B2DB94796CECB1A5250B /* VirtualEventBase.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 1223CE63C279563F3B4EA932977B59BC /* VirtualEventBase.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -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\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors"; }; }; + 8B61BA7CDDB2F34C0B96420DD87107D5 /* TOCropOverlayView.h in Headers */ = {isa = PBXBuildFile; fileRef = 9BEE134C86764356DF2A10AC3A998638 /* TOCropOverlayView.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 8B683614D4423499A26EE312BE90C0FE /* Iterators.h in Headers */ = {isa = PBXBuildFile; fileRef = 726F23C48C488E1AF98C98786932FDF1 /* Iterators.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 8B7C7D5A916F9B6B49B4EA59C59E9ED4 /* EventHandler.h in Headers */ = {isa = PBXBuildFile; fileRef = A8AA01B12BD72E9481BDC86B4359358B /* EventHandler.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 8B8FA3BCFD479CB549D3E0B5D89166A7 /* ConcurrentHashMap.h in Headers */ = {isa = PBXBuildFile; fileRef = E4C02CD52F3ECC48E0FDAB1D374C47E3 /* ConcurrentHashMap.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 8B9066223C7A8C4F93C744938A5DAD7C /* InlineExecutor.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 24D84A93DFEE19605EB3EF05B95629E1 /* 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"; }; }; + 8BACD6D08335CACDAC7EC574B832A193 /* READebugNode.m in Sources */ = {isa = PBXBuildFile; fileRef = 75F8E6BEF17738F4DD95989AA02530D2 /* READebugNode.m */; }; + 8BADD1737DFD5A2D18F8FF8EF4EFB689 /* RNDateTimePicker.m in Sources */ = {isa = PBXBuildFile; fileRef = 094BE4C397D199EA39B615A65F6DC4F8 /* RNDateTimePicker.m */; }; + 8BB527F62230ED1D60A76E499B58B239 /* Aes.m in Sources */ = {isa = PBXBuildFile; fileRef = DD5A958800B43B181B344F1410CCEAEB /* Aes.m */; }; + 8BB7954E31290C91126DDD4026CECFFD /* TOCropViewController-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 132388F5690F703D4FC06D21DDAD5C75 /* TOCropViewController-dummy.m */; }; + 8BC2D16240DA8DF8D382AB8F564CFC77 /* ThreadedExecutor.h in Headers */ = {isa = PBXBuildFile; fileRef = 423DB5428013ECD6CDEB3C4BDD1D2426 /* ThreadedExecutor.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 8BF892C4EF966B6ED49D8CBBC5763393 /* BugsnagMetadataStore.h in Headers */ = {isa = PBXBuildFile; fileRef = B5EB104F2848D58E4CA4F67A2B166034 /* BugsnagMetadataStore.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 8BF9F19B1242A1FD65C6470CCF6595EA /* CancellationToken-inl.h in Headers */ = {isa = PBXBuildFile; fileRef = FC373A9DC58CB1F490B80E66B9FE52B1 /* CancellationToken-inl.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 8C05080070F769B4F3BADF4CE30CD51C /* OpenSSLHash.h in Headers */ = {isa = PBXBuildFile; fileRef = B18D8BFF70F1BFE1FAD743784EB04A32 /* OpenSSLHash.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 8C341F59EB6702C296FE4472CB9E3D91 /* EXFileSystem-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 2F118897C006AB220C8163855124852B /* EXFileSystem-dummy.m */; }; + 8C5421809D2F81CDDE5870BDD7AD7781 /* RCTPointerEvents.h in Headers */ = {isa = PBXBuildFile; fileRef = 58F5BCDB27FBC6A69B75C4F1A6690550 /* RCTPointerEvents.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 8C58A700CF435DCE2C5FE686F9379A98 /* ThreadCachedInts.h in Headers */ = {isa = PBXBuildFile; fileRef = 461DDB2F665137904F28D0745041C260 /* ThreadCachedInts.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 8C72A3AB2B625631846F1BA4C714D5F6 /* SerialExecutor.h in Headers */ = {isa = PBXBuildFile; fileRef = 577681BE3D01B38591AC114E0D73DE94 /* SerialExecutor.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 8C8613B66694922864C839A27C72795C /* RCTScrollViewManager.m in Sources */ = {isa = PBXBuildFile; fileRef = E3E4EF97A59C1231D48A36AD639EE20D /* RCTScrollViewManager.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + 8C8E96F03A7BAB6B3647BD0F76CB7810 /* RNFetchBlobNetwork.h in Headers */ = {isa = PBXBuildFile; fileRef = 0F482264A5F03184C2C8D7EB02669185 /* RNFetchBlobNetwork.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 8C99C499FC2AC2AC1C191A6146CDED0E /* EXAV-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 399F40879EB7B6DD4E1C219C77A1EE6A /* EXAV-dummy.m */; }; + 8CA192619C34A9394EAC3F5090897B62 /* UICollectionView+SKInvalidation.mm in Sources */ = {isa = PBXBuildFile; fileRef = AED32787DE14BA131887AAC0EA14F77D /* UICollectionView+SKInvalidation.mm */; settings = {COMPILER_FLAGS = "-DDEBUG=1 -DFLIPPER_OSS=1 -DFB_SONARKIT_ENABLED=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -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"; }; }; + 8CA1EA3E091D846D862D77C7D6D17A98 /* RCTTextView.m in Sources */ = {isa = PBXBuildFile; fileRef = ED8A36714A99A4FB94FE1DE114B4B7FE /* RCTTextView.m */; }; + 8CA4BAC8A601A0D846626D4214F668B3 /* SDAssociatedObject.h in Headers */ = {isa = PBXBuildFile; fileRef = 8A2C548B73AA2D5BB802DC260BA10D9A /* SDAssociatedObject.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 8CAA4EEE2C776E564F2DC6112D64C2E2 /* FIRAnalyticsInterop.h in Headers */ = {isa = PBXBuildFile; fileRef = EABFEF26A3742B4D20A91E9C3DFF9FE3 /* FIRAnalyticsInterop.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 8CAB8CB4895B8C60422A6632042C3366 /* NSError+BSG_SimpleConstructor.m in Sources */ = {isa = PBXBuildFile; fileRef = 68FF9557211B4C4EAE34289ECC8670A9 /* NSError+BSG_SimpleConstructor.m */; }; + 8CB4517B41A5F45BFE5894EB82AB6943 /* AsyncTransportCertificate.h in Headers */ = {isa = PBXBuildFile; fileRef = 7A1BE8B05D59431DA36C8C40AC8F1685 /* AsyncTransportCertificate.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 8CC0BF54FEABE448FC543161F9F30631 /* GULSwizzler.m in Sources */ = {isa = PBXBuildFile; fileRef = 9ACF7DE9D0AD4C96FFD0FD7A5965BBC2 /* GULSwizzler.m */; }; + 8CC0D8FA4D37B3A18F006EF9B6C803BD /* GULNetworkMessageCode.h in Headers */ = {isa = PBXBuildFile; fileRef = 7B867BAEA2E53533D05505E5FBD7DD50 /* GULNetworkMessageCode.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 8CC0F0CD004FF65F42A36EA181353ACA /* RNCSafeAreaViewManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 1F83AADFDB339088F4A5728C260CA1CD /* RNCSafeAreaViewManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 8CC1C6C841AB94CEA8787AF5754571C1 /* UMReactLogHandler.h in Headers */ = {isa = PBXBuildFile; fileRef = BF32C23543FA20462B19DE963AD41925 /* UMReactLogHandler.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 8CE01F8E32048708309FA90D508A2C8C /* UMPermissionsInterface.h in Headers */ = {isa = PBXBuildFile; fileRef = FDD3541856E2E010A9D6F44CF49EDA9E /* UMPermissionsInterface.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 8D0885A10C465DC1BFB286FC04D82FCA /* FBLPromise+Then.m in Sources */ = {isa = PBXBuildFile; fileRef = C5DD48F46D8B1790D9D67B76581C205F /* FBLPromise+Then.m */; }; + 8D227473F170A7CF9446342AA76B385D /* FirebaseCrashlytics-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = A90DBAA0157F1B7A71DA54AFC9323660 /* FirebaseCrashlytics-dummy.m */; }; + 8D27EBDDF0A002BDB9FF045C72FBA1BE /* RNLocalize.m in Sources */ = {isa = PBXBuildFile; fileRef = 53490095923FA34950C79C426F7DA506 /* RNLocalize.m */; }; + 8D2979BDD7710B99A1754E3CDBB2D3C1 /* PBUtility.cpp in Sources */ = {isa = PBXBuildFile; fileRef = FC4AC844AE90D8511B58A8E5F8CCFBC7 /* PBUtility.cpp */; settings = {COMPILER_FLAGS = "-x objective-c++"; }; }; + 8D543D7F3520F2532E4A8A54770FA482 /* UIImageView+HighlightedWebCache.h in Headers */ = {isa = PBXBuildFile; fileRef = F60877BDF5E130758B51C0D0373E61D9 /* UIImageView+HighlightedWebCache.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 8D61EB9942D22928B2593B08182FA24E /* HeterogeneousAccess.h in Headers */ = {isa = PBXBuildFile; fileRef = F5FD9615C9387CDEF7E5BBFC5D2FAEE8 /* HeterogeneousAccess.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 8D6493647880B4CF9CAF8158579951DD /* AtomicUtil.h in Headers */ = {isa = PBXBuildFile; fileRef = AFBE12C4DE3A7ED228FE7E283346DFFB /* AtomicUtil.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 8D6CE9842BF33E487D467CC944AAA4B6 /* ThreadWheelTimekeeper.cpp in Sources */ = {isa = PBXBuildFile; fileRef = D9B8082407558663E343336FAD81339A /* ThreadWheelTimekeeper.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -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\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors"; }; }; + 8D7359F60511441CDE78643994F5A8E2 /* WriteChainAsyncTransportWrapper.h in Headers */ = {isa = PBXBuildFile; fileRef = 5791EF7ABEC44147E91573457866AC3C /* WriteChainAsyncTransportWrapper.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 8D7C15503C98FAC8A720818659B92809 /* RCTSha.m in Sources */ = {isa = PBXBuildFile; fileRef = E9A028ECD2FAE4A614A311ACCCFB39E1 /* RCTSha.m */; }; + 8D7D2C33D80D3848818108C9D0DFEF93 /* openssl_arm_arch.h in Headers */ = {isa = PBXBuildFile; fileRef = FC4CF500185FA215AC755932557D573A /* openssl_arm_arch.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 8D801E08B5B1D626F6C315E6B8884E50 /* ErrorCode.h in Headers */ = {isa = PBXBuildFile; fileRef = 519151A41D138ADEBAF93B5DFA661CCC /* ErrorCode.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 8D90CEBD37D1EE5B83615E0D4BD43A50 /* SDImageHEICCoder.m in Sources */ = {isa = PBXBuildFile; fileRef = 1610416C89A5844FDE756ED6F4D80A13 /* SDImageHEICCoder.m */; }; + 8DB2BD4DF33B43D6B9A360886043B37C /* RecoverableError.h in Headers */ = {isa = PBXBuildFile; fileRef = FAE9B69DE4B59C9CA70E3401E52C5A27 /* RecoverableError.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 8DE24FFE9ACEDCAD566487FBFDEA179F /* Assume-inl.h in Headers */ = {isa = PBXBuildFile; fileRef = 94C2F6F553845BBCD1EA20039EA40845 /* Assume-inl.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 8DE788B27EBABE1BFF153505676730FA /* SKBufferingPlugin.mm in Sources */ = {isa = PBXBuildFile; fileRef = F48067040CCB3B1BD73CE2965F3D7C10 /* SKBufferingPlugin.mm */; settings = {COMPILER_FLAGS = "-DDEBUG=1 -DFLIPPER_OSS=1 -DFB_SONARKIT_ENABLED=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -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"; }; }; + 8DEFBFAC1956A4F29175C644F5F2919C /* FIRCLSDemangleOperation.h in Headers */ = {isa = PBXBuildFile; fileRef = 2AB1F4E090C24BBDDB2D3261096B9A37 /* FIRCLSDemangleOperation.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 8DF00B6CC21BD890B41F8625F8E9717A /* RCTBackedTextInputDelegateAdapter.m in Sources */ = {isa = PBXBuildFile; fileRef = 9CEBD65DCEDC9D218DCDB4190B9979C3 /* RCTBackedTextInputDelegateAdapter.m */; }; + 8DF085B558793DA55B037F8AA2481C6B /* GULHeartbeatDateStorage.m in Sources */ = {isa = PBXBuildFile; fileRef = C1737AEC22308691BE969F972E941D29 /* GULHeartbeatDateStorage.m */; }; + 8DF4790A5F48AC89DE2AA03F9E53442F /* FIRCLSdSYM.m in Sources */ = {isa = PBXBuildFile; fileRef = 7B53AC5D4920E9E7B81B0D7B85003B6F /* FIRCLSdSYM.m */; }; + 8E122355E6BA25746F4CE38701EA9755 /* RCTDevLoadingView.mm in Sources */ = {isa = PBXBuildFile; fileRef = FD912543F94EC5B502AF5271B7F33F57 /* 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"; }; }; + 8E1CA8ECFB0FD28A439A7DC133145555 /* GULLogger.m in Sources */ = {isa = PBXBuildFile; fileRef = 22FCECE27AAAF9E8AAAA8027CE20B388 /* GULLogger.m */; }; + 8E2FC4F15A06F036F48700C82D72C87D /* FIRCLSSettingsOnboardingManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 4AD8CCD5A61D1B93376751FCC26B447E /* FIRCLSSettingsOnboardingManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 8E370E2F7FAA32312C1DC80F059B3A9B /* ratelim-internal.h in Headers */ = {isa = PBXBuildFile; fileRef = 2CB8C9120E2A790124C2B6FB1D6B2902 /* ratelim-internal.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 8E410D7393E02880C6703D3392B39CA4 /* CxxModule.h in Headers */ = {isa = PBXBuildFile; fileRef = F09ACD2C696E19BA02A255E902062619 /* CxxModule.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 8E49448A98365AA6F2E3A383B03FB856 /* FireForgetThroughputTcp.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 6489452F04807883523A1FFC418B15C6 /* FireForgetThroughputTcp.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -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 -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors"; }; }; + 8E4B38B0A7C618B7C40A651DBC09933C /* BugsnagAppWithState.m in Sources */ = {isa = PBXBuildFile; fileRef = FB7B707D73A96256AFB6C94EA4476430 /* BugsnagAppWithState.m */; }; + 8E66C2FDFBCEF2AD927F43C347EC2B90 /* RCTNativeAnimatedTurboModule.h in Headers */ = {isa = PBXBuildFile; fileRef = 54DBF8D2200CD59FADB221DBF6D96A39 /* RCTNativeAnimatedTurboModule.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 8E726D5FA36434EBD5406730CAC8B03A /* bufferevent_pair.c in Sources */ = {isa = PBXBuildFile; fileRef = 4390CE2552863E877774374C52DB464E /* bufferevent_pair.c */; }; + 8E74FAAD5F388A0A9EEA0421B80166D4 /* utilities.cc in Sources */ = {isa = PBXBuildFile; fileRef = 323CDB43595DA28F6122DDABBF25B75F /* utilities.cc */; settings = {COMPILER_FLAGS = "-Wno-shorten-64-to-32"; }; }; + 8E776EE11A98912453BC28816F3F2222 /* SDImageLoadersManager.m in Sources */ = {isa = PBXBuildFile; fileRef = 194758BFF0EDF20056BB0EF535F84B79 /* SDImageLoadersManager.m */; }; + 8E9501DCC8E2A501CB5967ADD1AB7F6A /* Atomic.h in Headers */ = {isa = PBXBuildFile; fileRef = A74F17B32C316E760FA01B2658047F4C /* Atomic.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 8EBADBD4A48F5BA161B98DE9144AAD7E /* RNReanimated-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 5B147776F8079045740990C71E6E0DC5 /* RNReanimated-dummy.m */; }; + 8EBFDF7D302D6F17EBA7BB7398AFB037 /* RCTSinglelineTextInputViewManager.h in Headers */ = {isa = PBXBuildFile; fileRef = ADDE8828F81CA4F99392A484A6D64E28 /* RCTSinglelineTextInputViewManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 8EDC8B43FE550100E98D668C51BE1851 /* RecordIO.h in Headers */ = {isa = PBXBuildFile; fileRef = D35714F1DE1B673DFFF46E224E8134DB /* RecordIO.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 8EE4B0736B0CEDE6316C8A83608B9BDE /* RCTEventDispatcher.mm in Sources */ = {isa = PBXBuildFile; fileRef = 66790C568554BE8BB1C7F1BCD2271848 /* 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"; }; }; + 8EF1F8DC7B96C87756BA27F276942E99 /* AsyncUDPSocket.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 9DAB5C3C0C54EF20AC6A016F81BCB324 /* AsyncUDPSocket.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -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\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors"; }; }; + 8EF2064F11511C6D37784988B170EEA9 /* IndexedMemPool.h in Headers */ = {isa = PBXBuildFile; fileRef = 5131685C986E952C022F4813E1ECECFF /* IndexedMemPool.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 8EF75CB4E19E223DFEF94CBAA968831A /* File.h in Headers */ = {isa = PBXBuildFile; fileRef = 4B0EAC37628C752F28BA38DE3F437940 /* File.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 8F03828CE74A40FE4FFE6D9B3CD33C81 /* PromisesObjC-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = E4201C99C3B6EA1D84374FE7D238F074 /* PromisesObjC-dummy.m */; }; + 8F1CD5F1194D48E6F908A31237F1E470 /* Yoga-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 3AB88A44CB2032302C4EAF3C42381FE5 /* Yoga-dummy.m */; }; + 8F21AA2FA20C54B0097D73D1053F0107 /* Inspector.cpp in Sources */ = {isa = PBXBuildFile; fileRef = D694D851AAAA37B1C0C34BAE8627F0E9 /* Inspector.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + 8F24D7B2BC340084B0DE94FA59D24ECA /* RNPinchHandler.m in Sources */ = {isa = PBXBuildFile; fileRef = 11F8A4AADD3F955AFF81E71215C2A98E /* RNPinchHandler.m */; }; + 8F2C369554FA1042108E0395D194F45F /* RCTNativeAnimatedModule.mm in Sources */ = {isa = PBXBuildFile; fileRef = 72021CD6FDC16641FE32B29F2B4298D1 /* 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"; }; }; + 8F63AB259A7D51B011EA55DE02E7B0FB /* EXPermissions-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 256DB4FCB97F81177E7B7573D07469F6 /* EXPermissions-dummy.m */; }; + 8F7E13D0584F6D9AD293E09F81EF40F9 /* it.lproj in Resources */ = {isa = PBXBuildFile; fileRef = 8D4F6F8F160C900324E6BBD8F8BD6DC2 /* it.lproj */; }; + 8F91450DD2DCB3F9006CB4AB7EBB9A78 /* BugsnagMetadata.m in Sources */ = {isa = PBXBuildFile; fileRef = 528D81F5282BB37DA67F169008605DF8 /* BugsnagMetadata.m */; }; + 8F969DB524C361C3B037AF162F1E1164 /* SDImageCodersManager.m in Sources */ = {isa = PBXBuildFile; fileRef = 52D16F7C92685969291985881C5CD1EE /* SDImageCodersManager.m */; }; + 8F9AB547181647DF4807ADD29594BC2D /* Windows.h in Headers */ = {isa = PBXBuildFile; fileRef = F59A6F4DC9C806979A5F9CD7065B6AA5 /* Windows.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 8FC6AF026A0F4324DC912521BFF26DE5 /* RCTDecayAnimation.m in Sources */ = {isa = PBXBuildFile; fileRef = 64E7E67524069560BB6B8664907E4EC5 /* 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"; }; }; + 8FC8BE266412278F6A06262CEFC25FE7 /* RootView.m in Sources */ = {isa = PBXBuildFile; fileRef = 0BC0AF6F7F1840A616C4EF1AA18B071A /* RootView.m */; }; + 8FC9D64BA5DA1D77663ED2FEF2CD8655 /* BSG_KSCrashContext.h in Headers */ = {isa = PBXBuildFile; fileRef = D1695FF45F7EFD0F6B23C0407157CC45 /* BSG_KSCrashContext.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 8FCA853B138758AC6A96031B1ADC171E /* PriorityUnboundedBlockingQueue.h in Headers */ = {isa = PBXBuildFile; fileRef = 05FEF18BBE69CEA1E69CCFCDCA99C400 /* PriorityUnboundedBlockingQueue.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 8FCAEC08D4C87B774BE2019207D67F10 /* CancellationToken.h in Headers */ = {isa = PBXBuildFile; fileRef = 137CE9966138749DB6E09866AD79541B /* CancellationToken.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 8FEA7CCBE95369836128207D21E7EBFE /* UMModuleRegistryHolderReactModule.h in Headers */ = {isa = PBXBuildFile; fileRef = F26DCDB073067708AD7C60F110CA061B /* UMModuleRegistryHolderReactModule.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 8FF84446FE7FC8FD19CB934AA37241E9 /* Baton.h in Headers */ = {isa = PBXBuildFile; fileRef = D4D6CCBBE78B400B6423476C4419EEDD /* Baton.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 9000ED0C5C7BF90A5AD7B407D0EA396E /* EXConstants.m in Sources */ = {isa = PBXBuildFile; fileRef = 5B8B887F1F5AC48CCD49D88B008EC0AA /* EXConstants.m */; }; + 9004BD3B2B71C20129D136519D9E375D /* QBVideoIconView.m in Sources */ = {isa = PBXBuildFile; fileRef = 54FFA83F2F80083AB0266C03CD7132C7 /* QBVideoIconView.m */; }; + 9029FC3F9BAB94870CAC17152D45579B /* log.h in Headers */ = {isa = PBXBuildFile; fileRef = B7F4364BDBBBC33E6CAD9E672693E774 /* log.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 903F1CEA81BED0687F6A5282971C1B94 /* JSCExecutorFactory.mm in Sources */ = {isa = PBXBuildFile; fileRef = 95F92A612914BDEC7924724EB18891C6 /* JSCExecutorFactory.mm */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + 90406B9E5D1F1E0A2B4C03E8A24B8099 /* GDTCOREvent.h in Headers */ = {isa = PBXBuildFile; fileRef = DF3A7061D50176ED65E5FE98AE32410A /* GDTCOREvent.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 904CCF1DA02ACAABCCD135A4E6E021CC /* RCTSurface.h in Headers */ = {isa = PBXBuildFile; fileRef = 40C47DF61E35F4793300494752C3D210 /* RCTSurface.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 905929E7AD8817A6FF453EF7331CD402 /* RCTRootContentView.m in Sources */ = {isa = PBXBuildFile; fileRef = 93A8BE9D0FEAE0D5377DB25DCCFC8D1D /* RCTRootContentView.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + 906AA563191A2917C74B3930E5A7C5F1 /* ThreadCachedInts.h in Headers */ = {isa = PBXBuildFile; fileRef = F807E37EF0726DC1414E32115CFDCAD5 /* ThreadCachedInts.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 906F81B02AF6433FF551221C78F8683D /* RNNotificationCenter.m in Sources */ = {isa = PBXBuildFile; fileRef = AC589C3F3182F43CA06615B88BE9744E /* RNNotificationCenter.m */; }; + 90898528AD53B423E23A21318A6F70E7 /* BugsnagStateEvent.h in Headers */ = {isa = PBXBuildFile; fileRef = F20BBBFC85F40454A7B0070814063AD7 /* BugsnagStateEvent.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 9097C32A4412DEEEEDACB4D3FC7B99EA /* GDTCORPlatform.m in Sources */ = {isa = PBXBuildFile; fileRef = 281E167C3CD28D913FFC0D76385BA698 /* GDTCORPlatform.m */; }; + 90AC36E8F28EC86B055ACB4988775AAC /* FlipperRSocketResponder.h in Headers */ = {isa = PBXBuildFile; fileRef = 2C8B9227524522C4C2CA7E8C31B3BB06 /* FlipperRSocketResponder.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 90E9126F65E57EC19BD57291739E40A5 /* FIRInstallationsLogger.h in Headers */ = {isa = PBXBuildFile; fileRef = C244AA513FFAD26EAB360CBA0358127F /* FIRInstallationsLogger.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 90F204C29CC2CD48B555689635148704 /* Promise.h in Headers */ = {isa = PBXBuildFile; fileRef = A9CB7A325F6C4A8CD958B643A1CA5898 /* Promise.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 90FD96A7A02207605747CFBF643974A7 /* BugsnagLastRunInfo+Private.h in Headers */ = {isa = PBXBuildFile; fileRef = E1AC095A5B43CACDFB3CA599A89CEF58 /* BugsnagLastRunInfo+Private.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 91120D81D43D3CB2DF83087D7CA76227 /* SocketOptionMap.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 14AE3D2010971E8953CA13E52B3A3D3E /* SocketOptionMap.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -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\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors"; }; }; + 9119E48777DCA5DDFBA9407A4C5F3BF4 /* ShutdownSocketSet.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 24337C6D6BEC0E513105179D48438335 /* ShutdownSocketSet.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -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\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors"; }; }; + 91297D1CBABCA28C2044DFF00A0078E0 /* FIRComponentContainer.h in Headers */ = {isa = PBXBuildFile; fileRef = 1A2BBD20BA4A44E2396498DD89D9251A /* FIRComponentContainer.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 91325CDE88E5F71A0490EF56397755ED /* RCTShadowView.m in Sources */ = {isa = PBXBuildFile; fileRef = 1A74625F08EFCBE38E874C98F984D054 /* RCTShadowView.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + 914F22BBABC46FF1601DC228A33E4033 /* IOThreadPoolExecutor.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 34958578C2D08BED25A9D066D85A48D7 /* 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"; }; }; + 9156CAE7B51C32678CE8B93FB88C60E3 /* SKViewDescriptor.h in Headers */ = {isa = PBXBuildFile; fileRef = 659CEBCC02772788527A0DB608B01B2B /* SKViewDescriptor.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 917B649F702E3EB0814591BEEC425B25 /* vlog_is_on.cc in Sources */ = {isa = PBXBuildFile; fileRef = AA2E2DFB21A4D2B6BC1D3847332820F3 /* vlog_is_on.cc */; settings = {COMPILER_FLAGS = "-Wno-shorten-64-to-32"; }; }; + 91836EC0820B2341A7C0765D3D0A4CA1 /* RCTSinglelineTextInputView.m in Sources */ = {isa = PBXBuildFile; fileRef = 1A9638AFE653B4FEE8A22B4484C701B3 /* RCTSinglelineTextInputView.m */; }; + 9189F266DE8073AEED5073F57586147A /* UIImage+GIF.h in Headers */ = {isa = PBXBuildFile; fileRef = 03E14DE59094BF7EC1240C23D0AAB6A7 /* UIImage+GIF.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 91D0BC0B7FEA729E15BDF86C85B51597 /* RNCWebViewManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 16439CA5F514D320CF5EA4A3E540358A /* RNCWebViewManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 91F3C5E4B06ECEF109E0E2C77E3E654E /* Utils.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 23D2EC83CB8129047181B09268B00526 /* Utils.cpp */; settings = {COMPILER_FLAGS = "-fno-omit-frame-pointer -fexceptions -Wall -Werror -std=c++1y -fPIC -fno-objc-arc"; }; }; + 91FDD7B907E719D2F2F085B7BB70929B /* EXAV.m in Sources */ = {isa = PBXBuildFile; fileRef = A8512406AA9C785FC47F1D9EFAEE0312 /* EXAV.m */; }; + 920A3164258B2EEC5D3209528BDB7FE5 /* PolyException.h in Headers */ = {isa = PBXBuildFile; fileRef = 37AF08B609587CF2F2B7DFE083728C9F /* PolyException.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 923D4243D761B2D782DEC412F0D07FE4 /* RSocketServerState.h in Headers */ = {isa = PBXBuildFile; fileRef = 314F2B2F68329CE3B94D04E536278460 /* RSocketServerState.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 923DA1F34D80B84C331142BD8DD784AF /* FBCxxFollyDynamicConvert.mm in Sources */ = {isa = PBXBuildFile; fileRef = 178AAE6B594B5B7E771E92DAD364FF10 /* FBCxxFollyDynamicConvert.mm */; settings = {COMPILER_FLAGS = "-DDEBUG=1 -DFLIPPER_OSS=1 -DFB_SONARKIT_ENABLED=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -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"; }; }; + 925CF7CD41AE898D4DEEB7616CA5B541 /* RCTDeviceInfo.mm in Sources */ = {isa = PBXBuildFile; fileRef = 63FEB9073596EEC82CA93527A3335C35 /* 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"; }; }; + 926998A0F32ADB050748C38E7318833A /* RootView.h in Headers */ = {isa = PBXBuildFile; fileRef = 0180A12731ED33F0F3326D120B58242C /* RootView.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 92A8797AB1CC29C32C7692A1B523652E /* ja.lproj in Resources */ = {isa = PBXBuildFile; fileRef = 8377D5B92B1818A3AAE602AE8C18EF12 /* ja.lproj */; }; + 92B1869A3C9D9915E9D3D94FDDF2BBC4 /* Instance.h in Headers */ = {isa = PBXBuildFile; fileRef = C49D0128CB07E3148BD5E5F19BA1EA56 /* Instance.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 92C109218DEBC0B9AC922096A6618A0E /* AtomicUnorderedMap.h in Headers */ = {isa = PBXBuildFile; fileRef = 5995CF9DCF532EEDE852579D56B1BAC2 /* AtomicUnorderedMap.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 92C58C0EDB296125AFCBA2BE4E598973 /* Lazy.h in Headers */ = {isa = PBXBuildFile; fileRef = A89F8E8588D3A040D9A2CC55D00CCE76 /* Lazy.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 92C74669EA3480547556E1EB6BACAD29 /* FIRErrors.h in Headers */ = {isa = PBXBuildFile; fileRef = 63A4C477F2CB2B884266342A8B16406A /* FIRErrors.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 92C8F2C09EE755D2F57F609ADF1E5C1F /* FIRCLSProcessReportOperation.h in Headers */ = {isa = PBXBuildFile; fileRef = B63F79830273A3DF0E8D709BA0816775 /* FIRCLSProcessReportOperation.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 92C9A1312FC015461DD8B2117EC75697 /* huffman_utils.h in Headers */ = {isa = PBXBuildFile; fileRef = 5B928E99BB84507D5873C62F0A82FD49 /* huffman_utils.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 92EC013C005C25EB51BAE42DB679B699 /* RCTMultilineTextInputView.h in Headers */ = {isa = PBXBuildFile; fileRef = 99426704230609B4CF885AD3E0E448AC /* RCTMultilineTextInputView.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 9300E2527B1AAB50A6B6E7D6F27D8241 /* fi.lproj in Resources */ = {isa = PBXBuildFile; fileRef = 1DE0410E1582C5B2C5ADC77DAAE957D4 /* fi.lproj */; }; + 93016A61649F76D78403148C998A04A3 /* StorageGetters.m in Sources */ = {isa = PBXBuildFile; fileRef = 213D58F4C36044D2D7244175DCDF0213 /* StorageGetters.m */; }; + 931526BD5D9A93D52E573099DCB7C2E4 /* cost_sse2.c in Sources */ = {isa = PBXBuildFile; fileRef = 2EE4A5D73F23FCC7986BCCDDF505606B /* cost_sse2.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; + 93191C5978B2F7C4578F5EF4F3196633 /* logging.h in Headers */ = {isa = PBXBuildFile; fileRef = F5B7A7557434258316DCCD0C31D78362 /* logging.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 93274453DE3AC1D05EAC65254862E6EA /* utils.c in Sources */ = {isa = PBXBuildFile; fileRef = 929C00F9896BB239C78A0788F9AA230A /* utils.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; + 933105A0FD7E85600BF692BBE1525C93 /* UIImage+MemoryCacheCost.h in Headers */ = {isa = PBXBuildFile; fileRef = 57BF65B2DDBDA73523AC58A73FF0F235 /* UIImage+MemoryCacheCost.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 933689541869A7CB3273B3B693308AFA /* RCTDataRequestHandler.h in Headers */ = {isa = PBXBuildFile; fileRef = C6B1066D2E2BCA2EF6415B87774B99F9 /* RCTDataRequestHandler.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 933A07344B992D335D2C0DA6C3451F0C /* SKEnvironmentVariables.m in Sources */ = {isa = PBXBuildFile; fileRef = 6D2E0D8BFA79DDABB3D14F4747B3AE74 /* SKEnvironmentVariables.m */; settings = {COMPILER_FLAGS = "-DDEBUG=1 -DFLIPPER_OSS=1 -DFB_SONARKIT_ENABLED=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -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"; }; }; + 933ACB46F8E0AC07E9D5B83A4C087D83 /* GULLoggerCodes.h in Headers */ = {isa = PBXBuildFile; fileRef = 08DD1C8956EFC51591EE871B90105F17 /* GULLoggerCodes.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 93492D92E7A161A1EB9612212285EACF /* CoreCachedSharedPtr.h in Headers */ = {isa = PBXBuildFile; fileRef = 4702F8B4394700B876E6EC9AA10B126F /* CoreCachedSharedPtr.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 936D5F514F92A90CC1BE7B0A593724D4 /* FBLPromise+Recover.m in Sources */ = {isa = PBXBuildFile; fileRef = 63EB0BF60D7A3D832010E0B4D7883CA2 /* FBLPromise+Recover.m */; }; + 938D6CE3852243FC47DB49C89452DB4C /* FIRCLSSettings.m in Sources */ = {isa = PBXBuildFile; fileRef = 0F34C62FBEEA16631A2D9F75D2C44842 /* FIRCLSSettings.m */; }; + 93B1B5AA846FF98B591DE480C117BF1F /* RNNotificationCenterListener.m in Sources */ = {isa = PBXBuildFile; fileRef = E68905C156ABE50BA45B88BB0A773969 /* RNNotificationCenterListener.m */; }; + 93BFABB6362025C462715546D9D88E61 /* Singleton.cpp in Sources */ = {isa = PBXBuildFile; fileRef = F57554B8798B821B86D33DA39C44C6F7 /* Singleton.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -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\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors"; }; }; + 93C0C00B856FEE25CEF5D5233F2EEEA5 /* SafeAreaSpacerView.m in Sources */ = {isa = PBXBuildFile; fileRef = D60FBEC67E263236021D52314FE75310 /* SafeAreaSpacerView.m */; }; + 93C34CD0EF09DB3832A77768774D2AB2 /* LifoSemMPMCQueue.h in Headers */ = {isa = PBXBuildFile; fileRef = 57FFD5B54DBEC11A0471671A073B6D12 /* LifoSemMPMCQueue.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 93C35148BE29D6B9B075AE89BB2888E1 /* FlowableObserveOnOperator.h in Headers */ = {isa = PBXBuildFile; fileRef = 19DEC86B796AFA6357C76938F5511B32 /* FlowableObserveOnOperator.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 93CDF8F76A7D56406EA25212CD0DB110 /* FBLPromisePrivate.h in Headers */ = {isa = PBXBuildFile; fileRef = 4ED6A9FCCBF7998657CABFCED7B8D0B4 /* FBLPromisePrivate.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 93F7C78FEEE9D79D08646514449D4106 /* React-RCTText-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 1C776F25F21E87DDEAA73384920D0403 /* React-RCTText-dummy.m */; }; + 9400128348D45A0FED132A83699834BC /* RangeCommon.h in Headers */ = {isa = PBXBuildFile; fileRef = 0D8871D033546D93298536FDC9EFB36D /* RangeCommon.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 940CCA51E493DF294E0887FFF2BC1C67 /* cost_mips32.c in Sources */ = {isa = PBXBuildFile; fileRef = A6B173C42E5C4B89C6E1A28AFE092DCA /* cost_mips32.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; + 9425209E3A7E10EB5E59896E7982B174 /* OpenSSLPtrTypes.h in Headers */ = {isa = PBXBuildFile; fileRef = 85F8663181D4BEFD7B47A1D9A9981D4A /* OpenSSLPtrTypes.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 9447CCB3925D3C6D55CBE6E394FCEED2 /* Padded.h in Headers */ = {isa = PBXBuildFile; fileRef = 5925C55CF0E20D4248DF023A3B08DAF6 /* Padded.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 94509AB829FD23AB094465983B042AE5 /* UIImage+MultiFormat.h in Headers */ = {isa = PBXBuildFile; fileRef = D28E11947246CB06DA165492B4BDF211 /* UIImage+MultiFormat.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 945549C70EFC3F79AC3BBFDAAF64CEC8 /* EXSessionResumableDownloadTaskDelegate.m in Sources */ = {isa = PBXBuildFile; fileRef = 9C776381CEC4281D942CD39D3E725A0F /* EXSessionResumableDownloadTaskDelegate.m */; }; + 945AC29FAE9335F4C431A6FCE2C1BAD3 /* Indestructible.h in Headers */ = {isa = PBXBuildFile; fileRef = DC9347580DD46D4613601B5B364CE3E8 /* Indestructible.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 946AB0F896C0BD2DE88BC05477AAD997 /* Subprocess.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 99464526434E7417235B1DA89FC8AFBE /* Subprocess.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -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\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors"; }; }; + 947774A72FD0D9A9FF5014743C94F665 /* CodedInputData.h in Headers */ = {isa = PBXBuildFile; fileRef = C288B40E2097CE575595F2B83C2A0472 /* CodedInputData.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 949C47FF1313A2E5FE1880FD0D03A057 /* Exception.h in Headers */ = {isa = PBXBuildFile; fileRef = 0FD3FC947824CE834932C472A7C177B5 /* Exception.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 94A1D2E0A64D7695409280C57C72C973 /* RNGestureHandlerState.h in Headers */ = {isa = PBXBuildFile; fileRef = 831CBF020C42108AC4D99F887A905219 /* RNGestureHandlerState.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 94C401FCBE56C3D8E3F9FC8149002F39 /* REAConcatNode.m in Sources */ = {isa = PBXBuildFile; fileRef = 59A362585FC1DCE6EBCB514F91F0F0FE /* REAConcatNode.m */; }; + 94D76A6F3F26133560078E1EBE7118F4 /* openssl_aesv8-armx.S in Sources */ = {isa = PBXBuildFile; fileRef = BF18C673FF1CF6FAA32ADF19EA0942B0 /* openssl_aesv8-armx.S */; }; + 94ECE7823125C2F243E5600CFACF196A /* BugsnagUser.h in Headers */ = {isa = PBXBuildFile; fileRef = 87EE099A2FA7249C71DA0EEFE4D874C6 /* BugsnagUser.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 94EDB8C1ED885303C9E1B89917DA04BA /* AtomicStruct.h in Headers */ = {isa = PBXBuildFile; fileRef = 483A424645C643C6F62273D264C9C012 /* AtomicStruct.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 94EF6F8203070585CB312B152F7CCEB2 /* BugsnagApp.m in Sources */ = {isa = PBXBuildFile; fileRef = 73DE348138F627811E88BC6D05D17795 /* BugsnagApp.m */; }; + 94F11D0612AF34B1A6D61B36E679CA20 /* Bits.h in Headers */ = {isa = PBXBuildFile; fileRef = 0EBD1E83852B9EBE8D2EE01EC0A92D8B /* Bits.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 9507342AA71A57DAC74EF3EFDA7641FE /* Uri.h in Headers */ = {isa = PBXBuildFile; fileRef = C028A0DFD42134BB483EB42D8ADA552F /* Uri.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 950B3D54C793A946670DDFB7ADA7ABC5 /* RCTComponent.h in Headers */ = {isa = PBXBuildFile; fileRef = 3F13A0EF39A72533000EEEE0111DF255 /* RCTComponent.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 951B14CD82FF080965F325EE26A3101D /* Executor.h in Headers */ = {isa = PBXBuildFile; fileRef = 96C47B2C14F09F0CEEE92D97B1AAA4F4 /* Executor.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 95267013F70178B9077A5028EE2FFF0A /* RCTPackagerConnection.h in Headers */ = {isa = PBXBuildFile; fileRef = 19168441D5C8B571BF98E174D35C8DFB /* RCTPackagerConnection.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 953178AE17BF3228DE589A9FC3044E13 /* RCTMacros.h in Headers */ = {isa = PBXBuildFile; fileRef = 86A212C5E3B3DA33A5250FFA9E9D75AB /* RCTMacros.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 95324ADF801495D99BFE48F2076D2029 /* FIRComponentType.h in Headers */ = {isa = PBXBuildFile; fileRef = 14E9AEBA220A2D5DB5D2C0F836D2FD20 /* FIRComponentType.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 9533850233342569ACFDA2410E569016 /* MPMCPipeline.h in Headers */ = {isa = PBXBuildFile; fileRef = BEA197A86A523FC2F0293A232E2ABB08 /* MPMCPipeline.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 9536064799893158B8035938B461D1A7 /* openssl_md5_locl.h in Headers */ = {isa = PBXBuildFile; fileRef = 07F73D1FFAF03D36C9090687099B6CF4 /* openssl_md5_locl.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 95448FB1CEE152E8CE853E14B0EFEFD6 /* RCTNativeModule.h in Headers */ = {isa = PBXBuildFile; fileRef = C32393DDB51A0B195B34B4535A256CB4 /* RCTNativeModule.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 9548AE22504392C8D2F9321985962FD5 /* UMEventEmitterService.h in Headers */ = {isa = PBXBuildFile; fileRef = 18841EAE64922AEF1A7C678B7D082522 /* UMEventEmitterService.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 9555BE4B01AA12D6D5212D900CBCAC13 /* BSGJSONSerialization.h in Headers */ = {isa = PBXBuildFile; fileRef = 1A2AB5B10BF8177FEF938E1DE5ACB5DD /* BSGJSONSerialization.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 955E23642F896BEF11301A2068E35AAD /* StaticSingletonManager.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 2507C973B486611A9285B0B07C570945 /* 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"; }; }; + 955EC830DB7E6205DE2C545D1430285C /* UMBridgeModule.h in Headers */ = {isa = PBXBuildFile; fileRef = 1FE85751FD04148C40BE6AD60B12D67A /* UMBridgeModule.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 956A067DE1783334DB4B56DC0F5B5F75 /* cached-powers.h in Headers */ = {isa = PBXBuildFile; fileRef = C92DFEB7E0726FD3ED0828A3E897A8C8 /* cached-powers.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 958B1E58790A703569F41396A48166D4 /* SDImageCache.m in Sources */ = {isa = PBXBuildFile; fileRef = 433A8432857858E37AE10F9E545EACB1 /* SDImageCache.m */; }; + 959DBC5269F66A4E45307D812CAC8A13 /* Base.lproj in Resources */ = {isa = PBXBuildFile; fileRef = 5D37DCC69BBEFCB2217A97B4F202D626 /* Base.lproj */; }; + 959E5619490B4E1DE478AB8E99FB529D /* EventUtil.h in Headers */ = {isa = PBXBuildFile; fileRef = 79D6A081D3A9465A497EC92A32E90940 /* EventUtil.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 95A24AC81C6A0F5A0E4FFEAB2F25CE4F /* Portability.h in Headers */ = {isa = PBXBuildFile; fileRef = 174AE9F8FFEA896956777A4D5A703D6C /* Portability.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 95C0EAA456A571DE40255FAB0844D51F /* RCTRedBox.mm in Sources */ = {isa = PBXBuildFile; fileRef = 33B19ADF73B1A5C1386B8D179722B428 /* 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"; }; }; + 9624DFA3C4B2B4CF6C6F0DE32AF39F33 /* RNNotificationUtils.h in Headers */ = {isa = PBXBuildFile; fileRef = 857C068BB3BC753DC382372AF7C840C5 /* RNNotificationUtils.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 96338E6BC94006C0CE93AE63489A3806 /* BSG_KSMach.h in Headers */ = {isa = PBXBuildFile; fileRef = C1266DDB7B3CEB8B1201BA5AECDB1612 /* BSG_KSMach.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 963DFB09DAB4DBBE715082D650F56D54 /* RNCSafeAreaShadowView.h in Headers */ = {isa = PBXBuildFile; fileRef = D5C9DB500B1E39595B959B32B30E2C9C /* RNCSafeAreaShadowView.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 966663071C89279B8A67E3420B3EA188 /* RCTVibrationPlugins.h in Headers */ = {isa = PBXBuildFile; fileRef = B8F4214C366F610C6CC161D5EF319EE7 /* RCTVibrationPlugins.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 96754E93241310C96209C1C138BE994B /* FIRCrashlytics.h in Headers */ = {isa = PBXBuildFile; fileRef = 82240936E8F34134BB053A71108A1882 /* FIRCrashlytics.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 969A887112974C3E2C077DEB38FF3900 /* SysFile.h in Headers */ = {isa = PBXBuildFile; fileRef = BA4DB82DDD53437C4A144B7869223AD5 /* SysFile.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 96A96BF67B78BDBB807C9DDE2D42C66D /* FIRLibrary.h in Headers */ = {isa = PBXBuildFile; fileRef = 9287B76C2C9B47239AC1E73D2BBD8149 /* FIRLibrary.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 96C4068BF122CA796B64BDFD2468381B /* FLEXUtility.h in Headers */ = {isa = PBXBuildFile; fileRef = 247E4D9323817E69FAB3DB5EDA142122 /* FLEXUtility.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 96E4157A7B26CE4ED038A26FBEC6EC79 /* AtomicUtil-inl.h in Headers */ = {isa = PBXBuildFile; fileRef = 69266AA2F199517E1CE3701554C2D38D /* AtomicUtil-inl.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 96F937A210596A21189D073D31D926C9 /* IPAddressV4.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 8ECD57833AD52E56854CAE6C4AED24D4 /* IPAddressV4.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -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\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors"; }; }; + 96FF134C18A4439B970F03B496F7BB4A /* changelist-internal.h in Headers */ = {isa = PBXBuildFile; fileRef = 405E25E6453CADACC8A7D299F35D9104 /* changelist-internal.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 9702D243DFC5ACDE2EB41E751CE277A6 /* ProgramOptions.h in Headers */ = {isa = PBXBuildFile; fileRef = 6492EDEF88CA1D527C6BEB10E7440F08 /* ProgramOptions.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 970BB180F89D45C1D5738B30CD626F4B /* SysMembarrier.h in Headers */ = {isa = PBXBuildFile; fileRef = F33FCC88A656E718464320FF41707B79 /* SysMembarrier.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 9745A838A3553CA80E4578415AC31465 /* Malloc.h in Headers */ = {isa = PBXBuildFile; fileRef = 7A06BEF117B7D676C86D7DE2A046C9DD /* Malloc.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 9745BB9C64BB16CDB4F6652AFB49C74F /* BugsnagBreadcrumb.m in Sources */ = {isa = PBXBuildFile; fileRef = 7DDCC772E3B2626C041769FF1CFD16FB /* BugsnagBreadcrumb.m */; }; + 975779A8CE481A97336FC1F6F860D613 /* TurboModuleUtils.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 8529395CDBC6EFE68705E9AFD278C736 /* TurboModuleUtils.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + 975AC226C49171D3D323CCB1319A42E3 /* FIRAEvent.h in Headers */ = {isa = PBXBuildFile; fileRef = 32A511EC977AD0BCB49CEA879D8A1055 /* FIRAEvent.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 97805879832810482FA9569DB0F653EC /* UMReactFontManager.h in Headers */ = {isa = PBXBuildFile; fileRef = C195C15C494B221007C723593670F997 /* UMReactFontManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 97954F8AD4A5EB3A53E49624DC3A7899 /* SDWebImageManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 1E37499E51FB49512D8F542A58B70688 /* SDWebImageManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 9797462AC360B0C39E250AEE6F3E1073 /* RCTDatePicker.h in Headers */ = {isa = PBXBuildFile; fileRef = 22A9372738E8D041C6294C72B7D234CD /* RCTDatePicker.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 97C1452002AE119071971C73A6875D2D /* SerialExecutor.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 14974ACFB8319826184345805AE1BA56 /* SerialExecutor.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -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\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors"; }; }; + 97DF42D60D472C78ABB42974C4672803 /* Orientation.m in Sources */ = {isa = PBXBuildFile; fileRef = 535F71DC083BD6DC83AE41E30FB10B6A /* Orientation.m */; }; + 97F25565D1C648496CB5ED1C657F5086 /* RValueReferenceWrapper.h in Headers */ = {isa = PBXBuildFile; fileRef = 979E7FEE22327117DC214AE9CD06679A /* RValueReferenceWrapper.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 981161FD3F202C634F438C067D922A8F /* KeyboardTrackingViewTempManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 204F067D5D1AA1B323B1F61E9E15474E /* KeyboardTrackingViewTempManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 98144B1DC740485421ED3BDF91CE89D8 /* UMNativeModulesProxy.m in Sources */ = {isa = PBXBuildFile; fileRef = FA244FC87045F1DBCFA197A0DD24F855 /* UMNativeModulesProxy.m */; }; + 981A47FF9F4A82A0FF199FAB3DF753FF /* GULUserDefaults.m in Sources */ = {isa = PBXBuildFile; fileRef = A8E677B559055F437CAD3C6DE15C2693 /* GULUserDefaults.m */; }; + 983C07B9FA7CD711227A49EADA39E4D3 /* BSG_KSMachHeaders.c in Sources */ = {isa = PBXBuildFile; fileRef = 6C7ECCF5EAD09274C732393613891D4C /* BSG_KSMachHeaders.c */; }; + 98444517DF716FD08D69EE6A6B90CA0E /* CheckedMath.h in Headers */ = {isa = PBXBuildFile; fileRef = C76D2EF8CBBC06D9CAD7AA5F180D747B /* CheckedMath.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 984926EB982BC571152530A84BA80D04 /* GMock.h in Headers */ = {isa = PBXBuildFile; fileRef = EFD4097B80231FC57723D7A7599CF48D /* GMock.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 984928263040C2A02F449ADEA75CBA59 /* FIRCLSUnwind_x86.h in Headers */ = {isa = PBXBuildFile; fileRef = FBB7125ADFCF78448D0F36274B52C84F /* FIRCLSUnwind_x86.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 98516E0B87BEF785653392202E19988C /* Builtins.h in Headers */ = {isa = PBXBuildFile; fileRef = 5753F0CBA2453565481BB17F6716822B /* Builtins.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 9860AAA40F2BBB9D737F6A21DC000911 /* FIRStackFrame.m in Sources */ = {isa = PBXBuildFile; fileRef = 848941C0343F09003EFA9E3BD5A3E5D7 /* FIRStackFrame.m */; }; + 988D42C8242951CEA30038F87D5F8795 /* BlurViewManager.h in Headers */ = {isa = PBXBuildFile; fileRef = C168B257C296583F2E04E4803FDEA54A /* BlurViewManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 9893816C3E70F236B24AE27C7E8E771D /* EXConstantsService.h in Headers */ = {isa = PBXBuildFile; fileRef = EE0023B4A8761E97045FD66E0191155C /* EXConstantsService.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 98D469AB94796736F7C439489A1E0322 /* FIRCLSThreadState.c in Sources */ = {isa = PBXBuildFile; fileRef = 2DCDA8B91A186FA200056205DA2477FB /* FIRCLSThreadState.c */; }; + 98D5543B688540BC841C1C1813CE78AE /* FIRCLSUUID.h in Headers */ = {isa = PBXBuildFile; fileRef = ECC13EFAFE42DDD8635067D4053E26F7 /* FIRCLSUUID.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 98E0ADC98971B224BC141542DE4D29DC /* ThreadCachedInt.h in Headers */ = {isa = PBXBuildFile; fileRef = 3888B2071722F74F671F41E63C402946 /* ThreadCachedInt.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 98F2601D5231BA9F1361DB92F1692C2A /* BugsnagError+Private.h in Headers */ = {isa = PBXBuildFile; fileRef = 6D162746E137EFF9841458EA39CF5AAE /* BugsnagError+Private.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 98FDF1D9516D2D0610264B9F82382BE1 /* AtomicLinkedList.h in Headers */ = {isa = PBXBuildFile; fileRef = FFD63B3614A36E11D4A3B917BF0B2223 /* AtomicLinkedList.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 9901F1B0EE2B2B56B4BE95C4178C4F92 /* GULSecureCoding.h in Headers */ = {isa = PBXBuildFile; fileRef = 7C37D10E9A01EB97CE77A2E6C173D2C5 /* GULSecureCoding.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 990871901469F57EA2F2B1F55183A9FC /* Codel.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 66E6376475EDC1D49C093FB33AE95C58 /* Codel.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -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\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors"; }; }; + 9919F6E33ED9112EDE8C94603CD3CECD /* RNJitsiMeetViewManager.m in Sources */ = {isa = PBXBuildFile; fileRef = 72F09B481BA119EF2EC7893B0A7171B0 /* RNJitsiMeetViewManager.m */; }; + 992B08438AF92E419E4FDEEA030602CB /* Flowables.h in Headers */ = {isa = PBXBuildFile; fileRef = CAE3B513D2466CE7B9C9D528D733BFB0 /* Flowables.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 992E8A4AFD984765104DFFD2F7BE3008 /* FrameTransportImpl.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 6A61F8A8DFBE1EE2BB45DAD8BEA5C3B3 /* FrameTransportImpl.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -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 -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors"; }; }; + 9941F75B8B4B9019DF6BF8A6F32A99A4 /* NotificationQueue.h in Headers */ = {isa = PBXBuildFile; fileRef = 38EB86AFE8670A463FA6BD943A58F830 /* NotificationQueue.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 9945EED8AD9DA892D464CF77A3815C7D /* RCTSliderManager.m in Sources */ = {isa = PBXBuildFile; fileRef = 1653BE17685D8695AD53B0926901A334 /* RCTSliderManager.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + 99536620398822E3C09FC35A17E98B42 /* IPAddressException.h in Headers */ = {isa = PBXBuildFile; fileRef = 451A4DC3ECA60617ECD97A3513BABDC4 /* IPAddressException.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 995BB07ECCC02EB331F7440DEE7B8B2F /* HardwareConcurrency.cpp in Sources */ = {isa = PBXBuildFile; fileRef = FC85D8AF9D1575904B9685DF53D41DB5 /* 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"; }; }; + 996F014FE84BA76FB16F4DF439866935 /* vlog_is_on.cc in Sources */ = {isa = PBXBuildFile; fileRef = E08C7917A39B65602D642F0F8B1420E3 /* vlog_is_on.cc */; settings = {COMPILER_FLAGS = "-Wno-shorten-64-to-32"; }; }; + 997BA119C5D0A8728A550C1ECE8C5AD2 /* F14Map.h in Headers */ = {isa = PBXBuildFile; fileRef = 5CAD86C6BC3B88ADD8266DC70ABF154B /* F14Map.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 997CEEC487FF1ABD2D726AD80FB6DE3D /* RWSpinLock.h in Headers */ = {isa = PBXBuildFile; fileRef = A3902286D50885212D595DE5B054CDFE /* RWSpinLock.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 99C6C32ED3C9C83A3AC19B87BB41CD0B /* FrameTransport.h in Headers */ = {isa = PBXBuildFile; fileRef = 08352C8CAC1838E9D2DE5E829028575D /* FrameTransport.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 99D3AF6AA0279EBE5D3AF82E873E945D /* Promise.h in Headers */ = {isa = PBXBuildFile; fileRef = 1EB6441C46623EFBB74D374B620D6758 /* Promise.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 99DBC104D84C51083EA95CC54CE59DF5 /* ExecutionObserver.h in Headers */ = {isa = PBXBuildFile; fileRef = 74BCC8607C10CB05E4D0CD3BE3AC4F9E /* ExecutionObserver.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 9A0BE34983160479A86D36C05FD3DA27 /* FIRCoreDiagnosticsInterop.h in Headers */ = {isa = PBXBuildFile; fileRef = 7B49B444E0D78C35F9EF1A2FB6D0EBFE /* FIRCoreDiagnosticsInterop.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 9A0E2720619BA134EB724514F5ACAC99 /* Format.h in Headers */ = {isa = PBXBuildFile; fileRef = 3B96987760DE83D3138F2EB78149C2F5 /* Format.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 9A229686FD336C62130D455CBBFF1238 /* FIRCoreDiagnistics.h in Headers */ = {isa = PBXBuildFile; fileRef = CF430869D640E630ABEAFE06D4BE94B2 /* FIRCoreDiagnistics.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 9A4764272B17E0B5E1B5872BD4975C9E /* react-native-restart-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = C347441AD794A6AB6894FE5F60D5DDD0 /* react-native-restart-dummy.m */; }; + 9A4E510D7AB40B3DDC8ABDA68501F19E /* FIRCLSReport.h in Headers */ = {isa = PBXBuildFile; fileRef = BDEF27D34211AF9452A90A2A483FED77 /* FIRCLSReport.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 9A518E0BA688C9DD7F172081CB74201F /* BSG_KSCrashSentry_NSException.h in Headers */ = {isa = PBXBuildFile; fileRef = 26C99F9B4AFE7A7931259FA66C717FA6 /* BSG_KSCrashSentry_NSException.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 9A5FADAB4F03FE48215FE539AD6CDB6C /* RNFetchBlobProgress.h in Headers */ = {isa = PBXBuildFile; fileRef = 30420862A390D1AE4CC457133E60F8FA /* RNFetchBlobProgress.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 9A7373493C29317F78801A5D22126A64 /* Sse.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 0ECBA4FA12CEF0520FBC3BBC96067938 /* Sse.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -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\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors"; }; }; + 9A7DD869EE027F09C54F49B553D556A6 /* YGLayoutExtensions.swift in Sources */ = {isa = PBXBuildFile; fileRef = C351020A52CFE117D3D25CEDA3DF7389 /* YGLayoutExtensions.swift */; }; + 9A8F74EDC8845731B3186DD9CB2206FE /* RCTHmac.h in Headers */ = {isa = PBXBuildFile; fileRef = 7015AE960245810C05A3F0B7ECB4ED8E /* RCTHmac.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 9AAA0CDB66D4DD55D224A88CFA834EC8 /* EnableSharedFromThis.h in Headers */ = {isa = PBXBuildFile; fileRef = 6ACDE8FBC2D45B04D9E83B7E04E66E66 /* EnableSharedFromThis.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 9AB6657E83BD14D2C907F19FB0C0F1A4 /* SKNamed.mm in Sources */ = {isa = PBXBuildFile; fileRef = F8B7D9FB748CD5154BCCBA62BCC0ED0F /* SKNamed.mm */; settings = {COMPILER_FLAGS = "-DDEBUG=1 -DFLIPPER_OSS=1 -DFB_SONARKIT_ENABLED=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -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"; }; }; + 9AF785D5530926398D5DC600A32C7CFE /* RCTShadowView+Internal.h in Headers */ = {isa = PBXBuildFile; fileRef = F25FF464A50485C9E6EF75F37E63A8A6 /* RCTShadowView+Internal.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 9B12B3D5D98EC163FF6E21AD0BBB5F62 /* yuv.h in Headers */ = {isa = PBXBuildFile; fileRef = 2A860CA128F0138C1887C3A537C0EDF0 /* yuv.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 9B23E5670AF0F1BA3634B1579DD4B0E6 /* predictor_enc.c in Sources */ = {isa = PBXBuildFile; fileRef = 85A78365230325A0B6589BF873CCE701 /* predictor_enc.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; + 9B375D473CEB4F7EA93C01161C2A0013 /* RCTRawTextViewManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 84FBA57EF83AB8BF7C5569DB8E1F6612 /* RCTRawTextViewManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 9B3DB6BBA2A57AD4F9ACCB8E298FBB28 /* IPAddress.cpp in Sources */ = {isa = PBXBuildFile; fileRef = F9C5E346AB4ED6F02FF894D0747C22DC /* IPAddress.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -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\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors"; }; }; + 9B48C501E4A442A6935447DED08E2A6A /* String.h in Headers */ = {isa = PBXBuildFile; fileRef = 17BB60E549F9941AF2A7C51355DD78CB /* String.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 9B50245C4A8AB112360D512A5E21983D /* SanitizeThread.h in Headers */ = {isa = PBXBuildFile; fileRef = CD0AE00988D2C3F989A528440752F896 /* SanitizeThread.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 9B577454A49547B5EF6F1A87113ADC05 /* JSExecutor.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 32690E9D92F23FCA4B1ECB8AD6676232 /* JSExecutor.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + 9B6008DA8A3FBC48C26C1773B0435DDD /* RCTAppearance.h in Headers */ = {isa = PBXBuildFile; fileRef = 363175F68603475AA6CB0DAAABEA31E0 /* RCTAppearance.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 9B6D029363E42D7BB231DFE8876F1B4B /* UIView+React.h in Headers */ = {isa = PBXBuildFile; fileRef = CADB2A96D0B4184DE3BC77F3CF165EA4 /* UIView+React.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 9B72D6962D961769E7109FCF189C36B8 /* GDTCOREventDataObject.h in Headers */ = {isa = PBXBuildFile; fileRef = DD6C3B25204BF0888E2875F69B89C495 /* GDTCOREventDataObject.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 9B79B8A36B72B76E55F51FD6597C5F90 /* RCTScrollView.h in Headers */ = {isa = PBXBuildFile; fileRef = 8339D7F1F705F604B8E9B6D320962F8A /* RCTScrollView.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 9B7F3B7902102C56AE72DAA0C2BD02E5 /* RCTLinkingPlugins.h in Headers */ = {isa = PBXBuildFile; fileRef = F807C0E0D9C1EFCFD738859E4A938A68 /* RCTLinkingPlugins.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 9B88284B6FB8C1577AB3005362C51A8B /* lossless_enc_sse2.c in Sources */ = {isa = PBXBuildFile; fileRef = 852FF6549FCED144268825947D62173F /* lossless_enc_sse2.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; + 9B92EE777E93E8812BFD8C0E80B8B4F8 /* CString.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 7459E86C3FF0ABD96F03069BF653A534 /* CString.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -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\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors"; }; }; + 9B948D68511F640610667E3094151278 /* RCTBaseTextInputView.m in Sources */ = {isa = PBXBuildFile; fileRef = 57C542AD851642D11EF58156F9D508CB /* RCTBaseTextInputView.m */; }; + 9B99B2679743FA4A26F4850C7A811DEC /* fast-dtoa.cc in Sources */ = {isa = PBXBuildFile; fileRef = EA0A26AECF7809D8EF387DCB66A93172 /* fast-dtoa.cc */; settings = {COMPILER_FLAGS = "-Wno-unreachable-code"; }; }; + 9B9D458C10782FF40AB3EF20873D8AB4 /* Unicode.h in Headers */ = {isa = PBXBuildFile; fileRef = DCC31409B0B1BA2E6B09D34100290782 /* Unicode.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 9BC27231F5FD139626BF7FEA27771C4A /* RCTLog.mm in Sources */ = {isa = PBXBuildFile; fileRef = 61174B28A33647277F3659768E52A29B /* RCTLog.mm */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + 9BC7B68D8579E1BFE761C57D24C8B9AF /* MemoryResource.h in Headers */ = {isa = PBXBuildFile; fileRef = CAA13C369F7BB0E14043022141EBCEB3 /* MemoryResource.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 9C0C52960C0A73443BD28E0AA31235FC /* RNJitsiMeetView.m in Sources */ = {isa = PBXBuildFile; fileRef = 787929CD1708FBBF19467CBBE9748112 /* RNJitsiMeetView.m */; }; + 9C153DC1138A4081041487DB54BB043D /* RCTConvert+FIRApp.m in Sources */ = {isa = PBXBuildFile; fileRef = D5EAA763AC237A7062340F64F2368CED /* RCTConvert+FIRApp.m */; }; + 9C17D635E81D45575679A72F728A566B /* RCTTurboModule.h in Headers */ = {isa = PBXBuildFile; fileRef = D9793BA392F9F6934215CAA6F427A092 /* RCTTurboModule.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 9C256D7A9E4130A838C3085C4288F1EF /* RCTImageLoaderProtocol.h in Headers */ = {isa = PBXBuildFile; fileRef = CDF60A607B554908330138E15DC7985F /* RCTImageLoaderProtocol.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 9C265CFDA9B7F39B03BE2EA806AC3F6F /* Dirent.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 5ECA6DC5EBB270FC1F70959F4FC3B83F /* Dirent.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -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\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors"; }; }; + 9C33100B8D84D4A27D9A4B88CF7FB6C5 /* FrameProcessor.h in Headers */ = {isa = PBXBuildFile; fileRef = 9704856B132A18D019D8C8500400D8C5 /* FrameProcessor.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 9C36FE526A6C0CAFD4EBCD12FDA7160D /* ExecutorWithPriority.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 9F7FADD37C3F8AF37C3CC95F95D63C9C /* ExecutorWithPriority.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -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\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors"; }; }; + 9C444D8E2F975A168EE75D33EB2DBDA2 /* log_severity.h in Headers */ = {isa = PBXBuildFile; fileRef = 93FAF2D396F725E27801608CC01AEDA3 /* log_severity.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 9C5822A387767D76C56136622FCD4D55 /* IStream.h in Headers */ = {isa = PBXBuildFile; fileRef = FD0FDF2E56B08BF4D8E5232371099E8A /* IStream.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 9C7C9476E98E858B22E8F97B757AD9A7 /* CString.h in Headers */ = {isa = PBXBuildFile; fileRef = 6B522FC5A103FFFA4A4CAD36C0BD8360 /* CString.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 9C8B6CD7657E61135DFE20B696B7EFE5 /* SynchronizedPtr.h in Headers */ = {isa = PBXBuildFile; fileRef = 01074E4D4EAC6FBE83AA73B4384722BC /* SynchronizedPtr.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 9C9CB87BF855599CA004629F8173C52F /* FIRAnalyticsInteropListener.h in Headers */ = {isa = PBXBuildFile; fileRef = 2D2A898A3EA4970135FC50DAF5813F26 /* FIRAnalyticsInteropListener.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 9CCB4E32C86B5F29292A363E0F3D1C0B /* QBVideoIndicatorView.m in Sources */ = {isa = PBXBuildFile; fileRef = 22CAD80AE1F264FB310EE06C817220D7 /* QBVideoIndicatorView.m */; }; + 9CDDB0474E40C63CADE3755BAB142D66 /* FIRCurrentDateProvider.m in Sources */ = {isa = PBXBuildFile; fileRef = 6A88281868F02A88B6C5D6C317FFB031 /* FIRCurrentDateProvider.m */; }; + 9CEC37E28C89C5B9FD0A59B5A9045B9E /* Chrono.h in Headers */ = {isa = PBXBuildFile; fileRef = 4AA22E2D5FA0FBEE53BEB9656626A0FA /* Chrono.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 9CF84294CDC9CE58464770A15FDE0B14 /* VirtualEventBase.h in Headers */ = {isa = PBXBuildFile; fileRef = 08C4EA17FFABE51D59BC0B56CE01ADA7 /* VirtualEventBase.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 9D083F00FE69739E22A8E9C9A7C0CE8F /* YGLayout.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 6CA2FCDDF6A9BF7347C1402992259552 /* YGLayout.cpp */; settings = {COMPILER_FLAGS = "-fno-omit-frame-pointer -fexceptions -Wall -Werror -std=c++1y -fPIC -fno-objc-arc"; }; }; + 9D0AB6793FDBB0A452D2D260D1BE70A7 /* BugsnagDeviceWithState.h in Headers */ = {isa = PBXBuildFile; fileRef = FDDEA29E2F8A04B854CA85687AF9F8C7 /* BugsnagDeviceWithState.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 9D0BE7C3C9715AF777248DC1ED94F1FB /* GoogleDataTransportInternal.h in Headers */ = {isa = PBXBuildFile; fileRef = 90CD2431988C18ADBC261F0BFAF3BE98 /* GoogleDataTransportInternal.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 9D17DF6EB5C472361EE4B25A06196544 /* SDImageCodersManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 54A50CDC6630BF259787AE34CC0B62DB /* SDImageCodersManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 9D335A0625F75C140E2F7AF3758462FA /* FIRCLSDataCollectionArbiter.h in Headers */ = {isa = PBXBuildFile; fileRef = FFF4C8DB6F8F4C1F921CFA18E1626774 /* FIRCLSDataCollectionArbiter.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 9D4141CAF1F80F27BDDDB79F1D866622 /* bufferevent.c in Sources */ = {isa = PBXBuildFile; fileRef = 7743DF8AB724A03994967F3730D669C6 /* bufferevent.c */; }; + 9D57F8BC66FF24A30C93A8B4734F080A /* dynamic-inl.h in Headers */ = {isa = PBXBuildFile; fileRef = F7D383BE946449E81482E0C52DEEAA2E /* dynamic-inl.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 9D618168298D5CCB36E4875822A364C3 /* RCTDevSettings.h in Headers */ = {isa = PBXBuildFile; fileRef = 0D3E92E69878B83B64510531A9E10C55 /* RCTDevSettings.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 9D6B5A7C1B793D35F8E364AEC1DEA0D6 /* alpha_processing.c in Sources */ = {isa = PBXBuildFile; fileRef = 5ABFE46ECDB76D1CB46D01908F82DEE2 /* alpha_processing.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; + 9D81100F4C48477434A860FDCEB3410C /* REAPropsNode.h in Headers */ = {isa = PBXBuildFile; fileRef = 619BFAA923B69509C766ED636D5139A2 /* REAPropsNode.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 9D976511AF1C1AFE42F3B4A53BE2A7B9 /* UnboundedBlockingQueue.h in Headers */ = {isa = PBXBuildFile; fileRef = 315CEFF1822B375723507C6667EAAF73 /* UnboundedBlockingQueue.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 9D9A3E464AACB5B8BDCE4377E8F4DB35 /* GoogleDataTransportInternal.h in Headers */ = {isa = PBXBuildFile; fileRef = 0CDF3A70267A851C613E42137BE69A31 /* GoogleDataTransportInternal.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 9DA6C29F3533ACCC286E18202A8EBB22 /* RCTInspectorPackagerConnection.m in Sources */ = {isa = PBXBuildFile; fileRef = 963605EF2214948C92F4F2EB87B7F717 /* RCTInspectorPackagerConnection.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + 9DA92A5BB90355254F8862229405CE6B /* RCTJSInvokerModule.h in Headers */ = {isa = PBXBuildFile; fileRef = 8E382E89EF807FFA314A1A75455F298C /* RCTJSInvokerModule.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 9DB36BDBE279E651F8DAAFF4A176D7D3 /* FiberIOExecutor.h in Headers */ = {isa = PBXBuildFile; fileRef = CCDEF6DC9158142C2569FC4EEF7A3135 /* FiberIOExecutor.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 9DBE3DDC938534DCCE2B3D4B99F7A5FB /* PackedSyncPtr.h in Headers */ = {isa = PBXBuildFile; fileRef = 0559B220F8B769FB44D5122A56DB397A /* PackedSyncPtr.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 9DC4BFD3E4FDF976A8DBCF87256E2F83 /* InlineExecutor.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 5A9E72DFF1EE3CE1C146BFDDA71663CE /* InlineExecutor.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -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\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors"; }; }; + 9DCDFA688EB66A3D36CB49F387411C28 /* RNCWebView.h in Headers */ = {isa = PBXBuildFile; fileRef = 83CFBBD815E733BA2565F94754B84658 /* RNCWebView.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 9DF9AB8FAA72E96E31769D1FE581DBCB /* evrpc.c in Sources */ = {isa = PBXBuildFile; fileRef = C6B5B7CC7966C0E96B5E97B5344097F5 /* evrpc.c */; }; + 9DFCC681619FA5D7F299FDECEBBBD497 /* UIView+WebCacheOperation.m in Sources */ = {isa = PBXBuildFile; fileRef = 7758206328D579D0359D1BCFDD50FD9A /* UIView+WebCacheOperation.m */; }; + 9E003E8C0250A351940CD51439FB964E /* BlurEffectWithAmount.h in Headers */ = {isa = PBXBuildFile; fileRef = BF20B3086476162690B76C054B6BC834 /* BlurEffectWithAmount.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 9E08ED59B433C0996E9DE3A05DF0E3BC /* SDDisplayLink.h in Headers */ = {isa = PBXBuildFile; fileRef = 836CBD51E9CBC69D9D513453F7389F22 /* SDDisplayLink.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 9E2C18DE7DBAF8EEE08CD95FFE4320D2 /* Throughput.h in Headers */ = {isa = PBXBuildFile; fileRef = C661E81895557EE03473B762AE3903F6 /* Throughput.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 9E3E23BE13C323A58C500CE63344BAC6 /* FileUtil.h in Headers */ = {isa = PBXBuildFile; fileRef = 4AA7837D4649A9BCBE7ADCB8738428AE /* FileUtil.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 9E3F4F9CBD27821BE447C2E0732CBE21 /* UninitializedMemoryHacks.h in Headers */ = {isa = PBXBuildFile; fileRef = 1D44A144ECD9CE9C48C62E589BF46484 /* UninitializedMemoryHacks.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 9E546FCE804AC8660B9C6C916101037C /* RCTInterpolationAnimatedNode.h in Headers */ = {isa = PBXBuildFile; fileRef = 500229F368620D7BA99FE0B967E1337E /* RCTInterpolationAnimatedNode.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 9E83E078DE2631758759A75ABF4E5FB1 /* String-inl.h in Headers */ = {isa = PBXBuildFile; fileRef = 692BA1B9DA0015D7FF1E056B83E685A2 /* String-inl.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 9E8531C47E4486A300129112F8046AE5 /* webp_dec.c in Sources */ = {isa = PBXBuildFile; fileRef = 5D6FF8114042C8C78B7145A24A2C085A /* webp_dec.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; + 9E863C9D16C3FFF4D338306CE6D74377 /* FIRAEvent+Internal.h in Headers */ = {isa = PBXBuildFile; fileRef = F62408E36F62BECBE6226DF96670A02D /* FIRAEvent+Internal.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 9E9B6BECE374B463988AAD0D13DD0F0F /* FIRCLSDemangleOperation.mm in Sources */ = {isa = PBXBuildFile; fileRef = 8FBB84EA1937A72F9BB88533A2D71AE9 /* FIRCLSDemangleOperation.mm */; }; + 9EA17023F8B1D48933D9E484377687B4 /* cached-powers.h in Headers */ = {isa = PBXBuildFile; fileRef = FB14AA75D6F8B12713B65C3C0B23991F /* cached-powers.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 9EA25801205B7973BEAB504BBAFC724A /* RCTCxxUtils.h in Headers */ = {isa = PBXBuildFile; fileRef = BC0FC7699EFE844E79726F9437573E88 /* RCTCxxUtils.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 9EAE0AC66AC8306F119E1AEDA12EC0C2 /* FIRCLSProfiling.h in Headers */ = {isa = PBXBuildFile; fileRef = F82646B926187FE9E372C29E964FB043 /* FIRCLSProfiling.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 9EBAAAACF9FAC1EEDBD9AAE03BBBCB4E /* Pods-defaults-RocketChatRN-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = F21CCAF47107D491C484F4743F565B80 /* Pods-defaults-RocketChatRN-dummy.m */; }; + 9EDE8FE0FF67ACEE8353DCE3F7929868 /* RCTEventDispatcher.h in Headers */ = {isa = PBXBuildFile; fileRef = A91F8178F933F3845E938957A1BBDD67 /* RCTEventDispatcher.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 9EF8A7C0E2DE77A0135FAF329E828C44 /* SDWebImageError.h in Headers */ = {isa = PBXBuildFile; fileRef = DBAFBBE1AB5DD80349AEB3073D48C011 /* SDWebImageError.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 9F145625E03885AC7503EAAF9C8F0A72 /* YGLayout.h in Headers */ = {isa = PBXBuildFile; fileRef = CD6CF0B30CD04C100AD26A0857C5B53C /* YGLayout.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 9F1C652BAFAD4C77CA7E37812D6C4426 /* RCTMultipartDataTask.h in Headers */ = {isa = PBXBuildFile; fileRef = 01766B817B74F69DDE794A8716F2BEFD /* RCTMultipartDataTask.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 9F2054E43060BDCFB7E580C6DE797709 /* FarmHash.h in Headers */ = {isa = PBXBuildFile; fileRef = FE2CF4FF67D880518972632AA0B80CE8 /* FarmHash.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 9F2A04708FBD7CE70FEF3885EE9E5DB6 /* RWSpinLock.h in Headers */ = {isa = PBXBuildFile; fileRef = 70BA592C2BC4B1F94DBE0DBB01B4F293 /* RWSpinLock.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 9F2A8554D5C0D9E9E7FE0176598CBC40 /* epolltable-internal.h in Headers */ = {isa = PBXBuildFile; fileRef = 1E59C6FE932AC20318A18BCC49C793DF /* epolltable-internal.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 9F2D4D2A7BD02828FF833F3F267BD743 /* ARTSurfaceViewManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 41BD6D0275BCBDAEB649B23C65559D18 /* ARTSurfaceViewManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 9F2DEF7D411D365F674D7585EC0BBC2B /* webpi_dec.h in Headers */ = {isa = PBXBuildFile; fileRef = E08AF471F00AED3924F9C46ABA65782B /* webpi_dec.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 9F3199B1456F647E1538B361D5AA844A /* es.lproj in Resources */ = {isa = PBXBuildFile; fileRef = 2F775D97AC737703F52DD8702264CAB4 /* es.lproj */; }; + 9F365AA0CADAC01E8A3CCF306D6C340B /* Exceptions.h in Headers */ = {isa = PBXBuildFile; fileRef = B421DAF8DD57F52DA5882F7B07CE2C59 /* Exceptions.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 9F3CDF490D0F837C53F24F1834EDF452 /* FIRCLSFABAsyncOperation.h in Headers */ = {isa = PBXBuildFile; fileRef = 7A3FFDA97B0F4B7B422659094703968A /* FIRCLSFABAsyncOperation.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 9F59A1F8F532815E007DEF8DE25522EE /* RCTSafeAreaView.h in Headers */ = {isa = PBXBuildFile; fileRef = 6DD39F3B80F2E865CD453EF8134313CF /* RCTSafeAreaView.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 9F5AC7D931BA5171D0D8CEF9E58EB129 /* filters_utils.c in Sources */ = {isa = PBXBuildFile; fileRef = 8703DFD1F725D7C531E5DE2D2D24D58C /* filters_utils.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; + 9F72585C4D02E9B33600916E95E83252 /* SDImageCachesManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 7B9C928EB02FFE4B93F3286C44589B1E /* SDImageCachesManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 9F7F58E0246EE4AFC13AC9BBD7E2CB17 /* RNCommandsHandler.h in Headers */ = {isa = PBXBuildFile; fileRef = BB64E5F2016ABADF413A0D03AF7A2955 /* RNCommandsHandler.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 9F9A921DAE5FB941E63A13ED88DAF1A1 /* SDImageHEICCoder.h in Headers */ = {isa = PBXBuildFile; fileRef = 3A27B8568D6221C2D97AAAF48DF5E6EC /* SDImageHEICCoder.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 9FCF21C2055100E63969DF88F94F88A3 /* RCTComponentEvent.h in Headers */ = {isa = PBXBuildFile; fileRef = CE092D003C0D1363E7125323AFCB0371 /* RCTComponentEvent.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 9FD5F17132FDFB808036A8E5991DDE0F /* quant_enc.c in Sources */ = {isa = PBXBuildFile; fileRef = 047B83D8277306F34BFCEC97BC58E682 /* quant_enc.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; + 9FEB0942791A4EB8D7BB77AB1317E34A /* sk.lproj in Resources */ = {isa = PBXBuildFile; fileRef = 9A7D715843BB9AC058F9282B77EF33B7 /* sk.lproj */; }; + 9FF2917107FAFF00FDB75E76F5F610FC /* RNCAppearanceProviderManager.m in Sources */ = {isa = PBXBuildFile; fileRef = 60B3D36D170B080A7C6955548B2B01F6 /* RNCAppearanceProviderManager.m */; }; + 9FF5160E99B84923A6A847416332AF99 /* RCTAes.m in Sources */ = {isa = PBXBuildFile; fileRef = 8656089DAEFB6028E24A6CAA13C2D7EB /* RCTAes.m */; }; + 9FF8AD4003970A7474066E65DB8DAEB5 /* BSGEventUploadObjectOperation.m in Sources */ = {isa = PBXBuildFile; fileRef = 449670A175F67D16EF2471FDD5F80337 /* BSGEventUploadObjectOperation.m */; }; + A0066F4FFDD97897BBFF47545C706CDD /* CustomizationPoint.h in Headers */ = {isa = PBXBuildFile; fileRef = 7B2EB461C1280136D015FE6B1C605D6A /* CustomizationPoint.h */; settings = {ATTRIBUTES = (Project, ); }; }; + A00A04412908225392AD1024B84136D8 /* openssl_md32_common.h in Headers */ = {isa = PBXBuildFile; fileRef = E0F348CB4EBE93463B9642B83143962C /* openssl_md32_common.h */; settings = {ATTRIBUTES = (Project, ); }; }; + A00D87E308004A9E765658C21EDCBCE3 /* FIRCLSInternalReport.m in Sources */ = {isa = PBXBuildFile; fileRef = E7FA7EE95BE4A304050E55C74AC667B8 /* FIRCLSInternalReport.m */; }; + A01659A08E09BCB9A4AC12709938CE90 /* RCTActivityIndicatorView.m in Sources */ = {isa = PBXBuildFile; fileRef = F65A84E9BF932DBC59430F17CDE7C3C8 /* RCTActivityIndicatorView.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + A0269DEB14829A56A9DB81BAC1757EAA /* Bits.h in Headers */ = {isa = PBXBuildFile; fileRef = 81CDFC33E538F32F97337D49F4D80D0C /* Bits.h */; settings = {ATTRIBUTES = (Project, ); }; }; + A034395A57C117CF6F15AEC3C5C98E20 /* BSG_KSBacktrace_Private.h in Headers */ = {isa = PBXBuildFile; fileRef = 9F181517B422C45089E2090D9AAC85EF /* BSG_KSBacktrace_Private.h */; settings = {ATTRIBUTES = (Project, ); }; }; + A03E6D16AC5406BC3E772360AEF5B4E5 /* io_dec.c in Sources */ = {isa = PBXBuildFile; fileRef = 0EC6EFE991325E9B560CA6E7223E53FD /* io_dec.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; + A040B5D6EA66BB0D2F8C4D6E62DEF71B /* Conv.h in Headers */ = {isa = PBXBuildFile; fileRef = 04F74B42605AD4081D49B2EFD520349E /* Conv.h */; settings = {ATTRIBUTES = (Project, ); }; }; + A0633666E577B5724E8F5C3BF274D5F9 /* GULAppEnvironmentUtil.h in Headers */ = {isa = PBXBuildFile; fileRef = 829E6E370C2FD119D2ED767F24EDE6B0 /* GULAppEnvironmentUtil.h */; settings = {ATTRIBUTES = (Project, ); }; }; + A088213082C65A21FDB053CB927C6B19 /* FIRComponentContainerInternal.h in Headers */ = {isa = PBXBuildFile; fileRef = F0B50EE62EBE1CA22B37FBCAD7F5D3BC /* FIRComponentContainerInternal.h */; settings = {ATTRIBUTES = (Project, ); }; }; + A090D5E341405F4B5A8C629E4C2FE6B6 /* RNFBApp-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 632693FB6042CD50E5895B2125475569 /* RNFBApp-dummy.m */; }; + A0A5188AC322F6C16763A728214C11E1 /* ScheduledFrameTransport.cpp in Sources */ = {isa = PBXBuildFile; fileRef = ABD80F05D7F4102D080A130112D40F01 /* ScheduledFrameTransport.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -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 -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors"; }; }; + A0ACC7F83CDC302F2DF88876292419FB /* RNCPickerManager.m in Sources */ = {isa = PBXBuildFile; fileRef = 3040490EE2A603BE12175008A7297813 /* RNCPickerManager.m */; }; + A0B16A8ED149E376671B47003709E603 /* RNRootView-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 75AF0A4FF700CF3A4A491DDD583DF70E /* RNRootView-dummy.m */; }; + A0CD2A76FE4C0970F1753683D1E65C1D /* EXAVPlayerData.h in Headers */ = {isa = PBXBuildFile; fileRef = 1895803C697235430E7866ED95E0A75C /* EXAVPlayerData.h */; settings = {ATTRIBUTES = (Project, ); }; }; + A0DA2D4D18B12BEE71A46CC31002E8CF /* Request.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 9F47A09925FF12045E3D2DF13989F980 /* Request.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -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\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors"; }; }; + A0DFC68BAE526614F9FF26718A423109 /* dwarf.h in Headers */ = {isa = PBXBuildFile; fileRef = F5C4E0D1C6DB2B953954178AE8925AC2 /* dwarf.h */; settings = {ATTRIBUTES = (Project, ); }; }; + A0E76F5002B07AE2B54E137A7C424EF8 /* GlobalExecutor.h in Headers */ = {isa = PBXBuildFile; fileRef = 60466E2EB138806E69B30C748843ACCF /* GlobalExecutor.h */; settings = {ATTRIBUTES = (Project, ); }; }; + A0EC40F3934CCAFFC6EF3D498D3F499F /* EXAudioSessionManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 944E90329EADCCBF55638351C5FA6823 /* EXAudioSessionManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; + A0F07E11CADCCC41893E62A14952C155 /* DelayedDestruction.h in Headers */ = {isa = PBXBuildFile; fileRef = 8975E292CEEE3C61037D2441278175AB /* DelayedDestruction.h */; settings = {ATTRIBUTES = (Project, ); }; }; + A0FEFACF7FCC7EB50E3D658D8C1A19AF /* FKPortForwardingServer.m in Sources */ = {isa = PBXBuildFile; fileRef = B6633DF5F0B0F4B5CDC537963C3A7DDE /* FKPortForwardingServer.m */; settings = {COMPILER_FLAGS = "-DDEBUG=1 -DFLIPPER_OSS=1 -DFB_SONARKIT_ENABLED=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -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"; }; }; + A108DB2A5D4295266E068538D970CFFE /* RCTBackedTextInputDelegateAdapter.h in Headers */ = {isa = PBXBuildFile; fileRef = C802EBADEC39C509D1798703A2EF936C /* RCTBackedTextInputDelegateAdapter.h */; settings = {ATTRIBUTES = (Project, ); }; }; + A13659C3C76694E42388009A0CCA7E81 /* Sched.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 888E9E85FBD7EDEB00EA983CE35E6C30 /* Sched.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -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\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors"; }; }; + A1511D7B745F233DBE0D869661A2246C /* SKRequestInfo.h in Headers */ = {isa = PBXBuildFile; fileRef = 12FC28C42CDEEC2B4A36BC6B38F2B90A /* SKRequestInfo.h */; settings = {ATTRIBUTES = (Project, ); }; }; + A16C18D9138296744AFF8F7F748CF827 /* HighlighterView.m in Sources */ = {isa = PBXBuildFile; fileRef = 2B2DCB43C92C7E9AD3015561EEA0E1A6 /* HighlighterView.m */; }; + A185AA0D4887B2CE699640D4D7AFA626 /* ARTTextFrame.h in Headers */ = {isa = PBXBuildFile; fileRef = 2C75EC0F15F258B3FDD5FEF9C062FBFD /* ARTTextFrame.h */; settings = {ATTRIBUTES = (Project, ); }; }; + A185FCF463054724C7D36C83633499DE /* FIRCLSProfiling.c in Sources */ = {isa = PBXBuildFile; fileRef = 4BE58038AF42A4F6D6602E7C7E4641EE /* FIRCLSProfiling.c */; }; + A1A9DA149714A260E72D14FB3E8D7F10 /* RCTSwitchManager.h in Headers */ = {isa = PBXBuildFile; fileRef = B865B4353C239BD21FA0FEE4C32A8019 /* RCTSwitchManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; + A1BD3EF5F8E40C42F8C2E6311902DF10 /* PTProtocol.m in Sources */ = {isa = PBXBuildFile; fileRef = 8288F79984720B638376309474BBC130 /* PTProtocol.m */; }; + A1BEBC95069C65E14AB08A9A42761B56 /* SDImageTransformer.m in Sources */ = {isa = PBXBuildFile; fileRef = C7C1E49AC50F3752C4372BE348DC4C5D /* SDImageTransformer.m */; }; + A1FB8D0A09C7AF370069CE4391FB1E51 /* openssl_md5_dgst.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 1EA7069ECAA34F7BD59269E02AF68695 /* openssl_md5_dgst.cpp */; settings = {COMPILER_FLAGS = "-x objective-c++ -fno-objc-arc"; }; }; + A208005110520765245DD14699FBFAB4 /* Random-inl.h in Headers */ = {isa = PBXBuildFile; fileRef = 848B80631BB2492604EA5772DED5CE53 /* Random-inl.h */; settings = {ATTRIBUTES = (Project, ); }; }; + A208B9DF1228D576CCBB475A7493C95B /* Aes.h in Headers */ = {isa = PBXBuildFile; fileRef = 489D974C89DEF6F6C71D3872B05C2503 /* Aes.h */; settings = {ATTRIBUTES = (Project, ); }; }; + A20934A1553BFE2A0426BE5CEB658A85 /* ARTNodeManager.m in Sources */ = {isa = PBXBuildFile; fileRef = 6572A5389B75E67DD18B8F051BDE00E6 /* ARTNodeManager.m */; }; + A22F4EE8941D20398A761A2EFBEC1EC2 /* small_vector.h in Headers */ = {isa = PBXBuildFile; fileRef = 3DADA218BA6F0A0C0A3B44DB70C38BB7 /* small_vector.h */; settings = {ATTRIBUTES = (Project, ); }; }; + A233271360C026C98D3291B63915CA88 /* FIRInstallationsIIDStore.m in Sources */ = {isa = PBXBuildFile; fileRef = 173E059CC0B22FC43C047F7226085477 /* FIRInstallationsIIDStore.m */; }; + A236DBA54982FB352A1B144C0C8CD9DB /* DynamicBoundedQueue.h in Headers */ = {isa = PBXBuildFile; fileRef = CF7EADF7ED40D72F88FA05C09CF843DE /* DynamicBoundedQueue.h */; settings = {ATTRIBUTES = (Project, ); }; }; + A247D09687918DE434710053E9BF578F /* RuntimeAdapter.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 43932092163523A9D1CC5238C4522DE8 /* RuntimeAdapter.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + A250AB85B534038728161A3EC3F5ED88 /* Unistd.h in Headers */ = {isa = PBXBuildFile; fileRef = F0C9246AE66C375D6D9D7C18C8E7443D /* Unistd.h */; settings = {ATTRIBUTES = (Project, ); }; }; + A26BA2232ADE322C3394E5702070CCA0 /* SSLErrors.h in Headers */ = {isa = PBXBuildFile; fileRef = E9276909B746B950BCE40B6DEE214CF7 /* SSLErrors.h */; settings = {ATTRIBUTES = (Project, ); }; }; + A29838D1EF56622F3749F84D0B6778BC /* LNInterpolation.h in Headers */ = {isa = PBXBuildFile; fileRef = 616BD93EDD3C19EC3AEC4FE1676297E7 /* LNInterpolation.h */; settings = {ATTRIBUTES = (Project, ); }; }; + A2B02DD670D2C4BF160232567D2A55CC /* RNCWKProcessPoolManager.h in Headers */ = {isa = PBXBuildFile; fileRef = E011A6E4FE31252609CE24B6B3C8DAF4 /* RNCWKProcessPoolManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; + A2D2BC6F1F0AE7FABE2A7E85412CE5E1 /* ThreadLocalDetail.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 650D118DA2A3ED16F6DE7E7E61FA1E9F /* 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"; }; }; + A2F85B816E1FFDF4C115197DCA13669E /* bignum-dtoa.h in Headers */ = {isa = PBXBuildFile; fileRef = D6F26ACEC8B343A1960C63C5B6C5CB66 /* bignum-dtoa.h */; settings = {ATTRIBUTES = (Project, ); }; }; + A30F073E9C16B246E52833A81E987E9D /* Core.h in Headers */ = {isa = PBXBuildFile; fileRef = 38B02FD349B5891A324F2AA5DDF558C1 /* Core.h */; settings = {ATTRIBUTES = (Project, ); }; }; + A3199908CBE8A372087FB05A0BD2F01C /* RCTScrollContentView.m in Sources */ = {isa = PBXBuildFile; fileRef = B6320D872BAB5CE92F32C50664C9FAE1 /* RCTScrollContentView.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + A32C6F0217B5D8317CF1565279E257CC /* FKUserDefaultsPlugin.h in Headers */ = {isa = PBXBuildFile; fileRef = 700DF3674D9F091583C21E4C8262814E /* FKUserDefaultsPlugin.h */; settings = {ATTRIBUTES = (Project, ); }; }; + A32C9999378F564FC6F3784798F8524A /* RCTImagePlugins.h in Headers */ = {isa = PBXBuildFile; fileRef = 6F727CFD89C89B8EE07DC23CD07CFA82 /* RCTImagePlugins.h */; settings = {ATTRIBUTES = (Project, ); }; }; + A3377E75A6E4A4461B63CFAAC884C5F3 /* UMAppLoaderProvider.h in Headers */ = {isa = PBXBuildFile; fileRef = 4B68FEE532B51AD6840FA5137DEB0D9B /* UMAppLoaderProvider.h */; settings = {ATTRIBUTES = (Project, ); }; }; + A342CFE9B91D2EFBA636A4A3146EBEC8 /* UMErrorCodes.h in Headers */ = {isa = PBXBuildFile; fileRef = CFCA6EC824A804A4BD1EF5D60AD0BAE6 /* UMErrorCodes.h */; settings = {ATTRIBUTES = (Project, ); }; }; + A348FDB758C676AFDB94F4268A7CE310 /* json_pointer.h in Headers */ = {isa = PBXBuildFile; fileRef = 9581BCB540B6DE2B8B6715B36CD5D069 /* json_pointer.h */; settings = {ATTRIBUTES = (Project, ); }; }; + A3553C87812A767A3FA9F1C0DC29F7B9 /* GULNSDataInternal.h in Headers */ = {isa = PBXBuildFile; fileRef = AC41E74A59F0C785D412B949044207AE /* GULNSDataInternal.h */; settings = {ATTRIBUTES = (Project, ); }; }; + A35A3AB1D9D1C87C8285B0D9FD05EEA0 /* SDImageGraphics.h in Headers */ = {isa = PBXBuildFile; fileRef = 91E188CE298C843330179204C0C7FDAF /* SDImageGraphics.h */; settings = {ATTRIBUTES = (Project, ); }; }; + A37FB8913F1C27F36D6F39F87E0D3F53 /* RNCCameraRollManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 28B300A06EC09C17E8754D1807B6D5E6 /* RNCCameraRollManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; + A39381D8A1E0E6EBC6A91B058D07E6D2 /* FIRCLSException.mm in Sources */ = {isa = PBXBuildFile; fileRef = E0875825C7C1BA3530CBD3E7E54E6296 /* FIRCLSException.mm */; }; + A3B0A9D9A88A1B0E5C506BB9634C5E75 /* demux.c in Sources */ = {isa = PBXBuildFile; fileRef = FC5D23D66F64DE6257A71A7A948016FC /* demux.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; + A3B65AB352EDA7A1F5E17B1FE72CDF37 /* EXWebBrowser.h in Headers */ = {isa = PBXBuildFile; fileRef = 1C538417BF7BCF241C6B33F4670B4218 /* EXWebBrowser.h */; settings = {ATTRIBUTES = (Project, ); }; }; + A3C183E1977ED0A0803156BBEAF50609 /* UMAppDelegateWrapper.m in Sources */ = {isa = PBXBuildFile; fileRef = 186E7CE6F33802085E2EC35353A2FD82 /* UMAppDelegateWrapper.m */; }; + A3EE66389AE23C408A84E13950F65C82 /* RNGestureHandlerManager.m in Sources */ = {isa = PBXBuildFile; fileRef = 072312C81694A72402DA2D45C84080FC /* RNGestureHandlerManager.m */; }; + A3EFDB12489B776303E4562DB00BB650 /* RCTScrollContentShadowView.h in Headers */ = {isa = PBXBuildFile; fileRef = E16948EBAFBF296FF310AAC7FBE3D843 /* RCTScrollContentShadowView.h */; settings = {ATTRIBUTES = (Project, ); }; }; + A3FCBBD9499DF2F928B73AA9E73AB960 /* ConstexprMath.h in Headers */ = {isa = PBXBuildFile; fileRef = D68A584080E8CF76C94BCDFFDDF02C52 /* ConstexprMath.h */; settings = {ATTRIBUTES = (Project, ); }; }; + A402AAD113108AB5859E41FCF1F3BB07 /* RCTImageLoader.mm in Sources */ = {isa = PBXBuildFile; fileRef = 9592BE656EE844942EA0F3BF227D00D2 /* 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"; }; }; + A4055FEC073087F5C67C1185471430C9 /* MessageInterfaces.h in Headers */ = {isa = PBXBuildFile; fileRef = 46CB54232CFB0ED9B228412CFB467B26 /* MessageInterfaces.h */; settings = {ATTRIBUTES = (Project, ); }; }; + A4136F4E4C0E0874AF38CF91F85180E3 /* Ordering.h in Headers */ = {isa = PBXBuildFile; fileRef = 0B838D9D6DF88EDC387CDC9D18E62515 /* Ordering.h */; settings = {ATTRIBUTES = (Project, ); }; }; + A42833ED19BB0A1B8922CE66D97E5770 /* RSocketStats.h in Headers */ = {isa = PBXBuildFile; fileRef = 0574B06E6531E44B4662F577344A737C /* RSocketStats.h */; settings = {ATTRIBUTES = (Project, ); }; }; + A42C8AA9282BCE76A2EEBD4B680BAEE7 /* RCTVirtualTextShadowView.h in Headers */ = {isa = PBXBuildFile; fileRef = 9A73CE23FB147CF6D296F0FE430DBF47 /* RCTVirtualTextShadowView.h */; settings = {ATTRIBUTES = (Project, ); }; }; + A44A9B20EE3B845331EE5B4A67AA9765 /* String.h in Headers */ = {isa = PBXBuildFile; fileRef = 02E0A41BE350CD3DF38E296A41F510DB /* String.h */; settings = {ATTRIBUTES = (Project, ); }; }; + A458F30BE426AD87DD780FA334F1C172 /* kqueue-internal.h in Headers */ = {isa = PBXBuildFile; fileRef = 521499094380253553C8D99021FC1979 /* kqueue-internal.h */; settings = {ATTRIBUTES = (Project, ); }; }; + A46AAF7A42339DEEC13CDDF0F836FBB2 /* Restart.m in Sources */ = {isa = PBXBuildFile; fileRef = 06BD4A267267B4315362C6B45E1AE78E /* Restart.m */; }; + A4A0709229F259B40F30916EFF68BE64 /* UIImage+WebP.m in Sources */ = {isa = PBXBuildFile; fileRef = EDB60C5D7FEE0147D2378B4D91C6A5F9 /* UIImage+WebP.m */; }; + A4AE6436A10194BF879A92BE9786452D /* ResumeManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 63CA53CC84313A31F74768406BD7D28D /* ResumeManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; + A4C2F0DCFE8D97F5EFF367A714DF5676 /* ARTNodeManager.h in Headers */ = {isa = PBXBuildFile; fileRef = D62A9D54E64E898C18AEC393B07FC575 /* ARTNodeManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; + A4CE0FD4BAB2EE318358BE87C1A1AB42 /* cpu.c in Sources */ = {isa = PBXBuildFile; fileRef = 2A62947C0BE9D5F9F52AB723D8F642B1 /* cpu.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; + A4D30486F1E8291816F11D42A5A07BC1 /* BSG_KSJSONCodecObjC.h in Headers */ = {isa = PBXBuildFile; fileRef = 3CDB63C0C5FF9B95973BDDA51DBA44FA /* BSG_KSJSONCodecObjC.h */; settings = {ATTRIBUTES = (Project, ); }; }; + A4D5520D0137473949DA762ED51C1E97 /* ARTRadialGradient.h in Headers */ = {isa = PBXBuildFile; fileRef = EC880A8128CFF41BA6E644C55E0FD307 /* ARTRadialGradient.h */; settings = {ATTRIBUTES = (Project, ); }; }; + A4EA2296CB12CDD706318F5499C27C81 /* decode.h in Headers */ = {isa = PBXBuildFile; fileRef = B54581542CFB5914B417CB0DFA407969 /* decode.h */; settings = {ATTRIBUTES = (Project, ); }; }; + A4F849F5F0D9CD393F337409679534FC /* PTUSBHub.h in Headers */ = {isa = PBXBuildFile; fileRef = 9E13BBA8010F6F62D44B113AAC705B4F /* PTUSBHub.h */; settings = {ATTRIBUTES = (Project, ); }; }; + A4FC5E70F57E6F605AB36D79BD1A85E9 /* REAClockNodes.m in Sources */ = {isa = PBXBuildFile; fileRef = 17AF539B1F695CF5CD601AD264268C4C /* REAClockNodes.m */; }; + A5079CA7A08647E59502FFB2BC1396AA /* RCTFileRequestHandler.mm in Sources */ = {isa = PBXBuildFile; fileRef = E4169119DC0D169FCDC07B564BB80AA8 /* 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"; }; }; + A53183C67686DE440D5189A8C5882BCF /* RNFBRCTEventEmitter.m in Sources */ = {isa = PBXBuildFile; fileRef = C49B83D58BE9FC604375C33DAA92C8A0 /* RNFBRCTEventEmitter.m */; }; + A53C9CFA074D4C33A4920B79BEA8EE92 /* ScheduledSubscriber.h in Headers */ = {isa = PBXBuildFile; fileRef = 34DD9A2B9267BAB868DE6445E96973FC /* ScheduledSubscriber.h */; settings = {ATTRIBUTES = (Project, ); }; }; + A555C2974F4C658292143A8C6AD1586F /* GDTCCTUploader.h in Headers */ = {isa = PBXBuildFile; fileRef = 492208BA50FEC02B8F120B496081CF9C /* GDTCCTUploader.h */; settings = {ATTRIBUTES = (Project, ); }; }; + A556EEBE14FF302378B80F5EAE8B372A /* yuv_neon.c in Sources */ = {isa = PBXBuildFile; fileRef = EFB80692826100C6A8DEA3C03404B78D /* yuv_neon.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; + A5581EA3A46F46998B3402DF4FD26D56 /* Spin.h in Headers */ = {isa = PBXBuildFile; fileRef = 89E3169DB4F256D17427041E992B6999 /* Spin.h */; settings = {ATTRIBUTES = (Project, ); }; }; + A56001E1BB1E95CAE9BC063E754D877E /* FlipperClient+Testing.h in Headers */ = {isa = PBXBuildFile; fileRef = 9FB2ED4E8C205706D7B38E38D9F86BD3 /* FlipperClient+Testing.h */; settings = {ATTRIBUTES = (Project, ); }; }; + A569D66EE5605538F14783E1633F2E49 /* YGStyle.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 14808E51F8F8A3F84D5CFE8C99751382 /* YGStyle.cpp */; settings = {COMPILER_FLAGS = "-fno-omit-frame-pointer -fexceptions -Wall -Werror -std=c++1y -fPIC -fno-objc-arc"; }; }; + A57309088CC0DCE0FD461DBC611CDE20 /* FIRCLSApplicationIdentifierModel.h in Headers */ = {isa = PBXBuildFile; fileRef = 424F10EC967B6C380103489098DDF958 /* FIRCLSApplicationIdentifierModel.h */; settings = {ATTRIBUTES = (Project, ); }; }; + A57815FEBD4E139D9643D762B0C58E61 /* FIRInteropEventNames.h in Headers */ = {isa = PBXBuildFile; fileRef = 878D7EB845B053BF5D08C8D05A2E3B35 /* FIRInteropEventNames.h */; settings = {ATTRIBUTES = (Project, ); }; }; + A588E1A22D8B73A0123586188973CC2D /* Demangle.h in Headers */ = {isa = PBXBuildFile; fileRef = 245B92E7BF4C8649A6BC46C4CBF49272 /* Demangle.h */; settings = {ATTRIBUTES = (Project, ); }; }; + A58976868E6ACB4E95FE74764852E560 /* FIRDependency.h in Headers */ = {isa = PBXBuildFile; fileRef = 3A1A10E892C61342945164626A677F48 /* FIRDependency.h */; settings = {ATTRIBUTES = (Project, ); }; }; + A58C1031172AA1EB17A0C2D85B237C75 /* RCTDiffClampAnimatedNode.h in Headers */ = {isa = PBXBuildFile; fileRef = A991F82BC6DF02ED3273094F6D042AFD /* RCTDiffClampAnimatedNode.h */; settings = {ATTRIBUTES = (Project, ); }; }; + A5959300DACA492D999C70886621C17D /* tree_enc.c in Sources */ = {isa = PBXBuildFile; fileRef = CFE2AA7DF1860B203B5580F759BF8BE5 /* tree_enc.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; + A59C08AC8F5CDCA73859D5DEB63EC91D /* JemallocHugePageAllocator.h in Headers */ = {isa = PBXBuildFile; fileRef = F9A13D88A9905A8A572B112E6BCB497F /* JemallocHugePageAllocator.h */; settings = {ATTRIBUTES = (Project, ); }; }; + A5CDDC433992106CB7BB1CE5A7245E54 /* AtFork.cpp in Sources */ = {isa = PBXBuildFile; fileRef = F098BDF23C2AA20DA0214FC0904F20DD /* AtFork.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -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\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors"; }; }; + A5D8A5DA9B30805E647C98B8E2F16D58 /* SDImageIOCoder.m in Sources */ = {isa = PBXBuildFile; fileRef = 734905DDEBC30BE0764EAD2966D92109 /* SDImageIOCoder.m */; }; + A5DBFC700F45C3F2D788482CA99176C0 /* RCTMaskedView.m in Sources */ = {isa = PBXBuildFile; fileRef = 58AD62451702F38FF125AA074B831043 /* RCTMaskedView.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + A5E0607DFE011051B2439DE0036071E8 /* Demangle.cpp in Sources */ = {isa = PBXBuildFile; fileRef = FEBBB2E7EFEFC0EB23B93C4B0C023DAA /* 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"; }; }; + A5EBF143BC5E2273CF5DE9899A0BFFA5 /* ThreadName.cpp in Sources */ = {isa = PBXBuildFile; fileRef = B2E4B390C593EC4820C4A6261073B4EA /* ThreadName.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -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\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors"; }; }; + A5FCB6B55E3928F85A22473396309862 /* BugsnagStacktrace.h in Headers */ = {isa = PBXBuildFile; fileRef = 854CEF65AAB084A85CBE3089CB2D760F /* BugsnagStacktrace.h */; settings = {ATTRIBUTES = (Project, ); }; }; + A60DDC56ABD2EEFAA053C914405711B5 /* RCTAnimationUtils.h in Headers */ = {isa = PBXBuildFile; fileRef = 0F35C568C8AED406C879DEC7AD114B60 /* RCTAnimationUtils.h */; settings = {ATTRIBUTES = (Project, ); }; }; + A611BE547DF8E8683B1DAFF3E16F9E2D /* ParallelMap-inl.h in Headers */ = {isa = PBXBuildFile; fileRef = E0474F716A1CA75CFAF802B2DE4D95B1 /* ParallelMap-inl.h */; settings = {ATTRIBUTES = (Project, ); }; }; + A6230E21D4A55B6A0CB95602085E85D5 /* RCTMultilineTextInputViewManager.m in Sources */ = {isa = PBXBuildFile; fileRef = E4B3AE51832A2A1D1F7AB2D2C7126B8E /* RCTMultilineTextInputViewManager.m */; }; + A62B090EA1F6E28C9017D37F7FBCAEE0 /* CallbackOStream.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 2EA9C9A9E4FA3E8A2BEF1110D54C03E0 /* CallbackOStream.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + A65D79DA9AE126A0D535202E4682BF67 /* FIRCLSRecordHost.m in Sources */ = {isa = PBXBuildFile; fileRef = 7F0FC52B7B180D41845578EA52B405DC /* FIRCLSRecordHost.m */; }; + A66177147207063D1B30C9F49BC33250 /* RCTLogBox.h in Headers */ = {isa = PBXBuildFile; fileRef = 4545CC6BBD253B776261180B046852C7 /* RCTLogBox.h */; settings = {ATTRIBUTES = (Project, ); }; }; + A685E18E4876AC8F59C1D643ED3205F9 /* Thread.h in Headers */ = {isa = PBXBuildFile; fileRef = A07AD7E08943915773F121F1AC28C074 /* Thread.h */; settings = {ATTRIBUTES = (Project, ); }; }; + A6878683BF205F6DC3EC0B15C285D80E /* RCTCxxMethod.h in Headers */ = {isa = PBXBuildFile; fileRef = E74B2390826FB2794D4E9D6F68330E82 /* RCTCxxMethod.h */; settings = {ATTRIBUTES = (Project, ); }; }; + A689CBBA2A2DE316909286759DAAB5E5 /* SerialExecutor.h in Headers */ = {isa = PBXBuildFile; fileRef = E55EDDEC77042F3A98563BFA72154E6D /* SerialExecutor.h */; settings = {ATTRIBUTES = (Project, ); }; }; + A691AD0FC8210D80A39EC2312F8D0995 /* RSocketResponder.h in Headers */ = {isa = PBXBuildFile; fileRef = FACDCD7C43F82CBE335AA610A4018F7E /* RSocketResponder.h */; settings = {ATTRIBUTES = (Project, ); }; }; + A699D4DEDADFC42D669EE52778F04DD4 /* RNLocalize-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 21C2DD7D258C28906DE1501EB0F8ACBA /* RNLocalize-dummy.m */; }; + A6A04D9DA8C7871031A980A3DD4C48E5 /* StreamStateMachineBase.h in Headers */ = {isa = PBXBuildFile; fileRef = 98C0D5FA0AC2D39C2A02838D1243B0E5 /* StreamStateMachineBase.h */; settings = {ATTRIBUTES = (Project, ); }; }; + A6B3EDD22992ED8D44D8F5F60EAB091F /* MemoryFile.h in Headers */ = {isa = PBXBuildFile; fileRef = AC398CB65D2867C2F84DC25FE8F79636 /* MemoryFile.h */; settings = {ATTRIBUTES = (Project, ); }; }; + A6E5EEE860308A0594167C9797B28DFB /* QBAlbumCell.h in Headers */ = {isa = PBXBuildFile; fileRef = C3881C2C10611F2DDD8AA446938F53E7 /* QBAlbumCell.h */; settings = {ATTRIBUTES = (Project, ); }; }; + A6FC335B55745BE993FBC9352436DCFC /* ThreadFactory.h in Headers */ = {isa = PBXBuildFile; fileRef = 0B20CF913B2D89B778711D5BABFD1C1E /* ThreadFactory.h */; settings = {ATTRIBUTES = (Project, ); }; }; + A6FF6D2B4A40536D1A6CC85DC334BFE8 /* FBLPromise+Race.h in Headers */ = {isa = PBXBuildFile; fileRef = 9F8C65F736FD93DD73B765716F33ED48 /* FBLPromise+Race.h */; settings = {ATTRIBUTES = (Project, ); }; }; + A7030DCDE0E72AC9CB0C7B01F27C835A /* Observables.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 2F8E9524F8DDF11783626A8747AFE0AB /* Observables.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -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 -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors"; }; }; + A7106FBBE57D6138FACA59EDF9B1DFAC /* MMKV.cpp in Sources */ = {isa = PBXBuildFile; fileRef = EC242389AB991BA11B83C97B4A9C1D1B /* MMKV.cpp */; settings = {COMPILER_FLAGS = "-x objective-c++ -fno-objc-arc"; }; }; + A7178822986C79551EAEDD06365123B5 /* SDWebImageCacheKeyFilter.m in Sources */ = {isa = PBXBuildFile; fileRef = 7FD5E449FE946D46CC104D1BA8F12A38 /* SDWebImageCacheKeyFilter.m */; }; + A75F67BAE109D953729054CA3FCE37CB /* Flipper-PeerTalk-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 3D340443D5745B25B61BBCF80E8C29BF /* Flipper-PeerTalk-dummy.m */; }; + A767ABFBD88B1F457CB4E7573A97DA3E /* RCTAccessibilityManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 30C6A673762960806A10E087045D8274 /* RCTAccessibilityManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; + A77576423E8BEBA30157A43363DCFDE3 /* SDImageLoader.m in Sources */ = {isa = PBXBuildFile; fileRef = 40658A6F13EAD8AF61DBFB66E02CB90D /* SDImageLoader.m */; }; + A792CF240973925FAC1D90216203587F /* BugsnagMetadata+Private.h in Headers */ = {isa = PBXBuildFile; fileRef = A25D5D45D2D27A0358B1ADB4C871C53A /* BugsnagMetadata+Private.h */; settings = {ATTRIBUTES = (Project, ); }; }; + A79349E16B741325C3095AD3F0504BB3 /* FIRCLSHost.m in Sources */ = {isa = PBXBuildFile; fileRef = 928332B87BD69A8EC4038001F223248D /* FIRCLSHost.m */; }; + A797757BCA62DCB2DA63763AC95E605B /* RNCSafeAreaShadowView.m in Sources */ = {isa = PBXBuildFile; fileRef = 1EFBBAE8AB7886B389DBD741048D1625 /* RNCSafeAreaShadowView.m */; }; + A7AD0987FE60D826155AADAE2011BB96 /* REACondNode.m in Sources */ = {isa = PBXBuildFile; fileRef = 677D64C28A0333CC04528270F5A797EE /* REACondNode.m */; }; + A7B6B74F4C5083E31A314BFADF98B80C /* RCTJSIExecutorRuntimeInstaller.mm in Sources */ = {isa = PBXBuildFile; fileRef = BF2FC6550D674098D111C8FA0FEC0449 /* RCTJSIExecutorRuntimeInstaller.mm */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + A7C91F93418E2C95A41DFF3A36DA2145 /* SDWebImageCompat.h in Headers */ = {isa = PBXBuildFile; fileRef = 01A4B4534C9A4E3E9EF3007467E87B1F /* SDWebImageCompat.h */; settings = {ATTRIBUTES = (Project, ); }; }; + A7CBB4FA781535D20605D6B3D7AEB381 /* RNNotificationEventHandler.m in Sources */ = {isa = PBXBuildFile; fileRef = 5934F4E2AE5D648B86C5AEFA11A3EE5A /* RNNotificationEventHandler.m */; }; + A7EC828FEB9656F986B0DD35CC40439A /* Sleeper.h in Headers */ = {isa = PBXBuildFile; fileRef = FFE019844913A8A8022BC04C00968534 /* Sleeper.h */; settings = {ATTRIBUTES = (Project, ); }; }; + A80CF0EED5CD252B76CFB500FB4E6D3A /* GULOriginalIMPConvenienceMacros.h in Headers */ = {isa = PBXBuildFile; fileRef = DD755238A9D677B6E4714C0E46577C33 /* GULOriginalIMPConvenienceMacros.h */; settings = {ATTRIBUTES = (Project, ); }; }; + A814BB64E789DDAB0D32AD81B3C25D8E /* UMModuleRegistryProvider.m in Sources */ = {isa = PBXBuildFile; fileRef = BAE0910FE95F74A73440C82AB7B23EBB /* UMModuleRegistryProvider.m */; }; + A82A67C8EAD4876997E2B42928B49E84 /* ChannelRequester.h in Headers */ = {isa = PBXBuildFile; fileRef = F8E3759604A0E108F70FFC0CE8AA09E3 /* ChannelRequester.h */; settings = {ATTRIBUTES = (Project, ); }; }; + A8305B70987E317A842F1CCCB2044773 /* FormatArg.h in Headers */ = {isa = PBXBuildFile; fileRef = B7EEDC6851A7A7BEE31B4108384C0CC4 /* FormatArg.h */; settings = {ATTRIBUTES = (Project, ); }; }; + A8344D08B47CA06C8672E6AA324D90AC /* mux.h in Headers */ = {isa = PBXBuildFile; fileRef = D42F2375680C6A11007073F4136BFBBC /* mux.h */; settings = {ATTRIBUTES = (Project, ); }; }; + A85D5DD626C5F4071CF225EF212BE9C3 /* RCTTypedModuleConstants.h in Headers */ = {isa = PBXBuildFile; fileRef = 2B61C28C621032A7E5EE10834B9DC504 /* RCTTypedModuleConstants.h */; settings = {ATTRIBUTES = (Project, ); }; }; + A867266087AC01C930AFF6FAA30B1731 /* FIRCLSDwarfExpressionMachine.h in Headers */ = {isa = PBXBuildFile; fileRef = 9D687684730A33CC3373C2FB4D94F6ED /* FIRCLSDwarfExpressionMachine.h */; settings = {ATTRIBUTES = (Project, ); }; }; + A86F74D5AD97E15B7F319DCCD3262AE3 /* ScheduledFrameProcessor.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 9C7943C63991EED72FA56823AC13E3C5 /* ScheduledFrameProcessor.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -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 -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors"; }; }; + A87C7389E37B8E7C958CA2E4909D9405 /* MessageConverters.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 60E2B3F7654353A0B185AAD73B77C8F1 /* MessageConverters.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + A888AB9A147D572E01262314CF212A56 /* QBCheckmarkView.h in Headers */ = {isa = PBXBuildFile; fileRef = 8F2AF0ED0C3E7F4FAE9E04D1E74C3857 /* QBCheckmarkView.h */; settings = {ATTRIBUTES = (Project, ); }; }; + A89BA921ABA86472A6A98EF034C613DF /* GULKeychainStorage.h in Headers */ = {isa = PBXBuildFile; fileRef = 0EF879CD6D02E996BEB2A566923B0464 /* GULKeychainStorage.h */; settings = {ATTRIBUTES = (Project, ); }; }; + A8F8C82D3C930497428AE5A2D53323F8 /* symbolize.cc in Sources */ = {isa = PBXBuildFile; fileRef = D01DCCA04112909D92568516F663C4D4 /* symbolize.cc */; settings = {COMPILER_FLAGS = "-Wno-shorten-64-to-32"; }; }; + A921A2B5953F9757101B9D233FC0B896 /* AtomicNotification.cpp in Sources */ = {isa = PBXBuildFile; fileRef = EA40AD7C921B0D3FF6F18EBF9327BA62 /* 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"; }; }; + A927B095175E977D06BC7120530267E3 /* FormatArg.h in Headers */ = {isa = PBXBuildFile; fileRef = 67B8AA18965A5E0F122C5D0B060DB3C8 /* FormatArg.h */; settings = {ATTRIBUTES = (Project, ); }; }; + A9312643A2C6C90B4D1A90205399CFC6 /* FIRCLSContext.m in Sources */ = {isa = PBXBuildFile; fileRef = 715007B42B09D8542AC25815072B43BB /* FIRCLSContext.m */; }; + A93D50F8206983B1F30AAD85D1B564D5 /* GlobalExecutor.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 209F98B2A40B8810E62B1FC946410AA9 /* GlobalExecutor.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -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\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors"; }; }; + A94C6D490ED86D8BFA606E168944D60E /* TLRefCount.h in Headers */ = {isa = PBXBuildFile; fileRef = B043689307E99F13549BE277D43358BE /* TLRefCount.h */; settings = {ATTRIBUTES = (Project, ); }; }; + A954E56865031F1AFDEE0E0E3176CEFA /* FIRInteropParameterNames.h in Headers */ = {isa = PBXBuildFile; fileRef = E7139B81C2E757EA8FD47CE93F0CE719 /* FIRInteropParameterNames.h */; settings = {ATTRIBUTES = (Project, ); }; }; + A961499D0587091D7014D94738DE8D54 /* RCTSwitchManager.m in Sources */ = {isa = PBXBuildFile; fileRef = 74D7883E99666545B20F285A05689AFD /* RCTSwitchManager.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + A96A7A5E636F81761CC621840BA07EBF /* GULUserDefaults.h in Headers */ = {isa = PBXBuildFile; fileRef = DBA6250BFEECC287C07056E2770CF399 /* GULUserDefaults.h */; settings = {ATTRIBUTES = (Project, ); }; }; + A97E82F2ECC85130A0E39FBDF6A6BFB3 /* ARTGroupManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 940C8C350C1A8444977469EC19E98889 /* ARTGroupManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; + A995BD0C1733104660741A8C0EFCDD8C /* RNNotificationsStore.h in Headers */ = {isa = PBXBuildFile; fileRef = 6552BF3D9BF160C2B733566D9510E417 /* RNNotificationsStore.h */; settings = {ATTRIBUTES = (Project, ); }; }; + A998280BDC990828199EFD63CD44BAED /* FlipperClient.h in Headers */ = {isa = PBXBuildFile; fileRef = E8174C59FD3D3964DAF1DF7BBBDD6FF1 /* FlipperClient.h */; settings = {ATTRIBUTES = (Project, ); }; }; + A99ADB787413CC434863187B8AD26F60 /* RCTKeyCommands.h in Headers */ = {isa = PBXBuildFile; fileRef = BA8051693341AD55637B5003B37AEA80 /* RCTKeyCommands.h */; settings = {ATTRIBUTES = (Project, ); }; }; + A99CA429CE5B6788D3713EF34F8F325A /* RCTModalHostView.h in Headers */ = {isa = PBXBuildFile; fileRef = E00E1B45C22DACAF48805A11E4B9F00A /* RCTModalHostView.h */; settings = {ATTRIBUTES = (Project, ); }; }; + A99D49FEEFA1CE3F7D20B1CC1A0FA794 /* RCTReconnectingWebSocket.h in Headers */ = {isa = PBXBuildFile; fileRef = 1D44D0157D99893E5B3E1A565EAEBF7C /* RCTReconnectingWebSocket.h */; settings = {ATTRIBUTES = (Project, ); }; }; + A9A73D56F54C5C09AA82505C95BE75E7 /* SSLOptions.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 784FD7583D62A924B663A5FE124B482F /* SSLOptions.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -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\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors"; }; }; + A9D22FF3E32D91952B7DBB0F3FD88B47 /* pb_encode.h in Headers */ = {isa = PBXBuildFile; fileRef = 296FF6D10A93D29F271464060530950B /* pb_encode.h */; settings = {ATTRIBUTES = (Project, ); }; }; + A9E849D5E808D5ECF5F86DDD956F5320 /* RCTFileRequestHandler.h in Headers */ = {isa = PBXBuildFile; fileRef = 2251AF27379C329919E32F671BB8897C /* RCTFileRequestHandler.h */; settings = {ATTRIBUTES = (Project, ); }; }; + A9EE7BC356770E7F447795297AF96EB7 /* BugsnagDevice.h in Headers */ = {isa = PBXBuildFile; fileRef = 3E3865860E855426CA17A53924AFE4A4 /* BugsnagDevice.h */; settings = {ATTRIBUTES = (Project, ); }; }; + A9F2A2B5D8116181ED2BF0A26D866044 /* BugsnagFileStore.m in Sources */ = {isa = PBXBuildFile; fileRef = C8312EE3F5AF0073ACE90C79C7BD5A8B /* BugsnagFileStore.m */; }; + A9F459A848737A62C577CF588DB290FF /* GDTCORAssert.m in Sources */ = {isa = PBXBuildFile; fileRef = 866281292A2FFDF8E8CAC629D7B98DA1 /* GDTCORAssert.m */; }; + AA33C1E262D3F5744755F7B010A1428C /* GULKeychainUtils.h in Headers */ = {isa = PBXBuildFile; fileRef = 2C32E38AF037FC5B35C445638749C3CB /* GULKeychainUtils.h */; settings = {ATTRIBUTES = (Project, ); }; }; + AA510F205456806A3B11C456AA724D17 /* FIRCLSInternalLogging.c in Sources */ = {isa = PBXBuildFile; fileRef = 006596CDE3AA5B4D1DCE9F03201E0F34 /* FIRCLSInternalLogging.c */; }; + AA54A04DAF35D58665B450585B1C2710 /* vp8_dec.h in Headers */ = {isa = PBXBuildFile; fileRef = 151F0FA5DA9EC7C8A47F575039DE31DB /* vp8_dec.h */; settings = {ATTRIBUTES = (Project, ); }; }; + AA654A904B3474483ECDC7B1B80E91A5 /* ManualExecutor.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 2DB3761BEDAA5821ADD62458767F79F3 /* 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"; }; }; + AA68F31532D64A43A6EA754E5DFC8740 /* ThreadName.h in Headers */ = {isa = PBXBuildFile; fileRef = 588438EB9BCEE11D33DE837B15C9F05A /* ThreadName.h */; settings = {ATTRIBUTES = (Project, ); }; }; + AA6D303895690231DE1E07C4FA6935F2 /* FBLPromise+Reduce.h in Headers */ = {isa = PBXBuildFile; fileRef = 17A2515EEC5A739593D4A185E6491270 /* FBLPromise+Reduce.h */; settings = {ATTRIBUTES = (Project, ); }; }; + AA725C371ED2465746D713B036D28AF2 /* ImageCropPicker.m in Sources */ = {isa = PBXBuildFile; fileRef = 06011A6CDB80AEEF08F8150720A83252 /* ImageCropPicker.m */; }; + AA9DE81D154F15A0E8E5D6A146ABE6E1 /* Partial.h in Headers */ = {isa = PBXBuildFile; fileRef = 6312E2AF415B4DE18707CD2354722F1B /* Partial.h */; settings = {ATTRIBUTES = (Project, ); }; }; + AA9F769D0057D4602125097D4CECF9C6 /* UIView+React.m in Sources */ = {isa = PBXBuildFile; fileRef = DBE67F81087C01FA91F34D8FE14A8AD5 /* 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"; }; }; + AAA164F56750A8868EBF535C378FE778 /* ScheduledSingleSubscription.cpp in Sources */ = {isa = PBXBuildFile; fileRef = CD91383C2E2E5199BDAD51EA6938AC11 /* ScheduledSingleSubscription.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -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 -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors"; }; }; + AACBD3534259ABB830501870CEF539C0 /* FIRCLSFile.h in Headers */ = {isa = PBXBuildFile; fileRef = 2E9B02BCEB081D8C4A064ADA354C79CD /* FIRCLSFile.h */; settings = {ATTRIBUTES = (Project, ); }; }; + AAD3DF291B066887AD9D88839C60607B /* CString.h in Headers */ = {isa = PBXBuildFile; fileRef = 70B1A3D921BEE7C7EDA9FA6C4EDCFFE4 /* CString.h */; settings = {ATTRIBUTES = (Project, ); }; }; + AAE35BE76F1E77CBE4232D879CF93DFD /* dec_mips_dsp_r2.c in Sources */ = {isa = PBXBuildFile; fileRef = 9D8E7320DAED45BF95E8451F770249AA /* dec_mips_dsp_r2.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; + AAF102BFE5846B036C70C4B4E11C7833 /* ApplyTuple.h in Headers */ = {isa = PBXBuildFile; fileRef = 5CD13DA96F9A4C8599A3E027E06EC6CC /* ApplyTuple.h */; settings = {ATTRIBUTES = (Project, ); }; }; + AAF190F7F93D42B0CD6904B3EEE03C8C /* RNFetchBlobConst.m in Sources */ = {isa = PBXBuildFile; fileRef = A17A3E33AEC9C005C0448DCCA03EAED5 /* RNFetchBlobConst.m */; }; + AB0ADF421E59DE6725A304F9C8F75D33 /* GDTCORStorageEventSelector.m in Sources */ = {isa = PBXBuildFile; fileRef = 7F3E1AC8AAB339DB9B31A3E7B939B2D9 /* GDTCORStorageEventSelector.m */; }; + AB18A726571872F0C8239763CC6D920A /* QBAlbumsViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = 3B688DBB3C7E9388637BD5D5DABAC99A /* QBAlbumsViewController.m */; }; + AB1DD69FF01145BF637B0B9945BC7FE8 /* stl_logging.h in Headers */ = {isa = PBXBuildFile; fileRef = 5F869DEAB35BEEF672102C44847392C4 /* stl_logging.h */; settings = {ATTRIBUTES = (Project, ); }; }; + AB42CFC583E8514B1472D4E189E642C1 /* BugsnagSessionTracker.h in Headers */ = {isa = PBXBuildFile; fileRef = E68AABB7E6C2334DCF5B7AF56976E819 /* BugsnagSessionTracker.h */; settings = {ATTRIBUTES = (Project, ); }; }; + AB5C7F40BF57EC6BD8B005E5EDBFAFB1 /* iocp-internal.h in Headers */ = {isa = PBXBuildFile; fileRef = 3F6C74D1D270D3A78E787ACB7CE0B83C /* iocp-internal.h */; settings = {ATTRIBUTES = (Project, ); }; }; + AB5FA8986015FD97F591ADF90C97D8B6 /* RangeCommon.h in Headers */ = {isa = PBXBuildFile; fileRef = 88A324E2CF5D2EA60403FF1941DA90A4 /* RangeCommon.h */; settings = {ATTRIBUTES = (Project, ); }; }; + AB61343807A15B8D1E2B305FF2255C3A /* fixed-dtoa.cc in Sources */ = {isa = PBXBuildFile; fileRef = 8AC4306C8753214EDCABE8E3DDEC8F54 /* fixed-dtoa.cc */; settings = {COMPILER_FLAGS = "-Wno-unreachable-code"; }; }; + AB6D63B2AD1CF254C8D10B1FF7A62ACF /* ScopeGuard.h in Headers */ = {isa = PBXBuildFile; fileRef = 5FCFAEB741CD44BCBE6FE826FE96A90E /* ScopeGuard.h */; settings = {ATTRIBUTES = (Project, ); }; }; + AB7755A7FD58CE31155DB8DE775005AC /* FKPortForwardingServer.h in Headers */ = {isa = PBXBuildFile; fileRef = 2B5F69EB48C119034B23C4B47019B008 /* FKPortForwardingServer.h */; settings = {ATTRIBUTES = (Project, ); }; }; + AB779F9A692679019B8633CD2190FFD9 /* SafeAreaSpacerViewLocalData.m in Sources */ = {isa = PBXBuildFile; fileRef = 5ABB8CEBDD6E648722E013DE24A76315 /* SafeAreaSpacerViewLocalData.m */; }; + AB883A6681BF4620D5BD39070441BB33 /* YGFloatOptional.h in Headers */ = {isa = PBXBuildFile; fileRef = 3756272A35EDD26FBF5BB28751ED866A /* YGFloatOptional.h */; settings = {ATTRIBUTES = (Project, ); }; }; + AB936CC1238788CB359501A057EC41B4 /* GULReachabilityChecker+Internal.h in Headers */ = {isa = PBXBuildFile; fileRef = D3C90EEF0D081912A0C00F1B69E4D849 /* GULReachabilityChecker+Internal.h */; settings = {ATTRIBUTES = (Project, ); }; }; + AB99634DA96321A237AE20780AF99442 /* BSG_KSCrashSentry.c in Sources */ = {isa = PBXBuildFile; fileRef = B0B6594FD82B8CDCBC9F5393B2A244FC /* BSG_KSCrashSentry.c */; }; + ABAA2B7EDF49A361E743F807CF6FA4EB /* Libgen.h in Headers */ = {isa = PBXBuildFile; fileRef = 54A22B6DED609572B1BE3E94A925754F /* Libgen.h */; settings = {ATTRIBUTES = (Project, ); }; }; + ABBECE03895E552678501050A200A7B2 /* InspectorInterfaces.cpp in Sources */ = {isa = PBXBuildFile; fileRef = D28B65567E422C2E83DFD92784EDF81D /* InspectorInterfaces.cpp */; }; + ABC1564A6ED9E3208CB6332C685E9C61 /* EXAV.h in Headers */ = {isa = PBXBuildFile; fileRef = 8CF296CDD1729FF3241AF6E06AA2A505 /* EXAV.h */; settings = {ATTRIBUTES = (Project, ); }; }; + ABD684DEAEB59DFDBA1E619F9FEB2553 /* MallocImpl.h in Headers */ = {isa = PBXBuildFile; fileRef = B68269625DEDC5C2F2A7174D46F8D226 /* MallocImpl.h */; settings = {ATTRIBUTES = (Project, ); }; }; + ABF909CD5DB6CF6781E387C6B0C77D73 /* ja.lproj in Resources */ = {isa = PBXBuildFile; fileRef = 76654F4D3A7AB35B0D6A131C7FB281A9 /* ja.lproj */; }; + ABFC0514EAE2BD4C52B0103D4F54307A /* F14Policy.h in Headers */ = {isa = PBXBuildFile; fileRef = DB3C3CFF9D313427B3C2E2C7BBC3A6D4 /* F14Policy.h */; settings = {ATTRIBUTES = (Project, ); }; }; + ABFC4AB95E959C5173CD601E68042C8E /* SerialExecutor.h in Headers */ = {isa = PBXBuildFile; fileRef = 07273EED1F5B917483CD56BA5AB3295B /* SerialExecutor.h */; settings = {ATTRIBUTES = (Project, ); }; }; + AC037B7430F74FBFAEEC35D91B3B0309 /* SDWebImageDownloaderResponseModifier.m in Sources */ = {isa = PBXBuildFile; fileRef = 205E9B4034E456E16F07BB4317351CDD /* SDWebImageDownloaderResponseModifier.m */; }; + AC07949E783BFDF67AC22940998E8226 /* RNCSafeAreaViewLocalData.m in Sources */ = {isa = PBXBuildFile; fileRef = EE7156ABDA0AA89109C037D29E14E207 /* RNCSafeAreaViewLocalData.m */; }; + AC12BC79F1697390DF93AB1494DFC653 /* EventBase.h in Headers */ = {isa = PBXBuildFile; fileRef = CE974F0ACCF4111A78D5E2921F862F4B /* EventBase.h */; settings = {ATTRIBUTES = (Project, ); }; }; + AC1D9369F3922116BD2807C8B21581DB /* RCTUIUtils.m in Sources */ = {isa = PBXBuildFile; fileRef = CD4E5B90BB7D8FF7C8D77F0548A70E5B /* RCTUIUtils.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + AC1E57AD0F2410022F32B5AEC7550E90 /* BugsnagThread+Private.h in Headers */ = {isa = PBXBuildFile; fileRef = 60AC6A41E0E5C1F4F76E17AF356A4975 /* BugsnagThread+Private.h */; settings = {ATTRIBUTES = (Project, ); }; }; + AC43FF2B24EC0DB43DF5226D9E2A8159 /* react-native-slider-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 2B18F1EC87BB8F73733D818B6DA098E4 /* react-native-slider-dummy.m */; }; + AC5F1F69DB0B68228DD0866AEBBF7E9E /* REAModule.h in Headers */ = {isa = PBXBuildFile; fileRef = DA7767037C3986DE5DDB21498330B810 /* REAModule.h */; settings = {ATTRIBUTES = (Project, ); }; }; + AC5FC3CF555EC20E05084E4336405A2E /* ro.lproj in Resources */ = {isa = PBXBuildFile; fileRef = 3E83CF8DA80F50B268B4921B82D35430 /* ro.lproj */; }; + AC66C2F984B1E1AA8DF0EFDCCAB2C828 /* RCTUITextView.h in Headers */ = {isa = PBXBuildFile; fileRef = 2873319379B0B369C230E6002631DCD9 /* RCTUITextView.h */; settings = {ATTRIBUTES = (Project, ); }; }; + AC769760FAEF462CB1AD4C6A6A462F48 /* RCTTextShadowView.h in Headers */ = {isa = PBXBuildFile; fileRef = AF69F91177882A1FF2E4F2678A36644C /* RCTTextShadowView.h */; settings = {ATTRIBUTES = (Project, ); }; }; + ACA44CEF1411BABEC6CE05018039EEA4 /* ThreadId.h in Headers */ = {isa = PBXBuildFile; fileRef = 053E3A7AAD384AE8FC5937DADE6C0E1B /* ThreadId.h */; settings = {ATTRIBUTES = (Project, ); }; }; + ACA7933FEE9F001E53B94FB16B008076 /* UIImageView+WebCache.h in Headers */ = {isa = PBXBuildFile; fileRef = 3EF2DAFB6BEFBF1F3DA739A3B552ADBA /* UIImageView+WebCache.h */; settings = {ATTRIBUTES = (Project, ); }; }; + ACBB712DA16041E534A8CCA7829A8682 /* AsyncTransport.h in Headers */ = {isa = PBXBuildFile; fileRef = 5A4976A678D97261099E360B23DF1F77 /* AsyncTransport.h */; settings = {ATTRIBUTES = (Project, ); }; }; + ACC558CF892AAAB05FF600D42361D06A /* TestUtil.h in Headers */ = {isa = PBXBuildFile; fileRef = 3BF8E23B17CD30379B85C26722B37917 /* TestUtil.h */; settings = {ATTRIBUTES = (Project, ); }; }; + ACCC1F337696A8472D26DB062FADAFB2 /* GULHeartbeatDateStorage.h in Headers */ = {isa = PBXBuildFile; fileRef = 4A1D04633EA85E2A2E915EEC374E0553 /* GULHeartbeatDateStorage.h */; settings = {ATTRIBUTES = (Project, ); }; }; + ACD9ED0DD875A30CFD11705BD464CFCC /* MPMCPipeline.h in Headers */ = {isa = PBXBuildFile; fileRef = 3D8D04B8C04C3419B098250814B12D1E /* MPMCPipeline.h */; settings = {ATTRIBUTES = (Project, ); }; }; + ACE73796915661AB777B3AC147E4F2C7 /* pb.h in Headers */ = {isa = PBXBuildFile; fileRef = F3D56F6AE392B635143AD0767217F95D /* pb.h */; settings = {ATTRIBUTES = (Project, ); }; }; + ACF9FE09FA7FE2B76153D62DA06EEFDE /* RCTInputAccessoryViewManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 87628F3E74C1F185BDD7E4430CED5C1F /* RCTInputAccessoryViewManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; + ACFFD87D769D09FEC5CBFFF624741B01 /* GDTCCTUploader.m in Sources */ = {isa = PBXBuildFile; fileRef = 9778B10B7FF21E856F84F2337269C962 /* GDTCCTUploader.m */; }; + AD0F71220B985E21D94C29A8B5F706DD /* Atomic.h in Headers */ = {isa = PBXBuildFile; fileRef = EE9B29A0DCB0980858423988A3E97C4C /* Atomic.h */; settings = {ATTRIBUTES = (Project, ); }; }; + AD2EF0C9221A7AA71732722D1A30B67B /* SDImageAssetManager.m in Sources */ = {isa = PBXBuildFile; fileRef = 0CA3F5BD3BB611735389502DE1BDD48D /* SDImageAssetManager.m */; }; + AD3DD021B18EB103C144A17DBB759DC5 /* REAParamNode.h in Headers */ = {isa = PBXBuildFile; fileRef = DDE8F2ACA773FF72F96223B5BC5A11BF /* REAParamNode.h */; settings = {ATTRIBUTES = (Project, ); }; }; + AD4A63670A31A7D159CB3692A2AA89DD /* openssl_aes_core.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 3540FCF67A82DAF44F7386E90D5EA3DD /* openssl_aes_core.cpp */; settings = {COMPILER_FLAGS = "-x objective-c++ -fno-objc-arc"; }; }; + AD4A77689C490606F59A3873471B2B52 /* IPAddressSource.h in Headers */ = {isa = PBXBuildFile; fileRef = 833D4F2E95FED6F014CE233AF0AF26A9 /* IPAddressSource.h */; settings = {ATTRIBUTES = (Project, ); }; }; + AD5372FED632888277A8732959AA194C /* GDTCORAssert.h in Headers */ = {isa = PBXBuildFile; fileRef = 3543984759986161C90E987C74DB347E /* GDTCORAssert.h */; settings = {ATTRIBUTES = (Project, ); }; }; + AD62627C39B5BAF324061B71ECAA46F9 /* VibrancyView.m in Sources */ = {isa = PBXBuildFile; fileRef = DD306913C1F472264E94BDDC41B20E4E /* VibrancyView.m */; }; + AD74398D0DD5ADA213399CCB52882A7A /* RNPinchHandler.h in Headers */ = {isa = PBXBuildFile; fileRef = 0B1D49B10CD141FE3920FCD3243E60C2 /* RNPinchHandler.h */; settings = {ATTRIBUTES = (Project, ); }; }; + AD811EE43CC60A940768EEA939DCFBA4 /* react-native-document-picker-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = C2686D2DACF39830370970E397E22833 /* react-native-document-picker-dummy.m */; }; + AD8C3E0558DCBDDC3117F29E3B969EC3 /* Common.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 29F533E7B70B1E571B0054B93BA488A5 /* Common.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -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 -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors"; }; }; + AD91D024AD639FACF7D9F42AF6129707 /* RNNotificationCenterMulticast.m in Sources */ = {isa = PBXBuildFile; fileRef = 356AFA8260E0E76E520958A7EA66580A /* RNNotificationCenterMulticast.m */; }; + ADB9DC657C2699F783F18133F0603B85 /* RCTTextView.h in Headers */ = {isa = PBXBuildFile; fileRef = 23C6CD8DEB7156865D90C7DA489E00A9 /* RCTTextView.h */; settings = {ATTRIBUTES = (Project, ); }; }; + ADC1488750D5EED8269BAFF0C99D0103 /* bignum.cc in Sources */ = {isa = PBXBuildFile; fileRef = 22948CD80197B55D215C6C86DE7D298E /* bignum.cc */; settings = {COMPILER_FLAGS = "-Wno-unreachable-code"; }; }; + ADC155593BDDD0A6FEAA1CF1C8023D9D /* UIImage+Metadata.h in Headers */ = {isa = PBXBuildFile; fileRef = 5127DB3421F20D8DCBD082E0B433E6A0 /* UIImage+Metadata.h */; settings = {ATTRIBUTES = (Project, ); }; }; + ADCB321C65F8F92C0EB439E00A510466 /* ConnectionFactory.h in Headers */ = {isa = PBXBuildFile; fileRef = 318F5BC012C98F6683CA0DC5D00DDC39 /* ConnectionFactory.h */; settings = {ATTRIBUTES = (Project, ); }; }; + ADCD1362752886AED8D944601789F460 /* FIRCLSReportManager_Private.h in Headers */ = {isa = PBXBuildFile; fileRef = 724AF510DD707C57FABF46C9E00AE4AA /* FIRCLSReportManager_Private.h */; settings = {ATTRIBUTES = (Project, ); }; }; + ADCD194977BC549254781B85515B1B20 /* MacAddress.h in Headers */ = {isa = PBXBuildFile; fileRef = E877BFD6008956994ADB321921307C48 /* MacAddress.h */; settings = {ATTRIBUTES = (Project, ); }; }; + ADFBFD2755F27A89A81F87CF9308A7C7 /* FlipperDiagnosticsViewController.h in Headers */ = {isa = PBXBuildFile; fileRef = 27E7A6280E4DB33BFC36C7E7ABA210F0 /* FlipperDiagnosticsViewController.h */; settings = {ATTRIBUTES = (Project, ); }; }; + AE0195E93037B4A541B7C05657A75124 /* BlurView.h in Headers */ = {isa = PBXBuildFile; fileRef = 990946150492B7C60D4FD514DD761909 /* BlurView.h */; settings = {ATTRIBUTES = (Project, ); }; }; + AE2AD22C71F696B91F06A2E341FF2AF2 /* FlowableOperator.h in Headers */ = {isa = PBXBuildFile; fileRef = 59CF413A690341D81C3A0118EA067AB6 /* FlowableOperator.h */; settings = {ATTRIBUTES = (Project, ); }; }; + AE2F1A750ACAEDD30747AC94583C7C27 /* RSocketRequester.cpp in Sources */ = {isa = PBXBuildFile; fileRef = CEB4E7DC8C2B4AEC6C03C2BF7EF7E3C1 /* RSocketRequester.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -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 -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors"; }; }; + AE308D5FD1A68638719566F15634FE3B /* NamedThreadFactory.h in Headers */ = {isa = PBXBuildFile; fileRef = 08A09F0B00BD8770C1FB2B68A3E816FA /* NamedThreadFactory.h */; settings = {ATTRIBUTES = (Project, ); }; }; + AE616D9491DB123029A08A8ED8808A2D /* RCTJSScriptLoaderModule.h in Headers */ = {isa = PBXBuildFile; fileRef = 31636AA1F5453AE72920298B25D2DE9E /* RCTJSScriptLoaderModule.h */; settings = {ATTRIBUTES = (Project, ); }; }; + AE6417572C1B73A3BC1D19FB6B6E9D24 /* EXVideoThumbnailsModule.m in Sources */ = {isa = PBXBuildFile; fileRef = BBC61E5C4CEAFFFC0045933275BBCF5C /* EXVideoThumbnailsModule.m */; }; + AE6F6C7C0DE83628B23D33BF11347845 /* RCTAnimationUtils.m in Sources */ = {isa = PBXBuildFile; fileRef = 5EB8BCC8CE4CA4E5257E9EE9D8DFEEDC /* 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"; }; }; + AE766944C010B262FB816F4945D6479C /* GULKeychainStorage.h in Headers */ = {isa = PBXBuildFile; fileRef = 06D053228E60AF771B0AA73C61CD543C /* GULKeychainStorage.h */; settings = {ATTRIBUTES = (Project, ); }; }; + AE8E8102078EE245DF10219AF7E44E69 /* BSGFileLocations.h in Headers */ = {isa = PBXBuildFile; fileRef = 2F4E70E7E6D6AC8E4EF0E3EA2D812CE8 /* BSGFileLocations.h */; settings = {ATTRIBUTES = (Project, ); }; }; + AE994AC6BCEABF745C25CE04842CDD48 /* CPUThreadPoolExecutor.h in Headers */ = {isa = PBXBuildFile; fileRef = 120DFDBF4590C4F27F513CA252284B8C /* CPUThreadPoolExecutor.h */; settings = {ATTRIBUTES = (Project, ); }; }; + AE9D760190B73E4F217A0CB479C16797 /* RCTBridge+Private.h in Headers */ = {isa = PBXBuildFile; fileRef = 6EA3FEF89667AC31C1E43DF8B780C049 /* RCTBridge+Private.h */; settings = {ATTRIBUTES = (Project, ); }; }; + AE9D98FE8AB2BD6E78EC9A67AFD995A9 /* MMKV-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = AF1408D268049C8C4C54B4987BCA1CF6 /* MMKV-dummy.m */; }; + AED270A522BF4BDC72EFCE10FBDBFE3F /* PThread.h in Headers */ = {isa = PBXBuildFile; fileRef = 4DD2A697C6CED6FB3094F355F3DED273 /* PThread.h */; settings = {ATTRIBUTES = (Project, ); }; }; + AED2DCF68D90B01D7C9032A539168D70 /* Request.h in Headers */ = {isa = PBXBuildFile; fileRef = F1909A2D03F46AA2D6F5572953128631 /* Request.h */; settings = {ATTRIBUTES = (Project, ); }; }; + AEDE27C7D69B68F3416BEDCA4768B071 /* AtomicHashMap.h in Headers */ = {isa = PBXBuildFile; fileRef = DC5368FFBFCF8BA9818088B9DEA7FFFE /* AtomicHashMap.h */; settings = {ATTRIBUTES = (Project, ); }; }; + AEE96BAF0941B368FE4E499707435BDC /* UTF8String.h in Headers */ = {isa = PBXBuildFile; fileRef = 84BF5BF7E8E5171EAA5A94EB7DEE0FB1 /* UTF8String.h */; settings = {ATTRIBUTES = (Project, ); }; }; + AEFBC00847D9363CCF96D4B55014CD3A /* Stdlib.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 2EE9DE4D51C0162B5FDD2AF1A03ED058 /* Stdlib.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -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\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors"; }; }; + AF0D1070CC1B10CAC80377C69271E42E /* RCTSurfaceRootShadowView.h in Headers */ = {isa = PBXBuildFile; fileRef = 1FDFDB4CE3ECC7AC06B4F575248473D6 /* RCTSurfaceRootShadowView.h */; settings = {ATTRIBUTES = (Project, ); }; }; + AF3279D542EF38AAB10459A9883BCC9C /* SDWebImage-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 27DBAC4134413869D3B87CFE02E8362B /* SDWebImage-dummy.m */; }; + AF3C6B75C0E54C99EB6F4C915210F3C2 /* Demangle.h in Headers */ = {isa = PBXBuildFile; fileRef = EFBA0E8BF64DCE2AA563A4BD01F2946E /* Demangle.h */; settings = {ATTRIBUTES = (Project, ); }; }; + AF6EE48569161C686172753B582E9575 /* NSValue+Interpolation.h in Headers */ = {isa = PBXBuildFile; fileRef = D61E3A2684B2F705B24D04DD0741ECF6 /* NSValue+Interpolation.h */; settings = {ATTRIBUTES = (Project, ); }; }; + AF6FD9F9F3577E1BED6C2151F5D30204 /* muxedit.c in Sources */ = {isa = PBXBuildFile; fileRef = B51E46FF0D5413499FCA7622EFBAD409 /* muxedit.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; + AF730F95063E23ABD78ECF4512C8C1A1 /* NSTextStorage+FontScaling.m in Sources */ = {isa = PBXBuildFile; fileRef = 57007F30B0336E7F7C2AE25790DD87A1 /* NSTextStorage+FontScaling.m */; }; + AF8FB6F98C8E5B30BB40BA4789984544 /* FIRLogger.h in Headers */ = {isa = PBXBuildFile; fileRef = 9C2D09C5E5F72095A6969052F76A009C /* FIRLogger.h */; settings = {ATTRIBUTES = (Project, ); }; }; + AFB1FC261EC88C0F1E6C9034AABAA68A /* EXPermissions.m in Sources */ = {isa = PBXBuildFile; fileRef = 5697C390F57A4F934D4B97888CC0ED8C /* EXPermissions.m */; }; + AFB38D7A71A8B3FC22E57ABD9BC85271 /* RCTSRWebSocket.m in Sources */ = {isa = PBXBuildFile; fileRef = B289B481D490E9AB326ABEB0BFB6B9AB /* RCTSRWebSocket.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + AFB4F578233E18CDBF001760E1EF9E06 /* RCTImagePlugins.mm in Sources */ = {isa = PBXBuildFile; fileRef = 2327894C2B59A3F440C762DB0BEF834B /* 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"; }; }; + AFD071C1A85CE9CECB84CA2EC0E79EC0 /* YGEnums.cpp in Sources */ = {isa = PBXBuildFile; fileRef = A01A7B4009B157C9F5A11FD709E3ACC0 /* YGEnums.cpp */; settings = {COMPILER_FLAGS = "-fno-omit-frame-pointer -fexceptions -Wall -Werror -std=c++1y -fPIC -fno-objc-arc"; }; }; + AFE5A446BAE5432B9084DC260CC3D290 /* QBAssetCell.h in Headers */ = {isa = PBXBuildFile; fileRef = 81057F95C67F88DA343FA4A2AD0F6A97 /* QBAssetCell.h */; settings = {ATTRIBUTES = (Project, ); }; }; + AFF85BCBA1D9F866570AC636DEE269B3 /* SDImageWebPCoder.m in Sources */ = {isa = PBXBuildFile; fileRef = 72704C9FEC7AB0313AB406ADEE70C724 /* SDImageWebPCoder.m */; }; + B00C07CE84DD910B3689D022D256F9D7 /* DefaultKeepAliveExecutor.h in Headers */ = {isa = PBXBuildFile; fileRef = 65F361A3C4161C514C68C705E024B3B3 /* DefaultKeepAliveExecutor.h */; settings = {ATTRIBUTES = (Project, ); }; }; + B01209A23FE1CC8385E758AF5C00F6F2 /* RSocketClient.cpp in Sources */ = {isa = PBXBuildFile; fileRef = C73B61CAC86CA6702B49ED64B86007B1 /* RSocketClient.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -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 -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors"; }; }; + B020A3994707F48C9C8378A25EC6DBEA /* FIRCLSByteUtility.h in Headers */ = {isa = PBXBuildFile; fileRef = DDDC0DDD07B123DEEA383C75BAA64CA6 /* FIRCLSByteUtility.h */; settings = {ATTRIBUTES = (Project, ); }; }; + B04776B971D3E95C9BB04B94C6DE999F /* ThriftStreamShim.h in Headers */ = {isa = PBXBuildFile; fileRef = F8322B9F6F3255F3B6086FC3492FACCF /* ThriftStreamShim.h */; settings = {ATTRIBUTES = (Project, ); }; }; + B050B3CF1E73904AFFCD72BF6F992556 /* SDImageCoderHelper.h in Headers */ = {isa = PBXBuildFile; fileRef = D4B18576E0547224F89BEB005146149C /* SDImageCoderHelper.h */; settings = {ATTRIBUTES = (Project, ); }; }; + B05881240B8AE8ED03CA68036D17A3C9 /* ieee.h in Headers */ = {isa = PBXBuildFile; fileRef = D38D8A458E5252FB25BD211D87029119 /* ieee.h */; settings = {ATTRIBUTES = (Project, ); }; }; + B08545125769C7F95AF127147486F723 /* de.lproj in Resources */ = {isa = PBXBuildFile; fileRef = E24E6D1748759D3AD31F4F29C336E607 /* de.lproj */; }; + B088502B68B099019231B790F2B53DA0 /* TLSDefinitions.h in Headers */ = {isa = PBXBuildFile; fileRef = 7205629B19385396F1D5D42DC013FC0D /* TLSDefinitions.h */; settings = {ATTRIBUTES = (Project, ); }; }; + B08CD093089C7F95C9BB7DCF77B5E640 /* FBLPromise+Retry.h in Headers */ = {isa = PBXBuildFile; fileRef = F103884550DA9031A3ADEC95E41DD20C /* FBLPromise+Retry.h */; settings = {ATTRIBUTES = (Project, ); }; }; + B0904E9339EAADB17226F2A7DDD49C9F /* FIRCLSUnwind.h in Headers */ = {isa = PBXBuildFile; fileRef = 2D2808D13D549D1FCB4043E612A36333 /* FIRCLSUnwind.h */; settings = {ATTRIBUTES = (Project, ); }; }; + B097DD0B32204ABDC32EAB2FEC98F6E0 /* lossless_mips_dsp_r2.c in Sources */ = {isa = PBXBuildFile; fileRef = 058AF4D7607263A25050FC3216C423CF /* lossless_mips_dsp_r2.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; + B0A2052358C3CCEB35B207AABBBDAFEB /* Time.h in Headers */ = {isa = PBXBuildFile; fileRef = E5D5F9AB1D06A59BD793A94340EBCCFD /* Time.h */; settings = {ATTRIBUTES = (Project, ); }; }; + B0BF4161D9D94D3D2E3B8FA4DD873F1B /* ReactNativeShareExtension.m in Sources */ = {isa = PBXBuildFile; fileRef = 8D671DD9C09EC323906CEFAC8A87493D /* ReactNativeShareExtension.m */; }; + B0D0421BD31BD7269900A919E9D2C93B /* GULNSData+zlib.m in Sources */ = {isa = PBXBuildFile; fileRef = AC8F51AAADB5F6E5AAE02EA7C7D4E5F3 /* GULNSData+zlib.m */; }; + B0D0AC355B596015BA89AF7218B69B2D /* RCTVersion.m in Sources */ = {isa = PBXBuildFile; fileRef = CB2565E5F040DD7273876E4CA97FE315 /* RCTVersion.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + B0DA8371D4294ED2A19873058D58D87B /* UMViewManagerAdapter.h in Headers */ = {isa = PBXBuildFile; fileRef = FAFFBB3139BD45FA9CD0F1222555298C /* UMViewManagerAdapter.h */; settings = {ATTRIBUTES = (Project, ); }; }; + B0ED107F3AAF83FDD3035D0B3D864953 /* GCDAsyncUdpSocket.h in Headers */ = {isa = PBXBuildFile; fileRef = 8BE0231B9D6DC76A34CC0C93D75E5284 /* GCDAsyncUdpSocket.h */; settings = {ATTRIBUTES = (Project, ); }; }; + B0FF11CF10D681CF091E43272BCF9168 /* FKTextSearchable.h in Headers */ = {isa = PBXBuildFile; fileRef = 9A5E0F276F9F718AD095DDEF5457B8C9 /* FKTextSearchable.h */; settings = {ATTRIBUTES = (Project, ); }; }; + B10B2CB1B65BB5CCD05DBE914969CA78 /* MemoryMapping.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 318129C519E42C3796085EBA02B8AE78 /* MemoryMapping.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -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\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors"; }; }; + B117610A3870F55A94ADBAA8401211C5 /* enc_mips32.c in Sources */ = {isa = PBXBuildFile; fileRef = 5A64C5CCC71DCF270712384B7645219E /* enc_mips32.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; + B11F5F1AD24AFA38E12C3540AE40C388 /* rescaler_utils.c in Sources */ = {isa = PBXBuildFile; fileRef = BCDC010B49295444D741D1A3E33A354E /* rescaler_utils.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; + B12608FFA803FC22EDF2E7611BBA88DD /* FIRExceptionModel.h in Headers */ = {isa = PBXBuildFile; fileRef = A46459009EC9B77CB665A02B2D67C745 /* FIRExceptionModel.h */; settings = {ATTRIBUTES = (Project, ); }; }; + B15041AB7221D85B5CEFEDA3A90A7EDA /* CodingDetail.h in Headers */ = {isa = PBXBuildFile; fileRef = 5FB534B9956DB74ED567203C9FCD9E4D /* CodingDetail.h */; settings = {ATTRIBUTES = (Project, ); }; }; + B159EA16ECB07992DA8EDFA18146296F /* EXSessionTaskDispatcher.m in Sources */ = {isa = PBXBuildFile; fileRef = F972FAB223630D4E75FE516B0E56C049 /* EXSessionTaskDispatcher.m */; }; + B16262D407B0B4C00560054663B2DEFA /* Fixture.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 7C526FC408D59932EA460CABD3A1C0DD /* Fixture.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -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 -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors"; }; }; + B16B24FC6495F1490A34DB8F445B1802 /* FIRCLSFABHost.h in Headers */ = {isa = PBXBuildFile; fileRef = 6D9429D70EC70845FFAF70C32303F3B4 /* FIRCLSFABHost.h */; settings = {ATTRIBUTES = (Project, ); }; }; + B16C2741B38D752B204C9731A29EFF23 /* JSIDynamic.h in Headers */ = {isa = PBXBuildFile; fileRef = 2E36D770A5670548368752957810ED6D /* JSIDynamic.h */; settings = {ATTRIBUTES = (Project, ); }; }; + B1811025F7508F08FEF0AD609A0807A4 /* libwebp-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = DBE866325A36D001D96181A65ABFEE5A /* libwebp-dummy.m */; }; + B195EB4DB58D3DDB71BA471920F84BB0 /* HazptrObjLinked.h in Headers */ = {isa = PBXBuildFile; fileRef = 1CC4697D34AA2DDFB79F152435D5329D /* HazptrObjLinked.h */; settings = {ATTRIBUTES = (Project, ); }; }; + B1A58666C01F0F22767697BAB808E499 /* Baton.h in Headers */ = {isa = PBXBuildFile; fileRef = 776E7B2B835457CC2AB52FEE1B8AAC2A /* Baton.h */; settings = {ATTRIBUTES = (Project, ); }; }; + B1A9C57C36114D3B46233B53A3DA51E0 /* Assume.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 5D98C616DE2F65E2FD843F0D29B73EAC /* Assume.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -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\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors"; }; }; + B1BDA42B05D9DD257EAC4EBBBC70D527 /* React-cxxreact-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 20BEC0350CD783ED0EDECA8B78636C09 /* React-cxxreact-dummy.m */; }; + B1BDDADCCADFC7FE9353326611F38528 /* TcpConnectionFactory.h in Headers */ = {isa = PBXBuildFile; fileRef = F7CD435CD4E46750DE4B82F5AF6B5B21 /* TcpConnectionFactory.h */; settings = {ATTRIBUTES = (Project, ); }; }; + B1D0D8A23ECA8895A427E9B890CF3FEB /* Types.h in Headers */ = {isa = PBXBuildFile; fileRef = C6A7179C49AA739E8E450CCA1979EB56 /* Types.h */; settings = {ATTRIBUTES = (Project, ); }; }; + B1E3AA7B0151B3E960F9C4D1B20C2684 /* RCTPerformanceLogger.h in Headers */ = {isa = PBXBuildFile; fileRef = 1D7A130AD6D7EFE6B8F448CCB137D3DD /* RCTPerformanceLogger.h */; settings = {ATTRIBUTES = (Project, ); }; }; + B2068BA9372FCB9E5748E050603763E5 /* FIRApp.m in Sources */ = {isa = PBXBuildFile; fileRef = B514DB33F06769DCC6A36DA37247A272 /* FIRApp.m */; }; + B21EF4A086E0DAE621FB8CFDB9BD27A8 /* RCTSafeAreaViewManager.h in Headers */ = {isa = PBXBuildFile; fileRef = F8204127A8D36C03965AACB99B22F7E2 /* RCTSafeAreaViewManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; + B22832ED81DE0F088FA8DEE3589F53AD /* StringKeyedSet.h in Headers */ = {isa = PBXBuildFile; fileRef = 05F74C60688AE79827C594897973B2A1 /* StringKeyedSet.h */; settings = {ATTRIBUTES = (Project, ); }; }; + B229A9BB9FD57AA77767FBC8485F8D50 /* Try-inl.h in Headers */ = {isa = PBXBuildFile; fileRef = 202A617B5DEE762F05545816C1FEF35F /* Try-inl.h */; settings = {ATTRIBUTES = (Project, ); }; }; + B229AF8DAA5562E136BD9CE6C3A663D5 /* event-internal.h in Headers */ = {isa = PBXBuildFile; fileRef = F051493D056B9AF6EB46402FD3620353 /* event-internal.h */; settings = {ATTRIBUTES = (Project, ); }; }; + B22C80CAFC0D92B51A6A7B39E1A0E54D /* ReentrantAllocator.h in Headers */ = {isa = PBXBuildFile; fileRef = 9BE222E8B158676246FAD50D29C872C7 /* ReentrantAllocator.h */; settings = {ATTRIBUTES = (Project, ); }; }; + B2305061F468F0BE3E420B446E4B7A4D /* SDAnimatedImageView+WebCache.h in Headers */ = {isa = PBXBuildFile; fileRef = 9636CA304D0800814FE268B7CAC120BC /* SDAnimatedImageView+WebCache.h */; settings = {ATTRIBUTES = (Project, ); }; }; + B24A7823434538AD86BD5B7034F55191 /* REATransitionManager.m in Sources */ = {isa = PBXBuildFile; fileRef = 2A7695ABD283AEBA8C5B925708337EA1 /* REATransitionManager.m */; }; + B24C9B582AF2582B42A1C0944EE4D5D3 /* YGValue.cpp in Sources */ = {isa = PBXBuildFile; fileRef = CC292892402129582C4504C141967A9F /* YGValue.cpp */; settings = {COMPILER_FLAGS = "-fno-omit-frame-pointer -fexceptions -Wall -Werror -std=c++1y -fPIC -fno-objc-arc"; }; }; + B24E3BAD29A34380E54D23FC65CBFF04 /* EXSessionDownloadTaskDelegate.h in Headers */ = {isa = PBXBuildFile; fileRef = B4A63399DBE9EB5094BAC0ED1B42FBA2 /* EXSessionDownloadTaskDelegate.h */; settings = {ATTRIBUTES = (Project, ); }; }; + B257932FFE1BE8D5812AD70B932A056C /* BugsnagSessionTrackingPayload.h in Headers */ = {isa = PBXBuildFile; fileRef = 134633DF5E0610326A5F72493736B545 /* BugsnagSessionTrackingPayload.h */; settings = {ATTRIBUTES = (Project, ); }; }; + B25AC73117F4BB0CAD549D27E2BAE026 /* fa.lproj in Resources */ = {isa = PBXBuildFile; fileRef = 8F04D99329DD02E83D93EC3D9CF85975 /* fa.lproj */; }; + B2648FA9657827BF7E1758B48280B849 /* SoftRealTimeExecutor.h in Headers */ = {isa = PBXBuildFile; fileRef = EC02C6E84074EFCF1231C798451567A0 /* SoftRealTimeExecutor.h */; settings = {ATTRIBUTES = (Project, ); }; }; + B27F908A2377050570C70FEDC70E3A21 /* FIRCLSMachOBinary.m in Sources */ = {isa = PBXBuildFile; fileRef = 1705B8BBFC70BBD8D6FB6EDD10903FF8 /* FIRCLSMachOBinary.m */; }; + B290F86C7C26CD71231E7658CCD0560C /* BSG_RFC3339DateTool.h in Headers */ = {isa = PBXBuildFile; fileRef = DB8AA9A7EB6000F4AD2A31C27D56F1FA /* BSG_RFC3339DateTool.h */; settings = {ATTRIBUTES = (Project, ); }; }; + B2AD496BCA1C18C8EE984FB2210866DA /* BugsnagKeys.m in Sources */ = {isa = PBXBuildFile; fileRef = B17C95B209B98EA07B3310578D724ED3 /* BugsnagKeys.m */; }; + B2D3B946BBED766A1748B18A5CD870CB /* BSG_Jailbreak.h in Headers */ = {isa = PBXBuildFile; fileRef = AEBE777944987407ACB4E2B0C290EF36 /* BSG_Jailbreak.h */; settings = {ATTRIBUTES = (Project, ); }; }; + B2DD2BF040CCDB67E47C36CF0AB62068 /* ConcurrentBitSet.h in Headers */ = {isa = PBXBuildFile; fileRef = C1E0B3DC529E43C36C8197D5F584CCF1 /* ConcurrentBitSet.h */; settings = {ATTRIBUTES = (Project, ); }; }; + B2E2062939AFC23D321DB5608724EE79 /* REATransformNode.h in Headers */ = {isa = PBXBuildFile; fileRef = 4FB404C79DA9E1109F78223BB98F7C11 /* REATransformNode.h */; settings = {ATTRIBUTES = (Project, ); }; }; + B2E7767AC8EF27992ADC0DD30E269110 /* HardwareConcurrency.cpp in Sources */ = {isa = PBXBuildFile; fileRef = E3EAF96E3C845AC45913410509630EA6 /* HardwareConcurrency.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -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\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors"; }; }; + B2EAA18BADAA597FD9B4E05C15C5A4DF /* LifoSem.h in Headers */ = {isa = PBXBuildFile; fileRef = DC2E4B6CAEC8AD28AA4CE3AB6C7982CB /* LifoSem.h */; settings = {ATTRIBUTES = (Project, ); }; }; + B2F3D5F5EA5D64DF0555C5AA082714AA /* FIRInstallationsItem.m in Sources */ = {isa = PBXBuildFile; fileRef = 4FDB641DD6622C3337E50799D6CAF50B /* FIRInstallationsItem.m */; }; + B32C9D151A30D933DDBD8805D9BF475A /* Portability.h in Headers */ = {isa = PBXBuildFile; fileRef = 711AD9D5299E2DEC433AEFA83C10FEAA /* Portability.h */; settings = {ATTRIBUTES = (Project, ); }; }; + B331C919D0B6E55A82A5B2F81F246F94 /* RCTDevLoadingViewSetEnabled.h in Headers */ = {isa = PBXBuildFile; fileRef = 231D4D4A3861A4F8968643D9B4657D2A /* RCTDevLoadingViewSetEnabled.h */; settings = {ATTRIBUTES = (Project, ); }; }; + B345CC201A352A71FA8F55C2BE56A0C5 /* RCTKeyCommandsManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 19E232523E363F855E72D201E7A8E37C /* RCTKeyCommandsManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; + B348B714404FD01FD0F9FF0FD0F3E68F /* GULSecureCoding.h in Headers */ = {isa = PBXBuildFile; fileRef = CAAA28D75E616E4A4D2DDDCB631604FF /* GULSecureCoding.h */; settings = {ATTRIBUTES = (Project, ); }; }; + B354AC498C391D1C0A4624A03CC835E9 /* RCTPerformanceLogger.m in Sources */ = {isa = PBXBuildFile; fileRef = 508987E7D16D45673A96292834D1A4D8 /* RCTPerformanceLogger.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + B361E6279C1D8888EECF3E194570E6C0 /* FIRErrorCode.h in Headers */ = {isa = PBXBuildFile; fileRef = A07EA4BBD031EA9B7E087D507BF24A2C /* FIRErrorCode.h */; settings = {ATTRIBUTES = (Project, ); }; }; + B370442DA3B656B600307AE217535FE1 /* RCTTouchHandler.m in Sources */ = {isa = PBXBuildFile; fileRef = E87D76941C99A09E1FB0A8226001CC70 /* RCTTouchHandler.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + B37FEB4F02256C8E8B11173379CAF09D /* SDAsyncBlockOperation.m in Sources */ = {isa = PBXBuildFile; fileRef = EC0119EA515BA065530341757CDABD41 /* SDAsyncBlockOperation.m */; }; + B3A6B4A16330185BCDB99702EEB700A0 /* RNFBAnalyticsModule.m in Sources */ = {isa = PBXBuildFile; fileRef = 3D09B252666AE7DD10071F367634BAA4 /* RNFBAnalyticsModule.m */; }; + B3AE255E96F35E12613B4329021F5606 /* DoubleConversion-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 386722BED83FD2DE5F55C3152AE9E11E /* DoubleConversion-dummy.m */; }; + B3CCA4AAFECE286A26AACDEECDC48A10 /* Event.h in Headers */ = {isa = PBXBuildFile; fileRef = 722EB091E1AEEA77792FE41ADF3CDD52 /* Event.h */; settings = {ATTRIBUTES = (Project, ); }; }; + B3D4D19E10CEE3EB116407F3A60CBCC4 /* FIRCLSHost.h in Headers */ = {isa = PBXBuildFile; fileRef = 75AFB0A1AC15FD822DBF35ECCA7C47C2 /* FIRCLSHost.h */; settings = {ATTRIBUTES = (Project, ); }; }; + B3D7A8D8919292B71A7E53674AAD7917 /* RNBackgroundTimer.m in Sources */ = {isa = PBXBuildFile; fileRef = 6E3F8039F3E6487E7B3E9B47C2103F5A /* RNBackgroundTimer.m */; }; + B3F5931134C706B98CE1CB98B0B7B9CA /* RCTTextSelection.h in Headers */ = {isa = PBXBuildFile; fileRef = E16BA816953EB2A650B4516FC6B20BA6 /* RCTTextSelection.h */; settings = {ATTRIBUTES = (Project, ); }; }; + B4051E50B00598940A8468A27D628470 /* FIRConfiguration.m in Sources */ = {isa = PBXBuildFile; fileRef = B28964FDACCE3E5DFEDCEC8B6C240FF3 /* FIRConfiguration.m */; }; + B438D2532C739A4EC03FAF8A27F85B7C /* RCTMaskedViewManager.h in Headers */ = {isa = PBXBuildFile; fileRef = B8AC4401071B23E14A4CB08B9ECDD287 /* RCTMaskedViewManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; + B43DA9C9C4B543064B7CC66B5B971273 /* UMUIManager.h in Headers */ = {isa = PBXBuildFile; fileRef = EA0D4C1D84AF2768C5D1ACFD13776663 /* UMUIManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; + B44718C946357499DC8C965256408E09 /* NativeToJsBridge.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 2E73F011CEB0A6710D96E7DB18FAE891 /* NativeToJsBridge.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + B44CE72B58A204F8C1B7E8523AA0627E /* FIRInstallationsAuthTokenResult.h in Headers */ = {isa = PBXBuildFile; fileRef = 834EE78545DDAF73EA1C6BD54795E196 /* FIRInstallationsAuthTokenResult.h */; settings = {ATTRIBUTES = (Project, ); }; }; + B45BA15D7EA8C574692F336AF6D22DB8 /* FIRCLSInternalLogging.h in Headers */ = {isa = PBXBuildFile; fileRef = 03299B9950D7DE641F1EB45A3B5AC7FF /* FIRCLSInternalLogging.h */; settings = {ATTRIBUTES = (Project, ); }; }; + B464CECAB2AD956A6037B55A3571E4CB /* BSG_KSCrashReportVersion.h in Headers */ = {isa = PBXBuildFile; fileRef = E95CE71CDCC61CAC3D23FA368B7E1B0E /* BSG_KSCrashReportVersion.h */; settings = {ATTRIBUTES = (Project, ); }; }; + B47AD0B0C384B04A68FBBFE98156FBBB /* OpenSSLUtils.h in Headers */ = {isa = PBXBuildFile; fileRef = 6632568D1312BA837B2053B99D777AE4 /* OpenSSLUtils.h */; settings = {ATTRIBUTES = (Project, ); }; }; + B4874BB64E2E480A7ECF3DF5738418F2 /* UMViewManagerAdapterClassesRegistry.m in Sources */ = {isa = PBXBuildFile; fileRef = 87A1D7E27F251CB29B909F0DB4FA2B9F /* UMViewManagerAdapterClassesRegistry.m */; }; + B49A006FEA8BB8AA19571D15F7311B05 /* FBLPromises.h in Headers */ = {isa = PBXBuildFile; fileRef = 7BCAF8117650A6FD61A74660EBC9ED49 /* FBLPromises.h */; settings = {ATTRIBUTES = (Project, ); }; }; + B4B661CB6D518A89233618AE326B75F0 /* EXHapticsModule.m in Sources */ = {isa = PBXBuildFile; fileRef = 98F98571D2236847E60AEA194772C9F8 /* EXHapticsModule.m */; }; + B4B8E7EF3FF95663B58618A16BC27F34 /* CancelingSubscriber.h in Headers */ = {isa = PBXBuildFile; fileRef = 40804BDDC9B997A460AE9078112642A6 /* CancelingSubscriber.h */; settings = {ATTRIBUTES = (Project, ); }; }; + B4D07A37410DFB8DD42B9C22567D83A9 /* enc_sse41.c in Sources */ = {isa = PBXBuildFile; fileRef = A7EB5333D8D740EF49452388B2A226AC /* enc_sse41.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; + B4F215E44432BE917156E7133AF517EF /* FIRCLSFeatures.h in Headers */ = {isa = PBXBuildFile; fileRef = CD2B52679D03A6D86CB575504386A4C9 /* FIRCLSFeatures.h */; settings = {ATTRIBUTES = (Project, ); }; }; + B4FF0B64499456432323BB1C2CF2126C /* F14Table.h in Headers */ = {isa = PBXBuildFile; fileRef = 893965F8A6D89A6F87F467824F72FAB8 /* F14Table.h */; settings = {ATTRIBUTES = (Project, ); }; }; + B5147718598091DDBBC96C6B9E2EB147 /* CodedOutputData.h in Headers */ = {isa = PBXBuildFile; fileRef = C9AEDF38717DC2C834E24EACF2A8FE91 /* CodedOutputData.h */; settings = {ATTRIBUTES = (Project, ); }; }; + B538432FD3992CC838E282652F6631FF /* Format-inl.h in Headers */ = {isa = PBXBuildFile; fileRef = 12C6E79026E78E2DBF6C749EAAFA6494 /* Format-inl.h */; settings = {ATTRIBUTES = (Project, ); }; }; + B542268BDDA8EC0E9448BFDCE2A3D04E /* EXConstantsService.m in Sources */ = {isa = PBXBuildFile; fileRef = 49273B805FECCA94AFCB75F5897229BE /* EXConstantsService.m */; }; + B54B3185A2641D3E10344BC87731AA11 /* RCTProfileTrampoline-arm64.S in Sources */ = {isa = PBXBuildFile; fileRef = B803800C2D87BA47D7D6517CCF93757A /* RCTProfileTrampoline-arm64.S */; }; + B5563576E6604695E939194BEEB5BB75 /* UIImage+CropRotate.m in Sources */ = {isa = PBXBuildFile; fileRef = 21EBA6E3E93418399481A3A3B17FF241 /* UIImage+CropRotate.m */; }; + B57B52D7A8E312AEA8300E770D5651DD /* REATransition.m in Sources */ = {isa = PBXBuildFile; fileRef = 9BB100A2237ABE19F090F03047E5A7B2 /* REATransition.m */; }; + B5886017B34755D6C5F8D35BA13DBC9E /* RCTRsa.h in Headers */ = {isa = PBXBuildFile; fileRef = 8005F846C16DFB53EEF6CC58782031C7 /* RCTRsa.h */; settings = {ATTRIBUTES = (Project, ); }; }; + B58C9426C96245F2C79F5C7E2F922693 /* GULKeychainUtils.h in Headers */ = {isa = PBXBuildFile; fileRef = 7C6F6A51162FD6BE1EFE3CC1C144D71A /* GULKeychainUtils.h */; settings = {ATTRIBUTES = (Project, ); }; }; + B594FF6E7040805B0D32D24AE00ADB7D /* BSG_KSArchSpecific.h in Headers */ = {isa = PBXBuildFile; fileRef = B68A31D90ECD9BFED45A51A81AF5CCF2 /* BSG_KSArchSpecific.h */; settings = {ATTRIBUTES = (Project, ); }; }; + B5AD16B337D060F5A476E175CD452D04 /* BitVectorCoding.h in Headers */ = {isa = PBXBuildFile; fileRef = CE785EF183FC8FBB7C41FAAE45962088 /* BitVectorCoding.h */; settings = {ATTRIBUTES = (Project, ); }; }; + B5B67F4C67EC45C77CB55B0084EB5271 /* CancellationToken.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 5A256A045FF3B5160FF99B16411BEAC9 /* CancellationToken.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -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\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors"; }; }; + B5B8357A99A1550598A5F52499585E1A /* ChannelResponder.cpp in Sources */ = {isa = PBXBuildFile; fileRef = BD59D65E2CF97FA205A9744A8CF02561 /* ChannelResponder.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -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 -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors"; }; }; + B5BA1D2D77674DEF52E7F62E3D16F35E /* evrpc-internal.h in Headers */ = {isa = PBXBuildFile; fileRef = 21BFDB1E52A12AE42D1CBD6DEDA0FCED /* evrpc-internal.h */; settings = {ATTRIBUTES = (Project, ); }; }; + B5D0D30876A5170B761E98DB026CE76D /* FlipperStep.cpp in Sources */ = {isa = PBXBuildFile; fileRef = E85B8F5F5C43BE70699346841EC7680E /* FlipperStep.cpp */; settings = {COMPILER_FLAGS = "-DFLIPPER_OSS=1 -DFB_SONARKIT_ENABLED=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -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"; }; }; + B5F51BE79A16255259D5998B7D488835 /* MemoryIdler.cpp in Sources */ = {isa = PBXBuildFile; fileRef = CBF81007BEDC4D0CC875B7F05BB3F250 /* MemoryIdler.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -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\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors"; }; }; + B5F951384C8CA814A071DC0C47D91AAB /* Poly-inl.h in Headers */ = {isa = PBXBuildFile; fileRef = 2F121865458A92DD5EF3BE0A051B555A /* Poly-inl.h */; settings = {ATTRIBUTES = (Project, ); }; }; + B60122780C344AD502D720DC570F4540 /* FIRBundleUtil.h in Headers */ = {isa = PBXBuildFile; fileRef = 2238BC159920F94A6ACD6DD5328A6288 /* FIRBundleUtil.h */; settings = {ATTRIBUTES = (Project, ); }; }; + B603DF66DBFBC6E7344BACA9F78D57CC /* FunctionScheduler.h in Headers */ = {isa = PBXBuildFile; fileRef = 19687C02E09933133EB049BFDBB8BD5D /* FunctionScheduler.h */; settings = {ATTRIBUTES = (Project, ); }; }; + B6196655F52E19CC5BE9A898ED7C834C /* REAOperatorNode.m in Sources */ = {isa = PBXBuildFile; fileRef = D06029A9B76A37D836A4F0443C29C50F /* REAOperatorNode.m */; }; + B6232A67D508D040AF0FD7D42E67E5A4 /* RNFBCrashlyticsInitProvider.m in Sources */ = {isa = PBXBuildFile; fileRef = 9613FB321CC5D1D35DAAC54E326B5748 /* RNFBCrashlyticsInitProvider.m */; }; + B6437DFB1A6DAD7504503F79865CDA98 /* GULKeychainUtils.m in Sources */ = {isa = PBXBuildFile; fileRef = 814A043B170DFEADAE30BC8F4B7E8737 /* GULKeychainUtils.m */; }; + B6534813237F86480BFE498E9C27EF20 /* es.lproj in Resources */ = {isa = PBXBuildFile; fileRef = 6F595EBAE6B22DD20D6125CF27FD7286 /* es.lproj */; }; + B657A9964D2D5F315626C8F831A4D480 /* FIRCLSDwarfUnwind.c in Sources */ = {isa = PBXBuildFile; fileRef = B61146E3EE6273B1702590326BB87205 /* FIRCLSDwarfUnwind.c */; }; + B66B4CA59EA3AFC856EE3CD84070F2F4 /* Indestructible.h in Headers */ = {isa = PBXBuildFile; fileRef = C6A9B7C171935C751C2A5DF89DA9F388 /* Indestructible.h */; settings = {ATTRIBUTES = (Project, ); }; }; + B67D1583A86230769C2E0B262E2453C5 /* SanitizeThread.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 4D7A61F51B5A3C006A8F8AA3FAB893CA /* SanitizeThread.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -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\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors"; }; }; + B6874DBCD54097DDCC52F3586A479753 /* RCTSliderManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 8C71FE6A0088AE82056650C872DB670B /* RCTSliderManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; + B69964744F1853C554C9CF308BE6BA8E /* EXVideoThumbnailsModule.h in Headers */ = {isa = PBXBuildFile; fileRef = 2AD517D6606D53C0D497F79527303D0F /* EXVideoThumbnailsModule.h */; settings = {ATTRIBUTES = (Project, ); }; }; + B6A03A322869BE33F44C380526595A5B /* MMKV_OSX.h in Headers */ = {isa = PBXBuildFile; fileRef = 70FD3A6BB23839DC023B390063BCD00F /* MMKV_OSX.h */; settings = {ATTRIBUTES = (Project, ); }; }; + B6AC4AFFC191BE0174DE35A9835B2800 /* FlipperStateUpdateListener.h in Headers */ = {isa = PBXBuildFile; fileRef = DDD71BA9D7956144F78A2BAF9E612B4D /* FlipperStateUpdateListener.h */; settings = {ATTRIBUTES = (Project, ); }; }; + B6BBC0CF55E00005CFF88D8F928979AC /* SocketFileDescriptorMap.h in Headers */ = {isa = PBXBuildFile; fileRef = A4316714ED82B007B05A438ADAB8F83C /* SocketFileDescriptorMap.h */; settings = {ATTRIBUTES = (Project, ); }; }; + B6E6950D47A4A060C33E601A0AA0066C /* minheap-internal.h in Headers */ = {isa = PBXBuildFile; fileRef = 73ACE9620549EEC51264D536F3D9C5E8 /* minheap-internal.h */; settings = {ATTRIBUTES = (Project, ); }; }; + B6E9E9BD6F41FCA59071B59A8198EAFF /* Malloc.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 18778C863C7A06733D8CBC31F03817AC /* Malloc.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -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\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors"; }; }; + B6FA100D8EC00564E2490BE86090952F /* RCTImageLoaderWithAttributionProtocol.h in Headers */ = {isa = PBXBuildFile; fileRef = 20A3891F857FD3CFE9CB38F9E9D80FC5 /* RCTImageLoaderWithAttributionProtocol.h */; settings = {ATTRIBUTES = (Project, ); }; }; + B70A8D37322FCF831E37757C19757E6A /* cct.nanopb.c in Sources */ = {isa = PBXBuildFile; fileRef = BA188DBCECDDE254F17CA79FED920D28 /* cct.nanopb.c */; }; + B718CDA5CB3CA0366814E96013776D7F /* thread_utils.c in Sources */ = {isa = PBXBuildFile; fileRef = 15EE2E2D41B11019A15088584522C493 /* thread_utils.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; + B71EBDFBD7CFD95788F8C06C058B2BCF /* Malloc.h in Headers */ = {isa = PBXBuildFile; fileRef = 3E7ED806D1A921852187C6C6A48137D0 /* Malloc.h */; settings = {ATTRIBUTES = (Project, ); }; }; + B71F61D27BBE4CE6D629DC18A95DB476 /* SKObjectHash.h in Headers */ = {isa = PBXBuildFile; fileRef = 029978C98425860CD0184B7D179E1E26 /* SKObjectHash.h */; settings = {ATTRIBUTES = (Project, ); }; }; + B73FCFBDEB19859BABA6E3DDC65CAF46 /* histogram_enc.c in Sources */ = {isa = PBXBuildFile; fileRef = 2337B72AF2638C0D2768E6E13DE7017D /* histogram_enc.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; + B7486326FB175AC9B7763E9D2571466A /* GULNetworkConstants.m in Sources */ = {isa = PBXBuildFile; fileRef = 6BB0D3164DF6D26FBC19375EEC896078 /* GULNetworkConstants.m */; }; + B75F28FEB4C8E08B0ABF50EFC7D07891 /* RNFlingHandler.m in Sources */ = {isa = PBXBuildFile; fileRef = 90F540860647F95D4E309A4370604FA3 /* RNFlingHandler.m */; }; + B777045A0B6188B81FEBFA6615EEC91F /* react-native-notifications-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 652D9F3D20EC26A36C330B1C312F4DC3 /* react-native-notifications-dummy.m */; }; + B7831DFDF0E2C0DA952997F81925A535 /* Try.h in Headers */ = {isa = PBXBuildFile; fileRef = 68784CD7045FB69555E6B7B2F888FD4D /* Try.h */; settings = {ATTRIBUTES = (Project, ); }; }; + B78EB638E31B896CCFA38A9765572393 /* BugsnagAppWithState.h in Headers */ = {isa = PBXBuildFile; fileRef = 93F7F55C9FEEF65950585E15EB8E2360 /* BugsnagAppWithState.h */; settings = {ATTRIBUTES = (Project, ); }; }; + B7E030772A882A23F4B64727515975D9 /* FIRInstallationsErrors.h in Headers */ = {isa = PBXBuildFile; fileRef = FA2A16557EF2B0E6EC764CECF527E094 /* FIRInstallationsErrors.h */; settings = {ATTRIBUTES = (Project, ); }; }; + B819D3495730044EB09D13CF1B014A9B /* RCTExceptionsManager.h in Headers */ = {isa = PBXBuildFile; fileRef = CF321EFBE81AB8036DEEB087ECEBB0D5 /* RCTExceptionsManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; + B82A5863991B785B694515CC3D6B4425 /* Replaceable.h in Headers */ = {isa = PBXBuildFile; fileRef = 83A335C4538E99CD1C2384D1277EF98A /* Replaceable.h */; settings = {ATTRIBUTES = (Project, ); }; }; + B85B4DA7F7F6FE109B8423F1D5A3E0EB /* SingletonThreadLocal.h in Headers */ = {isa = PBXBuildFile; fileRef = A05E072DA13B6584CC62221F217075F6 /* SingletonThreadLocal.h */; settings = {ATTRIBUTES = (Project, ); }; }; + B867AA513B98918F442EA44A21F95EDE /* UIView+Private.h in Headers */ = {isa = PBXBuildFile; fileRef = 56F772CAE7ABA0F1339CD929B661A10E /* UIView+Private.h */; settings = {ATTRIBUTES = (Project, ); }; }; + B875EABBD116B4987FD2958D90290146 /* BugsnagStacktrace.m in Sources */ = {isa = PBXBuildFile; fileRef = 823C0A80AE747CE9483F241D060396AA /* BugsnagStacktrace.m */; }; + B876FD3A31DA2AFDFBB6D59ECEB23196 /* F14IntrinsicsAvailability.h in Headers */ = {isa = PBXBuildFile; fileRef = A5235993A2CC8CCA3E412EDEE60755AF /* F14IntrinsicsAvailability.h */; settings = {ATTRIBUTES = (Project, ); }; }; + B893A1A5E35F431E601D05B9DCF5D935 /* RNGestureHandlerModule.m in Sources */ = {isa = PBXBuildFile; fileRef = D26C1318C6930A4F53CE24F7FB16A3F5 /* RNGestureHandlerModule.m */; }; + B89AEFF00B02775F062C50204B8296EB /* PackedSyncPtr.h in Headers */ = {isa = PBXBuildFile; fileRef = 7B29016295CBD32A39B5FE060D4C5D84 /* PackedSyncPtr.h */; settings = {ATTRIBUTES = (Project, ); }; }; + B8A3F0D0897C1B12336DE78C010ED989 /* RCTSafeAreaViewLocalData.m in Sources */ = {isa = PBXBuildFile; fileRef = 2C4AEAFC32DB9FC914DF2A9F1B94097F /* RCTSafeAreaViewLocalData.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + B8B342ECE3D12B2E1C98003F807A6209 /* OpenSSLLockTypes.h in Headers */ = {isa = PBXBuildFile; fileRef = 6E5C3742D50D6011C12F48A3B842E585 /* OpenSSLLockTypes.h */; settings = {ATTRIBUTES = (Project, ); }; }; + B922ACBEC573738CBA773E6F06CB7CED /* listener.c in Sources */ = {isa = PBXBuildFile; fileRef = 2B97D2F1039F7850D30968EFBC5D51E1 /* listener.c */; }; + B92A528D31F8379369FBC2F2D245E08D /* RCTImageView.h in Headers */ = {isa = PBXBuildFile; fileRef = D845824BFFC5155C9C129FCC79DA6890 /* RCTImageView.h */; settings = {ATTRIBUTES = (Project, ); }; }; + B933B06C04ECC556E0AA821420239CD1 /* utils.h in Headers */ = {isa = PBXBuildFile; fileRef = 649CA10295792636D47B120956DFE8AA /* utils.h */; settings = {ATTRIBUTES = (Project, ); }; }; + B9409064B7867CFC77F7F295D613B68E /* signalhandler.cc in Sources */ = {isa = PBXBuildFile; fileRef = 96A41279F3E2C276096CCD680E045ABB /* signalhandler.cc */; settings = {COMPILER_FLAGS = "-Wno-shorten-64-to-32"; }; }; + B97262F67EBB48AB6DD08AEF39CDF101 /* REACondNode.h in Headers */ = {isa = PBXBuildFile; fileRef = 2A74A5D28B9BF69BCF5AD1C0EBEC92B7 /* REACondNode.h */; settings = {ATTRIBUTES = (Project, ); }; }; + B98B470DF271039376B24110AE97275C /* FingerprintPolynomial.h in Headers */ = {isa = PBXBuildFile; fileRef = 88AAEC9F99131932B7EC1EAD8F0B0DC0 /* FingerprintPolynomial.h */; settings = {ATTRIBUTES = (Project, ); }; }; + B992C3CE7E2F2F841B434224A5A7B2A2 /* TimekeeperScheduledExecutor.h in Headers */ = {isa = PBXBuildFile; fileRef = 09D6EFDB171D78BA44DC89773C4C4CAF /* TimekeeperScheduledExecutor.h */; settings = {ATTRIBUTES = (Project, ); }; }; + B99EE43F1704809ABC37E838E9E7ED3A /* AtomicHashUtils.h in Headers */ = {isa = PBXBuildFile; fileRef = D0193B9109E9DE832E6E71E8C07C0270 /* AtomicHashUtils.h */; settings = {ATTRIBUTES = (Project, ); }; }; + B9B0FDBFFBAB4D2CF2602A3403FD6528 /* RCTFollyConvert.mm in Sources */ = {isa = PBXBuildFile; fileRef = 31C40CB5C42515A2F3617A4D5DEFF3A9 /* RCTFollyConvert.mm */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + B9D4C1AA0D160D18DA7EF4EFE2465998 /* QBVideoIndicatorView.h in Headers */ = {isa = PBXBuildFile; fileRef = 8FA192F3B4714F084952D58E029E9090 /* QBVideoIndicatorView.h */; settings = {ATTRIBUTES = (Project, ); }; }; + B9F4749C940D6C6A23EC38670DA9336E /* BugsnagApiClient.h in Headers */ = {isa = PBXBuildFile; fileRef = 80F8C51152A88F8E310C2F937FC02D1E /* BugsnagApiClient.h */; settings = {ATTRIBUTES = (Project, ); }; }; + BA0248CF8F84C578253187A5EC0AAB76 /* GDTCORTransport.m in Sources */ = {isa = PBXBuildFile; fileRef = BC0FFFC1A8F1650CE3B1575F96822525 /* GDTCORTransport.m */; }; + BA1F859DA9C7D7E97692E817984C15A3 /* React-CoreModules-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 103A3F0B17D04B2D034AE67B05C39295 /* React-CoreModules-dummy.m */; }; + BA24F937C97C2C5E172E32CBBE8D955E /* picture_rescale_enc.c in Sources */ = {isa = PBXBuildFile; fileRef = 676E7C6AD60756738B6F290B81886C38 /* picture_rescale_enc.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; + BA2F26CF50000640E27F834339683F3F /* react-native-appearance-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 91B489E0393C8513D96598B65BF2901E /* react-native-appearance-dummy.m */; }; + BA3957D27A04C660B8D13FED3BCE8B3E /* ssim_sse2.c in Sources */ = {isa = PBXBuildFile; fileRef = 89D48EC8B67C6F816ED17B398EE23D95 /* ssim_sse2.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; + BA47A5A83DA522A7C75B9DFA6C52E9A4 /* evutil_time.c in Sources */ = {isa = PBXBuildFile; fileRef = 4E820CE5FADDA11D038AE919CAAA2D14 /* evutil_time.c */; }; + BA49308810F91F390792D0A70F386F14 /* FIRAppAssociationRegistration.h in Headers */ = {isa = PBXBuildFile; fileRef = 5FB3723779BB5E06CE77C061335CA197 /* FIRAppAssociationRegistration.h */; settings = {ATTRIBUTES = (Project, ); }; }; + BA6E186A4F779C291330E43A6E518F71 /* Future.cpp in Sources */ = {isa = PBXBuildFile; fileRef = FB2D97A9D8323E2DB472D501306E8578 /* 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"; }; }; + BA8D18096CD1A46BB82D8F529110E8CD /* BugsnagEventDeserializer.h in Headers */ = {isa = PBXBuildFile; fileRef = E1AB457B4F2773C7D747AD8F872C56AA /* BugsnagEventDeserializer.h */; settings = {ATTRIBUTES = (Project, ); }; }; + BA967EBBDA71F4D9C8BC453AF9FF4BA3 /* FIRCLSReportAdapter.m in Sources */ = {isa = PBXBuildFile; fileRef = 5CDE8127D0212CE4F7A8CEFCD5795C68 /* FIRCLSReportAdapter.m */; }; + BAA136554781CBBC00EB2AD138681AFA /* FlipperUtil.m in Sources */ = {isa = PBXBuildFile; fileRef = AB05E0B54F9CACFB493BA9F06065E344 /* FlipperUtil.m */; settings = {COMPILER_FLAGS = "-DDEBUG=1 -DFLIPPER_OSS=1 -DFB_SONARKIT_ENABLED=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -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"; }; }; + BAAED780974B80EC0F40FA7F16FB68B2 /* Bugsnag+Private.h in Headers */ = {isa = PBXBuildFile; fileRef = 94FD9A8EEE79572CB38F4A5EBC79751C /* Bugsnag+Private.h */; settings = {ATTRIBUTES = (Project, ); }; }; + BABAEE8FBC5B6327F7E124F8BCA4EAC6 /* jsi.cpp in Sources */ = {isa = PBXBuildFile; fileRef = D479C7BF3A8162D27ABCAB7AB12A6B80 /* jsi.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + BAC1922CF2456E36961F96993FD543C8 /* RCTJSIExecutorRuntimeInstaller.h in Headers */ = {isa = PBXBuildFile; fileRef = 42506B785CB3FAC1F0F284DDFD2EB379 /* RCTJSIExecutorRuntimeInstaller.h */; settings = {ATTRIBUTES = (Project, ); }; }; + BAC849F7D7DCDBE9A0E3F0EC732EBB9E /* BugsnagStackframe.h in Headers */ = {isa = PBXBuildFile; fileRef = F1F43DC8BBC3CC0811CB67A5C6DF1F90 /* BugsnagStackframe.h */; settings = {ATTRIBUTES = (Project, ); }; }; + BAD81FBA9C3EE94DAAFC467E2C4FE297 /* TcpDuplexConnection.h in Headers */ = {isa = PBXBuildFile; fileRef = 5ECBD247FFBC6EAE6ACBA9EC10EC5D54 /* TcpDuplexConnection.h */; settings = {ATTRIBUTES = (Project, ); }; }; + BAF7DBC68C422EC3C942F15AB21310C4 /* Hmac.h in Headers */ = {isa = PBXBuildFile; fileRef = FBAB66AAE91AB16AB82AFE713AD34805 /* Hmac.h */; settings = {ATTRIBUTES = (Project, ); }; }; + BB12D5876E8B3CED46B3C227A70229B6 /* TurboCxxModule.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 56B1D174D62DE183D38A29229CFA9001 /* TurboCxxModule.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + BB3D2B73FB11475D233EC0141BA67FD3 /* BSG_KSCrashSentry_Signal.c in Sources */ = {isa = PBXBuildFile; fileRef = 247584254CD6306F655C87C8E03F6A1A /* BSG_KSCrashSentry_Signal.c */; }; + BB55E270F826513289F5F604366C5007 /* F14Mask.h in Headers */ = {isa = PBXBuildFile; fileRef = 935698F1D84D39E6ADDFB31AC2463B31 /* F14Mask.h */; settings = {ATTRIBUTES = (Project, ); }; }; + BB6AF9025229F9C135DB0F891B83DB60 /* RCTTextAttributes.m in Sources */ = {isa = PBXBuildFile; fileRef = AF90DE3148D112B1E87789F6734CB18D /* RCTTextAttributes.m */; }; + BB6B43A4724A9D8D65DEA277F2499EFF /* Hardware.h in Headers */ = {isa = PBXBuildFile; fileRef = CB3E46D1ACB9CD54E60CB3F44E6AD260 /* Hardware.h */; settings = {ATTRIBUTES = (Project, ); }; }; + BB93BE52D233A68865324D8945AA9D12 /* FBLPromiseError.h in Headers */ = {isa = PBXBuildFile; fileRef = BF8DDAB588A8C634390A3295248FF6AF /* FBLPromiseError.h */; settings = {ATTRIBUTES = (Project, ); }; }; + BBAD67E32BECDCD7F5E0D56A64ECFD72 /* BSG_KSString.h in Headers */ = {isa = PBXBuildFile; fileRef = 92F4850079F06FDE4229F1A59BD9AF55 /* BSG_KSString.h */; settings = {ATTRIBUTES = (Project, ); }; }; + BBCA45D0BC4E0B116345A1B6E4EDA811 /* RCTStatusBarManager.mm in Sources */ = {isa = PBXBuildFile; fileRef = 5C278DB4AB641EB1453E5E4C89D6C1E8 /* 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"; }; }; + BBDEBF3A01D956071B6114BB2AEEDBA6 /* Optional.h in Headers */ = {isa = PBXBuildFile; fileRef = 6E4AD2BF04B829C4C16497F35A537B55 /* Optional.h */; settings = {ATTRIBUTES = (Project, ); }; }; + BBE448534EBD0BBB01FDC75BDF8FF0F5 /* RCTTextTransform.h in Headers */ = {isa = PBXBuildFile; fileRef = 7D5C34423FCB2323B104CA61F72766FB /* RCTTextTransform.h */; settings = {ATTRIBUTES = (Project, ); }; }; + BBF12E0628081E0A6B307FA2D6AF6BC3 /* BugsnagPlugin.h in Headers */ = {isa = PBXBuildFile; fileRef = 678BC240B1E13FB2EE2A5FD4E1644B5E /* BugsnagPlugin.h */; settings = {ATTRIBUTES = (Project, ); }; }; + BC07EA57E89E8667F520E5CE97DAFC30 /* FBLPromise+Recover.h in Headers */ = {isa = PBXBuildFile; fileRef = 06EF85DD840F7872D266867149DA3AA7 /* FBLPromise+Recover.h */; settings = {ATTRIBUTES = (Project, ); }; }; + BC1ADA4083FC3463E1592442D3AAD071 /* BSG_KSDynamicLinker.h in Headers */ = {isa = PBXBuildFile; fileRef = 0E04BA4CCD1FFC1F6C42531744CC9EDE /* BSG_KSDynamicLinker.h */; settings = {ATTRIBUTES = (Project, ); }; }; + BC2E89F8D82C209DF700599CBB398BC2 /* RCTView+SafeAreaCompat.h in Headers */ = {isa = PBXBuildFile; fileRef = 9AD983C02E167C26EDBB3F01F2A808B4 /* RCTView+SafeAreaCompat.h */; settings = {ATTRIBUTES = (Project, ); }; }; + BC4409059B1995A1B6CA02D1D1E7459B /* ConcurrentSkipList-inl.h in Headers */ = {isa = PBXBuildFile; fileRef = E51C62E0BA9971F4FEC91528EB53CEE5 /* ConcurrentSkipList-inl.h */; settings = {ATTRIBUTES = (Project, ); }; }; + BC7E55A776CDFCD7D54EF579B10B8236 /* ReactNativeShareExtension.h in Headers */ = {isa = PBXBuildFile; fileRef = 31AC08E94AF9F12D2554ACB6A307FA1D /* ReactNativeShareExtension.h */; settings = {ATTRIBUTES = (Project, ); }; }; + BC8BF369D5647696EA998318A6122CCE /* Syslog.h in Headers */ = {isa = PBXBuildFile; fileRef = C50DD7A9722E94B5BC21245A22CDAFF2 /* Syslog.h */; settings = {ATTRIBUTES = (Project, ); }; }; + BC94EBA1F89D9B4C85C6572249C6BFB3 /* TimeoutManager.cpp in Sources */ = {isa = PBXBuildFile; fileRef = F9A5A788558F16AB89DABAAD5E24AB48 /* TimeoutManager.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -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\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors"; }; }; + BC9B790862ECC0BDB9CB6AC6620184EE /* SysTime.h in Headers */ = {isa = PBXBuildFile; fileRef = 63D1D1E2E39DBE30100714EBF3ACDFC6 /* SysTime.h */; settings = {ATTRIBUTES = (Project, ); }; }; + BCB94D920D9304C0F6C6B4A97211F740 /* RCTRsa.m in Sources */ = {isa = PBXBuildFile; fileRef = 1965B5BCAD6EC88C02A402ECF22794FE /* RCTRsa.m */; }; + BCC1BBE162E3C4498352B192A8F7F093 /* ARTRenderable.m in Sources */ = {isa = PBXBuildFile; fileRef = 18A04233F2426F80A4B0B02A4A7BDA08 /* ARTRenderable.m */; }; + BCC5346AFFE3482C8A48D9F13750B2FE /* NSBezierPath+SDRoundedCorners.m in Sources */ = {isa = PBXBuildFile; fileRef = ADA1F5A3936520BE6DACDE7600DF5238 /* NSBezierPath+SDRoundedCorners.m */; }; + BD0E9EC6919B60EA82569E21D4BFEF15 /* ProxyLockable-inl.h in Headers */ = {isa = PBXBuildFile; fileRef = AF6354181882A3184F2A8406B0A7F9CD /* ProxyLockable-inl.h */; settings = {ATTRIBUTES = (Project, ); }; }; + BD186137B210BDEE0479BF8275367291 /* RNNotifications.h in Headers */ = {isa = PBXBuildFile; fileRef = 24DCDAF0CA7922D3EF2B0A2BE9A5B90A /* RNNotifications.h */; settings = {ATTRIBUTES = (Project, ); }; }; + BD5DDA97AA9E4938F96BC384018A764B /* RNPanHandler.h in Headers */ = {isa = PBXBuildFile; fileRef = 6A0EA24F08EFCF70EB4854F1F5F186DF /* RNPanHandler.h */; settings = {ATTRIBUTES = (Project, ); }; }; + BD769069BA660F2FC8ACBF39D4460092 /* FIRInstallationsIIDTokenStore.h in Headers */ = {isa = PBXBuildFile; fileRef = E9E6EB091324946C1F909EB08DBC0921 /* FIRInstallationsIIDTokenStore.h */; settings = {ATTRIBUTES = (Project, ); }; }; + BD7B95C25D22D48DECE19CBEBCE20ABB /* RCTSafeAreaViewLocalData.h in Headers */ = {isa = PBXBuildFile; fileRef = 59A76FD85FEC15007F5A75BB830709B4 /* RCTSafeAreaViewLocalData.h */; settings = {ATTRIBUTES = (Project, ); }; }; + BD8E1BA4FCD89B3A3900D6585ADAB75D /* LockFreeRingBuffer.h in Headers */ = {isa = PBXBuildFile; fileRef = D85A369EFBA4BBD7BB63FCC9783D4A51 /* LockFreeRingBuffer.h */; settings = {ATTRIBUTES = (Project, ); }; }; + BD90752A87DF92935D5C8D72C1116D37 /* Future-pre.h in Headers */ = {isa = PBXBuildFile; fileRef = FDFCD3E6441FC713AC2E8D93658F0058 /* Future-pre.h */; settings = {ATTRIBUTES = (Project, ); }; }; + BD9C4D16916248E1BE88AC857B22F0BB /* bignum.cc in Sources */ = {isa = PBXBuildFile; fileRef = 57A406CB01F26683389D18C435BC8458 /* bignum.cc */; settings = {COMPILER_FLAGS = "-Wno-unreachable-code"; }; }; + BDB5AFFD188675E46B0BF09B4A7135E3 /* RNFBAnalytics-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = A8E4E72172851DD14FD9BC19BDA9DBC4 /* RNFBAnalytics-dummy.m */; }; + BDB85D62C4818367105AE4E7590BFD12 /* RelaxedConcurrentPriorityQueue.h in Headers */ = {isa = PBXBuildFile; fileRef = D36008AB5F7A1E20D537906402F61D07 /* RelaxedConcurrentPriorityQueue.h */; settings = {ATTRIBUTES = (Project, ); }; }; + BDDC39292702FA9E2911E19E05B40B1F /* SocketAddress.h in Headers */ = {isa = PBXBuildFile; fileRef = 0816E0856823345233F1C84BC225826A /* SocketAddress.h */; settings = {ATTRIBUTES = (Project, ); }; }; + BDDD5EA786359DCB4A059ED318FAEE37 /* GDTCORUploadCoordinator.h in Headers */ = {isa = PBXBuildFile; fileRef = F1119CB26F58CECB80B0BDE92CDE187B /* GDTCORUploadCoordinator.h */; settings = {ATTRIBUTES = (Project, ); }; }; + BDE7E894EDB81C067604D8C2B3F4E86A /* RCTModalHostViewController.h in Headers */ = {isa = PBXBuildFile; fileRef = 02A9508EAC0F10D37E8D431C7044EC4C /* RCTModalHostViewController.h */; settings = {ATTRIBUTES = (Project, ); }; }; + BE195FB7C60F2FD0131125C87963DBA7 /* RCTPropsAnimatedNode.m in Sources */ = {isa = PBXBuildFile; fileRef = B5A046382DEDFB3065B0D2F9A8AD54FA /* 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"; }; }; + BE19AE06EF5878BAB8A999F87B1085F6 /* ARTSurfaceView.h in Headers */ = {isa = PBXBuildFile; fileRef = 39ECD4C57ED03D5E00EC9938C3BA9138 /* ARTSurfaceView.h */; settings = {ATTRIBUTES = (Project, ); }; }; + BE5B4A09FF4A54966506E80C92D78972 /* RCTImageURLLoaderWithAttribution.mm in Sources */ = {isa = PBXBuildFile; fileRef = 1B435EF2017E1F20AD5CF118245FBEB4 /* 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"; }; }; + BE6D9D39189D07C4D778D76C8C6C8ADD /* BSG_KSMach_Arm.c in Sources */ = {isa = PBXBuildFile; fileRef = B012542C77A21052EADE0688F2953250 /* BSG_KSMach_Arm.c */; }; + BE9111930A53F9427B75DAEC76358FAA /* RCTI18nManager.mm in Sources */ = {isa = PBXBuildFile; fileRef = 4DF7D8E535C31E6003E459C320DD2DC9 /* 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"; }; }; + BE9151386B4667D9C62341DA5B973C84 /* RNFetchBlobProgress.m in Sources */ = {isa = PBXBuildFile; fileRef = C15BA64FED83321E6DDF17E582661D67 /* RNFetchBlobProgress.m */; }; + BEA051E333B51EA6833E9916AC3ACEDB /* BSG_KSCrashReport.c in Sources */ = {isa = PBXBuildFile; fileRef = 2FAD11FB3639D7AB96629AEEAFBF8316 /* BSG_KSCrashReport.c */; }; + BEA1249718187ED59FF54BFA284D4713 /* AsyncTimeout.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 3B4A7E734B466E8E695F9FD689294A03 /* AsyncTimeout.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -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\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors"; }; }; + BEB4F843BE9E5CEDA49A441E725BC52A /* RCTImageCache.h in Headers */ = {isa = PBXBuildFile; fileRef = D4909276A1CF7396B4D98AC5284DBF95 /* RCTImageCache.h */; settings = {ATTRIBUTES = (Project, ); }; }; + BEC8B8C8F9282C3EF2B5699365285652 /* FlipperConnection.h in Headers */ = {isa = PBXBuildFile; fileRef = 5F4F6CF34D79B494A6AA193FEDE68160 /* FlipperConnection.h */; settings = {ATTRIBUTES = (Project, ); }; }; + BEE96C5ECB32857DC3D52206F3209ADC /* HazptrUtils.h in Headers */ = {isa = PBXBuildFile; fileRef = 6A7D0400B2A31BC8268318043C7C83FA /* HazptrUtils.h */; settings = {ATTRIBUTES = (Project, ); }; }; + BEF36AF189692C55712C910F23773B20 /* BugsnagEndpointConfiguration.h in Headers */ = {isa = PBXBuildFile; fileRef = 26E0FC50FEB0CD9CE7BC07494EA95166 /* BugsnagEndpointConfiguration.h */; settings = {ATTRIBUTES = (Project, ); }; }; + BF0EBB26452A49032CCB6FD8A4C6B6D7 /* GULAppDelegateSwizzler.h in Headers */ = {isa = PBXBuildFile; fileRef = 2C53BA3A14F3E261645320BF646094F2 /* GULAppDelegateSwizzler.h */; settings = {ATTRIBUTES = (Project, ); }; }; + BF26F151A9E8EBEE05FB00A97AADD84B /* RCTFileReaderModule.h in Headers */ = {isa = PBXBuildFile; fileRef = C951C9A15CDA8B3C95F31CE99FC1BCA8 /* RCTFileReaderModule.h */; settings = {ATTRIBUTES = (Project, ); }; }; + BF36C47B969919C688B90BD62088EA24 /* LNAnimatorTemp.m in Sources */ = {isa = PBXBuildFile; fileRef = 53CA3E313CC245F884E66A348CD1939E /* LNAnimatorTemp.m */; }; + BF58146EBF252037C42694E79E585FA0 /* InterProcessLock_Win32.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 73B545281744F3E5F2097C57C9DDAB32 /* InterProcessLock_Win32.cpp */; settings = {COMPILER_FLAGS = "-x objective-c++ -fno-objc-arc"; }; }; + BF61D29D6CDDE489BFC64739FF537273 /* RCTInputAccessoryShadowView.m in Sources */ = {isa = PBXBuildFile; fileRef = D90CB9417D8F1123A5353CCBF6692AC3 /* RCTInputAccessoryShadowView.m */; }; + BF63CFAE0D5691438379A1A74CBBCD95 /* Pods-defaults-Rocket.Chat-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 1755BCB66039C137A85759A7F94BCBA6 /* Pods-defaults-Rocket.Chat-dummy.m */; }; + BF8A25DB40A76447252CE7E5815FF0BB /* RuntimeAdapter.h in Headers */ = {isa = PBXBuildFile; fileRef = 804588799ADB2C0BB075B4E7DA326F47 /* RuntimeAdapter.h */; settings = {ATTRIBUTES = (Project, ); }; }; + BFAC2A31967D18362DE39231B68C71C0 /* SafeAreaManager.m in Sources */ = {isa = PBXBuildFile; fileRef = 854AF6E897C7148E0D314B3C42A8586E /* SafeAreaManager.m */; }; + BFB8ECB8B32DC10F11EAD6885319AAB0 /* MethodCall.cpp in Sources */ = {isa = PBXBuildFile; fileRef = C1531CA68850AABDD9BAF7E5A0FD549B /* MethodCall.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + BFD36E015E73EA2A28F103C721230E9A /* strtod.h in Headers */ = {isa = PBXBuildFile; fileRef = 2956802286B2645BEF85DBC2C891166A /* strtod.h */; settings = {ATTRIBUTES = (Project, ); }; }; + BFD6A4D0664A4297E0BCD9CEFB0DA21B /* RCTDisplayWeakRefreshable.h in Headers */ = {isa = PBXBuildFile; fileRef = 952DF28E4BE7FA02F536556154EB795B /* RCTDisplayWeakRefreshable.h */; settings = {ATTRIBUTES = (Project, ); }; }; + BFE5D33FA497C1078345F79EA17476E5 /* REAAllTransitions.m in Sources */ = {isa = PBXBuildFile; fileRef = 8B0AB493980953FD372BB8AE51D7E316 /* REAAllTransitions.m */; }; + BFE9E69EB5B3847D9F418170FCC02F7B /* FIRConfiguration.h in Headers */ = {isa = PBXBuildFile; fileRef = 5DC0C5CA36BAC64797D4DBFD6D4F5AF7 /* FIRConfiguration.h */; settings = {ATTRIBUTES = (Project, ); }; }; + BFEDE59416E380750A27049D2B666B3B /* RNCSafeAreaViewMode.m in Sources */ = {isa = PBXBuildFile; fileRef = 56C371BA2A30A5A542C0D279D7C8FFDD /* RNCSafeAreaViewMode.m */; }; + C0033D87799C1958892A05802CD2B8A0 /* GLog.h in Headers */ = {isa = PBXBuildFile; fileRef = 48B530767956A8A0A2ADE12FA08286EC /* GLog.h */; settings = {ATTRIBUTES = (Project, ); }; }; + C00B054C374228AFE2E569F719B054D6 /* RCTRefreshControlManager.m in Sources */ = {isa = PBXBuildFile; fileRef = 6398CA7769F81D7F92FC70CE94CB859E /* RCTRefreshControlManager.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + C015FB34DEE21FD651E8EC73BDD30A1C /* RCTSettingsManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 25566065A50218CA8988276834F46837 /* RCTSettingsManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; + C03EB8FEF65C3E3493F5EC55CD60EEE3 /* QueuedImmediateExecutor.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 5221316D2DBD7CAD19A71B180610681E /* QueuedImmediateExecutor.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -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\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors"; }; }; + C03FDB5BD0BA11C8D88F8A1E82EE2733 /* SafeAreaSpacerViewManager.m in Sources */ = {isa = PBXBuildFile; fileRef = 8A041C096BF8FF454FEEBBDE428AAC96 /* SafeAreaSpacerViewManager.m */; }; + C050788903C4A652CB72B6AA56D4ADC6 /* RCTBundleURLProvider.mm in Sources */ = {isa = PBXBuildFile; fileRef = A58C153E6AC53F4E9FDEAB3D815ABA1B /* RCTBundleURLProvider.mm */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + C05DC25A14A3E4C1F2C1B9DC2D8A5667 /* RAMBundleRegistry.h in Headers */ = {isa = PBXBuildFile; fileRef = BECD62A210E871515F60DFD14F6A902F /* RAMBundleRegistry.h */; settings = {ATTRIBUTES = (Project, ); }; }; + C05E33248166F8BDA2F8CAF947FE8795 /* EmitterFlowable.h in Headers */ = {isa = PBXBuildFile; fileRef = 3F431064D61644D8793711FFEB7CFBA3 /* EmitterFlowable.h */; settings = {ATTRIBUTES = (Project, ); }; }; + C06FA6CCCAB0FA3C7E2E692E2EBF097D /* bufferevent-internal.h in Headers */ = {isa = PBXBuildFile; fileRef = 9B4D7F9F40525593EE77ED8F35556278 /* bufferevent-internal.h */; settings = {ATTRIBUTES = (Project, ); }; }; + C07535B18DE53B06931208E8BBC63F48 /* ThreadCachedLists.h in Headers */ = {isa = PBXBuildFile; fileRef = C6A43BB36383DEBCBE5AAC4170CA5153 /* ThreadCachedLists.h */; settings = {ATTRIBUTES = (Project, ); }; }; + C085F4A89DD1B12F07E9A72DD99F9358 /* Flipper-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 3FCF1157FFC387BF27ED8C7EB5524A43 /* Flipper-dummy.m */; }; + C08F8BD457CE8D7EA3488BCFE7B34EB8 /* BugsnagSystemState.h in Headers */ = {isa = PBXBuildFile; fileRef = 2D9950EA369675738C58A163E63F7D9F /* BugsnagSystemState.h */; settings = {ATTRIBUTES = (Project, ); }; }; + C0961A03417DA9251004F8C8733A7405 /* FIRInstallationsSingleOperationPromiseCache.h in Headers */ = {isa = PBXBuildFile; fileRef = C41E86BF368A139B46170621488AE0D6 /* FIRInstallationsSingleOperationPromiseCache.h */; settings = {ATTRIBUTES = (Project, ); }; }; + C09D2A795632FF3661D7A2A9F4B9D33E /* MMKVStorage.h in Headers */ = {isa = PBXBuildFile; fileRef = A88C28AE44EA01E6C1E91DDE5C823B4A /* MMKVStorage.h */; settings = {ATTRIBUTES = (Project, ); }; }; + C0AD589F3CDF52D01706D4367333502B /* FIRInstallationsStore.h in Headers */ = {isa = PBXBuildFile; fileRef = 2596698ACF231F8C3C03B19A9CA4DB9D /* FIRInstallationsStore.h */; settings = {ATTRIBUTES = (Project, ); }; }; + C0B51FFECB7ABEA20345CC14B0D4B262 /* picture_psnr_enc.c in Sources */ = {isa = PBXBuildFile; fileRef = 750AD76246BAAEA02CDFD35E0BE915A1 /* picture_psnr_enc.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; + C0B7687CD56CE59E0C08DF6CF3168763 /* RNFBPreferences.h in Headers */ = {isa = PBXBuildFile; fileRef = 60C1D01E4D0506C274000D49DB12BC39 /* RNFBPreferences.h */; settings = {ATTRIBUTES = (Project, ); }; }; + C0B8C5BD6789054006E1A25C4473561C /* REASetNode.m in Sources */ = {isa = PBXBuildFile; fileRef = 365F6248EFAB0F26FD9478F18205D2FA /* REASetNode.m */; }; + C0C0EF0DF48C442C5D3E0125555F3DB9 /* BaselinesAsyncSocket.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 3AF0E7ABA076B0C0E9450C8BE79D0876 /* BaselinesAsyncSocket.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -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 -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors"; }; }; + C0C189D972DCCFBE746A1C449F9650ED /* FlipperCppBridgingResponder.mm in Sources */ = {isa = PBXBuildFile; fileRef = AE5F014858B40871264FFFCCBE7E2700 /* FlipperCppBridgingResponder.mm */; settings = {COMPILER_FLAGS = "-DDEBUG=1 -DFLIPPER_OSS=1 -DFB_SONARKIT_ENABLED=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -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"; }; }; + C0CC0C47C14D90F3E256118B49667003 /* AtomicUnorderedMap.h in Headers */ = {isa = PBXBuildFile; fileRef = FC01F4B39879A2480D4B6028DAE81BF3 /* AtomicUnorderedMap.h */; settings = {ATTRIBUTES = (Project, ); }; }; + C0D2922C911086AF1089CC98C78D6D5D /* TOCroppedImageAttributes.h in Headers */ = {isa = PBXBuildFile; fileRef = E391A38F3AB7DC9C5B3A3E00AA4A96AA /* TOCroppedImageAttributes.h */; settings = {ATTRIBUTES = (Project, ); }; }; + C0E1A02FF8E890098A01A8C1F749CF52 /* AtomicNotification-inl.h in Headers */ = {isa = PBXBuildFile; fileRef = ECBA40CD1101BF2E0730C1C46F1910C3 /* AtomicNotification-inl.h */; settings = {ATTRIBUTES = (Project, ); }; }; + C0E397FCEF4078EF9EC2F18951163778 /* UMErrorCodes.m in Sources */ = {isa = PBXBuildFile; fileRef = 58F2A4C1980EBED08ED1A3FEAF41B079 /* UMErrorCodes.m */; }; + C0E3CC7A9F14882901F4B9A348EB981C /* ConnectionSet.h in Headers */ = {isa = PBXBuildFile; fileRef = 60AD4EFF257DE21A37206860B2AF6B12 /* ConnectionSet.h */; settings = {ATTRIBUTES = (Project, ); }; }; + C0E57583C5B3E08D239FC4A64285577D /* EventFDWrapper.h in Headers */ = {isa = PBXBuildFile; fileRef = 38C183BA2BFB15963EB1545439905DC3 /* EventFDWrapper.h */; settings = {ATTRIBUTES = (Project, ); }; }; + C0EBF7D6EAE437580D3DFFECA6ABCA08 /* Random.h in Headers */ = {isa = PBXBuildFile; fileRef = 2ACA276C62910C484D48EE60F62D3348 /* Random.h */; settings = {ATTRIBUTES = (Project, ); }; }; + C1027D82735996A23DBD497DC2799FAA /* UMPermissionsInterface-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 4ACD615B00FA48CD196D1DE7D26E42B7 /* UMPermissionsInterface-dummy.m */; }; + C12DAE1A7C3D5D3C17F2B20BCC59A233 /* TimeoutManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 70200DDAF468D37008105917565D0236 /* TimeoutManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; + C12EBD27CEDA7EB28A42663A0C712F75 /* bignum-dtoa.h in Headers */ = {isa = PBXBuildFile; fileRef = F7951274C6D29B36FF679B413B1225AF /* bignum-dtoa.h */; settings = {ATTRIBUTES = (Project, ); }; }; + C139E5676D780BC0F34F78DA2DA2D0B8 /* SDWebImageTransition.h in Headers */ = {isa = PBXBuildFile; fileRef = 88A8CF9386ABA2C010DC8E6EFC5AA440 /* SDWebImageTransition.h */; settings = {ATTRIBUTES = (Project, ); }; }; + C14B18A7EC253AAD89F84D382C12E6FC /* RCTConvert+FFFastImage.h in Headers */ = {isa = PBXBuildFile; fileRef = 5FA2717B9A141E1C9710A9F104EA5302 /* RCTConvert+FFFastImage.h */; settings = {ATTRIBUTES = (Project, ); }; }; + C155CAB9C34847CEC21DCD018A3C42D3 /* SmallLocks.h in Headers */ = {isa = PBXBuildFile; fileRef = EC3C8F1E41FBE855E1C2FB179997DDCA /* SmallLocks.h */; settings = {ATTRIBUTES = (Project, ); }; }; + C15D918A7ED03F67FD9826E73CEF0FB8 /* GDTCORRegistrar.m in Sources */ = {isa = PBXBuildFile; fileRef = 3FC896C6C361F2515F4B433C9199128E /* GDTCORRegistrar.m */; }; + C162380E0B6F199E49027D86F2AA32F6 /* MemoryIdler.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 73B558BEFED5FBA5860D5BC5467ACB51 /* 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"; }; }; + C181330033E5941E7EBC1E7334CADFB9 /* FIRAppInternal.h in Headers */ = {isa = PBXBuildFile; fileRef = 9C5138D91DFF4E6499962787850986A7 /* FIRAppInternal.h */; settings = {ATTRIBUTES = (Project, ); }; }; + C1BE8CB912D009C1F46C370E0445F88A /* SKApplicationDescriptor.h in Headers */ = {isa = PBXBuildFile; fileRef = F5C022372C179DDA7ED73B390D6E7CAD /* SKApplicationDescriptor.h */; settings = {ATTRIBUTES = (Project, ); }; }; + C1FF19BFBF1DDB400B3EF74EE03EF88B /* PriorityLifoSemMPMCQueue.h in Headers */ = {isa = PBXBuildFile; fileRef = 69C4452A150A7ECF1CA79C8435FEA50D /* PriorityLifoSemMPMCQueue.h */; settings = {ATTRIBUTES = (Project, ); }; }; + C1FF792846A7564B520A4A0DEF4DE33E /* F14Table.cpp in Sources */ = {isa = PBXBuildFile; fileRef = F9F69C168B48BE3FC825F189D5FF08C8 /* F14Table.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -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\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors"; }; }; + C202B9AB7F9B4CEAFD1B1F2F2540DE8B /* ARTGroup.m in Sources */ = {isa = PBXBuildFile; fileRef = 2C292E6080435801A35C00F404D6C3BA /* ARTGroup.m */; }; + C234D3939874DC09772B283AD514A8B8 /* Cursor.h in Headers */ = {isa = PBXBuildFile; fileRef = FE71AB6ACE29182C54F48975A052D5FA /* Cursor.h */; settings = {ATTRIBUTES = (Project, ); }; }; + C23D167A0A0F684F1F9673E929D0EE8B /* FIRInstallationsErrorUtil.h in Headers */ = {isa = PBXBuildFile; fileRef = 4B213F84153CB8FA9FF51978376799A0 /* FIRInstallationsErrorUtil.h */; settings = {ATTRIBUTES = (Project, ); }; }; + C25BD3B0B908A21A015ED5632EF26214 /* FlipperConnection.h in Headers */ = {isa = PBXBuildFile; fileRef = 3BFEBF2FF76E4E913EDA71BD82F795D9 /* FlipperConnection.h */; settings = {ATTRIBUTES = (Project, ); }; }; + C270BC277D58BF2D66FA4D04CE876FFF /* vp8li_dec.h in Headers */ = {isa = PBXBuildFile; fileRef = 750EF2E681C1BF89B8DEFB50EE2FB86E /* vp8li_dec.h */; settings = {ATTRIBUTES = (Project, ); }; }; + C27403AB9C13D3CFEA18501CE4765ED7 /* raw_logging.h in Headers */ = {isa = PBXBuildFile; fileRef = 26009D759FCD4CFA5D0DD5B3481E4FFA /* raw_logging.h */; settings = {ATTRIBUTES = (Project, ); }; }; + C2AC1A7236CFBF795E8C242EE199DC3C /* RNFBUtilsModule.h in Headers */ = {isa = PBXBuildFile; fileRef = 94D0F71569ECB5CA48D1300C73C7A995 /* RNFBUtilsModule.h */; settings = {ATTRIBUTES = (Project, ); }; }; + C2C077E7D787244CD67831B1E8A856C7 /* TestSubscriber.h in Headers */ = {isa = PBXBuildFile; fileRef = AF95E83E2C5034A52CE17141CA50F426 /* TestSubscriber.h */; settings = {ATTRIBUTES = (Project, ); }; }; + C2C36B5C4B1CF3CF0D20C253172D81F1 /* Function.h in Headers */ = {isa = PBXBuildFile; fileRef = 8158D2C35FF0281815C8D42F25F433BD /* Function.h */; settings = {ATTRIBUTES = (Project, ); }; }; + C2D20DC8BA58BF43FC7911A0147CA2CC /* RCTAutoInsetsProtocol.h in Headers */ = {isa = PBXBuildFile; fileRef = C7AD3CCE0D3496A960C844190A522D81 /* RCTAutoInsetsProtocol.h */; settings = {ATTRIBUTES = (Project, ); }; }; + C2D7FBB633959656648917E888B7AB2A /* SysStat.h in Headers */ = {isa = PBXBuildFile; fileRef = 4B2D912BFEFDC08DFC53E423264FACE7 /* SysStat.h */; settings = {ATTRIBUTES = (Project, ); }; }; + C2E2CD12EDD184BBA75DE2FFF37AA643 /* FBLPromise+Async.m in Sources */ = {isa = PBXBuildFile; fileRef = D4E6B10B027589CC0D13904E5652C677 /* FBLPromise+Async.m */; }; + C2E71ADBCF5F634E1D1BC95202FA0CB9 /* RCTInputAccessoryViewContent.m in Sources */ = {isa = PBXBuildFile; fileRef = 08C5D7CBDAF06B458488938D1C779CFA /* RCTInputAccessoryViewContent.m */; }; + C304F61A79B0C90C6AA100145E2DD031 /* GULNetwork.m in Sources */ = {isa = PBXBuildFile; fileRef = 1702E5C4538682E4F7D67E56D30B45E9 /* GULNetwork.m */; }; + C3105FE985586C3F578404A98A25CD8C /* GDTCORPlatform.h in Headers */ = {isa = PBXBuildFile; fileRef = FB4609297D7EBEB33A1DEBB6B4C9DBC6 /* GDTCORPlatform.h */; settings = {ATTRIBUTES = (Project, ); }; }; + C31AB3DC995843A695AB4091224B3CA4 /* RCTRefreshControl.h in Headers */ = {isa = PBXBuildFile; fileRef = DC493A70EBDE33201AF4621EE5568DD5 /* RCTRefreshControl.h */; settings = {ATTRIBUTES = (Project, ); }; }; + C32C2D0AAAA70DD39C569CE01927CA2D /* FFFastImageSource.m in Sources */ = {isa = PBXBuildFile; fileRef = ABD968A3D7F1963B3AC919D1E4D5E89D /* FFFastImageSource.m */; }; + C32C7AE271A1E4C1A304C4613823EA8C /* FIRCLSFABAsyncOperation_Private.h in Headers */ = {isa = PBXBuildFile; fileRef = BC5A8EB8C175BB7177BC9EDFC785A348 /* FIRCLSFABAsyncOperation_Private.h */; settings = {ATTRIBUTES = (Project, ); }; }; + C33A08FC8744057F44B9D316716B4A52 /* RCTParserUtils.h in Headers */ = {isa = PBXBuildFile; fileRef = 97564B076C7DB08D2A2B8BA13FEB42A3 /* RCTParserUtils.h */; settings = {ATTRIBUTES = (Project, ); }; }; + C33D28D7B542343498B0BCC659B2483D /* RCTCxxBridgeDelegate.h in Headers */ = {isa = PBXBuildFile; fileRef = EBAD5878503D651E76AA75F6F59B5B01 /* RCTCxxBridgeDelegate.h */; settings = {ATTRIBUTES = (Project, ); }; }; + C33F6703A3E7A8851BD1428FC5F0FF09 /* CancellationToken-inl.h in Headers */ = {isa = PBXBuildFile; fileRef = 383A409A66564C64FE913D4CB97EE88B /* CancellationToken-inl.h */; settings = {ATTRIBUTES = (Project, ); }; }; + C346B099F2CA0366B622C1C587648F56 /* FlipperInitConfig.h in Headers */ = {isa = PBXBuildFile; fileRef = 92B98D79B80A11C241B2C25BEAB7C807 /* FlipperInitConfig.h */; settings = {ATTRIBUTES = (Project, ); }; }; + C3526B4559076B3A4B3E014D48676190 /* RNNotificationsStore.m in Sources */ = {isa = PBXBuildFile; fileRef = AADABC3AA0CD01B88E565AD19ED6D419 /* RNNotificationsStore.m */; }; + C352E931E9708460024B6A87B5A60EDA /* EXReactNativeUserNotificationCenterProxy.m in Sources */ = {isa = PBXBuildFile; fileRef = 0A848E516FF5E4906E2FE4906CF53101 /* EXReactNativeUserNotificationCenterProxy.m */; }; + C372D4E1FC99DB299BC1845AA9E8ED69 /* SDAnimatedImageView+WebCache.m in Sources */ = {isa = PBXBuildFile; fileRef = BBBED6693ECDF015B718A1B62DB4B205 /* SDAnimatedImageView+WebCache.m */; }; + C38269EE842FEDE201FB0A620BA19540 /* RSocket.h in Headers */ = {isa = PBXBuildFile; fileRef = ADE2B31E84EF1342BDD291F96C07BDD2 /* RSocket.h */; settings = {ATTRIBUTES = (Project, ); }; }; + C391D6D135F86F6C014A27F72E5BF051 /* BSG_KSLogger.m in Sources */ = {isa = PBXBuildFile; fileRef = 9929A30078F3C244D4ABD9E027C02733 /* BSG_KSLogger.m */; }; + C3A50E06483CF66B0A684158AA6DCE32 /* Assume.h in Headers */ = {isa = PBXBuildFile; fileRef = B483C3BBFE73AFD0FE97410E8CBCE17F /* Assume.h */; settings = {ATTRIBUTES = (Project, ); }; }; + C3AF72BC9CB9500B79F9E1EBD62A257B /* GDTCOREvent+GDTCCTSupport.m in Sources */ = {isa = PBXBuildFile; fileRef = F57E12BAB618666EA8CF634EB94E0821 /* GDTCOREvent+GDTCCTSupport.m */; }; + C3B1B8445224386A9185AE800813B272 /* ColdResumeHandler.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 64669BD8F6B902548104BF0EE4D90002 /* ColdResumeHandler.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -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 -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors"; }; }; + C3C58E9AD063A1C189162E4C7F514F20 /* FIRLibrary.h in Headers */ = {isa = PBXBuildFile; fileRef = F5BEE9DC30E2FFDE072729FD8E3A7FE7 /* FIRLibrary.h */; settings = {ATTRIBUTES = (Project, ); }; }; + C3D670D52D3914296B79EF5640A7879E /* raw_logging.cc in Sources */ = {isa = PBXBuildFile; fileRef = DD52D5D5C44C993D9F2BD1F3F405171A /* raw_logging.cc */; settings = {COMPILER_FLAGS = "-Wno-shorten-64-to-32"; }; }; + C3F657A57CEA1988E02478D8CC074495 /* RCTSwitch.m in Sources */ = {isa = PBXBuildFile; fileRef = A1708B410A9A99F818560047F6B83B10 /* RCTSwitch.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + C40443EE31E8F338484441F4F0AC1C00 /* fixed-dtoa.h in Headers */ = {isa = PBXBuildFile; fileRef = C85F04EE7E0E69179B29E901B9719E47 /* fixed-dtoa.h */; settings = {ATTRIBUTES = (Project, ); }; }; + C418B7058A29D268440457BDCC350CB8 /* ScheduledSubscription.h in Headers */ = {isa = PBXBuildFile; fileRef = F1423CCA2253A30759D525E1EABF2D1C /* ScheduledSubscription.h */; settings = {ATTRIBUTES = (Project, ); }; }; + C426D450DCFB313F9923C95D5A213908 /* RCTSurfaceView+Internal.h in Headers */ = {isa = PBXBuildFile; fileRef = 483F8E42C9BEC85E9A2A759A9A894DE3 /* RCTSurfaceView+Internal.h */; settings = {ATTRIBUTES = (Project, ); }; }; + C444092A4AC447323F860FB5F1733ED3 /* RCTI18nUtil.m in Sources */ = {isa = PBXBuildFile; fileRef = 47D67583AB2B5BD4A0CAFCB9231D1F7C /* RCTI18nUtil.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + C46F05B3ED722664DFDBCE04571A60DC /* RCTHmac.m in Sources */ = {isa = PBXBuildFile; fileRef = 8354F32A621692F2080E494EF874CA10 /* RCTHmac.m */; }; + C4700D1632A29986834334E61AB06B65 /* Uri.h in Headers */ = {isa = PBXBuildFile; fileRef = FF52E63FA1C5D41760062EDCB6AAA418 /* Uri.h */; settings = {ATTRIBUTES = (Project, ); }; }; + C481E845585D594A62D28FBF0CA76BB2 /* CpuId.h in Headers */ = {isa = PBXBuildFile; fileRef = 160805D13378C1E997BA10C058ADD34B /* CpuId.h */; settings = {ATTRIBUTES = (Project, ); }; }; + C496BFB1980090F648B57FFDC9192B55 /* RCTFollyConvert.h in Headers */ = {isa = PBXBuildFile; fileRef = C40A95AEC97C91A777EAAA0CA077D939 /* RCTFollyConvert.h */; settings = {ATTRIBUTES = (Project, ); }; }; + C4A28A807E43542C8BFD573B178B9EE8 /* CxxNativeModule.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 1663FD8EE873E544DE8F467C94FC3269 /* CxxNativeModule.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + C4E118C01216537A1778633343153F40 /* ThreadCachedInt.h in Headers */ = {isa = PBXBuildFile; fileRef = 8C1883F8A5912FB6F479721503D23DBA /* ThreadCachedInt.h */; settings = {ATTRIBUTES = (Project, ); }; }; + C4E421B0AC7978B08C7C3C841EF85C22 /* RCTWebSocketExecutor.h in Headers */ = {isa = PBXBuildFile; fileRef = 0ECBE995F71640C8FC30B3C7CBD8618B /* RCTWebSocketExecutor.h */; settings = {ATTRIBUTES = (Project, ); }; }; + C4F123A8EC143C47F5FEAF0ABC97D5CA /* symbolize.cc in Sources */ = {isa = PBXBuildFile; fileRef = 733E7F9B2FF8930580B0C7B7AB582728 /* symbolize.cc */; settings = {COMPILER_FLAGS = "-Wno-shorten-64-to-32"; }; }; + C519955245AD50173A54F11EC9BFE1DF /* EventBaseManager.h in Headers */ = {isa = PBXBuildFile; fileRef = C174102962D3DE782B18DB29175D29D0 /* EventBaseManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; + C5232A764EC8C532AE19CA6160F88650 /* MallocImpl.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 18534EB342673A74174C38DFF2A88228 /* MallocImpl.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -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\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors"; }; }; + C53453613BEF0DAF2F61A1AFFCAD247D /* SpookyHashV2.cpp in Sources */ = {isa = PBXBuildFile; fileRef = B1EFD3176979B895DB18DC7BFB980B17 /* 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"; }; }; + C54300E7D1A20676479781630519CA52 /* ARTNode.m in Sources */ = {isa = PBXBuildFile; fileRef = B57660A82B09BE7B288631FEA0BF9292 /* ARTNode.m */; }; + C571235E4F6CD336FAE42D6AE4C1A69F /* Time.cpp in Sources */ = {isa = PBXBuildFile; fileRef = F24451F359924006BCBDACD83CFC2B00 /* Time.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -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\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors"; }; }; + C571320AA0198398AEB95F86E59958C9 /* utils.h in Headers */ = {isa = PBXBuildFile; fileRef = 9F7EFFB24345B894A3094B6D5DCB0314 /* utils.h */; settings = {ATTRIBUTES = (Project, ); }; }; + C5851698F937D8E58C2C3F74F4E8109D /* RCTInputAccessoryView.h in Headers */ = {isa = PBXBuildFile; fileRef = 180CBAA0F1BD54DBF5E3C1C1E7E37174 /* RCTInputAccessoryView.h */; settings = {ATTRIBUTES = (Project, ); }; }; + C586D634D95E7C695024F7E565F686C5 /* RCTAccessibilityManager.mm in Sources */ = {isa = PBXBuildFile; fileRef = FED139A5C947F85FAF85C63E97CF494E /* 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"; }; }; + C5990191EE0A7476C5D040F5FCB35BB2 /* HazptrRec.h in Headers */ = {isa = PBXBuildFile; fileRef = 45CD2A50538B4ADE29ED0A92D70B4BD8 /* HazptrRec.h */; settings = {ATTRIBUTES = (Project, ); }; }; + C5C08F38D448C602F6D8FF1DC400596E /* RCTResizeMode.m in Sources */ = {isa = PBXBuildFile; fileRef = 1C4B1C3D55038D8241E8C3A8DC65EF7F /* 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"; }; }; + C5C693C89BF728137837B63679FEA033 /* RCTSurfaceSizeMeasureMode.mm in Sources */ = {isa = PBXBuildFile; fileRef = 3BB55C5545C7FF080A4E5DF2DD35A184 /* RCTSurfaceSizeMeasureMode.mm */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + C5CE7CA0B18807D89F8B8E0354A7533E /* evbuffer-internal.h in Headers */ = {isa = PBXBuildFile; fileRef = 20B06F75BE7FBB7628A7F2DAB3CA40A9 /* evbuffer-internal.h */; settings = {ATTRIBUTES = (Project, ); }; }; + C5D28CDBFC33A5473E6831FB1E21C3E9 /* yuv_mips32.c in Sources */ = {isa = PBXBuildFile; fileRef = 5C0C098A84C5181F50C28D53427B9730 /* yuv_mips32.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; + C5EC29FC7252429453173C6F96B202E5 /* StaticSingletonManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 68A8731D055A6B39965B25F0FEE565E4 /* StaticSingletonManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; + C60AE318027C56C21A7BD115CFDF96C4 /* EventBaseBackendBase.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 901206FA466E71B8B154836EB931AD2A /* EventBaseBackendBase.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -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\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors"; }; }; + C621B51A7AC9F7EC5E706B46291D8677 /* Cast.h in Headers */ = {isa = PBXBuildFile; fileRef = EFF4FBF68FC07FD11653947BD8A34BD7 /* Cast.h */; settings = {ATTRIBUTES = (Project, ); }; }; + C654408A00FA87DE8365928FF35EB9A9 /* BugsnagEndpointConfiguration.m in Sources */ = {isa = PBXBuildFile; fileRef = D9E6D4EF7F749130DD3943A66833AEAB /* BugsnagEndpointConfiguration.m */; }; + C660186C0C8A7CFDC63A7856C6E80D86 /* NestedCommandLineApp.h in Headers */ = {isa = PBXBuildFile; fileRef = F855D000A6931352CA53740EF0A8A551 /* NestedCommandLineApp.h */; settings = {ATTRIBUTES = (Project, ); }; }; + C681F9BF7A08AC155A7843E81CE92E05 /* Sleeper.h in Headers */ = {isa = PBXBuildFile; fileRef = AC6DCC72636F3B12FA8261D13790492A /* Sleeper.h */; settings = {ATTRIBUTES = (Project, ); }; }; + C6A9078D23518F3295D3DAAD2A51993C /* RCTDatePickerManager.m in Sources */ = {isa = PBXBuildFile; fileRef = 08E0C4E5175039C123A7B279B5ACA787 /* RCTDatePickerManager.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + C6AD09E6A180B604E79A55DBD5D4F86B /* bufferevent_filter.c in Sources */ = {isa = PBXBuildFile; fileRef = FA51FDC1C5DBFB8A0B7A7E4D4B1174FC /* bufferevent_filter.c */; }; + C6BBE4C34FE544D6DF6E91E929A6B056 /* FIRCLSUnwind_arch.h in Headers */ = {isa = PBXBuildFile; fileRef = 3C052948D50C90ACD6BFBD01F0337ED9 /* FIRCLSUnwind_arch.h */; settings = {ATTRIBUTES = (Project, ); }; }; + C6E11F383D9AEA2AE26AC331C44C62C4 /* UIImage+Resize.h in Headers */ = {isa = PBXBuildFile; fileRef = 71198C8517842D7AEA353B5FA30A37AC /* UIImage+Resize.h */; settings = {ATTRIBUTES = (Project, ); }; }; + C6EB2487A325317FC7C079B1857B45A4 /* BugsnagHandledState.h in Headers */ = {isa = PBXBuildFile; fileRef = 1E14334F0F1E814B22025C4E1F4DB4F2 /* BugsnagHandledState.h */; settings = {ATTRIBUTES = (Project, ); }; }; + C6F4BA46AD7C80265340802E164930BE /* EXAppleAuthenticationRequest.m in Sources */ = {isa = PBXBuildFile; fileRef = 5468AAE699A2ACA0AAD80F3F1FF37684 /* EXAppleAuthenticationRequest.m */; }; + C6FC64DCF29520D0E017CF9E1B927324 /* PublisherBase.h in Headers */ = {isa = PBXBuildFile; fileRef = 578CBD79060AF149B9A4FCA0E52B7571 /* PublisherBase.h */; settings = {ATTRIBUTES = (Project, ); }; }; + C70664E2F987CEEEE7E2B242C4FB1F8D /* FlipperDiagnosticsViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = E91079F658950548BA8A14EAEA577901 /* FlipperDiagnosticsViewController.m */; settings = {COMPILER_FLAGS = "-DDEBUG=1 -DFLIPPER_OSS=1 -DFB_SONARKIT_ENABLED=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -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"; }; }; + C71B0BDA66DF1E03EB31AF659E46C800 /* TcpConnectionFactory.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 13F84715F1EB67124DA06FA6170ED005 /* TcpConnectionFactory.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -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 -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors"; }; }; + C7262C01B551EBFF45E137E16AC5B8D2 /* RCTJSStackFrame.m in Sources */ = {isa = PBXBuildFile; fileRef = 6B3BE86881CEE4BF2D33147B66892FCA /* RCTJSStackFrame.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + C72C876A77D6002ED4660A786EA4C47E /* anim_decode.c in Sources */ = {isa = PBXBuildFile; fileRef = DE3D4333E0AFB9649B662738A8FE78F0 /* anim_decode.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; + C74A033926CE6C2B5A9531707B4D113B /* UIImageView+WebCache.m in Sources */ = {isa = PBXBuildFile; fileRef = 1818A93F4880699A304FF3EFE5EF1093 /* UIImageView+WebCache.m */; }; + C74CA2044C99BC7C2C412810E4966DB6 /* SKBufferingPlugin.h in Headers */ = {isa = PBXBuildFile; fileRef = 6700772380B3CFE2FC3FF245578BFA13 /* SKBufferingPlugin.h */; settings = {ATTRIBUTES = (Project, ); }; }; + C74D2CC1248089F8AF443A2108EB68AB /* TimekeeperScheduledExecutor.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 61A4E0543C726B492043B8BB13DFDC37 /* TimekeeperScheduledExecutor.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -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\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors"; }; }; + C751CB8EC8698564E9876BF59CC7CC25 /* EXAudioRecordingPermissionRequester.h in Headers */ = {isa = PBXBuildFile; fileRef = 8C5BB0DC78FEE44E43A7590BC2452EA7 /* EXAudioRecordingPermissionRequester.h */; settings = {ATTRIBUTES = (Project, ); }; }; + C7657C0ACEBF275180FC66F5D819862F /* react-native-safe-area-context-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = EE9AF4B52D9E531EB33BC64623F8F534 /* react-native-safe-area-context-dummy.m */; }; + C782CCDC9F577B865FB0D8B459AF2BA6 /* RCTSinglelineTextInputViewManager.m in Sources */ = {isa = PBXBuildFile; fileRef = F9A6B702F8965CEB6A5B1066209C51EB /* RCTSinglelineTextInputViewManager.m */; }; + C7912E805DDDEA5097A95753ADD42CD0 /* BugsnagCollections.m in Sources */ = {isa = PBXBuildFile; fileRef = 80580563A830049C8F6B7151C484FB53 /* BugsnagCollections.m */; }; + C799D50AF668B26893FFCA305D8833C6 /* react-native-netinfo-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 03F6C9D3566B7A517801606D4F076BD1 /* react-native-netinfo-dummy.m */; }; + C7B985203B04AAB64582FE65EB03B940 /* Constexpr.h in Headers */ = {isa = PBXBuildFile; fileRef = B814C8A657613DFD226DC12F8B9A5DEB /* Constexpr.h */; settings = {ATTRIBUTES = (Project, ); }; }; + C7C26E0FC38264E0FA92E76202738AC2 /* vlog_is_on.h in Headers */ = {isa = PBXBuildFile; fileRef = C8A58146358F8008D44793DC28206F26 /* vlog_is_on.h */; settings = {ATTRIBUTES = (Project, ); }; }; + C7EB2D4E5C1820D0838CC206142AE1CD /* alpha_processing_neon.c in Sources */ = {isa = PBXBuildFile; fileRef = 54990C1917C15C7B9DA9FAEC887FBDBC /* alpha_processing_neon.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; + C806FC34D3A4202EE85D24716AD0EBEF /* evutil.h in Headers */ = {isa = PBXBuildFile; fileRef = D5BA47AD0D188088BC8EC8DB31B99804 /* evutil.h */; settings = {ATTRIBUTES = (Project, ); }; }; + C807400B4F8E6819976858AFF09DA3A9 /* SDAsyncBlockOperation.h in Headers */ = {isa = PBXBuildFile; fileRef = B61EFA9CF6CEB104E7551C7D1018E4AE /* SDAsyncBlockOperation.h */; settings = {ATTRIBUTES = (Project, ); }; }; + C8211A76C0F5DD32D2376FDEDCA55219 /* FIRCLSGlobals.h in Headers */ = {isa = PBXBuildFile; fileRef = B6325E804BC4483D7A43FA4964AA1B54 /* FIRCLSGlobals.h */; settings = {ATTRIBUTES = (Project, ); }; }; + C82AA31805A940547F8138D26E9CD549 /* EXFilePermissionModule.m in Sources */ = {isa = PBXBuildFile; fileRef = B5AB0EE956AB7D0ED1130CEFF502E945 /* EXFilePermissionModule.m */; }; + C842771990BDD157724306E780CCC8BB /* endian_inl_utils.h in Headers */ = {isa = PBXBuildFile; fileRef = 88747D90A0585A2F954ECD755B50F9BD /* endian_inl_utils.h */; settings = {ATTRIBUTES = (Project, ); }; }; + C849D7E6C02C13CCCA872C1EC26EBB6B /* AtomicUtil-inl.h in Headers */ = {isa = PBXBuildFile; fileRef = 8102521A01AA4C0C84BCBE66CE2ED01A /* AtomicUtil-inl.h */; settings = {ATTRIBUTES = (Project, ); }; }; + C86A0F6DB9F70BAFD998BF86315993F3 /* SDImageAWebPCoder.m in Sources */ = {isa = PBXBuildFile; fileRef = A064533E97B502530F807E4DAE7A584E /* SDImageAWebPCoder.m */; }; + C86A58FF8518861E61562D8CEF6BED74 /* EvictingCacheMap.h in Headers */ = {isa = PBXBuildFile; fileRef = 1A515CEA2A9F3D0D32C3D6245861B119 /* EvictingCacheMap.h */; settings = {ATTRIBUTES = (Project, ); }; }; + C8C4A731CE19338ADF7AE1C15A2C625E /* RCTCxxModule.h in Headers */ = {isa = PBXBuildFile; fileRef = 588845CEA50EEB3FDE0FFB7E9B12FA19 /* RCTCxxModule.h */; settings = {ATTRIBUTES = (Project, ); }; }; + C8CF2F4EBE2DD9303179640E59A47784 /* AsyncSignalHandler.h in Headers */ = {isa = PBXBuildFile; fileRef = 925872547B0958B455C57C81FE6697EF /* AsyncSignalHandler.h */; settings = {ATTRIBUTES = (Project, ); }; }; + C8EDB9C90CC0AFE5C12763C417261992 /* GDTCORTargets.h in Headers */ = {isa = PBXBuildFile; fileRef = 84A31B1151BF5A6F7ED96F281DED34D8 /* GDTCORTargets.h */; settings = {ATTRIBUTES = (Project, ); }; }; + C8F9B1BA2DD98D4574C5AF9D526C7DC1 /* FBLPromise+Await.m in Sources */ = {isa = PBXBuildFile; fileRef = 8D2E8775C3542E07D330DA257B143C02 /* FBLPromise+Await.m */; }; + C90AFF718E45E2616D23519AC26AD09A /* UMAppRecordInterface.h in Headers */ = {isa = PBXBuildFile; fileRef = 22594891B864827AE72F110CA04372F2 /* UMAppRecordInterface.h */; settings = {ATTRIBUTES = (Project, ); }; }; + C9146A02C705D1F930D4F7A4F6EA2BAA /* BugsnagConfigSerializer.m in Sources */ = {isa = PBXBuildFile; fileRef = EF484C4CCDEEB38F082663EE1763A984 /* BugsnagConfigSerializer.m */; }; + C918B262B36820B5E0F08F9C3B048892 /* RNGestureHandlerManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 93972940615BA109232EF3C4B4C4FE46 /* RNGestureHandlerManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; + C948E0AA89CCB5B4644DB079C78B8829 /* GDTCORDirectorySizeTracker.h in Headers */ = {isa = PBXBuildFile; fileRef = 8EB0521444F44118EFB8822BEFBACBBA /* GDTCORDirectorySizeTracker.h */; settings = {ATTRIBUTES = (Project, ); }; }; + C95EF919D25D189887FF9B3E7C53A594 /* RCTSurfaceView.mm in Sources */ = {isa = PBXBuildFile; fileRef = 58ED28EE57F5C3B60B54690D86E46850 /* RCTSurfaceView.mm */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + C97863F082E12376CB4CCB8B68B6071C /* RCTDecayAnimation.h in Headers */ = {isa = PBXBuildFile; fileRef = 1D13AFF42849FCF2922C5D4CE85D0C68 /* RCTDecayAnimation.h */; settings = {ATTRIBUTES = (Project, ); }; }; + C98FCA9560B7026D36901220416DBEFD /* AsyncServerSocket.h in Headers */ = {isa = PBXBuildFile; fileRef = 494CD3A819FA31DFDF1577C07F29B117 /* AsyncServerSocket.h */; settings = {ATTRIBUTES = (Project, ); }; }; + C9B571137C8E0B614A6237B7D92F98B7 /* OpenSSLVersionFinder.h in Headers */ = {isa = PBXBuildFile; fileRef = F7B64BBF9802E85831BA749D87FEFBD1 /* OpenSSLVersionFinder.h */; settings = {ATTRIBUTES = (Project, ); }; }; + C9C7CD401BD669E8AB121F9FB140770C /* RCTLayoutAnimationGroup.h in Headers */ = {isa = PBXBuildFile; fileRef = 442B92926142419FF37F3A3BE515EE45 /* RCTLayoutAnimationGroup.h */; settings = {ATTRIBUTES = (Project, ); }; }; + C9D331452EE297E1D63CFBA6A1F5FEB8 /* FIRCLSMachException.c in Sources */ = {isa = PBXBuildFile; fileRef = A56C587DBDC4B48E9F5CFF0193226010 /* FIRCLSMachException.c */; }; + CA125A64D15C731FCAD5E46ECDF7DBBC /* MiniPBCoder.h in Headers */ = {isa = PBXBuildFile; fileRef = 7A0B16A06065033AE8EF610BDB087D03 /* MiniPBCoder.h */; settings = {ATTRIBUTES = (Project, ); }; }; + CA2AEB18CD64764B8C6CE0CD07A5AE0F /* RCTRefreshControl.m in Sources */ = {isa = PBXBuildFile; fileRef = 0479F3B47B90F344B7FCB6C9EE623327 /* RCTRefreshControl.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + CA2BE276E498C478220ECC5C8FABF03A /* RCTCxxMethod.mm in Sources */ = {isa = PBXBuildFile; fileRef = F9BDCF485B7E596A53C18814ABABD023 /* RCTCxxMethod.mm */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + CA2D22EFCE60BC91798908519254B192 /* FIRCLSApplicationIdentifierModel.m in Sources */ = {isa = PBXBuildFile; fileRef = 7C86A3794C8EB182B65BBEEBDD2E91C5 /* FIRCLSApplicationIdentifierModel.m */; }; + CA55FD2F5BF2D01EDF0D2E4D1370BF7C /* RCTWebSocketModule.mm in Sources */ = {isa = PBXBuildFile; fileRef = C585558FF762C77A46401E17B9643AEE /* 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"; }; }; + CA5D47EDB5496D698816AF970AEBD0A0 /* UMAppLifecycleService.h in Headers */ = {isa = PBXBuildFile; fileRef = C96FA1BE517F6C3D939058B7369032EB /* UMAppLifecycleService.h */; settings = {ATTRIBUTES = (Project, ); }; }; + CA5FFC06D118A31A98B9A737CECE98B8 /* SDAnimatedImageView.m in Sources */ = {isa = PBXBuildFile; fileRef = 6C695160C23EDB5DF51922A7244720D0 /* SDAnimatedImageView.m */; }; + CA8EF2F6B156D6EF96D4FE241BF0E2F7 /* JSModulesUnbundle.h in Headers */ = {isa = PBXBuildFile; fileRef = AA01213DF095986D52879CCA5C6A3D60 /* JSModulesUnbundle.h */; settings = {ATTRIBUTES = (Project, ); }; }; + CAA38C892AE17B98EA1449D3B725A246 /* UIImage+ForceDecode.h in Headers */ = {isa = PBXBuildFile; fileRef = C449B8BE34D1CFA82FF4DEF257292E35 /* UIImage+ForceDecode.h */; settings = {ATTRIBUTES = (Project, ); }; }; + CAA6C306EE32FAA7D388F9DB3C8CB3F3 /* Partial.h in Headers */ = {isa = PBXBuildFile; fileRef = B97E15C16CB8C9D848ED71929825BD2A /* Partial.h */; settings = {ATTRIBUTES = (Project, ); }; }; + CAD9C0E986371DAE105BA86582F42658 /* FIRHeartbeatInfo.h in Headers */ = {isa = PBXBuildFile; fileRef = 877A93CC3BCA1A046A2B37CE4F41BD49 /* FIRHeartbeatInfo.h */; settings = {ATTRIBUTES = (Project, ); }; }; + CAE7BB9C57EE75B260D85AA222FD2AF6 /* MessageConverters.h in Headers */ = {isa = PBXBuildFile; fileRef = B40EC70902CB402A5BF316D6EB99426F /* MessageConverters.h */; settings = {ATTRIBUTES = (Project, ); }; }; + CAFE5D5687E84988576386FCA6506588 /* IOBuf.h in Headers */ = {isa = PBXBuildFile; fileRef = CEDEC16D242D3AB6AC66BC65C614B468 /* IOBuf.h */; settings = {ATTRIBUTES = (Project, ); }; }; + CAFFB02CD8E8D5813B9C61BDE4577699 /* FileUtil.h in Headers */ = {isa = PBXBuildFile; fileRef = 6076BA8CDF95E98F007EC70F2D40FB86 /* FileUtil.h */; settings = {ATTRIBUTES = (Project, ); }; }; + CB0275378AB8D1359BDCF4E42B9F3072 /* AutoTimer.h in Headers */ = {isa = PBXBuildFile; fileRef = D45BCFCFCF1DB25C0A44A81037793A8C /* AutoTimer.h */; settings = {ATTRIBUTES = (Project, ); }; }; + CB07617DC7E45586EA3A38ECF47B0CE4 /* CodedInputData_OSX.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 812491C4194E193D02181E745A87692E /* CodedInputData_OSX.cpp */; settings = {COMPILER_FLAGS = "-x objective-c++ -fno-objc-arc"; }; }; + CB1C851FAD6BA3A099721881347CB488 /* Bits.h in Headers */ = {isa = PBXBuildFile; fileRef = FA0D821FA03BC48C93913B32C2B3192E /* Bits.h */; settings = {ATTRIBUTES = (Project, ); }; }; + CB241F8155C6D66001EA1C1652315A79 /* RCTProgressViewManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 384D2FF8B4103353957B2ED78E7C289D /* RCTProgressViewManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; + CB39180E96515256EAC78CC31604C405 /* RCTImageBlurUtils.h in Headers */ = {isa = PBXBuildFile; fileRef = A1986C6D606FBC81905F838949469960 /* RCTImageBlurUtils.h */; settings = {ATTRIBUTES = (Project, ); }; }; + CB598110F73F4A91ADC31429EF8141E5 /* Flowable.h in Headers */ = {isa = PBXBuildFile; fileRef = 1AA67571B37D6DF127BEFC3BB0F740A9 /* Flowable.h */; settings = {ATTRIBUTES = (Project, ); }; }; + CB5C4CE1C4B732A10A31CF954A905F67 /* vp8i_enc.h in Headers */ = {isa = PBXBuildFile; fileRef = E6928B48932A98341D9398DDCDBD2C08 /* vp8i_enc.h */; settings = {ATTRIBUTES = (Project, ); }; }; + CB65070F7A8D8C6D2C6C72FA4C6C28E5 /* BugsnagSession.m in Sources */ = {isa = PBXBuildFile; fileRef = CF5F818C871CFBBA60572CD3BBD14A6F /* BugsnagSession.m */; }; + CB933A60439CDD0818BB5F8ED86B6130 /* RCTAnimatedImage.h in Headers */ = {isa = PBXBuildFile; fileRef = 997B9669B047BE0E81C061CD2AB037C5 /* RCTAnimatedImage.h */; settings = {ATTRIBUTES = (Project, ); }; }; + CBAB59D09DDD5A2419D42AFC4E4CC4CC /* CPortability.h in Headers */ = {isa = PBXBuildFile; fileRef = 6C6C02FB8661B432E4557DEB3900F047 /* CPortability.h */; settings = {ATTRIBUTES = (Project, ); }; }; + CBB24A18271FC0171394C4B2BCAE49A0 /* poll.c in Sources */ = {isa = PBXBuildFile; fileRef = 195DDE6FBED86EB465F00C201F79ED3D /* poll.c */; }; + CBD7AE6A7574D0EFFCAF7F272B15E165 /* ScheduledRSocketResponder.cpp in Sources */ = {isa = PBXBuildFile; fileRef = D312000E411FF067BEB309C4E6A3A740 /* ScheduledRSocketResponder.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -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 -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors"; }; }; + CBD96A6191CA1CF0C7DDABA143EE17B9 /* RCTBundleURLProvider.h in Headers */ = {isa = PBXBuildFile; fileRef = 348AFB8AFACAB195A75CC30BF7090541 /* RCTBundleURLProvider.h */; settings = {ATTRIBUTES = (Project, ); }; }; + CBE210C47A70A9DA8F0551437588E8F4 /* GDTCORUploadCoordinator.m in Sources */ = {isa = PBXBuildFile; fileRef = 9DC767DC904E88F95B01EC1884C58EAD /* GDTCORUploadCoordinator.m */; }; + CBE7B3D3B9C96BC083AE9703C49B4943 /* mux_types.h in Headers */ = {isa = PBXBuildFile; fileRef = 21FE461871DA4F3A90EE6C510A64509C /* mux_types.h */; settings = {ATTRIBUTES = (Project, ); }; }; + CBF28CD54FAF5BCBDE2C3E8660F86227 /* RCTConstants.m in Sources */ = {isa = PBXBuildFile; fileRef = 89FB1F638C4BAA32C456717DD7F9D227 /* RCTConstants.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + CC1E3DE09A053FE4F8625A07F37F687E /* RCTVirtualTextShadowView.m in Sources */ = {isa = PBXBuildFile; fileRef = D30D01D6C84A05C120520596009D1D0D /* RCTVirtualTextShadowView.m */; }; + CC31EE8BC1B8F4702386837C8A2B54CC /* RCTObjcExecutor.h in Headers */ = {isa = PBXBuildFile; fileRef = 874365B75630330AB4C1AB7AF0F05BA7 /* RCTObjcExecutor.h */; settings = {ATTRIBUTES = (Project, ); }; }; + CC47EFDBC317C15BD4E0CB8AC48BC1AE /* FIROptions.h in Headers */ = {isa = PBXBuildFile; fileRef = 3BC17F26D9F946CF16A5AF1048E6F48B /* FIROptions.h */; settings = {ATTRIBUTES = (Project, ); }; }; + CC60164220C603B6C5F5ED2A2709B756 /* WaitOptions.cpp in Sources */ = {isa = PBXBuildFile; fileRef = D041292F71AB80BB90C4B8687EDD24F6 /* WaitOptions.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -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\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors"; }; }; + CC6B29531FD44D117E367C16D4BD062D /* SDAnimatedImagePlayer.m in Sources */ = {isa = PBXBuildFile; fileRef = B337CA6C756C410795979F5E94F07157 /* SDAnimatedImagePlayer.m */; }; + CC84BA1581CF5739F9EC5251A01269B5 /* Inspector.h in Headers */ = {isa = PBXBuildFile; fileRef = 13747E7F6A1EE9D642BC1EFAA058B987 /* Inspector.h */; settings = {ATTRIBUTES = (Project, ); }; }; + CC852FF1DDBF2072A50B31E84642719D /* filter_enc.c in Sources */ = {isa = PBXBuildFile; fileRef = 53069B957F7CA1845BC05BF45F9102A6 /* filter_enc.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; + CC98C81B98AAAF83BF1ACAE66E4F8489 /* Bits.h in Headers */ = {isa = PBXBuildFile; fileRef = F83BC6F24990629827A879FEB9557436 /* Bits.h */; settings = {ATTRIBUTES = (Project, ); }; }; + CCAF517A7DD39D7D335790A74DCCF89A /* Expected.h in Headers */ = {isa = PBXBuildFile; fileRef = AE70837C612AE7D24CA5BB67408C5255 /* Expected.h */; settings = {ATTRIBUTES = (Project, ); }; }; + CCC14B1774B942797C2094FCD3A0B344 /* ErrorUtils.h in Headers */ = {isa = PBXBuildFile; fileRef = 2A94F3ACC6E5FBC3B3243830EACF61C3 /* ErrorUtils.h */; settings = {ATTRIBUTES = (Project, ); }; }; + CCC6BE63615F8174E1775FE1BA73166F /* IOBuf.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 710BC8F81F420FD99A02B017A3ADAE0F /* IOBuf.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -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\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors"; }; }; + CCC84C35A4690B73C0ECD674B60F4B11 /* RNCSafeAreaViewEdges.m in Sources */ = {isa = PBXBuildFile; fileRef = 3B94B4EFE54E8939DB490367A6F45F08 /* RNCSafeAreaViewEdges.m */; }; + CCD35739CAD3C8AA145B2A874D1379A4 /* Ordering.h in Headers */ = {isa = PBXBuildFile; fileRef = 8226908248D3B863A11C4BD303A18AB1 /* Ordering.h */; settings = {ATTRIBUTES = (Project, ); }; }; + CCF14197FDD2C32ABD799E0CE8675E2E /* DeviceUID.h in Headers */ = {isa = PBXBuildFile; fileRef = 7EF29750461614E23F0E518C38D343D7 /* DeviceUID.h */; settings = {ATTRIBUTES = (Project, ); }; }; + CCF179687494CAF641F6DBDA486E39B9 /* FlipperKitCertificateProvider.h in Headers */ = {isa = PBXBuildFile; fileRef = 336F27750CC524E9B7F8D86997C524DE /* FlipperKitCertificateProvider.h */; settings = {ATTRIBUTES = (Project, ); }; }; + CCF6AB6DA7684AC70B68A931D5DA4A66 /* HazptrUtils.h in Headers */ = {isa = PBXBuildFile; fileRef = 2BE77D0DA9F67FA097B76993286A416F /* HazptrUtils.h */; settings = {ATTRIBUTES = (Project, ); }; }; + CD181B6C89100F14B3710D1C8050A76B /* RCTTouchEvent.m in Sources */ = {isa = PBXBuildFile; fileRef = C5CE4B90C03F50DAB4A4F404465C3636 /* RCTTouchEvent.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + CD3D55A02CC2952193F70F94C0E381EF /* RCTSurfacePresenterStub.h in Headers */ = {isa = PBXBuildFile; fileRef = EED694C9A1F5F474AD411753E970C387 /* RCTSurfacePresenterStub.h */; settings = {ATTRIBUTES = (Project, ); }; }; + CD4D62E1F9528311A4263EC567C7FE1D /* REATransformNode.m in Sources */ = {isa = PBXBuildFile; fileRef = A1EFF181F448B40C8D4167283D2792F4 /* REATransformNode.m */; }; + CD4DE4A5F6C60C59A596C81F8E4D2AD5 /* pt-BR.lproj in Resources */ = {isa = PBXBuildFile; fileRef = 3FD325DFB52FFF20E1052FACDF20A233 /* pt-BR.lproj */; }; + CD5AC289FAF00B429307905823AA63E2 /* DiscriminatedPtr.h in Headers */ = {isa = PBXBuildFile; fileRef = A90CA49100A59A5C1F7701DA04C99C1F /* DiscriminatedPtr.h */; settings = {ATTRIBUTES = (Project, ); }; }; + CD884AE62F2B47568E3020D1D06230C0 /* RNFBVersion.m in Sources */ = {isa = PBXBuildFile; fileRef = 9786BDA3897B7B925F5A1BE2BDCC00A3 /* RNFBVersion.m */; }; + CD910DCD46D3813B0B9DA927547A3B7A /* StreamFragmentAccumulator.cpp in Sources */ = {isa = PBXBuildFile; fileRef = B02B5CA1B297D39A188A109B08820B67 /* StreamFragmentAccumulator.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -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 -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors"; }; }; + CD9B7442FBE0AB4A70531A9C2FEAC02A /* AsymmetricMemoryBarrier.h in Headers */ = {isa = PBXBuildFile; fileRef = B367A31FC95F7361F2F0277B285EB989 /* AsymmetricMemoryBarrier.h */; settings = {ATTRIBUTES = (Project, ); }; }; + CE0C40CD897C0C4F539632D5AD632F49 /* Fixture.h in Headers */ = {isa = PBXBuildFile; fileRef = D8F4957E5C1113EAC98C0AB582D174D1 /* Fixture.h */; settings = {ATTRIBUTES = (Project, ); }; }; + CE2A07132400BA6F5D6708CDB849FA14 /* pb_common.c in Sources */ = {isa = PBXBuildFile; fileRef = 036F75593E25D76A5CB2F411FBD9FB5E /* pb_common.c */; settings = {COMPILER_FLAGS = "-fno-objc-arc -fno-objc-arc -fno-objc-arc"; }; }; + CE2CE42DF8B4E7774E166CA0D0185836 /* RNCMaskedView-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = E28DC9882E95092FF5A22E9440916B36 /* RNCMaskedView-dummy.m */; }; + CE3963644B1AF83991E55289C01D2C4F /* ExceptionWrapper-inl.h in Headers */ = {isa = PBXBuildFile; fileRef = 6AA394CBC0B7CC55CFF2E907AA8CF676 /* ExceptionWrapper-inl.h */; settings = {ATTRIBUTES = (Project, ); }; }; + CE3DCB701721124C62283C4ADD022EE1 /* REAClockNodes.h in Headers */ = {isa = PBXBuildFile; fileRef = E05F1444615E94542B2F2854939D6B4D /* REAClockNodes.h */; settings = {ATTRIBUTES = (Project, ); }; }; + CE481272B9E50801F81C7F00A02266F6 /* UniqueInstance.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 01DEA41BEDD9B681A64851CCBFB9CAFB /* UniqueInstance.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -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\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors"; }; }; + CE4B52C51120C8BE3B053B0357A109BE /* EXSessionTaskDelegate.h in Headers */ = {isa = PBXBuildFile; fileRef = 80928FA87E96A79A8C1EE78D5178F9F4 /* EXSessionTaskDelegate.h */; settings = {ATTRIBUTES = (Project, ); }; }; + CE50B89F450E0F7880087A3668959ECC /* GULKeychainStorage.h in Headers */ = {isa = PBXBuildFile; fileRef = AC59B0D20C66F6CC9F8F7946CB6BF210 /* GULKeychainStorage.h */; settings = {ATTRIBUTES = (Project, ); }; }; + CE56774D875A3E23D375EFC2A34A29F0 /* InlineFunctionRef.h in Headers */ = {isa = PBXBuildFile; fileRef = 995C7A8BCB27704A758DEF0332441DAD /* InlineFunctionRef.h */; settings = {ATTRIBUTES = (Project, ); }; }; + CE59BB6674B896CA5310390BF09ECB79 /* ProducerConsumerQueue.h in Headers */ = {isa = PBXBuildFile; fileRef = C4ED9D5AD546A2B65037A818D86E4159 /* ProducerConsumerQueue.h */; settings = {ATTRIBUTES = (Project, ); }; }; + CE710677CE3345C396654665122297A0 /* SKHighlightOverlay.h in Headers */ = {isa = PBXBuildFile; fileRef = 001330F7A43B6C92C4AF1BD7C7A0315A /* SKHighlightOverlay.h */; settings = {ATTRIBUTES = (Project, ); }; }; + CE975AA7DD86B64588E5307378BB41B1 /* RNCMaskedViewManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 4A614561BC9E6C556E9110B4C1192015 /* RNCMaskedViewManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; + CEA08D5784FB6AAC545565FDF2CBE168 /* RequestResponseResponder.h in Headers */ = {isa = PBXBuildFile; fileRef = 2051544C3E94931527318464D6F58B46 /* RequestResponseResponder.h */; settings = {ATTRIBUTES = (Project, ); }; }; + CEB1E58162A49E2197F919AC89E691FF /* EXVideoThumbnails-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 7F819A9AAE0B529DE31CB2565F0421EF /* EXVideoThumbnails-dummy.m */; }; + CEB26B86EF9157DF991228342054EA65 /* RCTVibrationPlugins.mm in Sources */ = {isa = PBXBuildFile; fileRef = 10624FF1EE4D86684789A9D62944F9D4 /* 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"; }; }; + CEB5C74B4D604801B26CAEDC165A631F /* RCTNetworking.h in Headers */ = {isa = PBXBuildFile; fileRef = 6C155D7FC749B6F3832B8DDCB1790C64 /* RCTNetworking.h */; settings = {ATTRIBUTES = (Project, ); }; }; + CEE835EF9D34D1582D94260E20F44C0A /* NSDataBigString.h in Headers */ = {isa = PBXBuildFile; fileRef = 6716152E381A6A3A879561177E52A93D /* NSDataBigString.h */; settings = {ATTRIBUTES = (Project, ); }; }; + CEEAE4B386757AB55988F462F17843D2 /* ScheduledRSocketResponder.h in Headers */ = {isa = PBXBuildFile; fileRef = 32D07D9D57746C4771BB344C1387DB7A /* ScheduledRSocketResponder.h */; settings = {ATTRIBUTES = (Project, ); }; }; + CEEEE8755AB696A190B0B8D14314E5A5 /* BSG_KSCrashType.c in Sources */ = {isa = PBXBuildFile; fileRef = 89D2CC2724EC9117594DEF1E1B16FCDF /* BSG_KSCrashType.c */; }; + CF1C5364803C9BD32A74C3AC514B8B1D /* diy-fp.cc in Sources */ = {isa = PBXBuildFile; fileRef = 8EE166457CD928AB77ED880B75F59A56 /* diy-fp.cc */; settings = {COMPILER_FLAGS = "-Wno-unreachable-code"; }; }; + CF2D309383829B72586969ABBE8704A0 /* FIRVersion.h in Headers */ = {isa = PBXBuildFile; fileRef = 488ABFD1C82D6609EA54219704B79029 /* FIRVersion.h */; settings = {ATTRIBUTES = (Project, ); }; }; + CF46A2F93CDFE9DB77D7EF26ACC643C2 /* RCTAppearance.mm in Sources */ = {isa = PBXBuildFile; fileRef = 6FA58CBA536D9D7DE17B1A12D0597543 /* 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"; }; }; + CF493AFA42F93679AB2FC6F41FA812DA /* enc.c in Sources */ = {isa = PBXBuildFile; fileRef = A8101FE06157EF4DF41B0814106EA0C5 /* enc.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; + CF660C8E50A63C8FEF2DFB5735DAF1F7 /* RCTUIUtils.h in Headers */ = {isa = PBXBuildFile; fileRef = 8D3F832CBFE1481C2D75D252A84A5CD7 /* RCTUIUtils.h */; settings = {ATTRIBUTES = (Project, ); }; }; + CF7E8A7C81C418125C06402AC9BFA316 /* SDAnimatedImageRep.m in Sources */ = {isa = PBXBuildFile; fileRef = D587B7794B90AFAA1B084608EBAF0AF4 /* SDAnimatedImageRep.m */; }; + CF8905DB51A1A790C4044CC84CF6661E /* SKTapListenerImpl.m in Sources */ = {isa = PBXBuildFile; fileRef = CA9017152276C463BA9E96FB3B4A1CAA /* SKTapListenerImpl.m */; settings = {COMPILER_FLAGS = "-DDEBUG=1 -DFLIPPER_OSS=1 -DFB_SONARKIT_ENABLED=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -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"; }; }; + CFA4CB8722F057B6ED8AF4A8A288C6AB /* InlineExecutor.h in Headers */ = {isa = PBXBuildFile; fileRef = 744121C99DBD70574DF792930B81B772 /* InlineExecutor.h */; settings = {ATTRIBUTES = (Project, ); }; }; + CFC2893E8CAB6167A8B16EA411505050 /* fast-dtoa.cc in Sources */ = {isa = PBXBuildFile; fileRef = 9EA70BC335E7EFA9FDBBBF88EC1184D1 /* fast-dtoa.cc */; settings = {COMPILER_FLAGS = "-Wno-unreachable-code"; }; }; + CFD8C0C1E94C6D25D401F425ACCEC229 /* FlipperKitLayoutPlugin.mm in Sources */ = {isa = PBXBuildFile; fileRef = 87CD7BBC73225B28898DB1170D2A4ABC /* FlipperKitLayoutPlugin.mm */; settings = {COMPILER_FLAGS = "-DDEBUG=1 -DFLIPPER_OSS=1 -DFB_SONARKIT_ENABLED=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -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"; }; }; + CFD997F262E8D60E5865F8FEF9B8AF75 /* RCTUtils.h in Headers */ = {isa = PBXBuildFile; fileRef = FBEC5B8A9770701E345EA771EFD754F3 /* RCTUtils.h */; settings = {ATTRIBUTES = (Project, ); }; }; + CFF1CD9585A08783617CCBE27165930E /* BugsnagClient.m in Sources */ = {isa = PBXBuildFile; fileRef = F95D3E752D3BEF5CD0C2D28305CBD55F /* BugsnagClient.m */; }; + CFF4D15E6CB356511BE1CE966A62E925 /* RCTLocalAssetImageLoader.h in Headers */ = {isa = PBXBuildFile; fileRef = 0F7BE525AD2CFD7852E05CF11ACED876 /* RCTLocalAssetImageLoader.h */; settings = {ATTRIBUTES = (Project, ); }; }; + CFF7D74204321A47575654D5B5EE947E /* MallocImpl.h in Headers */ = {isa = PBXBuildFile; fileRef = F8A8F150C65DA05E27B5E645F96D3CA1 /* MallocImpl.h */; settings = {ATTRIBUTES = (Project, ); }; }; + D006701FE02D69821009538F50F6224D /* NSData+ImageContentType.h in Headers */ = {isa = PBXBuildFile; fileRef = 63205B9FA03B467A37E207D88C8DAE9E /* NSData+ImageContentType.h */; settings = {ATTRIBUTES = (Project, ); }; }; + D0069E977045411B013D0ADD8CAFC48F /* RNFetchBlobFS.m in Sources */ = {isa = PBXBuildFile; fileRef = A973AC58D9A2C5888133161AC7B2981F /* RNFetchBlobFS.m */; }; + D010ACF83D38D6A31D897B58891451E8 /* WaitOptions.h in Headers */ = {isa = PBXBuildFile; fileRef = 734EAD8AA0E6728D259F9A98AD0F4D8E /* WaitOptions.h */; settings = {ATTRIBUTES = (Project, ); }; }; + D02305B8D806444C1C09FF60E1854A8A /* Traits.h in Headers */ = {isa = PBXBuildFile; fileRef = 781F9F16AB50833322CA3BCCCCEE3C2A /* Traits.h */; settings = {ATTRIBUTES = (Project, ); }; }; + D0242C6D35390E27EF999B99AA5A6227 /* DynamicParser-inl.h in Headers */ = {isa = PBXBuildFile; fileRef = C70F4E086F9A06BF9983AE4769ADEACE /* DynamicParser-inl.h */; settings = {ATTRIBUTES = (Project, ); }; }; + D0276361743ECA670ED6CEDB334A8848 /* DecoratedAsyncTransportWrapper.h in Headers */ = {isa = PBXBuildFile; fileRef = A3F0637DFD5FDE161664BF407B7FC4B3 /* DecoratedAsyncTransportWrapper.h */; settings = {ATTRIBUTES = (Project, ); }; }; + D0436E60D6C2DDACADBBBDE556416C60 /* QBImagePickerController.m in Sources */ = {isa = PBXBuildFile; fileRef = 37C33F9E7D8C6775F654ED75C1DCFDC2 /* QBImagePickerController.m */; }; + D05968B92AC18C1A9BA37F4C96B5649A /* SKRequestInfo.m in Sources */ = {isa = PBXBuildFile; fileRef = 1503AB4B0CC23C79FD2C3B8501F8C851 /* SKRequestInfo.m */; settings = {COMPILER_FLAGS = "-DDEBUG=1 -DFLIPPER_OSS=1 -DFB_SONARKIT_ENABLED=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -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"; }; }; + D060C8768E1EFCCCB608E0741AD6A0DE /* bignum-dtoa.cc in Sources */ = {isa = PBXBuildFile; fileRef = B83FD2375577CE2B5BAEB16B9D586CC4 /* bignum-dtoa.cc */; settings = {COMPILER_FLAGS = "-Wno-unreachable-code"; }; }; + D06951B9A2D0F54A5BCDD714926DCC28 /* DeferObservable.h in Headers */ = {isa = PBXBuildFile; fileRef = 4E231934ED5D8D8EAF362949A9BCF46B /* DeferObservable.h */; settings = {ATTRIBUTES = (Project, ); }; }; + D0739AC1493F97419F3DA65F58CB53FF /* FIRCLSHandler.h in Headers */ = {isa = PBXBuildFile; fileRef = 092A59B0825956A4A19571C2B83804ED /* FIRCLSHandler.h */; settings = {ATTRIBUTES = (Project, ); }; }; + D088694BF913C587EDBFEA13CCE555B1 /* utilities.cc in Sources */ = {isa = PBXBuildFile; fileRef = FD966F6723FEA70CB4896D68ECDDA8B5 /* utilities.cc */; settings = {COMPILER_FLAGS = "-Wno-shorten-64-to-32"; }; }; + D0AED2A315A2C91A71EA791BBEF805D3 /* FrameFlags.h in Headers */ = {isa = PBXBuildFile; fileRef = 8CF744B5A7E7269E61FF69287E7453AA /* FrameFlags.h */; settings = {ATTRIBUTES = (Project, ); }; }; + D0C9B5D8E7F4D490825ED8A37FF3682A /* ClockGettimeWrappers.cpp in Sources */ = {isa = PBXBuildFile; fileRef = E559D9067DC554374AEE83E406D966B1 /* ClockGettimeWrappers.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -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\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors"; }; }; + D0F7B2D66885EA0FA527E9FC5916DF84 /* EXKeepAwake.h in Headers */ = {isa = PBXBuildFile; fileRef = 85C5E583C34060CFAC90E15745B7EBC6 /* EXKeepAwake.h */; settings = {ATTRIBUTES = (Project, ); }; }; + D0FE3AED8DF0963C1D9228EF5165FB44 /* SDAnimatedImage.h in Headers */ = {isa = PBXBuildFile; fileRef = 3ACECC4EA794A72E915804596408C485 /* SDAnimatedImage.h */; settings = {ATTRIBUTES = (Project, ); }; }; + D12EF53E0E90C261BC40A153B8D3F755 /* Barrier.cpp in Sources */ = {isa = PBXBuildFile; fileRef = E3473D58F3FD2F725F1CADF0934C85EC /* Barrier.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -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\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors"; }; }; + D1425F30444579F806FC4B1BD409CA49 /* Builtins.h in Headers */ = {isa = PBXBuildFile; fileRef = CC074BE074A2DC008C2AA872F35AD84E /* Builtins.h */; settings = {ATTRIBUTES = (Project, ); }; }; + D159D4E11432836449A732BACDD0E057 /* QBSlomoIconView.h in Headers */ = {isa = PBXBuildFile; fileRef = DA52BCCCE327BA8A224EED5CE8E55D25 /* QBSlomoIconView.h */; settings = {ATTRIBUTES = (Project, ); }; }; + D16188179BFD4C69E6A26E6ECF4018A2 /* lossless_enc_mips32.c in Sources */ = {isa = PBXBuildFile; fileRef = F78F110C5F8839D10F228F22B1E31F34 /* lossless_enc_mips32.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; + D169258E327AAC9F18AA5C649D168338 /* ExecutionObserver.h in Headers */ = {isa = PBXBuildFile; fileRef = 9C34960654A1BD689460A1875C947358 /* ExecutionObserver.h */; settings = {ATTRIBUTES = (Project, ); }; }; + D1742C87B06A2172D144BB377D635454 /* IPAddress.h in Headers */ = {isa = PBXBuildFile; fileRef = 5625A048FAFF3886B166D7F63E28317B /* IPAddress.h */; settings = {ATTRIBUTES = (Project, ); }; }; + D1777E34F68B7CE57F9F9F671A5F5743 /* InterProcessLock.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 472E01C9AEC8C9FAB8778EBCF77E0177 /* InterProcessLock.cpp */; settings = {COMPILER_FLAGS = "-x objective-c++"; }; }; + D182608FDFEC21E7230DFE29FA430907 /* RNPushKit.m in Sources */ = {isa = PBXBuildFile; fileRef = E93C31DAC71CF4E3EDCD9BFDEEC10A55 /* RNPushKit.m */; }; + D189D82E0DC5BDA9D6DDB7A411D89293 /* ConcurrentSkipList.h in Headers */ = {isa = PBXBuildFile; fileRef = F745E5844EBA717F3FE221B9D9AEB705 /* ConcurrentSkipList.h */; settings = {ATTRIBUTES = (Project, ); }; }; + D18D3F99DE8D4B4C9DFF7D385EE01CEC /* UIImage+Transform.m in Sources */ = {isa = PBXBuildFile; fileRef = 1B36AF39935C7942118976E194A3AA88 /* UIImage+Transform.m */; }; + D1A4E6F692C0EF4B7BFB40B303C7CC11 /* RCTEventAnimation.h in Headers */ = {isa = PBXBuildFile; fileRef = 7E62C4E75C3C64FEBDF28EA2731043A1 /* RCTEventAnimation.h */; settings = {ATTRIBUTES = (Project, ); }; }; + D1BDA618249913BD84342F6EFEA96F4F /* SysStat.cpp in Sources */ = {isa = PBXBuildFile; fileRef = EF9A525C1847A25D33B4CB692DAB7542 /* SysStat.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -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\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors"; }; }; + D1C31A83063B0A21CF36717D96EA3A21 /* SafeAreaSpacerViewLocalData.h in Headers */ = {isa = PBXBuildFile; fileRef = 7323E8E1B233223D42B8522731D41F6F /* SafeAreaSpacerViewLocalData.h */; settings = {ATTRIBUTES = (Project, ); }; }; + D1C7C636BFE05A44D04D0BC452DB1F13 /* RCTWrapperViewController.h in Headers */ = {isa = PBXBuildFile; fileRef = 800CD1A2C7E6B90875967C3F1B29E1ED /* RCTWrapperViewController.h */; settings = {ATTRIBUTES = (Project, ); }; }; + D2060A7EB155B11941B0F78B1A6FC825 /* DeferFlowable.h in Headers */ = {isa = PBXBuildFile; fileRef = 5197EE6E5D853011D1F9A8DCD5E562CB /* DeferFlowable.h */; settings = {ATTRIBUTES = (Project, ); }; }; + D2218811250512B253E458D69B2D1125 /* FBLPromise+Testing.h in Headers */ = {isa = PBXBuildFile; fileRef = C9465C6CD1FE3B85A35657A6D579F255 /* FBLPromise+Testing.h */; settings = {ATTRIBUTES = (Project, ); }; }; + D227A3BB1C487095211B979FBDB76050 /* FLEXNetworkObserver.mm in Sources */ = {isa = PBXBuildFile; fileRef = FEFFD15AD871DAA74E6314076A89F75E /* FLEXNetworkObserver.mm */; settings = {COMPILER_FLAGS = "-DDEBUG=1 -DFLIPPER_OSS=1 -DFB_SONARKIT_ENABLED=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -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"; }; }; + D22E7C79BE9E52E6F34C3B813EADDA82 /* FIRCLSExecutionIdentifierModel.h in Headers */ = {isa = PBXBuildFile; fileRef = 80FC216FC9B275DA01858715421E8073 /* FIRCLSExecutionIdentifierModel.h */; settings = {ATTRIBUTES = (Project, ); }; }; + D230F8FBDE1E3607C7072C3BB70903C3 /* Array.h in Headers */ = {isa = PBXBuildFile; fileRef = 882D99F716F206FFC588CDC394578B99 /* Array.h */; settings = {ATTRIBUTES = (Project, ); }; }; + D2479E83025D3FAA6D7A4847955A8EFD /* HazptrHolder.h in Headers */ = {isa = PBXBuildFile; fileRef = 773F5BF29EB55A7B72274000B1F32F1A /* HazptrHolder.h */; settings = {ATTRIBUTES = (Project, ); }; }; + D278910EB31317D7A5A6D1503557BCFD /* SDImageIOAnimatedCoderInternal.h in Headers */ = {isa = PBXBuildFile; fileRef = 664E133DB4DB60AA8FFC8F2CEF986B57 /* SDImageIOAnimatedCoderInternal.h */; settings = {ATTRIBUTES = (Project, ); }; }; + D28CD09BFDFD2E5AC3DF534BA5C77D0A /* SKHiddenWindow.m in Sources */ = {isa = PBXBuildFile; fileRef = 5849A6D1AB37F33B42AB1763065A9A35 /* SKHiddenWindow.m */; settings = {COMPILER_FLAGS = "-DDEBUG=1 -DFLIPPER_OSS=1 -DFB_SONARKIT_ENABLED=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -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"; }; }; + D29760FAD4D69F06FF9A81876EFC1A2D /* RCTDevSettings.mm in Sources */ = {isa = PBXBuildFile; fileRef = B4400AE4917C2A82AC54DE4C01C7A2C6 /* 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"; }; }; + D2AAEC5DBFA46DDE544625396C250E62 /* UMModuleRegistryAdapter.m in Sources */ = {isa = PBXBuildFile; fileRef = E52C581DD54A2EE36E349C1977879E10 /* UMModuleRegistryAdapter.m */; }; + D2E804AEBF7A492E6A1B5239864F1611 /* lossless_msa.c in Sources */ = {isa = PBXBuildFile; fileRef = 2AE5FF99A812F1C570B571923FC62A8C /* lossless_msa.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; + D2FE56AF7C37E3748048B570511C33AB /* CPortability.h in Headers */ = {isa = PBXBuildFile; fileRef = 1320F7AF98FD9273E696E7BE6D91C6E8 /* CPortability.h */; settings = {ATTRIBUTES = (Project, ); }; }; + D325E0621D44CDD9DF1BCC9357420927 /* MoveWrapper.h in Headers */ = {isa = PBXBuildFile; fileRef = 6600A25D731268212229B946BF930ABB /* MoveWrapper.h */; settings = {ATTRIBUTES = (Project, ); }; }; + D33D7C7EF6DECADDB8A1789E2C432321 /* RCTTextViewManager.h in Headers */ = {isa = PBXBuildFile; fileRef = B54F56C85788C5B0FA034D9D8D8037BD /* RCTTextViewManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; + D36CA62D71D994B530264DBB6E1A2BD2 /* GlobalThreadPoolList.h in Headers */ = {isa = PBXBuildFile; fileRef = 1E1934E14E1F07FEA3A927AD82CD777C /* GlobalThreadPoolList.h */; settings = {ATTRIBUTES = (Project, ); }; }; + D36D3DBE803DFE19BF001FC7D15E4389 /* firebasecore.nanopb.h in Headers */ = {isa = PBXBuildFile; fileRef = A01401321A90BC04771BAFEE60127391 /* firebasecore.nanopb.h */; settings = {ATTRIBUTES = (Project, ); }; }; + D3751571D5412DDF07AD3924F2558FDA /* RNCAppearanceProvider.m in Sources */ = {isa = PBXBuildFile; fileRef = 02010732C384E4EC93AEDA144951A11D /* RNCAppearanceProvider.m */; }; + D37E54825AFC54A8A19C9E7FC55392BF /* RCTProfileTrampoline-arm.S in Sources */ = {isa = PBXBuildFile; fileRef = D808E4B04022E80B4F0087DC180B0FC4 /* RCTProfileTrampoline-arm.S */; }; + D383B869F28B6DEBED364B45593D3B3A /* RCTAlertManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 61E4388E53D070EA79EB9F25037A47F5 /* RCTAlertManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; + D385945F1456195B0F8F1CC10A561652 /* RCTBaseTextInputView.h in Headers */ = {isa = PBXBuildFile; fileRef = B4AC3D11CD080D4B84DFC82ACE482AE0 /* RCTBaseTextInputView.h */; settings = {ATTRIBUTES = (Project, ); }; }; + D386146023749E669569309813E8B5AF /* EXAppleAuthentication-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 47C1A97C92EC5E34F7FCA9F0E7153EF6 /* EXAppleAuthentication-dummy.m */; }; + D3AD646828BE21420AFEEBDAF31C8822 /* libevent-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = A153C0CA7BA353404786AECB0BB90426 /* libevent-dummy.m */; }; + D3B9D945571F6196F906B3E670BC8504 /* strlcpy.c in Sources */ = {isa = PBXBuildFile; fileRef = BB52DF9D9AE2390B605532A766CECC04 /* strlcpy.c */; }; + D3E5EA68DC7F09B4B6C20923A582F141 /* pb_decode.c in Sources */ = {isa = PBXBuildFile; fileRef = 073C868461DCB538690281862C697D26 /* pb_decode.c */; settings = {COMPILER_FLAGS = "-fno-objc-arc -fno-objc-arc"; }; }; + D3EE36FD52C27DA3FC46CDC4A1007EE2 /* RNSScreen.m in Sources */ = {isa = PBXBuildFile; fileRef = 3F06AC025A552090FF558CA9B922D0AF /* RNSScreen.m */; }; + D3FA26836564EF7E75E19D100696DD92 /* dec_clip_tables.c in Sources */ = {isa = PBXBuildFile; fileRef = C9E31513156118A9EDB572F3109377DE /* dec_clip_tables.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; + D41ABC870A7D0F65CA210C02A4DA2CA1 /* ConnectionAcceptor.h in Headers */ = {isa = PBXBuildFile; fileRef = F239F9305BAA73762F877D2242AEBF5E /* ConnectionAcceptor.h */; settings = {ATTRIBUTES = (Project, ); }; }; + D42003C2458ECB513B323CEC5363E8F6 /* GULApplication.h in Headers */ = {isa = PBXBuildFile; fileRef = BA0B17C6CC0345E297879CD97FD2DF7F /* GULApplication.h */; settings = {ATTRIBUTES = (Project, ); }; }; + D4287F114B39BB224427B37307C7DF56 /* Expected.h in Headers */ = {isa = PBXBuildFile; fileRef = C59D3539338B1EF05CAF60908628092B /* Expected.h */; settings = {ATTRIBUTES = (Project, ); }; }; + D430141FB77ACDCE8D23AA0CF9AB2496 /* BSGEventUploader.h in Headers */ = {isa = PBXBuildFile; fileRef = 3DFE58DC280C24354C89ED8581F2AE58 /* BSGEventUploader.h */; settings = {ATTRIBUTES = (Project, ); }; }; + D4476CE76C8ECDCA06F0F0B9CBA457E6 /* Iterators.h in Headers */ = {isa = PBXBuildFile; fileRef = 34F9127BCE6091F21F68E4A6CA5D2BE6 /* Iterators.h */; settings = {ATTRIBUTES = (Project, ); }; }; + D463BC1B531667CA35CAEC8FA47E672E /* SSLSession.h in Headers */ = {isa = PBXBuildFile; fileRef = BC828387E0BD6C1F14CD1856FC3E6777 /* SSLSession.h */; settings = {ATTRIBUTES = (Project, ); }; }; + D46643CE3FC304A26E3BFD6D55C7BC10 /* RNCPicker.m in Sources */ = {isa = PBXBuildFile; fileRef = 62B2DB8A414D5FB0E633D83AC91D5846 /* RNCPicker.m */; }; + D47EACEF4C491E62CE53F7117E87E3BB /* FBLPromise+Await.h in Headers */ = {isa = PBXBuildFile; fileRef = 5455C0402CFDCE1DF1970166EF7B64BE /* FBLPromise+Await.h */; settings = {ATTRIBUTES = (Project, ); }; }; + D488AED92D3DEBBA25ADFD4E3981671B /* OpenSSLCertUtils.h in Headers */ = {isa = PBXBuildFile; fileRef = E85DBCFF9F297181E55A74A8EEF65F52 /* OpenSSLCertUtils.h */; settings = {ATTRIBUTES = (Project, ); }; }; + D4899D87DE84F6203B7790EBF7536129 /* OpenSSL.h in Headers */ = {isa = PBXBuildFile; fileRef = BAC4C285C8767C71E34E42BE3FC409D7 /* OpenSSL.h */; settings = {ATTRIBUTES = (Project, ); }; }; + D49264E31D0396BC7B225BD5A42DE88B /* LNAnimatorTemp.h in Headers */ = {isa = PBXBuildFile; fileRef = E9C099B8FB69ACE8F5CCB6D0B0963181 /* LNAnimatorTemp.h */; settings = {ATTRIBUTES = (Project, ); }; }; + D4975963569033DC9E2817049EAC96A3 /* SpookyHashV1.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 8BB9A3156E531E27C6E092ACDCB58F0E /* SpookyHashV1.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -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\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors"; }; }; + D4B0113D7006C10EECE8D98AB9C402D4 /* SKSwizzle.h in Headers */ = {isa = PBXBuildFile; fileRef = 0E1D83EBD460588DE708253C1605E043 /* SKSwizzle.h */; settings = {ATTRIBUTES = (Project, ); }; }; + D4C01C03DA7868C23E2304E207619F0A /* RCTUIManagerObserverCoordinator.mm in Sources */ = {isa = PBXBuildFile; fileRef = 486A73BDF336231C8B943E010DC27CFD /* RCTUIManagerObserverCoordinator.mm */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + D4D36A02C1E7E60BBBCA6E46D8A3F526 /* PublisherBase.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 30220F5F5960F9DC9BA06E83F1C5A86E /* PublisherBase.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -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 -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors"; }; }; + D4D996CDBD8ED6888B473FC243936069 /* dec_neon.c in Sources */ = {isa = PBXBuildFile; fileRef = CD4A5BA18FD10EFD3CBBB926AD7698F8 /* dec_neon.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; + D501094931CCD34DFD14E913A93D9FA2 /* event.h in Headers */ = {isa = PBXBuildFile; fileRef = 18A757F80BAEFF88D06B7D9C9E1D5719 /* event.h */; settings = {ATTRIBUTES = (Project, ); }; }; + D52FB42711662B1E4BECDD8DC3A84AAA /* BugsnagReactNativeEmitter.h in Headers */ = {isa = PBXBuildFile; fileRef = 76BBD5E47BF7A40D3B313E5ED316A3E7 /* BugsnagReactNativeEmitter.h */; settings = {ATTRIBUTES = (Project, ); }; }; + D530A23FD4ADB25091B7663568543BB2 /* RSocketErrors.h in Headers */ = {isa = PBXBuildFile; fileRef = 055D080F25379DA6232697488611E3A9 /* RSocketErrors.h */; settings = {ATTRIBUTES = (Project, ); }; }; + D54306B796BC391945E0AC0259DBBC06 /* FIRCLSReportUploader.m in Sources */ = {isa = PBXBuildFile; fileRef = B544B95949BACC91F99B62CEBE1DC6EA /* FIRCLSReportUploader.m */; }; + D563DAD7416638C30A1E7AE1C4992FDF /* FIRCLSBinaryImage.m in Sources */ = {isa = PBXBuildFile; fileRef = B424E6895C5689421DCACF865CF69CF3 /* FIRCLSBinaryImage.m */; }; + D565172C452B8AA6D040F4B8A784495D /* KeyValueHolder.h in Headers */ = {isa = PBXBuildFile; fileRef = 8B25F9FC1C5EE30742752D4DC22E5230 /* KeyValueHolder.h */; settings = {ATTRIBUTES = (Project, ); }; }; + D567595F33534AC8321756EEE72BF684 /* FIRCLSNetworkClient.m in Sources */ = {isa = PBXBuildFile; fileRef = 85B346A386483FBE901C171E2EC342F5 /* FIRCLSNetworkClient.m */; }; + D585CBB207964E76A58F90F0456AA6D9 /* SparseByteSet.h in Headers */ = {isa = PBXBuildFile; fileRef = A3B97CA912041A914E281D953A284D66 /* SparseByteSet.h */; settings = {ATTRIBUTES = (Project, ); }; }; + D58BF2B50064457F47A05442BF56C101 /* ReadMostlySharedPtr.h in Headers */ = {isa = PBXBuildFile; fileRef = DD26C00ED1F1F50D771825F0D69AECAC /* ReadMostlySharedPtr.h */; settings = {ATTRIBUTES = (Project, ); }; }; + D5BB24CD4D82D48AE68984151DF21DA8 /* RNFetchBlobReqBuilder.m in Sources */ = {isa = PBXBuildFile; fileRef = 46D8AFCB9404B9613D562E0D7C40D619 /* RNFetchBlobReqBuilder.m */; }; + D5D5EC3943D380AA2E85AE7DA92602E0 /* CacheLocality.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 3370375642DB3893F9A0FF2C4DA888DD /* CacheLocality.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -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\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors"; }; }; + D5E6947FEBB5C8EB029169E9393F1462 /* FIRCLSUserLogging.m in Sources */ = {isa = PBXBuildFile; fileRef = CDCEFBBEF34B5CC0DA26AE9BA7512A0B /* FIRCLSUserLogging.m */; }; + D5EB92A602170EED10EDF074306EABD1 /* ARTShapeManager.m in Sources */ = {isa = PBXBuildFile; fileRef = E2E49DD0C8929E7A7FD37E93CC1E9610 /* ARTShapeManager.m */; }; + D61F03C559E92884248EF73D7FFBF798 /* EXAVPlayerData.m in Sources */ = {isa = PBXBuildFile; fileRef = F7E5BFD9FD22173D1788D3711873E988 /* EXAVPlayerData.m */; }; + D62CEFC5FFE2D0D1E6A526806353A616 /* RNNativeViewHandler.h in Headers */ = {isa = PBXBuildFile; fileRef = 32B61E30AFF3C40AE5D8AA81D6BFB060 /* RNNativeViewHandler.h */; settings = {ATTRIBUTES = (Project, ); }; }; + D633152C75209231922CEF10F245FE08 /* UninitializedMemoryHacks.h in Headers */ = {isa = PBXBuildFile; fileRef = 047EB5D9D0F1FB0262FAD62995E308E9 /* UninitializedMemoryHacks.h */; settings = {ATTRIBUTES = (Project, ); }; }; + D63727DCE35DE5DD0587FA1FD2B24E75 /* BSG_KSString.c in Sources */ = {isa = PBXBuildFile; fileRef = 81C2928C33238876B1C6B4E8DCE5B610 /* BSG_KSString.c */; }; + D639203BB1E71731E27F44A2B455D821 /* BugsnagStackframe+Private.h in Headers */ = {isa = PBXBuildFile; fileRef = 6ADB9F02688559DC6ADDFCE27DE61F81 /* BugsnagStackframe+Private.h */; settings = {ATTRIBUTES = (Project, ); }; }; + D656579133542DACB1E311F8803D076E /* RCTInputAccessoryViewManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 87628F3E74C1F185BDD7E4430CED5C1F /* RCTInputAccessoryViewManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; + D6645A7DEA7F7FF38766A56D5720B614 /* RCTSwitch.h in Headers */ = {isa = PBXBuildFile; fileRef = B014B6CFDE21C3CDECA04DC8FB451F11 /* RCTSwitch.h */; settings = {ATTRIBUTES = (Project, ); }; }; + D66730DAC3D36B39891FABD9BDCBB137 /* RNCMaskedViewManager.m in Sources */ = {isa = PBXBuildFile; fileRef = 787632263E4D84C9B469FB2201F185BC /* RNCMaskedViewManager.m */; }; + D66B67405E7246FCC4573C8630B490F4 /* openssl_aes_locl.h in Headers */ = {isa = PBXBuildFile; fileRef = 4C52EEC241E3D896CBF67611F4A7C840 /* openssl_aes_locl.h */; settings = {ATTRIBUTES = (Project, ); }; }; + D673980E167192204E5CEA50F26CD685 /* RCTPicker.m in Sources */ = {isa = PBXBuildFile; fileRef = 1BA4EFA28CCED3C9B11C8850E0BF68FD /* RCTPicker.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + D67BD93FFBB048513B7FE5BA51683535 /* color_cache_utils.c in Sources */ = {isa = PBXBuildFile; fileRef = AEDA68E134190CE078D79652BF9C2981 /* color_cache_utils.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; + D6A4CB7D75E3E43A684491B7B4C0D44E /* project.pbxproj in Sources */ = {isa = PBXBuildFile; fileRef = BC40038B0C055C464BE0186522177E7E /* project.pbxproj */; }; + D6AB2700155C267B3F83E49CD675CB36 /* AtomicUnorderedMapUtils.h in Headers */ = {isa = PBXBuildFile; fileRef = 1B4A11AB4E78A45D7A88405AEAB34EDC /* AtomicUnorderedMapUtils.h */; settings = {ATTRIBUTES = (Project, ); }; }; + D6B706DF527F79D46421A1AB781116DA /* Rsa.m in Sources */ = {isa = PBXBuildFile; fileRef = CD39FA0EEC45B70E15BE7CA8C7174C22 /* Rsa.m */; }; + D6CDCE0D92C989DA5B1D41D325CA5D43 /* Subprocess.h in Headers */ = {isa = PBXBuildFile; fileRef = 71ACC4C1A02149D261222DA23F3686B9 /* Subprocess.h */; settings = {ATTRIBUTES = (Project, ); }; }; + D6CFF803D5CFBB47C2881B0675E96560 /* NamedThreadFactory.h in Headers */ = {isa = PBXBuildFile; fileRef = 15706575B7440D7628B450144A719850 /* NamedThreadFactory.h */; settings = {ATTRIBUTES = (Project, ); }; }; + D6EA6E73DF6371134D624495846D85A5 /* RCTBackedTextInputDelegateAdapter.h in Headers */ = {isa = PBXBuildFile; fileRef = C802EBADEC39C509D1798703A2EF936C /* RCTBackedTextInputDelegateAdapter.h */; settings = {ATTRIBUTES = (Project, ); }; }; + D6ED9DA795AFF8CA4766A52C2F8F0E1A /* Stdio.h in Headers */ = {isa = PBXBuildFile; fileRef = F2E56DAB7E0B81A22B49544037C2981C /* Stdio.h */; settings = {ATTRIBUTES = (Project, ); }; }; + D6F133DEE22C4D0EE2BA65C1F5DB9ED9 /* BSG_KSLogger.h in Headers */ = {isa = PBXBuildFile; fileRef = 13D25933EC1F44DDB6D4FD278A9B2F10 /* BSG_KSLogger.h */; settings = {ATTRIBUTES = (Project, ); }; }; + D703FA300E176F6B75B132E37E9E6087 /* ReadMostlySharedPtr.h in Headers */ = {isa = PBXBuildFile; fileRef = BC121D1EDEBCFC35A54337DD44518B26 /* ReadMostlySharedPtr.h */; settings = {ATTRIBUTES = (Project, ); }; }; + D72397CFE213F6C46F601E3916247A81 /* RCTManagedPointer.mm in Sources */ = {isa = PBXBuildFile; fileRef = DDB70A193A635C8BCEC6DB0D9B9A98A2 /* RCTManagedPointer.mm */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + D7289043640454906709E835422F50C2 /* F14Set.h in Headers */ = {isa = PBXBuildFile; fileRef = 74D9344571807628D2FB1AF92A446FFE /* F14Set.h */; settings = {ATTRIBUTES = (Project, ); }; }; + D732B59AE4F5C8484E6D4003A72A5F1B /* RValueReferenceWrapper.h in Headers */ = {isa = PBXBuildFile; fileRef = 5A8C79704538C86E3469598FB7E44944 /* RValueReferenceWrapper.h */; settings = {ATTRIBUTES = (Project, ); }; }; + D73C9627EFA65D29F255D7385EA5BE2F /* DiscriminatedPtr.h in Headers */ = {isa = PBXBuildFile; fileRef = C84F6A4F3C8674A1931287A3ADC662ED /* DiscriminatedPtr.h */; settings = {ATTRIBUTES = (Project, ); }; }; + D74CBF71354CF84C25B48453B83E8A8E /* TOActivityCroppedImageProvider.m in Sources */ = {isa = PBXBuildFile; fileRef = FC0F3870E08ADD6FFC9474C9A9AAAEA8 /* TOActivityCroppedImageProvider.m */; }; + D763DD696EF6B0BADA49BF23C8A739D5 /* RCTSurfaceHostingView.mm in Sources */ = {isa = PBXBuildFile; fileRef = AFD436FF59C479B66D2D812CE0111873 /* RCTSurfaceHostingView.mm */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + D76BC829A89C4D151E87BA2F32F5637E /* FirebaseCoreInternal.h in Headers */ = {isa = PBXBuildFile; fileRef = B7DFCF17D31149459375D9C1A6FF8CDC /* FirebaseCoreInternal.h */; settings = {ATTRIBUTES = (Project, ); }; }; + D77332625182B270309EFA885BA85CCF /* Base-inl.h in Headers */ = {isa = PBXBuildFile; fileRef = 382DCC36D2825C4806820091A9714389 /* Base-inl.h */; settings = {ATTRIBUTES = (Project, ); }; }; + D79681ECC1B50ADB3E07401C475C15C1 /* UMPermissionsMethodsDelegate.h in Headers */ = {isa = PBXBuildFile; fileRef = 1D154589323A5765686D3EAEED64220C /* UMPermissionsMethodsDelegate.h */; settings = {ATTRIBUTES = (Project, ); }; }; + D797960556ED5EF1F4B84898BDD03A91 /* animi.h in Headers */ = {isa = PBXBuildFile; fileRef = F238D27159B2F303D261196FF6A23BB9 /* animi.h */; settings = {ATTRIBUTES = (Project, ); }; }; + D79B6B95DDE7802E62C82D8976E3D2BE /* Uri.cpp in Sources */ = {isa = PBXBuildFile; fileRef = B76DC5ADB1F699F5B7C2F51EC0B9EC28 /* Uri.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -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\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors"; }; }; + D7A68A1C097762915261A2A3B43306E3 /* ARTText.h in Headers */ = {isa = PBXBuildFile; fileRef = 7900570F73C269A409F2F20B49AED1F3 /* ARTText.h */; settings = {ATTRIBUTES = (Project, ); }; }; + D7B9E25CD820E32E1A7169C913D64D26 /* SKResponseInfo.m in Sources */ = {isa = PBXBuildFile; fileRef = 8FA38133468760021D39118AA73ABB42 /* SKResponseInfo.m */; settings = {COMPILER_FLAGS = "-DDEBUG=1 -DFLIPPER_OSS=1 -DFB_SONARKIT_ENABLED=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -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"; }; }; + D7BDE86F5429FC91EC5AFE77B646263C /* ARTPattern.m in Sources */ = {isa = PBXBuildFile; fileRef = ABE7E447FE54B287BAD4DA779F117D2A /* ARTPattern.m */; }; + D7CD2264690844BB7E73A8F9A45CEC55 /* ReactMarker.cpp in Sources */ = {isa = PBXBuildFile; fileRef = DB3C75FB714D609425CC689E0D9A02A5 /* ReactMarker.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + D7D3E4DF9F097B5C380A18F4D95B58DC /* UMViewManagerAdapterClassesRegistry.h in Headers */ = {isa = PBXBuildFile; fileRef = C51F1A10A0787000C867688F83C16D3C /* UMViewManagerAdapterClassesRegistry.h */; settings = {ATTRIBUTES = (Project, ); }; }; + D7D4DEEE9049C83D3E986C0D603E0EB3 /* BSG_KSFileUtils.c in Sources */ = {isa = PBXBuildFile; fileRef = 9A27C96617D845E65927ED9FEBDC28B1 /* BSG_KSFileUtils.c */; }; + D7FE28F8B027BD51D31DC905A233C248 /* TOCropOverlayView.m in Sources */ = {isa = PBXBuildFile; fileRef = 3E9530758A87E541E75B2A9926991DE0 /* TOCropOverlayView.m */; }; + D82A6841B202F23715929FE0F4221F22 /* RNNotificationParser.h in Headers */ = {isa = PBXBuildFile; fileRef = C58D6937D5123E41801DC10A05F9B30B /* RNNotificationParser.h */; settings = {ATTRIBUTES = (Project, ); }; }; + D83C602D22593FF1E66C285AC1AB0059 /* AtomicHashArray.h in Headers */ = {isa = PBXBuildFile; fileRef = 9BD2DD1221D8C084608F1C491378119E /* AtomicHashArray.h */; settings = {ATTRIBUTES = (Project, ); }; }; + D84E163D51C6027FF4ABFC25F29FE9F0 /* FFFastImageView.h in Headers */ = {isa = PBXBuildFile; fileRef = 799BCB09D0D6E493BF6E6C86899802B0 /* FFFastImageView.h */; settings = {ATTRIBUTES = (Project, ); }; }; + D88EF4396DF2222F8FD3C05FDE91237A /* AtFork.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 03F6A81651428CF6A0D1B7CDC17AD860 /* 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"; }; }; + D89006E9BB643D4B36A5860AA79895ED /* SafeAssert.h in Headers */ = {isa = PBXBuildFile; fileRef = 4122EFEF1D07D4D60C23EB15CC4596BB /* SafeAssert.h */; settings = {ATTRIBUTES = (Project, ); }; }; + D8A4A382A5DB6A629DE76D333E1C7695 /* RCTLinkingManager.mm in Sources */ = {isa = PBXBuildFile; fileRef = 609CE645A138A2BF46AA3D76008405E6 /* 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"; }; }; + D8C0334DC0EF2D300793F474B6D42DB5 /* FIRInstallationsAPIService.h in Headers */ = {isa = PBXBuildFile; fileRef = 6879CFC650A2964667562910F7EC20B9 /* FIRInstallationsAPIService.h */; settings = {ATTRIBUTES = (Project, ); }; }; + D8DC21FC8DA8F5DBCFA64F8645EB2383 /* RCTSurfaceHostingProxyRootView.mm in Sources */ = {isa = PBXBuildFile; fileRef = 69FCFFFE6BA69F3725A2C6AA8E95CFBC /* RCTSurfaceHostingProxyRootView.mm */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + D8E55BE3E919643C7B5B129837170343 /* FIRCLSMachOSlice.m in Sources */ = {isa = PBXBuildFile; fileRef = 1A197B590039D6E16FE10EA16E6DEFAE /* FIRCLSMachOSlice.m */; }; + D8EB44941D789C53931B41B40870ACA3 /* BugsnagApp.h in Headers */ = {isa = PBXBuildFile; fileRef = 48EBD311B6C883948527E87141FD06B9 /* BugsnagApp.h */; settings = {ATTRIBUTES = (Project, ); }; }; + D8FAA87D29D8552A6400F06DD4882873 /* event.h in Headers */ = {isa = PBXBuildFile; fileRef = A0B2E4EEE31D000D9E7BA8D5758417BF /* event.h */; settings = {ATTRIBUTES = (Project, ); }; }; + D905C7C29C838ACDEFFB50DEDFFC83D6 /* StreamFragmentAccumulator.h in Headers */ = {isa = PBXBuildFile; fileRef = 90AF26C6F16CDF6E27F729A7BBDF1769 /* StreamFragmentAccumulator.h */; settings = {ATTRIBUTES = (Project, ); }; }; + D913F93C31A0C37A068FEEE5952951FF /* LNInterpolable.h in Headers */ = {isa = PBXBuildFile; fileRef = 53542ADB2E7CC2A889DDEB73926A3F49 /* LNInterpolable.h */; settings = {ATTRIBUTES = (Project, ); }; }; + D936A2558A2F68A746BB79D2DF7EE80F /* React-RCTImage-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = DF436128B506C1CB246BFDCD445191E3 /* React-RCTImage-dummy.m */; }; + D93AC3A2690A202A9C45D9C1DA332413 /* SKMacros.h in Headers */ = {isa = PBXBuildFile; fileRef = 1B8B1A0878D880B14F6BF7EC5A6AC3A9 /* SKMacros.h */; settings = {ATTRIBUTES = (Project, ); }; }; + D98D5E0F70D655730F87FDEF7277F9B0 /* REATransitionValues.m in Sources */ = {isa = PBXBuildFile; fileRef = 066C8FC82B14EF8D39E443B77EC76E7B /* REATransitionValues.m */; }; + D99AE5A21A2CD1DE5AD58B6BC7DBE0F1 /* FormatTraits.h in Headers */ = {isa = PBXBuildFile; fileRef = F348C17160791B418E4FCA6FE14C7C5F /* FormatTraits.h */; settings = {ATTRIBUTES = (Project, ); }; }; + D9A221A4D8C2277FE9AADCDD1BA5CCBF /* RNNotificationCenterListener.h in Headers */ = {isa = PBXBuildFile; fileRef = 3CFEB7250AB95ADB33F32D344AD223F3 /* RNNotificationCenterListener.h */; settings = {ATTRIBUTES = (Project, ); }; }; + D9A648FD9F8B2E837A081A9DD6F8AD74 /* RCTTurboModuleManager.mm in Sources */ = {isa = PBXBuildFile; fileRef = 900D4F320E989BC916568651EAC1858A /* RCTTurboModuleManager.mm */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + D9AC5833D84C7760EC10869719072E8C /* ExecutorWithPriority.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 13C67E640DC848233FB232A335CC4D28 /* 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"; }; }; + D9B92966AAB7317F372819FA21546850 /* Future-inl.h in Headers */ = {isa = PBXBuildFile; fileRef = 4AF7891C1BFB04B8A7DA1BF244602232 /* Future-inl.h */; settings = {ATTRIBUTES = (Project, ); }; }; + D9D0D0FD8A6F012C2C0AFA2859C6E342 /* Memory.h in Headers */ = {isa = PBXBuildFile; fileRef = DB0F68A6996C90EBB0D19A1A478038DC /* Memory.h */; settings = {ATTRIBUTES = (Project, ); }; }; + D9D7640C312E4F5D10B045C66F25D16D /* RCTConvert+RNNotifications.m in Sources */ = {isa = PBXBuildFile; fileRef = A9BF703E9789996BFAF54CC5BE39FE73 /* RCTConvert+RNNotifications.m */; }; + D9DB265BD5ECBEB3A4CA1F30BF923A0E /* BSG_KSSystemInfo.m in Sources */ = {isa = PBXBuildFile; fileRef = 11C8A17683EAEB03990D0596378D5B6F /* BSG_KSSystemInfo.m */; }; + D9DC1B02DFC7947A7092922C93E15C2D /* StaticTracepoint-ELFx86.h in Headers */ = {isa = PBXBuildFile; fileRef = BD5F1B1B639117DA8C0CA2F41DF28EF3 /* StaticTracepoint-ELFx86.h */; settings = {ATTRIBUTES = (Project, ); }; }; + D9E6889BE1390C1ADDD017DF60828CAA /* QBAlbumCell.m in Sources */ = {isa = PBXBuildFile; fileRef = D599233F99B35B87EF994B4D5B1C71BC /* QBAlbumCell.m */; }; + D9F28F1227DD0EEE49493C618A691E4C /* SDImageCacheConfig.h in Headers */ = {isa = PBXBuildFile; fileRef = 3343C82CEE19411C6CBD8CB3A3171548 /* SDImageCacheConfig.h */; settings = {ATTRIBUTES = (Project, ); }; }; + DA12577AE96A6BA6526A239AA272C315 /* FBDefines.h in Headers */ = {isa = PBXBuildFile; fileRef = 1A63131F460DE07B9433666C5A89E8CA /* FBDefines.h */; settings = {ATTRIBUTES = (Project, ); }; }; + DA378985EA01EA431BE45F8E4B4ACF37 /* SDWebImageDownloader.h in Headers */ = {isa = PBXBuildFile; fileRef = 5813C7E0097017B94D985EC9633FBFD0 /* SDWebImageDownloader.h */; settings = {ATTRIBUTES = (Project, ); }; }; + DA3FDECB52AFE0B482C1721436E777CD /* RAMBundleRegistry.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 81C4138655AC38E1C4521E44F2AC184F /* RAMBundleRegistry.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + DA4F57E0F093203C10A53E350EAAE95B /* Builtins.cpp in Sources */ = {isa = PBXBuildFile; fileRef = DA80D3B5DA6531D36906B8D9D79BC6B8 /* Builtins.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -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\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors"; }; }; + DA54986DE0F799C0A66A87CF9978537A /* Optional.h in Headers */ = {isa = PBXBuildFile; fileRef = 6B6E6F0A8CCB5C16B30A179313728A4B /* Optional.h */; settings = {ATTRIBUTES = (Project, ); }; }; + DA602C6DF90F29B1572281AF2A1FDE73 /* DynamicConverter.h in Headers */ = {isa = PBXBuildFile; fileRef = 17A3726E8A87693071F75BC68A931302 /* DynamicConverter.h */; settings = {ATTRIBUTES = (Project, ); }; }; + DA636222DA9E75CF2C38CA8DC92733C4 /* HazptrThrLocal.h in Headers */ = {isa = PBXBuildFile; fileRef = 9AFA5DF18E6F3D40FB109A02644C62EB /* HazptrThrLocal.h */; settings = {ATTRIBUTES = (Project, ); }; }; + DA7F055B98C0759CF395F2519C223C94 /* FIRErrorCode.h in Headers */ = {isa = PBXBuildFile; fileRef = 858A91D35A289C13652BDBFA8EA801DB /* FIRErrorCode.h */; settings = {ATTRIBUTES = (Project, ); }; }; + DA8137910C89004BD6788183E44231F6 /* FIRCLSProcess.h in Headers */ = {isa = PBXBuildFile; fileRef = 29F73B11296A1A175659C31CA2D81316 /* FIRCLSProcess.h */; settings = {ATTRIBUTES = (Project, ); }; }; + DA87F19D017A7A102E537A424DD3D508 /* RCTBorderDrawing.m in Sources */ = {isa = PBXBuildFile; fileRef = 6B899EB9E8E548617556D6BAFAC0E4A1 /* RCTBorderDrawing.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + DA9AA176337618B6466E7F9E7EB803AB /* react-native-simple-crypto-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = CE3E929EED8EF841424DA775AD25A066 /* react-native-simple-crypto-dummy.m */; }; + DAAF103C311E3FB40169A98237AB25FA /* Promise-inl.h in Headers */ = {isa = PBXBuildFile; fileRef = 4060AAB365A8B4BC247E2712AD2FD877 /* Promise-inl.h */; settings = {ATTRIBUTES = (Project, ); }; }; + DAB257F17F01DDB61220FEFC392C0779 /* IOBufQueue.h in Headers */ = {isa = PBXBuildFile; fileRef = EE68B46045F3D1266490C875E7E436DD /* IOBufQueue.h */; settings = {ATTRIBUTES = (Project, ); }; }; + DAD02E149AC71979546B05EC24A7B5C6 /* SysMembarrier.h in Headers */ = {isa = PBXBuildFile; fileRef = 309E0BE21E21A829975F7887ABD3D681 /* SysMembarrier.h */; settings = {ATTRIBUTES = (Project, ); }; }; + DAE3C15C1D0A5FFA2E93C88D66739046 /* huffman_encode_utils.c in Sources */ = {isa = PBXBuildFile; fileRef = 384F32B626CC9119D4D53C79667AE863 /* huffman_encode_utils.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; + DB063BB242DE9E1A9AF55CDE3AD6D715 /* Benchmark.cpp in Sources */ = {isa = PBXBuildFile; fileRef = B687F62A32AE1A4320D396AB328D17D5 /* Benchmark.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -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\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors"; }; }; + DB19E9946FABB16552DE8F298AEF01B0 /* FIRApp.h in Headers */ = {isa = PBXBuildFile; fileRef = FAFB7932D5F408B3087EE89AED92665A /* FIRApp.h */; settings = {ATTRIBUTES = (Project, ); }; }; + DB223BA5A36C80B35027E6D61A46FDF0 /* FIRHeartbeatInfo.h in Headers */ = {isa = PBXBuildFile; fileRef = 08F0D2E3ABA7D3542334418E87E0D79D /* FIRHeartbeatInfo.h */; settings = {ATTRIBUTES = (Project, ); }; }; + DB429C6AD36DDC50FBE3D0D0196DA61D /* REATransitionAnimation.m in Sources */ = {isa = PBXBuildFile; fileRef = 05B07042EA64AC71F4F63F6A2A59458E /* REATransitionAnimation.m */; }; + DB5501D8315E2BCBB882A376AED5DAEB /* Pbkdf2.h in Headers */ = {isa = PBXBuildFile; fileRef = 9CAA78DA637D210B287BB5C5FDA5F100 /* Pbkdf2.h */; settings = {ATTRIBUTES = (Project, ); }; }; + DB79DB99DAB83E85C34384892E1BC8CE /* CppAttributes.h in Headers */ = {isa = PBXBuildFile; fileRef = CC8F8557B9ECBD881EF9387282AD7DDF /* CppAttributes.h */; settings = {ATTRIBUTES = (Project, ); }; }; + DB7A96EA50076FAF5C5981D0A44AD264 /* AtomicNotification-inl.h in Headers */ = {isa = PBXBuildFile; fileRef = FF114CF0CE7C0C6953191EBCF4CBBB38 /* AtomicNotification-inl.h */; settings = {ATTRIBUTES = (Project, ); }; }; + DBA98B4A0209E0C42E4D56916E6324A1 /* RSocketServiceHandler.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 608CAE17196F36A656F194BBBEE79D45 /* RSocketServiceHandler.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -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 -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors"; }; }; + DBB2F9754690951A904C68188C09ED2D /* REAJSCallNode.h in Headers */ = {isa = PBXBuildFile; fileRef = F6CBEE43C9FDE7721945939CE7EAC722 /* REAJSCallNode.h */; settings = {ATTRIBUTES = (Project, ); }; }; + DBB73F9B5BEFADEC0677F81244C7D427 /* SlowFingerprint.h in Headers */ = {isa = PBXBuildFile; fileRef = FD4F74679C5E74C71997193C5A3D3FFC /* SlowFingerprint.h */; settings = {ATTRIBUTES = (Project, ); }; }; + DBC71DA62D9D4914708A33D40A8B4F4E /* Executor.h in Headers */ = {isa = PBXBuildFile; fileRef = 4149D187FBE5120B4A965DA5F457E6E7 /* Executor.h */; settings = {ATTRIBUTES = (Project, ); }; }; + DC32DEE681EF3B39282A3D9466190FED /* RCTLayout.m in Sources */ = {isa = PBXBuildFile; fileRef = A311B1DBB401A97B5CD759FBDE004D66 /* RCTLayout.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + DC4B7306480A37D91D3C4833E13F13F6 /* dec_msa.c in Sources */ = {isa = PBXBuildFile; fileRef = 8DB07C15FAEB63072555E50564510204 /* dec_msa.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; + DC4E63A817B5C8D1ED52CFCB75BD722D /* RCTRootView.h in Headers */ = {isa = PBXBuildFile; fileRef = 193D2ADCED8B78496708FBA2E5C135CD /* RCTRootView.h */; settings = {ATTRIBUTES = (Project, ); }; }; + DC7AB3AFDC563755C3CF3412840E0FFD /* TOCropView.h in Headers */ = {isa = PBXBuildFile; fileRef = C1B78497C118D797D5ADBEE63ACB1B20 /* TOCropView.h */; settings = {ATTRIBUTES = (Project, ); }; }; + DC85353AD13F3816EA405E01EB66B867 /* Replaceable.h in Headers */ = {isa = PBXBuildFile; fileRef = B3ADE572FF5E4A6BC753131678DE7389 /* Replaceable.h */; settings = {ATTRIBUTES = (Project, ); }; }; + DC98FB096D281DA1CD5EDB4CB34391A2 /* Pods-ShareRocketChatRN-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 81ABB69299E6F3BB892E995CFDCECD7A /* Pods-ShareRocketChatRN-dummy.m */; }; + DCC3DA2DE9E5E380C04A72257BAAD392 /* UICollectionView+SKInvalidation.h in Headers */ = {isa = PBXBuildFile; fileRef = F6FA02EAEB1035A6D80BCA07414C14A8 /* UICollectionView+SKInvalidation.h */; settings = {ATTRIBUTES = (Project, ); }; }; + DCCE5E235A01B4D7042648D6481A4E2C /* FBLPromise+Any.m in Sources */ = {isa = PBXBuildFile; fileRef = 20E8543AA6C1645A215228802D850FD4 /* FBLPromise+Any.m */; }; + DCD4EDE7331F09B2CEA22A784A8C50DD /* NativeToJsBridge.h in Headers */ = {isa = PBXBuildFile; fileRef = 8C703C90ACBCAD43054EB317D29CF447 /* NativeToJsBridge.h */; settings = {ATTRIBUTES = (Project, ); }; }; + DD081433E41DE52CCBBAE3180F4101D5 /* BugsnagUser+Private.h in Headers */ = {isa = PBXBuildFile; fileRef = 180E202451F4D1F49DA7B991516004C8 /* BugsnagUser+Private.h */; settings = {ATTRIBUTES = (Project, ); }; }; + DD20E84C34CB119AF87706323005BC02 /* Malloc.h in Headers */ = {isa = PBXBuildFile; fileRef = 6E7A6AC098EA7FC4D802E3FD91654402 /* Malloc.h */; settings = {ATTRIBUTES = (Project, ); }; }; + DD2258059F12CF79AE07687841309AE0 /* ScopedLock.hpp in Headers */ = {isa = PBXBuildFile; fileRef = E88B8B5BD70965A723C4F388A858D6FF /* ScopedLock.hpp */; settings = {ATTRIBUTES = (Project, ); }; }; + DD2851ED0A97EFA74A05CF1926FC70B4 /* evmap-internal.h in Headers */ = {isa = PBXBuildFile; fileRef = D2788447DB5BB0C9AC58C348C764FAFA /* evmap-internal.h */; settings = {ATTRIBUTES = (Project, ); }; }; + DD289E5348EC62547A84451EB096442C /* MacAddress.h in Headers */ = {isa = PBXBuildFile; fileRef = 006F33D73E48AE2F8240FE1902056A9A /* MacAddress.h */; settings = {ATTRIBUTES = (Project, ); }; }; + DD29B3D337FF7B39A5460294D28FA75B /* Hardware.h in Headers */ = {isa = PBXBuildFile; fileRef = 616490565B5D75C1FD12828608D07A8F /* Hardware.h */; settings = {ATTRIBUTES = (Project, ); }; }; + DD2A2AE68CE42AD07A29CD9F8946A99A /* Portability.h in Headers */ = {isa = PBXBuildFile; fileRef = 21054BFDA963CAE53BC6C0C930D1F0F1 /* Portability.h */; settings = {ATTRIBUTES = (Project, ); }; }; + DD39B0BFC0C8361F423318D11636B932 /* SSLSessionImpl.h in Headers */ = {isa = PBXBuildFile; fileRef = 52E2B0BEB8C4F7BEEAB90F39920D084B /* SSLSessionImpl.h */; settings = {ATTRIBUTES = (Project, ); }; }; + DD418A9B3922FF14EF8857AF0F2DC640 /* FIRCLSAllocate.h in Headers */ = {isa = PBXBuildFile; fileRef = E56D2743944F33EEACBFD17834DF29B6 /* FIRCLSAllocate.h */; settings = {ATTRIBUTES = (Project, ); }; }; + DD41A379B6C9DEFF3DB46FAD0423B3CB /* RCTInputAccessoryView.m in Sources */ = {isa = PBXBuildFile; fileRef = 166CC9ED82C474FE161D11939ACB4603 /* RCTInputAccessoryView.m */; }; + DD90262C3472476C82B036E1181D964A /* RCTModalManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 3564137E5147D08FEB10AA993954079C /* RCTModalManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; + DDAB140FA5DC49C908678415AEA454BB /* Instance.cpp in Sources */ = {isa = PBXBuildFile; fileRef = E084F2E7A1D6CE8510B553B7752D8AF8 /* Instance.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + DDB5935AB7141AF0DFA2657E9E5FDFC7 /* EDFThreadPoolExecutor.cpp in Sources */ = {isa = PBXBuildFile; fileRef = B86B10A33F3C3D54F749DF9E17558B5E /* EDFThreadPoolExecutor.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -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\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors"; }; }; + DDE6F2D2558BC31004E59CA4818E472A /* dynamic.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 7A2FD8546F23D09DEA8138756FE8D1DC /* 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"; }; }; + DDE802AD7EBDD28B3F6DA701F2503F77 /* FIRErrorCode.h in Headers */ = {isa = PBXBuildFile; fileRef = 85F73654092BD3D6F64B5A58B90BB4CD /* FIRErrorCode.h */; settings = {ATTRIBUTES = (Project, ); }; }; + DE0AC9BA697D88A6434E5F952A681DA1 /* JSIndexedRAMBundle.h in Headers */ = {isa = PBXBuildFile; fileRef = C812C7A2CA1618D49935EEBB8E88B6B1 /* JSIndexedRAMBundle.h */; settings = {ATTRIBUTES = (Project, ); }; }; + DE125D62DEBE9848F4A8F2FD6290CB4C /* diy-fp.cc in Sources */ = {isa = PBXBuildFile; fileRef = B07548603CA2ADF5B6A45D3C2F0A74E5 /* diy-fp.cc */; settings = {COMPILER_FLAGS = "-Wno-unreachable-code"; }; }; + DE13BD5DB2637653C3998C7678D21649 /* RCTScrollableProtocol.h in Headers */ = {isa = PBXBuildFile; fileRef = F187605B680E0AC816088473ED8A6B8A /* RCTScrollableProtocol.h */; settings = {ATTRIBUTES = (Project, ); }; }; + DE2014006CEF647204EEFF054CAF2046 /* RCTAdditionAnimatedNode.m in Sources */ = {isa = PBXBuildFile; fileRef = 3AA3AD4D4DB59AE6396FD9BDCFC67ABC /* 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"; }; }; + DE31CEC4EF3254ED6DFB8775BCA7BA60 /* GroupVarint.h in Headers */ = {isa = PBXBuildFile; fileRef = 678E3002589DDA14061695B8B139AAE3 /* GroupVarint.h */; settings = {ATTRIBUTES = (Project, ); }; }; + DE3B56D5420B33673E24DDF32E842FAC /* REANode.m in Sources */ = {isa = PBXBuildFile; fileRef = 49E2001FCEA7FC2DD9BC5F8A722F8011 /* REANode.m */; }; + DE829485536559A69F378500960E1A31 /* FIRCLSCrashedMarkerFile.c in Sources */ = {isa = PBXBuildFile; fileRef = 0F656B99CDE6A4B18486ACC0CB00726B /* FIRCLSCrashedMarkerFile.c */; }; + DE92F0A5560923CA60E1ED3D7691820C /* FIRCLSNetworkResponseHandler.h in Headers */ = {isa = PBXBuildFile; fileRef = 84F9ACFD0FB94E6C1932AEC5F8062C35 /* FIRCLSNetworkResponseHandler.h */; settings = {ATTRIBUTES = (Project, ); }; }; + DEAC2716EF318CF4B766809A461F9183 /* Allowance.h in Headers */ = {isa = PBXBuildFile; fileRef = 08010035679FEE5E6091D4ACF7366ADE /* Allowance.h */; settings = {ATTRIBUTES = (Project, ); }; }; + DEC2AADA44758DB8F12C9BE5773D6A2F /* RCTRawTextShadowView.h in Headers */ = {isa = PBXBuildFile; fileRef = 8FB1C4D54632CC114605D22467F9372D /* RCTRawTextShadowView.h */; settings = {ATTRIBUTES = (Project, ); }; }; + DEC7176B8E1A9F47B87FA02C6CC13D96 /* RCTRefreshControlManager.h in Headers */ = {isa = PBXBuildFile; fileRef = B07F676F038A947FB374C7219F06F0B5 /* RCTRefreshControlManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; + DED13A8A1B70CBA78C9B05D288A06F08 /* FIRCLSSignal.h in Headers */ = {isa = PBXBuildFile; fileRef = 1536F69CC6F86DAD1A696AF309BFCD75 /* FIRCLSSignal.h */; settings = {ATTRIBUTES = (Project, ); }; }; + DEE13E74C98D5C688C25A78A4AD8C3AF /* ChannelResponder.h in Headers */ = {isa = PBXBuildFile; fileRef = FFDA049D1A5FC9943216AE3AEFB3D2F4 /* ChannelResponder.h */; settings = {ATTRIBUTES = (Project, ); }; }; + DEEDFC61EB9BEE19F72BAD858BE52B72 /* Future-pre.h in Headers */ = {isa = PBXBuildFile; fileRef = BA90AAA853CBF34D0C78AA6018B36724 /* Future-pre.h */; settings = {ATTRIBUTES = (Project, ); }; }; + DF3C546C1CD5C42258EFEA35EC1C77AD /* RCTFrameUpdate.h in Headers */ = {isa = PBXBuildFile; fileRef = AF10CBD12AA62234E58F17BC712BB165 /* RCTFrameUpdate.h */; settings = {ATTRIBUTES = (Project, ); }; }; + DF41FDC835C9BCC2D838A0AD84DBF932 /* BugsnagReactNativeEmitter.m in Sources */ = {isa = PBXBuildFile; fileRef = 2DC70E070F382D3F08B01B7B4F06CD00 /* BugsnagReactNativeEmitter.m */; }; + DF477BB1782CD811326B49113384DFCC /* RCTNetworking.mm in Sources */ = {isa = PBXBuildFile; fileRef = 8B11C71699DC740A7D05AF64BC950BDD /* 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"; }; }; + DF49BD501C436FC43D4AC96692CA1653 /* Singleton.h in Headers */ = {isa = PBXBuildFile; fileRef = 3D5A8006CE66052958B098C57B19D164 /* Singleton.h */; settings = {ATTRIBUTES = (Project, ); }; }; + DF762D589D26616908008D4D40387251 /* HHWheelTimer-fwd.h in Headers */ = {isa = PBXBuildFile; fileRef = A331DA9E6FED246046610474DFFF9506 /* HHWheelTimer-fwd.h */; settings = {ATTRIBUTES = (Project, ); }; }; + DF91763D40655523783ED4A987EC4B52 /* FIRComponentType.m in Sources */ = {isa = PBXBuildFile; fileRef = B1C51DD87B30358E7B653A7186A36086 /* FIRComponentType.m */; }; + DF9556B84ADFE4CE9EE11C32BE59194F /* REATransitionAnimation.h in Headers */ = {isa = PBXBuildFile; fileRef = 8F6CB3F06A39DBD81E67FDD710F76D48 /* REATransitionAnimation.h */; settings = {ATTRIBUTES = (Project, ); }; }; + DF96B65C7C2933BCDF82969CB62ADAFF /* LifoSem.h in Headers */ = {isa = PBXBuildFile; fileRef = 2C6CD5096556A39C355942B27E200401 /* LifoSem.h */; settings = {ATTRIBUTES = (Project, ); }; }; + DF9E79B0D996BE7382D2592FBE151A66 /* RCTInspectorPackagerConnection.h in Headers */ = {isa = PBXBuildFile; fileRef = F80E4469818647F9466CAF65D9F2EE98 /* RCTInspectorPackagerConnection.h */; settings = {ATTRIBUTES = (Project, ); }; }; + DFA8770080D1BA696CE0E10515F7AD18 /* StaticTracepoint.h in Headers */ = {isa = PBXBuildFile; fileRef = 65006B7C8CA2B519FB06B8743C22360F /* StaticTracepoint.h */; settings = {ATTRIBUTES = (Project, ); }; }; + DFBC2EE3CA51C3C614AF80ECF296338F /* HermesExecutorFactory.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 89EFEB908F793F34551438DE8C0039E9 /* HermesExecutorFactory.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + DFD25A9CB294B73A341AAA9E4B3477E2 /* GDTCORRegistrar.h in Headers */ = {isa = PBXBuildFile; fileRef = 0B300BB25EF30C17CBE911EBDDC1D628 /* GDTCORRegistrar.h */; settings = {ATTRIBUTES = (Project, ); }; }; + DFD898B2B1A192FF84402830AD32B64E /* CpuId.h in Headers */ = {isa = PBXBuildFile; fileRef = 31765A528D343C0F64693199139E4A7A /* CpuId.h */; settings = {ATTRIBUTES = (Project, ); }; }; + DFE164B29E57E2A8B57422A147F7489B /* RCTConvert+CoreLocation.h in Headers */ = {isa = PBXBuildFile; fileRef = BD7848B983A057E3E9D2FA433AFCFE2C /* RCTConvert+CoreLocation.h */; settings = {ATTRIBUTES = (Project, ); }; }; + E0074E89428636960AFCB0F53888933A /* encode.h in Headers */ = {isa = PBXBuildFile; fileRef = 34A2A73F67A71FD934228B600D8E9854 /* encode.h */; settings = {ATTRIBUTES = (Project, ); }; }; + E00C171AEFE9A9D23C3CA15BCFCBE775 /* SDGraphicsImageRenderer.h in Headers */ = {isa = PBXBuildFile; fileRef = FE83732058AC5994FE21C50230D73E66 /* SDGraphicsImageRenderer.h */; settings = {ATTRIBUTES = (Project, ); }; }; + E018DEE8B7C25C2488263378FE3DAD85 /* ExceptionWrapper.h in Headers */ = {isa = PBXBuildFile; fileRef = 84C89852793C8922FF1D6719F61EECDF /* ExceptionWrapper.h */; settings = {ATTRIBUTES = (Project, ); }; }; + E01FBCDE47B0D03BF7160BD7592E52AF /* Flipper-Glog-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 1FC8C7FEF43365F0F3E9C8898A5CD658 /* Flipper-Glog-dummy.m */; }; + E045D13EA0473981ADA5990F91C95303 /* MemoryFile_Android.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 4855563978F494CAF5E970F8E2AB7688 /* MemoryFile_Android.cpp */; settings = {COMPILER_FLAGS = "-x objective-c++ -fno-objc-arc"; }; }; + E05070D25885B36129E52C0862B2E5B2 /* ARTGroupManager.m in Sources */ = {isa = PBXBuildFile; fileRef = F12632781D16C90A6A7C19F0A5B4CE37 /* ARTGroupManager.m */; }; + E057B0DE358972F1A47FF7D8AABCE446 /* RCTInspector.h in Headers */ = {isa = PBXBuildFile; fileRef = 9DCAC8DEF32BB328348010B9B668C695 /* RCTInspector.h */; settings = {ATTRIBUTES = (Project, ); }; }; + E06BE8765C48752E74780E7E8DC5034B /* ExecutorWithPriority-inl.h in Headers */ = {isa = PBXBuildFile; fileRef = BB16EC06441BBAD5366188EEF93E012B /* ExecutorWithPriority-inl.h */; settings = {ATTRIBUTES = (Project, ); }; }; + E0739E40731A4673DF29B8721AA3F9D7 /* BugsnagLogger.h in Headers */ = {isa = PBXBuildFile; fileRef = 9E9F0CA0AD24E936C9349B1E2AB23F1B /* BugsnagLogger.h */; settings = {ATTRIBUTES = (Project, ); }; }; + E083AE0A831B82FEED8E937CD648C5BA /* ThreadLock.h in Headers */ = {isa = PBXBuildFile; fileRef = C2BBFDF4951B2F34F4374712C320CE3A /* ThreadLock.h */; settings = {ATTRIBUTES = (Project, ); }; }; + E0857B46FD1EA2B56B7D051FA3CC5C61 /* REANodesManager.m in Sources */ = {isa = PBXBuildFile; fileRef = 714FDC1F96F45101C4BC7D6DD7B54EEF /* REANodesManager.m */; }; + E085F3D67AF22D47E98B576572EC4C34 /* SharedPromise.h in Headers */ = {isa = PBXBuildFile; fileRef = 21AFBFF58BAA3F1715D6C5905343CEC6 /* SharedPromise.h */; settings = {ATTRIBUTES = (Project, ); }; }; + E087BC9F8916EC9E088076C26E572A27 /* QBImagePicker.storyboard in Resources */ = {isa = PBXBuildFile; fileRef = 82B6675A30D703760C2724DA313A4810 /* QBImagePicker.storyboard */; }; + E0961666EDBE87A69A370A4A9E356554 /* filters_msa.c in Sources */ = {isa = PBXBuildFile; fileRef = 13C7C23927BFA046631D345702EBDBB8 /* filters_msa.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; + E0A74342CF72A243449AC2D7342D74C8 /* ClockGettimeWrappers.h in Headers */ = {isa = PBXBuildFile; fileRef = 6BC67F1764F31A03B7BB1DE84A5605F3 /* ClockGettimeWrappers.h */; settings = {ATTRIBUTES = (Project, ); }; }; + E0B1D2AF8727104AA232E91900FF8B67 /* EventBaseLocal.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 29CBC3A2E60A8AFE6E309183A1094450 /* EventBaseLocal.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -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\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors"; }; }; + E0B59B9295BB44A284B36AE953330A80 /* FFFastImageViewManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 810FC76323A81943B3F0F148F51B82F7 /* FFFastImageViewManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; + E0B5E9712D2800342FDFD8D6C4C6C4A2 /* double-conversion.cc in Sources */ = {isa = PBXBuildFile; fileRef = 47209F5C4D4AA093F63BFB56CCEB7FB3 /* double-conversion.cc */; settings = {COMPILER_FLAGS = "-Wno-unreachable-code"; }; }; + E0BE5A58ACFB037C0B4065E893E1BD7F /* SetupResumeAcceptor.h in Headers */ = {isa = PBXBuildFile; fileRef = 73CDF81B12C70A6D012FA67A3587C67C /* SetupResumeAcceptor.h */; settings = {ATTRIBUTES = (Project, ); }; }; + E0C74EBAD5EA1E588C4565B77D8D13F1 /* RNJitsiMeetView.h in Headers */ = {isa = PBXBuildFile; fileRef = B516B3668347996229395EAAAF8389BB /* RNJitsiMeetView.h */; settings = {ATTRIBUTES = (Project, ); }; }; + E0E42613D848A95A8F2D8801C37A7225 /* ProxyLockable.h in Headers */ = {isa = PBXBuildFile; fileRef = FC7C8C95530C3414B1CCCB71B37AB0B6 /* ProxyLockable.h */; settings = {ATTRIBUTES = (Project, ); }; }; + E0E73D3E78087C2CA1DA5F9345BB92BC /* lossless_enc_neon.c in Sources */ = {isa = PBXBuildFile; fileRef = 604F728306ABB6F1C920CE8533DBA37C /* lossless_enc_neon.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; + E1059E5C254C39B23A4E5611F0A0F3E9 /* TurnSequencer.h in Headers */ = {isa = PBXBuildFile; fileRef = C0ABEB63E7D7AD3EE90F270C36817B76 /* TurnSequencer.h */; settings = {ATTRIBUTES = (Project, ); }; }; + E121E33746093AA96B0019743548483E /* RCTModuleData.h in Headers */ = {isa = PBXBuildFile; fileRef = 156DDD2C3EAE413EE657D5680BDD0EB5 /* RCTModuleData.h */; settings = {ATTRIBUTES = (Project, ); }; }; + E12233CEBA5103F2EFDF2485E0AA3E41 /* RCTEventDispatcherProtocol.h in Headers */ = {isa = PBXBuildFile; fileRef = B902097AB0865E942278A788B4ECADA1 /* RCTEventDispatcherProtocol.h */; settings = {ATTRIBUTES = (Project, ); }; }; + E12957A994CEBC0D8AB14C53AC29A635 /* SysTime.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 59CDB952F1186C0ADD1A80E021C55B9B /* SysTime.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -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\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors"; }; }; + E12A5DA02DAAED067B7D62596133CAF6 /* BSGOnErrorSentBlock.h in Headers */ = {isa = PBXBuildFile; fileRef = 697814417C338E1616C26D60D8843D88 /* BSGOnErrorSentBlock.h */; settings = {ATTRIBUTES = (Project, ); }; }; + E14631AB774130E38512B80F1CC17841 /* Pods-defaults-RocketChatRN-umbrella.h in Headers */ = {isa = PBXBuildFile; fileRef = BE44CBCE6C75B26E95A4555F9D976298 /* Pods-defaults-RocketChatRN-umbrella.h */; settings = {ATTRIBUTES = (Project, ); }; }; + E1755846F294C7DE6ACC28E4355178A6 /* StaticSingletonManager.cpp in Sources */ = {isa = PBXBuildFile; fileRef = F77B08D31ED678F2A63EFEBF905B9087 /* StaticSingletonManager.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -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\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors"; }; }; + E17B1050B9BE62998D15A5B7C3FB9218 /* UMSingletonModule.h in Headers */ = {isa = PBXBuildFile; fileRef = 3286ECC1E3DCBE4667605820D5A6FB12 /* UMSingletonModule.h */; settings = {ATTRIBUTES = (Project, ); }; }; + E181EFF1D82F2C246F3C692C681462BC /* REAModule.m in Sources */ = {isa = PBXBuildFile; fileRef = 0310EA46F7784672052765AA34A76A98 /* REAModule.m */; }; + E18E958D2C730FEF152AF9E45CB29DE0 /* BSG_KSCrashState.m in Sources */ = {isa = PBXBuildFile; fileRef = 96C6478B16331AA6109135B6553E2233 /* BSG_KSCrashState.m */; }; + E1983A58129A6A691A4114E9A6F543FB /* FBLPromise+Do.h in Headers */ = {isa = PBXBuildFile; fileRef = 41F359E3D9B9BE9B9AC7515C18F685DF /* FBLPromise+Do.h */; settings = {ATTRIBUTES = (Project, ); }; }; + E1C92AEEAF907D9FBB3D536670867DE4 /* UMAppLoaderProvider.m in Sources */ = {isa = PBXBuildFile; fileRef = 7159B60E5811C6AD44AB91EA1C4150DA /* UMAppLoaderProvider.m */; }; + E1E24F7426650A214E096CA62EFE4540 /* frame_enc.c in Sources */ = {isa = PBXBuildFile; fileRef = 57BACE8EA702B6077D884198A4BD230A /* frame_enc.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; + E1E8D74B6DEAF85073752EB8E2E0C9A3 /* RCTCrypto-Bridging-Header.h in Headers */ = {isa = PBXBuildFile; fileRef = 47503253566B817495A9571A4504D672 /* RCTCrypto-Bridging-Header.h */; settings = {ATTRIBUTES = (Project, ); }; }; + E1EE9A2383D47B81240AAC2F8A5180F7 /* BugsnagConfigSerializer.h in Headers */ = {isa = PBXBuildFile; fileRef = 97F83FBADCFDF7E6A192341BCD09CA2A /* BugsnagConfigSerializer.h */; settings = {ATTRIBUTES = (Project, ); }; }; + E1FEB0BDF20E773514504199EB6AA5D9 /* SocketFileDescriptorMap.h in Headers */ = {isa = PBXBuildFile; fileRef = F4B8D69415A8D7A469F7EB8AD4E07DB9 /* SocketFileDescriptorMap.h */; settings = {ATTRIBUTES = (Project, ); }; }; + E236AB02F1A0F34A1F64EC20A967BD0C /* Syslog.h in Headers */ = {isa = PBXBuildFile; fileRef = 3D35AA700B04792E39B969CEED0583B2 /* Syslog.h */; settings = {ATTRIBUTES = (Project, ); }; }; + E238B035225EF52CD614F5A43D1D1842 /* BSG_KSCrashSentry_MachException.h in Headers */ = {isa = PBXBuildFile; fileRef = 8E8B8B502897CE64B858C572C0C71A6D /* BSG_KSCrashSentry_MachException.h */; settings = {ATTRIBUTES = (Project, ); }; }; + E2494524ACA7CCAC62E1BCC82E2D2A63 /* UMReactNativeAdapter.m in Sources */ = {isa = PBXBuildFile; fileRef = 7D5F71B498430CFAECC9A99231EB093C /* UMReactNativeAdapter.m */; }; + E24D22A6D2A70B7FBAF6FA0993631414 /* FIRCLSRecordIdentity.m in Sources */ = {isa = PBXBuildFile; fileRef = C1F41A61435A7C7E40E9077594036A96 /* FIRCLSRecordIdentity.m */; }; + E25B083D7A138CAEE0EF41BCDA14705F /* FIRComponent.h in Headers */ = {isa = PBXBuildFile; fileRef = 6E51AA750CB397ABC6E205F52BBDCA26 /* FIRComponent.h */; settings = {ATTRIBUTES = (Project, ); }; }; + E2633A1A9EC389F413DCF65B56ACFF42 /* Demangle.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 508B63A73BC1A57DA47BB257782603C1 /* 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"; }; }; + E275864857518C091CD5FF4CEEE87FB0 /* PTChannel.h in Headers */ = {isa = PBXBuildFile; fileRef = 15EF28D5FCEFD903464DFEAE40849566 /* PTChannel.h */; settings = {ATTRIBUTES = (Project, ); }; }; + E2923AA2F207524C1FB9757310A8810B /* FIRCLSProcessReportOperation.m in Sources */ = {isa = PBXBuildFile; fileRef = 7C227E6920522A87C4A95E4F39C53459 /* FIRCLSProcessReportOperation.m */; }; + E2A37AB389ABF8A76AD38DD61E7457A4 /* RequestResponseThroughputTcp.cpp in Sources */ = {isa = PBXBuildFile; fileRef = DABBBA2AB0D423BAB4690276648E9AAD /* RequestResponseThroughputTcp.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -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 -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors"; }; }; + E2A5CF8EB3A167636CDC1DAEE4E48A03 /* ipv6-internal.h in Headers */ = {isa = PBXBuildFile; fileRef = 90CD07F197F7D3C0F14D959F46D50FFB /* ipv6-internal.h */; settings = {ATTRIBUTES = (Project, ); }; }; + E2B38B0E73DFE014ACC3FCBFC43496FD /* FFFastImageViewManager.m in Sources */ = {isa = PBXBuildFile; fileRef = 638CBE9EA1418F4753A3B60A63F2DEE8 /* FFFastImageViewManager.m */; }; + E2CF87D83911173F5B640ABA6CEBA562 /* FireAndForgetResponder.h in Headers */ = {isa = PBXBuildFile; fileRef = DAE1A314C9086C54F54B843E6913D998 /* FireAndForgetResponder.h */; settings = {ATTRIBUTES = (Project, ); }; }; + E2D24444928BD2DA8C9796FB4B3A7EFF /* SKButtonDescriptor.mm in Sources */ = {isa = PBXBuildFile; fileRef = 7DE3F870A7F79D0E3E6A647C342D3804 /* SKButtonDescriptor.mm */; settings = {COMPILER_FLAGS = "-DDEBUG=1 -DFLIPPER_OSS=1 -DFB_SONARKIT_ENABLED=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -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"; }; }; + E2D8B411A8238AA3D624F4155EC28400 /* BSG_KSMachHeaders.h in Headers */ = {isa = PBXBuildFile; fileRef = 0B9F448034B2BA345701C8E30BBE661D /* BSG_KSMachHeaders.h */; settings = {ATTRIBUTES = (Project, ); }; }; + E2E16C5A891AA50B977D10AD3A13CE5A /* RNGestureHandlerRegistry.h in Headers */ = {isa = PBXBuildFile; fileRef = 39C23166B3FD9C8FD9DE9B453CC1112E /* RNGestureHandlerRegistry.h */; settings = {ATTRIBUTES = (Project, ); }; }; + E2E18A2DBE2732797495B41D2EE5416C /* BugsnagSessionFileStore.m in Sources */ = {isa = PBXBuildFile; fileRef = 35CD78A9470AC3A88A6635AE40C0BCB8 /* BugsnagSessionFileStore.m */; }; + E2E95D6FA7830E33BA3EE9AE9DE3D66B /* FBLPromise+All.h in Headers */ = {isa = PBXBuildFile; fileRef = 8D1F87B8E6D00C440CE575B2E0443E50 /* FBLPromise+All.h */; settings = {ATTRIBUTES = (Project, ); }; }; + E2EAF626B18D95327A2FC4D4446C3A9C /* UMModuleRegistryProvider.h in Headers */ = {isa = PBXBuildFile; fileRef = D6A9263E428455178C45DF3EA6071D0A /* UMModuleRegistryProvider.h */; settings = {ATTRIBUTES = (Project, ); }; }; + E2F16D11524439C92B7DE854F7078C6F /* UMModuleRegistry.h in Headers */ = {isa = PBXBuildFile; fileRef = F3165E5051CA7C643DDB125447F37120 /* UMModuleRegistry.h */; settings = {ATTRIBUTES = (Project, ); }; }; + E30DC41EDAA5272E1E1415531A9309E1 /* RCTSurfaceStage.m in Sources */ = {isa = PBXBuildFile; fileRef = 31DA104A7568FEFC8319F0AD7495BE6D /* RCTSurfaceStage.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + E312281FD29F99F67D349635D1F088ED /* SafeAreaSpacerView.h in Headers */ = {isa = PBXBuildFile; fileRef = 56A56D098D5382B35FB0453B22066535 /* SafeAreaSpacerView.h */; settings = {ATTRIBUTES = (Project, ); }; }; + E3189CA4D7BFEF893F93E00F4659392F /* REAAllTransitions.h in Headers */ = {isa = PBXBuildFile; fileRef = 90708FC08907750D80683605D1B29894 /* REAAllTransitions.h */; settings = {ATTRIBUTES = (Project, ); }; }; + E319702B13D890B6693825B6D4960D0F /* BugsnagSessionTracker+Private.h in Headers */ = {isa = PBXBuildFile; fileRef = 38C9EAA978FFE12645C073012B9D3100 /* BugsnagSessionTracker+Private.h */; settings = {ATTRIBUTES = (Project, ); }; }; + E328E8141AF969CC6B6E80958E20061B /* EXHapticsModule.h in Headers */ = {isa = PBXBuildFile; fileRef = 983C766C4E4BF3B284BAC9CB16A078FB /* EXHapticsModule.h */; settings = {ATTRIBUTES = (Project, ); }; }; + E338F3D6E75E8A95683F60863C75E8BC /* Semaphore.h in Headers */ = {isa = PBXBuildFile; fileRef = 8DE869DD8D81DC88CF80F4B414B76491 /* Semaphore.h */; settings = {ATTRIBUTES = (Project, ); }; }; + E33B8CB4B5F6967BD3A5D323A91589AB /* SanitizeLeak.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 9F768F04C38BAF84EA1352F285207C37 /* SanitizeLeak.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -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\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors"; }; }; + E341738B130ED4CB85C14610CCD846CD /* UIResponder+FirstResponderTemp.h in Headers */ = {isa = PBXBuildFile; fileRef = DEE0C0B60E4F95B51F04576CB693C483 /* UIResponder+FirstResponderTemp.h */; settings = {ATTRIBUTES = (Project, ); }; }; + E356ADE72E822866E3DBFF1FB6460CC2 /* cost_neon.c in Sources */ = {isa = PBXBuildFile; fileRef = CAEA4499C5DCFBCEC518ED80409B8690 /* cost_neon.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; + E3573BA90FBE6375A2E896A8FCEAC133 /* FIRInstallationsStoredItem.m in Sources */ = {isa = PBXBuildFile; fileRef = A2C61C4682049BF8587E9647FF603D07 /* FIRInstallationsStoredItem.m */; }; + E36A9707816C942D8994CB3C6576951E /* SanitizeLeak.h in Headers */ = {isa = PBXBuildFile; fileRef = BDA1B1D5DB335E4C976544E82311199F /* SanitizeLeak.h */; settings = {ATTRIBUTES = (Project, ); }; }; + E372E0CAED33BA716B905E7A5C272076 /* GULAppEnvironmentUtil.m in Sources */ = {isa = PBXBuildFile; fileRef = FCB73DFE3703A1630BF94739756D7E43 /* GULAppEnvironmentUtil.m */; }; + E385D9D9A5C40857B927BA4BDD0ED7D3 /* UIImageView+HighlightedWebCache.m in Sources */ = {isa = PBXBuildFile; fileRef = DFD5522C57CCDC99ADD2072F3F16BF53 /* UIImageView+HighlightedWebCache.m */; }; + E387D9107BB09A41E8BDA496FA81F858 /* LifoSemMPMCQueue.h in Headers */ = {isa = PBXBuildFile; fileRef = 0148745B69D68F8F7CF48F7858879BB3 /* LifoSemMPMCQueue.h */; settings = {ATTRIBUTES = (Project, ); }; }; + E3AA941BE64E2F2690C5015F77BDA5BE /* FIRCLSRecordBase.h in Headers */ = {isa = PBXBuildFile; fileRef = 2AB62E7244F26DDB1D626582636F2903 /* FIRCLSRecordBase.h */; settings = {ATTRIBUTES = (Project, ); }; }; + E3B5EE28487F65352259703D853ABA3A /* msa_macro.h in Headers */ = {isa = PBXBuildFile; fileRef = 6CBCE3F9D8036069A5A66AFF36D7D970 /* msa_macro.h */; settings = {ATTRIBUTES = (Project, ); }; }; + E3CE040BCA5F974E8468FD7E15F9BAA5 /* quant_levels_dec_utils.h in Headers */ = {isa = PBXBuildFile; fileRef = E1C1D58B539091B426EB2BE6AF1806A0 /* quant_levels_dec_utils.h */; settings = {ATTRIBUTES = (Project, ); }; }; + E3E250596E76E13A5DA85D4C557AA50F /* BugsnagReactNative.h in Headers */ = {isa = PBXBuildFile; fileRef = 13C8EFF39EBD8C1872792E87448B21FC /* BugsnagReactNative.h */; settings = {ATTRIBUTES = (Project, ); }; }; + E427866DB0116EF9E3E2F5AE28694FA1 /* AtomicHashMap-inl.h in Headers */ = {isa = PBXBuildFile; fileRef = 22E34145200027E5B302741EFF19531D /* AtomicHashMap-inl.h */; settings = {ATTRIBUTES = (Project, ); }; }; + E43803D45E6D71D06FE6EACB0A707F27 /* RCT-Folly-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = FA3A2828981CEC4C13EE039427DF4D9A /* RCT-Folly-dummy.m */; }; + E441927F34A6AB688FC41FA527C02995 /* HardwareConcurrency.h in Headers */ = {isa = PBXBuildFile; fileRef = 9318D8686DCB957CD44C28F18B007542 /* HardwareConcurrency.h */; settings = {ATTRIBUTES = (Project, ); }; }; + E450CCD0A53FDFC6CF6B4739B0BE83CA /* GDTCORTransport_Private.h in Headers */ = {isa = PBXBuildFile; fileRef = DDC37DACDEA1431F770DE863913C358C /* GDTCORTransport_Private.h */; settings = {ATTRIBUTES = (Project, ); }; }; + E45CB656FCE17142610312339392876D /* FIROptionsInternal.h in Headers */ = {isa = PBXBuildFile; fileRef = 44CEFBA0D4AAB91C0DFEF42E28238C78 /* FIROptionsInternal.h */; settings = {ATTRIBUTES = (Project, ); }; }; + E4680014C14423A974208E4620A258C1 /* StreamThroughputMemory.cpp in Sources */ = {isa = PBXBuildFile; fileRef = C372933D88C37B0D59A71894B0B7CE3F /* StreamThroughputMemory.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -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 -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors"; }; }; + E46AB4A1F4011A352ABAC15FBEFFE12C /* RCTDevSplitBundleLoader.mm in Sources */ = {isa = PBXBuildFile; fileRef = 107FCA2BB300F871ED6D3CBBFD33FEDE /* 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"; }; }; + E48DD207DE16C0A3C47EF4F971D361FC /* RCTFPSGraph.h in Headers */ = {isa = PBXBuildFile; fileRef = 39B668AB0A8435B8130D7C1AFEA1860E /* RCTFPSGraph.h */; settings = {ATTRIBUTES = (Project, ); }; }; + E49188CCEC47F2B014FEF6031EED26C5 /* PTPrivate.h in Headers */ = {isa = PBXBuildFile; fileRef = 9F473D10D4BEC9883C118559D09E47D2 /* PTPrivate.h */; settings = {ATTRIBUTES = (Project, ); }; }; + E4A30EC10888C6AE1C92B59EC078EF38 /* ARTTextManager.m in Sources */ = {isa = PBXBuildFile; fileRef = 0B2EC20C1DC93DE0394317053CAD6497 /* ARTTextManager.m */; }; + E4A3C27D28C0A3B1344B63451DAB2C43 /* RCTProfile.h in Headers */ = {isa = PBXBuildFile; fileRef = 873F8ECACC5B3D4A0E4C64AF3AE47B17 /* RCTProfile.h */; settings = {ATTRIBUTES = (Project, ); }; }; + E4A5D4B6B6E51731DC54DCEF2061BC80 /* PTUSBHub.m in Sources */ = {isa = PBXBuildFile; fileRef = 6CCAC95E3D8B12648722D6194ABCEB3B /* PTUSBHub.m */; }; + E4D1834560F09488664A296D26A98678 /* YGConfig.h in Headers */ = {isa = PBXBuildFile; fileRef = 752D547F033FFFB3943C51C11C104ECF /* YGConfig.h */; settings = {ATTRIBUTES = (Project, ); }; }; + E4D3A8A7901A4311A9DC9F2A2C242A6E /* GDTCORLifecycle.h in Headers */ = {isa = PBXBuildFile; fileRef = FDD67C7EDC8BEC5BC16D4AA698E30017 /* GDTCORLifecycle.h */; settings = {ATTRIBUTES = (Project, ); }; }; + E4D84703E8276B2E20C352B2D16C7740 /* GULAppEnvironmentUtil.h in Headers */ = {isa = PBXBuildFile; fileRef = DA074481EAB02CBD5264BE664A2FE4DD /* GULAppEnvironmentUtil.h */; settings = {ATTRIBUTES = (Project, ); }; }; + E4E303D0E568A8E8FB634907891D7E2B /* ReentrantAllocator.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 2F749C15C850BC900B0B79B0CD423FF3 /* ReentrantAllocator.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -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\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors"; }; }; + E4EDCFA7B9D3AF434BDA26AA50B7C982 /* KeepaliveTimer.h in Headers */ = {isa = PBXBuildFile; fileRef = 20DFC15259D61ECFBBDC81BACFF9285B /* KeepaliveTimer.h */; settings = {ATTRIBUTES = (Project, ); }; }; + E5252B3A9A7D4559BB03F17E013F92D6 /* MemoryMapping.h in Headers */ = {isa = PBXBuildFile; fileRef = 30518943DE86793C6B9D17C50AAB8622 /* MemoryMapping.h */; settings = {ATTRIBUTES = (Project, ); }; }; + E5307DA848144A2C544E9F62FCBA5A95 /* RCTView.h in Headers */ = {isa = PBXBuildFile; fileRef = 23573BD4C35106EF45CD3CBA132DC32F /* RCTView.h */; settings = {ATTRIBUTES = (Project, ); }; }; + E53C5A0AD36B105762561C1F622581D8 /* RCTUITextField.m in Sources */ = {isa = PBXBuildFile; fileRef = 2568A4B2915E88D59E2AABFC20C5F479 /* RCTUITextField.m */; }; + E5453F81396B688D00A0147B89F18B51 /* upsampling_sse2.c in Sources */ = {isa = PBXBuildFile; fileRef = B57E17A472DDC914E66B0305C417D643 /* upsampling_sse2.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; + E545ABA7A89B0C4E9009E80D8C989201 /* GULLogger.h in Headers */ = {isa = PBXBuildFile; fileRef = 16D715A4DA0958B00943DFA2BA930EF9 /* GULLogger.h */; settings = {ATTRIBUTES = (Project, ); }; }; + E557A000450604046656D73ABB02905E /* RNGestureHandlerButton.m in Sources */ = {isa = PBXBuildFile; fileRef = 042A4CD38C9F18C4103F66713D6AC85D /* RNGestureHandlerButton.m */; }; + E55CB5FD7795FAC2F29E4E2B5B827F08 /* BSG_RFC3339DateTool.m in Sources */ = {isa = PBXBuildFile; fileRef = 270ED4C0A8F69348FF1FE797E0E06DF0 /* BSG_RFC3339DateTool.m */; }; + E56F517254A3DD415A94128FFB078AB7 /* EXSessionResumableDownloadTaskDelegate.h in Headers */ = {isa = PBXBuildFile; fileRef = 449B4459F9705E22D67741CAC04186C4 /* EXSessionResumableDownloadTaskDelegate.h */; settings = {ATTRIBUTES = (Project, ); }; }; + E570B34E0C367875F0F6F8C1632CFCAB /* fr.lproj in Resources */ = {isa = PBXBuildFile; fileRef = A0BDE8A4AA65853E8D80A058219B4EF2 /* fr.lproj */; }; + E5717D12A46C230DF81B959C316D3076 /* RNVectorIcons-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 117449E9749A82693065455EEB39A766 /* RNVectorIcons-dummy.m */; }; + E57CB055AE15E2644BF0C64BDA799AF4 /* RCTMessageThread.h in Headers */ = {isa = PBXBuildFile; fileRef = 7DE668330E65F4215D8CF43CD76DF469 /* RCTMessageThread.h */; settings = {ATTRIBUTES = (Project, ); }; }; + E59F15C62E226A9867CB2D8DF229BAF5 /* SpinLock.h in Headers */ = {isa = PBXBuildFile; fileRef = EAC4E7AB32B7543D14F47D83743EB120 /* SpinLock.h */; settings = {ATTRIBUTES = (Project, ); }; }; + E5A166266173B6CD031E0EC4B68F1AE2 /* GDTCORDirectorySizeTracker.m in Sources */ = {isa = PBXBuildFile; fileRef = 296EDB06B8D6AAC2D22E9D6253756607 /* GDTCORDirectorySizeTracker.m */; }; + E5B38E557EECF38ADB68873C5621F32E /* AESCrypt.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 9577A31D828189F7819F1B05697FB260 /* AESCrypt.cpp */; settings = {COMPILER_FLAGS = "-x objective-c++ -fno-objc-arc"; }; }; + E5B3F2E3BA3B4727A0B10D5A4CB7C808 /* GDTCORTransformer.m in Sources */ = {isa = PBXBuildFile; fileRef = D4BE5218ADF076BE760CD30650DFEFE2 /* GDTCORTransformer.m */; }; + E5C364BADE3B7F40B26C80274EEEA9B4 /* REASetNode.h in Headers */ = {isa = PBXBuildFile; fileRef = B86E48B0F2B7C6E18E9297ECCB847D81 /* REASetNode.h */; settings = {ATTRIBUTES = (Project, ); }; }; + E5C594A6F13B7ECBCF7716A5C830DDBD /* Barrier.h in Headers */ = {isa = PBXBuildFile; fileRef = 6CFF0063DEB6B3513822A10A5D2701FB /* Barrier.h */; settings = {ATTRIBUTES = (Project, ); }; }; + E5C9FC6D7B21BC95A8AB2A7980844805 /* String.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 689A10F21FBF3994B01988A6F23C5187 /* String.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -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\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors"; }; }; + E5DC173E6B529F892B09C8C35C99D2A1 /* ARTLinearGradient.m in Sources */ = {isa = PBXBuildFile; fileRef = A3C80F84A1E1D39ACC873D973D635786 /* ARTLinearGradient.m */; }; + E5F32060ECB5A2A2668D4190D4BDE359 /* OpenSSLHash.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 048A1AD73FA5151FB809025ABF5CAFA5 /* OpenSSLHash.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -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\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors"; }; }; + E5F7EDB3E916B295A705F7FEB1850A6B /* ProtocolVersion.h in Headers */ = {isa = PBXBuildFile; fileRef = 4B491027E9CC2530F2AD5AA42CD4AAB9 /* ProtocolVersion.h */; settings = {ATTRIBUTES = (Project, ); }; }; + E60291FD7A204B0ED3D7C6781255E1F1 /* Observer.h in Headers */ = {isa = PBXBuildFile; fileRef = 480F651048CB68CD4A41142E6C94189C /* Observer.h */; settings = {ATTRIBUTES = (Project, ); }; }; + E60B6DC94775A5650B20341846210269 /* BugsnagKVStoreObjC.m in Sources */ = {isa = PBXBuildFile; fileRef = DCFEE6AEA20DD62C6DFADE9FACDF2533 /* BugsnagKVStoreObjC.m */; }; + E616D0C255DC060D4EE53E62A4FF20A4 /* SDInternalMacros.m in Sources */ = {isa = PBXBuildFile; fileRef = 2A86DF01247AC8F668CB4D11C098E4D5 /* SDInternalMacros.m */; }; + E61F391A1D3DC3C1DACEDE431379B169 /* Math.h in Headers */ = {isa = PBXBuildFile; fileRef = 04D08E4AB39F12B8216A993C6B175CE7 /* Math.h */; settings = {ATTRIBUTES = (Project, ); }; }; + E62A76640260A369F0E92976697D6F48 /* RCTScrollContentViewManager.m in Sources */ = {isa = PBXBuildFile; fileRef = C12207B25B4906F505A12EC8D6966B6B /* RCTScrollContentViewManager.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + E64C67F1E68A40ABC180122C810DA1A2 /* filters_neon.c in Sources */ = {isa = PBXBuildFile; fileRef = D102A25F7247CF3B03CF434C7B0790BA /* filters_neon.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; + E673E0352A8B4350E45B7A109D3D4021 /* EXKeepAwake.m in Sources */ = {isa = PBXBuildFile; fileRef = 40C01F28CDDDF2800415EF6636A7A24D /* EXKeepAwake.m */; }; + E680C7D3B6A8A149043D4217CBB60952 /* Hazptr.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 97929816D7EB4B98DE433493E463D493 /* 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"; }; }; + E688352A73C514B356DE50C892D60988 /* RCTAlertManager.mm in Sources */ = {isa = PBXBuildFile; fileRef = 77CE9025DBECFCA19A4EDD0427D6A563 /* 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"; }; }; + E689AA2055E750C0116058EC3E2DC96A /* ThreadedExecutor.cpp in Sources */ = {isa = PBXBuildFile; fileRef = EF9F9B40B59884AA918C73FDA84E908F /* ThreadedExecutor.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -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\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors"; }; }; + E69CA0AA32685635B969EE0042F2D0DD /* ProtocolVersion.cpp in Sources */ = {isa = PBXBuildFile; fileRef = F02A95F025F642C249F29F88C764C9F0 /* ProtocolVersion.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -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 -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors"; }; }; + E6CF61D4A3A3F2D614B67DF4ADDEC35E /* SerialExecutor.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 37A4167B681C5908715BE2EF07DB3E07 /* SerialExecutor.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + E6EB2A51A82C9C0FBB1BD8848288448A /* Likely.h in Headers */ = {isa = PBXBuildFile; fileRef = 03CA8ACCFAA3400C254D74BE3BC8FC2C /* Likely.h */; settings = {ATTRIBUTES = (Project, ); }; }; + E6F6E0252DF24B0746EAF0019D80EF93 /* FIRCLSConstants.h in Headers */ = {isa = PBXBuildFile; fileRef = CB7FF62BABFBB4886F29B70EEE27FDAC /* FIRCLSConstants.h */; settings = {ATTRIBUTES = (Project, ); }; }; + E713B02A8A389710B1613C452E72D5D0 /* FLEXNetworkTransaction.h in Headers */ = {isa = PBXBuildFile; fileRef = EEB8E5C9104AD2FD20DA552CDE97997A /* FLEXNetworkTransaction.h */; settings = {ATTRIBUTES = (Project, ); }; }; + E72A250087B7A73BA20E9A12E6C3E5AF /* RCTSourceCode.mm in Sources */ = {isa = PBXBuildFile; fileRef = 566E0D113677CF1EF5DE3ECB990C2DE9 /* 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"; }; }; + E73AFB415C8FE57F68C2E571658FEFDC /* enc_msa.c in Sources */ = {isa = PBXBuildFile; fileRef = 1FA402F38C6B613FD548CD6A3EB06A8D /* enc_msa.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; + E76E10019899FF866B81BACD8AEFF56F /* EXVideoManager.h in Headers */ = {isa = PBXBuildFile; fileRef = B848311E54CCC02328922D14C45474A7 /* EXVideoManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; + E76E89DECBBB65E8F0F376281E7F142D /* RCTRootShadowView.m in Sources */ = {isa = PBXBuildFile; fileRef = 4D437964998D2C0A18278605BE08B9B8 /* RCTRootShadowView.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + E77A45BEBFC3EB67DD1C35A1186ED2C6 /* IPAddress.h in Headers */ = {isa = PBXBuildFile; fileRef = 485F68542A6832FF808DCE943EA92FF1 /* IPAddress.h */; settings = {ATTRIBUTES = (Project, ); }; }; + E783EEAA611C3967BA049B75B021BE67 /* EXVideoPlayerViewController.h in Headers */ = {isa = PBXBuildFile; fileRef = B388AA0CE17EA16BD7DAEC50D1DE956E /* EXVideoPlayerViewController.h */; settings = {ATTRIBUTES = (Project, ); }; }; + E7ED23584106A18B23C3A93DC3EAF64C /* RCTRawTextViewManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 84FBA57EF83AB8BF7C5569DB8E1F6612 /* RCTRawTextViewManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; + E8295D2E62DF2AFD794D9E535359C23F /* FIRCLSLogger.m in Sources */ = {isa = PBXBuildFile; fileRef = E4E47BC976C96EFCCAC054D03EE06784 /* FIRCLSLogger.m */; }; + E857DE49493CE8846C3C220293CA0DFD /* FrameSerializer.cpp in Sources */ = {isa = PBXBuildFile; fileRef = A2A1F2D3F2E7580A8577FA49CF9FD49A /* FrameSerializer.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -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 -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors"; }; }; + E85DE6E2E1C8995860DD4132D41337B1 /* RNRotationHandler.h in Headers */ = {isa = PBXBuildFile; fileRef = 0D512FF26F5CCDF4BA415C726A100C98 /* RNRotationHandler.h */; settings = {ATTRIBUTES = (Project, ); }; }; + E8617C0FE020F4D7D30E446B160B97C2 /* SysUio.h in Headers */ = {isa = PBXBuildFile; fileRef = EAAD0A21019BA1C3EBD479F36C002AE3 /* SysUio.h */; settings = {ATTRIBUTES = (Project, ); }; }; + E8707A35F45C8E8277ECCFBB80ED9E3A /* Frame.h in Headers */ = {isa = PBXBuildFile; fileRef = B247BAA030EA2BCCEB72086F4E4F6279 /* Frame.h */; settings = {ATTRIBUTES = (Project, ); }; }; + E876D7845F31B34FFA2B0B00B40417EE /* RCTVibration.mm in Sources */ = {isa = PBXBuildFile; fileRef = A35454FAFB2D4546FBF973FE612A1FC3 /* 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"; }; }; + E8853B8ED3D089F47C87A8100A7A6434 /* RNConfigReader.m in Sources */ = {isa = PBXBuildFile; fileRef = D4007D15ED9F7F0D108C1418BC3B81F0 /* RNConfigReader.m */; }; + E8902AA792C304BC03A051EC56B9E25F /* RCTFrameUpdate.m in Sources */ = {isa = PBXBuildFile; fileRef = FEDAA1DC549280FA07BBD1645592665A /* RCTFrameUpdate.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + E8A7615B2E19C59185F3FE545094D0E8 /* EXImageLoader-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 529845ECA5C821EEAEED78FE4F55B888 /* EXImageLoader-dummy.m */; }; + E8A7F431C5696251BA57611161F9FBAD /* TOCropViewControllerTransitioning.m in Sources */ = {isa = PBXBuildFile; fileRef = 1447986F2D9C7850D2886D4A0B6A8871 /* TOCropViewControllerTransitioning.m */; }; + E8CF70030D5245CF810E003EBB5CCAEE /* FIRCLSBinaryImage.h in Headers */ = {isa = PBXBuildFile; fileRef = 2C86E588F197D77BAD6FA658CD7591C5 /* FIRCLSBinaryImage.h */; settings = {ATTRIBUTES = (Project, ); }; }; + E8E818FC448EB1997B34EA35A9DE570F /* AsyncTimeout.h in Headers */ = {isa = PBXBuildFile; fileRef = B30D63A627EC586F59161BE38FFC498A /* AsyncTimeout.h */; settings = {ATTRIBUTES = (Project, ); }; }; + E8F5C9AEAB6DD09F50ED3E287A6B4426 /* defer-internal.h in Headers */ = {isa = PBXBuildFile; fileRef = 8F86198C42D356BDF6D5CC1F3A3A675D /* defer-internal.h */; settings = {ATTRIBUTES = (Project, ); }; }; + E90F8C13AF6BAFF2E709CA350BCB9FB0 /* TurboModuleUtils.h in Headers */ = {isa = PBXBuildFile; fileRef = 362EA64A455CD739D1727CF7EFF2B293 /* TurboModuleUtils.h */; settings = {ATTRIBUTES = (Project, ); }; }; + E916A648499FD9D5E8151646F31AB8D2 /* Fcntl.h in Headers */ = {isa = PBXBuildFile; fileRef = E3CC73C5AF7227BD689ABCDCAC176D38 /* Fcntl.h */; settings = {ATTRIBUTES = (Project, ); }; }; + E91B3212E6C60C08168D578A6B46F11B /* ThreadLocal.h in Headers */ = {isa = PBXBuildFile; fileRef = 394A0563D9AB83E34C06264713A58147 /* ThreadLocal.h */; settings = {ATTRIBUTES = (Project, ); }; }; + E93257561FC8320F3117B09B7A71109E /* Stdio.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 042C10B5C195B9BC6AC0E3DC756B9850 /* Stdio.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -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\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors"; }; }; + E935245BF94549AA4C94B1344395DE01 /* FIRLoggerLevel.h in Headers */ = {isa = PBXBuildFile; fileRef = 9167A925AAB617B7D73080B2A9A091E0 /* FIRLoggerLevel.h */; settings = {ATTRIBUTES = (Project, ); }; }; + E9398014BC50F38016F549EF91B06B45 /* MMKV_IO.h in Headers */ = {isa = PBXBuildFile; fileRef = 1A2CB029B12A5A12396F37B487A85183 /* MMKV_IO.h */; settings = {ATTRIBUTES = (Project, ); }; }; + E95D6946EAAC0D88A62A9C4EF71E1A8A /* RNImageCropPicker-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = F56E1BC0BB86E1FEB6FB53404A70E4A8 /* RNImageCropPicker-dummy.m */; }; + E96B31C287FC4BE956275C472B263348 /* RCTSurface.mm in Sources */ = {isa = PBXBuildFile; fileRef = 06B9F2E38CB833CB416F49333DCD7B8C /* RCTSurface.mm */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + E98E601A3AD7A6EB88B0A02CC493E94C /* http-internal.h in Headers */ = {isa = PBXBuildFile; fileRef = F317C306898E4EE02D4448085D2CA05E /* http-internal.h */; settings = {ATTRIBUTES = (Project, ); }; }; + E99F98EAA91670CB3B54381E89CE82C1 /* RNDeviceInfo.h in Headers */ = {isa = PBXBuildFile; fileRef = 57F95CA5D9F767EBB9A4AE6AE0B43914 /* RNDeviceInfo.h */; settings = {ATTRIBUTES = (Project, ); }; }; + E9A1608B9F8E862F84DDD47CFAC685CE /* HHWheelTimer.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 79793B3AFD85E98B0D47E35C3D48A4E7 /* 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"; }; }; + E9B68A13CAEAC76EA2E4B82117F6C965 /* experiments.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 71B8A8AEC76CAD6E08473A8240690083 /* experiments.cpp */; settings = {COMPILER_FLAGS = "-fno-omit-frame-pointer -fexceptions -Wall -Werror -std=c++1y -fPIC -fno-objc-arc"; }; }; + E9CEBB7DBEE768BE09E9129A3DC9A49C /* EXKeepAwake-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 8373EF15781644723EC409CA6CBD9212 /* EXKeepAwake-dummy.m */; }; + E9DD38E9466D37938076B85D6346A169 /* RNGestureHandlerEvents.h in Headers */ = {isa = PBXBuildFile; fileRef = FA939D9AE922CBBBC7FBEEA4A895C80B /* RNGestureHandlerEvents.h */; settings = {ATTRIBUTES = (Project, ); }; }; + E9E1B0FF5CCBA128F3D2EF11C42EA0B4 /* FKUserDefaultsPlugin.m in Sources */ = {isa = PBXBuildFile; fileRef = DFC6BF680707D168D18167BE77EBF696 /* FKUserDefaultsPlugin.m */; settings = {COMPILER_FLAGS = "-DDEBUG=1 -DFLIPPER_OSS=1 -DFB_SONARKIT_ENABLED=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -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"; }; }; + E9E28AF138CD4D8B66367DB701D3B84D /* near_lossless_enc.c in Sources */ = {isa = PBXBuildFile; fileRef = 13340CBEBDAF673433BF2AF143204B29 /* near_lossless_enc.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; + E9E84155104A92D42E9B535784E45D94 /* ConcurrentBitSet.h in Headers */ = {isa = PBXBuildFile; fileRef = 002D8E06E0EA583C8547CC130796E45B /* ConcurrentBitSet.h */; settings = {ATTRIBUTES = (Project, ); }; }; + E9F5858B8CB2E070CEEF8EB1AB4F93CF /* Util.h in Headers */ = {isa = PBXBuildFile; fileRef = 3705FBCFDBB7F944A902443BDF43ADFD /* Util.h */; settings = {ATTRIBUTES = (Project, ); }; }; + EA26CEF95BAF2888C211317D52469E95 /* FlipperKitReactPlugin.h in Headers */ = {isa = PBXBuildFile; fileRef = 9191C389ECCEDE514709DB9014B65844 /* FlipperKitReactPlugin.h */; settings = {ATTRIBUTES = (Project, ); }; }; + EA31A21E8987D47CFA4D774D8DB6D85F /* FlipperState.h in Headers */ = {isa = PBXBuildFile; fileRef = 07C3205E4A1A8E1FE600A520F293F4C4 /* FlipperState.h */; settings = {ATTRIBUTES = (Project, ); }; }; + EA42B95990D7189F7CC3503A7ABB0523 /* NotificationQueue.h in Headers */ = {isa = PBXBuildFile; fileRef = 89619E54E3FF09F4B7C805485250D150 /* NotificationQueue.h */; settings = {ATTRIBUTES = (Project, ); }; }; + EA6F1E515999CDB6A20698D0149F6E4F /* RCTPackagerClient.m in Sources */ = {isa = PBXBuildFile; fileRef = 35AC0007576C1B8B1DF8D900E25E8C0F /* RCTPackagerClient.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + EA72BBF29CCD93193B8C63C13185A3B4 /* FIRAEvent+Internal.m in Sources */ = {isa = PBXBuildFile; fileRef = 4544125EE98D84583B44B0914EDC9E8C /* FIRAEvent+Internal.m */; }; + EA9DDD5FB941931D26486E4DDE96502C /* MicroLock.h in Headers */ = {isa = PBXBuildFile; fileRef = 216C4F74583B1C5297D93FF5D0830416 /* MicroLock.h */; settings = {ATTRIBUTES = (Project, ); }; }; + EAA3D8C51AF81731B2D30063C68AA78C /* Singleton.h in Headers */ = {isa = PBXBuildFile; fileRef = E1017FC1A561D5627004E40633BED2A9 /* Singleton.h */; settings = {ATTRIBUTES = (Project, ); }; }; + EAD48555351149970538B9EF7DD35B1A /* SDWebImagePrefetcher.h in Headers */ = {isa = PBXBuildFile; fileRef = CAC3F9E889E1D4F78D588FB9FDC6A2BB /* SDWebImagePrefetcher.h */; settings = {ATTRIBUTES = (Project, ); }; }; + EAD62CEACD1BD0A3C1606C0803DF3BC9 /* SKViewControllerDescriptor.m in Sources */ = {isa = PBXBuildFile; fileRef = 4D1DCE2ED72E4B4463731242802346A8 /* SKViewControllerDescriptor.m */; settings = {COMPILER_FLAGS = "-DDEBUG=1 -DFLIPPER_OSS=1 -DFB_SONARKIT_ENABLED=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -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"; }; }; + EAE4632CA52DA1C790C8BC469BAB8D37 /* lossless_neon.c in Sources */ = {isa = PBXBuildFile; fileRef = 05DF05B7D3E36C80C7FA667E676BEC39 /* lossless_neon.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; + EB2099304CD314EEFF0206113176CE9C /* BSG_KSCrashC.c in Sources */ = {isa = PBXBuildFile; fileRef = 93076B98AE8AA4CF1A37A8657993ED91 /* BSG_KSCrashC.c */; }; + EB30915B1FAC339EC81CE1E1B292CD59 /* SDAnimatedImage.m in Sources */ = {isa = PBXBuildFile; fileRef = FB7EB5CD5B565A806FD653ED1798BF12 /* SDAnimatedImage.m */; }; + EB4098E91A77D64A294E8276FC1BC58E /* Core.h in Headers */ = {isa = PBXBuildFile; fileRef = C98F8A6219BAF0591622EA375658E571 /* Core.h */; settings = {ATTRIBUTES = (Project, ); }; }; + EB4D1037A2EC03E69751E5C1401D3A96 /* BSGEventUploadOperation.h in Headers */ = {isa = PBXBuildFile; fileRef = 1629DCD89C80CC971CAEA172CE89D77A /* BSGEventUploadOperation.h */; settings = {ATTRIBUTES = (Project, ); }; }; + EB53B005DE2290BD3BA9F07C65B66FC4 /* FutureSplitter.h in Headers */ = {isa = PBXBuildFile; fileRef = 675A945801C1B7102F5202738222DADA /* FutureSplitter.h */; settings = {ATTRIBUTES = (Project, ); }; }; + EB57C1BC44052881D1EB3408766675D5 /* SSLSessionImpl.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 26C21E1F4F4D836C1C4ABBB9DB9F2E87 /* SSLSessionImpl.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -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\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors"; }; }; + EB755BDB38CB6BB6662367B6D5CA7F0C /* String.h in Headers */ = {isa = PBXBuildFile; fileRef = 035AB6FAE7D36DBA8AF03E26168AE1FE /* String.h */; settings = {ATTRIBUTES = (Project, ); }; }; + EB79C19BE725E41CCB258EA0D8A6717C /* Rcu-inl.h in Headers */ = {isa = PBXBuildFile; fileRef = D78C9FED5967ECD5F3492058FC4D879D /* Rcu-inl.h */; settings = {ATTRIBUTES = (Project, ); }; }; + EBA4B42F86FA19C9293C03AD8686145B /* StorageSetters.h in Headers */ = {isa = PBXBuildFile; fileRef = 7EF55F898C1187358F49B84B1A43897E /* StorageSetters.h */; settings = {ATTRIBUTES = (Project, ); }; }; + EBA99C3E79756A50B3FFE034D5546F9D /* UIButton+WebCache.h in Headers */ = {isa = PBXBuildFile; fileRef = BFA7CDEAB6619D5D6734E5939DE68B7D /* UIButton+WebCache.h */; settings = {ATTRIBUTES = (Project, ); }; }; + EBAAB86CC3294FD631235E0B460113F4 /* TimeoutQueue.h in Headers */ = {isa = PBXBuildFile; fileRef = E69CD8888A61ACCF02A99D4050B4D66F /* TimeoutQueue.h */; settings = {ATTRIBUTES = (Project, ); }; }; + EBB19D2A830B79BC320B09ADBFB991AD /* FIRCLSSerializeSymbolicatedFramesOperation.h in Headers */ = {isa = PBXBuildFile; fileRef = 2933E807002CCC6FBBAB3658EC0EBE2B /* FIRCLSSerializeSymbolicatedFramesOperation.h */; settings = {ATTRIBUTES = (Project, ); }; }; + EBC65BE5D182DBA4C09447896B3E4250 /* FIRCLSCompoundOperation.m in Sources */ = {isa = PBXBuildFile; fileRef = F6D58787CF9C02ADEC238464A9EEF2CD /* FIRCLSCompoundOperation.m */; }; + EBF02E160B55E130FA3B21EF2B3143E3 /* NSButton+WebCache.m in Sources */ = {isa = PBXBuildFile; fileRef = 27B7CC8CF90EC2BD404633EF2BB1295A /* NSButton+WebCache.m */; }; + EC0F2E02EF975245B3584FCD049FFAEA /* event_tagging.c in Sources */ = {isa = PBXBuildFile; fileRef = B53C1C5EBE9A9AE568EEBE08184B7367 /* event_tagging.c */; }; + EC3620FB14D0D6EF31D86B9EA3AE9B99 /* RCTLinkingPlugins.mm in Sources */ = {isa = PBXBuildFile; fileRef = 5DF6EB6DFE188240615EA6EF9A35B572 /* 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"; }; }; + EC46E3E92D3BED933DF5D5071939F394 /* GULNSData+zlib.h in Headers */ = {isa = PBXBuildFile; fileRef = B3B89525513B26DEE78599CC58B9266E /* GULNSData+zlib.h */; settings = {ATTRIBUTES = (Project, ); }; }; + EC5E2DC10F1C1609E74CCE3267E62E87 /* RCTMultiplicationAnimatedNode.h in Headers */ = {isa = PBXBuildFile; fileRef = 7DA4FAE190AC0544AD46620A9D3D38E7 /* RCTMultiplicationAnimatedNode.h */; settings = {ATTRIBUTES = (Project, ); }; }; + ECA08DDE139712712569A414F1353649 /* RCTComponentData.h in Headers */ = {isa = PBXBuildFile; fileRef = 6663436A3FDAEEC3695035A818D7F110 /* RCTComponentData.h */; settings = {ATTRIBUTES = (Project, ); }; }; + ECBD429060DEC16908D656440A81BDF4 /* RNFetchBlob.h in Headers */ = {isa = PBXBuildFile; fileRef = A7B87EC71F3D2E483F96490E65E15949 /* RNFetchBlob.h */; settings = {ATTRIBUTES = (Project, ); }; }; + ECC014D16CBC092CE3F8DF77EE1BA855 /* REAConcatNode.h in Headers */ = {isa = PBXBuildFile; fileRef = CB528CA7E28D15A5C4F3823F7D0AEA62 /* REAConcatNode.h */; settings = {ATTRIBUTES = (Project, ); }; }; + ECCD6E06B6037E35436BA1BD7D43B378 /* ParkingLot.h in Headers */ = {isa = PBXBuildFile; fileRef = 9A88FD44E8CD2626AE7F2D2681C1696D /* ParkingLot.h */; settings = {ATTRIBUTES = (Project, ); }; }; + ECCF81F5F061B785593B1BD3E433F28C /* EXAppleAuthentication.h in Headers */ = {isa = PBXBuildFile; fileRef = 6B89B5A3359D59632830F00672C3BE33 /* EXAppleAuthentication.h */; settings = {ATTRIBUTES = (Project, ); }; }; + ECEDD9E180028FFCA4B8BAE05878B7C1 /* NetworkSocket.h in Headers */ = {isa = PBXBuildFile; fileRef = 1AAAC6D32A5E08F0812580035A31496B /* NetworkSocket.h */; settings = {ATTRIBUTES = (Project, ); }; }; + ECF52E1275D8E9CBB4770BEB79118D53 /* RCTTextSelection.h in Headers */ = {isa = PBXBuildFile; fileRef = E16BA816953EB2A650B4516FC6B20BA6 /* RCTTextSelection.h */; settings = {ATTRIBUTES = (Project, ); }; }; + ED0D7E113F33D9D227A1BE84CEADA364 /* HeterogeneousAccess-fwd.h in Headers */ = {isa = PBXBuildFile; fileRef = C98E80671720E82C339727D44F2BBBD6 /* HeterogeneousAccess-fwd.h */; settings = {ATTRIBUTES = (Project, ); }; }; + ED1294A4072B1958A6928F5A789D4C13 /* EXVideoPlayerViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = 63510083183C02B3312DA0BA286155A7 /* EXVideoPlayerViewController.m */; }; + ED1FA4975B3282FA2F3EAC5706645556 /* Shell.h in Headers */ = {isa = PBXBuildFile; fileRef = 83E1F52A529547ED2249399456C54875 /* Shell.h */; settings = {ATTRIBUTES = (Project, ); }; }; + ED28F6A69A0C171667F5FD4D9889E742 /* RCTBaseTextViewManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 9436B91C9FF161478B84F75E61058C78 /* RCTBaseTextViewManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; + ED372065C882ACAD500405D3FF49ED43 /* F14Set-fwd.h in Headers */ = {isa = PBXBuildFile; fileRef = AB9A84570B7996820AFE57ABE338509F /* F14Set-fwd.h */; settings = {ATTRIBUTES = (Project, ); }; }; + ED3F2E63C6969D937A67A9EA503C3915 /* RCTErrorInfo.h in Headers */ = {isa = PBXBuildFile; fileRef = A941B251FAB14916870F851B8A0C2BA4 /* RCTErrorInfo.h */; settings = {ATTRIBUTES = (Project, ); }; }; + ED46C47347615C7E6985B4AB4AEFC482 /* openssl_cfb128.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 9C7F33798A8CF2C30E472171DD9210BA /* openssl_cfb128.cpp */; settings = {COMPILER_FLAGS = "-x objective-c++ -fno-objc-arc"; }; }; + ED563CAA449629F54DC1962ADCA67855 /* yuv.c in Sources */ = {isa = PBXBuildFile; fileRef = A259A0FF1E27179E8242BC746013659F /* yuv.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; + ED5B70BAF43FAE184F1E9B58417D1CCF /* MemoryFile_OSX.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 859F6EFC95278A09770816A93CF33F33 /* MemoryFile_OSX.cpp */; settings = {COMPILER_FLAGS = "-x objective-c++"; }; }; + ED79E59832591C930E39B67C290FC884 /* CallOnce.h in Headers */ = {isa = PBXBuildFile; fileRef = 71E688AEAE6F6FF30C7DBB6D959B08E6 /* CallOnce.h */; settings = {ATTRIBUTES = (Project, ); }; }; + ED7BA179B08D3F82CA38AF84568F1CCF /* Checksum.cpp in Sources */ = {isa = PBXBuildFile; fileRef = FDDBDE0E313FFFD31702308B3825DA1B /* Checksum.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -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\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors"; }; }; + ED863025481CEF8C0A30E633ECC73748 /* Payload.cpp in Sources */ = {isa = PBXBuildFile; fileRef = D9521755B9E284AB2B70A05ABB295504 /* Payload.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -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 -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors"; }; }; + EDBFDBC971D8E5C312654713CFD462AF /* Uri-inl.h in Headers */ = {isa = PBXBuildFile; fileRef = 2DC996C5BA817DA5E8B9FCF48FF2A116 /* Uri-inl.h */; settings = {ATTRIBUTES = (Project, ); }; }; + EDC1BA91693E491A9801B832ED7F936B /* FIRCLSContext.h in Headers */ = {isa = PBXBuildFile; fileRef = C9A2DF75FB35957CAFD0A894B60E521A /* FIRCLSContext.h */; settings = {ATTRIBUTES = (Project, ); }; }; + EDCC3ED30EEECF73F9791802BB70A899 /* FIRCLSAllocate.c in Sources */ = {isa = PBXBuildFile; fileRef = 8FCC1DF98D8D4892FEE7981E8C1C51BC /* FIRCLSAllocate.c */; }; + EDCE80AD8AB6C5393C82023802442E2A /* FIRCLSUserDefaults.h in Headers */ = {isa = PBXBuildFile; fileRef = C1CDE33B7060CA6268E5BB09D6C3D9C1 /* FIRCLSUserDefaults.h */; settings = {ATTRIBUTES = (Project, ); }; }; + EDDD108D041C3EF38FB9EBF5A4315BF7 /* BugsnagMetadata.h in Headers */ = {isa = PBXBuildFile; fileRef = EEAF50E5A17C4C0526B439E01595A262 /* BugsnagMetadata.h */; settings = {ATTRIBUTES = (Project, ); }; }; + EDF444B58FC325555F98078ECC7DF12B /* Array.h in Headers */ = {isa = PBXBuildFile; fileRef = 5854C884DDC424BAC6579BDC6394854C /* Array.h */; settings = {ATTRIBUTES = (Project, ); }; }; + EDF941513CBF50DF0F4BE26AB38B294E /* PublishProcessor.h in Headers */ = {isa = PBXBuildFile; fileRef = CCF25425C76A5AF881A528161D70FE39 /* PublishProcessor.h */; settings = {ATTRIBUTES = (Project, ); }; }; + EDFFA890636FB02FCE07FB9C93344477 /* RCTConvert+Text.h in Headers */ = {isa = PBXBuildFile; fileRef = F7952731325EA7F2FB0479BCE002FE43 /* RCTConvert+Text.h */; settings = {ATTRIBUTES = (Project, ); }; }; + EE068A55D88F832606D45F4724AA29DB /* Poly-inl.h in Headers */ = {isa = PBXBuildFile; fileRef = 4ABCA1CC303D147BD5C5827FC4E7EAAE /* Poly-inl.h */; settings = {ATTRIBUTES = (Project, ); }; }; + EE080DA5A4A8DA67837957D8CEE46F7B /* UncaughtExceptions.h in Headers */ = {isa = PBXBuildFile; fileRef = E63ED249D8F7E965097918453011F47C /* UncaughtExceptions.h */; settings = {ATTRIBUTES = (Project, ); }; }; + EE0F2177772A7379A691262F49DAF9AE /* FIRCLSUnwind_x86.c in Sources */ = {isa = PBXBuildFile; fileRef = 491C5D7F7B430ED97EF27D740A624972 /* FIRCLSUnwind_x86.c */; }; + EE1CE920ADECC06276A3BFF8E9807521 /* AtomicHashUtils.h in Headers */ = {isa = PBXBuildFile; fileRef = B5ADB75AB97B0A5C47D0018B45F4202A /* AtomicHashUtils.h */; settings = {ATTRIBUTES = (Project, ); }; }; + EE27E64DB254178F01C6E388FD4E90F5 /* NetOps.cpp in Sources */ = {isa = PBXBuildFile; fileRef = F3F78A7171BDEEE6A1842EEB7FB87325 /* 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"; }; }; + EE3DFE36FE7F99043F9CFA12EA32FADC /* PasswordInFile.cpp in Sources */ = {isa = PBXBuildFile; fileRef = A80A50525BE9BC48A9652F07AD5F7A61 /* PasswordInFile.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -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\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors"; }; }; + EE4F4B6E204F1B885F5AB7E2F10F992C /* FIRCLSFileManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 338E51C7292251B49D327914AB09E2FE /* FIRCLSFileManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; + EE5459EB7041FBE34FA586F697DF57C2 /* BSG_KSBacktrace.c in Sources */ = {isa = PBXBuildFile; fileRef = 04EEAA335768D82E2096B37C92B22236 /* BSG_KSBacktrace.c */; }; + EE59530EE72C2E4E2A4786FA30FD77F6 /* Observables.h in Headers */ = {isa = PBXBuildFile; fileRef = 3D52CC65517C6DEB7AE2E77BFB4742BA /* Observables.h */; settings = {ATTRIBUTES = (Project, ); }; }; + EE70D3D4F5956C6D8B0D0108ED9BCD08 /* ScheduledExecutor.h in Headers */ = {isa = PBXBuildFile; fileRef = AA686A002FFDABBC06150D2F2FB3EFEE /* ScheduledExecutor.h */; settings = {ATTRIBUTES = (Project, ); }; }; + EE744C371FE8D089560C556137B609C2 /* yuv_mips_dsp_r2.c in Sources */ = {isa = PBXBuildFile; fileRef = FD3C35BB97BAAAF9FE98796360FAB900 /* yuv_mips_dsp_r2.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; + EE82C20EC17914E39BAFE0150F4A68C6 /* BSG_KSCrashSentry_Signal.h in Headers */ = {isa = PBXBuildFile; fileRef = 3873885FDE6C533F17175B3E4CDA9ED0 /* BSG_KSCrashSentry_Signal.h */; settings = {ATTRIBUTES = (Project, ); }; }; + EEA470E2A64C3E7A8B9A07B16E7ABEB3 /* RCTNativeAnimatedTurboModule.mm in Sources */ = {isa = PBXBuildFile; fileRef = 7F50EC6C678A19D8ED9FBA50CD018824 /* 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"; }; }; + EEB5C39F7CB45E044BC6633AB28DFE2E /* FBReactNativeSpec-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = F5EE5C65D649197C91054743EE3A0C64 /* FBReactNativeSpec-dummy.m */; }; + EECA1597BBFE2246D428A7B74996395F /* Arena-inl.h in Headers */ = {isa = PBXBuildFile; fileRef = 959BA46CE2AC241D0364E2195EBF169C /* Arena-inl.h */; settings = {ATTRIBUTES = (Project, ); }; }; + EEDC57F07A1C084AA58C567FBAA9334B /* RCTCxxConvert.h in Headers */ = {isa = PBXBuildFile; fileRef = B9A94B9B943F4851C13E70DE5CCE9242 /* RCTCxxConvert.h */; settings = {ATTRIBUTES = (Project, ); }; }; + EEE9200EC46EBFB4751E71BDBAA22007 /* dec_sse2.c in Sources */ = {isa = PBXBuildFile; fileRef = E7C0881A148A19554848C55E2B067AF0 /* dec_sse2.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; + EF0325AEC87FDF244176038EC51E7968 /* FIRCLSUtility.m in Sources */ = {isa = PBXBuildFile; fileRef = 44FA5CD654181862693CEFDF5E39EBEA /* FIRCLSUtility.m */; }; + EF03F29BD0A6BC0D561F28079CED2AE3 /* RCTSurfacePresenterStub.m in Sources */ = {isa = PBXBuildFile; fileRef = 750C84A0046DC59693EE20C346109B36 /* RCTSurfacePresenterStub.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + EF2C95C09EC4DB699C5E27BD2A15798E /* RNFBSharedUtils.h in Headers */ = {isa = PBXBuildFile; fileRef = F8763C6057AB617F7452C58585044056 /* RNFBSharedUtils.h */; settings = {ATTRIBUTES = (Project, ); }; }; + EF350862356CA2CA24CD9557640C1ADB /* RNBridgeModule.h in Headers */ = {isa = PBXBuildFile; fileRef = 647E22648B2071E2AE257DBFB9582075 /* RNBridgeModule.h */; settings = {ATTRIBUTES = (Project, ); }; }; + EF3BAC92C23F5688F0AC175CB64B7E50 /* RecordIO-inl.h in Headers */ = {isa = PBXBuildFile; fileRef = 91B2FC67F492B2114B67A1B2429ADB6D /* RecordIO-inl.h */; settings = {ATTRIBUTES = (Project, ); }; }; + EF3C5A26E9DAEEC2133F988F234EA097 /* FiberIOExecutor.h in Headers */ = {isa = PBXBuildFile; fileRef = 5DAFD84672A3711B7F659D30A888C759 /* FiberIOExecutor.h */; settings = {ATTRIBUTES = (Project, ); }; }; + EF3D2B8783084ADD37DCEDDB5F2A3B0E /* FIRInstallationsAPIService.m in Sources */ = {isa = PBXBuildFile; fileRef = AC23ADFCCB5EF607BD312EC43DBB3E28 /* FIRInstallationsAPIService.m */; }; + EF83F2C33A5D14A54B7A74466A141C21 /* lossless_common.h in Headers */ = {isa = PBXBuildFile; fileRef = 27D0F7DCBCFDCC0484E7E67819262B68 /* lossless_common.h */; settings = {ATTRIBUTES = (Project, ); }; }; + EF9DCDBFE2A637CB773B34C0F559789C /* Math.h in Headers */ = {isa = PBXBuildFile; fileRef = 67423DAEC6E6C03F249B0C8C60D46F89 /* Math.h */; settings = {ATTRIBUTES = (Project, ); }; }; + EFBAB2B05D0CE1D1C3A4101F3563CE94 /* RCTBaseTextInputViewManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 111328621E8618D4724ED150108E8ECC /* RCTBaseTextInputViewManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; + EFC0E6BAA7A73A9F3ABFD9488544E4C1 /* RCTNativeModule.mm in Sources */ = {isa = PBXBuildFile; fileRef = 12D8CF80050CCE366B66E7B319A5076C /* RCTNativeModule.mm */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + EFCF4CD54971F298764B6A1911DAEA95 /* RCTNetworkTask.mm in Sources */ = {isa = PBXBuildFile; fileRef = BDD36D38C63470DC0E1B558404F36FE5 /* 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"; }; }; + EFDC26BEF6564DFD8368512DB220CC16 /* ARTNode.h in Headers */ = {isa = PBXBuildFile; fileRef = DCB9270A28452608FFE50C2F9CC2FEF4 /* ARTNode.h */; settings = {ATTRIBUTES = (Project, ); }; }; + EFDCEFE1E3D33037E50C51F970677092 /* fr.lproj in Resources */ = {isa = PBXBuildFile; fileRef = 91B5A6D0C65ACE19D0A47A4FB90D4734 /* fr.lproj */; }; + EFFF673E6304303D82E399275B2A3213 /* SwappableEventBase.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 489F45F96C3CA3020DDAC6A5D4168536 /* SwappableEventBase.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -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 -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors"; }; }; + F00560CF8052B8C36B350FE9F54489FC /* DistributedMutex.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 41D2649D951EA67D9849956E90AC00A5 /* DistributedMutex.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -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\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors"; }; }; + F026B31C0BA4DECFDD5F4534C719B9EA /* tr.lproj in Resources */ = {isa = PBXBuildFile; fileRef = 2A1355CBBD5567E023DD512116787305 /* tr.lproj */; }; + F031EFBB04D85BDF1D3CE1603D03A720 /* RNGestureHandlerEvents.m in Sources */ = {isa = PBXBuildFile; fileRef = 1D1D09DAD7CC3D29904EA449EA121FBA /* RNGestureHandlerEvents.m */; }; + F03C7570886A1F208869983FF5D9F5EF /* ScheduledFrameTransport.h in Headers */ = {isa = PBXBuildFile; fileRef = 1171ACD8F2E1D59BCF493239D501C8FA /* ScheduledFrameTransport.h */; settings = {ATTRIBUTES = (Project, ); }; }; + F04DBBDA05017D039E35A116610157E9 /* ParallelMap.h in Headers */ = {isa = PBXBuildFile; fileRef = FCB4E3FE7B23D24CC3159DAFBA8933D4 /* ParallelMap.h */; settings = {ATTRIBUTES = (Project, ); }; }; + F086EE57655A53EEB2F2C7C3DF357756 /* React-RCTLinking-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 5FE6B25622A7875076E7771544A3BBB7 /* React-RCTLinking-dummy.m */; }; + F08C89F1E7E4E945C1FF0A0FDFBB77E6 /* RCTGIFImageDecoder.mm in Sources */ = {isa = PBXBuildFile; fileRef = 2ADF919ACD1DFA6C9191F1B910DDC860 /* 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"; }; }; + F0B1D061831DACE98CF3D2D24810738D /* FIRCLSAsyncOperation.h in Headers */ = {isa = PBXBuildFile; fileRef = 265B08F6FA86271950C3F41CED5C0EF8 /* FIRCLSAsyncOperation.h */; settings = {ATTRIBUTES = (Project, ); }; }; + F0B7A5CEBB42EB368B082EAE88141AA0 /* FKUserDefaultsSwizzleUtility.h in Headers */ = {isa = PBXBuildFile; fileRef = 3FC0F8D7995BE7268D778AF5B30212DF /* FKUserDefaultsSwizzleUtility.h */; settings = {ATTRIBUTES = (Project, ); }; }; + F0BDD5CB396971208E14F0C1DC37C51A /* SDWebImageOperation.h in Headers */ = {isa = PBXBuildFile; fileRef = 5C417082F13348A2FE978DE51CABC139 /* SDWebImageOperation.h */; settings = {ATTRIBUTES = (Project, ); }; }; + F0CA5ED2CEE279E90CB1D9E9BE328E77 /* IPAddressV6.h in Headers */ = {isa = PBXBuildFile; fileRef = DAEA82AFD379F43CF8B4581E22B1C9CB /* IPAddressV6.h */; settings = {ATTRIBUTES = (Project, ); }; }; + F0ED612350C086D4DBC1C5D811B4A7A7 /* ReactNativeVersion.h in Headers */ = {isa = PBXBuildFile; fileRef = 86815C35A8BE9B52F690C4BF4C24EDBD /* ReactNativeVersion.h */; settings = {ATTRIBUTES = (Project, ); }; }; + F1035D0A8900061CC5C5BADBC4D8A318 /* SetupResumeAcceptor.cpp in Sources */ = {isa = PBXBuildFile; fileRef = CDCCC001ECA9202F30A0E96544B193AA /* SetupResumeAcceptor.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -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 -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors"; }; }; + F1086AC31E6327058D93DBD76D7092D3 /* UMModuleRegistry.m in Sources */ = {isa = PBXBuildFile; fileRef = B4681F304686A817A9869BAF480C5CA0 /* UMModuleRegistry.m */; }; + F10EE273159B6011EAF25EBE8B935762 /* RCTInvalidating.h in Headers */ = {isa = PBXBuildFile; fileRef = B519BB6A04C3B100F3C318A6441C6E97 /* RCTInvalidating.h */; settings = {ATTRIBUTES = (Project, ); }; }; + F115A08C8B42F916C57CF71983A4ADF8 /* evthread-internal.h in Headers */ = {isa = PBXBuildFile; fileRef = 9F56204C5FC40660920CB35912E3356C /* evthread-internal.h */; settings = {ATTRIBUTES = (Project, ); }; }; + F125737C78ADFB0D170ECE694A77072C /* FIRCLSDwarfUnwindRegisters.h in Headers */ = {isa = PBXBuildFile; fileRef = 797374D8F25FA861C276B5A2409232B8 /* FIRCLSDwarfUnwindRegisters.h */; settings = {ATTRIBUTES = (Project, ); }; }; + F12A6FFE202439992AF17C7AE792019F /* UIView+SKInvalidation.h in Headers */ = {isa = PBXBuildFile; fileRef = 588EA247611205AB40E34D046F67D60D /* UIView+SKInvalidation.h */; settings = {ATTRIBUTES = (Project, ); }; }; + F1313FCE06504D1BC0F8839F6C3DB60C /* RCTImageStoreManager.mm in Sources */ = {isa = PBXBuildFile; fileRef = AEB7062BC1CA34C27BD61962B05C8CAD /* 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"; }; }; + F13B15A4EF14C60B975E49962DF70965 /* FlipperPlugin.h in Headers */ = {isa = PBXBuildFile; fileRef = 5E007EDC6960C6C81329A5D9D1FF2904 /* FlipperPlugin.h */; settings = {ATTRIBUTES = (Project, ); }; }; + F13B3CED48497842176A3761A8479B64 /* RCTDatePicker.m in Sources */ = {isa = PBXBuildFile; fileRef = 3E8DB4C7B967E14E5E32E8B10E060037 /* RCTDatePicker.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + F1626728C68A20B2A8846CD11974AE7C /* RCTActivityIndicatorViewManager.h in Headers */ = {isa = PBXBuildFile; fileRef = B4E979E8B1B68E1B9EC052F35AD592DC /* RCTActivityIndicatorViewManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; + F16322AB5F37F1184E6B4AC0BBFB671F /* BSG_KSCrashState.h in Headers */ = {isa = PBXBuildFile; fileRef = 28710F3E5C555F46C3D60494356E1811 /* BSG_KSCrashState.h */; settings = {ATTRIBUTES = (Project, ); }; }; + F17D4D41A0DB85B72CE008419EA759FF /* double-conversion.cc in Sources */ = {isa = PBXBuildFile; fileRef = 2F16CC85872CDD00A5479F6196EC100F /* double-conversion.cc */; settings = {COMPILER_FLAGS = "-Wno-unreachable-code"; }; }; + F190CE0B90F3D0D6D4A040CE30991E2A /* SysResource.h in Headers */ = {isa = PBXBuildFile; fileRef = 364C2803525F975265D60D53D6CC2953 /* SysResource.h */; settings = {ATTRIBUTES = (Project, ); }; }; + F194212CD638F0EC8581A5D413EA480F /* RNCWebView.m in Sources */ = {isa = PBXBuildFile; fileRef = 22378466E936E1DC2EA9E11E5479596A /* RNCWebView.m */; }; + F19B91BBA0DE84FB0D7F5AC0BA2E48F3 /* FixedString.h in Headers */ = {isa = PBXBuildFile; fileRef = D9AA0E58A17A0123CBB2163F5A4EAAD7 /* FixedString.h */; settings = {ATTRIBUTES = (Project, ); }; }; + F1B4B78A22B43EC7FC2ADB6582EBA798 /* Request.cpp in Sources */ = {isa = PBXBuildFile; fileRef = C154CBB7C847660E6A69FC7CDAE35DED /* 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"; }; }; + F1CB4B93848145DEDF69DCE012EBF9A6 /* FIRCLSFABNetworkClient.h in Headers */ = {isa = PBXBuildFile; fileRef = 30628451A5793A471F0D4170CFACBA3D /* FIRCLSFABNetworkClient.h */; settings = {ATTRIBUTES = (Project, ); }; }; + F1D89D96431D7BCB038B0E01E5EAC2A6 /* Varint.h in Headers */ = {isa = PBXBuildFile; fileRef = 81BA6E8ADE1C06C1DA521A170683517D /* Varint.h */; settings = {ATTRIBUTES = (Project, ); }; }; + F1E250CEC6ABF8F1D9B20034974BA4AD /* FIRComponent.m in Sources */ = {isa = PBXBuildFile; fileRef = 9E46261BF0E0562C957F1938C2E01B4E /* FIRComponent.m */; }; + F205B38237DF1CD52D96CD041CD1032D /* ReactMarker.h in Headers */ = {isa = PBXBuildFile; fileRef = 09322B44A4B65A65AEB5CCB2A09BCCC2 /* ReactMarker.h */; settings = {ATTRIBUTES = (Project, ); }; }; + F2487591E06F520FA4F25DE2EC5C0844 /* FutureSplitter.h in Headers */ = {isa = PBXBuildFile; fileRef = 06B347FA46B79F4E5A2FCB6BD159E2C8 /* FutureSplitter.h */; settings = {ATTRIBUTES = (Project, ); }; }; + F269AD829E04BF950E0AC7688667F4BC /* GULNetworkLoggerProtocol.h in Headers */ = {isa = PBXBuildFile; fileRef = AAFB23BF96435BCE802CF29A1D2DD0DB /* GULNetworkLoggerProtocol.h */; settings = {ATTRIBUTES = (Project, ); }; }; + F28FC996E9D7C12E3F41C1B640ABB2A5 /* Compression.h in Headers */ = {isa = PBXBuildFile; fileRef = 2AE41A90EF30E02EAEBC24635E29B3BB /* Compression.h */; settings = {ATTRIBUTES = (Project, ); }; }; + F2920A2653565C59553D7742D5EF13FE /* TOActivityCroppedImageProvider.h in Headers */ = {isa = PBXBuildFile; fileRef = 8842C6C62B8EB97000D0DB9D8C3CD5ED /* TOActivityCroppedImageProvider.h */; settings = {ATTRIBUTES = (Project, ); }; }; + F2A7A5F33E7DF4C6A8F5520A66AF831D /* FlipperKitLayoutPlugin.h in Headers */ = {isa = PBXBuildFile; fileRef = C7E01B8D96A6A5D008B7BD4712B4A77E /* FlipperKitLayoutPlugin.h */; settings = {ATTRIBUTES = (Project, ); }; }; + F2AC75B653D0E35B4EA0B85F444C82F9 /* FIRCLSReportManager.h in Headers */ = {isa = PBXBuildFile; fileRef = CF6B335CA6A24C0E34CE1178B73074ED /* FIRCLSReportManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; + F2CB79B195E8317D399137F33860DD7B /* RCTViewManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 69F26FB1017C966CA0EB0F5F862E5F59 /* RCTViewManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; + F2D0A70D9E495E49F40A40BACD25A8B1 /* FKUserDefaultsSwizzleUtility.m in Sources */ = {isa = PBXBuildFile; fileRef = F7791AC50382463B28563BA48F532699 /* FKUserDefaultsSwizzleUtility.m */; settings = {COMPILER_FLAGS = "-DDEBUG=1 -DFLIPPER_OSS=1 -DFB_SONARKIT_ENABLED=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -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"; }; }; + F2D3B66EB0AC5BADFBB40BEF93B401A9 /* React-RCTBlob-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 6CF964D73E0585457C47F935158DE979 /* React-RCTBlob-dummy.m */; }; + F2D6357D0FFE0A21051D93CF211878EE /* STTimerFDTimeoutManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 8FA7CA232C9946B587E471293ACCFC9E /* STTimerFDTimeoutManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; + F2E86BD5A44DC438CF794910FA46B853 /* IOBuf.cpp in Sources */ = {isa = PBXBuildFile; fileRef = D93ACA8B0780F238C78FFAECA4477102 /* 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"; }; }; + F2E8A60398D97E4096DA2ED618D848B0 /* GULSceneDelegateSwizzler.m in Sources */ = {isa = PBXBuildFile; fileRef = C7EF2F6D3CC60C1B5A2B7D4166352F68 /* GULSceneDelegateSwizzler.m */; }; + F2ED7127FC52A47E69ABD112D32ED265 /* Format-inl.h in Headers */ = {isa = PBXBuildFile; fileRef = E2A7E7AFFF7BD0EFD1EBCFA32ADEBD4E /* Format-inl.h */; settings = {ATTRIBUTES = (Project, ); }; }; + F30AED6F56A42F63D9C6F9AB1C9C3A88 /* DrivableExecutor.h in Headers */ = {isa = PBXBuildFile; fileRef = 22924EDF803EDB7420D35F4C7D0A48E4 /* DrivableExecutor.h */; settings = {ATTRIBUTES = (Project, ); }; }; + F31522A5B0779097738F7722233E360C /* FIRInstallationsStoredAuthToken.h in Headers */ = {isa = PBXBuildFile; fileRef = 85247E76FEDDA0708B324800C21EF376 /* FIRInstallationsStoredAuthToken.h */; settings = {ATTRIBUTES = (Project, ); }; }; + F31589C8E8F7413A56ACB8831BBC5A70 /* YGLayout.h in Headers */ = {isa = PBXBuildFile; fileRef = EB53656FD26194F4F31764DC489E7F55 /* YGLayout.h */; settings = {ATTRIBUTES = (Project, ); }; }; + F32DC5163756318774F3DB5285D99839 /* Singleton.h in Headers */ = {isa = PBXBuildFile; fileRef = 60FAA3A0D864E902A246DC75DB891122 /* Singleton.h */; settings = {ATTRIBUTES = (Project, ); }; }; + F330A21C659C251559CD0ED6DDA4DE24 /* RCTDevLoadingViewSetEnabled.m in Sources */ = {isa = PBXBuildFile; fileRef = 42739D7080FC15DE6779B5285FCB3C66 /* RCTDevLoadingViewSetEnabled.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + F37040BD5282468ADCA0DD20C27CBDD6 /* GULSceneDelegateSwizzler.h in Headers */ = {isa = PBXBuildFile; fileRef = 36B788886CC8AAF191D4241DB1468F25 /* GULSceneDelegateSwizzler.h */; settings = {ATTRIBUTES = (Project, ); }; }; + F3766497A6906EDD87B99A2AB080E3C2 /* RCTSegmentedControl.m in Sources */ = {isa = PBXBuildFile; fileRef = 627C2F143E0478A1E833D89AD3EED420 /* RCTSegmentedControl.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + F38011C09AB370851B043B5B7167CDBE /* dec_sse41.c in Sources */ = {isa = PBXBuildFile; fileRef = 718DFD937258EF31853914212699C5C1 /* dec_sse41.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; + F3A4B0E039471A76DC881889F1C01975 /* Sse.h in Headers */ = {isa = PBXBuildFile; fileRef = CFE3123682E7E5697A86D0FB05A801EF /* Sse.h */; settings = {ATTRIBUTES = (Project, ); }; }; + F3A704C9853AD3B97DB2A7885E0887BA /* CoreCachedSharedPtr.h in Headers */ = {isa = PBXBuildFile; fileRef = 631628EB6538601CF68050AB86DED8C7 /* CoreCachedSharedPtr.h */; settings = {ATTRIBUTES = (Project, ); }; }; + F3AD960197449156A1D4F7DEAE697974 /* UMAppDelegateWrapper.h in Headers */ = {isa = PBXBuildFile; fileRef = 8FBB8E31EC21D1CBFDC103E2EDAE1070 /* UMAppDelegateWrapper.h */; settings = {ATTRIBUTES = (Project, ); }; }; + F3B93802067FEDA63C5F5DD37626BF9F /* FIRCLSNetworkOperation.m in Sources */ = {isa = PBXBuildFile; fileRef = 6DE3BC602794B7B014C4F2205BF94D7B /* FIRCLSNetworkOperation.m */; }; + F3CD94B46A7D70F303A1A7B69A1D7FF9 /* BugsnagLastRunInfo.m in Sources */ = {isa = PBXBuildFile; fileRef = 62ED6B4BCA463AE929A9FCC68439F736 /* BugsnagLastRunInfo.m */; }; + F3E2B0A5740BE497B3C034AA098983DC /* ObservingInputAccessoryViewTemp.m in Sources */ = {isa = PBXBuildFile; fileRef = 0F044BBE2DF64B0AA83933818D2357D8 /* ObservingInputAccessoryViewTemp.m */; }; + F3F7C1F66D5E697CF5FFE268EE5BF54A /* GDTCCTCompressionHelper.m in Sources */ = {isa = PBXBuildFile; fileRef = 6FA90B0FB430223A9FD2E50C7AD3D801 /* GDTCCTCompressionHelper.m */; }; + F410E7D5EC9CA4087FFE2B8B0126E289 /* idec_dec.c in Sources */ = {isa = PBXBuildFile; fileRef = 21911C88199C17258D8B57DB3943CC5F /* idec_dec.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; + F418A1C823088608CF41768802DACB36 /* Dirent.h in Headers */ = {isa = PBXBuildFile; fileRef = 1181BB71B1C6A226360E4FF72650765A /* Dirent.h */; settings = {ATTRIBUTES = (Project, ); }; }; + F419AD6BA03935A851798FF9697FB620 /* EXImageLoader.m in Sources */ = {isa = PBXBuildFile; fileRef = 558F64E901AAC77C744060E7E31B9EB6 /* EXImageLoader.m */; }; + F423B832E82766817CCB176696EE0DFC /* READebugNode.h in Headers */ = {isa = PBXBuildFile; fileRef = A841B4EACF296E65D45A97F5066D3D51 /* READebugNode.h */; settings = {ATTRIBUTES = (Project, ); }; }; + F42AF0129F0E06394778EC1B79FD17A4 /* File.h in Headers */ = {isa = PBXBuildFile; fileRef = 43E90B5A1E03778013C7F43219A1F0BF /* File.h */; settings = {ATTRIBUTES = (Project, ); }; }; + F43697EA3F1F7B064649CD4D97DD92AC /* AtomicIntrusiveLinkedList.h in Headers */ = {isa = PBXBuildFile; fileRef = 1C6A5034BA4A06F978F99765DEF3F3A3 /* AtomicIntrusiveLinkedList.h */; settings = {ATTRIBUTES = (Project, ); }; }; + F438DE87165B187386F5ACD46C930E4E /* JSCRuntime.h in Headers */ = {isa = PBXBuildFile; fileRef = 7B0FC59AE54F461AA104D3898DF5FE56 /* JSCRuntime.h */; settings = {ATTRIBUTES = (Project, ); }; }; + F45C92DE9E5177F9170B17909EEF40A5 /* AsymmetricMemoryBarrier.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 02E76B3039E44E736565839CF613AE10 /* 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"; }; }; + F45ED182844CFF8F126F90025669EE05 /* GlobalThreadPoolList.h in Headers */ = {isa = PBXBuildFile; fileRef = C30636F41EC13C7EB5E5AA7CB7506F7C /* GlobalThreadPoolList.h */; settings = {ATTRIBUTES = (Project, ); }; }; + F466FD1A825158171BB105F385CE38FF /* RNNativeViewHandler.m in Sources */ = {isa = PBXBuildFile; fileRef = 046A46A4D3012CB489CB79497D95A612 /* RNNativeViewHandler.m */; }; + F46C9F6FBDC502FFF64A5E16D6745E62 /* Futex.h in Headers */ = {isa = PBXBuildFile; fileRef = 01424B53B7FC838948BBEAA9B4698EF6 /* Futex.h */; settings = {ATTRIBUTES = (Project, ); }; }; + F47834738C3399C03CB112AC256CD918 /* FireAndForgetBasedFlipperResponder.h in Headers */ = {isa = PBXBuildFile; fileRef = 7161BE6C623D705BEED74F02BBEE27A8 /* FireAndForgetBasedFlipperResponder.h */; settings = {ATTRIBUTES = (Project, ); }; }; + F483BEA179CC564681C7B18DDCEE9377 /* RNDateTimePicker.h in Headers */ = {isa = PBXBuildFile; fileRef = 528F237CC320B495D7E3E338DF645B3C /* RNDateTimePicker.h */; settings = {ATTRIBUTES = (Project, ); }; }; + F488130244160FFE0CD34B1744F1A67E /* SafeAssert.h in Headers */ = {isa = PBXBuildFile; fileRef = 1C32263A3697A3B8DDB3160296E6522A /* SafeAssert.h */; settings = {ATTRIBUTES = (Project, ); }; }; + F49C2FA8B1239AA5E35582766C9F05C6 /* RNPushKitEventListener.m in Sources */ = {isa = PBXBuildFile; fileRef = C938F168AE77168233713E28A859D703 /* RNPushKitEventListener.m */; }; + F4B6C72EAD5762D54A572DB5CB3AA680 /* Constexpr.h in Headers */ = {isa = PBXBuildFile; fileRef = 0694EDDE053361188526595B567D3F78 /* Constexpr.h */; settings = {ATTRIBUTES = (Project, ); }; }; + F4BBEF1E2A39259D144775F374201C33 /* RCTDevLoadingViewProtocol.h in Headers */ = {isa = PBXBuildFile; fileRef = 9F30AFEBBC37000168C10B0BB40DE901 /* RCTDevLoadingViewProtocol.h */; settings = {ATTRIBUTES = (Project, ); }; }; + F4C08A0CF246E3DE0AD81633533E750A /* SafeAreaSpacerShadowView.m in Sources */ = {isa = PBXBuildFile; fileRef = 0641C1A8B6C6A5462693D901E04AA211 /* SafeAreaSpacerShadowView.m */; }; + F4D59FBF8971EED16A3A357859818125 /* RNCommandsHandler.m in Sources */ = {isa = PBXBuildFile; fileRef = F0561B61CA7F5F895368C653D8E97247 /* RNCommandsHandler.m */; }; + F4E77368E8D9DC57EC83A1D3BE764C59 /* SysUio.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 72E452610E06C566202FAAE7B5F54BCE /* SysUio.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -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\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors"; }; }; + F4FE80AB2EA8DD144D7457A12534D90D /* QBAlbumsViewController.h in Headers */ = {isa = PBXBuildFile; fileRef = 14B8D481ECD59F0FAABB9954FEDC1DD7 /* QBAlbumsViewController.h */; settings = {ATTRIBUTES = (Project, ); }; }; + F533E58C130B0DF773CE9CB329655C01 /* SynchronizedPtr.h in Headers */ = {isa = PBXBuildFile; fileRef = 469FF7671FEE57BEFA02CBB9FE28E1AD /* SynchronizedPtr.h */; settings = {ATTRIBUTES = (Project, ); }; }; + F53FCAEB957A7C15BA2A77950D0FCCD1 /* FramedDuplexConnection.h in Headers */ = {isa = PBXBuildFile; fileRef = 23B822ABE5B828DE67B014671F72AA3C /* FramedDuplexConnection.h */; settings = {ATTRIBUTES = (Project, ); }; }; + F54C1D32A95A267660B14246E54DEE71 /* TupleOps.h in Headers */ = {isa = PBXBuildFile; fileRef = CA0033022F8A9798C812CC343DC76E0D /* TupleOps.h */; settings = {ATTRIBUTES = (Project, ); }; }; + F562037184DDEF15581985B57286135D /* FBReactNativeSpec-generated.mm in Sources */ = {isa = PBXBuildFile; fileRef = E9AFEA1F08D4C6B6779A89305C7B8C04 /* FBReactNativeSpec-generated.mm */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-nullability-completeness"; }; }; + F56290866306CA680C429E11708267B9 /* BitUtils.h in Headers */ = {isa = PBXBuildFile; fileRef = 7945497DE8901950337D8E1CE00AC5EE /* BitUtils.h */; settings = {ATTRIBUTES = (Project, ); }; }; + F59979DF600BF5CDD3AD4CCA11588F8D /* Sockets.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 8695161EF7E1488C1979CE1D901E53C6 /* Sockets.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -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\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors"; }; }; + F5A69F037EB42B0A6AD53FA35AB2A53D /* Flipper-DoubleConversion-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = DDFF6E2CEC99C6098D7C60394C9AF956 /* Flipper-DoubleConversion-dummy.m */; }; + F5B44CD867B849504948CCAA1D0DF236 /* ARTRenderable.h in Headers */ = {isa = PBXBuildFile; fileRef = D68DA410094157A0BA34ABD08B1E5535 /* ARTRenderable.h */; settings = {ATTRIBUTES = (Project, ); }; }; + F5BC5D47E562AD877ED6742AB4589960 /* SKResponseInfo.h in Headers */ = {isa = PBXBuildFile; fileRef = 79668A3961A6DFEFB9669630B43305F9 /* SKResponseInfo.h */; settings = {ATTRIBUTES = (Project, ); }; }; + F5E4735FFE2E2971E6330450EE6B82FC /* EXFileSystemLocalFileHandler.h in Headers */ = {isa = PBXBuildFile; fileRef = ED763F5A828E88AA053D8BDF61B0914A /* EXFileSystemLocalFileHandler.h */; settings = {ATTRIBUTES = (Project, ); }; }; + F5ECECD6BEC3177B0CB70DE6E6CF82C9 /* RCTTextDecorationLineType.h in Headers */ = {isa = PBXBuildFile; fileRef = 0025553B00C3C36A8BF79261AF533047 /* RCTTextDecorationLineType.h */; settings = {ATTRIBUTES = (Project, ); }; }; + F5F3A2C47046A40E8452C02B8209E5E0 /* BSGInternalErrorReporter.m in Sources */ = {isa = PBXBuildFile; fileRef = 061526E906CF56F9E500DA4E33B7AAFE /* BSGInternalErrorReporter.m */; }; + F5F74028EA5A4181D1AA7BDD85450A6C /* RCTSettingsPlugins.mm in Sources */ = {isa = PBXBuildFile; fileRef = 3501DA511E7F1F06AA9B6AF247B17A64 /* 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"; }; }; + F632EC2DF3FC81574E44DF4E9D8D3FC6 /* RCTLayoutAnimationGroup.m in Sources */ = {isa = PBXBuildFile; fileRef = 542C7BCF65B0205E13A48816C27B884A /* RCTLayoutAnimationGroup.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + F65B41A26C537E1A7F2C3288918E0846 /* SmallLocks.h in Headers */ = {isa = PBXBuildFile; fileRef = CFA4F2FA3C88A7D35152B22E7D9725B1 /* SmallLocks.h */; settings = {ATTRIBUTES = (Project, ); }; }; + F678286436DF873098DB482E316D5701 /* Hash.h in Headers */ = {isa = PBXBuildFile; fileRef = BC876C52B8F5AA5AA56F08028D17C48A /* Hash.h */; settings = {ATTRIBUTES = (Project, ); }; }; + F683E4DD123401F22890E9AEEDA1D2CA /* huffman_encode_utils.h in Headers */ = {isa = PBXBuildFile; fileRef = 79F6CAED7A5CF4FFD838687D3621B4B5 /* huffman_encode_utils.h */; settings = {ATTRIBUTES = (Project, ); }; }; + F68CF747A0CC472BCDB8B7C36C16188F /* Fingerprint.h in Headers */ = {isa = PBXBuildFile; fileRef = 311570029E232743AF9FB615A0355435 /* Fingerprint.h */; settings = {ATTRIBUTES = (Project, ); }; }; + F6BF1E866C1B25101F0C7ADE2EA55E6E /* RCTHTTPRequestHandler.h in Headers */ = {isa = PBXBuildFile; fileRef = DBC5D47B58979EDCB450163B961643F2 /* RCTHTTPRequestHandler.h */; settings = {ATTRIBUTES = (Project, ); }; }; + F6E54EDC4A6085C19961943258BCC5ED /* FirebaseCore.h in Headers */ = {isa = PBXBuildFile; fileRef = 172DD778AA29D60C30C35414F10BD6E4 /* FirebaseCore.h */; settings = {ATTRIBUTES = (Project, ); }; }; + F6E64138C113CA650C89D013706A3B4C /* RCTSettingsManager.mm in Sources */ = {isa = PBXBuildFile; fileRef = F3BEA36EB7569BE1806319E18BAB6FFE /* 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"; }; }; + F6F3936AF34AD28E32F45798A890D951 /* AsyncPauseState.h in Headers */ = {isa = PBXBuildFile; fileRef = 9711B6132BF37054EE9339D0F51F2762 /* AsyncPauseState.h */; settings = {ATTRIBUTES = (Project, ); }; }; + F70C2B76B4A07472106CFDB6AF54286D /* sorted_vector_types.h in Headers */ = {isa = PBXBuildFile; fileRef = 548DF976B1BD813F08E0D2564004319C /* sorted_vector_types.h */; settings = {ATTRIBUTES = (Project, ); }; }; + F71E2166131BB9A8CA28F29B0683CC0D /* BugsnagCrashSentry.m in Sources */ = {isa = PBXBuildFile; fileRef = 856CB21103FF0F282DA8E8107A242F46 /* BugsnagCrashSentry.m */; }; + F729B2608A09F539A6EB8C73FFA72DE6 /* RCTSegmentedControlManager.m in Sources */ = {isa = PBXBuildFile; fileRef = 6086248C2E2C94CAFE558B5B83E4B65F /* RCTSegmentedControlManager.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + F75C507189DEFCF81FF4E230CFCFE137 /* rn-fetch-blob-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = F54EF9636F8EF8D470087BFD45504BAA /* rn-fetch-blob-dummy.m */; }; + F75F6533E564F9ECFC8FD18B584B8E77 /* GDTCORReachability_Private.h in Headers */ = {isa = PBXBuildFile; fileRef = C0B8F248902305759A0F7F3E507345DB /* GDTCORReachability_Private.h */; settings = {ATTRIBUTES = (Project, ); }; }; + F76FA8AB88F47BE2D45B7F9D375A558C /* RCTKeyCommandsManager.m in Sources */ = {isa = PBXBuildFile; fileRef = 765541A8AB33A938F1A82C90EE625733 /* RCTKeyCommandsManager.m */; }; + F7701AA1791854F24F2B744B6A3F331C /* BugsnagReactNative-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = F4FC303BE623F15A91E502F10F95F27F /* BugsnagReactNative-dummy.m */; }; + F77F8BEC141045F14502B971909354AD /* Parallel.h in Headers */ = {isa = PBXBuildFile; fileRef = D87C636CDA6C03A6EE02D87E582E9826 /* Parallel.h */; settings = {ATTRIBUTES = (Project, ); }; }; + F780C72BF2D82C3C7CABD5B19B712A3F /* InlineFunctionRef.h in Headers */ = {isa = PBXBuildFile; fileRef = C56930969E532B06DF7C516F3D45D20F /* InlineFunctionRef.h */; settings = {ATTRIBUTES = (Project, ); }; }; + F7AF33C26F7C2A83D928FB1C0C5F0368 /* YGNodePrint.h in Headers */ = {isa = PBXBuildFile; fileRef = 9762DD58E41F3AE1276FEF73934D751F /* YGNodePrint.h */; settings = {ATTRIBUTES = (Project, ); }; }; + F7D339FC6D7016034B1909D0CEF6814D /* File.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 5908050CC9096362A81C4A76F22235AC /* File.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -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\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors"; }; }; + F7DA8F02B7D644C6C622BA63C474EDBF /* RNNotificationCenter.h in Headers */ = {isa = PBXBuildFile; fileRef = 5B9B2869B52E94AC3CA76F7F9D14A2E1 /* RNNotificationCenter.h */; settings = {ATTRIBUTES = (Project, ); }; }; + F7E0813A5C549149F30823927124452C /* RCTBlobCollector.h in Headers */ = {isa = PBXBuildFile; fileRef = 9F429CEB783585ECA1518DDF2AA5ACA0 /* RCTBlobCollector.h */; settings = {ATTRIBUTES = (Project, ); }; }; + F7E8E5DB41C4E3BE4092D3906A57DC26 /* SingleWriterFixedHashMap.h in Headers */ = {isa = PBXBuildFile; fileRef = 999A317D20118A96C8F8EA0DA2DA2CF9 /* SingleWriterFixedHashMap.h */; settings = {ATTRIBUTES = (Project, ); }; }; + F7F4239F2743738B5158CB0F4A4B004E /* FIRComponentContainer.m in Sources */ = {isa = PBXBuildFile; fileRef = CC673C15E8F300DD3C214F761942C29D /* FIRComponentContainer.m */; }; + F7F5DA933AAFFD1325DEBD7BB63FAAD5 /* SKBufferingPlugin+CPPInitialization.h in Headers */ = {isa = PBXBuildFile; fileRef = 2466A92B7494A946A484AD469D893C44 /* SKBufferingPlugin+CPPInitialization.h */; settings = {ATTRIBUTES = (Project, ); }; }; + F80507256C7CBFBE1C02D18C61F59898 /* BitIteratorDetail.h in Headers */ = {isa = PBXBuildFile; fileRef = 58905787DC21112A76D3180EC1E94AC5 /* BitIteratorDetail.h */; settings = {ATTRIBUTES = (Project, ); }; }; + F81F0C79A590E40F407991125F13E0FA /* FIRCLSAsyncOperation.m in Sources */ = {isa = PBXBuildFile; fileRef = E5CD9A4A9B17CBD64EAF74A0668ED407 /* FIRCLSAsyncOperation.m */; }; + F82A113CA69D6A3CBACB0767F39E86E3 /* FIRInstallationsHTTPError.h in Headers */ = {isa = PBXBuildFile; fileRef = 04DCACFC45902D2E1B8D9090875D8207 /* FIRInstallationsHTTPError.h */; settings = {ATTRIBUTES = (Project, ); }; }; + F85E06106305EE74DB888E75CA399DAC /* JSIDynamic.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 93474E2A32F3F89607C1C64A814178ED /* JSIDynamic.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + F86B1EFB1FD596EAD2C5AF91C929F9A4 /* FixedString.h in Headers */ = {isa = PBXBuildFile; fileRef = 39B6983CEE0953921275D4300F5F65F7 /* FixedString.h */; settings = {ATTRIBUTES = (Project, ); }; }; + F8A18CD4C4AAAF3D84EE1059ACEB39F6 /* REACallFuncNode.m in Sources */ = {isa = PBXBuildFile; fileRef = 6B31A0C80E4BD6208A4480A163DC2996 /* REACallFuncNode.m */; }; + F8CF12CB8A4B339D598B447F86965F52 /* JSINativeModules.h in Headers */ = {isa = PBXBuildFile; fileRef = C6E90EEE25B5A1F0B0281138B3892EBE /* JSINativeModules.h */; settings = {ATTRIBUTES = (Project, ); }; }; + F8D330CDC93404A50EE610DBA2891A13 /* RCTCustomInputControllerTemp.m in Sources */ = {isa = PBXBuildFile; fileRef = 93308F420E42F74B5A2750E4E732D71A /* RCTCustomInputControllerTemp.m */; }; + F8EC8BE7E4ABF16D51C6733AE81FE987 /* TcpDuplexConnection.cpp in Sources */ = {isa = PBXBuildFile; fileRef = CE4290D6C388B7DC6008E00B28447963 /* TcpDuplexConnection.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -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 -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors"; }; }; + F8FF72955ED1B9B0877886768D0AEEE0 /* Libgen.h in Headers */ = {isa = PBXBuildFile; fileRef = 605E843B25F664012634412A146ACA85 /* Libgen.h */; settings = {ATTRIBUTES = (Project, ); }; }; + F911521A927F6B5ADB671F6FD619BE24 /* RCTNativeAnimatedNodesManager.h in Headers */ = {isa = PBXBuildFile; fileRef = BCFE6834A2D4F7499BA855B563E7283D /* RCTNativeAnimatedNodesManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; + F9354085A78A02E78585F70FBA552E2A /* FLEXNetworkObserver.h in Headers */ = {isa = PBXBuildFile; fileRef = CD2A64E38F2C7DDE7104C53029CB5899 /* FLEXNetworkObserver.h */; settings = {ATTRIBUTES = (Project, ); }; }; + F94FD8D2AD714D1C6E589B66F960A56F /* RCTLayoutAnimation.m in Sources */ = {isa = PBXBuildFile; fileRef = ADAC2FF1F07052C8B111B7F23D1ACED3 /* RCTLayoutAnimation.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + F95DFE96FCFACAE24A16207380286C0D /* StreamRequester.h in Headers */ = {isa = PBXBuildFile; fileRef = BED6ECDEACADEF05310734AB5770C4C5 /* StreamRequester.h */; settings = {ATTRIBUTES = (Project, ); }; }; + F986A7D719455804087D6409FD045A4F /* FIRCLSSettingsOnboardingManager.m in Sources */ = {isa = PBXBuildFile; fileRef = EB86772559D8B25FB62D762875B4E1A5 /* FIRCLSSettingsOnboardingManager.m */; }; + F9938D98AD7A356B19576DECAB347044 /* RNFetchBlob.m in Sources */ = {isa = PBXBuildFile; fileRef = 0D6E820C6CF05DC7636A79B507E31E88 /* RNFetchBlob.m */; }; + F9A608390198DC068181B70E477C1A98 /* Tearable.h in Headers */ = {isa = PBXBuildFile; fileRef = 6C97846A245CFA8A9D1A9066BA1C8D39 /* Tearable.h */; settings = {ATTRIBUTES = (Project, ); }; }; + F9AB03F2AA34ECB168B6969CB0E0AD59 /* Exception.h in Headers */ = {isa = PBXBuildFile; fileRef = E058DE8168AA55FCA6654A0779ACB92E /* Exception.h */; settings = {ATTRIBUTES = (Project, ); }; }; + F9B3090242E6375F92F75FFF4FB52EA0 /* BSG_KSSysCtl.c in Sources */ = {isa = PBXBuildFile; fileRef = 89CB43CBD81D5A8BC8980EA6C602177E /* BSG_KSSysCtl.c */; }; + F9B9D70882006BA0A2FBB4811325A260 /* lossless_sse2.c in Sources */ = {isa = PBXBuildFile; fileRef = 3AECD64CC3EABA570E9653BCA3F119EC /* lossless_sse2.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; + F9C00A615E5BAB71BB91C5B3716985D0 /* RCTBridgeMethod.h in Headers */ = {isa = PBXBuildFile; fileRef = AFAD65AA13985A28ADC98BD8C5068EB6 /* RCTBridgeMethod.h */; settings = {ATTRIBUTES = (Project, ); }; }; + F9D32AF21DCFC3BCD5A3881D431FADA5 /* SDImageCoderHelper.m in Sources */ = {isa = PBXBuildFile; fileRef = F9ED10D80DF2DA2F2304FC06E4CE1CE7 /* SDImageCoderHelper.m */; }; + F9DC9CB3BAB3963BD8C0D38E698176CE /* RCTCustomKeyboardViewControllerTemp.h in Headers */ = {isa = PBXBuildFile; fileRef = FEC8FDF81B3041D687AC472ECE166DC3 /* RCTCustomKeyboardViewControllerTemp.h */; settings = {ATTRIBUTES = (Project, ); }; }; + F9E3A28828C67EC397BF898C2EBF56C4 /* RCTVirtualTextViewManager.h in Headers */ = {isa = PBXBuildFile; fileRef = E9053330601A717F1DD225D45861FA62 /* RCTVirtualTextViewManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; + F9F2C514B5F410C5C47CCCD541D1BFEA /* RNPushKitEventHandler.m in Sources */ = {isa = PBXBuildFile; fileRef = 102BC125C6261EB31E3368878A7A8EC2 /* RNPushKitEventHandler.m */; }; + FA06568B514EA9209639154C52126B34 /* Init.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 0C33AA1BD6A7309D81776A617E4B7EDF /* Init.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -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\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors"; }; }; + FA21DBCA5B9AE16019AA63F13BE54937 /* F14Map-fwd.h in Headers */ = {isa = PBXBuildFile; fileRef = 46A553DD6A6E77F85A2607C819C345CF /* F14Map-fwd.h */; settings = {ATTRIBUTES = (Project, ); }; }; + FA25C6CA15033C044CCBED3A73A9113C /* IDStore.h in Headers */ = {isa = PBXBuildFile; fileRef = 937643CBD5E1179457B43E9615FDE49F /* IDStore.h */; settings = {ATTRIBUTES = (Project, ); }; }; + FA471FD4EE12D741156C47EDBA0385EE /* SafeAreaSpacerShadowView.h in Headers */ = {isa = PBXBuildFile; fileRef = 39155CA8E4BB22686EC036947E746C55 /* SafeAreaSpacerShadowView.h */; settings = {ATTRIBUTES = (Project, ); }; }; + FA4BDFB93A5AA8072499D36475D499D2 /* F14SetFallback.h in Headers */ = {isa = PBXBuildFile; fileRef = C2FF2D65FA94C18434A0AF49D567C8CD /* F14SetFallback.h */; settings = {ATTRIBUTES = (Project, ); }; }; + FA67F5CB355C797E92D42CEF8ECE398B /* RCTManagedPointer.h in Headers */ = {isa = PBXBuildFile; fileRef = 154D22A5231ACC6F73F3381D7E5C43C5 /* RCTManagedPointer.h */; settings = {ATTRIBUTES = (Project, ); }; }; + FA6D912F99357915A1C3989545AA214E /* GULMutableDictionary.h in Headers */ = {isa = PBXBuildFile; fileRef = 736DCA4DF1C742B4DA8461B6BEA0B28B /* GULMutableDictionary.h */; settings = {ATTRIBUTES = (Project, ); }; }; + FA733BA648EA0D3E1324AECBC9CB753F /* RCTBorderDrawing.h in Headers */ = {isa = PBXBuildFile; fileRef = CF42B5B064BCCC3B835905134AAAD221 /* RCTBorderDrawing.h */; settings = {ATTRIBUTES = (Project, ); }; }; + FAA94F66C01EDAE45AA3D2D21C7E1778 /* SDWebImageCacheSerializer.h in Headers */ = {isa = PBXBuildFile; fileRef = 8C6DEC7CCE4ACB967A791B8D7475A5D5 /* SDWebImageCacheSerializer.h */; settings = {ATTRIBUTES = (Project, ); }; }; + FAEA8255FCFB1B340D105BF8AB9097B3 /* GDTCCTCompressionHelper.h in Headers */ = {isa = PBXBuildFile; fileRef = 4ECF4374A8D7D6C1F7A4B0CC89421BA4 /* GDTCCTCompressionHelper.h */; settings = {ATTRIBUTES = (Project, ); }; }; + FAF47CB6AB68051DC14E2AFF5F94A54B /* firebasecore.nanopb.c in Sources */ = {isa = PBXBuildFile; fileRef = 853183B8B501634F7E4E02AABCE471ED /* firebasecore.nanopb.c */; }; + FB030E0B40723163A8A5CC37778237DB /* QBCheckmarkView.m in Sources */ = {isa = PBXBuildFile; fileRef = 56183F9C3925A0DA23F34F49C19A89CE /* QBCheckmarkView.m */; }; + FB132993BA5053116805060BBD6F64D6 /* ThreadedRepeatingFunctionRunner.h in Headers */ = {isa = PBXBuildFile; fileRef = 6C3B86F569EE9242FD5D86D3B6ADC20D /* ThreadedRepeatingFunctionRunner.h */; settings = {ATTRIBUTES = (Project, ); }; }; + FB13683FEEC61CA6568704C5039EDC4F /* ARTShapeManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 1F7FF97F65E7627DF562B489EFFD2B03 /* ARTShapeManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; + FB2CD5972E5709AB419DF179827358B1 /* YGNode.h in Headers */ = {isa = PBXBuildFile; fileRef = 2CA1D57BA399573DFF508AE3AD994B96 /* YGNode.h */; settings = {ATTRIBUTES = (Project, ); }; }; + FB43462D2FFE9BF8B8ED2C26D7EA0C23 /* RCTMultilineTextInputView.h in Headers */ = {isa = PBXBuildFile; fileRef = 99426704230609B4CF885AD3E0E448AC /* RCTMultilineTextInputView.h */; settings = {ATTRIBUTES = (Project, ); }; }; + FB5540EB2C44845A649A39FDE54B70F9 /* RCTStatusBarManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 805A27CDDA09509DF32D8AB883B76AE9 /* RCTStatusBarManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; + FB66315DE7448E1703963072F7BF0915 /* GULNetworkURLSession.h in Headers */ = {isa = PBXBuildFile; fileRef = 552355C1FCF6DABDBA85A2A1C7CEA885 /* GULNetworkURLSession.h */; settings = {ATTRIBUTES = (Project, ); }; }; + FB7D05BAAE4D4CBE95F9E955881326F2 /* Yoga.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 94D00C9DCBF32A0BDA44BBD4083BD70E /* Yoga.cpp */; settings = {COMPILER_FLAGS = "-fno-omit-frame-pointer -fexceptions -Wall -Werror -std=c++1y -fPIC -fno-objc-arc"; }; }; + FBC1DE4DED3201D61E5A0BC445113987 /* FlipperRSocketResponder.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 8FABD72C9E2EE3995E41F7E7224B66DE /* FlipperRSocketResponder.cpp */; settings = {COMPILER_FLAGS = "-DFLIPPER_OSS=1 -DFB_SONARKIT_ENABLED=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -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"; }; }; + FBD6BD885A13C8DC7993191122BEB7D1 /* FIRInstallationsIDController.m in Sources */ = {isa = PBXBuildFile; fileRef = FC3CD7EE8F9F382FE5C059AC57B6FAD6 /* FIRInstallationsIDController.m */; }; + FBD859F5D13F6EA5115DE785373A1AA5 /* cost_mips_dsp_r2.c in Sources */ = {isa = PBXBuildFile; fileRef = 92ECA95197B1587F62AA86B35EF33839 /* cost_mips_dsp_r2.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; + FBE26D0902A5036D4B999CF178521D87 /* bignum-dtoa.cc in Sources */ = {isa = PBXBuildFile; fileRef = 7B649321AF25C085837E8A173D0EC236 /* bignum-dtoa.cc */; settings = {COMPILER_FLAGS = "-Wno-unreachable-code"; }; }; + FC0BAB648B7ACB759DBC28EFDF0CF1DF /* AsyncPipe.cpp in Sources */ = {isa = PBXBuildFile; fileRef = DB6FF4B04D43DF300C878F0E323293E2 /* AsyncPipe.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -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\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors"; }; }; + FC3DD5BA299719F678DBA3620384A310 /* UMReactNativeAdapter-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 2AC6B0345C5544562BDC46E803EAA9A1 /* UMReactNativeAdapter-dummy.m */; }; + FC46D581609F5B85226E5AFB99790087 /* QuotientMultiSet-inl.h in Headers */ = {isa = PBXBuildFile; fileRef = 113CD7E4AE12E20259360D62FF5B014B /* QuotientMultiSet-inl.h */; settings = {ATTRIBUTES = (Project, ); }; }; + FC4D3C58F89FE27DC8A7387F219D6DD6 /* FIRCLSFCRAnalytics.h in Headers */ = {isa = PBXBuildFile; fileRef = B51092D2F569AE8D17ACEEC01B46DC3C /* FIRCLSFCRAnalytics.h */; settings = {ATTRIBUTES = (Project, ); }; }; + FC553389ABB0F4D6E5E06F53079E0C21 /* NSData+EXFileSystem.h in Headers */ = {isa = PBXBuildFile; fileRef = 5E8C7F18DB541C876ABC273E669C0712 /* NSData+EXFileSystem.h */; settings = {ATTRIBUTES = (Project, ); }; }; + FC55DA607FE0D3E26E24D2E2897F1B90 /* IOVec.h in Headers */ = {isa = PBXBuildFile; fileRef = 05CE3277C27232C1B6D3FCC327942A63 /* IOVec.h */; settings = {ATTRIBUTES = (Project, ); }; }; + FC5820F09EE26E934DDF964EF8703ABD /* Foreach-inl.h in Headers */ = {isa = PBXBuildFile; fileRef = 7C628ECDA0A85F6D2A928B633F08B18D /* Foreach-inl.h */; settings = {ATTRIBUTES = (Project, ); }; }; + FC5A46BA8D9591382FE9C9CB0832E213 /* RCTActivityIndicatorView.h in Headers */ = {isa = PBXBuildFile; fileRef = E70A023443904DDE940CCFDFA3F0C672 /* RCTActivityIndicatorView.h */; settings = {ATTRIBUTES = (Project, ); }; }; + FC655B2D5DB5C5B900F24435DE899DF1 /* SocketFastOpen.h in Headers */ = {isa = PBXBuildFile; fileRef = FF51358FDCA889F656C79C2EC31E6028 /* SocketFastOpen.h */; settings = {ATTRIBUTES = (Project, ); }; }; + FC696892816F9D12775747D1B372F66E /* rescaler.c in Sources */ = {isa = PBXBuildFile; fileRef = B20F12B1FABAAE29FA8AEDBFA3E3C310 /* rescaler.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; + FC860918E0749AB204DFF627C64D3B47 /* UIImage+Extension.h in Headers */ = {isa = PBXBuildFile; fileRef = 13C9DCDBDB2D1B7AFF2E38F8C10A5085 /* UIImage+Extension.h */; settings = {ATTRIBUTES = (Project, ); }; }; + FC998DA0A93D85C7346274D7D2FBEDDE /* RCTFont.h in Headers */ = {isa = PBXBuildFile; fileRef = 788604AC5FC5EB8E6E1CBD8211BB8921 /* RCTFont.h */; settings = {ATTRIBUTES = (Project, ); }; }; + FC99CFBE0A2590C34127D98BCA9CFDE3 /* Subprocess.h in Headers */ = {isa = PBXBuildFile; fileRef = C2741538C85411612EAAA5071D8728ED /* Subprocess.h */; settings = {ATTRIBUTES = (Project, ); }; }; + FCB27EE4F1215958362E4828A1BC1C99 /* Conv.cpp in Sources */ = {isa = PBXBuildFile; fileRef = DF4299C534A9167B8BCD112ED4910DFB /* Conv.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -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\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors"; }; }; + FCB29464D2B28E7958D8152C37F3323F /* GlobalShutdownSocketSet.h in Headers */ = {isa = PBXBuildFile; fileRef = 19B62BF389FC5982BB36FAA0D17C0662 /* GlobalShutdownSocketSet.h */; settings = {ATTRIBUTES = (Project, ); }; }; + FCB958B8FA17A867C51D8B751AE6D126 /* RCTEventAnimation.m in Sources */ = {isa = PBXBuildFile; fileRef = 87284BED37995C2117B9CE0C9079C3B2 /* 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"; }; }; + FCCB567A803B760A47E110B6587080FF /* UIImage+ExtendedCacheData.m in Sources */ = {isa = PBXBuildFile; fileRef = 86A4426DD63E7A4BDC238B788AD83214 /* UIImage+ExtendedCacheData.m */; }; + FCCF16420DF0BFD060674DC4CE46B94D /* config_enc.c in Sources */ = {isa = PBXBuildFile; fileRef = 042E024117A9C4AD5843BD75710ACB76 /* config_enc.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; + FCD1BFAD1C0B6D77A6B2C22479E6AD0E /* ConcurrentSkipList-inl.h in Headers */ = {isa = PBXBuildFile; fileRef = 91DD6CF3D9386064908C8DF3737E49CF /* ConcurrentSkipList-inl.h */; settings = {ATTRIBUTES = (Project, ); }; }; + FCEB42558EF0B97A8A1B09FD39B1FC22 /* RCTPerfMonitor.mm in Sources */ = {isa = PBXBuildFile; fileRef = 55DF40C67AED6A86F5EBD59DFE928F5D /* 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"; }; }; + FCFA8BA7736AFF50C6A9E3845084337B /* FIRCrashlytics.m in Sources */ = {isa = PBXBuildFile; fileRef = 7974700B3A80DF1A0E727661E17D7D80 /* FIRCrashlytics.m */; }; + FD04928F365972E0D401BE4D0BFF8F14 /* ScheduledSingleObserver.h in Headers */ = {isa = PBXBuildFile; fileRef = 01E1291498C64C07547774F16AA1E544 /* ScheduledSingleObserver.h */; settings = {ATTRIBUTES = (Project, ); }; }; + FD097491E4AAC2EA0F8A35F464FECB6A /* RCTWeakProxy.m in Sources */ = {isa = PBXBuildFile; fileRef = 94D7E4CC5B1798F6DDEF6B1D65AD374F /* RCTWeakProxy.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + FD0A932405ADE89ED9A97D2E57917082 /* FIRCLSPackageReportOperation.m in Sources */ = {isa = PBXBuildFile; fileRef = 901AACE639312BF5DE86D58D45064E77 /* FIRCLSPackageReportOperation.m */; }; + FD0AA929035E8769EAD3705B0E03B3E4 /* FlipperCppWrapperPlugin.h in Headers */ = {isa = PBXBuildFile; fileRef = 6971DD48EFE585356C9248A1AB57ADFD /* FlipperCppWrapperPlugin.h */; settings = {ATTRIBUTES = (Project, ); }; }; + FD220D21594B9C3B4F81ECD12A7DCAE6 /* ParkingLot.cpp in Sources */ = {isa = PBXBuildFile; fileRef = E5812AE9654BC3D45A1CFBAF08286EDA /* 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"; }; }; + FD3DEE6F0E76FA12BE459C2CF4F17C91 /* BSGAppKit.h in Headers */ = {isa = PBXBuildFile; fileRef = FFFD6378FE7EA3865A2BD3814EC14027 /* BSGAppKit.h */; settings = {ATTRIBUTES = (Project, ); }; }; + FD7AFFC6D5C5A0AB19D7A299DCF80C53 /* BSGEventUploader.m in Sources */ = {isa = PBXBuildFile; fileRef = 649EDF8FC7D597517AC77AC387A9988B /* BSGEventUploader.m */; }; + FD7F14BBD710086A67B65F013DE8695D /* MMBuffer.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 75EAE6D72CC29D61E6B25C78A666D608 /* MMBuffer.cpp */; settings = {COMPILER_FLAGS = "-x objective-c++ -fno-objc-arc"; }; }; + FD8D2C962D6D5FB9072436C2712FFEA6 /* TypeList.h in Headers */ = {isa = PBXBuildFile; fileRef = 7C9EA402F618FEC515E97FD2452784A4 /* TypeList.h */; settings = {ATTRIBUTES = (Project, ); }; }; + FD96E153749CF1517497E878C9FBB684 /* EliasFanoCoding.h in Headers */ = {isa = PBXBuildFile; fileRef = 2C3592BE45EBA489DE146D264014AAB4 /* EliasFanoCoding.h */; settings = {ATTRIBUTES = (Project, ); }; }; + FDA7F0D315ED1270A86C302BAA663FBF /* FlatCombiningPriorityQueue.h in Headers */ = {isa = PBXBuildFile; fileRef = 80A40C142654D89B5BD4503733E62435 /* FlatCombiningPriorityQueue.h */; settings = {ATTRIBUTES = (Project, ); }; }; + FDB8FC87DDBF0B6B214EDC547ED48654 /* FBString.h in Headers */ = {isa = PBXBuildFile; fileRef = 9D3329D2E4370FE6072579AC125814E7 /* FBString.h */; settings = {ATTRIBUTES = (Project, ); }; }; + FDC7513840EC1907225430A0A0AC4A79 /* dec_mips32.c in Sources */ = {isa = PBXBuildFile; fileRef = A7F56ED3CEE91114DB7461FFC45AC369 /* dec_mips32.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; + FDD1278918317B0F4D905C46C0E6007E /* GULSecureCoding.h in Headers */ = {isa = PBXBuildFile; fileRef = 17171B6FC3B6B0511BB6AA9789244EFC /* GULSecureCoding.h */; settings = {ATTRIBUTES = (Project, ); }; }; + FDDF25EB74BFB8878206959BC43F9877 /* RNFetchBlobConst.h in Headers */ = {isa = PBXBuildFile; fileRef = CFD5D433CA806CF3EB22FB199349ADC9 /* RNFetchBlobConst.h */; settings = {ATTRIBUTES = (Project, ); }; }; + FDF1D98A15972218515BB0BE47707E41 /* RecordIO.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 6AD39D6B4FFC40F5691769E9063987C5 /* RecordIO.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -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\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors"; }; }; + FDF5D29630E190EB4A8F06336AE4E850 /* Sha.m in Sources */ = {isa = PBXBuildFile; fileRef = 27CCA1DA090A6DC6DEE5D9B9828835B9 /* Sha.m */; }; + FDF90A05AE6A1F8CED53C4EE16422835 /* EnvironmentUtil.m in Sources */ = {isa = PBXBuildFile; fileRef = FB2EB556BBFFC3DD8CF36FA741D0E7FE /* EnvironmentUtil.m */; }; + FDFA4939AEFCAA031871BA6D9007634E /* EXAVObject.h in Headers */ = {isa = PBXBuildFile; fileRef = 905C4A2E0B91A8A9EEA897C6E47B431D /* EXAVObject.h */; settings = {ATTRIBUTES = (Project, ); }; }; + FDFF9DE163669489BBD11E7E90784DC2 /* FlipperResponder.h in Headers */ = {isa = PBXBuildFile; fileRef = B5AFD159BE846B39294374822DB0056A /* FlipperResponder.h */; settings = {ATTRIBUTES = (Project, ); }; }; + FE02244C52F3FEFB381FAFD41FD76EE0 /* Utils.h in Headers */ = {isa = PBXBuildFile; fileRef = 8B3B29EC8C2E4212C5941E52D6D74A3A /* Utils.h */; settings = {ATTRIBUTES = (Project, ); }; }; + FE100AD957EC56F19C0CEDFA5E5EFF89 /* FBLPromise+Timeout.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EAC0AC31101B2379FEEB2A22CF1E41 /* FBLPromise+Timeout.h */; settings = {ATTRIBUTES = (Project, ); }; }; + FE1D4D11D3CE354358980C68A3C6D70E /* MapUtil.h in Headers */ = {isa = PBXBuildFile; fileRef = FE7517475BAFEC22D43CB0FCFF157263 /* MapUtil.h */; settings = {ATTRIBUTES = (Project, ); }; }; + FE211241B8318FDD1EFD11B10E1B6934 /* Shared.h in Headers */ = {isa = PBXBuildFile; fileRef = 5C22ACCDC0165AD80A1495A1C5FD04C5 /* Shared.h */; settings = {ATTRIBUTES = (Project, ); }; }; + FE23A1698D877DC567BC8EE7AD3CE6DC /* RCTDevMenu.mm in Sources */ = {isa = PBXBuildFile; fileRef = F98D6C96EA26524A9155DD361F636BAE /* 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"; }; }; + FE38FCA789A1C326EFF2768E43B9C26C /* RCTSlider.m in Sources */ = {isa = PBXBuildFile; fileRef = 6FF6D7458E8C1715C6FA08DDF92F6FE4 /* RCTSlider.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + FE431D692865CD057CEA9274B82F9B1D /* vi.lproj in Resources */ = {isa = PBXBuildFile; fileRef = C3CBBD49FBF8E308B82A5CD2216E44B6 /* vi.lproj */; }; + FE45590DC6481B504D4976FCEE0B3AA1 /* UMViewManagerAdapter.m in Sources */ = {isa = PBXBuildFile; fileRef = 2BB6B186277196265155B80B55ED6C71 /* UMViewManagerAdapter.m */; }; + FE54D9195CE429E42A090B57681F5710 /* YGEnums.h in Headers */ = {isa = PBXBuildFile; fileRef = C59908684CB5C37A6E10F285C5AEDA6A /* YGEnums.h */; settings = {ATTRIBUTES = (Project, ); }; }; + FE57BD907DA36ADDC63B2282816DC9D9 /* RCTSlider.h in Headers */ = {isa = PBXBuildFile; fileRef = 492D48AF74729A935712F1EF4A9D7E68 /* RCTSlider.h */; settings = {ATTRIBUTES = (Project, ); }; }; + FE837F4D5092BF58D3D3F9EC59B261C7 /* UnboundedQueue.h in Headers */ = {isa = PBXBuildFile; fileRef = 7C8D5E0A3363E573E25512ECC9495F13 /* UnboundedQueue.h */; settings = {ATTRIBUTES = (Project, ); }; }; + FE8B7F53C917553F510C352FBBB86548 /* Phase.h in Headers */ = {isa = PBXBuildFile; fileRef = 7CDC2BF2167D30FC3070F13FDA7AD2A5 /* Phase.h */; settings = {ATTRIBUTES = (Project, ); }; }; + FEB1B9654C15A520743E4B3D7BEBD354 /* demangle.cc in Sources */ = {isa = PBXBuildFile; fileRef = 53FC3A061F69A1FA640A10B61413A47D /* demangle.cc */; settings = {COMPILER_FLAGS = "-Wno-shorten-64-to-32"; }; }; + FEB45505BBFC4EAAD736DF6A877696F0 /* BSGEventUploadFileOperation.h in Headers */ = {isa = PBXBuildFile; fileRef = C77AE054E6C98B2867295BD1D1F00451 /* BSGEventUploadFileOperation.h */; settings = {ATTRIBUTES = (Project, ); }; }; + FEDD55AE601B5DD7E781F79AD575ACD5 /* SanitizeLeak.h in Headers */ = {isa = PBXBuildFile; fileRef = ED545A7415C735944B0CDBA23CCD1C7F /* SanitizeLeak.h */; settings = {ATTRIBUTES = (Project, ); }; }; + FF1EE0FB5994F5585A52D9B5B13DEAFA /* FIRLogger.h in Headers */ = {isa = PBXBuildFile; fileRef = 93E91CD1E2E39BE42F531025E5BC95B5 /* FIRLogger.h */; settings = {ATTRIBUTES = (Project, ); }; }; + FF41523C9BF83C12DA7C490DCCDBAB1D /* TurboModuleBinding.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 01A1C62C6A1FA3CEC42AFA6595EE1062 /* TurboModuleBinding.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + FF4B834692E782EFFC462685C3C08329 /* BugsnagUser.m in Sources */ = {isa = PBXBuildFile; fileRef = A667A93C3C91659DED396A26BDF43B19 /* BugsnagUser.m */; }; + FF6048F48555885A8EFAFB330BEAB301 /* RNTapHandler.m in Sources */ = {isa = PBXBuildFile; fileRef = F2E1A7FA147CABBCF9C7A131CADE6AFC /* RNTapHandler.m */; }; + FF763B2DFBE7645C079F90B2475900E8 /* RCTLogBox.mm in Sources */ = {isa = PBXBuildFile; fileRef = 0A014A04182AFA2C3A7575F78FC95DB7 /* 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"; }; }; + FFA7A712E5A6268C253266113578A27B /* SharedMutex.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 3963CCCFD49EB7D7F53CB7B0F98ECB5A /* SharedMutex.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -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\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors"; }; }; + FFE7CF0BB8F423FCF6B043B01C066201 /* RCTTrackingAnimatedNode.m in Sources */ = {isa = PBXBuildFile; fileRef = 80FE2C0ABC7BBD02DAB4D79580C7BC03 /* 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"; }; }; /* End PBXBuildFile section */ /* Begin PBXContainerItemProxy section */ - 0085E62DD6E1BBE8C59695ECEE8E7773 /* PBXContainerItemProxy */ = { + 00D3BFD3328FE1842176AB516E370852 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = 4A95B7CD1D5F80C5E8CD9CDA00D41F70; - remoteInfo = EXVideoThumbnails; + remoteGlobalIDString = 014495932E402CA67C37681988047CA2; + remoteInfo = UMFontInterface; }; - 00FBA2C4D546A02342C81C70FE53C8B0 /* PBXContainerItemProxy */ = { + 010A9CC3979AD343E97C750A5C92B045 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = 47D2E85A78C25869BB13521D8561A638; - remoteInfo = libwebp; + remoteGlobalIDString = 2AB2EF542954AB1C999E03BFEF8DE806; + remoteInfo = DoubleConversion; }; - 010D0B31585D1EB5D82247A6ADA3D90D /* PBXContainerItemProxy */ = { + 0227F09D12A30CBD5CD5A1748B0F9B07 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = 463F41A7E8B252F8AC5024DA1F4AF6DA; - remoteInfo = "React-cxxreact"; + remoteGlobalIDString = 807428FE76D80865C9F59F3502600E89; + remoteInfo = RNDeviceInfo; }; - 013091E48ED486D2E0A27CF03CE4489F /* PBXContainerItemProxy */ = { + 02463D61623F30ADA366E264F54D8373 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = 1BEE828C124E6416179B904A9F66D794; - remoteInfo = React; + remoteGlobalIDString = EC55D52694092A9D0E6A78EB01207EB5; + remoteInfo = "RCT-Folly"; }; - 01DDCD1A86DE38D395F5932F9260EC43 /* PBXContainerItemProxy */ = { + 02842CB8390FBD307634D084FCA3D6EB /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = 868B90C74770285449C60DBA82181479; - remoteInfo = EXFileSystem; + remoteGlobalIDString = 4A95B7CD1D5F80C5E8CD9CDA00D41F70; + remoteInfo = EXVideoThumbnails; }; - 0215B01325232D7A2B2DAE2E60B07C68 /* PBXContainerItemProxy */ = { + 0316A2B10C713B13B9183F8DB69BE607 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = 6083682834ABE0AE7BD1CBF06CADD036; - remoteInfo = CocoaAsyncSocket; + remoteGlobalIDString = DBD2D83E10F8B7D3F4E0E34E6A9FCFA6; + remoteInfo = "React-RCTText"; }; - 033B598AEAA69D2889E1CDB1CD650B19 /* PBXContainerItemProxy */ = { + 03510CE93375C31F1123483F6ACF46F1 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = 0A72FB88825FDC7D301C9DD1F8F96824; - remoteInfo = EXPermissions; + remoteGlobalIDString = 32CA4CBD6B28983076BD93DA221AD027; + remoteInfo = YogaKit; }; - 03D29FEA0744826FD32502024EBFB540 /* PBXContainerItemProxy */ = { + 0387EC72280453ADEF405EE81E722AEB /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = 014495932E402CA67C37681988047CA2; - remoteInfo = UMFontInterface; + remoteGlobalIDString = 7ACAA9BE580DD31A5CB9D97C45D9492D; + remoteInfo = "React-Core"; }; - 03D7825AC45BFF1392F2ED83A124701E /* PBXContainerItemProxy */ = { + 038BEAD43BBE8BDFD603E92FA9091164 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = 32CA4CBD6B28983076BD93DA221AD027; - remoteInfo = YogaKit; + remoteGlobalIDString = 47D2E85A78C25869BB13521D8561A638; + remoteInfo = libwebp; }; - 04540C82182E42016D89700452DA16A7 /* PBXContainerItemProxy */ = { + 042D7E1DF6B2CA47F50279CB3811E32D /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = 89F573A6B1292B3B2296B2206BFDC3D7; - remoteInfo = RNCAsyncStorage; + remoteGlobalIDString = FA877ADC442CB19CF61793D234C8B131; + remoteInfo = "React-jsi"; }; - 04C57239C5B4FEE67E83BEC8B48480C4 /* PBXContainerItemProxy */ = { + 0440BFAA63BDAD46E4DE9DEB329D7FB3 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = 8D7F5D5DD528D21A72DC87ADA5B12E2D; - remoteInfo = GoogleUtilities; + remoteGlobalIDString = 072CEA044D2EF26F03496D5996BBF59F; + remoteInfo = Firebase; }; - 04FE719D121A1ACAB8A4BBB50B8F78DA /* PBXContainerItemProxy */ = { + 04A254575E2EDF7510E5D78F6D16F3CA /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = 2681CB7EF647E61F4F9A43029C235607; - remoteInfo = "React-callinvoker"; + remoteGlobalIDString = D00F24222F074B31C56DC6D05E806A35; + remoteInfo = RNCPicker; }; - 05AC54CD20CFD15EBDF6F3ACEEFE7558 /* PBXContainerItemProxy */ = { + 0508A9CB54F304BF6A421D401200DC95 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = C3496D0495E700CF08A90C41EA8FA4BB; - remoteInfo = FBReactNativeSpec; + remoteGlobalIDString = 6FE9147F8AAA4DE676C190F680F47AE2; + remoteInfo = "React-RCTLinking"; }; - 05AFB3574009BC0F2FC60EF065661F1F /* PBXContainerItemProxy */ = { + 067CD4C26143E2117854B2772FB3275C /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = B51433D546A38C51AA781F192E8836F8; - remoteInfo = RNLocalize; + remoteGlobalIDString = 0CF4D9052577C85B6B8C4E957332626B; + remoteInfo = EXKeepAwake; }; - 0614B7A8F3968DC6EEB0291D2AB6A59F /* PBXContainerItemProxy */ = { + 08093F211F9D46A50D617B01E4F04489 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = 1BEE828C124E6416179B904A9F66D794; - remoteInfo = React; + remoteGlobalIDString = 651511D7DA7F07F9FC9AA40A2E86270D; + remoteInfo = "React-RCTNetwork"; }; - 062ABEC57934138CFE0ED2476821D432 /* PBXContainerItemProxy */ = { + 080F6314EE3D5FB59CD58C74D1047714 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = 64F427905796B33B78A704063422979D; - remoteInfo = "rn-fetch-blob"; + remoteGlobalIDString = B9E8F4CA2A4A8599389FEB665A9B96FF; + remoteInfo = RNGestureHandler; }; - 064D8D808648F360B79BDCB04564B18C /* PBXContainerItemProxy */ = { + 0856600F35CB137BAFECABDA4B90A9D7 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = 1BEE828C124E6416179B904A9F66D794; - remoteInfo = React; + remoteGlobalIDString = D20469A9A1E5CFB26045EAEBE3F88E5E; + remoteInfo = RCTTypeSafety; }; - 066735CD10CADDE781B27797A6764065 /* PBXContainerItemProxy */ = { + 08844C391E66B92A52842D1C1704559C /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = 2038C6F97563AAD6162C284B3EDD5B3B; - remoteInfo = UMSensorsInterface; + remoteGlobalIDString = 7F591BD8674041AAAA4F37DC699B5518; + remoteInfo = KeyCommands; }; - 06790524A32AC7900DB6F9427BB698F9 /* PBXContainerItemProxy */ = { + 08CF5BF5B812D6AD2FF5497512DD6B2D /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = 6A9637F1BC8154F777335A6420579C05; - remoteInfo = "Flipper-Glog"; + remoteGlobalIDString = B51433D546A38C51AA781F192E8836F8; + remoteInfo = RNLocalize; }; - 068550664FA2530EDFB295FCEDA940C9 /* PBXContainerItemProxy */ = { + 08E25011C6C6267DE3F22AC874040AD7 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = 869CED37B4B77AAE35DF8B6E70788BBC; - remoteInfo = EXLocalAuthentication; + remoteGlobalIDString = 7ACAA9BE580DD31A5CB9D97C45D9492D; + remoteInfo = "React-Core"; }; - 076AB81269762466458570D439E8A6CD /* PBXContainerItemProxy */ = { + 09B1209ACEB31C586B011BC40CDDD268 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = ED2506AE7DE35D654F61254441EA7155; - remoteInfo = "boost-for-react-native"; + remoteGlobalIDString = D2B5E7DCCBBFB32341D857D01211A1A3; + remoteInfo = nanopb; }; - 07985DA45BDAD42E2F483609ACBCA588 /* PBXContainerItemProxy */ = { + 09D828806684E123534BD880B317B2DE /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = 7ACAA9BE580DD31A5CB9D97C45D9492D; - remoteInfo = "React-Core"; + remoteGlobalIDString = B53D977A951AFC38B21751B706C1DF83; + remoteInfo = GoogleAppMeasurement; }; - 086E87C91D4ED3DA98CD13846B9898D0 /* PBXContainerItemProxy */ = { + 0B41B609CC7DDB77C81CCA462EF027F6 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = 1BEE828C124E6416179B904A9F66D794; - remoteInfo = React; + remoteGlobalIDString = 6514D69CB93B41626AE1A05581F97B07; + remoteInfo = "react-native-background-timer"; }; - 08940EBF3FBAFEF55A12A9C4CE900D3A /* PBXContainerItemProxy */ = { + 0B5202B877F6CDA6ECFF46040032EE07 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = D0EFEFB685D97280256C559792236873; - remoteInfo = glog; + remoteGlobalIDString = 3847153A6E5EEFB86565BA840768F429; + remoteInfo = SDWebImage; }; - 0A5EF1BB8E56BF18B1D4A5215AB0153B /* PBXContainerItemProxy */ = { + 0BA953E7F9C501AE56C0089A4F0BCEBA /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = 8D7F5D5DD528D21A72DC87ADA5B12E2D; - remoteInfo = GoogleUtilities; + remoteGlobalIDString = F1E2583679398CB5F4D2B3272E9B198F; + remoteInfo = "React-perflogger"; }; - 0BA92ECE475D06FA68952F6135A080CB /* PBXContainerItemProxy */ = { + 0BBDE93517353604555E5BD84582BF09 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = 0A915EE9D35CA5636731F8763E774951; - remoteInfo = UMCameraInterface; + remoteGlobalIDString = D0EFEFB685D97280256C559792236873; + remoteInfo = glog; }; - 0C331F3288FC96E2B9C015D9E45F789D /* PBXContainerItemProxy */ = { + 0C04E246F6F161CA7C95BEEA54D989F3 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = 1953860EA9853AA2BC8022B242F08512; - remoteInfo = SDWebImageWebPCoder; + remoteGlobalIDString = 0A915EE9D35CA5636731F8763E774951; + remoteInfo = UMCameraInterface; }; - 0C3F38878C8E5F314186CCB0CF6BED57 /* PBXContainerItemProxy */ = { + 0C059AFC7B3ED7A16F34A112794B301E /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = 1FAAE067C1BFDEA17DFB657C3379AB56; - remoteInfo = "Flipper-RSocket"; + remoteGlobalIDString = D0EFEFB685D97280256C559792236873; + remoteInfo = glog; }; - 0CD8FBF5C843EC4264FE8CB9C75402AC /* PBXContainerItemProxy */ = { + 0C1C7219E65F411266AB8064DC56643F /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = FA877ADC442CB19CF61793D234C8B131; - remoteInfo = "React-jsi"; + remoteGlobalIDString = 1092C13E1E1172209537C28D0C8D4D3C; + remoteInfo = "react-native-orientation-locker"; }; - 0D0AE483C6A7D26E60A3E5836F3E9935 /* PBXContainerItemProxy */ = { + 0C45BE802340071B7C78EE54EEAC5CCD /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = 651511D7DA7F07F9FC9AA40A2E86270D; - remoteInfo = "React-RCTNetwork"; + remoteGlobalIDString = ED2506AE7DE35D654F61254441EA7155; + remoteInfo = "boost-for-react-native"; }; - 0D0D3CF751E9B439829B7D5F44BEA4E5 /* PBXContainerItemProxy */ = { + 0CB4FC604083BD956166FF84189BA372 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = 6677891AC2F7AB93E04BFF30B293A46B; - remoteInfo = RNBootSplash; + remoteGlobalIDString = 18B56DB36E1F066C927E49DBAE590128; + remoteInfo = RNRootView; }; - 0DA498A81F99CAFF3E2DF39747838B08 /* PBXContainerItemProxy */ = { + 0CCEDA2E0A4EFD3690D6786D25C73CF3 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = 3FF2E78BB54ED67CA7FAD8DA2590DBEE; - remoteInfo = "react-native-appearance"; + remoteGlobalIDString = 32CA4CBD6B28983076BD93DA221AD027; + remoteInfo = YogaKit; }; - 0E344FBEA506D4EFF72A8D8B98E13933 /* PBXContainerItemProxy */ = { + 0D48713A04B5284FDD8E227EC3FA8A0D /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = F3966F664F3CFAEFAB57C40FB54D3788; - remoteInfo = TOCropViewController; + remoteGlobalIDString = 1BEE828C124E6416179B904A9F66D794; + remoteInfo = React; }; - 0E3523AE5241A8E88AC47CEFB9277B00 /* PBXContainerItemProxy */ = { + 0E9C8A6949F7412834A81A594B08BD24 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = 718DB7D0A7E90B531AD577B3356C4161; - remoteInfo = "Flipper-PeerTalk"; + remoteGlobalIDString = 807428FE76D80865C9F59F3502600E89; + remoteInfo = RNDeviceInfo; }; - 0E9BD0F7D761CA1806F9C5F313F428E8 /* PBXContainerItemProxy */ = { + 0EC8E856CBD2B403CAE289323A13A438 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = C452F579644C83E8D8E36EC24A9BBD46; - remoteInfo = UMAppLoader; + remoteGlobalIDString = 7ACAA9BE580DD31A5CB9D97C45D9492D; + remoteInfo = "React-Core"; }; - 0EAACFEAD1664050F5C6B150F81687D4 /* PBXContainerItemProxy */ = { + 0F1705A8CE0231509B2F75870BDC4494 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = 53D121F9F9BB0F8AC1C94A12C5A8572F; - remoteInfo = "React-RCTVibration"; + remoteGlobalIDString = B9ED5194E665042005069EF06C82A050; + remoteInfo = "OpenSSL-Universal"; }; - 0ECEC766040A1DD6CA59005ACB30FF75 /* PBXContainerItemProxy */ = { + 0F2C97D68C9ABFE734817B6075E1FF1A /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = 3847153A6E5EEFB86565BA840768F429; - remoteInfo = SDWebImage; + remoteGlobalIDString = 6514D69CB93B41626AE1A05581F97B07; + remoteInfo = "react-native-background-timer"; }; - 0F2F889AC074C480A0B522F8E095834A /* PBXContainerItemProxy */ = { + 1069F99B00629368818A4E6CD43C00B4 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = 982644B5B647690B2E4F5B3F54EB5717; - remoteInfo = FlipperKit; + remoteGlobalIDString = 11989A5E568B3B69655EE0C13DCDA3F9; + remoteInfo = "React-RCTActionSheet"; }; - 0FAE794FCEC8DC726095DCA424136FA9 /* PBXContainerItemProxy */ = { + 10FF2101B1BDD12901441DDD2AC69A6F /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = 214E42634D1E187D876346D36184B655; - remoteInfo = RNScreens; + remoteGlobalIDString = 2644525CCE081E967809A8163D893A93; + remoteInfo = UMFileSystemInterface; }; - 0FC1CAFF86DF2F2E18BF830CF281DEA3 /* PBXContainerItemProxy */ = { + 11A674532FE89468097CE614F7C1BD12 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = 072CEA044D2EF26F03496D5996BBF59F; - remoteInfo = Firebase; + remoteGlobalIDString = 9EB556EE511D43F3D5D7AAF51D8D0397; + remoteInfo = EXWebBrowser; }; - 1020B3830CC6A592D06984C8713BD7E3 /* PBXContainerItemProxy */ = { + 11B2FC65FB640E80310C28DB87714F45 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = 2B25F90D819B9ADF2AF2D8733A890333; - remoteInfo = Yoga; + remoteGlobalIDString = 463F41A7E8B252F8AC5024DA1F4AF6DA; + remoteInfo = "React-cxxreact"; }; - 10462C237B9F6C8F2ECEF26F65338315 /* PBXContainerItemProxy */ = { + 11C5E7D270081BB187FD60A01879EF15 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = 1953860EA9853AA2BC8022B242F08512; - remoteInfo = SDWebImageWebPCoder; + remoteGlobalIDString = 938CCE22F6C4094B3FB6CF1478579E4B; + remoteInfo = "React-RCTAnimation"; }; - 10C8C0FD90944AE3B74ED76BE7A803D4 /* PBXContainerItemProxy */ = { + 127EAEF5FA051717FCD7991713B2F789 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = D985A509BFE270C95EDCBE6B4CBAF189; - remoteInfo = "react-native-simple-crypto"; + remoteGlobalIDString = D11E74324175FE5B0E78DB046527F233; + remoteInfo = "react-native-document-picker"; }; - 11363DFCDEC63C986A2C50FAF40CD1C9 /* PBXContainerItemProxy */ = { + 138CD1D613521449D3426413CCC9B7F1 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = D20469A9A1E5CFB26045EAEBE3F88E5E; - remoteInfo = RCTTypeSafety; + remoteGlobalIDString = 9668C19AA6D8EA320F83875FA286855A; + remoteInfo = UMConstantsInterface; }; - 11613A794A9C293C36950401A3388D61 /* PBXContainerItemProxy */ = { + 14CE44474BF93773C95558FD232B1405 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = 91A6826828CB9FCD0169A7547E8A79EA; - remoteInfo = MMKV; + remoteGlobalIDString = 2AD4F40E67E1874A0816F6B34289EB41; + remoteInfo = UMFaceDetectorInterface; }; - 11E6B0F5A374A71CBB92CB7A9503FE90 /* PBXContainerItemProxy */ = { + 1506301F87DBA330F0AB8B5EFEDF47BC /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = B9ED5194E665042005069EF06C82A050; - remoteInfo = "OpenSSL-Universal"; + remoteGlobalIDString = 0BB7745637E0758DEA373456197090C6; + remoteInfo = RNFastImage; }; - 12B7A30D883DC26C1A75E970277EF502 /* PBXContainerItemProxy */ = { + 1511B62DC745FC329035214747B8E425 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = FA877ADC442CB19CF61793D234C8B131; - remoteInfo = "React-jsi"; + remoteGlobalIDString = 1A0445474DA11CA659C4BCC5AB64B1BF; + remoteInfo = RNCMaskedView; }; - 13C0795B47770D8B6EF9E7DB65849417 /* PBXContainerItemProxy */ = { + 1594CA71965A7F3895B87254031664B9 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = 18B56DB36E1F066C927E49DBAE590128; - remoteInfo = RNRootView; + remoteGlobalIDString = C3496D0495E700CF08A90C41EA8FA4BB; + remoteInfo = FBReactNativeSpec; }; - 13FC3ED200281D9E6B890D5163268AE2 /* PBXContainerItemProxy */ = { + 15BA7AB6B36E11D68A1E908D7482CE31 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = 718DB7D0A7E90B531AD577B3356C4161; - remoteInfo = "Flipper-PeerTalk"; + remoteGlobalIDString = 014495932E402CA67C37681988047CA2; + remoteInfo = UMFontInterface; }; - 1456B2FA056DC965181C7F0C6E919AD5 /* PBXContainerItemProxy */ = { + 160742AAA5B4A52BF364B022F3855525 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = F3966F664F3CFAEFAB57C40FB54D3788; - remoteInfo = TOCropViewController; + remoteGlobalIDString = 0BB7745637E0758DEA373456197090C6; + remoteInfo = RNFastImage; }; - 14838B2E8FB70BF59840D2AE9A76F23C /* PBXContainerItemProxy */ = { + 16DDC881BA229CF5E842AB1DE6C69BCB /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = D9245543B79C09FAC40FC8B9F291536A; - remoteInfo = "Flipper-DoubleConversion"; + remoteGlobalIDString = 96150F524B245896B800F84F369A9A5A; + remoteInfo = RNVectorIcons; }; - 156017FB89EF453FC3322467854BD4DF /* PBXContainerItemProxy */ = { + 1728313302EE5615095EB575EA99E89E /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = 526C4398D095B3704EB933DADBC30093; - remoteInfo = FirebaseCrashlytics; + remoteGlobalIDString = EEBB8D24F2B3531A5C5DAA668D02331F; + remoteInfo = "react-native-blur"; }; - 157C2718AC4A63F53D782B80DDE02152 /* PBXContainerItemProxy */ = { + 17661FB66F461A44D74152AD94B2DCA8 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = FF879E718031128A75E7DE54046E6219; - remoteInfo = RNReanimated; + remoteGlobalIDString = D11E74324175FE5B0E78DB046527F233; + remoteInfo = "react-native-document-picker"; }; - 15D2286598E95FE31FCFF5735D5C5B36 /* PBXContainerItemProxy */ = { + 17BAF1EC72840DA553C23C9C54868149 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = 938CCE22F6C4094B3FB6CF1478579E4B; - remoteInfo = "React-RCTAnimation"; + remoteGlobalIDString = 1FAAE067C1BFDEA17DFB657C3379AB56; + remoteInfo = "Flipper-RSocket"; }; - 168B11CFDBE6976A8EBD240DE4217B39 /* PBXContainerItemProxy */ = { + 19A9ADD677996957784F8FA0E822A31B /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = FF879E718031128A75E7DE54046E6219; - remoteInfo = RNReanimated; + remoteGlobalIDString = 87803597EB3F20FC46472B85392EC4FD; + remoteInfo = FirebaseInstallations; }; - 169768D84C3FA56A813550568C4ED880 /* PBXContainerItemProxy */ = { + 19B7B9BE96ED8A8A3434002EB353AAE3 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = 072CEA044D2EF26F03496D5996BBF59F; - remoteInfo = Firebase; + remoteGlobalIDString = 2AB2EF542954AB1C999E03BFEF8DE806; + remoteInfo = DoubleConversion; }; - 177FC80D8DA02E9F9C363EC9D796189B /* PBXContainerItemProxy */ = { + 1A08F62C5B8089C89FE064CC0B1191E0 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = 2644525CCE081E967809A8163D893A93; - remoteInfo = UMFileSystemInterface; + remoteGlobalIDString = 5B40FBDAD0AB75D17C4760F4054BFF71; + remoteInfo = JitsiMeetSDK; }; - 17C00AD0D44AFB50F360E19F80886B41 /* PBXContainerItemProxy */ = { + 1A31EAECDC12C14F3C088C41511FB3EB /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = ADC4ACC657481AD27F9936D08FF7F49A; - remoteInfo = "react-native-cookies"; + remoteGlobalIDString = 4F265533AAB7C8985856EC78A33164BB; + remoteInfo = "React-RCTImage"; }; - 184E68B5A570802A48898C83B8D4E587 /* PBXContainerItemProxy */ = { + 1B1AB1065E5D17B042A87503D7063793 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = 8D7F5D5DD528D21A72DC87ADA5B12E2D; - remoteInfo = GoogleUtilities; + remoteGlobalIDString = 89F573A6B1292B3B2296B2206BFDC3D7; + remoteInfo = RNCAsyncStorage; }; - 18CDD9BCAA26B0047475F2F7BBA386AA /* PBXContainerItemProxy */ = { + 1B3AAE9284A7C84B6567C55B639EFDB1 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = FA877ADC442CB19CF61793D234C8B131; - remoteInfo = "React-jsi"; + remoteGlobalIDString = EC55D52694092A9D0E6A78EB01207EB5; + remoteInfo = "RCT-Folly"; }; - 194A5CC4DF2DA7326070B95C37CE40E8 /* PBXContainerItemProxy */ = { + 1B53FA1CE85238A4A1AAED61F5710469 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = 897EF6A99176326E24F51E2F2103828C; - remoteInfo = UMReactNativeAdapter; + remoteGlobalIDString = 0745200E60DC80C9A0A48B7E6C1518D7; + remoteInfo = BugsnagReactNative; }; - 1A4E266BA5AFFBE203AB35577630D4C4 /* PBXContainerItemProxy */ = { + 1BDCCF161C6F367310DE943D24D61A50 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; remoteGlobalIDString = DBCB1B4965863DDD3B9DED9A0918A526; remoteInfo = UMCore; }; - 1B4813C2FC788332F25B8FA4345599DF /* PBXContainerItemProxy */ = { + 1C401F7260BB42813141D11C7D220D9F /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = 3FF2E78BB54ED67CA7FAD8DA2590DBEE; - remoteInfo = "react-native-appearance"; + remoteGlobalIDString = 1BEE828C124E6416179B904A9F66D794; + remoteInfo = React; }; - 1B6A9F925F4D4F01F6A13DD353A9E87B /* PBXContainerItemProxy */ = { + 1D0EA599CFABFCEF9856159C9E5121F9 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = E16E206437995280D349D4B67695C894; - remoteInfo = "React-CoreModules"; + remoteGlobalIDString = BDD119F8782FABE2707D3D913EC3EDE5; + remoteInfo = RNFBAnalytics; }; - 1BA59BED620719A9300579D4E1ECB07C /* PBXContainerItemProxy */ = { + 1D3EB81BF1ED1A57E8C19410CB9A2592 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = 4F265533AAB7C8985856EC78A33164BB; - remoteInfo = "React-RCTImage"; + remoteGlobalIDString = 9668C19AA6D8EA320F83875FA286855A; + remoteInfo = UMConstantsInterface; }; - 1C5F4299A9113B26AD4B104725578625 /* PBXContainerItemProxy */ = { + 1D8D45024853A5EF82DBC9B2D9A93D55 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = 7ACAA9BE580DD31A5CB9D97C45D9492D; - remoteInfo = "React-Core"; + remoteGlobalIDString = C3496D0495E700CF08A90C41EA8FA4BB; + remoteInfo = FBReactNativeSpec; }; - 1CFB073BD465178A6A62B86921039222 /* PBXContainerItemProxy */ = { + 1D9DBC31B8DB235D270EC76B034EF667 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = 072CEA044D2EF26F03496D5996BBF59F; - remoteInfo = Firebase; + remoteGlobalIDString = EEBB8D24F2B3531A5C5DAA668D02331F; + remoteInfo = "react-native-blur"; }; - 1DA4241F5A4CDE93750300CEE65AA8E9 /* PBXContainerItemProxy */ = { + 1EAFFFD4482BD28ACFDFCC4122F9558C /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = FA877ADC442CB19CF61793D234C8B131; - remoteInfo = "React-jsi"; + remoteGlobalIDString = 526C4398D095B3704EB933DADBC30093; + remoteInfo = FirebaseCrashlytics; }; - 1DB3F05A69423E8AADC62A5A82FBADF1 /* PBXContainerItemProxy */ = { + 1ED9D4D7FC1B88E4D3A93F7D61165BB3 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = B6D5DD49633DFF0657B8C3F08EB3ABA9; - remoteInfo = ReactCommon; + remoteGlobalIDString = 985FEA01F314F3C00F0C1E1181E6C4A5; + remoteInfo = "hermes-engine"; }; - 1E1BF45FE169A8F5EBD73C673F0882F0 /* PBXContainerItemProxy */ = { + 1F496B70968EC6096F50E1B09B0932E1 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = F1E2583679398CB5F4D2B3272E9B198F; - remoteInfo = "React-perflogger"; + remoteGlobalIDString = FF879E718031128A75E7DE54046E6219; + remoteInfo = RNReanimated; }; - 1EAEB2F6FB660F09F116111CC17516BF /* PBXContainerItemProxy */ = { + 1F5BC7C142957312E841B92B6C8BEF24 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = 28A005E00FB77DDB2543047A07ED99A5; - remoteInfo = EXAppleAuthentication; + remoteGlobalIDString = 651511D7DA7F07F9FC9AA40A2E86270D; + remoteInfo = "React-RCTNetwork"; }; - 1EFE1C7C4C58A60B27F78D77A26AC73A /* PBXContainerItemProxy */ = { + 1F9FCB1C34BD0F861043B83AAF64E627 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = B51433D546A38C51AA781F192E8836F8; - remoteInfo = RNLocalize; + remoteGlobalIDString = 1FAAE067C1BFDEA17DFB657C3379AB56; + remoteInfo = "Flipper-RSocket"; }; - 1F570E6F3998C13CDBFCA10D2A77BACE /* PBXContainerItemProxy */ = { + 1FB18BD0AF1F5B0936722711E7F24457 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = 1BEE828C124E6416179B904A9F66D794; - remoteInfo = React; + remoteGlobalIDString = B6D5DD49633DFF0657B8C3F08EB3ABA9; + remoteInfo = ReactCommon; }; - 1F6DBAB87AF0707448787C118423C4C3 /* PBXContainerItemProxy */ = { + 20697C34779788F8C4499FF433B886C5 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = 97C4DE84FA3CC4EC06AA6D8C249949B7; - remoteInfo = UMImageLoaderInterface; + remoteGlobalIDString = 214E42634D1E187D876346D36184B655; + remoteInfo = RNScreens; }; - 1FAB6A417869C597FB92AC4C6640D180 /* PBXContainerItemProxy */ = { + 206FB65D1C23AEB250BB668CC4E0D91C /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = 718DB7D0A7E90B531AD577B3356C4161; - remoteInfo = "Flipper-PeerTalk"; + remoteGlobalIDString = 49821C2B9E764AEDF2B35DFE9AA7022F; + remoteInfo = UMBarCodeScannerInterface; }; - 1FAB7A8AC22642B022AF23C6E5434234 /* PBXContainerItemProxy */ = { + 2084FB702800E6E50975FB6868C126F4 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = 2AD4F40E67E1874A0816F6B34289EB41; - remoteInfo = UMFaceDetectorInterface; + remoteGlobalIDString = 11989A5E568B3B69655EE0C13DCDA3F9; + remoteInfo = "React-RCTActionSheet"; }; - 2019DD04814708C23A3D8233A67484FE /* PBXContainerItemProxy */ = { + 20EF07637F99AC55FDE97BD7AFDC6D7A /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = E7E7CE52C8C68B17224FF8C262D80ABF; - remoteInfo = RCTRequired; + remoteGlobalIDString = 982644B5B647690B2E4F5B3F54EB5717; + remoteInfo = FlipperKit; }; - 2054582D030203FB4CB1BE640BFD8861 /* PBXContainerItemProxy */ = { + 210AEB2D3A641DB5F65CF276FEE7B635 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = 2644525CCE081E967809A8163D893A93; - remoteInfo = UMFileSystemInterface; + remoteGlobalIDString = 2AB2EF542954AB1C999E03BFEF8DE806; + remoteInfo = DoubleConversion; }; - 20FEB0430189FAF905E4F13BC24610BD /* PBXContainerItemProxy */ = { + 21587908F89482C3A5B0448D58C6DBCB /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = 214E42634D1E187D876346D36184B655; - remoteInfo = RNScreens; + remoteGlobalIDString = 8D18C49071FC5370C25F5758A85BA5F6; + remoteInfo = "react-native-webview"; }; - 21E2069AC52B51AD1D8B36C7A50ED931 /* PBXContainerItemProxy */ = { + 220E9687D91E82F06566144FFA2EE25E /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; remoteGlobalIDString = 0D82774D2A533D3FFAE27CAB4A6E9CB2; remoteInfo = RNImageCropPicker; }; - 227E9E0B372044B581A4CE58ADA3D7D4 /* PBXContainerItemProxy */ = { + 2232B017E81709268EF63B0EFEF354EC /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = C49E7A4D59E5C8BE8DE9FB1EFB150185; - remoteInfo = FirebaseAnalytics; + remoteGlobalIDString = 0D82774D2A533D3FFAE27CAB4A6E9CB2; + remoteInfo = RNImageCropPicker; }; - 22EB82D97CAC329152F628A05D5805D5 /* PBXContainerItemProxy */ = { + 235896ABB4FAB49FB545E8BDEFA915D8 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = ED2506AE7DE35D654F61254441EA7155; - remoteInfo = "boost-for-react-native"; + remoteGlobalIDString = AC8AE887C706A43711D115E69B9D988A; + remoteInfo = MMKVCore; }; - 22EC80B5F6F52173531AE372A985E80E /* PBXContainerItemProxy */ = { + 239D8CB6F28000F080E36BAAD0DFB895 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = E16E206437995280D349D4B67695C894; - remoteInfo = "React-CoreModules"; + remoteGlobalIDString = 4F265533AAB7C8985856EC78A33164BB; + remoteInfo = "React-RCTImage"; }; - 23BACFEA8C1C825E3FF7A20F10CA01B6 /* PBXContainerItemProxy */ = { + 23A6050B7B112D21A5AB11ED8C960AF7 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = EC55D52694092A9D0E6A78EB01207EB5; - remoteInfo = "RCT-Folly"; + remoteGlobalIDString = 90D0DE2F3348233618414728C35311CA; + remoteInfo = RNFBApp; }; - 2409B653999325C77FF9404502735AEC /* PBXContainerItemProxy */ = { + 23A8F551E5CA6EAE4B7DE859095139B4 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = 869CED37B4B77AAE35DF8B6E70788BBC; - remoteInfo = EXLocalAuthentication; + remoteGlobalIDString = C49E7A4D59E5C8BE8DE9FB1EFB150185; + remoteInfo = FirebaseAnalytics; }; - 2474CD9A20FA79BFF80DADD3180C3B9F /* PBXContainerItemProxy */ = { + 23CC6754E0A374FD2A767ED22637BEB0 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = 7ACAA9BE580DD31A5CB9D97C45D9492D; - remoteInfo = "React-Core"; + remoteGlobalIDString = DBCB1B4965863DDD3B9DED9A0918A526; + remoteInfo = UMCore; }; - 25BBD187E54CDFAC57A6BA84E50B8155 /* PBXContainerItemProxy */ = { + 24E410AF00AC2B8762BCB6948921C27E /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = AC8AE887C706A43711D115E69B9D988A; - remoteInfo = MMKVCore; + remoteGlobalIDString = 5C0371EE948D0357B8EE0E34ABB44BF0; + remoteInfo = GoogleDataTransport; }; - 25BD70B714B19DBCC71020891CD2F0A1 /* PBXContainerItemProxy */ = { + 24EC64601DC7DD8EC37BD56B88DF02BB /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = 2644525CCE081E967809A8163D893A93; - remoteInfo = UMFileSystemInterface; + remoteGlobalIDString = D20469A9A1E5CFB26045EAEBE3F88E5E; + remoteInfo = RCTTypeSafety; }; - 25D731C8B8322F6109319FC1C29DBC12 /* PBXContainerItemProxy */ = { + 260681D9EB3A4F3F3F9B89A1DEDC4BE5 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = EC55D52694092A9D0E6A78EB01207EB5; - remoteInfo = "RCT-Folly"; + remoteGlobalIDString = F7D033C4C128EECAA020990641FA985F; + remoteInfo = "React-jsinspector"; }; - 2608C311CF0EEAD8A095F6B7681EC6A6 /* PBXContainerItemProxy */ = { + 260A2F08A45E897A85F9E16190F8CE2E /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = E7E7CE52C8C68B17224FF8C262D80ABF; - remoteInfo = RCTRequired; + remoteGlobalIDString = 1092C13E1E1172209537C28D0C8D4D3C; + remoteInfo = "react-native-orientation-locker"; }; - 261A72A3E9913DA2CD98E693D979301A /* PBXContainerItemProxy */ = { + 266059A79145D44C1828C281721C86E2 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = C49E7A4D59E5C8BE8DE9FB1EFB150185; - remoteInfo = FirebaseAnalytics; + remoteGlobalIDString = A4EF87F5681665EAE943D9B06BBB17DF; + remoteInfo = "react-native-slider"; }; - 26B9D41EC4FC50EEBC8809FACDA1028A /* PBXContainerItemProxy */ = { + 26D53641A18DD51A1CF3EC7F046055C1 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = B6D5DD49633DFF0657B8C3F08EB3ABA9; - remoteInfo = ReactCommon; + remoteGlobalIDString = DBD2D83E10F8B7D3F4E0E34E6A9FCFA6; + remoteInfo = "React-RCTText"; }; - 26D2E223505352580BC7CDDD0E3FE8E7 /* PBXContainerItemProxy */ = { + 28399BE2227AF1FF623FBE19CF94940E /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = 7ACAA9BE580DD31A5CB9D97C45D9492D; - remoteInfo = "React-Core"; + remoteGlobalIDString = 985FEA01F314F3C00F0C1E1181E6C4A5; + remoteInfo = "hermes-engine"; }; - 277D2F067F34FDC2E7E21CCE33B25F23 /* PBXContainerItemProxy */ = { + 2840E8CCF57CD1301EBCEA3BA0DB9EE4 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = 90148E8FD1C445D7A019D504FA8CBC53; - remoteInfo = ReactNativeART; + remoteGlobalIDString = 072CEA044D2EF26F03496D5996BBF59F; + remoteInfo = Firebase; }; - 279C02DB7F3C80A08B8750194E3D6AE7 /* PBXContainerItemProxy */ = { + 285F0BBA999282E60D2B3615D0A77895 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = 1BEE828C124E6416179B904A9F66D794; - remoteInfo = React; + remoteGlobalIDString = 6C1893932A69822CBE3502F2E0BCFB6D; + remoteInfo = EXConstants; }; - 27F1657C0A1CF9D3E178D11AA89C6608 /* PBXContainerItemProxy */ = { + 286B6101E36B0C1DEFC14E92D083992E /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = 263266A9E29FFF0E9C8CA0E4582BFCF4; - remoteInfo = EXImageLoader; + remoteGlobalIDString = 718DB7D0A7E90B531AD577B3356C4161; + remoteInfo = "Flipper-PeerTalk"; }; - 2867305CE29521BC8EE2F9EB0A25BC2E /* PBXContainerItemProxy */ = { + 2923E9D3310F2B9901BD38070F31E4AA /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = 868B90C74770285449C60DBA82181479; - remoteInfo = EXFileSystem; + remoteGlobalIDString = B6D5DD49633DFF0657B8C3F08EB3ABA9; + remoteInfo = ReactCommon; }; - 2891A1A9D460D914F46FF6127A9BF735 /* PBXContainerItemProxy */ = { + 2926D3B25AF38EEE82FFDD59B5E44661 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; remoteGlobalIDString = 7ACAA9BE580DD31A5CB9D97C45D9492D; remoteInfo = "React-Core"; }; - 2895C89D7BB10E5DE159A7BA0C8A9D63 /* PBXContainerItemProxy */ = { + 2A39375D4FE96D22D7A1402B8A238D91 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = 1953860EA9853AA2BC8022B242F08512; - remoteInfo = SDWebImageWebPCoder; + remoteGlobalIDString = C452F579644C83E8D8E36EC24A9BBD46; + remoteInfo = UMAppLoader; }; - 291139AA1C672E25D5A21EE44EF51003 /* PBXContainerItemProxy */ = { + 2A6A19C837F54F3C3ABF3358982A5683 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = B6D5DD49633DFF0657B8C3F08EB3ABA9; - remoteInfo = ReactCommon; + remoteGlobalIDString = 3847153A6E5EEFB86565BA840768F429; + remoteInfo = SDWebImage; }; - 292019F7EB814975516FDC83D14BF1C5 /* PBXContainerItemProxy */ = { + 2A991E91A62B8CCA42DBDB028D1D9E3C /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = A238B7CE3865946D1F214E1FE0023AAE; - remoteInfo = "rn-extensions-share"; + remoteGlobalIDString = 3847153A6E5EEFB86565BA840768F429; + remoteInfo = SDWebImage; }; - 29331713BB79CA4F09D6877A88AEEE16 /* PBXContainerItemProxy */ = { + 2AE32E03015B4918CC7EB5648F1D7F46 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = DBD2D83E10F8B7D3F4E0E34E6A9FCFA6; - remoteInfo = "React-RCTText"; + remoteGlobalIDString = 4A95B7CD1D5F80C5E8CD9CDA00D41F70; + remoteInfo = EXVideoThumbnails; }; - 295BED05F71E5A6200E8E1DE7F668FCB /* PBXContainerItemProxy */ = { + 2B7DF7BE05A69696657BA8D9D9287EF0 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = F1E2583679398CB5F4D2B3272E9B198F; - remoteInfo = "React-perflogger"; + remoteGlobalIDString = C452F579644C83E8D8E36EC24A9BBD46; + remoteInfo = UMAppLoader; }; - 29960C33FAB2D0F0C8908940C945C638 /* PBXContainerItemProxy */ = { + 2BE3D020F29F4B1BFE25EDA862544344 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = 651511D7DA7F07F9FC9AA40A2E86270D; - remoteInfo = "React-RCTNetwork"; + remoteGlobalIDString = F3966F664F3CFAEFAB57C40FB54D3788; + remoteInfo = TOCropViewController; }; - 299C29BB72E6329A925ACB176A83860C /* PBXContainerItemProxy */ = { + 2BE9087B119C80EE54FC64F7A8BB0B00 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = 28A005E00FB77DDB2543047A07ED99A5; - remoteInfo = EXAppleAuthentication; + remoteGlobalIDString = F1E2583679398CB5F4D2B3272E9B198F; + remoteInfo = "React-perflogger"; }; - 29A9C14575153E72B8F68CEB6470D28E /* PBXContainerItemProxy */ = { + 2CAB32165CCF9E80AFCE579748FD8210 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = D2B5E7DCCBBFB32341D857D01211A1A3; - remoteInfo = nanopb; + remoteGlobalIDString = 7ACAA9BE580DD31A5CB9D97C45D9492D; + remoteInfo = "React-Core"; }; - 2A7F7E74BED068ED0E44B14D80CAFBBF /* PBXContainerItemProxy */ = { + 2CE040E43E51563408A78413CBD6809D /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = D0EFEFB685D97280256C559792236873; - remoteInfo = glog; + remoteGlobalIDString = 6677891AC2F7AB93E04BFF30B293A46B; + remoteInfo = RNBootSplash; }; - 2AA39714F678F715EBDCBA967B312027 /* PBXContainerItemProxy */ = { + 2CF2259CABA031ED590B55FB1527D968 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = 28A005E00FB77DDB2543047A07ED99A5; - remoteInfo = EXAppleAuthentication; + remoteGlobalIDString = 3ED96FB9FE1D18D5F1239C60A109F98C; + remoteInfo = "react-native-restart"; }; - 2AC08832E9EBC1B7A3A2369AFAA62B4B /* PBXContainerItemProxy */ = { + 2D2D646AA887670D58F65D6CEF7279E9 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = B6D5DD49633DFF0657B8C3F08EB3ABA9; - remoteInfo = ReactCommon; + remoteGlobalIDString = 47D2E85A78C25869BB13521D8561A638; + remoteInfo = libwebp; }; - 2AE5A1014DB6B7EDC9E20991D4C99193 /* PBXContainerItemProxy */ = { + 2D4A29BF4B993D6C1538C47202D7C10B /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = F1E2583679398CB5F4D2B3272E9B198F; - remoteInfo = "React-perflogger"; + remoteGlobalIDString = 6514D69CB93B41626AE1A05581F97B07; + remoteInfo = "react-native-background-timer"; }; - 2B33A343A46C12D96DB5A49CBD66E097 /* PBXContainerItemProxy */ = { + 2D5216C6C0A604D8A41CA5FDFBD4FE6A /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = B9E8F4CA2A4A8599389FEB665A9B96FF; - remoteInfo = RNGestureHandler; + remoteGlobalIDString = 97C4DE84FA3CC4EC06AA6D8C249949B7; + remoteInfo = UMImageLoaderInterface; }; - 2B9BC239A33199F1135BE33EFA7E2E3B /* PBXContainerItemProxy */ = { + 2D629A1DA34FA8E46FF7D2B5A18F94F8 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = 1BEE828C124E6416179B904A9F66D794; - remoteInfo = React; + remoteGlobalIDString = 1A0445474DA11CA659C4BCC5AB64B1BF; + remoteInfo = RNCMaskedView; }; - 2C14BAEA8A2DBB8886AB2BA21FD0B110 /* PBXContainerItemProxy */ = { + 2DB50EFF1B1BEC04F6549AA310E1C8C8 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = F7D033C4C128EECAA020990641FA985F; - remoteInfo = "React-jsinspector"; + remoteGlobalIDString = 0745200E60DC80C9A0A48B7E6C1518D7; + remoteInfo = BugsnagReactNative; }; - 2C15806F41D2B1604F20DC3E50E37F95 /* PBXContainerItemProxy */ = { + 2DC31E64F3AEFE2C7927FC09404A1E95 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = 938CCE22F6C4094B3FB6CF1478579E4B; - remoteInfo = "React-RCTAnimation"; + remoteGlobalIDString = 6FE9147F8AAA4DE676C190F680F47AE2; + remoteInfo = "React-RCTLinking"; }; - 2C17861F290721BE0678A228961C3237 /* PBXContainerItemProxy */ = { + 2E194D0FD7F5453335A4D7E08E055BAA /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = 97C4DE84FA3CC4EC06AA6D8C249949B7; - remoteInfo = UMImageLoaderInterface; + remoteGlobalIDString = 8D7F5D5DD528D21A72DC87ADA5B12E2D; + remoteInfo = GoogleUtilities; }; - 2C1A4D179F333A6B86CCFE1991724AA0 /* PBXContainerItemProxy */ = { + 2EFAE6EAE3FD4226F327EC01490B4D71 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = C3496D0495E700CF08A90C41EA8FA4BB; - remoteInfo = FBReactNativeSpec; + remoteGlobalIDString = F3966F664F3CFAEFAB57C40FB54D3788; + remoteInfo = TOCropViewController; }; - 2C407133A7440070C703FECDDF43F198 /* PBXContainerItemProxy */ = { + 2F12E619469B37171385D31E885F633D /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = F3966F664F3CFAEFAB57C40FB54D3788; - remoteInfo = TOCropViewController; + remoteGlobalIDString = 1BEE828C124E6416179B904A9F66D794; + remoteInfo = React; }; - 2C500E18FA222B6BFB5F5F322160AF50 /* PBXContainerItemProxy */ = { + 2F18B0B2E3B0C84CB66A5577AC615020 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = 8D7F5D5DD528D21A72DC87ADA5B12E2D; - remoteInfo = GoogleUtilities; + remoteGlobalIDString = 0A915EE9D35CA5636731F8763E774951; + remoteInfo = UMCameraInterface; }; - 2CC243C6DD6494C9EBA4B4C38327F003 /* PBXContainerItemProxy */ = { + 2F38D7EF272E1927EB4BF6C85CA740A2 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = 47D2E85A78C25869BB13521D8561A638; - remoteInfo = libwebp; + remoteGlobalIDString = EC55D52694092A9D0E6A78EB01207EB5; + remoteInfo = "RCT-Folly"; }; - 2CC27349C1D603B639EC75CAA13C4BF9 /* PBXContainerItemProxy */ = { + 2F9D89D217B007912242B6BAAF0F01D2 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = 5C0371EE948D0357B8EE0E34ABB44BF0; - remoteInfo = GoogleDataTransport; + remoteGlobalIDString = B51433D546A38C51AA781F192E8836F8; + remoteInfo = RNLocalize; }; - 2CE27467B8E5A7BA8271C6E5327015FB /* PBXContainerItemProxy */ = { + 2FB7C12E66F7925012AF10148C8BB0A7 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = 04A30E186743192DFB26B0FD7DB8F250; - remoteInfo = libevent; + remoteGlobalIDString = 620E05868772C10B4920DC7E324F2C87; + remoteInfo = FirebaseCoreDiagnostics; }; - 2D15492360534B20EE7817812BBB48DD /* PBXContainerItemProxy */ = { + 2FD162273322FFFE043C7188A38910A7 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = 409F3A0DB395F53FFB6AB30E5CD8ACD1; - remoteInfo = EXHaptics; + remoteGlobalIDString = D9245543B79C09FAC40FC8B9F291536A; + remoteInfo = "Flipper-DoubleConversion"; }; - 2DCE2B61F352988671ED7EAA985F4BFD /* PBXContainerItemProxy */ = { + 2FDBD7DE8F19B0A545698E9E50BCF97A /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = EC55D52694092A9D0E6A78EB01207EB5; - remoteInfo = "RCT-Folly"; + remoteGlobalIDString = AC8AE887C706A43711D115E69B9D988A; + remoteInfo = MMKVCore; }; - 2DD7E0CF7F57C77F6508CD88EBA26D67 /* PBXContainerItemProxy */ = { + 30064E9B0E98486226F8047C982A72CF /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = FA877ADC442CB19CF61793D234C8B131; - remoteInfo = "React-jsi"; + remoteGlobalIDString = 2644525CCE081E967809A8163D893A93; + remoteInfo = UMFileSystemInterface; }; - 2E043B03F7C56F1B47630941C818189A /* PBXContainerItemProxy */ = { + 3038491BE57FD79E28D7D793BC9919C2 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = 897EF6A99176326E24F51E2F2103828C; - remoteInfo = UMReactNativeAdapter; + remoteGlobalIDString = 6083682834ABE0AE7BD1CBF06CADD036; + remoteInfo = CocoaAsyncSocket; }; - 2EB4FD46718A435E68A5BD824E6E865B /* PBXContainerItemProxy */ = { + 303E4559A3766B78B2EC5F069B80FCE7 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = B6D5DD49633DFF0657B8C3F08EB3ABA9; - remoteInfo = ReactCommon; + remoteGlobalIDString = B9ED5194E665042005069EF06C82A050; + remoteInfo = "OpenSSL-Universal"; }; - 2EFA9736E1F808275C57AA2013F94FD8 /* PBXContainerItemProxy */ = { + 310CC4FA717221B905091E112A652D95 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = 2AB2EF542954AB1C999E03BFEF8DE806; - remoteInfo = DoubleConversion; + remoteGlobalIDString = 13D7009C3736FB694854D88BAD4742B6; + remoteInfo = EXAV; }; - 2F1C693448E778E51B155760696294D2 /* PBXContainerItemProxy */ = { + 31122DE8C2DA6107C3342C6B5B65BD1E /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = 95D98F901D07557EF7CA38D3F03832C5; - remoteInfo = "React-RCTBlob"; + remoteGlobalIDString = 87803597EB3F20FC46472B85392EC4FD; + remoteInfo = FirebaseInstallations; }; - 2F4879A05BFC5094890FA24FCEAE9D80 /* PBXContainerItemProxy */ = { + 317425314BF71ED201D2CA443D35ECF7 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = D20469A9A1E5CFB26045EAEBE3F88E5E; - remoteInfo = RCTTypeSafety; + remoteGlobalIDString = D985A509BFE270C95EDCBE6B4CBAF189; + remoteInfo = "react-native-simple-crypto"; }; - 2FA2B10763019D37AA479AA9A21F6BFB /* PBXContainerItemProxy */ = { + 31F511CABE1B614BCAD950E1AA62D00A /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = 897EF6A99176326E24F51E2F2103828C; - remoteInfo = UMReactNativeAdapter; + remoteGlobalIDString = BA3F5E5AA483B263B69601DE2FA269CB; + remoteInfo = "react-native-cameraroll"; }; - 2FEA2C94E0E7934D146B4421C21353AC /* PBXContainerItemProxy */ = { + 3240781D0E3907C33B1DDF42FF66E5CF /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = DA0709CAAD589C6E7963495210438021; - remoteInfo = "React-jsiexecutor"; + remoteGlobalIDString = 53D121F9F9BB0F8AC1C94A12C5A8572F; + remoteInfo = "React-RCTVibration"; }; - 30725B14D8562E875CFC0ABA597A1DBA /* PBXContainerItemProxy */ = { + 327F2E0955017D983C2E3F22DE1B1D32 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = C452F579644C83E8D8E36EC24A9BBD46; - remoteInfo = UMAppLoader; + remoteGlobalIDString = 0A72FB88825FDC7D301C9DD1F8F96824; + remoteInfo = EXPermissions; }; - 309B67A53527D73A2D42EB256B0B895F /* PBXContainerItemProxy */ = { + 32AE8701EC774DFBF956BB947524BA30 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = D0EFEFB685D97280256C559792236873; - remoteInfo = glog; + remoteGlobalIDString = 1953860EA9853AA2BC8022B242F08512; + remoteInfo = SDWebImageWebPCoder; }; - 3103187B09DB1119A9DD295FD8F59DB8 /* PBXContainerItemProxy */ = { + 32F0EFA8E931B8EB5042D594B4C20554 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = 11989A5E568B3B69655EE0C13DCDA3F9; - remoteInfo = "React-RCTActionSheet"; + remoteGlobalIDString = E63939AA6EFD3D6A8C09E45929F11DBD; + remoteInfo = Flipper; }; - 320F6183337581B1E023B07AF6274FB7 /* PBXContainerItemProxy */ = { + 32F686EAF70D6C2A1F06CF15BC8E3430 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = 91A6826828CB9FCD0169A7547E8A79EA; - remoteInfo = MMKV; + remoteGlobalIDString = E3573FB7AF659C42B699003C73722241; + remoteInfo = RNFBCrashlytics; }; - 3268E9B58B16AC4BF0109C1643C7224A /* PBXContainerItemProxy */ = { + 333752DD617EBB0A21BE73A3D311CC4E /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = DBCB1B4965863DDD3B9DED9A0918A526; - remoteInfo = UMCore; + remoteGlobalIDString = 8CC4EAA817AA86310D1900F1DAB3580F; + remoteInfo = FBLazyVector; }; - 326B9FFA568BA9B2B9A96F439CF7FBC1 /* PBXContainerItemProxy */ = { + 333FE4E1E83550F24CDB80FE38559B04 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = EC577C5CB1DC59A7464ECEF266A75B42; - remoteInfo = "react-native-netinfo"; + remoteGlobalIDString = 409F3A0DB395F53FFB6AB30E5CD8ACD1; + remoteInfo = EXHaptics; }; - 32F2FC8331902F5BFCB8D6BAE12EF526 /* PBXContainerItemProxy */ = { + 33EE6C52FF662D0963453003C92DF5F0 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = EEBB8D24F2B3531A5C5DAA668D02331F; - remoteInfo = "react-native-blur"; + remoteGlobalIDString = EC55D52694092A9D0E6A78EB01207EB5; + remoteInfo = "RCT-Folly"; }; - 331F386E85E953818B591C6997486C19 /* PBXContainerItemProxy */ = { + 33FBC17BDCBF5091B52F99E9E75A4302 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = E7E7CE52C8C68B17224FF8C262D80ABF; - remoteInfo = RCTRequired; + remoteGlobalIDString = 868B90C74770285449C60DBA82181479; + remoteInfo = EXFileSystem; }; - 33218BCAFCC2A39CB997299383DC67FA /* PBXContainerItemProxy */ = { + 342D59D7250F414716D957FD8972A3F9 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = D20469A9A1E5CFB26045EAEBE3F88E5E; - remoteInfo = RCTTypeSafety; + remoteGlobalIDString = 96150F524B245896B800F84F369A9A5A; + remoteInfo = RNVectorIcons; }; - 333B59AA8017F930E061A89AC4F55EF7 /* PBXContainerItemProxy */ = { + 34EDA8BEC948AD64ED4EB417F24CF02F /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = 0745200E60DC80C9A0A48B7E6C1518D7; - remoteInfo = BugsnagReactNative; + remoteGlobalIDString = 7ACAA9BE580DD31A5CB9D97C45D9492D; + remoteInfo = "React-Core"; }; - 33ED27400A97DE65DE2B9DC11A7A3DCF /* PBXContainerItemProxy */ = { + 3543E5BF48821ACC3687ADA6415639A8 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = FA877ADC442CB19CF61793D234C8B131; - remoteInfo = "React-jsi"; + remoteGlobalIDString = 072CEA044D2EF26F03496D5996BBF59F; + remoteInfo = Firebase; }; - 343A0CD58A77DF9B25CD0144355A604D /* PBXContainerItemProxy */ = { + 3550A33949254D5C8440A0FB1D264841 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = EC55D52694092A9D0E6A78EB01207EB5; - remoteInfo = "RCT-Folly"; + remoteGlobalIDString = DBCB1B4965863DDD3B9DED9A0918A526; + remoteInfo = UMCore; }; - 34C614E6FA7294F59F13C89618BF3A7D /* PBXContainerItemProxy */ = { + 35A63603010488405238CADA8F34E5DC /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = 74DAFD196634D10887C9A4E7BA19A5E4; - remoteInfo = "react-native-mmkv-storage"; + remoteGlobalIDString = 2644525CCE081E967809A8163D893A93; + remoteInfo = UMFileSystemInterface; }; - 35D29D203ACE1A3642FB097162D19DEB /* PBXContainerItemProxy */ = { + 35EDA4FA330DF1DC694DD9051394E69E /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = F4F25FCAC51B51FD5F986EB939BF1F87; - remoteInfo = GoogleDataTransportCCTSupport; + remoteGlobalIDString = 620E05868772C10B4920DC7E324F2C87; + remoteInfo = FirebaseCoreDiagnostics; }; - 37168C35C4D1A9431FD2EC541D2894A2 /* PBXContainerItemProxy */ = { + 35F71506032AA6005146BD90BB659C0B /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = 1092C13E1E1172209537C28D0C8D4D3C; - remoteInfo = "react-native-orientation-locker"; + remoteGlobalIDString = E16E206437995280D349D4B67695C894; + remoteInfo = "React-CoreModules"; }; - 372629E1571263E65072CAE6503C46D1 /* PBXContainerItemProxy */ = { + 362B1828D7515D6BFD7EF27809294C38 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = ED2506AE7DE35D654F61254441EA7155; - remoteInfo = "boost-for-react-native"; + remoteGlobalIDString = 87803597EB3F20FC46472B85392EC4FD; + remoteInfo = FirebaseInstallations; }; - 372E2EE85578EDFF28A72DEC9D4D0A8A /* PBXContainerItemProxy */ = { + 36B026D61F0A15C2EA4B64A111E71B0B /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = 985FEA01F314F3C00F0C1E1181E6C4A5; - remoteInfo = "hermes-engine"; + remoteGlobalIDString = 95D98F901D07557EF7CA38D3F03832C5; + remoteInfo = "React-RCTBlob"; }; - 374A3655E4FBF96ADA70AC0EFBB2384D /* PBXContainerItemProxy */ = { + 36F78DCEFE5D524DA7C67D87701EA70B /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = E63939AA6EFD3D6A8C09E45929F11DBD; - remoteInfo = Flipper; + remoteGlobalIDString = 18B56DB36E1F066C927E49DBAE590128; + remoteInfo = RNRootView; }; - 374D87CB5E893745E48A5DB5B02530D4 /* PBXContainerItemProxy */ = { + 3713AD57BF43C9120AD57F58A8C71088 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = 263266A9E29FFF0E9C8CA0E4582BFCF4; - remoteInfo = EXImageLoader; + remoteGlobalIDString = 651511D7DA7F07F9FC9AA40A2E86270D; + remoteInfo = "React-RCTNetwork"; }; - 377B3B012AC53DA540230AF9896A0376 /* PBXContainerItemProxy */ = { + 3735EAC69F7EE988AE4D360B31C47704 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = 0BB7745637E0758DEA373456197090C6; - remoteInfo = RNFastImage; + remoteGlobalIDString = D9245543B79C09FAC40FC8B9F291536A; + remoteInfo = "Flipper-DoubleConversion"; }; - 3814E33F90FAA7A58884A68CF9BA6265 /* PBXContainerItemProxy */ = { + 37A021B3581197A00E56A3F2D20DA553 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = 9668C19AA6D8EA320F83875FA286855A; - remoteInfo = UMConstantsInterface; + remoteGlobalIDString = 2AB2EF542954AB1C999E03BFEF8DE806; + remoteInfo = DoubleConversion; }; - 38C25A5474F690200CCDCEE668F0DC5E /* PBXContainerItemProxy */ = { + 37D0E70D1BA90C85D6DBEE5DBB49AC54 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = 74DAFD196634D10887C9A4E7BA19A5E4; - remoteInfo = "react-native-mmkv-storage"; + remoteGlobalIDString = 7ACAA9BE580DD31A5CB9D97C45D9492D; + remoteInfo = "React-Core"; }; - 3A02EBF72AE042615492C95FEAC16E64 /* PBXContainerItemProxy */ = { + 37E45C08B7A379CC0BE0CE0DD0B6B40B /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = E3573FB7AF659C42B699003C73722241; - remoteInfo = RNFBCrashlytics; + remoteGlobalIDString = 53D121F9F9BB0F8AC1C94A12C5A8572F; + remoteInfo = "React-RCTVibration"; }; - 3B9B24730AAD3DAC01ACFB01865543A9 /* PBXContainerItemProxy */ = { + 380A1FC85FE87B5C24EDCCDDC0529B12 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = 0D82774D2A533D3FFAE27CAB4A6E9CB2; - remoteInfo = RNImageCropPicker; + remoteGlobalIDString = 2681CB7EF647E61F4F9A43029C235607; + remoteInfo = "React-callinvoker"; }; - 3BD704AF06626C5C23A471EE5F0E8ECA /* PBXContainerItemProxy */ = { + 38CA0710AB97E61137EBF4CFC6A1BE91 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = 938CCE22F6C4094B3FB6CF1478579E4B; - remoteInfo = "React-RCTAnimation"; + remoteGlobalIDString = 91A6826828CB9FCD0169A7547E8A79EA; + remoteInfo = MMKV; }; - 3CA896893E08C792F9883EA979C7EBD6 /* PBXContainerItemProxy */ = { + 38F0CD40143DABEA93B32FABEB34CE16 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = 6D979AB5FDA2E858850D9903776A30B3; - remoteInfo = "RNImageCropPicker-QBImagePicker"; + remoteGlobalIDString = B6D5DD49633DFF0657B8C3F08EB3ABA9; + remoteInfo = ReactCommon; }; - 3E265914EE1C1AA375AE84CFEC37F803 /* PBXContainerItemProxy */ = { + 395556DEE21EDFC21BC4121D9A98313B /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = F7845084F0CF03F54107EEF7411760AD; - remoteInfo = UMPermissionsInterface; + remoteGlobalIDString = 1BEE828C124E6416179B904A9F66D794; + remoteInfo = React; }; - 3E6DA42228BE2D0B47B449B06095916C /* PBXContainerItemProxy */ = { + 39A48F0C3797DF0D6E02568F0D6DC85B /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = DC0D417AC8ABB7AA10C20A5E0F065812; - remoteInfo = RNConfigReader; + remoteGlobalIDString = 6C1893932A69822CBE3502F2E0BCFB6D; + remoteInfo = EXConstants; }; - 3E7A0A19FB4E59D391794D3DE08AD827 /* PBXContainerItemProxy */ = { + 3A12D936AA0DE53F1953D6889A0A0034 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = 90D0DE2F3348233618414728C35311CA; - remoteInfo = RNFBApp; + remoteGlobalIDString = B9ED5194E665042005069EF06C82A050; + remoteInfo = "OpenSSL-Universal"; }; - 3F973D3589686B607A4620DCC6AAD243 /* PBXContainerItemProxy */ = { + 3A22FB63E74004A176312488391C7BA5 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = 807428FE76D80865C9F59F3502600E89; - remoteInfo = RNDeviceInfo; + remoteGlobalIDString = 2681CB7EF647E61F4F9A43029C235607; + remoteInfo = "React-callinvoker"; }; - 3FB19AAC9883D1DF028837AD838AFD66 /* PBXContainerItemProxy */ = { + 3A2971ABE3AD32C46CF437F0574E8AB3 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = 2AB2EF542954AB1C999E03BFEF8DE806; - remoteInfo = DoubleConversion; + remoteGlobalIDString = 49821C2B9E764AEDF2B35DFE9AA7022F; + remoteInfo = UMBarCodeScannerInterface; }; - 4043FF9D59414EFF826B78A1678C03D8 /* PBXContainerItemProxy */ = { + 3AADCE4EBAECD6211A8BC5D099627A2A /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = 680299219D3A48D42A648AF6706275A9; - remoteInfo = "React-RCTSettings"; + remoteGlobalIDString = 263266A9E29FFF0E9C8CA0E4582BFCF4; + remoteInfo = EXImageLoader; }; - 4053616235C6EF0A028453379F52D298 /* PBXContainerItemProxy */ = { + 3AAEA94F9DE5B4F5CA1F8E2EF5253F7A /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = 04A30E186743192DFB26B0FD7DB8F250; - remoteInfo = libevent; + remoteGlobalIDString = EC55D52694092A9D0E6A78EB01207EB5; + remoteInfo = "RCT-Folly"; }; - 40BD78E7F0BA2DB65B35E29ACB0548F4 /* PBXContainerItemProxy */ = { + 3B2F88382F1D3FFE17166A9712265678 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = 2AB2EF542954AB1C999E03BFEF8DE806; - remoteInfo = DoubleConversion; + remoteGlobalIDString = 97C4DE84FA3CC4EC06AA6D8C249949B7; + remoteInfo = UMImageLoaderInterface; }; - 4133E2244A67F93BDE49F64A8B9BBF64 /* PBXContainerItemProxy */ = { + 3B5FA7DB3BAC69DC77F16699376AAF17 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = 8CC4EAA817AA86310D1900F1DAB3580F; - remoteInfo = FBLazyVector; + remoteGlobalIDString = 214E42634D1E187D876346D36184B655; + remoteInfo = RNScreens; }; - 42135B42EB3752EEEFE9E5A4ACBCB8AB /* PBXContainerItemProxy */ = { + 3B75F470D0FFF08C08C9E850086DC84D /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = B53D977A951AFC38B21751B706C1DF83; - remoteInfo = GoogleAppMeasurement; + remoteGlobalIDString = F7845084F0CF03F54107EEF7411760AD; + remoteInfo = UMPermissionsInterface; }; - 42653E96AB1DAB598D8C32E761F7917C /* PBXContainerItemProxy */ = { + 3B79934064D955ECE79DDE4A8F9983FF /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = E3573FB7AF659C42B699003C73722241; - remoteInfo = RNFBCrashlytics; + remoteGlobalIDString = 2B25F90D819B9ADF2AF2D8733A890333; + remoteInfo = Yoga; }; - 42CE88158B97229520B321E4443AD1FA /* PBXContainerItemProxy */ = { + 3BC5A9CC4AC78694101D1296B851AD1D /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = C49E7A4D59E5C8BE8DE9FB1EFB150185; - remoteInfo = FirebaseAnalytics; + remoteGlobalIDString = EC55D52694092A9D0E6A78EB01207EB5; + remoteInfo = "RCT-Folly"; }; - 43732F95FDB3D65845FEEBE2AB2FF164 /* PBXContainerItemProxy */ = { + 3BE12AD473CCB5B90E012F23A4600067 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = 6A9637F1BC8154F777335A6420579C05; - remoteInfo = "Flipper-Glog"; + remoteGlobalIDString = D20469A9A1E5CFB26045EAEBE3F88E5E; + remoteInfo = RCTTypeSafety; }; - 43CB847F276EAAC20EB0986FE6C40906 /* PBXContainerItemProxy */ = { + 3CBD676FEBCA77502E7C8A27A789A629 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = B6D39E083AE0FF45BA30D7CDF6198A03; - remoteInfo = "Flipper-Folly"; + remoteGlobalIDString = C3496D0495E700CF08A90C41EA8FA4BB; + remoteInfo = FBReactNativeSpec; }; - 43D60FBAFF8529A47CCE8D035994F33F /* PBXContainerItemProxy */ = { + 3CE6C0199D635E9DE0ECA51097F6134B /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = 8CC4EAA817AA86310D1900F1DAB3580F; - remoteInfo = FBLazyVector; + remoteGlobalIDString = 938CCE22F6C4094B3FB6CF1478579E4B; + remoteInfo = "React-RCTAnimation"; }; - 448C98C45846E7E106F1E52942DA206F /* PBXContainerItemProxy */ = { + 3D6EDEE1794270D059FE7269C8849803 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = 651511D7DA7F07F9FC9AA40A2E86270D; - remoteInfo = "React-RCTNetwork"; + remoteGlobalIDString = 9668C19AA6D8EA320F83875FA286855A; + remoteInfo = UMConstantsInterface; }; - 44D80541E9215EC364AE28ADAE855D7B /* PBXContainerItemProxy */ = { + 3DCE74173D0268DF04FC230C795B0807 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = 2BBF7206D7FAC92C82A042A99C4A98F8; - remoteInfo = PromisesObjC; + remoteGlobalIDString = 4F265533AAB7C8985856EC78A33164BB; + remoteInfo = "React-RCTImage"; }; - 44D981A786C366A2CACA1938C76BCF8D /* PBXContainerItemProxy */ = { + 3E110B29187D50729234F7CCAC875A64 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = 620E05868772C10B4920DC7E324F2C87; - remoteInfo = FirebaseCoreDiagnostics; + remoteGlobalIDString = 7ACAA9BE580DD31A5CB9D97C45D9492D; + remoteInfo = "React-Core"; }; - 44E1E495CCA73C2274F80B0088313C7C /* PBXContainerItemProxy */ = { + 3E9D8450774777871794492B1E8CB0A7 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = 95D98F901D07557EF7CA38D3F03832C5; - remoteInfo = "React-RCTBlob"; + remoteGlobalIDString = 4402AFF83DBDC4DD07E198685FDC2DF2; + remoteInfo = FirebaseCore; }; - 450A74806A894097E56E53C467C6071E /* PBXContainerItemProxy */ = { + 3E9FE85869C896A68ADC0CA17D9DEB61 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = 7ACAA9BE580DD31A5CB9D97C45D9492D; - remoteInfo = "React-Core"; + remoteGlobalIDString = E7E7CE52C8C68B17224FF8C262D80ABF; + remoteInfo = RCTRequired; }; - 454D6D81E6F834EF9B96BE25F8479900 /* PBXContainerItemProxy */ = { + 3F4CB6E8271900A60A72E4A7BD924F78 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = 1FAAE067C1BFDEA17DFB657C3379AB56; - remoteInfo = "Flipper-RSocket"; + remoteGlobalIDString = 28A005E00FB77DDB2543047A07ED99A5; + remoteInfo = EXAppleAuthentication; }; - 45C8A9B694B6551F7D1F87A998D95B81 /* PBXContainerItemProxy */ = { + 3F65F07DAE5EED96C74A74F606038A24 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = E7E7CE52C8C68B17224FF8C262D80ABF; - remoteInfo = RCTRequired; + remoteGlobalIDString = F7845084F0CF03F54107EEF7411760AD; + remoteInfo = UMPermissionsInterface; }; - 46018F94CABDEFE9B2580943B39F0363 /* PBXContainerItemProxy */ = { + 406D337587A95C74EA151AE9930CEFB7 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = DC0D417AC8ABB7AA10C20A5E0F065812; - remoteInfo = RNConfigReader; + remoteGlobalIDString = B6D5DD49633DFF0657B8C3F08EB3ABA9; + remoteInfo = ReactCommon; }; - 4607BC8B7AC1B35B433546A0CA15F20C /* PBXContainerItemProxy */ = { + 40BC5C5447B1268F085DF95EE8DA5ACC /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = 7ACAA9BE580DD31A5CB9D97C45D9492D; - remoteInfo = "React-Core"; + remoteGlobalIDString = 04A30E186743192DFB26B0FD7DB8F250; + remoteInfo = libevent; }; - 4621D42E6672BBF8AB1316BE61BFD493 /* PBXContainerItemProxy */ = { + 40E18A7434CBB72569E96A3BFE09637B /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = D2B5E7DCCBBFB32341D857D01211A1A3; - remoteInfo = nanopb; + remoteGlobalIDString = D0EFEFB685D97280256C559792236873; + remoteInfo = glog; }; - 4621FDA576BF2B472869E7CB1260B76B /* PBXContainerItemProxy */ = { + 40F5B6A121B5C1DB24E54E758228C4CD /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = 6C1893932A69822CBE3502F2E0BCFB6D; - remoteInfo = EXConstants; + remoteGlobalIDString = 96150F524B245896B800F84F369A9A5A; + remoteInfo = RNVectorIcons; }; - 464C670BE9A85762B084067B7292AE19 /* PBXContainerItemProxy */ = { + 41ECED978508293DF02ED8A0A51FAE4F /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = E63939AA6EFD3D6A8C09E45929F11DBD; - remoteInfo = Flipper; + remoteGlobalIDString = 2644525CCE081E967809A8163D893A93; + remoteInfo = UMFileSystemInterface; }; - 465B48563448B30560ED5332D0F15C5C /* PBXContainerItemProxy */ = { + 421CEEFC91C9E8669FD955C8B2E2364C /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = 54EB12219122432FA744088BC5A680D2; - remoteInfo = "React-runtimeexecutor"; + remoteGlobalIDString = 214E42634D1E187D876346D36184B655; + remoteInfo = RNScreens; }; - 4689C744D7DB05DD12F749009F0A7331 /* PBXContainerItemProxy */ = { + 423FED86DA5CF1101621308E97F6CF75 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = 2B25F90D819B9ADF2AF2D8733A890333; - remoteInfo = Yoga; + remoteGlobalIDString = 2038C6F97563AAD6162C284B3EDD5B3B; + remoteInfo = UMSensorsInterface; }; - 46C53AF067A15343D583C7F71A893B84 /* PBXContainerItemProxy */ = { + 424F3B0F24F5F866EF29439FA76A1D02 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = B51433D546A38C51AA781F192E8836F8; - remoteInfo = RNLocalize; + remoteGlobalIDString = E63939AA6EFD3D6A8C09E45929F11DBD; + remoteInfo = Flipper; }; - 46D3DE815B95431C1FBD77A3E87CDDF9 /* PBXContainerItemProxy */ = { + 428AA5A09239DA78F15204B5A3981CCD /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = DBD2D83E10F8B7D3F4E0E34E6A9FCFA6; - remoteInfo = "React-RCTText"; + remoteGlobalIDString = 90148E8FD1C445D7A019D504FA8CBC53; + remoteInfo = ReactNativeART; }; - 478D0D49BCAADC057CA7DF0DB002EB41 /* PBXContainerItemProxy */ = { + 42AB541F152FC17D1BA49B735DA149FE /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = 53D121F9F9BB0F8AC1C94A12C5A8572F; - remoteInfo = "React-RCTVibration"; + remoteGlobalIDString = 28A005E00FB77DDB2543047A07ED99A5; + remoteInfo = EXAppleAuthentication; }; - 47C0604704A8BC3DCBF0666CAFF42C31 /* PBXContainerItemProxy */ = { + 42DD50A4BF745F71F12164C2047EB30A /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = B6D39E083AE0FF45BA30D7CDF6198A03; - remoteInfo = "Flipper-Folly"; + remoteGlobalIDString = 985FEA01F314F3C00F0C1E1181E6C4A5; + remoteInfo = "hermes-engine"; }; - 47C801280DB42627E01CD42B36FA5227 /* PBXContainerItemProxy */ = { + 431C13BFC90DFA625C79A75920595F3B /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = 1092C13E1E1172209537C28D0C8D4D3C; - remoteInfo = "react-native-orientation-locker"; + remoteGlobalIDString = 90D0DE2F3348233618414728C35311CA; + remoteInfo = RNFBApp; }; - 47D76C612CA82C72ABE493A74312ED8C /* PBXContainerItemProxy */ = { + 433D578614C1BC7FF77C18415B99FF4F /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = 7F591BD8674041AAAA4F37DC699B5518; - remoteInfo = KeyCommands; + remoteGlobalIDString = 7ACAA9BE580DD31A5CB9D97C45D9492D; + remoteInfo = "React-Core"; }; - 4803AB7B3643D4969AC4087AC4C79360 /* PBXContainerItemProxy */ = { + 436DA5DB35F97D14EBD4960BEFAFBFBE /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = 1BEE828C124E6416179B904A9F66D794; - remoteInfo = React; + remoteGlobalIDString = DBCB1B4965863DDD3B9DED9A0918A526; + remoteInfo = UMCore; }; - 4811E34A2B61603E4865CBC3207ADFDE /* PBXContainerItemProxy */ = { + 43EE9CAFD12B08923B503259CA0CE6CA /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = 2AB2EF542954AB1C999E03BFEF8DE806; - remoteInfo = DoubleConversion; + remoteGlobalIDString = BA3F5E5AA483B263B69601DE2FA269CB; + remoteInfo = "react-native-cameraroll"; }; - 4870E90069664BCC39D7088EA352D668 /* PBXContainerItemProxy */ = { + 4431FD774BE1419E08A556CA9F265239 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; remoteGlobalIDString = C3496D0495E700CF08A90C41EA8FA4BB; remoteInfo = FBReactNativeSpec; }; - 4871AAA76574AE5A9E23B57659E4B055 /* PBXContainerItemProxy */ = { + 44632846404574C18D50D9B01794FB36 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = 037A1F31C4D99F52EC9FD2008FEC481C; - remoteInfo = ReactNativeUiLib; + remoteGlobalIDString = D2B5E7DCCBBFB32341D857D01211A1A3; + remoteInfo = nanopb; }; - 497EB06B31993907ECD490A6CF7F22DA /* PBXContainerItemProxy */ = { + 44667EFCCE24F1A9FA574EF4B897A446 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = F1E2583679398CB5F4D2B3272E9B198F; - remoteInfo = "React-perflogger"; - }; - 497EF6E30B6BA56995E78DE32981AB2E /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = FA877ADC442CB19CF61793D234C8B131; - remoteInfo = "React-jsi"; + remoteGlobalIDString = 6677891AC2F7AB93E04BFF30B293A46B; + remoteInfo = RNBootSplash; }; - 49B14E507599C1C93A1E5D1F8C8F25A3 /* PBXContainerItemProxy */ = { + 44831513DC91EB0D77F79F0C09918C2D /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = BA3F5E5AA483B263B69601DE2FA269CB; - remoteInfo = "react-native-cameraroll"; + remoteGlobalIDString = D2B5E7DCCBBFB32341D857D01211A1A3; + remoteInfo = nanopb; }; - 4B6CBFBEF4C512B4AE5500ECD5906714 /* PBXContainerItemProxy */ = { + 4493C315BDEE52A4C56E2A86476AAFB0 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = 7ACAA9BE580DD31A5CB9D97C45D9492D; - remoteInfo = "React-Core"; + remoteGlobalIDString = 2AB2EF542954AB1C999E03BFEF8DE806; + remoteInfo = DoubleConversion; }; - 4B79EFEFA228A6135BA895A145340765 /* PBXContainerItemProxy */ = { + 44D0EBD489C8DB6D24051C876C783BA4 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; remoteGlobalIDString = 64F427905796B33B78A704063422979D; remoteInfo = "rn-fetch-blob"; }; - 4BCCFE9A86DAE3F3CEC1744819C4E9DF /* PBXContainerItemProxy */ = { + 44F6CFAC459B5DCE1044F030D8A85D04 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = D760AF58E12ABBB51F84160FB02B5F39; - remoteInfo = RNDateTimePicker; - }; - 4BD5E43E8A144B218CBB5C9B76134763 /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = 869CED37B4B77AAE35DF8B6E70788BBC; - remoteInfo = EXLocalAuthentication; + remoteGlobalIDString = 651511D7DA7F07F9FC9AA40A2E86270D; + remoteInfo = "React-RCTNetwork"; }; - 4BEEACD5957B461E0BB534D0797A3568 /* PBXContainerItemProxy */ = { + 44FFA945D8B35229A6B258E9B31FE37F /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = 0A72FB88825FDC7D301C9DD1F8F96824; - remoteInfo = EXPermissions; + remoteGlobalIDString = 90148E8FD1C445D7A019D504FA8CBC53; + remoteInfo = ReactNativeART; }; - 4C4BE413FB50613860EB7B1786D87397 /* PBXContainerItemProxy */ = { + 4518D351C464E97DC2E8F71780BA9C33 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = DBD2D83E10F8B7D3F4E0E34E6A9FCFA6; - remoteInfo = "React-RCTText"; + remoteGlobalIDString = 718DB7D0A7E90B531AD577B3356C4161; + remoteInfo = "Flipper-PeerTalk"; }; - 4C93F8CFD550C70F6E3CAB9E24B2394B /* PBXContainerItemProxy */ = { + 4566A91E58A08EDAFB5574E794EBB508 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = 90148E8FD1C445D7A019D504FA8CBC53; - remoteInfo = ReactNativeART; + remoteGlobalIDString = 90D0DE2F3348233618414728C35311CA; + remoteInfo = RNFBApp; }; - 4CAA75395129FD55349D85DF38063591 /* PBXContainerItemProxy */ = { + 4590BB5CCFB0088830F775679BA27796 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = B53D977A951AFC38B21751B706C1DF83; - remoteInfo = GoogleAppMeasurement; + remoteGlobalIDString = 3ED96FB9FE1D18D5F1239C60A109F98C; + remoteInfo = "react-native-restart"; }; - 4CD0C8FE9D059588BD39FA3FB1D8BD2B /* PBXContainerItemProxy */ = { + 4610264EC690C7B2D7064EF61E0F0B55 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = 9EB556EE511D43F3D5D7AAF51D8D0397; - remoteInfo = EXWebBrowser; + remoteGlobalIDString = ED2506AE7DE35D654F61254441EA7155; + remoteInfo = "boost-for-react-native"; }; - 4D9A3D4B75EFEFFF9B32F527C084C57F /* PBXContainerItemProxy */ = { + 4627288C3C60CC282917D62A05DF448F /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = F4F25FCAC51B51FD5F986EB939BF1F87; - remoteInfo = GoogleDataTransportCCTSupport; + remoteGlobalIDString = 1FAAE067C1BFDEA17DFB657C3379AB56; + remoteInfo = "Flipper-RSocket"; }; - 4DCA6943D90A82D4A4849D9B5E5BC851 /* PBXContainerItemProxy */ = { + 463494775E1AC67F859BA55FC613390C /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = C3496D0495E700CF08A90C41EA8FA4BB; - remoteInfo = FBReactNativeSpec; + remoteGlobalIDString = EC55D52694092A9D0E6A78EB01207EB5; + remoteInfo = "RCT-Folly"; }; - 4E70CCCE85AF50C904B200DE940D87E6 /* PBXContainerItemProxy */ = { + 4638A9B08C598B6CA8C33B70111EF053 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = 868B90C74770285449C60DBA82181479; - remoteInfo = EXFileSystem; + remoteGlobalIDString = E3573FB7AF659C42B699003C73722241; + remoteInfo = RNFBCrashlytics; }; - 4E8C2D1817F3ECE5F333AC385DD762F4 /* PBXContainerItemProxy */ = { + 46395158E253BC51D5D39963890F3651 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = 6C1893932A69822CBE3502F2E0BCFB6D; - remoteInfo = EXConstants; + remoteGlobalIDString = D760AF58E12ABBB51F84160FB02B5F39; + remoteInfo = RNDateTimePicker; }; - 4E9B1A0C929F15972973F8C9DAA4AB3A /* PBXContainerItemProxy */ = { + 4674B95E01319E9C55637B8F8DC0C8FB /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = 6514D69CB93B41626AE1A05581F97B07; - remoteInfo = "react-native-background-timer"; + remoteGlobalIDString = BDD119F8782FABE2707D3D913EC3EDE5; + remoteInfo = RNFBAnalytics; }; - 4EFD62DE1CC7CA29ADC3F210E0B8D3AD /* PBXContainerItemProxy */ = { + 47B48D44209F7E76BC10BFD4E68E0CC7 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = 680299219D3A48D42A648AF6706275A9; - remoteInfo = "React-RCTSettings"; + remoteGlobalIDString = A4EF87F5681665EAE943D9B06BBB17DF; + remoteInfo = "react-native-slider"; }; - 4FE0D7292C95BD1A3F3CD951E22C2770 /* PBXContainerItemProxy */ = { + 4903262CAF2C1DF75E143EFB35657BC2 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = 7ACAA9BE580DD31A5CB9D97C45D9492D; - remoteInfo = "React-Core"; + remoteGlobalIDString = D2B5E7DCCBBFB32341D857D01211A1A3; + remoteInfo = nanopb; }; - 4FEAC5275490F9F0C589B5E1E727C1F7 /* PBXContainerItemProxy */ = { + 4968B4B8CE95C55EF5C6DCB369735AB2 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = 18B56DB36E1F066C927E49DBAE590128; - remoteInfo = RNRootView; + remoteGlobalIDString = D20469A9A1E5CFB26045EAEBE3F88E5E; + remoteInfo = RCTTypeSafety; }; - 4FF2B304A62C3F3BBA2A496E856BEC34 /* PBXContainerItemProxy */ = { + 4976897C3E24298394807B9C209C3755 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = 7ACAA9BE580DD31A5CB9D97C45D9492D; - remoteInfo = "React-Core"; + remoteGlobalIDString = 0A72FB88825FDC7D301C9DD1F8F96824; + remoteInfo = EXPermissions; }; - 50239268B90E4A0C1B4C10E3CB38487B /* PBXContainerItemProxy */ = { + 49FA50FFA411A4FFE1EE58CCEF2AEB76 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = 96150F524B245896B800F84F369A9A5A; - remoteInfo = RNVectorIcons; + remoteGlobalIDString = 868B90C74770285449C60DBA82181479; + remoteInfo = EXFileSystem; }; - 50466E742D9F32965A430247549F9312 /* PBXContainerItemProxy */ = { + 4A942D9F98BA99CCA80F54FE9C05CCFE /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = 2BBF7206D7FAC92C82A042A99C4A98F8; - remoteInfo = PromisesObjC; + remoteGlobalIDString = CA400829100F0628EC209FBB08347D42; + remoteInfo = "react-native-notifications"; }; - 50935636121438038C8A0CF875E08FC1 /* PBXContainerItemProxy */ = { + 4AAA30FA60941F0F4C119128377A9B96 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = F7845084F0CF03F54107EEF7411760AD; - remoteInfo = UMPermissionsInterface; + remoteGlobalIDString = 409F3A0DB395F53FFB6AB30E5CD8ACD1; + remoteInfo = EXHaptics; }; - 50C73AB274B6F4D5E88C1EC31A7E737F /* PBXContainerItemProxy */ = { + 4AACDC925209308A5FEAAD6FFB1DBF89 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = DBCB1B4965863DDD3B9DED9A0918A526; - remoteInfo = UMCore; + remoteGlobalIDString = EC55D52694092A9D0E6A78EB01207EB5; + remoteInfo = "RCT-Folly"; }; - 518BF2582DADD066C3644BAEEF4BA136 /* PBXContainerItemProxy */ = { + 4AEC0B1782FC28B57920BAFEA65C1886 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = 2681CB7EF647E61F4F9A43029C235607; - remoteInfo = "React-callinvoker"; + remoteGlobalIDString = 8D7F5D5DD528D21A72DC87ADA5B12E2D; + remoteInfo = GoogleUtilities; }; - 52289941F379128439EE463F5DC76BB0 /* PBXContainerItemProxy */ = { + 4B10213FAD02E746E1D218669F27E181 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = D11E74324175FE5B0E78DB046527F233; - remoteInfo = "react-native-document-picker"; + remoteGlobalIDString = D20469A9A1E5CFB26045EAEBE3F88E5E; + remoteInfo = RCTTypeSafety; }; - 5228BE188D49ABABE57B52B3C9F12626 /* PBXContainerItemProxy */ = { + 4C66AC7B33E06D87E26A7A224AE46058 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = FA877ADC442CB19CF61793D234C8B131; - remoteInfo = "React-jsi"; + remoteGlobalIDString = 53D121F9F9BB0F8AC1C94A12C5A8572F; + remoteInfo = "React-RCTVibration"; }; - 527143A654B69B7A706F5D0CF42BFF14 /* PBXContainerItemProxy */ = { + 4CC20F6B4C46F124BD52B6CB4848091C /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = 90D0DE2F3348233618414728C35311CA; - remoteInfo = RNFBApp; + remoteGlobalIDString = DC0D417AC8ABB7AA10C20A5E0F065812; + remoteInfo = RNConfigReader; }; - 5274FC48A786B0786D5038F983F462D6 /* PBXContainerItemProxy */ = { + 4CC3B2640237458FB91275DA5BA6A0C7 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = 74DAFD196634D10887C9A4E7BA19A5E4; - remoteInfo = "react-native-mmkv-storage"; + remoteGlobalIDString = ADC4ACC657481AD27F9936D08FF7F49A; + remoteInfo = "react-native-cookies"; }; - 52930AD8F7529C00DBF65D8885178645 /* PBXContainerItemProxy */ = { + 4CD5C6B82CC0D8AC22751E254CB9F995 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = D985A509BFE270C95EDCBE6B4CBAF189; - remoteInfo = "react-native-simple-crypto"; + remoteGlobalIDString = F7845084F0CF03F54107EEF7411760AD; + remoteInfo = UMPermissionsInterface; }; - 52BC0FD32310DC90777AFCE85B5CD073 /* PBXContainerItemProxy */ = { + 4D705BB971343ECC2ACF028D09C36586 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = 90148E8FD1C445D7A019D504FA8CBC53; - remoteInfo = ReactNativeART; + remoteGlobalIDString = D2B5E7DCCBBFB32341D857D01211A1A3; + remoteInfo = nanopb; }; - 53246BD24D8455F774F8D6BCB9651698 /* PBXContainerItemProxy */ = { + 4E07030CFBD443E75216553777BA21B3 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = DBCB1B4965863DDD3B9DED9A0918A526; - remoteInfo = UMCore; + remoteGlobalIDString = 1A0445474DA11CA659C4BCC5AB64B1BF; + remoteInfo = RNCMaskedView; }; - 53617FB4A674EDAEC3FD5ECD2977A528 /* PBXContainerItemProxy */ = { + 4EFBA50D264293BBBF7C9708265B8136 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = 072CEA044D2EF26F03496D5996BBF59F; - remoteInfo = Firebase; + remoteGlobalIDString = 680299219D3A48D42A648AF6706275A9; + remoteInfo = "React-RCTSettings"; }; - 555171B29ADA7FFC5810355DAC962B7F /* PBXContainerItemProxy */ = { + 504E234F57F0A972FAE847A65C4E627E /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = 1BEE828C124E6416179B904A9F66D794; - remoteInfo = React; + remoteGlobalIDString = 263266A9E29FFF0E9C8CA0E4582BFCF4; + remoteInfo = EXImageLoader; }; - 555540C761642F465F54BFAD9A6984BA /* PBXContainerItemProxy */ = { + 50FF56713292312788C0B94C270C46AF /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = 1A0445474DA11CA659C4BCC5AB64B1BF; - remoteInfo = RNCMaskedView; + remoteGlobalIDString = FA877ADC442CB19CF61793D234C8B131; + remoteInfo = "React-jsi"; }; - 5569090EC3C3F2F0CF2BAEF82929EAEF /* PBXContainerItemProxy */ = { + 516671CE586CC347A56F82D3A77B5D48 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = 620E05868772C10B4920DC7E324F2C87; - remoteInfo = FirebaseCoreDiagnostics; + remoteGlobalIDString = 869CED37B4B77AAE35DF8B6E70788BBC; + remoteInfo = EXLocalAuthentication; }; - 56548FA7A094528CDB9ED90DE3CD9C3A /* PBXContainerItemProxy */ = { + 5166844DC53AA4212915E61DC5688C6D /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = DBD2D83E10F8B7D3F4E0E34E6A9FCFA6; - remoteInfo = "React-RCTText"; + remoteGlobalIDString = BD9A27D8398DEB3205D3F8937B0672A0; + remoteInfo = "react-native-safe-area-context"; }; - 569252C407BCAD943D6BDD348931E252 /* PBXContainerItemProxy */ = { + 51BBFCA92D391571BC9FB1E754436E6A /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = 620E05868772C10B4920DC7E324F2C87; - remoteInfo = FirebaseCoreDiagnostics; + remoteGlobalIDString = EC55D52694092A9D0E6A78EB01207EB5; + remoteInfo = "RCT-Folly"; }; - 56B08E369EF25875B67F3DBDF67BF35F /* PBXContainerItemProxy */ = { + 524D3729BEB245F54BDDB909C41198AE /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = 1BEE828C124E6416179B904A9F66D794; - remoteInfo = React; + remoteGlobalIDString = F1E2583679398CB5F4D2B3272E9B198F; + remoteInfo = "React-perflogger"; }; - 56EB10C15B080BAE819AB4C01C30D572 /* PBXContainerItemProxy */ = { + 52D1BF9E6A8FD24083D91C67CCDE0AA7 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = 463F41A7E8B252F8AC5024DA1F4AF6DA; - remoteInfo = "React-cxxreact"; + remoteGlobalIDString = 2B25F90D819B9ADF2AF2D8733A890333; + remoteInfo = Yoga; }; - 57433F28D15E9041CE8E3C09FDE7CD41 /* PBXContainerItemProxy */ = { + 5313504DC2587A6FDF5D556C702D82DB /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = 8D7F5D5DD528D21A72DC87ADA5B12E2D; - remoteInfo = GoogleUtilities; + remoteGlobalIDString = B6D39E083AE0FF45BA30D7CDF6198A03; + remoteInfo = "Flipper-Folly"; }; - 576E23C19AB2BF6F63975A1429A869B4 /* PBXContainerItemProxy */ = { + 5313D012E657F5BB7BCB16A97543C649 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = D00F24222F074B31C56DC6D05E806A35; - remoteInfo = RNCPicker; + remoteGlobalIDString = DA0709CAAD589C6E7963495210438021; + remoteInfo = "React-jsiexecutor"; }; - 578226052999AC58B77081D467E47D82 /* PBXContainerItemProxy */ = { + 532BD76A7637DD336D69E911B90FF03E /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = 0CF4D9052577C85B6B8C4E957332626B; - remoteInfo = EXKeepAwake; + remoteGlobalIDString = EC55D52694092A9D0E6A78EB01207EB5; + remoteInfo = "RCT-Folly"; }; - 580D69B9F7E7F081BC1C85F14CF37CE9 /* PBXContainerItemProxy */ = { + 5356DDD2C08DDFD3866151AFC1FE9408 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; remoteGlobalIDString = 7ACAA9BE580DD31A5CB9D97C45D9492D; remoteInfo = "React-Core"; }; - 586149B72877694B4DA40AE703D7336E /* PBXContainerItemProxy */ = { + 53906E9A98FADC2A22D60C989022AC13 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = 985FEA01F314F3C00F0C1E1181E6C4A5; - remoteInfo = "hermes-engine"; + remoteGlobalIDString = D20469A9A1E5CFB26045EAEBE3F88E5E; + remoteInfo = RCTTypeSafety; }; - 58A8053A3AF1DB1BEF477C23CC12B29E /* PBXContainerItemProxy */ = { + 53E03B66754D8CBB280E396DC3B94ABE /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = 2038C6F97563AAD6162C284B3EDD5B3B; - remoteInfo = UMSensorsInterface; + remoteGlobalIDString = 8D7F5D5DD528D21A72DC87ADA5B12E2D; + remoteInfo = GoogleUtilities; }; - 58D6C04CC829A78BEE24413D12CF650D /* PBXContainerItemProxy */ = { + 54612D82822F52025B69EA5BEF101FC8 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = C3496D0495E700CF08A90C41EA8FA4BB; - remoteInfo = FBReactNativeSpec; + remoteGlobalIDString = 1BEE828C124E6416179B904A9F66D794; + remoteInfo = React; }; - 58DB40669A528054F8B14B0EC60BEC66 /* PBXContainerItemProxy */ = { + 54967528DBDEA03A2FC47FBADB54A55A /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = 620E05868772C10B4920DC7E324F2C87; - remoteInfo = FirebaseCoreDiagnostics; + remoteGlobalIDString = 868B90C74770285449C60DBA82181479; + remoteInfo = EXFileSystem; }; - 590D4369441D7B8C47D1FB5FDC5BDC16 /* PBXContainerItemProxy */ = { + 5522129A0C7D898C4F6D5EE7103627DC /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = B6D39E083AE0FF45BA30D7CDF6198A03; - remoteInfo = "Flipper-Folly"; + remoteGlobalIDString = 3FF2E78BB54ED67CA7FAD8DA2590DBEE; + remoteInfo = "react-native-appearance"; }; - 59388E57F965539219CDE3E790E1E349 /* PBXContainerItemProxy */ = { + 552733F8DA1857B07B790C9CFC70C7AA /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = DC0D417AC8ABB7AA10C20A5E0F065812; - remoteInfo = RNConfigReader; + remoteGlobalIDString = 5B40FBDAD0AB75D17C4760F4054BFF71; + remoteInfo = JitsiMeetSDK; }; - 59E220379E7E47B861BC7E127FE2035A /* PBXContainerItemProxy */ = { + 55B92FD34AA73EDE825A27A6E0918501 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = 32CA4CBD6B28983076BD93DA221AD027; - remoteInfo = YogaKit; + remoteGlobalIDString = 28A005E00FB77DDB2543047A07ED99A5; + remoteInfo = EXAppleAuthentication; }; - 5A1A264C62BE65EF029F9BF45D86D757 /* PBXContainerItemProxy */ = { + 566BD5380B6A1E8D25AEB3B4063B3874 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = D985A509BFE270C95EDCBE6B4CBAF189; - remoteInfo = "react-native-simple-crypto"; + remoteGlobalIDString = E16E206437995280D349D4B67695C894; + remoteInfo = "React-CoreModules"; }; - 5A88345FAF41187CC2F47ABFAB6C902C /* PBXContainerItemProxy */ = { + 56A1F73A7F7598CF92FC0A468808AEF2 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = ED2506AE7DE35D654F61254441EA7155; - remoteInfo = "boost-for-react-native"; + remoteGlobalIDString = 0CF4D9052577C85B6B8C4E957332626B; + remoteInfo = EXKeepAwake; }; - 5AD9824DA15B989D5D0F776237081BC4 /* PBXContainerItemProxy */ = { + 56DD114D59C4A38193497B5C7391CD5E /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = F7D033C4C128EECAA020990641FA985F; - remoteInfo = "React-jsinspector"; + remoteGlobalIDString = 1092C13E1E1172209537C28D0C8D4D3C; + remoteInfo = "react-native-orientation-locker"; }; - 5AF93AF43A64C1D10B49956F82E66101 /* PBXContainerItemProxy */ = { + 5708A871015012F2DE27E2F45AD45B8E /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = 9668C19AA6D8EA320F83875FA286855A; - remoteInfo = UMConstantsInterface; + remoteGlobalIDString = 50188AAB5FAECCA9583327DBA2B0AF2B; + remoteInfo = UMTaskManagerInterface; }; - 5B319F515B5ACDF4339F14979172021B /* PBXContainerItemProxy */ = { + 58007AC42D48CD5F2EBCCC8D243F3763 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = 2BBF7206D7FAC92C82A042A99C4A98F8; - remoteInfo = PromisesObjC; + remoteGlobalIDString = D9245543B79C09FAC40FC8B9F291536A; + remoteInfo = "Flipper-DoubleConversion"; }; - 5B3D2BBD2FB85E098BAD2132F8F32286 /* PBXContainerItemProxy */ = { + 58C12931B2E85F77BCD779AA06E97A3E /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = 1BEE828C124E6416179B904A9F66D794; - remoteInfo = React; + remoteGlobalIDString = 47D2E85A78C25869BB13521D8561A638; + remoteInfo = libwebp; }; - 5B46F0291F03F7C6291A82898B21367D /* PBXContainerItemProxy */ = { + 5A0723A4B5A1D18B7535DA9BD02B3A06 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = 3847153A6E5EEFB86565BA840768F429; - remoteInfo = SDWebImage; + remoteGlobalIDString = 2B25F90D819B9ADF2AF2D8733A890333; + remoteInfo = Yoga; }; - 5BE8DA56D3A7977364548E2935DE0DB1 /* PBXContainerItemProxy */ = { + 5A910571141E1475788075941C86E603 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = F1E2583679398CB5F4D2B3272E9B198F; - remoteInfo = "React-perflogger"; + remoteGlobalIDString = 5B40FBDAD0AB75D17C4760F4054BFF71; + remoteInfo = JitsiMeetSDK; }; - 5C124631297FE08AF639F95D2465990A /* PBXContainerItemProxy */ = { + 5B2239199ABB4AC8A3C87A01A377F483 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = 11989A5E568B3B69655EE0C13DCDA3F9; - remoteInfo = "React-RCTActionSheet"; + remoteGlobalIDString = 0D82774D2A533D3FFAE27CAB4A6E9CB2; + remoteInfo = RNImageCropPicker; }; - 5C88E946B311BCCD1D2CB4A3CEF41913 /* PBXContainerItemProxy */ = { + 5B38948DD2E86DBA81D3EB233CA58ECB /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = C3496D0495E700CF08A90C41EA8FA4BB; - remoteInfo = FBReactNativeSpec; + remoteGlobalIDString = E63939AA6EFD3D6A8C09E45929F11DBD; + remoteInfo = Flipper; }; - 5CDB7363BA06796933291B98A02D80A6 /* PBXContainerItemProxy */ = { + 5B894D84DEECA69B4FBE5324B6F5D2D9 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = D2B5E7DCCBBFB32341D857D01211A1A3; - remoteInfo = nanopb; + remoteGlobalIDString = ED2506AE7DE35D654F61254441EA7155; + remoteInfo = "boost-for-react-native"; }; - 5D9C0DC2D812B010822D16DDB9AEA6E2 /* PBXContainerItemProxy */ = { + 5BD55AB4B8FDB53BF784976D5A2A641A /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = EEBB8D24F2B3531A5C5DAA668D02331F; - remoteInfo = "react-native-blur"; + remoteGlobalIDString = 5C0371EE948D0357B8EE0E34ABB44BF0; + remoteInfo = GoogleDataTransport; }; - 5DD225A5BF429A260374E0F90D5F7E7A /* PBXContainerItemProxy */ = { + 5C2AF295FE40203F01778E36430CFF65 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = 7F591BD8674041AAAA4F37DC699B5518; - remoteInfo = KeyCommands; + remoteGlobalIDString = 868B90C74770285449C60DBA82181479; + remoteInfo = EXFileSystem; }; - 5DE44274FC42792D02B19B8358D80D0B /* PBXContainerItemProxy */ = { + 5C65FC395BF4FBF543DF7EE76A5DD36D /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = D20469A9A1E5CFB26045EAEBE3F88E5E; - remoteInfo = RCTTypeSafety; + remoteGlobalIDString = A4EF87F5681665EAE943D9B06BBB17DF; + remoteInfo = "react-native-slider"; }; - 5E56FDA49F54391D38580AB385191074 /* PBXContainerItemProxy */ = { + 5CD8BD0DFFE9D7670CCD55F2EDAC9232 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = F4F25FCAC51B51FD5F986EB939BF1F87; - remoteInfo = GoogleDataTransportCCTSupport; + remoteGlobalIDString = DBCB1B4965863DDD3B9DED9A0918A526; + remoteInfo = UMCore; }; - 5E8F59849520F8E58324C72E77979051 /* PBXContainerItemProxy */ = { + 5CDAEA5A338F49C1FAEDCC89433AA984 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = 4402AFF83DBDC4DD07E198685FDC2DF2; - remoteInfo = FirebaseCore; + remoteGlobalIDString = 54EB12219122432FA744088BC5A680D2; + remoteInfo = "React-runtimeexecutor"; }; - 5E9B56398AFED5DAA87AB668621A0B74 /* PBXContainerItemProxy */ = { + 5D4245917E4382FDE72243FDCD826D42 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = EC55D52694092A9D0E6A78EB01207EB5; - remoteInfo = "RCT-Folly"; + remoteGlobalIDString = 2681CB7EF647E61F4F9A43029C235607; + remoteInfo = "React-callinvoker"; }; - 5F7D10701E8B65E8D112EC495E5F38AA /* PBXContainerItemProxy */ = { + 5D534B81B5989347FAAD86CC479F9FCC /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = 037A1F31C4D99F52EC9FD2008FEC481C; - remoteInfo = ReactNativeUiLib; + remoteGlobalIDString = 2AB2EF542954AB1C999E03BFEF8DE806; + remoteInfo = DoubleConversion; }; - 5F9E71884D5A17819A4679A58BF9F20C /* PBXContainerItemProxy */ = { + 5DA835FDDA08DADDC3E1DCCC3485801C /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = 5B40FBDAD0AB75D17C4760F4054BFF71; - remoteInfo = JitsiMeetSDK; + remoteGlobalIDString = E63939AA6EFD3D6A8C09E45929F11DBD; + remoteInfo = Flipper; }; - 604A57080D43C4AFF098925033AA96B3 /* PBXContainerItemProxy */ = { + 5E3E704B0905069ACD37958158F16CB4 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = 2B25F90D819B9ADF2AF2D8733A890333; - remoteInfo = Yoga; + remoteGlobalIDString = 2AD4F40E67E1874A0816F6B34289EB41; + remoteInfo = UMFaceDetectorInterface; }; - 60808F2C1A54DC82F301CC0A3FF586B1 /* PBXContainerItemProxy */ = { + 5E7E8A6F71E73C552BA02564AC7A495C /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = 13D7009C3736FB694854D88BAD4742B6; - remoteInfo = EXAV; + remoteGlobalIDString = D760AF58E12ABBB51F84160FB02B5F39; + remoteInfo = RNDateTimePicker; }; - 608C5DE033794BCECB7298D334B5E201 /* PBXContainerItemProxy */ = { + 5E9765BC93A1540EBB313B977277B643 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = 526C4398D095B3704EB933DADBC30093; - remoteInfo = FirebaseCrashlytics; + remoteGlobalIDString = B6D5DD49633DFF0657B8C3F08EB3ABA9; + remoteInfo = ReactCommon; }; - 608CF4E95AA4EB76E291C9AECE773B27 /* PBXContainerItemProxy */ = { + 5EDD417B6A79E8B84318231715FE7F0F /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = 6083682834ABE0AE7BD1CBF06CADD036; - remoteInfo = CocoaAsyncSocket; + remoteGlobalIDString = EC55D52694092A9D0E6A78EB01207EB5; + remoteInfo = "RCT-Folly"; + }; + 5F61BE46DC84985A668FB8E069C645E9 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = D00F24222F074B31C56DC6D05E806A35; + remoteInfo = RNCPicker; }; - 60D322FF766C8D61CA8ED87B9000A668 /* PBXContainerItemProxy */ = { + 5F70EDACEBCC1AC06D35177A04761425 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; remoteGlobalIDString = DBCB1B4965863DDD3B9DED9A0918A526; remoteInfo = UMCore; }; - 6162F3A41AFFB0D95D05E58A42E945D1 /* PBXContainerItemProxy */ = { + 5F811B30F7BA3387C3398E9022974156 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = D0EFEFB685D97280256C559792236873; - remoteInfo = glog; + remoteGlobalIDString = 409F3A0DB395F53FFB6AB30E5CD8ACD1; + remoteInfo = EXHaptics; }; - 616D3AA11D13A7910CA749A077049EEA /* PBXContainerItemProxy */ = { + 5FEE9D2F2FE4EA9F19B546421C68C97A /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = 4402AFF83DBDC4DD07E198685FDC2DF2; - remoteInfo = FirebaseCore; + remoteGlobalIDString = B6D5DD49633DFF0657B8C3F08EB3ABA9; + remoteInfo = ReactCommon; }; - 618D168BEAACFA3B5A1C875C806E8E78 /* PBXContainerItemProxy */ = { + 601DB8E8364560E986FE641592E4E8C6 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = 7ACAA9BE580DD31A5CB9D97C45D9492D; - remoteInfo = "React-Core"; + remoteGlobalIDString = ED2506AE7DE35D654F61254441EA7155; + remoteInfo = "boost-for-react-native"; }; - 61915254BD5BB8B37E9426BCA441587C /* PBXContainerItemProxy */ = { + 603C777EA49D1010895E1291F97FE7BE /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = 4A95B7CD1D5F80C5E8CD9CDA00D41F70; - remoteInfo = EXVideoThumbnails; + remoteGlobalIDString = 95D98F901D07557EF7CA38D3F03832C5; + remoteInfo = "React-RCTBlob"; }; - 61C5AD83051A6BF988E860492C9C4E91 /* PBXContainerItemProxy */ = { + 60B244F3CD1598D25EA288C7E4B15B19 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; remoteGlobalIDString = 13D7009C3736FB694854D88BAD4742B6; remoteInfo = EXAV; }; - 620B83BA58E6500BECBBB0262BB7A1DB /* PBXContainerItemProxy */ = { + 6190108F9BC9F17086A76468EB447405 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = 014495932E402CA67C37681988047CA2; - remoteInfo = UMFontInterface; + remoteGlobalIDString = 8CC4EAA817AA86310D1900F1DAB3580F; + remoteInfo = FBLazyVector; }; - 6236B0E829BFA77ED7E0381BBC4793AD /* PBXContainerItemProxy */ = { + 629F6DC71086720B06BDECE41E7EA0A9 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = CA400829100F0628EC209FBB08347D42; - remoteInfo = "react-native-notifications"; + remoteGlobalIDString = DBCB1B4965863DDD3B9DED9A0918A526; + remoteInfo = UMCore; }; - 631341BE9143FC0B1864D0AC25521689 /* PBXContainerItemProxy */ = { + 62A9FCA66EA1267851246A23C6494C10 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = 89F573A6B1292B3B2296B2206BFDC3D7; - remoteInfo = RNCAsyncStorage; + remoteGlobalIDString = 1BEE828C124E6416179B904A9F66D794; + remoteInfo = React; }; - 632DA945F4A946CF1CDC32425016CAF3 /* PBXContainerItemProxy */ = { + 62AB1A48A47FC4F0BADE1E6D06A6AE72 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = D2B5E7DCCBBFB32341D857D01211A1A3; - remoteInfo = nanopb; + remoteGlobalIDString = 0A72FB88825FDC7D301C9DD1F8F96824; + remoteInfo = EXPermissions; }; - 6359F94F5060859B2E9C4134C1869B29 /* PBXContainerItemProxy */ = { + 6332E763E7F4CF7102EBE7A5076FCFD4 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = 2BBF7206D7FAC92C82A042A99C4A98F8; - remoteInfo = PromisesObjC; + remoteGlobalIDString = 1BEE828C124E6416179B904A9F66D794; + remoteInfo = React; }; - 638C22689F31DD16A085BB7364E0EF57 /* PBXContainerItemProxy */ = { + 63838E65DE7EBC94117B72FC7462F0C0 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = 2BBF7206D7FAC92C82A042A99C4A98F8; - remoteInfo = PromisesObjC; + remoteGlobalIDString = 7ACAA9BE580DD31A5CB9D97C45D9492D; + remoteInfo = "React-Core"; }; - 63C08E5F8D2AEADD422054F35008354A /* PBXContainerItemProxy */ = { + 6392693E2CA61F1B9A56B734EAF9D431 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = 8CC4EAA817AA86310D1900F1DAB3580F; - remoteInfo = FBLazyVector; + remoteGlobalIDString = D20469A9A1E5CFB26045EAEBE3F88E5E; + remoteInfo = RCTTypeSafety; }; - 64340757F801CD4D68903C3967D08A6D /* PBXContainerItemProxy */ = { + 63D1EEA66F4CD7F4E8872A97D9AC99DC /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = F7D033C4C128EECAA020990641FA985F; - remoteInfo = "React-jsinspector"; + remoteGlobalIDString = EC55D52694092A9D0E6A78EB01207EB5; + remoteInfo = "RCT-Folly"; }; - 6436E251B213A17559C5A007126860E2 /* PBXContainerItemProxy */ = { + 63D1FC844EEE4376CE597B43F4559F1F /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = B53D977A951AFC38B21751B706C1DF83; - remoteInfo = GoogleAppMeasurement; + remoteGlobalIDString = ED2506AE7DE35D654F61254441EA7155; + remoteInfo = "boost-for-react-native"; }; - 64CD3F61C1A6D5996EA1BE3407988B18 /* PBXContainerItemProxy */ = { + 6444D49D20E51EA417E899762AC492D3 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = B9E8F4CA2A4A8599389FEB665A9B96FF; - remoteInfo = RNGestureHandler; + remoteGlobalIDString = BA3F5E5AA483B263B69601DE2FA269CB; + remoteInfo = "react-native-cameraroll"; }; - 65460C545AE2E274A9E44193100D018E /* PBXContainerItemProxy */ = { + 64A013E53E7A0796ECFEB9D537F49412 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = 526C4398D095B3704EB933DADBC30093; - remoteInfo = FirebaseCrashlytics; + remoteGlobalIDString = 8D18C49071FC5370C25F5758A85BA5F6; + remoteInfo = "react-native-webview"; }; - 660D7A178848A2FB793E031B2D6475E8 /* PBXContainerItemProxy */ = { + 659E9EE77D5279E418FD446C252B4DC6 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = 263266A9E29FFF0E9C8CA0E4582BFCF4; - remoteInfo = EXImageLoader; + remoteGlobalIDString = 2BBF7206D7FAC92C82A042A99C4A98F8; + remoteInfo = PromisesObjC; }; - 6684F4363389C0D8E03366528419D2A7 /* PBXContainerItemProxy */ = { + 65C7C484B1DA071D39261B1EB23668B4 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = 7F591BD8674041AAAA4F37DC699B5518; - remoteInfo = KeyCommands; + remoteGlobalIDString = D0EFEFB685D97280256C559792236873; + remoteInfo = glog; }; - 6699DA762C1C3FAB74015C0C2893DDEC /* PBXContainerItemProxy */ = { + 65CE3B5711E8042A1CA8B8A4AD310C79 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = 54EB12219122432FA744088BC5A680D2; - remoteInfo = "React-runtimeexecutor"; + remoteGlobalIDString = 4402AFF83DBDC4DD07E198685FDC2DF2; + remoteInfo = FirebaseCore; }; - 66B6D11533A8FBAFF46B22D6A7534A0A /* PBXContainerItemProxy */ = { + 66707D625F708325F1131EAC0FEA6D28 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = 87803597EB3F20FC46472B85392EC4FD; - remoteInfo = FirebaseInstallations; + remoteGlobalIDString = 6FE9147F8AAA4DE676C190F680F47AE2; + remoteInfo = "React-RCTLinking"; }; - 672ED383E40E18B777B47957FAF83FB3 /* PBXContainerItemProxy */ = { + 66E603097218B6B92F872B747460E2E1 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; remoteGlobalIDString = DBD2D83E10F8B7D3F4E0E34E6A9FCFA6; remoteInfo = "React-RCTText"; }; - 6732A8C03EFC5AC7ECAF8211A8DF254E /* PBXContainerItemProxy */ = { + 684AE92B8B71291EB493B85F23689AE3 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = 1092C13E1E1172209537C28D0C8D4D3C; - remoteInfo = "react-native-orientation-locker"; + remoteGlobalIDString = A238B7CE3865946D1F214E1FE0023AAE; + remoteInfo = "rn-extensions-share"; }; - 67853A4F5F3148D98DC959BC4A971A11 /* PBXContainerItemProxy */ = { + 69418A748FD7EA8FC5DF517A1736BA5E /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = 6FE9147F8AAA4DE676C190F680F47AE2; - remoteInfo = "React-RCTLinking"; + remoteGlobalIDString = 718DB7D0A7E90B531AD577B3356C4161; + remoteInfo = "Flipper-PeerTalk"; }; - 67D8B961DDE63B654E8D29EF8DD0EC06 /* PBXContainerItemProxy */ = { + 69BB3E53F609B9E5F4F716495A14C2B4 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = A4EF87F5681665EAE943D9B06BBB17DF; - remoteInfo = "react-native-slider"; + remoteGlobalIDString = F7845084F0CF03F54107EEF7411760AD; + remoteInfo = UMPermissionsInterface; }; - 686621BCA13D7BDEAF77E40F9A066702 /* PBXContainerItemProxy */ = { + 69D7187539A0A356BD0A0F44A2C3B8DB /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = D39AB631E8050865DE01F6D5678797D2; - remoteInfo = "react-native-jitsi-meet"; + remoteGlobalIDString = DA0709CAAD589C6E7963495210438021; + remoteInfo = "React-jsiexecutor"; }; - 688625807C0975024C9D62CA623BAB5E /* PBXContainerItemProxy */ = { + 6A244651D3CB5472D5ADA80005BEA051 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = 4402AFF83DBDC4DD07E198685FDC2DF2; - remoteInfo = FirebaseCore; + remoteGlobalIDString = 28A005E00FB77DDB2543047A07ED99A5; + remoteInfo = EXAppleAuthentication; }; - 68DF654651E2E480EAC07733E4ADE995 /* PBXContainerItemProxy */ = { + 6A732530AFC5B3792C5A5863D086CCE9 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = DA0709CAAD589C6E7963495210438021; - remoteInfo = "React-jsiexecutor"; + remoteGlobalIDString = 90148E8FD1C445D7A019D504FA8CBC53; + remoteInfo = ReactNativeART; }; - 68E8C147AC389AED1597739E606CEC08 /* PBXContainerItemProxy */ = { + 6AE0C21CDD5134B6FE1BD12B36A364DC /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = 2681CB7EF647E61F4F9A43029C235607; - remoteInfo = "React-callinvoker"; + remoteGlobalIDString = FA877ADC442CB19CF61793D234C8B131; + remoteInfo = "React-jsi"; }; - 69BF5557AF1FEF6C555F67A1C1C56432 /* PBXContainerItemProxy */ = { + 6B119046F5030FE128E486AFD6D804A7 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = 0745200E60DC80C9A0A48B7E6C1518D7; - remoteInfo = BugsnagReactNative; + remoteGlobalIDString = 18B56DB36E1F066C927E49DBAE590128; + remoteInfo = RNRootView; }; - 6A4F6E8189639BE11C070C6B2C17D163 /* PBXContainerItemProxy */ = { + 6B480479BF01E0378DA3192CA75B6D7D /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = EC55D52694092A9D0E6A78EB01207EB5; - remoteInfo = "RCT-Folly"; + remoteGlobalIDString = 4402AFF83DBDC4DD07E198685FDC2DF2; + remoteInfo = FirebaseCore; }; - 6A574423B76DF9CB47DD812F88829918 /* PBXContainerItemProxy */ = { + 6BBE040F10103BBC50E8BF3111DBAAA8 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = 409F3A0DB395F53FFB6AB30E5CD8ACD1; - remoteInfo = EXHaptics; + remoteGlobalIDString = 95D98F901D07557EF7CA38D3F03832C5; + remoteInfo = "React-RCTBlob"; }; - 6ADA9866B60F41F8D66EB5650C2592AA /* PBXContainerItemProxy */ = { + 6CABC9DED9311801E8BAB8FDFEBA3DAC /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = 2B25F90D819B9ADF2AF2D8733A890333; - remoteInfo = Yoga; + remoteGlobalIDString = E7E7CE52C8C68B17224FF8C262D80ABF; + remoteInfo = RCTRequired; }; - 6BEECFE940EE57446010093679E6B7A9 /* PBXContainerItemProxy */ = { + 6CBE731A42C259C7DB78D903BB270F8A /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = A238B7CE3865946D1F214E1FE0023AAE; - remoteInfo = "rn-extensions-share"; + remoteGlobalIDString = 47D2E85A78C25869BB13521D8561A638; + remoteInfo = libwebp; }; - 6BF35E248DEC7B1CA4FF8109AD5DE73C /* PBXContainerItemProxy */ = { + 6D3F1C825C2CBD71CDEC2C034405AE5A /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = D0EFEFB685D97280256C559792236873; - remoteInfo = glog; + remoteGlobalIDString = 6A9637F1BC8154F777335A6420579C05; + remoteInfo = "Flipper-Glog"; }; - 6C31E5A6DD2ADD6C08CEB424EFB8BFF0 /* PBXContainerItemProxy */ = { + 6E17C8CFF1A9E18F73D2647C1C717915 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = C3496D0495E700CF08A90C41EA8FA4BB; - remoteInfo = FBReactNativeSpec; + remoteGlobalIDString = F1E2583679398CB5F4D2B3272E9B198F; + remoteInfo = "React-perflogger"; }; - 6D0C54C8FA5AAD31B221B6ACDEFE33F8 /* PBXContainerItemProxy */ = { + 6E3E190C5F916C582779FB4CFB0D1F32 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = 6FE9147F8AAA4DE676C190F680F47AE2; - remoteInfo = "React-RCTLinking"; + remoteGlobalIDString = B6D5DD49633DFF0657B8C3F08EB3ABA9; + remoteInfo = ReactCommon; }; - 6D6634B65AB897CC50769657EC33A6F7 /* PBXContainerItemProxy */ = { + 6F9452A965CB230A232FCCCF53FB41D4 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = E3573FB7AF659C42B699003C73722241; - remoteInfo = RNFBCrashlytics; + remoteGlobalIDString = FA877ADC442CB19CF61793D234C8B131; + remoteInfo = "React-jsi"; }; - 6DBC5E3B31BEC0C90A96EB5A2275E508 /* PBXContainerItemProxy */ = { + 6F955792A63ADE1735A7484366A6EA92 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; remoteGlobalIDString = 3ED96FB9FE1D18D5F1239C60A109F98C; remoteInfo = "react-native-restart"; }; - 6EE905DCAFF6D9757B7D78DEB143467E /* PBXContainerItemProxy */ = { + 6F9AF8189420FE157125AEDA86530CFC /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = 1BEE828C124E6416179B904A9F66D794; - remoteInfo = React; + remoteGlobalIDString = 072CEA044D2EF26F03496D5996BBF59F; + remoteInfo = Firebase; }; - 6FB5CFC462E5F15430524803915DF94E /* PBXContainerItemProxy */ = { + 7145BDB2B206A83619566AC1C92B8CEC /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = B51433D546A38C51AA781F192E8836F8; - remoteInfo = RNLocalize; + remoteGlobalIDString = 11989A5E568B3B69655EE0C13DCDA3F9; + remoteInfo = "React-RCTActionSheet"; }; - 70609736CA4CFD114CE5EFE50DCE88A6 /* PBXContainerItemProxy */ = { + 71990024C483F3A13FF98DCDEEF06B77 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = 1BEE828C124E6416179B904A9F66D794; - remoteInfo = React; + remoteGlobalIDString = F7D033C4C128EECAA020990641FA985F; + remoteInfo = "React-jsinspector"; }; - 7061AE322B05184FC5401EA3B62C6073 /* PBXContainerItemProxy */ = { + 71A79285F20FB4E2B754A36628BEF8E9 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = 11989A5E568B3B69655EE0C13DCDA3F9; - remoteInfo = "React-RCTActionSheet"; + remoteGlobalIDString = D20469A9A1E5CFB26045EAEBE3F88E5E; + remoteInfo = RCTTypeSafety; }; - 710AFA78DB930DDB1A0AF654064B964B /* PBXContainerItemProxy */ = { + 71FC99B5612A6BDE4184912BD3DACB29 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = 1BEE828C124E6416179B904A9F66D794; - remoteInfo = React; + remoteGlobalIDString = EC55D52694092A9D0E6A78EB01207EB5; + remoteInfo = "RCT-Folly"; }; - 71DBD6F69FB0A3E667A39B53EDA268F0 /* PBXContainerItemProxy */ = { + 7237B8AA0971540695CB9261448E3028 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = 96150F524B245896B800F84F369A9A5A; - remoteInfo = RNVectorIcons; + remoteGlobalIDString = DBCB1B4965863DDD3B9DED9A0918A526; + remoteInfo = UMCore; }; - 720D6F36713F2A7EFD0F6039E1465A16 /* PBXContainerItemProxy */ = { + 72397F26DC4863CF287D39438A0C1130 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = FF879E718031128A75E7DE54046E6219; - remoteInfo = RNReanimated; + remoteGlobalIDString = ADC4ACC657481AD27F9936D08FF7F49A; + remoteInfo = "react-native-cookies"; }; - 7231C9B7B946D73B0B59B0815F3C2048 /* PBXContainerItemProxy */ = { + 726A0DD24331C95C66D5A05375A2DBC2 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = 87803597EB3F20FC46472B85392EC4FD; - remoteInfo = FirebaseInstallations; + remoteGlobalIDString = 718DB7D0A7E90B531AD577B3356C4161; + remoteInfo = "Flipper-PeerTalk"; }; - 725A1F3026F44A05B6A9306461E76D33 /* PBXContainerItemProxy */ = { + 736C9AF6ABF208C09DD3C8FF8BD789CF /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = EEBB8D24F2B3531A5C5DAA668D02331F; - remoteInfo = "react-native-blur"; + remoteGlobalIDString = 938CCE22F6C4094B3FB6CF1478579E4B; + remoteInfo = "React-RCTAnimation"; }; - 726537D085A6AAE596BA2B05B5F6C773 /* PBXContainerItemProxy */ = { + 73734210D8EC2A61D81463E822580737 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = F7D033C4C128EECAA020990641FA985F; - remoteInfo = "React-jsinspector"; + remoteGlobalIDString = 6C1893932A69822CBE3502F2E0BCFB6D; + remoteInfo = EXConstants; }; - 72DAEFB9C4BBECC448C138A798F75ED8 /* PBXContainerItemProxy */ = { + 73A58A9EB1ACD5BF29463BC951EAECEE /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = 64F427905796B33B78A704063422979D; - remoteInfo = "rn-fetch-blob"; + remoteGlobalIDString = 87803597EB3F20FC46472B85392EC4FD; + remoteInfo = FirebaseInstallations; }; - 7329F52023168D19C86DE1935125A18C /* PBXContainerItemProxy */ = { + 7409AD43D53E670F6C98F6A0BBDB26FE /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = 97C4DE84FA3CC4EC06AA6D8C249949B7; - remoteInfo = UMImageLoaderInterface; + remoteGlobalIDString = 7F591BD8674041AAAA4F37DC699B5518; + remoteInfo = KeyCommands; }; - 73ACAEC53220CB443337B2FBB5FFB805 /* PBXContainerItemProxy */ = { + 74D68664DF9BB117E6D00A3CC630BB7A /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = BA3F5E5AA483B263B69601DE2FA269CB; - remoteInfo = "react-native-cameraroll"; + remoteGlobalIDString = 1953860EA9853AA2BC8022B242F08512; + remoteInfo = SDWebImageWebPCoder; }; - 73C03BC47D09631D4DFA4ADC8E6B51CD /* PBXContainerItemProxy */ = { + 7684BB68943AB2D7143FE39A0803378C /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = 8D18C49071FC5370C25F5758A85BA5F6; - remoteInfo = "react-native-webview"; + remoteGlobalIDString = 463F41A7E8B252F8AC5024DA1F4AF6DA; + remoteInfo = "React-cxxreact"; }; - 73CD322EDC89082FF68B9535D06AE940 /* PBXContainerItemProxy */ = { + 769281E58EEDC35FED4BC8C6943EA981 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = 95D98F901D07557EF7CA38D3F03832C5; - remoteInfo = "React-RCTBlob"; + remoteGlobalIDString = 1BEE828C124E6416179B904A9F66D794; + remoteInfo = React; }; - 743E77544AB16D9F45C7454313A6B4DD /* PBXContainerItemProxy */ = { + 76A0F18EFC7EAA06DB4DCB8D63FC3A5E /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = 28A005E00FB77DDB2543047A07ED99A5; - remoteInfo = EXAppleAuthentication; + remoteGlobalIDString = 651511D7DA7F07F9FC9AA40A2E86270D; + remoteInfo = "React-RCTNetwork"; }; - 75490B4E851772D5FE6CE8608A2B12CD /* PBXContainerItemProxy */ = { + 76B36D2CDA33CB90223240B6DA74EFEB /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = FA877ADC442CB19CF61793D234C8B131; - remoteInfo = "React-jsi"; + remoteGlobalIDString = 74DAFD196634D10887C9A4E7BA19A5E4; + remoteInfo = "react-native-mmkv-storage"; }; - 75B6C953C09AA70B51B016BEC1330C3D /* PBXContainerItemProxy */ = { + 77B59514ABEE62CA7D9A357F8409B2C0 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = 6FE9147F8AAA4DE676C190F680F47AE2; - remoteInfo = "React-RCTLinking"; + remoteGlobalIDString = 409F3A0DB395F53FFB6AB30E5CD8ACD1; + remoteInfo = EXHaptics; }; - 75BDEE1C722AFA24145BA719D7BBCFBB /* PBXContainerItemProxy */ = { + 780B3BE9270809D852F121E0A2FB47CD /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = E63939AA6EFD3D6A8C09E45929F11DBD; - remoteInfo = Flipper; + remoteGlobalIDString = 620E05868772C10B4920DC7E324F2C87; + remoteInfo = FirebaseCoreDiagnostics; }; - 75DCAE63969055377DEDD692445B7117 /* PBXContainerItemProxy */ = { + 784FEA4C6429472E0E6348B128C9243A /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = 2AB2EF542954AB1C999E03BFEF8DE806; - remoteInfo = DoubleConversion; + remoteGlobalIDString = F7845084F0CF03F54107EEF7411760AD; + remoteInfo = UMPermissionsInterface; }; - 7612F29B04AB588E203466104125D8B3 /* PBXContainerItemProxy */ = { + 78A2833AE1AF44AB4036466B4A59D37E /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = 1FAAE067C1BFDEA17DFB657C3379AB56; - remoteInfo = "Flipper-RSocket"; + remoteGlobalIDString = 2BBF7206D7FAC92C82A042A99C4A98F8; + remoteInfo = PromisesObjC; }; - 763F029EEA3593626EB912D4DB52FFEB /* PBXContainerItemProxy */ = { + 795EEE7A325026E7922C2E8D2E743B9E /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = 2AB2EF542954AB1C999E03BFEF8DE806; - remoteInfo = DoubleConversion; + remoteGlobalIDString = 6FE9147F8AAA4DE676C190F680F47AE2; + remoteInfo = "React-RCTLinking"; }; - 76807A0F1F4F6C75CE517435DED9D5CD /* PBXContainerItemProxy */ = { + 79632E039B67D28FB6F2DD0B5046F663 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = B6D5DD49633DFF0657B8C3F08EB3ABA9; - remoteInfo = ReactCommon; + remoteGlobalIDString = 8D7F5D5DD528D21A72DC87ADA5B12E2D; + remoteInfo = GoogleUtilities; }; - 78365B3D959DB3F6981CD93AE0050656 /* PBXContainerItemProxy */ = { + 799048825ED74337D1BE6874F60A059F /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = 95D98F901D07557EF7CA38D3F03832C5; - remoteInfo = "React-RCTBlob"; + remoteGlobalIDString = 1BEE828C124E6416179B904A9F66D794; + remoteInfo = React; }; - 783E240EE084DDA5A78595BE3B9BF749 /* PBXContainerItemProxy */ = { + 79A560F50834E7827F82FC5191ADA07A /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = 7ACAA9BE580DD31A5CB9D97C45D9492D; - remoteInfo = "React-Core"; + remoteGlobalIDString = B6D5DD49633DFF0657B8C3F08EB3ABA9; + remoteInfo = ReactCommon; }; - 7843E243157C310D6DEC5D96F9D96F41 /* PBXContainerItemProxy */ = { + 7A777492808974B1CB85A4B931B943AC /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = 91A6826828CB9FCD0169A7547E8A79EA; - remoteInfo = MMKV; + remoteGlobalIDString = 7ACAA9BE580DD31A5CB9D97C45D9492D; + remoteInfo = "React-Core"; }; - 786C4EF4FEECE22A8A59F0D013E2636F /* PBXContainerItemProxy */ = { + 7ADA575B30E474E67065A4CEB72C6EB3 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = 6083682834ABE0AE7BD1CBF06CADD036; - remoteInfo = CocoaAsyncSocket; + remoteGlobalIDString = 1BEE828C124E6416179B904A9F66D794; + remoteInfo = React; }; - 7B05314E0BD1ACFE405A74A0BF38B226 /* PBXContainerItemProxy */ = { + 7B2C0E123CF66050C2F11A56C24BA281 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = D2B5E7DCCBBFB32341D857D01211A1A3; - remoteInfo = nanopb; + remoteGlobalIDString = 463F41A7E8B252F8AC5024DA1F4AF6DA; + remoteInfo = "React-cxxreact"; }; - 7B4553286C8582DC620CF51CBC5051F4 /* PBXContainerItemProxy */ = { + 7B5FF147C97F1C82B57785A7E28562D3 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = 8D7F5D5DD528D21A72DC87ADA5B12E2D; - remoteInfo = GoogleUtilities; + remoteGlobalIDString = 2681CB7EF647E61F4F9A43029C235607; + remoteInfo = "React-callinvoker"; }; - 7B96D4DAB5B4D969F3D720D6A3C2873D /* PBXContainerItemProxy */ = { + 7BE4A916751EAB59C7CB8834CF686A26 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = FA877ADC442CB19CF61793D234C8B131; - remoteInfo = "React-jsi"; + remoteGlobalIDString = 2B25F90D819B9ADF2AF2D8733A890333; + remoteInfo = Yoga; }; - 7C105FF79E70FF52707B9493BDE8052E /* PBXContainerItemProxy */ = { + 7C41680667220B2351F93E93FE9EF530 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = D0EFEFB685D97280256C559792236873; - remoteInfo = glog; + remoteGlobalIDString = 7ACAA9BE580DD31A5CB9D97C45D9492D; + remoteInfo = "React-Core"; }; - 7C45AF8934BDFC00292B536F97BD0823 /* PBXContainerItemProxy */ = { + 7C469DE54AC5FCE99F424ED965DCB828 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = D985A509BFE270C95EDCBE6B4CBAF189; - remoteInfo = "react-native-simple-crypto"; + remoteGlobalIDString = D0EFEFB685D97280256C559792236873; + remoteInfo = glog; }; - 7C70AB9B74681F9C0D888ED44C6C9A49 /* PBXContainerItemProxy */ = { + 7C6CA7AC44F370FBEC27879796431759 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = B6D5DD49633DFF0657B8C3F08EB3ABA9; - remoteInfo = ReactCommon; + remoteGlobalIDString = 1BEE828C124E6416179B904A9F66D794; + remoteInfo = React; }; - 7CB07AC75B8B2580B14BEC5EFF6B7466 /* PBXContainerItemProxy */ = { + 7C88C6B0FA5F496182E74531FAA56A22 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = 1953860EA9853AA2BC8022B242F08512; - remoteInfo = SDWebImageWebPCoder; + remoteGlobalIDString = B53D977A951AFC38B21751B706C1DF83; + remoteInfo = GoogleAppMeasurement; }; - 7D53C9C4318E1EA1729F3027FBA7B746 /* PBXContainerItemProxy */ = { + 7C97CC46551CD27BC0C1009FEE85456F /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = 3847153A6E5EEFB86565BA840768F429; - remoteInfo = SDWebImage; + remoteGlobalIDString = 90D0DE2F3348233618414728C35311CA; + remoteInfo = RNFBApp; }; - 7D598AF8C7AAF47DA95B87BC66BECB6C /* PBXContainerItemProxy */ = { + 7CA0EE469D1C72D92CE9E7642E817236 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = 2644525CCE081E967809A8163D893A93; - remoteInfo = UMFileSystemInterface; + remoteGlobalIDString = FA877ADC442CB19CF61793D234C8B131; + remoteInfo = "React-jsi"; }; - 7DB2DADB16B041C2BBCA1D67315427BE /* PBXContainerItemProxy */ = { + 7CE217E36AF8FDBBE3706321899BA856 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = B6D5DD49633DFF0657B8C3F08EB3ABA9; - remoteInfo = ReactCommon; + remoteGlobalIDString = 526C4398D095B3704EB933DADBC30093; + remoteInfo = FirebaseCrashlytics; }; - 7DD7D4C4DD834B34F5D0FBD8F217710E /* PBXContainerItemProxy */ = { + 7CE9B79C1AD4BDFFC7C7F7F875D859A7 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = F1E2583679398CB5F4D2B3272E9B198F; - remoteInfo = "React-perflogger"; + remoteGlobalIDString = BD9A27D8398DEB3205D3F8937B0672A0; + remoteInfo = "react-native-safe-area-context"; }; - 7E6C80779E961A4CAB1215ABA3CB7D52 /* PBXContainerItemProxy */ = { + 7D5C1264D261C1097D614FA54B9265BE /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = 3847153A6E5EEFB86565BA840768F429; - remoteInfo = SDWebImage; + remoteGlobalIDString = 6D979AB5FDA2E858850D9903776A30B3; + remoteInfo = "RNImageCropPicker-QBImagePicker"; }; - 7E6E9612FAA666BFD7351EDD72ACA4BE /* PBXContainerItemProxy */ = { + 7D69695506C98818459D841DDD20B7DB /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = D9245543B79C09FAC40FC8B9F291536A; - remoteInfo = "Flipper-DoubleConversion"; + remoteGlobalIDString = 680299219D3A48D42A648AF6706275A9; + remoteInfo = "React-RCTSettings"; }; - 7ECD4A135F5204E4FA974F4513FADB5F /* PBXContainerItemProxy */ = { + 7D6ABB44F849FF7710C43C38BEFB70FF /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = 7ACAA9BE580DD31A5CB9D97C45D9492D; - remoteInfo = "React-Core"; + remoteGlobalIDString = 54EB12219122432FA744088BC5A680D2; + remoteInfo = "React-runtimeexecutor"; }; - 7EE2AD69BF9E7C6FBEB92D6ACC61A2B4 /* PBXContainerItemProxy */ = { + 7DDE786A9EECE0A8D53A2CEC9B1BB2AD /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = 1A0445474DA11CA659C4BCC5AB64B1BF; - remoteInfo = RNCMaskedView; + remoteGlobalIDString = D39AB631E8050865DE01F6D5678797D2; + remoteInfo = "react-native-jitsi-meet"; }; - 7F419458D4EB95BC37CEDA24E6A87FBA /* PBXContainerItemProxy */ = { + 7E9AE1F740E96694B1FAD244F59C11AE /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = 5C0371EE948D0357B8EE0E34ABB44BF0; - remoteInfo = GoogleDataTransport; + remoteGlobalIDString = 938CCE22F6C4094B3FB6CF1478579E4B; + remoteInfo = "React-RCTAnimation"; }; - 7F86036D468EF759A9944001C3086198 /* PBXContainerItemProxy */ = { + 7E9F30DB161E19E6BDBD2C4AEDBC6CCD /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = D20469A9A1E5CFB26045EAEBE3F88E5E; - remoteInfo = RCTTypeSafety; + remoteGlobalIDString = B6D39E083AE0FF45BA30D7CDF6198A03; + remoteInfo = "Flipper-Folly"; }; - 808002E3B1AF5727558607EE6E064A26 /* PBXContainerItemProxy */ = { + 7F1B6504AAFCF4C247009A575FA103D4 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = E3573FB7AF659C42B699003C73722241; - remoteInfo = RNFBCrashlytics; + remoteGlobalIDString = 7ACAA9BE580DD31A5CB9D97C45D9492D; + remoteInfo = "React-Core"; }; - 80CFA2910011DAE5463CDD132918267A /* PBXContainerItemProxy */ = { + 7FD18A7C0F3744C57D46371E56CA225A /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = 64F427905796B33B78A704063422979D; - remoteInfo = "rn-fetch-blob"; + remoteGlobalIDString = 7ACAA9BE580DD31A5CB9D97C45D9492D; + remoteInfo = "React-Core"; }; - 810FDFE4C799F23532046534D076DED7 /* PBXContainerItemProxy */ = { + 808031A8F4BFFED56B193B72B2B3FE93 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = 014495932E402CA67C37681988047CA2; - remoteInfo = UMFontInterface; + remoteGlobalIDString = 4F265533AAB7C8985856EC78A33164BB; + remoteInfo = "React-RCTImage"; }; - 8134E7E6E32967FAC4CB7ED1516DDF7A /* PBXContainerItemProxy */ = { + 817CB164FCD6BA8A31A29F004388BD5F /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = E16E206437995280D349D4B67695C894; - remoteInfo = "React-CoreModules"; + remoteGlobalIDString = D9245543B79C09FAC40FC8B9F291536A; + remoteInfo = "Flipper-DoubleConversion"; }; - 81C5969009BEC4DC662E5949901D5AE0 /* PBXContainerItemProxy */ = { + 81973EBB8FF7C0A694264133D574F85B /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = D0EFEFB685D97280256C559792236873; - remoteInfo = glog; + remoteGlobalIDString = B53D977A951AFC38B21751B706C1DF83; + remoteInfo = GoogleAppMeasurement; }; - 81CFA94D98625937545C95F24EA4B318 /* PBXContainerItemProxy */ = { + 81EAAF8A5D10C464023298081BAB20BF /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = 463F41A7E8B252F8AC5024DA1F4AF6DA; - remoteInfo = "React-cxxreact"; + remoteGlobalIDString = 7ACAA9BE580DD31A5CB9D97C45D9492D; + remoteInfo = "React-Core"; }; - 83A326D7E7735451290F57E714C9CBC3 /* PBXContainerItemProxy */ = { + 8204223EB70AB71ABD152AB7270A3322 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = A4EF87F5681665EAE943D9B06BBB17DF; - remoteInfo = "react-native-slider"; + remoteGlobalIDString = 8D7F5D5DD528D21A72DC87ADA5B12E2D; + remoteInfo = GoogleUtilities; }; - 83D0B0C09E0A0335D9E0D112F7A03FD4 /* PBXContainerItemProxy */ = { + 821846DC0142383F1952181D5997620B /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = 5C0371EE948D0357B8EE0E34ABB44BF0; - remoteInfo = GoogleDataTransport; + remoteGlobalIDString = D0EFEFB685D97280256C559792236873; + remoteInfo = glog; }; - 84137C7CBC8926F5AB9EF9B11A06045B /* PBXContainerItemProxy */ = { + 825AA4F892F07EB43AB7079F5EE4A5FA /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; remoteGlobalIDString = 651511D7DA7F07F9FC9AA40A2E86270D; remoteInfo = "React-RCTNetwork"; }; - 84B69E270811C414A064EE9D6600AF93 /* PBXContainerItemProxy */ = { + 841A7327F8FBEC69C28D8880BDF3A883 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = CA400829100F0628EC209FBB08347D42; - remoteInfo = "react-native-notifications"; + remoteGlobalIDString = D2B5E7DCCBBFB32341D857D01211A1A3; + remoteInfo = nanopb; }; - 84CD172C47BD97717943DAC8844763EC /* PBXContainerItemProxy */ = { + 8472B8840D82CD4C6700FE124F49DD12 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = 6FE9147F8AAA4DE676C190F680F47AE2; - remoteInfo = "React-RCTLinking"; + remoteGlobalIDString = 620E05868772C10B4920DC7E324F2C87; + remoteInfo = FirebaseCoreDiagnostics; }; - 84D82B5C5339F8C8C4920350E7CEB3ED /* PBXContainerItemProxy */ = { + 8485DA4C4B7486A73FA445BBEE5B5859 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = 47D2E85A78C25869BB13521D8561A638; - remoteInfo = libwebp; + remoteGlobalIDString = 49821C2B9E764AEDF2B35DFE9AA7022F; + remoteInfo = UMBarCodeScannerInterface; }; - 851D6020491EF4D4B7A44F5882379B71 /* PBXContainerItemProxy */ = { + 8489A92C42DAFC7AE2E3BC4C6D7D1162 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = B9ED5194E665042005069EF06C82A050; - remoteInfo = "OpenSSL-Universal"; + remoteGlobalIDString = 97C4DE84FA3CC4EC06AA6D8C249949B7; + remoteInfo = UMImageLoaderInterface; }; - 859171C7A1952B931BF3392772F1336C /* PBXContainerItemProxy */ = { + 84B03E28DB0632D0C98BC99A46A5E38A /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = ADC4ACC657481AD27F9936D08FF7F49A; - remoteInfo = "react-native-cookies"; + remoteGlobalIDString = F3966F664F3CFAEFAB57C40FB54D3788; + remoteInfo = TOCropViewController; }; - 8593B15F7E7D43B617028BADD9C67327 /* PBXContainerItemProxy */ = { + 8610A30FAEBF374057B156203EC97FEF /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = 938CCE22F6C4094B3FB6CF1478579E4B; - remoteInfo = "React-RCTAnimation"; + remoteGlobalIDString = CA400829100F0628EC209FBB08347D42; + remoteInfo = "react-native-notifications"; }; - 85BDF133B295BC6D64969F4CE288633B /* PBXContainerItemProxy */ = { + 86958CA324957D8C84CF9EBEF27CC77F /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = 409F3A0DB395F53FFB6AB30E5CD8ACD1; - remoteInfo = EXHaptics; + remoteGlobalIDString = C3496D0495E700CF08A90C41EA8FA4BB; + remoteInfo = FBReactNativeSpec; }; - 85E77B3B2FD9AB42A72382D093EF2012 /* PBXContainerItemProxy */ = { + 86BAFC567C1C742635DD22E79FB337F4 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = B9E8F4CA2A4A8599389FEB665A9B96FF; - remoteInfo = RNGestureHandler; + remoteGlobalIDString = B53D977A951AFC38B21751B706C1DF83; + remoteInfo = GoogleAppMeasurement; }; - 85F69F0D83AED0AD3A1DEE216D3903A0 /* PBXContainerItemProxy */ = { + 86D030E81BD8F54D247CCAAD4DA24CB7 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = 90D0DE2F3348233618414728C35311CA; - remoteInfo = RNFBApp; + remoteGlobalIDString = 8CC4EAA817AA86310D1900F1DAB3580F; + remoteInfo = FBLazyVector; }; - 85F896D8BEC8F1D035C789D222B9DDE0 /* PBXContainerItemProxy */ = { + 86F4D5214856CD375A0A7B9CE649E215 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = 3847153A6E5EEFB86565BA840768F429; - remoteInfo = SDWebImage; + remoteGlobalIDString = 32CA4CBD6B28983076BD93DA221AD027; + remoteInfo = YogaKit; }; - 86376CA1273408D151342DF5A9B674D9 /* PBXContainerItemProxy */ = { + 870E4CE31CA44BF92A1DF702DD9E1477 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = AC8AE887C706A43711D115E69B9D988A; - remoteInfo = MMKVCore; + remoteGlobalIDString = 620E05868772C10B4920DC7E324F2C87; + remoteInfo = FirebaseCoreDiagnostics; }; - 868101A1C99CECFEF4F971C99AAAFD34 /* PBXContainerItemProxy */ = { + 874CE7722082C35ACB7987FAE09EA105 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = 74DAFD196634D10887C9A4E7BA19A5E4; - remoteInfo = "react-native-mmkv-storage"; + remoteGlobalIDString = B9E8F4CA2A4A8599389FEB665A9B96FF; + remoteInfo = RNGestureHandler; }; - 870FBDE556FA18BF516EAAAB7E6842C3 /* PBXContainerItemProxy */ = { + 875395A5EF8D6DF420575323E3AEE370 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = BD9A27D8398DEB3205D3F8937B0672A0; - remoteInfo = "react-native-safe-area-context"; + remoteGlobalIDString = 9EB556EE511D43F3D5D7AAF51D8D0397; + remoteInfo = EXWebBrowser; }; - 871CE80C75F684D9C47E9B7CFBBC9DBB /* PBXContainerItemProxy */ = { + 87842835A5F8F3B513C0217F7AD9F2E9 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = C3496D0495E700CF08A90C41EA8FA4BB; - remoteInfo = FBReactNativeSpec; + remoteGlobalIDString = A238B7CE3865946D1F214E1FE0023AAE; + remoteInfo = "rn-extensions-share"; }; - 872E5C0235B283DD5087E3EB28AB9C08 /* PBXContainerItemProxy */ = { + 883FDCABE1E9C57061B044912C469E61 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = 5C0371EE948D0357B8EE0E34ABB44BF0; - remoteInfo = GoogleDataTransport; + remoteGlobalIDString = 7ACAA9BE580DD31A5CB9D97C45D9492D; + remoteInfo = "React-Core"; }; - 882D825E0D1D36A4869EC297D36EF2F1 /* PBXContainerItemProxy */ = { + 8884F5E4E8C0342C455FAF79A3181732 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = BD9A27D8398DEB3205D3F8937B0672A0; - remoteInfo = "react-native-safe-area-context"; + remoteGlobalIDString = E16E206437995280D349D4B67695C894; + remoteInfo = "React-CoreModules"; }; - 885D5302CB85F454FC739897C98443C6 /* PBXContainerItemProxy */ = { + 88BE6EDEE9BCE89ECE62484E68825E5C /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = C3496D0495E700CF08A90C41EA8FA4BB; - remoteInfo = FBReactNativeSpec; + remoteGlobalIDString = 2AB2EF542954AB1C999E03BFEF8DE806; + remoteInfo = DoubleConversion; }; - 88A2FC5EB2EF86CE3F4BFDB128DBC38C /* PBXContainerItemProxy */ = { + 89F0979FC9F8BE92F35C4A0E2F9D60DA /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = D2B5E7DCCBBFB32341D857D01211A1A3; - remoteInfo = nanopb; + remoteGlobalIDString = 7ACAA9BE580DD31A5CB9D97C45D9492D; + remoteInfo = "React-Core"; }; - 88D8D3EEAC30E400D73911DA7118DA4F /* PBXContainerItemProxy */ = { + 89F8678C4B2C7ED72EAE907BB773C7D9 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = D39AB631E8050865DE01F6D5678797D2; - remoteInfo = "react-native-jitsi-meet"; + remoteGlobalIDString = 2BBF7206D7FAC92C82A042A99C4A98F8; + remoteInfo = PromisesObjC; }; - 891CAEC0FD201C9817D63B3CBD7BE9E1 /* PBXContainerItemProxy */ = { + 8A068493E1B3351134BC05483DA8EED5 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = 072CEA044D2EF26F03496D5996BBF59F; - remoteInfo = Firebase; + remoteGlobalIDString = B6D39E083AE0FF45BA30D7CDF6198A03; + remoteInfo = "Flipper-Folly"; }; - 892AD86F4A0F4C102B509776727DA53F /* PBXContainerItemProxy */ = { + 8A1A8FCAB0FAA046395E0C7EE5C8D800 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = D20469A9A1E5CFB26045EAEBE3F88E5E; - remoteInfo = RCTTypeSafety; + remoteGlobalIDString = 1BEE828C124E6416179B904A9F66D794; + remoteInfo = React; }; - 897170CDD7C0FFE5ADA4870789B041A8 /* PBXContainerItemProxy */ = { + 8A6D1939DF8235A6B5F1100315B76031 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = 2644525CCE081E967809A8163D893A93; - remoteInfo = UMFileSystemInterface; + remoteGlobalIDString = 072CEA044D2EF26F03496D5996BBF59F; + remoteInfo = Firebase; }; - 8978A3E9D6F89F654EEB2D9CFC867FA8 /* PBXContainerItemProxy */ = { + 8A7B7E0638E8C5288E92598A3554B86B /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = 18B56DB36E1F066C927E49DBAE590128; - remoteInfo = RNRootView; + remoteGlobalIDString = B9ED5194E665042005069EF06C82A050; + remoteInfo = "OpenSSL-Universal"; }; - 89B28730D4FA80B4DB5CE7D2E7EF54E0 /* PBXContainerItemProxy */ = { + 8A8C925116AD0498EE4D8F9C13F3C116 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = 4F265533AAB7C8985856EC78A33164BB; - remoteInfo = "React-RCTImage"; + remoteGlobalIDString = 13D7009C3736FB694854D88BAD4742B6; + remoteInfo = EXAV; }; - 8A09AC86B92344F864CB6712CDBB0E3A /* PBXContainerItemProxy */ = { + 8AAA8C0845473F71977EA663B0BC2B15 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = C452F579644C83E8D8E36EC24A9BBD46; - remoteInfo = UMAppLoader; + remoteGlobalIDString = B6D5DD49633DFF0657B8C3F08EB3ABA9; + remoteInfo = ReactCommon; }; - 8A0B00CFF1353226D35D54AE02D03116 /* PBXContainerItemProxy */ = { + 8AD764C2F4D30FB8907E681DF005776D /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = 1BEE828C124E6416179B904A9F66D794; - remoteInfo = React; + remoteGlobalIDString = 0745200E60DC80C9A0A48B7E6C1518D7; + remoteInfo = BugsnagReactNative; }; - 8A525AE1258B688F08EE739488781906 /* PBXContainerItemProxy */ = { + 8B07AF98368D6D90E2EDAFEF087A8004 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = 3ED96FB9FE1D18D5F1239C60A109F98C; - remoteInfo = "react-native-restart"; + remoteGlobalIDString = 54EB12219122432FA744088BC5A680D2; + remoteInfo = "React-runtimeexecutor"; }; - 8A60A62A40131405910850D4FE89734A /* PBXContainerItemProxy */ = { + 8B1BDF237B8DB46C234E9920BDE330D0 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = E63939AA6EFD3D6A8C09E45929F11DBD; - remoteInfo = Flipper; + remoteGlobalIDString = 526C4398D095B3704EB933DADBC30093; + remoteInfo = FirebaseCrashlytics; }; - 8A9E777DFC1AEE77E5857F450C85ABCE /* PBXContainerItemProxy */ = { + 8C52DA5661B656BD465584D284411F8E /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = E16E206437995280D349D4B67695C894; - remoteInfo = "React-CoreModules"; + remoteGlobalIDString = 4402AFF83DBDC4DD07E198685FDC2DF2; + remoteInfo = FirebaseCore; }; - 8ABA38D0FA17CAE94D1D5914C9E7E0C7 /* PBXContainerItemProxy */ = { + 8D045F09FBDE091ABDAB68425BDBF57D /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = 3847153A6E5EEFB86565BA840768F429; - remoteInfo = SDWebImage; + remoteGlobalIDString = 7ACAA9BE580DD31A5CB9D97C45D9492D; + remoteInfo = "React-Core"; }; - 8AC6E94F646EDCA6BFE535009D91B8B0 /* PBXContainerItemProxy */ = { + 8DE8E10765EF79BA7FEB7DE0FD7AEE39 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = EC577C5CB1DC59A7464ECEF266A75B42; - remoteInfo = "react-native-netinfo"; + remoteGlobalIDString = 0A915EE9D35CA5636731F8763E774951; + remoteInfo = UMCameraInterface; }; - 8AE21511849BA75471C12EBC3FBD107C /* PBXContainerItemProxy */ = { + 8E1D26E3AFBC3BCC227204039FA0D6A9 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = C49E7A4D59E5C8BE8DE9FB1EFB150185; - remoteInfo = FirebaseAnalytics; - }; - 8BDBD6F615C0C96355FA24B37EA8FAEE /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = 32CA4CBD6B28983076BD93DA221AD027; - remoteInfo = YogaKit; - }; - 8D16A6C6B87E8EF60DD3200F8B8A2A08 /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = 13D7009C3736FB694854D88BAD4742B6; - remoteInfo = EXAV; + remoteGlobalIDString = 2BBF7206D7FAC92C82A042A99C4A98F8; + remoteInfo = PromisesObjC; }; - 8DAC13FECAC4C9E1C3A8160D71BDA239 /* PBXContainerItemProxy */ = { + 8F9EF5122490A5DD42E80A0B7494DBB5 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = 2B25F90D819B9ADF2AF2D8733A890333; - remoteInfo = Yoga; + remoteGlobalIDString = D20469A9A1E5CFB26045EAEBE3F88E5E; + remoteInfo = RCTTypeSafety; }; - 8E13F436EA9B78CFC19DD089A665016E /* PBXContainerItemProxy */ = { + 90A42D8F16A9678DBFC85F3D7F2A8848 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = 1BEE828C124E6416179B904A9F66D794; - remoteInfo = React; + remoteGlobalIDString = 7ACAA9BE580DD31A5CB9D97C45D9492D; + remoteInfo = "React-Core"; }; - 8E59A79A878D5900FEA7BA04E54F0BCB /* PBXContainerItemProxy */ = { + 90FDBF14DEF62A5CE75BB9AE06A25C5F /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = 1FAAE067C1BFDEA17DFB657C3379AB56; - remoteInfo = "Flipper-RSocket"; + remoteGlobalIDString = 4F265533AAB7C8985856EC78A33164BB; + remoteInfo = "React-RCTImage"; }; - 8EA26C6DCF74AAF41DE8B90F354C46E7 /* PBXContainerItemProxy */ = { + 9218FAF8DA0D15FC90EDE4E3F0E8E322 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = 985FEA01F314F3C00F0C1E1181E6C4A5; - remoteInfo = "hermes-engine"; + remoteGlobalIDString = B6D39E083AE0FF45BA30D7CDF6198A03; + remoteInfo = "Flipper-Folly"; }; - 8EAE92A4FD01D0E165251D4540A1CAF0 /* PBXContainerItemProxy */ = { + 922B2C0E0D6CDC60DDBDEA46A978ABBF /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = D20469A9A1E5CFB26045EAEBE3F88E5E; - remoteInfo = RCTTypeSafety; + remoteGlobalIDString = 7ACAA9BE580DD31A5CB9D97C45D9492D; + remoteInfo = "React-Core"; }; - 8F01F103563F28F3EF56D19EF131483C /* PBXContainerItemProxy */ = { + 92C24FF56E0F8D4FAA90958D24746AFB /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = FA877ADC442CB19CF61793D234C8B131; - remoteInfo = "React-jsi"; + remoteGlobalIDString = 4402AFF83DBDC4DD07E198685FDC2DF2; + remoteInfo = FirebaseCore; }; - 8FD65DCDE40ED346A89F711D8D4154FC /* PBXContainerItemProxy */ = { + 92DAEB57565EAACF997AF82B27D7C8C0 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = 807428FE76D80865C9F59F3502600E89; - remoteInfo = RNDeviceInfo; + remoteGlobalIDString = 2038C6F97563AAD6162C284B3EDD5B3B; + remoteInfo = UMSensorsInterface; }; - 9032E9EC68ED42A8E97DBC678DC59271 /* PBXContainerItemProxy */ = { + 936ABE1301FD76B37A18C337360B6367 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; remoteGlobalIDString = 2644525CCE081E967809A8163D893A93; remoteInfo = UMFileSystemInterface; }; - 907C9D4EA5A30CDDD5148501278814D7 /* PBXContainerItemProxy */ = { + 939409B886317E854BE18159DC4CC122 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = 7ACAA9BE580DD31A5CB9D97C45D9492D; - remoteInfo = "React-Core"; + remoteGlobalIDString = EC55D52694092A9D0E6A78EB01207EB5; + remoteInfo = "RCT-Folly"; }; - 90EFD8C1F17B8DD04969B7B06912BAAA /* PBXContainerItemProxy */ = { + 93BE80EA7DC15F38156C161EEDBEAF70 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = 0BB7745637E0758DEA373456197090C6; - remoteInfo = RNFastImage; + remoteGlobalIDString = FA877ADC442CB19CF61793D234C8B131; + remoteInfo = "React-jsi"; }; - 910DF82220E534547C3ECC40FCD6D8F2 /* PBXContainerItemProxy */ = { + 9425823CF259CFDE02DF8218D4670C65 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = 2AB2EF542954AB1C999E03BFEF8DE806; - remoteInfo = DoubleConversion; + remoteGlobalIDString = 1BEE828C124E6416179B904A9F66D794; + remoteInfo = React; }; - 91F8907B03E01D4195AC45713195E1C0 /* PBXContainerItemProxy */ = { + 94EF1DAEBBDDCBD5F8A9767282ECE82B /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = 982644B5B647690B2E4F5B3F54EB5717; - remoteInfo = FlipperKit; + remoteGlobalIDString = 50188AAB5FAECCA9583327DBA2B0AF2B; + remoteInfo = UMTaskManagerInterface; }; - 91F95714EAFEAA231AB65705AAF4EB89 /* PBXContainerItemProxy */ = { + 953B8545DE504AEE85AB32C374319546 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = 04A30E186743192DFB26B0FD7DB8F250; - remoteInfo = libevent; + remoteGlobalIDString = 8D18C49071FC5370C25F5758A85BA5F6; + remoteInfo = "react-native-webview"; }; - 920DB7C04761108C4785570930335519 /* PBXContainerItemProxy */ = { + 9557E05C6AEAAF6439EBD21B77511CDF /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = 95D98F901D07557EF7CA38D3F03832C5; - remoteInfo = "React-RCTBlob"; + remoteGlobalIDString = 014495932E402CA67C37681988047CA2; + remoteInfo = UMFontInterface; }; - 92346F2C9AB9B16FF34C17E737C27888 /* PBXContainerItemProxy */ = { + 95AF18DE3016320384647AA5A722586C /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = 2D4D3D5AD93ADCCF3DD45A88009E48D6; - remoteInfo = "TOCropViewController-TOCropViewControllerBundle"; + remoteGlobalIDString = 8D7F5D5DD528D21A72DC87ADA5B12E2D; + remoteInfo = GoogleUtilities; }; - 9278EE79124BAA12AD7FF0C23D85C082 /* PBXContainerItemProxy */ = { + 9639887EF854EDA854482EE53ECB4750 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; remoteGlobalIDString = BD9A27D8398DEB3205D3F8937B0672A0; remoteInfo = "react-native-safe-area-context"; }; - 9291EC52EE67BB3FD70E9F2B9BE2C203 /* PBXContainerItemProxy */ = { + 96D7329B6E83A50E333009DC0B1AB7BB /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = 807428FE76D80865C9F59F3502600E89; - remoteInfo = RNDeviceInfo; + remoteGlobalIDString = D2B5E7DCCBBFB32341D857D01211A1A3; + remoteInfo = nanopb; }; - 92A9D8CD9E5F1116142508DCE5E8A643 /* PBXContainerItemProxy */ = { + 974E17A6885DD7F43107D27F18AB289E /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = EC55D52694092A9D0E6A78EB01207EB5; - remoteInfo = "RCT-Folly"; + remoteGlobalIDString = A238B7CE3865946D1F214E1FE0023AAE; + remoteInfo = "rn-extensions-share"; }; - 92E18EC8888E856EB3FD889E7EA9F2DD /* PBXContainerItemProxy */ = { + 97619171E4BCC52156F87DF1B58E8E3E /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = 7ACAA9BE580DD31A5CB9D97C45D9492D; - remoteInfo = "React-Core"; + remoteGlobalIDString = 1FAAE067C1BFDEA17DFB657C3379AB56; + remoteInfo = "Flipper-RSocket"; }; - 931CF9682E49F50A881541603A47AABF /* PBXContainerItemProxy */ = { + 97DB0CF4979D058B0B401617BF0307B2 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = 53D121F9F9BB0F8AC1C94A12C5A8572F; - remoteInfo = "React-RCTVibration"; + remoteGlobalIDString = 014495932E402CA67C37681988047CA2; + remoteInfo = UMFontInterface; }; - 946FEF3E173934FF7C426E9FEFD15D79 /* PBXContainerItemProxy */ = { + 9863FDD86EE1F317E9F297C9185A7DB2 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = 037A1F31C4D99F52EC9FD2008FEC481C; - remoteInfo = ReactNativeUiLib; + remoteGlobalIDString = FA877ADC442CB19CF61793D234C8B131; + remoteInfo = "React-jsi"; }; - 95A2B365DBB36545D782835253A5BB5E /* PBXContainerItemProxy */ = { + 986F690350DD55001EB5FE9B5718ACB2 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = 96150F524B245896B800F84F369A9A5A; - remoteInfo = RNVectorIcons; + remoteGlobalIDString = 2644525CCE081E967809A8163D893A93; + remoteInfo = UMFileSystemInterface; }; - 9649A7FC7E970017A79195F58B13C685 /* PBXContainerItemProxy */ = { + 98864A76C38A228B5CF371435587BB50 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = C3496D0495E700CF08A90C41EA8FA4BB; - remoteInfo = FBReactNativeSpec; + remoteGlobalIDString = F7D033C4C128EECAA020990641FA985F; + remoteInfo = "React-jsinspector"; }; - 9668D7E48B1A63986D23C18E28E7BC1B /* PBXContainerItemProxy */ = { + 98E8A791597205A00E17A4FC5875ECDB /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = 0BB7745637E0758DEA373456197090C6; - remoteInfo = RNFastImage; + remoteGlobalIDString = DBCB1B4965863DDD3B9DED9A0918A526; + remoteInfo = UMCore; }; - 967CABE5DFDF053BD91FFC332F03F672 /* PBXContainerItemProxy */ = { + 99389C27AF2E2D928AF232E1484A97BA /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = 50188AAB5FAECCA9583327DBA2B0AF2B; - remoteInfo = UMTaskManagerInterface; + remoteGlobalIDString = 53D121F9F9BB0F8AC1C94A12C5A8572F; + remoteInfo = "React-RCTVibration"; }; - 969880DA4537E54B3C5BDF8EEA55C013 /* PBXContainerItemProxy */ = { + 9967661FDE637DEF961EF21553579A33 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; remoteGlobalIDString = B6D5DD49633DFF0657B8C3F08EB3ABA9; remoteInfo = ReactCommon; }; - 9776232542587D622E87B2CFCE21AB2B /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = 0A915EE9D35CA5636731F8763E774951; - remoteInfo = UMCameraInterface; - }; - 9799B7A56B0DFBD51B4C6598AAB2A8F5 /* PBXContainerItemProxy */ = { + 99918366C586FBC6ED35DCFCC3940AD7 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = 53D121F9F9BB0F8AC1C94A12C5A8572F; - remoteInfo = "React-RCTVibration"; + remoteGlobalIDString = 18B56DB36E1F066C927E49DBAE590128; + remoteInfo = RNRootView; }; - 9841678D444BF822165C94588FF2A622 /* PBXContainerItemProxy */ = { + 99EC578A11D65E8FA278E7C2BD835460 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = 0BB7745637E0758DEA373456197090C6; - remoteInfo = RNFastImage; + remoteGlobalIDString = C49E7A4D59E5C8BE8DE9FB1EFB150185; + remoteInfo = FirebaseAnalytics; }; - 9A05077A3445CCD5904E4443B4C3A232 /* PBXContainerItemProxy */ = { + 9A9A98383864C91276C4B0CCB3F46AAD /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = 0A72FB88825FDC7D301C9DD1F8F96824; - remoteInfo = EXPermissions; + remoteGlobalIDString = DBCB1B4965863DDD3B9DED9A0918A526; + remoteInfo = UMCore; }; - 9AEADB9716B79043EEC0777F76BF5759 /* PBXContainerItemProxy */ = { + 9ADF1934D0A1EE29C675B3AC9A25E5AE /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = 47D2E85A78C25869BB13521D8561A638; - remoteInfo = libwebp; + remoteGlobalIDString = 7ACAA9BE580DD31A5CB9D97C45D9492D; + remoteInfo = "React-Core"; }; - 9AFDF0DC9836541520A7380F14BBC2AD /* PBXContainerItemProxy */ = { + 9C0DB8D783589B615005562866351031 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = AC8AE887C706A43711D115E69B9D988A; - remoteInfo = MMKVCore; + remoteGlobalIDString = 1BEE828C124E6416179B904A9F66D794; + remoteInfo = React; }; - 9B15231B429207756EDBB8208EA92796 /* PBXContainerItemProxy */ = { + 9C4790F8AE5DEF463207CB1EC85F1FF9 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = 9668C19AA6D8EA320F83875FA286855A; - remoteInfo = UMConstantsInterface; + remoteGlobalIDString = 91A6826828CB9FCD0169A7547E8A79EA; + remoteInfo = MMKV; }; - 9B41D8431865F43DDE2E5604434308A7 /* PBXContainerItemProxy */ = { + 9C857270BB06EA6321C9FB8474EDF210 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = 1A0445474DA11CA659C4BCC5AB64B1BF; - remoteInfo = RNCMaskedView; + remoteGlobalIDString = 96150F524B245896B800F84F369A9A5A; + remoteInfo = RNVectorIcons; }; - 9B5B625653D16C12A4F0F782FDFA1E7F /* PBXContainerItemProxy */ = { + 9C9A15D876FA5200261737BC48204752 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = 2681CB7EF647E61F4F9A43029C235607; - remoteInfo = "React-callinvoker"; + remoteGlobalIDString = FA877ADC442CB19CF61793D234C8B131; + remoteInfo = "React-jsi"; }; - 9BB82D5F0A13DFA7ADA9991EA750EB13 /* PBXContainerItemProxy */ = { + 9CE447BE150FB63EC396AFDB5778D332 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = BDD119F8782FABE2707D3D913EC3EDE5; - remoteInfo = RNFBAnalytics; + remoteGlobalIDString = E7E7CE52C8C68B17224FF8C262D80ABF; + remoteInfo = RCTRequired; }; - 9C50A63DC6E83170731C2BA79B3CF18D /* PBXContainerItemProxy */ = { + 9D84BD63B3A3F5338808ACC21B3B900A /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = D39AB631E8050865DE01F6D5678797D2; - remoteInfo = "react-native-jitsi-meet"; + remoteGlobalIDString = FA877ADC442CB19CF61793D234C8B131; + remoteInfo = "React-jsi"; }; - 9C523A637128B8909D022128D2182686 /* PBXContainerItemProxy */ = { + 9E53C833C9ECAF80ADA68CA979284BF5 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = 651511D7DA7F07F9FC9AA40A2E86270D; - remoteInfo = "React-RCTNetwork"; + remoteGlobalIDString = ED2506AE7DE35D654F61254441EA7155; + remoteInfo = "boost-for-react-native"; }; - 9CBF77A27568AB4E3E05D39647C581D8 /* PBXContainerItemProxy */ = { + 9E5BCB6BF9749DEF68D5841E5389CFFD /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = 1BEE828C124E6416179B904A9F66D794; - remoteInfo = React; + remoteGlobalIDString = B6D5DD49633DFF0657B8C3F08EB3ABA9; + remoteInfo = ReactCommon; }; - 9D96860AF0D46D389A4DF87308DA67E1 /* PBXContainerItemProxy */ = { + 9E8220B2149D13BAEFA6D9AB73667311 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; remoteGlobalIDString = 54EB12219122432FA744088BC5A680D2; remoteInfo = "React-runtimeexecutor"; }; - 9DB544F9F59F053BCBB42F4398A21AB9 /* PBXContainerItemProxy */ = { + 9E96B709E629B5E44D526ABF366BA4CF /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = EC55D52694092A9D0E6A78EB01207EB5; - remoteInfo = "RCT-Folly"; + remoteGlobalIDString = 2B25F90D819B9ADF2AF2D8733A890333; + remoteInfo = Yoga; }; - 9DEF6F3863BFB69F2C14433AC1F743AE /* PBXContainerItemProxy */ = { + 9F4B289D2F4C0897DBE840E5B543BE26 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = 4F265533AAB7C8985856EC78A33164BB; - remoteInfo = "React-RCTImage"; + remoteGlobalIDString = 0CF4D9052577C85B6B8C4E957332626B; + remoteInfo = EXKeepAwake; }; - 9E605D07C9A2C9D2C4BCC6B884AD7049 /* PBXContainerItemProxy */ = { + 9FDD08F967FCC9AFAAF672204967D81F /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = 2644525CCE081E967809A8163D893A93; - remoteInfo = UMFileSystemInterface; + remoteGlobalIDString = 04A30E186743192DFB26B0FD7DB8F250; + remoteInfo = libevent; }; - 9E75967B213758480A8F44D3FCF536E2 /* PBXContainerItemProxy */ = { + 9FDD323E8EE20296B0A72C915773A2BA /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = 9EB556EE511D43F3D5D7AAF51D8D0397; - remoteInfo = EXWebBrowser; + remoteGlobalIDString = FF879E718031128A75E7DE54046E6219; + remoteInfo = RNReanimated; }; - 9ED67E572C11D37057C24876E9B19D0F /* PBXContainerItemProxy */ = { + A040CBCB0DD3369CFB3FD464EF4FB440 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = BD9A27D8398DEB3205D3F8937B0672A0; - remoteInfo = "react-native-safe-area-context"; + remoteGlobalIDString = 3FF2E78BB54ED67CA7FAD8DA2590DBEE; + remoteInfo = "react-native-appearance"; }; - 9F2B87D20F4F849678B0C343AB046669 /* PBXContainerItemProxy */ = { + A0E1B774C800D1D8A81F6FB90648462C /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = 1BEE828C124E6416179B904A9F66D794; - remoteInfo = React; + remoteGlobalIDString = 7ACAA9BE580DD31A5CB9D97C45D9492D; + remoteInfo = "React-Core"; }; - 9FB27866A9E45D8CAE9C297618233474 /* PBXContainerItemProxy */ = { + A0E6399BB5D521E8511DEDB5A22EC847 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = 53D121F9F9BB0F8AC1C94A12C5A8572F; - remoteInfo = "React-RCTVibration"; + remoteGlobalIDString = 74DAFD196634D10887C9A4E7BA19A5E4; + remoteInfo = "react-native-mmkv-storage"; }; - A0537CDF4FC9C0FF05C9108590B40E71 /* PBXContainerItemProxy */ = { + A16458F976F0AA9577A7511CFBC79DFB /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = 97C4DE84FA3CC4EC06AA6D8C249949B7; - remoteInfo = UMImageLoaderInterface; + remoteGlobalIDString = 5C0371EE948D0357B8EE0E34ABB44BF0; + remoteInfo = GoogleDataTransport; }; - A058043B3506B7A06540B08D4BA9D97D /* PBXContainerItemProxy */ = { + A19C9FEB52082701A3E9F90270B55D08 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = 5C0371EE948D0357B8EE0E34ABB44BF0; - remoteInfo = GoogleDataTransport; + remoteGlobalIDString = F1E2583679398CB5F4D2B3272E9B198F; + remoteInfo = "React-perflogger"; }; - A0685B4D4246279A2192DFD8458A4266 /* PBXContainerItemProxy */ = { + A2397D5C895CBA2AF70EE8C7ADCAA4CA /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = D11E74324175FE5B0E78DB046527F233; - remoteInfo = "react-native-document-picker"; + remoteGlobalIDString = DBCB1B4965863DDD3B9DED9A0918A526; + remoteInfo = UMCore; }; - A1BB7C17311D23CCC76F615EF173C30D /* PBXContainerItemProxy */ = { + A23DACA76F52BE5F6A9A88C235E3E482 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = F3966F664F3CFAEFAB57C40FB54D3788; - remoteInfo = TOCropViewController; + remoteGlobalIDString = 526C4398D095B3704EB933DADBC30093; + remoteInfo = FirebaseCrashlytics; }; - A1E5BFDE9CBC54C5FE842230E9FE64D5 /* PBXContainerItemProxy */ = { + A23FCA1FC82571F81DC367EBEDB2FB3A /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = 4402AFF83DBDC4DD07E198685FDC2DF2; - remoteInfo = FirebaseCore; + remoteGlobalIDString = 7ACAA9BE580DD31A5CB9D97C45D9492D; + remoteInfo = "React-Core"; }; - A2251ED0D3A0A772CEE6A21E860E3DFA /* PBXContainerItemProxy */ = { + A27EF49F5CF1B743868075BF89B53C3F /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = D2B5E7DCCBBFB32341D857D01211A1A3; - remoteInfo = nanopb; + remoteGlobalIDString = 04A30E186743192DFB26B0FD7DB8F250; + remoteInfo = libevent; }; - A2CD847F704D25858FA1422D3209CD6F /* PBXContainerItemProxy */ = { + A2E0347D9230AD9CA4554F3F1D0255FA /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = 6514D69CB93B41626AE1A05581F97B07; - remoteInfo = "react-native-background-timer"; + remoteGlobalIDString = FA877ADC442CB19CF61793D234C8B131; + remoteInfo = "React-jsi"; }; - A2D4EF6F1B53B0AB9E6E8B4AF81077F9 /* PBXContainerItemProxy */ = { + A322A20F4155CB0A97D2E1309D14FD36 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = 868B90C74770285449C60DBA82181479; - remoteInfo = EXFileSystem; + remoteGlobalIDString = 2AD4F40E67E1874A0816F6B34289EB41; + remoteInfo = UMFaceDetectorInterface; }; - A2DE261CBA623A2CD1007C7CB5554EEE /* PBXContainerItemProxy */ = { + A371283527FC96DF160899CBD7BA5D2D /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = 2BBF7206D7FAC92C82A042A99C4A98F8; - remoteInfo = PromisesObjC; + remoteGlobalIDString = FA877ADC442CB19CF61793D234C8B131; + remoteInfo = "React-jsi"; }; - A3CFCF3447DCF377040C02AA14980B74 /* PBXContainerItemProxy */ = { + A3F737DBAC64CB9F93294D6B30C9A183 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = AC8AE887C706A43711D115E69B9D988A; - remoteInfo = MMKVCore; + remoteGlobalIDString = D760AF58E12ABBB51F84160FB02B5F39; + remoteInfo = RNDateTimePicker; }; - A49E2A5357A8B70FF8CB008146380DB5 /* PBXContainerItemProxy */ = { + A4F555AFEB1ACCBB68688071B5166178 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = F4F25FCAC51B51FD5F986EB939BF1F87; - remoteInfo = GoogleDataTransportCCTSupport; + remoteGlobalIDString = 1953860EA9853AA2BC8022B242F08512; + remoteInfo = SDWebImageWebPCoder; }; - A552484F86299BB4D69B33E68A252C55 /* PBXContainerItemProxy */ = { + A4FD9B22CD758C93C4D4B5DDB638778B /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = 1092C13E1E1172209537C28D0C8D4D3C; - remoteInfo = "react-native-orientation-locker"; + remoteGlobalIDString = B53D977A951AFC38B21751B706C1DF83; + remoteInfo = GoogleAppMeasurement; }; - A5A81A1DD73D834714EA4B337BDFA227 /* PBXContainerItemProxy */ = { + A52FB460825C5CE12C4CD0D6A1D05AC0 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = 49821C2B9E764AEDF2B35DFE9AA7022F; - remoteInfo = UMBarCodeScannerInterface; + remoteGlobalIDString = BDD119F8782FABE2707D3D913EC3EDE5; + remoteInfo = RNFBAnalytics; }; - A64ED1E2B214FAB6D8630AB5D37AE7FF /* PBXContainerItemProxy */ = { + A54357A6428A3F8BCE0C389272D48858 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = B6D39E083AE0FF45BA30D7CDF6198A03; - remoteInfo = "Flipper-Folly"; + remoteGlobalIDString = F1E2583679398CB5F4D2B3272E9B198F; + remoteInfo = "React-perflogger"; }; - A6FAB53B12FD515908B1B671402073DC /* PBXContainerItemProxy */ = { + A58F5550C74831F093BD06E827E38188 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = B53D977A951AFC38B21751B706C1DF83; - remoteInfo = GoogleAppMeasurement; + remoteGlobalIDString = B6D39E083AE0FF45BA30D7CDF6198A03; + remoteInfo = "Flipper-Folly"; }; - A7CB02EA9D821A2F8927275C59ECE88F /* PBXContainerItemProxy */ = { + A5956C2050B0EBAC03356C0C8E47AA66 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = D760AF58E12ABBB51F84160FB02B5F39; - remoteInfo = RNDateTimePicker; + remoteGlobalIDString = 897EF6A99176326E24F51E2F2103828C; + remoteInfo = UMReactNativeAdapter; }; - A7E89FBA8009C6F9C6916C857168C2BE /* PBXContainerItemProxy */ = { + A59C48EB110888B8C150B8EEF7DD5546 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; remoteGlobalIDString = 7ACAA9BE580DD31A5CB9D97C45D9492D; remoteInfo = "React-Core"; }; - A812C9CC80E8B2DEA4F935D6DCCD865A /* PBXContainerItemProxy */ = { + A681AEEC44B4718EC50183F3AD8C6D8C /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = DA0709CAAD589C6E7963495210438021; - remoteInfo = "React-jsiexecutor"; + remoteGlobalIDString = 985FEA01F314F3C00F0C1E1181E6C4A5; + remoteInfo = "hermes-engine"; }; - A833FF4F8A7EE4E5F34065CBC2119ED3 /* PBXContainerItemProxy */ = { + A6FEF0A8AF78244724266C8ACD8E6A89 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = 4F265533AAB7C8985856EC78A33164BB; - remoteInfo = "React-RCTImage"; + remoteGlobalIDString = C49E7A4D59E5C8BE8DE9FB1EFB150185; + remoteInfo = FirebaseAnalytics; }; - A868578EDD81C6BE53BF4DFE79EC61CC /* PBXContainerItemProxy */ = { + A7310835BB82E7A1D1405A65F74F3603 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = BDD119F8782FABE2707D3D913EC3EDE5; - remoteInfo = RNFBAnalytics; + remoteGlobalIDString = 8D7F5D5DD528D21A72DC87ADA5B12E2D; + remoteInfo = GoogleUtilities; }; - A8D6A6DF0FB2B98DFACE2DE587CFD426 /* PBXContainerItemProxy */ = { + A7346A4409476761280605F8B0328921 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = 2AD4F40E67E1874A0816F6B34289EB41; - remoteInfo = UMFaceDetectorInterface; + remoteGlobalIDString = 3847153A6E5EEFB86565BA840768F429; + remoteInfo = SDWebImage; }; - A9772F8FEF70B9517EB8CCB9142B82C1 /* PBXContainerItemProxy */ = { + A77D237EFDA02600CBE0C6E5D066064F /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = 0A915EE9D35CA5636731F8763E774951; - remoteInfo = UMCameraInterface; + remoteGlobalIDString = 897EF6A99176326E24F51E2F2103828C; + remoteInfo = UMReactNativeAdapter; }; - A9C61C311041EAB3E6EB81ECF1E3DCE1 /* PBXContainerItemProxy */ = { + A7CBAB4590C0377EBADF039C8A4D142D /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = EC55D52694092A9D0E6A78EB01207EB5; - remoteInfo = "RCT-Folly"; + remoteGlobalIDString = AC8AE887C706A43711D115E69B9D988A; + remoteInfo = MMKVCore; }; - A9D977FC9634D760F716CBF55AEA2375 /* PBXContainerItemProxy */ = { + A804023D553DC9AC3FCC58EF65F8799D /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = 985FEA01F314F3C00F0C1E1181E6C4A5; - remoteInfo = "hermes-engine"; + remoteGlobalIDString = 7ACAA9BE580DD31A5CB9D97C45D9492D; + remoteInfo = "React-Core"; }; - AA473B00E72F76B87713813177934497 /* PBXContainerItemProxy */ = { + A8EE47AE5562B4C5088570454A145ADA /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = C49E7A4D59E5C8BE8DE9FB1EFB150185; - remoteInfo = FirebaseAnalytics; + remoteGlobalIDString = 1A0445474DA11CA659C4BCC5AB64B1BF; + remoteInfo = RNCMaskedView; }; - AB0AD9D1BCBDDFDBDC94F69043A0CE91 /* PBXContainerItemProxy */ = { + A9343C99128A2174FC094EDC1866C3C5 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = A4EF87F5681665EAE943D9B06BBB17DF; - remoteInfo = "react-native-slider"; + remoteGlobalIDString = 64F427905796B33B78A704063422979D; + remoteInfo = "rn-fetch-blob"; }; - AB3A4CE36B0F895BA64A48F9DC3D1545 /* PBXContainerItemProxy */ = { + A948C4B5A3A8B53E7C94F4CDDD83D365 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = D2B5E7DCCBBFB32341D857D01211A1A3; - remoteInfo = nanopb; + remoteGlobalIDString = 9EB556EE511D43F3D5D7AAF51D8D0397; + remoteInfo = EXWebBrowser; }; - AB5BB545384D9A415AEF5078876075C8 /* PBXContainerItemProxy */ = { + A9A6E5DAFCD2F18696192F9440AB39B9 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = C3496D0495E700CF08A90C41EA8FA4BB; - remoteInfo = FBReactNativeSpec; + remoteGlobalIDString = 7ACAA9BE580DD31A5CB9D97C45D9492D; + remoteInfo = "React-Core"; }; - AC9752E64FDBC9E04072B487532F590E /* PBXContainerItemProxy */ = { + AA035B5173763A89AD6EF9653A639C05 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = C3496D0495E700CF08A90C41EA8FA4BB; - remoteInfo = FBReactNativeSpec; + remoteGlobalIDString = 64F427905796B33B78A704063422979D; + remoteInfo = "rn-fetch-blob"; }; - AD7B2B20D71A3C91C9CC8B60B1FDB542 /* PBXContainerItemProxy */ = { + AACD0E8F4FE30DB6751B882B9C8F6400 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = 2681CB7EF647E61F4F9A43029C235607; - remoteInfo = "React-callinvoker"; + remoteGlobalIDString = DA0709CAAD589C6E7963495210438021; + remoteInfo = "React-jsiexecutor"; }; - ADF92BD3CB4D4109A6D3DF81BB76C847 /* PBXContainerItemProxy */ = { + AB469151859154D6A901D38BA782D6B8 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = DBCB1B4965863DDD3B9DED9A0918A526; - remoteInfo = UMCore; + remoteGlobalIDString = 4402AFF83DBDC4DD07E198685FDC2DF2; + remoteInfo = FirebaseCore; }; - AE1D8D132D834705D0695514874F194B /* PBXContainerItemProxy */ = { + AB7A16CAD4F6417BF1F3DEA767498553 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = DC0D417AC8ABB7AA10C20A5E0F065812; - remoteInfo = RNConfigReader; + remoteGlobalIDString = 2681CB7EF647E61F4F9A43029C235607; + remoteInfo = "React-callinvoker"; }; - AE77B0E391774ADDEF2686434105807B /* PBXContainerItemProxy */ = { + ABDEE8127DC24E94A0AC972783D2A232 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = 2AB2EF542954AB1C999E03BFEF8DE806; - remoteInfo = DoubleConversion; + remoteGlobalIDString = 87803597EB3F20FC46472B85392EC4FD; + remoteInfo = FirebaseInstallations; }; - AEF55A3ABF7745C73832340D0F26E187 /* PBXContainerItemProxy */ = { + AC0B77CB10F2690FDE9A16D00F531BED /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = 463F41A7E8B252F8AC5024DA1F4AF6DA; - remoteInfo = "React-cxxreact"; + remoteGlobalIDString = D985A509BFE270C95EDCBE6B4CBAF189; + remoteInfo = "react-native-simple-crypto"; }; - AF7493A2C79D0ED7BFDDA27295F323CF /* PBXContainerItemProxy */ = { + AC260BAAA5BAEA7E011D86951ED2F86A /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = 7ACAA9BE580DD31A5CB9D97C45D9492D; - remoteInfo = "React-Core"; + remoteGlobalIDString = E7E7CE52C8C68B17224FF8C262D80ABF; + remoteInfo = RCTRequired; }; - B001B6E7CC99579C9FBF820A9FD5E4B6 /* PBXContainerItemProxy */ = { + ACC88A4A932D88126751163191568069 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = 982644B5B647690B2E4F5B3F54EB5717; - remoteInfo = FlipperKit; + remoteGlobalIDString = 89F573A6B1292B3B2296B2206BFDC3D7; + remoteInfo = RNCAsyncStorage; }; - B04C7C6DF48708B5C0A3B83EB1ADDE13 /* PBXContainerItemProxy */ = { + AE68D08C8FD3872C5CB39BB695754E3D /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = 7A020DAB6F3F0BA0A6D9946E84B38B7F; - remoteInfo = "React-Core-AccessibilityResources"; + remoteGlobalIDString = 651511D7DA7F07F9FC9AA40A2E86270D; + remoteInfo = "React-RCTNetwork"; }; - B063359200A909D66F90C809B36DDE45 /* PBXContainerItemProxy */ = { + AE6E13145DD6C66959AD6417B8B22660 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; remoteGlobalIDString = 7ACAA9BE580DD31A5CB9D97C45D9492D; remoteInfo = "React-Core"; }; - B0B39F897961BE3E672FAAC32542C656 /* PBXContainerItemProxy */ = { + B0750777D3FF0621C4F1D199EA15CC89 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = 9EB556EE511D43F3D5D7AAF51D8D0397; - remoteInfo = EXWebBrowser; + remoteGlobalIDString = F7D033C4C128EECAA020990641FA985F; + remoteInfo = "React-jsinspector"; }; - B0C62270E17819C8DB6D065A1945A0F6 /* PBXContainerItemProxy */ = { + B088D2AE452912760E4F81016A53B659 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = 7ACAA9BE580DD31A5CB9D97C45D9492D; - remoteInfo = "React-Core"; + remoteGlobalIDString = D2B5E7DCCBBFB32341D857D01211A1A3; + remoteInfo = nanopb; }; - B108E95169C006A64AB9D475B0E1F1CB /* PBXContainerItemProxy */ = { + B1C1852A4D3DC89EB2F52F45E755A8AA /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = 7ACAA9BE580DD31A5CB9D97C45D9492D; - remoteInfo = "React-Core"; + remoteGlobalIDString = 463F41A7E8B252F8AC5024DA1F4AF6DA; + remoteInfo = "React-cxxreact"; }; - B1939998EA45EC76E0954AC54747E322 /* PBXContainerItemProxy */ = { + B29E3460567C601445EC5C45332B655A /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = 0D82774D2A533D3FFAE27CAB4A6E9CB2; - remoteInfo = RNImageCropPicker; + remoteGlobalIDString = 2038C6F97563AAD6162C284B3EDD5B3B; + remoteInfo = UMSensorsInterface; }; - B1A01090BFC8E02594DF59131BF2F520 /* PBXContainerItemProxy */ = { + B31A4AEA8BE46545AD35F20A2B69B17D /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = B6D5DD49633DFF0657B8C3F08EB3ABA9; - remoteInfo = ReactCommon; + remoteGlobalIDString = ED2506AE7DE35D654F61254441EA7155; + remoteInfo = "boost-for-react-native"; }; - B1BBB5FBE315C4CBAA720D4D9B7D4BE4 /* PBXContainerItemProxy */ = { + B3FC969EAC874BD6BA9852D82EF45D28 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = 7ACAA9BE580DD31A5CB9D97C45D9492D; - remoteInfo = "React-Core"; + remoteGlobalIDString = 6A9637F1BC8154F777335A6420579C05; + remoteInfo = "Flipper-Glog"; }; - B1C5D8CAFD680931F2B2906CDDB4B220 /* PBXContainerItemProxy */ = { + B3FE623DD0B361C471D8087E529F5D9E /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = BA3F5E5AA483B263B69601DE2FA269CB; - remoteInfo = "react-native-cameraroll"; + remoteGlobalIDString = 2644525CCE081E967809A8163D893A93; + remoteInfo = UMFileSystemInterface; }; - B2037FE0D3589F33E67FC737F3418312 /* PBXContainerItemProxy */ = { + B4885EE86956EE75636CC8D9357FB309 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = 7ACAA9BE580DD31A5CB9D97C45D9492D; - remoteInfo = "React-Core"; + remoteGlobalIDString = C49E7A4D59E5C8BE8DE9FB1EFB150185; + remoteInfo = FirebaseAnalytics; }; - B278D5AFD3F898794B7452160FDAED3F /* PBXContainerItemProxy */ = { + B578B75A7D970FF496E4476A5FDA4026 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = 263266A9E29FFF0E9C8CA0E4582BFCF4; - remoteInfo = EXImageLoader; + remoteGlobalIDString = 2681CB7EF647E61F4F9A43029C235607; + remoteInfo = "React-callinvoker"; }; - B290E592CFE6C84DF8B5D41885D9DB35 /* PBXContainerItemProxy */ = { + B58BABBBC209BA4B38531F573E348DFA /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; remoteGlobalIDString = DBCB1B4965863DDD3B9DED9A0918A526; remoteInfo = UMCore; }; - B2955087BE5F1C7ED6CFF1D1CB39D953 /* PBXContainerItemProxy */ = { + B6611244667D4A897092F7490053FD1E /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = A238B7CE3865946D1F214E1FE0023AAE; - remoteInfo = "rn-extensions-share"; + remoteGlobalIDString = 11989A5E568B3B69655EE0C13DCDA3F9; + remoteInfo = "React-RCTActionSheet"; }; - B41E3F3657F47DF04714B73450C924B7 /* PBXContainerItemProxy */ = { + B6DF16AF0165CBC1823C51DB0E7BCC5C /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = 4F265533AAB7C8985856EC78A33164BB; - remoteInfo = "React-RCTImage"; + remoteGlobalIDString = 6A9637F1BC8154F777335A6420579C05; + remoteInfo = "Flipper-Glog"; }; - B49C6359E88570953C14F93523D93591 /* PBXContainerItemProxy */ = { + B6E849EF9D1C9AE305336F7216155295 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = 90D0DE2F3348233618414728C35311CA; - remoteInfo = RNFBApp; + remoteGlobalIDString = D11E74324175FE5B0E78DB046527F233; + remoteInfo = "react-native-document-picker"; }; - B4B2050690061825D4500FE3B5EB46EF /* PBXContainerItemProxy */ = { + B75B27ADED5141116F34DC4D10F71E84 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = 4F265533AAB7C8985856EC78A33164BB; - remoteInfo = "React-RCTImage"; + remoteGlobalIDString = 0BB7745637E0758DEA373456197090C6; + remoteInfo = RNFastImage; }; - B5020226D8CF8C596F9AF507EE1A741C /* PBXContainerItemProxy */ = { + B7A52541C5DF262944F3EEF7B4835C54 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = DA0709CAAD589C6E7963495210438021; - remoteInfo = "React-jsiexecutor"; + remoteGlobalIDString = 5C0371EE948D0357B8EE0E34ABB44BF0; + remoteInfo = GoogleDataTransport; }; - B56277016AB6D6552AA17390A8EE5019 /* PBXContainerItemProxy */ = { + B7B10FBE42B60D540974F2B9F7C9E157 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = 54EB12219122432FA744088BC5A680D2; - remoteInfo = "React-runtimeexecutor"; + remoteGlobalIDString = DC0D417AC8ABB7AA10C20A5E0F065812; + remoteInfo = RNConfigReader; }; - B640C2A6E7E36B8A64EC9162BA4BD969 /* PBXContainerItemProxy */ = { + B7EB1C41B8A16D78529EE7C61C338E8D /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = 04A30E186743192DFB26B0FD7DB8F250; - remoteInfo = libevent; + remoteGlobalIDString = A238B7CE3865946D1F214E1FE0023AAE; + remoteInfo = "rn-extensions-share"; }; - B6D1146F82E3376A596B2BE0778E906F /* PBXContainerItemProxy */ = { + B888D397764453860329417AA6371999 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = 072CEA044D2EF26F03496D5996BBF59F; - remoteInfo = Firebase; + remoteGlobalIDString = 680299219D3A48D42A648AF6706275A9; + remoteInfo = "React-RCTSettings"; }; - B6D298B335BC0A5E5B033A39BE759DDE /* PBXContainerItemProxy */ = { + B8B7839169A6CFA4D6B4192C3D2ECEB5 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = 2AD4F40E67E1874A0816F6B34289EB41; - remoteInfo = UMFaceDetectorInterface; + remoteGlobalIDString = 263266A9E29FFF0E9C8CA0E4582BFCF4; + remoteInfo = EXImageLoader; }; - B6D78B8CAFF1D33C17942DA6991A7B2C /* PBXContainerItemProxy */ = { + B99FA612E32E6DDB8DD3F0F4B007260D /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = D00F24222F074B31C56DC6D05E806A35; - remoteInfo = RNCPicker; + remoteGlobalIDString = 95D98F901D07557EF7CA38D3F03832C5; + remoteInfo = "React-RCTBlob"; }; - B6FC306D1ABB4FC04F647F68A23BC2F5 /* PBXContainerItemProxy */ = { + B9AE356D8D0D666C504C1B0A2E728BE2 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = 6A9637F1BC8154F777335A6420579C05; - remoteInfo = "Flipper-Glog"; + remoteGlobalIDString = C3496D0495E700CF08A90C41EA8FA4BB; + remoteInfo = FBReactNativeSpec; }; - B86A6C9551C7EF3863B9CCA33CF9D307 /* PBXContainerItemProxy */ = { + B9DD3EFFB0525E48AABFC2F7B9D3723D /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = 7ACAA9BE580DD31A5CB9D97C45D9492D; - remoteInfo = "React-Core"; + remoteGlobalIDString = BDD119F8782FABE2707D3D913EC3EDE5; + remoteInfo = RNFBAnalytics; }; - B86AD38808E3F999AC89346B4F449759 /* PBXContainerItemProxy */ = { + BA0B536C6056F1530618A435B591438E /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = EC55D52694092A9D0E6A78EB01207EB5; - remoteInfo = "RCT-Folly"; + remoteGlobalIDString = 1BEE828C124E6416179B904A9F66D794; + remoteInfo = React; }; - B9792C340898226B6ED5D6F6738DBCD9 /* PBXContainerItemProxy */ = { + BA1B882D3FCF84431DE07EFDBF8873D3 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = 807428FE76D80865C9F59F3502600E89; - remoteInfo = RNDeviceInfo; + remoteGlobalIDString = 04A30E186743192DFB26B0FD7DB8F250; + remoteInfo = libevent; }; - B99F0B1EEE09E9ECB29263020538386D /* PBXContainerItemProxy */ = { + BA50510FD2A9C0054168353313411FA4 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = EC55D52694092A9D0E6A78EB01207EB5; - remoteInfo = "RCT-Folly"; + remoteGlobalIDString = F7D033C4C128EECAA020990641FA985F; + remoteInfo = "React-jsinspector"; }; - B9DC815EE0205F2415D3FE91C84DEF2E /* PBXContainerItemProxy */ = { + BAE9B7D2FDC58DE5740D88EBCAE6B1BC /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = 463F41A7E8B252F8AC5024DA1F4AF6DA; - remoteInfo = "React-cxxreact"; + remoteGlobalIDString = 6A9637F1BC8154F777335A6420579C05; + remoteInfo = "Flipper-Glog"; }; - BA0FD5A20CA32632A77809124A8E86D8 /* PBXContainerItemProxy */ = { + BAF747B130ED15387909C29A214549F7 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = CA400829100F0628EC209FBB08347D42; - remoteInfo = "react-native-notifications"; + remoteGlobalIDString = 072CEA044D2EF26F03496D5996BBF59F; + remoteInfo = Firebase; }; - BA1A8E6A7D41CDA8062C56C69E771FE0 /* PBXContainerItemProxy */ = { + BB582721F9FF1042C829E195DDDF54A1 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = 680299219D3A48D42A648AF6706275A9; - remoteInfo = "React-RCTSettings"; + remoteGlobalIDString = D0EFEFB685D97280256C559792236873; + remoteInfo = glog; }; - BAB31239E2661516B464768B335A7240 /* PBXContainerItemProxy */ = { + BB67A47CE831BF26E1669DEFF02522FF /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = ED2506AE7DE35D654F61254441EA7155; - remoteInfo = "boost-for-react-native"; + remoteGlobalIDString = BD9A27D8398DEB3205D3F8937B0672A0; + remoteInfo = "react-native-safe-area-context"; }; - BAC176B94457A1BD48840F966CD5BBF5 /* PBXContainerItemProxy */ = { + BBD30B6A3FFAAF1272A0CD4D8F4C03BE /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = 680299219D3A48D42A648AF6706275A9; - remoteInfo = "React-RCTSettings"; + remoteGlobalIDString = 54EB12219122432FA744088BC5A680D2; + remoteInfo = "React-runtimeexecutor"; }; - BB0918533CFC27468A4DCA516AC6F1D5 /* PBXContainerItemProxy */ = { + BC37D19179170626CA6C0B71F5ADE803 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = E7E7CE52C8C68B17224FF8C262D80ABF; - remoteInfo = RCTRequired; + remoteGlobalIDString = D985A509BFE270C95EDCBE6B4CBAF189; + remoteInfo = "react-native-simple-crypto"; }; - BB84FBD52C5373B47742BC470B46A9C4 /* PBXContainerItemProxy */ = { + BCEB94D0FBED8B6FF956962B3C983293 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = 651511D7DA7F07F9FC9AA40A2E86270D; - remoteInfo = "React-RCTNetwork"; + remoteGlobalIDString = CA400829100F0628EC209FBB08347D42; + remoteInfo = "react-native-notifications"; }; - BC6E3AC0694191F0BF2D61EA3C1C4D6E /* PBXContainerItemProxy */ = { + BDDD7F93EE45A3A4808C9067B22066DC /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = 0745200E60DC80C9A0A48B7E6C1518D7; - remoteInfo = BugsnagReactNative; + remoteGlobalIDString = 680299219D3A48D42A648AF6706275A9; + remoteInfo = "React-RCTSettings"; }; - BD3DA643E5D4F3629E2F4B94C781071F /* PBXContainerItemProxy */ = { + BEB5DE1A9E1AB880B59D16D52F4E6F97 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = 037A1F31C4D99F52EC9FD2008FEC481C; - remoteInfo = ReactNativeUiLib; + remoteGlobalIDString = 072CEA044D2EF26F03496D5996BBF59F; + remoteInfo = Firebase; }; - BD6662596737D1D7FBD97E6698FAB938 /* PBXContainerItemProxy */ = { + BEBD5A91F8E4B4FBC5A7797FA42D0D77 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = 526C4398D095B3704EB933DADBC30093; - remoteInfo = FirebaseCrashlytics; + remoteGlobalIDString = 91A6826828CB9FCD0169A7547E8A79EA; + remoteInfo = MMKV; }; - BD7244A028B65F1ED056140C5601FC21 /* PBXContainerItemProxy */ = { + C0366D28168FB72EEDE28F0F7B375893 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = 985FEA01F314F3C00F0C1E1181E6C4A5; - remoteInfo = "hermes-engine"; + remoteGlobalIDString = 807428FE76D80865C9F59F3502600E89; + remoteInfo = RNDeviceInfo; }; - BDD1B19AFA52F3C634CE82EC1400368C /* PBXContainerItemProxy */ = { + C09786D03C57216564F13AF8DBAA75CC /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = 072CEA044D2EF26F03496D5996BBF59F; - remoteInfo = Firebase; + remoteGlobalIDString = 3FF2E78BB54ED67CA7FAD8DA2590DBEE; + remoteInfo = "react-native-appearance"; }; - BDD87B1D93DE918F054B9CCDA100F75F /* PBXContainerItemProxy */ = { + C152B669DBF291280643AE3DD28B0F8E /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = EC55D52694092A9D0E6A78EB01207EB5; - remoteInfo = "RCT-Folly"; + remoteGlobalIDString = 2B25F90D819B9ADF2AF2D8733A890333; + remoteInfo = Yoga; }; - BE08C6604E31305BDFD73B83731E3DEE /* PBXContainerItemProxy */ = { + C28C4D37AD446FC97DAFBD83F4B40588 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = BDD119F8782FABE2707D3D913EC3EDE5; - remoteInfo = RNFBAnalytics; + remoteGlobalIDString = 1BEE828C124E6416179B904A9F66D794; + remoteInfo = React; }; - BE69082F9B4A1B279B7D2DEAE1FA4F65 /* PBXContainerItemProxy */ = { + C2C9E03960959E9877A145D02586FA31 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = 2681CB7EF647E61F4F9A43029C235607; - remoteInfo = "React-callinvoker"; + remoteGlobalIDString = 897EF6A99176326E24F51E2F2103828C; + remoteInfo = UMReactNativeAdapter; }; - BEFCA4B68875F2FF3150A31FB1F5E996 /* PBXContainerItemProxy */ = { + C2D842DE9A5B7E9F84B76D7C82CE197F /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = 91A6826828CB9FCD0169A7547E8A79EA; - remoteInfo = MMKV; + remoteGlobalIDString = 53D121F9F9BB0F8AC1C94A12C5A8572F; + remoteInfo = "React-RCTVibration"; }; - C02403368B42E747A0C9885EB5156230 /* PBXContainerItemProxy */ = { + C3443C2FCA25FB3BE331D910B7A1FEF9 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = 1BEE828C124E6416179B904A9F66D794; - remoteInfo = React; + remoteGlobalIDString = 6083682834ABE0AE7BD1CBF06CADD036; + remoteInfo = CocoaAsyncSocket; }; - C032CAF5490A39996A9AA92FAF23DA58 /* PBXContainerItemProxy */ = { + C39D834017115879055795AF71F40241 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = 49821C2B9E764AEDF2B35DFE9AA7022F; - remoteInfo = UMBarCodeScannerInterface; + remoteGlobalIDString = 463F41A7E8B252F8AC5024DA1F4AF6DA; + remoteInfo = "React-cxxreact"; }; - C0671F3227F7D404A8AF0853E8078CB0 /* PBXContainerItemProxy */ = { + C3A9FF8382E34054104387CFCA9AA519 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = 90D0DE2F3348233618414728C35311CA; - remoteInfo = RNFBApp; + remoteGlobalIDString = E16E206437995280D349D4B67695C894; + remoteInfo = "React-CoreModules"; }; - C0CCF22ABD6728CC24E44F6C0E4F16F7 /* PBXContainerItemProxy */ = { + C4064101D0172151A5C62305044CA0ED /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = BDD119F8782FABE2707D3D913EC3EDE5; - remoteInfo = RNFBAnalytics; + remoteGlobalIDString = B9ED5194E665042005069EF06C82A050; + remoteInfo = "OpenSSL-Universal"; }; - C15C3FA91360A3381B62DCD446CC4D12 /* PBXContainerItemProxy */ = { + C4426B3B30476A0B41F921638D24D0D4 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = B6D5DD49633DFF0657B8C3F08EB3ABA9; - remoteInfo = ReactCommon; + remoteGlobalIDString = C3496D0495E700CF08A90C41EA8FA4BB; + remoteInfo = FBReactNativeSpec; }; - C1B7D8B6AF7182787CC079B8D124F56E /* PBXContainerItemProxy */ = { + C49E3C17AC92F36E2F66AD84B560D8C0 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = 5B40FBDAD0AB75D17C4760F4054BFF71; - remoteInfo = JitsiMeetSDK; + remoteGlobalIDString = D0EFEFB685D97280256C559792236873; + remoteInfo = glog; }; - C2375F31E33F556D76E866665323447B /* PBXContainerItemProxy */ = { + C5544B6CC1407E8A99F4EB766473EF2A /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = 9668C19AA6D8EA320F83875FA286855A; - remoteInfo = UMConstantsInterface; + remoteGlobalIDString = 4402AFF83DBDC4DD07E198685FDC2DF2; + remoteInfo = FirebaseCore; }; - C2500CBE34D0D19CCAF8270AE7CDC438 /* PBXContainerItemProxy */ = { + C57C762980834C7492B28BCF9C65860B /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = 89F573A6B1292B3B2296B2206BFDC3D7; - remoteInfo = RNCAsyncStorage; + remoteGlobalIDString = 64F427905796B33B78A704063422979D; + remoteInfo = "rn-fetch-blob"; }; - C267885FC50CC9756033D21051462D34 /* PBXContainerItemProxy */ = { + C5A85D053E28ACC9C10D36A4630F01CB /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; remoteGlobalIDString = 7ACAA9BE580DD31A5CB9D97C45D9492D; remoteInfo = "React-Core"; }; - C28D2658175FCEB3934BD0CCE48C5667 /* PBXContainerItemProxy */ = { + C5B3E46F6AD88ACAC2267F07EDBD30A0 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = B9E8F4CA2A4A8599389FEB665A9B96FF; - remoteInfo = RNGestureHandler; + remoteGlobalIDString = 9668C19AA6D8EA320F83875FA286855A; + remoteInfo = UMConstantsInterface; }; - C290017ADCF0F1372C8BE69BE44A4D21 /* PBXContainerItemProxy */ = { + C5F2B7F1564ED425B350D399569CDC5E /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = FA877ADC442CB19CF61793D234C8B131; - remoteInfo = "React-jsi"; + remoteGlobalIDString = 7ACAA9BE580DD31A5CB9D97C45D9492D; + remoteInfo = "React-Core"; }; - C2CB58CEC3A53AF4F154AC424F8B0F5A /* PBXContainerItemProxy */ = { + C6E7067FC3517473886D460EB4B32C1E /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = 014495932E402CA67C37681988047CA2; - remoteInfo = UMFontInterface; + remoteGlobalIDString = 0BB7745637E0758DEA373456197090C6; + remoteInfo = RNFastImage; }; - C338639441EB00830A149DFBEA77D1B5 /* PBXContainerItemProxy */ = { + C71A81E732BA67800E043F0743F6548D /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = 49821C2B9E764AEDF2B35DFE9AA7022F; - remoteInfo = UMBarCodeScannerInterface; + remoteGlobalIDString = ADC4ACC657481AD27F9936D08FF7F49A; + remoteInfo = "react-native-cookies"; }; - C33D9CFABBDCAEB1E7D02F98983E0661 /* PBXContainerItemProxy */ = { + C7E5F2BB1BD37D5AF82B74F9D06C4978 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = D0EFEFB685D97280256C559792236873; - remoteInfo = glog; + remoteGlobalIDString = AC8AE887C706A43711D115E69B9D988A; + remoteInfo = MMKVCore; }; - C348D58A74D11CAF02D67E09C473CDF6 /* PBXContainerItemProxy */ = { + C813D80D0B25D1F056856EA24E69D152 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = FF879E718031128A75E7DE54046E6219; - remoteInfo = RNReanimated; + remoteGlobalIDString = FA877ADC442CB19CF61793D234C8B131; + remoteInfo = "React-jsi"; }; - C386698B9796F829A9E8F3F32407491A /* PBXContainerItemProxy */ = { + C85A9919EF5DA6ADA7B0C9D595F0956A /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; remoteGlobalIDString = 7ACAA9BE580DD31A5CB9D97C45D9492D; remoteInfo = "React-Core"; }; - C477FF1EBB2802C1B27E1C3C13281E62 /* PBXContainerItemProxy */ = { + C887E4B69FF1D21574DE39B58EF51A70 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = FA877ADC442CB19CF61793D234C8B131; - remoteInfo = "React-jsi"; + remoteGlobalIDString = 97C4DE84FA3CC4EC06AA6D8C249949B7; + remoteInfo = UMImageLoaderInterface; }; - C478D3B9E7A40B82AD64FD410452AEB5 /* PBXContainerItemProxy */ = { + C895F2179C5BD0E712F7117475F2AA68 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = 96150F524B245896B800F84F369A9A5A; - remoteInfo = RNVectorIcons; + remoteGlobalIDString = D39AB631E8050865DE01F6D5678797D2; + remoteInfo = "react-native-jitsi-meet"; }; - C501FCEB03D9678168C24393F9219658 /* PBXContainerItemProxy */ = { + C8A3F309924E6F6F52A73CFFE3C2A77D /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = B9ED5194E665042005069EF06C82A050; - remoteInfo = "OpenSSL-Universal"; + remoteGlobalIDString = DBCB1B4965863DDD3B9DED9A0918A526; + remoteInfo = UMCore; }; - C57DE5B2C6E3F097F6E8971714DA972B /* PBXContainerItemProxy */ = { + C9D97E4D0F4903A1FDCAB7E440BDAF0B /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = FA877ADC442CB19CF61793D234C8B131; - remoteInfo = "React-jsi"; + remoteGlobalIDString = 463F41A7E8B252F8AC5024DA1F4AF6DA; + remoteInfo = "React-cxxreact"; }; - C63FA8E20B37F4DC2579DC3DDC18DECB /* PBXContainerItemProxy */ = { + CA3C94321ABB99E0345D6FDAFDB18E91 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = A238B7CE3865946D1F214E1FE0023AAE; - remoteInfo = "rn-extensions-share"; + remoteGlobalIDString = 4402AFF83DBDC4DD07E198685FDC2DF2; + remoteInfo = FirebaseCore; }; - C6F1B2F28EC949A2F23775114B17020B /* PBXContainerItemProxy */ = { + CA52175E5A57B8447AB8885328AAA106 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = 2AB2EF542954AB1C999E03BFEF8DE806; - remoteInfo = DoubleConversion; + remoteGlobalIDString = 4F265533AAB7C8985856EC78A33164BB; + remoteInfo = "React-RCTImage"; }; - C78B7FCE3EE553D9044A00D289010285 /* PBXContainerItemProxy */ = { + CA78DB0676B5965B4CBD4F704EB34A84 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = 1BEE828C124E6416179B904A9F66D794; - remoteInfo = React; + remoteGlobalIDString = 7ACAA9BE580DD31A5CB9D97C45D9492D; + remoteInfo = "React-Core"; }; - C8184BA735878CA7ECD82130FD1BA5FD /* PBXContainerItemProxy */ = { + CB0DF62EB745F9D4E5BE61A414208277 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = 2038C6F97563AAD6162C284B3EDD5B3B; - remoteInfo = UMSensorsInterface; + remoteGlobalIDString = 95D98F901D07557EF7CA38D3F03832C5; + remoteInfo = "React-RCTBlob"; }; - C827AD2FB8CCE1B89783E12ACB1DE8A0 /* PBXContainerItemProxy */ = { + CB551DAD8967963A7D977217690B92FF /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; remoteGlobalIDString = DBCB1B4965863DDD3B9DED9A0918A526; remoteInfo = UMCore; }; - C882B8D9A38A935E23460C4939E0326C /* PBXContainerItemProxy */ = { + CB9057328DD93140E7E51D4F17C8AA1B /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = 89F573A6B1292B3B2296B2206BFDC3D7; - remoteInfo = RNCAsyncStorage; + remoteGlobalIDString = 526C4398D095B3704EB933DADBC30093; + remoteInfo = FirebaseCrashlytics; }; - C93B8C920109BA5954405BF3549FA06F /* PBXContainerItemProxy */ = { + CC2D9CA4E89E3E20095197AFC8B10CFF /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = F7D033C4C128EECAA020990641FA985F; - remoteInfo = "React-jsinspector"; + remoteGlobalIDString = 214E42634D1E187D876346D36184B655; + remoteInfo = RNScreens; }; - C93D85F3414905708545B255E4E0269F /* PBXContainerItemProxy */ = { + CC52089AA58C6D4FBC4EA744E0124035 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = 13D7009C3736FB694854D88BAD4742B6; - remoteInfo = EXAV; + remoteGlobalIDString = B6D39E083AE0FF45BA30D7CDF6198A03; + remoteInfo = "Flipper-Folly"; }; - C9528A787B49D5C1EF3604B79FF26173 /* PBXContainerItemProxy */ = { + CC53517A42730407B943E20B8A60E25B /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = DBCB1B4965863DDD3B9DED9A0918A526; - remoteInfo = UMCore; + remoteGlobalIDString = 2BBF7206D7FAC92C82A042A99C4A98F8; + remoteInfo = PromisesObjC; }; - CA191B8AA7656280A2E746574DDA1AA2 /* PBXContainerItemProxy */ = { + CCCE4A1EECB2EDC8A751CB2DF06D26E6 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = F7845084F0CF03F54107EEF7411760AD; - remoteInfo = UMPermissionsInterface; + remoteGlobalIDString = 91A6826828CB9FCD0169A7547E8A79EA; + remoteInfo = MMKV; }; - CA42AD20622A91093285F3FB21A772C4 /* PBXContainerItemProxy */ = { + CD836471C70928819BB73963B777BC0A /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = FA877ADC442CB19CF61793D234C8B131; - remoteInfo = "React-jsi"; + remoteGlobalIDString = D20469A9A1E5CFB26045EAEBE3F88E5E; + remoteInfo = RCTTypeSafety; }; - CA874D7E52C48A8F1AB6FA47A65EF107 /* PBXContainerItemProxy */ = { + CDCA078480F895C8A94938B8CDD1D176 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = 8D18C49071FC5370C25F5758A85BA5F6; - remoteInfo = "react-native-webview"; + remoteGlobalIDString = E3573FB7AF659C42B699003C73722241; + remoteInfo = RNFBCrashlytics; }; - CAA00F4A4823AE7159CA350101600196 /* PBXContainerItemProxy */ = { + CE2CA9F59B4433D6F0D05A05F97DAEFB /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = FA877ADC442CB19CF61793D234C8B131; - remoteInfo = "React-jsi"; + remoteGlobalIDString = 263266A9E29FFF0E9C8CA0E4582BFCF4; + remoteInfo = EXImageLoader; }; - CAC1320E6DA61ED52F013627E73C1B34 /* PBXContainerItemProxy */ = { + CE3DB5DA51E352BF7CDCA1AC8B784878 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = AC8AE887C706A43711D115E69B9D988A; - remoteInfo = MMKVCore; + remoteGlobalIDString = E3573FB7AF659C42B699003C73722241; + remoteInfo = RNFBCrashlytics; }; - CB039AD9995241BAF4FD92927A137DAB /* PBXContainerItemProxy */ = { + CE668DFD349D070D1212AB3141F6F3F1 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = 014495932E402CA67C37681988047CA2; - remoteInfo = UMFontInterface; + remoteGlobalIDString = D11E74324175FE5B0E78DB046527F233; + remoteInfo = "react-native-document-picker"; }; - CB8F0CEE6D4A4EFE1EC6CB1E9D2857FC /* PBXContainerItemProxy */ = { + CF0810B0FEE83BE7A609648106142347 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = 0745200E60DC80C9A0A48B7E6C1518D7; - remoteInfo = BugsnagReactNative; + remoteGlobalIDString = 89F573A6B1292B3B2296B2206BFDC3D7; + remoteInfo = RNCAsyncStorage; }; - CD79A69D4B08B025D996B74950A3DF83 /* PBXContainerItemProxy */ = { + CFE2014BC2CC541DD04EA412FAC4CAB8 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = 8D7F5D5DD528D21A72DC87ADA5B12E2D; - remoteInfo = GoogleUtilities; + remoteGlobalIDString = 3847153A6E5EEFB86565BA840768F429; + remoteInfo = SDWebImage; }; - CD7C59C4C4F94979D738F7960A28190F /* PBXContainerItemProxy */ = { + D08C38E57265BA8963601B19ED998FAF /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = D11E74324175FE5B0E78DB046527F233; - remoteInfo = "react-native-document-picker"; + remoteGlobalIDString = 90D0DE2F3348233618414728C35311CA; + remoteInfo = RNFBApp; }; - CD830AB1BA97F0CBBDFA77A7865D2444 /* PBXContainerItemProxy */ = { + D091B60D9C56AF21D24282265053372F /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = EC55D52694092A9D0E6A78EB01207EB5; - remoteInfo = "RCT-Folly"; + remoteGlobalIDString = C3496D0495E700CF08A90C41EA8FA4BB; + remoteInfo = FBReactNativeSpec; }; - CDA9EE325AC3F55B7D03784EA7BE03A3 /* PBXContainerItemProxy */ = { + D0CB0A8BFC87BC33506E2CECE5E56CAB /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = 897EF6A99176326E24F51E2F2103828C; - remoteInfo = UMReactNativeAdapter; + remoteGlobalIDString = C49E7A4D59E5C8BE8DE9FB1EFB150185; + remoteInfo = FirebaseAnalytics; }; - CEEF311050BECDB18E83AEEF9651A0EF /* PBXContainerItemProxy */ = { + D0D3B3D6284B34480C8B03DB1E924E5A /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = 7ACAA9BE580DD31A5CB9D97C45D9492D; - remoteInfo = "React-Core"; + remoteGlobalIDString = 4A95B7CD1D5F80C5E8CD9CDA00D41F70; + remoteInfo = EXVideoThumbnails; }; - CF1E4F62D5034B7E50F06CB96ECB8938 /* PBXContainerItemProxy */ = { + D0F539046274113E2EEDB2C0C182630F /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = 1A0445474DA11CA659C4BCC5AB64B1BF; - remoteInfo = RNCMaskedView; + remoteGlobalIDString = 04A30E186743192DFB26B0FD7DB8F250; + remoteInfo = libevent; }; - CF24C0101B6F416BDA3559426B39B8F5 /* PBXContainerItemProxy */ = { + D175F52312C93576BFFEDB14340BE076 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = D2B5E7DCCBBFB32341D857D01211A1A3; - remoteInfo = nanopb; + remoteGlobalIDString = DC0D417AC8ABB7AA10C20A5E0F065812; + remoteInfo = RNConfigReader; }; - CF8A28BF937855E32415119994D87CF2 /* PBXContainerItemProxy */ = { + D1A5C4173CC1F56A786D59D54FE3A21D /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = 6514D69CB93B41626AE1A05581F97B07; - remoteInfo = "react-native-background-timer"; + remoteGlobalIDString = 680299219D3A48D42A648AF6706275A9; + remoteInfo = "React-RCTSettings"; }; - CF99EF36E9FBC8A53D73E754590CB531 /* PBXContainerItemProxy */ = { + D1FF4A64AFF3A5B440159162286678D7 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = 5B40FBDAD0AB75D17C4760F4054BFF71; - remoteInfo = JitsiMeetSDK; + remoteGlobalIDString = 982644B5B647690B2E4F5B3F54EB5717; + remoteInfo = FlipperKit; }; - CFC2D37D41A779989227A626200ABF9E /* PBXContainerItemProxy */ = { + D24B5BC388EB7017ACAC327369B88518 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = 526C4398D095B3704EB933DADBC30093; - remoteInfo = FirebaseCrashlytics; + remoteGlobalIDString = 8D7F5D5DD528D21A72DC87ADA5B12E2D; + remoteInfo = GoogleUtilities; }; - CFC4CD9A8A7C974CE199BE153443999B /* PBXContainerItemProxy */ = { + D2662832C9C78D633A5D920FF8FBE4CC /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = EC55D52694092A9D0E6A78EB01207EB5; - remoteInfo = "RCT-Folly"; + remoteGlobalIDString = 9668C19AA6D8EA320F83875FA286855A; + remoteInfo = UMConstantsInterface; }; - CFDAA064A932053E96666F4AB236B54A /* PBXContainerItemProxy */ = { + D2F5F395819B191BDA32D1222DA014DE /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = F4F25FCAC51B51FD5F986EB939BF1F87; - remoteInfo = GoogleDataTransportCCTSupport; + remoteGlobalIDString = 037A1F31C4D99F52EC9FD2008FEC481C; + remoteInfo = ReactNativeUiLib; }; - D04B21C1FC36025308691FBACB99FC8C /* PBXContainerItemProxy */ = { + D320EBDC9627D431C6D704A95B85B0A6 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = 18B56DB36E1F066C927E49DBAE590128; - remoteInfo = RNRootView; + remoteGlobalIDString = 2BBF7206D7FAC92C82A042A99C4A98F8; + remoteInfo = PromisesObjC; }; - D13C0D4BA9DA741BC9A1945F6CEEF702 /* PBXContainerItemProxy */ = { + D3300691EFACFBD7225BE97912E85410 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; remoteGlobalIDString = 7ACAA9BE580DD31A5CB9D97C45D9492D; remoteInfo = "React-Core"; }; - D2162390495214490D2AEA85DDC61A04 /* PBXContainerItemProxy */ = { + D363D2E52E586770768115013F9EB750 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = 6FE9147F8AAA4DE676C190F680F47AE2; - remoteInfo = "React-RCTLinking"; + remoteGlobalIDString = EC55D52694092A9D0E6A78EB01207EB5; + remoteInfo = "RCT-Folly"; }; - D29AE1032C3EF25A9D6CBA2DD78811B3 /* PBXContainerItemProxy */ = { + D394F230ACFE315F87AFE088C016289A /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = 04A30E186743192DFB26B0FD7DB8F250; - remoteInfo = libevent; + remoteGlobalIDString = FA877ADC442CB19CF61793D234C8B131; + remoteInfo = "React-jsi"; }; - D2DE47110A1C9873D8A923A83B7605C7 /* PBXContainerItemProxy */ = { + D507964E9A7F1C37AC9EAE747681562D /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = 1BEE828C124E6416179B904A9F66D794; - remoteInfo = React; + remoteGlobalIDString = EC577C5CB1DC59A7464ECEF266A75B42; + remoteInfo = "react-native-netinfo"; }; - D353FD39A678927629C9353A53442F2A /* PBXContainerItemProxy */ = { + D50A0FB45D117E604BB11D24E6DBCCA2 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = D20469A9A1E5CFB26045EAEBE3F88E5E; - remoteInfo = RCTTypeSafety; + remoteGlobalIDString = FA877ADC442CB19CF61793D234C8B131; + remoteInfo = "React-jsi"; }; - D38E43E9162C08846DB16DEA0578767B /* PBXContainerItemProxy */ = { + D54F5C40D971BFED926EA5B735A0DBA4 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = 7ACAA9BE580DD31A5CB9D97C45D9492D; - remoteInfo = "React-Core"; + remoteGlobalIDString = 2AB2EF542954AB1C999E03BFEF8DE806; + remoteInfo = DoubleConversion; }; - D3A79498CFB68AEB7500D9192A478F00 /* PBXContainerItemProxy */ = { + D609A9C69B9180CE3BA17C4625F6A2B2 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = 651511D7DA7F07F9FC9AA40A2E86270D; - remoteInfo = "React-RCTNetwork"; + remoteGlobalIDString = D39AB631E8050865DE01F6D5678797D2; + remoteInfo = "react-native-jitsi-meet"; }; - D3BC23E0A45A25F9A47A1A9C65904727 /* PBXContainerItemProxy */ = { + D6B1B152C8A783C6BBEB44505E1EC271 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = DBCB1B4965863DDD3B9DED9A0918A526; - remoteInfo = UMCore; + remoteGlobalIDString = 8D7F5D5DD528D21A72DC87ADA5B12E2D; + remoteInfo = GoogleUtilities; }; - D3D2A9E1BBCB70F920A63123212B689E /* PBXContainerItemProxy */ = { + D6E3857D00E09DFEC6CC663F1D8C4DEB /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = 6677891AC2F7AB93E04BFF30B293A46B; - remoteInfo = RNBootSplash; + remoteGlobalIDString = C452F579644C83E8D8E36EC24A9BBD46; + remoteInfo = UMAppLoader; }; - D3D53A7E39E98AE31E9A715792969B28 /* PBXContainerItemProxy */ = { + D6EED7DC19DEAD17DEAA0B3D79FDD113 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = 8CC4EAA817AA86310D1900F1DAB3580F; - remoteInfo = FBLazyVector; + remoteGlobalIDString = ED2506AE7DE35D654F61254441EA7155; + remoteInfo = "boost-for-react-native"; }; - D42DC7FC3A18A4DADE40843C12369E83 /* PBXContainerItemProxy */ = { + D72FC18B6AB8D6147DAB0D0B532CB8E3 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = D11E74324175FE5B0E78DB046527F233; - remoteInfo = "react-native-document-picker"; + remoteGlobalIDString = 89F573A6B1292B3B2296B2206BFDC3D7; + remoteInfo = RNCAsyncStorage; }; - D4912FE6B05B3B1F98C16E90D81FA9DC /* PBXContainerItemProxy */ = { + D744292E54D8A3E5F7BE50EF52270268 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = DBCB1B4965863DDD3B9DED9A0918A526; - remoteInfo = UMCore; + remoteGlobalIDString = 11989A5E568B3B69655EE0C13DCDA3F9; + remoteInfo = "React-RCTActionSheet"; }; - D563180D2B686039EB7059A2EC71328D /* PBXContainerItemProxy */ = { + D7C9820E59F37DD800CB74A1D65C3880 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = 7ACAA9BE580DD31A5CB9D97C45D9492D; - remoteInfo = "React-Core"; + remoteGlobalIDString = B9E8F4CA2A4A8599389FEB665A9B96FF; + remoteInfo = RNGestureHandler; }; - D5859FE3938A5406C81DDCC62ED70C92 /* PBXContainerItemProxy */ = { + D7F5FFDF58D66D2528658F548A80A849 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = F1E2583679398CB5F4D2B3272E9B198F; - remoteInfo = "React-perflogger"; + remoteGlobalIDString = EEBB8D24F2B3531A5C5DAA668D02331F; + remoteInfo = "react-native-blur"; }; - D5D15D2F22B51E19F208AAA0944663D3 /* PBXContainerItemProxy */ = { + D80BD1A89F7019095C9530BD21FEE9BC /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = EC55D52694092A9D0E6A78EB01207EB5; - remoteInfo = "RCT-Folly"; + remoteGlobalIDString = EC577C5CB1DC59A7464ECEF266A75B42; + remoteInfo = "react-native-netinfo"; }; - D63640E6F7B586A079ACBE4EDC310B8E /* PBXContainerItemProxy */ = { + D8A3AA17EB52926C7E22810A934C0381 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; remoteGlobalIDString = DBCB1B4965863DDD3B9DED9A0918A526; remoteInfo = UMCore; }; - D654D7831CD0507F266BB3DC3BD1D789 /* PBXContainerItemProxy */ = { + D8AC7871229B5651F435B98118804C6C /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = 8D18C49071FC5370C25F5758A85BA5F6; - remoteInfo = "react-native-webview"; + remoteGlobalIDString = 91A6826828CB9FCD0169A7547E8A79EA; + remoteInfo = MMKV; }; - D66BECE531DF6C5E64050F3FF65EB93D /* PBXContainerItemProxy */ = { + D8E817F8A48E377B7A5D17A27CCBEF5E /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = 7ACAA9BE580DD31A5CB9D97C45D9492D; - remoteInfo = "React-Core"; + remoteGlobalIDString = 014495932E402CA67C37681988047CA2; + remoteInfo = UMFontInterface; }; - D674757C96B7F9BCB60628AAA036C599 /* PBXContainerItemProxy */ = { + DA5BC39CBBEEB3E4B74FA6F5F1DE0183 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = 04A30E186743192DFB26B0FD7DB8F250; - remoteInfo = libevent; + remoteGlobalIDString = 1BEE828C124E6416179B904A9F66D794; + remoteInfo = React; }; - D67858BC2CB37323F9281E60D382F298 /* PBXContainerItemProxy */ = { + DA8D67FFBE5BF0DB432A286D5FBA6843 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = DBCB1B4965863DDD3B9DED9A0918A526; - remoteInfo = UMCore; + remoteGlobalIDString = E7E7CE52C8C68B17224FF8C262D80ABF; + remoteInfo = RCTRequired; }; - D6AE14E3270041403147DE3CD24EF5B7 /* PBXContainerItemProxy */ = { + DABF643458A490821AEDE43553AE64E7 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = EC577C5CB1DC59A7464ECEF266A75B42; - remoteInfo = "react-native-netinfo"; + remoteGlobalIDString = B9E8F4CA2A4A8599389FEB665A9B96FF; + remoteInfo = RNGestureHandler; }; - D7A5AC85EC194EA0733F01E38D7861B0 /* PBXContainerItemProxy */ = { + DB6D62A0D6EC2A8746FF902936020B02 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = 0CF4D9052577C85B6B8C4E957332626B; - remoteInfo = EXKeepAwake; + remoteGlobalIDString = 1BEE828C124E6416179B904A9F66D794; + remoteInfo = React; }; - D7EB71649AC236CDEE8AE0035EA1740E /* PBXContainerItemProxy */ = { + DB8C7A4FE19BAC2C242E82FA70C38C6F /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = 4A95B7CD1D5F80C5E8CD9CDA00D41F70; - remoteInfo = EXVideoThumbnails; + remoteGlobalIDString = 7ACAA9BE580DD31A5CB9D97C45D9492D; + remoteInfo = "React-Core"; }; - D889F265F50787A0DC7E5F67E54AFAE9 /* PBXContainerItemProxy */ = { + DD24CB1A2D63E2CF4F6E431B3F0487D6 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = ED2506AE7DE35D654F61254441EA7155; - remoteInfo = "boost-for-react-native"; + remoteGlobalIDString = 1BEE828C124E6416179B904A9F66D794; + remoteInfo = React; }; - D8ECF522EA7CA09351AF3546743A2192 /* PBXContainerItemProxy */ = { + DD7A48FE9CC14496688C0AB606B54F74 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = F7D033C4C128EECAA020990641FA985F; - remoteInfo = "React-jsinspector"; + remoteGlobalIDString = B51433D546A38C51AA781F192E8836F8; + remoteInfo = RNLocalize; }; - D97E8B1A5B6F78D9F43514EF79F830B3 /* PBXContainerItemProxy */ = { + DDD621D5CC0E905054AB7F425F42002E /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = 1BEE828C124E6416179B904A9F66D794; - remoteInfo = React; + remoteGlobalIDString = D985A509BFE270C95EDCBE6B4CBAF189; + remoteInfo = "react-native-simple-crypto"; }; - DA00115FE032C1EDBCFDC1EC11B8336F /* PBXContainerItemProxy */ = { + DDE5599C5356D7629856F12BD652CFC8 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = B9ED5194E665042005069EF06C82A050; - remoteInfo = "OpenSSL-Universal"; + remoteGlobalIDString = F3966F664F3CFAEFAB57C40FB54D3788; + remoteInfo = TOCropViewController; }; - DA6B6185BFE45116B2697D286E0F1E4A /* PBXContainerItemProxy */ = { + DDEC0DE569A4D2011E4552695EACE9DB /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = B9ED5194E665042005069EF06C82A050; - remoteInfo = "OpenSSL-Universal"; + remoteGlobalIDString = 2BBF7206D7FAC92C82A042A99C4A98F8; + remoteInfo = PromisesObjC; }; - DAD9BC70A7F2FDFEF61A72A3315C6383 /* PBXContainerItemProxy */ = { + DDF209A8A78187D10531F6FCBD67B009 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = 5C0371EE948D0357B8EE0E34ABB44BF0; - remoteInfo = GoogleDataTransport; + remoteGlobalIDString = 3FF2E78BB54ED67CA7FAD8DA2590DBEE; + remoteInfo = "react-native-appearance"; }; - DB62BFA7230496558DE56E8BC3D4FF0F /* PBXContainerItemProxy */ = { + DE3E255DAE50B317DE1B3AF20AA81845 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = 8D7F5D5DD528D21A72DC87ADA5B12E2D; - remoteInfo = GoogleUtilities; + remoteGlobalIDString = FA877ADC442CB19CF61793D234C8B131; + remoteInfo = "React-jsi"; }; - DC7DC0214F958FB54356271BB61E6DAF /* PBXContainerItemProxy */ = { + DE71253AABB559AA03AB573EFC9CE748 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = DBCB1B4965863DDD3B9DED9A0918A526; - remoteInfo = UMCore; + remoteGlobalIDString = 3847153A6E5EEFB86565BA840768F429; + remoteInfo = SDWebImage; }; - DDCF06DFCCE78D6E01728E5498A8293D /* PBXContainerItemProxy */ = { + DEDA961F5378987B7F9928609B9CE46E /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = 97C4DE84FA3CC4EC06AA6D8C249949B7; - remoteInfo = UMImageLoaderInterface; + remoteGlobalIDString = EC55D52694092A9D0E6A78EB01207EB5; + remoteInfo = "RCT-Folly"; }; - DDFAC5596B74D40860A517B04388D8C7 /* PBXContainerItemProxy */ = { + DEDB8BC1594742281F759422B7894B8E /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = 938CCE22F6C4094B3FB6CF1478579E4B; - remoteInfo = "React-RCTAnimation"; + remoteGlobalIDString = 8CC4EAA817AA86310D1900F1DAB3580F; + remoteInfo = FBLazyVector; }; - DE1F5E6E7DEE65A4B2CE0447C306D3C5 /* PBXContainerItemProxy */ = { + DEE44EC3A1FD54EEBB3AA0017D5D3439 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = 7ACAA9BE580DD31A5CB9D97C45D9492D; - remoteInfo = "React-Core"; + remoteGlobalIDString = 6677891AC2F7AB93E04BFF30B293A46B; + remoteInfo = RNBootSplash; }; - DF4FB7B6B68C3C305041A4D094011010 /* PBXContainerItemProxy */ = { + DF45A8F307D7DA49D97D138617DD9EF2 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = 9668C19AA6D8EA320F83875FA286855A; - remoteInfo = UMConstantsInterface; + remoteGlobalIDString = 7ACAA9BE580DD31A5CB9D97C45D9492D; + remoteInfo = "React-Core"; }; - DF694CF75C15DF1A50318767A474FB8E /* PBXContainerItemProxy */ = { + DFBFED82281CEBBF7AE6B81ABC5A7D8D /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = F7845084F0CF03F54107EEF7411760AD; - remoteInfo = UMPermissionsInterface; + remoteGlobalIDString = 87803597EB3F20FC46472B85392EC4FD; + remoteInfo = FirebaseInstallations; }; - E056A34DBCD7B31E97EAD1DD2DC5C8A3 /* PBXContainerItemProxy */ = { + E0BF8D33F57F16539C03B24BF1C1EE57 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = 47D2E85A78C25869BB13521D8561A638; - remoteInfo = libwebp; + remoteGlobalIDString = 04A30E186743192DFB26B0FD7DB8F250; + remoteInfo = libevent; }; - E071C7585544489F8DA30D3E577FAA28 /* PBXContainerItemProxy */ = { + E16B954EFCFC28D7941903E2B0342FCA /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = D0EFEFB685D97280256C559792236873; - remoteInfo = glog; + remoteGlobalIDString = F1E2583679398CB5F4D2B3272E9B198F; + remoteInfo = "React-perflogger"; }; - E0C455F7664EDFB3A775D2F8DBFC362E /* PBXContainerItemProxy */ = { + E18447A6C624258A1CE7115D618762F6 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = 5B40FBDAD0AB75D17C4760F4054BFF71; - remoteInfo = JitsiMeetSDK; + remoteGlobalIDString = DC0D417AC8ABB7AA10C20A5E0F065812; + remoteInfo = RNConfigReader; }; - E0C816EF86ED2156A80D2F51F80BC90B /* PBXContainerItemProxy */ = { + E247B7B2B4489ED825BF14EB28B52F41 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = B6D39E083AE0FF45BA30D7CDF6198A03; - remoteInfo = "Flipper-Folly"; + remoteGlobalIDString = C3496D0495E700CF08A90C41EA8FA4BB; + remoteInfo = FBReactNativeSpec; }; - E2E2C4114AEBFFCB85766233F762178B /* PBXContainerItemProxy */ = { + E2530250B68605DAE8ECD2A16B206639 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = 7ACAA9BE580DD31A5CB9D97C45D9492D; - remoteInfo = "React-Core"; + remoteGlobalIDString = 6083682834ABE0AE7BD1CBF06CADD036; + remoteInfo = CocoaAsyncSocket; }; - E309B8A570AA76FCEFC1D38DB167CA95 /* PBXContainerItemProxy */ = { + E2A7E63395C1754EC6612184F4204A4B /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = DBCB1B4965863DDD3B9DED9A0918A526; - remoteInfo = UMCore; + remoteGlobalIDString = 463F41A7E8B252F8AC5024DA1F4AF6DA; + remoteInfo = "React-cxxreact"; }; - E34199B42E03CBA82D52A75B4DAF9249 /* PBXContainerItemProxy */ = { + E3E04C57D03FF16BE0D7C5B34DFEDECA /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = 1BEE828C124E6416179B904A9F66D794; - remoteInfo = React; + remoteGlobalIDString = 97C4DE84FA3CC4EC06AA6D8C249949B7; + remoteInfo = UMImageLoaderInterface; }; - E356AD98EB1252E7C7944F6A143EAFE0 /* PBXContainerItemProxy */ = { + E3FCB4BC7846DD1C3BD2DCDEEF6B48EA /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = 409F3A0DB395F53FFB6AB30E5CD8ACD1; - remoteInfo = EXHaptics; + remoteGlobalIDString = 7A020DAB6F3F0BA0A6D9946E84B38B7F; + remoteInfo = "React-Core-AccessibilityResources"; }; - E3642347949F56CB2448C84DB03ED331 /* PBXContainerItemProxy */ = { + E48B466A8157BD89A684502B056F7A8C /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = 87803597EB3F20FC46472B85392EC4FD; - remoteInfo = FirebaseInstallations; + remoteGlobalIDString = 7ACAA9BE580DD31A5CB9D97C45D9492D; + remoteInfo = "React-Core"; }; - E44E0C84DDC5714BFBFDB37835A87771 /* PBXContainerItemProxy */ = { + E4DDD74DDE626409CE20192C4CF0C6C9 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = EC55D52694092A9D0E6A78EB01207EB5; - remoteInfo = "RCT-Folly"; + remoteGlobalIDString = 74DAFD196634D10887C9A4E7BA19A5E4; + remoteInfo = "react-native-mmkv-storage"; }; - E4ACA2EB08ECAB1655407129AC4B3A23 /* PBXContainerItemProxy */ = { + E51421B36B426FE684E9D90356B4FA9D /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = FA877ADC442CB19CF61793D234C8B131; - remoteInfo = "React-jsi"; + remoteGlobalIDString = 90D0DE2F3348233618414728C35311CA; + remoteInfo = RNFBApp; }; - E51A1BF0C6847F99684CF93BA1B9C7CA /* PBXContainerItemProxy */ = { + E5CED035BF81F1BBBE894EAC02BD872E /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = D20469A9A1E5CFB26045EAEBE3F88E5E; - remoteInfo = RCTTypeSafety; + remoteGlobalIDString = 7ACAA9BE580DD31A5CB9D97C45D9492D; + remoteInfo = "React-Core"; }; - E540A14D89767CD86D33D378A7F00771 /* PBXContainerItemProxy */ = { + E623C96C1C66E560B692C8985D6542AA /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = 7ACAA9BE580DD31A5CB9D97C45D9492D; - remoteInfo = "React-Core"; + remoteGlobalIDString = E7E7CE52C8C68B17224FF8C262D80ABF; + remoteInfo = RCTRequired; }; - E643896E0982490B9846E34E81013838 /* PBXContainerItemProxy */ = { + E668CC71805604384A60D9D2FF055A00 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = 1BEE828C124E6416179B904A9F66D794; - remoteInfo = React; + remoteGlobalIDString = 6FE9147F8AAA4DE676C190F680F47AE2; + remoteInfo = "React-RCTLinking"; }; - E6EFDE83EB6528D5DCB74968CBDD1C86 /* PBXContainerItemProxy */ = { + E73A3F3A88AFD0485D0E425F0DEF4669 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = FA877ADC442CB19CF61793D234C8B131; - remoteInfo = "React-jsi"; + remoteGlobalIDString = 1092C13E1E1172209537C28D0C8D4D3C; + remoteInfo = "react-native-orientation-locker"; }; - E7587C8C3625769A6920C7C5A9E88039 /* PBXContainerItemProxy */ = { + E756F576EA95CA2BAD1444334C261EDD /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = 87803597EB3F20FC46472B85392EC4FD; - remoteInfo = FirebaseInstallations; + remoteGlobalIDString = FF879E718031128A75E7DE54046E6219; + remoteInfo = RNReanimated; }; - E7F0ADFCD6A72AEBA6784F657563E240 /* PBXContainerItemProxy */ = { + E7A37833AF6E675E3587E8ED2F30BFBB /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = 11989A5E568B3B69655EE0C13DCDA3F9; - remoteInfo = "React-RCTActionSheet"; + remoteGlobalIDString = D2B5E7DCCBBFB32341D857D01211A1A3; + remoteInfo = nanopb; }; - E84CBCA8EB454DDA0BF8218E5041F049 /* PBXContainerItemProxy */ = { + E7C6DFBB6F5D8D79B196B540304E8C59 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = EC55D52694092A9D0E6A78EB01207EB5; - remoteInfo = "RCT-Folly"; + remoteGlobalIDString = 2D4D3D5AD93ADCCF3DD45A88009E48D6; + remoteInfo = "TOCropViewController-TOCropViewControllerBundle"; }; - E8759F381FE9663A90D5CCC8E56EEFB0 /* PBXContainerItemProxy */ = { + E88769E75ED80E01BFEB48A400BF0FC8 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = 6C1893932A69822CBE3502F2E0BCFB6D; - remoteInfo = EXConstants; + remoteGlobalIDString = DA0709CAAD589C6E7963495210438021; + remoteInfo = "React-jsiexecutor"; }; - E8B4EE5BD2AC03FCE7154F684035C4E6 /* PBXContainerItemProxy */ = { + E8C28A47D88AE811C93989837916A0F0 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = F7845084F0CF03F54107EEF7411760AD; - remoteInfo = UMPermissionsInterface; + remoteGlobalIDString = 1BEE828C124E6416179B904A9F66D794; + remoteInfo = React; }; - E8CBD10A9DA9DA759BFB131005C3C704 /* PBXContainerItemProxy */ = { + E95005F1B7DA1331389F922DF3F28D25 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = F7845084F0CF03F54107EEF7411760AD; - remoteInfo = UMPermissionsInterface; + remoteGlobalIDString = 7ACAA9BE580DD31A5CB9D97C45D9492D; + remoteInfo = "React-Core"; }; - E9BD6DE24A25F7E905E7360E496B512D /* PBXContainerItemProxy */ = { + E9A686FC3DD3251147DB7518A6548F6B /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = 4402AFF83DBDC4DD07E198685FDC2DF2; - remoteInfo = FirebaseCore; + remoteGlobalIDString = D0EFEFB685D97280256C559792236873; + remoteInfo = glog; }; - E9DAD30CD3B069456BB48F7F1240D096 /* PBXContainerItemProxy */ = { + E9FFAE2235F0B2B7E0AEDD3117B35882 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = ED2506AE7DE35D654F61254441EA7155; - remoteInfo = "boost-for-react-native"; + remoteGlobalIDString = 5C0371EE948D0357B8EE0E34ABB44BF0; + remoteInfo = GoogleDataTransport; }; - EA07A81169A598EAE84FDBA88BC1298F /* PBXContainerItemProxy */ = { + EA0FE64E501BD3A02300DFDF62F040A9 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = 1BEE828C124E6416179B904A9F66D794; - remoteInfo = React; + remoteGlobalIDString = 985FEA01F314F3C00F0C1E1181E6C4A5; + remoteInfo = "hermes-engine"; }; - EA37BFDD0115341808C54303ADCAABC2 /* PBXContainerItemProxy */ = { + EA5A2DA9DDFE1B3DDF0D37E6367FD8B9 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = 2B25F90D819B9ADF2AF2D8733A890333; - remoteInfo = Yoga; + remoteGlobalIDString = F7D033C4C128EECAA020990641FA985F; + remoteInfo = "React-jsinspector"; }; - EA51BC73ACC8C693B1C2FDB68C6F6282 /* PBXContainerItemProxy */ = { + EAAB7FFA64B949DC5355D6C902452372 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; remoteGlobalIDString = 7ACAA9BE580DD31A5CB9D97C45D9492D; remoteInfo = "React-Core"; }; - EA54FFFDD7DA42893AAF172565AE0186 /* PBXContainerItemProxy */ = { + EAE2DD7D4344106776680E0908879BD4 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = 463F41A7E8B252F8AC5024DA1F4AF6DA; - remoteInfo = "React-cxxreact"; + remoteGlobalIDString = F7845084F0CF03F54107EEF7411760AD; + remoteInfo = UMPermissionsInterface; }; - EA7083A642211C54DDE2FABC467EF8DF /* PBXContainerItemProxy */ = { + EBC351A15AB2EC6E19FA975C638C4793 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = 718DB7D0A7E90B531AD577B3356C4161; - remoteInfo = "Flipper-PeerTalk"; + remoteGlobalIDString = 1BEE828C124E6416179B904A9F66D794; + remoteInfo = React; }; - EAA06CE5531E394FCA9CDE654137D740 /* PBXContainerItemProxy */ = { + EBF9C4891B8CE22BE44DBF54AA907C64 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = 2BBF7206D7FAC92C82A042A99C4A98F8; - remoteInfo = PromisesObjC; + remoteGlobalIDString = B51433D546A38C51AA781F192E8836F8; + remoteInfo = RNLocalize; }; - EB5FEC194FC451D91386AB5A818D2F7D /* PBXContainerItemProxy */ = { + EC63CF72FC894E5EC0DD64D26C2061A8 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = E7E7CE52C8C68B17224FF8C262D80ABF; - remoteInfo = RCTRequired; + remoteGlobalIDString = 7ACAA9BE580DD31A5CB9D97C45D9492D; + remoteInfo = "React-Core"; }; - EBED719236BD60940845A6908B06CBB7 /* PBXContainerItemProxy */ = { + EC8139A0A71D6EDD16DCDD57C9E54055 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = 8CC4EAA817AA86310D1900F1DAB3580F; - remoteInfo = FBLazyVector; + remoteGlobalIDString = 7ACAA9BE580DD31A5CB9D97C45D9492D; + remoteInfo = "React-Core"; }; - EC40A5A1685E3B147B29D46C11EC3769 /* PBXContainerItemProxy */ = { + ECDE1D7C8AE294DF6C5D31B712EF7C0A /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = 3FF2E78BB54ED67CA7FAD8DA2590DBEE; - remoteInfo = "react-native-appearance"; + remoteGlobalIDString = 982644B5B647690B2E4F5B3F54EB5717; + remoteInfo = FlipperKit; }; - EC820AD54348208555F08D43CCBA4DBF /* PBXContainerItemProxy */ = { + ED92FA35A9C8C4F56BDB0282F37FC520 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = 90D0DE2F3348233618414728C35311CA; - remoteInfo = RNFBApp; + remoteGlobalIDString = FA877ADC442CB19CF61793D234C8B131; + remoteInfo = "React-jsi"; }; - ECE7275CC98B0E662D7F3F1519CB5CE7 /* PBXContainerItemProxy */ = { + EEDB3D2DFCCE54013EEC5D3E22BCF527 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = B9ED5194E665042005069EF06C82A050; - remoteInfo = "OpenSSL-Universal"; + remoteGlobalIDString = DA0709CAAD589C6E7963495210438021; + remoteInfo = "React-jsiexecutor"; }; - ED0921AF4DEF7ACC3417F28DE27B00EF /* PBXContainerItemProxy */ = { + EEDC83C6592E169F40319A0B5BBD91B3 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = 1953860EA9853AA2BC8022B242F08512; - remoteInfo = SDWebImageWebPCoder; + remoteGlobalIDString = 807428FE76D80865C9F59F3502600E89; + remoteInfo = RNDeviceInfo; }; - EDCF14407E7298BAB7C4F86F7095908A /* PBXContainerItemProxy */ = { + EF56C89CAEA8C7A7A95738EAB96AC394 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = DBCB1B4965863DDD3B9DED9A0918A526; - remoteInfo = UMCore; + remoteGlobalIDString = D00F24222F074B31C56DC6D05E806A35; + remoteInfo = RNCPicker; }; - EDE881A95C0959CE34D4B6960DD9BAED /* PBXContainerItemProxy */ = { + EF7154372FF18B122F5171BA9079EF79 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = 4402AFF83DBDC4DD07E198685FDC2DF2; - remoteInfo = FirebaseCore; + remoteGlobalIDString = 897EF6A99176326E24F51E2F2103828C; + remoteInfo = UMReactNativeAdapter; }; - EDEBB2CCDE899D55B6CBF4506F4792FF /* PBXContainerItemProxy */ = { + EFD48647AD8DB515ED3F7162201EAEED /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = 463F41A7E8B252F8AC5024DA1F4AF6DA; - remoteInfo = "React-cxxreact"; + remoteGlobalIDString = EC577C5CB1DC59A7464ECEF266A75B42; + remoteInfo = "react-native-netinfo"; }; - EE7B3E27294DF1A9467C89120C20CF4B /* PBXContainerItemProxy */ = { + F0875253F90CC3E1D4042DD57E52E66C /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = 680299219D3A48D42A648AF6706275A9; - remoteInfo = "React-RCTSettings"; + remoteGlobalIDString = C3496D0495E700CF08A90C41EA8FA4BB; + remoteInfo = FBReactNativeSpec; }; - EE7BAF425B65A3697B49F329FD325300 /* PBXContainerItemProxy */ = { + F08F0175DC46E1D604C05AE978B481BC /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = 11989A5E568B3B69655EE0C13DCDA3F9; - remoteInfo = "React-RCTActionSheet"; + remoteGlobalIDString = C3496D0495E700CF08A90C41EA8FA4BB; + remoteInfo = FBReactNativeSpec; }; - EEDD76B810282537AB6DF06A71FF2A78 /* PBXContainerItemProxy */ = { + F092B0CF6A055B19737C19A2755394F1 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = D0EFEFB685D97280256C559792236873; - remoteInfo = glog; + remoteGlobalIDString = DBCB1B4965863DDD3B9DED9A0918A526; + remoteInfo = UMCore; }; - EF7B80107AAAA15EFBDA53EC3C870668 /* PBXContainerItemProxy */ = { + F0FCB959869E44C04AE509EEE83F67AE /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = ADC4ACC657481AD27F9936D08FF7F49A; - remoteInfo = "react-native-cookies"; + remoteGlobalIDString = 1953860EA9853AA2BC8022B242F08512; + remoteInfo = SDWebImageWebPCoder; }; - EFFB8DD3C28494B9A3B47CAC73D05093 /* PBXContainerItemProxy */ = { + F240C733BBEA0DFF156F1252C87FC4A3 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = D9245543B79C09FAC40FC8B9F291536A; - remoteInfo = "Flipper-DoubleConversion"; + remoteGlobalIDString = 6083682834ABE0AE7BD1CBF06CADD036; + remoteInfo = CocoaAsyncSocket; }; - F018C2824900003497D8D0F378D31E3A /* PBXContainerItemProxy */ = { + F265BCAA4F8E2D52B91034D7DD644CA2 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = 7ACAA9BE580DD31A5CB9D97C45D9492D; - remoteInfo = "React-Core"; + remoteGlobalIDString = 50188AAB5FAECCA9583327DBA2B0AF2B; + remoteInfo = UMTaskManagerInterface; }; - F01CFAFDA4F1B392F0C8C8E1CEE0A728 /* PBXContainerItemProxy */ = { + F2B53130032BA20274C1F93BFD049160 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = 0CF4D9052577C85B6B8C4E957332626B; - remoteInfo = EXKeepAwake; + remoteGlobalIDString = 0745200E60DC80C9A0A48B7E6C1518D7; + remoteInfo = BugsnagReactNative; }; - F0A7CF52332BAD6902942DD81A2E0DBC /* PBXContainerItemProxy */ = { + F2D13784505E6BC5ADA833F32EB8EAA8 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = 7ACAA9BE580DD31A5CB9D97C45D9492D; - remoteInfo = "React-Core"; + remoteGlobalIDString = 4F265533AAB7C8985856EC78A33164BB; + remoteInfo = "React-RCTImage"; }; - F24FA7171ECE539B5A20E38CB7A772D6 /* PBXContainerItemProxy */ = { + F35435CA65C44C3868CA3A0D84A76683 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = 4402AFF83DBDC4DD07E198685FDC2DF2; - remoteInfo = FirebaseCore; + remoteGlobalIDString = FF879E718031128A75E7DE54046E6219; + remoteInfo = RNReanimated; }; - F2779434729AB947629DFB51257ACFD9 /* PBXContainerItemProxy */ = { + F3A53EE0624E76E22A877411646F7AF8 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = ED2506AE7DE35D654F61254441EA7155; - remoteInfo = "boost-for-react-native"; + remoteGlobalIDString = 5B40FBDAD0AB75D17C4760F4054BFF71; + remoteInfo = JitsiMeetSDK; }; - F2BA47439F9714C5C807D9F0D7D274A7 /* PBXContainerItemProxy */ = { + F3D1A5C0F4E7E529AE59734BBECDC477 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = B6D5DD49633DFF0657B8C3F08EB3ABA9; - remoteInfo = ReactCommon; + remoteGlobalIDString = 2AB2EF542954AB1C999E03BFEF8DE806; + remoteInfo = DoubleConversion; }; - F2DB1E10BB18B6C01FF8C19D2BA6EEEA /* PBXContainerItemProxy */ = { + F3FB2829B1D765090C88870A72D151B8 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = D00F24222F074B31C56DC6D05E806A35; - remoteInfo = RNCPicker; + remoteGlobalIDString = FA877ADC442CB19CF61793D234C8B131; + remoteInfo = "React-jsi"; }; - F2FFFAD9042F76B5263B9E7151A2579F /* PBXContainerItemProxy */ = { + F401D891AD4F9152E9CB5A388EBB6B31 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = 214E42634D1E187D876346D36184B655; - remoteInfo = RNScreens; + remoteGlobalIDString = DBD2D83E10F8B7D3F4E0E34E6A9FCFA6; + remoteInfo = "React-RCTText"; }; - F3A1FCA30159A868A35741A0CFAE5AC2 /* PBXContainerItemProxy */ = { + F4167EC0B02741C416412D2F29BF89D7 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = 50188AAB5FAECCA9583327DBA2B0AF2B; - remoteInfo = UMTaskManagerInterface; + remoteGlobalIDString = 47D2E85A78C25869BB13521D8561A638; + remoteInfo = libwebp; }; - F3EEDB943F6A2D2DF5DE138B9D5B0B59 /* PBXContainerItemProxy */ = { + F47A235C260557EE667EBD5472A693F9 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = B6D39E083AE0FF45BA30D7CDF6198A03; - remoteInfo = "Flipper-Folly"; + remoteGlobalIDString = 869CED37B4B77AAE35DF8B6E70788BBC; + remoteInfo = EXLocalAuthentication; }; - F42D6BAF47B180DB0CF530F853A63A82 /* PBXContainerItemProxy */ = { + F594516EA622E8A0E451526C9625B359 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = 620E05868772C10B4920DC7E324F2C87; - remoteInfo = FirebaseCoreDiagnostics; + remoteGlobalIDString = 1BEE828C124E6416179B904A9F66D794; + remoteInfo = React; }; - F4C3854F96D2DC391D7B80DACF135FD2 /* PBXContainerItemProxy */ = { + F64942EC98896879D2C643DB78A3DFB2 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = 214E42634D1E187D876346D36184B655; - remoteInfo = RNScreens; + remoteGlobalIDString = B6D5DD49633DFF0657B8C3F08EB3ABA9; + remoteInfo = ReactCommon; }; - F578A07B3CEEAC12B884304E6A7C664E /* PBXContainerItemProxy */ = { + F675783EA55DA7C5FEFDD4F5D792324A /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = 6677891AC2F7AB93E04BFF30B293A46B; - remoteInfo = RNBootSplash; + remoteGlobalIDString = B6D5DD49633DFF0657B8C3F08EB3ABA9; + remoteInfo = ReactCommon; }; - F605C8ABFB7C4EE3F70ABA11E3311B3B /* PBXContainerItemProxy */ = { + F6D1926DF54A5AD99525E6569519AFF0 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = 7ACAA9BE580DD31A5CB9D97C45D9492D; - remoteInfo = "React-Core"; + remoteGlobalIDString = 8CC4EAA817AA86310D1900F1DAB3580F; + remoteInfo = FBLazyVector; }; - F62182C9212E13FD7948FD12E735046C /* PBXContainerItemProxy */ = { + F74D282E55983BACFFFABEE035452665 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = 7ACAA9BE580DD31A5CB9D97C45D9492D; - remoteInfo = "React-Core"; + remoteGlobalIDString = 74DAFD196634D10887C9A4E7BA19A5E4; + remoteInfo = "react-native-mmkv-storage"; }; - F654250BB7FA675FDF5CB750B3DEA4B9 /* PBXContainerItemProxy */ = { + F7850F22766A2CD2244F22F2149B65FB /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = 3ED96FB9FE1D18D5F1239C60A109F98C; - remoteInfo = "react-native-restart"; + remoteGlobalIDString = 869CED37B4B77AAE35DF8B6E70788BBC; + remoteInfo = EXLocalAuthentication; }; - F67196EA1045DF605438D65FB686CB98 /* PBXContainerItemProxy */ = { + F88BCDE178A38067C8D339AC256D87F8 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = D760AF58E12ABBB51F84160FB02B5F39; - remoteInfo = RNDateTimePicker; + remoteGlobalIDString = F1E2583679398CB5F4D2B3272E9B198F; + remoteInfo = "React-perflogger"; }; - F696C9AD854D4E3CA60BD018A0B1E1C6 /* PBXContainerItemProxy */ = { + F9219DA0FF66E0C31179C1C23DC8507A /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = 4402AFF83DBDC4DD07E198685FDC2DF2; - remoteInfo = FirebaseCore; + remoteGlobalIDString = 13D7009C3736FB694854D88BAD4742B6; + remoteInfo = EXAV; }; - F6E2F0D826873FE858A14B235C7A24FE /* PBXContainerItemProxy */ = { + F9995C46BB3B7374068D7B83C48805F6 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = B6D5DD49633DFF0657B8C3F08EB3ABA9; - remoteInfo = ReactCommon; + remoteGlobalIDString = 1953860EA9853AA2BC8022B242F08512; + remoteInfo = SDWebImageWebPCoder; }; - F7572D23C0F2BDAC77932F1FA30AD796 /* PBXContainerItemProxy */ = { + F9ADAB4AF7E850BD859F16AFF9082F18 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = DA0709CAAD589C6E7963495210438021; - remoteInfo = "React-jsiexecutor"; + remoteGlobalIDString = FA877ADC442CB19CF61793D234C8B131; + remoteInfo = "React-jsi"; }; - F766CC08FD80654BB489B1E09BA608C0 /* PBXContainerItemProxy */ = { + FA57EEB762AF3207B9E5CD4A80CFD579 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; remoteGlobalIDString = EC55D52694092A9D0E6A78EB01207EB5; remoteInfo = "RCT-Folly"; }; - F83826E13C2031E87D405E9D82866E9E /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = 87803597EB3F20FC46472B85392EC4FD; - remoteInfo = FirebaseInstallations; - }; - F85597B3515EC91BD8ED011FF5B70316 /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = D9245543B79C09FAC40FC8B9F291536A; - remoteInfo = "Flipper-DoubleConversion"; - }; - F8BA1D93514327F9D7F6658BCFD50C21 /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = 6A9637F1BC8154F777335A6420579C05; - remoteInfo = "Flipper-Glog"; - }; - F90F201EE8B82B6F32C7829DBCB5A5B7 /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = F1E2583679398CB5F4D2B3272E9B198F; - remoteInfo = "React-perflogger"; - }; - F95D128F194960AB4FB9D2A7B09CE9EC /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = B53D977A951AFC38B21751B706C1DF83; - remoteInfo = GoogleAppMeasurement; - }; - F99AF4C151CA6CC158268F5C7C7F834B /* PBXContainerItemProxy */ = { + FA94766FAF7831D5815D398EE5879828 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = 54EB12219122432FA744088BC5A680D2; - remoteInfo = "React-runtimeexecutor"; + remoteGlobalIDString = B9ED5194E665042005069EF06C82A050; + remoteInfo = "OpenSSL-Universal"; }; - FA0DF57E6A78847AF4AC56C2E81F789C /* PBXContainerItemProxy */ = { + FB408F57E46599CE3164C188A78310CE /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = 32CA4CBD6B28983076BD93DA221AD027; - remoteInfo = YogaKit; + remoteGlobalIDString = DBCB1B4965863DDD3B9DED9A0918A526; + remoteInfo = UMCore; }; - FA37256919DA40CCFDA1540F724B2D43 /* PBXContainerItemProxy */ = { + FBE6CFB7A627C4C5EA3015FCCFBED997 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = 4F265533AAB7C8985856EC78A33164BB; - remoteInfo = "React-RCTImage"; + remoteGlobalIDString = AC8AE887C706A43711D115E69B9D988A; + remoteInfo = MMKVCore; }; - FAC8D33B660311E1C3ADC61ACF6AF3E0 /* PBXContainerItemProxy */ = { + FC9AF4F9CB03583C7CA28AFB7BB89BF1 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = 6083682834ABE0AE7BD1CBF06CADD036; - remoteInfo = CocoaAsyncSocket; + remoteGlobalIDString = 938CCE22F6C4094B3FB6CF1478579E4B; + remoteInfo = "React-RCTAnimation"; }; - FD09C5F707281C7EF5924ADE226EA60A /* PBXContainerItemProxy */ = { + FCFB887A7DBA3066B6FE949AD9B03AAC /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = D20469A9A1E5CFB26045EAEBE3F88E5E; - remoteInfo = RCTTypeSafety; + remoteGlobalIDString = EC55D52694092A9D0E6A78EB01207EB5; + remoteInfo = "RCT-Folly"; }; - FD5416A45B8CE82A606731AD246EB5E4 /* PBXContainerItemProxy */ = { + FD685AE61ABC4D20BCCB441442BB86AB /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = 91A6826828CB9FCD0169A7547E8A79EA; - remoteInfo = MMKV; + remoteGlobalIDString = 7F591BD8674041AAAA4F37DC699B5518; + remoteInfo = KeyCommands; }; - FE08F2936155789DF2C705734B237D7F /* PBXContainerItemProxy */ = { + FD8A93006C8C8B3B7B15F384DEF52541 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = 8D7F5D5DD528D21A72DC87ADA5B12E2D; - remoteInfo = GoogleUtilities; + remoteGlobalIDString = DBD2D83E10F8B7D3F4E0E34E6A9FCFA6; + remoteInfo = "React-RCTText"; }; - FE98514E436F91BA4E111B692BCAB5DF /* PBXContainerItemProxy */ = { + FDB0B8B6B747861BB4C730C1DCBE9E83 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = 87803597EB3F20FC46472B85392EC4FD; - remoteInfo = FirebaseInstallations; + remoteGlobalIDString = 5C0371EE948D0357B8EE0E34ABB44BF0; + remoteInfo = GoogleDataTransport; }; - FEA11EE4785F29E272B2FFBA4EE2D7CE /* PBXContainerItemProxy */ = { + FDB5051DEF6BFA8F4F3350D1BC4792F3 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = F4F25FCAC51B51FD5F986EB939BF1F87; - remoteInfo = GoogleDataTransportCCTSupport; + remoteGlobalIDString = C3496D0495E700CF08A90C41EA8FA4BB; + remoteInfo = FBReactNativeSpec; }; - FED023E4F8E5C88561B22484867C7077 /* PBXContainerItemProxy */ = { + FE5B0EB0FA270EF8A3826FBF8D2C6A05 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = 50188AAB5FAECCA9583327DBA2B0AF2B; - remoteInfo = UMTaskManagerInterface; + remoteGlobalIDString = 7ACAA9BE580DD31A5CB9D97C45D9492D; + remoteInfo = "React-Core"; }; - FF8CBC11B46C17080179A7758C28E374 /* PBXContainerItemProxy */ = { + FF521D079D2007D80602100B5115C0A2 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = DBCB1B4965863DDD3B9DED9A0918A526; - remoteInfo = UMCore; + remoteGlobalIDString = 32CA4CBD6B28983076BD93DA221AD027; + remoteInfo = YogaKit; }; - FFA47BB80FCB4059556E83BC9748A6AD /* PBXContainerItemProxy */ = { + FFB42EF751A7413F02906F353783132B /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = 3FF2E78BB54ED67CA7FAD8DA2590DBEE; - remoteInfo = "react-native-appearance"; + remoteGlobalIDString = D0EFEFB685D97280256C559792236873; + remoteInfo = glog; }; /* End PBXContainerItemProxy section */ /* Begin PBXFileReference section */ - 000055EB58F9954C08827947C49DEAA3 /* RCTWebSocketModule.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTWebSocketModule.mm; sourceTree = "<group>"; }; - 0004622AC40407B1ADAD515879B469CB /* SKIOSNetworkAdapter.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SKIOSNetworkAdapter.h; path = iOS/Plugins/FlipperKitNetworkPlugin/SKIOSNetworkPlugin/SKIOSNetworkAdapter.h; sourceTree = "<group>"; }; - 000558890AD12FA455201ABBBD9084C3 /* Request.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = Request.cpp; path = folly/io/async/Request.cpp; sourceTree = "<group>"; }; - 003B854D5742DC9F339D3D3F25B09576 /* Color+Interpolation.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "Color+Interpolation.h"; sourceTree = "<group>"; }; - 003CEEB7A99455C56D1CC82459FFC621 /* RCTConvert+FIROptions.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "RCTConvert+FIROptions.m"; path = "ios/RNFBApp/RCTConvert+FIROptions.m"; sourceTree = "<group>"; }; - 004B54212A40E4C7916C9EE6DDD93C63 /* RSocket.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RSocket.h; path = rsocket/RSocket.h; sourceTree = "<group>"; }; - 0060E421CEEA15B5BFBDDC917B0CBD7F /* tree_dec.c */ = {isa = PBXFileReference; includeInIndex = 1; name = tree_dec.c; path = src/dec/tree_dec.c; sourceTree = "<group>"; }; - 00669D5EABDCDD0B6F93F1605C253F1C /* RNCSafeAreaViewManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNCSafeAreaViewManager.m; path = ios/SafeAreaView/RNCSafeAreaViewManager.m; sourceTree = "<group>"; }; - 009BC89DA592B58B06F9C36A0827E973 /* RCTBackedTextInputDelegateAdapter.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTBackedTextInputDelegateAdapter.m; sourceTree = "<group>"; }; - 00A792DB181EE87A94B1014D67850B27 /* en.lproj */ = {isa = PBXFileReference; includeInIndex = 1; name = en.lproj; path = ios/QBImagePicker/QBImagePicker/en.lproj; sourceTree = "<group>"; }; - 00A8005D412C799A8395E4C8BA76C5D6 /* Orientation.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = Orientation.m; path = iOS/RCTOrientation/Orientation.m; sourceTree = "<group>"; }; - 00B64C68E8E48A836E1764A9AA6F83DE /* RNCMaskedView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNCMaskedView.m; path = ios/RNCMaskedView.m; sourceTree = "<group>"; }; - 00B98116A9CCF0A918097FB180D34F09 /* BSG_KSMach_Arm64.c */ = {isa = PBXFileReference; includeInIndex = 1; path = BSG_KSMach_Arm64.c; sourceTree = "<group>"; }; - 00C2884BADE0F97B775E97637AA0FA78 /* UMViewManagerAdapterClassesRegistry.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = UMViewManagerAdapterClassesRegistry.m; sourceTree = "<group>"; }; - 00D323FBBD73EFACF837D4D6D25372A0 /* FIRInstallationsIDController.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRInstallationsIDController.h; path = FirebaseInstallations/Source/Library/InstallationsIDController/FIRInstallationsIDController.h; sourceTree = "<group>"; }; - 00D4C04F9C078B723204D9E3500F2881 /* React-RCTNetwork.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "React-RCTNetwork.release.xcconfig"; sourceTree = "<group>"; }; - 00D5C969B704D8EC2C092FF7BFCCAA79 /* Shell.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = Shell.cpp; path = folly/system/Shell.cpp; sourceTree = "<group>"; }; - 00D7029CDF36815B074ED319C2F18BE3 /* ARTText.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ARTText.h; path = ios/ARTText.h; sourceTree = "<group>"; }; - 00EF156A62AF441B7E35EDFB2B6078B5 /* README.md */ = {isa = PBXFileReference; includeInIndex = 1; path = README.md; sourceTree = "<group>"; }; - 00F410D95A943CF72FF7F8650F7719CF /* BugsnagEvent+Private.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "BugsnagEvent+Private.h"; sourceTree = "<group>"; }; - 00F6CAA287AF03669BD8E004E864BFD2 /* PicoSpinLock.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = PicoSpinLock.h; path = folly/synchronization/PicoSpinLock.h; sourceTree = "<group>"; }; - 00FB9E7D2F9A485D27C21E89AFFBDDDD /* Yoga.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = Yoga.debug.xcconfig; sourceTree = "<group>"; }; + 0000F319375A277EF8E1E5058ECD39E9 /* RCTComponentData.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTComponentData.m; sourceTree = "<group>"; }; + 00092D8F33AE638AF5550472249AE34F /* CertificateUtils.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = CertificateUtils.cpp; path = xplat/Flipper/CertificateUtils.cpp; sourceTree = "<group>"; }; + 000CD55D62AB2366B77B0D781EADCCFB /* LICENSE */ = {isa = PBXFileReference; includeInIndex = 1; path = LICENSE; sourceTree = "<group>"; }; + 001330F7A43B6C92C4AF1BD7C7A0315A /* SKHighlightOverlay.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SKHighlightOverlay.h; path = iOS/Plugins/FlipperKitPluginUtils/FlipperKitHighlightOverlay/SKHighlightOverlay.h; sourceTree = "<group>"; }; + 001F3B4F11CF3FB39275D66A5A666696 /* README.md */ = {isa = PBXFileReference; includeInIndex = 1; path = README.md; sourceTree = "<group>"; }; + 0025553B00C3C36A8BF79261AF533047 /* RCTTextDecorationLineType.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTTextDecorationLineType.h; sourceTree = "<group>"; }; + 002D8E06E0EA583C8547CC130796E45B /* ConcurrentBitSet.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ConcurrentBitSet.h; path = folly/ConcurrentBitSet.h; sourceTree = "<group>"; }; + 00386ED3F5F0A03625243B098D97F38A /* LongLivedObject.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = LongLivedObject.h; sourceTree = "<group>"; }; + 003B816CAC62C3D5B14958153513504D /* BSG_KSSignalInfo.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BSG_KSSignalInfo.h; sourceTree = "<group>"; }; + 00443FFCCDDF161CD8DFD017A55D4A88 /* CacheLocality.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = CacheLocality.cpp; path = folly/concurrency/CacheLocality.cpp; sourceTree = "<group>"; }; + 0049C0BE5C128F7EA0EC0991B9DBD9CC /* FIRCLSAsyncOperation_Private.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRCLSAsyncOperation_Private.h; path = Crashlytics/Crashlytics/Operations/FIRCLSAsyncOperation_Private.h; sourceTree = "<group>"; }; + 005C08BF36C49F7F3EAC5D56CB6AEA66 /* UMCore.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = UMCore.podspec; sourceTree = "<group>"; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; + 006596CDE3AA5B4D1DCE9F03201E0F34 /* FIRCLSInternalLogging.c */ = {isa = PBXFileReference; includeInIndex = 1; name = FIRCLSInternalLogging.c; path = Crashlytics/Crashlytics/Helpers/FIRCLSInternalLogging.c; sourceTree = "<group>"; }; + 006F33D73E48AE2F8240FE1902056A9A /* MacAddress.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = MacAddress.h; path = folly/MacAddress.h; sourceTree = "<group>"; }; + 0082B8F3D3A8CB52B12C341537D3DFBB /* ThreadLocalDetail.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = ThreadLocalDetail.cpp; path = folly/detail/ThreadLocalDetail.cpp; sourceTree = "<group>"; }; + 008A70807569A5A2E4A6D52F305F6B88 /* react-native-netinfo-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "react-native-netinfo-prefix.pch"; sourceTree = "<group>"; }; + 00B2205C58EB486B6313EC54BE2896D0 /* SDWebImageTransitionInternal.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SDWebImageTransitionInternal.h; path = SDWebImage/Private/SDWebImageTransitionInternal.h; sourceTree = "<group>"; }; + 00C1D0030B6A0EB560F660CD72C50BD9 /* EvilIcons.ttf */ = {isa = PBXFileReference; includeInIndex = 1; name = EvilIcons.ttf; path = Fonts/EvilIcons.ttf; sourceTree = "<group>"; }; + 00CA343D159C24F3AD85A34D609C5B01 /* TurboModulePerfLogger.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; path = TurboModulePerfLogger.cpp; sourceTree = "<group>"; }; + 00DA78C61B87958A350C03ABF4BF8A97 /* RNBootSplash.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = RNBootSplash.release.xcconfig; sourceTree = "<group>"; }; + 00F0ECD141FAD483969D87744195B84A /* EXConstants.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = EXConstants.release.xcconfig; sourceTree = "<group>"; }; + 00F5BDD07E195066EC47D3280702A669 /* BlurEffectWithAmount.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = BlurEffectWithAmount.m; path = ios/BlurEffectWithAmount.m; sourceTree = "<group>"; }; + 01074E4D4EAC6FBE83AA73B4384722BC /* SynchronizedPtr.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SynchronizedPtr.h; path = folly/SynchronizedPtr.h; sourceTree = "<group>"; }; + 011687BE4E9B130A5FA52D6D8E667065 /* GULLogger.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = GULLogger.h; path = GoogleUtilities/Logger/Private/GULLogger.h; sourceTree = "<group>"; }; 012242E4480B29DF1D5791EC61C27FEE /* libreact-native-notifications.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; name = "libreact-native-notifications.a"; path = "libreact-native-notifications.a"; sourceTree = BUILT_PRODUCTS_DIR; }; - 01277E6EA0D313D5068182BBB84B9E98 /* RNFBAnalytics.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = RNFBAnalytics.release.xcconfig; sourceTree = "<group>"; }; - 012F7D3D195DCD3E5316D4D1A7C43311 /* LICENSE */ = {isa = PBXFileReference; includeInIndex = 1; path = LICENSE; sourceTree = "<group>"; }; - 0146ECCB0970B6BA42AE57E3AE89E1E4 /* SKResponseInfo.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SKResponseInfo.h; path = iOS/Plugins/FlipperKitNetworkPlugin/FlipperKitNetworkPlugin/SKResponseInfo.h; sourceTree = "<group>"; }; - 0153F266157533ACE5EA59284B4E8922 /* Likely.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Likely.h; path = folly/Likely.h; sourceTree = "<group>"; }; - 0158C3C5F6B59D4937DE62B2199DE0AA /* RCTBridgeDelegate.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTBridgeDelegate.h; sourceTree = "<group>"; }; - 01609FC711059045DED41A7F851F5D95 /* FIRCLSApplicationIdentifierModel.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRCLSApplicationIdentifierModel.h; path = Crashlytics/Crashlytics/Settings/Models/FIRCLSApplicationIdentifierModel.h; sourceTree = "<group>"; }; - 016F790BB3FCBF679484B8AA059CD576 /* GoogleDataTransportCCTSupport.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = GoogleDataTransportCCTSupport.debug.xcconfig; sourceTree = "<group>"; }; - 01742674828B7DB5C4115878466F5134 /* ThreadedExecutor.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = ThreadedExecutor.cpp; path = folly/executors/ThreadedExecutor.cpp; sourceTree = "<group>"; }; - 01B28A0C19F8AC0830294597DD03433F /* EXWebBrowser.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = EXWebBrowser.podspec; sourceTree = "<group>"; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; - 01BFEF506A51006C8E0ADF8BA799173D /* RNDateTimePicker.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNDateTimePicker.h; path = ios/RNDateTimePicker.h; sourceTree = "<group>"; }; - 01EE423A9240BC77F04F0954BFE9AB21 /* BugsnagCrashSentry.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = BugsnagCrashSentry.m; sourceTree = "<group>"; }; - 01F2D0B018A8C0602D50AE13EB355AD0 /* NSDataBigString.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = NSDataBigString.h; sourceTree = "<group>"; }; - 01F562B383893768D4CE562C173AF28B /* EventFDWrapper.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = EventFDWrapper.h; path = folly/io/async/EventFDWrapper.h; sourceTree = "<group>"; }; - 01FC364F6C6E3B591535A7FC19249754 /* MicroLock.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = MicroLock.cpp; path = folly/MicroLock.cpp; sourceTree = "<group>"; }; - 0200F4C529843FA559B3B7EAFBDCA3B7 /* es.lproj */ = {isa = PBXFileReference; includeInIndex = 1; name = es.lproj; path = "Objective-C/TOCropViewController/Resources/es.lproj"; sourceTree = "<group>"; }; - 0211423EA326AFDF60ED4C1C6496C396 /* MemoryFile_OSX.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = MemoryFile_OSX.cpp; path = Core/MemoryFile_OSX.cpp; sourceTree = "<group>"; }; - 02164D00426ECD469441E2BF301F9366 /* UIImage+MemoryCacheCost.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "UIImage+MemoryCacheCost.m"; path = "SDWebImage/Core/UIImage+MemoryCacheCost.m"; sourceTree = "<group>"; }; - 021802B622F23E1BF04496EDA30089F5 /* RNFetchBlobProgress.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNFetchBlobProgress.h; path = ios/RNFetchBlobProgress.h; sourceTree = "<group>"; }; - 0228AAAC9829BF3F36E457F5D71714FB /* FIRHeartbeatInfo.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRHeartbeatInfo.h; path = FirebaseCore/Sources/Private/FIRHeartbeatInfo.h; sourceTree = "<group>"; }; - 023D1714BC6B2A0B494473E614844FA4 /* BSGInternalErrorReporter.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = BSGInternalErrorReporter.m; sourceTree = "<group>"; }; - 025631EC319F114D70200FF936D0F45C /* RNCSliderManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNCSliderManager.h; path = ios/RNCSliderManager.h; sourceTree = "<group>"; }; - 0263F9C5636F7B48EF2C7E0CE750C7E8 /* Merge.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Merge.h; path = folly/container/Merge.h; sourceTree = "<group>"; }; - 0271636F098B9253BAF63D59B427D695 /* FBLPromise+Reduce.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "FBLPromise+Reduce.m"; path = "Sources/FBLPromises/FBLPromise+Reduce.m"; sourceTree = "<group>"; }; - 027210AF12960DA75E0E13687A8B0A07 /* NSDataBigString.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = NSDataBigString.mm; sourceTree = "<group>"; }; - 0284EBCEAA398D64FA047A23F7CE1818 /* Conv.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Conv.h; path = folly/Conv.h; sourceTree = "<group>"; }; - 028531ED5B236705CDB771CB2927310C /* SDDeviceHelper.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = SDDeviceHelper.m; path = SDWebImage/Private/SDDeviceHelper.m; sourceTree = "<group>"; }; - 028F059CB4349635173D9E95BC622538 /* ColdResumeHandler.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = ColdResumeHandler.cpp; path = rsocket/ColdResumeHandler.cpp; sourceTree = "<group>"; }; - 0293E4585956F99026832F6B4E390EDA /* BugsnagErrorTypes.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BugsnagErrorTypes.h; sourceTree = "<group>"; }; - 0296DE86E440E4C1E3E73A957A6FA40E /* muxi.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = muxi.h; path = src/mux/muxi.h; sourceTree = "<group>"; }; - 02A07C2CF210CB58858459A1FB92D628 /* RCTTurboModule.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTTurboModule.h; sourceTree = "<group>"; }; - 02A8C77EFD540D767BD0CD3496846B86 /* FIRCLSConstants.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRCLSConstants.h; path = Crashlytics/Shared/FIRCLSConstants.h; sourceTree = "<group>"; }; - 02AB655AA81715AD591B40A32DD7A704 /* QBVideoIndicatorView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = QBVideoIndicatorView.h; path = ios/QBImagePicker/QBImagePicker/QBVideoIndicatorView.h; sourceTree = "<group>"; }; - 02C991DF0D290846DE19F8CA80AD4354 /* IPAddressV4.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = IPAddressV4.h; path = folly/IPAddressV4.h; sourceTree = "<group>"; }; - 02D341EE62165381DC8B938DD706B0F0 /* AsyncTimeout.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = AsyncTimeout.cpp; path = folly/io/async/AsyncTimeout.cpp; sourceTree = "<group>"; }; - 02DA98992F84389AAB8E5B6036D0F305 /* react-native-blur-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "react-native-blur-dummy.m"; sourceTree = "<group>"; }; - 02E08451045D001829AD93FC5DDDC2FE /* FirebaseCoreInternal.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FirebaseCoreInternal.h; path = FirebaseCore/Sources/Private/FirebaseCoreInternal.h; sourceTree = "<group>"; }; - 02EEEB11E2FA732C018BCB28638DAAB8 /* BSG_KSCrashSentry_Private.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BSG_KSCrashSentry_Private.h; sourceTree = "<group>"; }; - 02F8CC2129A43B8BD6053EF5DC64F1E5 /* RNCMaskedView-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "RNCMaskedView-prefix.pch"; sourceTree = "<group>"; }; - 02FF1085A4CCD4E09581C17A9D3F00D0 /* RCTMultiplicationAnimatedNode.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTMultiplicationAnimatedNode.m; sourceTree = "<group>"; }; - 03026205607C4B1019C6B373E3907ECC /* F14Mask.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = F14Mask.h; path = folly/container/detail/F14Mask.h; sourceTree = "<group>"; }; - 0314DFFE16CFA2431FDA731356CA2DE1 /* decorator.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = decorator.h; path = destroot/include/jsi/decorator.h; sourceTree = "<group>"; }; - 033274F54F2513C69DDB64025F49C445 /* Buffer.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Buffer.h; path = destroot/include/hermes/Public/Buffer.h; sourceTree = "<group>"; }; - 03376185B2F0AEF87CE3705E3A6407C2 /* GoogleDataTransport.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = GoogleDataTransport.release.xcconfig; sourceTree = "<group>"; }; - 033C850F3FEB52866E0474A4C21D0158 /* Synchronized.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Synchronized.h; path = folly/Synchronized.h; sourceTree = "<group>"; }; - 034507F582A52D986314724EA30140A2 /* RNSScreenStackHeaderConfig.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNSScreenStackHeaderConfig.h; path = ios/RNSScreenStackHeaderConfig.h; sourceTree = "<group>"; }; - 03617C7B382C83B9380716415C7DC53F /* ARTNodeManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = ARTNodeManager.h; sourceTree = "<group>"; }; - 03627D3C4570EDDCB741491956019B46 /* ChannelResponder.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ChannelResponder.h; path = rsocket/statemachine/ChannelResponder.h; sourceTree = "<group>"; }; - 03749A1A62575AF10C8C927110589F8D /* HazptrThreadPoolExecutor.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = HazptrThreadPoolExecutor.h; path = folly/synchronization/HazptrThreadPoolExecutor.h; sourceTree = "<group>"; }; - 0381BAB37FB5527EC89A3772A617850D /* Unistd.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = Unistd.cpp; path = folly/portability/Unistd.cpp; sourceTree = "<group>"; }; - 03902662E196BE0FB6D7C3BBAD0738EA /* React-RCTAnimation.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "React-RCTAnimation.debug.xcconfig"; sourceTree = "<group>"; }; - 03949BD4B944E1B14997B7B0B5D7F1F2 /* MMKVCore.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = MMKVCore.release.xcconfig; sourceTree = "<group>"; }; - 039B1088A923BF790ADA0AC7732F66D2 /* BSGEventUploadOperation.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = BSGEventUploadOperation.m; sourceTree = "<group>"; }; - 03AA07AD50C90033067A6D07CFA342DA /* EventBaseManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = EventBaseManager.h; path = folly/io/async/EventBaseManager.h; sourceTree = "<group>"; }; - 03ABA597EB18982DC357D7D005E5E3B1 /* RCTBridgeModule.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTBridgeModule.h; sourceTree = "<group>"; }; - 03AE25503118EA1D4DE028BBCADCAEF1 /* Assume.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Assume.h; path = folly/lang/Assume.h; sourceTree = "<group>"; }; - 03B96308C041D885CCF507BE7B0B0340 /* common_sse2.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = common_sse2.h; path = src/dsp/common_sse2.h; sourceTree = "<group>"; }; - 03E4DE6F65D0B3008B5D8D3E4A27F8A2 /* RNBootSplash.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = RNBootSplash.debug.xcconfig; sourceTree = "<group>"; }; - 03E7B4CBB3C83D80F339CB90C1B315FE /* FIRComponentType.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRComponentType.m; path = FirebaseCore/Sources/FIRComponentType.m; sourceTree = "<group>"; }; - 03F06431100E4402DBCBF45CF4BFC6C6 /* README.md */ = {isa = PBXFileReference; includeInIndex = 1; path = README.md; sourceTree = "<group>"; }; - 03FBFF30594F0CEA591FF451970653F4 /* RCTTransformAnimatedNode.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTTransformAnimatedNode.h; sourceTree = "<group>"; }; - 040B1FEA4D1BB34B7A5D3231137088C5 /* GULNSData+zlib.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "GULNSData+zlib.m"; path = "GoogleUtilities/NSData+zlib/GULNSData+zlib.m"; sourceTree = "<group>"; }; - 040D2C66F76925DFE2827DAF8892434C /* YGValue.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = YGValue.h; path = yoga/YGValue.h; sourceTree = "<group>"; }; - 041B9921682550847342142D5C565844 /* SDDeviceHelper.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SDDeviceHelper.h; path = SDWebImage/Private/SDDeviceHelper.h; sourceTree = "<group>"; }; - 042CB045CACE7AFFA4B656B882496E4A /* UMAppLoaderProvider.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = UMAppLoaderProvider.m; path = UMAppLoader/UMAppLoaderProvider.m; sourceTree = "<group>"; }; - 043397C0E2974CE55163AFD49A0BFBA1 /* FIRCLSDataParsing.c */ = {isa = PBXFileReference; includeInIndex = 1; name = FIRCLSDataParsing.c; path = Crashlytics/Crashlytics/Unwind/Dwarf/FIRCLSDataParsing.c; sourceTree = "<group>"; }; - 0433A26CA9AB21D0ECDE15D53044AC50 /* BugsnagAppWithState.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = BugsnagAppWithState.m; sourceTree = "<group>"; }; - 0434113888E997B21B28150CC3620C44 /* React-CoreModules.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "React-CoreModules.release.xcconfig"; sourceTree = "<group>"; }; - 04518E1251B37EFB9CC7C85F2C6F79BF /* Frame.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = Frame.cpp; path = rsocket/framing/Frame.cpp; sourceTree = "<group>"; }; - 045DC00385FFA069EE7A16F3DED4A670 /* GDTCOREvent+GDTCCTSupport.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "GDTCOREvent+GDTCCTSupport.m"; path = "GoogleDataTransportCCTSupport/GDTCCTLibrary/GDTCOREvent+GDTCCTSupport.m"; sourceTree = "<group>"; }; - 046E65A5FA88EDA7B63523764877B119 /* FrameHeader.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = FrameHeader.cpp; path = rsocket/framing/FrameHeader.cpp; sourceTree = "<group>"; }; - 047F29786AB3962508FB437472C96F1A /* React-jsi-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "React-jsi-dummy.m"; sourceTree = "<group>"; }; - 04804CCF30D5C8B761937C80FB88841A /* RNCAppearanceProvider.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNCAppearanceProvider.h; path = ios/Appearance/RNCAppearanceProvider.h; sourceTree = "<group>"; }; - 048BA257BC45490465B8024434ADA4F9 /* ARTSurfaceViewManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = ARTSurfaceViewManager.m; sourceTree = "<group>"; }; - 04925E4C65CD37F4F5BCEA972570D447 /* Yoga-internal.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "Yoga-internal.h"; path = "yoga/Yoga-internal.h"; sourceTree = "<group>"; }; - 04977148DE9C9EE89321F0AA165BDE05 /* JSCExecutorFactory.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = JSCExecutorFactory.h; sourceTree = "<group>"; }; - 0499D4D0215385E03992B5E8D6EEB000 /* Time.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = Time.cpp; path = folly/portability/Time.cpp; sourceTree = "<group>"; }; - 04B3591ACFC47620F91491211E4222FB /* SSLErrors.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SSLErrors.h; path = folly/io/async/ssl/SSLErrors.h; sourceTree = "<group>"; }; + 01346432177A0F38A31D69490AEFF979 /* SDAnimatedImageView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SDAnimatedImageView.h; path = SDWebImage/Core/SDAnimatedImageView.h; sourceTree = "<group>"; }; + 01424B53B7FC838948BBEAA9B4698EF6 /* Futex.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Futex.h; path = folly/detail/Futex.h; sourceTree = "<group>"; }; + 01470023B303C56FCE2DB25EA4A0A414 /* RCTSurfaceRootView.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTSurfaceRootView.mm; sourceTree = "<group>"; }; + 0148745B69D68F8F7CF48F7858879BB3 /* LifoSemMPMCQueue.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = LifoSemMPMCQueue.h; path = folly/executors/task_queue/LifoSemMPMCQueue.h; sourceTree = "<group>"; }; + 01570026119213B57D22D400450D94ED /* BugsnagReactNative.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = BugsnagReactNative.debug.xcconfig; sourceTree = "<group>"; }; + 01766B817B74F69DDE794A8716F2BEFD /* RCTMultipartDataTask.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTMultipartDataTask.h; sourceTree = "<group>"; }; + 0180A12731ED33F0F3326D120B58242C /* RootView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RootView.h; path = ios/RootView.h; sourceTree = "<group>"; }; + 01A1C62C6A1FA3CEC42AFA6595EE1062 /* TurboModuleBinding.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; path = TurboModuleBinding.cpp; sourceTree = "<group>"; }; + 01A4B4534C9A4E3E9EF3007467E87B1F /* SDWebImageCompat.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SDWebImageCompat.h; path = SDWebImage/Core/SDWebImageCompat.h; sourceTree = "<group>"; }; + 01B4BB59CE0F08F46986E5A92AF0508D /* RequestResponseResponder.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = RequestResponseResponder.cpp; path = rsocket/statemachine/RequestResponseResponder.cpp; sourceTree = "<group>"; }; + 01C730C3064C03A4329119B3E97E6BD2 /* SDImageLoader.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SDImageLoader.h; path = SDWebImage/Core/SDImageLoader.h; sourceTree = "<group>"; }; + 01CCB1FFA00E08BE82F30FF439EC3F19 /* cost.c */ = {isa = PBXFileReference; includeInIndex = 1; name = cost.c; path = src/dsp/cost.c; sourceTree = "<group>"; }; + 01DEA41BEDD9B681A64851CCBFB9CAFB /* UniqueInstance.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = UniqueInstance.cpp; path = folly/detail/UniqueInstance.cpp; sourceTree = "<group>"; }; + 01E1291498C64C07547774F16AA1E544 /* ScheduledSingleObserver.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ScheduledSingleObserver.h; path = rsocket/internal/ScheduledSingleObserver.h; sourceTree = "<group>"; }; + 01E694FF9802B4585B341D1E0888152D /* FlowableConcatOperators.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FlowableConcatOperators.h; path = yarpl/flowable/FlowableConcatOperators.h; sourceTree = "<group>"; }; + 01F2AAFA56C952F1661E1128EA05303C /* SharedMutex.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = SharedMutex.cpp; path = folly/SharedMutex.cpp; sourceTree = "<group>"; }; + 02010732C384E4EC93AEDA144951A11D /* RNCAppearanceProvider.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNCAppearanceProvider.m; path = ios/Appearance/RNCAppearanceProvider.m; sourceTree = "<group>"; }; + 0213B2F9E22E92E5BAA6AE198A55BB24 /* ARTSolidColor.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = ARTSolidColor.m; sourceTree = "<group>"; }; + 0223030B097EBFB099D8AB118CD11BBD /* UMAppLoaderInterface.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = UMAppLoaderInterface.h; sourceTree = "<group>"; }; + 0230637BAEAD20FA6579CCC2F16B15CF /* SKScrollViewDescriptor.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = SKScrollViewDescriptor.m; path = iOS/Plugins/FlipperKitLayoutPlugin/FlipperKitLayoutPlugin/descriptors/SKScrollViewDescriptor.m; sourceTree = "<group>"; }; + 0244E96C99A528F3AED210911B6A6FA4 /* TracingRuntime.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = TracingRuntime.h; path = destroot/include/hermes/TracingRuntime.h; sourceTree = "<group>"; }; + 025C2F7DCB80EB9DDBA8C5D02D4B590C /* UMMagnetometerUncalibratedInterface.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = UMMagnetometerUncalibratedInterface.h; path = UMSensorsInterface/UMMagnetometerUncalibratedInterface.h; sourceTree = "<group>"; }; + 029978C98425860CD0184B7D179E1E26 /* SKObjectHash.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SKObjectHash.h; path = iOS/Plugins/FlipperKitLayoutPlugin/FlipperKitLayoutPlugin/utils/SKObjectHash.h; sourceTree = "<group>"; }; + 02A9508EAC0F10D37E8D431C7044EC4C /* RCTModalHostViewController.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTModalHostViewController.h; sourceTree = "<group>"; }; + 02C06F0AED9141629F70A32B1FFC0898 /* MessageTypes.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = MessageTypes.h; sourceTree = "<group>"; }; + 02CD3AEF0F712A99CEE6286238AF66F6 /* GDTCORReachability.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = GDTCORReachability.h; path = GoogleDataTransport/GDTCORLibrary/Public/GoogleDataTransport/GDTCORReachability.h; sourceTree = "<group>"; }; + 02CE0DDBE38304A04A05DEF7F5FE3CAD /* RCTBridge.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTBridge.m; sourceTree = "<group>"; }; + 02E0A41BE350CD3DF38E296A41F510DB /* String.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = String.h; path = folly/portability/String.h; sourceTree = "<group>"; }; + 02E47D705E5C2C051ECC606009A45B16 /* crashlytics.nanopb.c */ = {isa = PBXFileReference; includeInIndex = 1; name = crashlytics.nanopb.c; path = Crashlytics/Protogen/nanopb/crashlytics.nanopb.c; sourceTree = "<group>"; }; + 02E76B3039E44E736565839CF613AE10 /* AsymmetricMemoryBarrier.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = AsymmetricMemoryBarrier.cpp; path = folly/synchronization/AsymmetricMemoryBarrier.cpp; sourceTree = "<group>"; }; + 02FE0B215D1E746856E1910E826333AF /* SpookyHashV2.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SpookyHashV2.h; path = folly/hash/SpookyHashV2.h; sourceTree = "<group>"; }; + 030F3025CC8683ED91DFF18888825EB7 /* RCTSpringAnimation.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTSpringAnimation.h; sourceTree = "<group>"; }; + 0310EA46F7784672052765AA34A76A98 /* REAModule.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = REAModule.m; path = ios/REAModule.m; sourceTree = "<group>"; }; + 031ACA320F67E575B42F3B356C10AFB0 /* RCTDisplayLink.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTDisplayLink.m; sourceTree = "<group>"; }; + 031CD10AFB96D37EFA1EDE05350F7CC8 /* RNFBRCTEventEmitter.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNFBRCTEventEmitter.h; path = ios/RNFBApp/RNFBRCTEventEmitter.h; sourceTree = "<group>"; }; + 03299B9950D7DE641F1EB45A3B5AC7FF /* FIRCLSInternalLogging.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRCLSInternalLogging.h; path = Crashlytics/Crashlytics/Helpers/FIRCLSInternalLogging.h; sourceTree = "<group>"; }; + 035AB6FAE7D36DBA8AF03E26168AE1FE /* String.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = String.h; path = folly/portability/String.h; sourceTree = "<group>"; }; + 036F75593E25D76A5CB2F411FBD9FB5E /* pb_common.c */ = {isa = PBXFileReference; includeInIndex = 1; path = pb_common.c; sourceTree = "<group>"; }; + 03739C7A744631D8719C0BBC0FAA77AA /* BugsnagSession+Private.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "BugsnagSession+Private.h"; sourceTree = "<group>"; }; + 03B9B1E4E5756EB2EC8357BAE37DEB0B /* JSONSchema.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = JSONSchema.h; path = folly/experimental/JSONSchema.h; sourceTree = "<group>"; }; + 03CA7117622B8F8E0F440614EC0EEBBB /* RNCMaskedView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNCMaskedView.m; path = ios/RNCMaskedView.m; sourceTree = "<group>"; }; + 03CA8ACCFAA3400C254D74BE3BC8FC2C /* Likely.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Likely.h; path = folly/Likely.h; sourceTree = "<group>"; }; + 03D32750B02F2B5B58CBF41B24D10095 /* react-native-background-timer-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "react-native-background-timer-prefix.pch"; sourceTree = "<group>"; }; + 03D6A1B21A46BA36C992FD5E70666AEA /* BugsnagStackframe.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = BugsnagStackframe.m; sourceTree = "<group>"; }; + 03E14DE59094BF7EC1240C23D0AAB6A7 /* UIImage+GIF.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "UIImage+GIF.h"; path = "SDWebImage/Core/UIImage+GIF.h"; sourceTree = "<group>"; }; + 03F1B16F5C52E58157189895CFC877AE /* React-RCTActionSheet.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "React-RCTActionSheet.debug.xcconfig"; sourceTree = "<group>"; }; + 03F6A81651428CF6A0D1B7CDC17AD860 /* AtFork.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = AtFork.cpp; path = folly/detail/AtFork.cpp; sourceTree = "<group>"; }; + 03F6C9D3566B7A517801606D4F076BD1 /* react-native-netinfo-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "react-native-netinfo-dummy.m"; sourceTree = "<group>"; }; + 03FAAF776192C8E274D9579018D31C29 /* Benchmark.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Benchmark.h; path = folly/Benchmark.h; sourceTree = "<group>"; }; + 03FEDA48A5B565815A323313603FF44B /* FIRCLSInstallIdentifierModel.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRCLSInstallIdentifierModel.m; path = Crashlytics/Crashlytics/Models/FIRCLSInstallIdentifierModel.m; sourceTree = "<group>"; }; + 040DF08DF9FBD2E0C494597214DED9CB /* BugsnagThread.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = BugsnagThread.m; sourceTree = "<group>"; }; + 040F7E7B6E634434DFC89127AAC83D15 /* Latch.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Latch.h; path = rsocket/benchmarks/Latch.h; sourceTree = "<group>"; }; + 040FF851D30C23B39D7E38A14D54F92B /* FIRInstallations.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRInstallations.h; path = FirebaseInstallations/Source/Library/Public/FirebaseInstallations/FIRInstallations.h; sourceTree = "<group>"; }; + 0421732F2E3E823263A486C10562D634 /* ObservableOperator.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ObservableOperator.h; path = yarpl/observable/ObservableOperator.h; sourceTree = "<group>"; }; + 042590CFF9F29612616F3E0B9C5C5622 /* Format.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = Format.cpp; path = folly/Format.cpp; sourceTree = "<group>"; }; + 042A4CD38C9F18C4103F66713D6AC85D /* RNGestureHandlerButton.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNGestureHandlerButton.m; path = ios/RNGestureHandlerButton.m; sourceTree = "<group>"; }; + 042C10B5C195B9BC6AC0E3DC756B9850 /* Stdio.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = Stdio.cpp; path = folly/portability/Stdio.cpp; sourceTree = "<group>"; }; + 042E024117A9C4AD5843BD75710ACB76 /* config_enc.c */ = {isa = PBXFileReference; includeInIndex = 1; name = config_enc.c; path = src/enc/config_enc.c; sourceTree = "<group>"; }; + 043BCDACE8EA56CC42EE0C736713015C /* OpenSSLThreading.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = OpenSSLThreading.h; path = folly/ssl/detail/OpenSSLThreading.h; sourceTree = "<group>"; }; + 044038628B089B5FA05D66B2AFD157EF /* nanopb.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = nanopb.release.xcconfig; sourceTree = "<group>"; }; + 045513CE70F776BF699D4AA9F7F97F30 /* react-native-slider.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "react-native-slider.release.xcconfig"; sourceTree = "<group>"; }; + 046A46A4D3012CB489CB79497D95A612 /* RNNativeViewHandler.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RNNativeViewHandler.m; sourceTree = "<group>"; }; + 046AC0F27CF51F993B0460A0A57F014A /* REACallFuncNode.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = REACallFuncNode.h; sourceTree = "<group>"; }; + 0476F6EB62026F8945FCFB7A071961A9 /* FirebaseCrashlytics.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = FirebaseCrashlytics.release.xcconfig; sourceTree = "<group>"; }; + 0479F3B47B90F344B7FCB6C9EE623327 /* RCTRefreshControl.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTRefreshControl.m; sourceTree = "<group>"; }; + 047B83D8277306F34BFCEC97BC58E682 /* quant_enc.c */ = {isa = PBXFileReference; includeInIndex = 1; name = quant_enc.c; path = src/enc/quant_enc.c; sourceTree = "<group>"; }; + 047EB5D9D0F1FB0262FAD62995E308E9 /* UninitializedMemoryHacks.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = UninitializedMemoryHacks.h; path = folly/memory/UninitializedMemoryHacks.h; sourceTree = "<group>"; }; + 047FBF4C58243D39D4D3FA11C326F2B7 /* RNLongPressHandler.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RNLongPressHandler.h; sourceTree = "<group>"; }; + 0482B0FB5FD58CFB6D39382A63681A3C /* LICENSE */ = {isa = PBXFileReference; includeInIndex = 1; path = LICENSE; sourceTree = "<group>"; }; + 04856953888C52B8099F97CC5C1AD907 /* IPAddressException.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = IPAddressException.h; path = folly/IPAddressException.h; sourceTree = "<group>"; }; + 048A1AD73FA5151FB809025ABF5CAFA5 /* OpenSSLHash.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = OpenSSLHash.cpp; path = folly/ssl/OpenSSLHash.cpp; sourceTree = "<group>"; }; + 04A1CE2AFA5CDC051BF40B7AFD333CC9 /* FIRVersion.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRVersion.m; path = FirebaseCore/Sources/FIRVersion.m; sourceTree = "<group>"; }; + 04A9208A06438BA8697BB0565738EFED /* FlipperKit.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = FlipperKit.release.xcconfig; sourceTree = "<group>"; }; + 04ABEFA8B77F5DA53B77E0213920F9B9 /* RCTLinkingManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTLinkingManager.h; path = Libraries/LinkingIOS/RCTLinkingManager.h; sourceTree = "<group>"; }; + 04B43B5267D59EB7B1978AF41A1C1D7F /* TOCropViewController.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = TOCropViewController.h; path = "Objective-C/TOCropViewController/TOCropViewController.h"; sourceTree = "<group>"; }; 04C9072E8E73E49E527671FED550BBA8 /* Pods-NotificationService.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "Pods-NotificationService.debug.xcconfig"; sourceTree = "<group>"; }; - 04CD318B73650A813269D865DF4D5037 /* FIRCLSUnwind_arm.c */ = {isa = PBXFileReference; includeInIndex = 1; name = FIRCLSUnwind_arm.c; path = Crashlytics/Crashlytics/Unwind/FIRCLSUnwind_arm.c; sourceTree = "<group>"; }; - 04CEC819B28EEF081FB1A60A969A8641 /* RCTProfileTrampoline-x86_64.S */ = {isa = PBXFileReference; includeInIndex = 1; path = "RCTProfileTrampoline-x86_64.S"; sourceTree = "<group>"; }; - 04CFEFB3F1120ED65335C3CA7E6A4ED3 /* react-native-orientation-locker-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "react-native-orientation-locker-dummy.m"; sourceTree = "<group>"; }; - 04D979379AC3B5C4CC390B73EEDE68C6 /* GLog.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = GLog.h; path = folly/GLog.h; sourceTree = "<group>"; }; - 04EE6D85344BB560A07B1DB6773B6A74 /* decode.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = decode.h; path = src/webp/decode.h; sourceTree = "<group>"; }; - 04EFE173DFCD42C297A5081E121E245C /* Malloc.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Malloc.h; path = folly/memory/Malloc.h; sourceTree = "<group>"; }; - 0510A61DB27979267FAF3006A1A0C607 /* nanopb-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "nanopb-dummy.m"; sourceTree = "<group>"; }; - 051BC3CCB1F2C53A32AE05774FB983A7 /* MicroSpinLock.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = MicroSpinLock.h; path = folly/MicroSpinLock.h; sourceTree = "<group>"; }; - 05292F4C9A6B2D46210E32F7F6BBAE86 /* SDWebImageDefine.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = SDWebImageDefine.m; path = SDWebImage/Core/SDWebImageDefine.m; sourceTree = "<group>"; }; - 0529D73D9878D4E0EC0416AE14565F83 /* MMKV-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "MMKV-dummy.m"; sourceTree = "<group>"; }; - 0539C95CC07C94AB1B181AEADF6BE8F3 /* BSG_KSCrashReportWriter.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BSG_KSCrashReportWriter.h; sourceTree = "<group>"; }; - 0559FF4F31D9F39593DA553690AC4BBF /* react-native-orientation-locker.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "react-native-orientation-locker.release.xcconfig"; sourceTree = "<group>"; }; - 058BEC2FCC8D1DBEBCBBF9C636C2C347 /* vp8_dec.c */ = {isa = PBXFileReference; includeInIndex = 1; name = vp8_dec.c; path = src/dec/vp8_dec.c; sourceTree = "<group>"; }; - 05C1523679D85B2912D83941C003FF06 /* KeyboardTrackingViewTempManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = KeyboardTrackingViewTempManager.h; sourceTree = "<group>"; }; - 05C29C67833AA8536353E274D98D3DF9 /* Fixture.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Fixture.h; path = rsocket/benchmarks/Fixture.h; sourceTree = "<group>"; }; - 05DDF222C3236A930FA1D2041D5FB6DF /* RCTAnimationPlugins.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTAnimationPlugins.mm; sourceTree = "<group>"; }; - 05EB11B4088E4CA6D0CB872253BCFCCF /* dynamic.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = dynamic.h; path = folly/dynamic.h; sourceTree = "<group>"; }; - 05FAE5D72DBDBDFEF33497FEB33A3454 /* fr.lproj */ = {isa = PBXFileReference; includeInIndex = 1; name = fr.lproj; path = ios/QBImagePicker/QBImagePicker/fr.lproj; sourceTree = "<group>"; }; - 0632EB5F7E65E53CB0E9FB0623CE095F /* SDImageIOCoder.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SDImageIOCoder.h; path = SDWebImage/Core/SDImageIOCoder.h; sourceTree = "<group>"; }; - 06384479D373E19F9C14A08E0BFF3788 /* RCTNativeAnimatedTurboModule.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTNativeAnimatedTurboModule.h; path = Libraries/NativeAnimation/RCTNativeAnimatedTurboModule.h; sourceTree = "<group>"; }; - 065FBA790EB915D267BFD279DCEA5863 /* F14Mask.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = F14Mask.h; path = folly/container/detail/F14Mask.h; sourceTree = "<group>"; }; - 0696B943EDC4A311B847984997C71865 /* react-native-mmkv-storage.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "react-native-mmkv-storage.release.xcconfig"; sourceTree = "<group>"; }; - 069B7DCA8602CC04FFB29B10C5827D79 /* SKResponseInfo.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = SKResponseInfo.m; path = iOS/Plugins/FlipperKitNetworkPlugin/FlipperKitNetworkPlugin/SKResponseInfo.m; sourceTree = "<group>"; }; - 06C5D22E47F15524A4FB15097A215F42 /* UMDefines.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = UMDefines.h; path = UMCore/UMDefines.h; sourceTree = "<group>"; }; - 06D9659F8777F15807BD0E8F05A9A56A /* ObservableOperator.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ObservableOperator.h; path = yarpl/observable/ObservableOperator.h; sourceTree = "<group>"; }; - 06ECDC5ED362821B60045388E5F81984 /* NSBezierPath+SDRoundedCorners.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "NSBezierPath+SDRoundedCorners.h"; path = "SDWebImage/Private/NSBezierPath+SDRoundedCorners.h"; sourceTree = "<group>"; }; - 06EF2F083C06FEFE6A287DC283072E67 /* PropagateConst.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = PropagateConst.h; path = folly/lang/PropagateConst.h; sourceTree = "<group>"; }; - 06F5134F46BE5F3A905A0A76DA52F28E /* filters_utils.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = filters_utils.h; path = src/utils/filters_utils.h; sourceTree = "<group>"; }; + 04D08E4AB39F12B8216A993C6B175CE7 /* Math.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Math.h; path = folly/portability/Math.h; sourceTree = "<group>"; }; + 04D284FE3432B8715AC627BF4DEBCE70 /* react-native-orientation-locker.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "react-native-orientation-locker.release.xcconfig"; sourceTree = "<group>"; }; + 04DCACFC45902D2E1B8D9090875D8207 /* FIRInstallationsHTTPError.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRInstallationsHTTPError.h; path = FirebaseInstallations/Source/Library/Errors/FIRInstallationsHTTPError.h; sourceTree = "<group>"; }; + 04EEAA335768D82E2096B37C92B22236 /* BSG_KSBacktrace.c */ = {isa = PBXFileReference; includeInIndex = 1; path = BSG_KSBacktrace.c; sourceTree = "<group>"; }; + 04F74B42605AD4081D49B2EFD520349E /* Conv.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Conv.h; path = folly/Conv.h; sourceTree = "<group>"; }; + 04FE1C48C270E5E94A361C0453358D2A /* Flipper-Folly.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "Flipper-Folly.debug.xcconfig"; sourceTree = "<group>"; }; + 05022649DAA6871B26D0DE0DB3506559 /* ARTText.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = ARTText.m; path = ios/ARTText.m; sourceTree = "<group>"; }; + 051A45F3034AE2C79868BC8527E387A9 /* SDImageIOAnimatedCoder.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SDImageIOAnimatedCoder.h; path = SDWebImage/Core/SDImageIOAnimatedCoder.h; sourceTree = "<group>"; }; + 053C50443DEEF5963D7872427E38B8D8 /* Function.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Function.h; path = folly/Function.h; sourceTree = "<group>"; }; + 053CA373BD5F378835A56B7120D20A24 /* GDTCORConsoleLogger.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = GDTCORConsoleLogger.h; path = GoogleDataTransport/GDTCORLibrary/Public/GoogleDataTransport/GDTCORConsoleLogger.h; sourceTree = "<group>"; }; + 053E3A7AAD384AE8FC5937DADE6C0E1B /* ThreadId.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ThreadId.h; path = folly/system/ThreadId.h; sourceTree = "<group>"; }; + 0559B220F8B769FB44D5122A56DB397A /* PackedSyncPtr.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = PackedSyncPtr.h; path = folly/PackedSyncPtr.h; sourceTree = "<group>"; }; + 055D080F25379DA6232697488611E3A9 /* RSocketErrors.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RSocketErrors.h; path = rsocket/RSocketErrors.h; sourceTree = "<group>"; }; + 055F0E9CE681A8EA4F97ED0376B32CF3 /* DeviceUID.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = DeviceUID.m; path = ios/RNDeviceInfo/DeviceUID.m; sourceTree = "<group>"; }; + 0574B06E6531E44B4662F577344A737C /* RSocketStats.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RSocketStats.h; path = rsocket/RSocketStats.h; sourceTree = "<group>"; }; + 0581B46ACFAAE812B3732D7DDACB87B3 /* EXLocalAuthentication.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = EXLocalAuthentication.release.xcconfig; sourceTree = "<group>"; }; + 058AF4D7607263A25050FC3216C423CF /* lossless_mips_dsp_r2.c */ = {isa = PBXFileReference; includeInIndex = 1; name = lossless_mips_dsp_r2.c; path = src/dsp/lossless_mips_dsp_r2.c; sourceTree = "<group>"; }; + 05B07042EA64AC71F4F63F6A2A59458E /* REATransitionAnimation.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = REATransitionAnimation.m; sourceTree = "<group>"; }; + 05BBEAFED41DC04A0FEF07809A9016E7 /* SDAssociatedObject.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = SDAssociatedObject.m; path = SDWebImage/Private/SDAssociatedObject.m; sourceTree = "<group>"; }; + 05CE3277C27232C1B6D3FCC327942A63 /* IOVec.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = IOVec.h; path = folly/portability/IOVec.h; sourceTree = "<group>"; }; + 05D9534D56631962FF95E76190B6D47D /* ARTSurfaceView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = ARTSurfaceView.m; path = ios/ARTSurfaceView.m; sourceTree = "<group>"; }; + 05DF05B7D3E36C80C7FA667E676BEC39 /* lossless_neon.c */ = {isa = PBXFileReference; includeInIndex = 1; name = lossless_neon.c; path = src/dsp/lossless_neon.c; sourceTree = "<group>"; }; + 05E986F5F42A4CD27147D702D802B7D3 /* BugsnagKVStore.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BugsnagKVStore.h; sourceTree = "<group>"; }; + 05EB8F810BAF57C53BB703D4662738BE /* FirebaseCoreDiagnostics-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "FirebaseCoreDiagnostics-dummy.m"; sourceTree = "<group>"; }; + 05F74C60688AE79827C594897973B2A1 /* StringKeyedSet.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = StringKeyedSet.h; path = folly/experimental/StringKeyedSet.h; sourceTree = "<group>"; }; + 05FEF18BBE69CEA1E69CCFCDCA99C400 /* PriorityUnboundedBlockingQueue.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = PriorityUnboundedBlockingQueue.h; path = folly/executors/task_queue/PriorityUnboundedBlockingQueue.h; sourceTree = "<group>"; }; + 05FF7F5F46CBAFD53BE30C7793900B0B /* UMFontInterface.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = UMFontInterface.podspec; sourceTree = "<group>"; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; + 06004423AC586CB77ACA75094F5A49CE /* log_severity.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = log_severity.h; path = src/glog/log_severity.h; sourceTree = "<group>"; }; + 06011A6CDB80AEEF08F8150720A83252 /* ImageCropPicker.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = ImageCropPicker.m; path = ios/src/ImageCropPicker.m; sourceTree = "<group>"; }; + 061526E906CF56F9E500DA4E33B7AAFE /* BSGInternalErrorReporter.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = BSGInternalErrorReporter.m; sourceTree = "<group>"; }; + 061AE9077C7DE3A8143E392D2A7D4066 /* ARTLinearGradient.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = ARTLinearGradient.h; sourceTree = "<group>"; }; + 062953F1B67261D26E09D46FAA488F99 /* PolyDetail.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = PolyDetail.h; path = folly/detail/PolyDetail.h; sourceTree = "<group>"; }; + 063AF346E76173BF316BDBADEB6006B3 /* Demangle.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Demangle.h; path = folly/detail/Demangle.h; sourceTree = "<group>"; }; + 063E4525BA253FEC8A4D1283D8465E2D /* SKSwizzle.mm */ = {isa = PBXFileReference; includeInIndex = 1; name = SKSwizzle.mm; path = iOS/Plugins/FlipperKitLayoutPlugin/FlipperKitLayoutPlugin/utils/SKSwizzle.mm; sourceTree = "<group>"; }; + 0641C1A8B6C6A5462693D901E04AA211 /* SafeAreaSpacerShadowView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = SafeAreaSpacerShadowView.m; sourceTree = "<group>"; }; + 066C8FC82B14EF8D39E443B77EC76E7B /* REATransitionValues.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = REATransitionValues.m; sourceTree = "<group>"; }; + 06873E0A4CB49236155789B1F95DB50A /* UIView+Yoga.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "UIView+Yoga.m"; path = "YogaKit/Source/UIView+Yoga.m"; sourceTree = "<group>"; }; + 0688EA3F66749DAB0F240F8FDBC6E235 /* RCTMaskedView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTMaskedView.h; sourceTree = "<group>"; }; + 0694EDDE053361188526595B567D3F78 /* Constexpr.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Constexpr.h; path = folly/portability/Constexpr.h; sourceTree = "<group>"; }; + 06B25885B5B7649C2548FCE36F209555 /* YGStyle.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = YGStyle.h; path = yoga/YGStyle.h; sourceTree = "<group>"; }; + 06B347FA46B79F4E5A2FCB6BD159E2C8 /* FutureSplitter.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FutureSplitter.h; path = folly/futures/FutureSplitter.h; sourceTree = "<group>"; }; + 06B9F2E38CB833CB416F49333DCD7B8C /* RCTSurface.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTSurface.mm; sourceTree = "<group>"; }; + 06BD4A267267B4315362C6B45E1AE78E /* Restart.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = Restart.m; path = ios/Restart.m; sourceTree = "<group>"; }; + 06D053228E60AF771B0AA73C61CD543C /* GULKeychainStorage.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = GULKeychainStorage.h; path = GoogleUtilities/Environment/Private/GULKeychainStorage.h; sourceTree = "<group>"; }; + 06EF85DD840F7872D266867149DA3AA7 /* FBLPromise+Recover.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "FBLPromise+Recover.h"; path = "Sources/FBLPromises/include/FBLPromise+Recover.h"; sourceTree = "<group>"; }; + 06F2263D2C162FB6EBDC2E0471865FF0 /* SDWebImageDownloader.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = SDWebImageDownloader.m; path = SDWebImage/Core/SDWebImageDownloader.m; sourceTree = "<group>"; }; 06FC5C9CF96D60C50FCD47D339C91951 /* libnanopb.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; name = libnanopb.a; path = libnanopb.a; sourceTree = BUILT_PRODUCTS_DIR; }; - 0700BA622A0AFEE9C4E6E9C7422B940A /* FlipperStateUpdateListener.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FlipperStateUpdateListener.h; path = xplat/Flipper/FlipperStateUpdateListener.h; sourceTree = "<group>"; }; - 070AF3A34162C4E169CC46A26A40058E /* MallocImpl.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = MallocImpl.cpp; path = folly/memory/detail/MallocImpl.cpp; sourceTree = "<group>"; }; - 071524D959DA1A66674ED6538F569B20 /* GULReachabilityMessageCode.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = GULReachabilityMessageCode.h; path = GoogleUtilities/Reachability/Private/GULReachabilityMessageCode.h; sourceTree = "<group>"; }; - 0717248847249C2F0906B2AF1AC14BA2 /* ARTSurfaceViewManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = ARTSurfaceViewManager.h; sourceTree = "<group>"; }; - 071CA81D30430B1FFA956BD72ABB280A /* LICENSE */ = {isa = PBXFileReference; includeInIndex = 1; path = LICENSE; sourceTree = "<group>"; }; - 073A0F73F0D948124331D5ED633FED78 /* GULSwizzler.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = GULSwizzler.m; path = GoogleUtilities/MethodSwizzler/GULSwizzler.m; sourceTree = "<group>"; }; - 073C7A7AF4093E077B81947FA20CD463 /* NetOps.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = NetOps.h; path = folly/net/NetOps.h; sourceTree = "<group>"; }; - 075FCEEF9548E5D0153233C7A55D489D /* RCTBaseTextInputView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTBaseTextInputView.h; sourceTree = "<group>"; }; - 077BEFF3805136F3DA0C317B2C868616 /* RCTLayoutAnimationGroup.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTLayoutAnimationGroup.m; sourceTree = "<group>"; }; - 077F291B3D51FC13039F9019F22DEA24 /* AsyncTrace.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = AsyncTrace.h; path = folly/detail/AsyncTrace.h; sourceTree = "<group>"; }; - 077F86B7F0AB320485085AB7FE12E1DE /* ARTShape.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = ARTShape.m; path = ios/ARTShape.m; sourceTree = "<group>"; }; - 0799A00B1DC38572550D734432304845 /* FIRInstallationsErrors.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRInstallationsErrors.h; path = FirebaseInstallations/Source/Library/Public/FIRInstallationsErrors.h; sourceTree = "<group>"; }; - 07A975EBBEF16BAA2DD5A684DF560E5B /* RNLongPressHandler.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RNLongPressHandler.m; sourceTree = "<group>"; }; - 07A9DC99CB96BC7EB1CBC7EFF6B4718A /* RCTManagedPointer.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTManagedPointer.h; sourceTree = "<group>"; }; - 07B23753CEF78E886235745063A4B131 /* FIRInstallationsErrorUtil.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRInstallationsErrorUtil.m; path = FirebaseInstallations/Source/Library/Errors/FIRInstallationsErrorUtil.m; sourceTree = "<group>"; }; - 07BABC1C04DAB1CEC0A77A7D6B220B6A /* BugsnagSessionFileStore.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = BugsnagSessionFileStore.m; sourceTree = "<group>"; }; - 07CC778AB6214B8185DC0E6A75BB8F83 /* IOBuf.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = IOBuf.h; path = folly/io/IOBuf.h; sourceTree = "<group>"; }; - 07DF80C3CCE5F07D6160CBD62078D66D /* FIRInstallationsStore.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRInstallationsStore.h; path = FirebaseInstallations/Source/Library/InstallationsStore/FIRInstallationsStore.h; sourceTree = "<group>"; }; - 07E05E20935578086C3DCD67D966155F /* String-inl.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "String-inl.h"; path = "folly/String-inl.h"; sourceTree = "<group>"; }; - 07F8A416674D20EB4979BAF9EBF3D176 /* JsArgumentHelpers-inl.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "JsArgumentHelpers-inl.h"; sourceTree = "<group>"; }; - 080AB2B7CB8699758B3D6C0D17453CBC /* SanitizeLeak.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SanitizeLeak.h; path = folly/memory/SanitizeLeak.h; sourceTree = "<group>"; }; - 081CDA12B85E6970A4DD9FBE607A3AAB /* LICENSE */ = {isa = PBXFileReference; includeInIndex = 1; path = LICENSE; sourceTree = "<group>"; }; - 08272036C5209030B6CF0F4CEFE8A1DA /* RCTTypeSafety-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "RCTTypeSafety-dummy.m"; sourceTree = "<group>"; }; - 08383837DC6D5400661DBAEDFAC174C8 /* RNCPicker.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNCPicker.m; path = ios/RNCPicker.m; sourceTree = "<group>"; }; - 0838CF8772F2CC870DF0D5BF82E230A3 /* LICENSE */ = {isa = PBXFileReference; includeInIndex = 1; path = LICENSE; sourceTree = "<group>"; }; - 083D2D5543B3909AD297AD13441396FE /* dec_mips32.c */ = {isa = PBXFileReference; includeInIndex = 1; name = dec_mips32.c; path = src/dsp/dec_mips32.c; sourceTree = "<group>"; }; - 084464DD1DF0BC6D3E42DE008CC002BA /* FIRCoreDiagnosticsConnector.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRCoreDiagnosticsConnector.h; path = FirebaseCore/Sources/Private/FIRCoreDiagnosticsConnector.h; sourceTree = "<group>"; }; - 0846660998DB5993367CE75C3BE71D85 /* Chrono.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Chrono.h; path = folly/Chrono.h; sourceTree = "<group>"; }; - 0846ECB42999CAB007D3A70379B7B14A /* NSData+EXFileSystem.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "NSData+EXFileSystem.h"; path = "EXFileSystem/NSData+EXFileSystem.h"; sourceTree = "<group>"; }; - 08593D01040FC8FE0D5E332C14128C19 /* GDTCORPlatform.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = GDTCORPlatform.h; path = GoogleDataTransport/GDTCORLibrary/Public/GDTCORPlatform.h; sourceTree = "<group>"; }; - 0864B6FE4C4AD67DAF5C6DE9C9DCA1EE /* React-RCTSettings-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "React-RCTSettings-prefix.pch"; sourceTree = "<group>"; }; - 086B1B9630B10C0C7A5C473B6B1D4EDD /* frame_dec.c */ = {isa = PBXFileReference; includeInIndex = 1; name = frame_dec.c; path = src/dec/frame_dec.c; sourceTree = "<group>"; }; - 0870CA6F2AB8D35483D97F6189570EB4 /* ReactNativeUiLib-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "ReactNativeUiLib-prefix.pch"; sourceTree = "<group>"; }; - 088D72C0DB7BE89FA9B04E9896A589D5 /* React-RCTVibration.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "React-RCTVibration.debug.xcconfig"; sourceTree = "<group>"; }; - 08A0BFC7788EA8338F32393B48AEC433 /* REATransitionManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = REATransitionManager.m; sourceTree = "<group>"; }; - 08A2D3ED61203699C6E69AEB06D1C0BA /* FIRCLSOnboardingOperation.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRCLSOnboardingOperation.h; path = Crashlytics/Crashlytics/Settings/Operations/FIRCLSOnboardingOperation.h; sourceTree = "<group>"; }; - 08AB72659E4E8BC3FCDF3F0DEB0E6611 /* Future.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Future.h; path = folly/futures/Future.h; sourceTree = "<group>"; }; - 08C0C37735B43D597197AEF6D2CDE1C9 /* RCTFrameUpdate.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTFrameUpdate.h; sourceTree = "<group>"; }; + 07112AD0BBE4E4D25675317B961F84F6 /* Common.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Common.h; path = rsocket/internal/Common.h; sourceTree = "<group>"; }; + 072312C81694A72402DA2D45C84080FC /* RNGestureHandlerManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNGestureHandlerManager.m; path = ios/RNGestureHandlerManager.m; sourceTree = "<group>"; }; + 07273EED1F5B917483CD56BA5AB3295B /* SerialExecutor.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SerialExecutor.h; path = folly/executors/SerialExecutor.h; sourceTree = "<group>"; }; + 073BE3EF857A2E9BD04B152B8F9524CD /* JSINativeModules.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = JSINativeModules.cpp; path = jsireact/JSINativeModules.cpp; sourceTree = "<group>"; }; + 073C868461DCB538690281862C697D26 /* pb_decode.c */ = {isa = PBXFileReference; includeInIndex = 1; path = pb_decode.c; sourceTree = "<group>"; }; + 07582AB9F05DAA6E75C45920AD53BB92 /* openssl_aes-armv4.S */ = {isa = PBXFileReference; includeInIndex = 1; name = "openssl_aes-armv4.S"; path = "Core/aes/openssl/openssl_aes-armv4.S"; sourceTree = "<group>"; }; + 07699F4D62CD6E1C3475F29B38DBC463 /* RNRootView.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = RNRootView.debug.xcconfig; sourceTree = "<group>"; }; + 07774C1286725FE266209BEA16EC979C /* React-Core.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "React-Core.release.xcconfig"; sourceTree = "<group>"; }; + 07B37CA28D908A0CB36555375A78DC3F /* FIRCLSSymbolResolver.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRCLSSymbolResolver.m; path = Crashlytics/Crashlytics/Models/FIRCLSSymbolResolver.m; sourceTree = "<group>"; }; + 07BEBBAD948D4A1DEFC269F12E5E80BF /* RCTCxxBridge.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTCxxBridge.mm; sourceTree = "<group>"; }; + 07C3205E4A1A8E1FE600A520F293F4C4 /* FlipperState.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FlipperState.h; path = xplat/Flipper/FlipperState.h; sourceTree = "<group>"; }; + 07F73D1FFAF03D36C9090687099B6CF4 /* openssl_md5_locl.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = openssl_md5_locl.h; path = Core/aes/openssl/openssl_md5_locl.h; sourceTree = "<group>"; }; + 08010035679FEE5E6091D4ACF7366ADE /* Allowance.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Allowance.h; path = rsocket/internal/Allowance.h; sourceTree = "<group>"; }; + 080367C90F95842DA2BBF4979BDFB28C /* api.md */ = {isa = PBXFileReference; includeInIndex = 1; name = api.md; path = docs/api.md; sourceTree = "<group>"; }; + 080A1D3B1E79E0B8AB1B717AA686267D /* RNScreens.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = RNScreens.podspec; sourceTree = "<group>"; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; + 0814033B56EE49F64F2BA594ACB95553 /* React-RCTLinking.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = "React-RCTLinking.podspec"; sourceTree = "<group>"; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; + 0816E0856823345233F1C84BC225826A /* SocketAddress.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SocketAddress.h; path = folly/SocketAddress.h; sourceTree = "<group>"; }; + 081D3C4FBA5F23C00AADD0ADC4D6EA3D /* buffer.c */ = {isa = PBXFileReference; includeInIndex = 1; path = buffer.c; sourceTree = "<group>"; }; + 082D12697560FA62C0B82A82EABDD9AC /* SysResource.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = SysResource.cpp; path = folly/portability/SysResource.cpp; sourceTree = "<group>"; }; + 08352C8CAC1838E9D2DE5E829028575D /* FrameTransport.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FrameTransport.h; path = rsocket/framing/FrameTransport.h; sourceTree = "<group>"; }; + 0862772803D66228B31F317DE74EA50F /* PBUtility.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = PBUtility.h; path = Core/PBUtility.h; sourceTree = "<group>"; }; + 0897E020451836245A908CBBB9AFCCD2 /* FlipperState.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = FlipperState.cpp; path = xplat/Flipper/FlipperState.cpp; sourceTree = "<group>"; }; + 08A09F0B00BD8770C1FB2B68A3E816FA /* NamedThreadFactory.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = NamedThreadFactory.h; path = folly/executors/thread_factory/NamedThreadFactory.h; sourceTree = "<group>"; }; + 08A59F0DE37F1C78D22058822CF368F8 /* SaturatingSemaphore.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SaturatingSemaphore.h; path = folly/synchronization/SaturatingSemaphore.h; sourceTree = "<group>"; }; + 08BC4F14D8C21AD5493AE3AAD10AFB48 /* PromisesObjC.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = PromisesObjC.debug.xcconfig; sourceTree = "<group>"; }; + 08BE1AD9E69EDE2425AF86A0B0EC0BBC /* GULNetworkConstants.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = GULNetworkConstants.h; path = GoogleUtilities/Network/Private/GULNetworkConstants.h; sourceTree = "<group>"; }; + 08BF95E4BB3E1137A8F20FE77A35F431 /* jsilib-windows.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; path = "jsilib-windows.cpp"; sourceTree = "<group>"; }; + 08C4EA17FFABE51D59BC0B56CE01ADA7 /* VirtualEventBase.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = VirtualEventBase.h; path = folly/io/async/VirtualEventBase.h; sourceTree = "<group>"; }; + 08C5D7CBDAF06B458488938D1C779CFA /* RCTInputAccessoryViewContent.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTInputAccessoryViewContent.m; sourceTree = "<group>"; }; 08D1FFC2980C1ED72AE9A4C44A0544C3 /* libreact-native-document-picker.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; name = "libreact-native-document-picker.a"; path = "libreact-native-document-picker.a"; sourceTree = BUILT_PRODUCTS_DIR; }; - 08E90EAC02328C836CD7F4397639F4A1 /* react-native-cameraroll-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "react-native-cameraroll-prefix.pch"; sourceTree = "<group>"; }; - 08F6B390C35EA07D9D7C8C2945CEC55D /* React-Core.modulemap */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.module; path = "React-Core.modulemap"; sourceTree = "<group>"; }; - 08F7AB15CCBD249EB8343CB69FCE435F /* TimekeeperScheduledExecutor.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = TimekeeperScheduledExecutor.cpp; path = folly/executors/TimekeeperScheduledExecutor.cpp; sourceTree = "<group>"; }; - 08FA31C50853621E0FBE3852C4C240DC /* ManualTimekeeper.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ManualTimekeeper.h; path = folly/futures/ManualTimekeeper.h; sourceTree = "<group>"; }; - 0916BB36DF829DD5FD4D51AA3D725A7B /* BSG_KSMach_Arm.c */ = {isa = PBXFileReference; includeInIndex = 1; path = BSG_KSMach_Arm.c; sourceTree = "<group>"; }; - 092F24E4BE5DD6FB8A6ABE16A9CDBF1D /* ManualTimekeeper.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = ManualTimekeeper.cpp; path = folly/futures/ManualTimekeeper.cpp; sourceTree = "<group>"; }; - 0935676F54EB3972A0752F9B8008D1CC /* RCTProgressViewManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTProgressViewManager.m; sourceTree = "<group>"; }; - 094CBF061F9D96166BC5518B23A1D231 /* AtomicHashArray.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = AtomicHashArray.h; path = folly/AtomicHashArray.h; sourceTree = "<group>"; }; - 09548D9C5FD0A5969D3B8EF8CA6B4A54 /* symbolize.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = symbolize.cc; path = src/symbolize.cc; sourceTree = "<group>"; }; - 095F9DC78A02A5B297431EB32A49075F /* iocp-internal.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "iocp-internal.h"; sourceTree = "<group>"; }; - 0968102F2373098DC9AE92B7935D4ED8 /* Hazptr.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Hazptr.h; path = folly/synchronization/Hazptr.h; sourceTree = "<group>"; }; - 097D9FA33676D30ACB7766C84788F795 /* FIRCLSSerializeSymbolicatedFramesOperation.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRCLSSerializeSymbolicatedFramesOperation.m; path = Crashlytics/Crashlytics/Operations/Symbolication/FIRCLSSerializeSymbolicatedFramesOperation.m; sourceTree = "<group>"; }; - 098C33BAFFF906D6D3AF3583C8832657 /* REASetNode.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = REASetNode.h; sourceTree = "<group>"; }; - 09980FBD264D2DD8D9054DC82F6EA5F5 /* BSG_KSCrashReportFields.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BSG_KSCrashReportFields.h; sourceTree = "<group>"; }; + 08DD1C8956EFC51591EE871B90105F17 /* GULLoggerCodes.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = GULLoggerCodes.h; path = GoogleUtilities/Common/GULLoggerCodes.h; sourceTree = "<group>"; }; + 08DE0898B00448B8DC9EBFBA87B9844D /* Yoga.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = Yoga.podspec; sourceTree = "<group>"; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; + 08E0C4E5175039C123A7B279B5ACA787 /* RCTDatePickerManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTDatePickerManager.m; sourceTree = "<group>"; }; + 08F0D2E3ABA7D3542334418E87E0D79D /* FIRHeartbeatInfo.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRHeartbeatInfo.h; path = FirebaseCore/Sources/Private/FIRHeartbeatInfo.h; sourceTree = "<group>"; }; + 08F23C71D0DA22DC5CD8E28001306B89 /* RCTTypedModuleConstants.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTTypedModuleConstants.mm; sourceTree = "<group>"; }; + 0919B9D546E6CC2AE651750451966A24 /* README.md */ = {isa = PBXFileReference; includeInIndex = 1; path = README.md; sourceTree = "<group>"; }; + 092A59B0825956A4A19571C2B83804ED /* FIRCLSHandler.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRCLSHandler.h; path = Crashlytics/Crashlytics/Handlers/FIRCLSHandler.h; sourceTree = "<group>"; }; + 09322B44A4B65A65AEB5CCB2A09BCCC2 /* ReactMarker.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = ReactMarker.h; sourceTree = "<group>"; }; + 09329ADBC95266AAE6EBA50B5B8A9A47 /* RCTVibration.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTVibration.h; path = Libraries/Vibration/RCTVibration.h; sourceTree = "<group>"; }; + 093D1518CAF330513DA2F72FD5219870 /* RNTapHandler.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RNTapHandler.h; sourceTree = "<group>"; }; + 094BE4C397D199EA39B615A65F6DC4F8 /* RNDateTimePicker.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNDateTimePicker.m; path = ios/RNDateTimePicker.m; sourceTree = "<group>"; }; + 0986FD10647DF10B6FE6E6E0CDDA0645 /* localNotifications.md */ = {isa = PBXFileReference; includeInIndex = 1; name = localNotifications.md; path = docs/localNotifications.md; sourceTree = "<group>"; }; 09B5856105EF7C6447B9EC57E7E36B34 /* libEXKeepAwake.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; name = libEXKeepAwake.a; path = libEXKeepAwake.a; sourceTree = BUILT_PRODUCTS_DIR; }; - 09C34605C950C91E8CCCD2F4AEDB7101 /* Hazptr.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = Hazptr.cpp; path = folly/synchronization/Hazptr.cpp; sourceTree = "<group>"; }; - 09C6346F854CFF3D0E2B723676D88233 /* EXSessionTaskDelegate.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = EXSessionTaskDelegate.h; sourceTree = "<group>"; }; - 09E75510AF24F314A6051E17B976164F /* FlipperKitReactPlugin.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FlipperKitReactPlugin.h; path = iOS/Plugins/FlipperKitReactPlugin/FlipperKitReactPlugin/FlipperKitReactPlugin.h; sourceTree = "<group>"; }; - 09F08A801E02AEB6C1E8F95750DFC75C /* StaticSingletonManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = StaticSingletonManager.h; path = folly/detail/StaticSingletonManager.h; sourceTree = "<group>"; }; - 0A15D754AC491E925BECDFAEEEFDF7B4 /* Foundation.ttf */ = {isa = PBXFileReference; includeInIndex = 1; name = Foundation.ttf; path = Fonts/Foundation.ttf; sourceTree = "<group>"; }; - 0A1AB6D01744E2320165DCECBB1BE4F9 /* BugsnagLastRunInfo+Private.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "BugsnagLastRunInfo+Private.h"; sourceTree = "<group>"; }; - 0A466DFCCBBD36B9700AC88D7B170FE2 /* Bits.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Bits.h; path = folly/Bits.h; sourceTree = "<group>"; }; - 0A467EA9EDF19944AF6E37B46B9583FC /* FirebaseInstallations.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = FirebaseInstallations.debug.xcconfig; sourceTree = "<group>"; }; - 0A56B007166F99AFBC7ED5B55A6B28B0 /* ThreadLocal.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ThreadLocal.h; path = folly/ThreadLocal.h; sourceTree = "<group>"; }; - 0A5EB232FEA7CEB1E0F7D4D8788C470F /* Allowance.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Allowance.h; path = rsocket/internal/Allowance.h; sourceTree = "<group>"; }; - 0A7315913B6B00C96B1969BC6DB6EA51 /* BSG_KSCrashState.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BSG_KSCrashState.h; sourceTree = "<group>"; }; - 0A7589870AE8D1910F6EEA19A4EBE644 /* FIRCLSSettingsOnboardingManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRCLSSettingsOnboardingManager.h; path = Crashlytics/Crashlytics/Settings/FIRCLSSettingsOnboardingManager.h; sourceTree = "<group>"; }; - 0A7AB20268DD9E2D622B86E629FAA4AD /* MiniPBCoder.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = MiniPBCoder.cpp; path = Core/MiniPBCoder.cpp; sourceTree = "<group>"; }; - 0A7C4523B69E2AA2672DFA346EE4BE43 /* EXImageLoader-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "EXImageLoader-prefix.pch"; sourceTree = "<group>"; }; - 0A8135C214F18C12DA255B2595E7E617 /* UMAppLifecycleListener.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = UMAppLifecycleListener.h; sourceTree = "<group>"; }; - 0A87D13283D45B725FCA1772F8ACC6C5 /* minheap-internal.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "minheap-internal.h"; sourceTree = "<group>"; }; - 0A8FD8A2B5ADA3C0135616C5DB527628 /* BSG_KSCrashSentry_CPPException.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BSG_KSCrashSentry_CPPException.h; sourceTree = "<group>"; }; - 0A99368FA9B7C56371503B6CE44602A8 /* RCTTransformAnimatedNode.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTTransformAnimatedNode.m; sourceTree = "<group>"; }; - 0AA408A83949F54272C0B48056AB7749 /* UMNativeModulesProxy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = UMNativeModulesProxy.m; sourceTree = "<group>"; }; - 0AA7D6C7EE116FB089F092288EDD2DDB /* AtomicNotification.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = AtomicNotification.h; path = folly/synchronization/AtomicNotification.h; sourceTree = "<group>"; }; - 0AAB951C7E48D6D0976BFBBFE23D2F04 /* StorageIndexer.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = StorageIndexer.h; path = ios/StorageIndexer.h; sourceTree = "<group>"; }; - 0ABF1EC3358A7E3827364D165457E312 /* RNRandomBytes.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNRandomBytes.h; path = ios/RCTCrypto/RNRandomBytes.h; sourceTree = "<group>"; }; - 0AE8790703D5118D50FCE795027DAE86 /* FIRCLSException.mm */ = {isa = PBXFileReference; includeInIndex = 1; name = FIRCLSException.mm; path = Crashlytics/Crashlytics/Handlers/FIRCLSException.mm; sourceTree = "<group>"; }; - 0AE90D932F5FFCC1DBCCA7B9D17A6B0C /* Constexpr.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Constexpr.h; path = folly/portability/Constexpr.h; sourceTree = "<group>"; }; - 0AEA0EB941EDBAE9DCC795D9615CD443 /* FIRDiagnosticsData.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRDiagnosticsData.h; path = FirebaseCore/Sources/FIRDiagnosticsData.h; sourceTree = "<group>"; }; - 0B128A0B7CEFBBB191EF90420A0CCC0C /* MMKVLog_Android.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = MMKVLog_Android.cpp; path = Core/MMKVLog_Android.cpp; sourceTree = "<group>"; }; - 0B2797F574294906070F7BE48ECC1B64 /* IOObjectCache.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = IOObjectCache.h; path = folly/executors/IOObjectCache.h; sourceTree = "<group>"; }; - 0B2BF373E5089F4C67C4A01143AC410A /* BugsnagDevice.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = BugsnagDevice.m; sourceTree = "<group>"; }; - 0B32040CFCC394F3ABA8903C6AD30C71 /* FIRInstallations.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRInstallations.h; path = FirebaseInstallations/Source/Library/Public/FIRInstallations.h; sourceTree = "<group>"; }; - 0B4CE6901EC9E33F4A67CF767719781D /* SDAssociatedObject.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SDAssociatedObject.h; path = SDWebImage/Private/SDAssociatedObject.h; sourceTree = "<group>"; }; - 0B5104E51CBBF3CC7204A871489BF7FA /* RCTTypedModuleConstants.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTTypedModuleConstants.h; sourceTree = "<group>"; }; - 0B55A127DD622501C234A7CAB8F25911 /* AtomicSharedPtr.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = AtomicSharedPtr.h; path = folly/concurrency/AtomicSharedPtr.h; sourceTree = "<group>"; }; - 0B5AB93A1A9D7CB8293F5DDF39830F9C /* fast-dtoa.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = "fast-dtoa.cc"; path = "double-conversion/fast-dtoa.cc"; sourceTree = "<group>"; }; - 0B5DDF99B9B8A7E45B951E939DAB22B0 /* Core.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Core.h; path = folly/gen/Core.h; sourceTree = "<group>"; }; - 0B6320C3DD794AA8706FA4994AD76ADA /* SingletonStackTrace.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = SingletonStackTrace.cpp; path = folly/detail/SingletonStackTrace.cpp; sourceTree = "<group>"; }; - 0B67C4B41669063ADAD31C56F4EF5A81 /* Try-inl.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "Try-inl.h"; path = "folly/Try-inl.h"; sourceTree = "<group>"; }; - 0B6D05B848280DC9B65AF5FC24F1F294 /* react-native-restart.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = "react-native-restart.podspec"; sourceTree = "<group>"; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; - 0B74A30016078BE56D8EE4ADF85FB7C6 /* RCTUITextView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTUITextView.m; sourceTree = "<group>"; }; - 0B7EED2877664F3483849BEAA627B0CA /* RCTActivityIndicatorView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTActivityIndicatorView.m; sourceTree = "<group>"; }; - 0B87A5BBA8FA573F708551CD582ECB53 /* BSG_KSDynamicLinker.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BSG_KSDynamicLinker.h; sourceTree = "<group>"; }; - 0B8F8F56D3C45B3777329256B1275595 /* CodedOutputData.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = CodedOutputData.cpp; path = Core/CodedOutputData.cpp; sourceTree = "<group>"; }; - 0B922E44971B3921CDD009FE8B22C4CF /* Conv.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = Conv.cpp; path = folly/Conv.cpp; sourceTree = "<group>"; }; - 0B9F4EA75F69F6FBF04FED883FE345FF /* Tearable.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Tearable.h; path = folly/synchronization/Tearable.h; sourceTree = "<group>"; }; - 0BCE31A8D64EFB8D1E1ADDB316355ADA /* Dirent.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = Dirent.cpp; path = folly/portability/Dirent.cpp; sourceTree = "<group>"; }; - 0BD55AF06C4C5D21CB16B94666B41A91 /* Math.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Math.h; path = folly/portability/Math.h; sourceTree = "<group>"; }; - 0BE000220127DEB6910FDC7390249D2C /* README.md */ = {isa = PBXFileReference; includeInIndex = 1; path = README.md; sourceTree = "<group>"; }; - 0BF02578CD55A4686096FD853394854D /* StreamFragmentAccumulator.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = StreamFragmentAccumulator.h; path = rsocket/statemachine/StreamFragmentAccumulator.h; sourceTree = "<group>"; }; - 0C123BAA55F6AFD3FBB4D6479169F9F8 /* Base-inl.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "Base-inl.h"; path = "folly/gen/Base-inl.h"; sourceTree = "<group>"; }; - 0C1F0F63DF855EE0FDBA4FD6852B893E /* PBEncodeItem.hpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.h; name = PBEncodeItem.hpp; path = Core/PBEncodeItem.hpp; sourceTree = "<group>"; }; - 0C399D5AF94FACC5E5C007509E34ABC1 /* DeferFlowable.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = DeferFlowable.h; path = yarpl/flowable/DeferFlowable.h; sourceTree = "<group>"; }; + 09D6EFDB171D78BA44DC89773C4C4CAF /* TimekeeperScheduledExecutor.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = TimekeeperScheduledExecutor.h; path = folly/executors/TimekeeperScheduledExecutor.h; sourceTree = "<group>"; }; + 09F09D9CAEC455E79664FD96C88C27CF /* RCTImageURLLoader.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTImageURLLoader.h; path = Libraries/Image/RCTImageURLLoader.h; sourceTree = "<group>"; }; + 0A014A04182AFA2C3A7575F78FC95DB7 /* RCTLogBox.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTLogBox.mm; sourceTree = "<group>"; }; + 0A10EBFACCD271C893BFF7AFBD61C0AA /* SSLErrors.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = SSLErrors.cpp; path = folly/io/async/ssl/SSLErrors.cpp; sourceTree = "<group>"; }; + 0A5068E62DFB91FBFDBF5178997F072B /* RNCAppearance.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNCAppearance.m; path = ios/Appearance/RNCAppearance.m; sourceTree = "<group>"; }; + 0A5A0AA28436D13E729BD269D80AA69B /* README.md */ = {isa = PBXFileReference; includeInIndex = 1; path = README.md; sourceTree = "<group>"; }; + 0A669C2FB3E713DBC488F7E6C7F31FF4 /* Frame.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = Frame.cpp; path = rsocket/framing/Frame.cpp; sourceTree = "<group>"; }; + 0A677091F7E6C895CF485AFF88061238 /* ReactCommon-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "ReactCommon-dummy.m"; sourceTree = "<group>"; }; + 0A72DCC2B270FAEF35327ABE4377E9AB /* RNFetchBlobRequest.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNFetchBlobRequest.m; path = ios/RNFetchBlobRequest.m; sourceTree = "<group>"; }; + 0A7C9BDDFE9D7EF130474212C76F099A /* README.md */ = {isa = PBXFileReference; includeInIndex = 1; path = README.md; sourceTree = "<group>"; }; + 0A848E516FF5E4906E2FE4906CF53101 /* EXReactNativeUserNotificationCenterProxy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = EXReactNativeUserNotificationCenterProxy.m; path = EXPermissions/EXReactNativeUserNotificationCenterProxy.m; sourceTree = "<group>"; }; + 0A9419B6A5D619E948EA95FCA9FBA8E0 /* FIRInstallationsItem.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRInstallationsItem.h; path = FirebaseInstallations/Source/Library/FIRInstallationsItem.h; sourceTree = "<group>"; }; + 0A9ABE163B711F9BB4A60628DCA7F037 /* GoogleUtilities.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = GoogleUtilities.debug.xcconfig; sourceTree = "<group>"; }; + 0AA9F196BCBD8019F6673CD26051C0C3 /* EXVideoView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = EXVideoView.h; sourceTree = "<group>"; }; + 0AB70B3409E908C33138CAB53F67E0D5 /* EventBase.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = EventBase.cpp; path = folly/io/async/EventBase.cpp; sourceTree = "<group>"; }; + 0AC7FC3622777EC65F2374A6FEDEB0AE /* Registration.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; path = Registration.cpp; sourceTree = "<group>"; }; + 0ACF20B0ADF9DCB6AEA57FBAA51CFFE5 /* token_enc.c */ = {isa = PBXFileReference; includeInIndex = 1; name = token_enc.c; path = src/enc/token_enc.c; sourceTree = "<group>"; }; + 0ADBD03590FCD60BAC613B75EB93D7DC /* RNCAsyncStorageDelegate.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNCAsyncStorageDelegate.h; path = ios/RNCAsyncStorageDelegate.h; sourceTree = "<group>"; }; + 0B084E28B5044089BE68E914CAF59D5A /* Flipper-DoubleConversion-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "Flipper-DoubleConversion-prefix.pch"; sourceTree = "<group>"; }; + 0B180A6F6802A7A61E6F91452DE30BD0 /* FIRCLSRecordApplication.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRCLSRecordApplication.m; path = Crashlytics/Crashlytics/Models/Record/FIRCLSRecordApplication.m; sourceTree = "<group>"; }; + 0B19F8491F3710791740972EE008C422 /* FIRCLSDwarfExpressionMachine.c */ = {isa = PBXFileReference; includeInIndex = 1; name = FIRCLSDwarfExpressionMachine.c; path = Crashlytics/Crashlytics/Unwind/Dwarf/FIRCLSDwarfExpressionMachine.c; sourceTree = "<group>"; }; + 0B1D49B10CD141FE3920FCD3243E60C2 /* RNPinchHandler.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RNPinchHandler.h; sourceTree = "<group>"; }; + 0B20CF913B2D89B778711D5BABFD1C1E /* ThreadFactory.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ThreadFactory.h; path = folly/executors/thread_factory/ThreadFactory.h; sourceTree = "<group>"; }; + 0B2EC20C1DC93DE0394317053CAD6497 /* ARTTextManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = ARTTextManager.m; sourceTree = "<group>"; }; + 0B300BB25EF30C17CBE911EBDDC1D628 /* GDTCORRegistrar.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = GDTCORRegistrar.h; path = GoogleDataTransport/GDTCORLibrary/Public/GoogleDataTransport/GDTCORRegistrar.h; sourceTree = "<group>"; }; + 0B33D0495A2346C54731C56B6BC40E95 /* NetOps.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = NetOps.h; path = folly/net/NetOps.h; sourceTree = "<group>"; }; + 0B3BD969A42852F70E4CDFEFFE2DA3F7 /* TokenBucket.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = TokenBucket.h; path = folly/TokenBucket.h; sourceTree = "<group>"; }; + 0B3F7CD8E591FB8336568A4AF891318B /* react-native-webview-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "react-native-webview-prefix.pch"; sourceTree = "<group>"; }; + 0B6945C2978DB275FDA87206648F27EE /* react-native-blur.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = "react-native-blur.podspec"; sourceTree = "<group>"; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; + 0B838D9D6DF88EDC387CDC9D18E62515 /* Ordering.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Ordering.h; path = folly/lang/Ordering.h; sourceTree = "<group>"; }; + 0B9F448034B2BA345701C8E30BBE661D /* BSG_KSMachHeaders.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BSG_KSMachHeaders.h; sourceTree = "<group>"; }; + 0B9F6D62020F4CE293D91DB00FBEBB56 /* Rcu.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Rcu.h; path = folly/synchronization/Rcu.h; sourceTree = "<group>"; }; + 0BC0AF6F7F1840A616C4EF1AA18B071A /* RootView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RootView.m; path = ios/RootView.m; sourceTree = "<group>"; }; + 0BD13C95C12A0845B251BAEF7C0E30A1 /* Event.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Event.h; path = folly/portability/Event.h; sourceTree = "<group>"; }; + 0BECBBF1D7639FF3BEDA01B7F7A8D053 /* BSGEventUploadKSCrashReportOperation.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BSGEventUploadKSCrashReportOperation.h; sourceTree = "<group>"; }; + 0BFE29C1897C5044A8A9E72DB815F30C /* EXWebBrowser.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = EXWebBrowser.release.xcconfig; sourceTree = "<group>"; }; + 0C1A36B98A5D3CC289DC78A06B17012A /* UMImageLoaderInterface.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = UMImageLoaderInterface.podspec; sourceTree = "<group>"; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; + 0C2B5C7B89947DABE9B5B1426582AB43 /* FlipperCppBridgingConnection.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FlipperCppBridgingConnection.h; path = iOS/FlipperKit/CppBridge/FlipperCppBridgingConnection.h; sourceTree = "<group>"; }; + 0C33AA1BD6A7309D81776A617E4B7EDF /* Init.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = Init.cpp; path = folly/ssl/Init.cpp; sourceTree = "<group>"; }; + 0C35B1979695650F734AC54105C3ED8F /* Codel.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = Codel.cpp; path = folly/executors/Codel.cpp; sourceTree = "<group>"; }; 0C404EDA3875132C8D70CCF5BD2B3946 /* Pods-defaults-RocketChatRN.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "Pods-defaults-RocketChatRN.release.xcconfig"; sourceTree = "<group>"; }; - 0C64E5996EF4943B03113E475C59389D /* RemoteObjectsTable.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; path = RemoteObjectsTable.cpp; sourceTree = "<group>"; }; - 0CA6A8600BC7313FDE798B2FEB55E2D6 /* rn-fetch-blob.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "rn-fetch-blob.release.xcconfig"; sourceTree = "<group>"; }; - 0CAE1967C4A341DC0BBDF6A55DE59DAC /* RCTI18nManager.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTI18nManager.mm; sourceTree = "<group>"; }; - 0CC423979935EE595B6D7953492ABE5E /* RCTSettingsManager.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTSettingsManager.mm; sourceTree = "<group>"; }; - 0CC82E01F851714C90267C7A7995661C /* README.md */ = {isa = PBXFileReference; includeInIndex = 1; path = README.md; sourceTree = "<group>"; }; - 0CCA0D29921C0C30861DFC9EA324B1CC /* ConnectionDemux.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = ConnectionDemux.h; sourceTree = "<group>"; }; - 0CCD17A67031E9AD6CB5C8FE0052D1EE /* IOBufQueue.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = IOBufQueue.h; path = folly/io/IOBufQueue.h; sourceTree = "<group>"; }; - 0D15D4485815571BD58306D43BF2AB9E /* 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 = "<group>"; }; - 0D260A02AF49F7EB75B4F755BE42C822 /* RCTResizeMode.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTResizeMode.h; path = Libraries/Image/RCTResizeMode.h; sourceTree = "<group>"; }; - 0D2CC58B4BCB1C4FF563AF13F3F12026 /* YGLayout.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = YGLayout.cpp; path = yoga/YGLayout.cpp; sourceTree = "<group>"; }; - 0D4D83CF4BCF22D89386EBB6F4EED2E2 /* SocketOptionMap.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = SocketOptionMap.cpp; path = folly/io/SocketOptionMap.cpp; sourceTree = "<group>"; }; - 0D4E47CF87EA1B46B2B44533C1B5C444 /* RCTStatusBarManager.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTStatusBarManager.mm; sourceTree = "<group>"; }; - 0D5DAD0301106C54829D77F89B127853 /* Yoga.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = Yoga.cpp; path = yoga/Yoga.cpp; sourceTree = "<group>"; }; - 0D5FFC28F633CA358E6A299EB5727859 /* RNDateTimePickerManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNDateTimePickerManager.m; path = ios/RNDateTimePickerManager.m; sourceTree = "<group>"; }; - 0D76CCB0098127BEAEB1754CFB47C021 /* EXFileSystemAssetLibraryHandler.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = EXFileSystemAssetLibraryHandler.h; path = EXFileSystem/EXFileSystemAssetLibraryHandler.h; sourceTree = "<group>"; }; - 0D9C23B493FEC20AFFD1BE25C3AE1594 /* evutil_rand.c */ = {isa = PBXFileReference; includeInIndex = 1; path = evutil_rand.c; sourceTree = "<group>"; }; - 0DADF679A872CBFB525E32F6FFD908B9 /* 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 = "<group>"; }; - 0DDBD5E783F16003D79827A5B335C2E9 /* UIView+React.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "UIView+React.m"; sourceTree = "<group>"; }; - 0DE4DBCF1EF8FB8026A41D493816EC57 /* FBLPromise+Validate.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "FBLPromise+Validate.h"; path = "Sources/FBLPromises/include/FBLPromise+Validate.h"; sourceTree = "<group>"; }; - 0DE687D9E5000F208A06330A2DE48445 /* UMBarometerInterface.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = UMBarometerInterface.h; path = UMSensorsInterface/UMBarometerInterface.h; sourceTree = "<group>"; }; - 0DE80E422D8FB9F62B9655C08E9C59A2 /* Assume.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = Assume.cpp; path = folly/lang/Assume.cpp; sourceTree = "<group>"; }; - 0DF5EBAE45D17E0DE1799E01B3B01984 /* RCTReconnectingWebSocket.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RCTReconnectingWebSocket.m; path = Libraries/WebSocket/RCTReconnectingWebSocket.m; sourceTree = "<group>"; }; - 0DF7D4E5C52A9D6120E9A575058D3F6A /* RCTConstants.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTConstants.h; sourceTree = "<group>"; }; - 0E0FD9AABD54D4C664E1E35921489745 /* Hash.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Hash.h; path = folly/hash/Hash.h; sourceTree = "<group>"; }; - 0E24F4B867825B723C02E2C2EDF698D8 /* React-jsiexecutor.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "React-jsiexecutor.release.xcconfig"; sourceTree = "<group>"; }; - 0E37DC15B8F6DE03E03EB0C7D0597E83 /* AtomicNotification-inl.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "AtomicNotification-inl.h"; path = "folly/synchronization/AtomicNotification-inl.h"; sourceTree = "<group>"; }; - 0E3C403950789D25A935DB168DD8426B /* BugsnagSession.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = BugsnagSession.m; sourceTree = "<group>"; }; - 0E43C7D6E8A94BC0C9E6999D4CF2CF04 /* RNVectorIcons.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = RNVectorIcons.podspec; sourceTree = "<group>"; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; - 0E588F486C0468F453CA323CCA1D6C38 /* BugsnagStateEvent.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = BugsnagStateEvent.m; sourceTree = "<group>"; }; - 0E66BD9275AF1DCFAE284A18EDB3DB96 /* RCTVirtualTextViewManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTVirtualTextViewManager.h; sourceTree = "<group>"; }; - 0E68C66A69B7E5F622F5B5273FC096A4 /* QBAssetsViewController.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = QBAssetsViewController.m; path = ios/QBImagePicker/QBImagePicker/QBAssetsViewController.m; sourceTree = "<group>"; }; - 0E92081CF67467605D8B96788527E441 /* FIRCLSInternalReport.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRCLSInternalReport.h; path = Crashlytics/Crashlytics/Models/FIRCLSInternalReport.h; sourceTree = "<group>"; }; - 0E9D744742CD8F87F0ACEF7E6DC60ADD /* react-native-slider.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "react-native-slider.release.xcconfig"; sourceTree = "<group>"; }; - 0E9FC43B02A652C5EFBABABA7B5033D8 /* IPAddress.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = IPAddress.h; path = folly/detail/IPAddress.h; sourceTree = "<group>"; }; - 0EAC3F88A630AB3DF219B13A70581EEB /* BSG_KSLogger.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BSG_KSLogger.h; sourceTree = "<group>"; }; - 0EB0E8506FB986DC31C6541AA2C48B9F /* OpenSSLUtils.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = OpenSSLUtils.cpp; path = folly/io/async/ssl/OpenSSLUtils.cpp; sourceTree = "<group>"; }; - 0EBF0C796FE60145654DE7FB23E26B32 /* RCTInspectorPackagerConnection.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTInspectorPackagerConnection.h; sourceTree = "<group>"; }; - 0EC88FAC2B7478A7FC834D49B9513A81 /* RCTI18nManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTI18nManager.h; path = React/CoreModules/RCTI18nManager.h; sourceTree = "<group>"; }; - 0ED04B806B0C2054B1FD194C3753377E /* React-RCTLinking-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "React-RCTLinking-dummy.m"; sourceTree = "<group>"; }; - 0EDA77D1B8F449421DC2532D38292393 /* RCTDefines.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTDefines.h; sourceTree = "<group>"; }; - 0F0F007E490BD7A6AD5E2861E1F025A7 /* TurnSequencer.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = TurnSequencer.h; path = folly/detail/TurnSequencer.h; sourceTree = "<group>"; }; - 0F1AF0D76254361FAB87C8DBA8DF7440 /* BSG_KSJSONCodecObjC.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BSG_KSJSONCodecObjC.h; sourceTree = "<group>"; }; - 0F5D190FECA2BE663103CD614226C896 /* huffman_encode_utils.c */ = {isa = PBXFileReference; includeInIndex = 1; name = huffman_encode_utils.c; path = src/utils/huffman_encode_utils.c; sourceTree = "<group>"; }; - 0F6E45DC830E5CA7848322A1858380CD /* ManualExecutor.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = ManualExecutor.cpp; path = folly/executors/ManualExecutor.cpp; sourceTree = "<group>"; }; - 0F71F642AF3DE7DD9E1E4E9BE0B3DBBD /* RNCConnectionState.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNCConnectionState.h; path = ios/RNCConnectionState.h; sourceTree = "<group>"; }; - 0F72487A94BB4E252CC7309942D924D3 /* SecureStorage.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = SecureStorage.m; path = ios/SecureStorage.m; sourceTree = "<group>"; }; - 0F73A7482432ABE08919D16E9DCE3ADC /* pb_encode.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = pb_encode.h; sourceTree = "<group>"; }; - 0FAD6BB44C5FCB7E7D3E10085572B5B0 /* ARTNode.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ARTNode.h; path = ios/ARTNode.h; sourceTree = "<group>"; }; - 0FC97E9950E503E79D263EADAE92167A /* RCTMaskedView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTMaskedView.m; sourceTree = "<group>"; }; - 0FDB50B420BB773426F9F40E91C07B38 /* RNCSafeAreaProvider.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNCSafeAreaProvider.m; path = ios/SafeAreaView/RNCSafeAreaProvider.m; sourceTree = "<group>"; }; - 0FE5ED29CEF5FAFC8F13E402F3E4412C /* RCTMultilineTextInputView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTMultilineTextInputView.h; sourceTree = "<group>"; }; - 100412FA16CB816F8170F047DB52EF09 /* IPAddressV4.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = IPAddressV4.cpp; path = folly/IPAddressV4.cpp; sourceTree = "<group>"; }; - 100FF3BEA5FECADD67AD149C0ECC3CB4 /* JSCRuntime.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; path = JSCRuntime.cpp; sourceTree = "<group>"; }; - 1013FA3489B2E599784CC6B11BEB6AD8 /* YogaKit.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = YogaKit.release.xcconfig; sourceTree = "<group>"; }; - 10357CA40184FA064FBB734CE3ECABC8 /* React-jsinspector.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "React-jsinspector.debug.xcconfig"; sourceTree = "<group>"; }; - 103D85709FAEBE30EE0B816C9B015B9C /* MemoryIdler.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = MemoryIdler.h; path = folly/detail/MemoryIdler.h; sourceTree = "<group>"; }; - 105C6BEDBE480010F2F7F515B213FBBD /* ScheduledExecutor.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ScheduledExecutor.h; path = folly/executors/ScheduledExecutor.h; sourceTree = "<group>"; }; - 10639F022D17F4276CF9139CD9340027 /* EXFileSystem.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = EXFileSystem.h; path = EXFileSystem/EXFileSystem.h; sourceTree = "<group>"; }; - 1076C197124588FD6485535FFF0916BD /* RNDateTimePicker.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = RNDateTimePicker.debug.xcconfig; sourceTree = "<group>"; }; - 107BF0D79A81DCBF9F2C7251D501A63A /* RCTUITextField.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTUITextField.m; sourceTree = "<group>"; }; - 108C40B5CEAA44D87AFF2EFE6CE2ADFF /* FlipperCppBridgingResponder.mm */ = {isa = PBXFileReference; includeInIndex = 1; name = FlipperCppBridgingResponder.mm; path = iOS/FlipperKit/CppBridge/FlipperCppBridgingResponder.mm; sourceTree = "<group>"; }; - 1090A8F0485EF829EB52414930011E85 /* RCTConvert+Text.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "RCTConvert+Text.m"; sourceTree = "<group>"; }; - 10C29F3BD62122762F636FC1949D2026 /* UMFilePermissionModuleInterface.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = UMFilePermissionModuleInterface.h; path = UMFileSystemInterface/UMFilePermissionModuleInterface.h; sourceTree = "<group>"; }; - 10D3CBD349DDBEDD8BC29FF16094AFD1 /* GoogleUtilities-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "GoogleUtilities-dummy.m"; sourceTree = "<group>"; }; - 10E8EE79A039D0EAA20868FC060EDE3C /* ARTSurfaceView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ARTSurfaceView.h; path = ios/ARTSurfaceView.h; sourceTree = "<group>"; }; - 10EE657F01EBB6BCF4637D1124C1343B /* BugsnagSessionTracker+Private.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "BugsnagSessionTracker+Private.h"; sourceTree = "<group>"; }; - 10F1FC21FBBE572C7A62B4E5EAB181BE /* TraceInterpreter.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = TraceInterpreter.h; path = destroot/include/hermes/TraceInterpreter.h; sourceTree = "<group>"; }; - 110CD94C79C42A487EE1D6CC50098487 /* String.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = String.h; path = folly/portability/String.h; sourceTree = "<group>"; }; - 111352AA53F0093A3AB2AEB343C37458 /* BSGConnectivity.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BSGConnectivity.h; sourceTree = "<group>"; }; - 112246D068CDB2E5FEDB9BA4F6062328 /* PasswordInFile.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = PasswordInFile.h; path = folly/io/async/PasswordInFile.h; sourceTree = "<group>"; }; - 112D962E5A1F21D8C0DCB29477800458 /* BugsnagApiClient.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = BugsnagApiClient.m; sourceTree = "<group>"; }; - 112FB65056DB5FBF8B435ACD05AF3E49 /* UIColor+SKSonarValueCoder.mm */ = {isa = PBXFileReference; includeInIndex = 1; name = "UIColor+SKSonarValueCoder.mm"; path = "iOS/Plugins/FlipperKitLayoutPlugin/FlipperKitLayoutPlugin/UIColor+SKSonarValueCoder.mm"; sourceTree = "<group>"; }; - 1139C8C34759E7654D2D541DBF65F60B /* Flipper-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "Flipper-dummy.m"; sourceTree = "<group>"; }; - 1153C7F2D8D7F8298826538F83EADA0E /* SDImageLoadersManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = SDImageLoadersManager.m; path = SDWebImage/Core/SDImageLoadersManager.m; sourceTree = "<group>"; }; - 1158999A56B57AE4217C56B63FFFA59A /* CodedInputDataCrypt.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = CodedInputDataCrypt.cpp; path = Core/CodedInputDataCrypt.cpp; sourceTree = "<group>"; }; - 116093A73B32F5F786FD46E2F9307F24 /* color_cache_utils.c */ = {isa = PBXFileReference; includeInIndex = 1; name = color_cache_utils.c; path = src/utils/color_cache_utils.c; sourceTree = "<group>"; }; - 1161903683157589F2902EBB4CEB72F0 /* tr.lproj */ = {isa = PBXFileReference; includeInIndex = 1; name = tr.lproj; path = "Objective-C/TOCropViewController/Resources/tr.lproj"; sourceTree = "<group>"; }; - 116B22E616273DE891DEFDE938A5D623 /* cached-powers.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "cached-powers.h"; path = "double-conversion/cached-powers.h"; sourceTree = "<group>"; }; - 118760F70DE10C3E528868D8AFF69793 /* MMBuffer.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = MMBuffer.h; path = Core/MMBuffer.h; sourceTree = "<group>"; }; - 11A5473574DB8F5B87B8A158CA9708F7 /* FIRCLSdSYM.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRCLSdSYM.m; path = Crashlytics/Shared/FIRCLSMachO/FIRCLSdSYM.m; sourceTree = "<group>"; }; - 11B51F34AD31D04ECDEA6D348278AF7D /* EXLocalAuthentication.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = EXLocalAuthentication.podspec; sourceTree = "<group>"; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; - 11CB20F69C4411E5FDBA7623836E517F /* UMAppLoader-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "UMAppLoader-prefix.pch"; sourceTree = "<group>"; }; - 11DAD95EB383741A607A74A0E7158358 /* RCTFileRequestHandler.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTFileRequestHandler.h; path = Libraries/Network/RCTFileRequestHandler.h; sourceTree = "<group>"; }; - 11E5B920D013929A3A29D9659EF6473D /* ResumeIdentificationToken.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = ResumeIdentificationToken.cpp; path = rsocket/framing/ResumeIdentificationToken.cpp; sourceTree = "<group>"; }; - 11EA49134E74A72B02BED62851EB1823 /* SerialExecutor.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SerialExecutor.h; path = folly/executors/SerialExecutor.h; sourceTree = "<group>"; }; - 11F3B1FB18F5565F8113DB73ACB4066F /* ExceptionWrapper.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ExceptionWrapper.h; path = folly/ExceptionWrapper.h; sourceTree = "<group>"; }; - 11F4D1232243030A9C086F45393EDA6A /* RCTJSInvokerModule.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTJSInvokerModule.h; sourceTree = "<group>"; }; - 120C448D23A1D2880C0A29639A4D28E3 /* EXPermissions.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = EXPermissions.debug.xcconfig; sourceTree = "<group>"; }; - 12105428025D405B7878360FB13F8519 /* json.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = json.h; path = folly/json.h; sourceTree = "<group>"; }; - 1215CA56CB2009D56FA56A842354661A /* RCTActivityIndicatorView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTActivityIndicatorView.h; sourceTree = "<group>"; }; - 12165C66AD4A3FAE0B695344667405C6 /* MallocImpl.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = MallocImpl.h; path = folly/memory/detail/MallocImpl.h; sourceTree = "<group>"; }; - 121B1E4C86111FD774FABC537B3F82D9 /* ReactNativeART.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = ReactNativeART.release.xcconfig; sourceTree = "<group>"; }; - 121B8E3C90C259A8DBB49E51ECF028F2 /* UMFaceDetectorManagerProvider.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = UMFaceDetectorManagerProvider.h; path = UMFaceDetectorInterface/UMFaceDetectorManagerProvider.h; sourceTree = "<group>"; }; - 121C082C44622369A24320E0608F7EBA /* ko.lproj */ = {isa = PBXFileReference; includeInIndex = 1; name = ko.lproj; path = "Objective-C/TOCropViewController/Resources/ko.lproj"; sourceTree = "<group>"; }; - 12287278B9CB792002A71AB641016514 /* RAMBundleRegistry.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RAMBundleRegistry.h; sourceTree = "<group>"; }; - 124EB0925EE1CAB42EC4BBD5C77ED793 /* decorator.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = decorator.h; sourceTree = "<group>"; }; - 1275FBF2FBD9C7995AA9987864CA1174 /* RNTapHandler.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RNTapHandler.m; sourceTree = "<group>"; }; - 12765E6C0FE3B8B56C136DB523CAC8DA /* EXAppleAuthenticationMappings.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = EXAppleAuthenticationMappings.m; path = EXAppleAuthentication/EXAppleAuthenticationMappings.m; sourceTree = "<group>"; }; - 12899CF7B0A4C003456EED43A6AC7EAB /* sorted_vector_types.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = sorted_vector_types.h; path = folly/sorted_vector_types.h; sourceTree = "<group>"; }; - 129BF999B117C84BAB3A73C84ADAD27B /* RCTSurfaceRootShadowView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTSurfaceRootShadowView.h; sourceTree = "<group>"; }; - 129E379454FA7C014949A5AB2C96C229 /* LICENSE */ = {isa = PBXFileReference; includeInIndex = 1; path = LICENSE; sourceTree = "<group>"; }; - 12B923F05BC76AE6BE7912614DF2CFC6 /* ConcurrentBitSet.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ConcurrentBitSet.h; path = folly/ConcurrentBitSet.h; sourceTree = "<group>"; }; - 12BC7C47A9E234FC866C54A93E6763D3 /* BugsnagLogger.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BugsnagLogger.h; sourceTree = "<group>"; }; - 12BEA7F7C4B73D1E36CD768C9F3B9301 /* GDTCORTransformer.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = GDTCORTransformer.m; path = GoogleDataTransport/GDTCORLibrary/GDTCORTransformer.m; sourceTree = "<group>"; }; - 12F1146556FC034F2D1F79B76D12016C /* react-native-notifications-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "react-native-notifications-prefix.pch"; sourceTree = "<group>"; }; + 0C65E06A78DA05CF42AF17F7327766FD /* Poly.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Poly.h; path = folly/Poly.h; sourceTree = "<group>"; }; + 0C70C99F15D0DDBF409A862AC97E6D30 /* RCTBlobCollector.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTBlobCollector.mm; sourceTree = "<group>"; }; + 0C92569759A532197BCA2EC4CA3E0CE0 /* BugsnagKeys.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BugsnagKeys.h; sourceTree = "<group>"; }; + 0CA3F5BD3BB611735389502DE1BDD48D /* SDImageAssetManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = SDImageAssetManager.m; path = SDWebImage/Private/SDImageAssetManager.m; sourceTree = "<group>"; }; + 0CDF3A70267A851C613E42137BE69A31 /* GoogleDataTransportInternal.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = GoogleDataTransportInternal.h; path = GoogleDataTransport/GDTCORLibrary/Internal/GoogleDataTransportInternal.h; sourceTree = "<group>"; }; + 0CDFAA03E32CE9D6147ADCBA56E4876A /* EXKeepAwake.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = EXKeepAwake.release.xcconfig; sourceTree = "<group>"; }; + 0CF2233A0E480F3AB0FBCAAFAB9A6E26 /* RCTCustomInputControllerTemp.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTCustomInputControllerTemp.h; sourceTree = "<group>"; }; + 0D378E2547F63096DDC6D5435B277CFE /* React-RCTAnimation.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = "React-RCTAnimation.podspec"; sourceTree = "<group>"; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; + 0D3E92E69878B83B64510531A9E10C55 /* RCTDevSettings.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTDevSettings.h; path = React/CoreModules/RCTDevSettings.h; sourceTree = "<group>"; }; + 0D512FF26F5CCDF4BA415C726A100C98 /* RNRotationHandler.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RNRotationHandler.h; sourceTree = "<group>"; }; + 0D68504B28FF1476B168BFE2CA579509 /* GCTripwireContext.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = GCTripwireContext.h; path = destroot/include/hermes/Public/GCTripwireContext.h; sourceTree = "<group>"; }; + 0D6E820C6CF05DC7636A79B507E31E88 /* RNFetchBlob.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RNFetchBlob.m; sourceTree = "<group>"; }; + 0D8871D033546D93298536FDC9EFB36D /* RangeCommon.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RangeCommon.h; path = folly/detail/RangeCommon.h; sourceTree = "<group>"; }; + 0D91C1EF24F8B3150F8D446611EEF869 /* HazptrDomain.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = HazptrDomain.h; path = folly/synchronization/HazptrDomain.h; sourceTree = "<group>"; }; + 0D9E13B42D8071E41F8329AE4CCFD5E1 /* alpha_processing_sse41.c */ = {isa = PBXFileReference; includeInIndex = 1; name = alpha_processing_sse41.c; path = src/dsp/alpha_processing_sse41.c; sourceTree = "<group>"; }; + 0DA1B8F35D94DD544B17F036604E9ED5 /* rescaler_mips_dsp_r2.c */ = {isa = PBXFileReference; includeInIndex = 1; name = rescaler_mips_dsp_r2.c; path = src/dsp/rescaler_mips_dsp_r2.c; sourceTree = "<group>"; }; + 0DA40EC3F21AC3FF0CBFFEFC8D402916 /* UMFontScalerInterface.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = UMFontScalerInterface.h; path = UMFontInterface/UMFontScalerInterface.h; sourceTree = "<group>"; }; + 0DDC858D4AD0F13BD80D03A8B2525311 /* double-conversion.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "double-conversion.h"; path = "double-conversion/double-conversion.h"; sourceTree = "<group>"; }; + 0DE20519F96D10F94F99B15D83A5C0D8 /* EXFileSystemAssetLibraryHandler.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = EXFileSystemAssetLibraryHandler.m; path = EXFileSystem/EXFileSystemAssetLibraryHandler.m; sourceTree = "<group>"; }; + 0DEF232E0A0D4067D1ED22A9871162C0 /* TimeoutQueue.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = TimeoutQueue.cpp; path = folly/TimeoutQueue.cpp; sourceTree = "<group>"; }; + 0E04BA4CCD1FFC1F6C42531744CC9EDE /* BSG_KSDynamicLinker.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BSG_KSDynamicLinker.h; sourceTree = "<group>"; }; + 0E05463CDBE3D07BACC3A485DCB768FC /* fast-dtoa.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "fast-dtoa.h"; path = "double-conversion/fast-dtoa.h"; sourceTree = "<group>"; }; + 0E18B5EFACA1F01D22B93F8AD83F8D64 /* FIRInstallationsIDController.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRInstallationsIDController.h; path = FirebaseInstallations/Source/Library/InstallationsIDController/FIRInstallationsIDController.h; sourceTree = "<group>"; }; + 0E1BFF425B21CDD748621BE4464F342A /* Demangle.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = Demangle.cpp; path = folly/Demangle.cpp; sourceTree = "<group>"; }; + 0E1D83EBD460588DE708253C1605E043 /* SKSwizzle.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SKSwizzle.h; path = iOS/Plugins/FlipperKitLayoutPlugin/FlipperKitLayoutPlugin/utils/SKSwizzle.h; sourceTree = "<group>"; }; + 0E256B2666895EC9CF08227E622C6892 /* rescaler_utils.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = rescaler_utils.h; path = src/utils/rescaler_utils.h; sourceTree = "<group>"; }; + 0E8D336D814770BB24162711FCBB1CB7 /* React-RCTVibration-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "React-RCTVibration-prefix.pch"; sourceTree = "<group>"; }; + 0EBD1E83852B9EBE8D2EE01EC0A92D8B /* Bits.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Bits.h; path = folly/lang/Bits.h; sourceTree = "<group>"; }; + 0EC254646A73F5365011337CB12D6D0F /* Math.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Math.h; path = folly/Math.h; sourceTree = "<group>"; }; + 0EC6EFE991325E9B560CA6E7223E53FD /* io_dec.c */ = {isa = PBXFileReference; includeInIndex = 1; name = io_dec.c; path = src/dec/io_dec.c; sourceTree = "<group>"; }; + 0ECBA4FA12CEF0520FBC3BBC96067938 /* Sse.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = Sse.cpp; path = folly/detail/Sse.cpp; sourceTree = "<group>"; }; + 0ECBE995F71640C8FC30B3C7CBD8618B /* RCTWebSocketExecutor.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTWebSocketExecutor.h; path = React/CoreModules/RCTWebSocketExecutor.h; sourceTree = "<group>"; }; + 0EF879CD6D02E996BEB2A566923B0464 /* GULKeychainStorage.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = GULKeychainStorage.h; path = GoogleUtilities/Environment/Private/GULKeychainStorage.h; sourceTree = "<group>"; }; + 0F044BBE2DF64B0AA83933818D2357D8 /* ObservingInputAccessoryViewTemp.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = ObservingInputAccessoryViewTemp.m; sourceTree = "<group>"; }; + 0F0A1F9F3687152FD079AC216204703A /* EXFileSystem.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = EXFileSystem.m; path = EXFileSystem/EXFileSystem.m; sourceTree = "<group>"; }; + 0F34C62FBEEA16631A2D9F75D2C44842 /* FIRCLSSettings.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRCLSSettings.m; path = Crashlytics/Crashlytics/Models/FIRCLSSettings.m; sourceTree = "<group>"; }; + 0F35C568C8AED406C879DEC7AD114B60 /* RCTAnimationUtils.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTAnimationUtils.h; path = Libraries/NativeAnimation/RCTAnimationUtils.h; sourceTree = "<group>"; }; + 0F482264A5F03184C2C8D7EB02669185 /* RNFetchBlobNetwork.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNFetchBlobNetwork.h; path = ios/RNFetchBlobNetwork.h; sourceTree = "<group>"; }; + 0F4E6AECD44AD9B7789C35E28341A3B9 /* Config.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Config.h; path = folly/portability/Config.h; sourceTree = "<group>"; }; + 0F5BB0D26E4F6DE586FDC4493B707B37 /* RCTI18nManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTI18nManager.h; path = React/CoreModules/RCTI18nManager.h; sourceTree = "<group>"; }; + 0F5E25774A2948D641A7AE3B4306D912 /* LICENSE */ = {isa = PBXFileReference; includeInIndex = 1; path = LICENSE; sourceTree = "<group>"; }; + 0F63E6F72664253D8476D965B0EB350B /* BSG_KSCrashIdentifier.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BSG_KSCrashIdentifier.h; sourceTree = "<group>"; }; + 0F656B99CDE6A4B18486ACC0CB00726B /* FIRCLSCrashedMarkerFile.c */ = {isa = PBXFileReference; includeInIndex = 1; name = FIRCLSCrashedMarkerFile.c; path = Crashlytics/Crashlytics/Components/FIRCLSCrashedMarkerFile.c; sourceTree = "<group>"; }; + 0F675EFFAE3ECFB12FB48516DB4E756C /* JSBundleType.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = JSBundleType.h; sourceTree = "<group>"; }; + 0F746F870E976031F8DEA7E93FD16CC5 /* syntax_enc.c */ = {isa = PBXFileReference; includeInIndex = 1; name = syntax_enc.c; path = src/enc/syntax_enc.c; sourceTree = "<group>"; }; + 0F7BE525AD2CFD7852E05CF11ACED876 /* RCTLocalAssetImageLoader.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTLocalAssetImageLoader.h; path = Libraries/Image/RCTLocalAssetImageLoader.h; sourceTree = "<group>"; }; + 0F84B3AE10BCA318E489BADF2E0F0201 /* EXAppleAuthentication-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "EXAppleAuthentication-prefix.pch"; sourceTree = "<group>"; }; + 0F852748CBF2D7F24EEE4BF4DD0D4B44 /* HardwareConcurrency.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = HardwareConcurrency.h; path = folly/system/HardwareConcurrency.h; sourceTree = "<group>"; }; + 0F9537AA9C947A7B82E6D209E7D89488 /* UMTaskManagerInterface.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = UMTaskManagerInterface.podspec; sourceTree = "<group>"; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; + 0F99C17F54AFF30DC1CC8A0FCED7A624 /* IDStore.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = IDStore.m; path = ios/IDStore.m; sourceTree = "<group>"; }; + 0FAFCA4F6611BEE461E87F168FD164B9 /* Iterator.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Iterator.h; path = folly/container/Iterator.h; sourceTree = "<group>"; }; + 0FBE01D13F5CCA3ADD8B3375BDFFEC8C /* ssim.c */ = {isa = PBXFileReference; includeInIndex = 1; name = ssim.c; path = src/dsp/ssim.c; sourceTree = "<group>"; }; + 0FBF9B744930F8653A9076072C717F10 /* RangeCommon.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = RangeCommon.cpp; path = folly/detail/RangeCommon.cpp; sourceTree = "<group>"; }; + 0FD226AF0745698A007150B90DFE35A0 /* json.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = json.cpp; path = folly/json.cpp; sourceTree = "<group>"; }; + 0FD3FC947824CE834932C472A7C177B5 /* Exception.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Exception.h; path = folly/Exception.h; sourceTree = "<group>"; }; + 0FFED4693A29A850B3D22BC8E48C65F3 /* Launder.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Launder.h; path = folly/lang/Launder.h; sourceTree = "<group>"; }; + 10259BF2673C5F3A94B58CFD311CFEE8 /* EXFilePermissionModule.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = EXFilePermissionModule.h; path = EXFileSystem/EXFilePermissionModule.h; sourceTree = "<group>"; }; + 1026FC018D37BBD10EF12B8BF32D2F16 /* TOCropScrollView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = TOCropScrollView.h; path = "Objective-C/TOCropViewController/Views/TOCropScrollView.h"; sourceTree = "<group>"; }; + 102BC125C6261EB31E3368878A7A8EC2 /* RNPushKitEventHandler.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNPushKitEventHandler.m; path = RNNotifications/RNPushKitEventHandler.m; sourceTree = "<group>"; }; + 103A3F0B17D04B2D034AE67B05C39295 /* React-CoreModules-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "React-CoreModules-dummy.m"; sourceTree = "<group>"; }; + 1048FF356DAB0F04F25A2308556E8DAD /* Dirent.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Dirent.h; path = folly/portability/Dirent.h; sourceTree = "<group>"; }; + 10520864986AC74E006BBF6148DE74DA /* FBLPromise+All.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "FBLPromise+All.m"; path = "Sources/FBLPromises/FBLPromise+All.m"; sourceTree = "<group>"; }; + 105C50EBA54934CA79953DE0C8DE1EF4 /* RNFastImage.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = RNFastImage.debug.xcconfig; sourceTree = "<group>"; }; + 10624FF1EE4D86684789A9D62944F9D4 /* RCTVibrationPlugins.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTVibrationPlugins.mm; sourceTree = "<group>"; }; + 107BC9AC4578A69B39C27751985613B7 /* BugsnagKVStore.c */ = {isa = PBXFileReference; includeInIndex = 1; path = BugsnagKVStore.c; sourceTree = "<group>"; }; + 107FCA2BB300F871ED6D3CBBFD33FEDE /* RCTDevSplitBundleLoader.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTDevSplitBundleLoader.mm; sourceTree = "<group>"; }; + 111328621E8618D4724ED150108E8ECC /* RCTBaseTextInputViewManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTBaseTextInputViewManager.h; sourceTree = "<group>"; }; + 112C873DEA2E74343B0275D53DE2B1A5 /* FIRAnalyticsConfiguration.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRAnalyticsConfiguration.m; path = FirebaseCore/Sources/FIRAnalyticsConfiguration.m; sourceTree = "<group>"; }; + 113CD7E4AE12E20259360D62FF5B014B /* QuotientMultiSet-inl.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "QuotientMultiSet-inl.h"; path = "folly/experimental/QuotientMultiSet-inl.h"; sourceTree = "<group>"; }; + 11497BF19E6E11485671C2640750994B /* UMTaskInterface.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = UMTaskInterface.h; path = UMTaskManagerInterface/UMTaskInterface.h; sourceTree = "<group>"; }; + 114B9563272568A2F32B3AE68BBCCDFE /* pb_decode.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = pb_decode.h; sourceTree = "<group>"; }; + 1164AE7B2B0C6A63415FF659EE7EDE91 /* AtomicUnorderedMapUtils.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = AtomicUnorderedMapUtils.h; path = folly/detail/AtomicUnorderedMapUtils.h; sourceTree = "<group>"; }; + 1171ACD8F2E1D59BCF493239D501C8FA /* ScheduledFrameTransport.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ScheduledFrameTransport.h; path = rsocket/framing/ScheduledFrameTransport.h; sourceTree = "<group>"; }; + 117449E9749A82693065455EEB39A766 /* RNVectorIcons-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "RNVectorIcons-dummy.m"; sourceTree = "<group>"; }; + 117A15DBF9388CFB80D2E379E62B790F /* EXImageLoader-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "EXImageLoader-prefix.pch"; sourceTree = "<group>"; }; + 1181BB71B1C6A226360E4FF72650765A /* Dirent.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Dirent.h; path = folly/portability/Dirent.h; sourceTree = "<group>"; }; + 118866EE1ECCAD2E28C4A2E746435DE5 /* React-jsiexecutor.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "React-jsiexecutor.release.xcconfig"; sourceTree = "<group>"; }; + 1194EEDAEB70B9943D93B72CC6101C03 /* StaticConst.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = StaticConst.h; path = folly/lang/StaticConst.h; sourceTree = "<group>"; }; + 119D24750721B1EC2D973410EB358604 /* GDTCORFlatFileStorage.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = GDTCORFlatFileStorage.h; path = GoogleDataTransport/GDTCORLibrary/Private/GDTCORFlatFileStorage.h; sourceTree = "<group>"; }; + 11A05424FD6DC91ACD07606792A56420 /* enc_neon.c */ = {isa = PBXFileReference; includeInIndex = 1; name = enc_neon.c; path = src/dsp/enc_neon.c; sourceTree = "<group>"; }; + 11A9510DE133A9F0D171C1943D3E3BBD /* UMReactNativeAdapter.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = UMReactNativeAdapter.h; sourceTree = "<group>"; }; + 11B57D9AB31BF88D761590967129678D /* PriorityUnboundedQueueSet.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = PriorityUnboundedQueueSet.h; path = folly/concurrency/PriorityUnboundedQueueSet.h; sourceTree = "<group>"; }; + 11C8A17683EAEB03990D0596378D5B6F /* BSG_KSSystemInfo.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = BSG_KSSystemInfo.m; sourceTree = "<group>"; }; + 11D11709A02DAC16E66B9177BBA65E73 /* Try.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Try.h; path = folly/Try.h; sourceTree = "<group>"; }; + 11DF038B3CD26D41991303A4297AFBB8 /* Cursor.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = Cursor.cpp; path = folly/io/Cursor.cpp; sourceTree = "<group>"; }; + 11EB762104ABC3B16FD943E6556ABDD5 /* react-native-webview-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "react-native-webview-dummy.m"; sourceTree = "<group>"; }; + 11EF47C53C4E679048BC90E967DEA688 /* YGConfig.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = YGConfig.cpp; path = yoga/YGConfig.cpp; sourceTree = "<group>"; }; + 11F8A4AADD3F955AFF81E71215C2A98E /* RNPinchHandler.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RNPinchHandler.m; sourceTree = "<group>"; }; + 120DFDBF4590C4F27F513CA252284B8C /* CPUThreadPoolExecutor.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = CPUThreadPoolExecutor.h; path = folly/executors/CPUThreadPoolExecutor.h; sourceTree = "<group>"; }; + 121DD1F09E8CD3C53B0E6E1715834DE8 /* FIRCLSURLBuilder.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRCLSURLBuilder.h; path = Crashlytics/Shared/FIRCLSNetworking/FIRCLSURLBuilder.h; sourceTree = "<group>"; }; + 1223CE63C279563F3B4EA932977B59BC /* VirtualEventBase.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = VirtualEventBase.cpp; path = folly/io/async/VirtualEventBase.cpp; sourceTree = "<group>"; }; + 124770183A266B30658AC782D2BDF252 /* RNScreens-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "RNScreens-prefix.pch"; sourceTree = "<group>"; }; + 126E56C14084FA8D6350815F9542A432 /* Singleton.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Singleton.h; path = folly/Singleton.h; sourceTree = "<group>"; }; + 12A6235C13B73EA7DC232416E3A3D511 /* SDImageAWebPCoder.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SDImageAWebPCoder.h; path = SDWebImage/Core/SDImageAWebPCoder.h; sourceTree = "<group>"; }; + 12B4D0E69B42898FEE7C64F75658DD45 /* FIRInstallationsStore.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRInstallationsStore.m; path = FirebaseInstallations/Source/Library/InstallationsStore/FIRInstallationsStore.m; sourceTree = "<group>"; }; + 12C6E79026E78E2DBF6C749EAAFA6494 /* Format-inl.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "Format-inl.h"; path = "folly/Format-inl.h"; sourceTree = "<group>"; }; + 12CAACA147F3FE2825C7E083D3FAC507 /* RCTSurfaceRootView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTSurfaceRootView.h; sourceTree = "<group>"; }; + 12CB1EDCC92C4ED61D5BECDAE443FA24 /* UMSensorsInterface.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = UMSensorsInterface.release.xcconfig; sourceTree = "<group>"; }; + 12CBD9312625413B9F6A59F70F770748 /* FFFastImageView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FFFastImageView.m; path = ios/FastImage/FFFastImageView.m; sourceTree = "<group>"; }; + 12D0CAC905F86FBBA072F2413D3853DB /* React-RCTVibration.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "React-RCTVibration.debug.xcconfig"; sourceTree = "<group>"; }; + 12D8CF80050CCE366B66E7B319A5076C /* RCTNativeModule.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTNativeModule.mm; sourceTree = "<group>"; }; + 12DCF98B7E6F60B84F88FCCB4F531BDC /* FIRCLSPackageReportOperation.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRCLSPackageReportOperation.h; path = Crashlytics/Crashlytics/Operations/Reports/FIRCLSPackageReportOperation.h; sourceTree = "<group>"; }; + 12E755A0777B889C32BD2BD50CA56C58 /* ARTPattern.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = ARTPattern.h; sourceTree = "<group>"; }; + 12FC28C42CDEEC2B4A36BC6B38F2B90A /* SKRequestInfo.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SKRequestInfo.h; path = iOS/Plugins/FlipperKitNetworkPlugin/FlipperKitNetworkPlugin/SKRequestInfo.h; sourceTree = "<group>"; }; 130335B611EDD6AFF8824641E06138D6 /* libEXVideoThumbnails.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; name = libEXVideoThumbnails.a; path = libEXVideoThumbnails.a; sourceTree = BUILT_PRODUCTS_DIR; }; - 13204C62D0A43D74E6AA57C8A4CDD9AC /* REAOperatorNode.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = REAOperatorNode.m; sourceTree = "<group>"; }; - 1336466C47E2463B99D3F5FB5F02507F /* SSLSessionImpl.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SSLSessionImpl.h; path = folly/ssl/detail/SSLSessionImpl.h; sourceTree = "<group>"; }; - 13401F097F69DE0383C3CAFD7C8099BB /* Flipper-Folly-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "Flipper-Folly-prefix.pch"; sourceTree = "<group>"; }; - 1349DA30B40712C2BCB6BB6A3EEFFB69 /* EXVideoView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = EXVideoView.h; sourceTree = "<group>"; }; - 134DA3EF0958741484AC765F914EC417 /* OpenSSL.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = OpenSSL.cpp; path = folly/portability/OpenSSL.cpp; sourceTree = "<group>"; }; - 13A70D257EB606DB7DAE4D4BDCEDE0A7 /* RangeSse42.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RangeSse42.h; path = folly/detail/RangeSse42.h; sourceTree = "<group>"; }; - 13B41F4359159EB8EC87945C0C5A7C17 /* FireForgetThroughputTcp.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = FireForgetThroughputTcp.cpp; path = rsocket/benchmarks/FireForgetThroughputTcp.cpp; sourceTree = "<group>"; }; - 13B7AA56ECC8D13805741C6ACCC28520 /* RCTLocalAssetImageLoader.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTLocalAssetImageLoader.h; path = Libraries/Image/RCTLocalAssetImageLoader.h; sourceTree = "<group>"; }; - 13BE33B0C55DC851925EE31F13B66FAE /* PTChannel.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = PTChannel.h; path = peertalk/PTChannel.h; sourceTree = "<group>"; }; - 13C689EA90FD217368087E73B44A992F /* SDWeakProxy.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SDWeakProxy.h; path = SDWebImage/Private/SDWeakProxy.h; sourceTree = "<group>"; }; + 1316C0CCDE428C84FBD7BE654DBF34F8 /* Parallel-inl.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "Parallel-inl.h"; path = "folly/gen/Parallel-inl.h"; sourceTree = "<group>"; }; + 1320F7AF98FD9273E696E7BE6D91C6E8 /* CPortability.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = CPortability.h; path = folly/CPortability.h; sourceTree = "<group>"; }; + 132388F5690F703D4FC06D21DDAD5C75 /* TOCropViewController-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "TOCropViewController-dummy.m"; sourceTree = "<group>"; }; + 1329A9576B25701FE7200B3333966D55 /* ConsumerBase.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ConsumerBase.h; path = rsocket/statemachine/ConsumerBase.h; sourceTree = "<group>"; }; + 1333D058D8C0815919B49B15E4565AE7 /* GDTCORClock.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = GDTCORClock.m; path = GoogleDataTransport/GDTCORLibrary/GDTCORClock.m; sourceTree = "<group>"; }; + 13340CBEBDAF673433BF2AF143204B29 /* near_lossless_enc.c */ = {isa = PBXFileReference; includeInIndex = 1; name = near_lossless_enc.c; path = src/enc/near_lossless_enc.c; sourceTree = "<group>"; }; + 133F2B8DF0A141FC6062F4CC612F6372 /* ConnectionContextStore.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ConnectionContextStore.h; path = xplat/Flipper/ConnectionContextStore.h; sourceTree = "<group>"; }; + 134633DF5E0610326A5F72493736B545 /* BugsnagSessionTrackingPayload.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BugsnagSessionTrackingPayload.h; sourceTree = "<group>"; }; + 13556548C1D105A985F406FFB2BF3C2E /* Utility.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Utility.h; path = folly/Utility.h; sourceTree = "<group>"; }; + 13747E7F6A1EE9D642BC1EFAA058B987 /* Inspector.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = Inspector.h; sourceTree = "<group>"; }; + 137CE9966138749DB6E09866AD79541B /* CancellationToken.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = CancellationToken.h; path = folly/CancellationToken.h; sourceTree = "<group>"; }; + 138C0F6559EA9BA0327EBE7EACDB80B0 /* QueuedImmediateExecutor.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = QueuedImmediateExecutor.h; path = folly/executors/QueuedImmediateExecutor.h; sourceTree = "<group>"; }; + 13BEE7CFC50BA2D9FC56FC9CFE28D4EB /* BugsnagReactNative.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = BugsnagReactNative.m; sourceTree = "<group>"; }; + 13C67E640DC848233FB232A335CC4D28 /* ExecutorWithPriority.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = ExecutorWithPriority.cpp; path = folly/executors/ExecutorWithPriority.cpp; sourceTree = "<group>"; }; + 13C7C23927BFA046631D345702EBDBB8 /* filters_msa.c */ = {isa = PBXFileReference; includeInIndex = 1; name = filters_msa.c; path = src/dsp/filters_msa.c; sourceTree = "<group>"; }; 13C8C8B254851998F9289F71229B28A2 /* libFirebaseInstallations.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; name = libFirebaseInstallations.a; path = libFirebaseInstallations.a; sourceTree = BUILT_PRODUCTS_DIR; }; - 13D532F8576952B1731BD9017ABEF549 /* FIRInstallationsStatus.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRInstallationsStatus.h; path = FirebaseInstallations/Source/Library/InstallationsIDController/FIRInstallationsStatus.h; sourceTree = "<group>"; }; - 13F667B2253495881B8BBB79ED397290 /* FBLPromiseError.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FBLPromiseError.m; path = Sources/FBLPromises/FBLPromiseError.m; sourceTree = "<group>"; }; - 1407654FC107F76BB7A3E5B2DD9081B5 /* EXVideoThumbnails.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = EXVideoThumbnails.debug.xcconfig; sourceTree = "<group>"; }; - 140AAC91E8ED0B016C8DC8C5131FF746 /* F14IntrinsicsAvailability.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = F14IntrinsicsAvailability.h; path = folly/container/detail/F14IntrinsicsAvailability.h; sourceTree = "<group>"; }; - 140BF54141B2674E32CB6707116B3D52 /* BSG_KSCrashReportVersion.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BSG_KSCrashReportVersion.h; sourceTree = "<group>"; }; - 141EF977202A47725867A9CCA553B222 /* OpenSSLUtils.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = OpenSSLUtils.h; path = folly/io/async/ssl/OpenSSLUtils.h; sourceTree = "<group>"; }; - 1426D4C7456CF932B66DD1B74A1CC592 /* lossless_mips_dsp_r2.c */ = {isa = PBXFileReference; includeInIndex = 1; name = lossless_mips_dsp_r2.c; path = src/dsp/lossless_mips_dsp_r2.c; sourceTree = "<group>"; }; - 142DDC0602F382620626934657D3292E /* cached-powers.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "cached-powers.h"; path = "double-conversion/cached-powers.h"; sourceTree = "<group>"; }; - 14432B86EFD027ED726F147359E42916 /* React-callinvoker.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = "React-callinvoker.podspec"; sourceTree = "<group>"; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; - 144360F619B1568C4D6288B0C0FB58B8 /* RNRootViewGestureRecognizer.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNRootViewGestureRecognizer.h; path = ios/RNRootViewGestureRecognizer.h; sourceTree = "<group>"; }; - 14451A0D609106DE62DD81E5F0B87427 /* SharedPromise-inl.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "SharedPromise-inl.h"; path = "folly/futures/SharedPromise-inl.h"; sourceTree = "<group>"; }; - 144B46E1E0D1B4E0404E9472E9B7ED9B /* Pretty.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Pretty.h; path = folly/lang/Pretty.h; sourceTree = "<group>"; }; - 144FCDDA6C4928F6C6EC8F1864CEE384 /* ThreadPoolExecutor.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ThreadPoolExecutor.h; path = folly/executors/ThreadPoolExecutor.h; sourceTree = "<group>"; }; - 14558547256AFB38419983E2662EBC1E /* GDTCORUploadPackage.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = GDTCORUploadPackage.m; path = GoogleDataTransport/GDTCORLibrary/GDTCORUploadPackage.m; sourceTree = "<group>"; }; - 14562566D7E2D611A5AEB28A2033E764 /* FormatArg.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FormatArg.h; path = folly/FormatArg.h; sourceTree = "<group>"; }; - 145B5155DFCA70A7E41B34A4765E2C92 /* FIRCLSFileManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRCLSFileManager.h; path = Crashlytics/Crashlytics/Models/FIRCLSFileManager.h; sourceTree = "<group>"; }; - 146111A52CB56AEC590C1C250424F771 /* RCTNullability.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTNullability.h; sourceTree = "<group>"; }; - 147256C1CA6ECB603F9BCC7C65C426CE /* Core.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Core.h; path = folly/futures/detail/Core.h; sourceTree = "<group>"; }; - 1480E96A65A01446E22091CDD5C48855 /* FIRCLSExecutionIdentifierModel.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRCLSExecutionIdentifierModel.h; path = Crashlytics/Crashlytics/Models/FIRCLSExecutionIdentifierModel.h; sourceTree = "<group>"; }; - 14833B7595C20284FE302A11D245BE8D /* GULKeychainUtils.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = GULKeychainUtils.h; path = GoogleUtilities/Environment/Private/GULKeychainUtils.h; sourceTree = "<group>"; }; - 148BD4524563EAE73DE3CA93B337855C /* FIRStackFrame.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRStackFrame.m; path = Crashlytics/Crashlytics/FIRStackFrame.m; sourceTree = "<group>"; }; - 14A2F9FF0806DF09D8520391D7F71997 /* TimedDrivableExecutor.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = TimedDrivableExecutor.cpp; path = folly/executors/TimedDrivableExecutor.cpp; sourceTree = "<group>"; }; - 14AA7A8B170D786D4D560A3331126720 /* experiments.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; path = experiments.cpp; sourceTree = "<group>"; }; - 14B414E138B4DADDE37A307B4CF155EB /* MemoryResource.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = MemoryResource.h; path = folly/memory/MemoryResource.h; sourceTree = "<group>"; }; - 14BDA591D15263674DB406B72E60712C /* bignum-dtoa.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = "bignum-dtoa.cc"; path = "double-conversion/bignum-dtoa.cc"; sourceTree = "<group>"; }; - 14C7ED7A9BB3E80BD1FFA1CB82001C31 /* SingletonRelaxedCounter.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SingletonRelaxedCounter.h; path = folly/experimental/SingletonRelaxedCounter.h; sourceTree = "<group>"; }; - 14CE686504FDFCC39519FA7D086BA1ED /* Ionicons.ttf */ = {isa = PBXFileReference; includeInIndex = 1; name = Ionicons.ttf; path = Fonts/Ionicons.ttf; sourceTree = "<group>"; }; - 14E8FC1E63C33E1D4CFF79F2255BE340 /* README.md */ = {isa = PBXFileReference; includeInIndex = 1; path = README.md; sourceTree = "<group>"; }; - 14F6318BFB1F3F710D6A8DB51F413F84 /* README.md */ = {isa = PBXFileReference; includeInIndex = 1; path = README.md; sourceTree = "<group>"; }; - 1525B451ACD76144D005B1730EFC66B9 /* Hash.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Hash.h; path = folly/hash/Hash.h; sourceTree = "<group>"; }; - 15286ADE9046ACD7BB6938AB34C77DDC /* openssl_md5_locl.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = openssl_md5_locl.h; path = Core/aes/openssl/openssl_md5_locl.h; sourceTree = "<group>"; }; - 153D793297698FE9116592E393746B99 /* SKMacros.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SKMacros.h; path = iOS/FlipperKit/SKMacros.h; sourceTree = "<group>"; }; - 1550D8CE86BCF720B49B92E8B081274F /* Flipper-Glog-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "Flipper-Glog-prefix.pch"; sourceTree = "<group>"; }; - 1552C077ACD09853FBB69E829A0ACB17 /* Hash.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Hash.h; path = folly/Hash.h; sourceTree = "<group>"; }; - 1555779B195006E8667B063A0B6672BF /* RCTFrameUpdate.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTFrameUpdate.m; sourceTree = "<group>"; }; - 15565FCA1BC916623C1F71E4B5EDA377 /* NSTextStorage+FontScaling.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "NSTextStorage+FontScaling.m"; sourceTree = "<group>"; }; - 156FA2E86BCB36706E2E70639A7A49EE /* HHWheelTimer.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = HHWheelTimer.cpp; path = folly/io/async/HHWheelTimer.cpp; sourceTree = "<group>"; }; - 157D66F636D88398C690DA2EA50D5955 /* RCTBaseTextShadowView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTBaseTextShadowView.m; sourceTree = "<group>"; }; - 158853D4DAF24639C36E51C1EB0294AF /* dec_sse41.c */ = {isa = PBXFileReference; includeInIndex = 1; name = dec_sse41.c; path = src/dsp/dec_sse41.c; sourceTree = "<group>"; }; - 1588731ED24E7943B390F4C87491A950 /* ja.lproj */ = {isa = PBXFileReference; includeInIndex = 1; name = ja.lproj; path = ios/QBImagePicker/QBImagePicker/ja.lproj; sourceTree = "<group>"; }; + 13C8EFF39EBD8C1872792E87448B21FC /* BugsnagReactNative.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BugsnagReactNative.h; sourceTree = "<group>"; }; + 13C9DCDBDB2D1B7AFF2E38F8C10A5085 /* UIImage+Extension.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "UIImage+Extension.h"; path = "ios/src/UIImage+Extension.h"; sourceTree = "<group>"; }; + 13D25933EC1F44DDB6D4FD278A9B2F10 /* BSG_KSLogger.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BSG_KSLogger.h; sourceTree = "<group>"; }; + 13DFE388CEDD89331C7130FB57E3D3D8 /* Shared.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = Shared.m; sourceTree = "<group>"; }; + 13EF5D78F1055C12E86C76B87215666F /* FIRExceptionModel_Private.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRExceptionModel_Private.h; path = Crashlytics/Crashlytics/Private/FIRExceptionModel_Private.h; sourceTree = "<group>"; }; + 13F84715F1EB67124DA06FA6170ED005 /* TcpConnectionFactory.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = TcpConnectionFactory.cpp; path = rsocket/transports/tcp/TcpConnectionFactory.cpp; sourceTree = "<group>"; }; + 13FE542E8B4E1C351E47CAB1EDE5D250 /* Codel.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Codel.h; path = folly/executors/Codel.h; sourceTree = "<group>"; }; + 140A58745163FD40C6736690EA71078A /* UMFaceDetectorInterface.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = UMFaceDetectorInterface.release.xcconfig; sourceTree = "<group>"; }; + 14157214B32F45B3C07C4066FD85B7D5 /* RCTBaseTextViewManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTBaseTextViewManager.m; sourceTree = "<group>"; }; + 14159E6EF3CEA3BC20EB32C69B33E151 /* StorageIndexer.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = StorageIndexer.m; path = ios/StorageIndexer.m; sourceTree = "<group>"; }; + 1417DCF8792914775794BB987C8CCE35 /* CodedInputDataCrypt.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = CodedInputDataCrypt.cpp; path = Core/CodedInputDataCrypt.cpp; sourceTree = "<group>"; }; + 1440C979E2AE0BA095EE73AB76241BD7 /* GoogleUtilities.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = GoogleUtilities.release.xcconfig; sourceTree = "<group>"; }; + 1447986F2D9C7850D2886D4A0B6A8871 /* TOCropViewControllerTransitioning.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = TOCropViewControllerTransitioning.m; path = "Objective-C/TOCropViewController/Models/TOCropViewControllerTransitioning.m"; sourceTree = "<group>"; }; + 14598FCDA7590A69056BCAF77CC5C78C /* RCTScrollEvent.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTScrollEvent.h; sourceTree = "<group>"; }; + 14808E51F8F8A3F84D5CFE8C99751382 /* YGStyle.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = YGStyle.cpp; path = yoga/YGStyle.cpp; sourceTree = "<group>"; }; + 14974ACFB8319826184345805AE1BA56 /* SerialExecutor.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = SerialExecutor.cpp; path = folly/executors/SerialExecutor.cpp; sourceTree = "<group>"; }; + 14A8F1B794881C2676CC886279448BA7 /* RCTAdditionAnimatedNode.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTAdditionAnimatedNode.h; sourceTree = "<group>"; }; + 14A980A1F6A5351277268F114470A347 /* RCTBorderStyle.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTBorderStyle.h; sourceTree = "<group>"; }; + 14AE3D2010971E8953CA13E52B3A3D3E /* SocketOptionMap.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = SocketOptionMap.cpp; path = folly/io/SocketOptionMap.cpp; sourceTree = "<group>"; }; + 14B8D481ECD59F0FAABB9954FEDC1DD7 /* QBAlbumsViewController.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = QBAlbumsViewController.h; path = ios/QBImagePicker/QBImagePicker/QBAlbumsViewController.h; sourceTree = "<group>"; }; + 14DD3A5C68C0DED534D63AB8DA1C88F7 /* RCTErrorCustomizer.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTErrorCustomizer.h; sourceTree = "<group>"; }; + 14DE908F2480D77FD7F3ECA55C39E8B1 /* REAAlwaysNode.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = REAAlwaysNode.m; sourceTree = "<group>"; }; + 14E9AEBA220A2D5DB5D2C0F836D2FD20 /* FIRComponentType.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRComponentType.h; path = FirebaseCore/Sources/Private/FIRComponentType.h; sourceTree = "<group>"; }; + 14FA4AE04F50F603C9098CA23EC1EABA /* SharedPromise-inl.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "SharedPromise-inl.h"; path = "folly/futures/SharedPromise-inl.h"; sourceTree = "<group>"; }; + 1503AB4B0CC23C79FD2C3B8501F8C851 /* SKRequestInfo.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = SKRequestInfo.m; path = iOS/Plugins/FlipperKitNetworkPlugin/FlipperKitNetworkPlugin/SKRequestInfo.m; sourceTree = "<group>"; }; + 1504C61606908441BCDB1E6DE9E99F8D /* ImageCropPicker.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ImageCropPicker.h; path = ios/src/ImageCropPicker.h; sourceTree = "<group>"; }; + 1512FEFD3A4E2B4C25021CB37A1CD913 /* FIRCLSMachO.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRCLSMachO.m; path = Crashlytics/Shared/FIRCLSMachO/FIRCLSMachO.m; sourceTree = "<group>"; }; + 151F0FA5DA9EC7C8A47F575039DE31DB /* vp8_dec.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = vp8_dec.h; path = src/dec/vp8_dec.h; sourceTree = "<group>"; }; + 1536F69CC6F86DAD1A696AF309BFCD75 /* FIRCLSSignal.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRCLSSignal.h; path = Crashlytics/Crashlytics/Handlers/FIRCLSSignal.h; sourceTree = "<group>"; }; + 153B2015317E64DC727B8D54A9D1B225 /* GroupVarint.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = GroupVarint.h; path = folly/GroupVarint.h; sourceTree = "<group>"; }; + 1542535B316655E0CAA2115661BDEC04 /* FIRAppInternal.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRAppInternal.h; path = FirebaseCore/Sources/Private/FIRAppInternal.h; sourceTree = "<group>"; }; + 154D22A5231ACC6F73F3381D7E5C43C5 /* RCTManagedPointer.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTManagedPointer.h; sourceTree = "<group>"; }; + 156DDD2C3EAE413EE657D5680BDD0EB5 /* RCTModuleData.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTModuleData.h; sourceTree = "<group>"; }; + 15706575B7440D7628B450144A719850 /* NamedThreadFactory.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = NamedThreadFactory.h; path = folly/executors/thread_factory/NamedThreadFactory.h; sourceTree = "<group>"; }; 15912309AA610251329D74FA111DE5CA /* libRNLocalize.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; name = libRNLocalize.a; path = libRNLocalize.a; sourceTree = BUILT_PRODUCTS_DIR; }; - 1594760C53DFE83CD8366904004212D3 /* RCTSliderManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTSliderManager.h; sourceTree = "<group>"; }; - 15C06E8BC22CE33F1AC579FF3EED5F01 /* UMFaceDetectorInterface.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = UMFaceDetectorInterface.release.xcconfig; sourceTree = "<group>"; }; - 15D83FE08FADE0344CE2715E708B14D5 /* RCTImageShadowView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTImageShadowView.m; sourceTree = "<group>"; }; - 15EA616B395326914B4C56438DE7AC06 /* README.md */ = {isa = PBXFileReference; includeInIndex = 1; path = README.md; sourceTree = "<group>"; }; - 15F390A298B8A009BF341A8EED660992 /* EXResumablesManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = EXResumablesManager.h; sourceTree = "<group>"; }; - 160095035BD762C24128DBBFF7451196 /* SDInternalMacros.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = SDInternalMacros.m; path = SDWebImage/Private/SDInternalMacros.m; sourceTree = "<group>"; }; - 162726B5507F0F382038F5353E150133 /* MMKV_OSX.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = MMKV_OSX.cpp; path = Core/MMKV_OSX.cpp; sourceTree = "<group>"; }; - 16740E5B21418D74BF0EB7B99959E337 /* upsampling.c */ = {isa = PBXFileReference; includeInIndex = 1; name = upsampling.c; path = src/dsp/upsampling.c; sourceTree = "<group>"; }; - 167F8EE3DCF2AB9B35CD71207B01ED5C /* CacheLocality.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = CacheLocality.cpp; path = folly/concurrency/CacheLocality.cpp; sourceTree = "<group>"; }; - 168E250D320FDE86CCB24E146A6487D0 /* RCTMacros.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTMacros.h; sourceTree = "<group>"; }; - 16A223CEA878D93518E9E43F6E112732 /* signalhandler.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = signalhandler.cc; path = src/signalhandler.cc; sourceTree = "<group>"; }; - 16A67BBF51FE99EC701E5F6893B3DBFF /* LICENSE.md */ = {isa = PBXFileReference; includeInIndex = 1; path = LICENSE.md; sourceTree = "<group>"; }; - 16AB2D3191B6E98E712415EDA749A526 /* FrameProcessor.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FrameProcessor.h; path = rsocket/framing/FrameProcessor.h; sourceTree = "<group>"; }; - 16C56A67498F67A0A0D04C27463CCFCB /* stl_logging.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = stl_logging.h; path = src/glog/stl_logging.h; sourceTree = "<group>"; }; - 16CE48BF7953C0C2AE3725FB0BA0A62C /* Inspector.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = Inspector.h; sourceTree = "<group>"; }; - 16CE7502F04D98AC3B1C93CFAA52DBDA /* UMCameraInterface.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = UMCameraInterface.podspec; sourceTree = "<group>"; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; - 16D3F3AAD051C0568C7766CD69007D0A /* RNFBMeta.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNFBMeta.m; path = ios/RNFBApp/RNFBMeta.m; sourceTree = "<group>"; }; - 16E471A27712CE9EB296524FB0C8DBB3 /* UMViewManagerAdapterClassesRegistry.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = UMViewManagerAdapterClassesRegistry.h; sourceTree = "<group>"; }; - 16F0EA6482987F1240C9EF62BC419BB1 /* FIRCLSAsyncOperation.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRCLSAsyncOperation.m; path = Crashlytics/Crashlytics/Operations/FIRCLSAsyncOperation.m; sourceTree = "<group>"; }; - 171E2F7335FA3822401B90809CDF31D2 /* FIRInstallationsItem.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRInstallationsItem.m; path = FirebaseInstallations/Source/Library/FIRInstallationsItem.m; sourceTree = "<group>"; }; - 17328D43CB20BD5A96214AB3CF83680C /* JitsiMeet.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = JitsiMeet.framework; path = Frameworks/JitsiMeet.framework; sourceTree = "<group>"; }; - 1742A79C0C3E90899FB5F9FBA7D59CC0 /* RCTFileReaderModule.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTFileReaderModule.mm; sourceTree = "<group>"; }; - 174DD3D3F2A5FB69D295E69B39EFB6B5 /* RNDeviceInfo.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = RNDeviceInfo.podspec; sourceTree = "<group>"; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; + 15D3CD135B128C931DEA5C0B398450FB /* EXLocalAuthentication-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "EXLocalAuthentication-prefix.pch"; sourceTree = "<group>"; }; + 15E54C1FCBDB6D01629B4590A7595A68 /* VirtualExecutor.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = VirtualExecutor.h; path = folly/VirtualExecutor.h; sourceTree = "<group>"; }; + 15E5D39416253D4FF2FDDB79A68D2714 /* ReactNativeART-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "ReactNativeART-dummy.m"; sourceTree = "<group>"; }; + 15EE2E2D41B11019A15088584522C493 /* thread_utils.c */ = {isa = PBXFileReference; includeInIndex = 1; name = thread_utils.c; path = src/utils/thread_utils.c; sourceTree = "<group>"; }; + 15EF28D5FCEFD903464DFEAE40849566 /* PTChannel.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = PTChannel.h; path = peertalk/PTChannel.h; sourceTree = "<group>"; }; + 15F87A544179EEEA23D2582D7E11EA29 /* RCTInterpolationAnimatedNode.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTInterpolationAnimatedNode.m; sourceTree = "<group>"; }; + 160805D13378C1E997BA10C058ADD34B /* CpuId.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = CpuId.h; path = folly/CpuId.h; sourceTree = "<group>"; }; + 1610416C89A5844FDE756ED6F4D80A13 /* SDImageHEICCoder.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = SDImageHEICCoder.m; path = SDWebImage/Core/SDImageHEICCoder.m; sourceTree = "<group>"; }; + 1629DCD89C80CC971CAEA172CE89D77A /* BSGEventUploadOperation.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BSGEventUploadOperation.h; sourceTree = "<group>"; }; + 16439CA5F514D320CF5EA4A3E540358A /* RNCWebViewManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNCWebViewManager.h; path = apple/RNCWebViewManager.h; sourceTree = "<group>"; }; + 164CF990B6AC6234874C2E2172DF3099 /* React-runtimeexecutor.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "React-runtimeexecutor.release.xcconfig"; sourceTree = "<group>"; }; + 1653BE17685D8695AD53B0926901A334 /* RCTSliderManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTSliderManager.m; sourceTree = "<group>"; }; + 165C50D5140942B7C81EF9417151EFC9 /* YogaKit.modulemap */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.module; path = YogaKit.modulemap; sourceTree = "<group>"; }; + 16623EE3DA633A1873FF21CD70EDD1B3 /* React-RCTImage.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = "React-RCTImage.podspec"; sourceTree = "<group>"; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; + 1663FD8EE873E544DE8F467C94FC3269 /* CxxNativeModule.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; path = CxxNativeModule.cpp; sourceTree = "<group>"; }; + 166CC9ED82C474FE161D11939ACB4603 /* RCTInputAccessoryView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTInputAccessoryView.m; sourceTree = "<group>"; }; + 1680CD8F4541996190E72FF3E6DD8A53 /* React-jsi.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = "React-jsi.podspec"; sourceTree = "<group>"; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; + 1682A9D6E802A874CA54DD6AFD6CADD4 /* rn-extensions-share-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "rn-extensions-share-dummy.m"; sourceTree = "<group>"; }; + 16D715A4DA0958B00943DFA2BA930EF9 /* GULLogger.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = GULLogger.h; path = GoogleUtilities/Logger/Private/GULLogger.h; sourceTree = "<group>"; }; + 16EE35AB7500A0BC5263CE164841F438 /* SKEnvironmentVariables.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SKEnvironmentVariables.h; path = iOS/FlipperKit/SKEnvironmentVariables.h; sourceTree = "<group>"; }; + 16FA00BA18C730B33832BCE768ED9745 /* 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 = "<group>"; }; + 1702E5C4538682E4F7D67E56D30B45E9 /* GULNetwork.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = GULNetwork.m; path = GoogleUtilities/Network/GULNetwork.m; sourceTree = "<group>"; }; + 1705B8BBFC70BBD8D6FB6EDD10903FF8 /* FIRCLSMachOBinary.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRCLSMachOBinary.m; path = Crashlytics/Shared/FIRCLSMachO/FIRCLSMachOBinary.m; sourceTree = "<group>"; }; + 17171B6FC3B6B0511BB6AA9789244EFC /* GULSecureCoding.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = GULSecureCoding.h; path = GoogleUtilities/Environment/Private/GULSecureCoding.h; sourceTree = "<group>"; }; + 1722118F0E2EE10900EAFA19222731DD /* quant_dec.c */ = {isa = PBXFileReference; includeInIndex = 1; name = quant_dec.c; path = src/dec/quant_dec.c; sourceTree = "<group>"; }; + 172DD778AA29D60C30C35414F10BD6E4 /* FirebaseCore.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FirebaseCore.h; path = FirebaseCore/Sources/Public/FirebaseCore/FirebaseCore.h; sourceTree = "<group>"; }; + 17323B5A1FCF01A9DEA3C31A29F96404 /* RCTCxxUtils.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTCxxUtils.mm; sourceTree = "<group>"; }; + 173E059CC0B22FC43C047F7226085477 /* FIRInstallationsIIDStore.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRInstallationsIIDStore.m; path = FirebaseInstallations/Source/Library/IIDMigration/FIRInstallationsIIDStore.m; sourceTree = "<group>"; }; + 174AE9F8FFEA896956777A4D5A703D6C /* Portability.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Portability.h; path = folly/Portability.h; sourceTree = "<group>"; }; + 174E2ABE9ABBAF40676AC61958A65E8B /* BSGStorageMigratorV0V1.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = BSGStorageMigratorV0V1.m; sourceTree = "<group>"; }; 1755BCB66039C137A85759A7F94BCBA6 /* Pods-defaults-Rocket.Chat-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "Pods-defaults-Rocket.Chat-dummy.m"; sourceTree = "<group>"; }; - 1756CBAB34D943C6297BED0A55482AA7 /* SKHighlightOverlay.mm */ = {isa = PBXFileReference; includeInIndex = 1; name = SKHighlightOverlay.mm; path = iOS/Plugins/FlipperKitPluginUtils/FlipperKitHighlightOverlay/SKHighlightOverlay.mm; sourceTree = "<group>"; }; - 1758A6F4E7F4EDB8C7347927B69C4110 /* RCTScrollContentView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTScrollContentView.h; sourceTree = "<group>"; }; - 17845CAD6F547C1EDF098F0E862265FE /* react-native-slider-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "react-native-slider-dummy.m"; sourceTree = "<group>"; }; - 1786B30D3A2D0FDA491DA441AA95B05F /* RCTUIUtils.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTUIUtils.h; sourceTree = "<group>"; }; - 17927E411F9A2BFFE622A58AC94ABD1E /* FIRCLSNetworkResponseHandler.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRCLSNetworkResponseHandler.m; path = Crashlytics/Shared/FIRCLSNetworking/FIRCLSNetworkResponseHandler.m; sourceTree = "<group>"; }; - 17B2D7D6EB299F30ECB668D48EFFC693 /* AsyncPauseState.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = AsyncPauseState.h; sourceTree = "<group>"; }; - 17C0CD6ADA9BC193B0782803DC4943F7 /* FIRCLSReportManager_Private.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRCLSReportManager_Private.h; path = Crashlytics/Crashlytics/Controllers/FIRCLSReportManager_Private.h; sourceTree = "<group>"; }; - 17C4A2EBA9F786833C9E659FC731CFD7 /* RNFetchBlobConst.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNFetchBlobConst.h; path = ios/RNFetchBlobConst.h; sourceTree = "<group>"; }; - 17D005E8CCCDFF81E0DEBB9090DEFCDC /* FirebaseAnalytics.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = FirebaseAnalytics.debug.xcconfig; sourceTree = "<group>"; }; - 17EAE7495E58442FC2FD7773A34CB238 /* CPortability.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = CPortability.h; path = folly/CPortability.h; sourceTree = "<group>"; }; - 17FB77BE527E85166F4699810C508556 /* Thread.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = Thread.h; sourceTree = "<group>"; }; - 180D1B18482573ABC89BFE48788B6AAC /* BaselinesTcp.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = BaselinesTcp.cpp; path = rsocket/benchmarks/BaselinesTcp.cpp; sourceTree = "<group>"; }; - 181AF9851716867B9D19B12D9C435955 /* GULAppDelegateSwizzler_Private.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = GULAppDelegateSwizzler_Private.h; path = GoogleUtilities/AppDelegateSwizzler/Internal/GULAppDelegateSwizzler_Private.h; sourceTree = "<group>"; }; - 181BB8553F5626DBE6B2445592F321BF /* 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 = "<group>"; }; - 182A4AD9ECC2018EF67F3EC8BF813BBD /* File-inl.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "File-inl.h"; path = "folly/gen/File-inl.h"; sourceTree = "<group>"; }; - 183DEFA82BC9DB9C9B0C37345C7E6763 /* GFlags.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = GFlags.h; path = folly/portability/GFlags.h; sourceTree = "<group>"; }; - 1848CF67F1E051B439DED093BDF53A20 /* NSImage+Compatibility.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "NSImage+Compatibility.h"; path = "SDWebImage/Core/NSImage+Compatibility.h"; sourceTree = "<group>"; }; - 1849D9626394B1D952A744349A6634B7 /* React-jsinspector-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "React-jsinspector-dummy.m"; sourceTree = "<group>"; }; - 18571F19C03D63DC9FA1F9030B6EA0B9 /* FIRInstallationsAuthTokenResult.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRInstallationsAuthTokenResult.m; path = FirebaseInstallations/Source/Library/FIRInstallationsAuthTokenResult.m; sourceTree = "<group>"; }; - 1857653120D5622FD9F39A9D005F8B7E /* AsyncUDPSocket.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = AsyncUDPSocket.h; path = folly/io/async/AsyncUDPSocket.h; sourceTree = "<group>"; }; - 1859134AD65C65ED5257C915403A0415 /* IntrusiveList.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = IntrusiveList.h; path = folly/IntrusiveList.h; sourceTree = "<group>"; }; - 186F2C22A26007A725E79335C5E6BC62 /* UIView+WebCache.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "UIView+WebCache.h"; path = "SDWebImage/Core/UIView+WebCache.h"; sourceTree = "<group>"; }; - 1886BD93D7B131F8DBADECC1AA9B654F /* YGValue.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = YGValue.cpp; path = yoga/YGValue.cpp; sourceTree = "<group>"; }; - 1892B79315556CD65E27E57D81FA5045 /* fr.lproj */ = {isa = PBXFileReference; includeInIndex = 1; name = fr.lproj; path = "Objective-C/TOCropViewController/Resources/fr.lproj"; sourceTree = "<group>"; }; - 18991E23AA99F50B64E25A247D7A6330 /* Checksum.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Checksum.h; path = folly/hash/Checksum.h; sourceTree = "<group>"; }; - 1899CDD77970FCB7A8B18F971C4DD188 /* JSExecutor.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = JSExecutor.h; sourceTree = "<group>"; }; - 189DE0E4F9AFDB2E31C4C4257EE2E2BF /* GDTCORClock.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = GDTCORClock.m; path = GoogleDataTransport/GDTCORLibrary/GDTCORClock.m; sourceTree = "<group>"; }; - 18ADCDBC13F2746435E16CDFE483C6DD /* Async.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Async.h; path = folly/executors/Async.h; sourceTree = "<group>"; }; - 18B7462B3C061DE486F2ECD2DBB0EFC8 /* Barrier.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Barrier.h; path = folly/futures/Barrier.h; sourceTree = "<group>"; }; - 18BD1B7E92E88CC14EC8DE9514733A18 /* ChannelRequester.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = ChannelRequester.cpp; path = rsocket/statemachine/ChannelRequester.cpp; sourceTree = "<group>"; }; - 18BE84982E8F142FE9CDCC750B190D31 /* RCTConvert+FFFastImage.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "RCTConvert+FFFastImage.m"; path = "ios/FastImage/RCTConvert+FFFastImage.m"; sourceTree = "<group>"; }; - 18C569751F640461AACE7DB4F9B16D40 /* SingleWriterFixedHashMap.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SingleWriterFixedHashMap.h; path = folly/experimental/SingleWriterFixedHashMap.h; sourceTree = "<group>"; }; + 1764D500C81E26344397215CCD33BF3E /* React-RCTAnimation-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "React-RCTAnimation-prefix.pch"; sourceTree = "<group>"; }; + 17709E6A9CCC50ABA08578DF3B215015 /* QueuedImmediateExecutor.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = QueuedImmediateExecutor.cpp; path = folly/executors/QueuedImmediateExecutor.cpp; sourceTree = "<group>"; }; + 178AAE6B594B5B7E771E92DAD364FF10 /* FBCxxFollyDynamicConvert.mm */ = {isa = PBXFileReference; includeInIndex = 1; name = FBCxxFollyDynamicConvert.mm; path = iOS/FlipperKit/FBCxxFollyDynamicConvert/FBCxxFollyDynamicConvert.mm; sourceTree = "<group>"; }; + 17921F43AE5715AC8F9183DE79C84EC9 /* SysTime.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SysTime.h; path = folly/portability/SysTime.h; sourceTree = "<group>"; }; + 179DE4BAD48DE65AB612FD237939782A /* FlipperPlugin.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FlipperPlugin.h; path = xplat/Flipper/FlipperPlugin.h; sourceTree = "<group>"; }; + 17A2515EEC5A739593D4A185E6491270 /* FBLPromise+Reduce.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "FBLPromise+Reduce.h"; path = "Sources/FBLPromises/include/FBLPromise+Reduce.h"; sourceTree = "<group>"; }; + 17A3726E8A87693071F75BC68A931302 /* DynamicConverter.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = DynamicConverter.h; path = folly/DynamicConverter.h; sourceTree = "<group>"; }; + 17A8C29DB9A95FD0E6624D6C1A589262 /* JSBundleType.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; path = JSBundleType.cpp; sourceTree = "<group>"; }; + 17A9D03748A1F6493E29DE072BCEA91E /* RSocketResponder.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = RSocketResponder.cpp; path = rsocket/RSocketResponder.cpp; sourceTree = "<group>"; }; + 17AF539B1F695CF5CD601AD264268C4C /* REAClockNodes.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = REAClockNodes.m; sourceTree = "<group>"; }; + 17BAC1B3D9840CFB9D3EE84C102C5968 /* instrumentation.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = instrumentation.h; sourceTree = "<group>"; }; + 17BB60E549F9941AF2A7C51355DD78CB /* String.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = String.h; path = folly/gen/String.h; sourceTree = "<group>"; }; + 17CEB2C18AD7BC3A2DA630CFE3519CF7 /* ScopedEventBaseThread.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ScopedEventBaseThread.h; path = folly/io/async/ScopedEventBaseThread.h; sourceTree = "<group>"; }; + 17E4C5A160AADEA7769B84DF7FBE0F0E /* FlipperKit-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "FlipperKit-dummy.m"; sourceTree = "<group>"; }; + 17F095D41ADF3C95ABD68678CE18CEA0 /* SDImageIOCoder.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SDImageIOCoder.h; path = SDWebImage/Core/SDImageIOCoder.h; sourceTree = "<group>"; }; + 180B2B732D98EF0E53FCC4AD48D7A10D /* SequencedExecutor.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SequencedExecutor.h; path = folly/executors/SequencedExecutor.h; sourceTree = "<group>"; }; + 180CBAA0F1BD54DBF5E3C1C1E7E37174 /* RCTInputAccessoryView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTInputAccessoryView.h; sourceTree = "<group>"; }; + 180E202451F4D1F49DA7B991516004C8 /* BugsnagUser+Private.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "BugsnagUser+Private.h"; sourceTree = "<group>"; }; + 1812504A074771DDFF9A406E4531F4FA /* KeepaliveTimer.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = KeepaliveTimer.cpp; path = rsocket/internal/KeepaliveTimer.cpp; sourceTree = "<group>"; }; + 1818A93F4880699A304FF3EFE5EF1093 /* UIImageView+WebCache.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "UIImageView+WebCache.m"; path = "SDWebImage/Core/UIImageView+WebCache.m"; sourceTree = "<group>"; }; + 1841CB4A2479C0353942AC067E46AFF6 /* zh-Hant.lproj */ = {isa = PBXFileReference; includeInIndex = 1; name = "zh-Hant.lproj"; path = "Objective-C/TOCropViewController/Resources/zh-Hant.lproj"; sourceTree = "<group>"; }; + 18534EB342673A74174C38DFF2A88228 /* MallocImpl.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = MallocImpl.cpp; path = folly/memory/detail/MallocImpl.cpp; sourceTree = "<group>"; }; + 185A2895867FEA89B6C3318CD2EDF7B3 /* REABezierNode.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = REABezierNode.h; sourceTree = "<group>"; }; + 185EE55983019FB930E6BF2CAEB834EC /* BSGStorageMigratorV0V1.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BSGStorageMigratorV0V1.h; sourceTree = "<group>"; }; + 185FE4E0B9CA2A974DE8757BADB58270 /* UMConstantsInterface.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = UMConstantsInterface.h; path = UMConstantsInterface/UMConstantsInterface.h; sourceTree = "<group>"; }; + 18627B4FB3750C350C14C81CE2081CF7 /* SafeAreaManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = SafeAreaManager.h; sourceTree = "<group>"; }; + 186E7CE6F33802085E2EC35353A2FD82 /* UMAppDelegateWrapper.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = UMAppDelegateWrapper.m; path = UMCore/UMAppDelegateWrapper.m; sourceTree = "<group>"; }; + 186F7E6D85BC225BD8ED6C1B4BFCD44A /* ResumeIdentificationToken.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = ResumeIdentificationToken.cpp; path = rsocket/framing/ResumeIdentificationToken.cpp; sourceTree = "<group>"; }; + 18778C863C7A06733D8CBC31F03817AC /* Malloc.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = Malloc.cpp; path = folly/portability/Malloc.cpp; sourceTree = "<group>"; }; + 18841EAE64922AEF1A7C678B7D082522 /* UMEventEmitterService.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = UMEventEmitterService.h; sourceTree = "<group>"; }; + 1895803C697235430E7866ED95E0A75C /* EXAVPlayerData.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = EXAVPlayerData.h; path = EXAV/EXAVPlayerData.h; sourceTree = "<group>"; }; + 18A04233F2426F80A4B0B02A4A7BDA08 /* ARTRenderable.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = ARTRenderable.m; path = ios/ARTRenderable.m; sourceTree = "<group>"; }; + 18A608A84D0F936007B682AD1951D0F9 /* jsi-inl.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "jsi-inl.h"; sourceTree = "<group>"; }; + 18A757F80BAEFF88D06B7D9C9E1D5719 /* event.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = event.h; path = include/event.h; sourceTree = "<group>"; }; + 18B3EBD7535B5948A767680D08D99FAA /* Rcu-inl.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "Rcu-inl.h"; path = "folly/synchronization/Rcu-inl.h"; sourceTree = "<group>"; }; 18D0B1E13C69654196028DD6EDCC3452 /* libRNFBApp.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; name = libRNFBApp.a; path = libRNFBApp.a; sourceTree = BUILT_PRODUCTS_DIR; }; - 18E4B2F4BB2F7FF67DB269B56E4CCDF0 /* IPAddressV4.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = IPAddressV4.h; path = folly/IPAddressV4.h; sourceTree = "<group>"; }; - 18EBC9E9AA518CA89C3B0494781387BA /* react-native-background-timer.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "react-native-background-timer.debug.xcconfig"; sourceTree = "<group>"; }; - 18F0FA4FDA122C17C4DCBEB2AA25B85E /* RCTSurfaceProtocol.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTSurfaceProtocol.h; sourceTree = "<group>"; }; - 18FFB6B8E3B72F4BA864DD9530CC7A6F /* RCTAnimationDriver.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTAnimationDriver.h; sourceTree = "<group>"; }; - 193324800AD3DBFE52C49B3E1428D6D4 /* RCTDisplayWeakRefreshable.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTDisplayWeakRefreshable.m; sourceTree = "<group>"; }; + 18F36F9B70BC0D51553EACBD420A2ECA /* FIRCLSInternalReport.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRCLSInternalReport.h; path = Crashlytics/Crashlytics/Models/FIRCLSInternalReport.h; sourceTree = "<group>"; }; + 1910682A0F88675E924A1B73E0E37BBB /* Invoke.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Invoke.h; path = folly/functional/Invoke.h; sourceTree = "<group>"; }; + 19168441D5C8B571BF98E174D35C8DFB /* RCTPackagerConnection.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTPackagerConnection.h; sourceTree = "<group>"; }; + 191DA0295160C1B6F24AD7022AD09C6B /* CallOnce.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = CallOnce.h; path = folly/synchronization/CallOnce.h; sourceTree = "<group>"; }; + 192709148C6C37D9585AD5551089661E /* UMConstantsInterface.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = UMConstantsInterface.debug.xcconfig; sourceTree = "<group>"; }; + 1928F203C63BD628DE6CC3FAB3B25A8C /* UMSingletonModule.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = UMSingletonModule.m; path = UMCore/UMSingletonModule.m; sourceTree = "<group>"; }; 1936453FF2A7E3A13063C4917C4D5598 /* libRCT-Folly.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; name = "libRCT-Folly.a"; path = "libRCT-Folly.a"; sourceTree = BUILT_PRODUCTS_DIR; }; - 1969D4A64C9DBF508235F802293B8EBD /* String.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = String.cpp; path = folly/String.cpp; sourceTree = "<group>"; }; - 19778043EF9C8D5381A4CDCD7EABD478 /* signal.c */ = {isa = PBXFileReference; includeInIndex = 1; path = signal.c; sourceTree = "<group>"; }; - 199B4D9418A060D8E6D101491598E0C2 /* RCTSafeAreaViewLocalData.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTSafeAreaViewLocalData.h; sourceTree = "<group>"; }; - 199D2E3FA4093CD5CBD0F97D0EE70B56 /* FIRCLSUnwind_x86.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRCLSUnwind_x86.h; path = Crashlytics/Crashlytics/Unwind/FIRCLSUnwind_x86.h; sourceTree = "<group>"; }; - 19BB8FE3084DED2BBFFA385ECA29B2E6 /* MMKV.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = MMKV.release.xcconfig; sourceTree = "<group>"; }; - 19C40F199DC8A09E224DB48995827F5E /* instrumentation.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = instrumentation.h; sourceTree = "<group>"; }; - 19D8F967D64197E724B3530AC7D14799 /* kqueue.c */ = {isa = PBXFileReference; includeInIndex = 1; path = kqueue.c; sourceTree = "<group>"; }; - 1A1F19A586D4C0D63EA88B6ECDC690E2 /* UMPermissionsInterface.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = UMPermissionsInterface.h; path = UMPermissionsInterface/UMPermissionsInterface.h; sourceTree = "<group>"; }; - 1A2F80DEFE681CACE159542DB9E6A231 /* Benchmark.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = Benchmark.cpp; path = folly/Benchmark.cpp; sourceTree = "<group>"; }; - 1A4213B6882D8C685BE04A8787BC1E6A /* Codel.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Codel.h; path = folly/executors/Codel.h; sourceTree = "<group>"; }; - 1A54E82E346C84E98425FADAF6834BFD /* TcpDuplexConnection.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = TcpDuplexConnection.cpp; path = rsocket/transports/tcp/TcpDuplexConnection.cpp; sourceTree = "<group>"; }; - 1A5D76D484B71B551E3699390AAF7DE1 /* BugsnagReactNative.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = BugsnagReactNative.debug.xcconfig; sourceTree = "<group>"; }; - 1A70B7A56F68D3486558EAE18A64C6DE /* StreamRequester.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = StreamRequester.h; path = rsocket/statemachine/StreamRequester.h; sourceTree = "<group>"; }; - 1A749AD6FFFE36A24DFDAD2619EB68F7 /* FBLPromise+Delay.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "FBLPromise+Delay.m"; path = "Sources/FBLPromises/FBLPromise+Delay.m"; sourceTree = "<group>"; }; - 1A7CE26C0CA1D4575095C3AD73588D7B /* RCTNetworkPlugins.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTNetworkPlugins.h; path = Libraries/Network/RCTNetworkPlugins.h; sourceTree = "<group>"; }; - 1A8F7FA2623FB4162CFFE9AC380521F2 /* FIRHeartbeatInfo.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRHeartbeatInfo.m; path = FirebaseCore/Sources/FIRHeartbeatInfo.m; sourceTree = "<group>"; }; - 1AB2709DA658997009EE4C33507AAC44 /* FirebaseCrashlytics.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = FirebaseCrashlytics.release.xcconfig; sourceTree = "<group>"; }; - 1AD786D1FFEBD9B081A0830735573F7E /* FIRCLSRecordApplication.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRCLSRecordApplication.m; path = Crashlytics/Crashlytics/Models/Record/FIRCLSRecordApplication.m; sourceTree = "<group>"; }; - 1AEEDE00F48399B38ECC97FB2A33A46A /* FIRCLSInstallIdentifierModel.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRCLSInstallIdentifierModel.h; path = Crashlytics/Crashlytics/Models/FIRCLSInstallIdentifierModel.h; sourceTree = "<group>"; }; - 1AF4330BD6DD0F1AAC8EAA362E56F1F4 /* BSG_KSCrashSentry_MachException.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BSG_KSCrashSentry_MachException.h; sourceTree = "<group>"; }; - 1AF8240480B74734E9ACF9DCC64540B5 /* Util.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Util.h; path = folly/container/detail/Util.h; sourceTree = "<group>"; }; - 1AFBC8012C03C0758C3004F0FFCDDE3B /* Cursor.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = Cursor.cpp; path = folly/io/Cursor.cpp; sourceTree = "<group>"; }; - 1B02821B6E81E20C9CC6052F61C621C4 /* GULLoggerLevel.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = GULLoggerLevel.h; path = GoogleUtilities/Logger/Public/GULLoggerLevel.h; sourceTree = "<group>"; }; - 1B1D16C4FA2EE254799289AADD10A332 /* GDTCORAssert.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = GDTCORAssert.m; path = GoogleDataTransport/GDTCORLibrary/GDTCORAssert.m; sourceTree = "<group>"; }; - 1B218D186F54EF65DEED555A468AC649 /* RCTTextSelection.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTTextSelection.h; sourceTree = "<group>"; }; - 1B21BCAB8E12847B8E6F62ADC277BB13 /* RCTUtilsUIOverride.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTUtilsUIOverride.h; sourceTree = "<group>"; }; - 1B354C853DA1F53692CF84A3B1ABC877 /* React-RCTImage-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "React-RCTImage-dummy.m"; sourceTree = "<group>"; }; - 1B3F7EED940B46ECFC021D632EC4EE86 /* RCTLogBox.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTLogBox.mm; sourceTree = "<group>"; }; - 1B5F6CEE5D7CFF670C9C2F1FC8621A17 /* RNDateTimePicker.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = RNDateTimePicker.release.xcconfig; sourceTree = "<group>"; }; - 1B6184996055D56D26C8211166775FE1 /* FlipperKit-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "FlipperKit-dummy.m"; sourceTree = "<group>"; }; - 1B66C0BC893BAE6AF6FA76CBE2469AA8 /* GULMutableDictionary.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = GULMutableDictionary.m; path = GoogleUtilities/Network/GULMutableDictionary.m; sourceTree = "<group>"; }; - 1B7A5687EC3FECBF2152FC845F27CF0C /* RCTVibration.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTVibration.mm; sourceTree = "<group>"; }; - 1B7B1EAFBA5C026A9F7DA41C1B308F5A /* Optional.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Optional.h; path = folly/Optional.h; sourceTree = "<group>"; }; - 1B83C5B505E0B8D0D8572D5D9ECEF9D1 /* SDWebImageDownloader.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = SDWebImageDownloader.m; path = SDWebImage/Core/SDWebImageDownloader.m; sourceTree = "<group>"; }; - 1B86A59900D99654F5C7B2EBC25EA41E /* SDWebImageCacheSerializer.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SDWebImageCacheSerializer.h; path = SDWebImage/Core/SDWebImageCacheSerializer.h; sourceTree = "<group>"; }; - 1B95CA518AB99C7208289965A486D6FE /* SequencedExecutor.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SequencedExecutor.h; path = folly/executors/SequencedExecutor.h; sourceTree = "<group>"; }; - 1B95FD1CBD6AAFC3CF3DA514411F74B4 /* Checksum.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = Checksum.cpp; path = folly/hash/Checksum.cpp; sourceTree = "<group>"; }; - 1B981C23504E6D05D84784151C16C344 /* RNNotificationParser.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNNotificationParser.h; path = RNNotifications/RNNotificationParser.h; sourceTree = "<group>"; }; - 1B9BACB0377CD8C8008AD405848F4D2C /* CxxNativeModule.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; path = CxxNativeModule.cpp; sourceTree = "<group>"; }; - 1BB261D6EBB0A06A931BB83D097DB32C /* HardwareConcurrency.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = HardwareConcurrency.cpp; path = folly/system/HardwareConcurrency.cpp; sourceTree = "<group>"; }; - 1BBC025510EABED14B092533E2EA14D6 /* ThreadCachedInt.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ThreadCachedInt.h; path = folly/ThreadCachedInt.h; sourceTree = "<group>"; }; - 1BC2C2D517C3AAECFF85699B7FA6FB09 /* FIRCLSURLSessionConfiguration.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRCLSURLSessionConfiguration.m; path = Crashlytics/Crashlytics/FIRCLSURLSession/FIRCLSURLSessionConfiguration.m; sourceTree = "<group>"; }; - 1BCDE75F8D6EB7B2E4AD002DD63895A9 /* GDTCCTPrioritizer.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = GDTCCTPrioritizer.m; path = GoogleDataTransportCCTSupport/GDTCCTLibrary/GDTCCTPrioritizer.m; sourceTree = "<group>"; }; - 1BD2D2A94E724B03DE3F8DF09C6C406D /* RNBootSplash.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = RNBootSplash.release.xcconfig; sourceTree = "<group>"; }; - 1BE007A3B2DCB6601D82C16DCA04FC1C /* RCTCustomInputControllerTemp.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTCustomInputControllerTemp.m; sourceTree = "<group>"; }; - 1BE2CE95755FD233875DDCC84C917EA0 /* JSONSchema.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = JSONSchema.h; path = folly/experimental/JSONSchema.h; sourceTree = "<group>"; }; - 1C1EE646B96355CEC7249BBC052C77EC /* lossless_enc_sse41.c */ = {isa = PBXFileReference; includeInIndex = 1; name = lossless_enc_sse41.c; path = src/dsp/lossless_enc_sse41.c; sourceTree = "<group>"; }; - 1C363FF244E55F1750F22E78AB8BFCD8 /* rn-extensions-share.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = "rn-extensions-share.podspec"; sourceTree = "<group>"; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; - 1C4098C080880C9902B332954C09E608 /* EXVideoThumbnails.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = EXVideoThumbnails.podspec; sourceTree = "<group>"; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; - 1C418CFFC9F39E1A5FC204E52C134F4C /* AsyncTransport.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = AsyncTransport.h; path = folly/io/async/AsyncTransport.h; sourceTree = "<group>"; }; - 1C846DAFD37C35A25F692FCE7C6E93F9 /* muxinternal.c */ = {isa = PBXFileReference; includeInIndex = 1; name = muxinternal.c; path = src/mux/muxinternal.c; sourceTree = "<group>"; }; - 1C88629AF7D9C7E7E38F3E17677FC2DC /* RCTAnimationPlugins.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTAnimationPlugins.h; path = Libraries/NativeAnimation/RCTAnimationPlugins.h; sourceTree = "<group>"; }; - 1C92285652DE1BEBF56EDE5BBC235C1B /* FBLPromises.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FBLPromises.h; path = Sources/FBLPromises/include/FBLPromises.h; sourceTree = "<group>"; }; - 1CD4739532193BEA6F2B46CE2CAC3A2A /* FIRInstallationsHTTPError.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRInstallationsHTTPError.h; path = FirebaseInstallations/Source/Library/Errors/FIRInstallationsHTTPError.h; sourceTree = "<group>"; }; - 1CD803A9BEF9283EC2BA36AE359720AB /* EDFThreadPoolExecutor.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = EDFThreadPoolExecutor.cpp; path = folly/executors/EDFThreadPoolExecutor.cpp; sourceTree = "<group>"; }; - 1CDE6771380C768E14FD930E19FBAEFB /* FIRCLSLogger.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRCLSLogger.m; path = Crashlytics/Crashlytics/Helpers/FIRCLSLogger.m; sourceTree = "<group>"; }; - 1CE60A3BCA8C0C72394A52F3E828C894 /* PriorityUnboundedQueueSet.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = PriorityUnboundedQueueSet.h; path = folly/concurrency/PriorityUnboundedQueueSet.h; sourceTree = "<group>"; }; - 1CF6006987F5370C7D44118131A77BA4 /* MoveWrapper.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = MoveWrapper.h; path = folly/MoveWrapper.h; sourceTree = "<group>"; }; - 1D0833EFB29C9DBA18B45BB7E8104330 /* vlog_is_on.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = vlog_is_on.cc; path = src/vlog_is_on.cc; sourceTree = "<group>"; }; - 1D0B5D9A2C2A0FC990882F9357818AA7 /* SDWebImageCompat.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = SDWebImageCompat.m; path = SDWebImage/Core/SDWebImageCompat.m; sourceTree = "<group>"; }; - 1D211DAD656DEB2E2B152DF669D8F780 /* README.md */ = {isa = PBXFileReference; includeInIndex = 1; path = README.md; sourceTree = "<group>"; }; - 1D4EC3A4E9152127A244D35219F44B64 /* PTUSBHub.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = PTUSBHub.h; path = peertalk/PTUSBHub.h; sourceTree = "<group>"; }; - 1D5E991FA1F0360C7AAA387F45E784D2 /* REATransitionManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = REATransitionManager.h; sourceTree = "<group>"; }; - 1D723EE26569B7CC5274D4FDAAC06E73 /* RCTTextView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTTextView.m; sourceTree = "<group>"; }; - 1D887A378298359AE26B8C8F180008B1 /* GMock.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = GMock.h; path = folly/portability/GMock.h; sourceTree = "<group>"; }; + 193D2ADCED8B78496708FBA2E5C135CD /* RCTRootView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTRootView.h; sourceTree = "<group>"; }; + 194219E1A9BEAF2FEEA1934B5909C073 /* Assume.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = Assume.cpp; path = folly/lang/Assume.cpp; sourceTree = "<group>"; }; + 194758BFF0EDF20056BB0EF535F84B79 /* SDImageLoadersManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = SDImageLoadersManager.m; path = SDWebImage/Core/SDImageLoadersManager.m; sourceTree = "<group>"; }; + 1948A6D0CDF7975A216C1681F5AD37B4 /* SDImageFrame.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = SDImageFrame.m; path = SDWebImage/Core/SDImageFrame.m; sourceTree = "<group>"; }; + 195DDE6FBED86EB465F00C201F79ED3D /* poll.c */ = {isa = PBXFileReference; includeInIndex = 1; path = poll.c; sourceTree = "<group>"; }; + 1960D56E4D19A1C62EB36FDC3EC3071F /* JSCExecutorFactory.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = JSCExecutorFactory.h; sourceTree = "<group>"; }; + 1965B5BCAD6EC88C02A402ECF22794FE /* RCTRsa.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RCTRsa.m; path = ios/RCTCrypto/RCTRsa.m; sourceTree = "<group>"; }; + 19687C02E09933133EB049BFDBB8BD5D /* FunctionScheduler.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FunctionScheduler.h; path = folly/experimental/FunctionScheduler.h; sourceTree = "<group>"; }; + 196B684FE01202205F7C293DDDC2A697 /* UMUtilities.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = UMUtilities.h; path = UMCore/UMUtilities.h; sourceTree = "<group>"; }; + 197F55797A406CA1FDC933CB23EE8E2C /* decorator.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = decorator.h; sourceTree = "<group>"; }; + 19B62BF389FC5982BB36FAA0D17C0662 /* GlobalShutdownSocketSet.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = GlobalShutdownSocketSet.h; path = folly/io/GlobalShutdownSocketSet.h; sourceTree = "<group>"; }; + 19BF4ECC51547C51107B3FCF3410CBDE /* FIROptionsInternal.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIROptionsInternal.h; path = FirebaseCore/Sources/Private/FIROptionsInternal.h; sourceTree = "<group>"; }; + 19C03714E1CFB1CE5B3485C6DA8FF0D4 /* RCTScrollViewManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTScrollViewManager.h; sourceTree = "<group>"; }; + 19DEC86B796AFA6357C76938F5511B32 /* FlowableObserveOnOperator.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FlowableObserveOnOperator.h; path = yarpl/flowable/FlowableObserveOnOperator.h; sourceTree = "<group>"; }; + 19E232523E363F855E72D201E7A8E37C /* RCTKeyCommandsManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTKeyCommandsManager.h; path = ios/KeyCommands/RCTKeyCommandsManager.h; sourceTree = "<group>"; }; + 19F041F4C5B129A4F3340E1D2B7D9ECF /* fast-dtoa.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "fast-dtoa.h"; path = "double-conversion/fast-dtoa.h"; sourceTree = "<group>"; }; + 1A01A8487A446A06412C2DA00ED26455 /* CodedInputDataCrypt_OSX.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = CodedInputDataCrypt_OSX.cpp; path = Core/CodedInputDataCrypt_OSX.cpp; sourceTree = "<group>"; }; + 1A0EF8B2BC80C6EC5E6B732596FAA0F4 /* GlobalShutdownSocketSet.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = GlobalShutdownSocketSet.cpp; path = folly/io/GlobalShutdownSocketSet.cpp; sourceTree = "<group>"; }; + 1A197B590039D6E16FE10EA16E6DEFAE /* FIRCLSMachOSlice.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRCLSMachOSlice.m; path = Crashlytics/Shared/FIRCLSMachO/FIRCLSMachOSlice.m; sourceTree = "<group>"; }; + 1A2582A0D7CD2DB2109561639E902BC9 /* GULLoggerLevel.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = GULLoggerLevel.h; path = GoogleUtilities/Logger/Public/GULLoggerLevel.h; sourceTree = "<group>"; }; + 1A2AB5B10BF8177FEF938E1DE5ACB5DD /* BSGJSONSerialization.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BSGJSONSerialization.h; sourceTree = "<group>"; }; + 1A2BBD20BA4A44E2396498DD89D9251A /* FIRComponentContainer.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRComponentContainer.h; path = FirebaseCore/Sources/Private/FIRComponentContainer.h; sourceTree = "<group>"; }; + 1A2CB029B12A5A12396F37B487A85183 /* MMKV_IO.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = MMKV_IO.h; path = Core/MMKV_IO.h; sourceTree = "<group>"; }; + 1A2F0092199517E21640E0A5311334C6 /* SDDiskCache.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = SDDiskCache.m; path = SDWebImage/Core/SDDiskCache.m; sourceTree = "<group>"; }; + 1A36517820140511F2A7CA13C100543D /* rescaler_sse2.c */ = {isa = PBXFileReference; includeInIndex = 1; name = rescaler_sse2.c; path = src/dsp/rescaler_sse2.c; sourceTree = "<group>"; }; + 1A515CEA2A9F3D0D32C3D6245861B119 /* EvictingCacheMap.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = EvictingCacheMap.h; path = folly/container/EvictingCacheMap.h; sourceTree = "<group>"; }; + 1A5605A003470528997BEEEC9427041E /* react-native-appearance.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = "react-native-appearance.podspec"; sourceTree = "<group>"; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; + 1A622CD9ECA22D11BB3CE6F3C5263BB0 /* React-RCTBlob.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = "React-RCTBlob.podspec"; sourceTree = "<group>"; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; + 1A63131F460DE07B9433666C5A89E8CA /* FBDefines.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FBDefines.h; path = iOS/FBDefines/FBDefines.h; sourceTree = "<group>"; }; + 1A6BF01E15B9068DF6E8D6578E71D733 /* LICENSE */ = {isa = PBXFileReference; includeInIndex = 1; path = LICENSE; sourceTree = "<group>"; }; + 1A74625F08EFCBE38E874C98F984D054 /* RCTShadowView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTShadowView.m; sourceTree = "<group>"; }; + 1A81DBB43980F9F09031CC29D0F03195 /* FBLPromise+Always.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "FBLPromise+Always.h"; path = "Sources/FBLPromises/include/FBLPromise+Always.h"; sourceTree = "<group>"; }; + 1A90FD6091CA22C8568DA6CC406B555B /* SysStat.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SysStat.h; path = folly/portability/SysStat.h; sourceTree = "<group>"; }; + 1A9638AFE653B4FEE8A22B4484C701B3 /* RCTSinglelineTextInputView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTSinglelineTextInputView.m; sourceTree = "<group>"; }; + 1A9F8591F2B098D7202BFA3E470BF076 /* FramedReader.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FramedReader.h; path = rsocket/framing/FramedReader.h; sourceTree = "<group>"; }; + 1AA62C4CFE08E458DFE5EF0187C26F04 /* UMAppLifecycleListener.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = UMAppLifecycleListener.h; sourceTree = "<group>"; }; + 1AA67571B37D6DF127BEFC3BB0F740A9 /* Flowable.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Flowable.h; path = yarpl/flowable/Flowable.h; sourceTree = "<group>"; }; + 1AAAC6D32A5E08F0812580035A31496B /* NetworkSocket.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = NetworkSocket.h; path = folly/net/NetworkSocket.h; sourceTree = "<group>"; }; + 1AB733080E0BC6F890739987E6D8854F /* ThreadLock.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = ThreadLock.cpp; path = Core/ThreadLock.cpp; sourceTree = "<group>"; }; + 1AC00B115DA4151054C6109CF6F127F7 /* FIRCLSSignal.c */ = {isa = PBXFileReference; includeInIndex = 1; name = FIRCLSSignal.c; path = Crashlytics/Crashlytics/Handlers/FIRCLSSignal.c; sourceTree = "<group>"; }; + 1AD061EB19068E967A52EA97CB9C0705 /* Payload.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Payload.h; path = rsocket/Payload.h; sourceTree = "<group>"; }; + 1AF0C8044A3AEFF8B90BC48C051D33DE /* RNCNetInfo.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNCNetInfo.m; path = ios/RNCNetInfo.m; sourceTree = "<group>"; }; + 1B0BE4F6E0348631EC7C024F5D9D6294 /* neon.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = neon.h; path = src/dsp/neon.h; sourceTree = "<group>"; }; + 1B1784AA0603C76CD8EAA1A29BB53F03 /* RNRootView.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = RNRootView.release.xcconfig; sourceTree = "<group>"; }; + 1B36AF39935C7942118976E194A3AA88 /* UIImage+Transform.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "UIImage+Transform.m"; path = "SDWebImage/Core/UIImage+Transform.m"; sourceTree = "<group>"; }; + 1B435EF2017E1F20AD5CF118245FBEB4 /* RCTImageURLLoaderWithAttribution.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTImageURLLoaderWithAttribution.mm; sourceTree = "<group>"; }; + 1B451D2C333340E5C61C9D464B249D28 /* libevent.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = libevent.release.xcconfig; sourceTree = "<group>"; }; + 1B48A4A18E8D9025FF28CF6C8D8D3214 /* RNGestureHandlerButton.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNGestureHandlerButton.h; path = ios/RNGestureHandlerButton.h; sourceTree = "<group>"; }; + 1B4A11AB4E78A45D7A88405AEAB34EDC /* AtomicUnorderedMapUtils.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = AtomicUnorderedMapUtils.h; path = folly/detail/AtomicUnorderedMapUtils.h; sourceTree = "<group>"; }; + 1B54047442319FBE15A81424E73DF7FE /* Pretty.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Pretty.h; path = folly/lang/Pretty.h; sourceTree = "<group>"; }; + 1B585001B92D572D8D108B01DE563D87 /* GDTCCTNanopbHelpers.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = GDTCCTNanopbHelpers.m; path = GoogleDataTransport/GDTCCTLibrary/GDTCCTNanopbHelpers.m; sourceTree = "<group>"; }; + 1B5DF456870BB7C289A56F9C7F7DEE44 /* ReactNativeART-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "ReactNativeART-prefix.pch"; sourceTree = "<group>"; }; + 1B64C46BE16567F63E27EF6ADFE47B77 /* StringKeyedUnorderedMap.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = StringKeyedUnorderedMap.h; path = folly/experimental/StringKeyedUnorderedMap.h; sourceTree = "<group>"; }; + 1B80F1E298C7BE951402589FADECE3E6 /* ReactCommon.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = ReactCommon.debug.xcconfig; sourceTree = "<group>"; }; + 1B8B1A0878D880B14F6BF7EC5A6AC3A9 /* SKMacros.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SKMacros.h; path = iOS/FlipperKit/SKMacros.h; sourceTree = "<group>"; }; + 1B8FC75898BE387DE90BBEF2A78DD45F /* RCTKeyCommandConstants.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTKeyCommandConstants.h; path = ios/KeyCommands/RCTKeyCommandConstants.h; sourceTree = "<group>"; }; + 1BA4EFA28CCED3C9B11C8850E0BF68FD /* RCTPicker.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTPicker.m; sourceTree = "<group>"; }; + 1BE0E836F457AD43B41535DC70C29F39 /* GoogleDataTransport-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "GoogleDataTransport-dummy.m"; sourceTree = "<group>"; }; + 1C043B4CC815229BDEE63BE4EA8C06C4 /* MPMCQueue.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = MPMCQueue.h; path = folly/MPMCQueue.h; sourceTree = "<group>"; }; + 1C048DC831E92AF829D40260E0EE5707 /* RCTRootViewInternal.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTRootViewInternal.h; sourceTree = "<group>"; }; + 1C0CD7E02E0E472C9B929866A2372DFB /* GCDAsyncSocket.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = GCDAsyncSocket.h; path = Source/GCD/GCDAsyncSocket.h; sourceTree = "<group>"; }; + 1C28AF71A2550395858FCAE57EF2CDDA /* FlipperKitNetworkPlugin.mm */ = {isa = PBXFileReference; includeInIndex = 1; name = FlipperKitNetworkPlugin.mm; path = iOS/Plugins/FlipperKitNetworkPlugin/FlipperKitNetworkPlugin/FlipperKitNetworkPlugin.mm; sourceTree = "<group>"; }; + 1C32263A3697A3B8DDB3160296E6522A /* SafeAssert.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SafeAssert.h; path = folly/lang/SafeAssert.h; sourceTree = "<group>"; }; + 1C32CB42A0B9314C31EE1A23564DCAD5 /* BugsnagBreadcrumbs.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = BugsnagBreadcrumbs.m; sourceTree = "<group>"; }; + 1C4B1C3D55038D8241E8C3A8DC65EF7F /* RCTResizeMode.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTResizeMode.m; sourceTree = "<group>"; }; + 1C538417BF7BCF241C6B33F4670B4218 /* EXWebBrowser.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = EXWebBrowser.h; path = EXWebBrowser/EXWebBrowser.h; sourceTree = "<group>"; }; + 1C5C9FE5EED5AE4B5BB2873DA9C503F5 /* ClientResumeStatusCallback.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ClientResumeStatusCallback.h; path = rsocket/internal/ClientResumeStatusCallback.h; sourceTree = "<group>"; }; + 1C6A5034BA4A06F978F99765DEF3F3A3 /* AtomicIntrusiveLinkedList.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = AtomicIntrusiveLinkedList.h; path = folly/AtomicIntrusiveLinkedList.h; sourceTree = "<group>"; }; + 1C776F25F21E87DDEAA73384920D0403 /* React-RCTText-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "React-RCTText-dummy.m"; sourceTree = "<group>"; }; + 1C7C86FBA70F8F4B2E985D926E9ED8C1 /* EXVideoPlayerViewControllerDelegate.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = EXVideoPlayerViewControllerDelegate.h; sourceTree = "<group>"; }; + 1C81D211652C3CD57829B1D19B946B92 /* react-native-simple-crypto-umbrella.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "react-native-simple-crypto-umbrella.h"; sourceTree = "<group>"; }; + 1C95842759956FAA3EDC8B5C4EA37FBE /* String.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = String.cpp; path = folly/portability/String.cpp; sourceTree = "<group>"; }; + 1C97342A3E9D7DEF1AC86F5B99518105 /* GFlags.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = GFlags.h; path = folly/portability/GFlags.h; sourceTree = "<group>"; }; + 1CA40677AD993A6339DDD66C2E5F0124 /* GoogleDataTransport.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = GoogleDataTransport.release.xcconfig; sourceTree = "<group>"; }; + 1CBDE06F5604623677F48CC521E897F4 /* RCTInspectorDevServerHelper.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTInspectorDevServerHelper.h; sourceTree = "<group>"; }; + 1CC4697D34AA2DDFB79F152435D5329D /* HazptrObjLinked.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = HazptrObjLinked.h; path = folly/synchronization/HazptrObjLinked.h; sourceTree = "<group>"; }; + 1CF6E15BE461120372F834677473B4EA /* EventBase.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = EventBase.cpp; path = folly/io/async/EventBase.cpp; sourceTree = "<group>"; }; + 1D0C4BF06CD34906FCE76E3ECC41F595 /* RCTAppState.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTAppState.h; path = React/CoreModules/RCTAppState.h; sourceTree = "<group>"; }; + 1D13AFF42849FCF2922C5D4CE85D0C68 /* RCTDecayAnimation.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTDecayAnimation.h; sourceTree = "<group>"; }; + 1D154589323A5765686D3EAEED64220C /* UMPermissionsMethodsDelegate.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = UMPermissionsMethodsDelegate.h; path = UMPermissionsInterface/UMPermissionsMethodsDelegate.h; sourceTree = "<group>"; }; + 1D1D09DAD7CC3D29904EA449EA121FBA /* RNGestureHandlerEvents.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNGestureHandlerEvents.m; path = ios/RNGestureHandlerEvents.m; sourceTree = "<group>"; }; + 1D3AF9C1D38A78E41B8C3516ED850625 /* String.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = String.cpp; path = folly/String.cpp; sourceTree = "<group>"; }; + 1D44A144ECD9CE9C48C62E589BF46484 /* UninitializedMemoryHacks.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = UninitializedMemoryHacks.h; path = folly/memory/UninitializedMemoryHacks.h; sourceTree = "<group>"; }; + 1D44D0157D99893E5B3E1A565EAEBF7C /* RCTReconnectingWebSocket.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTReconnectingWebSocket.h; path = Libraries/WebSocket/RCTReconnectingWebSocket.h; sourceTree = "<group>"; }; + 1D4F80F38FCBDB98573E1F28BFD1E1E8 /* stl_logging.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = stl_logging.h; path = src/glog/stl_logging.h; sourceTree = "<group>"; }; + 1D549A6D5989F2158CE879EFC2085EED /* RNCConnectionState.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNCConnectionState.m; path = ios/RNCConnectionState.m; sourceTree = "<group>"; }; + 1D6942D068B09895C41350CB6C8CC2A0 /* MiniPBCoder.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = MiniPBCoder.cpp; path = Core/MiniPBCoder.cpp; sourceTree = "<group>"; }; + 1D7A130AD6D7EFE6B8F448CCB137D3DD /* RCTPerformanceLogger.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTPerformanceLogger.h; sourceTree = "<group>"; }; + 1D7CA54C3CC5E6931E2862151529CC7E /* DiscriminatedPtrDetail.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = DiscriminatedPtrDetail.h; path = folly/detail/DiscriminatedPtrDetail.h; sourceTree = "<group>"; }; + 1D9DEB733CE9D2A9744D90E5190C5223 /* GULUserDefaults.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = GULUserDefaults.h; path = GoogleUtilities/UserDefaults/Private/GULUserDefaults.h; sourceTree = "<group>"; }; + 1DA22A8BB0CCBC35373CA18887183FA1 /* FIRDiagnosticsData.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRDiagnosticsData.h; path = FirebaseCore/Sources/FIRDiagnosticsData.h; sourceTree = "<group>"; }; + 1DAAF261F2D17945D565CA6D8C7B7931 /* AntDesign.ttf */ = {isa = PBXFileReference; includeInIndex = 1; name = AntDesign.ttf; path = Fonts/AntDesign.ttf; sourceTree = "<group>"; }; + 1DC3B08C2A3EA48E6DAFE3C6E4DF4E0C /* Hazptr-fwd.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "Hazptr-fwd.h"; path = "folly/synchronization/Hazptr-fwd.h"; sourceTree = "<group>"; }; 1DC66AC6FB5802B9BA94177EDB54263D /* libRNCPicker.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; name = libRNCPicker.a; path = libRNCPicker.a; sourceTree = BUILT_PRODUCTS_DIR; }; - 1DE1EF90DC2BBDA0ABA8208EFED815A0 /* RCTSurfaceSizeMeasureMode.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTSurfaceSizeMeasureMode.mm; sourceTree = "<group>"; }; - 1DF5C4EEFBC2F3A09EB6CB6F3EDA71FD /* FLEXUtility.mm */ = {isa = PBXFileReference; includeInIndex = 1; name = FLEXUtility.mm; path = iOS/Plugins/FlipperKitNetworkPlugin/SKIOSNetworkPlugin/FLEXNetworkLib/FLEXUtility.mm; sourceTree = "<group>"; }; - 1DFF3208242ED749C395BE3D2E37E627 /* FIRCLSCompoundOperation.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRCLSCompoundOperation.m; path = Crashlytics/Shared/FIRCLSOperation/FIRCLSCompoundOperation.m; sourceTree = "<group>"; }; - 1E1007F4054FC430ED1A198952B47D69 /* FIRCLSReportAdapter_Private.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRCLSReportAdapter_Private.h; path = Crashlytics/Crashlytics/Models/Record/FIRCLSReportAdapter_Private.h; sourceTree = "<group>"; }; - 1E3906B67AE280892E16D218B31CE65D /* json.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = json.cpp; path = folly/json.cpp; sourceTree = "<group>"; }; - 1E39C777BCB1CBEC757CF7DB20CD46B3 /* FIRCLSContext.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRCLSContext.h; path = Crashlytics/Crashlytics/Components/FIRCLSContext.h; sourceTree = "<group>"; }; - 1E4230BE8F440376E8C2056CE10932FB /* FIRCLSContext.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRCLSContext.m; path = Crashlytics/Crashlytics/Components/FIRCLSContext.m; sourceTree = "<group>"; }; - 1E5C1EF5ACFAEA6C34BD6D5DEDC3FD68 /* FlipperDiagnosticsViewController.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FlipperDiagnosticsViewController.h; path = iOS/FlipperKit/FlipperDiagnosticsViewController.h; sourceTree = "<group>"; }; - 1E688FE81B06A10237ADB57140A2DC8C /* RNGestureHandlerDirection.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNGestureHandlerDirection.h; path = ios/RNGestureHandlerDirection.h; sourceTree = "<group>"; }; - 1E7A67F3728F9137FBCE4D5B6613BAEE /* Util.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Util.h; path = folly/container/detail/Util.h; sourceTree = "<group>"; }; - 1E8378298D5B969F8DE52819062D87F2 /* EXWebBrowser-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "EXWebBrowser-dummy.m"; sourceTree = "<group>"; }; - 1E89B6B8FDB288DDFFC2F6F07006D9FA /* Phase.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Phase.h; path = folly/init/Phase.h; sourceTree = "<group>"; }; - 1EA1B57C073AC14B20B5E5905D1131EA /* CodedInputDataCrypt.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = CodedInputDataCrypt.h; path = Core/CodedInputDataCrypt.h; sourceTree = "<group>"; }; - 1EAEEC68C0C4EF5223271B9D61A19D6F /* ARTTextManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = ARTTextManager.m; sourceTree = "<group>"; }; - 1EB3BCD632748D1750199C21F0F1FFF8 /* SDAnimatedImage.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = SDAnimatedImage.m; path = SDWebImage/Core/SDAnimatedImage.m; sourceTree = "<group>"; }; - 1EC02292322F492419329A9C87450E9F /* GoogleDataTransport-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "GoogleDataTransport-dummy.m"; sourceTree = "<group>"; }; - 1EC50934E3A2BC5FF287395B8A34E26E /* SerialExecutor.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = SerialExecutor.cpp; path = folly/executors/SerialExecutor.cpp; sourceTree = "<group>"; }; - 1EC80EEA530279E219DA9C2BAFC44698 /* FIRCLSURLSessionConfiguration.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRCLSURLSessionConfiguration.h; path = Crashlytics/Crashlytics/FIRCLSURLSession/FIRCLSURLSessionConfiguration.h; sourceTree = "<group>"; }; - 1ECB98E494D26D3CE6B88FA3164715A5 /* LICENSE.txt */ = {isa = PBXFileReference; includeInIndex = 1; path = LICENSE.txt; sourceTree = "<group>"; }; - 1ED1518F9B4D91C7212B1DF24337648F /* FIRCoreDiagnosticsConnector.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRCoreDiagnosticsConnector.h; path = FirebaseCore/Sources/Private/FIRCoreDiagnosticsConnector.h; sourceTree = "<group>"; }; - 1ED60785E613974940745804A80CF521 /* BugsnagFileStore.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BugsnagFileStore.h; sourceTree = "<group>"; }; - 1EF300043F25CCBF87B4550F45407717 /* JSBundleType.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = JSBundleType.h; sourceTree = "<group>"; }; - 1EF847C047A35D234BA6D2C802DA29CE /* SysUio.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = SysUio.cpp; path = folly/portability/SysUio.cpp; sourceTree = "<group>"; }; - 1EFAA1EC8ABC4B195F6D05DB2149CC0A /* SocketFastOpen.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SocketFastOpen.h; path = folly/detail/SocketFastOpen.h; sourceTree = "<group>"; }; - 1F0EE0F7910D4DE8ACCD1C5AA15A07C8 /* CancellationToken.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = CancellationToken.h; path = folly/CancellationToken.h; sourceTree = "<group>"; }; - 1F19CC5C35BF909ABD4BC370AB26FF49 /* RCTRedBoxExtraDataViewController.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTRedBoxExtraDataViewController.m; sourceTree = "<group>"; }; - 1F21DE85C6358409AE64C374D0EC91C2 /* Futex.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = Futex.cpp; path = folly/detail/Futex.cpp; sourceTree = "<group>"; }; - 1F26C9949B8C13255F0D9E2BF80025C9 /* RCTRefreshableProtocol.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTRefreshableProtocol.h; sourceTree = "<group>"; }; - 1F27B274B4E3C0B45C501A1018E1EDC8 /* Bits.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Bits.h; path = folly/experimental/Bits.h; sourceTree = "<group>"; }; - 1F2C767F744E3778FCAA39E128F8FBF0 /* HHWheelTimer-fwd.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "HHWheelTimer-fwd.h"; path = "folly/io/async/HHWheelTimer-fwd.h"; sourceTree = "<group>"; }; - 1F3B6EF4D34085B601971A0296E98F21 /* SharedPromise.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SharedPromise.h; path = folly/futures/SharedPromise.h; sourceTree = "<group>"; }; - 1F52333D428D405656E110A96D202CD1 /* Conv.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Conv.h; path = folly/chrono/Conv.h; sourceTree = "<group>"; }; - 1F6519389DFA260CF2086318A834088C /* Flipper.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = Flipper.release.xcconfig; sourceTree = "<group>"; }; - 1F67315E7880925AA24F1ADCA8867579 /* GroupVarint.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = GroupVarint.h; path = folly/GroupVarint.h; sourceTree = "<group>"; }; - 1FA781FE35B9737A289A6F6DE796B40D /* Color+Interpolation.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "Color+Interpolation.m"; sourceTree = "<group>"; }; - 1FDBA1499FAC5D38003778610D1DFAC8 /* react-native-mmkv-storage-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "react-native-mmkv-storage-dummy.m"; sourceTree = "<group>"; }; - 1FE7C4C0DA60ED2DAB89FD5B20737950 /* RNLocalize-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "RNLocalize-dummy.m"; sourceTree = "<group>"; }; - 1FEC121FD23728582B9C1DF5E28A277B /* UMLogManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = UMLogManager.m; sourceTree = "<group>"; }; + 1DCF1DAA9F91BFD401F9EC299B0B2A0C /* UMConstantsInterface.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = UMConstantsInterface.podspec; sourceTree = "<group>"; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; + 1DDB6F082A92CAA259120E89AA67F742 /* hermes.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = hermes.framework; path = destroot/Library/Frameworks/iphoneos/hermes.framework; sourceTree = "<group>"; }; + 1DDD80BC35A11E589D93968BA5745284 /* Synchronized.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Synchronized.h; path = folly/Synchronized.h; sourceTree = "<group>"; }; + 1DE0410E1582C5B2C5ADC77DAAE957D4 /* fi.lproj */ = {isa = PBXFileReference; includeInIndex = 1; name = fi.lproj; path = "Objective-C/TOCropViewController/Resources/fi.lproj"; sourceTree = "<group>"; }; + 1E00FE2FB4F34B818551B9FBCDCCFE4F /* Invoke.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Invoke.h; path = folly/functional/Invoke.h; sourceTree = "<group>"; }; + 1E056EA80C08502FA5C2B3EDE2615AC6 /* AtomicNotification.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = AtomicNotification.h; path = folly/synchronization/AtomicNotification.h; sourceTree = "<group>"; }; + 1E07EC44C0EB1007A7C369086E1849C1 /* React-RCTImage.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "React-RCTImage.release.xcconfig"; sourceTree = "<group>"; }; + 1E0B646FACFA8D0A694DC4B3C7DFD225 /* UniqueInstance.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = UniqueInstance.h; path = folly/detail/UniqueInstance.h; sourceTree = "<group>"; }; + 1E14334F0F1E814B22025C4E1F4DB4F2 /* BugsnagHandledState.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BugsnagHandledState.h; sourceTree = "<group>"; }; + 1E1934E14E1F07FEA3A927AD82CD777C /* GlobalThreadPoolList.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = GlobalThreadPoolList.h; path = folly/executors/GlobalThreadPoolList.h; sourceTree = "<group>"; }; + 1E37499E51FB49512D8F542A58B70688 /* SDWebImageManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SDWebImageManager.h; path = SDWebImage/Core/SDWebImageManager.h; sourceTree = "<group>"; }; + 1E3D9120908BE2B007676F80A40D1FBE /* ChannelRequester.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = ChannelRequester.cpp; path = rsocket/statemachine/ChannelRequester.cpp; sourceTree = "<group>"; }; + 1E59C6FE932AC20318A18BCC49C793DF /* epolltable-internal.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "epolltable-internal.h"; sourceTree = "<group>"; }; + 1E8062F6E493BF76C92222DB9CAB838E /* UMPermissionsInterface-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "UMPermissionsInterface-prefix.pch"; sourceTree = "<group>"; }; + 1E922A64CDDE228D261F29041E16608B /* react-native-mmkv-storage.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = "react-native-mmkv-storage.podspec"; sourceTree = "<group>"; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; + 1E999BB3A94F4C3C8DE6C9F51EB1064C /* ReactNativeUiLib.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = ReactNativeUiLib.podspec; sourceTree = "<group>"; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; + 1E9F8F003D4E5587DD3E7297DE4498E4 /* SKHiddenWindow.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SKHiddenWindow.h; path = iOS/Plugins/FlipperKitLayoutPlugin/FlipperKitLayoutPlugin/utils/SKHiddenWindow.h; sourceTree = "<group>"; }; + 1EA15BC31B95CAA5F932BD649E1AA636 /* hermes-engine-copy-dsyms.sh */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.script.sh; path = "hermes-engine-copy-dsyms.sh"; sourceTree = "<group>"; }; + 1EA1660C495D301B4D88925F663734E4 /* RCTLayout.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTLayout.h; sourceTree = "<group>"; }; + 1EA6BFAE763CA45256D20AC1C876EAE9 /* ManualExecutor.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ManualExecutor.h; path = folly/executors/ManualExecutor.h; sourceTree = "<group>"; }; + 1EA7069ECAA34F7BD59269E02AF68695 /* openssl_md5_dgst.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = openssl_md5_dgst.cpp; path = Core/aes/openssl/openssl_md5_dgst.cpp; sourceTree = "<group>"; }; + 1EB6441C46623EFBB74D374B620D6758 /* Promise.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Promise.h; path = folly/futures/Promise.h; sourceTree = "<group>"; }; + 1ED49CEEF643935D9F795E5F4C4B250B /* EXLocalAuthentication.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = EXLocalAuthentication.debug.xcconfig; sourceTree = "<group>"; }; + 1EDD7A050541CECA5F6D85542968D756 /* SoftRealTimeExecutor.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SoftRealTimeExecutor.h; path = folly/executors/SoftRealTimeExecutor.h; sourceTree = "<group>"; }; + 1EFBBAE8AB7886B389DBD741048D1625 /* RNCSafeAreaShadowView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNCSafeAreaShadowView.m; path = ios/SafeAreaView/RNCSafeAreaShadowView.m; sourceTree = "<group>"; }; + 1F1435941A1E7FCF0BA13968468F6641 /* FIRCLSHandler.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRCLSHandler.m; path = Crashlytics/Crashlytics/Handlers/FIRCLSHandler.m; sourceTree = "<group>"; }; + 1F1AA338890A235F39D8D7B65FC57680 /* HighlighterView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = HighlighterView.h; sourceTree = "<group>"; }; + 1F2E9CE19D7C85E3104D06BB9BAD3EFB /* FIRCLSdSYM.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRCLSdSYM.h; path = Crashlytics/Shared/FIRCLSMachO/FIRCLSdSYM.h; sourceTree = "<group>"; }; + 1F30923CC4A6A0FC16DAF543F2033150 /* RNDateTimePicker-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "RNDateTimePicker-prefix.pch"; sourceTree = "<group>"; }; + 1F30B757D6483351807D2725860DD6B6 /* Aligned.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Aligned.h; path = folly/lang/Aligned.h; sourceTree = "<group>"; }; + 1F490230F54F9D4FE6BE9E7B3D7BE4C6 /* FirebaseCrashlytics.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = FirebaseCrashlytics.debug.xcconfig; sourceTree = "<group>"; }; + 1F4DA30E9E47E418AF24A7BCFEA48801 /* IOThreadPoolExecutor.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = IOThreadPoolExecutor.cpp; path = folly/executors/IOThreadPoolExecutor.cpp; sourceTree = "<group>"; }; + 1F7FF97F65E7627DF562B489EFFD2B03 /* ARTShapeManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = ARTShapeManager.h; sourceTree = "<group>"; }; + 1F80CD4FAF04DDBDE0833E5B6AA3A018 /* RCTImageShadowView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTImageShadowView.h; path = Libraries/Image/RCTImageShadowView.h; sourceTree = "<group>"; }; + 1F83AADFDB339088F4A5728C260CA1CD /* RNCSafeAreaViewManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNCSafeAreaViewManager.h; path = ios/SafeAreaView/RNCSafeAreaViewManager.h; sourceTree = "<group>"; }; + 1F9231F5E44746DEE0F29873146F1620 /* RCTImageLoaderLoggable.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTImageLoaderLoggable.h; path = Libraries/Image/RCTImageLoaderLoggable.h; sourceTree = "<group>"; }; + 1FA402F38C6B613FD548CD6A3EB06A8D /* enc_msa.c */ = {isa = PBXFileReference; includeInIndex = 1; name = enc_msa.c; path = src/dsp/enc_msa.c; sourceTree = "<group>"; }; + 1FA8B920DE7C39C8F61C5628BAA95663 /* Hardware.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Hardware.h; path = folly/chrono/Hardware.h; sourceTree = "<group>"; }; + 1FC61343B66E32B55208CE054D2C8AD3 /* RNNotificationParser.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNNotificationParser.m; path = RNNotifications/RNNotificationParser.m; sourceTree = "<group>"; }; + 1FC677C4009E2D403D641CDB80110FE0 /* GULHeartbeatDateStorage.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = GULHeartbeatDateStorage.h; path = GoogleUtilities/Environment/Private/GULHeartbeatDateStorage.h; sourceTree = "<group>"; }; + 1FC8C7FEF43365F0F3E9C8898A5CD658 /* Flipper-Glog-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "Flipper-Glog-dummy.m"; sourceTree = "<group>"; }; + 1FDFDB4CE3ECC7AC06B4F575248473D6 /* RCTSurfaceRootShadowView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTSurfaceRootShadowView.h; sourceTree = "<group>"; }; + 1FE85751FD04148C40BE6AD60B12D67A /* UMBridgeModule.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = UMBridgeModule.h; path = UMReactNativeAdapter/UMBridgeModule.h; sourceTree = "<group>"; }; + 1FFC2946FE885DBB1B5399E34EA2A84F /* React-RCTNetwork-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "React-RCTNetwork-prefix.pch"; sourceTree = "<group>"; }; + 1FFC9CF165C8A81F5E9A6FA7EA21DDBB /* ExecutorWithPriority.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ExecutorWithPriority.h; path = folly/executors/ExecutorWithPriority.h; sourceTree = "<group>"; }; + 20037769F813A6C98F1BD2857E37129E /* SDWebImageDownloaderDecryptor.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = SDWebImageDownloaderDecryptor.m; path = SDWebImage/Core/SDWebImageDownloaderDecryptor.m; sourceTree = "<group>"; }; + 200802D09309021A6DB81B6BABDFA193 /* bufferevent_ratelim.c */ = {isa = PBXFileReference; includeInIndex = 1; path = bufferevent_ratelim.c; sourceTree = "<group>"; }; + 2019E9377898634C65FBAC3D6FA29C85 /* React-RCTAnimation.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "React-RCTAnimation.debug.xcconfig"; sourceTree = "<group>"; }; + 20250D610646EF8FC603D64E86A09BFF /* MPMCPipelineDetail.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = MPMCPipelineDetail.h; path = folly/detail/MPMCPipelineDetail.h; sourceTree = "<group>"; }; 202722AA0D229A11350F6DC0F267A0BA /* libRNBootSplash.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; name = libRNBootSplash.a; path = libRNBootSplash.a; sourceTree = BUILT_PRODUCTS_DIR; }; - 2054197C408D33E1C62FD02C30E9B296 /* ru.lproj */ = {isa = PBXFileReference; includeInIndex = 1; name = ru.lproj; path = "Objective-C/TOCropViewController/Resources/ru.lproj"; sourceTree = "<group>"; }; - 207111C4FFBA3C94778096073B011DFE /* RCTSurfaceRootShadowViewDelegate.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTSurfaceRootShadowViewDelegate.h; sourceTree = "<group>"; }; - 2071AD3F0AFE230C3414C7848E15AE62 /* RNFBAnalyticsModule.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNFBAnalyticsModule.h; path = ios/RNFBAnalytics/RNFBAnalyticsModule.h; sourceTree = "<group>"; }; - 2082D8C40A78A5CF90F5A370481D0F45 /* LICENSE */ = {isa = PBXFileReference; includeInIndex = 1; path = LICENSE; sourceTree = "<group>"; }; - 208FA81342E93D1EEFE65C0E4EF49F03 /* BugsnagReactNativeEmitter.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BugsnagReactNativeEmitter.h; sourceTree = "<group>"; }; - 209301772AC99034EB96B79FE63096F9 /* Future.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = Future.cpp; path = folly/futures/Future.cpp; sourceTree = "<group>"; }; - 209F29716FAF00EE6C3A8047B39A532A /* RNForceTouchHandler.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RNForceTouchHandler.h; sourceTree = "<group>"; }; - 20A19B867E87A3F15E66D9D7C0D9DE34 /* REAModule.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = REAModule.m; path = ios/REAModule.m; sourceTree = "<group>"; }; - 20A5C47A270AF6321ACE7FF6B82E0F0F /* log.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = log.cpp; path = yoga/log.cpp; sourceTree = "<group>"; }; - 20D29AC790079739A24F54BE9F434E94 /* REAStyleNode.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = REAStyleNode.m; sourceTree = "<group>"; }; - 20D5664A86207CE161CEA323A6300292 /* RNVectorIcons-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "RNVectorIcons-prefix.pch"; sourceTree = "<group>"; }; - 20DD2DCEC6778419564746DE9727F304 /* MMKV_IO.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = MMKV_IO.h; path = Core/MMKV_IO.h; sourceTree = "<group>"; }; - 20F579A80884E8844CCC2526B455F17A /* ModuleRegistry.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = ModuleRegistry.h; sourceTree = "<group>"; }; - 20F6BA2AE366AF4C6F7F93F4965CD616 /* StaticSingletonManager.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = StaticSingletonManager.cpp; path = folly/detail/StaticSingletonManager.cpp; sourceTree = "<group>"; }; - 20FB1C46B3A480564D18373330A4363E /* utilities.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = utilities.cc; path = src/utilities.cc; sourceTree = "<group>"; }; - 20FC4995E75BF49DB27DB50D147EE508 /* PromisesObjC.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = PromisesObjC.debug.xcconfig; sourceTree = "<group>"; }; - 210647A8DAB9BA0BC3CFFB53080E24FC /* Exception.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Exception.h; path = folly/lang/Exception.h; sourceTree = "<group>"; }; - 210C8413BB03BC4DB926FE8A054C875D /* AtomicHashUtils.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = AtomicHashUtils.h; path = folly/detail/AtomicHashUtils.h; sourceTree = "<group>"; }; - 211FA11436C5447F1240832819907A3B /* PublisherBase.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = PublisherBase.h; path = rsocket/statemachine/PublisherBase.h; sourceTree = "<group>"; }; - 21208A38F5A34E06291195EF0E2908C6 /* FileUtilDetail.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FileUtilDetail.h; path = folly/detail/FileUtilDetail.h; sourceTree = "<group>"; }; - 21232C6BB4536A408BDAE2BB5D559AD2 /* FIRLibrary.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRLibrary.h; path = FirebaseCore/Sources/Private/FIRLibrary.h; sourceTree = "<group>"; }; - 2137BD408F80C49698ED16257310376A /* ProtocolVersion.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ProtocolVersion.h; path = rsocket/framing/ProtocolVersion.h; sourceTree = "<group>"; }; - 213D548C6546BE0F12326CB0627B85DF /* AtomicLinkedList.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = AtomicLinkedList.h; path = folly/AtomicLinkedList.h; sourceTree = "<group>"; }; - 213E5645948B35C26F6888909095F5A8 /* Varint.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Varint.h; path = folly/Varint.h; sourceTree = "<group>"; }; - 2151DEF50B4887F6217F1F2C8F83338A /* FIRComponentType.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRComponentType.h; path = FirebaseCore/Sources/Private/FIRComponentType.h; sourceTree = "<group>"; }; - 216BEC9C3E14F94116B4559C40897AF2 /* ConcurrentSkipList-inl.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "ConcurrentSkipList-inl.h"; path = "folly/ConcurrentSkipList-inl.h"; sourceTree = "<group>"; }; - 218686AD810DEA476DDD6BF4C3AFEBFE /* IPAddress.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = IPAddress.h; path = folly/IPAddress.h; sourceTree = "<group>"; }; - 218D3AFA6E45B878589B1C721E75F5CA /* RNDeviceInfo.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNDeviceInfo.h; path = ios/RNDeviceInfo/RNDeviceInfo.h; sourceTree = "<group>"; }; - 219E0924E0BE9C7E6130A5F93A67232A /* RCTBackedTextInputViewProtocol.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTBackedTextInputViewProtocol.h; sourceTree = "<group>"; }; - 21A6053EC3D1830C964689171A8B773B /* QBVideoIndicatorView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = QBVideoIndicatorView.m; path = ios/QBImagePicker/QBImagePicker/QBVideoIndicatorView.m; sourceTree = "<group>"; }; - 21DE4820CB09FD8DF00F8B3310FA446F /* Syslog.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Syslog.h; path = folly/portability/Syslog.h; sourceTree = "<group>"; }; - 21ECF7AE502B94FDB7E0B8BD862E867A /* UMBridgeModule.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = UMBridgeModule.h; path = UMReactNativeAdapter/UMBridgeModule.h; sourceTree = "<group>"; }; + 202A617B5DEE762F05545816C1FEF35F /* Try-inl.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "Try-inl.h"; path = "folly/Try-inl.h"; sourceTree = "<group>"; }; + 203BEA05B06B2E1A1534E494846FD7DE /* SSLContext.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = SSLContext.cpp; path = folly/io/async/SSLContext.cpp; sourceTree = "<group>"; }; + 204F067D5D1AA1B323B1F61E9E15474E /* KeyboardTrackingViewTempManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = KeyboardTrackingViewTempManager.h; sourceTree = "<group>"; }; + 2051544C3E94931527318464D6F58B46 /* RequestResponseResponder.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RequestResponseResponder.h; path = rsocket/statemachine/RequestResponseResponder.h; sourceTree = "<group>"; }; + 20536DFECCAD67C1A36C22F8BF82D921 /* CodedInputData.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = CodedInputData.cpp; path = Core/CodedInputData.cpp; sourceTree = "<group>"; }; + 2057A12148204AD662E2D930FF0F0F1B /* BSG_KSCrashDoctor.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = BSG_KSCrashDoctor.m; sourceTree = "<group>"; }; + 205E9B4034E456E16F07BB4317351CDD /* SDWebImageDownloaderResponseModifier.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = SDWebImageDownloaderResponseModifier.m; path = SDWebImage/Core/SDWebImageDownloaderResponseModifier.m; sourceTree = "<group>"; }; + 207E43A58135813EB4EB8267106FCDAD /* SDWebImage.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = SDWebImage.debug.xcconfig; sourceTree = "<group>"; }; + 209A06FCAB1163AC2F80059DF78157D3 /* KeyboardTrackingViewTempManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = KeyboardTrackingViewTempManager.m; sourceTree = "<group>"; }; + 209E0E8E3219BE52389EA82293090B01 /* BSG_KSCrashReportFields.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BSG_KSCrashReportFields.h; sourceTree = "<group>"; }; + 209F98B2A40B8810E62B1FC946410AA9 /* GlobalExecutor.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = GlobalExecutor.cpp; path = folly/executors/GlobalExecutor.cpp; sourceTree = "<group>"; }; + 20A3891F857FD3CFE9CB38F9E9D80FC5 /* RCTImageLoaderWithAttributionProtocol.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTImageLoaderWithAttributionProtocol.h; path = Libraries/Image/RCTImageLoaderWithAttributionProtocol.h; sourceTree = "<group>"; }; + 20B06F75BE7FBB7628A7F2DAB3CA40A9 /* evbuffer-internal.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "evbuffer-internal.h"; sourceTree = "<group>"; }; + 20BB672B1ED38F35C99F568A333291C4 /* ht-internal.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "ht-internal.h"; sourceTree = "<group>"; }; + 20BEC0350CD783ED0EDECA8B78636C09 /* React-cxxreact-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "React-cxxreact-dummy.m"; sourceTree = "<group>"; }; + 20C59C8C8A34D7F9C8BC92D693CBFDCE /* RNScreens-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "RNScreens-dummy.m"; sourceTree = "<group>"; }; + 20CD2C9813B4017733274E5A18695228 /* TimekeeperScheduledExecutor.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = TimekeeperScheduledExecutor.cpp; path = folly/executors/TimekeeperScheduledExecutor.cpp; sourceTree = "<group>"; }; + 20CE23FE0767DB939DCE8E3DAEA26426 /* GoogleDataTransport.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = GoogleDataTransport.h; path = GoogleDataTransport/GDTCORLibrary/Public/GoogleDataTransport/GoogleDataTransport.h; sourceTree = "<group>"; }; + 20DFC15259D61ECFBBDC81BACFF9285B /* KeepaliveTimer.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = KeepaliveTimer.h; path = rsocket/internal/KeepaliveTimer.h; sourceTree = "<group>"; }; + 20E4E6251BFD115F6262212735947A04 /* Random.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Random.h; path = folly/Random.h; sourceTree = "<group>"; }; + 20E8543AA6C1645A215228802D850FD4 /* FBLPromise+Any.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "FBLPromise+Any.m"; path = "Sources/FBLPromises/FBLPromise+Any.m"; sourceTree = "<group>"; }; + 20EF3CE5AEB50AB1D838CE2D9804AE4B /* FIRInstallationsBackoffController.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRInstallationsBackoffController.h; path = FirebaseInstallations/Source/Library/InstallationsIDController/FIRInstallationsBackoffController.h; sourceTree = "<group>"; }; + 21054BFDA963CAE53BC6C0C930D1F0F1 /* Portability.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Portability.h; path = folly/futures/Portability.h; sourceTree = "<group>"; }; + 21094771FB6E09728AC794C4A8881F7C /* UMExportedModule.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = UMExportedModule.h; path = UMCore/UMExportedModule.h; sourceTree = "<group>"; }; + 2109CB5F9ED104223A72C779DFCBD94F /* AtomicRef.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = AtomicRef.h; path = folly/synchronization/AtomicRef.h; sourceTree = "<group>"; }; + 21162AF148163CED33473BF48B69BC19 /* OpenSSL-Universal-xcframeworks.sh */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.script.sh; path = "OpenSSL-Universal-xcframeworks.sh"; sourceTree = "<group>"; }; + 211A066A61C5BB6009F0B0D2C9D391D4 /* AsyncPipe.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = AsyncPipe.h; path = folly/io/async/AsyncPipe.h; sourceTree = "<group>"; }; + 21221D7FFD65102133957F9FF86FB2D8 /* en.lproj */ = {isa = PBXFileReference; includeInIndex = 1; name = en.lproj; path = React/AccessibilityResources/en.lproj; sourceTree = "<group>"; }; + 2136A1213D6C72B551A9BF56644E3BD9 /* RCTConvert+Transform.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "RCTConvert+Transform.h"; sourceTree = "<group>"; }; + 213D58F4C36044D2D7244175DCDF0213 /* StorageGetters.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = StorageGetters.m; path = ios/StorageGetters.m; sourceTree = "<group>"; }; + 215A5D0D0D87FB5454CB21FDE836220D /* RCTDisplayLink.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTDisplayLink.h; sourceTree = "<group>"; }; + 2162F9DA6A26F7A1AF77AB4FF72956DC /* PThread.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = PThread.h; path = folly/portability/PThread.h; sourceTree = "<group>"; }; + 216C4F74583B1C5297D93FF5D0830416 /* MicroLock.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = MicroLock.h; path = folly/MicroLock.h; sourceTree = "<group>"; }; + 2179D202C8285B9D088632C103064341 /* SDWebImageManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = SDWebImageManager.m; path = SDWebImage/Core/SDWebImageManager.m; sourceTree = "<group>"; }; + 218CF96A79E95351A8CD8A43240E1517 /* SDImageGraphics.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = SDImageGraphics.m; path = SDWebImage/Core/SDImageGraphics.m; sourceTree = "<group>"; }; + 21911C88199C17258D8B57DB3943CC5F /* idec_dec.c */ = {isa = PBXFileReference; includeInIndex = 1; name = idec_dec.c; path = src/dec/idec_dec.c; sourceTree = "<group>"; }; + 219D029E25645D50037F8635115F8CDD /* PTProtocol.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = PTProtocol.h; path = peertalk/PTProtocol.h; sourceTree = "<group>"; }; + 219F95BDC452F054919BE390CA44FAD4 /* Barrier.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = Barrier.cpp; path = folly/futures/Barrier.cpp; sourceTree = "<group>"; }; + 21AFBFF58BAA3F1715D6C5905343CEC6 /* SharedPromise.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SharedPromise.h; path = folly/futures/SharedPromise.h; sourceTree = "<group>"; }; + 21BADC692D5F7B9ECF57058D26FD8E8A /* MMKVCore.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = MMKVCore.release.xcconfig; sourceTree = "<group>"; }; + 21BFDB1E52A12AE42D1CBD6DEDA0FCED /* evrpc-internal.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "evrpc-internal.h"; sourceTree = "<group>"; }; + 21C2DD7D258C28906DE1501EB0F8ACBA /* RNLocalize-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "RNLocalize-dummy.m"; sourceTree = "<group>"; }; + 21D090713EF4723A06E95FD652DDFFB1 /* RCTSafeAreaShadowView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTSafeAreaShadowView.h; sourceTree = "<group>"; }; + 21D105099C4673A692A372F21B62A9BF /* UMFaceDetectorInterface.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = UMFaceDetectorInterface.debug.xcconfig; sourceTree = "<group>"; }; + 21E9B10350B20B46F457F1680D484330 /* RCTSinglelineTextInputView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTSinglelineTextInputView.h; sourceTree = "<group>"; }; + 21EBA6E3E93418399481A3A3B17FF241 /* UIImage+CropRotate.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "UIImage+CropRotate.m"; path = "Objective-C/TOCropViewController/Categories/UIImage+CropRotate.m"; sourceTree = "<group>"; }; + 21FE461871DA4F3A90EE6C510A64509C /* mux_types.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = mux_types.h; path = src/webp/mux_types.h; sourceTree = "<group>"; }; 220361FF3B2778F8F38C2C4DCC5B49FD /* libEXConstants.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; name = libEXConstants.a; path = libEXConstants.a; sourceTree = BUILT_PRODUCTS_DIR; }; - 220D75BBF7829017349A979BCB734ED4 /* FIRCLSProcessReportOperation.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRCLSProcessReportOperation.m; path = Crashlytics/Crashlytics/Operations/Reports/FIRCLSProcessReportOperation.m; sourceTree = "<group>"; }; - 220F7A02C50FD642BCE587FFBF9649EF /* react-native-simple-crypto.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "react-native-simple-crypto.release.xcconfig"; sourceTree = "<group>"; }; + 220BCA6B5683FB1D8C6533560D89F67F /* yuv_sse41.c */ = {isa = PBXFileReference; includeInIndex = 1; name = yuv_sse41.c; path = src/dsp/yuv_sse41.c; sourceTree = "<group>"; }; + 2210CC4400D0694D51F6080A7B00B606 /* RNFastImage.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = RNFastImage.release.xcconfig; sourceTree = "<group>"; }; 22179B26EFA123B0FB129665B0D3749A /* Pods-defaults-Rocket.Chat.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "Pods-defaults-Rocket.Chat.release.xcconfig"; sourceTree = "<group>"; }; - 2225BB6BB6B2D4F5898831945D3BB4BC /* UMTaskManagerInterface.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = UMTaskManagerInterface.h; path = UMTaskManagerInterface/UMTaskManagerInterface.h; sourceTree = "<group>"; }; - 22403A1A10B620C8AEDD2BB6D04A48F1 /* FIRCLSSymbolicationOperation.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRCLSSymbolicationOperation.h; path = Crashlytics/Crashlytics/Operations/Symbolication/FIRCLSSymbolicationOperation.h; sourceTree = "<group>"; }; - 2249782DAE38F15094B7368177F456FD /* Constexpr.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Constexpr.h; path = folly/portability/Constexpr.h; sourceTree = "<group>"; }; - 225B31F9882865796B3764AE575F14B9 /* REATransitionValues.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = REATransitionValues.m; sourceTree = "<group>"; }; - 226310A8D5AB574DE177101E74A1DE17 /* RCTImageSource.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTImageSource.h; sourceTree = "<group>"; }; - 2276E935AF07959AB2B1F1212BD9EF3F /* ScopedTraceSection.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ScopedTraceSection.h; path = folly/tracing/ScopedTraceSection.h; sourceTree = "<group>"; }; - 228D6DB21FCFE39B36DCB5F42552FB22 /* yuv_mips32.c */ = {isa = PBXFileReference; includeInIndex = 1; name = yuv_mips32.c; path = src/dsp/yuv_mips32.c; sourceTree = "<group>"; }; - 2290DE35F2FE49F15FDED12428AEDACB /* stop_watch.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = stop_watch.h; path = folly/stop_watch.h; sourceTree = "<group>"; }; - 229996EBA18541FD5A6EABDF119E951D /* RCTConvert+CoreLocation.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "RCTConvert+CoreLocation.m"; sourceTree = "<group>"; }; - 22A686E40495B915A10C8270E6551F91 /* ARTRadialGradient.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = ARTRadialGradient.h; sourceTree = "<group>"; }; - 22B13775F5C133858DE4AF2F01D40718 /* lossless_neon.c */ = {isa = PBXFileReference; includeInIndex = 1; name = lossless_neon.c; path = src/dsp/lossless_neon.c; sourceTree = "<group>"; }; - 22E37A1F9FEB8ACD0F110A8146B5BCD2 /* GoogleDataTransport.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = GoogleDataTransport.h; path = GoogleDataTransport/GDTCORLibrary/Public/GoogleDataTransport.h; sourceTree = "<group>"; }; - 23292AEFC97696E4FD1368554942AD87 /* RCTComponentEvent.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTComponentEvent.h; sourceTree = "<group>"; }; - 233D8B94F298076784E62FDA89226294 /* RCTJSIExecutorRuntimeInstaller.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTJSIExecutorRuntimeInstaller.mm; sourceTree = "<group>"; }; - 234F0314DE67CB4B3A250EF8DDD92405 /* MicroSpinLock.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = MicroSpinLock.h; path = folly/synchronization/MicroSpinLock.h; sourceTree = "<group>"; }; - 2361CE3F774C1F8B37B55A13CBBD1863 /* RCTClipboard.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTClipboard.h; path = React/CoreModules/RCTClipboard.h; sourceTree = "<group>"; }; - 236AF881401FAE128FAAC3B0FA3F256F /* EXVideoThumbnails.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = EXVideoThumbnails.release.xcconfig; sourceTree = "<group>"; }; - 237391D445AE6C2688DAFAFABEDE9202 /* RCTTouchHandler.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTTouchHandler.h; sourceTree = "<group>"; }; - 23744ABA4509EF6CB80AC27DE1337FAE /* InterProcessLock_Android.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = InterProcessLock_Android.cpp; path = Core/InterProcessLock_Android.cpp; sourceTree = "<group>"; }; - 2380FF5BB3C57B87167C2E233299EC05 /* Fcntl.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = Fcntl.cpp; path = folly/portability/Fcntl.cpp; sourceTree = "<group>"; }; - 23AE9981C25EC0DD6CAA9273628B1D1D /* UMFaceDetectorManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = UMFaceDetectorManager.h; path = UMFaceDetectorInterface/UMFaceDetectorManager.h; sourceTree = "<group>"; }; - 23CBD9A37682B465F6CB75E650F8675D /* Flipper-PeerTalk.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "Flipper-PeerTalk.release.xcconfig"; sourceTree = "<group>"; }; - 23CFC27A0D600C50FD6262EBCF48AAB9 /* NetOps.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = NetOps.cpp; path = folly/net/NetOps.cpp; sourceTree = "<group>"; }; - 23D46A4B7D4AF7D3AD7C0C7AC6357FA1 /* GDTCORUploadCoordinator.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = GDTCORUploadCoordinator.h; path = GoogleDataTransport/GDTCORLibrary/Private/GDTCORUploadCoordinator.h; sourceTree = "<group>"; }; - 23D92F955B626161AF653427B4BBB71B /* TokenBucket.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = TokenBucket.h; path = folly/TokenBucket.h; sourceTree = "<group>"; }; - 23DAE6AA300B3D3D134253810C2441BE /* Preprocessor.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Preprocessor.h; path = folly/Preprocessor.h; sourceTree = "<group>"; }; - 23E0C20316338E7EB9BFE9DF8D664C73 /* Init.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Init.h; path = folly/ssl/Init.h; sourceTree = "<group>"; }; - 23EAC0B27620F9F7EA42AD35A54E3752 /* React-Core-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "React-Core-prefix.pch"; sourceTree = "<group>"; }; - 23EB914976C05BD72A2209E4A5D7B2D3 /* Observer.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Observer.h; path = yarpl/observable/Observer.h; sourceTree = "<group>"; }; - 23EEA2A9DD8C96756CD217E2C8C65B28 /* EXResumablesManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = EXResumablesManager.m; sourceTree = "<group>"; }; - 23F38D8B8018A84BB11E245D1381A5EA /* RNBackgroundTimer.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNBackgroundTimer.m; path = ios/RNBackgroundTimer.m; sourceTree = "<group>"; }; - 23F9A8394A485E9F98B11A001596AA9B /* pl.lproj */ = {isa = PBXFileReference; includeInIndex = 1; name = pl.lproj; path = "Objective-C/TOCropViewController/Resources/pl.lproj"; sourceTree = "<group>"; }; - 23FF30501568EB42FA7C87FC4B4E0038 /* Flowables.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = Flowables.cpp; path = yarpl/flowable/Flowables.cpp; sourceTree = "<group>"; }; - 241FD3A495440FC29D4AC6656455F0FF /* enc_msa.c */ = {isa = PBXFileReference; includeInIndex = 1; name = enc_msa.c; path = src/dsp/enc_msa.c; sourceTree = "<group>"; }; - 2420C687E305DFC74BEF6A8AB892BC01 /* SDImageCacheConfig.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SDImageCacheConfig.h; path = SDWebImage/Core/SDImageCacheConfig.h; sourceTree = "<group>"; }; + 22378466E936E1DC2EA9E11E5479596A /* RNCWebView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNCWebView.m; path = apple/RNCWebView.m; sourceTree = "<group>"; }; + 2238BC159920F94A6ACD6DD5328A6288 /* FIRBundleUtil.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRBundleUtil.h; path = FirebaseCore/Sources/FIRBundleUtil.h; sourceTree = "<group>"; }; + 2251AF27379C329919E32F671BB8897C /* RCTFileRequestHandler.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTFileRequestHandler.h; path = Libraries/Network/RCTFileRequestHandler.h; sourceTree = "<group>"; }; + 22594891B864827AE72F110CA04372F2 /* UMAppRecordInterface.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = UMAppRecordInterface.h; sourceTree = "<group>"; }; + 2271E66BDA9F93DB2A1611868A2E746C /* UMJavaScriptContextProvider.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = UMJavaScriptContextProvider.h; sourceTree = "<group>"; }; + 22760F50A98B7C377391FB13AA7FF9DD /* UIImage+ForceDecode.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "UIImage+ForceDecode.m"; path = "SDWebImage/Core/UIImage+ForceDecode.m"; sourceTree = "<group>"; }; + 228CEDEB544D70320F1FA5497145205B /* EventBaseBackendBase.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = EventBaseBackendBase.h; path = folly/io/async/EventBaseBackendBase.h; sourceTree = "<group>"; }; + 22924EDF803EDB7420D35F4C7D0A48E4 /* DrivableExecutor.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = DrivableExecutor.h; path = folly/executors/DrivableExecutor.h; sourceTree = "<group>"; }; + 22948CD80197B55D215C6C86DE7D298E /* bignum.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = bignum.cc; path = "double-conversion/bignum.cc"; sourceTree = "<group>"; }; + 229BF4DB003EEA81B974BE955D879E5C /* SysTypes.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SysTypes.h; path = folly/portability/SysTypes.h; sourceTree = "<group>"; }; + 22A9372738E8D041C6294C72B7D234CD /* RCTDatePicker.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTDatePicker.h; sourceTree = "<group>"; }; + 22AC7B207D004914B4C98BC4AE4ACA25 /* GULReachabilityChecker.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = GULReachabilityChecker.m; path = GoogleUtilities/Reachability/GULReachabilityChecker.m; sourceTree = "<group>"; }; + 22CAD80AE1F264FB310EE06C817220D7 /* QBVideoIndicatorView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = QBVideoIndicatorView.m; path = ios/QBImagePicker/QBImagePicker/QBVideoIndicatorView.m; sourceTree = "<group>"; }; + 22E34145200027E5B302741EFF19531D /* AtomicHashMap-inl.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "AtomicHashMap-inl.h"; path = "folly/AtomicHashMap-inl.h"; sourceTree = "<group>"; }; + 22E98B4DDF678EB3332D2F52A3DEEE4F /* quant.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = quant.h; path = src/dsp/quant.h; sourceTree = "<group>"; }; + 22FCECE27AAAF9E8AAAA8027CE20B388 /* GULLogger.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = GULLogger.m; path = GoogleUtilities/Logger/GULLogger.m; sourceTree = "<group>"; }; + 22FD3CD3C14D4A27147C7FD131AC67B1 /* BugsnagCollections.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BugsnagCollections.h; sourceTree = "<group>"; }; + 22FDC9A6956563AE2CC1CCCE72FE0C17 /* Select64.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Select64.h; path = folly/experimental/Select64.h; sourceTree = "<group>"; }; + 22FF8B9B1D2BEBF80716D353543AFF62 /* EXConstants.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = EXConstants.h; path = EXConstants/EXConstants.h; sourceTree = "<group>"; }; + 2319748C30CD0CE60C14C11F1F4099C1 /* BSGEventUploadObjectOperation.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BSGEventUploadObjectOperation.h; sourceTree = "<group>"; }; + 231D4D4A3861A4F8968643D9B4657D2A /* RCTDevLoadingViewSetEnabled.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTDevLoadingViewSetEnabled.h; sourceTree = "<group>"; }; + 2327894C2B59A3F440C762DB0BEF834B /* RCTImagePlugins.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTImagePlugins.mm; sourceTree = "<group>"; }; + 2337B72AF2638C0D2768E6E13DE7017D /* histogram_enc.c */ = {isa = PBXFileReference; includeInIndex = 1; name = histogram_enc.c; path = src/enc/histogram_enc.c; sourceTree = "<group>"; }; + 2342F92B9B224A9643F2D47E450D4869 /* InspectorInterfaces.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = InspectorInterfaces.h; sourceTree = "<group>"; }; + 23573BD4C35106EF45CD3CBA132DC32F /* RCTView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTView.h; sourceTree = "<group>"; }; + 2359E112F64A66EE9D8494191A688182 /* FIRInstallationsVersion.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRInstallationsVersion.m; path = FirebaseInstallations/Source/Library/FIRInstallationsVersion.m; sourceTree = "<group>"; }; + 2373181AEE35D5708C0CB66D27D510E9 /* Registration.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = Registration.h; sourceTree = "<group>"; }; + 23AAA7BF7B54F25B59821A0251FAA91A /* UMFileSystemInterface.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = UMFileSystemInterface.release.xcconfig; sourceTree = "<group>"; }; + 23B822ABE5B828DE67B014671F72AA3C /* FramedDuplexConnection.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FramedDuplexConnection.h; path = rsocket/framing/FramedDuplexConnection.h; sourceTree = "<group>"; }; + 23BADA26EC9BE889FE04DFB0F5EFCFAC /* OpenSSL.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = OpenSSL.h; path = folly/portability/OpenSSL.h; sourceTree = "<group>"; }; + 23C6CD8DEB7156865D90C7DA489E00A9 /* RCTTextView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTTextView.h; sourceTree = "<group>"; }; + 23D2EC83CB8129047181B09268B00526 /* Utils.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = Utils.cpp; path = yoga/Utils.cpp; sourceTree = "<group>"; }; + 23EFBAA8DE3967F0AFED27C0D414220F /* README.md */ = {isa = PBXFileReference; includeInIndex = 1; path = README.md; sourceTree = "<group>"; }; + 240C2EFC3E50AF42103FD7DACEFA61B5 /* React-RCTActionSheet.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = "React-RCTActionSheet.podspec"; sourceTree = "<group>"; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; 242758B9EDFF146ABE411909CAC8F130 /* libreact-native-appearance.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; name = "libreact-native-appearance.a"; path = "libreact-native-appearance.a"; sourceTree = BUILT_PRODUCTS_DIR; }; - 2430CFEC73944B4E6CBACE3570B2F700 /* CodedInputData.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = CodedInputData.h; path = Core/CodedInputData.h; sourceTree = "<group>"; }; - 245ECF7B29C53EB3D624AA79946C00A8 /* React-runtimeexecutor.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "React-runtimeexecutor.release.xcconfig"; sourceTree = "<group>"; }; - 24A3417FE1B047417425727CDF0DA377 /* Aes.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = Aes.h; sourceTree = "<group>"; }; - 24D624636378CD4F756251BDFF96F26D /* RNScreens.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = RNScreens.podspec; sourceTree = "<group>"; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; + 24337C6D6BEC0E513105179D48438335 /* ShutdownSocketSet.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = ShutdownSocketSet.cpp; path = folly/io/ShutdownSocketSet.cpp; sourceTree = "<group>"; }; + 244045FC67EE9EDFE4DC73B030147888 /* KeyCommands-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "KeyCommands-prefix.pch"; sourceTree = "<group>"; }; + 245B92E7BF4C8649A6BC46C4CBF49272 /* Demangle.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Demangle.h; path = folly/detail/Demangle.h; sourceTree = "<group>"; }; + 2466A92B7494A946A484AD469D893C44 /* SKBufferingPlugin+CPPInitialization.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "SKBufferingPlugin+CPPInitialization.h"; path = "iOS/Plugins/FlipperKitNetworkPlugin/FlipperKitNetworkPlugin/SKBufferingPlugin+CPPInitialization.h"; sourceTree = "<group>"; }; + 247584254CD6306F655C87C8E03F6A1A /* BSG_KSCrashSentry_Signal.c */ = {isa = PBXFileReference; includeInIndex = 1; path = BSG_KSCrashSentry_Signal.c; sourceTree = "<group>"; }; + 247BCB0F5906C807AA33308FB12ABADE /* EXKeepAwake.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = EXKeepAwake.debug.xcconfig; sourceTree = "<group>"; }; + 247E4D9323817E69FAB3DB5EDA142122 /* FLEXUtility.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FLEXUtility.h; path = iOS/Plugins/FlipperKitNetworkPlugin/SKIOSNetworkPlugin/FLEXNetworkLib/FLEXUtility.h; sourceTree = "<group>"; }; + 249F6060E53408E049D3E4C72D8B36C0 /* filters_mips_dsp_r2.c */ = {isa = PBXFileReference; includeInIndex = 1; name = filters_mips_dsp_r2.c; path = src/dsp/filters_mips_dsp_r2.c; sourceTree = "<group>"; }; + 24A3D9A69E87D7BD516F99C0BC1CBFC3 /* evutil.c */ = {isa = PBXFileReference; includeInIndex = 1; path = evutil.c; sourceTree = "<group>"; }; + 24C7FCC135FC406035CE40FDC263188D /* HeterogeneousAccess-fwd.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "HeterogeneousAccess-fwd.h"; path = "folly/container/HeterogeneousAccess-fwd.h"; sourceTree = "<group>"; }; + 24D84A93DFEE19605EB3EF05B95629E1 /* InlineExecutor.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = InlineExecutor.cpp; path = folly/executors/InlineExecutor.cpp; sourceTree = "<group>"; }; + 24D8AA5A085E1895F66FD84301C1430C /* RCTModalHostViewManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTModalHostViewManager.m; sourceTree = "<group>"; }; + 24DCDAF0CA7922D3EF2B0A2BE9A5B90A /* RNNotifications.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNNotifications.h; path = RNNotifications/RNNotifications.h; sourceTree = "<group>"; }; 24DD06DF3760AA8A84A2FD651A74E8B0 /* Pods-NotificationService-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "Pods-NotificationService-dummy.m"; sourceTree = "<group>"; }; - 24E802A44DA54111432497AF0EBADE6C /* FIRCLSExecutionIdentifierModel.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRCLSExecutionIdentifierModel.m; path = Crashlytics/Crashlytics/Models/FIRCLSExecutionIdentifierModel.m; sourceTree = "<group>"; }; - 252927535F70E0F87C20A16C6B6C1BE1 /* CPUThreadPoolExecutor.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = CPUThreadPoolExecutor.h; path = folly/executors/CPUThreadPoolExecutor.h; sourceTree = "<group>"; }; - 25706E9BC7882308E1CBADFE1696B9B3 /* SDWebImageError.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SDWebImageError.h; path = SDWebImage/Core/SDWebImageError.h; sourceTree = "<group>"; }; - 2571DDCDB2652412E88CCFE7FFF135B1 /* small_vector.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = small_vector.h; path = folly/small_vector.h; sourceTree = "<group>"; }; - 257487F947497776522450F01A975F69 /* TOCropOverlayView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = TOCropOverlayView.h; path = "Objective-C/TOCropViewController/Views/TOCropOverlayView.h"; sourceTree = "<group>"; }; + 24F0769A180D025917138DCC3DD3869D /* RNNotificationUtils.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNNotificationUtils.m; path = RNNotifications/RNNotificationUtils.m; sourceTree = "<group>"; }; + 2507C973B486611A9285B0B07C570945 /* StaticSingletonManager.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = StaticSingletonManager.cpp; path = folly/detail/StaticSingletonManager.cpp; sourceTree = "<group>"; }; + 2522BC763DC7F90EE753EDEE4FE5C0D9 /* WaitOptions.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = WaitOptions.cpp; path = folly/synchronization/WaitOptions.cpp; sourceTree = "<group>"; }; + 2522FA2658B5FB789B1D3E0BC9F6D20C /* FarmHash.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FarmHash.h; path = folly/hash/FarmHash.h; sourceTree = "<group>"; }; + 252571F225CA5B44A8928B4F7B89D814 /* React-RCTNetwork.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "React-RCTNetwork.release.xcconfig"; sourceTree = "<group>"; }; + 2527AD0849780D49F96ED62752F554B5 /* RNGestureHandler.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = RNGestureHandler.podspec; sourceTree = "<group>"; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; + 252A87767BF8EA29A2BDE4C59032DFAA /* RSocket.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = RSocket.cpp; path = rsocket/RSocket.cpp; sourceTree = "<group>"; }; + 25566065A50218CA8988276834F46837 /* RCTSettingsManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTSettingsManager.h; path = Libraries/Settings/RCTSettingsManager.h; sourceTree = "<group>"; }; + 256514FB22EE5A636AFCAFE671661604 /* demangle.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = demangle.cc; path = src/demangle.cc; sourceTree = "<group>"; }; + 2568A4B2915E88D59E2AABFC20C5F479 /* RCTUITextField.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTUITextField.m; sourceTree = "<group>"; }; + 256DB4FCB97F81177E7B7573D07469F6 /* EXPermissions-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "EXPermissions-dummy.m"; sourceTree = "<group>"; }; 2577F299FCB0A19824FE989BE77B8E8F /* libReact-jsinspector.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; name = "libReact-jsinspector.a"; path = "libReact-jsinspector.a"; sourceTree = BUILT_PRODUCTS_DIR; }; - 2579C83AE47641A16DCDEB3AD0508DBB /* SmallLocks.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SmallLocks.h; path = folly/synchronization/SmallLocks.h; sourceTree = "<group>"; }; - 258482B084569DC0C1112CA43660CA3A /* RNGestureHandlerModule.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNGestureHandlerModule.m; path = ios/RNGestureHandlerModule.m; sourceTree = "<group>"; }; - 259DFDEAE65227AFC9022670B9B73495 /* BugsnagUser.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = BugsnagUser.m; sourceTree = "<group>"; }; - 25A3922725F2DB608224CDDA8A856D1A /* UICollectionView+SKInvalidation.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "UICollectionView+SKInvalidation.h"; path = "iOS/Plugins/FlipperKitLayoutPlugin/FlipperKitLayoutPlugin/UICollectionView+SKInvalidation.h"; sourceTree = "<group>"; }; - 25BDB5BBBC679FA82A17FC504F679035 /* SDImageCoderHelper.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = SDImageCoderHelper.m; path = SDWebImage/Core/SDImageCoderHelper.m; sourceTree = "<group>"; }; - 25CEA0EDE1F1F4F5ED0DD3050A6FF576 /* pt-BR.lproj */ = {isa = PBXFileReference; includeInIndex = 1; name = "pt-BR.lproj"; path = "Objective-C/TOCropViewController/Resources/pt-BR.lproj"; sourceTree = "<group>"; }; - 25D1F282AA2642EE4323F894908D4CC4 /* UMSensorsInterface.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = UMSensorsInterface.release.xcconfig; sourceTree = "<group>"; }; - 25DB1A2CD425834D51DBF9951B90345A /* 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 = "<group>"; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; - 25E6733A321E4C2A277571770B8D5A16 /* LICENSE */ = {isa = PBXFileReference; includeInIndex = 1; path = LICENSE; sourceTree = "<group>"; }; - 26172BF87BFBC776186999961DEE3E6A /* RCTCxxBridgeDelegate.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTCxxBridgeDelegate.h; sourceTree = "<group>"; }; - 2617B3D90DC123054065DC048C392F4B /* NSData+ImageContentType.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "NSData+ImageContentType.h"; path = "SDWebImage/Core/NSData+ImageContentType.h"; sourceTree = "<group>"; }; - 26205161AA50954D082DD6F48826695F /* RNNotificationsStore.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNNotificationsStore.m; path = RNNotifications/RNNotificationsStore.m; sourceTree = "<group>"; }; - 2632AD27AF35AE4D7B055CA92A3B1858 /* DrivableExecutor.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = DrivableExecutor.h; path = folly/executors/DrivableExecutor.h; sourceTree = "<group>"; }; - 2644F2579B6A8617B5235C3BF091B1D3 /* UMImageLoaderInterface.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = UMImageLoaderInterface.debug.xcconfig; sourceTree = "<group>"; }; - 2660FE5414FB1D00B91C0DB32FD889E1 /* hermes_tracing.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = hermes_tracing.h; path = destroot/include/hermes/hermes_tracing.h; sourceTree = "<group>"; }; - 26785966E130F952CD8CB3ACCFD3A7D6 /* EventBase.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = EventBase.h; path = folly/io/async/EventBase.h; sourceTree = "<group>"; }; - 26801AEDC8F6E1A70C04F7068509ECA3 /* FlipperCppBridgingConnection.mm */ = {isa = PBXFileReference; includeInIndex = 1; name = FlipperCppBridgingConnection.mm; path = iOS/FlipperKit/CppBridge/FlipperCppBridgingConnection.mm; sourceTree = "<group>"; }; - 26808343AB28092E0DAB9877D31D6617 /* react-native-cookies.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "react-native-cookies.release.xcconfig"; sourceTree = "<group>"; }; - 26870246B6A46B10CD4C9299DE8C3D25 /* RCTFileReaderModule.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTFileReaderModule.h; path = Libraries/Blob/RCTFileReaderModule.h; sourceTree = "<group>"; }; - 269B79E04D74D32BB3857DEFBC2B344E /* QBImagePickerController.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = QBImagePickerController.m; path = ios/QBImagePicker/QBImagePicker/QBImagePickerController.m; sourceTree = "<group>"; }; + 25919C3E9F7D856708388E79F4E1406F /* EXConstants.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = EXConstants.debug.xcconfig; sourceTree = "<group>"; }; + 2596698ACF231F8C3C03B19A9CA4DB9D /* FIRInstallationsStore.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRInstallationsStore.h; path = FirebaseInstallations/Source/Library/InstallationsStore/FIRInstallationsStore.h; sourceTree = "<group>"; }; + 259F6E7CCEFB5E9DB441DC4CFFF0B868 /* FirebaseCoreInternal.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FirebaseCoreInternal.h; path = FirebaseCore/Sources/Private/FirebaseCoreInternal.h; sourceTree = "<group>"; }; + 25AF37C756E35E2CD04A51728B71893D /* RNImageCropPicker.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = RNImageCropPicker.release.xcconfig; sourceTree = "<group>"; }; + 25FC21E2159D275A133F6CE2CC96B31F /* muxinternal.c */ = {isa = PBXFileReference; includeInIndex = 1; name = muxinternal.c; path = src/mux/muxinternal.c; sourceTree = "<group>"; }; + 26009D759FCD4CFA5D0DD5B3481E4FFA /* raw_logging.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = raw_logging.h; path = src/glog/raw_logging.h; sourceTree = "<group>"; }; + 2620369B9DA20711E1AA55FCCFA45CA8 /* RCTViewManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTViewManager.m; sourceTree = "<group>"; }; + 26254BBAC79B0EE3C6046000B1A3CB80 /* RCTPickerManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTPickerManager.h; sourceTree = "<group>"; }; + 262812C215454383CBEB720087E45AAE /* RCTEventEmitter.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTEventEmitter.h; sourceTree = "<group>"; }; + 264B6AD08F886F66A088AED318F4BAB7 /* SKSearchResultNode.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SKSearchResultNode.h; path = iOS/Plugins/FlipperKitLayoutPlugin/FlipperKitLayoutPlugin/SKSearchResultNode.h; sourceTree = "<group>"; }; + 264DC8E81F8771A101522171898276FC /* SDImageFrame.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SDImageFrame.h; path = SDWebImage/Core/SDImageFrame.h; sourceTree = "<group>"; }; + 265B08F6FA86271950C3F41CED5C0EF8 /* FIRCLSAsyncOperation.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRCLSAsyncOperation.h; path = Crashlytics/Crashlytics/Operations/FIRCLSAsyncOperation.h; sourceTree = "<group>"; }; + 2667157068F9D7972460E59733AA11E2 /* react-native-simple-crypto.modulemap */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.module; path = "react-native-simple-crypto.modulemap"; sourceTree = "<group>"; }; 269BE773C9482484B70949A40F4EA525 /* libReact-RCTSettings.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; name = "libReact-RCTSettings.a"; path = "libReact-RCTSettings.a"; sourceTree = BUILT_PRODUCTS_DIR; }; - 269F7282EBA65F5D446AC2E31FB83CF0 /* FKUserDefaultsSwizzleUtility.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FKUserDefaultsSwizzleUtility.m; path = iOS/Plugins/FlipperKitUserDefaultsPlugin/FKUserDefaultsSwizzleUtility.m; sourceTree = "<group>"; }; - 26C4479AE2FD2A23C40DCA31F4837852 /* FIRCoreDiagnosticsInterop.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRCoreDiagnosticsInterop.h; path = Interop/CoreDiagnostics/Public/FIRCoreDiagnosticsInterop.h; sourceTree = "<group>"; }; - 26DD49E2C4934CD535EFBBAABC571FE2 /* RCTPackagerConnection.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTPackagerConnection.h; sourceTree = "<group>"; }; - 26E253A144B29FD6ACEB1D84A5B4F6C2 /* dynamic.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = dynamic.cpp; path = folly/dynamic.cpp; sourceTree = "<group>"; }; - 26E421091A9BB8C1DB5E4CA5715FF029 /* EXImageLoader.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = EXImageLoader.h; path = EXImageLoader/EXImageLoader.h; sourceTree = "<group>"; }; - 26F915F6B91658E6473DBAF385C33F60 /* ConsumerBase.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ConsumerBase.h; path = rsocket/statemachine/ConsumerBase.h; sourceTree = "<group>"; }; - 270500ED0A569CA88773DA34EB2A806A /* FingerprintPolynomial.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FingerprintPolynomial.h; path = folly/detail/FingerprintPolynomial.h; sourceTree = "<group>"; }; - 27119F2A6238A2FC86DAFDE84A691EB4 /* EXHaptics.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = EXHaptics.release.xcconfig; sourceTree = "<group>"; }; - 2714A8AFC726F79408724707E031F80F /* RCTProfileTrampoline-arm.S */ = {isa = PBXFileReference; includeInIndex = 1; path = "RCTProfileTrampoline-arm.S"; sourceTree = "<group>"; }; - 272CDB0FA827230F8DE743CE89D46813 /* Promise-inl.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "Promise-inl.h"; path = "folly/futures/Promise-inl.h"; sourceTree = "<group>"; }; - 2739ED4AC4CA3076A994D92159F6CF55 /* DistributedMutex.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = DistributedMutex.h; path = folly/synchronization/DistributedMutex.h; sourceTree = "<group>"; }; - 274876894F46385888D92B5FF70E18B5 /* EXPermissions.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = EXPermissions.m; path = EXPermissions/EXPermissions.m; sourceTree = "<group>"; }; - 274B19FA8A792CB235E69E5DD624093F /* PasswordInFile.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = PasswordInFile.cpp; path = folly/io/async/PasswordInFile.cpp; sourceTree = "<group>"; }; - 275A1C7F93D8659DCE761FDF9A9267C4 /* RCTViewManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTViewManager.m; sourceTree = "<group>"; }; - 275B06783B4CBD407AB1C9906AB4FC35 /* RCTAnimationUtils.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTAnimationUtils.h; path = Libraries/NativeAnimation/RCTAnimationUtils.h; sourceTree = "<group>"; }; - 2760A9D6AEC74F2005ED1B8F8B3AFCA9 /* FirebaseCrashlytics.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FirebaseCrashlytics.h; path = Crashlytics/Crashlytics/Public/FirebaseCrashlytics.h; sourceTree = "<group>"; }; - 276DB70CAFFA8C51DC9B44E88B8A4223 /* UMBarCodeScannerInterface.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = UMBarCodeScannerInterface.h; path = UMBarCodeScannerInterface/UMBarCodeScannerInterface.h; sourceTree = "<group>"; }; - 2777CBD18D9C43C9A3474489B0460131 /* FIRCLSMachO.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRCLSMachO.m; path = Crashlytics/Shared/FIRCLSMachO/FIRCLSMachO.m; sourceTree = "<group>"; }; - 27871E35046D797BDFC6AB677CBFE34B /* RNRandomBytes.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNRandomBytes.m; path = ios/RCTCrypto/RNRandomBytes.m; sourceTree = "<group>"; }; - 2787A45A8735757BF89DF8998E247CF0 /* RNCAsyncStorage-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "RNCAsyncStorage-dummy.m"; sourceTree = "<group>"; }; + 26A63B442D5B01F8BEDEC991E83915BA /* UMPermissionsInterface.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = UMPermissionsInterface.debug.xcconfig; sourceTree = "<group>"; }; + 26A693C18C7E2490192E9F27BDF66E38 /* AtomicNotification.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = AtomicNotification.cpp; path = folly/synchronization/AtomicNotification.cpp; sourceTree = "<group>"; }; + 26B5C42151EC86C5ACAE9945FEA65EEE /* Portability.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Portability.h; path = folly/Portability.h; sourceTree = "<group>"; }; + 26C21E1F4F4D836C1C4ABBB9DB9F2E87 /* SSLSessionImpl.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = SSLSessionImpl.cpp; path = folly/ssl/detail/SSLSessionImpl.cpp; sourceTree = "<group>"; }; + 26C99F9B4AFE7A7931259FA66C717FA6 /* BSG_KSCrashSentry_NSException.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BSG_KSCrashSentry_NSException.h; sourceTree = "<group>"; }; + 26E0FC50FEB0CD9CE7BC07494EA95166 /* BugsnagEndpointConfiguration.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BugsnagEndpointConfiguration.h; sourceTree = "<group>"; }; + 26E13A24F934A03A572AE164F8303668 /* QBAssetsViewController.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = QBAssetsViewController.h; path = ios/QBImagePicker/QBImagePicker/QBAssetsViewController.h; sourceTree = "<group>"; }; + 270ED4C0A8F69348FF1FE797E0E06DF0 /* BSG_RFC3339DateTool.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = BSG_RFC3339DateTool.m; sourceTree = "<group>"; }; + 2716C2439DD679FEB55E1E62B8B38683 /* FIRDependency.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRDependency.h; path = FirebaseCore/Sources/Private/FIRDependency.h; sourceTree = "<group>"; }; + 2746101C4A665ABA35C6E5805E1B69E1 /* SpookyHashV2.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = SpookyHashV2.cpp; path = folly/hash/SpookyHashV2.cpp; sourceTree = "<group>"; }; + 2762D991F37475322F6ADECC124F9BCD /* BSG_KSCrashType.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BSG_KSCrashType.h; sourceTree = "<group>"; }; 279390C893577F74DD2049383E1EDD1A /* libKeyCommands.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; name = libKeyCommands.a; path = libKeyCommands.a; sourceTree = BUILT_PRODUCTS_DIR; }; - 2794BF391589D1CFB5280CB6BDDBE022 /* RCTAlertManager.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTAlertManager.mm; sourceTree = "<group>"; }; - 279EF3E4CDD5ED4115C487922F3CCA98 /* AsyncTrace.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = AsyncTrace.cpp; path = folly/detail/AsyncTrace.cpp; sourceTree = "<group>"; }; - 27A5A3B49B8896316CAA20EDB06008AE /* SDWebImage.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = SDWebImage.release.xcconfig; sourceTree = "<group>"; }; - 27AFB0003553227843B979313B68397D /* SDWebImageDownloader.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SDWebImageDownloader.h; path = SDWebImage/Core/SDWebImageDownloader.h; sourceTree = "<group>"; }; - 27B7CEE5273A820E4FE8C0B13071E6DC /* BSGEventUploadObjectOperation.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = BSGEventUploadObjectOperation.m; sourceTree = "<group>"; }; - 27C22E18F4FEEECB7C921B89D1C16AF1 /* EventHandler.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = EventHandler.cpp; path = folly/io/async/EventHandler.cpp; sourceTree = "<group>"; }; - 27C25D4CBD6AD371E662EA30DDEB4FA4 /* DynamicConverter.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = DynamicConverter.h; path = folly/DynamicConverter.h; sourceTree = "<group>"; }; - 27CAEC8C4FCBBA856272D59A8F1440A9 /* RNCSafeAreaProviderManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNCSafeAreaProviderManager.h; path = ios/SafeAreaView/RNCSafeAreaProviderManager.h; sourceTree = "<group>"; }; - 27E48D41D14E4E75865F8FD09A45346B /* react-native-appearance.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "react-native-appearance.debug.xcconfig"; sourceTree = "<group>"; }; - 27E7AC1CF68C839CBE82198DC24EFFB0 /* JSINativeModules.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = JSINativeModules.h; path = jsireact/JSINativeModules.h; sourceTree = "<group>"; }; - 27E98DA502B46B1061E58261CCB42964 /* RCTDatePickerManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTDatePickerManager.m; sourceTree = "<group>"; }; - 280005C2D697F4B8EE5FA8D2A16214F8 /* bignum-dtoa.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = "bignum-dtoa.cc"; path = "double-conversion/bignum-dtoa.cc"; sourceTree = "<group>"; }; + 27B20B0DAD21A07EDEA17DE882571FA0 /* RangeSse42.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RangeSse42.h; path = folly/detail/RangeSse42.h; sourceTree = "<group>"; }; + 27B7CC8CF90EC2BD404633EF2BB1295A /* NSButton+WebCache.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "NSButton+WebCache.m"; path = "SDWebImage/Core/NSButton+WebCache.m"; sourceTree = "<group>"; }; + 27B99204B3477D76CDD6ACB35BA16893 /* Try-inl.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "Try-inl.h"; path = "folly/Try-inl.h"; sourceTree = "<group>"; }; + 27CCA1DA090A6DC6DEE5D9B9828835B9 /* Sha.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = Sha.m; sourceTree = "<group>"; }; + 27D0F7DCBCFDCC0484E7E67819262B68 /* lossless_common.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = lossless_common.h; path = src/dsp/lossless_common.h; sourceTree = "<group>"; }; + 27DBAC4134413869D3B87CFE02E8362B /* SDWebImage-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "SDWebImage-dummy.m"; sourceTree = "<group>"; }; + 27E7A6280E4DB33BFC36C7E7ABA210F0 /* FlipperDiagnosticsViewController.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FlipperDiagnosticsViewController.h; path = iOS/FlipperKit/FlipperDiagnosticsViewController.h; sourceTree = "<group>"; }; + 27EAFBA829581BA87FEDE9EB9EB90DE7 /* MMKV.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = MMKV.debug.xcconfig; sourceTree = "<group>"; }; + 280111A76B1C4441C56FBC049D43007C /* StaticConst.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = StaticConst.h; path = folly/lang/StaticConst.h; sourceTree = "<group>"; }; + 281152DE90BFBC5E9484FF8CF2828A7A /* MemoryResource.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = MemoryResource.h; path = folly/memory/MemoryResource.h; sourceTree = "<group>"; }; 28123DB19C3F0DCA57159E998D699E85 /* Pods-defaults-RocketChatRN-resources.sh */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.script.sh; path = "Pods-defaults-RocketChatRN-resources.sh"; sourceTree = "<group>"; }; - 281397F1AB9BD21C08DEE8E0501AACA4 /* KeepaliveTimer.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = KeepaliveTimer.h; path = rsocket/internal/KeepaliveTimer.h; sourceTree = "<group>"; }; - 281DE879623596E0556DFE46F612EF83 /* SDWebImageDownloaderResponseModifier.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SDWebImageDownloaderResponseModifier.h; path = SDWebImage/Core/SDWebImageDownloaderResponseModifier.h; sourceTree = "<group>"; }; - 281DED7A5AC3482F24B86FA5ED70B94A /* RNRootView.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = RNRootView.podspec; sourceTree = "<group>"; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; + 281556B0D65F9D240378610C4B723C32 /* React-RCTText.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = "React-RCTText.podspec"; sourceTree = "<group>"; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; + 281E167C3CD28D913FFC0D76385BA698 /* GDTCORPlatform.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = GDTCORPlatform.m; path = GoogleDataTransport/GDTCORLibrary/GDTCORPlatform.m; sourceTree = "<group>"; }; 2843CE246C3884DD21A4C251E8B34E25 /* libReactNativeUiLib.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; name = libReactNativeUiLib.a; path = libReactNativeUiLib.a; sourceTree = BUILT_PRODUCTS_DIR; }; - 2845AE37505E17E13FB2C18225966C08 /* EXVideoManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = EXVideoManager.m; sourceTree = "<group>"; }; - 284F8BD84956D62791B3DD3B673A9587 /* ExecutorWithPriority.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ExecutorWithPriority.h; path = folly/executors/ExecutorWithPriority.h; sourceTree = "<group>"; }; - 285AC2398EBE625A8D9A4F1277BBAADE /* MapUtil.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = MapUtil.h; path = folly/MapUtil.h; sourceTree = "<group>"; }; - 2877506D87948E011C9FBF18BDAB9E75 /* RCTPickerManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTPickerManager.m; sourceTree = "<group>"; }; - 28862980D7EC5653DE2716BB9B13C94C /* GULNetwork.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = GULNetwork.m; path = GoogleUtilities/Network/GULNetwork.m; sourceTree = "<group>"; }; - 288958F4742B33959C00CCDA830DEF73 /* Aligned.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Aligned.h; path = folly/lang/Aligned.h; sourceTree = "<group>"; }; - 2895825EEFCDE8C55ADB08F03392972E /* react-native-simple-crypto.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = "react-native-simple-crypto.podspec"; sourceTree = "<group>"; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; - 289FAC143E9FC44F43C2C9F3BFD11E1C /* F14Table.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = F14Table.h; path = folly/container/detail/F14Table.h; sourceTree = "<group>"; }; - 28A8F597A0C2B9228920010A7D3BA31D /* React-RCTBlob-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "React-RCTBlob-dummy.m"; sourceTree = "<group>"; }; - 28B56D2A63D67651137709B2BDCEE69D /* Foreach-inl.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "Foreach-inl.h"; path = "folly/container/Foreach-inl.h"; sourceTree = "<group>"; }; - 28C3762D3397CC9F4A3AE546622E7715 /* FileUtil.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = FileUtil.cpp; path = folly/FileUtil.cpp; sourceTree = "<group>"; }; - 28D50C0EAC121DA5EA76E53EF81A12AA /* IOThreadPoolExecutor.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = IOThreadPoolExecutor.h; path = folly/executors/IOThreadPoolExecutor.h; sourceTree = "<group>"; }; - 28E2BAFBF464123D07D80E88EC64B836 /* FirebaseCore.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FirebaseCore.h; path = FirebaseCore/Sources/Public/FirebaseCore.h; sourceTree = "<group>"; }; - 28E6791CB338BCC501263524B29045DC /* json.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = json.cpp; path = folly/json.cpp; sourceTree = "<group>"; }; - 2907CC3C454CF4176D9898F9A569C05A /* react-native-orientation-locker-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "react-native-orientation-locker-prefix.pch"; sourceTree = "<group>"; }; - 291A3EF93026735D4A371473E47296C4 /* RCTUIUtils.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTUIUtils.m; sourceTree = "<group>"; }; - 2922BDAB21DB02CBEE4EF0EAD5C083B1 /* LICENSE */ = {isa = PBXFileReference; includeInIndex = 1; path = LICENSE; sourceTree = "<group>"; }; - 293023BA89AA14C83B86A99FC19C66A2 /* React-cxxreact.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = "React-cxxreact.podspec"; sourceTree = "<group>"; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; - 293C236F257F950E2F2BF615684CE878 /* Codel.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = Codel.cpp; path = folly/executors/Codel.cpp; sourceTree = "<group>"; }; - 294353905D4A2AB06259E346B63186D5 /* FIRComponentContainer.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRComponentContainer.m; path = FirebaseCore/Sources/FIRComponentContainer.m; sourceTree = "<group>"; }; - 2943A07F6C1324D10B05C1B00DB35875 /* pb_common.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = pb_common.h; sourceTree = "<group>"; }; - 2949045990424B924BB4ACE1FF5B0454 /* EXPermissions-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "EXPermissions-dummy.m"; sourceTree = "<group>"; }; - 295599FD34D82437BF3C41270FBB2523 /* ImageCropPicker.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ImageCropPicker.h; path = ios/src/ImageCropPicker.h; sourceTree = "<group>"; }; - 2964002BFB205F392D39B2C836B6AE19 /* MemoryIdler.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = MemoryIdler.cpp; path = folly/detail/MemoryIdler.cpp; sourceTree = "<group>"; }; - 297E3326962EB460F2F3DCCB46B61FDD /* de.lproj */ = {isa = PBXFileReference; includeInIndex = 1; name = de.lproj; path = ios/QBImagePicker/QBImagePicker/de.lproj; sourceTree = "<group>"; }; - 2995DF92AA3FBAEA5B1D8A964592AFC5 /* UMReactNativeAdapter.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = UMReactNativeAdapter.h; sourceTree = "<group>"; }; + 284E66D4E54073CC3BE652D34F0741C2 /* BugsnagConfiguration.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BugsnagConfiguration.h; sourceTree = "<group>"; }; + 284ED1505946575211F5C28BBC014E05 /* UMTaskLaunchReason.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = UMTaskLaunchReason.h; path = UMTaskManagerInterface/UMTaskLaunchReason.h; sourceTree = "<group>"; }; + 285331CA47C6E381B537A8A928F0000B /* DistributedMutex.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = DistributedMutex.h; path = folly/synchronization/DistributedMutex.h; sourceTree = "<group>"; }; + 28710F3E5C555F46C3D60494356E1811 /* BSG_KSCrashState.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BSG_KSCrashState.h; sourceTree = "<group>"; }; + 2873319379B0B369C230E6002631DCD9 /* RCTUITextView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTUITextView.h; sourceTree = "<group>"; }; + 2876728F171E4A8E647225C921EBF544 /* SKStateUpdateCPPWrapper.mm */ = {isa = PBXFileReference; includeInIndex = 1; name = SKStateUpdateCPPWrapper.mm; path = iOS/FlipperKit/SKStateUpdateCPPWrapper.mm; sourceTree = "<group>"; }; + 288F7359ACD7005F8AA874FE0FA5022D /* IPAddress.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = IPAddress.h; path = folly/IPAddress.h; sourceTree = "<group>"; }; + 28AF10AFA2CADC9D1F3B44DAB330B364 /* React-Core.modulemap */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.module; path = "React-Core.modulemap"; sourceTree = "<group>"; }; + 28B300A06EC09C17E8754D1807B6D5E6 /* RNCCameraRollManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNCCameraRollManager.h; path = ios/RNCCameraRollManager.h; sourceTree = "<group>"; }; + 28C68A83D0A46C648C481EA963457CB9 /* IntrusiveList.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = IntrusiveList.h; path = folly/IntrusiveList.h; sourceTree = "<group>"; }; + 2933E807002CCC6FBBAB3658EC0EBE2B /* FIRCLSSerializeSymbolicatedFramesOperation.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRCLSSerializeSymbolicatedFramesOperation.h; path = Crashlytics/Crashlytics/Operations/Symbolication/FIRCLSSerializeSymbolicatedFramesOperation.h; sourceTree = "<group>"; }; + 29464E7FD027FD5149FB2AECB0F0EC55 /* BSGNotificationBreadcrumbs.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = BSGNotificationBreadcrumbs.m; sourceTree = "<group>"; }; + 2956802286B2645BEF85DBC2C891166A /* strtod.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = strtod.h; path = "double-conversion/strtod.h"; sourceTree = "<group>"; }; + 296EDB06B8D6AAC2D22E9D6253756607 /* GDTCORDirectorySizeTracker.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = GDTCORDirectorySizeTracker.m; path = GoogleDataTransport/GDTCORLibrary/GDTCORDirectorySizeTracker.m; sourceTree = "<group>"; }; + 296FF6D10A93D29F271464060530950B /* pb_encode.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = pb_encode.h; sourceTree = "<group>"; }; + 2988B14BE80FD74289F069EF72C3D9C4 /* UMTaskManagerInterface.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = UMTaskManagerInterface.h; path = UMTaskManagerInterface/UMTaskManagerInterface.h; sourceTree = "<group>"; }; 29A522F564C45BAC1C908C4FA821DD3F /* Pods-ShareRocketChatRN.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "Pods-ShareRocketChatRN.release.xcconfig"; sourceTree = "<group>"; }; - 29A82CA43E2FB7A6EF4D228560B1C21A /* TimeoutQueue.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = TimeoutQueue.cpp; path = folly/TimeoutQueue.cpp; sourceTree = "<group>"; }; - 29B811FAE251A530D910EA08052ED41D /* ARTLinearGradient.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = ARTLinearGradient.h; sourceTree = "<group>"; }; - 29BB2342D6548FB4328A430E838AF6D1 /* F14Defaults.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = F14Defaults.h; path = folly/container/detail/F14Defaults.h; sourceTree = "<group>"; }; - 29C3FBC8358D2B9354ADE309861B9CDE /* RCTRedBox.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTRedBox.h; path = React/CoreModules/RCTRedBox.h; sourceTree = "<group>"; }; - 29D360BE948B0B8AE79B6F6128A14937 /* FIRCLSNetworkOperation.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRCLSNetworkOperation.m; path = Crashlytics/Crashlytics/Settings/Operations/FIRCLSNetworkOperation.m; sourceTree = "<group>"; }; - 29D8C493EAE7FD366C03A3D9A1E33139 /* HighlighterView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = HighlighterView.m; sourceTree = "<group>"; }; - 29DCEFBF38171CEEA0288A959C33AA72 /* NSData+EXFileSystem.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "NSData+EXFileSystem.m"; path = "EXFileSystem/NSData+EXFileSystem.m"; sourceTree = "<group>"; }; - 29DF24F2AEDFDE6DADBA573079529B6B /* SpookyHashV1.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = SpookyHashV1.cpp; path = folly/hash/SpookyHashV1.cpp; sourceTree = "<group>"; }; - 2A052AC762DA5E58222E584F38CB2FF1 /* GULSecureCoding.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = GULSecureCoding.h; path = GoogleUtilities/Environment/Private/GULSecureCoding.h; sourceTree = "<group>"; }; - 2A0DE5C69F4A14E3A590C7453E23FDAD /* ScheduledFrameTransport.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ScheduledFrameTransport.h; path = rsocket/framing/ScheduledFrameTransport.h; sourceTree = "<group>"; }; - 2A11218245C003EDA9A0CB086BF522E4 /* Rsa.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = Rsa.m; sourceTree = "<group>"; }; - 2A14879F164852C742D96B8144D456A4 /* UMTaskManagerInterface.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = UMTaskManagerInterface.podspec; sourceTree = "<group>"; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; - 2A1622AFF8166C9BC2526873A6A31D07 /* RCTInspector.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTInspector.h; sourceTree = "<group>"; }; - 2A201E321369369E539FE39ED859515D /* RCTDeviceInfo.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTDeviceInfo.h; path = React/CoreModules/RCTDeviceInfo.h; sourceTree = "<group>"; }; - 2A213939D88D46C9D88D0BBCEF62E13D /* EXConstantsService.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = EXConstantsService.m; path = EXConstants/EXConstantsService.m; sourceTree = "<group>"; }; - 2A2E31F1D554AB0E4ED50E5806B88B3E /* RCTValueAnimatedNode.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTValueAnimatedNode.h; sourceTree = "<group>"; }; - 2A3D59FB3665A31F8B7500521E96B781 /* ARTSolidColor.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = ARTSolidColor.h; sourceTree = "<group>"; }; - 2A3F22FAC952E5430A805F4537973541 /* RCTAnimationUtils.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTAnimationUtils.m; sourceTree = "<group>"; }; - 2A7B58051260494638C90C0308908B0B /* FBReactNativeSpec.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = FBReactNativeSpec.podspec; sourceTree = "<group>"; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; - 2A7B74E25DCF95117BA1DB7832421E28 /* GDTCORTransformer_Private.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = GDTCORTransformer_Private.h; path = GoogleDataTransport/GDTCORLibrary/Private/GDTCORTransformer_Private.h; sourceTree = "<group>"; }; - 2A8048665A94723F5E7236C65B4D80F5 /* RNFBJSON.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNFBJSON.m; path = ios/RNFBApp/RNFBJSON.m; sourceTree = "<group>"; }; - 2A897F4C8EDD4045318816540C3C8C81 /* Rcu-inl.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "Rcu-inl.h"; path = "folly/synchronization/Rcu-inl.h"; sourceTree = "<group>"; }; - 2A8DBA4F20110FCD2B5510ADC12462F8 /* DiscriminatedPtrDetail.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = DiscriminatedPtrDetail.h; path = folly/detail/DiscriminatedPtrDetail.h; sourceTree = "<group>"; }; - 2A8F95830D3F54E598653D2A822A45C8 /* RCTProfileTrampoline-i386.S */ = {isa = PBXFileReference; includeInIndex = 1; path = "RCTProfileTrampoline-i386.S"; sourceTree = "<group>"; }; - 2A9CC50E192B5C6EDAF41409F4688612 /* Portability.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Portability.h; path = folly/futures/Portability.h; sourceTree = "<group>"; }; - 2A9DA7B3DEEF2490D3AFF80D02558599 /* RCTRootView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTRootView.h; sourceTree = "<group>"; }; - 2ABB4D4481DB4A0DC59ADFAA1D7E6372 /* ClockGettimeWrappers.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ClockGettimeWrappers.h; path = folly/ClockGettimeWrappers.h; sourceTree = "<group>"; }; - 2ACB1DD9B5C3CE4961BF64D0BABEF146 /* LICENSE */ = {isa = PBXFileReference; includeInIndex = 1; path = LICENSE; sourceTree = "<group>"; }; - 2ACCE6DDD9D46016A77D2950B591793B /* SetupResumeAcceptor.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SetupResumeAcceptor.h; path = rsocket/internal/SetupResumeAcceptor.h; sourceTree = "<group>"; }; + 29CBC3A2E60A8AFE6E309183A1094450 /* EventBaseLocal.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = EventBaseLocal.cpp; path = folly/io/async/EventBaseLocal.cpp; sourceTree = "<group>"; }; + 29E84E084165D246715180500A2282EA /* SKViewControllerDescriptor.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SKViewControllerDescriptor.h; path = iOS/Plugins/FlipperKitLayoutPlugin/FlipperKitLayoutPlugin/descriptors/SKViewControllerDescriptor.h; sourceTree = "<group>"; }; + 29F533E7B70B1E571B0054B93BA488A5 /* Common.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = Common.cpp; path = rsocket/internal/Common.cpp; sourceTree = "<group>"; }; + 29F73B11296A1A175659C31CA2D81316 /* FIRCLSProcess.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRCLSProcess.h; path = Crashlytics/Crashlytics/Components/FIRCLSProcess.h; sourceTree = "<group>"; }; + 2A00D35E4CC68942CA0444D9534E5267 /* common_dec.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = common_dec.h; path = src/dec/common_dec.h; sourceTree = "<group>"; }; + 2A043FAA13A27B2B62A791DD5EC7F592 /* FIRErrors.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRErrors.h; path = FirebaseCore/Sources/Private/FIRErrors.h; sourceTree = "<group>"; }; + 2A1355CBBD5567E023DD512116787305 /* tr.lproj */ = {isa = PBXFileReference; includeInIndex = 1; name = tr.lproj; path = "Objective-C/TOCropViewController/Resources/tr.lproj"; sourceTree = "<group>"; }; + 2A40B641776019737D2F6716DF2785DC /* react-native-blur.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "react-native-blur.release.xcconfig"; sourceTree = "<group>"; }; + 2A50237DF5DB54AF3ABCEC6C314A1F2C /* REAParamNode.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = REAParamNode.m; sourceTree = "<group>"; }; + 2A5D7AB7198DAE60B2A8928D766760D4 /* Pretty.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Pretty.h; path = folly/lang/Pretty.h; sourceTree = "<group>"; }; + 2A62947C0BE9D5F9F52AB723D8F642B1 /* cpu.c */ = {isa = PBXFileReference; includeInIndex = 1; name = cpu.c; path = src/dsp/cpu.c; sourceTree = "<group>"; }; + 2A65D7B932BCE0C2808BB5E03C649E0E /* SharedPromise.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SharedPromise.h; path = folly/futures/SharedPromise.h; sourceTree = "<group>"; }; + 2A74A5D28B9BF69BCF5AD1C0EBEC92B7 /* REACondNode.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = REACondNode.h; sourceTree = "<group>"; }; + 2A7695ABD283AEBA8C5B925708337EA1 /* REATransitionManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = REATransitionManager.m; sourceTree = "<group>"; }; + 2A860CA128F0138C1887C3A537C0EDF0 /* yuv.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = yuv.h; path = src/dsp/yuv.h; sourceTree = "<group>"; }; + 2A86DF01247AC8F668CB4D11C098E4D5 /* SDInternalMacros.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = SDInternalMacros.m; path = SDWebImage/Private/SDInternalMacros.m; sourceTree = "<group>"; }; + 2A94F3ACC6E5FBC3B3243830EACF61C3 /* ErrorUtils.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = ErrorUtils.h; sourceTree = "<group>"; }; + 2AAAD906B2C1620324141AA9ADDC3FD2 /* AsyncSignalHandler.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = AsyncSignalHandler.cpp; path = folly/io/async/AsyncSignalHandler.cpp; sourceTree = "<group>"; }; + 2AB1F4E090C24BBDDB2D3261096B9A37 /* FIRCLSDemangleOperation.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRCLSDemangleOperation.h; path = Crashlytics/Crashlytics/Operations/Symbolication/FIRCLSDemangleOperation.h; sourceTree = "<group>"; }; + 2AB62E7244F26DDB1D626582636F2903 /* FIRCLSRecordBase.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRCLSRecordBase.h; path = Crashlytics/Crashlytics/Models/Record/FIRCLSRecordBase.h; sourceTree = "<group>"; }; + 2AC5C3B1B34E86A8D913067DBD164087 /* JSITracing.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; path = JSITracing.cpp; sourceTree = "<group>"; }; + 2AC6B0345C5544562BDC46E803EAA9A1 /* UMReactNativeAdapter-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "UMReactNativeAdapter-dummy.m"; sourceTree = "<group>"; }; + 2AC9D7D097D078CA6713ED5CEA156FDC /* MoveWrapper.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = MoveWrapper.h; path = folly/MoveWrapper.h; sourceTree = "<group>"; }; + 2ACA276C62910C484D48EE60F62D3348 /* Random.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Random.h; path = folly/Random.h; sourceTree = "<group>"; }; + 2ACD73300513534D548675E0674A31D7 /* RNBootSplash.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNBootSplash.m; path = ios/RNBootSplash.m; sourceTree = "<group>"; }; + 2AD517D6606D53C0D497F79527303D0F /* EXVideoThumbnailsModule.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = EXVideoThumbnailsModule.h; path = EXVideoThumbnails/EXVideoThumbnailsModule.h; sourceTree = "<group>"; }; + 2ADF919ACD1DFA6C9191F1B910DDC860 /* RCTGIFImageDecoder.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTGIFImageDecoder.mm; sourceTree = "<group>"; }; + 2AE41A90EF30E02EAEBC24635E29B3BB /* Compression.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Compression.h; path = ios/src/Compression.h; sourceTree = "<group>"; }; + 2AE5FF99A812F1C570B571923FC62A8C /* lossless_msa.c */ = {isa = PBXFileReference; includeInIndex = 1; name = lossless_msa.c; path = src/dsp/lossless_msa.c; sourceTree = "<group>"; }; + 2AE78BC7448998B627ECFF14288FD218 /* FlipperCppBridgingResponder.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FlipperCppBridgingResponder.h; path = iOS/FlipperKit/CppBridge/FlipperCppBridgingResponder.h; sourceTree = "<group>"; }; 2AE9C51AC524FAF90F73601566183A95 /* libreact-native-restart.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; name = "libreact-native-restart.a"; path = "libreact-native-restart.a"; sourceTree = BUILT_PRODUCTS_DIR; }; - 2AED415BF2CA0F102E482E3B33CF499C /* RCTPbkdf2.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTPbkdf2.h; path = ios/RCTCrypto/RCTPbkdf2.h; sourceTree = "<group>"; }; + 2AF1C3DA0EA9BFA496EE8D24D7FF1031 /* Flipper-PeerTalk.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "Flipper-PeerTalk.debug.xcconfig"; sourceTree = "<group>"; }; 2B17A71888AA28CEFEC37B72F2A68A91 /* libreact-native-slider.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; name = "libreact-native-slider.a"; path = "libreact-native-slider.a"; sourceTree = BUILT_PRODUCTS_DIR; }; + 2B17C4EA6610DD0C8BAFD168886FF158 /* SDWebImageWebPCoder.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = SDWebImageWebPCoder.release.xcconfig; sourceTree = "<group>"; }; + 2B18F1EC87BB8F73733D818B6DA098E4 /* react-native-slider-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "react-native-slider-dummy.m"; sourceTree = "<group>"; }; + 2B2DCB43C92C7E9AD3015561EEA0E1A6 /* HighlighterView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = HighlighterView.m; sourceTree = "<group>"; }; 2B361608B34C96A6FAB5E98FCEA3A462 /* Pods-ShareRocketChatRN-acknowledgements.markdown */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text; path = "Pods-ShareRocketChatRN-acknowledgements.markdown"; sourceTree = "<group>"; }; - 2B4BC89835F0B426BA24544643826522 /* RNCAppearanceProvider.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNCAppearanceProvider.m; path = ios/Appearance/RNCAppearanceProvider.m; sourceTree = "<group>"; }; - 2B718F26729C506A76A2B66E211E6927 /* GULReachabilityChecker.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = GULReachabilityChecker.m; path = GoogleUtilities/Reachability/GULReachabilityChecker.m; sourceTree = "<group>"; }; - 2B8E8C68AEE768BDD9E736F62AB3056B /* Stdio.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Stdio.h; path = folly/portability/Stdio.h; sourceTree = "<group>"; }; - 2BA3E5792BCC8BDA3697E65514DAA0E4 /* RCTDivisionAnimatedNode.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTDivisionAnimatedNode.m; sourceTree = "<group>"; }; - 2BA78A360616F5D78A8FC1A42DB78ED7 /* EventBaseLocal.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = EventBaseLocal.h; path = folly/io/async/EventBaseLocal.h; sourceTree = "<group>"; }; - 2BB10CDB95E75C6961B3BB55A463C9BF /* FIROptions.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIROptions.m; path = FirebaseCore/Sources/FIROptions.m; sourceTree = "<group>"; }; - 2BD45D297B804D133CC7BF454757DF21 /* RCTSegmentedControlManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTSegmentedControlManager.h; sourceTree = "<group>"; }; - 2BE066C60E8DFBD22751401C52C64631 /* BugsnagReactNativePlugin.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BugsnagReactNativePlugin.h; sourceTree = "<group>"; }; - 2BE952648F93797D468722B37002481C /* EXImageLoader.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = EXImageLoader.m; path = EXImageLoader/EXImageLoader.m; sourceTree = "<group>"; }; - 2C17B2692915442C061B9BD0B2FC5D68 /* RCTSourceCode.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTSourceCode.mm; sourceTree = "<group>"; }; - 2C1EE05A18109AA23C61F78E7E447A87 /* RootView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RootView.h; path = ios/RootView.h; sourceTree = "<group>"; }; - 2C1FABDEA357FDEA4376B5426958FB0D /* FIRCLSDwarfUnwind.c */ = {isa = PBXFileReference; includeInIndex = 1; name = FIRCLSDwarfUnwind.c; path = Crashlytics/Crashlytics/Unwind/Dwarf/FIRCLSDwarfUnwind.c; sourceTree = "<group>"; }; - 2C27E6A4B9DEE937229E32BDF9455656 /* SKNamed.mm */ = {isa = PBXFileReference; includeInIndex = 1; name = SKNamed.mm; path = iOS/Plugins/FlipperKitLayoutPlugin/FlipperKitLayoutPlugin/SKNamed.mm; sourceTree = "<group>"; }; - 2C4686785AFDD41B0581622BD388B30E /* RCTKeyboardObserver.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTKeyboardObserver.h; path = React/CoreModules/RCTKeyboardObserver.h; sourceTree = "<group>"; }; - 2C4C8B8A91B2C7212F97BAF2DAE6A97B /* Firebase.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = Firebase.debug.xcconfig; sourceTree = "<group>"; }; - 2C4D8DF159A741D57577CD8295426EBB /* FileUtil.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FileUtil.h; path = folly/FileUtil.h; sourceTree = "<group>"; }; - 2C54CBEF7275D9470822FE0D250A5B09 /* FIRCLSRecordIdentity.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRCLSRecordIdentity.h; path = Crashlytics/Crashlytics/Models/Record/FIRCLSRecordIdentity.h; sourceTree = "<group>"; }; - 2C5800E04BD2368D3CB11E16D4EF1829 /* MPMCPipelineDetail.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = MPMCPipelineDetail.h; path = folly/detail/MPMCPipelineDetail.h; sourceTree = "<group>"; }; - 2C616658CC648E09155A506047BDB957 /* FIRCrashlytics.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRCrashlytics.h; path = Crashlytics/Crashlytics/Public/FIRCrashlytics.h; sourceTree = "<group>"; }; - 2C8E879CBAB5F3D69BF50A13AD39F50C /* UMFontScalersManagerInterface.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = UMFontScalersManagerInterface.h; path = UMFontInterface/UMFontScalersManagerInterface.h; sourceTree = "<group>"; }; - 2C93158493456F2BAA4F220083CADB69 /* Random-inl.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "Random-inl.h"; path = "folly/Random-inl.h"; sourceTree = "<group>"; }; - 2CA2B960B9E1731D599484C0CE3BA035 /* SDImageGIFCoder.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SDImageGIFCoder.h; path = SDWebImage/Core/SDImageGIFCoder.h; sourceTree = "<group>"; }; - 2CE7BF3DDCFD977FF416D41F80C473E0 /* demangle.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = demangle.cc; path = src/demangle.cc; sourceTree = "<group>"; }; - 2D0AFB3AA334082BD476F588855D6AE5 /* GDTCORRegistrar_Private.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = GDTCORRegistrar_Private.h; path = GoogleDataTransport/GDTCORLibrary/Private/GDTCORRegistrar_Private.h; sourceTree = "<group>"; }; - 2D2390B0DF63D8AA73976078BCD5CB07 /* CString.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = CString.h; path = folly/lang/CString.h; sourceTree = "<group>"; }; - 2D2D7C2D1FF6405FC4F8DCCBEB33D66F /* FIRCLSDownloadAndSaveSettingsOperation.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRCLSDownloadAndSaveSettingsOperation.m; path = Crashlytics/Crashlytics/Settings/Operations/FIRCLSDownloadAndSaveSettingsOperation.m; sourceTree = "<group>"; }; - 2D34C1E13A0B82E82411A8B80CF5E46E /* react-native-blur.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "react-native-blur.debug.xcconfig"; sourceTree = "<group>"; }; - 2D581ED99932190F20B005D628B8B0D3 /* en.lproj */ = {isa = PBXFileReference; includeInIndex = 1; name = en.lproj; path = "Objective-C/TOCropViewController/Resources/en.lproj"; sourceTree = "<group>"; }; - 2D813A9476AB28E62E3DA121A0362C1B /* ThreadCachedInts.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ThreadCachedInts.h; path = folly/synchronization/detail/ThreadCachedInts.h; sourceTree = "<group>"; }; - 2D86212C9EE02C3B1D98668EF11183C4 /* GDTCCTPrioritizer.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = GDTCCTPrioritizer.h; path = GoogleDataTransportCCTSupport/GDTCCTLibrary/Private/GDTCCTPrioritizer.h; sourceTree = "<group>"; }; + 2B364DA950FE04F9EE2EABD89FA4992D /* UIImage+Metadata.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "UIImage+Metadata.m"; path = "SDWebImage/Core/UIImage+Metadata.m"; sourceTree = "<group>"; }; + 2B59DBB7F0438F49EE3ED69F5F807ADB /* ColdResumeHandler.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ColdResumeHandler.h; path = rsocket/ColdResumeHandler.h; sourceTree = "<group>"; }; + 2B5F69EB48C119034B23C4B47019B008 /* FKPortForwardingServer.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FKPortForwardingServer.h; path = iOS/FlipperKit/FKPortForwarding/FKPortForwardingServer.h; sourceTree = "<group>"; }; + 2B61C28C621032A7E5EE10834B9DC504 /* RCTTypedModuleConstants.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTTypedModuleConstants.h; sourceTree = "<group>"; }; + 2B8F70455DFC37E55AF0D4CB3D1903A2 /* RCTTextShadowView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTTextShadowView.m; sourceTree = "<group>"; }; + 2B97D2F1039F7850D30968EFBC5D51E1 /* listener.c */ = {isa = PBXFileReference; includeInIndex = 1; path = listener.c; sourceTree = "<group>"; }; + 2BB6B186277196265155B80B55ED6C71 /* UMViewManagerAdapter.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = UMViewManagerAdapter.m; sourceTree = "<group>"; }; + 2BC6BBD8A28F29719B12F01C18074170 /* FIRCoreDiagnosticsData.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRCoreDiagnosticsData.h; path = Interop/CoreDiagnostics/Public/FIRCoreDiagnosticsData.h; sourceTree = "<group>"; }; + 2BE77D0DA9F67FA097B76993286A416F /* HazptrUtils.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = HazptrUtils.h; path = folly/synchronization/detail/HazptrUtils.h; sourceTree = "<group>"; }; + 2BEBC1A69ED4882FD92FD4958E2610A0 /* RNLongPressHandler.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RNLongPressHandler.m; sourceTree = "<group>"; }; + 2BF683C0A6F77183447CC8C0FE004089 /* Benchmark.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Benchmark.h; path = folly/Benchmark.h; sourceTree = "<group>"; }; + 2BF75F6240284F7B65E31E4FF0017C53 /* LICENSE.md */ = {isa = PBXFileReference; includeInIndex = 1; path = LICENSE.md; sourceTree = "<group>"; }; + 2C292E6080435801A35C00F404D6C3BA /* ARTGroup.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = ARTGroup.m; path = ios/ARTGroup.m; sourceTree = "<group>"; }; + 2C32E38AF037FC5B35C445638749C3CB /* GULKeychainUtils.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = GULKeychainUtils.h; path = GoogleUtilities/Environment/Private/GULKeychainUtils.h; sourceTree = "<group>"; }; + 2C3592BE45EBA489DE146D264014AAB4 /* EliasFanoCoding.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = EliasFanoCoding.h; path = folly/experimental/EliasFanoCoding.h; sourceTree = "<group>"; }; + 2C4AEAFC32DB9FC914DF2A9F1B94097F /* RCTSafeAreaViewLocalData.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTSafeAreaViewLocalData.m; sourceTree = "<group>"; }; + 2C5022D3987113C0B01B2E82CD0B910F /* EventBaseBackendBase.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = EventBaseBackendBase.h; path = folly/io/async/EventBaseBackendBase.h; sourceTree = "<group>"; }; + 2C53BA3A14F3E261645320BF646094F2 /* GULAppDelegateSwizzler.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = GULAppDelegateSwizzler.h; path = GoogleUtilities/AppDelegateSwizzler/Private/GULAppDelegateSwizzler.h; sourceTree = "<group>"; }; + 2C5B7359072A46C3DADEE3375647BCDD /* Thread.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; path = Thread.cpp; sourceTree = "<group>"; }; + 2C643E525D4DDDEE6ABC165EDE7AEEF2 /* SDWeakProxy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = SDWeakProxy.m; path = SDWebImage/Private/SDWeakProxy.m; sourceTree = "<group>"; }; + 2C6CD5096556A39C355942B27E200401 /* LifoSem.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = LifoSem.h; path = folly/synchronization/LifoSem.h; sourceTree = "<group>"; }; + 2C6DA39E33EAAAA7F63EC7CD283876DB /* threadsafe.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = threadsafe.h; sourceTree = "<group>"; }; + 2C75EC0F15F258B3FDD5FEF9C062FBFD /* ARTTextFrame.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ARTTextFrame.h; path = ios/ARTTextFrame.h; sourceTree = "<group>"; }; + 2C86E588F197D77BAD6FA658CD7591C5 /* FIRCLSBinaryImage.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRCLSBinaryImage.h; path = Crashlytics/Crashlytics/Components/FIRCLSBinaryImage.h; sourceTree = "<group>"; }; + 2C8B9227524522C4C2CA7E8C31B3BB06 /* FlipperRSocketResponder.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FlipperRSocketResponder.h; path = xplat/Flipper/FlipperRSocketResponder.h; sourceTree = "<group>"; }; + 2C8F209FFE8EB78F2B12E9E90E605B81 /* react-native-netinfo.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = "react-native-netinfo.podspec"; sourceTree = "<group>"; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; + 2CA1D57BA399573DFF508AE3AD994B96 /* YGNode.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = YGNode.h; path = yoga/YGNode.h; sourceTree = "<group>"; }; + 2CA64F7219DCE95748B64DB748A56919 /* backward_references_enc.c */ = {isa = PBXFileReference; includeInIndex = 1; name = backward_references_enc.c; path = src/enc/backward_references_enc.c; sourceTree = "<group>"; }; + 2CB30789220E5792478E52B860728C9F /* RCTShadowView+Layout.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "RCTShadowView+Layout.m"; sourceTree = "<group>"; }; + 2CB8C9120E2A790124C2B6FB1D6B2902 /* ratelim-internal.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "ratelim-internal.h"; sourceTree = "<group>"; }; + 2CDFD1719E051485FDF97FBFDF31A9DB /* KeyValueHolder.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = KeyValueHolder.cpp; path = Core/KeyValueHolder.cpp; sourceTree = "<group>"; }; + 2CF135AF3A7A0D72EBC7E189B34DE27D /* RCTSegmentedControl.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTSegmentedControl.h; sourceTree = "<group>"; }; + 2CF250AE6DD1E4E2DE99F4622E838810 /* VirtualEventBase.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = VirtualEventBase.cpp; path = folly/io/async/VirtualEventBase.cpp; sourceTree = "<group>"; }; + 2D0FDDDC5D9C5920EDAADBF5B0A01C99 /* HermesExecutorFactory.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = HermesExecutorFactory.h; sourceTree = "<group>"; }; + 2D2808D13D549D1FCB4043E612A36333 /* FIRCLSUnwind.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRCLSUnwind.h; path = Crashlytics/Crashlytics/Unwind/FIRCLSUnwind.h; sourceTree = "<group>"; }; + 2D2A898A3EA4970135FC50DAF5813F26 /* FIRAnalyticsInteropListener.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRAnalyticsInteropListener.h; path = Interop/Analytics/Public/FIRAnalyticsInteropListener.h; sourceTree = "<group>"; }; + 2D2AC3C536ABC9FAA50F8255EC14CBDB /* AsyncSocket.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = AsyncSocket.h; path = folly/io/async/AsyncSocket.h; sourceTree = "<group>"; }; + 2D378B6353231BCF643682C809A2179A /* UMReactNativeAdapter.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = UMReactNativeAdapter.debug.xcconfig; sourceTree = "<group>"; }; + 2D518A14B7415A7E01F104C00B1616C7 /* RCTEventDispatcher.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTEventDispatcher.m; sourceTree = "<group>"; }; + 2D51C38652AE7436C677B0DC14D96F78 /* RWSpinLock.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RWSpinLock.h; path = folly/synchronization/RWSpinLock.h; sourceTree = "<group>"; }; + 2D6B1F132E23217D2014C2BBABFE8CE6 /* LICENSE */ = {isa = PBXFileReference; includeInIndex = 1; path = LICENSE; sourceTree = "<group>"; }; + 2D81AFBC0D5035D488B0F2F703430734 /* MMKVPredef.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = MMKVPredef.h; path = Core/MMKVPredef.h; sourceTree = "<group>"; }; + 2D82F8AD0C5FFA93020AC88F7B9DE1DE /* RCTScrollContentViewManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTScrollContentViewManager.h; sourceTree = "<group>"; }; + 2D84EE168450234B3920B655E2D481DB /* UIView+WebCache.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "UIView+WebCache.h"; path = "SDWebImage/Core/UIView+WebCache.h"; sourceTree = "<group>"; }; 2D86D213801ABEF7CD86291D4F3FDD34 /* libUMAppLoader.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; name = libUMAppLoader.a; path = libUMAppLoader.a; sourceTree = BUILT_PRODUCTS_DIR; }; - 2D874C0B29A25EF40764F5DBF1F06554 /* Subscription.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Subscription.h; path = yarpl/observable/Subscription.h; sourceTree = "<group>"; }; - 2DC979E4C53D61D48A37D92D822E0464 /* ReactCommon.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = ReactCommon.release.xcconfig; sourceTree = "<group>"; }; - 2DFFAD9F41C6A92527EED93D7F1EB23C /* RCTRedBoxSetEnabled.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTRedBoxSetEnabled.m; sourceTree = "<group>"; }; - 2E23C9017DF38BEE442275A1E8AC6343 /* SocketFileDescriptorMap.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SocketFileDescriptorMap.h; path = folly/net/detail/SocketFileDescriptorMap.h; sourceTree = "<group>"; }; - 2E43413B26C98EF6028F572F7427F9E6 /* SlowFingerprint.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SlowFingerprint.h; path = folly/detail/SlowFingerprint.h; sourceTree = "<group>"; }; - 2E456B5367A75D26021F4533FD7F0291 /* Observable.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Observable.h; path = yarpl/observable/Observable.h; sourceTree = "<group>"; }; - 2E4F334248833C97B3656DE81F2B2778 /* Fingerprint.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Fingerprint.h; path = folly/Fingerprint.h; sourceTree = "<group>"; }; - 2E73A9322BBB7C6B2CE667F4A5619F30 /* libMMKV.mm */ = {isa = PBXFileReference; includeInIndex = 1; name = libMMKV.mm; path = iOS/MMKV/MMKV/libMMKV.mm; sourceTree = "<group>"; }; - 2E763E54264B6EE3E48C2E8F9CC09D76 /* webpi_dec.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = webpi_dec.h; path = src/dec/webpi_dec.h; sourceTree = "<group>"; }; - 2E7C44F8E7F7F762E989594768FD709E /* Flipper-RSocket-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "Flipper-RSocket-dummy.m"; sourceTree = "<group>"; }; - 2E8A4966347DDE08B91EE969C520C066 /* UIImage+Extension.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "UIImage+Extension.m"; path = "ios/src/UIImage+Extension.m"; sourceTree = "<group>"; }; - 2E989BFAB2A9F137B9B90605149AC2B9 /* Demangle.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = Demangle.cpp; path = folly/Demangle.cpp; sourceTree = "<group>"; }; - 2EB2ED7BBB8478C051F527DDEF79EC6F /* RuntimeAdapter.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RuntimeAdapter.h; sourceTree = "<group>"; }; - 2ED748BD35A98F47D36456871617E751 /* RCTLogBoxView.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTLogBoxView.mm; sourceTree = "<group>"; }; - 2ED9BF56428DBA0DE10A75282936070F /* FIRCLSPackageReportOperation.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRCLSPackageReportOperation.m; path = Crashlytics/Crashlytics/Operations/Reports/FIRCLSPackageReportOperation.m; sourceTree = "<group>"; }; - 2EE81361339C5E1930DAF6A4CFD01B74 /* FLEXNetworkTransaction.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FLEXNetworkTransaction.h; path = iOS/Plugins/FlipperKitNetworkPlugin/SKIOSNetworkPlugin/FLEXNetworkLib/FLEXNetworkTransaction.h; sourceTree = "<group>"; }; - 2EEC082619F0F996306EE06C9EE41BD4 /* UIImage+ExtendedCacheData.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "UIImage+ExtendedCacheData.h"; path = "SDWebImage/Core/UIImage+ExtendedCacheData.h"; sourceTree = "<group>"; }; + 2D8EE039B4423CFA9CD0F721D152E617 /* EXHaptics.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = EXHaptics.debug.xcconfig; sourceTree = "<group>"; }; + 2D9950EA369675738C58A163E63F7D9F /* BugsnagSystemState.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BugsnagSystemState.h; sourceTree = "<group>"; }; + 2DB078B4CD103C372972A011E7CC79C4 /* FirebaseCore.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = FirebaseCore.release.xcconfig; sourceTree = "<group>"; }; + 2DB3761BEDAA5821ADD62458767F79F3 /* ManualExecutor.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = ManualExecutor.cpp; path = folly/executors/ManualExecutor.cpp; sourceTree = "<group>"; }; + 2DBC02AAB6A0CE2BE962F55B26B0FEC3 /* RNCWebViewManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNCWebViewManager.m; path = apple/RNCWebViewManager.m; sourceTree = "<group>"; }; + 2DC70E070F382D3F08B01B7B4F06CD00 /* BugsnagReactNativeEmitter.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = BugsnagReactNativeEmitter.m; sourceTree = "<group>"; }; + 2DC996C5BA817DA5E8B9FCF48FF2A116 /* Uri-inl.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "Uri-inl.h"; path = "folly/Uri-inl.h"; sourceTree = "<group>"; }; + 2DCDA8B91A186FA200056205DA2477FB /* FIRCLSThreadState.c */ = {isa = PBXFileReference; includeInIndex = 1; name = FIRCLSThreadState.c; path = Crashlytics/Crashlytics/Helpers/FIRCLSThreadState.c; sourceTree = "<group>"; }; + 2DD583EEDB3DA36F3471DD76E1CDB475 /* UMReactNativeAdapter-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "UMReactNativeAdapter-prefix.pch"; sourceTree = "<group>"; }; + 2DFD728DF9D1616DDD018BD16AF24D08 /* Windows.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Windows.h; path = folly/portability/Windows.h; sourceTree = "<group>"; }; + 2DFE00B59DDA7259EA323C7F5D23F5A7 /* QBAssetsViewController.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = QBAssetsViewController.m; path = ios/QBImagePicker/QBImagePicker/QBAssetsViewController.m; sourceTree = "<group>"; }; + 2E02143A3700FA34F89CE1C664E3231F /* ko.lproj */ = {isa = PBXFileReference; includeInIndex = 1; name = ko.lproj; path = "Objective-C/TOCropViewController/Resources/ko.lproj"; sourceTree = "<group>"; }; + 2E0B130F0EDA36A6DC22F6BFF7580C99 /* TimerFD.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = TimerFD.h; path = folly/experimental/TimerFD.h; sourceTree = "<group>"; }; + 2E0D66364E3C4E81BCA4CBCF60208FFF /* TOCropViewController.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = TOCropViewController.debug.xcconfig; sourceTree = "<group>"; }; + 2E1B2426818A7ADF3D4A444798C51B11 /* ReactCommon.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = ReactCommon.release.xcconfig; sourceTree = "<group>"; }; + 2E36D770A5670548368752957810ED6D /* JSIDynamic.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = JSIDynamic.h; sourceTree = "<group>"; }; + 2E45A073CA24752D8FF0BA280FC352AA /* RCTTypeSafety-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "RCTTypeSafety-dummy.m"; sourceTree = "<group>"; }; + 2E568B34CBD06DBB1EC126FFD4D26639 /* EXFileSystem.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = EXFileSystem.h; path = EXFileSystem/EXFileSystem.h; sourceTree = "<group>"; }; + 2E61B9C64B2D129473FDA65B7ECD84A2 /* RCTBackedTextInputViewProtocol.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTBackedTextInputViewProtocol.h; sourceTree = "<group>"; }; + 2E73F011CEB0A6710D96E7DB18FAE891 /* NativeToJsBridge.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; path = NativeToJsBridge.cpp; sourceTree = "<group>"; }; + 2E95ECA446B2B2218286127C64EE4608 /* IPAddress.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = IPAddress.cpp; path = folly/detail/IPAddress.cpp; sourceTree = "<group>"; }; + 2E9B02BCEB081D8C4A064ADA354C79CD /* FIRCLSFile.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRCLSFile.h; path = Crashlytics/Crashlytics/Helpers/FIRCLSFile.h; sourceTree = "<group>"; }; + 2EA9C9A9E4FA3E8A2BEF1110D54C03E0 /* CallbackOStream.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; path = CallbackOStream.cpp; sourceTree = "<group>"; }; + 2EBBD655B44823D31A908BA6C3B96697 /* Future.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = Future.cpp; path = folly/futures/Future.cpp; sourceTree = "<group>"; }; + 2ED5DDDAC4BBAAA67FE466A1082C95F5 /* YogaKit.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = YogaKit.release.xcconfig; sourceTree = "<group>"; }; + 2EDC35FADC6890E28E63154C7DC8FB7E /* RNFastImage.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = RNFastImage.podspec; sourceTree = "<group>"; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; + 2EE4A5D73F23FCC7986BCCDDF505606B /* cost_sse2.c */ = {isa = PBXFileReference; includeInIndex = 1; name = cost_sse2.c; path = src/dsp/cost_sse2.c; sourceTree = "<group>"; }; + 2EE70142C25E38591140016B1C0031C2 /* Promise-inl.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "Promise-inl.h"; path = "folly/futures/Promise-inl.h"; sourceTree = "<group>"; }; + 2EE9DE4D51C0162B5FDD2AF1A03ED058 /* Stdlib.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = Stdlib.cpp; path = folly/portability/Stdlib.cpp; sourceTree = "<group>"; }; + 2EF6B8484DD6B8CEA3C7230F39970CB3 /* MaterialCommunityIcons.ttf */ = {isa = PBXFileReference; includeInIndex = 1; name = MaterialCommunityIcons.ttf; path = Fonts/MaterialCommunityIcons.ttf; sourceTree = "<group>"; }; 2EFD0A6BE8310EB5AFA739603C80B858 /* Pods-defaults-Rocket.Chat-acknowledgements.plist */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.plist.xml; path = "Pods-defaults-Rocket.Chat-acknowledgements.plist"; sourceTree = "<group>"; }; - 2EFE75415A489ABB03321806F54AB213 /* YGNode.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = YGNode.h; path = yoga/YGNode.h; sourceTree = "<group>"; }; - 2F063F42597664A28DB5D13D0BAD4FE9 /* Restart.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Restart.h; path = ios/Restart.h; sourceTree = "<group>"; }; - 2F0F85D3DB77B73B2A983CB6A7ABF28B /* ErrorCode.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = ErrorCode.cpp; path = rsocket/framing/ErrorCode.cpp; sourceTree = "<group>"; }; - 2F40785B36761D40360CCF0B7D0E1C43 /* MMKV_OSX.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = MMKV_OSX.h; path = Core/MMKV_OSX.h; sourceTree = "<group>"; }; - 2F67A5F42B06C732F114178CBE4CA845 /* Select64.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Select64.h; path = folly/experimental/Select64.h; sourceTree = "<group>"; }; - 2F6F8104994F8DC0891F5424518527FF /* FIRDependency.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRDependency.h; path = FirebaseCore/Sources/Private/FIRDependency.h; sourceTree = "<group>"; }; - 2F7346407420D349CF5ADF41C420A657 /* BugsnagSessionTracker.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BugsnagSessionTracker.h; sourceTree = "<group>"; }; - 2F85A36A7DF29262707FF6EAC03F1745 /* SafeAreaManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = SafeAreaManager.h; sourceTree = "<group>"; }; - 2F879142E2EE93DE74FB3050AB0E2791 /* TurboCxxModule.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; path = TurboCxxModule.cpp; sourceTree = "<group>"; }; - 2F91A48D4257E40AAA818AB8B7100A38 /* RNScreens.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = RNScreens.release.xcconfig; sourceTree = "<group>"; }; - 2F99A0B6BBCF0E40F9EDF94E751A3821 /* HazptrObjLinked.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = HazptrObjLinked.h; path = folly/synchronization/HazptrObjLinked.h; sourceTree = "<group>"; }; - 2FA223FDB03BD8D6326DE81D5DD9B6F2 /* EliasFanoCoding.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = EliasFanoCoding.h; path = folly/experimental/EliasFanoCoding.h; sourceTree = "<group>"; }; - 2FB05ECB092D5342169D9D9695DF77D5 /* QueuedImmediateExecutor.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = QueuedImmediateExecutor.cpp; path = folly/executors/QueuedImmediateExecutor.cpp; sourceTree = "<group>"; }; - 2FD8BFB766C4D8652467E620E4061E38 /* Semaphore.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Semaphore.h; path = folly/portability/Semaphore.h; sourceTree = "<group>"; }; - 2FDB606CC614250FF6B4EC84434F465A /* OpenSSL.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = OpenSSL.h; path = folly/portability/OpenSSL.h; sourceTree = "<group>"; }; - 300B9EB55C9B47A2297C2359CE720EA5 /* AsyncPipe.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = AsyncPipe.cpp; path = folly/io/async/AsyncPipe.cpp; sourceTree = "<group>"; }; - 30179570988891F43F9A54B32C56A700 /* Subscription.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = Subscription.cpp; path = yarpl/observable/Subscription.cpp; sourceTree = "<group>"; }; - 30243E7519676662464862B25AAD7BCC /* EXFileSystem-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "EXFileSystem-prefix.pch"; sourceTree = "<group>"; }; - 302B252F9DADA18163B5E886774704D3 /* FlipperKitLayoutPlugin.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FlipperKitLayoutPlugin.h; path = iOS/Plugins/FlipperKitLayoutPlugin/FlipperKitLayoutPlugin/FlipperKitLayoutPlugin.h; sourceTree = "<group>"; }; - 302BF3C74637C7DB351858B047839178 /* FIRCLSBinaryImage.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRCLSBinaryImage.h; path = Crashlytics/Crashlytics/Components/FIRCLSBinaryImage.h; sourceTree = "<group>"; }; - 304AD9DD746227D7CFF1D49EE52759C2 /* RCTRefreshControlManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTRefreshControlManager.h; sourceTree = "<group>"; }; - 304FE7BE8CD5D7068F8DDD996E27BD76 /* EXAVPlayerData.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = EXAVPlayerData.h; path = EXAV/EXAVPlayerData.h; sourceTree = "<group>"; }; - 3063FC67A941CB517B8CBB84E4A02102 /* UIImage+Metadata.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "UIImage+Metadata.h"; path = "SDWebImage/Core/UIImage+Metadata.h"; sourceTree = "<group>"; }; - 306E981283C96604480F569449C71241 /* React-Core.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "React-Core.release.xcconfig"; sourceTree = "<group>"; }; - 306FDD037C73399B0B0783FC8DF4D453 /* RNFBUtilsModule.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNFBUtilsModule.m; path = ios/RNFBApp/RNFBUtilsModule.m; sourceTree = "<group>"; }; - 30775C17AD0C769308C8D4EBB9172108 /* UIImage+ForceDecode.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "UIImage+ForceDecode.h"; path = "SDWebImage/Core/UIImage+ForceDecode.h"; sourceTree = "<group>"; }; - 308C47CE2D3A09406168330B0D50A90F /* BSG_KSString.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BSG_KSString.h; sourceTree = "<group>"; }; - 30AF8D3CCB290A00C1F861CCCCE68A94 /* Executor.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Executor.h; path = folly/Executor.h; sourceTree = "<group>"; }; - 30C66852419F645A443E08E8C32C0703 /* SDImageFrame.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SDImageFrame.h; path = SDWebImage/Core/SDImageFrame.h; sourceTree = "<group>"; }; - 30CB0B977F5A73E7AFE59076D674E06D /* RNJitsiMeetView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNJitsiMeetView.m; path = ios/RNJitsiMeetView.m; sourceTree = "<group>"; }; - 30CCD0C483D6373D7BD16F68B8220D19 /* FIRCLSException.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRCLSException.h; path = Crashlytics/Crashlytics/Handlers/FIRCLSException.h; sourceTree = "<group>"; }; - 30D81A3D660D3599BC10A49C1F29EEE0 /* defer-internal.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "defer-internal.h"; sourceTree = "<group>"; }; - 30E0158E717F1ED37C490CDF675CB681 /* Checksum.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Checksum.h; path = Core/crc32/Checksum.h; sourceTree = "<group>"; }; - 30FBF9F21765CD2B2B91FB4335FCE513 /* SKBufferingPlugin+CPPInitialization.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "SKBufferingPlugin+CPPInitialization.h"; path = "iOS/Plugins/FlipperKitNetworkPlugin/FlipperKitNetworkPlugin/SKBufferingPlugin+CPPInitialization.h"; sourceTree = "<group>"; }; - 310FC110EFDE34CDB679F28F1FCA2920 /* libevent.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = libevent.release.xcconfig; sourceTree = "<group>"; }; - 311084FAB238D4B04EF72063D8B3C7DC /* Array.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Array.h; path = folly/container/Array.h; sourceTree = "<group>"; }; - 312650FE7FD503D2EC40D1882CCEA092 /* RNNotificationUtils.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNNotificationUtils.h; path = RNNotifications/RNNotificationUtils.h; sourceTree = "<group>"; }; - 313463C598C757EF8F324DB0BF06F135 /* SparseByteSet.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SparseByteSet.h; path = folly/container/SparseByteSet.h; sourceTree = "<group>"; }; - 3146EE7F2F7253CE4A19AE42577E2750 /* FIRInstallationsLogger.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRInstallationsLogger.m; path = FirebaseInstallations/Source/Library/FIRInstallationsLogger.m; sourceTree = "<group>"; }; - 314D6A4AC5227189966DFE96E9021D45 /* RCTAppState.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTAppState.h; path = React/CoreModules/RCTAppState.h; sourceTree = "<group>"; }; - 3151C13364D2D1FBA4AA7C9D512719D8 /* DelayedDestructionBase.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = DelayedDestructionBase.h; path = folly/io/async/DelayedDestructionBase.h; sourceTree = "<group>"; }; - 31539C38D495B50907FA4BBE5334CBCD /* SDWebImageDownloaderConfig.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = SDWebImageDownloaderConfig.m; path = SDWebImage/Core/SDWebImageDownloaderConfig.m; sourceTree = "<group>"; }; - 3165B7C50B8D93136632716AD3961A52 /* FIRDependency.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRDependency.h; path = FirebaseCore/Sources/Private/FIRDependency.h; sourceTree = "<group>"; }; - 316A90574F4767203686A7B623BD08DF /* RCTFrameAnimation.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTFrameAnimation.h; sourceTree = "<group>"; }; + 2F00848A4EE9AF993619862BE538B869 /* RNDocumentPicker.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNDocumentPicker.m; path = ios/RNDocumentPicker/RNDocumentPicker.m; sourceTree = "<group>"; }; + 2F09F15D76F629CB14522980C2E43FA5 /* EnableSharedFromThis.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = EnableSharedFromThis.h; path = folly/memory/EnableSharedFromThis.h; sourceTree = "<group>"; }; + 2F118897C006AB220C8163855124852B /* EXFileSystem-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "EXFileSystem-dummy.m"; sourceTree = "<group>"; }; + 2F121865458A92DD5EF3BE0A051B555A /* Poly-inl.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "Poly-inl.h"; path = "folly/Poly-inl.h"; sourceTree = "<group>"; }; + 2F16CC85872CDD00A5479F6196EC100F /* double-conversion.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = "double-conversion.cc"; path = "double-conversion/double-conversion.cc"; sourceTree = "<group>"; }; + 2F321148255C10C01F2875BF5C7DB5AD /* Memory.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Memory.h; path = folly/Memory.h; sourceTree = "<group>"; }; + 2F3DA8AA76ADE51D1D3003EA248189DB /* RCTActivityIndicatorViewManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTActivityIndicatorViewManager.m; sourceTree = "<group>"; }; + 2F4D935444D02CED804044FDC57BFB0A /* LICENSE */ = {isa = PBXFileReference; includeInIndex = 1; path = LICENSE; sourceTree = "<group>"; }; + 2F4E70E7E6D6AC8E4EF0E3EA2D812CE8 /* BSGFileLocations.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BSGFileLocations.h; sourceTree = "<group>"; }; + 2F51571F85122C36A871BFD77D7B2544 /* react-native-cameraroll.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = "react-native-cameraroll.podspec"; sourceTree = "<group>"; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; + 2F5DE766FB60F590FAF3102CEED572C2 /* UMFaceDetectorManagerProvider.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = UMFaceDetectorManagerProvider.h; path = UMFaceDetectorInterface/UMFaceDetectorManagerProvider.h; sourceTree = "<group>"; }; + 2F749C15C850BC900B0B79B0CD423FF3 /* ReentrantAllocator.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = ReentrantAllocator.cpp; path = folly/memory/ReentrantAllocator.cpp; sourceTree = "<group>"; }; + 2F775D97AC737703F52DD8702264CAB4 /* es.lproj */ = {isa = PBXFileReference; includeInIndex = 1; name = es.lproj; path = "Objective-C/TOCropViewController/Resources/es.lproj"; sourceTree = "<group>"; }; + 2F7BE1370A2430FB08BF1653FD466761 /* FIRBundleUtil.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRBundleUtil.m; path = FirebaseCore/Sources/FIRBundleUtil.m; sourceTree = "<group>"; }; + 2F8E9524F8DDF11783626A8747AFE0AB /* Observables.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = Observables.cpp; path = yarpl/observable/Observables.cpp; sourceTree = "<group>"; }; + 2F9D16D75DC649DDF67EFB91F7E5D4B8 /* SKNetworkReporter.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SKNetworkReporter.h; path = iOS/Plugins/FlipperKitNetworkPlugin/FlipperKitNetworkPlugin/SKNetworkReporter.h; sourceTree = "<group>"; }; + 2FAD11FB3639D7AB96629AEEAFBF8316 /* BSG_KSCrashReport.c */ = {isa = PBXFileReference; includeInIndex = 1; path = BSG_KSCrashReport.c; sourceTree = "<group>"; }; + 2FD10DDCF7E386F3F6B677536D0D66A5 /* SysSyscall.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SysSyscall.h; path = folly/portability/SysSyscall.h; sourceTree = "<group>"; }; + 2FEEBF48A9227E9E99BE90D759F18FD3 /* EXPermissions-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "EXPermissions-prefix.pch"; sourceTree = "<group>"; }; + 3000FD46CAF4EBF7A223C354DAFFA0A5 /* CacheLocality.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = CacheLocality.h; path = folly/concurrency/CacheLocality.h; sourceTree = "<group>"; }; + 30125186ABE2360AECA131EE8B8E7204 /* RCTMultilineTextInputView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTMultilineTextInputView.m; sourceTree = "<group>"; }; + 301DC27601F097F53542357448F70905 /* React-perflogger-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "React-perflogger-prefix.pch"; sourceTree = "<group>"; }; + 30220F5F5960F9DC9BA06E83F1C5A86E /* PublisherBase.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = PublisherBase.cpp; path = rsocket/statemachine/PublisherBase.cpp; sourceTree = "<group>"; }; + 302FD0776486D9FEB0388127D5C51FDB /* SDGraphicsImageRenderer.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = SDGraphicsImageRenderer.m; path = SDWebImage/Core/SDGraphicsImageRenderer.m; sourceTree = "<group>"; }; + 303F643C98184E4DB34F120D81CF162A /* RCTImageEditingManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTImageEditingManager.h; path = Libraries/Image/RCTImageEditingManager.h; sourceTree = "<group>"; }; + 3040490EE2A603BE12175008A7297813 /* RNCPickerManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNCPickerManager.m; path = ios/RNCPickerManager.m; sourceTree = "<group>"; }; + 30420862A390D1AE4CC457133E60F8FA /* RNFetchBlobProgress.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNFetchBlobProgress.h; path = ios/RNFetchBlobProgress.h; sourceTree = "<group>"; }; + 3045E058279AE6D3C20DC67840145F8D /* Flipper-Folly.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "Flipper-Folly.release.xcconfig"; sourceTree = "<group>"; }; + 304AD20C70DB3E64039789A15DBB9415 /* RNBackgroundTimer.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNBackgroundTimer.h; path = ios/RNBackgroundTimer.h; sourceTree = "<group>"; }; + 304D08E37E09551099A582B49AF384FD /* React-RCTNetwork.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = "React-RCTNetwork.podspec"; sourceTree = "<group>"; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; + 30518943DE86793C6B9D17C50AAB8622 /* MemoryMapping.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = MemoryMapping.h; path = folly/system/MemoryMapping.h; sourceTree = "<group>"; }; + 305D26CFA761F37B3D47E07007EC7B10 /* RNCSafeAreaViewEdges.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNCSafeAreaViewEdges.h; path = ios/SafeAreaView/RNCSafeAreaViewEdges.h; sourceTree = "<group>"; }; + 30628451A5793A471F0D4170CFACBA3D /* FIRCLSFABNetworkClient.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRCLSFABNetworkClient.h; path = Crashlytics/Shared/FIRCLSNetworking/FIRCLSFABNetworkClient.h; sourceTree = "<group>"; }; + 306A7746A817174FB49080AC18C2D568 /* ExceptionWrapper.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = ExceptionWrapper.cpp; path = folly/ExceptionWrapper.cpp; sourceTree = "<group>"; }; + 306DDCB537058D4906C882B918F95498 /* REAFunctionNode.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = REAFunctionNode.h; sourceTree = "<group>"; }; + 3094A52BA121583689AC611C51CB128F /* Fontisto.ttf */ = {isa = PBXFileReference; includeInIndex = 1; name = Fontisto.ttf; path = Fonts/Fontisto.ttf; sourceTree = "<group>"; }; + 309E0BE21E21A829975F7887ABD3D681 /* SysMembarrier.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SysMembarrier.h; path = folly/portability/SysMembarrier.h; sourceTree = "<group>"; }; + 30AC685DA58BD7F75FE616B7EC283AF0 /* BSG_KSCrashAdvanced.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BSG_KSCrashAdvanced.h; sourceTree = "<group>"; }; + 30B57C8C502BC389EAF27871AC63A3B7 /* RCTBaseTextShadowView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTBaseTextShadowView.h; sourceTree = "<group>"; }; + 30C5EFCAA7C6CE7C31E738D159F7C9FE /* FIRCLSMachOSlice.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRCLSMachOSlice.h; path = Crashlytics/Shared/FIRCLSMachO/FIRCLSMachOSlice.h; sourceTree = "<group>"; }; + 30C6A673762960806A10E087045D8274 /* RCTAccessibilityManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTAccessibilityManager.h; path = React/CoreModules/RCTAccessibilityManager.h; sourceTree = "<group>"; }; + 30CA77D832694AC1CF14BF2AF1E5D814 /* ReactNativeUiLib.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = ReactNativeUiLib.debug.xcconfig; sourceTree = "<group>"; }; + 30EBFBFA2F08F5ABDF1FFC455ECFEC69 /* RNForceTouchHandler.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RNForceTouchHandler.m; sourceTree = "<group>"; }; + 30F4ABA56CCCA41721F8816889182B60 /* SKViewDescriptor.mm */ = {isa = PBXFileReference; includeInIndex = 1; name = SKViewDescriptor.mm; path = iOS/Plugins/FlipperKitLayoutPlugin/FlipperKitLayoutPlugin/descriptors/SKViewDescriptor.mm; sourceTree = "<group>"; }; + 311570029E232743AF9FB615A0355435 /* Fingerprint.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Fingerprint.h; path = folly/Fingerprint.h; sourceTree = "<group>"; }; + 31188DA7046C75C689C3A17C4A65B528 /* Flipper-Glog-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "Flipper-Glog-prefix.pch"; sourceTree = "<group>"; }; + 314F2B2F68329CE3B94D04E536278460 /* RSocketServerState.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RSocketServerState.h; path = rsocket/RSocketServerState.h; sourceTree = "<group>"; }; + 315831ACFBEFB820DCC00BD89DBA328D /* BugsnagReactNative.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = BugsnagReactNative.release.xcconfig; sourceTree = "<group>"; }; + 315CEFF1822B375723507C6667EAAF73 /* UnboundedBlockingQueue.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = UnboundedBlockingQueue.h; path = folly/executors/task_queue/UnboundedBlockingQueue.h; sourceTree = "<group>"; }; + 31603B8B43F1E7752E52306C178570EC /* UMFaceDetectorInterface.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = UMFaceDetectorInterface.podspec; sourceTree = "<group>"; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; + 31636AA1F5453AE72920298B25D2DE9E /* RCTJSScriptLoaderModule.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTJSScriptLoaderModule.h; sourceTree = "<group>"; }; + 31765A528D343C0F64693199139E4A7A /* CpuId.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = CpuId.h; path = folly/CpuId.h; sourceTree = "<group>"; }; 3176AB3C86C5700B205948C24DBD3022 /* Pods-defaults-Rocket.Chat.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "Pods-defaults-Rocket.Chat.debug.xcconfig"; sourceTree = "<group>"; }; - 3179E362EF619F351025752F94B9DB5B /* AsyncSocketException.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = AsyncSocketException.h; path = folly/io/async/AsyncSocketException.h; sourceTree = "<group>"; }; - 3194A8673DB4A5FEE86505230F0E1A74 /* 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 = "<group>"; }; - 319D4C18691771677FE83CCAF8807DBC /* RNCPickerManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNCPickerManager.h; path = ios/RNCPickerManager.h; sourceTree = "<group>"; }; - 31A1445D31D37F28425B528799C43F1F /* React-cxxreact.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "React-cxxreact.release.xcconfig"; sourceTree = "<group>"; }; - 31BE77BA970F0F9CE3CADED50681A14F /* bufferevent_filter.c */ = {isa = PBXFileReference; includeInIndex = 1; path = bufferevent_filter.c; sourceTree = "<group>"; }; - 31C5EC4D0F956F3425D9D0AA293684FB /* SKSearchResultNode.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SKSearchResultNode.h; path = iOS/Plugins/FlipperKitLayoutPlugin/FlipperKitLayoutPlugin/SKSearchResultNode.h; sourceTree = "<group>"; }; - 31D0FBC843D7D2564E682644B2AA4E9C /* RCTUIManagerUtils.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTUIManagerUtils.m; sourceTree = "<group>"; }; - 31D20C85F5829B2CD3A10D7F0581B896 /* Libgen.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = Libgen.cpp; path = folly/portability/Libgen.cpp; sourceTree = "<group>"; }; - 31E6E9ED526B2A75CD508972807E3085 /* RCTPackagerConnection.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTPackagerConnection.mm; sourceTree = "<group>"; }; - 31F582B92EDB6EB3FBA239D9BC06A49B /* BugsnagSession.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BugsnagSession.h; sourceTree = "<group>"; }; - 31F5A89B5ABCFC4ABDCC5D2DE0378269 /* 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 = "<group>"; }; - 31FD48A1A79697ADAB2C8ACE3EF44707 /* React-RCTLinking-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "React-RCTLinking-prefix.pch"; sourceTree = "<group>"; }; - 32049DBA956FAF95AB8A99703E214354 /* SDImageCache.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = SDImageCache.m; path = SDWebImage/Core/SDImageCache.m; sourceTree = "<group>"; }; - 320D2D9ED3CB8B62056C35DC07E096D4 /* BugsnagCrashSentry.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BugsnagCrashSentry.h; sourceTree = "<group>"; }; - 321BE554D2E363EDFEC003839ADA7C62 /* IStream.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = IStream.h; path = folly/gen/IStream.h; sourceTree = "<group>"; }; - 32393333791182EC6F342CFCF50B78E5 /* huffman_utils.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = huffman_utils.h; path = src/utils/huffman_utils.h; sourceTree = "<group>"; }; - 32423B2579BF05539AC55667519D1939 /* REATransitionAnimation.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = REATransitionAnimation.m; sourceTree = "<group>"; }; - 3243616DB85F9A421BA274E17024AB10 /* RNNotificationParser.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNNotificationParser.m; path = RNNotifications/RNNotificationParser.m; sourceTree = "<group>"; }; - 3244965E9202F6697911B38410249411 /* EXLocalAuthentication.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = EXLocalAuthentication.release.xcconfig; sourceTree = "<group>"; }; - 326ACB88DD712B9EE33D62EA47050950 /* TracingRuntime.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = TracingRuntime.h; path = destroot/include/hermes/TracingRuntime.h; sourceTree = "<group>"; }; - 328FF4DA3783FF0044814C6596A7871C /* ARTBrush.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = ARTBrush.m; sourceTree = "<group>"; }; - 329287767C04EA1A5446C112A2C80F58 /* RCTScrollView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTScrollView.m; sourceTree = "<group>"; }; - 32A022EC517F10D917BF4DBC33E5C851 /* JSBundleType.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; path = JSBundleType.cpp; sourceTree = "<group>"; }; - 32A5033B53147739415CD64E50CB0241 /* RCTSurfaceView.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTSurfaceView.mm; sourceTree = "<group>"; }; - 32C09F0FA9D8B1AFE6F4D9994E4B577C /* PicoSpinLock.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = PicoSpinLock.h; path = folly/synchronization/PicoSpinLock.h; sourceTree = "<group>"; }; - 32C94E4DC8CC970EE989EA673AF074B6 /* jsi-inl.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "jsi-inl.h"; sourceTree = "<group>"; }; - 32CA7828799A6E45E4AA667862A300B4 /* BridgeNativeModulePerfLogger.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = BridgeNativeModulePerfLogger.h; path = reactperflogger/BridgeNativeModulePerfLogger.h; sourceTree = "<group>"; }; - 32CA8CF10AFF6284DDC6E0B008D3FF2F /* IDStore.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = IDStore.m; path = ios/IDStore.m; sourceTree = "<group>"; }; - 32CFF859FF41FB0A551A8E139D688D17 /* LNInterpolable.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = LNInterpolable.m; sourceTree = "<group>"; }; - 32D1463A74A42DAEDD2840B3434A62A1 /* Peertalk.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Peertalk.h; path = peertalk/Peertalk.h; sourceTree = "<group>"; }; - 32D34E1C373307BDCED0A4343DFDA2C3 /* UMModuleRegistry.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = UMModuleRegistry.m; sourceTree = "<group>"; }; - 32D640516510CD6D98C1762D93D29598 /* KeyValueHolder.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = KeyValueHolder.cpp; path = Core/KeyValueHolder.cpp; sourceTree = "<group>"; }; - 3307140B2150CE64DA8836A94A018B22 /* changelist-internal.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "changelist-internal.h"; sourceTree = "<group>"; }; - 330CD7BDA80EE0DACB19C7498C4FDF00 /* BSG_KSFileUtils.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BSG_KSFileUtils.h; sourceTree = "<group>"; }; - 331FC717C92873188CC5A657D146E0CA /* Exception.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Exception.h; path = folly/lang/Exception.h; sourceTree = "<group>"; }; - 3345BB29570C13C9BC107CEF66202103 /* Async.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Async.h; path = folly/executors/Async.h; sourceTree = "<group>"; }; + 317C9714098DF1C7FBF145CB6AE50AFB /* ARTContainer.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ARTContainer.h; path = ios/ARTContainer.h; sourceTree = "<group>"; }; + 318129C519E42C3796085EBA02B8AE78 /* MemoryMapping.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = MemoryMapping.cpp; path = folly/system/MemoryMapping.cpp; sourceTree = "<group>"; }; + 318F5BC012C98F6683CA0DC5D00DDC39 /* ConnectionFactory.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ConnectionFactory.h; path = rsocket/ConnectionFactory.h; sourceTree = "<group>"; }; + 31AC08E94AF9F12D2554ACB6A307FA1D /* ReactNativeShareExtension.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ReactNativeShareExtension.h; path = ios/ReactNativeShareExtension.h; sourceTree = "<group>"; }; + 31B736BE7228184663AE1A86DF4C1C1F /* RCTAnimatedImage.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTAnimatedImage.m; sourceTree = "<group>"; }; + 31C40CB5C42515A2F3617A4D5DEFF3A9 /* RCTFollyConvert.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTFollyConvert.mm; sourceTree = "<group>"; }; + 31DA104A7568FEFC8319F0AD7495BE6D /* RCTSurfaceStage.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTSurfaceStage.m; sourceTree = "<group>"; }; + 31E91C55845E195172F9EC2487D1EC84 /* YGNodePrint.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = YGNodePrint.cpp; path = yoga/YGNodePrint.cpp; sourceTree = "<group>"; }; + 31EAE2348931B6712BC22A0BBBE2FEEA /* Connection.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; path = Connection.cpp; sourceTree = "<group>"; }; + 32130A5CD0076E9A8430421436D315B0 /* GoogleAppMeasurement.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = GoogleAppMeasurement.debug.xcconfig; sourceTree = "<group>"; }; + 323635FF4162DAE7E641FCD906CC1FF3 /* ThreadId.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ThreadId.h; path = folly/system/ThreadId.h; sourceTree = "<group>"; }; + 323CDB43595DA28F6122DDABBF25B75F /* utilities.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = utilities.cc; path = src/utilities.cc; sourceTree = "<group>"; }; + 32428EF17285EA0A68E148C734E1B78F /* JSBigString.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = JSBigString.h; sourceTree = "<group>"; }; + 324ED92993327E75D24EBE7F53716AA4 /* React-jsiexecutor.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "React-jsiexecutor.debug.xcconfig"; sourceTree = "<group>"; }; + 325375ABA11BC069C8DEF3907FB776BE /* RCTTiming.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTTiming.h; path = React/CoreModules/RCTTiming.h; sourceTree = "<group>"; }; + 32690E9D92F23FCA4B1ECB8AD6676232 /* JSExecutor.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; path = JSExecutor.cpp; sourceTree = "<group>"; }; + 3285BDA7D5B88ACFF734C44217A25493 /* evmap.c */ = {isa = PBXFileReference; includeInIndex = 1; path = evmap.c; sourceTree = "<group>"; }; + 3286ECC1E3DCBE4667605820D5A6FB12 /* UMSingletonModule.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = UMSingletonModule.h; path = UMCore/UMSingletonModule.h; sourceTree = "<group>"; }; + 3296480C9430B68D8799FCB88CD1C0EA /* OpenSSL.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = OpenSSL.cpp; path = folly/portability/OpenSSL.cpp; sourceTree = "<group>"; }; + 329DEB85A873E356B2446F9ECB360374 /* Singleton-inl.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "Singleton-inl.h"; path = "folly/Singleton-inl.h"; sourceTree = "<group>"; }; + 32A511EC977AD0BCB49CEA879D8A1055 /* FIRAEvent.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRAEvent.h; path = Crashlytics/Crashlytics/Helpers/FIRAEvent.h; sourceTree = "<group>"; }; + 32B61E30AFF3C40AE5D8AA81D6BFB060 /* RNNativeViewHandler.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RNNativeViewHandler.h; sourceTree = "<group>"; }; + 32B796F3911250B131614AD71A44B9F0 /* React-jsinspector-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "React-jsinspector-dummy.m"; sourceTree = "<group>"; }; + 32BF2E6349B1C33C559DEDDEFD29BB99 /* RCTRsaUtils.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RCTRsaUtils.m; path = ios/RCTCrypto/RCTRsaUtils.m; sourceTree = "<group>"; }; + 32C7CA9FEE5440BE6511B1DD5DC25A37 /* RCTSurfaceProtocol.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTSurfaceProtocol.h; sourceTree = "<group>"; }; + 32D07D9D57746C4771BB344C1387DB7A /* ScheduledRSocketResponder.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ScheduledRSocketResponder.h; path = rsocket/internal/ScheduledRSocketResponder.h; sourceTree = "<group>"; }; + 32DB37546014B6D2F539517579042611 /* UMUtilities.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = UMUtilities.m; path = UMCore/UMUtilities.m; sourceTree = "<group>"; }; + 32E3DB8EF90E3DA497528CA8E34D164C /* EXLocalAuthentication-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "EXLocalAuthentication-dummy.m"; sourceTree = "<group>"; }; + 331DFB278B4A619A11F7AA0B45220887 /* FIRInstallationsAuthTokenResultInternal.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRInstallationsAuthTokenResultInternal.h; path = FirebaseInstallations/Source/Library/FIRInstallationsAuthTokenResultInternal.h; sourceTree = "<group>"; }; + 33285BC0B5AD55172387D11630F57543 /* HHWheelTimer.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = HHWheelTimer.cpp; path = folly/io/async/HHWheelTimer.cpp; sourceTree = "<group>"; }; + 332DB231FEF514DE507C28F81E6E68C0 /* MallctlHelper.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = MallctlHelper.cpp; path = folly/memory/MallctlHelper.cpp; sourceTree = "<group>"; }; + 3336C448B999F7328D6CD6D233007F26 /* LICENSE */ = {isa = PBXFileReference; includeInIndex = 1; path = LICENSE; sourceTree = "<group>"; }; + 3343C82CEE19411C6CBD8CB3A3171548 /* SDImageCacheConfig.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SDImageCacheConfig.h; path = SDWebImage/Core/SDImageCacheConfig.h; sourceTree = "<group>"; }; 3347A1AB6546F0A3977529B8F199DC41 /* libPromisesObjC.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; name = libPromisesObjC.a; path = libPromisesObjC.a; sourceTree = BUILT_PRODUCTS_DIR; }; - 3350438F260AD1099BB622B3DD2B7478 /* FIRLibrary.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRLibrary.h; path = FirebaseCore/Sources/Private/FIRLibrary.h; sourceTree = "<group>"; }; - 3358D2CA5F4B26E8D42DF90BC66436BD /* NestedCommandLineApp.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = NestedCommandLineApp.h; path = folly/experimental/NestedCommandLineApp.h; sourceTree = "<group>"; }; - 335D89C0A9606E132F58F72559506EDF /* FBLPromise+Race.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "FBLPromise+Race.h"; path = "Sources/FBLPromises/include/FBLPromise+Race.h"; sourceTree = "<group>"; }; - 33765EF0361FC5BD317E8134536E9D59 /* logging.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = logging.h; path = src/glog/logging.h; sourceTree = "<group>"; }; - 337F59CD81DBE94A74954F4597B94B9C /* ExceptionString.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ExceptionString.h; path = folly/ExceptionString.h; sourceTree = "<group>"; }; - 338D4E099E55BDD65470E14BF5332F87 /* README.md */ = {isa = PBXFileReference; includeInIndex = 1; path = README.md; sourceTree = "<group>"; }; - 339FD1678F620533FC6D3666F36ED195 /* Base.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Base.h; path = folly/gen/Base.h; sourceTree = "<group>"; }; - 33A01B20A0E6F66087CEA56A381AD053 /* AtomicReadMostlyMainPtr.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = AtomicReadMostlyMainPtr.h; path = folly/experimental/AtomicReadMostlyMainPtr.h; sourceTree = "<group>"; }; - 33A7E941A4206E08C5B025F4C63C64D2 /* ScopeGuard.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = ScopeGuard.cpp; path = folly/ScopeGuard.cpp; sourceTree = "<group>"; }; - 33AC82FB3AC41D5507F9362E56EF96D8 /* EXWebBrowser.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = EXWebBrowser.debug.xcconfig; sourceTree = "<group>"; }; - 33B2EEF5CF6FD114264C2B7489C6CBFA /* StaticSingletonManager.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = StaticSingletonManager.cpp; path = folly/detail/StaticSingletonManager.cpp; sourceTree = "<group>"; }; - 33BC57FD8C3AF3FCF4BE94CC00476321 /* UMConstantsInterface.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = UMConstantsInterface.debug.xcconfig; sourceTree = "<group>"; }; - 33C451B5E70DB04A4D69D8018EFC491A /* RNImageCropPicker.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = RNImageCropPicker.release.xcconfig; sourceTree = "<group>"; }; - 33CA2D791B052E6E11AC901556D70981 /* raw_logging.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = raw_logging.h; path = src/glog/raw_logging.h; sourceTree = "<group>"; }; + 336739DA7EA480F64F375E08C886BC99 /* MMKVCore.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = MMKVCore.debug.xcconfig; sourceTree = "<group>"; }; + 336F27750CC524E9B7F8D86997C524DE /* FlipperKitCertificateProvider.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FlipperKitCertificateProvider.h; path = iOS/FlipperKit/FlipperKitCertificateProvider.h; sourceTree = "<group>"; }; + 3370375642DB3893F9A0FF2C4DA888DD /* CacheLocality.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = CacheLocality.cpp; path = folly/concurrency/CacheLocality.cpp; sourceTree = "<group>"; }; + 3386B029270CBF405F9F29D38FFC7ED5 /* React-jsiexecutor-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "React-jsiexecutor-dummy.m"; sourceTree = "<group>"; }; + 338E51C7292251B49D327914AB09E2FE /* FIRCLSFileManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRCLSFileManager.h; path = Crashlytics/Crashlytics/Models/FIRCLSFileManager.h; sourceTree = "<group>"; }; + 33905510EBCB8B4262AF53502D0AF47E /* FIRCLSReportUploader_Private.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRCLSReportUploader_Private.h; path = Crashlytics/Crashlytics/Controllers/FIRCLSReportUploader_Private.h; sourceTree = "<group>"; }; + 33AB3A626BC19570CCB463F5CB4624F7 /* VirtualEventBase.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = VirtualEventBase.h; path = folly/io/async/VirtualEventBase.h; sourceTree = "<group>"; }; + 33B19ADF73B1A5C1386B8D179722B428 /* RCTRedBox.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTRedBox.mm; sourceTree = "<group>"; }; + 33B24E80D660D66811180391F16DD06E /* RSocketStats.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = RSocketStats.cpp; path = rsocket/RSocketStats.cpp; sourceTree = "<group>"; }; 33CE3A123A50C02157F9260308A228EE /* Pods-defaults-RocketChatRN.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "Pods-defaults-RocketChatRN.debug.xcconfig"; sourceTree = "<group>"; }; - 33DD3E5B5A4DC8E6EF82F41A5E8D1A7D /* FIRCLSReportManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRCLSReportManager.h; path = Crashlytics/Crashlytics/Controllers/FIRCLSReportManager.h; sourceTree = "<group>"; }; - 33E0D68A84FF625B142642B4F3D770BB /* BSGUIKit.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BSGUIKit.h; sourceTree = "<group>"; }; - 33F8B614EDDB6B06EC53096D867D5B46 /* fast-dtoa.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "fast-dtoa.h"; path = "double-conversion/fast-dtoa.h"; sourceTree = "<group>"; }; - 340F84EFB61AC1E0D0E05C5702D390AE /* FFFastImageSource.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FFFastImageSource.m; path = ios/FastImage/FFFastImageSource.m; sourceTree = "<group>"; }; - 341F4134AE669A7FD76D0685541CEAAF /* FIRCLSFABNetworkClient.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRCLSFABNetworkClient.h; path = Crashlytics/Shared/FIRCLSNetworking/FIRCLSFABNetworkClient.h; sourceTree = "<group>"; }; - 343390246A60444A23488A674E808245 /* LICENSE */ = {isa = PBXFileReference; includeInIndex = 1; path = LICENSE; sourceTree = "<group>"; }; - 343B97D9EEBAB3B0515FD53C6201334A /* FIRAppInternal.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRAppInternal.h; path = FirebaseCore/Sources/Private/FIRAppInternal.h; sourceTree = "<group>"; }; - 343F5A180BBCD24462D71E00FBD98C87 /* SKTapListenerImpl.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SKTapListenerImpl.h; path = iOS/Plugins/FlipperKitLayoutPlugin/FlipperKitLayoutPlugin/SKTapListenerImpl.h; sourceTree = "<group>"; }; - 34489AAB6DBFFF119F52D9D8F28A5A0D /* FlipperPlugin.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FlipperPlugin.h; path = iOS/FlipperKit/FlipperPlugin.h; sourceTree = "<group>"; }; - 344D4B81A4B4C0FF7F5D353EC4EDC00A /* ScopedEventBaseThread.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ScopedEventBaseThread.h; path = folly/io/async/ScopedEventBaseThread.h; sourceTree = "<group>"; }; - 345FF1F313D26A85327F53FEF66D5C49 /* FFFastImageViewManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FFFastImageViewManager.h; path = ios/FastImage/FFFastImageViewManager.h; sourceTree = "<group>"; }; - 349578B9758BE83C43BA33926084D1E3 /* ExecutorWithPriority.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ExecutorWithPriority.h; path = folly/executors/ExecutorWithPriority.h; sourceTree = "<group>"; }; - 34AB1BEDE616A3B49F4EE42ECC2C6D3C /* TimerFD.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = TimerFD.h; path = folly/experimental/TimerFD.h; sourceTree = "<group>"; }; - 34AB4B3088C51FCD93965DF27C55C21E /* RCTImageStoreManager.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTImageStoreManager.mm; sourceTree = "<group>"; }; - 34B6A22FA44252C9AB9425D730AB19FD /* RCTPointerEvents.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTPointerEvents.h; sourceTree = "<group>"; }; - 34BBD5BBCA8379CE3AC869AF69F13FA2 /* RNGestureHandlerRegistry.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNGestureHandlerRegistry.m; path = ios/RNGestureHandlerRegistry.m; sourceTree = "<group>"; }; + 33D58C8349C67788E1DB40B2E56C9C5B /* React-callinvoker.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "React-callinvoker.release.xcconfig"; sourceTree = "<group>"; }; + 33DCB070BC1552B9AC0A497A56B5E840 /* BSG_KSCrashSentry_CPPException.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = BSG_KSCrashSentry_CPPException.mm; sourceTree = "<group>"; }; + 33F4C3AC574989647622392F60B874C5 /* RNCAsyncStorage.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = RNCAsyncStorage.release.xcconfig; sourceTree = "<group>"; }; + 33FF563A86EB3F4F1BB2B2C90E4917B2 /* lossless_enc_sse41.c */ = {isa = PBXFileReference; includeInIndex = 1; name = lossless_enc_sse41.c; path = src/dsp/lossless_enc_sse41.c; sourceTree = "<group>"; }; + 3409DC708CDB92D27E2192ACB8B25864 /* FBLPromise+Race.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "FBLPromise+Race.m"; path = "Sources/FBLPromises/FBLPromise+Race.m"; sourceTree = "<group>"; }; + 341C48D42D6B62F48E17C332EF16D084 /* decorator.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = decorator.h; path = destroot/include/jsi/decorator.h; sourceTree = "<group>"; }; + 3422B976058623B73B07D29CF203DFFD /* PicoSpinLock.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = PicoSpinLock.h; path = folly/synchronization/PicoSpinLock.h; sourceTree = "<group>"; }; + 3433252E366EF683263DDBDA7944D562 /* RNFBCrashlytics-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "RNFBCrashlytics-dummy.m"; sourceTree = "<group>"; }; + 343E33008B20D72CFB575CA422825FC7 /* Retrying.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Retrying.h; path = folly/futures/Retrying.h; sourceTree = "<group>"; }; + 347F47FAE5B2B7AF04BF3A6796417DD8 /* PasswordInFile.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = PasswordInFile.h; path = folly/io/async/PasswordInFile.h; sourceTree = "<group>"; }; + 348AFB8AFACAB195A75CC30BF7090541 /* RCTBundleURLProvider.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTBundleURLProvider.h; sourceTree = "<group>"; }; + 348F5FCCFC8A30D1C7893F6812C9B74C /* RNImageCropPicker.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = RNImageCropPicker.podspec; sourceTree = "<group>"; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; + 34958578C2D08BED25A9D066D85A48D7 /* IOThreadPoolExecutor.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = IOThreadPoolExecutor.cpp; path = folly/executors/IOThreadPoolExecutor.cpp; sourceTree = "<group>"; }; + 34A2A73F67A71FD934228B600D8E9854 /* encode.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = encode.h; path = src/webp/encode.h; sourceTree = "<group>"; }; + 34B6397D2A0478171396C115517087AE /* NetOps.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = NetOps.cpp; path = folly/net/NetOps.cpp; sourceTree = "<group>"; }; 34C842CD40D88AB4B2BF24FC77DA0009 /* libRNFBAnalytics.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; name = libRNFBAnalytics.a; path = libRNFBAnalytics.a; sourceTree = BUILT_PRODUCTS_DIR; }; - 34C8B1D1EEFDCEED588CE148E11B47E2 /* FIRErrors.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRErrors.m; path = FirebaseCore/Sources/FIRErrors.m; sourceTree = "<group>"; }; - 34D668980C096A561A31A2EB2F6A66BC /* SDWebImageError.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = SDWebImageError.m; path = SDWebImage/Core/SDWebImageError.m; sourceTree = "<group>"; }; - 34E97ED2E8B3D9030E0FEFDF1E0F0EA0 /* RNCMaskedView.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = RNCMaskedView.debug.xcconfig; sourceTree = "<group>"; }; - 35092844B0028488DE18CCC8D155D32B /* YGNode.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = YGNode.cpp; path = yoga/YGNode.cpp; sourceTree = "<group>"; }; - 350DD9B6FE8FD8B0CC9BC694C7DF881F /* utilities.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = utilities.cc; path = src/utilities.cc; sourceTree = "<group>"; }; - 3530B06F6C9BBE90FDCBF0F5DB4BDD03 /* FrameSerializer.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = FrameSerializer.cpp; path = rsocket/framing/FrameSerializer.cpp; sourceTree = "<group>"; }; - 3552447EDDD2011D9AD21F5EA2B9B7FF /* GlobalExecutor.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = GlobalExecutor.cpp; path = folly/executors/GlobalExecutor.cpp; sourceTree = "<group>"; }; - 3553D4C544A3BEDF55E4F169FB3755E3 /* RCTModalHostView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTModalHostView.h; sourceTree = "<group>"; }; - 3554E36A810D8574E002C2092B9121F1 /* KeyValueHolder.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = KeyValueHolder.h; path = Core/KeyValueHolder.h; sourceTree = "<group>"; }; - 355BC3442CE4ABB83B0CFA9680E8D1C1 /* YogaKit.modulemap */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.module; path = YogaKit.modulemap; sourceTree = "<group>"; }; - 355D6578FE6CE7A9FFF81C56C9A18088 /* RCTI18nUtil.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTI18nUtil.h; sourceTree = "<group>"; }; - 356DA93D46F12173410FCFE8AA805443 /* RCTImageLoaderWithAttributionProtocol.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTImageLoaderWithAttributionProtocol.h; path = Libraries/Image/RCTImageLoaderWithAttributionProtocol.h; sourceTree = "<group>"; }; - 3572364D36B575E095ED6CF97556C4E5 /* BSGFileLocations.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BSGFileLocations.h; sourceTree = "<group>"; }; - 357963FAA9DC468CA01E17439E7FDD5D /* BSG_KSSystemInfo.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = BSG_KSSystemInfo.m; sourceTree = "<group>"; }; - 358EE261026F11C402B0460DCA40BD33 /* OpenSSLThreading.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = OpenSSLThreading.cpp; path = folly/ssl/detail/OpenSSLThreading.cpp; sourceTree = "<group>"; }; - 3598CD9163C8A620F21EE26D2D077183 /* advancedIos.md */ = {isa = PBXFileReference; includeInIndex = 1; name = advancedIos.md; path = docs/advancedIos.md; sourceTree = "<group>"; }; - 35B7D5020B6E5BA9A2FE52CC9AE126AD /* RCTBackedTextInputDelegateAdapter.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTBackedTextInputDelegateAdapter.h; sourceTree = "<group>"; }; - 35B92DD54E7AC89C7BAF3A9792630E8D /* zh-Hans.lproj */ = {isa = PBXFileReference; includeInIndex = 1; name = "zh-Hans.lproj"; path = "Objective-C/TOCropViewController/Resources/zh-Hans.lproj"; sourceTree = "<group>"; }; - 35C462873D8556B83C39A330E577312B /* RCTSafeAreaViewManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTSafeAreaViewManager.h; sourceTree = "<group>"; }; - 35D047C1E86408DCC29C1953F2CF1AC9 /* strtod.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = strtod.h; path = "double-conversion/strtod.h"; sourceTree = "<group>"; }; - 35D9EBB8F22D3DE7D5E65D8D66CBAADC /* QBAlbumsViewController.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = QBAlbumsViewController.m; path = ios/QBImagePicker/QBImagePicker/QBAlbumsViewController.m; sourceTree = "<group>"; }; - 35E8349DDFB19341CFB6AF34F3E9C974 /* UMReactFontManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = UMReactFontManager.m; sourceTree = "<group>"; }; - 35EE45AAA32375675BA4E409CE39608C /* common_sse41.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = common_sse41.h; path = src/dsp/common_sse41.h; sourceTree = "<group>"; }; - 3603C8C324489767CDF0E94A5AEFAAC5 /* Log.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Log.h; path = xplat/Flipper/Log.h; sourceTree = "<group>"; }; - 361B3EAC5B4BA385FD118F17A9B0D62E /* SysFile.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SysFile.h; path = folly/portability/SysFile.h; sourceTree = "<group>"; }; - 363933C9D4336A82E96B622D5B760E34 /* sorted_vector_types.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = sorted_vector_types.h; path = folly/sorted_vector_types.h; sourceTree = "<group>"; }; - 3653433E05093D7DD292F6CF1840A064 /* RCTDevSettings.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTDevSettings.h; path = React/CoreModules/RCTDevSettings.h; sourceTree = "<group>"; }; - 36565EF649A1D1CC9CC7CB756E6298A9 /* String.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = String.h; path = folly/portability/String.h; sourceTree = "<group>"; }; - 365DCA14B065A771C6DEA582FB1A0EF1 /* LNInterpolation.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = LNInterpolation.h; sourceTree = "<group>"; }; - 3663947E78F78F183D279D27C650548D /* HeterogeneousAccess.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = HeterogeneousAccess.h; path = folly/container/HeterogeneousAccess.h; sourceTree = "<group>"; }; - 3675C963C782F3ECF1D355995424942C /* Subscription.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = Subscription.cpp; path = yarpl/flowable/Subscription.cpp; sourceTree = "<group>"; }; - 36C2D4F83741C5DF31ACE32DA45B4D33 /* FIRCLSRecordBase.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRCLSRecordBase.m; path = Crashlytics/Crashlytics/Models/Record/FIRCLSRecordBase.m; sourceTree = "<group>"; }; - 36C8AD4B44F8CE0B2A2E431FE0F6C235 /* RNBootSplash-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "RNBootSplash-prefix.pch"; sourceTree = "<group>"; }; - 36E4866295DA29143E64F3AADB213048 /* Windows.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Windows.h; path = folly/portability/Windows.h; sourceTree = "<group>"; }; - 36ECDE525D4C7376F5E88469F9AA0F0E /* ErrorUtils.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = ErrorUtils.h; sourceTree = "<group>"; }; - 36F2F210CB0253245C2C4717A0A78D78 /* UMCore.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = UMCore.podspec; sourceTree = "<group>"; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; - 36FB2386D2E70E78CC8780D01AEE8E72 /* TimeoutQueue.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = TimeoutQueue.h; path = folly/TimeoutQueue.h; sourceTree = "<group>"; }; - 37027DF918D6FE52D89F88CB601858ED /* RCTSegmentedControl.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTSegmentedControl.m; sourceTree = "<group>"; }; - 3714F374E87928906502C9E5AF26AEBF /* alphai_dec.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = alphai_dec.h; path = src/dec/alphai_dec.h; sourceTree = "<group>"; }; - 372D48682B9E2DF058C7841B584D9BC1 /* ARTShape.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ARTShape.h; path = ios/ARTShape.h; sourceTree = "<group>"; }; - 3737F11E4FA8A02C2FB84B43465555B1 /* StringKeyedUnorderedMap.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = StringKeyedUnorderedMap.h; path = folly/experimental/StringKeyedUnorderedMap.h; sourceTree = "<group>"; }; - 374704F57732D2F851254C648CA148F2 /* FIRAnalyticsInterop.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRAnalyticsInterop.h; path = Interop/Analytics/Public/FIRAnalyticsInterop.h; sourceTree = "<group>"; }; - 3747165E54B4A958F377DCBB8451B514 /* LICENSE */ = {isa = PBXFileReference; includeInIndex = 1; path = LICENSE; sourceTree = "<group>"; }; - 3751C8EE9A818AABDBD2B0660FC9FF6E /* SKApplicationDescriptor.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = SKApplicationDescriptor.m; path = iOS/Plugins/FlipperKitLayoutPlugin/FlipperKitLayoutPlugin/descriptors/SKApplicationDescriptor.m; sourceTree = "<group>"; }; - 3756EE7F1DFB6475A746872E741191EA /* CheckedMath.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = CheckedMath.h; path = folly/lang/CheckedMath.h; sourceTree = "<group>"; }; + 34DD9A2B9267BAB868DE6445E96973FC /* ScheduledSubscriber.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ScheduledSubscriber.h; path = rsocket/internal/ScheduledSubscriber.h; sourceTree = "<group>"; }; + 34EF63733361F1327546C2888C2E39EE /* common_sse2.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = common_sse2.h; path = src/dsp/common_sse2.h; sourceTree = "<group>"; }; + 34F2A49096DA03691B06EB432BFDD8DD /* AtomicUtils.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = AtomicUtils.h; path = folly/synchronization/detail/AtomicUtils.h; sourceTree = "<group>"; }; + 34F495AEC35C641A75B111FEC3FBA89F /* RSocketTransport.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RSocketTransport.h; path = rsocket/transports/RSocketTransport.h; sourceTree = "<group>"; }; + 34F9127BCE6091F21F68E4A6CA5D2BE6 /* Iterators.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Iterators.h; path = folly/detail/Iterators.h; sourceTree = "<group>"; }; + 3501DA511E7F1F06AA9B6AF247B17A64 /* RCTSettingsPlugins.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTSettingsPlugins.mm; sourceTree = "<group>"; }; + 3517D861B595A7821184640F0BE4490D /* GDTCORConsoleLogger.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = GDTCORConsoleLogger.m; path = GoogleDataTransport/GDTCORLibrary/GDTCORConsoleLogger.m; sourceTree = "<group>"; }; + 35200401D9A9A266DED2D8F5DAEA0733 /* RCTNullability.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTNullability.h; sourceTree = "<group>"; }; + 3540FCF67A82DAF44F7386E90D5EA3DD /* openssl_aes_core.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = openssl_aes_core.cpp; path = Core/aes/openssl/openssl_aes_core.cpp; sourceTree = "<group>"; }; + 3543984759986161C90E987C74DB347E /* GDTCORAssert.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = GDTCORAssert.h; path = GoogleDataTransport/GDTCORLibrary/Public/GoogleDataTransport/GDTCORAssert.h; sourceTree = "<group>"; }; + 354A1ABA776921DDC4A04874C756A010 /* JsArgumentHelpers.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = JsArgumentHelpers.h; sourceTree = "<group>"; }; + 3564137E5147D08FEB10AA993954079C /* RCTModalManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTModalManager.h; sourceTree = "<group>"; }; + 356AFA8260E0E76E520958A7EA66580A /* RNNotificationCenterMulticast.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNNotificationCenterMulticast.m; path = RNNotifications/RNNotificationCenterMulticast.m; sourceTree = "<group>"; }; + 3577215D16A392470FA31E62AB5B8636 /* RCTKeyCommands.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTKeyCommands.m; sourceTree = "<group>"; }; + 357F2C617D5EA562E3B1F7260E66B9DE /* Combine.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Combine.h; path = folly/gen/Combine.h; sourceTree = "<group>"; }; + 35A9D47A4ABC348BC5E30791D60A4626 /* MMKVStorage.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = MMKVStorage.m; path = ios/MMKVStorage.m; sourceTree = "<group>"; }; + 35AC0007576C1B8B1DF8D900E25E8C0F /* RCTPackagerClient.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTPackagerClient.m; sourceTree = "<group>"; }; + 35C32ECC9FF89242B7948ACB3158C6F3 /* Fcntl.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = Fcntl.cpp; path = folly/portability/Fcntl.cpp; sourceTree = "<group>"; }; + 35CD78A9470AC3A88A6635AE40C0BCB8 /* BugsnagSessionFileStore.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = BugsnagSessionFileStore.m; sourceTree = "<group>"; }; + 35FAB482F279313494EED38443F620EA /* FIRComponentType.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRComponentType.h; path = FirebaseCore/Sources/Private/FIRComponentType.h; sourceTree = "<group>"; }; + 360304384D9ED295F63EF9BF36F487FF /* frame_dec.c */ = {isa = PBXFileReference; includeInIndex = 1; name = frame_dec.c; path = src/dec/frame_dec.c; sourceTree = "<group>"; }; + 36101CE4DF5445830E80F949F70A8DAF /* libevent.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = libevent.debug.xcconfig; sourceTree = "<group>"; }; + 362EA64A455CD739D1727CF7EFF2B293 /* TurboModuleUtils.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = TurboModuleUtils.h; sourceTree = "<group>"; }; + 362F9EB68924126BE0D0F262A660BA2A /* SysMman.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SysMman.h; path = folly/portability/SysMman.h; sourceTree = "<group>"; }; + 363175F68603475AA6CB0DAAABEA31E0 /* RCTAppearance.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTAppearance.h; path = React/CoreModules/RCTAppearance.h; sourceTree = "<group>"; }; + 363995549CDE4BAF8C851D1A1A635AA9 /* RCTAlertController.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTAlertController.h; path = React/CoreModules/RCTAlertController.h; sourceTree = "<group>"; }; + 364C2803525F975265D60D53D6CC2953 /* SysResource.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SysResource.h; path = folly/portability/SysResource.h; sourceTree = "<group>"; }; + 365F6248EFAB0F26FD9478F18205D2FA /* REASetNode.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = REASetNode.m; sourceTree = "<group>"; }; + 367428339A7DC5646DB19BBBF30E151F /* FIRCoreDiagnostics.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRCoreDiagnostics.m; path = Firebase/CoreDiagnostics/FIRCDLibrary/FIRCoreDiagnostics.m; sourceTree = "<group>"; }; + 367C1203029972C23E13878D72E68E00 /* AtomicHashArray.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = AtomicHashArray.h; path = folly/AtomicHashArray.h; sourceTree = "<group>"; }; + 36985CC41AD668DDCE8329112FDF0E03 /* ScheduledExecutor.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ScheduledExecutor.h; path = folly/executors/ScheduledExecutor.h; sourceTree = "<group>"; }; + 369A28EC323090477F1FBA5CFEA5C82F /* React-cxxreact.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "React-cxxreact.debug.xcconfig"; sourceTree = "<group>"; }; + 36B43E04C192429200B971BCA766EE2B /* Subscription.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = Subscription.cpp; path = yarpl/flowable/Subscription.cpp; sourceTree = "<group>"; }; + 36B788886CC8AAF191D4241DB1468F25 /* GULSceneDelegateSwizzler.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = GULSceneDelegateSwizzler.h; path = GoogleUtilities/SceneDelegateSwizzler/Private/GULSceneDelegateSwizzler.h; sourceTree = "<group>"; }; + 36D3CFDA98ACA08DE6FF19AA4F97C253 /* FIRCoreDiagnosticsConnector.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRCoreDiagnosticsConnector.m; path = FirebaseCore/Sources/FIRCoreDiagnosticsConnector.m; sourceTree = "<group>"; }; + 36E080E87D3AF4CEF4FC646D0B1AB76A /* EXConstants-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "EXConstants-dummy.m"; sourceTree = "<group>"; }; + 36E33025A93A8F3CBAB69B0E2F19467F /* LICENSE */ = {isa = PBXFileReference; includeInIndex = 1; path = LICENSE; sourceTree = "<group>"; }; + 36E8A935AC2A9674CE52AF4766B650DC /* LICENSE */ = {isa = PBXFileReference; includeInIndex = 1; path = LICENSE; sourceTree = "<group>"; }; + 3705FBCFDBB7F944A902443BDF43ADFD /* Util.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Util.h; path = folly/container/detail/Util.h; sourceTree = "<group>"; }; + 37143F1C896D1FFE32C7DC1480F6F0A7 /* Enumerate.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Enumerate.h; path = folly/container/Enumerate.h; sourceTree = "<group>"; }; + 3756272A35EDD26FBF5BB28751ED866A /* YGFloatOptional.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = YGFloatOptional.h; path = yoga/YGFloatOptional.h; sourceTree = "<group>"; }; 37592FDAD45752511010F4B06AC57355 /* libReact-cxxreact.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; name = "libReact-cxxreact.a"; path = "libReact-cxxreact.a"; sourceTree = BUILT_PRODUCTS_DIR; }; - 377BE4B8159107B85112FCCFD2D2BB97 /* FirebaseCoreDiagnostics.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = FirebaseCoreDiagnostics.release.xcconfig; sourceTree = "<group>"; }; - 3791BF953E422EA15E7E7944B8F4CA24 /* RSocketResponder.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RSocketResponder.h; path = rsocket/RSocketResponder.h; sourceTree = "<group>"; }; - 37920939AB5D980EE983073A8D803CDA /* OpenSSLThreading.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = OpenSSLThreading.h; path = folly/ssl/detail/OpenSSLThreading.h; sourceTree = "<group>"; }; - 37988D45D75D810E145A28997B557A81 /* Frame.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Frame.h; path = rsocket/framing/Frame.h; sourceTree = "<group>"; }; - 379AAF32EBE1F942AD81C1C42FA1E080 /* RCTImageEditingManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTImageEditingManager.h; path = Libraries/Image/RCTImageEditingManager.h; sourceTree = "<group>"; }; - 37A59588AB9E695C969A7A078928DA45 /* Fcntl.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Fcntl.h; path = folly/portability/Fcntl.h; sourceTree = "<group>"; }; - 37A7CDF7E561955A0C02FCF2279AB34E /* README.md */ = {isa = PBXFileReference; includeInIndex = 1; path = README.md; sourceTree = "<group>"; }; - 37B0BD899FBA992E7DEE922392E39845 /* RNFastImage-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "RNFastImage-prefix.pch"; sourceTree = "<group>"; }; - 37BC4DD8E2155A8B4DB3B8EB9AB6022C /* RCTNativeAnimatedModule.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTNativeAnimatedModule.h; path = Libraries/NativeAnimation/RCTNativeAnimatedModule.h; sourceTree = "<group>"; }; - 37BED821BCAC65D707441E38B19A810D /* Baton.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Baton.h; path = folly/synchronization/Baton.h; sourceTree = "<group>"; }; - 37CC656B732014A6AD8CB3244611BEEB /* BugsnagUser.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BugsnagUser.h; sourceTree = "<group>"; }; - 37E3F2AB320DD034E64B19E8A465385D /* Hardware.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Hardware.h; path = folly/chrono/Hardware.h; sourceTree = "<group>"; }; - 37E86C5D337B57126E07CA772629577A /* FIRComponent.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRComponent.h; path = FirebaseCore/Sources/Private/FIRComponent.h; sourceTree = "<group>"; }; - 37E96A7AD6E875A29E6DCE288196CCA0 /* RCTTextAttributes.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTTextAttributes.m; sourceTree = "<group>"; }; - 37ED6C8E5748E3D977D1C2577627B96E /* Indestructible.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Indestructible.h; path = folly/Indestructible.h; sourceTree = "<group>"; }; - 37F4A35654D7581640A4041759FD1C2B /* ConnectionSet.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ConnectionSet.h; path = rsocket/internal/ConnectionSet.h; sourceTree = "<group>"; }; - 38258EDC2ECDB25B79EB77612803051E /* MacAddress.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = MacAddress.cpp; path = folly/MacAddress.cpp; sourceTree = "<group>"; }; - 38566BD58F1A1BD25F8A4793D6740999 /* UMReactNativeEventEmitter.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = UMReactNativeEventEmitter.h; sourceTree = "<group>"; }; - 3856A7B799D915322E5F6E56FB2ED6E1 /* Sockets.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Sockets.h; path = folly/portability/Sockets.h; sourceTree = "<group>"; }; - 386A37173A1941791DC8E94F369E85DF /* AtomicNotification.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = AtomicNotification.cpp; path = folly/synchronization/AtomicNotification.cpp; sourceTree = "<group>"; }; - 3887EC7543C5FB4AF86290527D48BD28 /* ExceptionWrapper-inl.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "ExceptionWrapper-inl.h"; path = "folly/ExceptionWrapper-inl.h"; sourceTree = "<group>"; }; - 389CD7741351AB924E728EC4798FC86B /* RNNotificationCenter.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNNotificationCenter.h; path = RNNotifications/RNNotificationCenter.h; sourceTree = "<group>"; }; - 389CFC3E4D576AC52BDAAC552137FFF1 /* EvictingCacheMap.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = EvictingCacheMap.h; path = folly/container/EvictingCacheMap.h; sourceTree = "<group>"; }; - 38BBE2CA9186650AFBC919E763904BBD /* Atomic.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Atomic.h; path = folly/portability/Atomic.h; sourceTree = "<group>"; }; - 38C5A3D20CC6919B029171559FD2EDEB /* RangeCommon.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RangeCommon.h; path = folly/detail/RangeCommon.h; sourceTree = "<group>"; }; - 38DBC4FE53A7D3A0516B8339987659B6 /* FIRInstallationsStore.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRInstallationsStore.m; path = FirebaseInstallations/Source/Library/InstallationsStore/FIRInstallationsStore.m; sourceTree = "<group>"; }; - 38DE4B91225B3BFBA01EE2221CA2B29E /* RNCAppearanceProviderManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNCAppearanceProviderManager.h; path = ios/Appearance/RNCAppearanceProviderManager.h; sourceTree = "<group>"; }; - 38E1632332F89B9EB75BFF0DB62BFA66 /* CodedOutputData.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = CodedOutputData.h; path = Core/CodedOutputData.h; sourceTree = "<group>"; }; - 38EBC25C4EA7FD49EB95B1FDD35C5B50 /* GDTCOREventDataObject.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = GDTCOREventDataObject.h; path = GoogleDataTransport/GDTCORLibrary/Public/GDTCOREventDataObject.h; sourceTree = "<group>"; }; - 38EEC9DFD8C2803A99DE518F66CAE9DD /* SysStat.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = SysStat.cpp; path = folly/portability/SysStat.cpp; sourceTree = "<group>"; }; - 38F5C29B8BABB356CD6F46011DAFE915 /* FIRCLSCompoundOperation.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRCLSCompoundOperation.h; path = Crashlytics/Shared/FIRCLSOperation/FIRCLSCompoundOperation.h; sourceTree = "<group>"; }; - 39209F2A8F1496454A4AE88A288F0C42 /* AsyncTrace.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = AsyncTrace.cpp; path = folly/detail/AsyncTrace.cpp; sourceTree = "<group>"; }; - 39305B4A5D50A8905FE3337AF9BCC606 /* bufferevent_ratelim.c */ = {isa = PBXFileReference; includeInIndex = 1; path = bufferevent_ratelim.c; sourceTree = "<group>"; }; - 393CE8EC718597E11A7CEECF30F7B927 /* Invoke.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Invoke.h; path = folly/functional/Invoke.h; sourceTree = "<group>"; }; - 394476E4469983424DC3D7A08FF9FD34 /* React-jsinspector-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "React-jsinspector-prefix.pch"; sourceTree = "<group>"; }; - 39494CE5C6E65BE2867714886194D196 /* RNCWebView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNCWebView.h; path = apple/RNCWebView.h; sourceTree = "<group>"; }; - 3951C11FDC3F933B2738237DE4204F58 /* FBLPromise+All.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "FBLPromise+All.m"; path = "Sources/FBLPromises/FBLPromise+All.m"; sourceTree = "<group>"; }; - 3951F28E64B23BE8624297CEEC5690AE /* React-RCTAnimation.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = "React-RCTAnimation.podspec"; sourceTree = "<group>"; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; - 39558BEC676CF0090DC6F863F28DCF08 /* AtomicRef.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = AtomicRef.h; path = folly/synchronization/AtomicRef.h; sourceTree = "<group>"; }; - 3956A43D3DF53657C5F1C8AB141FCA72 /* Thread.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; path = Thread.cpp; sourceTree = "<group>"; }; - 395A42BD9767360C5A6BF5EB5CDB1A2E /* RCTMultilineTextInputViewManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTMultilineTextInputViewManager.h; sourceTree = "<group>"; }; - 398D18514E2FEAC75960BF69A0DCC236 /* EXSessionTaskDispatcher.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = EXSessionTaskDispatcher.h; sourceTree = "<group>"; }; - 3991D9E8935C272F2BEBD8F363AF3305 /* RCTComponent.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTComponent.h; sourceTree = "<group>"; }; - 3996EDD823280D882ED08A7C542F9AD8 /* UMAppLoaderInterface.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = UMAppLoaderInterface.h; sourceTree = "<group>"; }; - 39A87EC33C3AE727827CE0318565876B /* FIRCLSThreadArrayOperation.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRCLSThreadArrayOperation.m; path = Crashlytics/Crashlytics/Operations/Symbolication/FIRCLSThreadArrayOperation.m; sourceTree = "<group>"; }; - 39AE4BCE95194D82309404D0B73449CD /* SKButtonDescriptor.mm */ = {isa = PBXFileReference; includeInIndex = 1; name = SKButtonDescriptor.mm; path = iOS/Plugins/FlipperKitLayoutPlugin/FlipperKitLayoutPlugin/descriptors/SKButtonDescriptor.mm; sourceTree = "<group>"; }; - 39CC6CCD7E3BAB1F4F89F8E146204926 /* React-CoreModules-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "React-CoreModules-prefix.pch"; sourceTree = "<group>"; }; - 39D1EEAFC914D6FEA74E28CDC4075CB6 /* Iterator.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Iterator.h; path = folly/container/Iterator.h; sourceTree = "<group>"; }; - 3A01F89A0B9A22D8CBF6CF6A3DB222EB /* UMReactNativeAdapter.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = UMReactNativeAdapter.debug.xcconfig; sourceTree = "<group>"; }; - 3A0ABE66A02A244D2459E1093B2CB640 /* openssl_md5_one.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = openssl_md5_one.cpp; path = Core/aes/openssl/openssl_md5_one.cpp; sourceTree = "<group>"; }; - 3A11F134BC882C7D27091A2C96946962 /* EventCount.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = EventCount.h; path = folly/experimental/EventCount.h; sourceTree = "<group>"; }; - 3A22E60D5FD59C685BF2A17BFE1C94FB /* IPAddressSource.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = IPAddressSource.h; path = folly/detail/IPAddressSource.h; sourceTree = "<group>"; }; - 3A45D48E274BFCE3C858D392D9F949CA /* RCTInspectorDevServerHelper.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTInspectorDevServerHelper.mm; sourceTree = "<group>"; }; - 3A4BB6035141C108E1A0BA59217CE37D /* SSLSessionImpl.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = SSLSessionImpl.cpp; path = folly/ssl/detail/SSLSessionImpl.cpp; sourceTree = "<group>"; }; - 3A519F6518C260D0FF48E82C2A8808A4 /* FIRComponentType.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRComponentType.h; path = FirebaseCore/Sources/Private/FIRComponentType.h; sourceTree = "<group>"; }; - 3A77F6EE9A506C325B1356B3440C8FF4 /* Partial.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Partial.h; path = folly/functional/Partial.h; sourceTree = "<group>"; }; - 3A7FDCF8B52F0218F9B22DA685FFF3FD /* RequestResponseRequester.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RequestResponseRequester.h; path = rsocket/statemachine/RequestResponseRequester.h; sourceTree = "<group>"; }; - 3A8CCCBE73A3BFD287D74C0DFBF7B010 /* SKRequestInfo.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SKRequestInfo.h; path = iOS/Plugins/FlipperKitNetworkPlugin/FlipperKitNetworkPlugin/SKRequestInfo.h; sourceTree = "<group>"; }; - 3AC7AC6810C2996CF21B58F57C3F54A4 /* GULMutableDictionary.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = GULMutableDictionary.h; path = GoogleUtilities/Network/Private/GULMutableDictionary.h; sourceTree = "<group>"; }; - 3ADA24494E344DDAD822C6DA6B4EF030 /* GULAppEnvironmentUtil.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = GULAppEnvironmentUtil.h; path = GoogleUtilities/Environment/Private/GULAppEnvironmentUtil.h; sourceTree = "<group>"; }; - 3AE56CA7AC8987C48F156489C4059B75 /* Expected.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Expected.h; path = folly/Expected.h; sourceTree = "<group>"; }; + 3762E3B29377E579A751F5120DD12953 /* RNVectorIconsManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNVectorIconsManager.m; path = RNVectorIconsManager/RNVectorIconsManager.m; sourceTree = "<group>"; }; + 376ACBDF21AB0C3BBDE0DD89175DC3E0 /* EXResumablesManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = EXResumablesManager.m; sourceTree = "<group>"; }; + 377A48B2A92799CCD1E91FA5AD338D71 /* AsyncTrace.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = AsyncTrace.cpp; path = folly/detail/AsyncTrace.cpp; sourceTree = "<group>"; }; + 37A4167B681C5908715BE2EF07DB3E07 /* SerialExecutor.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; path = SerialExecutor.cpp; sourceTree = "<group>"; }; + 37AA5C97E3144FC649F744AF6B84F357 /* ThreadPoolExecutor.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ThreadPoolExecutor.h; path = folly/executors/ThreadPoolExecutor.h; sourceTree = "<group>"; }; + 37AF08B609587CF2F2B7DFE083728C9F /* PolyException.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = PolyException.h; path = folly/PolyException.h; sourceTree = "<group>"; }; + 37C33F9E7D8C6775F654ED75C1DCFDC2 /* QBImagePickerController.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = QBImagePickerController.m; path = ios/QBImagePicker/QBImagePicker/QBImagePickerController.m; sourceTree = "<group>"; }; + 37C77CA46347FF94A942F9303102B26B /* REAValueNode.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = REAValueNode.m; sourceTree = "<group>"; }; + 37D1DA9BD315177B54A3275E67C48CA5 /* Flipper-Glog.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "Flipper-Glog.release.xcconfig"; sourceTree = "<group>"; }; + 37D8C5D5EA643CB40090F93E9DDA784C /* EXPermissions.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = EXPermissions.release.xcconfig; sourceTree = "<group>"; }; + 37F1C18A4491901D5F5CB3B40424AC9C /* react-native-background-timer-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "react-native-background-timer-dummy.m"; sourceTree = "<group>"; }; + 380D7607FB8910E25D6677BF663DA183 /* SingletonThreadLocal.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SingletonThreadLocal.h; path = folly/SingletonThreadLocal.h; sourceTree = "<group>"; }; + 382DCC36D2825C4806820091A9714389 /* Base-inl.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "Base-inl.h"; path = "folly/gen/Base-inl.h"; sourceTree = "<group>"; }; + 382F713E7632721E001DE0D7ACC15E76 /* YogaKit-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "YogaKit-dummy.m"; sourceTree = "<group>"; }; + 383A409A66564C64FE913D4CB97EE88B /* CancellationToken-inl.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "CancellationToken-inl.h"; path = "folly/CancellationToken-inl.h"; sourceTree = "<group>"; }; + 384C06A2B9A27CF81DC9A1905DE991C0 /* GTest.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = GTest.h; path = folly/portability/GTest.h; sourceTree = "<group>"; }; + 384D2FF8B4103353957B2ED78E7C289D /* RCTProgressViewManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTProgressViewManager.h; sourceTree = "<group>"; }; + 384F0859719D9843F7C7FA76F0EA926F /* SDWebImageDefine.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SDWebImageDefine.h; path = SDWebImage/Core/SDWebImageDefine.h; sourceTree = "<group>"; }; + 384F32B626CC9119D4D53C79667AE863 /* huffman_encode_utils.c */ = {isa = PBXFileReference; includeInIndex = 1; name = huffman_encode_utils.c; path = src/utils/huffman_encode_utils.c; sourceTree = "<group>"; }; + 386722BED83FD2DE5F55C3152AE9E11E /* DoubleConversion-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "DoubleConversion-dummy.m"; sourceTree = "<group>"; }; + 3873885FDE6C533F17175B3E4CDA9ED0 /* BSG_KSCrashSentry_Signal.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BSG_KSCrashSentry_Signal.h; sourceTree = "<group>"; }; + 3888B2071722F74F671F41E63C402946 /* ThreadCachedInt.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ThreadCachedInt.h; path = folly/ThreadCachedInt.h; sourceTree = "<group>"; }; + 389FB89D8950DA7F5B9FFE5CED0B4CCA /* evdns.c */ = {isa = PBXFileReference; includeInIndex = 1; path = evdns.c; sourceTree = "<group>"; }; + 38A853DDE5DCB11FF4723E6DE75A82E9 /* ResourceBundle-TOCropViewControllerBundle-TOCropViewController-Info.plist */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.plist.xml; path = "ResourceBundle-TOCropViewControllerBundle-TOCropViewController-Info.plist"; sourceTree = "<group>"; }; + 38B02FD349B5891A324F2AA5DDF558C1 /* Core.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Core.h; path = folly/futures/detail/Core.h; sourceTree = "<group>"; }; + 38C183BA2BFB15963EB1545439905DC3 /* EventFDWrapper.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = EventFDWrapper.h; path = folly/io/async/EventFDWrapper.h; sourceTree = "<group>"; }; + 38C62E45BB1E52F02B094FCF21E47B42 /* ResourceBundle-AccessibilityResources-React-Core-Info.plist */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.plist.xml; path = "ResourceBundle-AccessibilityResources-React-Core-Info.plist"; sourceTree = "<group>"; }; + 38C9EAA978FFE12645C073012B9D3100 /* BugsnagSessionTracker+Private.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "BugsnagSessionTracker+Private.h"; sourceTree = "<group>"; }; + 38E8AA73BA78784B368978C9A1A16C35 /* FIRCLSMachO.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRCLSMachO.h; path = Crashlytics/Shared/FIRCLSMachO/FIRCLSMachO.h; sourceTree = "<group>"; }; + 38EB86AFE8670A463FA6BD943A58F830 /* NotificationQueue.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = NotificationQueue.h; path = folly/io/async/NotificationQueue.h; sourceTree = "<group>"; }; + 3911516156577DF9C5F5A3685066EC74 /* react-native-background-timer.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "react-native-background-timer.release.xcconfig"; sourceTree = "<group>"; }; + 39155CA8E4BB22686EC036947E746C55 /* SafeAreaSpacerShadowView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = SafeAreaSpacerShadowView.h; sourceTree = "<group>"; }; + 392D8A7E2F4366764C7D4CB28AD08701 /* pt.lproj */ = {isa = PBXFileReference; includeInIndex = 1; name = pt.lproj; path = "Objective-C/TOCropViewController/Resources/pt.lproj"; sourceTree = "<group>"; }; + 39301F5459E0347C51FCA5F3BCADC1D5 /* README.md */ = {isa = PBXFileReference; includeInIndex = 1; path = README.md; sourceTree = "<group>"; }; + 3934E42C240DA3063BD1AC4EF695CEA4 /* json_pointer.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = json_pointer.h; path = folly/json_pointer.h; sourceTree = "<group>"; }; + 3935CBDBB3CD2F18129715691E122F96 /* README.md */ = {isa = PBXFileReference; includeInIndex = 1; path = README.md; sourceTree = "<group>"; }; + 39405A7559E4A2177D7CDBD659A12B11 /* RCTImageSource.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTImageSource.m; sourceTree = "<group>"; }; + 394A0563D9AB83E34C06264713A58147 /* ThreadLocal.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ThreadLocal.h; path = folly/ThreadLocal.h; sourceTree = "<group>"; }; + 39514F362C2622FBF4F9344250F93731 /* FIRCLSCompactUnwind.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRCLSCompactUnwind.h; path = Crashlytics/Crashlytics/Unwind/Compact/FIRCLSCompactUnwind.h; sourceTree = "<group>"; }; + 3963CCCFD49EB7D7F53CB7B0F98ECB5A /* SharedMutex.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = SharedMutex.cpp; path = folly/SharedMutex.cpp; sourceTree = "<group>"; }; + 397D7F76A2BFD0A62919AD6CC7C2AFFF /* RCTUIManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTUIManager.m; sourceTree = "<group>"; }; + 397D96EA496FBA592A8F15664A9ED2B6 /* RCTResizeMode.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTResizeMode.h; path = Libraries/Image/RCTResizeMode.h; sourceTree = "<group>"; }; + 399F40879EB7B6DD4E1C219C77A1EE6A /* EXAV-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "EXAV-dummy.m"; sourceTree = "<group>"; }; + 39B668AB0A8435B8130D7C1AFEA1860E /* RCTFPSGraph.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTFPSGraph.h; path = React/CoreModules/RCTFPSGraph.h; sourceTree = "<group>"; }; + 39B6983CEE0953921275D4300F5F65F7 /* FixedString.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FixedString.h; path = folly/FixedString.h; sourceTree = "<group>"; }; + 39C23166B3FD9C8FD9DE9B453CC1112E /* RNGestureHandlerRegistry.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNGestureHandlerRegistry.h; path = ios/RNGestureHandlerRegistry.h; sourceTree = "<group>"; }; + 39C8B8AB0A93F88E925A4908467DAFB3 /* TLRefCount.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = TLRefCount.h; path = folly/experimental/TLRefCount.h; sourceTree = "<group>"; }; + 39E7ED39D164073BB296073CBD61160F /* FlipperKit.modulemap */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.module; path = FlipperKit.modulemap; sourceTree = "<group>"; }; + 39ECD4C57ED03D5E00EC9938C3BA9138 /* ARTSurfaceView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ARTSurfaceView.h; path = ios/ARTSurfaceView.h; sourceTree = "<group>"; }; + 39F0853AEF38A62339D708F14331F8F1 /* AtomicStruct.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = AtomicStruct.h; path = folly/synchronization/AtomicStruct.h; sourceTree = "<group>"; }; + 39F32567CACF1FECCE5A668745D14D17 /* RNFBMeta.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNFBMeta.m; path = ios/RNFBApp/RNFBMeta.m; sourceTree = "<group>"; }; + 3A1A10E892C61342945164626A677F48 /* FIRDependency.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRDependency.h; path = FirebaseCore/Sources/Private/FIRDependency.h; sourceTree = "<group>"; }; + 3A27B8568D6221C2D97AAAF48DF5E6EC /* SDImageHEICCoder.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SDImageHEICCoder.h; path = SDWebImage/Core/SDImageHEICCoder.h; sourceTree = "<group>"; }; + 3A374B8F80F74CB8599270F5E70F1305 /* fixed-dtoa.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = "fixed-dtoa.cc"; path = "double-conversion/fixed-dtoa.cc"; sourceTree = "<group>"; }; + 3AA3AD4D4DB59AE6396FD9BDCFC67ABC /* RCTAdditionAnimatedNode.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTAdditionAnimatedNode.m; sourceTree = "<group>"; }; + 3AB58E8EB1CF9347D64F4EA3DC8E76C8 /* BSG_KSMach_x86_32.c */ = {isa = PBXFileReference; includeInIndex = 1; path = BSG_KSMach_x86_32.c; sourceTree = "<group>"; }; + 3AB88A44CB2032302C4EAF3C42381FE5 /* Yoga-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "Yoga-dummy.m"; sourceTree = "<group>"; }; + 3ABE255032543017699AF31C85725309 /* ManualExecutor.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ManualExecutor.h; path = folly/executors/ManualExecutor.h; sourceTree = "<group>"; }; + 3ACECC4EA794A72E915804596408C485 /* SDAnimatedImage.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SDAnimatedImage.h; path = SDWebImage/Core/SDAnimatedImage.h; sourceTree = "<group>"; }; + 3AD4F747F7528B663EBEC800817BC8C5 /* FIRCLSDownloadAndSaveSettingsOperation.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRCLSDownloadAndSaveSettingsOperation.h; path = Crashlytics/Crashlytics/Settings/Operations/FIRCLSDownloadAndSaveSettingsOperation.h; sourceTree = "<group>"; }; 3AEA4A114C08533A2C0F8E039A4C5EB9 /* libRNImageCropPicker.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; name = libRNImageCropPicker.a; path = libRNImageCropPicker.a; sourceTree = BUILT_PRODUCTS_DIR; }; - 3AF1EEF7F1F5EBC06486735CE5F3E758 /* RangeSse42.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = RangeSse42.cpp; path = folly/detail/RangeSse42.cpp; sourceTree = "<group>"; }; - 3AF66D31DBF731A2EB5A4616B400EED2 /* IOVec.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = IOVec.h; path = folly/portability/IOVec.h; sourceTree = "<group>"; }; - 3B16F42AC62B1A9A9AE57DE532764A2F /* Base.lproj */ = {isa = PBXFileReference; includeInIndex = 1; name = Base.lproj; path = "Objective-C/TOCropViewController/Resources/Base.lproj"; sourceTree = "<group>"; }; - 3B335D891353EDABF098FC898DC8073B /* react-native-document-picker.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "react-native-document-picker.release.xcconfig"; sourceTree = "<group>"; }; - 3B44AFCCB749BD05EB75EF3F8E1DE2E5 /* React-perflogger.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "React-perflogger.release.xcconfig"; sourceTree = "<group>"; }; - 3B52C25E241A136F30D3AFEA155BECF7 /* REAPropsNode.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = REAPropsNode.h; sourceTree = "<group>"; }; - 3B58D254DBD56810C7C07ABA162011BB /* BSGEventUploadKSCrashReportOperation.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BSGEventUploadKSCrashReportOperation.h; sourceTree = "<group>"; }; - 3B61349BDE1BBD7581068301130AA7B8 /* ProxyLockable-inl.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "ProxyLockable-inl.h"; path = "folly/synchronization/detail/ProxyLockable-inl.h"; sourceTree = "<group>"; }; + 3AECD64CC3EABA570E9653BCA3F119EC /* lossless_sse2.c */ = {isa = PBXFileReference; includeInIndex = 1; name = lossless_sse2.c; path = src/dsp/lossless_sse2.c; sourceTree = "<group>"; }; + 3AEDCC89AADF30FEC4D3F9DE13587C37 /* FIRComponentContainer.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRComponentContainer.h; path = FirebaseCore/Sources/Private/FIRComponentContainer.h; sourceTree = "<group>"; }; + 3AF0E7ABA076B0C0E9450C8BE79D0876 /* BaselinesAsyncSocket.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = BaselinesAsyncSocket.cpp; path = rsocket/benchmarks/BaselinesAsyncSocket.cpp; sourceTree = "<group>"; }; + 3B0ED4D83E90C4EEB5FDD7D6FC48AB5E /* FLEXNetworkRecorder.mm */ = {isa = PBXFileReference; includeInIndex = 1; name = FLEXNetworkRecorder.mm; path = iOS/Plugins/FlipperKitNetworkPlugin/SKIOSNetworkPlugin/FLEXNetworkLib/FLEXNetworkRecorder.mm; sourceTree = "<group>"; }; + 3B2AFF33229882339749583AE74849FA /* BugsnagDeviceWithState+Private.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "BugsnagDeviceWithState+Private.h"; sourceTree = "<group>"; }; + 3B3788F8258C5AFD581368264FDA6EC0 /* AtomicSharedPtr.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = AtomicSharedPtr.h; path = folly/concurrency/AtomicSharedPtr.h; sourceTree = "<group>"; }; + 3B4330915FBF9E480ABB0763353B6AA8 /* Fingerprint.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Fingerprint.h; path = folly/Fingerprint.h; sourceTree = "<group>"; }; + 3B4A7E734B466E8E695F9FD689294A03 /* AsyncTimeout.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = AsyncTimeout.cpp; path = folly/io/async/AsyncTimeout.cpp; sourceTree = "<group>"; }; 3B640835BAA914DD267B5E780D8CFEC7 /* libUMReactNativeAdapter.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; name = libUMReactNativeAdapter.a; path = libUMReactNativeAdapter.a; sourceTree = BUILT_PRODUCTS_DIR; }; - 3B752E769E8F38741D11CE8E7DAFF4BE /* EventBaseBackendBase.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = EventBaseBackendBase.cpp; path = folly/io/async/EventBaseBackendBase.cpp; sourceTree = "<group>"; }; - 3B8270C83DA3FCB589B40A874C110126 /* PBUtility.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = PBUtility.cpp; path = Core/PBUtility.cpp; sourceTree = "<group>"; }; - 3B899CF40EB34555A58F17D2D7E0A951 /* json_pointer.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = json_pointer.h; path = folly/json_pointer.h; sourceTree = "<group>"; }; - 3B8A3FAEDB2F64DD6D6F17CD24CA370D /* SDImageIOAnimatedCoder.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = SDImageIOAnimatedCoder.m; path = SDWebImage/Core/SDImageIOAnimatedCoder.m; sourceTree = "<group>"; }; - 3B930A32F432993FA5735ED7FFD3E125 /* FIRInstallationsAuthTokenResultInternal.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRInstallationsAuthTokenResultInternal.h; path = FirebaseInstallations/Source/Library/FIRInstallationsAuthTokenResultInternal.h; sourceTree = "<group>"; }; - 3B97C66180DF19949AF1558D6A0033C4 /* RCTLinkingPlugins.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTLinkingPlugins.mm; sourceTree = "<group>"; }; - 3BB254896ACC06AF2DEF34F612C19B71 /* RNCPicker.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = RNCPicker.podspec; sourceTree = "<group>"; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; - 3BDF8F521A698660A217C9B7AC6B17AA /* PTUSBHub.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = PTUSBHub.m; path = peertalk/PTUSBHub.m; sourceTree = "<group>"; }; - 3BE5E4F1B8D8EEEACB8C8E1EBE765069 /* BSG_KSMach_x86_64.c */ = {isa = PBXFileReference; includeInIndex = 1; path = BSG_KSMach_x86_64.c; sourceTree = "<group>"; }; - 3BEBFA68C05885A1CC3877F22208E6D8 /* FIRCLSReport.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRCLSReport.h; path = Crashlytics/Crashlytics/Models/FIRCLSReport.h; sourceTree = "<group>"; }; - 3BF80B3C5C9D06C7E4861B18B24125A9 /* BSGEventUploadOperation.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BSGEventUploadOperation.h; sourceTree = "<group>"; }; - 3BFA84E1B478F0D4404E7812D2B6B035 /* FlipperConnectionManagerImpl.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = FlipperConnectionManagerImpl.cpp; path = xplat/Flipper/FlipperConnectionManagerImpl.cpp; sourceTree = "<group>"; }; - 3C0E6135E6AF4241D0A7A7B3239C76BD /* InspectorInterfaces.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; path = InspectorInterfaces.cpp; sourceTree = "<group>"; }; - 3C12747050F11EA2EA2A16FFF839DC61 /* RNDeviceInfo.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNDeviceInfo.m; path = ios/RNDeviceInfo/RNDeviceInfo.m; sourceTree = "<group>"; }; - 3C3297542C5015ECE437ADDA002D57BF /* openssl_md5.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = openssl_md5.h; path = Core/aes/openssl/openssl_md5.h; sourceTree = "<group>"; }; - 3C405EC7A77603ED777850B068C8117B /* F14Table.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = F14Table.h; path = folly/container/detail/F14Table.h; sourceTree = "<group>"; }; - 3C4440B36E277CE16DA33BC400C130CC /* RCTDiffClampAnimatedNode.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTDiffClampAnimatedNode.m; sourceTree = "<group>"; }; - 3C500AB3A394159D74E166DE57D0C06D /* react-native-safe-area-context.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "react-native-safe-area-context.release.xcconfig"; sourceTree = "<group>"; }; - 3C69E16660B149ABB112C2C8F03FF6CE /* rescaler_utils.c */ = {isa = PBXFileReference; includeInIndex = 1; name = rescaler_utils.c; path = src/utils/rescaler_utils.c; sourceTree = "<group>"; }; - 3C74F4DCE22AD32551BC8F409F540F4C /* RNCPicker.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = RNCPicker.debug.xcconfig; sourceTree = "<group>"; }; - 3C79B1F5A3844A1537C78A0F404800A7 /* GDTCORTargets.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = GDTCORTargets.h; path = GoogleDataTransport/GDTCORLibrary/Public/GDTCORTargets.h; sourceTree = "<group>"; }; - 3C85908CDB0ACD631B1B1E037E04BD63 /* EmitterFlowable.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = EmitterFlowable.h; path = yarpl/flowable/EmitterFlowable.h; sourceTree = "<group>"; }; + 3B64DF0B9A39FF28BE6E5A469640DDC9 /* PriorityThreadFactory.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = PriorityThreadFactory.h; path = folly/executors/thread_factory/PriorityThreadFactory.h; sourceTree = "<group>"; }; + 3B688DBB3C7E9388637BD5D5DABAC99A /* QBAlbumsViewController.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = QBAlbumsViewController.m; path = ios/QBImagePicker/QBImagePicker/QBAlbumsViewController.m; sourceTree = "<group>"; }; + 3B94B4EFE54E8939DB490367A6F45F08 /* RNCSafeAreaViewEdges.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNCSafeAreaViewEdges.m; path = ios/SafeAreaView/RNCSafeAreaViewEdges.m; sourceTree = "<group>"; }; + 3B96987760DE83D3138F2EB78149C2F5 /* Format.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Format.h; path = folly/Format.h; sourceTree = "<group>"; }; + 3B9957E2C48D243E6052077D17D96840 /* RCTDataRequestHandler.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTDataRequestHandler.mm; sourceTree = "<group>"; }; + 3BB0FBC8A491BED5B6BA79B426C8E822 /* FIRCLSOnboardingOperation.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRCLSOnboardingOperation.m; path = Crashlytics/Crashlytics/Settings/Operations/FIRCLSOnboardingOperation.m; sourceTree = "<group>"; }; + 3BB55C5545C7FF080A4E5DF2DD35A184 /* RCTSurfaceSizeMeasureMode.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTSurfaceSizeMeasureMode.mm; sourceTree = "<group>"; }; + 3BB7931DFB57CC6DE32FB1D4421B8D4C /* RCTUIImageViewAnimated.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTUIImageViewAnimated.h; path = Libraries/Image/RCTUIImageViewAnimated.h; sourceTree = "<group>"; }; + 3BC17F26D9F946CF16A5AF1048E6F48B /* FIROptions.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIROptions.h; path = FirebaseCore/Sources/Public/FirebaseCore/FIROptions.h; sourceTree = "<group>"; }; + 3BE7F6333AC045E8F1FD680028D5721C /* RNFBApp.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = RNFBApp.release.xcconfig; sourceTree = "<group>"; }; + 3BEAA460A23771D599DF023A79A4EA4F /* SecureStorage.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SecureStorage.h; path = ios/SecureStorage.h; sourceTree = "<group>"; }; + 3BF00140766541362C02FE5E79012436 /* RCTTypeSafety.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = RCTTypeSafety.podspec; sourceTree = "<group>"; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; + 3BF8E23B17CD30379B85C26722B37917 /* TestUtil.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = TestUtil.h; path = folly/experimental/TestUtil.h; sourceTree = "<group>"; }; + 3BFEBF2FF76E4E913EDA71BD82F795D9 /* FlipperConnection.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FlipperConnection.h; path = xplat/Flipper/FlipperConnection.h; sourceTree = "<group>"; }; + 3C052948D50C90ACD6BFBD01F0337ED9 /* FIRCLSUnwind_arch.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRCLSUnwind_arch.h; path = Crashlytics/Crashlytics/Unwind/FIRCLSUnwind_arch.h; sourceTree = "<group>"; }; + 3C1C76C6851C9229EAC939FB40F8E638 /* TOCropToolbar.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = TOCropToolbar.m; path = "Objective-C/TOCropViewController/Views/TOCropToolbar.m"; sourceTree = "<group>"; }; + 3C2D2EF764AD5072A5C661EB748F92DE /* RNCMaskedView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNCMaskedView.h; path = ios/RNCMaskedView.h; sourceTree = "<group>"; }; + 3C559E3DA31957EBFEC0E161361DD497 /* RNJitsiMeetViewManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNJitsiMeetViewManager.h; path = ios/RNJitsiMeetViewManager.h; sourceTree = "<group>"; }; + 3C62467E0F77892F2DAD1D929DCADBAA /* React-RCTLinking.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "React-RCTLinking.debug.xcconfig"; sourceTree = "<group>"; }; + 3C8E21899D97ACD85858531A8C82D092 /* FIRCLSFileManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRCLSFileManager.m; path = Crashlytics/Crashlytics/Models/FIRCLSFileManager.m; sourceTree = "<group>"; }; + 3C91F989F4A5054ED55ABECA0C159C36 /* jsi.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = jsi.h; sourceTree = "<group>"; }; + 3C9B034E0D2FD72A5F38B5750FB667B1 /* RNCPicker-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "RNCPicker-dummy.m"; sourceTree = "<group>"; }; 3CA7A9404CCDD6BA22C97F8348CE3209 /* libglog.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; name = libglog.a; path = libglog.a; sourceTree = BUILT_PRODUCTS_DIR; }; - 3CB957F7D5240280A57EEDFC6B03ADDF /* GoogleDataTransport.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = GoogleDataTransport.debug.xcconfig; sourceTree = "<group>"; }; - 3CF2196A1EE0D95E00B03D669456756F /* UMModuleRegistryHolderReactModule.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = UMModuleRegistryHolderReactModule.m; sourceTree = "<group>"; }; - 3D05B428018345AF3E7B23DCC82F3F59 /* UMNativeModulesProxy.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = UMNativeModulesProxy.h; sourceTree = "<group>"; }; - 3D16741B2FF5CADCB83B655457C3DF69 /* RCTLog.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTLog.mm; sourceTree = "<group>"; }; - 3D196C4EDEB47415D485A0236AC6D8D3 /* libevent-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "libevent-dummy.m"; sourceTree = "<group>"; }; - 3D3089FB9A74DB9C995A4671B1944823 /* OpenSSL-Universal.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "OpenSSL-Universal.release.xcconfig"; sourceTree = "<group>"; }; - 3D34BCB9EA9CF11A5F9C06040A886B25 /* Barrier.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = Barrier.cpp; path = folly/futures/Barrier.cpp; sourceTree = "<group>"; }; - 3D4F5116A90608016B3C8971E284CBB8 /* Atomic.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Atomic.h; path = folly/portability/Atomic.h; sourceTree = "<group>"; }; - 3D6853AA624FC5A933BB11FA7D0A0A67 /* Futex-inl.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "Futex-inl.h"; path = "folly/detail/Futex-inl.h"; sourceTree = "<group>"; }; - 3D6A39C11AB41732F04B5DCBC4C192D1 /* react-native-cookies.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "react-native-cookies.debug.xcconfig"; sourceTree = "<group>"; }; - 3D6A7D1051A44C58772B267CE3C0CB9D /* BSGOnErrorSentBlock.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BSGOnErrorSentBlock.h; sourceTree = "<group>"; }; - 3D8210E7D61088E626BC33C0AFF31B23 /* RCTScrollEvent.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTScrollEvent.m; sourceTree = "<group>"; }; - 3D86D2A31A5C0B47043E1A36D380B41F /* RCTTypeSafety-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "RCTTypeSafety-prefix.pch"; sourceTree = "<group>"; }; - 3DA24849CCBBC6DD9C7740C89655776A /* UIResponder+FirstResponderTemp.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "UIResponder+FirstResponderTemp.h"; sourceTree = "<group>"; }; - 3DBCF2CFA6B9196E782F05003BFEB3E3 /* IndexedMemPool.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = IndexedMemPool.h; path = folly/IndexedMemPool.h; sourceTree = "<group>"; }; + 3CDB63C0C5FF9B95973BDDA51DBA44FA /* BSG_KSJSONCodecObjC.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BSG_KSJSONCodecObjC.h; sourceTree = "<group>"; }; + 3CFC40D774313BAD493B0E0E5376C3F7 /* RSocketClient.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RSocketClient.h; path = rsocket/RSocketClient.h; sourceTree = "<group>"; }; + 3CFEB7250AB95ADB33F32D344AD223F3 /* RNNotificationCenterListener.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNNotificationCenterListener.h; path = RNNotifications/RNNotificationCenterListener.h; sourceTree = "<group>"; }; + 3D09B252666AE7DD10071F367634BAA4 /* RNFBAnalyticsModule.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNFBAnalyticsModule.m; path = ios/RNFBAnalytics/RNFBAnalyticsModule.m; sourceTree = "<group>"; }; + 3D340443D5745B25B61BBCF80E8C29BF /* Flipper-PeerTalk-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "Flipper-PeerTalk-dummy.m"; sourceTree = "<group>"; }; + 3D35AA700B04792E39B969CEED0583B2 /* Syslog.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Syslog.h; path = folly/portability/Syslog.h; sourceTree = "<group>"; }; + 3D52CC65517C6DEB7AE2E77BFB4742BA /* Observables.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Observables.h; path = yarpl/observable/Observables.h; sourceTree = "<group>"; }; + 3D5A8006CE66052958B098C57B19D164 /* Singleton.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Singleton.h; path = folly/detail/Singleton.h; sourceTree = "<group>"; }; + 3D5ADCD328BE2EA66010C79CABADA29F /* FIRCLSMachException.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRCLSMachException.h; path = Crashlytics/Crashlytics/Handlers/FIRCLSMachException.h; sourceTree = "<group>"; }; + 3D6EFC185C3CB20617B05FB791D48475 /* Stdlib.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Stdlib.h; path = folly/portability/Stdlib.h; sourceTree = "<group>"; }; + 3D7062CBF2A45873E87D49AE1209E874 /* BugsnagError.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BugsnagError.h; sourceTree = "<group>"; }; + 3D8D04B8C04C3419B098250814B12D1E /* MPMCPipeline.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = MPMCPipeline.h; path = folly/MPMCPipeline.h; sourceTree = "<group>"; }; + 3DADA218BA6F0A0C0A3B44DB70C38BB7 /* small_vector.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = small_vector.h; path = folly/small_vector.h; sourceTree = "<group>"; }; + 3DB10551A09EF324D60D88F1CD3C1468 /* react-native-cameraroll-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "react-native-cameraroll-dummy.m"; sourceTree = "<group>"; }; + 3DB5088FFF3CF35BFF695132D02D28B2 /* ClockGettimeWrappers.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ClockGettimeWrappers.h; path = folly/ClockGettimeWrappers.h; sourceTree = "<group>"; }; 3DCCC9C42EB3E07CFD81800EC8A2515D /* QBImagePicker.bundle */ = {isa = PBXFileReference; explicitFileType = wrapper.cfbundle; includeInIndex = 0; name = QBImagePicker.bundle; path = "RNImageCropPicker-QBImagePicker.bundle"; sourceTree = BUILT_PRODUCTS_DIR; }; - 3DD200BF5701502D7B4E9ACFF160CDC1 /* ReactNativeShareExtension.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ReactNativeShareExtension.h; path = ios/ReactNativeShareExtension.h; sourceTree = "<group>"; }; - 3DFA608104A26481888AF421986C11E4 /* epolltable-internal.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "epolltable-internal.h"; sourceTree = "<group>"; }; - 3E17D8288C72780F8067F47CB16FDE7E /* SysResource.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = SysResource.cpp; path = folly/portability/SysResource.cpp; sourceTree = "<group>"; }; - 3E21C45B397F5E0D718972EB9A1AA3BD /* RCTDatePicker.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTDatePicker.m; sourceTree = "<group>"; }; - 3E6D248CD28BE41F933CC681EACB82F8 /* REAFunctionNode.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = REAFunctionNode.h; sourceTree = "<group>"; }; - 3E6E94B693FE00876871B854A67A2A1C /* FirebaseCrashlytics.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = FirebaseCrashlytics.debug.xcconfig; sourceTree = "<group>"; }; - 3E88485AF27879EA1753CBF403408C7A /* FBLPromise+Await.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "FBLPromise+Await.h"; path = "Sources/FBLPromises/include/FBLPromise+Await.h"; sourceTree = "<group>"; }; - 3E88D846200DFC32E1B1FB4A60EAF730 /* FIRCLSSignal.c */ = {isa = PBXFileReference; includeInIndex = 1; name = FIRCLSSignal.c; path = Crashlytics/Crashlytics/Handlers/FIRCLSSignal.c; sourceTree = "<group>"; }; - 3E9BC6BA0472A721C157966D72DC29E8 /* RCTViewManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTViewManager.h; sourceTree = "<group>"; }; - 3E9C9ECE7547F686B756902C9B85AD0D /* SetupResumeAcceptor.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = SetupResumeAcceptor.cpp; path = rsocket/internal/SetupResumeAcceptor.cpp; sourceTree = "<group>"; }; - 3EA9D6AF988840673AF7540C73AF91E8 /* LifoSemMPMCQueue.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = LifoSemMPMCQueue.h; path = folly/executors/task_queue/LifoSemMPMCQueue.h; sourceTree = "<group>"; }; - 3EAD0B3A6057A359919AA91B85A91C4F /* ExecutionObserver.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ExecutionObserver.h; path = folly/experimental/ExecutionObserver.h; sourceTree = "<group>"; }; - 3EBB8DE63D81A58A5C248488CF5C0F61 /* PromisesObjC.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = PromisesObjC.release.xcconfig; sourceTree = "<group>"; }; + 3DCD644BDA2902B850E63DD97008ECA8 /* NetOps.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = NetOps.h; path = folly/net/NetOps.h; sourceTree = "<group>"; }; + 3DCF307CD6239A322F71C3744124F1A6 /* RNSScreenStack.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNSScreenStack.h; path = ios/RNSScreenStack.h; sourceTree = "<group>"; }; + 3DD774C93B66738489E43B1BB2607D8C /* UMCameraInterface.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = UMCameraInterface.debug.xcconfig; sourceTree = "<group>"; }; + 3DF75861838DDABC8AF9BE7F154D114E /* RCTImageViewManager.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTImageViewManager.mm; sourceTree = "<group>"; }; + 3DFE58DC280C24354C89ED8581F2AE58 /* BSGEventUploader.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BSGEventUploader.h; sourceTree = "<group>"; }; + 3E03F0BC9E91DA4172E4D56B2C67B871 /* react-native-safe-area-context-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "react-native-safe-area-context-prefix.pch"; sourceTree = "<group>"; }; + 3E1391F5FEB51B90696E18333144BE1B /* AtomicSharedPtr.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = AtomicSharedPtr.h; path = folly/concurrency/AtomicSharedPtr.h; sourceTree = "<group>"; }; + 3E3865860E855426CA17A53924AFE4A4 /* BugsnagDevice.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BugsnagDevice.h; sourceTree = "<group>"; }; + 3E3C445DD362E006552ED9B94020C8E1 /* FIRCLSDwarfUnwind.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRCLSDwarfUnwind.h; path = Crashlytics/Crashlytics/Unwind/Dwarf/FIRCLSDwarfUnwind.h; sourceTree = "<group>"; }; + 3E4EC87D4807413BC2C9DA3F10ECFEDE /* ScopeGuard.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ScopeGuard.h; path = folly/ScopeGuard.h; sourceTree = "<group>"; }; + 3E55414F03ED03FDD211CFB1B9724B33 /* evconfig-private.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "evconfig-private.h"; sourceTree = "<group>"; }; + 3E7C236A5DF80F7A8F26A2A730EC81EE /* UnboundedQueue.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = UnboundedQueue.h; path = folly/concurrency/UnboundedQueue.h; sourceTree = "<group>"; }; + 3E7D9DE5480A25769CB6FD6283AF0206 /* EXAV.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = EXAV.release.xcconfig; sourceTree = "<group>"; }; + 3E7ED806D1A921852187C6C6A48137D0 /* Malloc.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Malloc.h; path = folly/memory/Malloc.h; sourceTree = "<group>"; }; + 3E83CF8DA80F50B268B4921B82D35430 /* ro.lproj */ = {isa = PBXFileReference; includeInIndex = 1; name = ro.lproj; path = "Objective-C/TOCropViewController/Resources/ro.lproj"; sourceTree = "<group>"; }; + 3E8DB4C7B967E14E5E32E8B10E060037 /* RCTDatePicker.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTDatePicker.m; sourceTree = "<group>"; }; + 3E9530758A87E541E75B2A9926991DE0 /* TOCropOverlayView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = TOCropOverlayView.m; path = "Objective-C/TOCropViewController/Views/TOCropOverlayView.m"; sourceTree = "<group>"; }; + 3E9A76ACFE187697991B64661B1FC349 /* InlineExecutor.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = InlineExecutor.h; path = folly/executors/InlineExecutor.h; sourceTree = "<group>"; }; + 3EE147C11A0E50351D1A5884CE21846E /* RNLocalize.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = RNLocalize.release.xcconfig; sourceTree = "<group>"; }; 3EEAA606F6866DA20E6601B9655B1027 /* libBugsnagReactNative.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; name = libBugsnagReactNative.a; path = libBugsnagReactNative.a; sourceTree = BUILT_PRODUCTS_DIR; }; - 3EF4E581C7EAB7D5EBD1377F06CA0214 /* FIRInstallationsItem.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRInstallationsItem.h; path = FirebaseInstallations/Source/Library/FIRInstallationsItem.h; sourceTree = "<group>"; }; - 3F078F39E28D25346F07A1C58BABEFCD /* RCTLinkingPlugins.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTLinkingPlugins.h; path = Libraries/LinkingIOS/RCTLinkingPlugins.h; sourceTree = "<group>"; }; - 3F27913042F4D16F669BC9B55EF37EC3 /* react-native-cookies-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "react-native-cookies-dummy.m"; sourceTree = "<group>"; }; - 3F3B13C8319674F7011E2EC4ECF09EA6 /* RequestResponseThroughputTcp.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = RequestResponseThroughputTcp.cpp; path = rsocket/benchmarks/RequestResponseThroughputTcp.cpp; sourceTree = "<group>"; }; - 3F3BD9FE0ECD5B49CEFE657B3B74DA51 /* Registration.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = Registration.h; sourceTree = "<group>"; }; - 3F484593EFF29DBA96F4D324F71F0098 /* FutureSplitter.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FutureSplitter.h; path = folly/futures/FutureSplitter.h; sourceTree = "<group>"; }; - 3F4C9252C0AB1D6B047BB24CD5E7172C /* SDImageCacheDefine.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SDImageCacheDefine.h; path = SDWebImage/Core/SDImageCacheDefine.h; sourceTree = "<group>"; }; - 3F522791A3F04533C3EE619702346991 /* FIRAnalyticsConfiguration.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRAnalyticsConfiguration.m; path = FirebaseCore/Sources/FIRAnalyticsConfiguration.m; sourceTree = "<group>"; }; - 3F5483E0672F46DDF80A6F09BA5152C4 /* jsilib-windows.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; path = "jsilib-windows.cpp"; sourceTree = "<group>"; }; - 3F633FC9A4ECFED62A7161EF40385593 /* EXVideoThumbnailsModule.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = EXVideoThumbnailsModule.m; path = EXVideoThumbnails/EXVideoThumbnailsModule.m; sourceTree = "<group>"; }; - 3F65646ECC691E18D39339948A9A1F33 /* LICENSE */ = {isa = PBXFileReference; includeInIndex = 1; path = LICENSE; sourceTree = "<group>"; }; - 3F7AF7C24195A31AE72C879CAD00133C /* Format-inl.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "Format-inl.h"; path = "folly/Format-inl.h"; sourceTree = "<group>"; }; - 3F813FC47D3E286B891888504333930C /* CocoaAsyncSocket-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "CocoaAsyncSocket-dummy.m"; sourceTree = "<group>"; }; - 3F8B9DD0F5D0C01D1578E7363E4E1DC9 /* RequestResponseRequester.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = RequestResponseRequester.cpp; path = rsocket/statemachine/RequestResponseRequester.cpp; sourceTree = "<group>"; }; - 3F8F686F684238FD8D654AA6C5D5B1DA /* RCTErrorCustomizer.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTErrorCustomizer.h; sourceTree = "<group>"; }; - 3F9E5087DC25C01058CCEF28892B1C75 /* SpookyHashV2.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = SpookyHashV2.cpp; path = folly/hash/SpookyHashV2.cpp; sourceTree = "<group>"; }; - 3F9EBF0A4C3CC3EDC415626C8E7C4636 /* hermes.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = hermes.h; path = destroot/include/hermes/hermes.h; sourceTree = "<group>"; }; - 3FA35B251233E0CD2A62A22DE7413B9E /* log.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = log.h; path = yoga/log.h; sourceTree = "<group>"; }; - 3FAAD852C1CA9EF26844E8FA4D7D7229 /* RSocketServerState.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RSocketServerState.h; path = rsocket/RSocketServerState.h; sourceTree = "<group>"; }; - 3FB18B497B48508BD83F35E98B89335D /* SocketAddress.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SocketAddress.h; path = folly/SocketAddress.h; sourceTree = "<group>"; }; - 3FC593F0F6C973BD78BDD755CB42A289 /* ratelim-internal.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "ratelim-internal.h"; sourceTree = "<group>"; }; - 40192D0027FE3F73F92FFE2B8AF7A78F /* EXFileSystem-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "EXFileSystem-dummy.m"; sourceTree = "<group>"; }; - 402AAB81A0A41700074D0620AF821F75 /* ssim_sse2.c */ = {isa = PBXFileReference; includeInIndex = 1; name = ssim_sse2.c; path = src/dsp/ssim_sse2.c; sourceTree = "<group>"; }; + 3EF2DAFB6BEFBF1F3DA739A3B552ADBA /* UIImageView+WebCache.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "UIImageView+WebCache.h"; path = "SDWebImage/Core/UIImageView+WebCache.h"; sourceTree = "<group>"; }; + 3F024AA44CDFFD77E7B15C35A988977D /* FIRInstallationsAuthTokenResult.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRInstallationsAuthTokenResult.m; path = FirebaseInstallations/Source/Library/FIRInstallationsAuthTokenResult.m; sourceTree = "<group>"; }; + 3F06AC025A552090FF558CA9B922D0AF /* RNSScreen.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNSScreen.m; path = ios/RNSScreen.m; sourceTree = "<group>"; }; + 3F13A0EF39A72533000EEEE0111DF255 /* RCTComponent.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTComponent.h; sourceTree = "<group>"; }; + 3F2520861187E53A171112064358DD5D /* UMFileSystemInterface.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = UMFileSystemInterface.debug.xcconfig; sourceTree = "<group>"; }; + 3F431064D61644D8793711FFEB7CFBA3 /* EmitterFlowable.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = EmitterFlowable.h; path = yarpl/flowable/EmitterFlowable.h; sourceTree = "<group>"; }; + 3F59A79E2C71FD3F9D7D1D886110C9B6 /* UMCameraInterface.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = UMCameraInterface.h; path = UMCameraInterface/UMCameraInterface.h; sourceTree = "<group>"; }; + 3F5C0F96BF99FF667B0CD900AB12B4F5 /* FirebaseAnalytics.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = FirebaseAnalytics.debug.xcconfig; sourceTree = "<group>"; }; + 3F633D0D6647123D1AFE1E37975AAB6D /* REAValueNode.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = REAValueNode.h; sourceTree = "<group>"; }; + 3F6C74D1D270D3A78E787ACB7CE0B83C /* iocp-internal.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "iocp-internal.h"; sourceTree = "<group>"; }; + 3FA0CCF04D2E6683749FEDC56756898D /* FirebaseCoreInternal.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FirebaseCoreInternal.h; path = FirebaseCore/Sources/Private/FirebaseCoreInternal.h; sourceTree = "<group>"; }; + 3FB5C3DB4F86649869C6EBD20E9F3283 /* DuplexConnection.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = DuplexConnection.h; path = rsocket/DuplexConnection.h; sourceTree = "<group>"; }; + 3FC0F8D7995BE7268D778AF5B30212DF /* FKUserDefaultsSwizzleUtility.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FKUserDefaultsSwizzleUtility.h; path = iOS/Plugins/FlipperKitUserDefaultsPlugin/FKUserDefaultsSwizzleUtility.h; sourceTree = "<group>"; }; + 3FC896C6C361F2515F4B433C9199128E /* GDTCORRegistrar.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = GDTCORRegistrar.m; path = GoogleDataTransport/GDTCORLibrary/GDTCORRegistrar.m; sourceTree = "<group>"; }; + 3FCF1157FFC387BF27ED8C7EB5524A43 /* Flipper-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "Flipper-dummy.m"; sourceTree = "<group>"; }; + 3FD325DFB52FFF20E1052FACDF20A233 /* pt-BR.lproj */ = {isa = PBXFileReference; includeInIndex = 1; name = "pt-BR.lproj"; path = "Objective-C/TOCropViewController/Resources/pt-BR.lproj"; sourceTree = "<group>"; }; + 3FF2A20F6597C36D1257A7BDF71D0437 /* AtomicHashMap-inl.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "AtomicHashMap-inl.h"; path = "folly/AtomicHashMap-inl.h"; sourceTree = "<group>"; }; + 3FF50B662CE593C996E03B0F9E392976 /* REAEventNode.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = REAEventNode.m; sourceTree = "<group>"; }; + 4019437D9A8105DB90685F28B00A2AC9 /* RNFBCrashlytics.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = RNFBCrashlytics.podspec; sourceTree = "<group>"; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; + 402D6004D8D8936777EB46B8FC8B1C9D /* huffman_utils.c */ = {isa = PBXFileReference; includeInIndex = 1; name = huffman_utils.c; path = src/utils/huffman_utils.c; sourceTree = "<group>"; }; + 402ECC98F44C7DA60F37BE67E646438B /* GULAppEnvironmentUtil.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = GULAppEnvironmentUtil.h; path = GoogleUtilities/Environment/Private/GULAppEnvironmentUtil.h; sourceTree = "<group>"; }; + 4038167DF645ABBE79A04216181C2F39 /* RangeSse42.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = RangeSse42.cpp; path = folly/detail/RangeSse42.cpp; sourceTree = "<group>"; }; + 403EECD2D76FEC9AD50732349E5854CF /* PriorityLifoSemMPMCQueue.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = PriorityLifoSemMPMCQueue.h; path = folly/executors/task_queue/PriorityLifoSemMPMCQueue.h; sourceTree = "<group>"; }; 4047BC0750B116B1191149A8E7B5389B /* libreact-native-mmkv-storage.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; name = "libreact-native-mmkv-storage.a"; path = "libreact-native-mmkv-storage.a"; sourceTree = BUILT_PRODUCTS_DIR; }; - 4068B8AF1FED71038AE3FE70D82055F0 /* RNGestureHandler-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "RNGestureHandler-prefix.pch"; sourceTree = "<group>"; }; - 40957D11A50DE6E72211996E3F5392B0 /* UIImage+ForceDecode.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "UIImage+ForceDecode.m"; path = "SDWebImage/Core/UIImage+ForceDecode.m"; sourceTree = "<group>"; }; - 40B967F7C56A728EEBFFF403E70495A0 /* Hazptr.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = Hazptr.cpp; path = folly/synchronization/Hazptr.cpp; sourceTree = "<group>"; }; - 40C245091BB61392A5C0FEFAF15BF406 /* RCTTouchHandler.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTTouchHandler.m; sourceTree = "<group>"; }; - 40D346238B3A3AF31BB285B00C29A094 /* FLEXNetworkRecorder.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FLEXNetworkRecorder.h; path = iOS/Plugins/FlipperKitNetworkPlugin/SKIOSNetworkPlugin/FLEXNetworkLib/FLEXNetworkRecorder.h; sourceTree = "<group>"; }; - 40D47D7CB3CE368C41CE58178D446F27 /* RNCSliderManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNCSliderManager.m; path = ios/RNCSliderManager.m; sourceTree = "<group>"; }; - 40D6B8422E3644B47E48FEDC7A277629 /* EXAudioRecordingPermissionRequester.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = EXAudioRecordingPermissionRequester.m; path = EXAV/EXAudioRecordingPermissionRequester.m; sourceTree = "<group>"; }; - 40D77212AD7D72BB9EB317A8F71F76AC /* SKObject.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SKObject.h; path = iOS/Plugins/FlipperKitLayoutPlugin/FlipperKitLayoutPlugin/SKObject.h; sourceTree = "<group>"; }; - 4100516A2F71C4FCEFF4C192A3E25A5C /* FIRCLSURLSessionDataTask_PrivateMethods.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRCLSURLSessionDataTask_PrivateMethods.h; path = Crashlytics/Crashlytics/FIRCLSURLSession/Tasks/FIRCLSURLSessionDataTask_PrivateMethods.h; sourceTree = "<group>"; }; - 411C5D3090597F745A84709D99C44A6B /* RCTNetworkTask.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTNetworkTask.mm; sourceTree = "<group>"; }; - 41236F51B186E3AD72EC8098158E3633 /* CrashManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = CrashManager.h; path = destroot/include/hermes/Public/CrashManager.h; sourceTree = "<group>"; }; - 41301A2B164A2E2586DB33EB7EA7DFC7 /* RCTLogBoxView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTLogBoxView.h; path = React/CoreModules/RCTLogBoxView.h; sourceTree = "<group>"; }; - 4138CC76BD93E8D27D33B1DC80BFD1A7 /* RCTMessageThread.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTMessageThread.mm; sourceTree = "<group>"; }; - 413F677E17E91D83904D400E7DF52DBA /* EXSessionResumableDownloadTaskDelegate.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = EXSessionResumableDownloadTaskDelegate.m; sourceTree = "<group>"; }; - 414D87E844AD74314047F1E73E041E3B /* BSGConfigurationBuilder.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = BSGConfigurationBuilder.m; sourceTree = "<group>"; }; - 4150B1022A1C4EA48976C1918DB2DA4D /* RNDocumentPicker.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNDocumentPicker.m; path = ios/RNDocumentPicker/RNDocumentPicker.m; sourceTree = "<group>"; }; - 4158D7C8F9D15F608EA072E56C9C5029 /* RsaFormatter.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RsaFormatter.m; sourceTree = "<group>"; }; - 416922757DBB94A29AA7BA3BE7FD9908 /* BugsnagMetadata.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BugsnagMetadata.h; sourceTree = "<group>"; }; - 416D359A4FC7BB38FDA1EF50B2C9654C /* FIRInstallationsErrorUtil.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRInstallationsErrorUtil.h; path = FirebaseInstallations/Source/Library/Errors/FIRInstallationsErrorUtil.h; sourceTree = "<group>"; }; - 416EEA29D5AD9BC6C8A5E7C50814100B /* 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 = "<group>"; }; - 41718BA175DA03A8FF8BD8BC05A1E6E8 /* UIColor+SKSonarValueCoder.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "UIColor+SKSonarValueCoder.h"; path = "iOS/Plugins/FlipperKitLayoutPlugin/FlipperKitLayoutPlugin/UIColor+SKSonarValueCoder.h"; sourceTree = "<group>"; }; - 41855C855146AEE29E3AD4431CB64A27 /* FontAwesome5_Solid.ttf */ = {isa = PBXFileReference; includeInIndex = 1; name = FontAwesome5_Solid.ttf; path = Fonts/FontAwesome5_Solid.ttf; sourceTree = "<group>"; }; - 41B034CB24DAE6CFF748E08DAD09A2DA /* ParallelMap-inl.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "ParallelMap-inl.h"; path = "folly/gen/ParallelMap-inl.h"; sourceTree = "<group>"; }; - 41B4DD6B88E7EA1B7760F352EBEE8C01 /* bignum-dtoa.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "bignum-dtoa.h"; path = "double-conversion/bignum-dtoa.h"; sourceTree = "<group>"; }; - 41BEDDA58A460F4905BC985C1FDBC27D /* REACallFuncNode.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = REACallFuncNode.m; sourceTree = "<group>"; }; - 41CD4FE0B9F16B00300218C0DC70ABF9 /* RCTHmac.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTHmac.h; path = ios/RCTCrypto/RCTHmac.h; sourceTree = "<group>"; }; - 41E391FB458EE549981AC519F05E9422 /* libwebp-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "libwebp-prefix.pch"; sourceTree = "<group>"; }; - 41FA13DF57954BD5E585AB26E68DE195 /* GULHeartbeatDateStorage.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = GULHeartbeatDateStorage.h; path = GoogleUtilities/Environment/Private/GULHeartbeatDateStorage.h; sourceTree = "<group>"; }; - 42042C1A71F24D6A33EB035C65A1C078 /* react-native-mmkv-storage-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "react-native-mmkv-storage-prefix.pch"; sourceTree = "<group>"; }; - 4206D953AD1F576B3D25AB9DF3998B7E /* BugsnagDeviceWithState.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BugsnagDeviceWithState.h; sourceTree = "<group>"; }; - 421A4791005C1BA0283FE5ED2FEEF2AF /* raw_logging.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = raw_logging.cc; path = src/raw_logging.cc; sourceTree = "<group>"; }; - 4225A60B45A95BED41217E53FC10BDDB /* PolyException.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = PolyException.h; path = folly/PolyException.h; sourceTree = "<group>"; }; - 42734B3C6C2639A8757DAB59B6F974E4 /* LICENSE */ = {isa = PBXFileReference; includeInIndex = 1; path = LICENSE; sourceTree = "<group>"; }; - 4290579F62D9CCDBE1FEE050E84B7F2C /* ScheduledFrameProcessor.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = ScheduledFrameProcessor.cpp; path = rsocket/framing/ScheduledFrameProcessor.cpp; sourceTree = "<group>"; }; - 42961159B1D3A64B02FE53F5D5921D7B /* RNGestureHandlerManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNGestureHandlerManager.m; path = ios/RNGestureHandlerManager.m; sourceTree = "<group>"; }; - 429C870EF7851C5214B985CA7719601D /* VirtualEventBase.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = VirtualEventBase.cpp; path = folly/io/async/VirtualEventBase.cpp; sourceTree = "<group>"; }; - 42C85A45524DE2BA8DD6A46943FFF9E1 /* Uri.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Uri.h; path = folly/Uri.h; sourceTree = "<group>"; }; - 42D2022526F4B2777243BC68F4ABF49F /* UniqueInstance.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = UniqueInstance.cpp; path = folly/detail/UniqueInstance.cpp; sourceTree = "<group>"; }; - 42E07FEF574DA0ECD1BC7F643A4EC7CE /* json_pointer.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = json_pointer.cpp; path = folly/json_pointer.cpp; sourceTree = "<group>"; }; - 42E3DD27E3C62F7A40FD2F65470B1589 /* PThread.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = PThread.h; path = folly/portability/PThread.h; sourceTree = "<group>"; }; - 42E9A5F1D01E71AAEF7A1C0EE956D535 /* ScopedEventBaseThread.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = ScopedEventBaseThread.cpp; path = folly/io/async/ScopedEventBaseThread.cpp; sourceTree = "<group>"; }; - 43032CE22287A7D741D63E15464A404B /* ScopeGuard.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ScopeGuard.h; path = folly/ScopeGuard.h; sourceTree = "<group>"; }; - 430CB77D6D03E7480CD6EDB29C7352B3 /* RelaxedConcurrentPriorityQueue.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RelaxedConcurrentPriorityQueue.h; path = folly/experimental/RelaxedConcurrentPriorityQueue.h; sourceTree = "<group>"; }; - 430D3FDF8D298AD145FDF3A90FD69493 /* LICENSE */ = {isa = PBXFileReference; includeInIndex = 1; path = LICENSE; sourceTree = "<group>"; }; - 43169030F1ECA77C243FA88624499E18 /* FIRCLSHandler.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRCLSHandler.h; path = Crashlytics/Crashlytics/Handlers/FIRCLSHandler.h; sourceTree = "<group>"; }; - 432D193BB206D15FA4F612B0D3090FBC /* BSG_KSCrash.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BSG_KSCrash.h; sourceTree = "<group>"; }; - 4340B7430F3D81B338E9EB775A64D8D7 /* vp8i_dec.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = vp8i_dec.h; path = src/dec/vp8i_dec.h; sourceTree = "<group>"; }; - 434E94F8ABB8EC5550FB9722BBAB5A64 /* BugsnagLastRunInfo.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = BugsnagLastRunInfo.m; sourceTree = "<group>"; }; - 435AE9BC5C9E3CF7503A8F43DB6123FC /* BSG_KSCrashSentry_NSException.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BSG_KSCrashSentry_NSException.h; sourceTree = "<group>"; }; - 4376713BCD5106D4E76A07353B85BF9E /* FIRCLSRecordHost.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRCLSRecordHost.m; path = Crashlytics/Crashlytics/Models/Record/FIRCLSRecordHost.m; sourceTree = "<group>"; }; - 4384560BA5989E2B948CB1DB46E0181E /* FlipperCertificateExchangeMedium.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FlipperCertificateExchangeMedium.h; path = xplat/Flipper/FlipperCertificateExchangeMedium.h; sourceTree = "<group>"; }; - 43861F8B5D923063441C6C9B76B000CA /* Observables.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Observables.h; path = yarpl/observable/Observables.h; sourceTree = "<group>"; }; - 43872AEC50F02D54258971586CCE5B86 /* RNGestureHandler.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = RNGestureHandler.podspec; sourceTree = "<group>"; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; - 43926C42B8EDE22B6094E95AC9E82CC8 /* SDDiskCache.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = SDDiskCache.m; path = SDWebImage/Core/SDDiskCache.m; sourceTree = "<group>"; }; - 4393B1186FA44A018BBFA28C519A8C4A /* FIRCLSNetworkResponseHandler.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRCLSNetworkResponseHandler.h; path = Crashlytics/Shared/FIRCLSNetworking/FIRCLSNetworkResponseHandler.h; sourceTree = "<group>"; }; - 43AEA98D17B75654E59BC31D37C4AE24 /* CacheLocality.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = CacheLocality.h; path = folly/concurrency/CacheLocality.h; sourceTree = "<group>"; }; - 43AF0B370689AA129AD26A1065F12CAE /* BSG_KSCrashIdentifier.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BSG_KSCrashIdentifier.h; sourceTree = "<group>"; }; - 43BA4D2D3218ED77C5BA9CB2D3F81FD1 /* SpinLock.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SpinLock.h; path = folly/SpinLock.h; sourceTree = "<group>"; }; - 43BC01F6464C78A7AD978DBF451A3241 /* RangeCommon.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = RangeCommon.cpp; path = folly/detail/RangeCommon.cpp; sourceTree = "<group>"; }; - 43CFFE187D922E2A69DF28EEEF6CB5D5 /* RCTSubtractionAnimatedNode.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTSubtractionAnimatedNode.m; sourceTree = "<group>"; }; - 43D4CFD7E0C1B4DBC898DD936DB82101 /* RCTTrackingAnimatedNode.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTTrackingAnimatedNode.m; sourceTree = "<group>"; }; - 43D561D4EA27F9FF3B798E950D15E161 /* SwappableEventBase.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = SwappableEventBase.cpp; path = rsocket/internal/SwappableEventBase.cpp; sourceTree = "<group>"; }; - 43FE0A52F652BCA6541CD75F6855A028 /* CompactValue.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = CompactValue.h; path = yoga/CompactValue.h; sourceTree = "<group>"; }; + 404AC726DBF50850379A3DDC4A0451EB /* NSButton+WebCache.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "NSButton+WebCache.h"; path = "SDWebImage/Core/NSButton+WebCache.h"; sourceTree = "<group>"; }; + 405E25E6453CADACC8A7D299F35D9104 /* changelist-internal.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "changelist-internal.h"; sourceTree = "<group>"; }; + 4060AAB365A8B4BC247E2712AD2FD877 /* Promise-inl.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "Promise-inl.h"; path = "folly/futures/Promise-inl.h"; sourceTree = "<group>"; }; + 40658A6F13EAD8AF61DBFB66E02CB90D /* SDImageLoader.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = SDImageLoader.m; path = SDWebImage/Core/SDImageLoader.m; sourceTree = "<group>"; }; + 40804BDDC9B997A460AE9078112642A6 /* CancelingSubscriber.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = CancelingSubscriber.h; path = yarpl/flowable/CancelingSubscriber.h; sourceTree = "<group>"; }; + 4090544ABDE3D7A5BF2604D40CFBF9DC /* 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 = "<group>"; }; + 40AC5652DD86CBB3A47EC3620B61FF41 /* RCTDivisionAnimatedNode.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTDivisionAnimatedNode.m; sourceTree = "<group>"; }; + 40B73320ECD2CAB7B88F207E66F46964 /* AtomicReadMostlyMainPtr.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = AtomicReadMostlyMainPtr.h; path = folly/experimental/AtomicReadMostlyMainPtr.h; sourceTree = "<group>"; }; + 40C01F28CDDDF2800415EF6636A7A24D /* EXKeepAwake.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = EXKeepAwake.m; path = EXKeepAwake/EXKeepAwake.m; sourceTree = "<group>"; }; + 40C47DF61E35F4793300494752C3D210 /* RCTSurface.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTSurface.h; sourceTree = "<group>"; }; + 40CBD16B14C6A7178F68E9FD7E4623D7 /* REATransition.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = REATransition.h; sourceTree = "<group>"; }; + 40D332CAF4B62684CD18066ADA0D482F /* Malloc.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Malloc.h; path = folly/portability/Malloc.h; sourceTree = "<group>"; }; + 40E4547F4925B916A078D86AF0DE87BD /* ExceptionWrapper.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ExceptionWrapper.h; path = folly/ExceptionWrapper.h; sourceTree = "<group>"; }; + 40EF232A491348E8080175DEDE147BF5 /* thread_utils.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = thread_utils.h; path = src/utils/thread_utils.h; sourceTree = "<group>"; }; + 4122EFEF1D07D4D60C23EB15CC4596BB /* SafeAssert.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SafeAssert.h; path = folly/lang/SafeAssert.h; sourceTree = "<group>"; }; + 412784C7C3A0FA90CA9E2DAC98311092 /* Barrier.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Barrier.h; path = folly/futures/Barrier.h; sourceTree = "<group>"; }; + 412FDAE74620E2E0B7617F9F78CC6B19 /* QBAssetCell.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = QBAssetCell.m; path = ios/QBImagePicker/QBImagePicker/QBAssetCell.m; sourceTree = "<group>"; }; + 4149D187FBE5120B4A965DA5F457E6E7 /* Executor.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Executor.h; path = folly/Executor.h; sourceTree = "<group>"; }; + 4151E6E8CD22D62817BFD176F46C47B2 /* IOS7Polyfill.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = IOS7Polyfill.h; path = ios/IOS7Polyfill.h; sourceTree = "<group>"; }; + 4160C448C828C2C631B18EB34826A60B /* DistributedMutex-inl.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "DistributedMutex-inl.h"; path = "folly/synchronization/DistributedMutex-inl.h"; sourceTree = "<group>"; }; + 417426C714E7EDEE92C076113FA90A03 /* glog.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = glog.release.xcconfig; sourceTree = "<group>"; }; + 4185F2DE255EFC1DE8CECAB6BE208D5A /* FBLazyVector.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FBLazyVector.h; path = FBLazyVector/FBLazyVector.h; sourceTree = "<group>"; }; + 418764080E11C33C74227F5A2564D280 /* RCTDevSplitBundleLoader.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTDevSplitBundleLoader.h; path = React/CoreModules/RCTDevSplitBundleLoader.h; sourceTree = "<group>"; }; + 41A1883310E364AB6578BF70F7E91181 /* FontAwesome5_Regular.ttf */ = {isa = PBXFileReference; includeInIndex = 1; name = FontAwesome5_Regular.ttf; path = Fonts/FontAwesome5_Regular.ttf; sourceTree = "<group>"; }; + 41ABBA113585D0FB5DF0F328F057B6AB /* RCTI18nUtil.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTI18nUtil.h; sourceTree = "<group>"; }; + 41AE131494EC50667A17FD1C382326FB /* react-native-document-picker.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "react-native-document-picker.release.xcconfig"; sourceTree = "<group>"; }; + 41B65593E50D50EE5DA6B750C435C308 /* F14Map-fwd.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "F14Map-fwd.h"; path = "folly/container/F14Map-fwd.h"; sourceTree = "<group>"; }; + 41BD6D0275BCBDAEB649B23C65559D18 /* ARTSurfaceViewManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = ARTSurfaceViewManager.h; sourceTree = "<group>"; }; + 41C6B1BB014C97D2BB8355BC6BF3F4C1 /* FBLPromise+Catch.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "FBLPromise+Catch.h"; path = "Sources/FBLPromises/include/FBLPromise+Catch.h"; sourceTree = "<group>"; }; + 41C7DF93FE6BBC6A992A84170F904509 /* DelayedDestructionBase.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = DelayedDestructionBase.h; path = folly/io/async/DelayedDestructionBase.h; sourceTree = "<group>"; }; + 41CA4E123F9F9F6E4C41BD82BBC6D783 /* SysUio.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SysUio.h; path = folly/portability/SysUio.h; sourceTree = "<group>"; }; + 41CCDF90752D12DFAD23B93B05F28906 /* EXVideoThumbnails-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "EXVideoThumbnails-prefix.pch"; sourceTree = "<group>"; }; + 41D2649D951EA67D9849956E90AC00A5 /* DistributedMutex.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = DistributedMutex.cpp; path = folly/synchronization/DistributedMutex.cpp; sourceTree = "<group>"; }; + 41DF9C1BA38FCCA93950CA4977947BE9 /* RCTHTTPRequestHandler.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTHTTPRequestHandler.mm; sourceTree = "<group>"; }; + 41E0A2B112737D4AD08256D301DDD0BF /* EXFileSystemAssetLibraryHandler.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = EXFileSystemAssetLibraryHandler.h; path = EXFileSystem/EXFileSystemAssetLibraryHandler.h; sourceTree = "<group>"; }; + 41F17BC8036A205ECB9AAE78788049FA /* nanopb-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "nanopb-prefix.pch"; sourceTree = "<group>"; }; + 41F359E3D9B9BE9B9AC7515C18F685DF /* FBLPromise+Do.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "FBLPromise+Do.h"; path = "Sources/FBLPromises/include/FBLPromise+Do.h"; sourceTree = "<group>"; }; + 41FFB7E436C0A9942FB61D7A54FC2EB7 /* BugsnagBreadcrumbs.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BugsnagBreadcrumbs.h; sourceTree = "<group>"; }; + 42083A5D7C30970CA64E67A67A008624 /* GDTCOREvent+GDTCCTSupport.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "GDTCOREvent+GDTCCTSupport.h"; path = "GoogleDataTransport/GDTCCTLibrary/Public/GDTCOREvent+GDTCCTSupport.h"; sourceTree = "<group>"; }; + 421188BB62E77BEEEC88633D0C21785B /* GDTCORRegistrar_Private.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = GDTCORRegistrar_Private.h; path = GoogleDataTransport/GDTCORLibrary/Private/GDTCORRegistrar_Private.h; sourceTree = "<group>"; }; + 42245DA23C66C218041FCAC33FE9FBB5 /* RCTRawTextShadowView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTRawTextShadowView.m; sourceTree = "<group>"; }; + 42255A0747B67DE55BFC28AC63FA7534 /* RCTBlobManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTBlobManager.h; path = Libraries/Blob/RCTBlobManager.h; sourceTree = "<group>"; }; + 423DB5428013ECD6CDEB3C4BDD1D2426 /* ThreadedExecutor.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ThreadedExecutor.h; path = folly/executors/ThreadedExecutor.h; sourceTree = "<group>"; }; + 4249071496CFF721340193A51C6307E2 /* RNCConnectionState.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNCConnectionState.h; path = ios/RNCConnectionState.h; sourceTree = "<group>"; }; + 424CA68846CB2722AF9979E9AE569D5D /* CallbackOStream.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = CallbackOStream.h; sourceTree = "<group>"; }; + 424F10EC967B6C380103489098DDF958 /* FIRCLSApplicationIdentifierModel.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRCLSApplicationIdentifierModel.h; path = Crashlytics/Crashlytics/Settings/Models/FIRCLSApplicationIdentifierModel.h; sourceTree = "<group>"; }; + 42506B785CB3FAC1F0F284DDFD2EB379 /* RCTJSIExecutorRuntimeInstaller.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTJSIExecutorRuntimeInstaller.h; sourceTree = "<group>"; }; + 42739D7080FC15DE6779B5285FCB3C66 /* RCTDevLoadingViewSetEnabled.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTDevLoadingViewSetEnabled.m; sourceTree = "<group>"; }; + 4278803205CA14229C2CAFEFBF1DEDC8 /* react-native-orientation-locker-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "react-native-orientation-locker-prefix.pch"; sourceTree = "<group>"; }; + 42C48944D46CB7824BD189A80DFCD8D9 /* LICENSE */ = {isa = PBXFileReference; includeInIndex = 1; path = LICENSE; sourceTree = "<group>"; }; + 42F7B7B97204360BD8D3B5F9379FC544 /* RCTJSStackFrame.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTJSStackFrame.h; sourceTree = "<group>"; }; + 431FFEB87527809BC652981A82736970 /* HighlighterViewManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = HighlighterViewManager.h; sourceTree = "<group>"; }; + 433A8432857858E37AE10F9E545EACB1 /* SDImageCache.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = SDImageCache.m; path = SDWebImage/Core/SDImageCache.m; sourceTree = "<group>"; }; + 433BA9B523064975EF515515F6C1C261 /* RNCAppearanceProvider.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNCAppearanceProvider.h; path = ios/Appearance/RNCAppearanceProvider.h; sourceTree = "<group>"; }; + 4364FC67F9D8304BD684CD412D7A3FD2 /* RSocketServer.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RSocketServer.h; path = rsocket/RSocketServer.h; sourceTree = "<group>"; }; + 436D5E66CE980710C42CC88D6709A5C8 /* UMBarCodeScannerInterface.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = UMBarCodeScannerInterface.release.xcconfig; sourceTree = "<group>"; }; + 43706B6B95F90A70C0EB27D0F76F622D /* TimeoutManager.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = TimeoutManager.cpp; path = folly/io/async/TimeoutManager.cpp; sourceTree = "<group>"; }; + 4387D421C90A12EC6C311817E26C3F08 /* RCTTypeSafety.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = RCTTypeSafety.debug.xcconfig; sourceTree = "<group>"; }; + 438F9C3779F6BDA03A38EC647FD69CC2 /* log.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = log.cpp; path = yoga/log.cpp; sourceTree = "<group>"; }; + 4390CE2552863E877774374C52DB464E /* bufferevent_pair.c */ = {isa = PBXFileReference; includeInIndex = 1; path = bufferevent_pair.c; sourceTree = "<group>"; }; + 43932092163523A9D1CC5238C4522DE8 /* RuntimeAdapter.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; path = RuntimeAdapter.cpp; sourceTree = "<group>"; }; + 43AE178B9B5E4B3E30829F7F68433FB5 /* ScopeGuard.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = ScopeGuard.cpp; path = folly/ScopeGuard.cpp; sourceTree = "<group>"; }; + 43C4CD0611716D8B6B933C7734E356A8 /* SDImageCoder.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = SDImageCoder.m; path = SDWebImage/Core/SDImageCoder.m; sourceTree = "<group>"; }; + 43D7B64570C40DF6E8433A263BC61A23 /* FirebaseInstallations.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = FirebaseInstallations.release.xcconfig; sourceTree = "<group>"; }; + 43E90B5A1E03778013C7F43219A1F0BF /* File.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = File.h; path = folly/File.h; sourceTree = "<group>"; }; + 43FE1D1A36FFC54AF8CAFCC9E421B0D0 /* RCTImageViewManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTImageViewManager.h; path = Libraries/Image/RCTImageViewManager.h; sourceTree = "<group>"; }; 44036119557B4464513ACB6E0DD07799 /* Pods-NotificationService-umbrella.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "Pods-NotificationService-umbrella.h"; sourceTree = "<group>"; }; - 44122EACFF785CC25F182DF7C765E7E3 /* RNLocalize.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = RNLocalize.debug.xcconfig; sourceTree = "<group>"; }; - 44146B6A81E627EDACB9809D2DD4EB2A /* CompileJS.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = CompileJS.h; path = destroot/include/hermes/CompileJS.h; sourceTree = "<group>"; }; - 441502CC4AA123448A17A4F45A9351DD /* RCTAssert.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTAssert.m; sourceTree = "<group>"; }; - 441EAB302C099E80DE9A5B559150B9ED /* FIRCLSOnboardingOperation.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRCLSOnboardingOperation.m; path = Crashlytics/Crashlytics/Settings/Operations/FIRCLSOnboardingOperation.m; sourceTree = "<group>"; }; - 442D2F71BDC5E59CA5DF4FA8490BFFD9 /* EXKeepAwake.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = EXKeepAwake.m; path = EXKeepAwake/EXKeepAwake.m; sourceTree = "<group>"; }; - 442ECB432E7884203A62F2A6522EF418 /* GTest.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = GTest.h; path = folly/portability/GTest.h; sourceTree = "<group>"; }; - 443779677599696911099703F1E27B42 /* React-cxxreact.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "React-cxxreact.debug.xcconfig"; sourceTree = "<group>"; }; - 444A46906D8E12F1A3B33616C40E9FE0 /* UncaughtExceptions.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = UncaughtExceptions.h; path = folly/lang/UncaughtExceptions.h; sourceTree = "<group>"; }; - 445FC593F30485717EBE305592618FD6 /* QBCheckmarkView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = QBCheckmarkView.m; path = ios/QBImagePicker/QBImagePicker/QBCheckmarkView.m; sourceTree = "<group>"; }; - 44747932CB8EA27D3A71CBE61CC868EB /* RNImageCropPicker-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "RNImageCropPicker-dummy.m"; sourceTree = "<group>"; }; - 44849A07404CF4A3B58A4DA314A75331 /* RCTRsa.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTRsa.h; path = ios/RCTCrypto/RCTRsa.h; sourceTree = "<group>"; }; - 44CDC77F327D712E76506179E42099DA /* backward_references_cost_enc.c */ = {isa = PBXFileReference; includeInIndex = 1; name = backward_references_cost_enc.c; path = src/enc/backward_references_cost_enc.c; sourceTree = "<group>"; }; - 44D271098B5BCC88549B07E033D7938E /* ManualTimekeeper.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = ManualTimekeeper.cpp; path = folly/futures/ManualTimekeeper.cpp; sourceTree = "<group>"; }; - 44D4034EE561C21C1F6F12E807E4ABC5 /* RCTMultilineTextInputViewManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTMultilineTextInputViewManager.m; sourceTree = "<group>"; }; - 44F48B8158CB28A50A3532A4FA69E365 /* FBLPromise+All.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "FBLPromise+All.h"; path = "Sources/FBLPromises/include/FBLPromise+All.h"; sourceTree = "<group>"; }; - 450830B6145DACC4C6D5A7DC4011A9DB /* Uri-inl.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "Uri-inl.h"; path = "folly/Uri-inl.h"; sourceTree = "<group>"; }; - 45194B070A74DA7215769FF55734FF1C /* TcpConnectionAcceptor.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = TcpConnectionAcceptor.cpp; path = rsocket/transports/tcp/TcpConnectionAcceptor.cpp; sourceTree = "<group>"; }; - 45269C5EE793D1B620BDCB32BD86F9FA /* IOBuf.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = IOBuf.cpp; path = folly/io/IOBuf.cpp; sourceTree = "<group>"; }; - 452CC8CE14DB69F8B48468BE79829A20 /* rescaler_mips_dsp_r2.c */ = {isa = PBXFileReference; includeInIndex = 1; name = rescaler_mips_dsp_r2.c; path = src/dsp/rescaler_mips_dsp_r2.c; sourceTree = "<group>"; }; - 4535D92010F9CAB039FDCFF9CD6BA233 /* UMReactNativeEventEmitter.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = UMReactNativeEventEmitter.m; sourceTree = "<group>"; }; - 453EE913EAEECD3E8429629404148DE5 /* ht-internal.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "ht-internal.h"; sourceTree = "<group>"; }; - 45420B71146AFC154A4B2DF43AD79E2B /* bit_reader_utils.c */ = {isa = PBXFileReference; includeInIndex = 1; name = bit_reader_utils.c; path = src/utils/bit_reader_utils.c; sourceTree = "<group>"; }; - 4546ECEAF10646D27459F8AFDD145330 /* RCTRequired.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTRequired.h; path = RCTRequired/RCTRequired.h; sourceTree = "<group>"; }; - 454A520F2F73FC2B2E8C35BC65566A9B /* RNLocalize.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = RNLocalize.release.xcconfig; sourceTree = "<group>"; }; - 454E9EA0FB4C60C3075490BC8A0DE5D9 /* FIRCLSReport_Private.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRCLSReport_Private.h; path = Crashlytics/Crashlytics/Models/FIRCLSReport_Private.h; sourceTree = "<group>"; }; - 4559436A7956CE8D06BFF9273BCC41CB /* EXKeepAwake-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "EXKeepAwake-prefix.pch"; sourceTree = "<group>"; }; - 45688CB7F4790EFA9F1BA88B21774843 /* double-conversion.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "double-conversion.h"; path = "double-conversion/double-conversion.h"; sourceTree = "<group>"; }; - 457BF153D04F4820C937FA37AFCD368D /* bufferevent.c */ = {isa = PBXFileReference; includeInIndex = 1; path = bufferevent.c; sourceTree = "<group>"; }; - 45819A60A49C114E82122B36C16F91E0 /* RSocketResponder.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = RSocketResponder.cpp; path = rsocket/RSocketResponder.cpp; sourceTree = "<group>"; }; - 459058C8C420DB25AC00366251542B31 /* GDTCORTransformer.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = GDTCORTransformer.h; path = GoogleDataTransport/GDTCORLibrary/Private/GDTCORTransformer.h; sourceTree = "<group>"; }; - 45933FD560F9D023DC39B0A5D8792B0B /* FIRCLSURLSessionAvailability.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRCLSURLSessionAvailability.h; path = Crashlytics/Crashlytics/FIRCLSURLSession/FIRCLSURLSessionAvailability.h; sourceTree = "<group>"; }; - 45ADF538F25776E64060B02AABA07AF4 /* EXConstants.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = EXConstants.release.xcconfig; sourceTree = "<group>"; }; - 45AFBA3BB759B887B744ADC25D4DF6D7 /* FlipperResponderImpl.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FlipperResponderImpl.h; path = xplat/Flipper/FlipperResponderImpl.h; sourceTree = "<group>"; }; - 45CA01141554D9AC3DBB8776F286FFEC /* REAFunctionNode.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = REAFunctionNode.m; sourceTree = "<group>"; }; - 45CBAD2BE825C521ABDEF3571C99DFF1 /* UMImageLoaderInterface.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = UMImageLoaderInterface.podspec; sourceTree = "<group>"; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; - 45DF22CFEC6C88AEF4D15C665F595E8A /* RNFBApp.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = RNFBApp.debug.xcconfig; sourceTree = "<group>"; }; - 462C48E8BA7700B5491CB4AB994C7950 /* DiscriminatedPtrDetail.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = DiscriminatedPtrDetail.h; path = folly/detail/DiscriminatedPtrDetail.h; sourceTree = "<group>"; }; - 463B9B93FEF2AB780CA5E2E4FC38E86E /* GDTCORClock.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = GDTCORClock.h; path = GoogleDataTransport/GDTCORLibrary/Public/GDTCORClock.h; sourceTree = "<group>"; }; - 463C40BF9D263B0F0FFCC31EBEE4F3DD /* dec_sse2.c */ = {isa = PBXFileReference; includeInIndex = 1; name = dec_sse2.c; path = src/dsp/dec_sse2.c; sourceTree = "<group>"; }; - 463EAB7F09AAE5365F3A56A8C90295A1 /* RNFetchBlobRequest.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNFetchBlobRequest.m; path = ios/RNFetchBlobRequest.m; sourceTree = "<group>"; }; - 463FD6CE5E4650310F45D38D814546AB /* REAStyleNode.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = REAStyleNode.h; sourceTree = "<group>"; }; - 46472793B74C28B0DD2EFD7560D4848A /* Subscriber.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Subscriber.h; path = yarpl/flowable/Subscriber.h; sourceTree = "<group>"; }; - 4647C9AE1DB91B4C22C79A10ACFCDDC6 /* fast-dtoa.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "fast-dtoa.h"; path = "double-conversion/fast-dtoa.h"; sourceTree = "<group>"; }; - 464D88FB4501E834EE17D24AF6A393EF /* FIRCLSCrashedMarkerFile.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRCLSCrashedMarkerFile.h; path = Crashlytics/Crashlytics/Components/FIRCLSCrashedMarkerFile.h; sourceTree = "<group>"; }; - 4650214C8D06B983E210DAE986824CDF /* FIRCLSMachException.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRCLSMachException.h; path = Crashlytics/Crashlytics/Handlers/FIRCLSMachException.h; sourceTree = "<group>"; }; - 4652354732BAAD1E1BF37A644FBCFB1D /* DefaultKeepAliveExecutor.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = DefaultKeepAliveExecutor.h; path = folly/DefaultKeepAliveExecutor.h; sourceTree = "<group>"; }; - 4657CCCB92CCDDA25EF0802548198033 /* WriteChainAsyncTransportWrapper.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = WriteChainAsyncTransportWrapper.h; path = folly/io/async/WriteChainAsyncTransportWrapper.h; sourceTree = "<group>"; }; - 466E3D289B88C4EDE7CC37D8C9EEC208 /* EventHandler.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = EventHandler.h; path = folly/io/async/EventHandler.h; sourceTree = "<group>"; }; - 4670D8DA5D87EEFC41A8D2E7E4631AC8 /* BugsnagBreadcrumb.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BugsnagBreadcrumb.h; sourceTree = "<group>"; }; - 467A1C2E44EBBD5913A8C578602C5AAE /* EXVideoThumbnails-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "EXVideoThumbnails-dummy.m"; sourceTree = "<group>"; }; - 467EFFCEBA0775F7D87CA343E87134AF /* ThreadCachedInts.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ThreadCachedInts.h; path = folly/synchronization/detail/ThreadCachedInts.h; sourceTree = "<group>"; }; - 4687F8325AF288C107CAFE8BE316EEDD /* DistributedMutexSpecializations.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = DistributedMutexSpecializations.h; path = folly/synchronization/DistributedMutexSpecializations.h; sourceTree = "<group>"; }; - 469009AF4E41FD57592E38B8933095BE /* upsampling_neon.c */ = {isa = PBXFileReference; includeInIndex = 1; name = upsampling_neon.c; path = src/dsp/upsampling_neon.c; sourceTree = "<group>"; }; - 469FC656713290E03642BE6E71A20834 /* ObservableDoOperator.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ObservableDoOperator.h; path = yarpl/observable/ObservableDoOperator.h; sourceTree = "<group>"; }; - 46B53E77B1FA9966C50B3BF377B08F20 /* GCDAsyncUdpSocket.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = GCDAsyncUdpSocket.m; path = Source/GCD/GCDAsyncUdpSocket.m; sourceTree = "<group>"; }; - 46B626453142EFDFCD5CFFCB077A10B4 /* React-RCTVibration.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = "React-RCTVibration.podspec"; sourceTree = "<group>"; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; - 46BA6E771CACE78454D8AA68F8424498 /* GDTCCTUploader.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = GDTCCTUploader.m; path = GoogleDataTransportCCTSupport/GDTCCTLibrary/GDTCCTUploader.m; sourceTree = "<group>"; }; - 46BED2DF70C6BAE76102F1EED1551686 /* IPAddress.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = IPAddress.h; path = folly/IPAddress.h; sourceTree = "<group>"; }; - 46CD1A9F5FC1F1EAE2FBD43827A6D039 /* IPAddressV6.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = IPAddressV6.cpp; path = folly/IPAddressV6.cpp; sourceTree = "<group>"; }; - 46CDBAA05655D7D881FA38D4BD265FF0 /* ProxyLockable.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ProxyLockable.h; path = folly/synchronization/detail/ProxyLockable.h; sourceTree = "<group>"; }; - 46F8E31A46FEC6CF9983BA7069B34C96 /* RNJitsiMeetView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNJitsiMeetView.h; path = ios/RNJitsiMeetView.h; sourceTree = "<group>"; }; - 470178089A8B574E25BA6E16B07CA254 /* TurboModuleBinding.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = TurboModuleBinding.h; sourceTree = "<group>"; }; - 47104D1984A5C2F25BE8C9292B94B0AB /* installation.md */ = {isa = PBXFileReference; includeInIndex = 1; name = installation.md; path = docs/installation.md; sourceTree = "<group>"; }; - 471436C5FCF70211E89590CF81E793B6 /* UMPermissionsMethodsDelegate.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = UMPermissionsMethodsDelegate.h; path = UMPermissionsInterface/UMPermissionsMethodsDelegate.h; sourceTree = "<group>"; }; - 4719575195AD664C0B7ABD653A1ABDB6 /* Cursor-inl.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "Cursor-inl.h"; path = "folly/io/Cursor-inl.h"; sourceTree = "<group>"; }; - 472D02EEF0092AF824E9106FFB083347 /* Executor.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = Executor.cpp; path = folly/Executor.cpp; sourceTree = "<group>"; }; - 473EAED02F9A9B0273273EC3A0DC6C8F /* SDImageCoderHelper.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SDImageCoderHelper.h; path = SDWebImage/Core/SDImageCoderHelper.h; sourceTree = "<group>"; }; - 475F5E2ABC28DCE812339550EE14A300 /* SimpleLineIcons.ttf */ = {isa = PBXFileReference; includeInIndex = 1; name = SimpleLineIcons.ttf; path = Fonts/SimpleLineIcons.ttf; sourceTree = "<group>"; }; - 4769820499D04031C91A6FC6F516BD20 /* FirebaseCoreInternal.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FirebaseCoreInternal.h; path = FirebaseCore/Sources/Private/FirebaseCoreInternal.h; sourceTree = "<group>"; }; - 4773ED3ABA888E69EA224359149F325D /* UIView+Yoga.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "UIView+Yoga.m"; path = "YogaKit/Source/UIView+Yoga.m"; sourceTree = "<group>"; }; - 478A05532884A912CEC3CE2A3FBFBDAB /* RNSScreen.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNSScreen.h; path = ios/RNSScreen.h; sourceTree = "<group>"; }; - 478DF8C445CCDF77B39FA9B32149D61C /* RCTVirtualTextShadowView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTVirtualTextShadowView.h; sourceTree = "<group>"; }; - 479E5A6756BD9FAFAF7BDE8B58EA1D30 /* RCTWebSocketModule.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTWebSocketModule.h; path = React/CoreModules/RCTWebSocketModule.h; sourceTree = "<group>"; }; - 47AB360C660F2545750D62C057AECBF9 /* GDTCORTransport.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = GDTCORTransport.m; path = GoogleDataTransport/GDTCORLibrary/GDTCORTransport.m; sourceTree = "<group>"; }; - 47C809345916A8DA682664885653FA91 /* AtomicUtil.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = AtomicUtil.h; path = folly/synchronization/AtomicUtil.h; sourceTree = "<group>"; }; - 47C84FA9DBDB8034B972C27156F21F00 /* Merge.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Merge.h; path = folly/container/Merge.h; sourceTree = "<group>"; }; - 48040670F59DBB3F85B5BDCCA8100CAC /* DynamicParser.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = DynamicParser.h; path = folly/experimental/DynamicParser.h; sourceTree = "<group>"; }; - 480AA8188F9EA701921324A062433032 /* ARTGroup.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ARTGroup.h; path = ios/ARTGroup.h; sourceTree = "<group>"; }; - 482C6BFEBA32EB9077DAFBC6513FFC1D /* GDTCORRegistrar.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = GDTCORRegistrar.m; path = GoogleDataTransport/GDTCORLibrary/GDTCORRegistrar.m; sourceTree = "<group>"; }; - 4835786E04114DA8AC9459D9771373BF /* TOCropToolbar.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = TOCropToolbar.m; path = "Objective-C/TOCropViewController/Views/TOCropToolbar.m"; sourceTree = "<group>"; }; - 4836A09444BBA1E2ED8276289A682230 /* GlobalExecutor.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = GlobalExecutor.h; path = folly/executors/GlobalExecutor.h; sourceTree = "<group>"; }; + 440C948F725E90FEEDE4736FEB50E0A5 /* HazptrThreadPoolExecutor.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = HazptrThreadPoolExecutor.cpp; path = folly/synchronization/HazptrThreadPoolExecutor.cpp; sourceTree = "<group>"; }; + 442B92926142419FF37F3A3BE515EE45 /* RCTLayoutAnimationGroup.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTLayoutAnimationGroup.h; sourceTree = "<group>"; }; + 4449FDDF4708DFF964DACA95B2ED2E07 /* FlipperKit.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = FlipperKit.debug.xcconfig; sourceTree = "<group>"; }; + 4461B980BF294265D94A5EEFB7E0810C /* TypeInfo.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = TypeInfo.h; path = folly/lang/TypeInfo.h; sourceTree = "<group>"; }; + 44625E798DB2E675CC7B1FA051978473 /* React-CoreModules.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "React-CoreModules.debug.xcconfig"; sourceTree = "<group>"; }; + 448EE70C74D8056C9F32589D95374F71 /* EventCount.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = EventCount.h; path = folly/experimental/EventCount.h; sourceTree = "<group>"; }; + 44901D29FC22E4DDAEBEA19E8416A2A2 /* BSGConfigurationBuilder.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = BSGConfigurationBuilder.m; sourceTree = "<group>"; }; + 449670A175F67D16EF2471FDD5F80337 /* BSGEventUploadObjectOperation.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = BSGEventUploadObjectOperation.m; sourceTree = "<group>"; }; + 449B4459F9705E22D67741CAC04186C4 /* EXSessionResumableDownloadTaskDelegate.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = EXSessionResumableDownloadTaskDelegate.h; sourceTree = "<group>"; }; + 44AAFFEF5C348699BCAC4CDE634AF2B7 /* SDImageAPNGCoder.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = SDImageAPNGCoder.m; path = SDWebImage/Core/SDImageAPNGCoder.m; sourceTree = "<group>"; }; + 44CEFBA0D4AAB91C0DFEF42E28238C78 /* FIROptionsInternal.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIROptionsInternal.h; path = FirebaseCore/Sources/Private/FIROptionsInternal.h; sourceTree = "<group>"; }; + 44ED5289A0AEC6C4A0076A0D63358700 /* SDImageCacheConfig.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = SDImageCacheConfig.m; path = SDWebImage/Core/SDImageCacheConfig.m; sourceTree = "<group>"; }; + 44FA5CD654181862693CEFDF5E39EBEA /* FIRCLSUtility.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRCLSUtility.m; path = Crashlytics/Crashlytics/Helpers/FIRCLSUtility.m; sourceTree = "<group>"; }; + 450E3ABB4C2C35CB59BA0E0CFD2EBB8C /* logging.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = logging.cc; path = src/logging.cc; sourceTree = "<group>"; }; + 451A4DC3ECA60617ECD97A3513BABDC4 /* IPAddressException.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = IPAddressException.h; path = folly/IPAddressException.h; sourceTree = "<group>"; }; + 45413EFE81C6EE013732FA63E6BD552F /* JitsiMeetSDK.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = JitsiMeetSDK.debug.xcconfig; sourceTree = "<group>"; }; + 4544125EE98D84583B44B0914EDC9E8C /* FIRAEvent+Internal.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "FIRAEvent+Internal.m"; path = "Crashlytics/Crashlytics/Helpers/FIRAEvent+Internal.m"; sourceTree = "<group>"; }; + 4545CC6BBD253B776261180B046852C7 /* RCTLogBox.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTLogBox.h; path = React/CoreModules/RCTLogBox.h; sourceTree = "<group>"; }; + 45536C4FE070219E8587C7C80FA8CE13 /* BugsnagConfiguration+Private.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "BugsnagConfiguration+Private.h"; sourceTree = "<group>"; }; + 4592053D0C68A602C15997E94C66E667 /* Align.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Align.h; path = folly/lang/Align.h; sourceTree = "<group>"; }; + 4595C87584F3E8A399866B5CD8A8EC2C /* RNImageCropPicker.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = RNImageCropPicker.debug.xcconfig; sourceTree = "<group>"; }; + 4597FB90204FAE8ED591532A95E0A588 /* FIRAValue.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRAValue.h; path = Crashlytics/Crashlytics/Helpers/FIRAValue.h; sourceTree = "<group>"; }; + 459A1664B57098D65E6B587BEFD0BED1 /* UncaughtExceptions.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = UncaughtExceptions.h; path = folly/lang/UncaughtExceptions.h; sourceTree = "<group>"; }; + 45CD2A50538B4ADE29ED0A92D70B4BD8 /* HazptrRec.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = HazptrRec.h; path = folly/synchronization/HazptrRec.h; sourceTree = "<group>"; }; + 45F742A342CFA03B6BF8A6D4A5B2680A /* React-Core-umbrella.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "React-Core-umbrella.h"; sourceTree = "<group>"; }; + 4616D34D955F7E108D277F6B23866EDF /* FIRCLSReportAdapter.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRCLSReportAdapter.h; path = Crashlytics/Crashlytics/Models/Record/FIRCLSReportAdapter.h; sourceTree = "<group>"; }; + 461DDB2F665137904F28D0745041C260 /* ThreadCachedInts.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ThreadCachedInts.h; path = folly/synchronization/detail/ThreadCachedInts.h; sourceTree = "<group>"; }; + 469ECA85ADFCA60DC94EEDA8ACE737AC /* SKInvalidation.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = SKInvalidation.m; path = iOS/Plugins/FlipperKitLayoutPlugin/FlipperKitLayoutPlugin/SKInvalidation.m; sourceTree = "<group>"; }; + 469FF7671FEE57BEFA02CBB9FE28E1AD /* SynchronizedPtr.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SynchronizedPtr.h; path = folly/SynchronizedPtr.h; sourceTree = "<group>"; }; + 46A553DD6A6E77F85A2607C819C345CF /* F14Map-fwd.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "F14Map-fwd.h"; path = "folly/container/F14Map-fwd.h"; sourceTree = "<group>"; }; + 46BBC9B222608E0E230078D3521E37A2 /* EDFThreadPoolExecutor.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = EDFThreadPoolExecutor.h; path = folly/executors/EDFThreadPoolExecutor.h; sourceTree = "<group>"; }; + 46CB54232CFB0ED9B228412CFB467B26 /* MessageInterfaces.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = MessageInterfaces.h; sourceTree = "<group>"; }; + 46D20B68B02C602D5A8962FAB8EF7F0C /* RCTDivisionAnimatedNode.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTDivisionAnimatedNode.h; sourceTree = "<group>"; }; + 46D8AFCB9404B9613D562E0D7C40D619 /* RNFetchBlobReqBuilder.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNFetchBlobReqBuilder.m; path = ios/RNFetchBlobReqBuilder.m; sourceTree = "<group>"; }; + 46EAC0AC31101B2379FEEB2A22CF1E41 /* FBLPromise+Timeout.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "FBLPromise+Timeout.h"; path = "Sources/FBLPromises/include/FBLPromise+Timeout.h"; sourceTree = "<group>"; }; + 46F3F1C851C4F1718F9AE51BB978AA5E /* RuntimeConfig.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RuntimeConfig.h; path = destroot/include/hermes/Public/RuntimeConfig.h; sourceTree = "<group>"; }; + 4702F8B4394700B876E6EC9AA10B126F /* CoreCachedSharedPtr.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = CoreCachedSharedPtr.h; path = folly/concurrency/CoreCachedSharedPtr.h; sourceTree = "<group>"; }; + 471959F080EB5F6566C9E165FCADA6E7 /* DistributedMutexSpecializations.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = DistributedMutexSpecializations.h; path = folly/synchronization/DistributedMutexSpecializations.h; sourceTree = "<group>"; }; + 47209F5C4D4AA093F63BFB56CCEB7FB3 /* double-conversion.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = "double-conversion.cc"; path = "double-conversion/double-conversion.cc"; sourceTree = "<group>"; }; + 472E01C9AEC8C9FAB8778EBCF77E0177 /* InterProcessLock.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = InterProcessLock.cpp; path = Core/InterProcessLock.cpp; sourceTree = "<group>"; }; + 473033DCB389A4E126D78CEC8D1C991C /* IPAddressV4.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = IPAddressV4.h; path = folly/IPAddressV4.h; sourceTree = "<group>"; }; + 4743B6A02FF67662103272A46445056D /* kqueue.c */ = {isa = PBXFileReference; includeInIndex = 1; path = kqueue.c; sourceTree = "<group>"; }; + 47503253566B817495A9571A4504D672 /* RCTCrypto-Bridging-Header.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "RCTCrypto-Bridging-Header.h"; path = "ios/RCTCrypto/RCTCrypto-Bridging-Header.h"; sourceTree = "<group>"; }; + 4750A4F4690455F89FDBEAB617A89513 /* ScopedTraceSection.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ScopedTraceSection.h; path = folly/tracing/ScopedTraceSection.h; sourceTree = "<group>"; }; + 47B559BFBCF636CFBDC81F7897E603B7 /* React-jsi-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "React-jsi-prefix.pch"; sourceTree = "<group>"; }; + 47C1A97C92EC5E34F7FCA9F0E7153EF6 /* EXAppleAuthentication-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "EXAppleAuthentication-dummy.m"; sourceTree = "<group>"; }; + 47D1C4AC4F29506B214B76E2918AFF10 /* SKIOSNetworkAdapter.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SKIOSNetworkAdapter.h; path = iOS/Plugins/FlipperKitNetworkPlugin/SKIOSNetworkPlugin/SKIOSNetworkAdapter.h; sourceTree = "<group>"; }; + 47D67583AB2B5BD4A0CAFCB9231D1F7C /* RCTI18nUtil.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTI18nUtil.m; sourceTree = "<group>"; }; + 47DB520D98397A3D722723735A2DFF93 /* React-perflogger.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "React-perflogger.release.xcconfig"; sourceTree = "<group>"; }; + 47DC74C70FADE5A2C3FC4104F57341ED /* EXAppleAuthenticationMappings.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = EXAppleAuthenticationMappings.m; path = EXAppleAuthentication/EXAppleAuthenticationMappings.m; sourceTree = "<group>"; }; + 47E44FE3B7B28418834F7B5C5BFF4526 /* rn-extensions-share.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = "rn-extensions-share.podspec"; sourceTree = "<group>"; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; + 48015236B93E01880EC193330B870139 /* EXHaptics-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "EXHaptics-dummy.m"; sourceTree = "<group>"; }; + 4807090FD5FCE064FDD184B3B1CA0D10 /* FlipperCertificateExchangeMedium.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FlipperCertificateExchangeMedium.h; path = xplat/Flipper/FlipperCertificateExchangeMedium.h; sourceTree = "<group>"; }; + 480F651048CB68CD4A41142E6C94189C /* Observer.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Observer.h; path = yarpl/observable/Observer.h; sourceTree = "<group>"; }; + 4828A9C2DD4992FE17E2DD6ABF34B4F2 /* RNCWKProcessPoolManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNCWKProcessPoolManager.m; path = apple/RNCWKProcessPoolManager.m; sourceTree = "<group>"; }; + 483A424645C643C6F62273D264C9C012 /* AtomicStruct.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = AtomicStruct.h; path = folly/synchronization/AtomicStruct.h; sourceTree = "<group>"; }; + 483DE237053E6501C418813E704C1737 /* UMCore.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = UMCore.release.xcconfig; sourceTree = "<group>"; }; + 483E6694416C54375E0EA371B5DD1552 /* Unicode.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = Unicode.cpp; path = folly/Unicode.cpp; sourceTree = "<group>"; }; + 483F8E42C9BEC85E9A2A759A9A894DE3 /* RCTSurfaceView+Internal.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "RCTSurfaceView+Internal.h"; sourceTree = "<group>"; }; 48425DA2F01D82A20786D5E55E264A29 /* libreact-native-orientation-locker.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; name = "libreact-native-orientation-locker.a"; path = "libreact-native-orientation-locker.a"; sourceTree = BUILT_PRODUCTS_DIR; }; - 484E5B8BC9CBD9EC6129C95BC0566EA4 /* FirebaseCoreDiagnostics-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "FirebaseCoreDiagnostics-dummy.m"; sourceTree = "<group>"; }; - 485C781CBCAEAD3D09B21CB983E20236 /* MapUtil.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = MapUtil.h; path = folly/MapUtil.h; sourceTree = "<group>"; }; - 486C74AA4878D5F7A4C090DB04C9CE3B /* AtomicRef.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = AtomicRef.h; path = folly/synchronization/AtomicRef.h; sourceTree = "<group>"; }; - 48703AABCD31CFFBC91011A16BF55EEC /* YGLayout+Private.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "YGLayout+Private.h"; path = "YogaKit/Source/YGLayout+Private.h"; sourceTree = "<group>"; }; - 487D1690697E71AB3608BBB1B971C59D /* FIRInstallationsSingleOperationPromiseCache.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRInstallationsSingleOperationPromiseCache.m; path = FirebaseInstallations/Source/Library/InstallationsIDController/FIRInstallationsSingleOperationPromiseCache.m; sourceTree = "<group>"; }; - 4881DB0D5458E784FDA1D1DB2C6C66BD /* HighlighterViewManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = HighlighterViewManager.m; sourceTree = "<group>"; }; - 48ABB4CD1CC777F2F66B8C111701D150 /* RNReanimated-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "RNReanimated-prefix.pch"; sourceTree = "<group>"; }; - 48D3CB40A59D83C6E945D88CC2CC0214 /* Launder.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Launder.h; path = folly/lang/Launder.h; sourceTree = "<group>"; }; - 48FF49A5736D3E0E27EEF1C0B1B69DEE /* RCTConvert+Transform.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "RCTConvert+Transform.m"; sourceTree = "<group>"; }; - 49223835FFBCC772834BC23A41BF7AE6 /* Random.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = Random.cpp; path = folly/Random.cpp; sourceTree = "<group>"; }; - 492C2F67A9C418ADE27FE61B3781B974 /* RCTWrapperViewController.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTWrapperViewController.h; sourceTree = "<group>"; }; - 4931A8E8445EAB969B58E1A2F8890A80 /* RNGestureHandlerButton.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNGestureHandlerButton.m; path = ios/RNGestureHandlerButton.m; sourceTree = "<group>"; }; - 493DCB98EA5DCFD10DAB11CBB5E00622 /* GMock.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = GMock.h; path = folly/portability/GMock.h; sourceTree = "<group>"; }; - 493FC93BC275FAAD101E6DE53C3A6E29 /* SKStateUpdateCPPWrapper.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SKStateUpdateCPPWrapper.h; path = iOS/FlipperKit/SKStateUpdateCPPWrapper.h; sourceTree = "<group>"; }; - 494B50D5D5537B2B9842B43BE6116BEE /* CxxModule.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = CxxModule.h; sourceTree = "<group>"; }; - 494B87A43A32CA29805FA67042D33BDE /* dec_msa.c */ = {isa = PBXFileReference; includeInIndex = 1; name = dec_msa.c; path = src/dsp/dec_msa.c; sourceTree = "<group>"; }; + 4855563978F494CAF5E970F8E2AB7688 /* MemoryFile_Android.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = MemoryFile_Android.cpp; path = Core/MemoryFile_Android.cpp; sourceTree = "<group>"; }; + 485F68542A6832FF808DCE943EA92FF1 /* IPAddress.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = IPAddress.h; path = folly/detail/IPAddress.h; sourceTree = "<group>"; }; + 48608F85407523C563F08E0A856774F2 /* react-native-jitsi-meet.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = "react-native-jitsi-meet.podspec"; sourceTree = "<group>"; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; + 4862C88581F94CFA64355B637B32BFAB /* types.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = types.h; path = src/webp/types.h; sourceTree = "<group>"; }; + 486A73BDF336231C8B943E010DC27CFD /* RCTUIManagerObserverCoordinator.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTUIManagerObserverCoordinator.mm; sourceTree = "<group>"; }; + 4886B5D5B38A14525A2E22C9C9E0B877 /* RCTSurfaceRootShadowViewDelegate.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTSurfaceRootShadowViewDelegate.h; sourceTree = "<group>"; }; + 488ABFD1C82D6609EA54219704B79029 /* FIRVersion.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRVersion.h; path = FirebaseCore/Sources/FIRVersion.h; sourceTree = "<group>"; }; + 489D974C89DEF6F6C71D3872B05C2503 /* Aes.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = Aes.h; sourceTree = "<group>"; }; + 489F45F96C3CA3020DDAC6A5D4168536 /* SwappableEventBase.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = SwappableEventBase.cpp; path = rsocket/internal/SwappableEventBase.cpp; sourceTree = "<group>"; }; + 48B51B86DAF54784EBC1CBCF0CB636FF /* UMPermissionsInterface.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = UMPermissionsInterface.release.xcconfig; sourceTree = "<group>"; }; + 48B530767956A8A0A2ADE12FA08286EC /* GLog.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = GLog.h; path = folly/GLog.h; sourceTree = "<group>"; }; + 48C31898E70111242D31300C57B41592 /* RCTScrollEvent.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTScrollEvent.m; sourceTree = "<group>"; }; + 48CC86A9C89E089A633B393E947C6B89 /* GDTCORLifecycle.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = GDTCORLifecycle.m; path = GoogleDataTransport/GDTCORLibrary/GDTCORLifecycle.m; sourceTree = "<group>"; }; + 48D8B573FAFDCBAEC2E0C9E47D554EF7 /* DelayedDestructionBase.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = DelayedDestructionBase.h; path = folly/io/async/DelayedDestructionBase.h; sourceTree = "<group>"; }; + 48EBD311B6C883948527E87141FD06B9 /* BugsnagApp.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BugsnagApp.h; sourceTree = "<group>"; }; + 48F05A44C3DE98AD7CC3C95E6DF15BB3 /* ExceptionWrapper.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = ExceptionWrapper.cpp; path = folly/ExceptionWrapper.cpp; sourceTree = "<group>"; }; + 48F70B53C832715C518D8865142EA37D /* UMAppLoader.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = UMAppLoader.debug.xcconfig; sourceTree = "<group>"; }; + 490F194BB4F495CE504FE3E4396922DD /* ThreadLocal.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ThreadLocal.h; path = folly/ThreadLocal.h; sourceTree = "<group>"; }; + 491C5D7F7B430ED97EF27D740A624972 /* FIRCLSUnwind_x86.c */ = {isa = PBXFileReference; includeInIndex = 1; name = FIRCLSUnwind_x86.c; path = Crashlytics/Crashlytics/Unwind/FIRCLSUnwind_x86.c; sourceTree = "<group>"; }; + 491CD68B832FDF4FDCF19475E6257212 /* README.md */ = {isa = PBXFileReference; includeInIndex = 1; path = README.md; sourceTree = "<group>"; }; + 491D7E76386CC39B7D3DA418C8BDF3F3 /* Bugsnag.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = Bugsnag.m; sourceTree = "<group>"; }; + 492208BA50FEC02B8F120B496081CF9C /* GDTCCTUploader.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = GDTCCTUploader.h; path = GoogleDataTransport/GDTCCTLibrary/Private/GDTCCTUploader.h; sourceTree = "<group>"; }; + 49273B805FECCA94AFCB75F5897229BE /* EXConstantsService.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = EXConstantsService.m; path = EXConstants/EXConstantsService.m; sourceTree = "<group>"; }; + 49289D827816FBB4F965723871C61FF4 /* FlipperCppBridgingConnection.mm */ = {isa = PBXFileReference; includeInIndex = 1; name = FlipperCppBridgingConnection.mm; path = iOS/FlipperKit/CppBridge/FlipperCppBridgingConnection.mm; sourceTree = "<group>"; }; + 492D48AF74729A935712F1EF4A9D7E68 /* RCTSlider.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTSlider.h; sourceTree = "<group>"; }; + 492D4D8C096AF085C5431C9BD45D860C /* CodedInputDataCrypt.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = CodedInputDataCrypt.h; path = Core/CodedInputDataCrypt.h; sourceTree = "<group>"; }; + 494CD3A819FA31DFDF1577C07F29B117 /* AsyncServerSocket.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = AsyncServerSocket.h; path = folly/io/async/AsyncServerSocket.h; sourceTree = "<group>"; }; 494E934B4070A029E1A8D42C9BDF4646 /* libEXImageLoader.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; name = libEXImageLoader.a; path = libEXImageLoader.a; sourceTree = BUILT_PRODUCTS_DIR; }; - 495EB46C90284196792D3BC2F73D02C9 /* TOCropViewControllerTransitioning.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = TOCropViewControllerTransitioning.h; path = "Objective-C/TOCropViewController/Models/TOCropViewControllerTransitioning.h"; sourceTree = "<group>"; }; - 49835B928F1BD03B9BF8EFAFBC8B036A /* BugsnagReactNative.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = BugsnagReactNative.m; sourceTree = "<group>"; }; - 4990C4B9B9AA45A9F6839CFF93A49CEC /* UTF8String.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = UTF8String.h; path = folly/UTF8String.h; sourceTree = "<group>"; }; - 4993498A328BEB89326E75F6E62CD440 /* bignum-dtoa.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "bignum-dtoa.h"; path = "double-conversion/bignum-dtoa.h"; sourceTree = "<group>"; }; - 49A802672B0D87070DE29302B001CBCD /* FlowableOperator.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FlowableOperator.h; path = yarpl/flowable/FlowableOperator.h; sourceTree = "<group>"; }; - 49ADD9E9092F2EBE6E2D3FCF1CEF87FB /* Unistd.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Unistd.h; path = folly/portability/Unistd.h; sourceTree = "<group>"; }; - 49D53E5ECAFF69A7D6F6C7CCC60D004A /* YGLayout.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = YGLayout.m; path = YogaKit/Source/YGLayout.m; sourceTree = "<group>"; }; - 4A04C5093939CC2837C05F0DF48DDCAA /* StaticConst.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = StaticConst.h; path = folly/lang/StaticConst.h; sourceTree = "<group>"; }; - 4A0DE597E4F93AA89C807FF6F46D7B65 /* FlipperDiagnosticsViewController.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FlipperDiagnosticsViewController.m; path = iOS/FlipperKit/FlipperDiagnosticsViewController.m; sourceTree = "<group>"; }; - 4A1451795BAB36BC948A32F0BA98E35F /* Dirent.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Dirent.h; path = folly/portability/Dirent.h; sourceTree = "<group>"; }; - 4A21DCEF09547DEB64B4744FAAD03666 /* StaticTracepoint.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = StaticTracepoint.h; path = folly/tracing/StaticTracepoint.h; sourceTree = "<group>"; }; - 4A250A57F6B6B341255994B45DE729FA /* Malloc.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = Malloc.cpp; path = folly/portability/Malloc.cpp; sourceTree = "<group>"; }; - 4A2B792B80ED688B169D906DB78A6E39 /* GULAppEnvironmentUtil.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = GULAppEnvironmentUtil.m; path = GoogleUtilities/Environment/third_party/GULAppEnvironmentUtil.m; sourceTree = "<group>"; }; - 4A3539FC5276FDA9160CBF06662BF190 /* EXPermissions-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "EXPermissions-prefix.pch"; sourceTree = "<group>"; }; - 4A503693896CA041F220F3392F98D2C4 /* BugsnagReactNative-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "BugsnagReactNative-dummy.m"; sourceTree = "<group>"; }; - 4A509BA41AB36AFEFE7EC02BD8CA6ED5 /* demux.c */ = {isa = PBXFileReference; includeInIndex = 1; name = demux.c; path = src/demux/demux.c; sourceTree = "<group>"; }; - 4A665DDBA684A68855493C39C9A17880 /* ConstexprMath.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ConstexprMath.h; path = folly/ConstexprMath.h; sourceTree = "<group>"; }; - 4A764BEE14BC35267D9FD25C78F6BB89 /* RNCAsyncStorage.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = RNCAsyncStorage.release.xcconfig; sourceTree = "<group>"; }; - 4A791F484CACBA763C26A0655365C583 /* BSG_KSMach.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BSG_KSMach.h; sourceTree = "<group>"; }; - 4A7A40CF223EA236B4C3E3A43161EBA8 /* IPAddressV6.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = IPAddressV6.h; path = folly/IPAddressV6.h; sourceTree = "<group>"; }; - 4A7DC779EC9F79607D650D429C2CFB5E /* Hardware.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Hardware.h; path = folly/synchronization/detail/Hardware.h; sourceTree = "<group>"; }; - 4A94AB5BC9695876728A55E9BC8E5E72 /* RNConfigReader.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = RNConfigReader.release.xcconfig; sourceTree = "<group>"; }; - 4AA541D7BE961CC64F2D9CCD2719F85C /* SDImageHEICCoderInternal.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SDImageHEICCoderInternal.h; path = SDWebImage/Private/SDImageHEICCoderInternal.h; sourceTree = "<group>"; }; - 4ACD3C341BF3A171077258DD2E353362 /* QBVideoIconView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = QBVideoIconView.m; path = ios/QBImagePicker/QBImagePicker/QBVideoIconView.m; sourceTree = "<group>"; }; - 4AD14B53656A77114A33E2075E243ACF /* Math.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Math.h; path = folly/Math.h; sourceTree = "<group>"; }; - 4AD8233600FFB546B71BAF0EBB79D22B /* FIRAnalyticsConfiguration.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRAnalyticsConfiguration.h; path = FirebaseCore/Sources/FIRAnalyticsConfiguration.h; sourceTree = "<group>"; }; - 4ADFD1409A834BF3CF99EFB686438DC2 /* FIRErrors.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRErrors.h; path = FirebaseCore/Sources/Private/FIRErrors.h; sourceTree = "<group>"; }; - 4AECC08C02DCA1B2C649AB26AAE1461E /* RCTTypeSafety.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = RCTTypeSafety.debug.xcconfig; sourceTree = "<group>"; }; - 4B0034E6E9FECAB0B4DC477735148373 /* Entypo.ttf */ = {isa = PBXFileReference; includeInIndex = 1; name = Entypo.ttf; path = Fonts/Entypo.ttf; sourceTree = "<group>"; }; - 4B01481011B177B9ED93006300270E5A /* utils.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = utils.h; path = "double-conversion/utils.h"; sourceTree = "<group>"; }; - 4B0C7D63BAB6C5746676851CD455CC6C /* react-native-background-timer.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = "react-native-background-timer.podspec"; sourceTree = "<group>"; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; - 4B0DA798E2D2355D319142E0A3A2AD19 /* TOActivityCroppedImageProvider.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = TOActivityCroppedImageProvider.m; path = "Objective-C/TOCropViewController/Models/TOActivityCroppedImageProvider.m"; sourceTree = "<group>"; }; - 4B1D0814E55E56B96BFC377C0059C7FF /* SysMman.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SysMman.h; path = folly/portability/SysMman.h; sourceTree = "<group>"; }; - 4B47B609D18EF820F82E8AF062AE571D /* SDImageHEICCoder.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = SDImageHEICCoder.m; path = SDWebImage/Core/SDImageHEICCoder.m; sourceTree = "<group>"; }; - 4B58A282A684CE85411B72C0613BB634 /* TimeoutManager.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = TimeoutManager.cpp; path = folly/io/async/TimeoutManager.cpp; sourceTree = "<group>"; }; - 4B5B3779D6AB8FEFC561F8749A3E7170 /* BSG_KSCrashReport.c */ = {isa = PBXFileReference; includeInIndex = 1; path = BSG_KSCrashReport.c; sourceTree = "<group>"; }; - 4B5D6AC6CE950516BB23A83FB1478C92 /* UMConstantsInterface.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = UMConstantsInterface.h; path = UMConstantsInterface/UMConstantsInterface.h; sourceTree = "<group>"; }; - 4B61C20E4E6ED1ADB8280B01F982A3F1 /* KeyCommands.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = KeyCommands.release.xcconfig; sourceTree = "<group>"; }; - 4B6B9023DD73576E9A084D6BAB8A8500 /* HazptrRec.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = HazptrRec.h; path = folly/synchronization/HazptrRec.h; sourceTree = "<group>"; }; - 4B70EDFA652908C411936321ADE7A72C /* thread_utils.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = thread_utils.h; path = src/utils/thread_utils.h; sourceTree = "<group>"; }; - 4B7124FEDB72AB8418902207CD8F8B49 /* SingletonStackTrace.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SingletonStackTrace.h; path = folly/detail/SingletonStackTrace.h; sourceTree = "<group>"; }; - 4B7258AD88FCB09A3552091074015F17 /* UIImage+Transform.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "UIImage+Transform.m"; path = "SDWebImage/Core/UIImage+Transform.m"; sourceTree = "<group>"; }; - 4B72CF035DDDD520F1E8BB2BAC516F3B /* MallctlHelper.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = MallctlHelper.cpp; path = folly/memory/MallctlHelper.cpp; sourceTree = "<group>"; }; - 4B7ABF9B133936B32C5EF56502D08238 /* F14Table.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = F14Table.cpp; path = folly/container/detail/F14Table.cpp; sourceTree = "<group>"; }; - 4B8D76CAE2FEE7117E9E0A6C31E9CFEB /* Range.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Range.h; path = folly/Range.h; sourceTree = "<group>"; }; - 4B8E3BCF06F973E8F0D678D9DD3178ED /* React.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = React.release.xcconfig; sourceTree = "<group>"; }; - 4B96ADDB9FD90F50AE207FA323FF1978 /* BugsnagBreadcrumb.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = BugsnagBreadcrumb.m; sourceTree = "<group>"; }; - 4B98073CFC9C25D3AC7C10F3E831926B /* RNRootViewGestureRecognizer.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNRootViewGestureRecognizer.m; path = ios/RNRootViewGestureRecognizer.m; sourceTree = "<group>"; }; - 4BA0DC74B20FFB89DC6B793878214871 /* ExceptionWrapper.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = ExceptionWrapper.cpp; path = folly/ExceptionWrapper.cpp; sourceTree = "<group>"; }; - 4BA1950E3338CF90E6291F27458625C5 /* FlipperConnection.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FlipperConnection.h; path = iOS/FlipperKit/FlipperConnection.h; sourceTree = "<group>"; }; - 4BA812FB89277D12BBAE8052D0AA1C09 /* Futex.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = Futex.cpp; path = folly/detail/Futex.cpp; sourceTree = "<group>"; }; - 4BC6D68855B4DB60DC353DDD7CB64C15 /* FBLPromise+Reduce.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "FBLPromise+Reduce.h"; path = "Sources/FBLPromises/include/FBLPromise+Reduce.h"; sourceTree = "<group>"; }; - 4BC96ED503285A52E16D54ABA224AABF /* FIRCLSCodeMapping.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRCLSCodeMapping.h; path = Crashlytics/Shared/FIRCLSMachO/FIRCLSCodeMapping.h; sourceTree = "<group>"; }; - 4BD5536E707ABA8BD79BBE4E822C7694 /* react-native-cameraroll.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = "react-native-cameraroll.podspec"; sourceTree = "<group>"; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; - 4BDD0D0B1D3BA5FD4C57167273A37400 /* RNFBSharedUtils.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNFBSharedUtils.h; path = ios/RNFBApp/RNFBSharedUtils.h; sourceTree = "<group>"; }; - 4C0D19222FBB7FD8D7B92CB3243EABD1 /* openssl_cfb128.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = openssl_cfb128.cpp; path = Core/aes/openssl/openssl_cfb128.cpp; sourceTree = "<group>"; }; - 4C1FE474229C2ACA4C7C4D7B00D43C22 /* filters.c */ = {isa = PBXFileReference; includeInIndex = 1; name = filters.c; path = src/dsp/filters.c; sourceTree = "<group>"; }; - 4C2EDAD5ABAACBC7C7EDE94447778269 /* NSTextStorage+FontScaling.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "NSTextStorage+FontScaling.h"; sourceTree = "<group>"; }; - 4C4AB3BD3F116A129775D8C459F218F9 /* UMAppRecordInterface.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = UMAppRecordInterface.h; sourceTree = "<group>"; }; - 4C4E63781EB5282F7FBEC911DEA07DD1 /* RCTSinglelineTextInputView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTSinglelineTextInputView.m; sourceTree = "<group>"; }; - 4C5953F908AA69045DC18DFE62C0EB9E /* SDWebImageTransitionInternal.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SDWebImageTransitionInternal.h; path = SDWebImage/Private/SDWebImageTransitionInternal.h; sourceTree = "<group>"; }; - 4C7DD8FD043A47577F15DC6CF75B2B5F /* GroupVarintDetail.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = GroupVarintDetail.h; path = folly/detail/GroupVarintDetail.h; sourceTree = "<group>"; }; - 4C99E44EFF703AFF54FB84284C85BEFC /* ConcurrentSkipList.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ConcurrentSkipList.h; path = folly/ConcurrentSkipList.h; sourceTree = "<group>"; }; - 4C9FD89B38C20D172047C1DFFA6CFCC8 /* REATransformNode.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = REATransformNode.h; sourceTree = "<group>"; }; - 4CBD13E740A98CB3DE73F9DF0337B28B /* Exception.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Exception.h; path = folly/Exception.h; sourceTree = "<group>"; }; - 4CECE588B11B66574740EDC761BC4245 /* Sse.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = Sse.cpp; path = folly/detail/Sse.cpp; sourceTree = "<group>"; }; - 4CED0991748193F85234B92043C467E6 /* ThreadPoolExecutor.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = ThreadPoolExecutor.cpp; path = folly/executors/ThreadPoolExecutor.cpp; sourceTree = "<group>"; }; - 4CFB0570DCDE324E6BE1532D8CF0082E /* GULSecureCoding.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = GULSecureCoding.m; path = GoogleUtilities/Environment/GULSecureCoding.m; sourceTree = "<group>"; }; - 4D2B5DC912FBCDE6B892CA46F279A39D /* RCTSurfaceDelegate.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTSurfaceDelegate.h; sourceTree = "<group>"; }; - 4D2FBE8FEFA4D8FD974BDC25702872C8 /* HermesExecutorFactory.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; path = HermesExecutorFactory.cpp; sourceTree = "<group>"; }; - 4D4991C2BF9015361FE42050C678D141 /* AtomicUtil-inl.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "AtomicUtil-inl.h"; path = "folly/synchronization/AtomicUtil-inl.h"; sourceTree = "<group>"; }; - 4D6055979B22944E1EA738BA0EF95ABB /* YogaKit-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "YogaKit-dummy.m"; sourceTree = "<group>"; }; - 4D6D624CF810AD92E2B2562C0562C073 /* BSG_KSCrashSentry.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BSG_KSCrashSentry.h; sourceTree = "<group>"; }; - 4D7771767C0A64A4CFEC135F4E46E7A1 /* NativeModulePerfLogger.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = NativeModulePerfLogger.h; path = reactperflogger/NativeModulePerfLogger.h; sourceTree = "<group>"; }; - 4D978CC181C344845AC6FDCFAE716AC1 /* ReactCommon-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "ReactCommon-dummy.m"; sourceTree = "<group>"; }; - 4DA348A7D21149FE8CE8BB8E70E897ED /* MoveWrapper.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = MoveWrapper.h; path = folly/MoveWrapper.h; sourceTree = "<group>"; }; - 4DA6CCA1909E5F67EFB196C7F3C14F29 /* RCTImageURLLoader.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTImageURLLoader.h; path = Libraries/Image/RCTImageURLLoader.h; sourceTree = "<group>"; }; - 4DA79D93AE2E4975346F958D50E1974B /* ReactCommon.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = ReactCommon.debug.xcconfig; sourceTree = "<group>"; }; - 4DA85919DC6C929D42B9C85978020E39 /* EXFileSystemAssetLibraryHandler.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = EXFileSystemAssetLibraryHandler.m; path = EXFileSystem/EXFileSystemAssetLibraryHandler.m; sourceTree = "<group>"; }; - 4DADCE70A75208DE25BE7771DD9DF0DE /* StackTraceUtils.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = StackTraceUtils.h; path = rsocket/internal/StackTraceUtils.h; sourceTree = "<group>"; }; - 4DAEC73A517CF97C666864661DB55390 /* CustomizationPoint.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = CustomizationPoint.h; path = folly/lang/CustomizationPoint.h; sourceTree = "<group>"; }; - 4DDF6F91919BA6848F310D266B5EF1FB /* FIRCLSDataCollectionToken.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRCLSDataCollectionToken.m; path = Crashlytics/Crashlytics/DataCollection/FIRCLSDataCollectionToken.m; sourceTree = "<group>"; }; + 4993B0E0C5C84652892DCF59D89415EA /* UIColor+SDHexString.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "UIColor+SDHexString.h"; path = "SDWebImage/Private/UIColor+SDHexString.h"; sourceTree = "<group>"; }; + 49E2001FCEA7FC2DD9BC5F8A722F8011 /* REANode.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = REANode.m; sourceTree = "<group>"; }; + 49FE1FF251A307308528A7C61047385C /* QBSlomoIconView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = QBSlomoIconView.m; path = ios/QBImagePicker/QBImagePicker/QBSlomoIconView.m; sourceTree = "<group>"; }; + 4A0EEBD114D5C97DC68BAE115096E92D /* GDTCORDirectorySizeTracker.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = GDTCORDirectorySizeTracker.h; path = GoogleDataTransport/GDTCORLibrary/Internal/GDTCORDirectorySizeTracker.h; sourceTree = "<group>"; }; + 4A1D04633EA85E2A2E915EEC374E0553 /* GULHeartbeatDateStorage.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = GULHeartbeatDateStorage.h; path = GoogleUtilities/Environment/Private/GULHeartbeatDateStorage.h; sourceTree = "<group>"; }; + 4A24194A9FD9FD0A9265EC19D085FAAC /* Foreach.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Foreach.h; path = folly/container/Foreach.h; sourceTree = "<group>"; }; + 4A25B203EB3A6BB4B7E0E273F0C17B7C /* react-native-jitsi-meet.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "react-native-jitsi-meet.release.xcconfig"; sourceTree = "<group>"; }; + 4A38C01DAE4D449991D0E6CD498F2D02 /* FIRCLSReportAdapter_Private.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRCLSReportAdapter_Private.h; path = Crashlytics/Crashlytics/Models/Record/FIRCLSReportAdapter_Private.h; sourceTree = "<group>"; }; + 4A43D940C84100D7A6C80184515B906C /* MMKV.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = MMKV.release.xcconfig; sourceTree = "<group>"; }; + 4A465F49F85319A835359BE1BD80394A /* RCTScrollContentShadowView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTScrollContentShadowView.m; sourceTree = "<group>"; }; + 4A58B56C9403B416F76F52128D627C06 /* Log.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Log.h; path = xplat/Flipper/Log.h; sourceTree = "<group>"; }; + 4A614561BC9E6C556E9110B4C1192015 /* RNCMaskedViewManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNCMaskedViewManager.h; path = ios/RNCMaskedViewManager.h; sourceTree = "<group>"; }; + 4AA22E2D5FA0FBEE53BEB9656626A0FA /* Chrono.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Chrono.h; path = folly/Chrono.h; sourceTree = "<group>"; }; + 4AA7837D4649A9BCBE7ADCB8738428AE /* FileUtil.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FileUtil.h; path = folly/FileUtil.h; sourceTree = "<group>"; }; + 4ABCA1CC303D147BD5C5827FC4E7EAAE /* Poly-inl.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "Poly-inl.h"; path = "folly/Poly-inl.h"; sourceTree = "<group>"; }; + 4ACB3D8CA8F2D8F84A6C9806BCAECF81 /* FirebaseInstallations.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FirebaseInstallations.h; path = FirebaseInstallations/Source/Library/Public/FirebaseInstallations/FirebaseInstallations.h; sourceTree = "<group>"; }; + 4ACD615B00FA48CD196D1DE7D26E42B7 /* UMPermissionsInterface-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "UMPermissionsInterface-dummy.m"; sourceTree = "<group>"; }; + 4AD13B8E59FB608E9875ACFB14DB1B2B /* RCTModalManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTModalManager.m; sourceTree = "<group>"; }; + 4AD42BDC89311DA46FC142825692FAEA /* RCTStyleAnimatedNode.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTStyleAnimatedNode.h; sourceTree = "<group>"; }; + 4AD8CCD5A61D1B93376751FCC26B447E /* FIRCLSSettingsOnboardingManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRCLSSettingsOnboardingManager.h; path = Crashlytics/Crashlytics/Settings/FIRCLSSettingsOnboardingManager.h; sourceTree = "<group>"; }; + 4AE26825253BF5B34B42D1707DA20966 /* SharedMutex.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SharedMutex.h; path = folly/SharedMutex.h; sourceTree = "<group>"; }; + 4AE859DB73B60453019C741A10E0F20C /* RCTTextAttributes.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTTextAttributes.h; path = Libraries/Text/RCTTextAttributes.h; sourceTree = "<group>"; }; + 4AE9A813378088DD3354A41B88EE8A37 /* CustomizationPoint.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = CustomizationPoint.h; path = folly/lang/CustomizationPoint.h; sourceTree = "<group>"; }; + 4AF7891C1BFB04B8A7DA1BF244602232 /* Future-inl.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "Future-inl.h"; path = "folly/futures/Future-inl.h"; sourceTree = "<group>"; }; + 4AFDB174B549F4BE754596DB44CDB018 /* RSocketException.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RSocketException.h; path = rsocket/RSocketException.h; sourceTree = "<group>"; }; + 4B0EAC37628C752F28BA38DE3F437940 /* File.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = File.h; path = folly/File.h; sourceTree = "<group>"; }; + 4B213F84153CB8FA9FF51978376799A0 /* FIRInstallationsErrorUtil.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRInstallationsErrorUtil.h; path = FirebaseInstallations/Source/Library/Errors/FIRInstallationsErrorUtil.h; sourceTree = "<group>"; }; + 4B2D912BFEFDC08DFC53E423264FACE7 /* SysStat.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SysStat.h; path = folly/portability/SysStat.h; sourceTree = "<group>"; }; + 4B3B7BE12857B6EFF346805FA5BDB910 /* openssl_md5.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = openssl_md5.h; path = Core/aes/openssl/openssl_md5.h; sourceTree = "<group>"; }; + 4B410A2FD9231817FB4F46C73F7032CF /* StreamResponder.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = StreamResponder.cpp; path = rsocket/statemachine/StreamResponder.cpp; sourceTree = "<group>"; }; + 4B491027E9CC2530F2AD5AA42CD4AAB9 /* ProtocolVersion.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ProtocolVersion.h; path = rsocket/framing/ProtocolVersion.h; sourceTree = "<group>"; }; + 4B68FEE532B51AD6840FA5137DEB0D9B /* UMAppLoaderProvider.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = UMAppLoaderProvider.h; path = UMAppLoader/UMAppLoaderProvider.h; sourceTree = "<group>"; }; + 4B6D85DBCF4A8BF56933AAAC6B61DD88 /* QuotientMultiSet.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = QuotientMultiSet.h; path = folly/experimental/QuotientMultiSet.h; sourceTree = "<group>"; }; + 4B7D7162E4A6826DB0F5EBD39C2FC138 /* FIRInstallationsStoredAuthToken.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRInstallationsStoredAuthToken.m; path = FirebaseInstallations/Source/Library/InstallationsStore/FIRInstallationsStoredAuthToken.m; sourceTree = "<group>"; }; + 4BAEAF056D6389DB6B5F2D45F2D7F6C0 /* FIRCLSReportManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRCLSReportManager.m; path = Crashlytics/Crashlytics/Controllers/FIRCLSReportManager.m; sourceTree = "<group>"; }; + 4BBF9AA19AAE13068A6CEA2177ABF545 /* F14Defaults.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = F14Defaults.h; path = folly/container/detail/F14Defaults.h; sourceTree = "<group>"; }; + 4BD77DCFD7AF2232774CBA3F66A179E5 /* Format.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = Format.cpp; path = folly/Format.cpp; sourceTree = "<group>"; }; + 4BE58038AF42A4F6D6602E7C7E4641EE /* FIRCLSProfiling.c */ = {isa = PBXFileReference; includeInIndex = 1; name = FIRCLSProfiling.c; path = Crashlytics/Crashlytics/Helpers/FIRCLSProfiling.c; sourceTree = "<group>"; }; + 4BEADAD1F1953680BAB52F1E438972F3 /* Foundation.ttf */ = {isa = PBXFileReference; includeInIndex = 1; name = Foundation.ttf; path = Fonts/Foundation.ttf; sourceTree = "<group>"; }; + 4BEB1818ED5F8B10EC4E3C65D7BE43F5 /* RCTRequired.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTRequired.h; path = RCTRequired/RCTRequired.h; sourceTree = "<group>"; }; + 4BF3B420A604629A007FB24188AE3F73 /* EXImageLoader.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = EXImageLoader.release.xcconfig; sourceTree = "<group>"; }; + 4C1D22B3868C43D2EED53F3E52B044D5 /* RNBootSplash-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "RNBootSplash-prefix.pch"; sourceTree = "<group>"; }; + 4C1F81FD9E6F43277C9E925F14D3D2B6 /* UMFontProcessorInterface.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = UMFontProcessorInterface.h; path = UMFontInterface/UMFontProcessorInterface.h; sourceTree = "<group>"; }; + 4C38DB6263919FBC0AB5BAF4D5C4B9AF /* CompileJS.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = CompileJS.h; path = destroot/include/hermes/CompileJS.h; sourceTree = "<group>"; }; + 4C52EEC241E3D896CBF67611F4A7C840 /* openssl_aes_locl.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = openssl_aes_locl.h; path = Core/aes/openssl/openssl_aes_locl.h; sourceTree = "<group>"; }; + 4C58A1A4422757A5A73BE5AC450D914D /* RNDateTimePicker.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = RNDateTimePicker.release.xcconfig; sourceTree = "<group>"; }; + 4C59D321808B4D4853809E71D9177619 /* UMPermissionsMethodsDelegate.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = UMPermissionsMethodsDelegate.m; path = UMPermissionsInterface/UMPermissionsMethodsDelegate.m; sourceTree = "<group>"; }; + 4C671BB06639AC59084C4EC4A755406A /* CacheLocality.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = CacheLocality.h; path = folly/concurrency/CacheLocality.h; sourceTree = "<group>"; }; + 4C67DB30CFB868D7FF8CF4B46999863A /* React-RCTSettings.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = "React-RCTSettings.podspec"; sourceTree = "<group>"; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; + 4C7756C6CDF52E752A2C7D304C9E42B5 /* ReactNativeART.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = ReactNativeART.debug.xcconfig; sourceTree = "<group>"; }; + 4C846DE60E62FB1B326BB9FACF5BC6B2 /* RCTTurboModule.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTTurboModule.mm; sourceTree = "<group>"; }; + 4CCC840D3A806A7EC55CB844053F80BD /* ReactNativeUiLib-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "ReactNativeUiLib-dummy.m"; sourceTree = "<group>"; }; + 4CD16689C0CE720E915AA45FEE447997 /* StreamResponder.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = StreamResponder.h; path = rsocket/statemachine/StreamResponder.h; sourceTree = "<group>"; }; + 4CE4E15A384DFF38BD2A870862BE00FB /* GDTCOREvent_Private.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = GDTCOREvent_Private.h; path = GoogleDataTransport/GDTCORLibrary/Private/GDTCOREvent_Private.h; sourceTree = "<group>"; }; + 4D13B14D2930B44891B6F473C593C6E9 /* VibrancyViewManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = VibrancyViewManager.m; path = ios/VibrancyViewManager.m; sourceTree = "<group>"; }; + 4D1DCE2ED72E4B4463731242802346A8 /* SKViewControllerDescriptor.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = SKViewControllerDescriptor.m; path = iOS/Plugins/FlipperKitLayoutPlugin/FlipperKitLayoutPlugin/descriptors/SKViewControllerDescriptor.m; sourceTree = "<group>"; }; + 4D1FD5CE2558DD09C75F927E5236A0FB /* RCTRedBox.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTRedBox.h; path = React/CoreModules/RCTRedBox.h; sourceTree = "<group>"; }; + 4D437964998D2C0A18278605BE08B9B8 /* RCTRootShadowView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTRootShadowView.m; sourceTree = "<group>"; }; + 4D48B9A0D7207F3DEA16387FE4D6C765 /* REAFunctionNode.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = REAFunctionNode.m; sourceTree = "<group>"; }; + 4D7A61F51B5A3C006A8F8AA3FAB893CA /* SanitizeThread.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = SanitizeThread.cpp; path = folly/synchronization/SanitizeThread.cpp; sourceTree = "<group>"; }; + 4DD0CE71E75131AF51D4C4432112F823 /* RCTBaseTextInputShadowView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTBaseTextInputShadowView.h; sourceTree = "<group>"; }; + 4DD2A697C6CED6FB3094F355F3DED273 /* PThread.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = PThread.h; path = folly/portability/PThread.h; sourceTree = "<group>"; }; + 4DE570E4EA43B841487A2B1C4E71F0A9 /* StackTraceUtils.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = StackTraceUtils.h; path = rsocket/internal/StackTraceUtils.h; sourceTree = "<group>"; }; 4DE9214CE8536885558ABFF1032C77F7 /* Pods-defaults-Rocket.Chat-acknowledgements.markdown */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text; path = "Pods-defaults-Rocket.Chat-acknowledgements.markdown"; sourceTree = "<group>"; }; - 4E04F05AACD8047089A85B4474584ADE /* ThreadName.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ThreadName.h; path = folly/system/ThreadName.h; sourceTree = "<group>"; }; - 4E060D1DC000ED351BF7F2053F8B242D /* ReactNativeART.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = ReactNativeART.podspec; sourceTree = "<group>"; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; - 4E0B0B3CDA631795F2F5D588FCF8AA9E /* TLRefCount.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = TLRefCount.h; path = folly/experimental/TLRefCount.h; sourceTree = "<group>"; }; - 4E3D0BB48FDDCBE29E682D48D2261735 /* BugsnagSessionTrackingPayload.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = BugsnagSessionTrackingPayload.m; sourceTree = "<group>"; }; - 4E43DDC445CD2E8A4C9B98D3A5864896 /* react-native-background-timer-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "react-native-background-timer-dummy.m"; sourceTree = "<group>"; }; - 4E464EDB507E574CC1C3824FD4BEF570 /* rescaler_msa.c */ = {isa = PBXFileReference; includeInIndex = 1; name = rescaler_msa.c; path = src/dsp/rescaler_msa.c; sourceTree = "<group>"; }; - 4E610DED409BEE9089F49167DE8A5A3F /* NotificationQueue.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = NotificationQueue.h; path = folly/io/async/NotificationQueue.h; sourceTree = "<group>"; }; - 4E6FD3789AE32FF2039C5FC657EAA0A4 /* ARTGroup.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = ARTGroup.m; path = ios/ARTGroup.m; sourceTree = "<group>"; }; - 4E73EEF74DB33CC28663FD33E8340D37 /* logging.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = logging.cc; path = src/logging.cc; sourceTree = "<group>"; }; - 4E7CEA9CAE2AF0E1A5E22F2EDDD3E2BE /* FIRLogger.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRLogger.m; path = FirebaseCore/Sources/FIRLogger.m; sourceTree = "<group>"; }; - 4EA0D8520C977127B4CFE93E6E40CCE0 /* BugsnagConfigSerializer.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = BugsnagConfigSerializer.m; sourceTree = "<group>"; }; - 4EA1683C021C4EC5FEE026813886B9B8 /* DiscriminatedPtr.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = DiscriminatedPtr.h; path = folly/DiscriminatedPtr.h; sourceTree = "<group>"; }; - 4EBC54B71950E3E9223F51E241B05BA5 /* TOCroppedImageAttributes.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = TOCroppedImageAttributes.m; path = "Objective-C/TOCropViewController/Models/TOCroppedImageAttributes.m"; sourceTree = "<group>"; }; - 4EBDF38D772E501B8DDFAD480A0A8439 /* RCTSurfaceStage.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTSurfaceStage.m; sourceTree = "<group>"; }; - 4EC9214E320BBD039409478C85CB3D4E /* BSG_KSCrashIdentifier.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = BSG_KSCrashIdentifier.m; sourceTree = "<group>"; }; - 4EDBEF597A90BB3A563FD690349CFDDE /* Compression.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = Compression.m; path = ios/src/Compression.m; sourceTree = "<group>"; }; - 4EED55B8EA691269ACB175FDEF3A7FC1 /* FIRCLSInstallIdentifierModel.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRCLSInstallIdentifierModel.m; path = Crashlytics/Crashlytics/Models/FIRCLSInstallIdentifierModel.m; sourceTree = "<group>"; }; - 4EEE229A6F5FBD1E1646B6DF98A66DD4 /* id.lproj */ = {isa = PBXFileReference; includeInIndex = 1; name = id.lproj; path = "Objective-C/TOCropViewController/Resources/id.lproj"; sourceTree = "<group>"; }; - 4EF4B6BBDDA951ECBADDA983E7E93BAB /* SDWebImage-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "SDWebImage-dummy.m"; sourceTree = "<group>"; }; - 4EFA9ED6AB17B41486EAB2148F8C24B5 /* FlipperClient.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FlipperClient.h; path = iOS/FlipperKit/FlipperClient.h; sourceTree = "<group>"; }; - 4F04F335D30B43118E83087B7DED120B /* UMReactNativeAdapter-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "UMReactNativeAdapter-dummy.m"; sourceTree = "<group>"; }; - 4F0EBDA87DC8D3A4C9A7FF510D285709 /* TOCropViewConstants.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = TOCropViewConstants.h; path = "Objective-C/TOCropViewController/Constants/TOCropViewConstants.h"; sourceTree = "<group>"; }; - 4F26628CAEF27009D5B48EE73606060B /* BSG_KSCrashSentry.c */ = {isa = PBXFileReference; includeInIndex = 1; path = BSG_KSCrashSentry.c; sourceTree = "<group>"; }; - 4F27E3FDA8B6F4EE4FE0EA2B5D213B03 /* kqueue-internal.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "kqueue-internal.h"; sourceTree = "<group>"; }; - 4F3909692D2EB196C7259A673D4E0BC7 /* FIRCLSAllocate.c */ = {isa = PBXFileReference; includeInIndex = 1; name = FIRCLSAllocate.c; path = Crashlytics/Crashlytics/Helpers/FIRCLSAllocate.c; sourceTree = "<group>"; }; - 4F3DBDE414164598AA85AF34D969F89D /* EXKeepAwake.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = EXKeepAwake.release.xcconfig; sourceTree = "<group>"; }; - 4F49D2F2C2B99010A57070BFAB8D543D /* RCTJSStackFrame.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTJSStackFrame.m; sourceTree = "<group>"; }; - 4F54D13B31B2191DE26549C9CCCE60BB /* HeterogeneousAccess.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = HeterogeneousAccess.h; path = folly/container/HeterogeneousAccess.h; sourceTree = "<group>"; }; - 4F58D090ED485B4C0D8704E5502A8CCA /* IOBuf.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = IOBuf.cpp; path = folly/io/IOBuf.cpp; sourceTree = "<group>"; }; - 4F93F61A90764C0E78C82A039657A0C8 /* utils.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = utils.h; path = src/utils/utils.h; sourceTree = "<group>"; }; - 4F95F367C474284471D55C9963F1F6D2 /* log_severity.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = log_severity.h; path = src/glog/log_severity.h; sourceTree = "<group>"; }; - 4FCCB673DB96C95279676B3DDB6E0FCE /* LICENCE */ = {isa = PBXFileReference; includeInIndex = 1; path = LICENCE; sourceTree = "<group>"; }; - 4FD51AC155A82E1BD08CC8EEB840440C /* GULAppDelegateSwizzler.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = GULAppDelegateSwizzler.h; path = GoogleUtilities/AppDelegateSwizzler/Private/GULAppDelegateSwizzler.h; sourceTree = "<group>"; }; - 4FD65F73976A789DD9400A46AC219377 /* UMReactNativeAdapter.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = UMReactNativeAdapter.m; sourceTree = "<group>"; }; + 4DF7D8E535C31E6003E459C320DD2DC9 /* RCTI18nManager.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTI18nManager.mm; sourceTree = "<group>"; }; + 4E14F46EE083E9BBBC6B8527E221DEBF /* Flowable_FromObservable.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Flowable_FromObservable.h; path = yarpl/flowable/Flowable_FromObservable.h; sourceTree = "<group>"; }; + 4E231934ED5D8D8EAF362949A9BCF46B /* DeferObservable.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = DeferObservable.h; path = yarpl/observable/DeferObservable.h; sourceTree = "<group>"; }; + 4E2BD0069D4441ED07654FAC3D2C76A8 /* React.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = React.debug.xcconfig; sourceTree = "<group>"; }; + 4E79C59E90A3E09FB62059F97F3AE427 /* jsilib.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = jsilib.h; sourceTree = "<group>"; }; + 4E820CE5FADDA11D038AE919CAAA2D14 /* evutil_time.c */ = {isa = PBXFileReference; includeInIndex = 1; path = evutil_time.c; sourceTree = "<group>"; }; + 4EB6D979FF618406692B3FE66D4CF555 /* FIRCLSUnwind.c */ = {isa = PBXFileReference; includeInIndex = 1; name = FIRCLSUnwind.c; path = Crashlytics/Crashlytics/Unwind/FIRCLSUnwind.c; sourceTree = "<group>"; }; + 4EB838DCA6BEE96C8E8347222F32D6E7 /* ExecutorWithPriority-inl.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "ExecutorWithPriority-inl.h"; path = "folly/executors/ExecutorWithPriority-inl.h"; sourceTree = "<group>"; }; + 4ECF4374A8D7D6C1F7A4B0CC89421BA4 /* GDTCCTCompressionHelper.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = GDTCCTCompressionHelper.h; path = GoogleDataTransport/GDTCCTLibrary/Private/GDTCCTCompressionHelper.h; sourceTree = "<group>"; }; + 4ED6A9FCCBF7998657CABFCED7B8D0B4 /* FBLPromisePrivate.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FBLPromisePrivate.h; path = Sources/FBLPromises/include/FBLPromisePrivate.h; sourceTree = "<group>"; }; + 4EFB5A68337E6B1673E953CF8E8FE331 /* RNGestureHandler.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNGestureHandler.h; path = ios/RNGestureHandler.h; sourceTree = "<group>"; }; + 4EFF16B0135E733955067386D6ADBFA2 /* React-RCTNetwork-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "React-RCTNetwork-dummy.m"; sourceTree = "<group>"; }; + 4EFFF56194F1FBBE7E468DB652012DEE /* LICENSE */ = {isa = PBXFileReference; includeInIndex = 1; path = LICENSE; sourceTree = "<group>"; }; + 4F0A632F2CC3B049922861BE76FE1835 /* React-jsiexecutor-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "React-jsiexecutor-prefix.pch"; sourceTree = "<group>"; }; + 4F19EBB764AAEA5EFBA09D04D4CD5CE7 /* bignum.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = bignum.h; path = "double-conversion/bignum.h"; sourceTree = "<group>"; }; + 4F413A04A3B4C83265FDF5F6F3F7FE53 /* IOBufQueue.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = IOBufQueue.cpp; path = folly/io/IOBufQueue.cpp; sourceTree = "<group>"; }; + 4F63FB8C00FDE84A14231F4368DFB9BB /* GULKeychainStorage.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = GULKeychainStorage.h; path = GoogleUtilities/Environment/Private/GULKeychainStorage.h; sourceTree = "<group>"; }; + 4F86D2F0E17B58BEE60783F6389F01F3 /* RCTKeyCommandConstants.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RCTKeyCommandConstants.m; path = ios/KeyCommands/RCTKeyCommandConstants.m; sourceTree = "<group>"; }; + 4F8AF30685BDE2D3E73B41E511348C4B /* EnvironmentUtil.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = EnvironmentUtil.h; path = ios/RNDeviceInfo/EnvironmentUtil.h; sourceTree = "<group>"; }; + 4FB3B130A3266C0BC8C92E78C515AFA5 /* JSCRuntime.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; path = JSCRuntime.cpp; sourceTree = "<group>"; }; + 4FB404C79DA9E1109F78223BB98F7C11 /* REATransformNode.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = REATransformNode.h; sourceTree = "<group>"; }; + 4FD91DABC2ACBF3238E5B7DFB7E65B83 /* FrameHeader.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FrameHeader.h; path = rsocket/framing/FrameHeader.h; sourceTree = "<group>"; }; 4FDA96879D96070EB1983E98E655CBDC /* librn-fetch-blob.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; name = "librn-fetch-blob.a"; path = "librn-fetch-blob.a"; sourceTree = BUILT_PRODUCTS_DIR; }; - 4FE1D3B427082E6E61CC0FE1559311CE /* RCTAnimatedImage.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTAnimatedImage.m; sourceTree = "<group>"; }; - 4FE7B594CF6867E71FE4E2301AFEAD29 /* quant_enc.c */ = {isa = PBXFileReference; includeInIndex = 1; name = quant_enc.c; path = src/enc/quant_enc.c; sourceTree = "<group>"; }; - 4FF999F8D3575678E2BA9D8CCC594E46 /* FlipperConnectionImpl.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FlipperConnectionImpl.h; path = xplat/Flipper/FlipperConnectionImpl.h; sourceTree = "<group>"; }; - 4FFD4768964A96ED914AFC1FB2C3CD28 /* FIRCLSMachOBinary.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRCLSMachOBinary.m; path = Crashlytics/Shared/FIRCLSMachO/FIRCLSMachOBinary.m; sourceTree = "<group>"; }; - 50046DFFDEC7605D743CF83B7EB9EB5B /* RNGestureHandlerRegistry.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNGestureHandlerRegistry.h; path = ios/RNGestureHandlerRegistry.h; sourceTree = "<group>"; }; - 5009B368367C8DF2D7EF0B5BE9AE61BE /* FutureExecutor.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FutureExecutor.h; path = folly/executors/FutureExecutor.h; sourceTree = "<group>"; }; - 501761ADCF286CCADF126E860D725360 /* BlurEffectWithAmount.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = BlurEffectWithAmount.h; path = ios/BlurEffectWithAmount.h; sourceTree = "<group>"; }; - 50261AF3C745BB3A0CDFA2344529F574 /* SpookyHashV2.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SpookyHashV2.h; path = folly/hash/SpookyHashV2.h; sourceTree = "<group>"; }; - 5029C3F1FAC79F19E9E6338F44DB533D /* FirebaseCoreInternal.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FirebaseCoreInternal.h; path = FirebaseCore/Sources/Private/FirebaseCoreInternal.h; sourceTree = "<group>"; }; - 50380A13EC2534D9286401EBD03FB7FF /* RNCSafeAreaViewMode.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNCSafeAreaViewMode.h; path = ios/SafeAreaView/RNCSafeAreaViewMode.h; sourceTree = "<group>"; }; - 504AD14FE100A20D8DC16B176158574E /* ParkingLot.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ParkingLot.h; path = folly/synchronization/ParkingLot.h; sourceTree = "<group>"; }; - 507D17D398B3DB183218F5B94245D41A /* RCTShadowView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTShadowView.h; sourceTree = "<group>"; }; - 509A1E62B3E7BC802847A7DB7EF72A0C /* HeterogeneousAccess-fwd.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "HeterogeneousAccess-fwd.h"; path = "folly/container/HeterogeneousAccess-fwd.h"; sourceTree = "<group>"; }; - 50A35339F5AB5829AC849060EC4E180B /* ExecutorWithPriority-inl.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "ExecutorWithPriority-inl.h"; path = "folly/executors/ExecutorWithPriority-inl.h"; sourceTree = "<group>"; }; + 4FDB641DD6622C3337E50799D6CAF50B /* FIRInstallationsItem.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRInstallationsItem.m; path = FirebaseInstallations/Source/Library/FIRInstallationsItem.m; sourceTree = "<group>"; }; + 500229F368620D7BA99FE0B967E1337E /* RCTInterpolationAnimatedNode.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTInterpolationAnimatedNode.h; sourceTree = "<group>"; }; + 5029B7DBFA20537B8F3D299D3365BC07 /* OpenSSLCertUtils.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = OpenSSLCertUtils.cpp; path = folly/ssl/OpenSSLCertUtils.cpp; sourceTree = "<group>"; }; + 502CD539F5D6390007138B8B692BD0D0 /* UIImage+CropRotate.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "UIImage+CropRotate.h"; path = "Objective-C/TOCropViewController/Categories/UIImage+CropRotate.h"; sourceTree = "<group>"; }; + 5035B7873CF1F7310D5D1F423C937273 /* NSImage+Compatibility.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "NSImage+Compatibility.m"; path = "SDWebImage/Core/NSImage+Compatibility.m"; sourceTree = "<group>"; }; + 503DBF84DF18AFA2E710724C2610BC3E /* FlipperStateUpdateListener.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FlipperStateUpdateListener.h; path = xplat/Flipper/FlipperStateUpdateListener.h; sourceTree = "<group>"; }; + 5046672D5CD2E489583B344B69E16C33 /* FIRCLSOperation.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRCLSOperation.h; path = Crashlytics/Shared/FIRCLSOperation/FIRCLSOperation.h; sourceTree = "<group>"; }; + 508987E7D16D45673A96292834D1A4D8 /* RCTPerformanceLogger.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTPerformanceLogger.m; sourceTree = "<group>"; }; + 508B63A73BC1A57DA47BB257782603C1 /* Demangle.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = Demangle.cpp; path = folly/detail/Demangle.cpp; sourceTree = "<group>"; }; + 5096EC4B214144A44F64E49C8BA6CF67 /* MapUtil.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = MapUtil.h; path = folly/MapUtil.h; sourceTree = "<group>"; }; + 509E2E32FB93F2EFADFFE8840EE60358 /* FIRCLSDefines.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRCLSDefines.h; path = Crashlytics/Crashlytics/Helpers/FIRCLSDefines.h; sourceTree = "<group>"; }; + 509F97C80AD0476E4185EEB1FC37518D /* UMSensorsInterface.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = UMSensorsInterface.debug.xcconfig; sourceTree = "<group>"; }; + 50A32D19B29D8D95569BA66C67C2598B /* GDTCORReachability.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = GDTCORReachability.m; path = GoogleDataTransport/GDTCORLibrary/GDTCORReachability.m; sourceTree = "<group>"; }; + 50B195BF3B7621AB3736102451AB19AC /* RCTRootView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTRootView.m; sourceTree = "<group>"; }; 50B5347C9A6E93B7D4CFC3673BA6FB7E /* libRNScreens.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; name = libRNScreens.a; path = libRNScreens.a; sourceTree = BUILT_PRODUCTS_DIR; }; - 50B8DC3F1C20DA72280B66682F52676F /* FIRCLSAsyncOperation_Private.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRCLSAsyncOperation_Private.h; path = Crashlytics/Crashlytics/Operations/FIRCLSAsyncOperation_Private.h; sourceTree = "<group>"; }; - 50C41EF12D05B64B2E575D8C73550625 /* FIRCLSReportUploader_Private.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRCLSReportUploader_Private.h; path = Crashlytics/Crashlytics/Controllers/FIRCLSReportUploader_Private.h; sourceTree = "<group>"; }; - 50CAB6141E979DA768868D1CC0D4777B /* Framer.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = Framer.cpp; path = rsocket/framing/Framer.cpp; sourceTree = "<group>"; }; - 50CC8B1CF4B75396D57F35580E672455 /* RCTEventDispatcher.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTEventDispatcher.h; path = React/CoreModules/RCTEventDispatcher.h; sourceTree = "<group>"; }; - 50CEE436DC02365678F6BE65F5CB4CA0 /* RCTConvert+Transform.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "RCTConvert+Transform.h"; sourceTree = "<group>"; }; - 50D23022535AF7BD0EF89E7177B837EF /* DelayedDestruction.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = DelayedDestruction.h; path = folly/io/async/DelayedDestruction.h; sourceTree = "<group>"; }; - 50E1A35CCEA1D5F6736BC55A46B04A86 /* RsaFormatter.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RsaFormatter.h; sourceTree = "<group>"; }; - 50E5E39E08E43D6230F656F5307A4CD1 /* Demangle.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Demangle.h; path = folly/Demangle.h; sourceTree = "<group>"; }; - 50E9B9774D4A3DD88A0582AB9E279476 /* EventHandler.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = EventHandler.cpp; path = folly/io/async/EventHandler.cpp; sourceTree = "<group>"; }; - 50E9BC19608F331299520F4A34F93BD0 /* RNNotificationCenterMulticast.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNNotificationCenterMulticast.h; path = RNNotifications/RNNotificationCenterMulticast.h; sourceTree = "<group>"; }; - 50F2B1496321F64AD7B0998350D4D009 /* FireAndForgetResponder.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = FireAndForgetResponder.cpp; path = rsocket/statemachine/FireAndForgetResponder.cpp; sourceTree = "<group>"; }; - 50F4AC2A1A2E84993D0251C762782555 /* YGLayoutExtensions.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = YGLayoutExtensions.swift; path = YogaKit/Source/YGLayoutExtensions.swift; sourceTree = "<group>"; }; - 510790E68DCEBCD3A692226FBC4D7816 /* FrameHeader.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FrameHeader.h; path = rsocket/framing/FrameHeader.h; sourceTree = "<group>"; }; - 510B5BA406387F705CE66C95EAD96005 /* LICENSE */ = {isa = PBXFileReference; includeInIndex = 1; path = LICENSE; sourceTree = "<group>"; }; - 511E9E59D0ED620364C19CBDB853ABE6 /* ChannelResponder.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = ChannelResponder.cpp; path = rsocket/statemachine/ChannelResponder.cpp; sourceTree = "<group>"; }; - 512D84FEAF0C88EA497E2182B0FEA701 /* MMKVCore-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "MMKVCore-prefix.pch"; sourceTree = "<group>"; }; - 51852D46308FFDE1FBDB5D68507E6D81 /* TOCropViewController.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = TOCropViewController.h; path = "Objective-C/TOCropViewController/TOCropViewController.h"; sourceTree = "<group>"; }; - 51932962389B22CF23FD8BB7939CDE28 /* REABlockNode.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = REABlockNode.m; sourceTree = "<group>"; }; - 519F01F1D80CFDFC7A49BCA212123ABB /* RCTHmac.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RCTHmac.m; path = ios/RCTCrypto/RCTHmac.m; sourceTree = "<group>"; }; + 50B74FB029CC42CDD6EF08D625FD4079 /* F14Mask.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = F14Mask.h; path = folly/container/detail/F14Mask.h; sourceTree = "<group>"; }; + 50C9175D65389B58A1EF4F1876F53BA7 /* strtod.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = strtod.cc; path = "double-conversion/strtod.cc"; sourceTree = "<group>"; }; + 50D4EFBF53C0A6CF329A48DAA8F7795D /* F14Defaults.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = F14Defaults.h; path = folly/container/detail/F14Defaults.h; sourceTree = "<group>"; }; + 50DD36A025468F5F02F6AF789FE6D183 /* React-RCTText.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "React-RCTText.debug.xcconfig"; sourceTree = "<group>"; }; + 50E77540F8775D66C8CEE42D8A0C73CE /* LICENSE */ = {isa = PBXFileReference; includeInIndex = 1; path = LICENSE; sourceTree = "<group>"; }; + 50E81A83FFC6FFDE5C3241FE93B9A299 /* SDWebImageCacheSerializer.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = SDWebImageCacheSerializer.m; path = SDWebImage/Core/SDWebImageCacheSerializer.m; sourceTree = "<group>"; }; + 5127DB3421F20D8DCBD082E0B433E6A0 /* UIImage+Metadata.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "UIImage+Metadata.h"; path = "SDWebImage/Core/UIImage+Metadata.h"; sourceTree = "<group>"; }; + 5131685C986E952C022F4813E1ECECFF /* IndexedMemPool.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = IndexedMemPool.h; path = folly/IndexedMemPool.h; sourceTree = "<group>"; }; + 51409E6C143CBD10A7022D181AD05C97 /* FirebaseInstallations.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = FirebaseInstallations.debug.xcconfig; sourceTree = "<group>"; }; + 51799FB3AE4BA29C00232ACEAD419C84 /* Entypo.ttf */ = {isa = PBXFileReference; includeInIndex = 1; name = Entypo.ttf; path = Fonts/Entypo.ttf; sourceTree = "<group>"; }; + 519151A41D138ADEBAF93B5DFA661CCC /* ErrorCode.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ErrorCode.h; path = rsocket/framing/ErrorCode.h; sourceTree = "<group>"; }; + 5197EE6E5D853011D1F9A8DCD5E562CB /* DeferFlowable.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = DeferFlowable.h; path = yarpl/flowable/DeferFlowable.h; sourceTree = "<group>"; }; + 51A89D94B04B388F9A6FBE820D1F8A67 /* lossless_enc_msa.c */ = {isa = PBXFileReference; includeInIndex = 1; name = lossless_enc_msa.c; path = src/dsp/lossless_enc_msa.c; sourceTree = "<group>"; }; 51B50F20C76CF72E2BEF8D4764235306 /* libReactNativeART.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; name = libReactNativeART.a; path = libReactNativeART.a; sourceTree = BUILT_PRODUCTS_DIR; }; - 51B85E44A450130E8077001DE97DDC86 /* LICENSE */ = {isa = PBXFileReference; includeInIndex = 1; path = LICENSE; sourceTree = "<group>"; }; - 51BFC1D0986C540B6E8C5C8456C71D32 /* Try-inl.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "Try-inl.h"; path = "folly/Try-inl.h"; sourceTree = "<group>"; }; - 51C259A9824478DE5643E9C5F2A26E91 /* TimeoutQueue.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = TimeoutQueue.h; path = folly/TimeoutQueue.h; sourceTree = "<group>"; }; - 51C4E5F5418C933B54618D04FE90B1EC /* RWSpinLock.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RWSpinLock.h; path = folly/RWSpinLock.h; sourceTree = "<group>"; }; - 51E0ED49F68A92B12E47D0F02CD1C207 /* FBLPromise+Timeout.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "FBLPromise+Timeout.m"; path = "Sources/FBLPromises/FBLPromise+Timeout.m"; sourceTree = "<group>"; }; - 52032420A8153D9845D314223D4F5169 /* CallbackOStream.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; path = CallbackOStream.cpp; sourceTree = "<group>"; }; - 52051000F9BC6625B82A6F74204791A8 /* RNRootView.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = RNRootView.release.xcconfig; sourceTree = "<group>"; }; - 52056FC19AE5CE79FA448C8CD56E2440 /* RNDeviceInfo-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "RNDeviceInfo-dummy.m"; sourceTree = "<group>"; }; - 520842FBB570439D5E9C9C0F1D1828C5 /* OpenSSL-Universal.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "OpenSSL-Universal.debug.xcconfig"; sourceTree = "<group>"; }; - 520BB052543E92220A00A5375AC4F2A9 /* RNConfigReader-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "RNConfigReader-dummy.m"; sourceTree = "<group>"; }; - 5215B67020579C32FA153F00EE4FBC8D /* BSG_KSSignalInfo.c */ = {isa = PBXFileReference; includeInIndex = 1; path = BSG_KSSignalInfo.c; sourceTree = "<group>"; }; - 5217079C508569C2D0F031D958008DBB /* FIRCLSURLSessionDataTask.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRCLSURLSessionDataTask.m; path = Crashlytics/Crashlytics/FIRCLSURLSession/Tasks/FIRCLSURLSessionDataTask.m; sourceTree = "<group>"; }; - 521AD8BDBE37B570B725AD6291946FEC /* FlipperPlugin.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FlipperPlugin.h; path = xplat/Flipper/FlipperPlugin.h; sourceTree = "<group>"; }; - 52292E739162D20DA20E175D11C9397D /* SysFile.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SysFile.h; path = folly/portability/SysFile.h; sourceTree = "<group>"; }; - 523701F2861A9AF389FC2C6E43D86D49 /* SDImageCachesManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SDImageCachesManager.h; path = SDWebImage/Core/SDImageCachesManager.h; sourceTree = "<group>"; }; - 52487E7EA3FF06EFCB57D1CD9FA0DCF2 /* Singleton.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Singleton.h; path = folly/detail/Singleton.h; sourceTree = "<group>"; }; - 524B0CB6BB24B62F20F2D2771E91A839 /* React-perflogger-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "React-perflogger-prefix.pch"; sourceTree = "<group>"; }; - 524B7125CFC13FA52439FAA76CEAE3D1 /* GDTCCTNanopbHelpers.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = GDTCCTNanopbHelpers.m; path = GoogleDataTransportCCTSupport/GDTCCTLibrary/GDTCCTNanopbHelpers.m; sourceTree = "<group>"; }; - 52670FF4817FA37ED38D1FAEBA55FE4C /* dec_clip_tables.c */ = {isa = PBXFileReference; includeInIndex = 1; name = dec_clip_tables.c; path = src/dsp/dec_clip_tables.c; sourceTree = "<group>"; }; - 52707312B51286806012D175CCFF6E9E /* SDImageCodersManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SDImageCodersManager.h; path = SDWebImage/Core/SDImageCodersManager.h; sourceTree = "<group>"; }; - 5273FC4E408E37E58B7C8FD18FE41F20 /* LICENSE */ = {isa = PBXFileReference; includeInIndex = 1; path = LICENSE; sourceTree = "<group>"; }; - 52A7365380BDE375D1690CA2016D6E62 /* ReactNativeUiLib.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = ReactNativeUiLib.podspec; sourceTree = "<group>"; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; - 52A81437D376AA16FFEF16706FC8287F /* UMFontInterface.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = UMFontInterface.release.xcconfig; sourceTree = "<group>"; }; - 52AC005AA38CFB40CD236E225477B6B6 /* fixed-dtoa.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "fixed-dtoa.h"; path = "double-conversion/fixed-dtoa.h"; sourceTree = "<group>"; }; - 52AD7AD43F17197B72F79473014FB75E /* MemoryFile.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = MemoryFile.h; path = Core/MemoryFile.h; sourceTree = "<group>"; }; - 52B3BD3001DD4C280B48DC3695188A70 /* ThreadWheelTimekeeper.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ThreadWheelTimekeeper.h; path = folly/futures/ThreadWheelTimekeeper.h; sourceTree = "<group>"; }; - 52BC7916B2B7B219EB6FC9CC2A5AB472 /* PolyDetail.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = PolyDetail.h; path = folly/detail/PolyDetail.h; sourceTree = "<group>"; }; - 52BF20AE590FB1B2AEB17652F1AF704E /* 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 = "<group>"; }; - 52E1F69E1D0368EFA784C9D21D7DBD74 /* FIRCLSProcess.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRCLSProcess.h; path = Crashlytics/Crashlytics/Components/FIRCLSProcess.h; sourceTree = "<group>"; }; - 52F252E0F0B192B8B9210D9400720D55 /* react-native-webview.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = "react-native-webview.podspec"; sourceTree = "<group>"; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; - 52FA215B0AABD63CF4160AC620BF6AF6 /* RNSScreenContainer.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNSScreenContainer.h; path = ios/RNSScreenContainer.h; sourceTree = "<group>"; }; + 51C810468B8101B10537F681C449FE02 /* log-internal.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "log-internal.h"; sourceTree = "<group>"; }; + 51CBD072695636FFFB70286D87493724 /* FIRCLSThreadArrayOperation.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRCLSThreadArrayOperation.m; path = Crashlytics/Crashlytics/Operations/Symbolication/FIRCLSThreadArrayOperation.m; sourceTree = "<group>"; }; + 51F68D11476DD57F758D24A7380631DF /* react-native-cameraroll.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "react-native-cameraroll.release.xcconfig"; sourceTree = "<group>"; }; + 51FA8CDDD40B965481C0EC0F2AF22AB5 /* UMCameraInterface.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = UMCameraInterface.release.xcconfig; sourceTree = "<group>"; }; + 51FF4293E7C2143586656CC260F20B3D /* AsymmetricMemoryBarrier.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = AsymmetricMemoryBarrier.h; path = folly/synchronization/AsymmetricMemoryBarrier.h; sourceTree = "<group>"; }; + 520200035F2C53EC379867018D7BCA3B /* AsyncGeneratorShim.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = AsyncGeneratorShim.h; path = yarpl/flowable/AsyncGeneratorShim.h; sourceTree = "<group>"; }; + 521499094380253553C8D99021FC1979 /* kqueue-internal.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "kqueue-internal.h"; sourceTree = "<group>"; }; + 5221316D2DBD7CAD19A71B180610681E /* QueuedImmediateExecutor.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = QueuedImmediateExecutor.cpp; path = folly/executors/QueuedImmediateExecutor.cpp; sourceTree = "<group>"; }; + 52265A81AB1340CED9D94D568FAD6A91 /* REAOperatorNode.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = REAOperatorNode.h; sourceTree = "<group>"; }; + 528D81F5282BB37DA67F169008605DF8 /* BugsnagMetadata.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = BugsnagMetadata.m; sourceTree = "<group>"; }; + 528F237CC320B495D7E3E338DF645B3C /* RNDateTimePicker.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNDateTimePicker.h; path = ios/RNDateTimePicker.h; sourceTree = "<group>"; }; + 529445967A2C7AFF7DDFCF1540C4B318 /* BSG_KSCrash.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BSG_KSCrash.h; sourceTree = "<group>"; }; + 529845ECA5C821EEAEED78FE4F55B888 /* EXImageLoader-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "EXImageLoader-dummy.m"; sourceTree = "<group>"; }; + 52A59F967C9E8AAF8C5C7C04C94801C3 /* RNRootViewGestureRecognizer.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNRootViewGestureRecognizer.h; path = ios/RNRootViewGestureRecognizer.h; sourceTree = "<group>"; }; + 52A8F8CC113E6CB9AD4B096E8BCA0DAA /* Flipper-Folly-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "Flipper-Folly-dummy.m"; sourceTree = "<group>"; }; + 52D16F7C92685969291985881C5CD1EE /* SDImageCodersManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = SDImageCodersManager.m; path = SDWebImage/Core/SDImageCodersManager.m; sourceTree = "<group>"; }; + 52D8ACC7061D6118857C2A5720E4804E /* BugsnagReactNative.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = BugsnagReactNative.podspec; sourceTree = "<group>"; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; + 52E2B0BEB8C4F7BEEAB90F39920D084B /* SSLSessionImpl.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SSLSessionImpl.h; path = folly/ssl/detail/SSLSessionImpl.h; sourceTree = "<group>"; }; + 52FC2C23B825C00D94BE09128D07281B /* BSG_KSJSONCodec.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BSG_KSJSONCodec.h; sourceTree = "<group>"; }; 52FCF98CEFF94C742080B6965D537AD0 /* libreact-native-safe-area-context.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; name = "libreact-native-safe-area-context.a"; path = "libreact-native-safe-area-context.a"; sourceTree = BUILT_PRODUCTS_DIR; }; - 530F1C764011FFBC084B034896A6E8A4 /* anim_decode.c */ = {isa = PBXFileReference; includeInIndex = 1; name = anim_decode.c; path = src/demux/anim_decode.c; sourceTree = "<group>"; }; - 53119D11FE6E6BB4AE2A001EE20671DB /* Shared.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = Shared.h; sourceTree = "<group>"; }; - 5318214869ED3135FF6216D2E0BBE0A1 /* react-native-document-picker-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "react-native-document-picker-prefix.pch"; sourceTree = "<group>"; }; - 5321578E4C914574AC5A3F7F7ACF0704 /* Compression.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Compression.h; path = ios/src/Compression.h; sourceTree = "<group>"; }; - 5334928FBB0132296272FEA11164A514 /* FIRCLSProcess.c */ = {isa = PBXFileReference; includeInIndex = 1; name = FIRCLSProcess.c; path = Crashlytics/Crashlytics/Components/FIRCLSProcess.c; sourceTree = "<group>"; }; - 533BF04B4077FA2D7C5F3204BADA4DAF /* SystraceSection.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = SystraceSection.h; sourceTree = "<group>"; }; - 53418337E874FD7F99613A3D213BEA32 /* Replaceable.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Replaceable.h; path = folly/Replaceable.h; sourceTree = "<group>"; }; - 5344EE5042D2982D98BB85F45FACA5BB /* FIRAEvent.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRAEvent.h; path = Crashlytics/Crashlytics/Helpers/FIRAEvent.h; sourceTree = "<group>"; }; - 5347884F300F09F9653A026F17BCD141 /* FlipperCppBridgingConnection.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FlipperCppBridgingConnection.h; path = iOS/FlipperKit/CppBridge/FlipperCppBridgingConnection.h; sourceTree = "<group>"; }; - 534C4979DAEE0F420291383A100BED53 /* RCTRefreshControlManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTRefreshControlManager.m; sourceTree = "<group>"; }; - 534DB8EDC3186CDE3523F27EA5582D99 /* react-native-jitsi-meet.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "react-native-jitsi-meet.debug.xcconfig"; sourceTree = "<group>"; }; - 5358A11D087A13F0F9BAADB9C6044558 /* EXHaptics.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = EXHaptics.debug.xcconfig; sourceTree = "<group>"; }; - 536F7347189B2519493855E0FBBF78CB /* SanitizeThread.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SanitizeThread.h; path = folly/synchronization/SanitizeThread.h; sourceTree = "<group>"; }; - 537D942E7F8CDD34D9798800DFD7B3E1 /* React-perflogger.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "React-perflogger.debug.xcconfig"; sourceTree = "<group>"; }; - 53BC247758C79B3738AB7B8F4964FCEE /* DistributedMutex-inl.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "DistributedMutex-inl.h"; path = "folly/synchronization/DistributedMutex-inl.h"; sourceTree = "<group>"; }; - 53E6098912BE03536ECD4B1FE675B237 /* evmap.c */ = {isa = PBXFileReference; includeInIndex = 1; path = evmap.c; sourceTree = "<group>"; }; - 53EA4730DD9F53694EA672E36F0054AF /* RCTImageView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTImageView.h; path = Libraries/Image/RCTImageView.h; sourceTree = "<group>"; }; + 53069B957F7CA1845BC05BF45F9102A6 /* filter_enc.c */ = {isa = PBXFileReference; includeInIndex = 1; name = filter_enc.c; path = src/enc/filter_enc.c; sourceTree = "<group>"; }; + 531B75F2A324E32931E4288AC13D9DC0 /* IOBufQueue.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = IOBufQueue.h; path = folly/io/IOBufQueue.h; sourceTree = "<group>"; }; + 53490095923FA34950C79C426F7DA506 /* RNLocalize.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNLocalize.m; path = ios/RNLocalize.m; sourceTree = "<group>"; }; + 53542ADB2E7CC2A889DDEB73926A3F49 /* LNInterpolable.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = LNInterpolable.h; sourceTree = "<group>"; }; + 535F71DC083BD6DC83AE41E30FB10B6A /* Orientation.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = Orientation.m; path = iOS/RCTOrientation/Orientation.m; sourceTree = "<group>"; }; + 537B1A2D5A531436E67DA7F538C794F8 /* UMReactNativeEventEmitter.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = UMReactNativeEventEmitter.h; sourceTree = "<group>"; }; + 53900BCEE51277BE0F3EA3875F8989F5 /* BSG_KSObjC.c */ = {isa = PBXFileReference; includeInIndex = 1; path = BSG_KSObjC.c; sourceTree = "<group>"; }; + 539A6E8F934239B5FD3A14AB9B340C44 /* SDDiskCache.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SDDiskCache.h; path = SDWebImage/Core/SDDiskCache.h; sourceTree = "<group>"; }; + 53A25457AA2F5E11930B3BBD24AAAE87 /* UMImageLoaderInterface.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = UMImageLoaderInterface.release.xcconfig; sourceTree = "<group>"; }; + 53CA3E313CC245F884E66A348CD1939E /* LNAnimatorTemp.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = LNAnimatorTemp.m; sourceTree = "<group>"; }; + 53CE8828D990C1D32594CB9ADA75AAEB /* RCTRefreshableProtocol.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTRefreshableProtocol.h; sourceTree = "<group>"; }; 53EDC418FED268D0086748617F26DBF5 /* Pods-NotificationService-acknowledgements.plist */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.plist.xml; path = "Pods-NotificationService-acknowledgements.plist"; sourceTree = "<group>"; }; - 53FBAA5077083A561752542CB9651EF7 /* mux_types.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = mux_types.h; path = src/webp/mux_types.h; sourceTree = "<group>"; }; - 54016B7EE3DEBAD705D147B677B5369F /* FirebaseCrashlytics-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "FirebaseCrashlytics-dummy.m"; sourceTree = "<group>"; }; - 5409A05504A9224238190E1A66F61FAD /* FLEXNetworkObserver.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FLEXNetworkObserver.h; path = iOS/Plugins/FlipperKitNetworkPlugin/SKIOSNetworkPlugin/FLEXNetworkLib/FLEXNetworkObserver.h; sourceTree = "<group>"; }; - 5415899438777A95114A46A19EB4EB86 /* picture_rescale_enc.c */ = {isa = PBXFileReference; includeInIndex = 1; name = picture_rescale_enc.c; path = src/enc/picture_rescale_enc.c; sourceTree = "<group>"; }; - 542B769074BF2AB509D9DC76111A3546 /* RNFetchBlobConst.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNFetchBlobConst.m; path = ios/RNFetchBlobConst.m; sourceTree = "<group>"; }; - 54491F5B3AE4721132EE26759F4E88F4 /* BSG_KSCrashSentry_Signal.c */ = {isa = PBXFileReference; includeInIndex = 1; path = BSG_KSCrashSentry_Signal.c; sourceTree = "<group>"; }; - 5463A1ED9389FDAE33B159B05CD39CCD /* crashlytics.nanopb.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = crashlytics.nanopb.h; path = Crashlytics/Protogen/nanopb/crashlytics.nanopb.h; sourceTree = "<group>"; }; - 5478710FAB2D5DE952BA4AE4F25FEC57 /* RCTCxxConvert.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTCxxConvert.h; sourceTree = "<group>"; }; - 5489F8899DE48A12C9A910B77CFBAACF /* FBLPromise+Always.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "FBLPromise+Always.h"; path = "Sources/FBLPromises/include/FBLPromise+Always.h"; sourceTree = "<group>"; }; - 54A0241C5AB2ECD06DAE4825A6FBAABE /* FIRInteropEventNames.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRInteropEventNames.h; path = Interop/Analytics/Public/FIRInteropEventNames.h; sourceTree = "<group>"; }; - 54A5A7C199B2EF8C220DCFD279A36398 /* ExecutorWithPriority.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = ExecutorWithPriority.cpp; path = folly/executors/ExecutorWithPriority.cpp; sourceTree = "<group>"; }; - 54C3DB7CB50F66858BBCF53041CFFA71 /* RCTImageCache.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTImageCache.h; path = Libraries/Image/RCTImageCache.h; sourceTree = "<group>"; }; - 54C880A4BF84B88F1F9DADFB3F064F43 /* it.lproj */ = {isa = PBXFileReference; includeInIndex = 1; name = it.lproj; path = "Objective-C/TOCropViewController/Resources/it.lproj"; sourceTree = "<group>"; }; - 54D44305B2A10ACB385926B44F27A128 /* EXAppleAuthentication-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "EXAppleAuthentication-prefix.pch"; sourceTree = "<group>"; }; - 54D5F480D3D001B12F3F9B7A708902AB /* cpu.c */ = {isa = PBXFileReference; includeInIndex = 1; name = cpu.c; path = src/dsp/cpu.c; sourceTree = "<group>"; }; - 54DE1CD8942989BC6D0340E4917972AE /* nl.lproj */ = {isa = PBXFileReference; includeInIndex = 1; name = nl.lproj; path = "Objective-C/TOCropViewController/Resources/nl.lproj"; sourceTree = "<group>"; }; - 54DFF4FA1AFD8A70E0EE2531B28728BA /* RNNotificationUtils.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNNotificationUtils.m; path = RNNotifications/RNNotificationUtils.m; sourceTree = "<group>"; }; - 54E3357E369C5F5A2A821A386ABF801A /* double-conversion.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = "double-conversion.cc"; path = "double-conversion/double-conversion.cc"; sourceTree = "<group>"; }; - 54E444AF140E6610ABEB65A9939202F1 /* EXAV-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "EXAV-prefix.pch"; sourceTree = "<group>"; }; - 550BFE8F5C79E6486A299B4A4E4C78DF /* FBLazyIterator.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FBLazyIterator.h; path = FBLazyVector/FBLazyIterator.h; sourceTree = "<group>"; }; - 550F4A1CB3049209E177D33601E9B7C0 /* RCTLayoutAnimation.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTLayoutAnimation.h; sourceTree = "<group>"; }; - 55191A8A5AD6909B4F06BF8902C0A36E /* EXFileSystem.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = EXFileSystem.podspec; sourceTree = "<group>"; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; - 552069D1E4D7D8A5F376A2B75A54636F /* RSocket.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = RSocket.cpp; path = rsocket/RSocket.cpp; sourceTree = "<group>"; }; - 552390FE19CFD6F5D5586884FACFD5C0 /* MMKVLog.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = MMKVLog.h; path = Core/MMKVLog.h; sourceTree = "<group>"; }; - 55294EC3E504C8BA006BB2B2EBA6DAC8 /* Exceptions.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = Exceptions.h; sourceTree = "<group>"; }; - 554C9744B627BCE0D470D29FD391FE4F /* random_utils.c */ = {isa = PBXFileReference; includeInIndex = 1; name = random_utils.c; path = src/utils/random_utils.c; sourceTree = "<group>"; }; - 5552D7AE40E5A50731F0F4C046F682DC /* Flipper-PeerTalk.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "Flipper-PeerTalk.debug.xcconfig"; sourceTree = "<group>"; }; - 556022F0512FB062A96153D84CAD318B /* HazptrObjLinked.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = HazptrObjLinked.h; path = folly/synchronization/HazptrObjLinked.h; sourceTree = "<group>"; }; - 55768652A0C6C1024B76E44458316F0D /* ScheduledSubscription.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = ScheduledSubscription.cpp; path = rsocket/internal/ScheduledSubscription.cpp; sourceTree = "<group>"; }; - 557C06D43567F388267AB80BAAF2CCCA /* MRCCanary.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = MRCCanary.m; sourceTree = "<group>"; }; - 55831EB804F47E27775A4F202AAEC9A5 /* HazptrThreadPoolExecutor.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = HazptrThreadPoolExecutor.h; path = folly/synchronization/HazptrThreadPoolExecutor.h; sourceTree = "<group>"; }; - 558D3F7ACAF31C18087EB60CBBEF6338 /* KeyCommands.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = KeyCommands.debug.xcconfig; sourceTree = "<group>"; }; - 55B349C864E792E7F69E016CCB3CD3A5 /* PriorityThreadFactory.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = PriorityThreadFactory.h; path = folly/executors/thread_factory/PriorityThreadFactory.h; sourceTree = "<group>"; }; - 55B433F142C10604DED65C5B3CD6AE2C /* SDWebImageIndicator.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = SDWebImageIndicator.m; path = SDWebImage/Core/SDWebImageIndicator.m; sourceTree = "<group>"; }; - 55C2494C1C2BAC91A84EA92BDE1AA6A9 /* SDFileAttributeHelper.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SDFileAttributeHelper.h; path = SDWebImage/Private/SDFileAttributeHelper.h; sourceTree = "<group>"; }; - 55D1B6B22130A6906F858A24EBA49AC0 /* EXVideoThumbnailsModule.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = EXVideoThumbnailsModule.h; path = EXVideoThumbnails/EXVideoThumbnailsModule.h; sourceTree = "<group>"; }; - 55D8C288D400FF1755F9015056E5E34A /* CodedInputDataCrypt_OSX.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = CodedInputDataCrypt_OSX.cpp; path = Core/CodedInputDataCrypt_OSX.cpp; sourceTree = "<group>"; }; - 55D918DA09C748DE14493F55B5EF6DFB /* EXPermissions.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = EXPermissions.h; path = EXPermissions/EXPermissions.h; sourceTree = "<group>"; }; - 55DE32077AF24CFA4B8C6153B81CE367 /* ScheduledSingleSubscription.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ScheduledSingleSubscription.h; path = rsocket/internal/ScheduledSingleSubscription.h; sourceTree = "<group>"; }; - 55E5F67EF246FFC6CAC577A6181668C0 /* FlipperClient.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = FlipperClient.cpp; path = xplat/Flipper/FlipperClient.cpp; sourceTree = "<group>"; }; - 55EDE0BD7CB5DAA7AD533C74F9DEF1AD /* RNNotificationEventHandler.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNNotificationEventHandler.m; path = RNNotifications/RNNotificationEventHandler.m; sourceTree = "<group>"; }; - 55F82640CBEB65A43180581A1F52B31B /* ThreadWheelTimekeeper.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = ThreadWheelTimekeeper.cpp; path = folly/futures/ThreadWheelTimekeeper.cpp; sourceTree = "<group>"; }; - 560446E9ECE8A3E9D5852595DDB3F947 /* EventBaseBackendBase.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = EventBaseBackendBase.h; path = folly/io/async/EventBaseBackendBase.h; sourceTree = "<group>"; }; - 5617917CB20E847E1CF7B0488DD757C5 /* BitVectorCoding.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = BitVectorCoding.h; path = folly/experimental/BitVectorCoding.h; sourceTree = "<group>"; }; - 5617A0417C21E344068EC440BE7AE2FA /* UIView+SKInvalidation.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "UIView+SKInvalidation.h"; path = "iOS/Plugins/FlipperKitLayoutPlugin/FlipperKitLayoutPlugin/UIView+SKInvalidation.h"; sourceTree = "<group>"; }; - 5621347BF283A428BFA1DECDA7C75631 /* RNCWebView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNCWebView.m; path = apple/RNCWebView.m; sourceTree = "<group>"; }; - 563880E140BAE9F0CD6A507B16D921F3 /* EXVideoPlayerViewController.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = EXVideoPlayerViewController.h; sourceTree = "<group>"; }; + 53F2B139F253C910EC667BFF9FF86BCC /* Flipper-RSocket-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "Flipper-RSocket-prefix.pch"; sourceTree = "<group>"; }; + 53FC3A061F69A1FA640A10B61413A47D /* demangle.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = demangle.cc; path = src/demangle.cc; sourceTree = "<group>"; }; + 540F0A04FC92B2DEEDCA2FBF692D382E /* FIRErrors.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRErrors.h; path = FirebaseCore/Sources/Private/FIRErrors.h; sourceTree = "<group>"; }; + 5411E0A631A2025EA451DA0A94F3AD45 /* installation.md */ = {isa = PBXFileReference; includeInIndex = 1; name = installation.md; path = docs/installation.md; sourceTree = "<group>"; }; + 5415847CF0A60D1C2FD6EDBF1A9684CA /* DiscriminatedPtrDetail.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = DiscriminatedPtrDetail.h; path = folly/detail/DiscriminatedPtrDetail.h; sourceTree = "<group>"; }; + 5426D9405F47F6D9F19A4EA96DD6C685 /* README.md */ = {isa = PBXFileReference; includeInIndex = 1; path = README.md; sourceTree = "<group>"; }; + 542C7BCF65B0205E13A48816C27B884A /* RCTLayoutAnimationGroup.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTLayoutAnimationGroup.m; sourceTree = "<group>"; }; + 5454397C53B00A0886C67818C7D5C4C6 /* OpenSSL-Universal.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "OpenSSL-Universal.debug.xcconfig"; sourceTree = "<group>"; }; + 5455C0402CFDCE1DF1970166EF7B64BE /* FBLPromise+Await.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "FBLPromise+Await.h"; path = "Sources/FBLPromises/include/FBLPromise+Await.h"; sourceTree = "<group>"; }; + 545A99D73B6AF3C5CE7D098FDB345E72 /* MessageTypesInlines.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = MessageTypesInlines.h; sourceTree = "<group>"; }; + 5468AAE699A2ACA0AAD80F3F1FF37684 /* EXAppleAuthenticationRequest.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = EXAppleAuthenticationRequest.m; path = EXAppleAuthentication/EXAppleAuthenticationRequest.m; sourceTree = "<group>"; }; + 546F60E8025B56327E8A6A5C195B0E7B /* SocketOptionMap.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SocketOptionMap.h; path = folly/io/SocketOptionMap.h; sourceTree = "<group>"; }; + 548DF976B1BD813F08E0D2564004319C /* sorted_vector_types.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = sorted_vector_types.h; path = folly/sorted_vector_types.h; sourceTree = "<group>"; }; + 549189282880EAC5953D1B5D58741493 /* RNSScreenContainer.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNSScreenContainer.m; path = ios/RNSScreenContainer.m; sourceTree = "<group>"; }; + 54946FE14E42A0C43FE23C82BCBAFBAA /* GDTCORFlatFileStorage.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = GDTCORFlatFileStorage.m; path = GoogleDataTransport/GDTCORLibrary/GDTCORFlatFileStorage.m; sourceTree = "<group>"; }; + 5496512ACA34AB0CE45FFA9D693EAFC4 /* react-native-safe-area-context.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "react-native-safe-area-context.release.xcconfig"; sourceTree = "<group>"; }; + 54990C1917C15C7B9DA9FAEC887FBDBC /* alpha_processing_neon.c */ = {isa = PBXFileReference; includeInIndex = 1; name = alpha_processing_neon.c; path = src/dsp/alpha_processing_neon.c; sourceTree = "<group>"; }; + 5499C8939B574B7612F6946AD568F52E /* BSGConfigurationBuilder.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BSGConfigurationBuilder.h; sourceTree = "<group>"; }; + 549E91F13973489D3FA41C9F90002143 /* React-RCTBlob-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "React-RCTBlob-prefix.pch"; sourceTree = "<group>"; }; + 54A22B6DED609572B1BE3E94A925754F /* Libgen.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Libgen.h; path = folly/portability/Libgen.h; sourceTree = "<group>"; }; + 54A50CDC6630BF259787AE34CC0B62DB /* SDImageCodersManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SDImageCodersManager.h; path = SDWebImage/Core/SDImageCodersManager.h; sourceTree = "<group>"; }; + 54CD2909364338BB6E2A33BD23CF3993 /* IPAddressV6.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = IPAddressV6.cpp; path = folly/IPAddressV6.cpp; sourceTree = "<group>"; }; + 54CD5FD0F145D63D0153F14AD25D57B9 /* REABlockNode.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = REABlockNode.h; sourceTree = "<group>"; }; + 54CE73AA7F6B4AB2117180DC6185A2BF /* FIRInstallationsVersion.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRInstallationsVersion.h; path = FirebaseInstallations/Source/Library/Public/FirebaseInstallations/FIRInstallationsVersion.h; sourceTree = "<group>"; }; + 54CF59A9E9D07E96C9C6306F75169284 /* backward_references_cost_enc.c */ = {isa = PBXFileReference; includeInIndex = 1; name = backward_references_cost_enc.c; path = src/enc/backward_references_cost_enc.c; sourceTree = "<group>"; }; + 54D6162A681BB47031E3AA3A4213F515 /* Arena-inl.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "Arena-inl.h"; path = "folly/memory/Arena-inl.h"; sourceTree = "<group>"; }; + 54D6FE91E066A49CEB31577D89B62768 /* FIRCLSThreadState.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRCLSThreadState.h; path = Crashlytics/Crashlytics/Helpers/FIRCLSThreadState.h; sourceTree = "<group>"; }; + 54DAB02A271605CA8E777D0C62060EEC /* RCTLogBoxView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTLogBoxView.h; path = React/CoreModules/RCTLogBoxView.h; sourceTree = "<group>"; }; + 54DBF8D2200CD59FADB221DBF6D96A39 /* RCTNativeAnimatedTurboModule.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTNativeAnimatedTurboModule.h; path = Libraries/NativeAnimation/RCTNativeAnimatedTurboModule.h; sourceTree = "<group>"; }; + 54ECCCA6485814F6D3A1A8F2DCE48A16 /* Types.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Types.h; path = folly/futures/detail/Types.h; sourceTree = "<group>"; }; + 54FBE15BA1D187A4AEFAFA03FEFC9C25 /* Cursor.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = Cursor.cpp; path = folly/io/Cursor.cpp; sourceTree = "<group>"; }; + 54FFA83F2F80083AB0266C03CD7132C7 /* QBVideoIconView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = QBVideoIconView.m; path = ios/QBImagePicker/QBImagePicker/QBVideoIconView.m; sourceTree = "<group>"; }; + 55144753DDC5D95053B8318148D3F83C /* EXAV-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "EXAV-prefix.pch"; sourceTree = "<group>"; }; + 55230E1B418258A029FDE8B6BE0AC394 /* RNFBCrashlytics.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = RNFBCrashlytics.debug.xcconfig; sourceTree = "<group>"; }; + 552355C1FCF6DABDBA85A2A1C7CEA885 /* GULNetworkURLSession.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = GULNetworkURLSession.h; path = GoogleUtilities/Network/Private/GULNetworkURLSession.h; sourceTree = "<group>"; }; + 553344DFAAE5322163B1FDF517DE2754 /* RCTValueAnimatedNode.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTValueAnimatedNode.m; sourceTree = "<group>"; }; + 558F64E901AAC77C744060E7E31B9EB6 /* EXImageLoader.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = EXImageLoader.m; path = EXImageLoader/EXImageLoader.m; sourceTree = "<group>"; }; + 5599301C23C5AF07564AD8BEDCDFB931 /* MMBuffer.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = MMBuffer.h; path = Core/MMBuffer.h; sourceTree = "<group>"; }; + 55A679876C2AB3BE5151840BEA7F86EA /* FBLPromise+Validate.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "FBLPromise+Validate.m"; path = "Sources/FBLPromises/FBLPromise+Validate.m"; sourceTree = "<group>"; }; + 55DF40C67AED6A86F5EBD59DFE928F5D /* RCTPerfMonitor.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTPerfMonitor.mm; sourceTree = "<group>"; }; + 55E276AC1239C55F010D125011B44FC4 /* BugsnagNotifier.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BugsnagNotifier.h; sourceTree = "<group>"; }; + 55F0E3389C100B389E973E2C19F86A61 /* REAPropsNode.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = REAPropsNode.m; sourceTree = "<group>"; }; + 56183F9C3925A0DA23F34F49C19A89CE /* QBCheckmarkView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = QBCheckmarkView.m; path = ios/QBImagePicker/QBImagePicker/QBCheckmarkView.m; sourceTree = "<group>"; }; + 5625A048FAFF3886B166D7F63E28317B /* IPAddress.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = IPAddress.h; path = folly/detail/IPAddress.h; sourceTree = "<group>"; }; 563E0A0FEB65B564D6A02A0A948B2E62 /* libPods-NotificationService.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; name = "libPods-NotificationService.a"; path = "libPods-NotificationService.a"; sourceTree = BUILT_PRODUCTS_DIR; }; - 56519DD0C7D108E7542EE6CBD4386759 /* AtFork.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = AtFork.cpp; path = folly/detail/AtFork.cpp; sourceTree = "<group>"; }; - 565C98C0F87D64F187F1425AEA777E05 /* SerialExecutor.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; path = SerialExecutor.cpp; sourceTree = "<group>"; }; - 5669BD5467E7448A1D8086103C214E2E /* FIRCLSURLSessionDownloadTask.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRCLSURLSessionDownloadTask.h; path = Crashlytics/Crashlytics/FIRCLSURLSession/Tasks/FIRCLSURLSessionDownloadTask.h; sourceTree = "<group>"; }; - 567132C080CB36CCAE683AD8A7F396F3 /* RCTView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTView.h; sourceTree = "<group>"; }; - 568E4B473F5892180E742DDA535A93AE /* RCTCustomKeyboardViewControllerTemp.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTCustomKeyboardViewControllerTemp.h; sourceTree = "<group>"; }; - 56BCA2B97E1DAE73AA56E72BEEFB6722 /* RNPanHandler.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RNPanHandler.m; sourceTree = "<group>"; }; - 56C209F75E540ED4D8203CDE11F2E1B8 /* EXWebBrowser.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = EXWebBrowser.release.xcconfig; sourceTree = "<group>"; }; - 56C70B4DCF1B4B7B72930A3391747A64 /* dec_mips_dsp_r2.c */ = {isa = PBXFileReference; includeInIndex = 1; name = dec_mips_dsp_r2.c; path = src/dsp/dec_mips_dsp_r2.c; sourceTree = "<group>"; }; - 56E5FA42808A7E3FA3882E05796F2BE2 /* RCTAnimatedNode.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTAnimatedNode.h; sourceTree = "<group>"; }; - 56EA0A0FE0344C01612010C4CCF72387 /* FIRInstallationsSingleOperationPromiseCache.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRInstallationsSingleOperationPromiseCache.h; path = FirebaseInstallations/Source/Library/InstallationsIDController/FIRInstallationsSingleOperationPromiseCache.h; sourceTree = "<group>"; }; - 570C4FC163FDB50A3BA899B5D8E85574 /* Malloc.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Malloc.h; path = folly/portability/Malloc.h; sourceTree = "<group>"; }; - 5717BE80A558DC52BD945542F682495A /* react-native-jitsi-meet.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "react-native-jitsi-meet.release.xcconfig"; sourceTree = "<group>"; }; - 57296D14B37F4B594C34FDEC9A63E717 /* F14Map-fwd.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "F14Map-fwd.h"; path = "folly/container/F14Map-fwd.h"; sourceTree = "<group>"; }; + 564236AC06A67E7906BE90C1450FA3F2 /* IOExecutor.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = IOExecutor.h; path = folly/executors/IOExecutor.h; sourceTree = "<group>"; }; + 5642F633F9A341C9F1E8E955B9163C7D /* LICENSE.md */ = {isa = PBXFileReference; includeInIndex = 1; path = LICENSE.md; sourceTree = "<group>"; }; + 565020DA4DB2607E820FD854333813D0 /* MPMCPipelineDetail.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = MPMCPipelineDetail.h; path = folly/detail/MPMCPipelineDetail.h; sourceTree = "<group>"; }; + 566E0D113677CF1EF5DE3ECB990C2DE9 /* RCTSourceCode.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTSourceCode.mm; sourceTree = "<group>"; }; + 56846E9A604F2FE785A9DAB2C4ECB80B /* react-native-simple-crypto.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "react-native-simple-crypto.release.xcconfig"; sourceTree = "<group>"; }; + 5697C390F57A4F934D4B97888CC0ED8C /* EXPermissions.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = EXPermissions.m; path = EXPermissions/EXPermissions.m; sourceTree = "<group>"; }; + 56A56D098D5382B35FB0453B22066535 /* SafeAreaSpacerView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = SafeAreaSpacerView.h; sourceTree = "<group>"; }; + 56A7CE68D94ED992183FA601211EB7C0 /* RCTUIManagerObserverCoordinator.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTUIManagerObserverCoordinator.h; sourceTree = "<group>"; }; + 56B08D226B9BC079AF4E97C5363BBF6A /* ThreadWheelTimekeeper.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ThreadWheelTimekeeper.h; path = folly/futures/ThreadWheelTimekeeper.h; sourceTree = "<group>"; }; + 56B1D174D62DE183D38A29229CFA9001 /* TurboCxxModule.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; path = TurboCxxModule.cpp; sourceTree = "<group>"; }; + 56C371BA2A30A5A542C0D279D7C8FFDD /* RNCSafeAreaViewMode.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNCSafeAreaViewMode.m; path = ios/SafeAreaView/RNCSafeAreaViewMode.m; sourceTree = "<group>"; }; + 56D78C2ED078AA32E770656F63173371 /* REANode.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = REANode.h; sourceTree = "<group>"; }; + 56DF29480F800CBF2C64F9E17530DB92 /* UMFontInterface.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = UMFontInterface.release.xcconfig; sourceTree = "<group>"; }; + 56F772CAE7ABA0F1339CD929B661A10E /* UIView+Private.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "UIView+Private.h"; sourceTree = "<group>"; }; + 57007F30B0336E7F7C2AE25790DD87A1 /* NSTextStorage+FontScaling.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "NSTextStorage+FontScaling.m"; sourceTree = "<group>"; }; + 571495843F48EC7A9AA83CD113E635F4 /* FFFastImageSource.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FFFastImageSource.h; path = ios/FastImage/FFFastImageSource.h; sourceTree = "<group>"; }; + 571B85305485907B54ADAEE11543070C /* RCTSha.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTSha.h; path = ios/RCTCrypto/RCTSha.h; sourceTree = "<group>"; }; + 571E1D14F57017E8C40C842AA049BDCC /* React-RCTActionSheet.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "React-RCTActionSheet.release.xcconfig"; sourceTree = "<group>"; }; + 5735D8B0589DE7582511C83B1D932989 /* SKNodeDescriptor.mm */ = {isa = PBXFileReference; includeInIndex = 1; name = SKNodeDescriptor.mm; path = iOS/Plugins/FlipperKitLayoutPlugin/FlipperKitLayoutPlugin/SKNodeDescriptor.mm; sourceTree = "<group>"; }; 5737DDB4BC95AD399B3206838AB97095 /* libRNCAsyncStorage.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; name = libRNCAsyncStorage.a; path = libRNCAsyncStorage.a; sourceTree = BUILT_PRODUCTS_DIR; }; - 574448DDB956D4C4A26897FFD13475A1 /* BSGEventUploadKSCrashReportOperation.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = BSGEventUploadKSCrashReportOperation.m; sourceTree = "<group>"; }; + 57404C60E34D39D975216747AF908EA0 /* CodedOutputData.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = CodedOutputData.cpp; path = Core/CodedOutputData.cpp; sourceTree = "<group>"; }; 574E8A849B86DCF8EE5726418D974721 /* libEXWebBrowser.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; name = libEXWebBrowser.a; path = libEXWebBrowser.a; sourceTree = BUILT_PRODUCTS_DIR; }; - 576AD448826523267C1B77104A090AF9 /* UMCore-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "UMCore-prefix.pch"; sourceTree = "<group>"; }; - 57700021537417430A8DB243329E7650 /* PTProtocol.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = PTProtocol.m; path = peertalk/PTProtocol.m; sourceTree = "<group>"; }; - 57772953C8F6A7EE7549195AE3766F39 /* Windows.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Windows.h; path = folly/portability/Windows.h; sourceTree = "<group>"; }; - 57B323E86461E56DCA658BB778E3012C /* Framer.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Framer.h; path = rsocket/framing/Framer.h; sourceTree = "<group>"; }; - 57F145D7F0B28F41789BDD4674BC470E /* UMTaskInterface.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = UMTaskInterface.h; path = UMTaskManagerInterface/UMTaskInterface.h; sourceTree = "<group>"; }; - 580DCF30E8F730B898A9CB6FDA5A1DBA /* RCTSurfaceRootView.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTSurfaceRootView.mm; sourceTree = "<group>"; }; - 58185E3C2604FA10E23E4B814C6AA23A /* TurboModuleUtils.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; path = TurboModuleUtils.cpp; sourceTree = "<group>"; }; - 581B0AD8D2AF95FB3BA0D971E4BE811A /* RCTImageBlurUtils.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTImageBlurUtils.m; sourceTree = "<group>"; }; - 581DB7D061A947F37F56A814CD0A96F3 /* BugsnagThread.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = BugsnagThread.m; sourceTree = "<group>"; }; - 5824F8E1DF5A3B5BE9B2B0B16CF93383 /* BugsnagPlatformConditional.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BugsnagPlatformConditional.h; sourceTree = "<group>"; }; - 58273B190325B547D525894CCAF07636 /* evthread.c */ = {isa = PBXFileReference; includeInIndex = 1; path = evthread.c; sourceTree = "<group>"; }; - 583C1F06C507008E12FCD264B2ED8555 /* SynthTraceParser.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SynthTraceParser.h; path = destroot/include/hermes/SynthTraceParser.h; sourceTree = "<group>"; }; - 583CAA829AE25EB98694B65A874253F7 /* RCTKeyCommandConstants.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RCTKeyCommandConstants.m; path = ios/KeyCommands/RCTKeyCommandConstants.m; sourceTree = "<group>"; }; - 587CA81CE7102CB1AE338DEDA0A1B0D5 /* FIRCLSReportAdapter.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRCLSReportAdapter.m; path = Crashlytics/Crashlytics/Models/Record/FIRCLSReportAdapter.m; sourceTree = "<group>"; }; - 58817D2F48C0FC9AF0AB1D02CBEE1801 /* UMUserNotificationCenterProxyInterface.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = UMUserNotificationCenterProxyInterface.h; path = UMPermissionsInterface/UMUserNotificationCenterProxyInterface.h; sourceTree = "<group>"; }; - 5882B802CF53A5BD9EDA6D07631B851F /* CocoaAsyncSocket.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = CocoaAsyncSocket.release.xcconfig; sourceTree = "<group>"; }; - 588E2150CDB29AE75B83DC77C9A0D29C /* CancelingSubscriber.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = CancelingSubscriber.h; path = yarpl/flowable/CancelingSubscriber.h; sourceTree = "<group>"; }; - 58963096519D6C779211460CABBD94E7 /* LICENSE */ = {isa = PBXFileReference; includeInIndex = 1; path = LICENSE; sourceTree = "<group>"; }; - 589DC083B14AD4EC32A765ECD809C693 /* SafeAreaSpacerShadowView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = SafeAreaSpacerShadowView.h; sourceTree = "<group>"; }; - 589EFF994DF8E0A93512C85DE371D6DD /* react-native-blur.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "react-native-blur.release.xcconfig"; sourceTree = "<group>"; }; - 58A9B9AC86A3C640CA3F1826C1B01A7E /* File.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = File.h; path = folly/File.h; sourceTree = "<group>"; }; - 58B8205D88F6BC2164C9E39D657287A0 /* Aligned.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Aligned.h; path = folly/lang/Aligned.h; sourceTree = "<group>"; }; - 58B94465E6740BC4396BE9B1AA8814EC /* anim_encode.c */ = {isa = PBXFileReference; includeInIndex = 1; name = anim_encode.c; path = src/mux/anim_encode.c; sourceTree = "<group>"; }; - 58BEA1567C200E7F5F6B279975DF007C /* RNCWebViewManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNCWebViewManager.h; path = apple/RNCWebViewManager.h; sourceTree = "<group>"; }; - 58C6E7E33F256B29ECC94140A062E1F8 /* Barrier.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Barrier.h; path = folly/futures/Barrier.h; sourceTree = "<group>"; }; - 58EC4AF8CC887E52459F1B6E3EC87A2F /* ARTTextFrame.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ARTTextFrame.h; path = ios/ARTTextFrame.h; sourceTree = "<group>"; }; - 58F641A2244B06835BA45E03ED2D38D6 /* EXAV.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = EXAV.podspec; sourceTree = "<group>"; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; - 58FA23D37D8D8DF8F7AEEF92C9A7F627 /* EDFThreadPoolExecutor.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = EDFThreadPoolExecutor.h; path = folly/executors/EDFThreadPoolExecutor.h; sourceTree = "<group>"; }; - 58FDB347CF2505169C6622AA7F6B1624 /* GDTCOREvent+GDTCCTSupport.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "GDTCOREvent+GDTCCTSupport.h"; path = "GoogleDataTransportCCTSupport/GDTCCTLibrary/Public/GDTCOREvent+GDTCCTSupport.h"; sourceTree = "<group>"; }; - 5903689357297B6FC54A8D0B3466D988 /* Uri.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = Uri.cpp; path = folly/Uri.cpp; sourceTree = "<group>"; }; - 5904BCC1697988B38283030C5C0C88DF /* RCTConvert+REATransition.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "RCTConvert+REATransition.m"; sourceTree = "<group>"; }; - 591FA607D74A59DECE40C10AAE8667E7 /* QBVideoIconView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = QBVideoIconView.h; path = ios/QBImagePicker/QBImagePicker/QBVideoIconView.h; sourceTree = "<group>"; }; - 5922923155F3938505DC98B5FD1F7886 /* RCTNativeAnimatedNodesManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTNativeAnimatedNodesManager.h; path = Libraries/NativeAnimation/RCTNativeAnimatedNodesManager.h; sourceTree = "<group>"; }; - 592DC2321A8788889B3D76D68D24B042 /* FIRApp.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRApp.m; path = FirebaseCore/Sources/FIRApp.m; sourceTree = "<group>"; }; - 592DD183E51F970BE56CF088A5393452 /* React-CoreModules-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "React-CoreModules-dummy.m"; sourceTree = "<group>"; }; - 5955B368F840981A96CA92E5EC8D0045 /* DistributedMutex.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = DistributedMutex.h; path = folly/synchronization/DistributedMutex.h; sourceTree = "<group>"; }; - 5959A814B9579DC7EF9000E11F7FE3D0 /* Pbkdf2.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = Pbkdf2.m; sourceTree = "<group>"; }; - 596F10574E5D420FE66BBA5FD276D16F /* AsyncServerSocket.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = AsyncServerSocket.h; path = folly/io/async/AsyncServerSocket.h; sourceTree = "<group>"; }; - 597A1AF2A1F2D22B468797A24BCF763B /* RCTFPSGraph.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTFPSGraph.h; path = React/CoreModules/RCTFPSGraph.h; sourceTree = "<group>"; }; - 598032C41ED7209D4D75542FF1256B60 /* RCTKeyCommandsManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RCTKeyCommandsManager.m; path = ios/KeyCommands/RCTKeyCommandsManager.m; sourceTree = "<group>"; }; - 598202B7E8219B4266CB62E0A114604D /* event.c */ = {isa = PBXFileReference; includeInIndex = 1; path = event.c; sourceTree = "<group>"; }; - 598D07341ECC791245D8956E8B93C174 /* ThreadCachedLists.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ThreadCachedLists.h; path = folly/synchronization/detail/ThreadCachedLists.h; sourceTree = "<group>"; }; - 59A422662B4C7E84503A2F4A62B082F6 /* FIRCLSFileManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRCLSFileManager.m; path = Crashlytics/Crashlytics/Models/FIRCLSFileManager.m; sourceTree = "<group>"; }; - 59AE21B3569D28AC69900B2F770A4A0E /* GCConfig.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = GCConfig.h; path = destroot/include/hermes/Public/GCConfig.h; sourceTree = "<group>"; }; - 59BD0C07D24524D4C340E46EC4907F53 /* RNFlingHandler.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RNFlingHandler.m; sourceTree = "<group>"; }; - 59C26B81DF6371141DB47D218E5792DA /* RNDeviceInfo-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "RNDeviceInfo-prefix.pch"; sourceTree = "<group>"; }; - 59ED6F706C9D0F558FED09E373412B9C /* FBLPromisePrivate.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FBLPromisePrivate.h; path = Sources/FBLPromises/include/FBLPromisePrivate.h; sourceTree = "<group>"; }; - 5A1CA625338CE59842D278D9464912E7 /* FIRAnalyticsConnector.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = FIRAnalyticsConnector.framework; path = Frameworks/FIRAnalyticsConnector.framework; sourceTree = "<group>"; }; - 5A1D49F08EA04CD0332FF2CEDCE38B9E /* raw_logging.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = raw_logging.h; path = src/glog/raw_logging.h; sourceTree = "<group>"; }; - 5A29B3E4A16627EEEB36AC28A8C68324 /* FIRCLSURLSessionUploadTask.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRCLSURLSessionUploadTask.h; path = Crashlytics/Crashlytics/FIRCLSURLSession/Tasks/FIRCLSURLSessionUploadTask.h; sourceTree = "<group>"; }; - 5A358E9295CEDF21341438F2707CE599 /* OpenSSL-Universal-xcframeworks.sh */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.script.sh; path = "OpenSSL-Universal-xcframeworks.sh"; sourceTree = "<group>"; }; - 5A4D44FB517A2D94D03CAEC0D755B71A /* Codel.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Codel.h; path = folly/executors/Codel.h; sourceTree = "<group>"; }; - 5A73746A235A5F24EC13651F3F434619 /* BSG_KSSysCtl.c */ = {isa = PBXFileReference; includeInIndex = 1; path = BSG_KSSysCtl.c; sourceTree = "<group>"; }; - 5A89A78A49C5BA532B42B922603F10D5 /* RNRotationHandler.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RNRotationHandler.m; sourceTree = "<group>"; }; - 5A8E6865E8B1705CA95C0ED9EB913458 /* RCTConvert+ART.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "RCTConvert+ART.h"; path = "ios/RCTConvert+ART.h"; sourceTree = "<group>"; }; - 5A9D7451AAEF6D630785986A58FDC007 /* FIRCLSSettings.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRCLSSettings.m; path = Crashlytics/Crashlytics/Models/FIRCLSSettings.m; sourceTree = "<group>"; }; - 5AB921F5A3DEFCBC88A0237C87AA2066 /* FIRCLSFABAsyncOperation.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRCLSFABAsyncOperation.m; path = Crashlytics/Shared/FIRCLSOperation/FIRCLSFABAsyncOperation.m; sourceTree = "<group>"; }; - 5ACE5409F7D0811D41E16155430497AC /* RCTUITextField.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTUITextField.h; sourceTree = "<group>"; }; - 5AD22713EE6E7C846525A656A9999E89 /* BugsnagClient+Private.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "BugsnagClient+Private.h"; sourceTree = "<group>"; }; - 5AD3167E0123CD275B0C9FCABD515EA8 /* SDWebImageDefine.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SDWebImageDefine.h; path = SDWebImage/Core/SDWebImageDefine.h; sourceTree = "<group>"; }; - 5AE33E6B0FBB3B12DA4E53484838DA32 /* react-native-appearance-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "react-native-appearance-dummy.m"; sourceTree = "<group>"; }; - 5AE726FBD7EA3190FFA99F5A8DF3F737 /* RCTAccessibilityManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTAccessibilityManager.h; path = React/CoreModules/RCTAccessibilityManager.h; sourceTree = "<group>"; }; - 5B00BE8F8B05FC8407638AC7886DFA5A /* ConnectionFactory.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ConnectionFactory.h; path = rsocket/ConnectionFactory.h; sourceTree = "<group>"; }; - 5B18306BC869E0A6F64DC3423EC37D63 /* FIRLoggerLevel.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRLoggerLevel.h; path = FirebaseCore/Sources/Public/FIRLoggerLevel.h; sourceTree = "<group>"; }; - 5B1A3A030C5391095F45FBDA62640A67 /* Syslog.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Syslog.h; path = folly/portability/Syslog.h; sourceTree = "<group>"; }; - 5B226505A9C8CFF13FE2314419290926 /* cost_enc.c */ = {isa = PBXFileReference; includeInIndex = 1; name = cost_enc.c; path = src/enc/cost_enc.c; sourceTree = "<group>"; }; - 5B314EBC0F63CD448CFF48D750EBD705 /* RNLocalize.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNLocalize.h; path = ios/RNLocalize.h; sourceTree = "<group>"; }; + 575371CAA8C68BBA0098624C8BBD0811 /* KeyCommands.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = KeyCommands.release.xcconfig; sourceTree = "<group>"; }; + 5753F0CBA2453565481BB17F6716822B /* Builtins.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Builtins.h; path = folly/portability/Builtins.h; sourceTree = "<group>"; }; + 5775ADFBB74ED75DEFFE18D8CA627FAD /* JemallocNodumpAllocator.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = JemallocNodumpAllocator.h; path = folly/experimental/JemallocNodumpAllocator.h; sourceTree = "<group>"; }; + 577681BE3D01B38591AC114E0D73DE94 /* SerialExecutor.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SerialExecutor.h; path = folly/executors/SerialExecutor.h; sourceTree = "<group>"; }; + 577905BFD373244428CDDA255A16A0EB /* react-native-cookies-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "react-native-cookies-dummy.m"; sourceTree = "<group>"; }; + 578CBD79060AF149B9A4FCA0E52B7571 /* PublisherBase.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = PublisherBase.h; path = rsocket/statemachine/PublisherBase.h; sourceTree = "<group>"; }; + 5791EF7ABEC44147E91573457866AC3C /* WriteChainAsyncTransportWrapper.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = WriteChainAsyncTransportWrapper.h; path = folly/io/async/WriteChainAsyncTransportWrapper.h; sourceTree = "<group>"; }; + 57A21B3CEB4C3FDC799A2532C3FC64F9 /* ARTTextManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = ARTTextManager.h; sourceTree = "<group>"; }; + 57A3DDFBF93551A9D6E44B573799103C /* Retrying.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Retrying.h; path = folly/futures/Retrying.h; sourceTree = "<group>"; }; + 57A406CB01F26683389D18C435BC8458 /* bignum.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = bignum.cc; path = "double-conversion/bignum.cc"; sourceTree = "<group>"; }; + 57A5EFBDFDD084412B6D2D5F28C9E6F3 /* IPAddressV6.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = IPAddressV6.h; path = folly/IPAddressV6.h; sourceTree = "<group>"; }; + 57BA2E3DE3BD6E99C21F9BD955EE1E88 /* Cursor.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Cursor.h; path = folly/io/Cursor.h; sourceTree = "<group>"; }; + 57BACE8EA702B6077D884198A4BD230A /* frame_enc.c */ = {isa = PBXFileReference; includeInIndex = 1; name = frame_enc.c; path = src/enc/frame_enc.c; sourceTree = "<group>"; }; + 57BF65B2DDBDA73523AC58A73FF0F235 /* UIImage+MemoryCacheCost.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "UIImage+MemoryCacheCost.h"; path = "SDWebImage/Core/UIImage+MemoryCacheCost.h"; sourceTree = "<group>"; }; + 57C542AD851642D11EF58156F9D508CB /* RCTBaseTextInputView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTBaseTextInputView.m; sourceTree = "<group>"; }; + 57C58E173752B7BA74351EF1442C087D /* BugsnagEvent+Private.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "BugsnagEvent+Private.h"; sourceTree = "<group>"; }; + 57E1C8E6FFB110822F4AA89BC3B8D2E5 /* OpenSSLUtils.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = OpenSSLUtils.cpp; path = folly/io/async/ssl/OpenSSLUtils.cpp; sourceTree = "<group>"; }; + 57F4BEB4EAD11CEF0512A863E45AF88F /* RCTClipboard.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTClipboard.h; path = React/CoreModules/RCTClipboard.h; sourceTree = "<group>"; }; + 57F95CA5D9F767EBB9A4AE6AE0B43914 /* RNDeviceInfo.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNDeviceInfo.h; path = ios/RNDeviceInfo/RNDeviceInfo.h; sourceTree = "<group>"; }; + 57FFD5B54DBEC11A0471671A073B6D12 /* LifoSemMPMCQueue.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = LifoSemMPMCQueue.h; path = folly/executors/task_queue/LifoSemMPMCQueue.h; sourceTree = "<group>"; }; + 5807F2C33809D5E878C86A6F5D2315FC /* BSG_KSCrashSentry.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BSG_KSCrashSentry.h; sourceTree = "<group>"; }; + 5813C7E0097017B94D985EC9633FBFD0 /* SDWebImageDownloader.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SDWebImageDownloader.h; path = SDWebImage/Core/SDWebImageDownloader.h; sourceTree = "<group>"; }; + 58189553A81DAB14B80317C7FAD3B6D4 /* RCTBridgeModule.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTBridgeModule.h; sourceTree = "<group>"; }; + 5837A01194E96B3A00B4B14C1EA7EB32 /* RCTRedBoxSetEnabled.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTRedBoxSetEnabled.h; sourceTree = "<group>"; }; + 58386FEBED776C08ADA276F70C8BCC83 /* ARTBrush.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = ARTBrush.m; sourceTree = "<group>"; }; + 5849A6D1AB37F33B42AB1763065A9A35 /* SKHiddenWindow.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = SKHiddenWindow.m; path = iOS/Plugins/FlipperKitLayoutPlugin/FlipperKitLayoutPlugin/utils/SKHiddenWindow.m; sourceTree = "<group>"; }; + 58519E4FEB91B7580E9B7363FEF12612 /* RNRotationHandler.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RNRotationHandler.m; sourceTree = "<group>"; }; + 5853C7858745BDC0AECED015B132A3DF /* AESCrypt.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = AESCrypt.h; path = Core/aes/AESCrypt.h; sourceTree = "<group>"; }; + 5854C884DDC424BAC6579BDC6394854C /* Array.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Array.h; path = folly/container/Array.h; sourceTree = "<group>"; }; + 5864D5B667CF319943544AD7A538A00A /* AtomicIntrusiveLinkedList.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = AtomicIntrusiveLinkedList.h; path = folly/AtomicIntrusiveLinkedList.h; sourceTree = "<group>"; }; + 5869C5B02869FD5705BE60AD7EE16C70 /* FIRCLSUserDefaults_private.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRCLSUserDefaults_private.h; path = Crashlytics/Crashlytics/FIRCLSUserDefaults/FIRCLSUserDefaults_private.h; sourceTree = "<group>"; }; + 5881A4D7EADFAA121CA078AFB887E861 /* sorted_vector_types.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = sorted_vector_types.h; path = folly/sorted_vector_types.h; sourceTree = "<group>"; }; + 588438EB9BCEE11D33DE837B15C9F05A /* ThreadName.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ThreadName.h; path = folly/system/ThreadName.h; sourceTree = "<group>"; }; + 58872FFB8DFE0488B0E139AEF233ADD0 /* FirebaseCrashlytics.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FirebaseCrashlytics.h; path = Crashlytics/Crashlytics/Public/FirebaseCrashlytics/FirebaseCrashlytics.h; sourceTree = "<group>"; }; + 588845CEA50EEB3FDE0FFB7E9B12FA19 /* RCTCxxModule.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTCxxModule.h; sourceTree = "<group>"; }; + 5888E4209D82B012879B6749C0F5DC81 /* RNCMaskedView-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "RNCMaskedView-prefix.pch"; sourceTree = "<group>"; }; + 588EA247611205AB40E34D046F67D60D /* UIView+SKInvalidation.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "UIView+SKInvalidation.h"; path = "iOS/Plugins/FlipperKitLayoutPlugin/FlipperKitLayoutPlugin/UIView+SKInvalidation.h"; sourceTree = "<group>"; }; + 58905787DC21112A76D3180EC1E94AC5 /* BitIteratorDetail.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = BitIteratorDetail.h; path = folly/container/detail/BitIteratorDetail.h; sourceTree = "<group>"; }; + 5892DADA7DB089BA3D5F12C2C39FA1E6 /* contents.xcworkspacedata */ = {isa = PBXFileReference; includeInIndex = 1; path = contents.xcworkspacedata; sourceTree = "<group>"; }; + 589423F4956A24AFA2886654B7146DD1 /* BitIterator.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = BitIterator.h; path = folly/container/BitIterator.h; sourceTree = "<group>"; }; + 589AF35B1D7F29EC150D0F3C1B2AB572 /* FirebaseCore.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = FirebaseCore.debug.xcconfig; sourceTree = "<group>"; }; + 58AD62451702F38FF125AA074B831043 /* RCTMaskedView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTMaskedView.m; sourceTree = "<group>"; }; + 58B2EE3DF7047CCAA56AC7B3763EA29F /* RNCMaskedView.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = RNCMaskedView.podspec; sourceTree = "<group>"; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; + 58C124214334D215C571233F174C083D /* DynamicBoundedQueue.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = DynamicBoundedQueue.h; path = folly/concurrency/DynamicBoundedQueue.h; sourceTree = "<group>"; }; + 58D72833615ECBB4F79C874CE1E4492E /* REAEventNode.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = REAEventNode.h; sourceTree = "<group>"; }; + 58E549581D375FD7FF06795FADDDAEA0 /* UMLogManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = UMLogManager.m; sourceTree = "<group>"; }; + 58E9E86FA73FFA3DFB799C0CC0A0551F /* AsymmetricMemoryBarrier.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = AsymmetricMemoryBarrier.cpp; path = folly/synchronization/AsymmetricMemoryBarrier.cpp; sourceTree = "<group>"; }; + 58ED28EE57F5C3B60B54690D86E46850 /* RCTSurfaceView.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTSurfaceView.mm; sourceTree = "<group>"; }; + 58F2A4C1980EBED08ED1A3FEAF41B079 /* UMErrorCodes.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = UMErrorCodes.m; path = UMCore/UMErrorCodes.m; sourceTree = "<group>"; }; + 58F5BCDB27FBC6A69B75C4F1A6690550 /* RCTPointerEvents.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTPointerEvents.h; sourceTree = "<group>"; }; + 5908050CC9096362A81C4A76F22235AC /* File.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = File.cpp; path = folly/File.cpp; sourceTree = "<group>"; }; + 591AE380546519313FCA87162C91463F /* ManualTimekeeper.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ManualTimekeeper.h; path = folly/futures/ManualTimekeeper.h; sourceTree = "<group>"; }; + 59244AA97058CEFA1EAF8F4CA79757DD /* RNEventEmitter.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNEventEmitter.h; path = RNNotifications/RNEventEmitter.h; sourceTree = "<group>"; }; + 5925C55CF0E20D4248DF023A3B08DAF6 /* Padded.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Padded.h; path = folly/Padded.h; sourceTree = "<group>"; }; + 5934F4E2AE5D648B86C5AEFA11A3EE5A /* RNNotificationEventHandler.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNNotificationEventHandler.m; path = RNNotifications/RNNotificationEventHandler.m; sourceTree = "<group>"; }; + 594498D25C06B01EC3953E6044BE4795 /* 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 = "<group>"; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; + 5967AC659FA8F442DB8A30E79F49DF90 /* Codel.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Codel.h; path = folly/executors/Codel.h; sourceTree = "<group>"; }; + 5985A7456A5B59AB64CBBCB991CB7E8F /* boost-for-react-native.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "boost-for-react-native.debug.xcconfig"; sourceTree = "<group>"; }; + 5995CF9DCF532EEDE852579D56B1BAC2 /* AtomicUnorderedMap.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = AtomicUnorderedMap.h; path = folly/AtomicUnorderedMap.h; sourceTree = "<group>"; }; + 59A362585FC1DCE6EBCB514F91F0F0FE /* REAConcatNode.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = REAConcatNode.m; sourceTree = "<group>"; }; + 59A76FD85FEC15007F5A75BB830709B4 /* RCTSafeAreaViewLocalData.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTSafeAreaViewLocalData.h; sourceTree = "<group>"; }; + 59AA3C22A4FE83B34832756488941D94 /* RCTSpringAnimation.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTSpringAnimation.m; sourceTree = "<group>"; }; + 59CD62A3389AF34FBFAAB69561CC308D /* RCTWebSocketModule.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTWebSocketModule.h; path = React/CoreModules/RCTWebSocketModule.h; sourceTree = "<group>"; }; + 59CDB952F1186C0ADD1A80E021C55B9B /* SysTime.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = SysTime.cpp; path = folly/portability/SysTime.cpp; sourceTree = "<group>"; }; + 59CF413A690341D81C3A0118EA067AB6 /* FlowableOperator.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FlowableOperator.h; path = yarpl/flowable/FlowableOperator.h; sourceTree = "<group>"; }; + 59EAF42B2DD35E28B043F4E1DF08829A /* SDWebImageDownloaderConfig.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = SDWebImageDownloaderConfig.m; path = SDWebImage/Core/SDWebImageDownloaderConfig.m; sourceTree = "<group>"; }; + 59F022EF092EB9F714DCCA53A46A977A /* FireAndForgetResponder.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = FireAndForgetResponder.cpp; path = rsocket/statemachine/FireAndForgetResponder.cpp; sourceTree = "<group>"; }; + 59F4136A3156CB0C7F9E63466095582E /* FIRCLSOnboardingOperation.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRCLSOnboardingOperation.h; path = Crashlytics/Crashlytics/Settings/Operations/FIRCLSOnboardingOperation.h; sourceTree = "<group>"; }; + 59FC09B88591434507CC1AB2FDB224F1 /* FIRCLSCompactUnwind_Private.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRCLSCompactUnwind_Private.h; path = Crashlytics/Crashlytics/Unwind/Compact/FIRCLSCompactUnwind_Private.h; sourceTree = "<group>"; }; + 5A0A4FF9FD59597A96466F61C0AD162D /* RNCSliderManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNCSliderManager.m; path = ios/RNCSliderManager.m; sourceTree = "<group>"; }; + 5A256A045FF3B5160FF99B16411BEAC9 /* CancellationToken.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = CancellationToken.cpp; path = folly/CancellationToken.cpp; sourceTree = "<group>"; }; + 5A47CF01E148CBB4EBE9ACFF3AE56AE5 /* RCTReloadCommand.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTReloadCommand.h; sourceTree = "<group>"; }; + 5A4976A678D97261099E360B23DF1F77 /* AsyncTransport.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = AsyncTransport.h; path = folly/io/async/AsyncTransport.h; sourceTree = "<group>"; }; + 5A64C5CCC71DCF270712384B7645219E /* enc_mips32.c */ = {isa = PBXFileReference; includeInIndex = 1; name = enc_mips32.c; path = src/dsp/enc_mips32.c; sourceTree = "<group>"; }; + 5A705E11B33BE573D5FFA5A2A4EC08B4 /* UMImageLoaderInterface.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = UMImageLoaderInterface.h; path = UMImageLoaderInterface/UMImageLoaderInterface.h; sourceTree = "<group>"; }; + 5A7260818D23202F237A776AC5EF9A37 /* FIRCLSCompoundOperation.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRCLSCompoundOperation.h; path = Crashlytics/Shared/FIRCLSOperation/FIRCLSCompoundOperation.h; sourceTree = "<group>"; }; + 5A8C79704538C86E3469598FB7E44944 /* RValueReferenceWrapper.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RValueReferenceWrapper.h; path = folly/lang/RValueReferenceWrapper.h; sourceTree = "<group>"; }; + 5A92FF992EECFACB98A6AAE324DA9864 /* IOExecutor.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = IOExecutor.h; path = folly/executors/IOExecutor.h; sourceTree = "<group>"; }; + 5A9E72DFF1EE3CE1C146BFDDA71663CE /* InlineExecutor.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = InlineExecutor.cpp; path = folly/executors/InlineExecutor.cpp; sourceTree = "<group>"; }; + 5ABB8CEBDD6E648722E013DE24A76315 /* SafeAreaSpacerViewLocalData.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = SafeAreaSpacerViewLocalData.m; sourceTree = "<group>"; }; + 5ABFE46ECDB76D1CB46D01908F82DEE2 /* alpha_processing.c */ = {isa = PBXFileReference; includeInIndex = 1; name = alpha_processing.c; path = src/dsp/alpha_processing.c; sourceTree = "<group>"; }; + 5AD84792B8BA850F59C3948EA1781FFB /* enc_sse2.c */ = {isa = PBXFileReference; includeInIndex = 1; name = enc_sse2.c; path = src/dsp/enc_sse2.c; sourceTree = "<group>"; }; + 5AD8B1BD6DA5ECE5B6FAEAC0B509E273 /* format_constants.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = format_constants.h; path = src/webp/format_constants.h; sourceTree = "<group>"; }; + 5AED150B060C283C6EFA418C3DE4F99E /* react-native-simple-crypto.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = "react-native-simple-crypto.podspec"; sourceTree = "<group>"; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; + 5AFFCEC5536830FDBADF795006808DBA /* InspectorState.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = InspectorState.h; sourceTree = "<group>"; }; + 5B00FF93A1ADC567B1107BE1F3FB30EE /* CocoaAsyncSocket-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "CocoaAsyncSocket-dummy.m"; sourceTree = "<group>"; }; + 5B147776F8079045740990C71E6E0DC5 /* RNReanimated-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "RNReanimated-dummy.m"; sourceTree = "<group>"; }; 5B3357A1CE67C0BF4AE31936A1BE6888 /* libYogaKit.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; name = libYogaKit.a; path = libYogaKit.a; sourceTree = BUILT_PRODUCTS_DIR; }; - 5B42126EAF02047EADFC9E6162C406BC /* AsyncGeneratorShim.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = AsyncGeneratorShim.h; path = yarpl/flowable/AsyncGeneratorShim.h; sourceTree = "<group>"; }; - 5B4439507548AB0D9403B7C0702F9051 /* Flipper-Glog.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "Flipper-Glog.debug.xcconfig"; sourceTree = "<group>"; }; - 5B49FDBF3FC01A38C036AFDF31332825 /* Demangle.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Demangle.h; path = folly/Demangle.h; sourceTree = "<group>"; }; - 5B707ED67B4BB2FCDC42FE3B71683C3D /* BSGSerialization.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BSGSerialization.h; sourceTree = "<group>"; }; - 5B7929894D1887234B31F855496F5AC9 /* RNCSafeAreaShadowView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNCSafeAreaShadowView.h; path = ios/SafeAreaView/RNCSafeAreaShadowView.h; sourceTree = "<group>"; }; - 5B79F9D35FD7D0A9CC6EEA2FC0B28D87 /* AutoTimer.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = AutoTimer.h; path = folly/experimental/AutoTimer.h; sourceTree = "<group>"; }; - 5B9A6ACBF39BC62B711A68ECDD7E99A5 /* yuv_neon.c */ = {isa = PBXFileReference; includeInIndex = 1; name = yuv_neon.c; path = src/dsp/yuv_neon.c; sourceTree = "<group>"; }; - 5BC13F39AC5C4806FD4BEED0207D40BA /* json_pointer.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = json_pointer.h; path = folly/json_pointer.h; sourceTree = "<group>"; }; - 5BD5DC609D90282613BD259D7B7025A0 /* FIRCLSUnwind_x86.c */ = {isa = PBXFileReference; includeInIndex = 1; name = FIRCLSUnwind_x86.c; path = Crashlytics/Crashlytics/Unwind/FIRCLSUnwind_x86.c; sourceTree = "<group>"; }; - 5BDE5CE1F29F2B5E710DBC832F28D9B5 /* Iterator.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Iterator.h; path = folly/container/Iterator.h; sourceTree = "<group>"; }; - 5C127F75FA6077FB8DAB2F87EFD5DC08 /* RSocketStats.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = RSocketStats.cpp; path = rsocket/RSocketStats.cpp; sourceTree = "<group>"; }; - 5C31E2A1FFF7C0019D735887896DF06A /* BugsnagHandledState.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = BugsnagHandledState.m; sourceTree = "<group>"; }; - 5C4250C05D4C210BAFA42C1CB4B27CB5 /* RNFBCrashlytics-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "RNFBCrashlytics-prefix.pch"; sourceTree = "<group>"; }; - 5C4DE2956E605D7F293176107A826EBA /* ReactMarker.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = ReactMarker.h; sourceTree = "<group>"; }; - 5C54F02D722B48B0AA6F0F2997F6DC92 /* RWSpinLock.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RWSpinLock.h; path = folly/synchronization/RWSpinLock.h; sourceTree = "<group>"; }; - 5C6F10F55828C306F9087EA3BE6FFA76 /* IOThreadPoolExecutor.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = IOThreadPoolExecutor.h; path = folly/executors/IOThreadPoolExecutor.h; sourceTree = "<group>"; }; - 5C7493E37DFFDB0A29EA930EBD0F25C2 /* ARTNode.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = ARTNode.m; path = ios/ARTNode.m; sourceTree = "<group>"; }; - 5C80621220CDF16B10C3A915E83A66BE /* pb_decode.c */ = {isa = PBXFileReference; includeInIndex = 1; path = pb_decode.c; sourceTree = "<group>"; }; - 5C8840FC1E09D950CB658115B4791F05 /* common_dec.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = common_dec.h; path = src/dec/common_dec.h; sourceTree = "<group>"; }; - 5C916787C74604D8FD50FB4D7B25FFDA /* ARTRenderableManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = ARTRenderableManager.h; sourceTree = "<group>"; }; - 5C9B552556AD3AC3AC9A1FF4D59CECE1 /* RCTBlobCollector.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTBlobCollector.mm; sourceTree = "<group>"; }; - 5CA67C3517994DD4BC785DB3A2B4FB1A /* MMKV.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = MMKV.cpp; path = Core/MMKV.cpp; sourceTree = "<group>"; }; - 5CAB83F1E564EEB611ED28B0CEAF30FE /* RNDateTimePickerManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNDateTimePickerManager.h; path = ios/RNDateTimePickerManager.h; sourceTree = "<group>"; }; - 5CC09DC9037224C3B66F8AC19F2B6059 /* RCTPlatform.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTPlatform.mm; sourceTree = "<group>"; }; - 5CD4624DD0FCA9E92E21136ACCE7F269 /* react-native-safe-area-context-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "react-native-safe-area-context-dummy.m"; sourceTree = "<group>"; }; - 5CEEAEB3328E9D73020B5EB925D69D19 /* FBDefines.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FBDefines.h; path = iOS/FBDefines/FBDefines.h; sourceTree = "<group>"; }; - 5CF3C79BD496F82B25133B4BBF8480A7 /* GDTCOREvent.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = GDTCOREvent.h; path = GoogleDataTransport/GDTCORLibrary/Public/GDTCOREvent.h; sourceTree = "<group>"; }; - 5D09B9B81C4A268D1194275F7C4547BF /* Align.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Align.h; path = folly/lang/Align.h; sourceTree = "<group>"; }; - 5D3EA5B4B575BDA257735202166064A3 /* RCTBaseTextInputShadowView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTBaseTextInputShadowView.h; sourceTree = "<group>"; }; - 5D404758C9F5D8AB79A1DF5B3E7D2E32 /* RNSScreenStackHeaderConfig.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNSScreenStackHeaderConfig.m; path = ios/RNSScreenStackHeaderConfig.m; sourceTree = "<group>"; }; - 5D43D654FCA7F23771F07696175762B7 /* JSExecutor.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; path = JSExecutor.cpp; sourceTree = "<group>"; }; - 5D701AED020EB1DA57B6FDE8E105FA78 /* StaticTracepoint.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = StaticTracepoint.h; path = folly/tracing/StaticTracepoint.h; sourceTree = "<group>"; }; - 5D74EF68D1949BD56732B7EAB1BFCE79 /* EXHapticsModule.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = EXHapticsModule.h; path = EXHaptics/EXHapticsModule.h; sourceTree = "<group>"; }; - 5D7795BE80B6157A02063B428151BA3C /* SDAsyncBlockOperation.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SDAsyncBlockOperation.h; path = SDWebImage/Private/SDAsyncBlockOperation.h; sourceTree = "<group>"; }; - 5D7BE327B326B95C648585A7BE370A3A /* RCTNativeModule.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTNativeModule.mm; sourceTree = "<group>"; }; - 5D807357EC0B10568626B6462BAE2112 /* F14Table.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = F14Table.cpp; path = folly/container/detail/F14Table.cpp; sourceTree = "<group>"; }; + 5B408C6E714917EC3AEA908A60D7D4D0 /* TimeoutManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = TimeoutManager.h; path = folly/io/async/TimeoutManager.h; sourceTree = "<group>"; }; + 5B521E87425A4CF714B0790D468D35FF /* TestObserver.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = TestObserver.h; path = yarpl/observable/TestObserver.h; sourceTree = "<group>"; }; + 5B8B887F1F5AC48CCD49D88B008EC0AA /* EXConstants.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = EXConstants.m; path = EXConstants/EXConstants.m; sourceTree = "<group>"; }; + 5B8BD7373D246A01D50CF1FCB4510433 /* ThreadLocalDetail.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ThreadLocalDetail.h; path = folly/detail/ThreadLocalDetail.h; sourceTree = "<group>"; }; + 5B928E99BB84507D5873C62F0A82FD49 /* huffman_utils.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = huffman_utils.h; path = src/utils/huffman_utils.h; sourceTree = "<group>"; }; + 5B967C4A932DDBBE4181F2AEDA62C2C9 /* EXFileSystem-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "EXFileSystem-prefix.pch"; sourceTree = "<group>"; }; + 5B9B2869B52E94AC3CA76F7F9D14A2E1 /* RNNotificationCenter.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNNotificationCenter.h; path = RNNotifications/RNNotificationCenter.h; sourceTree = "<group>"; }; + 5BC0E75BEA0C3729BC189F05C73306F3 /* UIColor+SKSonarValueCoder.mm */ = {isa = PBXFileReference; includeInIndex = 1; name = "UIColor+SKSonarValueCoder.mm"; path = "iOS/Plugins/FlipperKitLayoutPlugin/FlipperKitLayoutPlugin/UIColor+SKSonarValueCoder.mm"; sourceTree = "<group>"; }; + 5BFE91A875DDEAD9CC8256B23F04BF88 /* RNDeviceInfo.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNDeviceInfo.m; path = ios/RNDeviceInfo/RNDeviceInfo.m; sourceTree = "<group>"; }; + 5C0C098A84C5181F50C28D53427B9730 /* yuv_mips32.c */ = {isa = PBXFileReference; includeInIndex = 1; name = yuv_mips32.c; path = src/dsp/yuv_mips32.c; sourceTree = "<group>"; }; + 5C16693E94A226699E21DCFEF6C01428 /* OpenSSLThreading.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = OpenSSLThreading.cpp; path = folly/ssl/detail/OpenSSLThreading.cpp; sourceTree = "<group>"; }; + 5C22ACCDC0165AD80A1495A1C5FD04C5 /* Shared.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = Shared.h; sourceTree = "<group>"; }; + 5C276E40FB11F208975252A027EF257B /* UIImage+GIF.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "UIImage+GIF.m"; path = "SDWebImage/Core/UIImage+GIF.m"; sourceTree = "<group>"; }; + 5C278DB4AB641EB1453E5E4C89D6C1E8 /* RCTStatusBarManager.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTStatusBarManager.mm; sourceTree = "<group>"; }; + 5C380D14E8DBD8C0F44438D5E224E4B4 /* CoreModulesPlugins.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = CoreModulesPlugins.h; path = React/CoreModules/CoreModulesPlugins.h; sourceTree = "<group>"; }; + 5C417082F13348A2FE978DE51CABC139 /* SDWebImageOperation.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SDWebImageOperation.h; path = SDWebImage/Core/SDWebImageOperation.h; sourceTree = "<group>"; }; + 5C50F7E02C0D7C39EFFCF903F77C21B5 /* React-RCTText-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "React-RCTText-prefix.pch"; sourceTree = "<group>"; }; + 5C5186B7C67E0B78E6E54EC761EF15D4 /* HeterogeneousAccess.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = HeterogeneousAccess.h; path = folly/container/HeterogeneousAccess.h; sourceTree = "<group>"; }; + 5C8D32374615F6D261DC4ADC7AF965F8 /* Sched.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Sched.h; path = folly/portability/Sched.h; sourceTree = "<group>"; }; + 5C8FC5904337308E3717E837CA9CD7F1 /* RNReanimated.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = RNReanimated.podspec; sourceTree = "<group>"; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; + 5C97A1734BC7663A4E9187904238E2D7 /* FlipperKitReactPlugin.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FlipperKitReactPlugin.m; path = iOS/Plugins/FlipperKitReactPlugin/FlipperKitReactPlugin/FlipperKitReactPlugin.m; sourceTree = "<group>"; }; + 5CAA66F6DB529C14D44B812675A4468A /* RCTInputAccessoryShadowView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTInputAccessoryShadowView.h; sourceTree = "<group>"; }; + 5CAD31A89DA9638789206C0851BC19C8 /* RCTTextViewManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTTextViewManager.m; sourceTree = "<group>"; }; + 5CAD86C6BC3B88ADD8266DC70ABF154B /* F14Map.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = F14Map.h; path = folly/container/F14Map.h; sourceTree = "<group>"; }; + 5CB23A641765B5B1373F6D38AEF5164F /* ThreadCachedLists.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ThreadCachedLists.h; path = folly/synchronization/detail/ThreadCachedLists.h; sourceTree = "<group>"; }; + 5CC0990CF7E4D760637082C49C07B948 /* RCTValueAnimatedNode.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTValueAnimatedNode.h; sourceTree = "<group>"; }; + 5CC54E56BD40A7D7B702FED4E0D869AF /* BSG_KSSignalInfo.c */ = {isa = PBXFileReference; includeInIndex = 1; path = BSG_KSSignalInfo.c; sourceTree = "<group>"; }; + 5CD13DA96F9A4C8599A3E027E06EC6CC /* ApplyTuple.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ApplyTuple.h; path = folly/functional/ApplyTuple.h; sourceTree = "<group>"; }; + 5CDE8127D0212CE4F7A8CEFCD5795C68 /* FIRCLSReportAdapter.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRCLSReportAdapter.m; path = Crashlytics/Crashlytics/Models/Record/FIRCLSReportAdapter.m; sourceTree = "<group>"; }; + 5CE4FA9E6DCE1303903955F78A5FF1DB /* EXLocalAuthentication.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = EXLocalAuthentication.m; path = EXLocalAuthentication/EXLocalAuthentication.m; sourceTree = "<group>"; }; + 5CF09EAFEBBB8AEFCDFC5C6F7320778C /* RCTTouchEvent.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTTouchEvent.h; sourceTree = "<group>"; }; + 5CF8400C1FF7E5A0FC9E033047B9DF61 /* WarmResumeManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = WarmResumeManager.h; path = rsocket/internal/WarmResumeManager.h; sourceTree = "<group>"; }; + 5D37DCC69BBEFCB2217A97B4F202D626 /* Base.lproj */ = {isa = PBXFileReference; includeInIndex = 1; name = Base.lproj; path = "Objective-C/TOCropViewController/Resources/Base.lproj"; sourceTree = "<group>"; }; + 5D3D49522DC4035458D2554F1CA42CEA /* Observable.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Observable.h; path = yarpl/observable/Observable.h; sourceTree = "<group>"; }; + 5D541543B3E5D49492432F7DBE174E34 /* FIRCLSDataCollectionArbiter.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRCLSDataCollectionArbiter.m; path = Crashlytics/Crashlytics/DataCollection/FIRCLSDataCollectionArbiter.m; sourceTree = "<group>"; }; + 5D56E1417CC17922E45A1213CF47145C /* UIColor+SDHexString.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "UIColor+SDHexString.m"; path = "SDWebImage/Private/UIColor+SDHexString.m"; sourceTree = "<group>"; }; + 5D5D617BF1BC0026ECDB3CAFB3817335 /* RNFBMeta.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNFBMeta.h; path = ios/RNFBApp/RNFBMeta.h; sourceTree = "<group>"; }; + 5D65FEA08350DF25703FBEB071660B67 /* BSG_KSCrashSentry_CPPException.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BSG_KSCrashSentry_CPPException.h; sourceTree = "<group>"; }; + 5D6FF8114042C8C78B7145A24A2C085A /* webp_dec.c */ = {isa = PBXFileReference; includeInIndex = 1; name = webp_dec.c; path = src/dec/webp_dec.c; sourceTree = "<group>"; }; 5D86198D4949CCBF29B30C14A072C51C /* Pods-defaults-Rocket.Chat-resources.sh */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.script.sh; path = "Pods-defaults-Rocket.Chat-resources.sh"; sourceTree = "<group>"; }; - 5D95CD156892E8171703B58D48E2D707 /* SDWebImageOperation.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = SDWebImageOperation.m; path = SDWebImage/Core/SDWebImageOperation.m; sourceTree = "<group>"; }; - 5DA06A75A3E5419934A4FD58166B2332 /* diy-fp.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "diy-fp.h"; path = "double-conversion/diy-fp.h"; sourceTree = "<group>"; }; - 5DAE9BA82BA92370D5416D2AE6FA9324 /* UIImageView+HighlightedWebCache.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "UIImageView+HighlightedWebCache.m"; path = "SDWebImage/Core/UIImageView+HighlightedWebCache.m"; sourceTree = "<group>"; }; - 5DB376A59FEDEFFDE68EA4CA8C8D80F4 /* AtFork.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = AtFork.h; path = folly/detail/AtFork.h; sourceTree = "<group>"; }; - 5DB6C7D6E115FC52ECED1026C673AD3A /* TOCropView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = TOCropView.h; path = "Objective-C/TOCropViewController/Views/TOCropView.h"; sourceTree = "<group>"; }; - 5DE1DEECA7B95C2F487E21F26B6995B3 /* RNDateTimePicker-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "RNDateTimePicker-dummy.m"; sourceTree = "<group>"; }; - 5DEC62479ED4703A3493A030B50AC9AE /* SingletonStackTrace.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SingletonStackTrace.h; path = folly/detail/SingletonStackTrace.h; sourceTree = "<group>"; }; - 5DFDE0F1F6827D9150F1F6A956057CA6 /* FIRCLSUUID.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRCLSUUID.m; path = Crashlytics/Shared/FIRCLSUUID.m; sourceTree = "<group>"; }; - 5DFF7397E09CAEAD4EF98B7FC86A0F4F /* AsyncUDPSocket.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = AsyncUDPSocket.cpp; path = folly/io/async/AsyncUDPSocket.cpp; sourceTree = "<group>"; }; - 5E14FCE40864E45913A2C969C0B2D7A1 /* RCTModalManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTModalManager.h; sourceTree = "<group>"; }; - 5E18EDA82B7F891804060AECEF71B5BE /* PBUtility.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = PBUtility.h; path = Core/PBUtility.h; sourceTree = "<group>"; }; - 5E191E90BBC4E5C7147A7B5E598B5512 /* GTest.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = GTest.h; path = folly/portability/GTest.h; sourceTree = "<group>"; }; - 5E28E5E5D8F3D49FB0BC9C998D181E05 /* bufferevent_pair.c */ = {isa = PBXFileReference; includeInIndex = 1; path = bufferevent_pair.c; sourceTree = "<group>"; }; - 5E386DC9A27321FB9860CF02FA9F8D03 /* REATransitionAnimation.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = REATransitionAnimation.h; sourceTree = "<group>"; }; - 5E3947DC22A5110AC3C2BEA168E2B5E5 /* GULNetworkConstants.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = GULNetworkConstants.h; path = GoogleUtilities/Network/Private/GULNetworkConstants.h; sourceTree = "<group>"; }; + 5D89DEB814977A437FD107EF1C5CB55E /* Semaphore.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Semaphore.h; path = folly/portability/Semaphore.h; sourceTree = "<group>"; }; + 5D98C616DE2F65E2FD843F0D29B73EAC /* Assume.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = Assume.cpp; path = folly/lang/Assume.cpp; sourceTree = "<group>"; }; + 5DA43F454DC5CD925880DA94DC007DAD /* TOCropViewConstants.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = TOCropViewConstants.h; path = "Objective-C/TOCropViewController/Constants/TOCropViewConstants.h"; sourceTree = "<group>"; }; + 5DAFD84672A3711B7F659D30A888C759 /* FiberIOExecutor.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FiberIOExecutor.h; path = folly/executors/FiberIOExecutor.h; sourceTree = "<group>"; }; + 5DB6D4BFADE9E179B6CE6211B5C9535D /* MPMCQueue.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = MPMCQueue.h; path = folly/MPMCQueue.h; sourceTree = "<group>"; }; + 5DC0C5CA36BAC64797D4DBFD6D4F5AF7 /* FIRConfiguration.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRConfiguration.h; path = FirebaseCore/Sources/Public/FirebaseCore/FIRConfiguration.h; sourceTree = "<group>"; }; + 5DDF4A02FCBB726E6C9995035E4885AD /* lossless_enc.c */ = {isa = PBXFileReference; includeInIndex = 1; name = lossless_enc.c; path = src/dsp/lossless_enc.c; sourceTree = "<group>"; }; + 5DF6EB6DFE188240615EA6EF9A35B572 /* RCTLinkingPlugins.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTLinkingPlugins.mm; sourceTree = "<group>"; }; + 5E007EDC6960C6C81329A5D9D1FF2904 /* FlipperPlugin.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FlipperPlugin.h; path = iOS/FlipperKit/FlipperPlugin.h; sourceTree = "<group>"; }; + 5E1472FF99D10835581E8AAFCD67475B /* Arena.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Arena.h; path = folly/memory/Arena.h; sourceTree = "<group>"; }; + 5E1E4D569A7C56B34DDFAD94B3072738 /* FLEXUtility.mm */ = {isa = PBXFileReference; includeInIndex = 1; name = FLEXUtility.mm; path = iOS/Plugins/FlipperKitNetworkPlugin/SKIOSNetworkPlugin/FLEXNetworkLib/FLEXUtility.mm; sourceTree = "<group>"; }; + 5E32AB3F8346FE3131E262D7FC3BCBB7 /* EXImageLoader.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = EXImageLoader.h; path = EXImageLoader/EXImageLoader.h; sourceTree = "<group>"; }; 5E4674603A5D5B9215FFA0F8E69F8B71 /* liblibwebp.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; name = liblibwebp.a; path = liblibwebp.a; sourceTree = BUILT_PRODUCTS_DIR; }; - 5E650516DB771BA1A51A67A821704DA4 /* quant_levels_dec_utils.c */ = {isa = PBXFileReference; includeInIndex = 1; name = quant_levels_dec_utils.c; path = src/utils/quant_levels_dec_utils.c; sourceTree = "<group>"; }; - 5E6C0041DF66013D73FBEED12E372544 /* TurboModulePerfLogger.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; path = TurboModulePerfLogger.cpp; sourceTree = "<group>"; }; - 5E798A9318B82BB207DAEBB2D6604A9E /* QBAssetCell.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = QBAssetCell.m; path = ios/QBImagePicker/QBImagePicker/QBAssetCell.m; sourceTree = "<group>"; }; - 5E7AC2F842CF15F2E25C14CED3929FF8 /* Parallel-inl.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "Parallel-inl.h"; path = "folly/gen/Parallel-inl.h"; sourceTree = "<group>"; }; + 5E853505E212DCA8AE078E5D79A52995 /* alpha_processing_sse2.c */ = {isa = PBXFileReference; includeInIndex = 1; name = alpha_processing_sse2.c; path = src/dsp/alpha_processing_sse2.c; sourceTree = "<group>"; }; 5E87B44B33AAED551BDFE7329D248E7C /* Pods-defaults-RocketChatRN-frameworks.sh */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.script.sh; path = "Pods-defaults-RocketChatRN-frameworks.sh"; sourceTree = "<group>"; }; - 5EAE9196962CE4F1B28D093A73FEFB1D /* React-runtimeexecutor.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "React-runtimeexecutor.debug.xcconfig"; sourceTree = "<group>"; }; - 5EC93F69EB17565DC472711C55309B4C /* Arena-inl.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "Arena-inl.h"; path = "folly/memory/Arena-inl.h"; sourceTree = "<group>"; }; - 5ECE145F88E238B706A47CA042E7F8C0 /* RCTDevSettings.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTDevSettings.mm; sourceTree = "<group>"; }; - 5ED1781E466357A234FAA7C7480F39C7 /* TOCropToolbar.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = TOCropToolbar.h; path = "Objective-C/TOCropViewController/Views/TOCropToolbar.h"; sourceTree = "<group>"; }; - 5ED3A731B84B5126546C42978C09FCD0 /* FIRInstallationsIDController.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRInstallationsIDController.m; path = FirebaseInstallations/Source/Library/InstallationsIDController/FIRInstallationsIDController.m; sourceTree = "<group>"; }; - 5EDE4B6188274A04D1D48E9D069863FC /* UMCameraInterface.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = UMCameraInterface.debug.xcconfig; sourceTree = "<group>"; }; - 5EF8A94048C6DB061F18D39393DD8E0C /* buffer.c */ = {isa = PBXFileReference; includeInIndex = 1; path = buffer.c; sourceTree = "<group>"; }; - 5F26D293A32C713B8BFCD57BD007346D /* Sched.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = Sched.cpp; path = folly/portability/Sched.cpp; sourceTree = "<group>"; }; - 5F3837B4B558F144062895D604B49077 /* Yoga.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = Yoga.podspec; sourceTree = "<group>"; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; - 5F57E078B3F1604F757A25A55E445B3D /* react-native-cookies-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "react-native-cookies-prefix.pch"; sourceTree = "<group>"; }; - 5F62DCB13F6FE4400AF13DBBAB827945 /* UIImage+WebP.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "UIImage+WebP.m"; path = "SDWebImageWebPCoder/Classes/UIImage+WebP.m"; sourceTree = "<group>"; }; - 5F7131E80F05E6182455932994237783 /* Bits.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Bits.h; path = folly/Bits.h; sourceTree = "<group>"; }; - 5F9930C748EC0C40FBA684586C473A75 /* hermes-engine-copy-dsyms.sh */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.script.sh; path = "hermes-engine-copy-dsyms.sh"; sourceTree = "<group>"; }; - 5F996B391DAE5F571B5F458C5A371768 /* GDTCORUploader.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = GDTCORUploader.h; path = GoogleDataTransport/GDTCORLibrary/Public/GDTCORUploader.h; sourceTree = "<group>"; }; - 5FAA21C6C0C9980EEE59850DC56F4710 /* EXAppleAuthentication.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = EXAppleAuthentication.release.xcconfig; sourceTree = "<group>"; }; - 5FAA8AA11C5B657BABEB5CA3B444722F /* FIRAnalyticsInteropListener.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRAnalyticsInteropListener.h; path = Interop/Analytics/Public/FIRAnalyticsInteropListener.h; sourceTree = "<group>"; }; - 5FE6C989797E55076A1A74AF992750C5 /* RCTSubtractionAnimatedNode.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTSubtractionAnimatedNode.h; sourceTree = "<group>"; }; - 5FF6612843F3346BFEAF10A6DC11B13E /* FlowableTimeoutOperator.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FlowableTimeoutOperator.h; path = yarpl/flowable/FlowableTimeoutOperator.h; sourceTree = "<group>"; }; - 60048274722CA6F80CC4A99152E981E4 /* YGConfig.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = YGConfig.cpp; path = yoga/YGConfig.cpp; sourceTree = "<group>"; }; - 602BD77857A04584FC205689CE88517E /* FlipperKit.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = FlipperKit.debug.xcconfig; sourceTree = "<group>"; }; - 603131F97BAA207E67383A8A998042A4 /* YGNodePrint.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = YGNodePrint.cpp; path = yoga/YGNodePrint.cpp; sourceTree = "<group>"; }; - 603227E13E228FE45C25D295A158787D /* FIRComponentContainer.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRComponentContainer.h; path = FirebaseCore/Sources/Private/FIRComponentContainer.h; sourceTree = "<group>"; }; - 6035C4A147C0B8830C13A13C56336ABA /* F14Map-fwd.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "F14Map-fwd.h"; path = "folly/container/F14Map-fwd.h"; sourceTree = "<group>"; }; - 603DE106673E866A530CB5FBA50E0F94 /* RCTLinkingManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTLinkingManager.h; path = Libraries/LinkingIOS/RCTLinkingManager.h; sourceTree = "<group>"; }; - 6057631DB1CAF97943B1AA60672D95C2 /* RNPushKitEventListener.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNPushKitEventListener.h; path = RNNotifications/RNPushKitEventListener.h; sourceTree = "<group>"; }; - 607B3D72F1D65F0541F6A67178F50A0C /* RCTResizeMode.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTResizeMode.m; sourceTree = "<group>"; }; - 60816C0E7B00326FCAD09074D41D8E75 /* RCTProgressViewManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTProgressViewManager.h; sourceTree = "<group>"; }; - 6081D20F35C515C6DB4F00B0209A46F4 /* SDGraphicsImageRenderer.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SDGraphicsImageRenderer.h; path = SDWebImage/Core/SDGraphicsImageRenderer.h; sourceTree = "<group>"; }; - 60914E3939A0BE01C52CB41770FDFB11 /* RCTJSStackFrame.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTJSStackFrame.h; sourceTree = "<group>"; }; - 60A78B90FBEAE0D288D92B02DE601C21 /* UniqueInstance.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = UniqueInstance.cpp; path = folly/detail/UniqueInstance.cpp; sourceTree = "<group>"; }; - 60A8A8253558AB307ED8E84CF4F5D614 /* RNLongPressHandler.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RNLongPressHandler.h; sourceTree = "<group>"; }; - 60D1A26443E475C946E7CBB625FC3318 /* RCTAnimationType.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTAnimationType.h; sourceTree = "<group>"; }; - 60D442A392DA9A7A6DD57F6D01D72702 /* RNCPicker-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "RNCPicker-dummy.m"; sourceTree = "<group>"; }; - 60EA4B570BE390DC3171F49D41731488 /* UIImage+Resize.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "UIImage+Resize.m"; path = "ios/src/UIImage+Resize.m"; sourceTree = "<group>"; }; - 60F35749AE880A93AA3F8B9E8DEF69B0 /* DynamicBoundedQueue.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = DynamicBoundedQueue.h; path = folly/concurrency/DynamicBoundedQueue.h; sourceTree = "<group>"; }; - 60F3BCBDD6A323B314E65E8E2810E3C2 /* RecordIO.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = RecordIO.cpp; path = folly/io/RecordIO.cpp; sourceTree = "<group>"; }; - 60FC3B7F56EDDDD84C2E753CD47A7FAE /* RCTDisplayLink.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTDisplayLink.m; sourceTree = "<group>"; }; - 611AE1380C322873C05FF482BC9482F7 /* RNVectorIconsManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNVectorIconsManager.h; path = RNVectorIconsManager/RNVectorIconsManager.h; sourceTree = "<group>"; }; - 612C955AED499AA9C055FF8D5FDD1640 /* SDImageCacheDefine.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = SDImageCacheDefine.m; path = SDWebImage/Core/SDImageCacheDefine.m; sourceTree = "<group>"; }; - 614730BC9C015864F40F7F79D3DA1546 /* AtomicNotification-inl.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "AtomicNotification-inl.h"; path = "folly/synchronization/AtomicNotification-inl.h"; sourceTree = "<group>"; }; - 614947D4527A86D0737DD42B9A20A26A /* RCTKeyCommands.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTKeyCommands.m; sourceTree = "<group>"; }; - 614BA35B6914DE93A82BE6DC1195EBE9 /* AtomicUnorderedMap.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = AtomicUnorderedMap.h; path = folly/AtomicUnorderedMap.h; sourceTree = "<group>"; }; - 6174C6C58855E02EEFC88B8F6D256DF9 /* Yoga.modulemap */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.module; path = Yoga.modulemap; sourceTree = "<group>"; }; - 617B784FD1DFF9097BAFE1E2344EB943 /* RCTTouchEvent.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTTouchEvent.m; sourceTree = "<group>"; }; - 617DC4CFBCE1FAC3EED379342C098A6D /* FIRCLSURLSessionDownloadTask_PrivateMethods.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRCLSURLSessionDownloadTask_PrivateMethods.h; path = Crashlytics/Crashlytics/FIRCLSURLSession/Tasks/FIRCLSURLSessionDownloadTask_PrivateMethods.h; sourceTree = "<group>"; }; - 618086732FB8BEF7EB0994CD5B8498CD /* ManualExecutor.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ManualExecutor.h; path = folly/executors/ManualExecutor.h; sourceTree = "<group>"; }; - 61966A99342D60B517BD347F8A86DA49 /* RNConfigReader.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNConfigReader.h; path = ios/RNConfigReader.h; sourceTree = "<group>"; }; - 61A4BB49B9D906AC2985AD80CF88A646 /* RNVectorIcons.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = RNVectorIcons.release.xcconfig; sourceTree = "<group>"; }; - 61BC42558FD1A68292D50CDD2D1E6983 /* Instructions.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Instructions.h; path = folly/experimental/Instructions.h; sourceTree = "<group>"; }; - 61C1AC94DA8359D54DFA47BA5050F019 /* StringKeyedSet.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = StringKeyedSet.h; path = folly/experimental/StringKeyedSet.h; sourceTree = "<group>"; }; - 61C5237AA4FF1AE4631BC96A273B9D85 /* SDWebImageTransition.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = SDWebImageTransition.m; path = SDWebImage/Core/SDWebImageTransition.m; sourceTree = "<group>"; }; - 61CB4D4ACAB911DE070EDC4C8B5F88DC /* SpookyHashV1.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SpookyHashV1.h; path = folly/hash/SpookyHashV1.h; sourceTree = "<group>"; }; - 61F4312D6E2ABF2D879843953CC06ABF /* OpenSSLHash.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = OpenSSLHash.cpp; path = folly/ssl/OpenSSLHash.cpp; sourceTree = "<group>"; }; - 61FAF4CE050658BE2F201783FE487029 /* CppAttributes.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = CppAttributes.h; path = folly/CppAttributes.h; sourceTree = "<group>"; }; - 61FFC7CC0B3B4AA85642907AD9B5C5CB /* EXSessionDownloadTaskDelegate.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = EXSessionDownloadTaskDelegate.h; sourceTree = "<group>"; }; - 62211D510BC0A02100BC630FA71A248E /* EventBaseLocal.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = EventBaseLocal.cpp; path = folly/io/async/EventBaseLocal.cpp; sourceTree = "<group>"; }; - 62241FF2F74F1894A38653432A83E2DB /* mm-internal.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "mm-internal.h"; sourceTree = "<group>"; }; - 62317B39353F9FFF8355EEB75F3F34A5 /* EXHaptics.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = EXHaptics.podspec; sourceTree = "<group>"; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; - 62349CEF1BEF279D189F7115CFD85FD1 /* FIRComponentContainer.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRComponentContainer.h; path = FirebaseCore/Sources/Private/FIRComponentContainer.h; sourceTree = "<group>"; }; - 624B9F811291F5AF60BF66DA62A4BC33 /* FBLPromise+Recover.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "FBLPromise+Recover.h"; path = "Sources/FBLPromises/include/FBLPromise+Recover.h"; sourceTree = "<group>"; }; - 6250AE0BC5C931BC2D8257FEA03EC40D /* NSError+BSG_SimpleConstructor.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "NSError+BSG_SimpleConstructor.m"; sourceTree = "<group>"; }; - 62915D9EE18CF11F2284CBAEA75CC96E /* BugsnagKeys.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = BugsnagKeys.m; sourceTree = "<group>"; }; - 6298AE3E0AD6B0EB0E8FA035BC850A15 /* RCTAutoInsetsProtocol.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTAutoInsetsProtocol.h; sourceTree = "<group>"; }; - 62A93AAB3B73950E2B5F76E03DE1FD0F /* SKSwizzle.mm */ = {isa = PBXFileReference; includeInIndex = 1; name = SKSwizzle.mm; path = iOS/Plugins/FlipperKitLayoutPlugin/FlipperKitLayoutPlugin/utils/SKSwizzle.mm; sourceTree = "<group>"; }; - 62AE8B9F5D600E833DBC71FCA6DD3A00 /* TimeoutManager.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = TimeoutManager.cpp; path = folly/io/async/TimeoutManager.cpp; sourceTree = "<group>"; }; - 62B73A440AD7CB767A967E0875089085 /* FIRCLSInternalLogging.c */ = {isa = PBXFileReference; includeInIndex = 1; name = FIRCLSInternalLogging.c; path = Crashlytics/Crashlytics/Helpers/FIRCLSInternalLogging.c; sourceTree = "<group>"; }; - 62BD993AF8582A2D4517FBE2A6DCCB40 /* FlatCombiningPriorityQueue.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FlatCombiningPriorityQueue.h; path = folly/experimental/FlatCombiningPriorityQueue.h; sourceTree = "<group>"; }; - 62D27314EB70A5DB01D620B3C7B5AE22 /* EXConstants.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = EXConstants.debug.xcconfig; sourceTree = "<group>"; }; - 62DA78B0C8B22C0F5F258C14B2B653A9 /* UninitializedMemoryHacks.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = UninitializedMemoryHacks.h; path = folly/memory/UninitializedMemoryHacks.h; sourceTree = "<group>"; }; - 62F459488D43AA27FF3659559D36B974 /* DelayedDestructionBase.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = DelayedDestructionBase.h; path = folly/io/async/DelayedDestructionBase.h; sourceTree = "<group>"; }; - 62F8007FC792903E650CF2C9E6DCF5C4 /* RNFBAnalytics-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "RNFBAnalytics-prefix.pch"; sourceTree = "<group>"; }; - 63181DA198763B9B8CAD33951BAC9300 /* ThreadName.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = ThreadName.cpp; path = folly/system/ThreadName.cpp; sourceTree = "<group>"; }; - 631870C24E6FF50FFE8421AB36226223 /* Instance.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = Instance.h; sourceTree = "<group>"; }; - 6319E115C683CD8817790D3D6A945E4D /* RCTEventAnimation.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTEventAnimation.m; sourceTree = "<group>"; }; - 632154CA99C3395F324D6E8391E97CD6 /* SDAnimatedImageView+WebCache.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "SDAnimatedImageView+WebCache.h"; path = "SDWebImage/Core/SDAnimatedImageView+WebCache.h"; sourceTree = "<group>"; }; - 6325EB92C709FD51590164146B016D32 /* ThreadFactory.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ThreadFactory.h; path = folly/executors/thread_factory/ThreadFactory.h; sourceTree = "<group>"; }; - 6340CF85ACC147112B0CF70EF2FE49DA /* README.md */ = {isa = PBXFileReference; includeInIndex = 1; path = README.md; sourceTree = "<group>"; }; - 634C827508AD23CC96DA5F402D7C9362 /* TupleOps.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = TupleOps.h; path = folly/experimental/TupleOps.h; sourceTree = "<group>"; }; - 6358C91D6EFFFEE83C8D79EAC09C685D /* UIImage+CropRotate.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "UIImage+CropRotate.h"; path = "Objective-C/TOCropViewController/Categories/UIImage+CropRotate.h"; sourceTree = "<group>"; }; - 635ABD2D0367C7A831A83C0C4FD12CF2 /* UIImage+Transform.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "UIImage+Transform.h"; path = "SDWebImage/Core/UIImage+Transform.h"; sourceTree = "<group>"; }; - 636EA45DECCDA93699ABC2B3569AB75E /* SDImageLoader.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = SDImageLoader.m; path = SDWebImage/Core/SDImageLoader.m; sourceTree = "<group>"; }; - 637C838337F31ED529BCEA41C0F4A3E4 /* FKUserDefaultsPlugin.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FKUserDefaultsPlugin.m; path = iOS/Plugins/FlipperKitUserDefaultsPlugin/FKUserDefaultsPlugin.m; sourceTree = "<group>"; }; - 6397ABA682F826ECC4ADD5A6A5140726 /* EXFilePermissionModule.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = EXFilePermissionModule.h; path = EXFileSystem/EXFilePermissionModule.h; sourceTree = "<group>"; }; - 63A78931AA61F6FBBB499A3DEE605446 /* RCTUIImageViewAnimated.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTUIImageViewAnimated.m; sourceTree = "<group>"; }; - 63A7B528365B39E6C6E9F68527A0D320 /* FIRComponent.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRComponent.m; path = FirebaseCore/Sources/FIRComponent.m; sourceTree = "<group>"; }; - 63AE044CCFF233460DB6306511A7B7C2 /* RSocketStats.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RSocketStats.h; path = rsocket/RSocketStats.h; sourceTree = "<group>"; }; - 63C45641EB5DB3C16645B6FADBA569B7 /* BugsnagEvent.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = BugsnagEvent.m; sourceTree = "<group>"; }; - 63D0C21CDE1E08E58AFE3105E685007B /* FIRCLSMachOSlice.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRCLSMachOSlice.m; path = Crashlytics/Shared/FIRCLSMachO/FIRCLSMachOSlice.m; sourceTree = "<group>"; }; - 63E1B74E561C965DABC1A328D38BBD67 /* FileUtil.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = FileUtil.cpp; path = folly/FileUtil.cpp; sourceTree = "<group>"; }; - 64087F3B75718DA47431935A6FF88F39 /* ARTText.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = ARTText.m; path = ios/ARTText.m; sourceTree = "<group>"; }; - 642047E681784F26A48404E6D40A6ABD /* RCTSafeAreaView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTSafeAreaView.m; sourceTree = "<group>"; }; - 64272172F300480AAB5564037E52F9C2 /* RNFBAppModule.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNFBAppModule.h; path = ios/RNFBApp/RNFBAppModule.h; sourceTree = "<group>"; }; - 644633337DCD128ED7793DA3C7441FEB /* alpha_processing_neon.c */ = {isa = PBXFileReference; includeInIndex = 1; name = alpha_processing_neon.c; path = src/dsp/alpha_processing_neon.c; sourceTree = "<group>"; }; - 644E133CF3831EA6989CE8834B6575E6 /* raw_logging.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = raw_logging.cc; path = src/raw_logging.cc; sourceTree = "<group>"; }; - 6469A47D128F2A11EBBF60DD1195B115 /* FIRCLSRecordHost.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRCLSRecordHost.h; path = Crashlytics/Crashlytics/Models/Record/FIRCLSRecordHost.h; sourceTree = "<group>"; }; - 6471F18D06F32C511636C48B2D479CCC /* RCTTextTransform.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTTextTransform.h; path = Libraries/Text/RCTTextTransform.h; sourceTree = "<group>"; }; - 647CE40CF1C8A2EB7C6DA7AD4397FDC3 /* SharedPromise-inl.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "SharedPromise-inl.h"; path = "folly/futures/SharedPromise-inl.h"; sourceTree = "<group>"; }; - 6497352FEB02FB97EDC668D210D9D639 /* FIROptionsInternal.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIROptionsInternal.h; path = FirebaseCore/Sources/Private/FIROptionsInternal.h; sourceTree = "<group>"; }; - 6498003091836BC30C2529E6F103179E /* Futex-inl.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "Futex-inl.h"; path = "folly/detail/Futex-inl.h"; sourceTree = "<group>"; }; - 64AA081DD681754AE4C37B1CF1559595 /* TOCropScrollView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = TOCropScrollView.h; path = "Objective-C/TOCropViewController/Views/TOCropScrollView.h"; sourceTree = "<group>"; }; - 64AEE34E39F21439039BA2068927D0F2 /* IntrusiveList.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = IntrusiveList.h; path = folly/IntrusiveList.h; sourceTree = "<group>"; }; - 64B3EB06DBD57A098DB73AE093530DC6 /* F14Map.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = F14Map.h; path = folly/container/F14Map.h; sourceTree = "<group>"; }; - 64C7DEA7D869F455672B981CDD297434 /* TypedIOBuf.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = TypedIOBuf.h; path = folly/io/TypedIOBuf.h; sourceTree = "<group>"; }; - 64EC894656BBCA746633441C44840EB0 /* PriorityLifoSemMPMCQueue.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = PriorityLifoSemMPMCQueue.h; path = folly/executors/task_queue/PriorityLifoSemMPMCQueue.h; sourceTree = "<group>"; }; - 64F1C6DC263490A0830F3D93F7AEC22D /* vlog_is_on.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = vlog_is_on.cc; path = src/vlog_is_on.cc; sourceTree = "<group>"; }; - 64FDB424456A4DD24183CF1B2202D02E /* evhttp.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = evhttp.h; path = include/evhttp.h; sourceTree = "<group>"; }; - 651A8F3131951CB6910C3BC1B587DEA4 /* README.md */ = {isa = PBXFileReference; includeInIndex = 1; path = README.md; sourceTree = "<group>"; }; + 5E89A01F44F0E3C6CCD8601982962088 /* RCTErrorInfo.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTErrorInfo.m; sourceTree = "<group>"; }; + 5E8C7F18DB541C876ABC273E669C0712 /* NSData+EXFileSystem.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "NSData+EXFileSystem.h"; path = "EXFileSystem/NSData+EXFileSystem.h"; sourceTree = "<group>"; }; + 5E96393EF5F2E715A2A4FB38477CC360 /* Sockets.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Sockets.h; path = folly/portability/Sockets.h; sourceTree = "<group>"; }; + 5E9B1BD5B1ED703FC6D681CE9B9E43AB /* RCTWrapperViewController.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTWrapperViewController.m; sourceTree = "<group>"; }; + 5E9BDE07FCC8F639F6B0B8D965E6BCDE /* RSocketParameters.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = RSocketParameters.cpp; path = rsocket/RSocketParameters.cpp; sourceTree = "<group>"; }; + 5EB815A033D3C6A75A3A5FE32EEE17B9 /* RCTRequired.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = RCTRequired.podspec; sourceTree = "<group>"; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; + 5EB8BCC8CE4CA4E5257E9EE9D8DFEEDC /* RCTAnimationUtils.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTAnimationUtils.m; sourceTree = "<group>"; }; + 5EBEFB8A6FCE9E056223261A9B679700 /* Subscription.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Subscription.h; path = yarpl/flowable/Subscription.h; sourceTree = "<group>"; }; + 5ECA6DC5EBB270FC1F70959F4FC3B83F /* Dirent.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = Dirent.cpp; path = folly/portability/Dirent.cpp; sourceTree = "<group>"; }; + 5ECBD247FFBC6EAE6ACBA9EC10EC5D54 /* TcpDuplexConnection.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = TcpDuplexConnection.h; path = rsocket/transports/tcp/TcpDuplexConnection.h; sourceTree = "<group>"; }; + 5EDD6E0F5C05F19348940A2935DDABAB /* SecureStorage.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = SecureStorage.m; path = ios/SecureStorage.m; sourceTree = "<group>"; }; + 5EED4F8FE233A27531DE0D14ABEDE1BD /* ExceptionString.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ExceptionString.h; path = folly/ExceptionString.h; sourceTree = "<group>"; }; + 5EF18B72048676534829D2B5295CEF97 /* react-native-blur.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "react-native-blur.debug.xcconfig"; sourceTree = "<group>"; }; + 5EF5A53339F7C8BA0A6122E4896CBB43 /* Aligned.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Aligned.h; path = folly/lang/Aligned.h; sourceTree = "<group>"; }; + 5F1812CF7408473FCCA9C61A9726AF51 /* de.lproj */ = {isa = PBXFileReference; includeInIndex = 1; name = de.lproj; path = "Objective-C/TOCropViewController/Resources/de.lproj"; sourceTree = "<group>"; }; + 5F4F6CF34D79B494A6AA193FEDE68160 /* FlipperConnection.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FlipperConnection.h; path = iOS/FlipperKit/FlipperConnection.h; sourceTree = "<group>"; }; + 5F74FFA25BD89324C424E5BFB2996D1A /* DistributedMutexSpecializations.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = DistributedMutexSpecializations.h; path = folly/synchronization/DistributedMutexSpecializations.h; sourceTree = "<group>"; }; + 5F7F98B3B6339240DCBE2E827C0DD546 /* FBLazyVector.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = FBLazyVector.debug.xcconfig; sourceTree = "<group>"; }; + 5F845C0B61702CD74C70D2F1C766B063 /* Shell.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = Shell.cpp; path = folly/system/Shell.cpp; sourceTree = "<group>"; }; + 5F866D4AE61BE7526CE3BBD429E189A8 /* SKDescriptorMapper.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SKDescriptorMapper.h; path = iOS/Plugins/FlipperKitLayoutPlugin/FlipperKitLayoutPlugin/SKDescriptorMapper.h; sourceTree = "<group>"; }; + 5F869DEAB35BEEF672102C44847392C4 /* stl_logging.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = stl_logging.h; path = src/glog/stl_logging.h; sourceTree = "<group>"; }; + 5F8D96B3FE209FD8B1B0300BC5C94DEC /* SynthTrace.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SynthTrace.h; path = destroot/include/hermes/SynthTrace.h; sourceTree = "<group>"; }; + 5FA2717B9A141E1C9710A9F104EA5302 /* RCTConvert+FFFastImage.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "RCTConvert+FFFastImage.h"; path = "ios/FastImage/RCTConvert+FFFastImage.h"; sourceTree = "<group>"; }; + 5FB3723779BB5E06CE77C061335CA197 /* FIRAppAssociationRegistration.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRAppAssociationRegistration.h; path = FirebaseCore/Sources/FIRAppAssociationRegistration.h; sourceTree = "<group>"; }; + 5FB534B9956DB74ED567203C9FCD9E4D /* CodingDetail.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = CodingDetail.h; path = folly/experimental/CodingDetail.h; sourceTree = "<group>"; }; + 5FC82E595D591D4B64F4CFE54F774BBC /* HazptrThreadPoolExecutor.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = HazptrThreadPoolExecutor.cpp; path = folly/synchronization/HazptrThreadPoolExecutor.cpp; sourceTree = "<group>"; }; + 5FCE087AAB80A33D56A2BCD92CBBD87B /* logging.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = logging.h; path = src/glog/logging.h; sourceTree = "<group>"; }; + 5FCFAEB741CD44BCBE6FE826FE96A90E /* ScopeGuard.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ScopeGuard.h; path = folly/ScopeGuard.h; sourceTree = "<group>"; }; + 5FE632E11891141E1F9FEB4E7C3C3094 /* RCTScrollView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTScrollView.m; sourceTree = "<group>"; }; + 5FE6B25622A7875076E7771544A3BBB7 /* React-RCTLinking-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "React-RCTLinking-dummy.m"; sourceTree = "<group>"; }; + 5FF5D6E6965540C165C816BE7E0D3F05 /* FBLPromise+Delay.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "FBLPromise+Delay.h"; path = "Sources/FBLPromises/include/FBLPromise+Delay.h"; sourceTree = "<group>"; }; + 6000029777CD6C1183FDD6ED6EE5E473 /* FontAwesome.ttf */ = {isa = PBXFileReference; includeInIndex = 1; name = FontAwesome.ttf; path = Fonts/FontAwesome.ttf; sourceTree = "<group>"; }; + 6001A29683C89BE2C4DEE83AE685690B /* React-RCTAnimation.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "React-RCTAnimation.release.xcconfig"; sourceTree = "<group>"; }; + 60466E2EB138806E69B30C748843ACCF /* GlobalExecutor.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = GlobalExecutor.h; path = folly/executors/GlobalExecutor.h; sourceTree = "<group>"; }; + 604F728306ABB6F1C920CE8533DBA37C /* lossless_enc_neon.c */ = {isa = PBXFileReference; includeInIndex = 1; name = lossless_enc_neon.c; path = src/dsp/lossless_enc_neon.c; sourceTree = "<group>"; }; + 6059EB66B19D9C499452C7E4269AF05C /* openssl_md5_one.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = openssl_md5_one.cpp; path = Core/aes/openssl/openssl_md5_one.cpp; sourceTree = "<group>"; }; + 605E843B25F664012634412A146ACA85 /* Libgen.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Libgen.h; path = folly/portability/Libgen.h; sourceTree = "<group>"; }; + 6062B79C88F3E5F2BACD9C98C12ED378 /* rn-extensions-share.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "rn-extensions-share.release.xcconfig"; sourceTree = "<group>"; }; + 60686497E1A2DD6B97461E8F97C63EC4 /* MiniPBCoder_OSX.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = MiniPBCoder_OSX.cpp; path = Core/MiniPBCoder_OSX.cpp; sourceTree = "<group>"; }; + 6076BA8CDF95E98F007EC70F2D40FB86 /* FileUtil.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FileUtil.h; path = folly/FileUtil.h; sourceTree = "<group>"; }; + 6078EAA74D7CAF3E61BC7BBB5D95C330 /* ModuleRegistry.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; path = ModuleRegistry.cpp; sourceTree = "<group>"; }; + 6086248C2E2C94CAFE558B5B83E4B65F /* RCTSegmentedControlManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTSegmentedControlManager.m; sourceTree = "<group>"; }; + 608CAE17196F36A656F194BBBEE79D45 /* RSocketServiceHandler.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = RSocketServiceHandler.cpp; path = rsocket/RSocketServiceHandler.cpp; sourceTree = "<group>"; }; + 609049177578FD857C1BD1BF7B09DE8A /* React.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = React.podspec; sourceTree = "<group>"; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; + 609CE645A138A2BF46AA3D76008405E6 /* RCTLinkingManager.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTLinkingManager.mm; sourceTree = "<group>"; }; + 60AC6A41E0E5C1F4F76E17AF356A4975 /* BugsnagThread+Private.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "BugsnagThread+Private.h"; sourceTree = "<group>"; }; + 60AD4EFF257DE21A37206860B2AF6B12 /* ConnectionSet.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ConnectionSet.h; path = rsocket/internal/ConnectionSet.h; sourceTree = "<group>"; }; + 60B3D36D170B080A7C6955548B2B01F6 /* RNCAppearanceProviderManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNCAppearanceProviderManager.m; path = ios/Appearance/RNCAppearanceProviderManager.m; sourceTree = "<group>"; }; + 60C1D01E4D0506C274000D49DB12BC39 /* RNFBPreferences.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNFBPreferences.h; path = ios/RNFBApp/RNFBPreferences.h; sourceTree = "<group>"; }; + 60CE2F8F6A20BC6708038724C9039D4A /* RCTConvertHelpers.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTConvertHelpers.mm; sourceTree = "<group>"; }; + 60CE61FE1B097DC2250BB5CF9BFDA2A8 /* RCTBaseTextInputViewManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTBaseTextInputViewManager.m; sourceTree = "<group>"; }; + 60D57327D42ADF428835C46A86B42192 /* PolyDetail.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = PolyDetail.h; path = folly/detail/PolyDetail.h; sourceTree = "<group>"; }; + 60DDB2D8A7AAAB3AB85F270C830E80EA /* RNFBAnalytics.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = RNFBAnalytics.debug.xcconfig; sourceTree = "<group>"; }; + 60E23A1AB6F172911238053287791884 /* RCTUITextField.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTUITextField.h; sourceTree = "<group>"; }; + 60E2B3F7654353A0B185AAD73B77C8F1 /* MessageConverters.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; path = MessageConverters.cpp; sourceTree = "<group>"; }; + 60FAA3A0D864E902A246DC75DB891122 /* Singleton.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Singleton.h; path = folly/detail/Singleton.h; sourceTree = "<group>"; }; + 61174B28A33647277F3659768E52A29B /* RCTLog.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTLog.mm; sourceTree = "<group>"; }; + 612353AF466442488436EA3AAD4EC8AF /* TOCropViewControllerTransitioning.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = TOCropViewControllerTransitioning.h; path = "Objective-C/TOCropViewController/Models/TOCropViewControllerTransitioning.h"; sourceTree = "<group>"; }; + 614D97D81279FEAF80BA11EA8B87E525 /* AtomicNotification.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = AtomicNotification.h; path = folly/synchronization/AtomicNotification.h; sourceTree = "<group>"; }; + 61520A8CC6E222A61F1C7F43272B0F61 /* IOObjectCache.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = IOObjectCache.h; path = folly/executors/IOObjectCache.h; sourceTree = "<group>"; }; + 616490565B5D75C1FD12828608D07A8F /* Hardware.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Hardware.h; path = folly/synchronization/detail/Hardware.h; sourceTree = "<group>"; }; + 616BD93EDD3C19EC3AEC4FE1676297E7 /* LNInterpolation.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = LNInterpolation.h; sourceTree = "<group>"; }; + 618FA9408310D1F9AC23A222D04FD512 /* ManualExecutor.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = ManualExecutor.cpp; path = folly/executors/ManualExecutor.cpp; sourceTree = "<group>"; }; + 6194DCE370868826A0343A26D07F27F6 /* ca.lproj */ = {isa = PBXFileReference; includeInIndex = 1; name = ca.lproj; path = "Objective-C/TOCropViewController/Resources/ca.lproj"; sourceTree = "<group>"; }; + 619BFAA923B69509C766ED636D5139A2 /* REAPropsNode.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = REAPropsNode.h; sourceTree = "<group>"; }; + 61A1ABF54320C45F9827E2948BD509F9 /* UIView+SKInvalidation.mm */ = {isa = PBXFileReference; includeInIndex = 1; name = "UIView+SKInvalidation.mm"; path = "iOS/Plugins/FlipperKitLayoutPlugin/FlipperKitLayoutPlugin/UIView+SKInvalidation.mm"; sourceTree = "<group>"; }; + 61A4E0543C726B492043B8BB13DFDC37 /* TimekeeperScheduledExecutor.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = TimekeeperScheduledExecutor.cpp; path = folly/executors/TimekeeperScheduledExecutor.cpp; sourceTree = "<group>"; }; + 61D4256891239F936D6FE069E83BF32D /* UMTaskConsumerInterface.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = UMTaskConsumerInterface.h; path = UMTaskManagerInterface/UMTaskConsumerInterface.h; sourceTree = "<group>"; }; + 61E24D7397697438414F8AB8AE0D2B37 /* FIRCLSUserDefaults.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRCLSUserDefaults.m; path = Crashlytics/Crashlytics/FIRCLSUserDefaults/FIRCLSUserDefaults.m; sourceTree = "<group>"; }; + 61E4388E53D070EA79EB9F25037A47F5 /* RCTAlertManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTAlertManager.h; path = React/CoreModules/RCTAlertManager.h; sourceTree = "<group>"; }; + 620AB4522D0CF02D6205FEC37D7FDEA7 /* Rsa.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = Rsa.h; sourceTree = "<group>"; }; + 627A5F2F82BCBD2FF9C1D568E32124AF /* SDWebImageDownloaderOperation.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SDWebImageDownloaderOperation.h; path = SDWebImage/Core/SDWebImageDownloaderOperation.h; sourceTree = "<group>"; }; + 627C2F143E0478A1E833D89AD3EED420 /* RCTSegmentedControl.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTSegmentedControl.m; sourceTree = "<group>"; }; + 629CE60817266C0075CEA4BF001C5732 /* RNFBApp-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "RNFBApp-prefix.pch"; sourceTree = "<group>"; }; + 62A2E36856E184EB020E77462509F0E8 /* FBLazyIterator.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FBLazyIterator.h; path = FBLazyVector/FBLazyIterator.h; sourceTree = "<group>"; }; + 62A7B6AF718A4CD5946C7CC9764C6A21 /* React-jsinspector.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "React-jsinspector.release.xcconfig"; sourceTree = "<group>"; }; + 62B007BB105C236972648B36F9F24A2A /* http.c */ = {isa = PBXFileReference; includeInIndex = 1; path = http.c; sourceTree = "<group>"; }; + 62B2DB8A414D5FB0E633D83AC91D5846 /* RNCPicker.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNCPicker.m; path = ios/RNCPicker.m; sourceTree = "<group>"; }; + 62B79DF71A222F875FC185094EE63E5B /* ThreadLocalDetail.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ThreadLocalDetail.h; path = folly/detail/ThreadLocalDetail.h; sourceTree = "<group>"; }; + 62C2BAE5054CC7730B97BC48A0C22945 /* 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 = "<group>"; }; + 62CB6807706E44E49977C5FB82C6BCC0 /* RCTFileReaderModule.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTFileReaderModule.mm; sourceTree = "<group>"; }; + 62CDF72440C72EDDC9431E8C76523788 /* FlipperKit-umbrella.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "FlipperKit-umbrella.h"; sourceTree = "<group>"; }; + 62ED6B4BCA463AE929A9FCC68439F736 /* BugsnagLastRunInfo.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = BugsnagLastRunInfo.m; sourceTree = "<group>"; }; + 630DFE07FA0BACFA067723A18560F110 /* EXResumablesManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = EXResumablesManager.h; sourceTree = "<group>"; }; + 6312E2AF415B4DE18707CD2354722F1B /* Partial.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Partial.h; path = folly/functional/Partial.h; sourceTree = "<group>"; }; + 631628EB6538601CF68050AB86DED8C7 /* CoreCachedSharedPtr.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = CoreCachedSharedPtr.h; path = folly/concurrency/CoreCachedSharedPtr.h; sourceTree = "<group>"; }; + 6316F196F3F7655EE41C4A58B127B152 /* OpenSSL-Universal.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "OpenSSL-Universal.release.xcconfig"; sourceTree = "<group>"; }; + 63205B9FA03B467A37E207D88C8DAE9E /* NSData+ImageContentType.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "NSData+ImageContentType.h"; path = "SDWebImage/Core/NSData+ImageContentType.h"; sourceTree = "<group>"; }; + 632693FB6042CD50E5895B2125475569 /* RNFBApp-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "RNFBApp-dummy.m"; sourceTree = "<group>"; }; + 632742EB6A230FB0A73E7225931002D5 /* EXSessionDownloadTaskDelegate.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = EXSessionDownloadTaskDelegate.m; sourceTree = "<group>"; }; + 634439167118190AB0E4E384E0FA9DEE /* SKHighlightOverlay.mm */ = {isa = PBXFileReference; includeInIndex = 1; name = SKHighlightOverlay.mm; path = iOS/Plugins/FlipperKitPluginUtils/FlipperKitHighlightOverlay/SKHighlightOverlay.mm; sourceTree = "<group>"; }; + 634657D9DD5D3C5D17F98FB447F0EB10 /* RCTSurfaceDelegate.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTSurfaceDelegate.h; sourceTree = "<group>"; }; + 6348158250BDD61323E00A96E6F8C450 /* BugsnagSessionFileStore.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BugsnagSessionFileStore.h; sourceTree = "<group>"; }; + 634FBF6AE5BADA79617F9F32D1B57C96 /* SDImageCacheDefine.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SDImageCacheDefine.h; path = SDWebImage/Core/SDImageCacheDefine.h; sourceTree = "<group>"; }; + 63510083183C02B3312DA0BA286155A7 /* EXVideoPlayerViewController.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = EXVideoPlayerViewController.m; sourceTree = "<group>"; }; + 636DA62FE07159A9D3887283ECA95722 /* react-native-restart.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = "react-native-restart.podspec"; sourceTree = "<group>"; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; + 6378F7A784F32A4E6FE54717D0C2C711 /* SimpleLineIcons.ttf */ = {isa = PBXFileReference; includeInIndex = 1; name = SimpleLineIcons.ttf; path = Fonts/SimpleLineIcons.ttf; sourceTree = "<group>"; }; + 638CBE9EA1418F4753A3B60A63F2DEE8 /* FFFastImageViewManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FFFastImageViewManager.m; path = ios/FastImage/FFFastImageViewManager.m; sourceTree = "<group>"; }; + 6398CA7769F81D7F92FC70CE94CB859E /* RCTRefreshControlManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTRefreshControlManager.m; sourceTree = "<group>"; }; + 63A4C477F2CB2B884266342A8B16406A /* FIRErrors.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRErrors.h; path = FirebaseCore/Sources/Private/FIRErrors.h; sourceTree = "<group>"; }; + 63AE1B5A4BBCE6A5A6F03038206B99FF /* FBReactNativeSpec.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = FBReactNativeSpec.release.xcconfig; sourceTree = "<group>"; }; + 63C6A97615FA067C31D1487283EBFFA2 /* ARTSurfaceViewManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = ARTSurfaceViewManager.m; sourceTree = "<group>"; }; + 63CA53CC84313A31F74768406BD7D28D /* ResumeManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ResumeManager.h; path = rsocket/ResumeManager.h; sourceTree = "<group>"; }; + 63D1D1E2E39DBE30100714EBF3ACDFC6 /* SysTime.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SysTime.h; path = folly/portability/SysTime.h; sourceTree = "<group>"; }; + 63EB0BF60D7A3D832010E0B4D7883CA2 /* FBLPromise+Recover.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "FBLPromise+Recover.m"; path = "Sources/FBLPromises/FBLPromise+Recover.m"; sourceTree = "<group>"; }; + 63FEB9073596EEC82CA93527A3335C35 /* RCTDeviceInfo.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTDeviceInfo.mm; sourceTree = "<group>"; }; + 6408A3566643BF865964C9DAA58C536B /* LICENSE */ = {isa = PBXFileReference; includeInIndex = 1; path = LICENSE; sourceTree = "<group>"; }; + 641C0E83AFEBA877F036FC9524DEF7E7 /* JitsiMeetSDK.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = JitsiMeetSDK.release.xcconfig; sourceTree = "<group>"; }; + 64545F3BFFC1522366ABE9AFBA5CD50C /* BSG_KSMach_Arm64.c */ = {isa = PBXFileReference; includeInIndex = 1; path = BSG_KSMach_Arm64.c; sourceTree = "<group>"; }; + 6457EB21854B5E8E43920D9AE9097047 /* instrumentation.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = instrumentation.h; path = destroot/include/jsi/instrumentation.h; sourceTree = "<group>"; }; + 64669BD8F6B902548104BF0EE4D90002 /* ColdResumeHandler.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = ColdResumeHandler.cpp; path = rsocket/ColdResumeHandler.cpp; sourceTree = "<group>"; }; + 647E22648B2071E2AE257DBFB9582075 /* RNBridgeModule.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNBridgeModule.h; path = RNNotifications/RNBridgeModule.h; sourceTree = "<group>"; }; + 6485941607DED1C562F39E7E637068A8 /* strlcpy-internal.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "strlcpy-internal.h"; sourceTree = "<group>"; }; + 6487D1EEF593CD86E57C4C814142B9AE /* Hash.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Hash.h; path = folly/Hash.h; sourceTree = "<group>"; }; + 6489452F04807883523A1FFC418B15C6 /* FireForgetThroughputTcp.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = FireForgetThroughputTcp.cpp; path = rsocket/benchmarks/FireForgetThroughputTcp.cpp; sourceTree = "<group>"; }; + 64908B46E12CAF504E5BEC4BAB6F8ED0 /* VirtualExecutor.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = VirtualExecutor.h; path = folly/VirtualExecutor.h; sourceTree = "<group>"; }; + 6492EDEF88CA1D527C6BEB10E7440F08 /* ProgramOptions.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ProgramOptions.h; path = folly/experimental/ProgramOptions.h; sourceTree = "<group>"; }; + 649CA10295792636D47B120956DFE8AA /* utils.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = utils.h; path = "double-conversion/utils.h"; sourceTree = "<group>"; }; + 649EDF8FC7D597517AC77AC387A9988B /* BSGEventUploader.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = BSGEventUploader.m; sourceTree = "<group>"; }; + 64D9B9F25B0FB550384CCEE01DDDB3E2 /* signalhandler.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = signalhandler.cc; path = src/signalhandler.cc; sourceTree = "<group>"; }; + 64E7E67524069560BB6B8664907E4EC5 /* RCTDecayAnimation.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTDecayAnimation.m; sourceTree = "<group>"; }; + 65006B7C8CA2B519FB06B8743C22360F /* StaticTracepoint.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = StaticTracepoint.h; path = folly/tracing/StaticTracepoint.h; sourceTree = "<group>"; }; + 6508735523027061E297F1F9074E7E8A /* Log.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = Log.cpp; path = xplat/Flipper/Log.cpp; sourceTree = "<group>"; }; + 650D118DA2A3ED16F6DE7E7E61FA1E9F /* ThreadLocalDetail.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = ThreadLocalDetail.cpp; path = folly/detail/ThreadLocalDetail.cpp; sourceTree = "<group>"; }; 65234B3E668A42D9137B2C7AB051EE37 /* libFlipperKit.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; name = libFlipperKit.a; path = libFlipperKit.a; sourceTree = BUILT_PRODUCTS_DIR; }; - 6525E5BC4FA81595E90608B5DC99A111 /* RCTBorderDrawing.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTBorderDrawing.m; sourceTree = "<group>"; }; - 6526F41ECBDF99585387BFDC5787A33B /* Random.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Random.h; path = folly/Random.h; sourceTree = "<group>"; }; - 6533957012F837CCA5A902610A989D73 /* ReentrantAllocator.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ReentrantAllocator.h; path = folly/memory/ReentrantAllocator.h; sourceTree = "<group>"; }; - 654A312852DD07D4EC6DC4D1DF016102 /* EXAV.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = EXAV.debug.xcconfig; sourceTree = "<group>"; }; - 655295FC2D10FA8D103EC75D8A0C884B /* SocketFileDescriptorMap.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SocketFileDescriptorMap.h; path = folly/net/detail/SocketFileDescriptorMap.h; sourceTree = "<group>"; }; - 655AB00308011B638B5EA2AA6AE30280 /* SDImageWebPCoder.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SDImageWebPCoder.h; path = SDWebImageWebPCoder/Classes/SDImageWebPCoder.h; sourceTree = "<group>"; }; - 657C2BB6771EEDE6789A18E1920992B2 /* SKIOSNetworkAdapter.mm */ = {isa = PBXFileReference; includeInIndex = 1; name = SKIOSNetworkAdapter.mm; path = iOS/Plugins/FlipperKitNetworkPlugin/SKIOSNetworkPlugin/SKIOSNetworkAdapter.mm; sourceTree = "<group>"; }; - 6588EE64A2769BC2FE5EC0F6D78CD8E4 /* RCTSettingsManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTSettingsManager.h; path = Libraries/Settings/RCTSettingsManager.h; sourceTree = "<group>"; }; - 658CDE58F0A145A01F4B64355610CEA8 /* README.md */ = {isa = PBXFileReference; includeInIndex = 1; path = README.md; sourceTree = "<group>"; }; - 65931E231ED87291782F00320FD5E79D /* RNNotificationsStore.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNNotificationsStore.h; path = RNNotifications/RNNotificationsStore.h; sourceTree = "<group>"; }; - 659AF947B8078759249913E120B5CC48 /* RNFetchBlobProgress.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNFetchBlobProgress.m; path = ios/RNFetchBlobProgress.m; sourceTree = "<group>"; }; - 65A8ACF1D7DE947873F2F653FE01B728 /* UMModuleRegistryProvider.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = UMModuleRegistryProvider.h; sourceTree = "<group>"; }; - 65B29ADF9EF6733B27B00153E334C733 /* boost-for-react-native.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "boost-for-react-native.release.xcconfig"; sourceTree = "<group>"; }; - 65C39BD507722298D52DB1270A2BFABE /* FIRCoreDiagnosticsConnector.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRCoreDiagnosticsConnector.m; path = FirebaseCore/Sources/FIRCoreDiagnosticsConnector.m; sourceTree = "<group>"; }; - 65C4D9484C6E95E9F01F5CA361F5F57E /* rescaler_neon.c */ = {isa = PBXFileReference; includeInIndex = 1; name = rescaler_neon.c; path = src/dsp/rescaler_neon.c; sourceTree = "<group>"; }; - 65C750CF4B56A5F3925533462CABEC7A /* SafeAssert.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SafeAssert.h; path = folly/lang/SafeAssert.h; sourceTree = "<group>"; }; + 6527C45E613570F8E482BCAF1012824E /* openssl_opensslconf.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = openssl_opensslconf.h; path = Core/aes/openssl/openssl_opensslconf.h; sourceTree = "<group>"; }; + 652D9F3D20EC26A36C330B1C312F4DC3 /* react-native-notifications-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "react-native-notifications-dummy.m"; sourceTree = "<group>"; }; + 654108A5820A9ABD604CFC74958161C4 /* dynamic-inl.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "dynamic-inl.h"; path = "folly/dynamic-inl.h"; sourceTree = "<group>"; }; + 654F6D6BF4D05C60FE527A20451CF793 /* TimedDrivableExecutor.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = TimedDrivableExecutor.cpp; path = folly/executors/TimedDrivableExecutor.cpp; sourceTree = "<group>"; }; + 6552BF3D9BF160C2B733566D9510E417 /* RNNotificationsStore.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNNotificationsStore.h; path = RNNotifications/RNNotificationsStore.h; sourceTree = "<group>"; }; + 6572A5389B75E67DD18B8F051BDE00E6 /* ARTNodeManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = ARTNodeManager.m; sourceTree = "<group>"; }; + 657882E0A02D92232D9F6BBCA2379183 /* ScheduledFrameProcessor.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ScheduledFrameProcessor.h; path = rsocket/framing/ScheduledFrameProcessor.h; sourceTree = "<group>"; }; + 658041429E32DF02374A9C53F349F852 /* Utility.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Utility.h; path = folly/synchronization/Utility.h; sourceTree = "<group>"; }; + 659CEBCC02772788527A0DB608B01B2B /* SKViewDescriptor.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SKViewDescriptor.h; path = iOS/Plugins/FlipperKitLayoutPlugin/FlipperKitLayoutPlugin/descriptors/SKViewDescriptor.h; sourceTree = "<group>"; }; + 65C871EF5A78ADCEF923C694CC0DA910 /* BugsnagErrorTypes.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = BugsnagErrorTypes.m; sourceTree = "<group>"; }; + 65CC2C68810A23A3FCED86E4F8155C89 /* GDTCORUploader.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = GDTCORUploader.h; path = GoogleDataTransport/GDTCORLibrary/Public/GoogleDataTransport/GDTCORUploader.h; sourceTree = "<group>"; }; 65D0A19C165FA1126B1360680FE6DB12 /* libYoga.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; name = libYoga.a; path = libYoga.a; sourceTree = BUILT_PRODUCTS_DIR; }; - 65F1AC1A3944F25FB966B24E6E90882F /* RangeCommon.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RangeCommon.h; path = folly/detail/RangeCommon.h; sourceTree = "<group>"; }; - 65F7A0C6C87BF5E149864516855F9BB0 /* MemoryFile_Android.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = MemoryFile_Android.cpp; path = Core/MemoryFile_Android.cpp; sourceTree = "<group>"; }; - 660AB5C7E94D9F3FEF94F33259865B5F /* RNNotificationCenterListener.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNNotificationCenterListener.h; path = RNNotifications/RNNotificationCenterListener.h; sourceTree = "<group>"; }; - 666D07CFFA0543E74260EBDA643C53E5 /* strlcpy-internal.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "strlcpy-internal.h"; sourceTree = "<group>"; }; + 65E116481ECE45EDC5359DFFCBE95964 /* RCTSettingsPlugins.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTSettingsPlugins.h; path = Libraries/Settings/RCTSettingsPlugins.h; sourceTree = "<group>"; }; + 65F361A3C4161C514C68C705E024B3B3 /* DefaultKeepAliveExecutor.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = DefaultKeepAliveExecutor.h; path = folly/DefaultKeepAliveExecutor.h; sourceTree = "<group>"; }; + 65F7CB4A286E2603515767C7F06F1E10 /* UMFileSystemInterface.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = UMFileSystemInterface.podspec; sourceTree = "<group>"; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; + 65F9A20C18286657B51C804366B3B161 /* EventBaseBackendBase.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = EventBaseBackendBase.cpp; path = folly/io/async/EventBaseBackendBase.cpp; sourceTree = "<group>"; }; + 6600A25D731268212229B946BF930ABB /* MoveWrapper.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = MoveWrapper.h; path = folly/MoveWrapper.h; sourceTree = "<group>"; }; + 660336868F41A6FF72AC7584F7F63402 /* CrashManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = CrashManager.h; path = destroot/include/hermes/Public/CrashManager.h; sourceTree = "<group>"; }; + 66074927E6539E29BBA0ED4F00318A9E /* BugsnagApiClient.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = BugsnagApiClient.m; sourceTree = "<group>"; }; + 662A01B30096B568A3C97F94CA374EDC /* GDTCOREventTransformer.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = GDTCOREventTransformer.h; path = GoogleDataTransport/GDTCORLibrary/Public/GoogleDataTransport/GDTCOREventTransformer.h; sourceTree = "<group>"; }; + 6632568D1312BA837B2053B99D777AE4 /* OpenSSLUtils.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = OpenSSLUtils.h; path = folly/io/async/ssl/OpenSSLUtils.h; sourceTree = "<group>"; }; + 66442F9D1BF8284CC8FFF8C87AA720B2 /* RNRandomBytes.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNRandomBytes.m; path = ios/RCTCrypto/RNRandomBytes.m; sourceTree = "<group>"; }; + 664E133DB4DB60AA8FFC8F2CEF986B57 /* SDImageIOAnimatedCoderInternal.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SDImageIOAnimatedCoderInternal.h; path = SDWebImage/Private/SDImageIOAnimatedCoderInternal.h; sourceTree = "<group>"; }; + 6663436A3FDAEEC3695035A818D7F110 /* RCTComponentData.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTComponentData.h; sourceTree = "<group>"; }; + 66677E39F319BF04D6A888B1BF319131 /* UMModuleRegistryHolderReactModule.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = UMModuleRegistryHolderReactModule.m; sourceTree = "<group>"; }; 666E72807891C591E025A75410CD2A26 /* libReact-perflogger.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; name = "libReact-perflogger.a"; path = "libReact-perflogger.a"; sourceTree = BUILT_PRODUCTS_DIR; }; - 6691DF0CB8F296A5B4193C56713D9084 /* FIRAValue.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRAValue.h; path = Crashlytics/Crashlytics/Helpers/FIRAValue.h; sourceTree = "<group>"; }; - 6699132F7FA7337ED210A2AEF692D1CD /* enc.c */ = {isa = PBXFileReference; includeInIndex = 1; name = enc.c; path = src/dsp/enc.c; sourceTree = "<group>"; }; - 66A3E0F59BFBF183C03632E2F93359A4 /* ManualExecutor.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = ManualExecutor.cpp; path = folly/executors/ManualExecutor.cpp; sourceTree = "<group>"; }; - 66B424E1E337CAC9AA470426F174F470 /* RNCConnectionStateWatcher.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNCConnectionStateWatcher.h; path = ios/RNCConnectionStateWatcher.h; sourceTree = "<group>"; }; - 66E95A42F0A22197DC0CC828955BCA58 /* BSG_KSBacktrace.c */ = {isa = PBXFileReference; includeInIndex = 1; path = BSG_KSBacktrace.c; sourceTree = "<group>"; }; - 66EE8C7854B55B201886046863BC7BF0 /* FBLPromise+Await.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "FBLPromise+Await.m"; path = "Sources/FBLPromises/FBLPromise+Await.m"; sourceTree = "<group>"; }; - 66F0D8BBD14EFB8EA9197CDCE644FAB0 /* RCTBaseTextViewManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTBaseTextViewManager.h; sourceTree = "<group>"; }; - 670D865981D234F25D9D09BEEA071BAF /* SDImageTransformer.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = SDImageTransformer.m; path = SDWebImage/Core/SDImageTransformer.m; sourceTree = "<group>"; }; - 67547ABBE9B4176AC94A8DF3675333BE /* CallOnce.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = CallOnce.h; path = folly/synchronization/CallOnce.h; sourceTree = "<group>"; }; - 675E5ADC3EACC082F3B1BAAA56677263 /* DistributedMutexSpecializations.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = DistributedMutexSpecializations.h; path = folly/synchronization/DistributedMutexSpecializations.h; sourceTree = "<group>"; }; + 6673917DD9D4A5926D289283FF43D218 /* BridgeNativeModulePerfLogger.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = BridgeNativeModulePerfLogger.h; path = reactperflogger/BridgeNativeModulePerfLogger.h; sourceTree = "<group>"; }; + 66790C568554BE8BB1C7F1BCD2271848 /* RCTEventDispatcher.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTEventDispatcher.mm; sourceTree = "<group>"; }; + 667AB0A6DA1DC13B5D02A965480DFE35 /* SKTouch.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SKTouch.h; path = iOS/Plugins/FlipperKitLayoutPlugin/FlipperKitLayoutPlugin/SKTouch.h; sourceTree = "<group>"; }; + 668660252722E7643C38397952F90CC4 /* REAAlwaysNode.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = REAAlwaysNode.h; sourceTree = "<group>"; }; + 66A9E39CF28CBE2676B8824193EFED4B /* dynamic.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = dynamic.h; path = folly/dynamic.h; sourceTree = "<group>"; }; + 66D7CD4D3A3A5E7B98BB29538DD00B04 /* RCTScrollContentView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTScrollContentView.h; sourceTree = "<group>"; }; + 66E6376475EDC1D49C093FB33AE95C58 /* Codel.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = Codel.cpp; path = folly/executors/Codel.cpp; sourceTree = "<group>"; }; + 6700772380B3CFE2FC3FF245578BFA13 /* SKBufferingPlugin.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SKBufferingPlugin.h; path = iOS/Plugins/FlipperKitNetworkPlugin/FlipperKitNetworkPlugin/SKBufferingPlugin.h; sourceTree = "<group>"; }; + 67062CF6AC995696AF7FC66834D2DA65 /* Hmac.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = Hmac.m; sourceTree = "<group>"; }; + 6715A7DB80FD5793EDFA838C19F87158 /* ProxyLockable-inl.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "ProxyLockable-inl.h"; path = "folly/synchronization/detail/ProxyLockable-inl.h"; sourceTree = "<group>"; }; + 6716152E381A6A3A879561177E52A93D /* NSDataBigString.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = NSDataBigString.h; sourceTree = "<group>"; }; + 671EBB409B6D480819A13A112FAD3776 /* FBLPromise+Always.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "FBLPromise+Always.m"; path = "Sources/FBLPromises/FBLPromise+Always.m"; sourceTree = "<group>"; }; + 67423DAEC6E6C03F249B0C8C60D46F89 /* Math.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Math.h; path = folly/Math.h; sourceTree = "<group>"; }; + 675A945801C1B7102F5202738222DADA /* FutureSplitter.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FutureSplitter.h; path = folly/futures/FutureSplitter.h; sourceTree = "<group>"; }; + 676AA9C2B87B470193388477ED0D5DE2 /* AtomicHashArray-inl.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "AtomicHashArray-inl.h"; path = "folly/AtomicHashArray-inl.h"; sourceTree = "<group>"; }; + 676E7C6AD60756738B6F290B81886C38 /* picture_rescale_enc.c */ = {isa = PBXFileReference; includeInIndex = 1; name = picture_rescale_enc.c; path = src/enc/picture_rescale_enc.c; sourceTree = "<group>"; }; 6771D231F4C8C5976470A369C474B32E /* libReact-CoreModules.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; name = "libReact-CoreModules.a"; path = "libReact-CoreModules.a"; sourceTree = BUILT_PRODUCTS_DIR; }; - 677A0291688B635D3F8CBAEE82288760 /* event.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = event.h; path = include/event.h; sourceTree = "<group>"; }; - 67801958A02500B281EC81392CED35CE /* crc32_armv8.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = crc32_armv8.cpp; path = Core/crc32/crc32_armv8.cpp; sourceTree = "<group>"; }; - 678C3CA52E8662BB138C894265599275 /* React-RCTSettings.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "React-RCTSettings.release.xcconfig"; sourceTree = "<group>"; }; - 678C4DAE117185D4BB58E20B091B3292 /* AsyncSSLSocket.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = AsyncSSLSocket.cpp; path = folly/io/async/AsyncSSLSocket.cpp; sourceTree = "<group>"; }; - 6791FB3EDD564BD9752FDCCF60CA3EBA /* ThreadedExecutor.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = ThreadedExecutor.cpp; path = folly/executors/ThreadedExecutor.cpp; sourceTree = "<group>"; }; - 67A418ACC80C140583AE0AC6CFFA5D8B /* RCTImageDataDecoder.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTImageDataDecoder.h; path = Libraries/Image/RCTImageDataDecoder.h; sourceTree = "<group>"; }; - 67A7E38CB6EA455F1DB1AC26C42A0EFA /* Padded.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Padded.h; path = folly/Padded.h; sourceTree = "<group>"; }; - 67B0B5C0025E7B120F21C60622927C4C /* RCTReloadCommand.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTReloadCommand.h; sourceTree = "<group>"; }; - 67C0A615EC5CE05FBDFF23BFEF29B103 /* StorageGetters.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = StorageGetters.m; path = ios/StorageGetters.m; sourceTree = "<group>"; }; - 67CAA565D53A463C56D681FD8D161D9F /* BlurEffectWithAmount.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = BlurEffectWithAmount.m; path = ios/BlurEffectWithAmount.m; sourceTree = "<group>"; }; - 67D5F573B6CFD6FF0723A26620D16C35 /* FIRErrors.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRErrors.h; path = FirebaseCore/Sources/Private/FIRErrors.h; sourceTree = "<group>"; }; - 67FC132B2BFBA61E75482AE535AD2BCB /* react-native-cameraroll.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "react-native-cameraroll.release.xcconfig"; sourceTree = "<group>"; }; - 68060AEBDFA64E78B014DA913C5C68F2 /* io_dec.c */ = {isa = PBXFileReference; includeInIndex = 1; name = io_dec.c; path = src/dec/io_dec.c; sourceTree = "<group>"; }; - 6810A6ED3034CA85E3808DA46E080054 /* UMModuleRegistry.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = UMModuleRegistry.h; sourceTree = "<group>"; }; - 6810FE9C38430A012054DCA1F480FCA3 /* BugsnagStacktrace.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = BugsnagStacktrace.m; sourceTree = "<group>"; }; - 68166958B14ADCB402252DD19DBCF907 /* EXHapticsModule.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = EXHapticsModule.m; path = EXHaptics/EXHapticsModule.m; sourceTree = "<group>"; }; - 681A1AB2EE91831DCFF815571703FE6D /* Hardware.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = Hardware.cpp; path = folly/synchronization/detail/Hardware.cpp; sourceTree = "<group>"; }; - 684772E1C17950688E2D02F4D586194B /* idec_dec.c */ = {isa = PBXFileReference; includeInIndex = 1; name = idec_dec.c; path = src/dec/idec_dec.c; sourceTree = "<group>"; }; - 68486419F43F8281CD207605D2E14272 /* RCTConvert+ART.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "RCTConvert+ART.m"; path = "ios/RCTConvert+ART.m"; sourceTree = "<group>"; }; - 685C9C5FD5924F761267DFE1A9612E80 /* ThreadCachedLists.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ThreadCachedLists.h; path = folly/synchronization/detail/ThreadCachedLists.h; sourceTree = "<group>"; }; - 68855EB97EDD027373CF568D23BD5DF6 /* RNConfigReader.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = RNConfigReader.podspec; sourceTree = "<group>"; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; - 6889C8BC615C521EE2FB3D13B4AAA3A0 /* UMFontInterface.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = UMFontInterface.debug.xcconfig; sourceTree = "<group>"; }; - 68B8924F51A5D653C23A9DA652BE953B /* AtomicHashArray-inl.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "AtomicHashArray-inl.h"; path = "folly/AtomicHashArray-inl.h"; sourceTree = "<group>"; }; - 68C9E6D3EB09E903470E81DBF85202E6 /* RCTJavaScriptLoader.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTJavaScriptLoader.mm; sourceTree = "<group>"; }; - 68CBB36E7717339C490EC08F8C06B009 /* FIRCLSCompactUnwind.c */ = {isa = PBXFileReference; includeInIndex = 1; name = FIRCLSCompactUnwind.c; path = Crashlytics/Crashlytics/Unwind/Compact/FIRCLSCompactUnwind.c; sourceTree = "<group>"; }; - 68D9357F6B530E418ECB4089AF8372A5 /* RNFBJSON.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNFBJSON.h; path = ios/RNFBApp/RNFBJSON.h; sourceTree = "<group>"; }; - 68E5B1003B8DCEFF9213D3CA6C3AA20D /* EventBaseManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = EventBaseManager.h; path = folly/io/async/EventBaseManager.h; sourceTree = "<group>"; }; - 68F5A2D99D26FA53F6F483CE78272FCB /* RNCAssetsLibraryRequestHandler.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNCAssetsLibraryRequestHandler.h; path = ios/RNCAssetsLibraryRequestHandler.h; sourceTree = "<group>"; }; - 690044B01CE1973C18744D256E86F459 /* Try.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Try.h; path = folly/Try.h; sourceTree = "<group>"; }; - 6909DC17B79287F476ED5275B90B517D /* RCTBaseTextInputShadowView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTBaseTextInputShadowView.m; sourceTree = "<group>"; }; - 6931DC644FEDF73FEBBE11DF0C21A77D /* openssl_aes_locl.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = openssl_aes_locl.h; path = Core/aes/openssl/openssl_aes_locl.h; sourceTree = "<group>"; }; - 69389DC458827669951C8BAA959A038A /* RCTTypeSafety.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = RCTTypeSafety.podspec; sourceTree = "<group>"; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; - 6940E70BC2B82A3348601D7EB06E6568 /* FBCxxFollyDynamicConvert.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FBCxxFollyDynamicConvert.h; path = iOS/FlipperKit/FBCxxFollyDynamicConvert/FBCxxFollyDynamicConvert.h; sourceTree = "<group>"; }; - 6942351307BC1F54575D9853307EAE0E /* libGoogleDataTransportCCTSupport.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; name = libGoogleDataTransportCCTSupport.a; path = libGoogleDataTransportCCTSupport.a; sourceTree = BUILT_PRODUCTS_DIR; }; - 69461254E0F0D3F1C43476F6235680E3 /* GULSecureCoding.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = GULSecureCoding.h; path = GoogleUtilities/Environment/Private/GULSecureCoding.h; sourceTree = "<group>"; }; - 696B1D52D0D68745C933A07535EEDDCF /* RCTAppState.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTAppState.mm; sourceTree = "<group>"; }; - 696DE55C286BFCE9ABFD2B09F49FBF2C /* NSButton+WebCache.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "NSButton+WebCache.h"; path = "SDWebImage/Core/NSButton+WebCache.h"; sourceTree = "<group>"; }; - 697AD1D3EC759E22877C4FDBCFCF6816 /* RCTSettingsPlugins.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTSettingsPlugins.mm; sourceTree = "<group>"; }; - 69845DF7E945F2C245A84A9EB73674A1 /* F14SetFallback.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = F14SetFallback.h; path = folly/container/detail/F14SetFallback.h; sourceTree = "<group>"; }; - 6991BE63F2E573C66593317FD6BC4642 /* JSIDynamic.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = JSIDynamic.h; path = destroot/include/jsi/JSIDynamic.h; sourceTree = "<group>"; }; - 6994E61B1A90908489F7A027BC5BDC02 /* README.md */ = {isa = PBXFileReference; includeInIndex = 1; path = README.md; sourceTree = "<group>"; }; - 69B07D62B4420F1F79859BE4CEBE6317 /* F14Set-fwd.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "F14Set-fwd.h"; path = "folly/container/F14Set-fwd.h"; sourceTree = "<group>"; }; - 69B4659927463CDABCB118B5DEC7ED20 /* ImageCropPicker.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = ImageCropPicker.m; path = ios/src/ImageCropPicker.m; sourceTree = "<group>"; }; - 69CBDAEC21CED6734106C954B1F4AB29 /* RNReanimated.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = RNReanimated.podspec; sourceTree = "<group>"; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; - 69D34CE26D3CB422F08A8EBDA79343E3 /* TOCropViewController-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "TOCropViewController-prefix.pch"; sourceTree = "<group>"; }; - 69D3B6CCE8A8969EE3C7CAFE9900BFCE /* FIRCLSReportUploader.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRCLSReportUploader.h; path = Crashlytics/Crashlytics/Controllers/FIRCLSReportUploader.h; sourceTree = "<group>"; }; - 69E9EBCDB1ECAB7A20C2934E5487BCD8 /* rescaler_utils.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = rescaler_utils.h; path = src/utils/rescaler_utils.h; sourceTree = "<group>"; }; - 6A011C3AE203A4A6BA8BC9AEE521484F /* openssl_aes.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = openssl_aes.h; path = Core/aes/openssl/openssl_aes.h; sourceTree = "<group>"; }; - 6A07399903C688EED824AF5CD4ED6843 /* SysMembarrier.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SysMembarrier.h; path = folly/portability/SysMembarrier.h; sourceTree = "<group>"; }; - 6A096EC171F2532ED7AA64B58D2D2138 /* SDWebImageWebPCoder-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "SDWebImageWebPCoder-prefix.pch"; sourceTree = "<group>"; }; - 6A0A2760653BF9EBB93B810586FD6825 /* TOCropOverlayView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = TOCropOverlayView.m; path = "Objective-C/TOCropViewController/Views/TOCropOverlayView.m"; sourceTree = "<group>"; }; - 6A110C638AB89D801A638CD5BE920798 /* UMFontProcessorInterface.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = UMFontProcessorInterface.h; path = UMFontInterface/UMFontProcessorInterface.h; sourceTree = "<group>"; }; - 6A11237B02A98AEAEEF0BAEC3866800C /* react-native-jitsi-meet-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "react-native-jitsi-meet-prefix.pch"; sourceTree = "<group>"; }; - 6A190983119A82156CA0B4A385EE69BB /* Core-inl.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "Core-inl.h"; path = "folly/gen/Core-inl.h"; sourceTree = "<group>"; }; - 6A19D8BD47C70E27B2D60A385E031D01 /* React-Core-umbrella.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "React-Core-umbrella.h"; sourceTree = "<group>"; }; - 6A1E9C1B0EFF5B1C55F68933D06863DE /* bufferevent-internal.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "bufferevent-internal.h"; sourceTree = "<group>"; }; - 6A2ABF0D6496094126D0C76FF799A01F /* CoreCachedSharedPtr.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = CoreCachedSharedPtr.h; path = folly/concurrency/CoreCachedSharedPtr.h; sourceTree = "<group>"; }; - 6A312051722868095F0B57B9DF72AD23 /* GDTCORLifecycle.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = GDTCORLifecycle.h; path = GoogleDataTransport/GDTCORLibrary/Public/GDTCORLifecycle.h; sourceTree = "<group>"; }; - 6A3F39F545F907AF8B49B170FBE2599D /* REAPropsNode.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = REAPropsNode.m; sourceTree = "<group>"; }; - 6A41D7E2DBBC26D635269DD18909A0B0 /* PThread.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = PThread.h; path = folly/portability/PThread.h; sourceTree = "<group>"; }; - 6A49593F09314002179F647E3B3F9781 /* RCTPickerManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTPickerManager.h; sourceTree = "<group>"; }; - 6A4B08830BCD18DEC0487928F7DD1183 /* FIRCLSCrashedMarkerFile.c */ = {isa = PBXFileReference; includeInIndex = 1; name = FIRCLSCrashedMarkerFile.c; path = Crashlytics/Crashlytics/Components/FIRCLSCrashedMarkerFile.c; sourceTree = "<group>"; }; - 6A55C04E01ACF9ECB1600AECCFCBD53C /* HazptrUtils.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = HazptrUtils.h; path = folly/synchronization/detail/HazptrUtils.h; sourceTree = "<group>"; }; - 6AB4C38354B40701BDF1A1954B9961DA /* JitsiMeetSDK.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = JitsiMeetSDK.release.xcconfig; sourceTree = "<group>"; }; - 6ABC70D8E3CD1011B90A77C789F11198 /* GoogleUtilities.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = GoogleUtilities.debug.xcconfig; sourceTree = "<group>"; }; - 6AD2999A13828C3996ABC48EF58DB9E0 /* FBLPromise+Async.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "FBLPromise+Async.h"; path = "Sources/FBLPromises/include/FBLPromise+Async.h"; sourceTree = "<group>"; }; - 6ADEB961DEDA65743BCB157D54689070 /* Utility.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Utility.h; path = folly/synchronization/Utility.h; sourceTree = "<group>"; }; - 6AE76AE1AFE4CFEA4DBE648484A0B5B0 /* TurboModule.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; path = TurboModule.cpp; sourceTree = "<group>"; }; - 6AF2C1FE145FB923BB121653B852C92F /* AtomicIntrusiveLinkedList.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = AtomicIntrusiveLinkedList.h; path = folly/AtomicIntrusiveLinkedList.h; sourceTree = "<group>"; }; - 6AFD3DAEA617156BF2B54EC866156EA4 /* listener.c */ = {isa = PBXFileReference; includeInIndex = 1; path = listener.c; sourceTree = "<group>"; }; - 6AFEA695161609385AB7DFD9B211A61C /* ConnectionDemux.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; path = ConnectionDemux.cpp; sourceTree = "<group>"; }; - 6B13A8544A674349A2B8685A22CF4DA5 /* NetOps.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = NetOps.cpp; path = folly/net/NetOps.cpp; sourceTree = "<group>"; }; - 6B283E3E1AF9FE53C336B499AB040D8C /* FBLPromise+Recover.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "FBLPromise+Recover.m"; path = "Sources/FBLPromises/FBLPromise+Recover.m"; sourceTree = "<group>"; }; - 6B459DE3753ACF65B3EE6005C011ABAA /* BugsnagSessionFileStore.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BugsnagSessionFileStore.h; sourceTree = "<group>"; }; - 6B462E204A57616C620FCD610EFD07A8 /* EXAppleAuthenticationButton.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = EXAppleAuthenticationButton.m; path = EXAppleAuthentication/EXAppleAuthenticationButton.m; sourceTree = "<group>"; }; - 6B51ED28BE9F80874D2FED1984B9BD21 /* RNFBAnalytics.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = RNFBAnalytics.debug.xcconfig; sourceTree = "<group>"; }; - 6B596B6A233AC2997CB28970BFAAB97C /* RNFBApp-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "RNFBApp-prefix.pch"; sourceTree = "<group>"; }; - 6B66C21CAE7DE77D9BAA440A406B201D /* FIRCLSDownloadAndSaveSettingsOperation.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRCLSDownloadAndSaveSettingsOperation.h; path = Crashlytics/Crashlytics/Settings/Operations/FIRCLSDownloadAndSaveSettingsOperation.h; sourceTree = "<group>"; }; - 6B6792230C95B3E30825ACD9B116B40D /* ThreadLocalDetail.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ThreadLocalDetail.h; path = folly/detail/ThreadLocalDetail.h; sourceTree = "<group>"; }; - 6B6AF267F4A7C6DE4A649FA84CE33D1D /* FIRLibrary.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRLibrary.h; path = FirebaseCore/Sources/Private/FIRLibrary.h; sourceTree = "<group>"; }; - 6B9475DFB50607546ADDE85EFFA6AB56 /* IPAddressException.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = IPAddressException.h; path = folly/IPAddressException.h; sourceTree = "<group>"; }; - 6BB250331658AE5163B01B81D50B014F /* BSG_KSCrashType.c */ = {isa = PBXFileReference; includeInIndex = 1; path = BSG_KSCrashType.c; sourceTree = "<group>"; }; - 6BC844546A49F881F76425F68A1F936E /* react-native-appearance.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "react-native-appearance.release.xcconfig"; sourceTree = "<group>"; }; - 6BF6B2F608C86C28E7AFB5A77D03196D /* CancellationToken.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = CancellationToken.h; path = folly/CancellationToken.h; sourceTree = "<group>"; }; - 6BFB4F0358B1ACEFB5E3C7512D6AD07A /* Future-pre.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "Future-pre.h"; path = "folly/futures/Future-pre.h"; sourceTree = "<group>"; }; - 6C038D726C9B5961986DC385A924ED87 /* RNCAppearanceProviderManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNCAppearanceProviderManager.m; path = ios/Appearance/RNCAppearanceProviderManager.m; sourceTree = "<group>"; }; - 6C1989CBEB6492178FB599E7162B2097 /* GlobalExecutor.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = GlobalExecutor.cpp; path = folly/executors/GlobalExecutor.cpp; sourceTree = "<group>"; }; - 6C237B5740E47D383CF27A8B511D0898 /* SDWebImageTransition.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SDWebImageTransition.h; path = SDWebImage/Core/SDWebImageTransition.h; sourceTree = "<group>"; }; - 6C42293110E4BFCD51D38CDFD8A3C674 /* RCTTextView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTTextView.h; sourceTree = "<group>"; }; - 6C50F0B068A73AFAA9B5CC8A6EE68016 /* CallInvoker.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = CallInvoker.h; path = ReactCommon/CallInvoker.h; sourceTree = "<group>"; }; - 6C8504725868A39F09E3FFF4D0A5E3DC /* MMKVStorage.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = MMKVStorage.m; path = ios/MMKVStorage.m; sourceTree = "<group>"; }; - 6C8D435674D93881B7111A8FBBEE9D1E /* Overload.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Overload.h; path = folly/Overload.h; sourceTree = "<group>"; }; - 6CADFA2A40FBABA870ABD822D9B135E7 /* RCTNativeAnimatedModule.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTNativeAnimatedModule.mm; sourceTree = "<group>"; }; - 6CBD09F71E3B527302EF7324C4215788 /* EXImageLoader.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = EXImageLoader.podspec; sourceTree = "<group>"; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; + 677D64C28A0333CC04528270F5A797EE /* REACondNode.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = REACondNode.m; sourceTree = "<group>"; }; + 6784B66FCD9A8C5EB48CB4446A7DD63A /* BaselinesTcp.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = BaselinesTcp.cpp; path = rsocket/benchmarks/BaselinesTcp.cpp; sourceTree = "<group>"; }; + 67884F02AFA4A4C5CD877BAE71140A8E /* RNFBJSON.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNFBJSON.h; path = ios/RNFBApp/RNFBJSON.h; sourceTree = "<group>"; }; + 678BC240B1E13FB2EE2A5FD4E1644B5E /* BugsnagPlugin.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BugsnagPlugin.h; sourceTree = "<group>"; }; + 678E3002589DDA14061695B8B139AAE3 /* GroupVarint.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = GroupVarint.h; path = folly/GroupVarint.h; sourceTree = "<group>"; }; + 67B8AA18965A5E0F122C5D0B060DB3C8 /* FormatArg.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FormatArg.h; path = folly/FormatArg.h; sourceTree = "<group>"; }; + 67D05A18B709D6E8245B2D69BBAFFE09 /* RCTModuleData.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTModuleData.mm; sourceTree = "<group>"; }; + 680822EACD88D7EA569C8C0538032DE3 /* EXHaptics.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = EXHaptics.release.xcconfig; sourceTree = "<group>"; }; + 68424E50B4C6668FA714883E0188D11D /* QueuedImmediateExecutor.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = QueuedImmediateExecutor.h; path = folly/executors/QueuedImmediateExecutor.h; sourceTree = "<group>"; }; + 684A13CB17F071F18471277B50CA0442 /* Random.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = Random.cpp; path = folly/Random.cpp; sourceTree = "<group>"; }; + 685187C15867A3C0DE83D77B9F5B3A7A /* BugsnagError.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = BugsnagError.m; sourceTree = "<group>"; }; + 686690D1A2F8AF1F778AD3D51CEB18D4 /* RSocketStateMachine.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RSocketStateMachine.h; path = rsocket/statemachine/RSocketStateMachine.h; sourceTree = "<group>"; }; + 68784CD7045FB69555E6B7B2F888FD4D /* Try.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Try.h; path = folly/Try.h; sourceTree = "<group>"; }; + 6879CFC650A2964667562910F7EC20B9 /* FIRInstallationsAPIService.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRInstallationsAPIService.h; path = FirebaseInstallations/Source/Library/InstallationsAPI/FIRInstallationsAPIService.h; sourceTree = "<group>"; }; + 6881EAECE286262C32623455500E16A0 /* SDWebImageDownloaderOperation.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = SDWebImageDownloaderOperation.m; path = SDWebImage/Core/SDWebImageDownloaderOperation.m; sourceTree = "<group>"; }; + 688E8F5E88D5CC006C64A88621FE40AE /* MicroSpinLock.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = MicroSpinLock.h; path = folly/synchronization/MicroSpinLock.h; sourceTree = "<group>"; }; + 688EF260FB61D08789469748B8495A10 /* SDFileAttributeHelper.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SDFileAttributeHelper.h; path = SDWebImage/Private/SDFileAttributeHelper.h; sourceTree = "<group>"; }; + 689A10F21FBF3994B01988A6F23C5187 /* String.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = String.cpp; path = folly/String.cpp; sourceTree = "<group>"; }; + 68A8731D055A6B39965B25F0FEE565E4 /* StaticSingletonManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = StaticSingletonManager.h; path = folly/detail/StaticSingletonManager.h; sourceTree = "<group>"; }; + 68B1895293A406187C0B0FA72328C9D5 /* README.md */ = {isa = PBXFileReference; includeInIndex = 1; path = README.md; sourceTree = "<group>"; }; + 68B9B14D4B822F0B1C8EFF9014D985E6 /* RsaFormatter.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RsaFormatter.m; sourceTree = "<group>"; }; + 68E993A7ADE7EB87E977855544F925C6 /* UnboundedBlockingQueue.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = UnboundedBlockingQueue.h; path = folly/executors/task_queue/UnboundedBlockingQueue.h; sourceTree = "<group>"; }; + 68ECE53B36A62F07366780830325CAB6 /* TcpConnectionAcceptor.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = TcpConnectionAcceptor.h; path = rsocket/transports/tcp/TcpConnectionAcceptor.h; sourceTree = "<group>"; }; + 68F85BD0F136D7105A87AC820BF1E89B /* evthread.c */ = {isa = PBXFileReference; includeInIndex = 1; path = evthread.c; sourceTree = "<group>"; }; + 68FF9557211B4C4EAE34289ECC8670A9 /* NSError+BSG_SimpleConstructor.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "NSError+BSG_SimpleConstructor.m"; sourceTree = "<group>"; }; + 69266AA2F199517E1CE3701554C2D38D /* AtomicUtil-inl.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "AtomicUtil-inl.h"; path = "folly/synchronization/AtomicUtil-inl.h"; sourceTree = "<group>"; }; + 692BA1B9DA0015D7FF1E056B83E685A2 /* String-inl.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "String-inl.h"; path = "folly/String-inl.h"; sourceTree = "<group>"; }; + 694223576BECB03211E4C17C21BC2E85 /* EXKeepAwake.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = EXKeepAwake.podspec; sourceTree = "<group>"; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; + 6956FA0BEEA18B2C999C9AF16B8C84FC /* BSG_KSCrashSentry_Private.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BSG_KSCrashSentry_Private.h; sourceTree = "<group>"; }; + 69653E54BD2897D978CFE51D112C6D29 /* SKStateUpdateCPPWrapper.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SKStateUpdateCPPWrapper.h; path = iOS/FlipperKit/SKStateUpdateCPPWrapper.h; sourceTree = "<group>"; }; + 6971DD48EFE585356C9248A1AB57ADFD /* FlipperCppWrapperPlugin.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FlipperCppWrapperPlugin.h; path = iOS/FlipperKit/CppBridge/FlipperCppWrapperPlugin.h; sourceTree = "<group>"; }; + 697814417C338E1616C26D60D8843D88 /* BSGOnErrorSentBlock.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BSGOnErrorSentBlock.h; sourceTree = "<group>"; }; + 69C4452A150A7ECF1CA79C8435FEA50D /* PriorityLifoSemMPMCQueue.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = PriorityLifoSemMPMCQueue.h; path = folly/executors/task_queue/PriorityLifoSemMPMCQueue.h; sourceTree = "<group>"; }; + 69C7BF5BD05898AE65B22F4D2FA3E6C7 /* BugsnagApp+Private.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "BugsnagApp+Private.h"; sourceTree = "<group>"; }; + 69ED92C27C57BC7D8C608891AB0C03F7 /* Fingerprint.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = Fingerprint.cpp; path = folly/Fingerprint.cpp; sourceTree = "<group>"; }; + 69F03FFB9ED60B8728AA86A6DA93A514 /* RNFBAnalytics.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = RNFBAnalytics.release.xcconfig; sourceTree = "<group>"; }; + 69F26FB1017C966CA0EB0F5F862E5F59 /* RCTViewManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTViewManager.h; sourceTree = "<group>"; }; + 69F49AD1BC7A034C14092E962BD289F3 /* RCTURLRequestDelegate.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTURLRequestDelegate.h; sourceTree = "<group>"; }; + 69FCFFFE6BA69F3725A2C6AA8E95CFBC /* RCTSurfaceHostingProxyRootView.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTSurfaceHostingProxyRootView.mm; sourceTree = "<group>"; }; + 6A0A65904F30D3384C5D12434ACC4878 /* ReactNativeART.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = ReactNativeART.podspec; sourceTree = "<group>"; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; + 6A0B6A1B74F6240D061C16E7A8517D50 /* KeyCommands-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "KeyCommands-dummy.m"; sourceTree = "<group>"; }; + 6A0EA24F08EFCF70EB4854F1F5F186DF /* RNPanHandler.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RNPanHandler.h; sourceTree = "<group>"; }; + 6A23DD9A9377F492E87C66B5084AB7A7 /* RNBootSplash.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = RNBootSplash.podspec; sourceTree = "<group>"; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; + 6A2600F50C4B6B6AD4EC4CD37CE7960B /* README.md */ = {isa = PBXFileReference; includeInIndex = 1; path = README.md; sourceTree = "<group>"; }; + 6A3BC0554BF40ACE6A8748267F84038F /* Singleton-inl.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "Singleton-inl.h"; path = "folly/Singleton-inl.h"; sourceTree = "<group>"; }; + 6A420E90756EE33A727DDA9B85214A9C /* SDImageCoder.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SDImageCoder.h; path = SDWebImage/Core/SDImageCoder.h; sourceTree = "<group>"; }; + 6A61F8A8DFBE1EE2BB45DAD8BEA5C3B3 /* FrameTransportImpl.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = FrameTransportImpl.cpp; path = rsocket/framing/FrameTransportImpl.cpp; sourceTree = "<group>"; }; + 6A6E7FEF56C865C3E93762F434D9E7D2 /* UMModuleRegistryDelegate.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = UMModuleRegistryDelegate.h; sourceTree = "<group>"; }; + 6A7C489BCCB907CF21B47569110AE29B /* util-internal.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "util-internal.h"; sourceTree = "<group>"; }; + 6A7D0400B2A31BC8268318043C7C83FA /* HazptrUtils.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = HazptrUtils.h; path = folly/synchronization/detail/HazptrUtils.h; sourceTree = "<group>"; }; + 6A88281868F02A88B6C5D6C317FFB031 /* FIRCurrentDateProvider.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRCurrentDateProvider.m; path = FirebaseInstallations/Source/Library/InstallationsIDController/FIRCurrentDateProvider.m; sourceTree = "<group>"; }; + 6A99A29EA0ACDDD52DF9E15CA881F13D /* ObservingInputAccessoryViewTemp.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = ObservingInputAccessoryViewTemp.h; sourceTree = "<group>"; }; + 6A9ACC81048E74B2488B111E9310B84A /* EXLocalAuthentication.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = EXLocalAuthentication.h; path = EXLocalAuthentication/EXLocalAuthentication.h; sourceTree = "<group>"; }; + 6AA394CBC0B7CC55CFF2E907AA8CF676 /* ExceptionWrapper-inl.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "ExceptionWrapper-inl.h"; path = "folly/ExceptionWrapper-inl.h"; sourceTree = "<group>"; }; + 6AA77FDE9E333D8DA875578AFCB911BF /* SDImageCache.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SDImageCache.h; path = SDWebImage/Core/SDImageCache.h; sourceTree = "<group>"; }; + 6AB2DD14EB283F12DE4CEBF4B5A703FA /* RCTTurboModuleManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTTurboModuleManager.h; sourceTree = "<group>"; }; + 6AB49E65BB5ABD127A84D611C1CB62CE /* SKTapListenerImpl.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SKTapListenerImpl.h; path = iOS/Plugins/FlipperKitLayoutPlugin/FlipperKitLayoutPlugin/SKTapListenerImpl.h; sourceTree = "<group>"; }; + 6AC02FB80F0619A73BCDB49DE8DA5C68 /* SDWebImagePrefetcher.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = SDWebImagePrefetcher.m; path = SDWebImage/Core/SDWebImagePrefetcher.m; sourceTree = "<group>"; }; + 6AC34E7F3A5A712ED59C6A7096763FE5 /* json_patch.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = json_patch.cpp; path = folly/json_patch.cpp; sourceTree = "<group>"; }; + 6ACDE8FBC2D45B04D9E83B7E04E66E66 /* EnableSharedFromThis.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = EnableSharedFromThis.h; path = folly/memory/EnableSharedFromThis.h; sourceTree = "<group>"; }; + 6AD39D6B4FFC40F5691769E9063987C5 /* RecordIO.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = RecordIO.cpp; path = folly/io/RecordIO.cpp; sourceTree = "<group>"; }; + 6ADB9F02688559DC6ADDFCE27DE61F81 /* BugsnagStackframe+Private.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "BugsnagStackframe+Private.h"; sourceTree = "<group>"; }; + 6AE15822D09BA9A976CC03122204B366 /* RCTImageURLLoaderWithAttribution.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTImageURLLoaderWithAttribution.h; path = Libraries/Image/RCTImageURLLoaderWithAttribution.h; sourceTree = "<group>"; }; + 6AE6A8AC394688CEBF50D5D7E59F9E0C /* RCTTypeSafety.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = RCTTypeSafety.release.xcconfig; sourceTree = "<group>"; }; + 6B044D147F3944E7CEF9240526EEF54B /* Async.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Async.h; path = folly/executors/Async.h; sourceTree = "<group>"; }; + 6B0676CBD8A71AE5BD3ECE33CD28BCF2 /* RNGestureHandler.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNGestureHandler.m; path = ios/RNGestureHandler.m; sourceTree = "<group>"; }; + 6B210EFE9775B601C94CD70CDD1C8F12 /* Instructions.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Instructions.h; path = folly/experimental/Instructions.h; sourceTree = "<group>"; }; + 6B255EADE5F6CF8584636E95B0D26B66 /* Range.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Range.h; path = folly/Range.h; sourceTree = "<group>"; }; + 6B3100C7D7414083E5FDF2D55534EB6A /* React-RCTImage.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "React-RCTImage.debug.xcconfig"; sourceTree = "<group>"; }; + 6B31A0C80E4BD6208A4480A163DC2996 /* REACallFuncNode.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = REACallFuncNode.m; sourceTree = "<group>"; }; + 6B3BE86881CEE4BF2D33147B66892FCA /* RCTJSStackFrame.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTJSStackFrame.m; sourceTree = "<group>"; }; + 6B42EC716CE6BAE68D1852206CF3E6C8 /* BSG_KSSystemInfo.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BSG_KSSystemInfo.h; sourceTree = "<group>"; }; + 6B522FC5A103FFFA4A4CAD36C0BD8360 /* CString.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = CString.h; path = folly/lang/CString.h; sourceTree = "<group>"; }; + 6B56D8B256A08D6F3440335ABEED8ECF /* ThreadCachedArena.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = ThreadCachedArena.cpp; path = folly/memory/ThreadCachedArena.cpp; sourceTree = "<group>"; }; + 6B6E6F0A8CCB5C16B30A179313728A4B /* Optional.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Optional.h; path = folly/Optional.h; sourceTree = "<group>"; }; + 6B899EB9E8E548617556D6BAFAC0E4A1 /* RCTBorderDrawing.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTBorderDrawing.m; sourceTree = "<group>"; }; + 6B89B5A3359D59632830F00672C3BE33 /* EXAppleAuthentication.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = EXAppleAuthentication.h; path = EXAppleAuthentication/EXAppleAuthentication.h; sourceTree = "<group>"; }; + 6B91F87BB4D4FAC6EEB305BE78E8BBB1 /* RCTImageView.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTImageView.mm; sourceTree = "<group>"; }; + 6B9D52116EF29753E11DFFCCCD9A8FD6 /* EventBaseManager.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = EventBaseManager.cpp; path = folly/io/async/EventBaseManager.cpp; sourceTree = "<group>"; }; + 6BB0D3164DF6D26FBC19375EEC896078 /* GULNetworkConstants.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = GULNetworkConstants.m; path = GoogleUtilities/Network/GULNetworkConstants.m; sourceTree = "<group>"; }; + 6BC67F1764F31A03B7BB1DE84A5605F3 /* ClockGettimeWrappers.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ClockGettimeWrappers.h; path = folly/ClockGettimeWrappers.h; sourceTree = "<group>"; }; + 6BCBAE427C2C90AE929A34EABEBBACE3 /* TurboModuleBinding.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = TurboModuleBinding.h; sourceTree = "<group>"; }; + 6BDB83DE4FF6D60B4A33255771EDF9BA /* UMAppLoader.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = UMAppLoader.release.xcconfig; sourceTree = "<group>"; }; + 6BE75BE8EC7D5125E605980AD10C4FC5 /* jsi.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = jsi.h; path = destroot/include/jsi/jsi.h; sourceTree = "<group>"; }; + 6C074DF871C0E31CBD4C7796492FC54B /* StorageSetters.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = StorageSetters.m; path = ios/StorageSetters.m; sourceTree = "<group>"; }; + 6C155D7FC749B6F3832B8DDCB1790C64 /* RCTNetworking.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTNetworking.h; path = Libraries/Network/RCTNetworking.h; sourceTree = "<group>"; }; + 6C35E3B8FD85E101ECDD7EEA1F9119D9 /* Executor.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = Executor.cpp; path = folly/Executor.cpp; sourceTree = "<group>"; }; + 6C3AF7CE91E8F8CE88130AA34B1745CE /* FIROptionsInternal.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIROptionsInternal.h; path = FirebaseCore/Sources/Private/FIROptionsInternal.h; sourceTree = "<group>"; }; + 6C3B86F569EE9242FD5D86D3B6ADC20D /* ThreadedRepeatingFunctionRunner.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ThreadedRepeatingFunctionRunner.h; path = folly/experimental/ThreadedRepeatingFunctionRunner.h; sourceTree = "<group>"; }; + 6C441F046FA88319E6A693637155D6B4 /* SocketAddress.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = SocketAddress.cpp; path = folly/SocketAddress.cpp; sourceTree = "<group>"; }; + 6C525B2DF385293AEFA725B02555587B /* SDImageTransformer.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SDImageTransformer.h; path = SDWebImage/Core/SDImageTransformer.h; sourceTree = "<group>"; }; + 6C686D2F46D547B1A7F7B2C10D29E315 /* Sockets.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Sockets.h; path = folly/portability/Sockets.h; sourceTree = "<group>"; }; + 6C695160C23EDB5DF51922A7244720D0 /* SDAnimatedImageView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = SDAnimatedImageView.m; path = SDWebImage/Core/SDAnimatedImageView.m; sourceTree = "<group>"; }; + 6C6C02FB8661B432E4557DEB3900F047 /* CPortability.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = CPortability.h; path = folly/CPortability.h; sourceTree = "<group>"; }; + 6C7ECCF5EAD09274C732393613891D4C /* BSG_KSMachHeaders.c */ = {isa = PBXFileReference; includeInIndex = 1; path = BSG_KSMachHeaders.c; sourceTree = "<group>"; }; + 6C814091ED8C9A65EF28A32FBE9EC883 /* GoogleAppMeasurement.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = GoogleAppMeasurement.release.xcconfig; sourceTree = "<group>"; }; + 6C8BCA9A00B4A3BC15885EB9772FD3D2 /* FIRComponentType.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRComponentType.h; path = FirebaseCore/Sources/Private/FIRComponentType.h; sourceTree = "<group>"; }; + 6C97846A245CFA8A9D1A9066BA1C8D39 /* Tearable.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Tearable.h; path = folly/synchronization/Tearable.h; sourceTree = "<group>"; }; + 6C9FB5380FB1EDDBCDB7457FBAF3B916 /* HazptrThrLocal.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = HazptrThrLocal.h; path = folly/synchronization/HazptrThrLocal.h; sourceTree = "<group>"; }; + 6CA22FEDEDE239580881B34C6C38B67C /* FBLPromise.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FBLPromise.m; path = Sources/FBLPromises/FBLPromise.m; sourceTree = "<group>"; }; + 6CA2FCDDF6A9BF7347C1402992259552 /* YGLayout.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = YGLayout.cpp; path = yoga/YGLayout.cpp; sourceTree = "<group>"; }; + 6CBCE3F9D8036069A5A66AFF36D7D970 /* msa_macro.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = msa_macro.h; path = src/dsp/msa_macro.h; sourceTree = "<group>"; }; 6CBEFE4F9E22AFDC6347A739BB35FF8C /* libCocoaAsyncSocket.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; name = libCocoaAsyncSocket.a; path = libCocoaAsyncSocket.a; sourceTree = BUILT_PRODUCTS_DIR; }; - 6CCC914F4F5E3F78B40CCDAC0BDEB908 /* RCTBlobCollector.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTBlobCollector.h; sourceTree = "<group>"; }; - 6CD0239177EF8EE0D59AB9A4F5F3C1F4 /* RCTUIImageViewAnimated.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTUIImageViewAnimated.h; path = Libraries/Image/RCTUIImageViewAnimated.h; sourceTree = "<group>"; }; - 6CD2507059F1C896B0B80005FEC8F1CC /* YGFloatOptional.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = YGFloatOptional.h; path = yoga/YGFloatOptional.h; sourceTree = "<group>"; }; - 6CF53837C68C7B590404D59EF0192BFC /* mux.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = mux.h; path = src/webp/mux.h; sourceTree = "<group>"; }; - 6CF745EDA739D9C3E1176587CBC2416F /* LICENSE */ = {isa = PBXFileReference; includeInIndex = 1; path = LICENSE; sourceTree = "<group>"; }; - 6CFDA273373426936C27E061A9BA16A2 /* dynamic.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = dynamic.cpp; path = folly/dynamic.cpp; sourceTree = "<group>"; }; - 6CFF6339FBEA769B1F8F933E9BB6D49B /* RCTConvertHelpers.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTConvertHelpers.h; sourceTree = "<group>"; }; - 6D035BF61D6DF1BDDA08411148CE3E73 /* FIRCLSURLBuilder.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRCLSURLBuilder.h; path = Crashlytics/Shared/FIRCLSNetworking/FIRCLSURLBuilder.h; sourceTree = "<group>"; }; - 6D04BB5E40BA5D8B5192C6EEBBD84FE1 /* RCTDecayAnimation.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTDecayAnimation.m; sourceTree = "<group>"; }; - 6D15A2BDD2DD1DDE07F55DA3ED1F6D2A /* JSCExecutorFactory.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = JSCExecutorFactory.mm; sourceTree = "<group>"; }; - 6D32352F57E8F9AA7298DD4C5C8B23BD /* F14Policy.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = F14Policy.h; path = folly/container/detail/F14Policy.h; sourceTree = "<group>"; }; - 6D394A72631D12B745FC13EBB49EBD4A /* alpha_enc.c */ = {isa = PBXFileReference; includeInIndex = 1; name = alpha_enc.c; path = src/enc/alpha_enc.c; sourceTree = "<group>"; }; - 6D4488B3A6E4CE9B4FDFD87803624CEF /* RCTClipboard.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTClipboard.mm; sourceTree = "<group>"; }; - 6D491A5BE778C93D4886A5C866040891 /* FIRConfiguration.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRConfiguration.m; path = FirebaseCore/Sources/FIRConfiguration.m; sourceTree = "<group>"; }; + 6CC22BA0E6A034B3AD81DF40A241DC49 /* FlipperKitNetworkPlugin.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FlipperKitNetworkPlugin.h; path = iOS/Plugins/FlipperKitNetworkPlugin/FlipperKitNetworkPlugin/FlipperKitNetworkPlugin.h; sourceTree = "<group>"; }; + 6CCAC95E3D8B12648722D6194ABCEB3B /* PTUSBHub.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = PTUSBHub.m; path = peertalk/PTUSBHub.m; sourceTree = "<group>"; }; + 6CD1052889D91B98A0D07B276141723B /* FBVector.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FBVector.h; path = folly/FBVector.h; sourceTree = "<group>"; }; + 6CF964D73E0585457C47F935158DE979 /* React-RCTBlob-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "React-RCTBlob-dummy.m"; sourceTree = "<group>"; }; + 6CFE14C06A219D454E82E078C9CA35D8 /* Overload.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Overload.h; path = folly/Overload.h; sourceTree = "<group>"; }; + 6CFF0063DEB6B3513822A10A5D2701FB /* Barrier.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Barrier.h; path = folly/futures/Barrier.h; sourceTree = "<group>"; }; + 6D06E3BDF0E602210146086EAFB9FD00 /* BugsnagBreadcrumb.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BugsnagBreadcrumb.h; sourceTree = "<group>"; }; + 6D162746E137EFF9841458EA39CF5AAE /* BugsnagError+Private.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "BugsnagError+Private.h"; sourceTree = "<group>"; }; + 6D2E0D8BFA79DDABB3D14F4747B3AE74 /* SKEnvironmentVariables.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = SKEnvironmentVariables.m; path = iOS/FlipperKit/SKEnvironmentVariables.m; sourceTree = "<group>"; }; + 6D39637C2F6FBE9A49E684837499B6F0 /* BSG_KSFileUtils.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BSG_KSFileUtils.h; sourceTree = "<group>"; }; 6D65F1A831B333D8CF7EB66829B4339A /* libreact-native-blur.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; name = "libreact-native-blur.a"; path = "libreact-native-blur.a"; sourceTree = BUILT_PRODUCTS_DIR; }; - 6D67E32F1621EB8851E0CC5B2C35BB15 /* histogram_enc.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = histogram_enc.h; path = src/enc/histogram_enc.h; sourceTree = "<group>"; }; - 6D716AC570A14D99A2182905FE68EC50 /* EventBaseThread.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = EventBaseThread.cpp; path = folly/io/async/EventBaseThread.cpp; sourceTree = "<group>"; }; - 6D72FDDBC60397E485A899802B6F59BA /* F14MapFallback.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = F14MapFallback.h; path = folly/container/detail/F14MapFallback.h; sourceTree = "<group>"; }; - 6D744C16B2F99CC6C399F2964E2BED17 /* UIImage+GIF.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "UIImage+GIF.m"; path = "SDWebImage/Core/UIImage+GIF.m"; sourceTree = "<group>"; }; - 6D7916C3FADB90D716EC5DFF41BB3D99 /* RCTDatePicker.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTDatePicker.h; sourceTree = "<group>"; }; - 6D873A659FB8A00376E60A16382DB886 /* ScheduledExecutor.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ScheduledExecutor.h; path = folly/executors/ScheduledExecutor.h; sourceTree = "<group>"; }; - 6D8BCB33436BE48FAD4C6E8DD4A9C0C6 /* FutureDAG.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FutureDAG.h; path = folly/experimental/FutureDAG.h; sourceTree = "<group>"; }; - 6D96E809EA4CE71B2F3930CB24DB6293 /* RNCConnectionState.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNCConnectionState.m; path = ios/RNCConnectionState.m; sourceTree = "<group>"; }; - 6DADA8D716CE4503A3E311B00DC0BB26 /* DebuggerAPI.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = DebuggerAPI.h; path = destroot/include/hermes/DebuggerAPI.h; sourceTree = "<group>"; }; - 6DBC133BD573DB96A2EFAC4EFE1318BC /* rn-extensions-share-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "rn-extensions-share-prefix.pch"; sourceTree = "<group>"; }; - 6DCC0C7F66B675D989796CA6C01D6D6D /* RNDeviceInfo.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = RNDeviceInfo.release.xcconfig; sourceTree = "<group>"; }; - 6DD121FD76E97C58E23365FDFC628B14 /* EXImageLoader-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "EXImageLoader-dummy.m"; sourceTree = "<group>"; }; - 6DE2E381F8E1CE4FA0EC39A780E182F4 /* Builtins.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = Builtins.cpp; path = folly/portability/Builtins.cpp; sourceTree = "<group>"; }; - 6DE49ECD736F3A64C331F6A1E4F30C4E /* READebugNode.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = READebugNode.h; sourceTree = "<group>"; }; - 6DF210C698286DA9A48D500C07B827B0 /* FramedReader.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = FramedReader.cpp; path = rsocket/framing/FramedReader.cpp; sourceTree = "<group>"; }; - 6DF61E1E4E09C55C34D232E606DAEC35 /* RNImageCropPicker.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = RNImageCropPicker.debug.xcconfig; sourceTree = "<group>"; }; - 6E00A3B55B15D71B2CD3B55336524196 /* RCTMultipartStreamReader.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTMultipartStreamReader.h; sourceTree = "<group>"; }; - 6E0611FB660329A962544FF42EC9A319 /* ReactNativeShareExtension.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = ReactNativeShareExtension.m; path = ios/ReactNativeShareExtension.m; sourceTree = "<group>"; }; - 6E0689640886583CF0A244F816A2FD5B /* EXLocalAuthentication-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "EXLocalAuthentication-dummy.m"; sourceTree = "<group>"; }; - 6E06CF35D5BF7A55466AB24B113BEC05 /* strlcpy.c */ = {isa = PBXFileReference; includeInIndex = 1; path = strlcpy.c; sourceTree = "<group>"; }; - 6E0CDCC5D6ED7F4BA5BD967EE9279F4B /* UMUtilitiesInterface.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = UMUtilitiesInterface.h; sourceTree = "<group>"; }; - 6E137C9A8D2E3E9A5EF10B8265E9656A /* FIRExceptionModel.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRExceptionModel.m; path = Crashlytics/Crashlytics/FIRExceptionModel.m; sourceTree = "<group>"; }; - 6E14464624A16C87A3E048A7BD5D4F68 /* BugsnagConfigSerializer.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BugsnagConfigSerializer.h; sourceTree = "<group>"; }; - 6E1E0315F092C2654B08337CEF9B874D /* MemoryFile_Win32.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = MemoryFile_Win32.cpp; path = Core/MemoryFile_Win32.cpp; sourceTree = "<group>"; }; - 6E28EDF634FF6ECE4803956901A890EB /* analysis_enc.c */ = {isa = PBXFileReference; includeInIndex = 1; name = analysis_enc.c; path = src/enc/analysis_enc.c; sourceTree = "<group>"; }; - 6E29334AD715950C356E291A618D2281 /* BugsnagMetadataStore.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BugsnagMetadataStore.h; sourceTree = "<group>"; }; - 6E320D828713423902FF9737F8D8B1DF /* RCTImagePlugins.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTImagePlugins.h; path = Libraries/Image/RCTImagePlugins.h; sourceTree = "<group>"; }; - 6E32947F097148F59B3F1E82CA8CFAF1 /* evrpc-internal.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "evrpc-internal.h"; sourceTree = "<group>"; }; - 6E4512E71DEA6EB132DB9A11EE925080 /* React-RCTAnimation.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "React-RCTAnimation.release.xcconfig"; sourceTree = "<group>"; }; - 6E567830E7845629D2196E6C4E1652B9 /* RCTPbkdf2.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RCTPbkdf2.m; path = ios/RCTCrypto/RCTPbkdf2.m; sourceTree = "<group>"; }; - 6E862EF5EF45C3A65DC568F4D8060AAC /* FIRCLSDataParsing.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRCLSDataParsing.h; path = Crashlytics/Crashlytics/Unwind/Dwarf/FIRCLSDataParsing.h; sourceTree = "<group>"; }; - 6E88B1A9026F546D449585CF54CEB725 /* Bits.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Bits.h; path = folly/lang/Bits.h; sourceTree = "<group>"; }; - 6E981642F410BB1CAC1402953B1C9C35 /* GULNetworkURLSession.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = GULNetworkURLSession.m; path = GoogleUtilities/Network/GULNetworkURLSession.m; sourceTree = "<group>"; }; - 6E994E6FB4BBB5D87BDF1A7DE791E5E6 /* ParallelMap.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ParallelMap.h; path = folly/gen/ParallelMap.h; sourceTree = "<group>"; }; - 6EA1D92786FCD194CDB476F296BED4AD /* FIRCLSUnwind.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRCLSUnwind.h; path = Crashlytics/Crashlytics/Unwind/FIRCLSUnwind.h; sourceTree = "<group>"; }; - 6EB546ADA24193FABD659F8D647F5A17 /* SanitizeLeak.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SanitizeLeak.h; path = folly/memory/SanitizeLeak.h; sourceTree = "<group>"; }; - 6EC09334D862F611D8B61F433B6C8440 /* RNConfigReader.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNConfigReader.m; path = ios/RNConfigReader.m; sourceTree = "<group>"; }; - 6EC653EE003D3BA9DA51B6784B49E387 /* Aes.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = Aes.m; sourceTree = "<group>"; }; - 6ED44C6E2CAA76255A8A8349F38A9EC4 /* RCTAdditionAnimatedNode.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTAdditionAnimatedNode.m; sourceTree = "<group>"; }; - 6ED4D25011BAD0ECDF0976D92211BF3F /* RCTActionSheetManager.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTActionSheetManager.mm; sourceTree = "<group>"; }; - 6EDA96412237D84713DD44019D1495A1 /* FIRCLSURLSessionTask_PrivateMethods.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRCLSURLSessionTask_PrivateMethods.h; path = Crashlytics/Crashlytics/FIRCLSURLSession/Tasks/FIRCLSURLSessionTask_PrivateMethods.h; sourceTree = "<group>"; }; - 6F0154D8ACB77B410E5B940FAA48A9FE /* RNVectorIconsManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNVectorIconsManager.m; path = RNVectorIconsManager/RNVectorIconsManager.m; sourceTree = "<group>"; }; - 6F0271863C4BA41E4574C7D6BB595537 /* FIRApp.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRApp.h; path = FirebaseCore/Sources/Public/FIRApp.h; sourceTree = "<group>"; }; - 6F1A6CB5AD58A8B648B42C549671774B /* RCTFileRequestHandler.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTFileRequestHandler.mm; sourceTree = "<group>"; }; - 6F202CC58071BB662983E064EB4D8F0C /* React-RCTActionSheet.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "React-RCTActionSheet.debug.xcconfig"; sourceTree = "<group>"; }; - 6F25DD195E34542EF84D539694EAD5F0 /* FIRCLSUserDefaults.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRCLSUserDefaults.h; path = Crashlytics/Crashlytics/FIRCLSUserDefaults/FIRCLSUserDefaults.h; sourceTree = "<group>"; }; - 6F36E13AC167DFE778E66EEF82E1F9E6 /* TOCropView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = TOCropView.m; path = "Objective-C/TOCropViewController/Views/TOCropView.m"; sourceTree = "<group>"; }; - 6F662D0D4F3FA959BF89BA93821F6FAB /* RCTScrollContentView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTScrollContentView.m; sourceTree = "<group>"; }; - 6F7DD3947C6404858F17C6C80EC228E4 /* RCTSurfaceHostingProxyRootView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTSurfaceHostingProxyRootView.h; sourceTree = "<group>"; }; - 6F815F8790C9087086FE9DE411255EBF /* RCTWebSocketExecutor.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTWebSocketExecutor.mm; sourceTree = "<group>"; }; - 6F94301C0561DD443C43F2F07AE4968F /* ARTLinearGradient.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = ARTLinearGradient.m; sourceTree = "<group>"; }; - 6FA0AD66C02F21425433DDB9366CD22F /* RNPushKit.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNPushKit.h; path = RNNotifications/RNPushKit.h; sourceTree = "<group>"; }; - 6FBB3076E8F8AAE9C08B725DFAB0C8D3 /* RWSpinLock.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RWSpinLock.h; path = folly/RWSpinLock.h; sourceTree = "<group>"; }; - 6FC51C20FB20896CA9591C38F77525E7 /* WaitOptions.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = WaitOptions.cpp; path = folly/synchronization/WaitOptions.cpp; sourceTree = "<group>"; }; - 6FC75FAFE2C0BD318AD7EAE187B8AE0F /* FontAwesome5_Regular.ttf */ = {isa = PBXFileReference; includeInIndex = 1; name = FontAwesome5_Regular.ttf; path = Fonts/FontAwesome5_Regular.ttf; sourceTree = "<group>"; }; - 6FE8D5121E05847BA6EB20C418665D7B /* log_severity.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = log_severity.h; path = src/glog/log_severity.h; sourceTree = "<group>"; }; - 6FED52E48A4F7480A2C6FF36C02DB30A /* Utility.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Utility.h; path = folly/Utility.h; sourceTree = "<group>"; }; - 6FFAD7ACA0EE339C6FAE4005EA9B3FC7 /* RCTUtils.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTUtils.h; sourceTree = "<group>"; }; + 6D7CA1E307063F03E9CAEE3145E5FA9F /* FIRCLSConstants.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRCLSConstants.m; path = Crashlytics/Shared/FIRCLSConstants.m; sourceTree = "<group>"; }; + 6D807C14AE957A1545813F8580F2C0A5 /* DrivableExecutor.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = DrivableExecutor.h; path = folly/executors/DrivableExecutor.h; sourceTree = "<group>"; }; + 6D9429D70EC70845FFAF70C32303F3B4 /* FIRCLSFABHost.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRCLSFABHost.h; path = Crashlytics/Shared/FIRCLSFABHost.h; sourceTree = "<group>"; }; + 6D9EBB18615ABD47C0EAEE3D802C5D74 /* SDImageCachesManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = SDImageCachesManager.m; path = SDWebImage/Core/SDImageCachesManager.m; sourceTree = "<group>"; }; + 6DBFBD43A91B1A8FA1E5BCD2E75B1630 /* FutureExecutor.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FutureExecutor.h; path = folly/executors/FutureExecutor.h; sourceTree = "<group>"; }; + 6DD39F3B80F2E865CD453EF8134313CF /* RCTSafeAreaView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTSafeAreaView.h; sourceTree = "<group>"; }; + 6DE3BC602794B7B014C4F2205BF94D7B /* FIRCLSNetworkOperation.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRCLSNetworkOperation.m; path = Crashlytics/Crashlytics/Settings/Operations/FIRCLSNetworkOperation.m; sourceTree = "<group>"; }; + 6E210C1E6DB22B962D984FAB153D25BC /* FBLPromise+Catch.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "FBLPromise+Catch.m"; path = "Sources/FBLPromises/FBLPromise+Catch.m"; sourceTree = "<group>"; }; + 6E28455D8624804F2480BA8FC54717A4 /* RCTUIManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTUIManager.h; sourceTree = "<group>"; }; + 6E3F8039F3E6487E7B3E9B47C2103F5A /* RNBackgroundTimer.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNBackgroundTimer.m; path = ios/RNBackgroundTimer.m; sourceTree = "<group>"; }; + 6E4AD2BF04B829C4C16497F35A537B55 /* Optional.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Optional.h; path = folly/Optional.h; sourceTree = "<group>"; }; + 6E4E4C4C47575EB1A381962922AFF296 /* RNCAssetsLibraryRequestHandler.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNCAssetsLibraryRequestHandler.m; path = ios/RNCAssetsLibraryRequestHandler.m; sourceTree = "<group>"; }; + 6E51AA750CB397ABC6E205F52BBDCA26 /* FIRComponent.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRComponent.h; path = FirebaseCore/Sources/Private/FIRComponent.h; sourceTree = "<group>"; }; + 6E5C3742D50D6011C12F48A3B842E585 /* OpenSSLLockTypes.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = OpenSSLLockTypes.h; path = folly/ssl/OpenSSLLockTypes.h; sourceTree = "<group>"; }; + 6E7A6AC098EA7FC4D802E3FD91654402 /* Malloc.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Malloc.h; path = folly/memory/Malloc.h; sourceTree = "<group>"; }; + 6E7F86B7B11F6AF6800F6301E582D5B7 /* String.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = String.h; path = folly/String.h; sourceTree = "<group>"; }; + 6EA3FEF89667AC31C1E43DF8B780C049 /* RCTBridge+Private.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "RCTBridge+Private.h"; sourceTree = "<group>"; }; + 6EAEF8CD2447B107397ED36052625E6F /* Singleton.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = Singleton.cpp; path = folly/Singleton.cpp; sourceTree = "<group>"; }; + 6EE0C5A09F4412AFA85384470C4E09CE /* RCTRedBoxExtraDataViewController.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTRedBoxExtraDataViewController.m; sourceTree = "<group>"; }; + 6F0151729363AA82CD2A1FD179D23A78 /* RCTSRWebSocket.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTSRWebSocket.h; path = Libraries/WebSocket/RCTSRWebSocket.h; sourceTree = "<group>"; }; + 6F0891D6008317C7713937C7C563AF9F /* StaticSingletonManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = StaticSingletonManager.h; path = folly/detail/StaticSingletonManager.h; sourceTree = "<group>"; }; + 6F384B25208EEC617E2CF371DC262F37 /* JSITracing.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = JSITracing.h; sourceTree = "<group>"; }; + 6F529978CE6C0E0515FDBA2200333180 /* DistributedMutex.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = DistributedMutex.cpp; path = folly/synchronization/DistributedMutex.cpp; sourceTree = "<group>"; }; + 6F595EBAE6B22DD20D6125CF27FD7286 /* es.lproj */ = {isa = PBXFileReference; includeInIndex = 1; name = es.lproj; path = ios/QBImagePicker/QBImagePicker/es.lproj; sourceTree = "<group>"; }; + 6F68D16045CC60438ED6D125C1CA2A95 /* rn-fetch-blob.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "rn-fetch-blob.release.xcconfig"; sourceTree = "<group>"; }; + 6F6FC2381953D8CC4C8047736CEDB43F /* FIROptions.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIROptions.m; path = FirebaseCore/Sources/FIROptions.m; sourceTree = "<group>"; }; + 6F726843B1A0A9E0B5C7253E254BC7C5 /* README.md */ = {isa = PBXFileReference; includeInIndex = 1; path = README.md; sourceTree = "<group>"; }; + 6F727CFD89C89B8EE07DC23CD07CFA82 /* RCTImagePlugins.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTImagePlugins.h; path = Libraries/Image/RCTImagePlugins.h; sourceTree = "<group>"; }; + 6F826C12232902831C6A8A5B51932167 /* RNFetchBlobReqBuilder.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNFetchBlobReqBuilder.h; path = ios/RNFetchBlobReqBuilder.h; sourceTree = "<group>"; }; + 6F857D7A9F2EEFD5B9868211790701B1 /* Compression.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = Compression.m; path = ios/src/Compression.m; sourceTree = "<group>"; }; + 6FA58CBA536D9D7DE17B1A12D0597543 /* RCTAppearance.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTAppearance.mm; sourceTree = "<group>"; }; + 6FA90B0FB430223A9FD2E50C7AD3D801 /* GDTCCTCompressionHelper.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = GDTCCTCompressionHelper.m; path = GoogleDataTransport/GDTCCTLibrary/GDTCCTCompressionHelper.m; sourceTree = "<group>"; }; + 6FAADBBA1CE616A466AEC1F955A800A9 /* RCTCustomKeyboardViewControllerTemp.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTCustomKeyboardViewControllerTemp.m; sourceTree = "<group>"; }; + 6FB19E0C817B782B82874230D900D548 /* Lazy.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Lazy.h; path = folly/Lazy.h; sourceTree = "<group>"; }; + 6FD502FBDE9ADE2537AD23B5F0C89814 /* FirebaseAnalytics.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = FirebaseAnalytics.release.xcconfig; sourceTree = "<group>"; }; + 6FE956191D63ABA57E17E1513E9D1875 /* Firebase.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = Firebase.release.xcconfig; sourceTree = "<group>"; }; + 6FF6D7458E8C1715C6FA08DDF92F6FE4 /* RCTSlider.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTSlider.m; sourceTree = "<group>"; }; 6FFB7B2992BB53405E6B771A5BA1E97D /* libDoubleConversion.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; name = libDoubleConversion.a; path = libDoubleConversion.a; sourceTree = BUILT_PRODUCTS_DIR; }; - 7016FEDF15804B202D40011AFA46C7A1 /* FIRConfigurationInternal.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRConfigurationInternal.h; path = FirebaseCore/Sources/FIRConfigurationInternal.h; sourceTree = "<group>"; }; - 701944664DEF41CE893374775990E72D /* PTPrivate.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = PTPrivate.h; path = peertalk/PTPrivate.h; sourceTree = "<group>"; }; - 701E5530C6B17E2445815FABEF3968E4 /* Semaphore.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Semaphore.h; path = folly/portability/Semaphore.h; sourceTree = "<group>"; }; - 7036E8E663E35BB5DB6C32198B066FE6 /* SwappableEventBase.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SwappableEventBase.h; path = rsocket/internal/SwappableEventBase.h; sourceTree = "<group>"; }; - 7039C0FCA8DD90A20EE87615ECC66BC8 /* RNCAssetsLibraryRequestHandler.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNCAssetsLibraryRequestHandler.m; path = ios/RNCAssetsLibraryRequestHandler.m; sourceTree = "<group>"; }; - 70675BE4961BC87599BFAD42BBF644C4 /* Sleeper.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Sleeper.h; path = folly/synchronization/detail/Sleeper.h; sourceTree = "<group>"; }; - 707628E00EAB111824A6EB05D32A9831 /* Request.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Request.h; path = folly/io/async/Request.h; sourceTree = "<group>"; }; - 7085CC1C2C2A9C58F7099F2ADC7F4AE6 /* RNCPickerManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNCPickerManager.m; path = ios/RNCPickerManager.m; sourceTree = "<group>"; }; - 70867544D01800EA6114ADA436856864 /* RCTWebSocketExecutor.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTWebSocketExecutor.h; path = React/CoreModules/RCTWebSocketExecutor.h; sourceTree = "<group>"; }; - 708F4376C358D7131052A82B9135C4A6 /* RCTAccessibilityManager.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTAccessibilityManager.mm; sourceTree = "<group>"; }; - 70A8EB919807F827463064A126AD186A /* EXFileSystemLocalFileHandler.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = EXFileSystemLocalFileHandler.m; path = EXFileSystem/EXFileSystemLocalFileHandler.m; sourceTree = "<group>"; }; - 70A8F6F5498FFF2183DE83495A2A6750 /* RCTValueAnimatedNode.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTValueAnimatedNode.m; sourceTree = "<group>"; }; - 70BFA5E481DB2ED2EDD2DC75CC99DB74 /* BugsnagApiClient.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BugsnagApiClient.h; sourceTree = "<group>"; }; - 70C686F8D4EC9EA5ED579895B57B2716 /* RNGestureHandlerEvents.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNGestureHandlerEvents.m; path = ios/RNGestureHandlerEvents.m; sourceTree = "<group>"; }; - 70D108EC355DF85A27E3C4DBC75DF773 /* RCTAdditionAnimatedNode.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTAdditionAnimatedNode.h; sourceTree = "<group>"; }; - 70DFB992E5E5E1CB0CC34C34C8BECFB8 /* api.md */ = {isa = PBXFileReference; includeInIndex = 1; name = api.md; path = docs/api.md; sourceTree = "<group>"; }; - 70E5267514362AC438D2016BFB6782C3 /* FIRCLSDefines.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRCLSDefines.h; path = Crashlytics/Crashlytics/Helpers/FIRCLSDefines.h; sourceTree = "<group>"; }; - 70F794C19EB963A9D7CFF9111E434BEC /* filters_sse2.c */ = {isa = PBXFileReference; includeInIndex = 1; name = filters_sse2.c; path = src/dsp/filters_sse2.c; sourceTree = "<group>"; }; - 711A800CF56C88C5CA3487D9A12B0336 /* MMKVCore.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = MMKVCore.debug.xcconfig; sourceTree = "<group>"; }; + 700DF3674D9F091583C21E4C8262814E /* FKUserDefaultsPlugin.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FKUserDefaultsPlugin.h; path = iOS/Plugins/FlipperKitUserDefaultsPlugin/FKUserDefaultsPlugin.h; sourceTree = "<group>"; }; + 7015AE960245810C05A3F0B7ECB4ED8E /* RCTHmac.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTHmac.h; path = ios/RCTCrypto/RCTHmac.h; sourceTree = "<group>"; }; + 70200DDAF468D37008105917565D0236 /* TimeoutManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = TimeoutManager.h; path = folly/io/async/TimeoutManager.h; sourceTree = "<group>"; }; + 703652B3ED103950657D2AD13978ED5B /* NSTextStorage+FontScaling.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "NSTextStorage+FontScaling.h"; sourceTree = "<group>"; }; + 7055A1A1B8B21B18A6A5A6F0207C7941 /* react-native-cookies-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "react-native-cookies-prefix.pch"; sourceTree = "<group>"; }; + 7066A5AA23A744829427EB4506080E4E /* BugsnagNotifier.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = BugsnagNotifier.m; sourceTree = "<group>"; }; + 707BE48D7690C9621713681E13F8BEE7 /* EXFileSystem.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = EXFileSystem.podspec; sourceTree = "<group>"; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; + 7095A402B5482B6BE3A9D8FA0C03C65A /* SKIOSNetworkAdapter.mm */ = {isa = PBXFileReference; includeInIndex = 1; name = SKIOSNetworkAdapter.mm; path = iOS/Plugins/FlipperKitNetworkPlugin/SKIOSNetworkPlugin/SKIOSNetworkAdapter.mm; sourceTree = "<group>"; }; + 70AB97C866EC4883C3549BD4D9E70EB2 /* MMKVMetaInfo.hpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.h; name = MMKVMetaInfo.hpp; path = Core/MMKVMetaInfo.hpp; sourceTree = "<group>"; }; + 70B1A3D921BEE7C7EDA9FA6C4EDCFFE4 /* CString.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = CString.h; path = folly/lang/CString.h; sourceTree = "<group>"; }; + 70B457C8B4C24EF5C6CF3A9CD2BABDC3 /* SDWebImage.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = SDWebImage.release.xcconfig; sourceTree = "<group>"; }; + 70B7BD0D0B421B8006B6EB76290296FC /* SysUio.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = SysUio.cpp; path = folly/portability/SysUio.cpp; sourceTree = "<group>"; }; + 70BA592C2BC4B1F94DBE0DBB01B4F293 /* RWSpinLock.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RWSpinLock.h; path = folly/synchronization/RWSpinLock.h; sourceTree = "<group>"; }; + 70FD3A6BB23839DC023B390063BCD00F /* MMKV_OSX.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = MMKV_OSX.h; path = Core/MMKV_OSX.h; sourceTree = "<group>"; }; + 710B93B6279FA34175A5EC56071595E3 /* FIRCLSRecordBase.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRCLSRecordBase.m; path = Crashlytics/Crashlytics/Models/Record/FIRCLSRecordBase.m; sourceTree = "<group>"; }; + 710BC8F81F420FD99A02B017A3ADAE0F /* IOBuf.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = IOBuf.cpp; path = folly/io/IOBuf.cpp; sourceTree = "<group>"; }; + 7117BFFC9553028F2923691F6DBFBA01 /* BugsnagConfiguration.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = BugsnagConfiguration.m; sourceTree = "<group>"; }; + 71198C8517842D7AEA353B5FA30A37AC /* UIImage+Resize.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "UIImage+Resize.h"; path = "ios/src/UIImage+Resize.h"; sourceTree = "<group>"; }; + 711AD9D5299E2DEC433AEFA83C10FEAA /* Portability.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Portability.h; path = folly/futures/Portability.h; sourceTree = "<group>"; }; 7125FF740077098B59A78E66EB1F40FE /* Pods-ShareRocketChatRN.modulemap */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.module; path = "Pods-ShareRocketChatRN.modulemap"; sourceTree = "<group>"; }; - 712977A45BF435F5FBBB354F1236B801 /* RCTRsaUtils.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = RCTRsaUtils.swift; path = ios/RCTCrypto/RCTRsaUtils.swift; sourceTree = "<group>"; }; - 713226B89EB5E0214720191C9C8FF78C /* SDWebImage.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = SDWebImage.debug.xcconfig; sourceTree = "<group>"; }; - 7141B2FD3EAB6D6D1972EF3F045B9845 /* FIRCLSSignal.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRCLSSignal.h; path = Crashlytics/Crashlytics/Handlers/FIRCLSSignal.h; sourceTree = "<group>"; }; - 7142F1FB30D196FFDE9E3CEBCCCE4C8B /* Sched.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Sched.h; path = folly/portability/Sched.h; sourceTree = "<group>"; }; - 714617101653AABBA370CB7F07BC74DD /* Subprocess.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Subprocess.h; path = folly/Subprocess.h; sourceTree = "<group>"; }; - 7168429E95F77F02B8E48355B4F86802 /* RCT-Folly.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "RCT-Folly.debug.xcconfig"; sourceTree = "<group>"; }; - 717F866F052C70065D76AAF36F80803C /* FlipperRSocketResponder.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = FlipperRSocketResponder.cpp; path = xplat/Flipper/FlipperRSocketResponder.cpp; sourceTree = "<group>"; }; - 7189806B62CAABC6A938101E021B1B48 /* PriorityLifoSemMPMCQueue.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = PriorityLifoSemMPMCQueue.h; path = folly/executors/task_queue/PriorityLifoSemMPMCQueue.h; sourceTree = "<group>"; }; - 7194150125DD93BA2E704772FCAE9146 /* evutil.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = evutil.h; path = include/evutil.h; sourceTree = "<group>"; }; - 71958D0A1F6512F350E97FAA14DCFAB9 /* Exception.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Exception.h; path = folly/Exception.h; sourceTree = "<group>"; }; - 71AE22565DA82EAA87D9FBFEE7C353B9 /* Demangle.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = Demangle.cpp; path = folly/detail/Demangle.cpp; sourceTree = "<group>"; }; - 71D33565832EF9643AF1A9C72CFC9A05 /* InlineExecutor.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = InlineExecutor.cpp; path = folly/executors/InlineExecutor.cpp; sourceTree = "<group>"; }; - 71E1DD6187842470489C1B6D031A902E /* SDWebImageManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SDWebImageManager.h; path = SDWebImage/Core/SDWebImageManager.h; sourceTree = "<group>"; }; - 71EF12AE0C678D1106C73CA089B8FDAC /* SDWebImageCacheKeyFilter.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = SDWebImageCacheKeyFilter.m; path = SDWebImage/Core/SDWebImageCacheKeyFilter.m; sourceTree = "<group>"; }; - 71FC4AB86EE39074E96E5C28674EA949 /* UIView+WebCacheOperation.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "UIView+WebCacheOperation.m"; path = "SDWebImage/Core/UIView+WebCacheOperation.m"; sourceTree = "<group>"; }; - 721EFFEAF7FEF462064ADAE255C90DED /* README.md */ = {isa = PBXFileReference; includeInIndex = 1; path = README.md; sourceTree = "<group>"; }; - 7230FD2897AE4D58AEFEA90FAF377284 /* HazptrThreadPoolExecutor.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = HazptrThreadPoolExecutor.cpp; path = folly/synchronization/HazptrThreadPoolExecutor.cpp; sourceTree = "<group>"; }; - 72505AE0D9A7E5D7961E65C7BC1D3030 /* FIRExceptionModel.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRExceptionModel.h; path = Crashlytics/Crashlytics/Public/FIRExceptionModel.h; sourceTree = "<group>"; }; - 725581291AB34A22FDD48D80C8380B6A /* vi.lproj */ = {isa = PBXFileReference; includeInIndex = 1; name = vi.lproj; path = "Objective-C/TOCropViewController/Resources/vi.lproj"; sourceTree = "<group>"; }; + 713D18A0F927E82D9EE01184D3A0711F /* RNCAsyncStorage.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNCAsyncStorage.m; path = ios/RNCAsyncStorage.m; sourceTree = "<group>"; }; + 714FDC1F96F45101C4BC7D6DD7B54EEF /* REANodesManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = REANodesManager.m; path = ios/REANodesManager.m; sourceTree = "<group>"; }; + 715007B42B09D8542AC25815072B43BB /* FIRCLSContext.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRCLSContext.m; path = Crashlytics/Crashlytics/Components/FIRCLSContext.m; sourceTree = "<group>"; }; + 71517FF808D8631FF5B5D81F43696874 /* ConstexprMath.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ConstexprMath.h; path = folly/ConstexprMath.h; sourceTree = "<group>"; }; + 7154D5F1DE0AE77A127CB922196A6E64 /* SysResource.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SysResource.h; path = folly/portability/SysResource.h; sourceTree = "<group>"; }; + 7159B60E5811C6AD44AB91EA1C4150DA /* UMAppLoaderProvider.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = UMAppLoaderProvider.m; path = UMAppLoader/UMAppLoaderProvider.m; sourceTree = "<group>"; }; + 715E6361440D35EA7E293AD4B624606B /* RCTConvert+FFFastImage.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "RCTConvert+FFFastImage.m"; path = "ios/FastImage/RCTConvert+FFFastImage.m"; sourceTree = "<group>"; }; + 7161BE6C623D705BEED74F02BBEE27A8 /* FireAndForgetBasedFlipperResponder.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FireAndForgetBasedFlipperResponder.h; path = xplat/Flipper/FireAndForgetBasedFlipperResponder.h; sourceTree = "<group>"; }; + 717847177FA8C973CA2A4A05213F08DF /* MessageQueueThread.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = MessageQueueThread.h; sourceTree = "<group>"; }; + 71865B28FEA44BE3816EA4DEEDF67AFD /* EDFThreadPoolExecutor.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = EDFThreadPoolExecutor.h; path = folly/executors/EDFThreadPoolExecutor.h; sourceTree = "<group>"; }; + 718DFD937258EF31853914212699C5C1 /* dec_sse41.c */ = {isa = PBXFileReference; includeInIndex = 1; name = dec_sse41.c; path = src/dsp/dec_sse41.c; sourceTree = "<group>"; }; + 71ACC4C1A02149D261222DA23F3686B9 /* Subprocess.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Subprocess.h; path = folly/Subprocess.h; sourceTree = "<group>"; }; + 71B8A8AEC76CAD6E08473A8240690083 /* experiments.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; path = experiments.cpp; sourceTree = "<group>"; }; + 71CD9E44DA64C989303E710807944A2E /* RNFetchBlobRequest.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNFetchBlobRequest.h; path = ios/RNFetchBlobRequest.h; sourceTree = "<group>"; }; + 71D4741A2CD0FA7B25CAD6903C900456 /* SDWebImageCacheKeyFilter.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SDWebImageCacheKeyFilter.h; path = SDWebImage/Core/SDWebImageCacheKeyFilter.h; sourceTree = "<group>"; }; + 71E46B333F10D80A5ED81ABF7FDC0454 /* LICENCE */ = {isa = PBXFileReference; includeInIndex = 1; path = LICENCE; sourceTree = "<group>"; }; + 71E688AEAE6F6FF30C7DBB6D959B08E6 /* CallOnce.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = CallOnce.h; path = folly/synchronization/CallOnce.h; sourceTree = "<group>"; }; + 72021CD6FDC16641FE32B29F2B4298D1 /* RCTNativeAnimatedModule.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTNativeAnimatedModule.mm; sourceTree = "<group>"; }; + 7205629B19385396F1D5D42DC013FC0D /* TLSDefinitions.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = TLSDefinitions.h; path = folly/io/async/ssl/TLSDefinitions.h; sourceTree = "<group>"; }; + 721D290B486DC5E3BEDBAE77C782DADD /* React.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = React.release.xcconfig; sourceTree = "<group>"; }; + 722EB091E1AEEA77792FE41ADF3CDD52 /* Event.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Event.h; path = folly/portability/Event.h; sourceTree = "<group>"; }; + 724AF510DD707C57FABF46C9E00AE4AA /* FIRCLSReportManager_Private.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRCLSReportManager_Private.h; path = Crashlytics/Crashlytics/Controllers/FIRCLSReportManager_Private.h; sourceTree = "<group>"; }; 72558F571738704549E1838E845D2770 /* libEXLocalAuthentication.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; name = libEXLocalAuthentication.a; path = libEXLocalAuthentication.a; sourceTree = BUILT_PRODUCTS_DIR; }; - 72631910F86F3EE0DD864035E0C8BB24 /* RemoteObjectsTable.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RemoteObjectsTable.h; sourceTree = "<group>"; }; - 7267D00F1FD7F2751F6F318FB868C7EA /* EXSessionResumableDownloadTaskDelegate.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = EXSessionResumableDownloadTaskDelegate.h; sourceTree = "<group>"; }; - 726E49399B5063C9D4B8A919C8DC332A /* react-native-netinfo.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "react-native-netinfo.debug.xcconfig"; sourceTree = "<group>"; }; - 7283439E2F42BB1F01D41FDBA247CAFE /* FlipperConnection.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FlipperConnection.h; path = xplat/Flipper/FlipperConnection.h; sourceTree = "<group>"; }; - 72835F36D45E0327A28A757A7B2340F9 /* ipv6-internal.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "ipv6-internal.h"; sourceTree = "<group>"; }; - 7283EB23F32AC740B558D0C30B95E95C /* RNEventEmitter.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNEventEmitter.h; path = RNNotifications/RNEventEmitter.h; sourceTree = "<group>"; }; - 729D1112986370E02BFA684FD3F582D1 /* Poly-inl.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "Poly-inl.h"; path = "folly/Poly-inl.h"; sourceTree = "<group>"; }; - 72A91CE4609B0AF92D06577F1DD39A0F /* BSG_KSArchSpecific.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BSG_KSArchSpecific.h; sourceTree = "<group>"; }; - 72D64CBEA652505759A9A44431D4712A /* FIRAppInternal.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRAppInternal.h; path = FirebaseCore/Sources/Private/FIRAppInternal.h; sourceTree = "<group>"; }; - 72D924B8236E2AF165F6D5F8354A471D /* BSG_KSSystemInfo.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BSG_KSSystemInfo.h; sourceTree = "<group>"; }; + 7257EC5583EBC0AE79AE858C600CFEE8 /* evrpc.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = evrpc.h; path = include/evrpc.h; sourceTree = "<group>"; }; + 726369BB028B98D11DCF83EA88A6757B /* F14MapFallback.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = F14MapFallback.h; path = folly/container/detail/F14MapFallback.h; sourceTree = "<group>"; }; + 726F23C48C488E1AF98C98786932FDF1 /* Iterators.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Iterators.h; path = folly/detail/Iterators.h; sourceTree = "<group>"; }; + 72704C9FEC7AB0313AB406ADEE70C724 /* SDImageWebPCoder.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = SDImageWebPCoder.m; path = SDWebImageWebPCoder/Classes/SDImageWebPCoder.m; sourceTree = "<group>"; }; + 72A173581A4B518AA08913B6A8F53796 /* JSIExecutor.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = JSIExecutor.cpp; path = jsireact/JSIExecutor.cpp; sourceTree = "<group>"; }; + 72CC93EF1D5AD73A041DBDF4A2089DD2 /* StreamStateMachineBase.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = StreamStateMachineBase.cpp; path = rsocket/statemachine/StreamStateMachineBase.cpp; sourceTree = "<group>"; }; + 72DABD8A2925F8AD668E0590C277F40A /* openssl_aes.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = openssl_aes.h; path = Core/aes/openssl/openssl_aes.h; sourceTree = "<group>"; }; 72DE4BF3FB9CE0858E90F96FEF8A53AE /* libRNDateTimePicker.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; name = libRNDateTimePicker.a; path = libRNDateTimePicker.a; sourceTree = BUILT_PRODUCTS_DIR; }; + 72E452610E06C566202FAAE7B5F54BCE /* SysUio.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = SysUio.cpp; path = folly/portability/SysUio.cpp; sourceTree = "<group>"; }; 72E494917AC5EC2582197F07061A28B0 /* libEXPermissions.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; name = libEXPermissions.a; path = libEXPermissions.a; sourceTree = BUILT_PRODUCTS_DIR; }; - 72F272903FFBC94B4E4612A594A555FF /* evrpc.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = evrpc.h; path = include/evrpc.h; sourceTree = "<group>"; }; - 730CBBDFDEB767F625E342CD591BCFBD /* RCTBorderDrawing.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTBorderDrawing.h; sourceTree = "<group>"; }; - 7329DC9DC46804A4F663CE828B7DF7E1 /* FunctionScheduler.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FunctionScheduler.h; path = folly/experimental/FunctionScheduler.h; sourceTree = "<group>"; }; - 733ED06FBC1F2020F12228873F997D20 /* SafeAssert.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SafeAssert.h; path = folly/lang/SafeAssert.h; sourceTree = "<group>"; }; - 7343CA8A9C7528DFE57EC1F85F33C409 /* FIRAppInternal.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRAppInternal.h; path = FirebaseCore/Sources/Private/FIRAppInternal.h; sourceTree = "<group>"; }; - 734E703831B26FFA5CD930FA8D15BE86 /* AtomicHashMap.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = AtomicHashMap.h; path = folly/AtomicHashMap.h; sourceTree = "<group>"; }; - 7350AC9E8B2BC0D2157BBD0C505BCEB7 /* Hmac.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = Hmac.h; sourceTree = "<group>"; }; - 735F9214AF5AF9C5F1500BB498DBDC15 /* RCTMultipartDataTask.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTMultipartDataTask.h; sourceTree = "<group>"; }; - 7368C7BB10308A0411937E8FED486628 /* Sse.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Sse.h; path = folly/detail/Sse.h; sourceTree = "<group>"; }; - 737C47ACA6A64D7767636BBE62E6B723 /* RNPushKitEventHandler.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNPushKitEventHandler.m; path = RNNotifications/RNPushKitEventHandler.m; sourceTree = "<group>"; }; - 7397E539A39B1BE430B7A86A3D7AA9B3 /* rescaler.c */ = {isa = PBXFileReference; includeInIndex = 1; name = rescaler.c; path = src/dsp/rescaler.c; sourceTree = "<group>"; }; - 739C26D6C8C0848BCEE6E33039D4CA57 /* RNCMaskedViewManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNCMaskedViewManager.h; path = ios/RNCMaskedViewManager.h; sourceTree = "<group>"; }; - 73A59776370089BF47A36F0979BECF4A /* log.c */ = {isa = PBXFileReference; includeInIndex = 1; path = log.c; sourceTree = "<group>"; }; - 73BE7F7E69A8E5DF009A8FD8C3FE67B6 /* cached-powers.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = "cached-powers.cc"; path = "double-conversion/cached-powers.cc"; sourceTree = "<group>"; }; - 73C84770ED47B977C24E8DC125B6EC1B /* BugsnagBreadcrumb+Private.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "BugsnagBreadcrumb+Private.h"; sourceTree = "<group>"; }; - 73E2107DD4CEDAC8631E3F8D4AC29C87 /* FBVector.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FBVector.h; path = folly/FBVector.h; sourceTree = "<group>"; }; - 73E41D6E861C487FF12A532066A0920A /* HazptrDomain.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = HazptrDomain.h; path = folly/synchronization/HazptrDomain.h; sourceTree = "<group>"; }; - 73E46AB944E91B060A550C4C5605837C /* RCTTextShadowView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTTextShadowView.h; sourceTree = "<group>"; }; - 73E578732206D30A3DD14484BEE74608 /* LICENSE */ = {isa = PBXFileReference; includeInIndex = 1; path = LICENSE; sourceTree = "<group>"; }; - 73ECF13767B57DEF145AD8A4E935C77C /* UMExportedModule.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = UMExportedModule.h; path = UMCore/UMExportedModule.h; sourceTree = "<group>"; }; - 73EF414ADC9425D54A581AC4EDED9B24 /* SharedMutex.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = SharedMutex.cpp; path = folly/SharedMutex.cpp; sourceTree = "<group>"; }; - 73F9C5FBFBBC5A005A4AE1FE0927089F /* BugsnagEventDeserializer.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = BugsnagEventDeserializer.m; sourceTree = "<group>"; }; - 742DFD3C79A95BFA465F215781AFD8CD /* EventBase.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = EventBase.h; path = folly/io/async/EventBase.h; sourceTree = "<group>"; }; - 74331866546A2EF1194D00398E03F336 /* Expected.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Expected.h; path = folly/Expected.h; sourceTree = "<group>"; }; - 744A8C51F58F8778C55BA80C9470047A /* RCTRootShadowView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTRootShadowView.h; sourceTree = "<group>"; }; - 747BE71E8C82E7E029D0E1901F01B273 /* FIRVersion.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRVersion.h; path = FirebaseCore/Sources/FIRVersion.h; sourceTree = "<group>"; }; - 74B062219A682207723A6303E2CA31A6 /* dwarf.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = dwarf.h; path = Crashlytics/third_party/libunwind/dwarf.h; sourceTree = "<group>"; }; - 74C2665FF0FD8E698863719998648C12 /* BugsnagConfiguration.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BugsnagConfiguration.h; sourceTree = "<group>"; }; - 74CD68F1A3B029127CCDC4D6601C3655 /* RSocketParameters.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = RSocketParameters.cpp; path = rsocket/RSocketParameters.cpp; sourceTree = "<group>"; }; - 74DB06B63902EA9FEA6180E8CEF465B4 /* RuntimeAdapter.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; path = RuntimeAdapter.cpp; sourceTree = "<group>"; }; - 74EF1021D13B81EA41A5928C1E898140 /* BugsnagStackframe.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BugsnagStackframe.h; sourceTree = "<group>"; }; - 74FC53950672DDDEAE0DC47EA151ABEF /* FIRCLSMultipartMimeStreamEncoder.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRCLSMultipartMimeStreamEncoder.h; path = Crashlytics/Shared/FIRCLSNetworking/FIRCLSMultipartMimeStreamEncoder.h; sourceTree = "<group>"; }; - 7500E3E1B45B0BEE182E458B83EC4818 /* UMPermissionsInterface.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = UMPermissionsInterface.podspec; sourceTree = "<group>"; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; - 7505D90D2C884C300D75B003B59BB35E /* RNCWebViewManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNCWebViewManager.m; path = apple/RNCWebViewManager.m; sourceTree = "<group>"; }; - 750A0AA43A23732D2135BFC9A2BC39A5 /* RNFBApp.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = RNFBApp.podspec; sourceTree = "<group>"; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; - 7516BE3DA685CEDF74312C0C1CA78095 /* RCTFont.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTFont.mm; sourceTree = "<group>"; }; - 752F50B33E0456ED5566DDBB00DF1A71 /* Spin.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Spin.h; path = folly/synchronization/detail/Spin.h; sourceTree = "<group>"; }; - 75363C348BFBE2799A03172F6AA1D7EF /* IOBufQueue.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = IOBufQueue.h; path = folly/io/IOBufQueue.h; sourceTree = "<group>"; }; - 7536C3E69616C9AB111495D6F460242E /* AsymmetricMemoryBarrier.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = AsymmetricMemoryBarrier.h; path = folly/synchronization/AsymmetricMemoryBarrier.h; sourceTree = "<group>"; }; - 753AAAB7744B065CE8CE50EB04D985B3 /* RNJitsiMeetViewManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNJitsiMeetViewManager.m; path = ios/RNJitsiMeetViewManager.m; sourceTree = "<group>"; }; - 7547F8E6B74F348AA102F489A03E09D9 /* RCTSha.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RCTSha.m; path = ios/RCTCrypto/RCTSha.m; sourceTree = "<group>"; }; - 754E234EEBF74BEB989FA3F5F1BC97FF /* SKViewControllerDescriptor.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SKViewControllerDescriptor.h; path = iOS/Plugins/FlipperKitLayoutPlugin/FlipperKitLayoutPlugin/descriptors/SKViewControllerDescriptor.h; sourceTree = "<group>"; }; - 7552AC22B045F411D709DEF542496909 /* FBLPromise+Async.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "FBLPromise+Async.m"; path = "Sources/FBLPromises/FBLPromise+Async.m"; sourceTree = "<group>"; }; - 75563EAB5D1BADF587F512EF467D9CB1 /* IOObjectCache.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = IOObjectCache.h; path = folly/executors/IOObjectCache.h; sourceTree = "<group>"; }; - 7560A5F7BC3A7C879FEFAE363E8D0E43 /* FlipperKit.modulemap */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.module; path = FlipperKit.modulemap; sourceTree = "<group>"; }; - 7580B58FA5ADD47A6A8B642F8F19CB50 /* YGMacros.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = YGMacros.h; path = yoga/YGMacros.h; sourceTree = "<group>"; }; - 7581311455DB6CDA5EE85DCA93A6D7AC /* SKSwizzle.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SKSwizzle.h; path = iOS/Plugins/FlipperKitLayoutPlugin/FlipperKitLayoutPlugin/utils/SKSwizzle.h; sourceTree = "<group>"; }; - 759323202EFD7C39295D2C7CCDC547E7 /* UMTaskConsumerInterface.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = UMTaskConsumerInterface.h; path = UMTaskManagerInterface/UMTaskConsumerInterface.h; sourceTree = "<group>"; }; - 7594BECDFBA4190D7EF60C88EB269846 /* Unicode.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Unicode.h; path = folly/Unicode.h; sourceTree = "<group>"; }; - 759AE7B54AF92C3EFB888E9A1E4A49F9 /* Stdlib.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Stdlib.h; path = folly/portability/Stdlib.h; sourceTree = "<group>"; }; - 759E76BF4E0BCEEDF0710C73EE7060A9 /* RCTBridgeMethod.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTBridgeMethod.h; sourceTree = "<group>"; }; - 75ACAE008DA57AB16A0C12D15D86D5FE /* FBLPromise+Then.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "FBLPromise+Then.h"; path = "Sources/FBLPromises/include/FBLPromise+Then.h"; sourceTree = "<group>"; }; - 75AFC01FBF230F63FACF16D65C354CDF /* React.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = React.podspec; sourceTree = "<group>"; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; - 75CF82490FC7DFB75FE21312B7DBDCA5 /* rn-fetch-blob.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = "rn-fetch-blob.podspec"; sourceTree = "<group>"; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; - 75D2A5E2501562326163271A71C6F178 /* React-Core.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = "React-Core.podspec"; sourceTree = "<group>"; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; - 75EEF05A44965EBDD6F264E117E56443 /* jsilib.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = jsilib.h; path = destroot/include/jsi/jsilib.h; sourceTree = "<group>"; }; - 75EFBDB34FBBB2FE216E35ED156B3113 /* FBLazyVector.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FBLazyVector.h; path = FBLazyVector/FBLazyVector.h; sourceTree = "<group>"; }; - 75FE639F23AD7D3BB243E0AD9988E003 /* huffman_utils.c */ = {isa = PBXFileReference; includeInIndex = 1; name = huffman_utils.c; path = src/utils/huffman_utils.c; sourceTree = "<group>"; }; - 760C480A9FF3DF129FE571D562011BC1 /* README.md */ = {isa = PBXFileReference; includeInIndex = 1; path = README.md; sourceTree = "<group>"; }; - 760D8A6ADF87C5E2101909974CE1C931 /* ThreadId.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ThreadId.h; path = folly/system/ThreadId.h; sourceTree = "<group>"; }; - 761205744C0A0C3ECE16EE27DD734BFD /* Utility.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Utility.h; path = folly/synchronization/Utility.h; sourceTree = "<group>"; }; - 761424EAD5660486653AC7FB3BFC141F /* TimerFDTimeoutManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = TimerFDTimeoutManager.h; path = folly/experimental/TimerFDTimeoutManager.h; sourceTree = "<group>"; }; - 761B0A90B62FD46941587EE7D33277AE /* Arena.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Arena.h; path = folly/memory/Arena.h; sourceTree = "<group>"; }; - 761D2449B1CD7B8FA9187B26166B2AC4 /* RCTBridge.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTBridge.h; sourceTree = "<group>"; }; - 7627539D8AF7D002F4A4360B6B27BFFF /* Subprocess.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Subprocess.h; path = folly/Subprocess.h; sourceTree = "<group>"; }; - 76335C94BC3A1B44E3DF023ABC327CFA /* ResourceBundle-QBImagePicker-RNImageCropPicker-Info.plist */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.plist.xml; path = "ResourceBundle-QBImagePicker-RNImageCropPicker-Info.plist"; sourceTree = "<group>"; }; - 7656B7BFE45650CC91E9A7D6BC46B62C /* UIView+SKInvalidation.mm */ = {isa = PBXFileReference; includeInIndex = 1; name = "UIView+SKInvalidation.mm"; path = "iOS/Plugins/FlipperKitLayoutPlugin/FlipperKitLayoutPlugin/UIView+SKInvalidation.mm"; sourceTree = "<group>"; }; - 7656DD83199B7D21A2A2AFE76A975118 /* RCTBundleURLProvider.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTBundleURLProvider.mm; sourceTree = "<group>"; }; - 765C7F6D692CD6A890EC5C076DD04165 /* GULNetworkMessageCode.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = GULNetworkMessageCode.h; path = GoogleUtilities/Network/Private/GULNetworkMessageCode.h; sourceTree = "<group>"; }; - 767B925C026CB9A6115D2DAA8564ACF5 /* AtomicUtil-inl.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "AtomicUtil-inl.h"; path = "folly/synchronization/AtomicUtil-inl.h"; sourceTree = "<group>"; }; - 76A2FBF4184A2FCA5AC7623C4BC03C3C /* logging.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = logging.cc; path = src/logging.cc; sourceTree = "<group>"; }; - 76A8C67765DA89F084B107A64F614A08 /* MMKVMetaInfo.hpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.h; name = MMKVMetaInfo.hpp; path = Core/MMKVMetaInfo.hpp; sourceTree = "<group>"; }; - 76DC70ECDB4F06A59740A2EF006983BE /* RCTPerformanceLogger.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTPerformanceLogger.m; sourceTree = "<group>"; }; - 76F1A8FD599DF8E618FA93B58360A75C /* FKPortForwardingServer.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FKPortForwardingServer.h; path = iOS/FlipperKit/FKPortForwarding/FKPortForwardingServer.h; sourceTree = "<group>"; }; - 770C9E7B377482C3CDAC5BFD3DBD94DE /* AtomicHashMap.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = AtomicHashMap.h; path = folly/AtomicHashMap.h; sourceTree = "<group>"; }; - 773AEAE125E1B97FCE5EFAB6EFE16A8A /* RCTExceptionsManager.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTExceptionsManager.mm; sourceTree = "<group>"; }; - 773CD67E1C5C5916902E835142CB8110 /* cached-powers.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = "cached-powers.cc"; path = "double-conversion/cached-powers.cc"; sourceTree = "<group>"; }; - 773F67187D644D69CDBF5E12F7BABA77 /* RCTTextSelection.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTTextSelection.m; sourceTree = "<group>"; }; - 7740BA7FA0A7CD669E269EA357054220 /* ThreadWheelTimekeeperHighRes.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ThreadWheelTimekeeperHighRes.h; path = folly/experimental/ThreadWheelTimekeeperHighRes.h; sourceTree = "<group>"; }; - 7752D2A9B047C5C829174949116FD9D8 /* RNDeviceInfo.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = RNDeviceInfo.debug.xcconfig; sourceTree = "<group>"; }; - 775D02E0BCC26F06F0C7E64E8F728344 /* EventBaseThread.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = EventBaseThread.h; path = folly/io/async/EventBaseThread.h; sourceTree = "<group>"; }; - 776B3012326972E4E0C073ECF6219795 /* React-perflogger-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "React-perflogger-dummy.m"; sourceTree = "<group>"; }; - 777C2BBE7EEA5B56B30C1A83D6FED868 /* hermes-engine.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "hermes-engine.debug.xcconfig"; sourceTree = "<group>"; }; - 77807DD48D1773606AF513C2B92338F5 /* UMFaceDetectorInterface.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = UMFaceDetectorInterface.debug.xcconfig; sourceTree = "<group>"; }; - 7782E390EB5A04EF25130C2A2A8D343F /* RNCNetInfo.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNCNetInfo.h; path = ios/RNCNetInfo.h; sourceTree = "<group>"; }; - 779317CA3A38F38A2E8452DA500B10EB /* SerialExecutor.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = SerialExecutor.cpp; path = folly/executors/SerialExecutor.cpp; sourceTree = "<group>"; }; - 7799E18DBF8044E92CF250F46DCD321D /* String.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = String.h; path = folly/gen/String.h; sourceTree = "<group>"; }; - 7799E6AB9741A90186122CF2B9D0146D /* QBAlbumCell.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = QBAlbumCell.h; path = ios/QBImagePicker/QBImagePicker/QBAlbumCell.h; sourceTree = "<group>"; }; - 779A992D4CEE8008A2CEE3910FEF2805 /* FIRComponent.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRComponent.h; path = FirebaseCore/Sources/Private/FIRComponent.h; sourceTree = "<group>"; }; - 77ACDDC07D639F420CA1C30073310AC8 /* GlobalShutdownSocketSet.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = GlobalShutdownSocketSet.h; path = folly/io/GlobalShutdownSocketSet.h; sourceTree = "<group>"; }; - 77B4AD5BD0867366BCAC679EF4C7DD7F /* Flowables.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Flowables.h; path = yarpl/flowable/Flowables.h; sourceTree = "<group>"; }; - 77DFA611185C19D8EA65EBBE6DD2DF6C /* MMBuffer.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = MMBuffer.cpp; path = Core/MMBuffer.cpp; sourceTree = "<group>"; }; - 77E27FA756A6B7F123B5FD0442782FD4 /* evconfig-private.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "evconfig-private.h"; sourceTree = "<group>"; }; - 77EB9E7906E4AF58634F7804B1AC54B1 /* MessageConverters.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; path = MessageConverters.cpp; sourceTree = "<group>"; }; - 781C339E09C3A84606F79E7D18E333E6 /* RCTUIManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTUIManager.h; sourceTree = "<group>"; }; - 784506C0C4C013F8ABF39538C9B3BB10 /* BugsnagThread+Private.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "BugsnagThread+Private.h"; sourceTree = "<group>"; }; - 784DEF566EEE9ED8B16D39E08CBC534A /* React-RCTNetwork.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = "React-RCTNetwork.podspec"; sourceTree = "<group>"; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; - 785695B3B7894BAD50ED54CC9BE52491 /* React-jsinspector.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = "React-jsinspector.podspec"; sourceTree = "<group>"; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; - 785B606FC7774F8E8A8F2286341D5D4E /* Codel.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = Codel.cpp; path = folly/executors/Codel.cpp; sourceTree = "<group>"; }; - 785EDE9EB6D9A2635C20A40E0D42021D /* RCTNetworkPlugins.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTNetworkPlugins.mm; sourceTree = "<group>"; }; + 72ECB468EFCB007738B802B8D4D804FB /* filters_utils.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = filters_utils.h; path = src/utils/filters_utils.h; sourceTree = "<group>"; }; + 72F09B481BA119EF2EC7893B0A7171B0 /* RNJitsiMeetViewManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNJitsiMeetViewManager.m; path = ios/RNJitsiMeetViewManager.m; sourceTree = "<group>"; }; + 731D24C2903EFD112F0553EDDF09C149 /* UMCameraInterface.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = UMCameraInterface.podspec; sourceTree = "<group>"; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; + 7323E8E1B233223D42B8522731D41F6F /* SafeAreaSpacerViewLocalData.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = SafeAreaSpacerViewLocalData.h; sourceTree = "<group>"; }; + 733E7F9B2FF8930580B0C7B7AB582728 /* symbolize.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = symbolize.cc; path = src/symbolize.cc; sourceTree = "<group>"; }; + 734905DDEBC30BE0764EAD2966D92109 /* SDImageIOCoder.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = SDImageIOCoder.m; path = SDWebImage/Core/SDImageIOCoder.m; sourceTree = "<group>"; }; + 734EAD8AA0E6728D259F9A98AD0F4D8E /* WaitOptions.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = WaitOptions.h; path = folly/synchronization/WaitOptions.h; sourceTree = "<group>"; }; + 735A5EE6D6B8774CDEB5EC3D446CCE22 /* RNLocalize.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = RNLocalize.debug.xcconfig; sourceTree = "<group>"; }; + 73644C402ADDBC4FF79DD1C7CA3E356D /* UMExportedModule.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = UMExportedModule.m; path = UMCore/UMExportedModule.m; sourceTree = "<group>"; }; + 7368A8CB8446AD0FE7337D8819F5CD93 /* EXWebBrowser-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "EXWebBrowser-prefix.pch"; sourceTree = "<group>"; }; + 736DCA4DF1C742B4DA8461B6BEA0B28B /* GULMutableDictionary.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = GULMutableDictionary.h; path = GoogleUtilities/Network/Private/GULMutableDictionary.h; sourceTree = "<group>"; }; + 73ACE9620549EEC51264D536F3D9C5E8 /* minheap-internal.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "minheap-internal.h"; sourceTree = "<group>"; }; + 73B545281744F3E5F2097C57C9DDAB32 /* InterProcessLock_Win32.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = InterProcessLock_Win32.cpp; path = Core/InterProcessLock_Win32.cpp; sourceTree = "<group>"; }; + 73B558BEFED5FBA5860D5BC5467ACB51 /* MemoryIdler.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = MemoryIdler.cpp; path = folly/detail/MemoryIdler.cpp; sourceTree = "<group>"; }; + 73CDF81B12C70A6D012FA67A3587C67C /* SetupResumeAcceptor.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SetupResumeAcceptor.h; path = rsocket/internal/SetupResumeAcceptor.h; sourceTree = "<group>"; }; + 73DE348138F627811E88BC6D05D17795 /* BugsnagApp.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = BugsnagApp.m; sourceTree = "<group>"; }; + 73FE7CE15D9FFDA6583FFF20364AE989 /* EventBaseThread.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = EventBaseThread.h; path = folly/io/async/EventBaseThread.h; sourceTree = "<group>"; }; + 74127BE26140DA21107EC3F05226C4A6 /* react-native-slider-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "react-native-slider-prefix.pch"; sourceTree = "<group>"; }; + 7414F8587276C8A3970ADA33C6D729F3 /* ThreadWheelTimekeeperHighRes.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ThreadWheelTimekeeperHighRes.h; path = folly/experimental/ThreadWheelTimekeeperHighRes.h; sourceTree = "<group>"; }; + 7417AF546946DB3AE84FBD6B4126AAA3 /* RCTRsaUtils.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = RCTRsaUtils.swift; path = ios/RCTCrypto/RCTRsaUtils.swift; sourceTree = "<group>"; }; + 7422083617C1E522AFBF1BAB0FC9C0F3 /* ReactNativeUiLib.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = ReactNativeUiLib.release.xcconfig; sourceTree = "<group>"; }; + 744121C99DBD70574DF792930B81B772 /* InlineExecutor.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = InlineExecutor.h; path = folly/executors/InlineExecutor.h; sourceTree = "<group>"; }; + 7459E86C3FF0ABD96F03069BF653A534 /* CString.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = CString.cpp; path = folly/lang/CString.cpp; sourceTree = "<group>"; }; + 745E5F049E467D7272A9FC9E3A0315CB /* RCTAnimatedNode.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTAnimatedNode.m; sourceTree = "<group>"; }; + 749DB5073BCB863BE82DBE226A795ABE /* BugsnagPluginClient.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = BugsnagPluginClient.m; sourceTree = "<group>"; }; + 74BCC8607C10CB05E4D0CD3BE3AC4F9E /* ExecutionObserver.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ExecutionObserver.h; path = folly/experimental/ExecutionObserver.h; sourceTree = "<group>"; }; + 74C23D7F5EEA624E95EE2680E31C495E /* CancellationToken.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = CancellationToken.h; path = folly/CancellationToken.h; sourceTree = "<group>"; }; + 74D7883E99666545B20F285A05689AFD /* RCTSwitchManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTSwitchManager.m; sourceTree = "<group>"; }; + 74D9344571807628D2FB1AF92A446FFE /* F14Set.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = F14Set.h; path = folly/container/F14Set.h; sourceTree = "<group>"; }; + 74ED020DAD572E4DDD2ED2ADB981442F /* BSGSerialization.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = BSGSerialization.m; sourceTree = "<group>"; }; + 74EFA916AE075E7F8971F2E1F8FE3FA8 /* AsyncSSLSocket.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = AsyncSSLSocket.h; path = folly/io/async/AsyncSSLSocket.h; sourceTree = "<group>"; }; + 74FF150EE17451946938A884B6DFA909 /* JSIDynamic.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = JSIDynamic.h; path = destroot/include/jsi/JSIDynamic.h; sourceTree = "<group>"; }; + 7500D79607601E54C692678FF301E5D5 /* EventBaseManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = EventBaseManager.h; path = folly/io/async/EventBaseManager.h; sourceTree = "<group>"; }; + 750AD76246BAAEA02CDFD35E0BE915A1 /* picture_psnr_enc.c */ = {isa = PBXFileReference; includeInIndex = 1; name = picture_psnr_enc.c; path = src/enc/picture_psnr_enc.c; sourceTree = "<group>"; }; + 750C84A0046DC59693EE20C346109B36 /* RCTSurfacePresenterStub.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTSurfacePresenterStub.m; sourceTree = "<group>"; }; + 750EF2E681C1BF89B8DEFB50EE2FB86E /* vp8li_dec.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = vp8li_dec.h; path = src/dec/vp8li_dec.h; sourceTree = "<group>"; }; + 751B6C8C89AEC272372D8EB4A3ED7662 /* RNScreens.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = RNScreens.debug.xcconfig; sourceTree = "<group>"; }; + 752D547F033FFFB3943C51C11C104ECF /* YGConfig.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = YGConfig.h; path = yoga/YGConfig.h; sourceTree = "<group>"; }; + 7542B6581D86DE78244807AABE670477 /* RCTNetworkPlugins.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTNetworkPlugins.mm; sourceTree = "<group>"; }; + 7554BB8935BF30544A1BAB1A315F547F /* FBReactNativeSpec-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "FBReactNativeSpec-prefix.pch"; sourceTree = "<group>"; }; + 7567D6B6253FD278F4BE5BA8DC642816 /* YogaKit-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "YogaKit-prefix.pch"; sourceTree = "<group>"; }; + 756D4D016E362247F0D78FDECC82E4EE /* UIButton+WebCache.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "UIButton+WebCache.m"; path = "SDWebImage/Core/UIButton+WebCache.m"; sourceTree = "<group>"; }; + 758230C16349B3A4BA4EFE9783B9F247 /* React-jsiexecutor.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = "React-jsiexecutor.podspec"; sourceTree = "<group>"; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; + 75A7A6098346A3A03DD28149317E41DD /* vp8li_enc.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = vp8li_enc.h; path = src/enc/vp8li_enc.h; sourceTree = "<group>"; }; + 75AD37BCFF8968B13A9E9FBCD55AF142 /* evutil_rand.c */ = {isa = PBXFileReference; includeInIndex = 1; path = evutil_rand.c; sourceTree = "<group>"; }; + 75AF0A4FF700CF3A4A491DDD583DF70E /* RNRootView-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "RNRootView-dummy.m"; sourceTree = "<group>"; }; + 75AFB0A1AC15FD822DBF35ECCA7C47C2 /* FIRCLSHost.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRCLSHost.h; path = Crashlytics/Crashlytics/Components/FIRCLSHost.h; sourceTree = "<group>"; }; + 75EAE6D72CC29D61E6B25C78A666D608 /* MMBuffer.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = MMBuffer.cpp; path = Core/MMBuffer.cpp; sourceTree = "<group>"; }; + 75F1836F8CC9C426B26F8EEE1ECE4D5C /* BSGAppHangDetector.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BSGAppHangDetector.h; sourceTree = "<group>"; }; + 75F8E6BEF17738F4DD95989AA02530D2 /* READebugNode.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = READebugNode.m; sourceTree = "<group>"; }; + 76003F53A89C3FF6FC67360F7CA85A6D /* README.md */ = {isa = PBXFileReference; includeInIndex = 1; path = README.md; sourceTree = "<group>"; }; + 760863F9772B27FF17279E053C58DAA5 /* RSocketParameters.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RSocketParameters.h; path = rsocket/RSocketParameters.h; sourceTree = "<group>"; }; + 760F69725DE0C3F05950188EAA4AB1B7 /* AtomicUtil.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = AtomicUtil.h; path = folly/synchronization/AtomicUtil.h; sourceTree = "<group>"; }; + 760F88B941BACF05AEC85414CDC6B800 /* FIRInstallationsIIDStore.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRInstallationsIIDStore.h; path = FirebaseInstallations/Source/Library/IIDMigration/FIRInstallationsIIDStore.h; sourceTree = "<group>"; }; + 7613634623035659C4B374024FC27945 /* rn-extensions-share-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "rn-extensions-share-prefix.pch"; sourceTree = "<group>"; }; + 76252819B783B21EA5EBCC15F2027CA3 /* Futex.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Futex.h; path = folly/detail/Futex.h; sourceTree = "<group>"; }; + 764B48474BD6B94786EA33F556A80ED0 /* FIRStackFrame.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRStackFrame.h; path = Crashlytics/Crashlytics/Public/FirebaseCrashlytics/FIRStackFrame.h; sourceTree = "<group>"; }; + 765541A8AB33A938F1A82C90EE625733 /* RCTKeyCommandsManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RCTKeyCommandsManager.m; path = ios/KeyCommands/RCTKeyCommandsManager.m; sourceTree = "<group>"; }; + 765F72C556C6A9D00A4540B670EA3B12 /* RCTSegmentedControlManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTSegmentedControlManager.h; sourceTree = "<group>"; }; + 76639CAE0288EDD790D54B5342F2A83D /* RNBootSplash-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "RNBootSplash-dummy.m"; sourceTree = "<group>"; }; + 76654F4D3A7AB35B0D6A131C7FB281A9 /* ja.lproj */ = {isa = PBXFileReference; includeInIndex = 1; name = ja.lproj; path = ios/QBImagePicker/QBImagePicker/ja.lproj; sourceTree = "<group>"; }; + 76BBD5E47BF7A40D3B313E5ED316A3E7 /* BugsnagReactNativeEmitter.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BugsnagReactNativeEmitter.h; sourceTree = "<group>"; }; + 76C44D2EB10A8D6EAD5158565F3B4133 /* json_patch.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = json_patch.h; path = folly/json_patch.h; sourceTree = "<group>"; }; + 76D98B03F725F9FA39EACB0C80231C84 /* Foreach.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Foreach.h; path = folly/container/Foreach.h; sourceTree = "<group>"; }; + 77262912BE00AA027F8A8E95643F00B9 /* MemoryIdler.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = MemoryIdler.h; path = folly/detail/MemoryIdler.h; sourceTree = "<group>"; }; + 772EC68C8E7214FFA85E6340505A8261 /* UMAccelerometerInterface.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = UMAccelerometerInterface.h; path = UMSensorsInterface/UMAccelerometerInterface.h; sourceTree = "<group>"; }; + 7731ACA515B58BD68EB4A0CB00C95C20 /* UMReactNativeAdapter.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = UMReactNativeAdapter.podspec; sourceTree = "<group>"; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; + 773F5BF29EB55A7B72274000B1F32F1A /* HazptrHolder.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = HazptrHolder.h; path = folly/synchronization/HazptrHolder.h; sourceTree = "<group>"; }; + 7743DF8AB724A03994967F3730D669C6 /* bufferevent.c */ = {isa = PBXFileReference; includeInIndex = 1; path = bufferevent.c; sourceTree = "<group>"; }; + 7744B9FE1F06A2813519D47E760A5C6C /* pl.lproj */ = {isa = PBXFileReference; includeInIndex = 1; name = pl.lproj; path = "Objective-C/TOCropViewController/Resources/pl.lproj"; sourceTree = "<group>"; }; + 7758206328D579D0359D1BCFDD50FD9A /* UIView+WebCacheOperation.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "UIView+WebCacheOperation.m"; path = "SDWebImage/Core/UIView+WebCacheOperation.m"; sourceTree = "<group>"; }; + 776E7B2B835457CC2AB52FEE1B8AAC2A /* Baton.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Baton.h; path = folly/synchronization/Baton.h; sourceTree = "<group>"; }; + 7787CE1C516F3A760BCAC0408D65DC68 /* BugsnagSystemState.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = BugsnagSystemState.m; sourceTree = "<group>"; }; + 77A9290A2C292C253EE055401DABDC7A /* Traits.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Traits.h; path = folly/Traits.h; sourceTree = "<group>"; }; + 77B77CDF0FA41ECC60D9D90BD8F45E70 /* LICENSE */ = {isa = PBXFileReference; includeInIndex = 1; path = LICENSE; sourceTree = "<group>"; }; + 77CE9025DBECFCA19A4EDD0427D6A563 /* RCTAlertManager.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTAlertManager.mm; sourceTree = "<group>"; }; + 77DC6A7365E6108BF00395CB92069FFE /* EXAppleAuthentication.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = EXAppleAuthentication.podspec; sourceTree = "<group>"; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; + 77E1D9BE2F3DC659E9C74E3BEFACFCE1 /* BSG_KSCrash.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = BSG_KSCrash.m; sourceTree = "<group>"; }; + 77E70D85B1D58DA74BAF1E2330875DC8 /* LICENSE */ = {isa = PBXFileReference; includeInIndex = 1; path = LICENSE; sourceTree = "<group>"; }; + 77E733A8C1B0A792B0DFB189CCEA0EE5 /* GroupVarintDetail.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = GroupVarintDetail.h; path = folly/detail/GroupVarintDetail.h; sourceTree = "<group>"; }; + 78194703ABB0C2AABBEBA0D955718ECF /* RCTMultiplicationAnimatedNode.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTMultiplicationAnimatedNode.m; sourceTree = "<group>"; }; + 781F9F16AB50833322CA3BCCCCEE3C2A /* Traits.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Traits.h; path = folly/Traits.h; sourceTree = "<group>"; }; + 782F7D4CEEAD2F0961322A8D335618C0 /* RCTFont.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTFont.mm; sourceTree = "<group>"; }; + 7834F8BE59A7F0F329006BA4FEDE0426 /* react-native-slider.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = "react-native-slider.podspec"; sourceTree = "<group>"; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; + 783C57FC5E602D978EA01AA3688FE8DC /* RNDeviceInfo.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = RNDeviceInfo.debug.xcconfig; sourceTree = "<group>"; }; + 784FD7583D62A924B663A5FE124B482F /* SSLOptions.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = SSLOptions.cpp; path = folly/io/async/SSLOptions.cpp; sourceTree = "<group>"; }; 7862C607B7BE0510C2D65193F9B4B4F9 /* libTOCropViewController.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; name = libTOCropViewController.a; path = libTOCropViewController.a; sourceTree = BUILT_PRODUCTS_DIR; }; - 786DC84CE97474698A7E3B5134CC6EB1 /* Utils.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = Utils.cpp; path = yoga/Utils.cpp; sourceTree = "<group>"; }; - 7878050845433B5C208F692C2F294BE2 /* NSBezierPath+SDRoundedCorners.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "NSBezierPath+SDRoundedCorners.m"; path = "SDWebImage/Private/NSBezierPath+SDRoundedCorners.m"; sourceTree = "<group>"; }; - 7878CA8D54C4B07AC9493E905F05E20B /* RequestResponseResponder.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RequestResponseResponder.h; path = rsocket/statemachine/RequestResponseResponder.h; sourceTree = "<group>"; }; - 787FE093039C112C0D403D31F56C367B /* React-RCTActionSheet.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = "React-RCTActionSheet.podspec"; sourceTree = "<group>"; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; - 78805741973DFB53A145A589929A9B63 /* config_enc.c */ = {isa = PBXFileReference; includeInIndex = 1; name = config_enc.c; path = src/enc/config_enc.c; sourceTree = "<group>"; }; - 7882F64290BD38F9E125BF84409F74A5 /* UMBarCodeScannerInterface.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = UMBarCodeScannerInterface.release.xcconfig; sourceTree = "<group>"; }; - 7887E907B8FD1216406FF6C50AD5A66F /* RCTImageView.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTImageView.mm; sourceTree = "<group>"; }; - 788A40ED01BB50ABD4F04BF4036D602E /* ARTTextManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = ARTTextManager.h; sourceTree = "<group>"; }; - 78947469984D2FD1BB8948C883C719B0 /* RNCSafeAreaProvider.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNCSafeAreaProvider.h; path = ios/SafeAreaView/RNCSafeAreaProvider.h; sourceTree = "<group>"; }; - 789E43D8893122D597A2C48EDB7CFD7C /* BSG_KSCrashReport.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BSG_KSCrashReport.h; sourceTree = "<group>"; }; - 78B4B36C13100D30E53040F5DBA07C93 /* react-native-restart.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "react-native-restart.release.xcconfig"; sourceTree = "<group>"; }; - 78B7E72795E2B29EDDE0ACDB1A9D248B /* RCTNetworkTask.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTNetworkTask.h; path = Libraries/Network/RCTNetworkTask.h; sourceTree = "<group>"; }; - 78BC83CC850F23118262A47B9213D1B4 /* AtomicNotification.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = AtomicNotification.h; path = folly/synchronization/AtomicNotification.h; sourceTree = "<group>"; }; - 78D4A07F409C5EC209DE0046743FB84C /* ThreadFactory.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ThreadFactory.h; path = folly/executors/thread_factory/ThreadFactory.h; sourceTree = "<group>"; }; - 78D86B2A9ECB46E74E8330B64B2E55F9 /* Yoga-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "Yoga-dummy.m"; sourceTree = "<group>"; }; - 78F6CA26048D0032F0E6D6ECC660D451 /* ThreadLock_Win32.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = ThreadLock_Win32.cpp; path = Core/ThreadLock_Win32.cpp; sourceTree = "<group>"; }; - 79045EA0EA1525B86D20B46C46E39329 /* AsyncServerSocket.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = AsyncServerSocket.cpp; path = folly/io/async/AsyncServerSocket.cpp; sourceTree = "<group>"; }; - 792D7911DF2A48D00794E7EC7357C1F8 /* ScopedLock.hpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.h; name = ScopedLock.hpp; path = Core/ScopedLock.hpp; sourceTree = "<group>"; }; - 792FFD4B7461BB989E9DBD562EAB13A6 /* RCTImageStoreManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTImageStoreManager.h; path = Libraries/Image/RCTImageStoreManager.h; sourceTree = "<group>"; }; - 79335A93D83AE486F8FF48BDCC4B04CE /* Libgen.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Libgen.h; path = folly/portability/Libgen.h; sourceTree = "<group>"; }; - 7936B2B68C9F299497D44B44C6790BD2 /* Asm.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Asm.h; path = folly/portability/Asm.h; sourceTree = "<group>"; }; - 794E673F0C3BE71ED6B7DD19CAB7EB7B /* SDImageCache.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SDImageCache.h; path = SDWebImage/Core/SDImageCache.h; sourceTree = "<group>"; }; - 7963E4D9437C77A4AD380A283F73B8CD /* utils.c */ = {isa = PBXFileReference; includeInIndex = 1; name = utils.c; path = src/utils/utils.c; sourceTree = "<group>"; }; - 7975AC71361D847C020289BF2CE5BBB9 /* BSG_KSJSONCodec.c */ = {isa = PBXFileReference; includeInIndex = 1; path = BSG_KSJSONCodec.c; sourceTree = "<group>"; }; - 797A5D5B3084449D2EA9A26C6A00D6A0 /* Shell.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Shell.h; path = folly/system/Shell.h; sourceTree = "<group>"; }; - 79B29BED9BBCAA461C6D59F27D7BADC4 /* RCTSurface.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTSurface.mm; sourceTree = "<group>"; }; - 79BFEF1825847DD28E26539EE299B92B /* RCTDisplayLink.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTDisplayLink.h; sourceTree = "<group>"; }; - 79D0F4BEC16414280B347604DB4E25E4 /* EXFileSystemLocalFileHandler.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = EXFileSystemLocalFileHandler.h; path = EXFileSystem/EXFileSystemLocalFileHandler.h; sourceTree = "<group>"; }; - 79EB358D44D6C8AF5B7D86450DD1FEAB /* FBLPromise+Retry.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "FBLPromise+Retry.h"; path = "Sources/FBLPromises/include/FBLPromise+Retry.h"; sourceTree = "<group>"; }; - 7A039AC3AF9B6A4E8EC9068BFFB63CDE /* RCTView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTView.m; sourceTree = "<group>"; }; - 7A2EDFBE8E6EBC1A2691133E5F859A12 /* SKDescriptorMapper.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SKDescriptorMapper.h; path = iOS/Plugins/FlipperKitLayoutPlugin/FlipperKitLayoutPlugin/SKDescriptorMapper.h; sourceTree = "<group>"; }; - 7A3BF570E94C8640895966EC47D8ABFD /* ExceptionString.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ExceptionString.h; path = folly/ExceptionString.h; sourceTree = "<group>"; }; - 7A4E2F3708CA04A758B943E594737114 /* QBImagePickerController.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = QBImagePickerController.h; path = ios/QBImagePicker/QBImagePicker/QBImagePickerController.h; sourceTree = "<group>"; }; - 7A5058AECCABB9E39123724170D99D66 /* QBSlomoIconView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = QBSlomoIconView.m; path = ios/QBImagePicker/QBImagePicker/QBSlomoIconView.m; sourceTree = "<group>"; }; - 7A52E65AEAC493527C07E619FAACD214 /* BugsnagDeviceWithState.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = BugsnagDeviceWithState.m; sourceTree = "<group>"; }; - 7A608E0C3CA94318016EB7D1EC63456F /* RCTAppearance.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTAppearance.h; path = React/CoreModules/RCTAppearance.h; sourceTree = "<group>"; }; - 7A68BE5DE275AC8222532BCA9206A279 /* json_patch.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = json_patch.h; path = folly/json_patch.h; sourceTree = "<group>"; }; - 7A7E94FCC43BD2D48FF40007268678CB /* UMCore-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "UMCore-dummy.m"; sourceTree = "<group>"; }; - 7ABB4E8B99C98B574CB424B8DDFAA63C /* strtod.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = strtod.cc; path = "double-conversion/strtod.cc"; sourceTree = "<group>"; }; - 7ABDE4FF616E844389AC74A4458AFF47 /* BitIteratorDetail.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = BitIteratorDetail.h; path = folly/container/detail/BitIteratorDetail.h; sourceTree = "<group>"; }; - 7AC7CEAE075D5FE37F18F69929AF0DB6 /* vp8l_dec.c */ = {isa = PBXFileReference; includeInIndex = 1; name = vp8l_dec.c; path = src/dec/vp8l_dec.c; sourceTree = "<group>"; }; - 7ACF75B83E9BCF1F92190D41B8827A12 /* FIRComponentContainerInternal.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRComponentContainerInternal.h; path = FirebaseCore/Sources/FIRComponentContainerInternal.h; sourceTree = "<group>"; }; - 7AE5CF45ABF4F6803BE087F741E80D4C /* BugsnagSessionTracker.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = BugsnagSessionTracker.m; sourceTree = "<group>"; }; - 7AED5BBB1861BBE84645A9A7B9670CE9 /* ARTRenderableManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = ARTRenderableManager.m; sourceTree = "<group>"; }; - 7AF0EDBD81AE0FAFA35C0AB0497212B4 /* FormatTraits.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FormatTraits.h; path = folly/FormatTraits.h; sourceTree = "<group>"; }; - 7AF194825F5D1BAADE276FBE93BA8106 /* RCTTypedModuleConstants.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTTypedModuleConstants.mm; sourceTree = "<group>"; }; - 7B11CBC013C592CAFFF90DDC74BBBEE3 /* FlowableObserveOnOperator.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FlowableObserveOnOperator.h; path = yarpl/flowable/FlowableObserveOnOperator.h; sourceTree = "<group>"; }; - 7B191C0582A1D295552BE54AB1442E8E /* EXConstants.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = EXConstants.podspec; sourceTree = "<group>"; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; - 7B2914B9B967D4181977345B5C172F7D /* GULNetworkURLSession.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = GULNetworkURLSession.h; path = GoogleUtilities/Network/Private/GULNetworkURLSession.h; sourceTree = "<group>"; }; - 7B2B988372B94744CFCB043C04181A2F /* react-native-orientation-locker.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "react-native-orientation-locker.debug.xcconfig"; sourceTree = "<group>"; }; - 7B2FFA910A38768736885FE35A5CF89B /* RNDateTimePicker.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = RNDateTimePicker.podspec; sourceTree = "<group>"; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; - 7B3BCBAF0DBA3247D26157C240545AF1 /* SysResource.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SysResource.h; path = folly/portability/SysResource.h; sourceTree = "<group>"; }; - 7B4997BE75B671F317C2EF73421AF78C /* ParkingLot.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ParkingLot.h; path = folly/synchronization/ParkingLot.h; sourceTree = "<group>"; }; - 7B4FCBFF3CE54A00C2F44A31FB4C5FA7 /* poll.c */ = {isa = PBXFileReference; includeInIndex = 1; path = poll.c; sourceTree = "<group>"; }; - 7B6DD548394A644C697223589C5139FB /* EXSessionTaskDispatcher.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = EXSessionTaskDispatcher.m; sourceTree = "<group>"; }; - 7B7B40FEF2CA07AB1DFF7B12D0DB76A7 /* TOCropViewControllerTransitioning.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = TOCropViewControllerTransitioning.m; path = "Objective-C/TOCropViewController/Models/TOCropViewControllerTransitioning.m"; sourceTree = "<group>"; }; - 7B8AF369F25FF411A049E73F240EF7F1 /* RNFBSharedUtils.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNFBSharedUtils.m; path = ios/RNFBApp/RNFBSharedUtils.m; sourceTree = "<group>"; }; - 7BA63D71EF3A6A046A72FA153D8D8971 /* BSG_KSBacktrace_Private.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BSG_KSBacktrace_Private.h; sourceTree = "<group>"; }; - 7BA6F36479FF33E103FFB4087E81E9E2 /* Replaceable.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Replaceable.h; path = folly/Replaceable.h; sourceTree = "<group>"; }; - 7BB74AB265F6AE55D2337D7E434DFC7C /* bignum.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = bignum.h; path = "double-conversion/bignum.h"; sourceTree = "<group>"; }; - 7BC33DE4C5189CC11594CC9726C5E670 /* RNFetchBlobFS.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNFetchBlobFS.h; path = ios/RNFetchBlobFS.h; sourceTree = "<group>"; }; - 7BC49A12A1FFA6C6DBE2E137733C3CDD /* Memory.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Memory.h; path = folly/Memory.h; sourceTree = "<group>"; }; - 7BCED6B3574C45530A644C900F6813F5 /* React-RCTBlob.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = "React-RCTBlob.podspec"; sourceTree = "<group>"; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; - 7BD4BC06C4F2B33F49A31B34CEFC5BAE /* RCTKeyCommandsManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTKeyCommandsManager.h; path = ios/KeyCommands/RCTKeyCommandsManager.h; sourceTree = "<group>"; }; - 7BDF2E19961193DD18051E70754886F2 /* HazptrThrLocal.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = HazptrThrLocal.h; path = folly/synchronization/HazptrThrLocal.h; sourceTree = "<group>"; }; - 7BE09AE7D89E67A3549EB8A5B7B2CD7E /* Arena.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Arena.h; path = folly/memory/Arena.h; sourceTree = "<group>"; }; - 7BEEB143F660792E34A92AA98D4043D4 /* EventUtil.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = EventUtil.h; path = folly/io/async/EventUtil.h; sourceTree = "<group>"; }; - 7C0A0A6CB3381FB125B7DB0B51F1D7DC /* RCTShadowView+Internal.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "RCTShadowView+Internal.h"; sourceTree = "<group>"; }; - 7C0B43A991C621D8375536967E7F702D /* ARTRenderable.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = ARTRenderable.m; path = ios/ARTRenderable.m; sourceTree = "<group>"; }; - 7C0C072C906C75C8B707432DD2546F53 /* FIRCLSURLSessionDataTask.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRCLSURLSessionDataTask.h; path = Crashlytics/Crashlytics/FIRCLSURLSession/Tasks/FIRCLSURLSessionDataTask.h; sourceTree = "<group>"; }; - 7C11E1C5E45CC15821A35863F16FA1B0 /* StreamStateMachineBase.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = StreamStateMachineBase.cpp; path = rsocket/statemachine/StreamStateMachineBase.cpp; sourceTree = "<group>"; }; - 7C2765C0E9ACB7E4846FB7A43CA21755 /* EXLocalAuthentication.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = EXLocalAuthentication.m; path = EXLocalAuthentication/EXLocalAuthentication.m; sourceTree = "<group>"; }; - 7C29BD3BD584BB49CE36715D9D1254BD /* Unit.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Unit.h; path = folly/Unit.h; sourceTree = "<group>"; }; - 7C2B6BD46CD0D6B84F5DF2CAE06AA6F6 /* InitThreadFactory.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = InitThreadFactory.h; path = folly/executors/thread_factory/InitThreadFactory.h; sourceTree = "<group>"; }; - 7C3AE8AB82104DA1D57947D5F350DF05 /* FBLPromise+Retry.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "FBLPromise+Retry.m"; path = "Sources/FBLPromises/FBLPromise+Retry.m"; sourceTree = "<group>"; }; - 7C417B868FBE646E1842489AC453BE29 /* OpenSSLLockTypes.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = OpenSSLLockTypes.h; path = folly/ssl/OpenSSLLockTypes.h; sourceTree = "<group>"; }; - 7C4E364F9508DC861238EE4AB7F3EEE1 /* FBLPromise+Delay.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "FBLPromise+Delay.h"; path = "Sources/FBLPromises/include/FBLPromise+Delay.h"; sourceTree = "<group>"; }; - 7C6E28B05FDE1F1220AB6DE4481E0C48 /* GlobalThreadPoolList.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = GlobalThreadPoolList.h; path = folly/executors/GlobalThreadPoolList.h; sourceTree = "<group>"; }; - 7C73775E47D4CF9B92EF7CCBDA2F0B96 /* LICENSE */ = {isa = PBXFileReference; includeInIndex = 1; path = LICENSE; sourceTree = "<group>"; }; - 7C822944916997393C83B0CF3310A16B /* SDImageGIFCoder.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = SDImageGIFCoder.m; path = SDWebImage/Core/SDImageGIFCoder.m; sourceTree = "<group>"; }; - 7C83D83A0D4C1323C708527D106098BC /* MicroSpinLock.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = MicroSpinLock.h; path = folly/MicroSpinLock.h; sourceTree = "<group>"; }; - 7C8E82EC8AAEA9B4CE0D2B7BCD31E075 /* lossless_enc_neon.c */ = {isa = PBXFileReference; includeInIndex = 1; name = lossless_enc_neon.c; path = src/dsp/lossless_enc_neon.c; sourceTree = "<group>"; }; - 7CA405638D48DB19A0E0CFF3F8B4738F /* DeviceUID.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = DeviceUID.h; path = ios/RNDeviceInfo/DeviceUID.h; sourceTree = "<group>"; }; - 7CB388056028D7AA7C6FD0156B291F39 /* Unicode.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = Unicode.cpp; path = folly/Unicode.cpp; sourceTree = "<group>"; }; - 7CD6F641BB6063F13EA12BA92620DE6E /* animi.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = animi.h; path = src/mux/animi.h; sourceTree = "<group>"; }; - 7CECBAB05A930D507AE7B0E29056A501 /* SDImageCacheConfig.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = SDImageCacheConfig.m; path = SDWebImage/Core/SDImageCacheConfig.m; sourceTree = "<group>"; }; - 7D1197EAB8DC51BB58614FA311213FE6 /* Fingerprint.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Fingerprint.h; path = folly/Fingerprint.h; sourceTree = "<group>"; }; - 7D20DEEC7640A7E26DE4F76A033D9641 /* UMUtilities.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = UMUtilities.h; path = UMCore/UMUtilities.h; sourceTree = "<group>"; }; - 7D26E0223B986942AE9A33FFAB0D09D4 /* DrivableExecutor.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = DrivableExecutor.h; path = folly/executors/DrivableExecutor.h; sourceTree = "<group>"; }; - 7D3A80EE210FFA27031327E4B6770689 /* FlipperInitConfig.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FlipperInitConfig.h; path = xplat/Flipper/FlipperInitConfig.h; sourceTree = "<group>"; }; - 7D4E753D377F1A7B0CEEECEF14FBDE54 /* Chrono.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Chrono.h; path = folly/Chrono.h; sourceTree = "<group>"; }; - 7D61EC35D28B4EF1C2E3F7DB04DB7EB7 /* BSGAppHangDetector.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = BSGAppHangDetector.m; sourceTree = "<group>"; }; - 7D62A205D7B6D909481AF0182C083272 /* FIRCrashlytics.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRCrashlytics.m; path = Crashlytics/Crashlytics/FIRCrashlytics.m; sourceTree = "<group>"; }; - 7D6DC76017C081128AF141B447DA147B /* Rcu.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = Rcu.cpp; path = folly/synchronization/Rcu.cpp; sourceTree = "<group>"; }; - 7D7EFA14CEAB378BAE4FD09AA6B5FDF1 /* FIRHeartbeatInfo.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRHeartbeatInfo.h; path = FirebaseCore/Sources/Private/FIRHeartbeatInfo.h; sourceTree = "<group>"; }; - 7D85B1D5F8F87719F04404EECA61FC8B /* RCTStatusBarManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTStatusBarManager.h; path = React/CoreModules/RCTStatusBarManager.h; sourceTree = "<group>"; }; - 7DDAD7B74DF964029D8C8E0445940E3D /* UMFaceDetectorInterface.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = UMFaceDetectorInterface.podspec; sourceTree = "<group>"; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; - 7DDD0E4D55A3F32EBF355204599D60A0 /* F14Set.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = F14Set.h; path = folly/container/F14Set.h; sourceTree = "<group>"; }; - 7E005D68E62F981E2203A551D6EA372D /* React-RCTImage.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = "React-RCTImage.podspec"; sourceTree = "<group>"; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; + 787632263E4D84C9B469FB2201F185BC /* RNCMaskedViewManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNCMaskedViewManager.m; path = ios/RNCMaskedViewManager.m; sourceTree = "<group>"; }; + 787929CD1708FBBF19467CBBE9748112 /* RNJitsiMeetView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNJitsiMeetView.m; path = ios/RNJitsiMeetView.m; sourceTree = "<group>"; }; + 788604AC5FC5EB8E6E1CBD8211BB8921 /* RCTFont.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTFont.h; sourceTree = "<group>"; }; + 78899B6ADC5B51ED31F2185F1DC3DF76 /* EXSessionTaskDispatcher.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = EXSessionTaskDispatcher.h; sourceTree = "<group>"; }; + 789946CE41276568CA35C0197BB15913 /* EXWebBrowser.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = EXWebBrowser.m; path = EXWebBrowser/EXWebBrowser.m; sourceTree = "<group>"; }; + 789AD0C6584C9EBD747942000D08F1E1 /* SDDisplayLink.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = SDDisplayLink.m; path = SDWebImage/Private/SDDisplayLink.m; sourceTree = "<group>"; }; + 78A399A0DEFEA78100BA753EB8A8DE14 /* React-CoreModules-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "React-CoreModules-prefix.pch"; sourceTree = "<group>"; }; + 78ABC46229F06E66CDABC8B7A9AEF8BE /* UTF8String.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = UTF8String.h; path = folly/UTF8String.h; sourceTree = "<group>"; }; + 78C025510C9E9E9C4548DB10467B35FA /* RCTUITextView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTUITextView.m; sourceTree = "<group>"; }; + 78C10C123C50DF2AF25F6C0556E7B78C /* RNRandomBytes.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNRandomBytes.h; path = ios/RCTCrypto/RNRandomBytes.h; sourceTree = "<group>"; }; + 78C3DD5E9BC7C9B9507FFB2A02CE7CC2 /* Framer.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = Framer.cpp; path = rsocket/framing/Framer.cpp; sourceTree = "<group>"; }; + 78C55C9D9EBB57B54F71BC1DD7FBD097 /* iterator_enc.c */ = {isa = PBXFileReference; includeInIndex = 1; name = iterator_enc.c; path = src/enc/iterator_enc.c; sourceTree = "<group>"; }; + 7900570F73C269A409F2F20B49AED1F3 /* ARTText.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ARTText.h; path = ios/ARTText.h; sourceTree = "<group>"; }; + 791CA9ACA4BD658A1CFAF394936B742B /* Flipper-Folly-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "Flipper-Folly-prefix.pch"; sourceTree = "<group>"; }; + 792B15B6607D742613734F37D1345212 /* RCTDevMenu.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTDevMenu.h; path = React/CoreModules/RCTDevMenu.h; sourceTree = "<group>"; }; + 792E20EE8DF01586F424E2A12C2309ED /* react-native-appearance.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "react-native-appearance.debug.xcconfig"; sourceTree = "<group>"; }; + 7934C6BE5A323985ACBA856C37C6DBAC /* Futex-inl.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "Futex-inl.h"; path = "folly/detail/Futex-inl.h"; sourceTree = "<group>"; }; + 793834A6F24BC13804CDDC0DF5FD1339 /* FileUtil.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = FileUtil.cpp; path = folly/FileUtil.cpp; sourceTree = "<group>"; }; + 793D0DEA208373B43465480286979A7D /* BSGConnectivity.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = BSGConnectivity.m; sourceTree = "<group>"; }; + 7945497DE8901950337D8E1CE00AC5EE /* BitUtils.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = BitUtils.h; path = yoga/BitUtils.h; sourceTree = "<group>"; }; + 7955ED1B6B2DD3172B03B4E3478C1ABC /* RCTImageShadowView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTImageShadowView.m; sourceTree = "<group>"; }; + 79625021B0DFD25538F8E31951109A1F /* EXVideoThumbnails.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = EXVideoThumbnails.release.xcconfig; sourceTree = "<group>"; }; + 79665451110932A2A4A62F49046CB8BE /* FIRHeartbeatInfo.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRHeartbeatInfo.m; path = FirebaseCore/Sources/FIRHeartbeatInfo.m; sourceTree = "<group>"; }; + 79668A3961A6DFEFB9669630B43305F9 /* SKResponseInfo.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SKResponseInfo.h; path = iOS/Plugins/FlipperKitNetworkPlugin/FlipperKitNetworkPlugin/SKResponseInfo.h; sourceTree = "<group>"; }; + 7970FA004C5939305C62132D7E5D0166 /* Init.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Init.h; path = folly/init/Init.h; sourceTree = "<group>"; }; + 797374D8F25FA861C276B5A2409232B8 /* FIRCLSDwarfUnwindRegisters.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRCLSDwarfUnwindRegisters.h; path = Crashlytics/Crashlytics/Unwind/Dwarf/FIRCLSDwarfUnwindRegisters.h; sourceTree = "<group>"; }; + 79741A574F95677A119A9C98B9A3CF7F /* RCTAnimationDriver.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTAnimationDriver.h; sourceTree = "<group>"; }; + 7974700B3A80DF1A0E727661E17D7D80 /* FIRCrashlytics.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRCrashlytics.m; path = Crashlytics/Crashlytics/FIRCrashlytics.m; sourceTree = "<group>"; }; + 79793B3AFD85E98B0D47E35C3D48A4E7 /* HHWheelTimer.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = HHWheelTimer.cpp; path = folly/io/async/HHWheelTimer.cpp; sourceTree = "<group>"; }; + 7982CB5D73E0D2114B268367D808FC2F /* RCTKeyboardObserver.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTKeyboardObserver.mm; sourceTree = "<group>"; }; + 7991B848FE8BFD9952558DE43DB51A7B /* LICENSE.txt */ = {isa = PBXFileReference; includeInIndex = 1; path = LICENSE.txt; sourceTree = "<group>"; }; + 799BCB09D0D6E493BF6E6C86899802B0 /* FFFastImageView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FFFastImageView.h; path = ios/FastImage/FFFastImageView.h; sourceTree = "<group>"; }; + 799FDB7BADF4CD47827FBF0CABCDF14B /* StorageIndexer.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = StorageIndexer.h; path = ios/StorageIndexer.h; sourceTree = "<group>"; }; + 79AF205F6686F71CCAAE0138FB96710F /* DispatchMessageQueueThread.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = DispatchMessageQueueThread.h; sourceTree = "<group>"; }; + 79D6A081D3A9465A497EC92A32E90940 /* EventUtil.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = EventUtil.h; path = folly/io/async/EventUtil.h; sourceTree = "<group>"; }; + 79F6CAED7A5CF4FFD838687D3621B4B5 /* 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 = "<group>"; }; + 7A06BEF117B7D676C86D7DE2A046C9DD /* Malloc.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Malloc.h; path = folly/portability/Malloc.h; sourceTree = "<group>"; }; + 7A0B16A06065033AE8EF610BDB087D03 /* MiniPBCoder.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = MiniPBCoder.h; path = Core/MiniPBCoder.h; sourceTree = "<group>"; }; + 7A18B4EF573945FD212FE4535C4A34A2 /* FIRCoreDiagnosticsConnector.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRCoreDiagnosticsConnector.h; path = FirebaseCore/Sources/Private/FIRCoreDiagnosticsConnector.h; sourceTree = "<group>"; }; + 7A1BE8B05D59431DA36C8C40AC8F1685 /* AsyncTransportCertificate.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = AsyncTransportCertificate.h; path = folly/io/async/AsyncTransportCertificate.h; sourceTree = "<group>"; }; + 7A2FD8546F23D09DEA8138756FE8D1DC /* dynamic.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = dynamic.cpp; path = folly/dynamic.cpp; sourceTree = "<group>"; }; + 7A3FFDA97B0F4B7B422659094703968A /* FIRCLSFABAsyncOperation.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRCLSFABAsyncOperation.h; path = Crashlytics/Shared/FIRCLSOperation/FIRCLSFABAsyncOperation.h; sourceTree = "<group>"; }; + 7A484DDABB84263AD064B6E98671AE8B /* ScheduledSingleSubscription.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ScheduledSingleSubscription.h; path = rsocket/internal/ScheduledSingleSubscription.h; sourceTree = "<group>"; }; + 7A4D1A146DDD39ADA896AB3176A6E656 /* CallInvoker.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = CallInvoker.h; path = ReactCommon/CallInvoker.h; sourceTree = "<group>"; }; + 7A5D5CA21E972294551147039C4E5091 /* RNCPicker.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = RNCPicker.podspec; sourceTree = "<group>"; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; + 7A5E80FDFC53B12ABD075832C3EFE0D1 /* FrameType.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = FrameType.cpp; path = rsocket/framing/FrameType.cpp; sourceTree = "<group>"; }; + 7A63FEB9A47A3240CF00E09EFD4156A2 /* BugsnagErrorTypes.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BugsnagErrorTypes.h; sourceTree = "<group>"; }; + 7A644715508BA643C11C1772E3BAC25C /* React-CoreModules.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "React-CoreModules.release.xcconfig"; sourceTree = "<group>"; }; + 7A9833FF71C31016A4E2A5EA1C9771BE /* RCT-Folly.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "RCT-Folly.release.xcconfig"; sourceTree = "<group>"; }; + 7AA711C7FE1B29E72984FCB9113EEE56 /* QBVideoIconView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = QBVideoIconView.h; path = ios/QBImagePicker/QBImagePicker/QBVideoIconView.h; sourceTree = "<group>"; }; + 7ABB24C5F472E64F7F2F8FE129DF2BFA /* enc_mips_dsp_r2.c */ = {isa = PBXFileReference; includeInIndex = 1; name = enc_mips_dsp_r2.c; path = src/dsp/enc_mips_dsp_r2.c; sourceTree = "<group>"; }; + 7ADFE15812F3798C25514138FF72D250 /* anim_encode.c */ = {isa = PBXFileReference; includeInIndex = 1; name = anim_encode.c; path = src/mux/anim_encode.c; sourceTree = "<group>"; }; + 7AE17C12D9DA6F3CAA60799AC0F75100 /* UIImage+Resize.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "UIImage+Resize.m"; path = "ios/src/UIImage+Resize.m"; sourceTree = "<group>"; }; + 7AFD54C7506900B0B8E92D9FC738426D /* FlipperResponderImpl.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FlipperResponderImpl.h; path = xplat/Flipper/FlipperResponderImpl.h; sourceTree = "<group>"; }; + 7B0FC59AE54F461AA104D3898DF5FE56 /* JSCRuntime.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = JSCRuntime.h; sourceTree = "<group>"; }; + 7B29016295CBD32A39B5FE060D4C5D84 /* PackedSyncPtr.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = PackedSyncPtr.h; path = folly/PackedSyncPtr.h; sourceTree = "<group>"; }; + 7B2EB461C1280136D015FE6B1C605D6A /* CustomizationPoint.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = CustomizationPoint.h; path = folly/lang/CustomizationPoint.h; sourceTree = "<group>"; }; + 7B33457AAB18BD536BCA858D33C2EF4D /* muxi.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = muxi.h; path = src/mux/muxi.h; sourceTree = "<group>"; }; + 7B3D69974E7D805990C9A23923E45F1E /* RNFBCrashlytics-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "RNFBCrashlytics-prefix.pch"; sourceTree = "<group>"; }; + 7B49B444E0D78C35F9EF1A2FB6D0EBFE /* FIRCoreDiagnosticsInterop.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRCoreDiagnosticsInterop.h; path = Interop/CoreDiagnostics/Public/FIRCoreDiagnosticsInterop.h; sourceTree = "<group>"; }; + 7B53AC5D4920E9E7B81B0D7B85003B6F /* FIRCLSdSYM.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRCLSdSYM.m; path = Crashlytics/Shared/FIRCLSMachO/FIRCLSdSYM.m; sourceTree = "<group>"; }; + 7B649321AF25C085837E8A173D0EC236 /* bignum-dtoa.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = "bignum-dtoa.cc"; path = "double-conversion/bignum-dtoa.cc"; sourceTree = "<group>"; }; + 7B71B0CC0F6273737CDF8C46BE213058 /* FIRCoreDiagnosticsData.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRCoreDiagnosticsData.h; path = Interop/CoreDiagnostics/Public/FIRCoreDiagnosticsData.h; sourceTree = "<group>"; }; + 7B73D902D17E1F44871C986BEA5651A9 /* FIRLogger.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRLogger.h; path = FirebaseCore/Sources/Private/FIRLogger.h; sourceTree = "<group>"; }; + 7B7836002F21AA5B01ED169B22015880 /* RCTInspector.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTInspector.mm; sourceTree = "<group>"; }; + 7B867BAEA2E53533D05505E5FBD7DD50 /* GULNetworkMessageCode.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = GULNetworkMessageCode.h; path = GoogleUtilities/Network/Private/GULNetworkMessageCode.h; sourceTree = "<group>"; }; + 7B9C928EB02FFE4B93F3286C44589B1E /* SDImageCachesManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SDImageCachesManager.h; path = SDWebImage/Core/SDImageCachesManager.h; sourceTree = "<group>"; }; + 7BB137BF7BF5201BDF328D62857222C2 /* CppAttributes.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = CppAttributes.h; path = folly/CppAttributes.h; sourceTree = "<group>"; }; + 7BC86ACC82C5EA9516C25D89CD0450B1 /* RCTMultipartStreamReader.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTMultipartStreamReader.h; sourceTree = "<group>"; }; + 7BCAF8117650A6FD61A74660EBC9ED49 /* FBLPromises.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FBLPromises.h; path = Sources/FBLPromises/include/FBLPromises.h; sourceTree = "<group>"; }; + 7BF737847D1F4D5B207FFF25A89E7EC4 /* FIRCLSReport_Private.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRCLSReport_Private.h; path = Crashlytics/Crashlytics/Models/FIRCLSReport_Private.h; sourceTree = "<group>"; }; + 7BF8661320B466C1F5A30A9F6C78911D /* Bugsnag.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = Bugsnag.h; sourceTree = "<group>"; }; + 7BF92FEE003EB2F5F01A583E050609E0 /* BSG_KSJSONCodecObjC.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = BSG_KSJSONCodecObjC.m; sourceTree = "<group>"; }; + 7C09D822B4DF504D9A136A56FF99D342 /* Init.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Init.h; path = folly/ssl/Init.h; sourceTree = "<group>"; }; + 7C0E0FEACFC6453F448BD3459F88FDE8 /* SDWebImageWebPCoder-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "SDWebImageWebPCoder-prefix.pch"; sourceTree = "<group>"; }; + 7C171891BBE7C26B10078C317A927A5D /* RCTStyleAnimatedNode.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTStyleAnimatedNode.m; sourceTree = "<group>"; }; + 7C227E6920522A87C4A95E4F39C53459 /* FIRCLSProcessReportOperation.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRCLSProcessReportOperation.m; path = Crashlytics/Crashlytics/Operations/Reports/FIRCLSProcessReportOperation.m; sourceTree = "<group>"; }; + 7C37D10E9A01EB97CE77A2E6C173D2C5 /* GULSecureCoding.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = GULSecureCoding.h; path = GoogleUtilities/Environment/Private/GULSecureCoding.h; sourceTree = "<group>"; }; + 7C3A22A1C1A1B46BA33F1841432460A6 /* README.md */ = {isa = PBXFileReference; includeInIndex = 1; path = README.md; sourceTree = "<group>"; }; + 7C526FC408D59932EA460CABD3A1C0DD /* Fixture.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = Fixture.cpp; path = rsocket/benchmarks/Fixture.cpp; sourceTree = "<group>"; }; + 7C628ECDA0A85F6D2A928B633F08B18D /* Foreach-inl.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "Foreach-inl.h"; path = "folly/container/Foreach-inl.h"; sourceTree = "<group>"; }; + 7C6576F9F36FDB019818F23DD87788B9 /* react-native-notifications-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "react-native-notifications-prefix.pch"; sourceTree = "<group>"; }; + 7C6F6A51162FD6BE1EFE3CC1C144D71A /* GULKeychainUtils.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = GULKeychainUtils.h; path = GoogleUtilities/Environment/Private/GULKeychainUtils.h; sourceTree = "<group>"; }; + 7C86A3794C8EB182B65BBEEBDD2E91C5 /* FIRCLSApplicationIdentifierModel.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRCLSApplicationIdentifierModel.m; path = Crashlytics/Crashlytics/Settings/Models/FIRCLSApplicationIdentifierModel.m; sourceTree = "<group>"; }; + 7C8D5E0A3363E573E25512ECC9495F13 /* UnboundedQueue.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = UnboundedQueue.h; path = folly/concurrency/UnboundedQueue.h; sourceTree = "<group>"; }; + 7C9EA402F618FEC515E97FD2452784A4 /* TypeList.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = TypeList.h; path = folly/detail/TypeList.h; sourceTree = "<group>"; }; + 7CC1DB286F42191D2EAA8C62A3572B26 /* Request.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Request.h; path = folly/io/async/Request.h; sourceTree = "<group>"; }; + 7CD0812C8669FB0FF221A36F2337B9B0 /* GDTCORStorageEventSelector.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = GDTCORStorageEventSelector.h; path = GoogleDataTransport/GDTCORLibrary/Public/GoogleDataTransport/GDTCORStorageEventSelector.h; sourceTree = "<group>"; }; + 7CDC2BF2167D30FC3070F13FDA7AD2A5 /* Phase.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Phase.h; path = folly/init/Phase.h; sourceTree = "<group>"; }; + 7D518967F7BE26E3DE849A4B3E8A416E /* RNCConnectionStateWatcher.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNCConnectionStateWatcher.m; path = ios/RNCConnectionStateWatcher.m; sourceTree = "<group>"; }; + 7D5C34423FCB2323B104CA61F72766FB /* RCTTextTransform.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTTextTransform.h; path = Libraries/Text/RCTTextTransform.h; sourceTree = "<group>"; }; + 7D5F71B498430CFAECC9A99231EB093C /* UMReactNativeAdapter.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = UMReactNativeAdapter.m; sourceTree = "<group>"; }; + 7D68A83D62AC5EA286C25D57233F524A /* Checksum.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Checksum.h; path = folly/hash/Checksum.h; sourceTree = "<group>"; }; + 7D6E9E3E829A40EEF1A1AAD55F30B222 /* GlobalThreadPoolList.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = GlobalThreadPoolList.cpp; path = folly/executors/GlobalThreadPoolList.cpp; sourceTree = "<group>"; }; + 7D866E1BD0268B812BE334AEF790C8C2 /* RCTJavaScriptLoader.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTJavaScriptLoader.mm; sourceTree = "<group>"; }; + 7D88CBD1547D70BDD6CAE506B1D38851 /* ProxyLockable.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ProxyLockable.h; path = folly/synchronization/detail/ProxyLockable.h; sourceTree = "<group>"; }; + 7DA4FAE190AC0544AD46620A9D3D38E7 /* RCTMultiplicationAnimatedNode.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTMultiplicationAnimatedNode.h; sourceTree = "<group>"; }; + 7DACE2A66D16CFB3CB12CA2CEF2A5D4C /* Color+Interpolation.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "Color+Interpolation.m"; sourceTree = "<group>"; }; + 7DAFD9A92B38247EE388F189092E3525 /* TOCropScrollView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = TOCropScrollView.m; path = "Objective-C/TOCropViewController/Views/TOCropScrollView.m"; sourceTree = "<group>"; }; + 7DCBF3C0593054D1A21091980D85866A /* Yoga.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = Yoga.release.xcconfig; sourceTree = "<group>"; }; + 7DDCC772E3B2626C041769FF1CFD16FB /* BugsnagBreadcrumb.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = BugsnagBreadcrumb.m; sourceTree = "<group>"; }; + 7DE3F870A7F79D0E3E6A647C342D3804 /* SKButtonDescriptor.mm */ = {isa = PBXFileReference; includeInIndex = 1; name = SKButtonDescriptor.mm; path = iOS/Plugins/FlipperKitLayoutPlugin/FlipperKitLayoutPlugin/descriptors/SKButtonDescriptor.mm; sourceTree = "<group>"; }; + 7DE668330E65F4215D8CF43CD76DF469 /* RCTMessageThread.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTMessageThread.h; sourceTree = "<group>"; }; + 7DE8F262818B68B3D9479342809A3FA5 /* RCTConvert+Text.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "RCTConvert+Text.m"; sourceTree = "<group>"; }; + 7DF05417D62931F0192E674FD34FA258 /* SKSearchResultNode.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = SKSearchResultNode.m; path = iOS/Plugins/FlipperKitLayoutPlugin/FlipperKitLayoutPlugin/SKSearchResultNode.m; sourceTree = "<group>"; }; + 7DF1E9E210D354D670D9DEA8E812714B /* CPUThreadPoolExecutor.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = CPUThreadPoolExecutor.cpp; path = folly/executors/CPUThreadPoolExecutor.cpp; sourceTree = "<group>"; }; + 7DF8C92D46016A35A83CB010E642BB0F /* HazptrObj.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = HazptrObj.h; path = folly/synchronization/HazptrObj.h; sourceTree = "<group>"; }; + 7E04EDC4EBE5CE7420C0769CB5A27E35 /* FIRCLSExecutionIdentifierModel.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRCLSExecutionIdentifierModel.m; path = Crashlytics/Crashlytics/Models/FIRCLSExecutionIdentifierModel.m; sourceTree = "<group>"; }; + 7E065284101AB5CA9BA253B6F594D886 /* RCTNativeAnimatedModule.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTNativeAnimatedModule.h; path = Libraries/NativeAnimation/RCTNativeAnimatedModule.h; sourceTree = "<group>"; }; 7E103FA6ED177E4D7EF38AD267B42C58 /* libreact-native-cookies.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; name = "libreact-native-cookies.a"; path = "libreact-native-cookies.a"; sourceTree = BUILT_PRODUCTS_DIR; }; - 7E190197A8BCD54D5B863CD1090FC782 /* diy-fp.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = "diy-fp.cc"; path = "double-conversion/diy-fp.cc"; sourceTree = "<group>"; }; - 7E329469FAA7DDFFCC66C76EDC885390 /* VibrancyView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = VibrancyView.m; path = ios/VibrancyView.m; sourceTree = "<group>"; }; - 7E357F7D22698AB72EC4DED0CB3475B8 /* RNCAppearance.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNCAppearance.m; path = ios/Appearance/RNCAppearance.m; sourceTree = "<group>"; }; - 7E3A58C5C01BED5DD03BE3F5A0FB6D11 /* FIRCLSAllocate.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRCLSAllocate.h; path = Crashlytics/Crashlytics/Helpers/FIRCLSAllocate.h; sourceTree = "<group>"; }; - 7E5ED61984AC5D0734B2848B826BA9D7 /* GULHeartbeatDateStorage.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = GULHeartbeatDateStorage.h; path = GoogleUtilities/Environment/Private/GULHeartbeatDateStorage.h; sourceTree = "<group>"; }; - 7E61F8A63FBA407A952062E0F522055D /* React-RCTBlob.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "React-RCTBlob.release.xcconfig"; sourceTree = "<group>"; }; - 7E6ACF4F764B85148076064F490E35DC /* localNotifications.md */ = {isa = PBXFileReference; includeInIndex = 1; name = localNotifications.md; path = docs/localNotifications.md; sourceTree = "<group>"; }; - 7E6FC010879F7EE8CDCA75EFA68919D7 /* RCTConvert+REATransition.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "RCTConvert+REATransition.h"; sourceTree = "<group>"; }; - 7E75554C6C3D8AB01B1D0B5851FEACB5 /* MPMCQueue.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = MPMCQueue.h; path = folly/MPMCQueue.h; sourceTree = "<group>"; }; + 7E267E937F8E2B2CDD33042D7712FD9E /* advancedIos.md */ = {isa = PBXFileReference; includeInIndex = 1; name = advancedIos.md; path = docs/advancedIos.md; sourceTree = "<group>"; }; + 7E27EFE4910AE5DC5AFC602ABA55139A /* StampedPtr.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = StampedPtr.h; path = folly/experimental/StampedPtr.h; sourceTree = "<group>"; }; + 7E2C9B2D0C3A09FFAEC096EBC70A7138 /* analysis_enc.c */ = {isa = PBXFileReference; includeInIndex = 1; name = analysis_enc.c; path = src/enc/analysis_enc.c; sourceTree = "<group>"; }; + 7E3BB59D0E486762F3F329E8C18CEF27 /* FIRCLSSettings.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRCLSSettings.h; path = Crashlytics/Crashlytics/Models/FIRCLSSettings.h; sourceTree = "<group>"; }; + 7E62C4E75C3C64FEBDF28EA2731043A1 /* RCTEventAnimation.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTEventAnimation.h; sourceTree = "<group>"; }; 7E7E46B76D0AFE3DFC477DC55C5DB326 /* libEXAppleAuthentication.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; name = libEXAppleAuthentication.a; path = libEXAppleAuthentication.a; sourceTree = BUILT_PRODUCTS_DIR; }; - 7E7FEF0E48A56300697B528E63674E6A /* Likely.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Likely.h; path = folly/Likely.h; sourceTree = "<group>"; }; - 7E82C6B85AA6A1A43C7EA0B9C5B0DBA1 /* BSG_KSSystemInfoC.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BSG_KSSystemInfoC.h; sourceTree = "<group>"; }; - 7E82EE73F5EEB92B1F189A5C87C94C90 /* RNRootView-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "RNRootView-dummy.m"; sourceTree = "<group>"; }; - 7E91599FA3BC0029A923484575892EE9 /* UMCameraInterface.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = UMCameraInterface.release.xcconfig; sourceTree = "<group>"; }; - 7E9567E0914302535C295590D9E802F2 /* ConcurrentSkipList-inl.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "ConcurrentSkipList-inl.h"; path = "folly/ConcurrentSkipList-inl.h"; sourceTree = "<group>"; }; - 7EA857DA8A2209FA98D02BE1E40ADEC8 /* openssl_aes-armv4.S */ = {isa = PBXFileReference; includeInIndex = 1; name = "openssl_aes-armv4.S"; path = "Core/aes/openssl/openssl_aes-armv4.S"; sourceTree = "<group>"; }; - 7EC7BD368C6B452764445084F34B5EFD /* FIRLogger.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRLogger.h; path = FirebaseCore/Sources/Private/FIRLogger.h; sourceTree = "<group>"; }; - 7ED107C7D265D1E13894AC662AE1149C /* FIRInstallationsIIDStore.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRInstallationsIIDStore.h; path = FirebaseInstallations/Source/Library/IIDMigration/FIRInstallationsIIDStore.h; sourceTree = "<group>"; }; - 7ED7E10E5234C551A746021EEC0D7E11 /* BitUtils.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = BitUtils.h; path = yoga/BitUtils.h; sourceTree = "<group>"; }; - 7EE4C717F5E2017DF21EF0ED8ED107E1 /* StorageSetters.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = StorageSetters.m; path = ios/StorageSetters.m; sourceTree = "<group>"; }; - 7EECDBA9C2689D8B2D852984061BAE5C /* RCTAssert.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTAssert.h; sourceTree = "<group>"; }; - 7EF1B4B664E008E8F33B1CBE45A07A6F /* RNFBCrashlyticsInitProvider.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNFBCrashlyticsInitProvider.m; path = ios/RNFBCrashlytics/RNFBCrashlyticsInitProvider.m; sourceTree = "<group>"; }; - 7EF6B9A47FFA6087F2E4D57B895577D6 /* EXAppleAuthenticationMappings.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = EXAppleAuthenticationMappings.h; path = EXAppleAuthentication/EXAppleAuthenticationMappings.h; sourceTree = "<group>"; }; - 7F0D2C5FD5821F14AF72DA3AA3FE84F6 /* BaselinesAsyncSocket.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = BaselinesAsyncSocket.cpp; path = rsocket/benchmarks/BaselinesAsyncSocket.cpp; sourceTree = "<group>"; }; - 7F391CE3D6B0FE9ACF4401557839803D /* RNRootView.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = RNRootView.debug.xcconfig; sourceTree = "<group>"; }; - 7F4298341DE529438F567BC7B6605C84 /* Flowable_FromObservable.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Flowable_FromObservable.h; path = yarpl/flowable/Flowable_FromObservable.h; sourceTree = "<group>"; }; - 7F5467A50B2433558AF81A19C71F11A9 /* FIRCLSSerializeSymbolicatedFramesOperation.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRCLSSerializeSymbolicatedFramesOperation.h; path = Crashlytics/Crashlytics/Operations/Symbolication/FIRCLSSerializeSymbolicatedFramesOperation.h; sourceTree = "<group>"; }; - 7F648289041B3DCBC9D738576A3D9B2A /* FIRCLSByteUtility.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRCLSByteUtility.m; path = Crashlytics/Shared/FIRCLSByteUtility.m; sourceTree = "<group>"; }; - 7F763AD72B33D446728D68075D4A6AC7 /* pb.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = pb.h; sourceTree = "<group>"; }; - 7F78273B44B4DA42DBE6141598922D84 /* BSG_KSSysCtl.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BSG_KSSysCtl.h; sourceTree = "<group>"; }; - 7F7FAEEC6D720AA177A3ABE4D635B2D2 /* SysTime.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = SysTime.cpp; path = folly/portability/SysTime.cpp; sourceTree = "<group>"; }; - 7F89B97D7C9697721F4789BEAEA2E875 /* MaterialIcons.ttf */ = {isa = PBXFileReference; includeInIndex = 1; name = MaterialIcons.ttf; path = Fonts/MaterialIcons.ttf; sourceTree = "<group>"; }; - 7F90B4D772589C134A9486E832D59BFB /* FIRAppAssociationRegistration.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRAppAssociationRegistration.m; path = FirebaseCore/Sources/FIRAppAssociationRegistration.m; sourceTree = "<group>"; }; - 7F934D5CF6DFDE0A7D00F52698ED4CA6 /* PTProtocol.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = PTProtocol.h; path = peertalk/PTProtocol.h; sourceTree = "<group>"; }; - 7F976042875AB37E3178DA3B51131C0F /* random_utils.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = random_utils.h; path = src/utils/random_utils.h; sourceTree = "<group>"; }; - 7F9BD92B9BDF85B886D741E7E003973C /* BSGAppKit.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BSGAppKit.h; sourceTree = "<group>"; }; - 7F9C61CA331FC7DDC4C288FE4E047574 /* UIImage+GIF.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "UIImage+GIF.h"; path = "SDWebImage/Core/UIImage+GIF.h"; sourceTree = "<group>"; }; - 7FB87EB46998796DCFC2FA8FAB22730B /* PriorityUnboundedBlockingQueue.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = PriorityUnboundedBlockingQueue.h; path = folly/executors/task_queue/PriorityUnboundedBlockingQueue.h; sourceTree = "<group>"; }; - 7FE97DB842A59B5C2F615564FE5857EE /* RCTCxxModule.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTCxxModule.mm; sourceTree = "<group>"; }; - 80211F1678ED1CAB959ACFB0AE2E477D /* hu.lproj */ = {isa = PBXFileReference; includeInIndex = 1; name = hu.lproj; path = "Objective-C/TOCropViewController/Resources/hu.lproj"; sourceTree = "<group>"; }; + 7E8306194B37FF93351C45CE032D09DB /* RCTConvert+FIRApp.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "RCTConvert+FIRApp.h"; path = "ios/RNFBApp/RCTConvert+FIRApp.h"; sourceTree = "<group>"; }; + 7E97FE95E4C41A1E51357668BF1BB6D6 /* LICENSE */ = {isa = PBXFileReference; includeInIndex = 1; path = LICENSE; sourceTree = "<group>"; }; + 7E9EB301924F7F2F85D062091DB9F47C /* ar.lproj */ = {isa = PBXFileReference; includeInIndex = 1; name = ar.lproj; path = "Objective-C/TOCropViewController/Resources/ar.lproj"; sourceTree = "<group>"; }; + 7EA5A61005A36E7CBA14332A2841BAEE /* AtomicLinkedList.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = AtomicLinkedList.h; path = folly/AtomicLinkedList.h; sourceTree = "<group>"; }; + 7ED3EE3653736C321CF15A16803B4FC4 /* SingleWriterFixedHashMap.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SingleWriterFixedHashMap.h; path = folly/experimental/SingleWriterFixedHashMap.h; sourceTree = "<group>"; }; + 7ED7CFDD19D9F5C3886F6A5635255DAE /* mm-internal.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "mm-internal.h"; sourceTree = "<group>"; }; + 7EF29750461614E23F0E518C38D343D7 /* DeviceUID.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = DeviceUID.h; path = ios/RNDeviceInfo/DeviceUID.h; sourceTree = "<group>"; }; + 7EF389B42AB085E5B091E9300E955B80 /* FIRCLSApplication.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRCLSApplication.m; path = Crashlytics/Crashlytics/Components/FIRCLSApplication.m; sourceTree = "<group>"; }; + 7EF55F898C1187358F49B84B1A43897E /* StorageSetters.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = StorageSetters.h; path = ios/StorageSetters.h; sourceTree = "<group>"; }; + 7EFA6F51DFE94641963FADC371A45CDD /* RNReanimated.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = RNReanimated.debug.xcconfig; sourceTree = "<group>"; }; + 7F06B8E0102E9A6491115E7718C3CFA5 /* Hardware.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = Hardware.cpp; path = folly/synchronization/detail/Hardware.cpp; sourceTree = "<group>"; }; + 7F0FC52B7B180D41845578EA52B405DC /* FIRCLSRecordHost.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRCLSRecordHost.m; path = Crashlytics/Crashlytics/Models/Record/FIRCLSRecordHost.m; sourceTree = "<group>"; }; + 7F3E1AC8AAB339DB9B31A3E7B939B2D9 /* GDTCORStorageEventSelector.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = GDTCORStorageEventSelector.m; path = GoogleDataTransport/GDTCORLibrary/GDTCORStorageEventSelector.m; sourceTree = "<group>"; }; + 7F50EC6C678A19D8ED9FBA50CD018824 /* RCTNativeAnimatedTurboModule.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTNativeAnimatedTurboModule.mm; sourceTree = "<group>"; }; + 7F5F335AED02AB00E6BA5CD38E351C8C /* react-native-cookies.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "react-native-cookies.debug.xcconfig"; sourceTree = "<group>"; }; + 7F616776571B3C3B67FC89C2A77682E6 /* double-conversion.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "double-conversion.h"; path = "double-conversion/double-conversion.h"; sourceTree = "<group>"; }; + 7F6240C6D4FC977D7D5EAC1F509F9466 /* ScopeGuard.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = ScopeGuard.cpp; path = folly/ScopeGuard.cpp; sourceTree = "<group>"; }; + 7F7AD7BC28C9471F9722B61DA33E2C02 /* strtod.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = strtod.cc; path = "double-conversion/strtod.cc"; sourceTree = "<group>"; }; + 7F819A9AAE0B529DE31CB2565F0421EF /* EXVideoThumbnails-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "EXVideoThumbnails-dummy.m"; sourceTree = "<group>"; }; + 7F9693DB8B96C131B911B0816AF4EAB7 /* FIRCLSApplication.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRCLSApplication.h; path = Crashlytics/Crashlytics/Components/FIRCLSApplication.h; sourceTree = "<group>"; }; + 7F97AAC7FE010EE12D88EF627EC466AD /* MMKV-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "MMKV-prefix.pch"; sourceTree = "<group>"; }; + 7FAF25A61AD341A3425A0828553742A5 /* EXSessionTaskDelegate.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = EXSessionTaskDelegate.m; sourceTree = "<group>"; }; + 7FD5E449FE946D46CC104D1BA8F12A38 /* SDWebImageCacheKeyFilter.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = SDWebImageCacheKeyFilter.m; path = SDWebImage/Core/SDWebImageCacheKeyFilter.m; sourceTree = "<group>"; }; + 7FF78F0A9E5B4ACEA598CB4F3FB8D8A0 /* MicroSpinLock.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = MicroSpinLock.h; path = folly/MicroSpinLock.h; sourceTree = "<group>"; }; + 8005F846C16DFB53EEF6CC58782031C7 /* RCTRsa.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTRsa.h; path = ios/RCTCrypto/RCTRsa.h; sourceTree = "<group>"; }; + 800CD1A2C7E6B90875967C3F1B29E1ED /* RCTWrapperViewController.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTWrapperViewController.h; sourceTree = "<group>"; }; 802121F5B756ACBFDD6D08C36246DADD /* libReact-RCTLinking.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; name = "libReact-RCTLinking.a"; path = "libReact-RCTLinking.a"; sourceTree = BUILT_PRODUCTS_DIR; }; - 80313E41FC783BC7ACFB49F771393302 /* FIRLogger.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRLogger.h; path = FirebaseCore/Sources/Private/FIRLogger.h; sourceTree = "<group>"; }; - 8031872DCCE430B11F0E3C6A6E3DC9FC /* FlipperKitReactPlugin.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FlipperKitReactPlugin.m; path = iOS/Plugins/FlipperKitReactPlugin/FlipperKitReactPlugin/FlipperKitReactPlugin.m; sourceTree = "<group>"; }; - 803652DA292561BA0F2B796EB01CC231 /* RCTSwitchManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTSwitchManager.h; sourceTree = "<group>"; }; - 8040A7E3C4F4E92E5B9FC6E74CD3B7B0 /* RCTRootView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTRootView.m; sourceTree = "<group>"; }; - 804615896A1BBBB7B8BA5D29291F8864 /* README.md */ = {isa = PBXFileReference; includeInIndex = 1; path = README.md; sourceTree = "<group>"; }; - 80465CD88BDB7A9BE15102CF50241913 /* BitIterator.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = BitIterator.h; path = folly/container/BitIterator.h; sourceTree = "<group>"; }; - 80482005A3D7C74B5C232B9C7E752CA0 /* ThreadCachedArena.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = ThreadCachedArena.cpp; path = folly/memory/ThreadCachedArena.cpp; sourceTree = "<group>"; }; - 80633C5A8B082AA86AFAECD105185D55 /* FBLPromise+Testing.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "FBLPromise+Testing.m"; path = "Sources/FBLPromises/FBLPromise+Testing.m"; sourceTree = "<group>"; }; - 8069BAC4F69AE5E45CBB8F33CB396B67 /* evutil_time.c */ = {isa = PBXFileReference; includeInIndex = 1; path = evutil_time.c; sourceTree = "<group>"; }; + 804588799ADB2C0BB075B4E7DA326F47 /* RuntimeAdapter.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RuntimeAdapter.h; sourceTree = "<group>"; }; + 80580563A830049C8F6B7151C484FB53 /* BugsnagCollections.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = BugsnagCollections.m; sourceTree = "<group>"; }; + 805A27CDDA09509DF32D8AB883B76AE9 /* RCTStatusBarManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTStatusBarManager.h; path = React/CoreModules/RCTStatusBarManager.h; sourceTree = "<group>"; }; 8074129DF318155B29544548E1CAF4A3 /* libreact-native-jitsi-meet.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; name = "libreact-native-jitsi-meet.a"; path = "libreact-native-jitsi-meet.a"; sourceTree = BUILT_PRODUCTS_DIR; }; - 807FB3BD4F4C8DC51A9131B966235F59 /* FIRAEvent+Internal.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "FIRAEvent+Internal.m"; path = "Crashlytics/Crashlytics/Helpers/FIRAEvent+Internal.m"; sourceTree = "<group>"; }; - 808157E8035BB54AD67EED203B4A8AD8 /* FIRInstallations.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRInstallations.m; path = FirebaseInstallations/Source/Library/FIRInstallations.m; sourceTree = "<group>"; }; - 80840BAF96C12C2F4F42314F720FB483 /* SysSyscall.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SysSyscall.h; path = folly/portability/SysSyscall.h; sourceTree = "<group>"; }; + 808F44F5EC5432D0198D9B7F7956925D /* BlurViewManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = BlurViewManager.m; path = ios/BlurViewManager.m; sourceTree = "<group>"; }; + 80928FA87E96A79A8C1EE78D5178F9F4 /* EXSessionTaskDelegate.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = EXSessionTaskDelegate.h; sourceTree = "<group>"; }; + 80A40C142654D89B5BD4503733E62435 /* FlatCombiningPriorityQueue.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FlatCombiningPriorityQueue.h; path = folly/experimental/FlatCombiningPriorityQueue.h; sourceTree = "<group>"; }; 80A51B61FECFED8D1A0D95AAD32A2938 /* libEXHaptics.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; name = libEXHaptics.a; path = libEXHaptics.a; sourceTree = BUILT_PRODUCTS_DIR; }; - 80AB0B92F34862EBF7AAE62BCD3BFB2C /* Common.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Common.h; path = rsocket/internal/Common.h; sourceTree = "<group>"; }; - 80B008CA424CDE6C865EAD3147A8E58C /* SequencedExecutor.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SequencedExecutor.h; path = folly/executors/SequencedExecutor.h; sourceTree = "<group>"; }; - 80C0413E19A2DBCC3F6918891B6DCA41 /* Event.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Event.h; path = folly/portability/Event.h; sourceTree = "<group>"; }; - 80F694FBCE9A3D4733A7A20AEBD4C67A /* UMFileSystemInterface.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = UMFileSystemInterface.podspec; sourceTree = "<group>"; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; - 81095CC27AB0AD6D943702F4AAED8A59 /* UMReactLogHandler.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = UMReactLogHandler.h; sourceTree = "<group>"; }; - 810D5871ADA0B4191B15B5E4A9394733 /* RNCookieManagerIOS.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNCookieManagerIOS.m; path = ios/RNCookieManagerIOS/RNCookieManagerIOS.m; sourceTree = "<group>"; }; - 81191814B978606260CA5B4EC460E41E /* RCTFont.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTFont.h; sourceTree = "<group>"; }; - 81228D55716D17AA0DE748C8160BB301 /* ARTSurfaceView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = ARTSurfaceView.m; path = ios/ARTSurfaceView.m; sourceTree = "<group>"; }; - 8123AF2E83A4B7A6DEE967C1E895AAAF /* SKEnvironmentVariables.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = SKEnvironmentVariables.m; path = iOS/FlipperKit/SKEnvironmentVariables.m; sourceTree = "<group>"; }; + 80A564DB4256A06785D12EEB5C14DD9D /* RNCPicker-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "RNCPicker-prefix.pch"; sourceTree = "<group>"; }; + 80B83EC9FC27F2E0D1A6E4727A1B12EE /* TurboModule.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; path = TurboModule.cpp; sourceTree = "<group>"; }; + 80D20AF86BA07B70D836BC28CBABB53E /* json_pointer.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = json_pointer.cpp; path = folly/json_pointer.cpp; sourceTree = "<group>"; }; + 80F8C51152A88F8E310C2F937FC02D1E /* BugsnagApiClient.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BugsnagApiClient.h; sourceTree = "<group>"; }; + 80FC216FC9B275DA01858715421E8073 /* FIRCLSExecutionIdentifierModel.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRCLSExecutionIdentifierModel.h; path = Crashlytics/Crashlytics/Models/FIRCLSExecutionIdentifierModel.h; sourceTree = "<group>"; }; + 80FE2C0ABC7BBD02DAB4D79580C7BC03 /* RCTTrackingAnimatedNode.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTTrackingAnimatedNode.m; sourceTree = "<group>"; }; + 8102521A01AA4C0C84BCBE66CE2ED01A /* AtomicUtil-inl.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "AtomicUtil-inl.h"; path = "folly/synchronization/AtomicUtil-inl.h"; sourceTree = "<group>"; }; + 81057F95C67F88DA343FA4A2AD0F6A97 /* QBAssetCell.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = QBAssetCell.h; path = ios/QBImagePicker/QBImagePicker/QBAssetCell.h; sourceTree = "<group>"; }; + 8106C55F6EB8A83C7B846CC3E85A8B18 /* Flowables.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = Flowables.cpp; path = yarpl/flowable/Flowables.cpp; sourceTree = "<group>"; }; + 810FC76323A81943B3F0F148F51B82F7 /* FFFastImageViewManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FFFastImageViewManager.h; path = ios/FastImage/FFFastImageViewManager.h; sourceTree = "<group>"; }; + 81240458546B2B5965C60E0E8653C7AA /* RNCAsyncStorage.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNCAsyncStorage.h; path = ios/RNCAsyncStorage.h; sourceTree = "<group>"; }; + 812491C4194E193D02181E745A87692E /* CodedInputData_OSX.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = CodedInputData_OSX.cpp; path = Core/CodedInputData_OSX.cpp; sourceTree = "<group>"; }; 812ED9CD85898FB3B82136F7CB9A3191 /* libRNConfigReader.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; name = libRNConfigReader.a; path = libRNConfigReader.a; sourceTree = BUILT_PRODUCTS_DIR; }; - 819501D9827962ADC0B59DDBC46D6313 /* FlipperStep.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FlipperStep.h; path = xplat/Flipper/FlipperStep.h; sourceTree = "<group>"; }; - 81A05C8E8890D8184D5C24DB13E3B2D9 /* RCTScrollContentShadowView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTScrollContentShadowView.m; sourceTree = "<group>"; }; - 81A496C1E15F3F3AC37175B4920FF619 /* Cursor-inl.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "Cursor-inl.h"; path = "folly/io/Cursor-inl.h"; sourceTree = "<group>"; }; + 813B160069A2D6A422253431B5B92A23 /* Futex-inl.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "Futex-inl.h"; path = "folly/detail/Futex-inl.h"; sourceTree = "<group>"; }; + 813FBE8FCEBF3D17805F07F1F504034A /* React-jsinspector.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = "React-jsinspector.podspec"; sourceTree = "<group>"; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; + 814A043B170DFEADAE30BC8F4B7E8737 /* GULKeychainUtils.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = GULKeychainUtils.m; path = GoogleUtilities/Environment/SecureStorage/GULKeychainUtils.m; sourceTree = "<group>"; }; + 8158D2C35FF0281815C8D42F25F433BD /* Function.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Function.h; path = folly/Function.h; sourceTree = "<group>"; }; + 815C0D7BEE0A4D30C0D38BB6B938F1A8 /* ARTShadow.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ARTShadow.h; path = ios/ARTShadow.h; sourceTree = "<group>"; }; + 816A1586F8C97CF8DFAA026E2F745F9D /* UMBarCodeScannerProviderInterface.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = UMBarCodeScannerProviderInterface.h; path = UMBarCodeScannerInterface/UMBarCodeScannerProviderInterface.h; sourceTree = "<group>"; }; + 816BDED2019A060CBAA4FCEA7DF7D636 /* MMKV_Android.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = MMKV_Android.cpp; path = Core/MMKV_Android.cpp; sourceTree = "<group>"; }; + 819B26C8113598C4B7D8AEF45B07224A /* ThreadPoolExecutor.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = ThreadPoolExecutor.cpp; path = folly/executors/ThreadPoolExecutor.cpp; sourceTree = "<group>"; }; 81ABB69299E6F3BB892E995CFDCECD7A /* Pods-ShareRocketChatRN-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "Pods-ShareRocketChatRN-dummy.m"; sourceTree = "<group>"; }; - 81AF47282A6DA97839BF24F1A5FA42E7 /* React-callinvoker.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "React-callinvoker.release.xcconfig"; sourceTree = "<group>"; }; - 81B637E3ADF97DD6C410CDCA1F53A559 /* ManualTimekeeper.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ManualTimekeeper.h; path = folly/futures/ManualTimekeeper.h; sourceTree = "<group>"; }; - 81D5CF11457126BB7F19358332C49508 /* FlipperResponder.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FlipperResponder.h; path = xplat/Flipper/FlipperResponder.h; sourceTree = "<group>"; }; - 81EB88AF33AF8FCFE87CD8EACA206B4F /* EXSessionUploadTaskDelegate.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = EXSessionUploadTaskDelegate.h; sourceTree = "<group>"; }; - 81EBB074B75AC78031E9362402A44DAE /* AsyncTimeout.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = AsyncTimeout.h; path = folly/io/async/AsyncTimeout.h; sourceTree = "<group>"; }; - 8200BAC2C1DEC23C001DE5C895A8CC79 /* SanitizeThread.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = SanitizeThread.cpp; path = folly/synchronization/SanitizeThread.cpp; sourceTree = "<group>"; }; - 8215C5F33AEA1B010AC029A40C872169 /* README.md */ = {isa = PBXFileReference; includeInIndex = 1; path = README.md; sourceTree = "<group>"; }; - 82169797FE5B608D75B4F5F79C13280D /* ThreadCachedInt.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ThreadCachedInt.h; path = folly/ThreadCachedInt.h; sourceTree = "<group>"; }; - 821EFB2AD57FC7AAF6E4807273C20B56 /* ARTShapeManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = ARTShapeManager.h; sourceTree = "<group>"; }; - 82205CE222B6E04489CA0E4B9CB5DABD /* RCTRedBoxSetEnabled.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTRedBoxSetEnabled.h; sourceTree = "<group>"; }; - 825B2285A1530B004DDAD6CEE1315843 /* frame_enc.c */ = {isa = PBXFileReference; includeInIndex = 1; name = frame_enc.c; path = src/enc/frame_enc.c; sourceTree = "<group>"; }; - 8263CCFE9BAAD61D8DE661674A7EA03D /* PriorityUnboundedQueueSet.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = PriorityUnboundedQueueSet.h; path = folly/concurrency/PriorityUnboundedQueueSet.h; sourceTree = "<group>"; }; - 82654E144A90FED84B5D39EE71AF431F /* fa-IR.lproj */ = {isa = PBXFileReference; includeInIndex = 1; name = "fa-IR.lproj"; path = "Objective-C/TOCropViewController/Resources/fa-IR.lproj"; sourceTree = "<group>"; }; - 82746B65ADB874980B643F7D6A9EACA4 /* react-native-mmkv-storage.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "react-native-mmkv-storage.debug.xcconfig"; sourceTree = "<group>"; }; - 827B56C1E939D2F8F150F08DF0948799 /* RCTImageLoader.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTImageLoader.mm; sourceTree = "<group>"; }; - 828CB40D123F17957991467978968C8E /* glog.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = glog.debug.xcconfig; sourceTree = "<group>"; }; - 82908EB5AA22CDA5F63B991A8908CDC9 /* 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 = "<group>"; }; - 829C9C9E602BAD1C89CF50E09A76222B /* BSG_KSCrashDoctor.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BSG_KSCrashDoctor.h; sourceTree = "<group>"; }; - 82CD836887898CD56425D5AE3E6F3813 /* FIRInstallationsHTTPError.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRInstallationsHTTPError.m; path = FirebaseInstallations/Source/Library/Errors/FIRInstallationsHTTPError.m; sourceTree = "<group>"; }; - 82ED9F1782E3FD8F7E0CB9DA88B7D1C7 /* REAValueNode.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = REAValueNode.h; sourceTree = "<group>"; }; - 83015F74B9F4F8612DBA0CD2A7132244 /* SKHiddenWindow.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SKHiddenWindow.h; path = iOS/Plugins/FlipperKitLayoutPlugin/FlipperKitLayoutPlugin/utils/SKHiddenWindow.h; sourceTree = "<group>"; }; - 831F2BE7509E960A2247F8069F11035A /* RNVectorIcons-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "RNVectorIcons-dummy.m"; sourceTree = "<group>"; }; - 8352C4658640E252FE8BB25FCEDF2A0A /* FKPortForwardingCommon.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FKPortForwardingCommon.h; path = iOS/FlipperKit/FKPortForwarding/FKPortForwardingCommon.h; sourceTree = "<group>"; }; - 83606A2F1248F96972C39BBACDC1C362 /* README.md */ = {isa = PBXFileReference; includeInIndex = 1; path = README.md; sourceTree = "<group>"; }; - 836C95D081ECB5434F342E17A88F8CA0 /* ClockGettimeWrappers.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ClockGettimeWrappers.h; path = folly/ClockGettimeWrappers.h; sourceTree = "<group>"; }; - 8371C3FBE908131FE0B4BAAE1E6D2F52 /* HeterogeneousAccess-fwd.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "HeterogeneousAccess-fwd.h"; path = "folly/container/HeterogeneousAccess-fwd.h"; sourceTree = "<group>"; }; - 8373F8F5AA7C5023F46D1F4436A71193 /* FFFastImageSource.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FFFastImageSource.h; path = ios/FastImage/FFFastImageSource.h; sourceTree = "<group>"; }; - 837E9CF02683AFD9515312499D96F62E /* Time.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Time.h; path = folly/portability/Time.h; sourceTree = "<group>"; }; - 837EFFA6ADD6F536B9A48C66A773DD2B /* UIColor+SDHexString.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "UIColor+SDHexString.m"; path = "SDWebImage/Private/UIColor+SDHexString.m"; sourceTree = "<group>"; }; - 838CB3AD58AAF778C3820188C89DEAE7 /* RCTSha.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTSha.h; path = ios/RCTCrypto/RCTSha.h; sourceTree = "<group>"; }; - 838D1BC1B1D71324DA582F1D93B77A63 /* RCTScrollView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTScrollView.h; sourceTree = "<group>"; }; - 839253E53A9EB87E2EA39F80D36577BB /* Future.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = Future.cpp; path = folly/futures/Future.cpp; sourceTree = "<group>"; }; - 83A36CA920B64E06B7FE6550C363A78E /* Rcu-inl.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "Rcu-inl.h"; path = "folly/synchronization/Rcu-inl.h"; sourceTree = "<group>"; }; + 81BA6E8ADE1C06C1DA521A170683517D /* Varint.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Varint.h; path = folly/Varint.h; sourceTree = "<group>"; }; + 81BE5C5FC940166005A5A95CCFA29123 /* UMBarCodeScannerInterface.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = UMBarCodeScannerInterface.debug.xcconfig; sourceTree = "<group>"; }; + 81C2928C33238876B1C6B4E8DCE5B610 /* BSG_KSString.c */ = {isa = PBXFileReference; includeInIndex = 1; path = BSG_KSString.c; sourceTree = "<group>"; }; + 81C4138655AC38E1C4521E44F2AC184F /* RAMBundleRegistry.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; path = RAMBundleRegistry.cpp; sourceTree = "<group>"; }; + 81CDFC33E538F32F97337D49F4D80D0C /* Bits.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Bits.h; path = folly/experimental/Bits.h; sourceTree = "<group>"; }; + 81E711EDF86BDA4016B5F2285F371B00 /* RCTConvert+FIROptions.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "RCTConvert+FIROptions.h"; path = "ios/RNFBApp/RCTConvert+FIROptions.h"; sourceTree = "<group>"; }; + 81FA9926975AB558C726AB2EC298B020 /* vp8_dec.c */ = {isa = PBXFileReference; includeInIndex = 1; name = vp8_dec.c; path = src/dec/vp8_dec.c; sourceTree = "<group>"; }; + 81FB001C7716874E02062E3A23DC5118 /* RNCPickerManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNCPickerManager.h; path = ios/RNCPickerManager.h; sourceTree = "<group>"; }; + 81FB8A8D274585B4CE3BB50F126521F5 /* JitsiMeet.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = JitsiMeet.framework; path = Frameworks/JitsiMeet.framework; sourceTree = "<group>"; }; + 8200515752D33D5F883C291B2285950E /* BSGGlobals.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BSGGlobals.h; sourceTree = "<group>"; }; + 8203DD46160A94C137751F410D6B9909 /* react-native-cameraroll-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "react-native-cameraroll-prefix.pch"; sourceTree = "<group>"; }; + 82240936E8F34134BB053A71108A1882 /* FIRCrashlytics.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRCrashlytics.h; path = Crashlytics/Crashlytics/Public/FirebaseCrashlytics/FIRCrashlytics.h; sourceTree = "<group>"; }; + 82265ADB9104D0423AEC16B15C031E15 /* FBVector.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FBVector.h; path = folly/FBVector.h; sourceTree = "<group>"; }; + 8226908248D3B863A11C4BD303A18AB1 /* Ordering.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Ordering.h; path = folly/lang/Ordering.h; sourceTree = "<group>"; }; + 822B77C3AA2FBC02C2739C0FADC34A4A /* RCTModalHostViewController.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTModalHostViewController.m; sourceTree = "<group>"; }; + 823C0A80AE747CE9483F241D060396AA /* BugsnagStacktrace.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = BugsnagStacktrace.m; sourceTree = "<group>"; }; + 823F76666EB7E8D9C243DCD3586E9F21 /* DebuggerAPI.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = DebuggerAPI.h; path = destroot/include/hermes/DebuggerAPI.h; sourceTree = "<group>"; }; + 82655F50A075F25A1645A0BB688635B1 /* RNFlingHandler.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RNFlingHandler.h; sourceTree = "<group>"; }; + 826FC00055EF9A1713E52FA84C707BE3 /* Benchmarks.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = Benchmarks.cpp; path = rsocket/benchmarks/Benchmarks.cpp; sourceTree = "<group>"; }; + 827765BE7CB51576FCDF1D3B59CCCC35 /* HazptrObjLinked.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = HazptrObjLinked.h; path = folly/synchronization/HazptrObjLinked.h; sourceTree = "<group>"; }; + 827AD32D3C28F102941B4AFB05F76826 /* TcpConnectionAcceptor.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = TcpConnectionAcceptor.cpp; path = rsocket/transports/tcp/TcpConnectionAcceptor.cpp; sourceTree = "<group>"; }; + 8288F79984720B638376309474BBC130 /* PTProtocol.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = PTProtocol.m; path = peertalk/PTProtocol.m; sourceTree = "<group>"; }; + 8289038768AE1F2DF387C5B3A1608B1B /* ChecksumDetail.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ChecksumDetail.h; path = folly/hash/detail/ChecksumDetail.h; sourceTree = "<group>"; }; + 8291E659D186A731AC71E38D30AE632F /* StringKeyedUnorderedSet.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = StringKeyedUnorderedSet.h; path = folly/experimental/StringKeyedUnorderedSet.h; sourceTree = "<group>"; }; + 829439B6F9662A89D220F0C0F5D27A14 /* FBLPromise+Any.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "FBLPromise+Any.h"; path = "Sources/FBLPromises/include/FBLPromise+Any.h"; sourceTree = "<group>"; }; + 829449E85EF56D80B7B136B4F98749A3 /* EXPermissions.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = EXPermissions.podspec; sourceTree = "<group>"; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; + 829A01EAD1D6E879313132D12CEDAC69 /* FIRAnalyticsConnector.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = FIRAnalyticsConnector.framework; path = Frameworks/FIRAnalyticsConnector.framework; sourceTree = "<group>"; }; + 829E6E370C2FD119D2ED767F24EDE6B0 /* GULAppEnvironmentUtil.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = GULAppEnvironmentUtil.h; path = GoogleUtilities/Environment/Private/GULAppEnvironmentUtil.h; sourceTree = "<group>"; }; + 82B6675A30D703760C2724DA313A4810 /* QBImagePicker.storyboard */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = file.storyboard; name = QBImagePicker.storyboard; path = ios/QBImagePicker/QBImagePicker/QBImagePicker.storyboard; sourceTree = "<group>"; }; + 82BB956AEDA8DF0B9321C43CCC62EDF0 /* Padded.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Padded.h; path = folly/Padded.h; sourceTree = "<group>"; }; + 82D18E992787A1F0B4D161AA392C11F1 /* FIRComponent.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRComponent.h; path = FirebaseCore/Sources/Private/FIRComponent.h; sourceTree = "<group>"; }; + 82D2D03980550B0636B74BD263D0EDFD /* Yoga.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = Yoga.debug.xcconfig; sourceTree = "<group>"; }; + 82FC21C6B790C0A4D4F723B59261612D /* Semaphore.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = Semaphore.cpp; path = folly/portability/Semaphore.cpp; sourceTree = "<group>"; }; + 82FD72CF6BE7239E867031CA2A5CDB4B /* FIRCLSCodeMapping.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRCLSCodeMapping.h; path = Crashlytics/Shared/FIRCLSMachO/FIRCLSCodeMapping.h; sourceTree = "<group>"; }; + 83105B00099FEC5C644B5EB32F0AF37C /* Firebase.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Firebase.h; path = CoreOnly/Sources/Firebase.h; sourceTree = "<group>"; }; + 8315EC8BE2696659FC483DFE2C5E2F5D /* Cursor-inl.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "Cursor-inl.h"; path = "folly/io/Cursor-inl.h"; sourceTree = "<group>"; }; + 831653DB229DFC377339CD7F1A322DC5 /* BSGNotificationBreadcrumbs.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BSGNotificationBreadcrumbs.h; sourceTree = "<group>"; }; + 831CBF020C42108AC4D99F887A905219 /* RNGestureHandlerState.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNGestureHandlerState.h; path = ios/RNGestureHandlerState.h; sourceTree = "<group>"; }; + 8332F5A457625A4469705645641E6A30 /* SystraceSection.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = SystraceSection.h; sourceTree = "<group>"; }; + 8339D7F1F705F604B8E9B6D320962F8A /* RCTScrollView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTScrollView.h; sourceTree = "<group>"; }; + 833D4F2E95FED6F014CE233AF0AF26A9 /* IPAddressSource.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = IPAddressSource.h; path = folly/detail/IPAddressSource.h; sourceTree = "<group>"; }; + 83436CB34880CC0D890517A4022A8D9C /* RNCCameraRollManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNCCameraRollManager.m; path = ios/RNCCameraRollManager.m; sourceTree = "<group>"; }; + 834EE78545DDAF73EA1C6BD54795E196 /* FIRInstallationsAuthTokenResult.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRInstallationsAuthTokenResult.h; path = FirebaseInstallations/Source/Library/Public/FirebaseInstallations/FIRInstallationsAuthTokenResult.h; sourceTree = "<group>"; }; + 8354F32A621692F2080E494EF874CA10 /* RCTHmac.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RCTHmac.m; path = ios/RCTCrypto/RCTHmac.m; sourceTree = "<group>"; }; + 8361C68194C6E65F993234F30CD0D120 /* BasicTransportCertificate.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = BasicTransportCertificate.h; path = folly/io/async/ssl/BasicTransportCertificate.h; sourceTree = "<group>"; }; + 836CBD51E9CBC69D9D513453F7389F22 /* SDDisplayLink.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SDDisplayLink.h; path = SDWebImage/Private/SDDisplayLink.h; sourceTree = "<group>"; }; + 8373EF15781644723EC409CA6CBD9212 /* EXKeepAwake-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "EXKeepAwake-dummy.m"; sourceTree = "<group>"; }; + 83741E9896252B3E2B83FE13B6A122F9 /* README.md */ = {isa = PBXFileReference; includeInIndex = 1; path = README.md; sourceTree = "<group>"; }; + 8377D5B92B1818A3AAE602AE8C18EF12 /* ja.lproj */ = {isa = PBXFileReference; includeInIndex = 1; name = ja.lproj; path = "Objective-C/TOCropViewController/Resources/ja.lproj"; sourceTree = "<group>"; }; + 838D4CE26A6C6AE7A27D939C780B2D15 /* ThreadPoolExecutor.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = ThreadPoolExecutor.cpp; path = folly/executors/ThreadPoolExecutor.cpp; sourceTree = "<group>"; }; + 83A335C4538E99CD1C2384D1277EF98A /* Replaceable.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Replaceable.h; path = folly/Replaceable.h; sourceTree = "<group>"; }; 83A8CC3246A95431ACEA83C7C742228B /* libreact-native-netinfo.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; name = "libreact-native-netinfo.a"; path = "libreact-native-netinfo.a"; sourceTree = BUILT_PRODUCTS_DIR; }; - 83B05D19439553D21178193FF0C75B05 /* vp8li_enc.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = vp8li_enc.h; path = src/enc/vp8li_enc.h; sourceTree = "<group>"; }; - 83BF47C14F8ECEF5838A4507B32CC1A7 /* TOActivityCroppedImageProvider.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = TOActivityCroppedImageProvider.h; path = "Objective-C/TOCropViewController/Models/TOActivityCroppedImageProvider.h"; sourceTree = "<group>"; }; - 83D65B87F81FC79D264226D68569D33A /* Futex.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Futex.h; path = folly/detail/Futex.h; sourceTree = "<group>"; }; - 83DC996CF00F18599135A2312BD308E7 /* pt.lproj */ = {isa = PBXFileReference; includeInIndex = 1; name = pt.lproj; path = "Objective-C/TOCropViewController/Resources/pt.lproj"; sourceTree = "<group>"; }; - 83E759385470971E9A1619229F94FBAC /* FixedString.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FixedString.h; path = folly/FixedString.h; sourceTree = "<group>"; }; - 83F0718D4AC46929A67616693A2E5E6A /* JSIDynamic.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = JSIDynamic.h; sourceTree = "<group>"; }; - 83F37D98A00763F81E61FCC64732810A /* String-inl.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "String-inl.h"; path = "folly/String-inl.h"; sourceTree = "<group>"; }; - 83FC195C5C31491E3BCB9BAD956650FE /* React-RCTText.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "React-RCTText.release.xcconfig"; sourceTree = "<group>"; }; - 83FFB31122ACD6342390D22F82E06526 /* Flipper-PeerTalk-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "Flipper-PeerTalk-prefix.pch"; sourceTree = "<group>"; }; - 8403A2E98112F59D3BAF6617AECA11EC /* ThreadLocalDetail.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = ThreadLocalDetail.cpp; path = folly/detail/ThreadLocalDetail.cpp; sourceTree = "<group>"; }; - 8412BB89120242D71285FD959BAB4CE2 /* StreamFragmentAccumulator.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = StreamFragmentAccumulator.cpp; path = rsocket/statemachine/StreamFragmentAccumulator.cpp; sourceTree = "<group>"; }; - 842065B8B3BD58AC120D1C31CB5FB335 /* Time.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Time.h; path = folly/portability/Time.h; sourceTree = "<group>"; }; - 842663EF20781EC453C3AB321DD4BF19 /* GULSceneDelegateSwizzler.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = GULSceneDelegateSwizzler.m; path = GoogleUtilities/SceneDelegateSwizzler/GULSceneDelegateSwizzler.m; sourceTree = "<group>"; }; - 842CE69EF38520DDAA52171D3B28A041 /* GULLoggerCodes.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = GULLoggerCodes.h; path = GoogleUtilities/Common/GULLoggerCodes.h; sourceTree = "<group>"; }; - 8431F6CE5B1B0F548F4F3EB21BC2AE40 /* YGEnums.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = YGEnums.cpp; path = yoga/YGEnums.cpp; sourceTree = "<group>"; }; - 843C93882E727468AB416A5D1983E793 /* GULSceneDelegateSwizzler.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = GULSceneDelegateSwizzler.h; path = GoogleUtilities/SceneDelegateSwizzler/Private/GULSceneDelegateSwizzler.h; sourceTree = "<group>"; }; - 8443DF482A4A09A72E9EE2EF68264AA6 /* RNCookieManagerIOS.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNCookieManagerIOS.h; path = ios/RNCookieManagerIOS/RNCookieManagerIOS.h; sourceTree = "<group>"; }; - 8448FB44BB6062AC013CFCC3DDC33FDD /* EXAppleAuthenticationRequest.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = EXAppleAuthenticationRequest.m; path = EXAppleAuthentication/EXAppleAuthenticationRequest.m; sourceTree = "<group>"; }; - 845095425A65B403ED01C9E0327CEB2B /* FirebaseCoreDiagnostics.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = FirebaseCoreDiagnostics.debug.xcconfig; sourceTree = "<group>"; }; - 8450CF4C473130B21E41CB49420EB6B3 /* TcpDuplexConnection.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = TcpDuplexConnection.h; path = rsocket/transports/tcp/TcpDuplexConnection.h; sourceTree = "<group>"; }; - 845121F58E60C9853B35C0969291ADC2 /* utils.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = utils.h; path = "double-conversion/utils.h"; sourceTree = "<group>"; }; - 8497CB456BD2A261AC99B47B49846351 /* StreamStateMachineBase.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = StreamStateMachineBase.h; path = rsocket/statemachine/StreamStateMachineBase.h; sourceTree = "<group>"; }; - 849B5400332E67CB49AB4618ABFE2341 /* SDWebImageDownloaderConfig.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SDWebImageDownloaderConfig.h; path = SDWebImage/Core/SDWebImageDownloaderConfig.h; sourceTree = "<group>"; }; - 849FC69E990B83A69FC8A87B83C1C2EB /* FIRCLSUUID.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRCLSUUID.h; path = Crashlytics/Shared/FIRCLSUUID.h; sourceTree = "<group>"; }; - 84A7E4EA97CD08BAA03992168255DF5F /* Foreach-inl.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "Foreach-inl.h"; path = "folly/container/Foreach-inl.h"; sourceTree = "<group>"; }; - 84C6B17C8D76B76582EE0FA44BC1C73B /* lossless.c */ = {isa = PBXFileReference; includeInIndex = 1; name = lossless.c; path = src/dsp/lossless.c; sourceTree = "<group>"; }; - 84EC04911BB9E6D9B7856568B9938009 /* RCTReloadCommand.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTReloadCommand.m; sourceTree = "<group>"; }; - 84EEFE25DC085D62DA57C42255443BB3 /* react-native-simple-crypto-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "react-native-simple-crypto-prefix.pch"; sourceTree = "<group>"; }; - 84F337E321B6C51564FA2BBE9406F7E8 /* Promise.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Promise.h; path = folly/futures/Promise.h; sourceTree = "<group>"; }; - 84F81D9B45FDBD78B5ACB07C50EBCCB6 /* RNNotifications.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNNotifications.m; path = RNNotifications/RNNotifications.m; sourceTree = "<group>"; }; - 84FACB1B8A9DB495EDF073E347729893 /* RNFetchBlob.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RNFetchBlob.h; sourceTree = "<group>"; }; - 84FCCA45C59E07CDDF03842BAA20E30E /* FKUserDefaultsPlugin.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FKUserDefaultsPlugin.h; path = iOS/Plugins/FlipperKitUserDefaultsPlugin/FKUserDefaultsPlugin.h; sourceTree = "<group>"; }; - 85358689783C24A98EC1C4B280D8640B /* UMDeviceMotionInterface.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = UMDeviceMotionInterface.h; path = UMSensorsInterface/UMDeviceMotionInterface.h; sourceTree = "<group>"; }; - 853DA4003B234224D0BEF3F4ABD94970 /* SafeAreaSpacerViewLocalData.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = SafeAreaSpacerViewLocalData.m; sourceTree = "<group>"; }; - 854392E79DEFD120A20C066DCB55C4AF /* filters_utils.c */ = {isa = PBXFileReference; includeInIndex = 1; name = filters_utils.c; path = src/utils/filters_utils.c; sourceTree = "<group>"; }; - 8563B2FC4FB842CB858FC49BF425377E /* react-native-background-timer.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "react-native-background-timer.release.xcconfig"; sourceTree = "<group>"; }; - 85679925C7418CFBC8047231557F405D /* event-internal.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "event-internal.h"; sourceTree = "<group>"; }; + 83CFBBD815E733BA2565F94754B84658 /* RNCWebView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNCWebView.h; path = apple/RNCWebView.h; sourceTree = "<group>"; }; + 83E1F52A529547ED2249399456C54875 /* Shell.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Shell.h; path = folly/system/Shell.h; sourceTree = "<group>"; }; + 83FBD23DAF9A3F2F9BDE451EF2D8950A /* RCTEventEmitter.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTEventEmitter.m; sourceTree = "<group>"; }; + 8402DBCDE23589DFB945E75526BE1F56 /* RNDeviceInfo.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = RNDeviceInfo.podspec; sourceTree = "<group>"; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; + 840CD15E3AF1BBA51C82C1C8F8440D02 /* Futex.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = Futex.cpp; path = folly/detail/Futex.cpp; sourceTree = "<group>"; }; + 842A4201E90DF456D92F4F226977EE73 /* EXAppleAuthenticationButton.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = EXAppleAuthenticationButton.m; path = EXAppleAuthentication/EXAppleAuthenticationButton.m; sourceTree = "<group>"; }; + 8430C65609AC44547193B99C840DB700 /* RNCookieManagerIOS.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNCookieManagerIOS.m; path = ios/RNCookieManagerIOS/RNCookieManagerIOS.m; sourceTree = "<group>"; }; + 843CE0263333BE3F22348BA6A99B4224 /* raw_logging.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = raw_logging.h; path = src/glog/raw_logging.h; sourceTree = "<group>"; }; + 8446E1ECBC8E356830D0AD92EB9A084E /* RCTSubtractionAnimatedNode.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTSubtractionAnimatedNode.m; sourceTree = "<group>"; }; + 845F9E2043E6F0A9878A5A098678C69F /* MemoryFile_Win32.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = MemoryFile_Win32.cpp; path = Core/MemoryFile_Win32.cpp; sourceTree = "<group>"; }; + 8471010C6B4D961AEC95508431E578FB /* UMBarCodeScannerInterface.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = UMBarCodeScannerInterface.podspec; sourceTree = "<group>"; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; + 8487E2CA389C2872CE4D384E888CE6B9 /* RCTImageStoreManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTImageStoreManager.h; path = Libraries/Image/RCTImageStoreManager.h; sourceTree = "<group>"; }; + 848941C0343F09003EFA9E3BD5A3E5D7 /* FIRStackFrame.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRStackFrame.m; path = Crashlytics/Crashlytics/FIRStackFrame.m; sourceTree = "<group>"; }; + 848B80631BB2492604EA5772DED5CE53 /* Random-inl.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "Random-inl.h"; path = "folly/Random-inl.h"; sourceTree = "<group>"; }; + 84A31B1151BF5A6F7ED96F281DED34D8 /* GDTCORTargets.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = GDTCORTargets.h; path = GoogleDataTransport/GDTCORLibrary/Public/GoogleDataTransport/GDTCORTargets.h; sourceTree = "<group>"; }; + 84BC7F3D2DF062075DCDB5DDFE548AD4 /* Executor.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = Executor.cpp; path = folly/Executor.cpp; sourceTree = "<group>"; }; + 84BF5BF7E8E5171EAA5A94EB7DEE0FB1 /* UTF8String.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = UTF8String.h; path = folly/UTF8String.h; sourceTree = "<group>"; }; + 84C89852793C8922FF1D6719F61EECDF /* ExceptionWrapper.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ExceptionWrapper.h; path = folly/ExceptionWrapper.h; sourceTree = "<group>"; }; + 84D22347A70550A51F01CACB738F8696 /* SDWebImageDownloaderRequestModifier.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = SDWebImageDownloaderRequestModifier.m; path = SDWebImage/Core/SDWebImageDownloaderRequestModifier.m; sourceTree = "<group>"; }; + 84DD071B8E7F1F7C15941B897A4B8037 /* React-RCTNetwork.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "React-RCTNetwork.debug.xcconfig"; sourceTree = "<group>"; }; + 84EA6539FAAD1DC307A5A800A5718C58 /* RCTInputAccessoryViewManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTInputAccessoryViewManager.m; sourceTree = "<group>"; }; + 84F9ACFD0FB94E6C1932AEC5F8062C35 /* FIRCLSNetworkResponseHandler.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRCLSNetworkResponseHandler.h; path = Crashlytics/Shared/FIRCLSNetworking/FIRCLSNetworkResponseHandler.h; sourceTree = "<group>"; }; + 84FBA57EF83AB8BF7C5569DB8E1F6612 /* RCTRawTextViewManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTRawTextViewManager.h; sourceTree = "<group>"; }; + 85247E76FEDDA0708B324800C21EF376 /* FIRInstallationsStoredAuthToken.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRInstallationsStoredAuthToken.h; path = FirebaseInstallations/Source/Library/InstallationsStore/FIRInstallationsStoredAuthToken.h; sourceTree = "<group>"; }; + 8529395CDBC6EFE68705E9AFD278C736 /* TurboModuleUtils.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; path = TurboModuleUtils.cpp; sourceTree = "<group>"; }; + 852FB1A3F85A83904943A8C9F5056B49 /* Hash.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Hash.h; path = folly/hash/Hash.h; sourceTree = "<group>"; }; + 852FF6549FCED144268825947D62173F /* lossless_enc_sse2.c */ = {isa = PBXFileReference; includeInIndex = 1; name = lossless_enc_sse2.c; path = src/dsp/lossless_enc_sse2.c; sourceTree = "<group>"; }; + 853183B8B501634F7E4E02AABCE471ED /* firebasecore.nanopb.c */ = {isa = PBXFileReference; includeInIndex = 1; name = firebasecore.nanopb.c; path = Firebase/CoreDiagnostics/FIRCDLibrary/Protogen/nanopb/firebasecore.nanopb.c; sourceTree = "<group>"; }; + 854AF6E897C7148E0D314B3C42A8586E /* SafeAreaManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = SafeAreaManager.m; sourceTree = "<group>"; }; + 854CEF65AAB084A85CBE3089CB2D760F /* BugsnagStacktrace.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BugsnagStacktrace.h; sourceTree = "<group>"; }; 856B5CD56F194FAD26EA91620B66D614 /* libGoogleDataTransport.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; name = libGoogleDataTransport.a; path = libGoogleDataTransport.a; sourceTree = BUILT_PRODUCTS_DIR; }; - 8571823AA5D946194320312B28D9AEEF /* JSIDynamic.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; path = JSIDynamic.cpp; sourceTree = "<group>"; }; - 85782E5A0FDBD520761C5860C266BA68 /* RNGestureHandlerButton.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNGestureHandlerButton.h; path = ios/RNGestureHandlerButton.h; sourceTree = "<group>"; }; - 8579EF0DCAD00BFCB49994109AB73B0D /* RCTDatePickerManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTDatePickerManager.h; sourceTree = "<group>"; }; - 857B28839350C25A775AB9D97BFFFE9B /* FBLPromise+Catch.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "FBLPromise+Catch.h"; path = "Sources/FBLPromises/include/FBLPromise+Catch.h"; sourceTree = "<group>"; }; - 85850D0F4EDDE83B68C1D3E63B63EB40 /* BugsnagSessionTrackingApiClient.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = BugsnagSessionTrackingApiClient.m; sourceTree = "<group>"; }; + 856CB21103FF0F282DA8E8107A242F46 /* BugsnagCrashSentry.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = BugsnagCrashSentry.m; sourceTree = "<group>"; }; + 857C068BB3BC753DC382372AF7C840C5 /* RNNotificationUtils.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNNotificationUtils.h; path = RNNotifications/RNNotificationUtils.h; sourceTree = "<group>"; }; + 858A91D35A289C13652BDBFA8EA801DB /* FIRErrorCode.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRErrorCode.h; path = FirebaseCore/Sources/Private/FIRErrorCode.h; sourceTree = "<group>"; }; 858AFA83985937825473045CF6808B15 /* librn-extensions-share.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; name = "librn-extensions-share.a"; path = "librn-extensions-share.a"; sourceTree = BUILT_PRODUCTS_DIR; }; - 859B9C5CC2B046D642D6E37D5EC38A39 /* ReactNativeUiLib.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = ReactNativeUiLib.debug.xcconfig; sourceTree = "<group>"; }; - 85BCB73B53578F6422484F9D3075B556 /* GULNetwork.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = GULNetwork.h; path = GoogleUtilities/Network/Private/GULNetwork.h; sourceTree = "<group>"; }; - 85CCC568F8B4853890D4002955C643F0 /* histogram_enc.c */ = {isa = PBXFileReference; includeInIndex = 1; name = histogram_enc.c; path = src/enc/histogram_enc.c; sourceTree = "<group>"; }; - 85DF6CE874D2DF49B49C7EEA5F4E7BD7 /* RCTScrollViewManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTScrollViewManager.m; sourceTree = "<group>"; }; - 85E337353277B5A943B144A297742D26 /* Request.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = Request.cpp; path = folly/io/async/Request.cpp; sourceTree = "<group>"; }; - 85E37AF30AB738B8B5EFA1D488C0E827 /* RCTNativeAnimatedNodesManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTNativeAnimatedNodesManager.m; sourceTree = "<group>"; }; - 85E941E45C8BA1C7C836427904213DD1 /* Restart.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = Restart.m; path = ios/Restart.m; sourceTree = "<group>"; }; - 85EBAEA75FFA7DD5F1973B6C687C2441 /* UMErrorCodes.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = UMErrorCodes.h; path = UMCore/UMErrorCodes.h; sourceTree = "<group>"; }; - 85EC70A6AA577F3618C422F6509F6B57 /* FBReactNativeSpec.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = FBReactNativeSpec.release.xcconfig; sourceTree = "<group>"; }; - 85F0409B00976E265E97759FCCD27E57 /* RNCSafeAreaView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNCSafeAreaView.h; path = ios/SafeAreaView/RNCSafeAreaView.h; sourceTree = "<group>"; }; - 860239C88599BC26C8132EA2A3B02158 /* FixedString.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FixedString.h; path = folly/FixedString.h; sourceTree = "<group>"; }; - 8615DB1436F8371A8275C4ACBDA47BFC /* React-RCTNetwork.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "React-RCTNetwork.debug.xcconfig"; sourceTree = "<group>"; }; - 862386D325E2D34453FACDF8BC1C8191 /* SocketAddress.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SocketAddress.h; path = folly/SocketAddress.h; sourceTree = "<group>"; }; - 8628666FA737EDC5296AE41BD832DECF /* DelayedDestruction.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = DelayedDestruction.h; path = folly/io/async/DelayedDestruction.h; sourceTree = "<group>"; }; + 858DFF766011288A0CAD951A97205936 /* bignum.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = bignum.h; path = "double-conversion/bignum.h"; sourceTree = "<group>"; }; + 859AF4488EA571ABE765C273F5099CED /* RCTMultilineTextInputViewManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTMultilineTextInputViewManager.h; sourceTree = "<group>"; }; + 859F6EFC95278A09770816A93CF33F33 /* MemoryFile_OSX.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = MemoryFile_OSX.cpp; path = Core/MemoryFile_OSX.cpp; sourceTree = "<group>"; }; + 85A78365230325A0B6589BF873CCE701 /* predictor_enc.c */ = {isa = PBXFileReference; includeInIndex = 1; name = predictor_enc.c; path = src/enc/predictor_enc.c; sourceTree = "<group>"; }; + 85B3131B3BE42565EBCF1FC623E68D8B /* GULNetwork.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = GULNetwork.h; path = GoogleUtilities/Network/Private/GULNetwork.h; sourceTree = "<group>"; }; + 85B346A386483FBE901C171E2EC342F5 /* FIRCLSNetworkClient.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRCLSNetworkClient.m; path = Crashlytics/Crashlytics/Controllers/FIRCLSNetworkClient.m; sourceTree = "<group>"; }; + 85C10B4EE4D621E5ABCD7FDCEAAD2AC2 /* README.md */ = {isa = PBXFileReference; includeInIndex = 1; path = README.md; sourceTree = "<group>"; }; + 85C5E583C34060CFAC90E15745B7EBC6 /* EXKeepAwake.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = EXKeepAwake.h; path = EXKeepAwake/EXKeepAwake.h; sourceTree = "<group>"; }; + 85D0A74E26F96DFCC1EAA6DE329DCBB0 /* react-native-cookies.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "react-native-cookies.release.xcconfig"; sourceTree = "<group>"; }; + 85E65AC36ED8401F5C93F850A55F9EAA /* ThreadWheelTimekeeper.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ThreadWheelTimekeeper.h; path = folly/futures/ThreadWheelTimekeeper.h; sourceTree = "<group>"; }; + 85F73654092BD3D6F64B5A58B90BB4CD /* FIRErrorCode.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRErrorCode.h; path = FirebaseCore/Sources/Private/FIRErrorCode.h; sourceTree = "<group>"; }; + 85F8663181D4BEFD7B47A1D9A9981D4A /* OpenSSLPtrTypes.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = OpenSSLPtrTypes.h; path = folly/ssl/OpenSSLPtrTypes.h; sourceTree = "<group>"; }; + 8606F646A8CB95D290ADED17916FB4C9 /* AsyncUDPServerSocket.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = AsyncUDPServerSocket.h; path = folly/io/async/AsyncUDPServerSocket.h; sourceTree = "<group>"; }; + 8609E8579BA1CCBA984F733DF5270E34 /* UIView+WebCacheOperation.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "UIView+WebCacheOperation.h"; path = "SDWebImage/Core/UIView+WebCacheOperation.h"; sourceTree = "<group>"; }; 86375444C196BA272DDBB8165BF64A15 /* libFirebaseCrashlytics.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; name = libFirebaseCrashlytics.a; path = libFirebaseCrashlytics.a; sourceTree = BUILT_PRODUCTS_DIR; }; - 8645C0A09204F941254F04AFF321631B /* MemoryMapping.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = MemoryMapping.cpp; path = folly/system/MemoryMapping.cpp; sourceTree = "<group>"; }; - 8658DD24119E5EAE6FFA7E2582255C55 /* BugsnagConfiguration+Private.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "BugsnagConfiguration+Private.h"; sourceTree = "<group>"; }; - 8664497135BCFA9897D91A8767C2B915 /* TypeInfo.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = TypeInfo.h; path = folly/lang/TypeInfo.h; sourceTree = "<group>"; }; - 867184BCA9B2D56CB73DAE176DC85425 /* REAClockNodes.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = REAClockNodes.h; sourceTree = "<group>"; }; - 867B29A1250B07A84E8BC281E2916F23 /* FIRErrorCode.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRErrorCode.h; path = FirebaseCore/Sources/Private/FIRErrorCode.h; sourceTree = "<group>"; }; - 868B8F033FCD7483A5C51ED38B9A065C /* FBReactNativeSpec.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = FBReactNativeSpec.debug.xcconfig; sourceTree = "<group>"; }; - 8698DF0DE08A137A8C816089106F8DA6 /* RCTCxxBridge.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTCxxBridge.mm; sourceTree = "<group>"; }; - 86A4D1DD994C66B202FFE6800530D499 /* BugsnagThread.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BugsnagThread.h; sourceTree = "<group>"; }; - 86AA0BB8AB1F81709D8DAE74879B068D /* RCTAsyncLocalStorage.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTAsyncLocalStorage.mm; sourceTree = "<group>"; }; - 86B97EE47635299C9D8446981F698087 /* ExceptionWrapper.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ExceptionWrapper.h; path = folly/ExceptionWrapper.h; sourceTree = "<group>"; }; - 86C8AFAF52D4784EC7065D0D01FB286C /* Future-inl.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "Future-inl.h"; path = "folly/futures/Future-inl.h"; sourceTree = "<group>"; }; - 86C9BD0FB1C49F89C85AB3AEE0919D46 /* GlobalThreadPoolList.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = GlobalThreadPoolList.cpp; path = folly/executors/GlobalThreadPoolList.cpp; sourceTree = "<group>"; }; - 86D3CC47B0C340A700E877DEF908FAA8 /* SKScrollViewDescriptor.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = SKScrollViewDescriptor.m; path = iOS/Plugins/FlipperKitLayoutPlugin/FlipperKitLayoutPlugin/descriptors/SKScrollViewDescriptor.m; sourceTree = "<group>"; }; - 86D860598D8AF40A45A7B59E29840C40 /* RCTTiming.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTTiming.mm; sourceTree = "<group>"; }; - 86D9281E1BAC373B598A7CD54FB33844 /* Flipper-RSocket.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "Flipper-RSocket.debug.xcconfig"; sourceTree = "<group>"; }; - 86DB9FF8A5FF212C97C3C37B038AAD4A /* AsyncSocketBase.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = AsyncSocketBase.h; path = folly/io/async/AsyncSocketBase.h; sourceTree = "<group>"; }; - 86DBDB5227F92345841DF5233237B253 /* Types.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Types.h; path = folly/futures/detail/Types.h; sourceTree = "<group>"; }; - 86E61A981CF42C4B23BAB5518A622CB0 /* BugsnagApp.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = BugsnagApp.m; sourceTree = "<group>"; }; - 86F6DE72AF784651FC53232D648747AE /* react-native-simple-crypto-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "react-native-simple-crypto-dummy.m"; sourceTree = "<group>"; }; - 871379DC580A9906566837C1B872A61C /* MMKV.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = MMKV.h; path = iOS/MMKV/MMKV/MMKV.h; sourceTree = "<group>"; }; - 872D2FCB86AC74686DC67A7EE65FA3A1 /* REAUtils.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = REAUtils.h; path = ios/REAUtils.h; sourceTree = "<group>"; }; - 8731BAC61933E776D4154A97D7F4D917 /* fi.lproj */ = {isa = PBXFileReference; includeInIndex = 1; name = fi.lproj; path = "Objective-C/TOCropViewController/Resources/fi.lproj"; sourceTree = "<group>"; }; - 8759EFD10AA0DA5C62FA058D4B47E9E9 /* RWSpinLock.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RWSpinLock.h; path = folly/synchronization/RWSpinLock.h; sourceTree = "<group>"; }; - 876151ECB586864624FAF9EE49CA3D76 /* React-jsiexecutor-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "React-jsiexecutor-prefix.pch"; sourceTree = "<group>"; }; - 876DB1F6D29925E73C087F2C3AB36795 /* SysStat.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SysStat.h; path = folly/portability/SysStat.h; sourceTree = "<group>"; }; - 87787F196653CC71282BF0F30B7D5C0A /* FlipperResponder.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FlipperResponder.h; path = iOS/FlipperKit/FlipperResponder.h; sourceTree = "<group>"; }; - 877E589A8BF687225F8BDA9BB84A5517 /* FIRCLSMachOBinary.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRCLSMachOBinary.h; path = Crashlytics/Shared/FIRCLSMachO/FIRCLSMachOBinary.h; sourceTree = "<group>"; }; - 8784FBC1C5E137B83281BBDA13166A55 /* CacheLocality.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = CacheLocality.h; path = folly/concurrency/CacheLocality.h; sourceTree = "<group>"; }; - 8788C27754B696BDA8DD6600A957E14B /* AESCrypt.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = AESCrypt.h; path = Core/aes/AESCrypt.h; sourceTree = "<group>"; }; - 87D361A17427A801DBF47CD2D9BFCC01 /* strtod.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = strtod.cc; path = "double-conversion/strtod.cc"; sourceTree = "<group>"; }; - 87E47624EA5966C953C89E28C2FA8F10 /* RCTAnimatedNode.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTAnimatedNode.m; sourceTree = "<group>"; }; - 87EF8DAC74FFF7785C03693CE6ED7236 /* NSError+BSG_SimpleConstructor.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "NSError+BSG_SimpleConstructor.h"; sourceTree = "<group>"; }; - 87F2CBC95E98D64C0ADA8517411FE08D /* RCTSurfaceRootView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTSurfaceRootView.h; sourceTree = "<group>"; }; - 87F3ACB4AF1829993FE242559CF76FCA /* RCTImageBlurUtils.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTImageBlurUtils.h; path = Libraries/Image/RCTImageBlurUtils.h; sourceTree = "<group>"; }; - 87FB3BAE4C0608D564B86E1ED9EE89A7 /* KeyCommands-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "KeyCommands-prefix.pch"; sourceTree = "<group>"; }; - 880C9C45607A70557E9BA69E0F44E00D /* BSG_KSObjC.c */ = {isa = PBXFileReference; includeInIndex = 1; path = BSG_KSObjC.c; sourceTree = "<group>"; }; - 88397D67F1AC5325B9C5CDF7112BF6CF /* DoubleConversion.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = DoubleConversion.debug.xcconfig; sourceTree = "<group>"; }; - 883E39C9150F6F0FFA19107EE0D2FC9E /* SDWebImageIndicator.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SDWebImageIndicator.h; path = SDWebImage/Core/SDWebImageIndicator.h; sourceTree = "<group>"; }; - 88503417B54D3757756715839F7FDEE0 /* RNLocalize.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNLocalize.m; path = ios/RNLocalize.m; sourceTree = "<group>"; }; - 885292AF47B79C9F9792145F265F4642 /* GDTCORReachability.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = GDTCORReachability.h; path = GoogleDataTransport/GDTCORLibrary/Public/GDTCORReachability.h; sourceTree = "<group>"; }; - 885E67E45CB9292D54C7AE825D2CC130 /* RNSScreenContainer.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNSScreenContainer.m; path = ios/RNSScreenContainer.m; sourceTree = "<group>"; }; - 88924A7F0E7ED8E66C1C0A3ABE595DE3 /* React-RCTAnimation-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "React-RCTAnimation-dummy.m"; sourceTree = "<group>"; }; - 88F8A7279BB40AE2387BE1D231002F03 /* FIRCLSNetworkOperation.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRCLSNetworkOperation.h; path = Crashlytics/Crashlytics/Settings/Operations/FIRCLSNetworkOperation.h; sourceTree = "<group>"; }; - 8907F3F77CF6C50D7C220B4046CFA9A7 /* AtomicStruct.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = AtomicStruct.h; path = folly/synchronization/AtomicStruct.h; sourceTree = "<group>"; }; - 8909D94BC2491628F567748899BADD31 /* rn-extensions-share.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "rn-extensions-share.release.xcconfig"; sourceTree = "<group>"; }; - 8910ED61EA488A224272FCA22AD8C114 /* SKHiddenWindow.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = SKHiddenWindow.m; path = iOS/Plugins/FlipperKitLayoutPlugin/FlipperKitLayoutPlugin/utils/SKHiddenWindow.m; sourceTree = "<group>"; }; - 896D88B2987A64FD6E6A606176592663 /* RCTFPSGraph.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTFPSGraph.m; sourceTree = "<group>"; }; - 897624EA4822C72FCC452205A90DFCEE /* AtomicUtil.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = AtomicUtil.h; path = folly/synchronization/AtomicUtil.h; sourceTree = "<group>"; }; - 8987A4D1D0660908F0E583A0A5E1D8EC /* GlobalThreadPoolList.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = GlobalThreadPoolList.h; path = folly/executors/GlobalThreadPoolList.h; sourceTree = "<group>"; }; + 8656089DAEFB6028E24A6CAA13C2D7EB /* RCTAes.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RCTAes.m; path = ios/RCTCrypto/RCTAes.m; sourceTree = "<group>"; }; + 866281292A2FFDF8E8CAC629D7B98DA1 /* GDTCORAssert.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = GDTCORAssert.m; path = GoogleDataTransport/GDTCORLibrary/GDTCORAssert.m; sourceTree = "<group>"; }; + 8664E5B2718F9802247E1F3B386F19BB /* TimedDrivableExecutor.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = TimedDrivableExecutor.h; path = folly/executors/TimedDrivableExecutor.h; sourceTree = "<group>"; }; + 866840E0C2491C06E2E8070A1943FE07 /* RCTProgressViewManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTProgressViewManager.m; sourceTree = "<group>"; }; + 867EB193F8D290E223001EE4A386153A /* ThreadName.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = ThreadName.cpp; path = folly/system/ThreadName.cpp; sourceTree = "<group>"; }; + 86815C35A8BE9B52F690C4BF4C24EDBD /* ReactNativeVersion.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = ReactNativeVersion.h; sourceTree = "<group>"; }; + 8695161EF7E1488C1979CE1D901E53C6 /* Sockets.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = Sockets.cpp; path = folly/portability/Sockets.cpp; sourceTree = "<group>"; }; + 8696586383D5D0415F1A652D22EBC9C1 /* CString.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = CString.cpp; path = folly/lang/CString.cpp; sourceTree = "<group>"; }; + 869754DDE959C7E400237B22174C56C9 /* RNGestureHandler.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = RNGestureHandler.debug.xcconfig; sourceTree = "<group>"; }; + 86A048299409FEBFFC7727EBCD3377F0 /* RNCSlider.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNCSlider.h; path = ios/RNCSlider.h; sourceTree = "<group>"; }; + 86A212C5E3B3DA33A5250FFA9E9D75AB /* RCTMacros.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTMacros.h; sourceTree = "<group>"; }; + 86A4426DD63E7A4BDC238B788AD83214 /* UIImage+ExtendedCacheData.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "UIImage+ExtendedCacheData.m"; path = "SDWebImage/Core/UIImage+ExtendedCacheData.m"; sourceTree = "<group>"; }; + 86AA43354781EB3FC10AB9F51D4CE599 /* UMGyroscopeInterface.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = UMGyroscopeInterface.h; path = UMSensorsInterface/UMGyroscopeInterface.h; sourceTree = "<group>"; }; + 86B01BC34D95DA92361410E019C8A9A2 /* IPAddress.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = IPAddress.h; path = folly/IPAddress.h; sourceTree = "<group>"; }; + 86D2FEDC6B5F5E3D2B2B115286B8EB8A /* AtomicRef.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = AtomicRef.h; path = folly/synchronization/AtomicRef.h; sourceTree = "<group>"; }; + 86D87D5369397F87F8CA5DBEC4A1A801 /* EXFileSystem.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = EXFileSystem.release.xcconfig; sourceTree = "<group>"; }; + 86E622B354BC8BF6AB06EA1630F4405D /* ProducerConsumerQueue.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ProducerConsumerQueue.h; path = folly/ProducerConsumerQueue.h; sourceTree = "<group>"; }; + 8703DFD1F725D7C531E5DE2D2D24D58C /* filters_utils.c */ = {isa = PBXFileReference; includeInIndex = 1; name = filters_utils.c; path = src/utils/filters_utils.c; sourceTree = "<group>"; }; + 871C5BCD33D1119E788F8747037FECAB /* React-CoreModules.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = "React-CoreModules.podspec"; sourceTree = "<group>"; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; + 872622AD9816DC9AA672A56FE3022EA4 /* React-jsi.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "React-jsi.release.xcconfig"; sourceTree = "<group>"; }; + 87284BED37995C2117B9CE0C9079C3B2 /* RCTEventAnimation.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTEventAnimation.m; sourceTree = "<group>"; }; + 873DA728CDF6509E742A2C1A707C07B7 /* RCTImageLoader.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTImageLoader.h; path = Libraries/Image/RCTImageLoader.h; sourceTree = "<group>"; }; + 873F8ECACC5B3D4A0E4C64AF3AE47B17 /* RCTProfile.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTProfile.h; sourceTree = "<group>"; }; + 87413EB62FE0622ED938C3FEC62C3B72 /* RWSpinLock.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RWSpinLock.h; path = folly/RWSpinLock.h; sourceTree = "<group>"; }; + 874365B75630330AB4C1AB7AF0F05BA7 /* RCTObjcExecutor.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTObjcExecutor.h; sourceTree = "<group>"; }; + 87628F3E74C1F185BDD7E4430CED5C1F /* RCTInputAccessoryViewManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTInputAccessoryViewManager.h; sourceTree = "<group>"; }; + 876BC048C46BD2A30D7247DE9535BB0F /* picture_csp_enc.c */ = {isa = PBXFileReference; includeInIndex = 1; name = picture_csp_enc.c; path = src/enc/picture_csp_enc.c; sourceTree = "<group>"; }; + 876EBA8CB774461F4DF92A66C46C4478 /* FIRCLSFCRAnalytics.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRCLSFCRAnalytics.m; path = Crashlytics/Crashlytics/Helpers/FIRCLSFCRAnalytics.m; sourceTree = "<group>"; }; + 877A93CC3BCA1A046A2B37CE4F41BD49 /* FIRHeartbeatInfo.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRHeartbeatInfo.h; path = FirebaseCore/Sources/Private/FIRHeartbeatInfo.h; sourceTree = "<group>"; }; + 877BECEB1BD5EA2DE13BF5C420F82C7C /* RCTAppState.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTAppState.mm; sourceTree = "<group>"; }; + 878D7EB845B053BF5D08C8D05A2E3B35 /* FIRInteropEventNames.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRInteropEventNames.h; path = Interop/Analytics/Public/FIRInteropEventNames.h; sourceTree = "<group>"; }; + 87A1D7E27F251CB29B909F0DB4FA2B9F /* UMViewManagerAdapterClassesRegistry.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = UMViewManagerAdapterClassesRegistry.m; sourceTree = "<group>"; }; + 87BFE9FCF390938D469B498A36BE6C69 /* Hazptr-fwd.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "Hazptr-fwd.h"; path = "folly/synchronization/Hazptr-fwd.h"; sourceTree = "<group>"; }; + 87C00BCC33C5E8F2D5446C505FFE2938 /* AsyncTrace.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = AsyncTrace.h; path = folly/detail/AsyncTrace.h; sourceTree = "<group>"; }; + 87CD7BBC73225B28898DB1170D2A4ABC /* FlipperKitLayoutPlugin.mm */ = {isa = PBXFileReference; includeInIndex = 1; name = FlipperKitLayoutPlugin.mm; path = iOS/Plugins/FlipperKitLayoutPlugin/FlipperKitLayoutPlugin/FlipperKitLayoutPlugin.mm; sourceTree = "<group>"; }; + 87EE099A2FA7249C71DA0EEFE4D874C6 /* BugsnagUser.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BugsnagUser.h; sourceTree = "<group>"; }; + 880AE41B2B3D9C41D0C32762C5E330D8 /* SDmetamacros.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SDmetamacros.h; path = SDWebImage/Private/SDmetamacros.h; sourceTree = "<group>"; }; + 880CC022B3A49C85900B12E8E5D40565 /* WTCallback.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = WTCallback.h; path = folly/futures/WTCallback.h; sourceTree = "<group>"; }; + 882D99F716F206FFC588CDC394578B99 /* Array.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Array.h; path = folly/container/Array.h; sourceTree = "<group>"; }; + 8830792B869914D4B37C64CD3D5FABC9 /* FIRCLSSymbolicationOperation.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRCLSSymbolicationOperation.m; path = Crashlytics/Crashlytics/Operations/Symbolication/FIRCLSSymbolicationOperation.m; sourceTree = "<group>"; }; + 883107563F2F824E99F911C228B6A82F /* FIRInstallationsStatus.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRInstallationsStatus.h; path = FirebaseInstallations/Source/Library/InstallationsIDController/FIRInstallationsStatus.h; sourceTree = "<group>"; }; + 8839B0BB5CA1C81AA59B3A235D579ADF /* PolyException.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = PolyException.h; path = folly/PolyException.h; sourceTree = "<group>"; }; + 883E49195B7635B773600BD4C99DF71E /* JSBigString.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; path = JSBigString.cpp; sourceTree = "<group>"; }; + 8842C6C62B8EB97000D0DB9D8C3CD5ED /* TOActivityCroppedImageProvider.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = TOActivityCroppedImageProvider.h; path = "Objective-C/TOCropViewController/Models/TOActivityCroppedImageProvider.h"; sourceTree = "<group>"; }; + 8858FF334D5274ECA287E8F4500FE701 /* upsampling_mips_dsp_r2.c */ = {isa = PBXFileReference; includeInIndex = 1; name = upsampling_mips_dsp_r2.c; path = src/dsp/upsampling_mips_dsp_r2.c; sourceTree = "<group>"; }; + 8860396888A40AA2D0F453E8FEE384A0 /* BSG_KSObjCApple.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BSG_KSObjCApple.h; sourceTree = "<group>"; }; + 88607196F9F59E4FB83FF232C7A6D42B /* RCTModuleMethod.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTModuleMethod.mm; sourceTree = "<group>"; }; + 88634999BAA1C0342A70D48584930D65 /* hu.lproj */ = {isa = PBXFileReference; includeInIndex = 1; name = hu.lproj; path = "Objective-C/TOCropViewController/Resources/hu.lproj"; sourceTree = "<group>"; }; + 88747D90A0585A2F954ECD755B50F9BD /* 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 = "<group>"; }; + 887795AF5F1D1CEA41FD0AD780381379 /* random_utils.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = random_utils.h; path = src/utils/random_utils.h; sourceTree = "<group>"; }; + 888E9E85FBD7EDEB00EA983CE35E6C30 /* Sched.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = Sched.cpp; path = folly/portability/Sched.cpp; sourceTree = "<group>"; }; + 88A2A098F8A88DAB651515192E8A6D7B /* RNCAppearance.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNCAppearance.h; path = ios/Appearance/RNCAppearance.h; sourceTree = "<group>"; }; + 88A324E2CF5D2EA60403FF1941DA90A4 /* RangeCommon.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RangeCommon.h; path = folly/detail/RangeCommon.h; sourceTree = "<group>"; }; + 88A8CF9386ABA2C010DC8E6EFC5AA440 /* SDWebImageTransition.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SDWebImageTransition.h; path = SDWebImage/Core/SDWebImageTransition.h; sourceTree = "<group>"; }; + 88AAEC9F99131932B7EC1EAD8F0B0DC0 /* FingerprintPolynomial.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FingerprintPolynomial.h; path = folly/detail/FingerprintPolynomial.h; sourceTree = "<group>"; }; + 88C029A7ED9C2B67B1F4E99BF9082AD8 /* RNFBUtilsModule.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNFBUtilsModule.m; path = ios/RNFBApp/RNFBUtilsModule.m; sourceTree = "<group>"; }; + 88D064A435C820E2896C2463E3AA9F9F /* RNDateTimePicker-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "RNDateTimePicker-dummy.m"; sourceTree = "<group>"; }; + 88E65AF4784A3341EFB299F0A78B0352 /* LICENSE */ = {isa = PBXFileReference; includeInIndex = 1; path = LICENSE; sourceTree = "<group>"; }; + 8902394B5A4A6D2CA6512A17D9955204 /* EXImageLoader.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = EXImageLoader.podspec; sourceTree = "<group>"; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; + 890DBE2775C6B20E13D2BCB165968CF4 /* RCTDiffClampAnimatedNode.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTDiffClampAnimatedNode.m; sourceTree = "<group>"; }; + 893965F8A6D89A6F87F467824F72FAB8 /* F14Table.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = F14Table.h; path = folly/container/detail/F14Table.h; sourceTree = "<group>"; }; + 89445D944710DD22FFEDB2D88CFD8060 /* FlipperClient.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = FlipperClient.cpp; path = xplat/Flipper/FlipperClient.cpp; sourceTree = "<group>"; }; + 89519AAA023D40C815D13A2C6446F331 /* RNFetchBlobFS.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNFetchBlobFS.h; path = ios/RNFetchBlobFS.h; sourceTree = "<group>"; }; + 8954E515C9EA5FE1276F0B6305ABA5B5 /* mips_macro.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = mips_macro.h; path = src/dsp/mips_macro.h; sourceTree = "<group>"; }; + 89619E54E3FF09F4B7C805485250D150 /* NotificationQueue.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = NotificationQueue.h; path = folly/io/async/NotificationQueue.h; sourceTree = "<group>"; }; + 8975E292CEEE3C61037D2441278175AB /* DelayedDestruction.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = DelayedDestruction.h; path = folly/io/async/DelayedDestruction.h; sourceTree = "<group>"; }; + 897876E2437844D406605450A3332829 /* RCTModalHostViewManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTModalHostViewManager.h; sourceTree = "<group>"; }; 8998273719FDD789E6F9C7541AFD0B33 /* libRNVectorIcons.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; name = libRNVectorIcons.a; path = libRNVectorIcons.a; sourceTree = BUILT_PRODUCTS_DIR; }; - 89A476ACB3FE57D02EC16766114B7E08 /* threadsafe.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = threadsafe.h; sourceTree = "<group>"; }; - 89D1E92791BD83D34D81B52060907553 /* RCTJavaScriptExecutor.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTJavaScriptExecutor.h; sourceTree = "<group>"; }; - 89DBA7C561C5E445FC40A52A05441870 /* FIRAppAssociationRegistration.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRAppAssociationRegistration.h; path = FirebaseCore/Sources/FIRAppAssociationRegistration.h; sourceTree = "<group>"; }; - 89E52F7FC20434097820D21A19F7A961 /* FBLPromise+Wrap.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "FBLPromise+Wrap.h"; path = "Sources/FBLPromises/include/FBLPromise+Wrap.h"; sourceTree = "<group>"; }; - 89E76C6091B3365DFAFAB90BF5C9CFDF /* RCTBlobPlugins.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTBlobPlugins.mm; sourceTree = "<group>"; }; - 89E93430F71A71DBFADC0D1285DF7A14 /* EXFileSystem.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = EXFileSystem.release.xcconfig; sourceTree = "<group>"; }; - 89F8DA17B84406296466CA0BD7774307 /* StreamThroughputTcp.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = StreamThroughputTcp.cpp; path = rsocket/benchmarks/StreamThroughputTcp.cpp; sourceTree = "<group>"; }; - 8A097A82EB5F9568D3CD84603C037131 /* GDTCORDataFuture.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = GDTCORDataFuture.h; path = GoogleDataTransport/GDTCORLibrary/Private/GDTCORDataFuture.h; sourceTree = "<group>"; }; - 8A3DB7B67BAC8384B203734EB780A8EA /* FIRCLSReportAdapter.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRCLSReportAdapter.h; path = Crashlytics/Crashlytics/Models/Record/FIRCLSReportAdapter.h; sourceTree = "<group>"; }; - 8A4F992D9FCFC9A6A3E8F32CA25A1412 /* EXPermissions.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = EXPermissions.podspec; sourceTree = "<group>"; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; - 8A53EC9FB8607A9EC1BD5F88AE6F883E /* UMViewManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = UMViewManager.h; path = UMCore/UMViewManager.h; sourceTree = "<group>"; }; - 8A55EA8DB6FFFDD98AC945B1B3D554C6 /* GroupVarint.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = GroupVarint.h; path = folly/GroupVarint.h; sourceTree = "<group>"; }; - 8A8419792B253793EEFA61EE8E0A6E9E /* ThreadPoolExecutor.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ThreadPoolExecutor.h; path = folly/executors/ThreadPoolExecutor.h; sourceTree = "<group>"; }; - 8A8E9CFBF687EC1E6D5F284EC2205B4D /* ro.lproj */ = {isa = PBXFileReference; includeInIndex = 1; name = ro.lproj; path = "Objective-C/TOCropViewController/Resources/ro.lproj"; sourceTree = "<group>"; }; - 8AA2A7AA72B24124B829115293D735E6 /* react-native-restart.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "react-native-restart.debug.xcconfig"; sourceTree = "<group>"; }; - 8AA602DCBEEDEA49A0A583EEDCF0ACFC /* RCTDecayAnimation.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTDecayAnimation.h; sourceTree = "<group>"; }; - 8AA93F829781BB82572A2B7D14A93599 /* ReactNativeUiLib.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = ReactNativeUiLib.release.xcconfig; sourceTree = "<group>"; }; - 8AAD0CD25566C3DF95A09CE18005BFDD /* RNFBVersion.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNFBVersion.m; path = ios/RNFBApp/RNFBVersion.m; sourceTree = "<group>"; }; - 8ABA4E5F665B0B8B414DBC00C6F5F45A /* FlipperKitNetworkPlugin.mm */ = {isa = PBXFileReference; includeInIndex = 1; name = FlipperKitNetworkPlugin.mm; path = iOS/Plugins/FlipperKitNetworkPlugin/FlipperKitNetworkPlugin/FlipperKitNetworkPlugin.mm; sourceTree = "<group>"; }; - 8AC9189025B8BE1B454FF175813E2356 /* RNFetchBlobReqBuilder.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNFetchBlobReqBuilder.h; path = ios/RNFetchBlobReqBuilder.h; sourceTree = "<group>"; }; - 8ACA5A3A6CD82F1DFA5BA81BA8BA4E2B /* yuv_mips_dsp_r2.c */ = {isa = PBXFileReference; includeInIndex = 1; name = yuv_mips_dsp_r2.c; path = src/dsp/yuv_mips_dsp_r2.c; sourceTree = "<group>"; }; - 8ACE9792D970512C40AB945A7A2B9C24 /* RNLocalize-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "RNLocalize-prefix.pch"; sourceTree = "<group>"; }; - 8AD0F0D4592049D910132658A22E08AB /* RCTManagedPointer.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTManagedPointer.mm; sourceTree = "<group>"; }; - 8ADD9A407E7D7F73D4235E69A029B08D /* Conv.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = Conv.cpp; path = folly/Conv.cpp; sourceTree = "<group>"; }; - 8AE6FF8CF2D49101587FD8DFC0377561 /* TcpConnectionFactory.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = TcpConnectionFactory.h; path = rsocket/transports/tcp/TcpConnectionFactory.h; sourceTree = "<group>"; }; - 8AE7CE9F04ED973A0AB63ADFD39B84B0 /* MMKV.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = MMKV.h; path = Core/MMKV.h; sourceTree = "<group>"; }; - 8AFD581736261F2861B84FE2B7207D9B /* RValueReferenceWrapper.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RValueReferenceWrapper.h; path = folly/lang/RValueReferenceWrapper.h; sourceTree = "<group>"; }; - 8B03784A0DB6018C0A8088E56A9C06FB /* FIRCLSApplication.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRCLSApplication.m; path = Crashlytics/Crashlytics/Components/FIRCLSApplication.m; sourceTree = "<group>"; }; - 8B44F205BF9B9D8EE635E4D9543EFAF1 /* ScheduledFrameTransport.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = ScheduledFrameTransport.cpp; path = rsocket/framing/ScheduledFrameTransport.cpp; sourceTree = "<group>"; }; - 8B5EA7310EF8CC88530EBDC323C4F645 /* RNScreens-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "RNScreens-dummy.m"; sourceTree = "<group>"; }; - 8B7051532588B84E1D86679E3355DAE6 /* RNFetchBlobNetwork.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNFetchBlobNetwork.m; path = ios/RNFetchBlobNetwork.m; sourceTree = "<group>"; }; - 8B8B3AB8E994E97D8D8B5A5956B0383F /* BugsnagSessionTrackingPayload.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BugsnagSessionTrackingPayload.h; sourceTree = "<group>"; }; - 8BE1EDF4BEF9F1060858A53C96B4DFD3 /* RCTComponentData.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTComponentData.m; sourceTree = "<group>"; }; - 8BE6ADD1D1BE6811A03AFB71BBB1B55C /* RNFBAnalyticsModule.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNFBAnalyticsModule.m; path = ios/RNFBAnalytics/RNFBAnalyticsModule.m; sourceTree = "<group>"; }; - 8BEA84648DD179648D9C23A7512E5D32 /* RCTGIFImageDecoder.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTGIFImageDecoder.mm; sourceTree = "<group>"; }; - 8BFF647876CB7C31171CD68C2B2688E5 /* IPAddressV6.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = IPAddressV6.h; path = folly/IPAddressV6.h; sourceTree = "<group>"; }; - 8C02F3C11B8B542603922016BFECE1B3 /* RCTRequired.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = RCTRequired.podspec; sourceTree = "<group>"; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; - 8C1132CCBD5C35499E22128E3F54A07B /* jsilib.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = jsilib.h; sourceTree = "<group>"; }; - 8C1679586971637160054AD84FFF9389 /* MethodCall.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = MethodCall.h; sourceTree = "<group>"; }; - 8C2BF6D7D29BA84505F3F81A66087F40 /* Singleton.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Singleton.h; path = folly/Singleton.h; sourceTree = "<group>"; }; - 8C32EFB899197ECB36CD52A99530F9D3 /* SSLOptions.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = SSLOptions.cpp; path = folly/io/async/SSLOptions.cpp; sourceTree = "<group>"; }; + 89A788B18FC3CB1C4233F5338DF9D973 /* UMInternalModule.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = UMInternalModule.h; sourceTree = "<group>"; }; + 89BB2EDFC0267D4F5FCBD819ACA56339 /* CocoaAsyncSocket.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = CocoaAsyncSocket.release.xcconfig; sourceTree = "<group>"; }; + 89C0E030EA23067337E4B13B2B06A6E4 /* GULKeychainUtils.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = GULKeychainUtils.h; path = GoogleUtilities/Environment/Private/GULKeychainUtils.h; sourceTree = "<group>"; }; + 89C39962E92A4BF26CBB92F6138DCC8B /* RCTConvertHelpers.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTConvertHelpers.h; sourceTree = "<group>"; }; + 89C656AE8DDF5E63FDEEF5C082CDE4F5 /* IOObjectCache.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = IOObjectCache.h; path = folly/executors/IOObjectCache.h; sourceTree = "<group>"; }; + 89C96B793E2ABB5FB08EA692081D8C69 /* stop_watch.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = stop_watch.h; path = folly/stop_watch.h; sourceTree = "<group>"; }; + 89CB43CBD81D5A8BC8980EA6C602177E /* BSG_KSSysCtl.c */ = {isa = PBXFileReference; includeInIndex = 1; path = BSG_KSSysCtl.c; sourceTree = "<group>"; }; + 89CBFE37F954597846FB1ACA6B10E756 /* SDWebImageOptionsProcessor.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SDWebImageOptionsProcessor.h; path = SDWebImage/Core/SDWebImageOptionsProcessor.h; sourceTree = "<group>"; }; + 89D2CC2724EC9117594DEF1E1B16FCDF /* BSG_KSCrashType.c */ = {isa = PBXFileReference; includeInIndex = 1; path = BSG_KSCrashType.c; sourceTree = "<group>"; }; + 89D48EC8B67C6F816ED17B398EE23D95 /* ssim_sse2.c */ = {isa = PBXFileReference; includeInIndex = 1; name = ssim_sse2.c; path = src/dsp/ssim_sse2.c; sourceTree = "<group>"; }; + 89E3169DB4F256D17427041E992B6999 /* Spin.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Spin.h; path = folly/synchronization/detail/Spin.h; sourceTree = "<group>"; }; + 89EFEB908F793F34551438DE8C0039E9 /* HermesExecutorFactory.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; path = HermesExecutorFactory.cpp; sourceTree = "<group>"; }; + 89FB1F638C4BAA32C456717DD7F9D227 /* RCTConstants.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTConstants.m; sourceTree = "<group>"; }; + 8A041C096BF8FF454FEEBBDE428AAC96 /* SafeAreaSpacerViewManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = SafeAreaSpacerViewManager.m; sourceTree = "<group>"; }; + 8A1784689596DE6BE297AAC0C0775A4E /* FIRCLSDataCollectionToken.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRCLSDataCollectionToken.h; path = Crashlytics/Crashlytics/DataCollection/FIRCLSDataCollectionToken.h; sourceTree = "<group>"; }; + 8A2B295279CC63B26F161C681B8AD579 /* DoubleConversion-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "DoubleConversion-prefix.pch"; sourceTree = "<group>"; }; + 8A2C548B73AA2D5BB802DC260BA10D9A /* SDAssociatedObject.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SDAssociatedObject.h; path = SDWebImage/Private/SDAssociatedObject.h; sourceTree = "<group>"; }; + 8A3CD1724E34DA7DB517E1335B01419F /* SharedPromise-inl.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "SharedPromise-inl.h"; path = "folly/futures/SharedPromise-inl.h"; sourceTree = "<group>"; }; + 8A3DECD325F002CC7E736BE7DEFC7AD0 /* BSGFileLocations.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = BSGFileLocations.m; sourceTree = "<group>"; }; + 8A48FF7FA570E1B9E738C674D993E353 /* Util.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Util.h; path = folly/container/detail/Util.h; sourceTree = "<group>"; }; + 8A686452C19195C621FE11F0824B780C /* Unistd.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Unistd.h; path = folly/portability/Unistd.h; sourceTree = "<group>"; }; + 8A899A46E2ED8F4DF284B11457BD4CBA /* RCTNetworkTask.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTNetworkTask.h; path = Libraries/Network/RCTNetworkTask.h; sourceTree = "<group>"; }; + 8A903BF53090E11B707ACC949DCAE8F5 /* react-native-restart-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "react-native-restart-prefix.pch"; sourceTree = "<group>"; }; + 8AC4306C8753214EDCABE8E3DDEC8F54 /* fixed-dtoa.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = "fixed-dtoa.cc"; path = "double-conversion/fixed-dtoa.cc"; sourceTree = "<group>"; }; + 8AC43D079609983066D849416C5A1403 /* ManualTimekeeper.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = ManualTimekeeper.cpp; path = folly/futures/ManualTimekeeper.cpp; sourceTree = "<group>"; }; + 8AEAF0539C1E2A7D3AB5BDF7EAF0247E /* RCTSurfaceHostingProxyRootView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTSurfaceHostingProxyRootView.h; sourceTree = "<group>"; }; + 8B0AB493980953FD372BB8AE51D7E316 /* REAAllTransitions.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = REAAllTransitions.m; sourceTree = "<group>"; }; + 8B11C71699DC740A7D05AF64BC950BDD /* RCTNetworking.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTNetworking.mm; sourceTree = "<group>"; }; + 8B25F9FC1C5EE30742752D4DC22E5230 /* KeyValueHolder.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = KeyValueHolder.h; path = Core/KeyValueHolder.h; sourceTree = "<group>"; }; + 8B3B29EC8C2E4212C5941E52D6D74A3A /* Utils.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Utils.h; path = yoga/Utils.h; sourceTree = "<group>"; }; + 8B42A19F67132E1C6AB2FBCA32F5410D /* Enumerate.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Enumerate.h; path = folly/container/Enumerate.h; sourceTree = "<group>"; }; + 8B523D4F8EE3938CDA5AD7F4FC0AD84B /* GULAppDelegateSwizzler.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = GULAppDelegateSwizzler.m; path = GoogleUtilities/AppDelegateSwizzler/GULAppDelegateSwizzler.m; sourceTree = "<group>"; }; + 8B6866C798B95F624F633B93873652D3 /* FIRCLSMultipartMimeStreamEncoder.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRCLSMultipartMimeStreamEncoder.m; path = Crashlytics/Shared/FIRCLSNetworking/FIRCLSMultipartMimeStreamEncoder.m; sourceTree = "<group>"; }; + 8B80ACD405639A2127DD26743CE94C96 /* react-native-simple-crypto.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "react-native-simple-crypto.debug.xcconfig"; sourceTree = "<group>"; }; + 8B8C8CA38B97A952982286A04166D93A /* FIRLogger.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRLogger.m; path = FirebaseCore/Sources/FIRLogger.m; sourceTree = "<group>"; }; + 8BAD30A36D29548F628F420A0F4C8FC8 /* BugsnagPlatformConditional.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BugsnagPlatformConditional.h; sourceTree = "<group>"; }; + 8BB71BC185A6662B732F211659D872C7 /* FIRCLSReportUploader.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRCLSReportUploader.h; path = Crashlytics/Crashlytics/Controllers/FIRCLSReportUploader.h; sourceTree = "<group>"; }; + 8BB9A3156E531E27C6E092ACDCB58F0E /* SpookyHashV1.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = SpookyHashV1.cpp; path = folly/hash/SpookyHashV1.cpp; sourceTree = "<group>"; }; + 8BE0231B9D6DC76A34CC0C93D75E5284 /* GCDAsyncUdpSocket.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = GCDAsyncUdpSocket.h; path = Source/GCD/GCDAsyncUdpSocket.h; sourceTree = "<group>"; }; + 8BE0A8E494C0465711336CCCAFF41367 /* buffer_dec.c */ = {isa = PBXFileReference; includeInIndex = 1; name = buffer_dec.c; path = src/dec/buffer_dec.c; sourceTree = "<group>"; }; + 8BE2B495AB39DC5BC0A14688CBF90625 /* YGLayout.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = YGLayout.m; path = YogaKit/Source/YGLayout.m; sourceTree = "<group>"; }; + 8C06E9E4DBACD6B7AC74F8A408C4C78D /* Core-inl.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "Core-inl.h"; path = "folly/gen/Core-inl.h"; sourceTree = "<group>"; }; + 8C1883F8A5912FB6F479721503D23DBA /* ThreadCachedInt.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ThreadCachedInt.h; path = folly/ThreadCachedInt.h; sourceTree = "<group>"; }; + 8C3469C7C09277648D821CE8A98E3D1C /* react-native-notifications.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "react-native-notifications.debug.xcconfig"; sourceTree = "<group>"; }; + 8C369B8A95598DD04AF7432E31EEA407 /* RCTWeakProxy.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTWeakProxy.h; sourceTree = "<group>"; }; 8C3E2A6E6F93E60E397F6C0BBA710BF5 /* libreact-native-cameraroll.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; name = "libreact-native-cameraroll.a"; path = "libreact-native-cameraroll.a"; sourceTree = BUILT_PRODUCTS_DIR; }; - 8C5A833DB4603F418D6E176A275CB16F /* Core.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Core.h; path = folly/futures/detail/Core.h; sourceTree = "<group>"; }; - 8C64D5E749D0C9E115805E9FF856C854 /* UIColor+SDHexString.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "UIColor+SDHexString.h"; path = "SDWebImage/Private/UIColor+SDHexString.h"; sourceTree = "<group>"; }; - 8C8477445D129B95B0123B10B04C8B2A /* Uri.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Uri.h; path = folly/Uri.h; sourceTree = "<group>"; }; - 8C9EAC92532EB2946D33D8AB3EAAEA74 /* FlipperCppWrapperPlugin.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FlipperCppWrapperPlugin.h; path = iOS/FlipperKit/CppBridge/FlipperCppWrapperPlugin.h; sourceTree = "<group>"; }; - 8CAFCFDEAC634A6E70497DD50AFA9962 /* UMAppLoaderProvider.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = UMAppLoaderProvider.h; path = UMAppLoader/UMAppLoaderProvider.h; sourceTree = "<group>"; }; - 8CB4425DEDB29C7C46FA36E77962311C /* GCDAsyncUdpSocket.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = GCDAsyncUdpSocket.h; path = Source/GCD/GCDAsyncUdpSocket.h; sourceTree = "<group>"; }; - 8CB5A4488DD9C1D73C063B5AF6E4F7D2 /* SoftRealTimeExecutor.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SoftRealTimeExecutor.h; path = folly/executors/SoftRealTimeExecutor.h; sourceTree = "<group>"; }; - 8CBCC34DEE63E69D64899C43FD54A785 /* FIRCoreDiagnosticsData.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRCoreDiagnosticsData.h; path = Interop/CoreDiagnostics/Public/FIRCoreDiagnosticsData.h; sourceTree = "<group>"; }; + 8C449A90B85CFA57689DCD7524C8C627 /* EXFileSystem.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = EXFileSystem.debug.xcconfig; sourceTree = "<group>"; }; + 8C541645B9FAEC795D01A0708BA5633E /* SysMembarrier.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = SysMembarrier.cpp; path = folly/portability/SysMembarrier.cpp; sourceTree = "<group>"; }; + 8C5B457FF2BCABC33122783D85E61854 /* upsampling_msa.c */ = {isa = PBXFileReference; includeInIndex = 1; name = upsampling_msa.c; path = src/dsp/upsampling_msa.c; sourceTree = "<group>"; }; + 8C5B5F5A9B6A9FB2A7121C7EB352C695 /* UMSensorsInterface.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = UMSensorsInterface.podspec; sourceTree = "<group>"; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; + 8C5BB0DC78FEE44E43A7590BC2452EA7 /* EXAudioRecordingPermissionRequester.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = EXAudioRecordingPermissionRequester.h; path = EXAV/EXAudioRecordingPermissionRequester.h; sourceTree = "<group>"; }; + 8C6DEC7CCE4ACB967A791B8D7475A5D5 /* SDWebImageCacheSerializer.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SDWebImageCacheSerializer.h; path = SDWebImage/Core/SDWebImageCacheSerializer.h; sourceTree = "<group>"; }; + 8C703C90ACBCAD43054EB317D29CF447 /* NativeToJsBridge.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = NativeToJsBridge.h; sourceTree = "<group>"; }; + 8C71FE6A0088AE82056650C872DB670B /* RCTSliderManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTSliderManager.h; sourceTree = "<group>"; }; + 8C7A4D417310DD6EE03A27AC111D31A3 /* RCTImageSource.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTImageSource.h; sourceTree = "<group>"; }; + 8C83E0915495B8F27BA7E3333C668216 /* 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 = "<group>"; }; 8CC9178C366942FD6FF6A115604EAD58 /* libFirebaseCoreDiagnostics.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; name = libFirebaseCoreDiagnostics.a; path = libFirebaseCoreDiagnostics.a; sourceTree = BUILT_PRODUCTS_DIR; }; - 8CCF2A4D4486F1371EF28C581C24CF65 /* SocketFastOpen.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SocketFastOpen.h; path = folly/detail/SocketFastOpen.h; sourceTree = "<group>"; }; - 8CDE84785C27C0FF357553A775D1308A /* LICENSE */ = {isa = PBXFileReference; includeInIndex = 1; path = LICENSE; sourceTree = "<group>"; }; - 8CE91CAD974A0975205D751C86C23139 /* AtomicHashMap-inl.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "AtomicHashMap-inl.h"; path = "folly/AtomicHashMap-inl.h"; sourceTree = "<group>"; }; - 8CEC25A51E15793898FD4217D0D0CF0B /* FontAwesome5_Brands.ttf */ = {isa = PBXFileReference; includeInIndex = 1; name = FontAwesome5_Brands.ttf; path = Fonts/FontAwesome5_Brands.ttf; sourceTree = "<group>"; }; - 8CEF6312A691D6DB22CF8785A46A0F92 /* Bugsnag+Private.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "Bugsnag+Private.h"; sourceTree = "<group>"; }; - 8D0A6E6852DDB2645E8D6F3F1EE778C7 /* RCTModalHostViewController.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTModalHostViewController.h; sourceTree = "<group>"; }; - 8D0C14BFCFF30C61341F3F7AF0BE77AC /* GlobalExecutor.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = GlobalExecutor.h; path = folly/executors/GlobalExecutor.h; sourceTree = "<group>"; }; - 8D2EA741293DB1E455E1E6953536B516 /* JemallocHugePageAllocator.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = JemallocHugePageAllocator.h; path = folly/experimental/JemallocHugePageAllocator.h; sourceTree = "<group>"; }; - 8D413F8DFA6A6911681D61472C0DC9EF /* GULKeychainUtils.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = GULKeychainUtils.m; path = GoogleUtilities/Environment/SecureStorage/GULKeychainUtils.m; sourceTree = "<group>"; }; - 8D4C7E239FF2B59CAAB77967C86A9E05 /* InspectorState.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; path = InspectorState.cpp; sourceTree = "<group>"; }; - 8D689EB828C16EC54FA9EE86DC83F4C7 /* Retrying.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Retrying.h; path = folly/futures/Retrying.h; sourceTree = "<group>"; }; - 8D6FA0A067E58BD035A8CB254BF874DD /* backward_references_enc.c */ = {isa = PBXFileReference; includeInIndex = 1; name = backward_references_enc.c; path = src/enc/backward_references_enc.c; sourceTree = "<group>"; }; - 8D721A4D99E3EBB65E1C7B97E9D78DA4 /* GDTCORUploadPackage_Private.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = GDTCORUploadPackage_Private.h; path = GoogleDataTransport/GDTCORLibrary/Private/GDTCORUploadPackage_Private.h; sourceTree = "<group>"; }; - 8D8867473DC9435ABC10784A09B021FE /* ExceptionWrapper.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = ExceptionWrapper.cpp; path = folly/ExceptionWrapper.cpp; sourceTree = "<group>"; }; - 8D9037CD1178822F4B7F101ED0CEE3EA /* RCTStyleAnimatedNode.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTStyleAnimatedNode.m; sourceTree = "<group>"; }; - 8D9321406BF7CDEAA9D3F9279CB455A8 /* FBLazyVector.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = FBLazyVector.podspec; sourceTree = "<group>"; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; - 8D994088F51E423A98794D609E35CAF6 /* RCTAsyncLocalStorage.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTAsyncLocalStorage.h; path = React/CoreModules/RCTAsyncLocalStorage.h; sourceTree = "<group>"; }; - 8DA209082F197D4EEA07EDCF022523BD /* RecordIO-inl.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "RecordIO-inl.h"; path = "folly/io/RecordIO-inl.h"; sourceTree = "<group>"; }; - 8DAEA4597188EA7C15AAD0C4B323ECE1 /* 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 = "<group>"; }; - 8DC86699D7FF06D9AC2D7824184FFD21 /* RCTJSScriptLoaderModule.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTJSScriptLoaderModule.h; sourceTree = "<group>"; }; - 8DD7506B4DC024949AB693811564957D /* muxread.c */ = {isa = PBXFileReference; includeInIndex = 1; name = muxread.c; path = src/mux/muxread.c; sourceTree = "<group>"; }; + 8CCB5F1B268A463563A18DB65A0BDC5F /* BugsnagThread.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BugsnagThread.h; sourceTree = "<group>"; }; + 8CEE6577EEF1351F77E4734688BCE310 /* RCTBaseTextInputShadowView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTBaseTextInputShadowView.m; sourceTree = "<group>"; }; + 8CF296CDD1729FF3241AF6E06AA2A505 /* EXAV.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = EXAV.h; path = EXAV/EXAV.h; sourceTree = "<group>"; }; + 8CF744B5A7E7269E61FF69287E7453AA /* FrameFlags.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FrameFlags.h; path = rsocket/framing/FrameFlags.h; sourceTree = "<group>"; }; + 8D03DF2B17B4C441CDAE156873B13B97 /* NativeModule.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = NativeModule.h; sourceTree = "<group>"; }; + 8D0932134BE08040CE2AF1A84596E95D /* Math.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Math.h; path = folly/portability/Math.h; sourceTree = "<group>"; }; + 8D1F87B8E6D00C440CE575B2E0443E50 /* FBLPromise+All.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "FBLPromise+All.h"; path = "Sources/FBLPromises/include/FBLPromise+All.h"; sourceTree = "<group>"; }; + 8D2E471C6C5C2E2936DC0F3469F01C84 /* small_vector.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = small_vector.h; path = folly/small_vector.h; sourceTree = "<group>"; }; + 8D2E8775C3542E07D330DA257B143C02 /* FBLPromise+Await.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "FBLPromise+Await.m"; path = "Sources/FBLPromises/FBLPromise+Await.m"; sourceTree = "<group>"; }; + 8D357E39610B78B1B1423DF059D09C27 /* GULAppDelegateSwizzler_Private.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = GULAppDelegateSwizzler_Private.h; path = GoogleUtilities/AppDelegateSwizzler/Internal/GULAppDelegateSwizzler_Private.h; sourceTree = "<group>"; }; + 8D3F832CBFE1481C2D75D252A84A5CD7 /* RCTUIUtils.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTUIUtils.h; sourceTree = "<group>"; }; + 8D446EF8FABEBAF49DC15B370BDE1205 /* EXAudioRecordingPermissionRequester.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = EXAudioRecordingPermissionRequester.m; path = EXAV/EXAudioRecordingPermissionRequester.m; sourceTree = "<group>"; }; + 8D4F6F8F160C900324E6BBD8F8BD6DC2 /* it.lproj */ = {isa = PBXFileReference; includeInIndex = 1; name = it.lproj; path = "Objective-C/TOCropViewController/Resources/it.lproj"; sourceTree = "<group>"; }; + 8D54FE0E7DBE4A49017A481F042BDC24 /* FIRCLSUtility.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRCLSUtility.h; path = Crashlytics/Crashlytics/Helpers/FIRCLSUtility.h; sourceTree = "<group>"; }; + 8D5637F023F01C7033943D6EF1744648 /* UMPermissionsInterface.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = UMPermissionsInterface.podspec; sourceTree = "<group>"; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; + 8D671DD9C09EC323906CEFAC8A87493D /* ReactNativeShareExtension.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = ReactNativeShareExtension.m; path = ios/ReactNativeShareExtension.m; sourceTree = "<group>"; }; + 8D6954587DAAC4331F51336675363378 /* FirebaseCoreDiagnostics.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = FirebaseCoreDiagnostics.release.xcconfig; sourceTree = "<group>"; }; + 8D7CBF8334137587AB49D63DBB7EE10D /* SKDescriptorMapper.mm */ = {isa = PBXFileReference; includeInIndex = 1; name = SKDescriptorMapper.mm; path = iOS/Plugins/FlipperKitLayoutPlugin/FlipperKitLayoutPlugin/SKDescriptorMapper.mm; sourceTree = "<group>"; }; + 8D8E9D74AF97B2385EB4FA87CD2EBF52 /* RCTShadowView+Internal.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "RCTShadowView+Internal.m"; sourceTree = "<group>"; }; + 8D9F82E39FE42CCE54277424F6A4E9F7 /* BugsnagReactNative-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "BugsnagReactNative-prefix.pch"; sourceTree = "<group>"; }; + 8DA53BF5F3B812DED81579DE9A22DC40 /* ThreadLock_Win32.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = ThreadLock_Win32.cpp; path = Core/ThreadLock_Win32.cpp; sourceTree = "<group>"; }; + 8DB07C15FAEB63072555E50564510204 /* dec_msa.c */ = {isa = PBXFileReference; includeInIndex = 1; name = dec_msa.c; path = src/dsp/dec_msa.c; sourceTree = "<group>"; }; + 8DB30AA2AB4ABB31BA516196FFA0BC03 /* diy-fp.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "diy-fp.h"; path = "double-conversion/diy-fp.h"; sourceTree = "<group>"; }; + 8DBB4D83A9EF15F3C643036B7BD46BE0 /* React-callinvoker.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "React-callinvoker.debug.xcconfig"; sourceTree = "<group>"; }; + 8DBEFA033BCEE191637F28CD6FF5D650 /* GULAppEnvironmentUtil.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = GULAppEnvironmentUtil.h; path = GoogleUtilities/Environment/Private/GULAppEnvironmentUtil.h; sourceTree = "<group>"; }; + 8DC96E731C0C41D2DD02BFE44F134D1B /* MemoryFile.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = MemoryFile.cpp; path = Core/MemoryFile.cpp; sourceTree = "<group>"; }; + 8DDB1537BDCEF6E634F1E58804272357 /* bit_reader_utils.c */ = {isa = PBXFileReference; includeInIndex = 1; name = bit_reader_utils.c; path = src/utils/bit_reader_utils.c; sourceTree = "<group>"; }; + 8DE869DD8D81DC88CF80F4B414B76491 /* Semaphore.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Semaphore.h; path = folly/portability/Semaphore.h; sourceTree = "<group>"; }; 8DF63376066E2275FF26820B3A512A9B /* libreact-native-webview.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; name = "libreact-native-webview.a"; path = "libreact-native-webview.a"; sourceTree = BUILT_PRODUCTS_DIR; }; - 8DF9154B625CDF64054C782A8A018631 /* RCTDevLoadingViewProtocol.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTDevLoadingViewProtocol.h; sourceTree = "<group>"; }; - 8E049A2A502254569AAD1E846716AAF6 /* RNCommandsHandler.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNCommandsHandler.h; path = RNNotifications/RNCommandsHandler.h; sourceTree = "<group>"; }; - 8E2014914A30DCE80206DBE67159FBDD /* ConnectionSet.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = ConnectionSet.cpp; path = rsocket/internal/ConnectionSet.cpp; sourceTree = "<group>"; }; - 8E39A1E9B0FE2BEAF1E900754F72BF8B /* RNImageCropPicker.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = RNImageCropPicker.podspec; sourceTree = "<group>"; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; - 8E4879361D6DE644A9C5A10461131D73 /* ClockGettimeWrappers.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = ClockGettimeWrappers.cpp; path = folly/ClockGettimeWrappers.cpp; sourceTree = "<group>"; }; - 8E50D0CC014192D8FC11063BA0F86F38 /* UMFontScalerInterface.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = UMFontScalerInterface.h; path = UMFontInterface/UMFontScalerInterface.h; sourceTree = "<group>"; }; - 8E6307960B1F6D0785F439482293F689 /* FrameTransportImpl.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = FrameTransportImpl.cpp; path = rsocket/framing/FrameTransportImpl.cpp; sourceTree = "<group>"; }; - 8E95659D462FBF4F81F91F6EBA259A81 /* UIImage+Metadata.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "UIImage+Metadata.m"; path = "SDWebImage/Core/UIImage+Metadata.m"; sourceTree = "<group>"; }; - 8E9D737AD88368ED3A2F1A00D90666BE /* SDWebImage.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SDWebImage.h; path = WebImage/SDWebImage.h; sourceTree = "<group>"; }; - 8EA8AD2545A0AD14865A826A89AF03BD /* DiscriminatedPtr.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = DiscriminatedPtr.h; path = folly/DiscriminatedPtr.h; sourceTree = "<group>"; }; - 8EACE304750D1CAA3FD4150AB0A736B1 /* Pbkdf2.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = Pbkdf2.h; sourceTree = "<group>"; }; - 8EB6966C2F4A349FF86C237F57F846FA /* TLSDefinitions.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = TLSDefinitions.h; path = folly/io/async/ssl/TLSDefinitions.h; sourceTree = "<group>"; }; - 8EB7532A0A3B8B481335D17280B270C0 /* MicroLock.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = MicroLock.h; path = folly/MicroLock.h; sourceTree = "<group>"; }; - 8EBC48E874B62E68701ECFA4FB7CA363 /* GFlags.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = GFlags.h; path = folly/portability/GFlags.h; sourceTree = "<group>"; }; - 8EC04E43DE6799F166D0E055BB69C5F7 /* RCTAes.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RCTAes.m; path = ios/RCTCrypto/RCTAes.m; sourceTree = "<group>"; }; - 8EC1FD54A43DE7F6BA21F2B42197B5B6 /* STTimerFDTimeoutManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = STTimerFDTimeoutManager.h; path = folly/experimental/STTimerFDTimeoutManager.h; sourceTree = "<group>"; }; - 8ECE261CF9D06F4361E4A1F9279B98FE /* SDWebImageDownloaderOperation.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = SDWebImageDownloaderOperation.m; path = SDWebImage/Core/SDWebImageDownloaderOperation.m; sourceTree = "<group>"; }; - 8EDA43460C2BF99C5B6F022209E0DA90 /* MMKV_Android.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = MMKV_Android.cpp; path = Core/MMKV_Android.cpp; sourceTree = "<group>"; }; - 8EE023928DA39891828783C169ACD22E /* SSLContext.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = SSLContext.cpp; path = folly/io/async/SSLContext.cpp; sourceTree = "<group>"; }; - 8EF4B26C6D38B2DF9388C95BAED0C0C0 /* REAValueNode.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = REAValueNode.m; sourceTree = "<group>"; }; - 8F12146FE27561032F8D4B3189081660 /* Parallel.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Parallel.h; path = folly/gen/Parallel.h; sourceTree = "<group>"; }; - 8F14D03B87A58FC1FBE0393BB896B286 /* RCTConvert.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTConvert.m; sourceTree = "<group>"; }; - 8F1AE93585C2CC012BB0818F5C033122 /* FLEXNetworkTransaction.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FLEXNetworkTransaction.m; path = iOS/Plugins/FlipperKitNetworkPlugin/SKIOSNetworkPlugin/FLEXNetworkLib/FLEXNetworkTransaction.m; sourceTree = "<group>"; }; - 8F1DA2CEA3CE04463B0A7359D8CA5609 /* MMKVPredef.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = MMKVPredef.h; path = Core/MMKVPredef.h; sourceTree = "<group>"; }; - 8F238380E1440E17738C994469B85113 /* F14Map.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = F14Map.h; path = folly/container/F14Map.h; sourceTree = "<group>"; }; - 8F2791169A71E8FC83E4BD3E327C47D1 /* RCTVirtualTextShadowView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTVirtualTextShadowView.m; sourceTree = "<group>"; }; - 8F35897AB268E19269869EBC5812DBE8 /* React-RCTSettings.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "React-RCTSettings.debug.xcconfig"; sourceTree = "<group>"; }; - 8F3D2E2F139A91C05083EABCCFB6A079 /* RCTShadowView+Layout.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "RCTShadowView+Layout.h"; sourceTree = "<group>"; }; - 8F3EFD758F22BA8D07980A6B2CCC00D3 /* PropagateConst.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = PropagateConst.h; path = folly/lang/PropagateConst.h; sourceTree = "<group>"; }; - 8F490AB1187BEA7440DB7027375B3B9D /* SSLErrors.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = SSLErrors.cpp; path = folly/io/async/ssl/SSLErrors.cpp; sourceTree = "<group>"; }; - 8F5190191CC94B36436BAC17951E36FC /* FirebaseCore.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = FirebaseCore.release.xcconfig; sourceTree = "<group>"; }; - 8F5705395441466192BD91D1B715A784 /* RCTBaseTextInputViewManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTBaseTextInputViewManager.m; sourceTree = "<group>"; }; + 8E00F24F9A431B328FFF0FBE6C8D12FE /* UMReactLogHandler.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = UMReactLogHandler.m; sourceTree = "<group>"; }; + 8E0AEF464378C51B421A6713B4A467EF /* GULMutableDictionary.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = GULMutableDictionary.m; path = GoogleUtilities/Network/GULMutableDictionary.m; sourceTree = "<group>"; }; + 8E0B565D7C8AEA23DC2FDB23918EC89D /* RCTLogBoxView.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTLogBoxView.mm; sourceTree = "<group>"; }; + 8E382E89EF807FFA314A1A75455F298C /* RCTJSInvokerModule.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTJSInvokerModule.h; sourceTree = "<group>"; }; + 8E666680A1331834563A1F790787D4D5 /* utils.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = utils.h; path = "double-conversion/utils.h"; sourceTree = "<group>"; }; + 8E779D86D839C8CB46320F82EB6BE302 /* RNPushKitEventHandler.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNPushKitEventHandler.h; path = RNNotifications/RNPushKitEventHandler.h; sourceTree = "<group>"; }; + 8E7B6BD8B49906D9FB21FEEB60A6F08E /* BugsnagStateEvent.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = BugsnagStateEvent.m; sourceTree = "<group>"; }; + 8E8B8B502897CE64B858C572C0C71A6D /* BSG_KSCrashSentry_MachException.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BSG_KSCrashSentry_MachException.h; sourceTree = "<group>"; }; + 8EB0521444F44118EFB8822BEFBACBBA /* GDTCORDirectorySizeTracker.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = GDTCORDirectorySizeTracker.h; path = GoogleDataTransport/GDTCORLibrary/Internal/GDTCORDirectorySizeTracker.h; sourceTree = "<group>"; }; + 8EC52E80CADEF66553D7D2E3E861E66A /* REAStyleNode.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = REAStyleNode.h; sourceTree = "<group>"; }; + 8EC822BD3E8570C5BE901C15801CF4D5 /* ARTGroup.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ARTGroup.h; path = ios/ARTGroup.h; sourceTree = "<group>"; }; + 8EC8CDA467619A6E8A2024C3EA0D2BFB /* SDImageWebPCoder.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SDImageWebPCoder.h; path = SDWebImageWebPCoder/Classes/SDImageWebPCoder.h; sourceTree = "<group>"; }; + 8ECD57833AD52E56854CAE6C4AED24D4 /* IPAddressV4.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = IPAddressV4.cpp; path = folly/IPAddressV4.cpp; sourceTree = "<group>"; }; + 8EE166457CD928AB77ED880B75F59A56 /* diy-fp.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = "diy-fp.cc"; path = "double-conversion/diy-fp.cc"; sourceTree = "<group>"; }; + 8EE238295A186AB79EFC2086EE6E8BF9 /* React-runtimeexecutor.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = "React-runtimeexecutor.podspec"; sourceTree = "<group>"; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; + 8EF9DB1D163CDEB70F26F81A4C52D4D2 /* FlowableDoOperator.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FlowableDoOperator.h; path = yarpl/flowable/FlowableDoOperator.h; sourceTree = "<group>"; }; + 8F04D99329DD02E83D93EC3D9CF85975 /* fa.lproj */ = {isa = PBXFileReference; includeInIndex = 1; name = fa.lproj; path = "Objective-C/TOCropViewController/Resources/fa.lproj"; sourceTree = "<group>"; }; + 8F2AF0ED0C3E7F4FAE9E04D1E74C3857 /* QBCheckmarkView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = QBCheckmarkView.h; path = ios/QBImagePicker/QBImagePicker/QBCheckmarkView.h; sourceTree = "<group>"; }; 8F65F9361F2069CF9E9D751272968DE4 /* libRNGestureHandler.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; name = libRNGestureHandler.a; path = libRNGestureHandler.a; sourceTree = BUILT_PRODUCTS_DIR; }; - 8F6A790A04657521BE6AAFBD73CE25EC /* FBString.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FBString.h; path = folly/FBString.h; sourceTree = "<group>"; }; - 8F8E66A5F4B94E306A243192C02F093F /* Portability.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Portability.h; path = folly/futures/Portability.h; sourceTree = "<group>"; }; - 8FACAC187B44157FC8DE8BAD258EBE36 /* MemoryFile.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = MemoryFile.cpp; path = Core/MemoryFile.cpp; sourceTree = "<group>"; }; - 8FB6953130C3692368ABA9E95DDF35CD /* AsyncSSLSocket.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = AsyncSSLSocket.h; path = folly/io/async/AsyncSSLSocket.h; sourceTree = "<group>"; }; - 8FCFA71E7FBCE4592668FE90C1220BE6 /* RCTBlobManager.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTBlobManager.mm; sourceTree = "<group>"; }; - 8FD0422E27ABD51A7F0B26BBD184FBA7 /* SysUio.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SysUio.h; path = folly/portability/SysUio.h; sourceTree = "<group>"; }; - 901A7545398A64492BA691CD54AE2FEE /* enc_sse2.c */ = {isa = PBXFileReference; includeInIndex = 1; name = enc_sse2.c; path = src/dsp/enc_sse2.c; sourceTree = "<group>"; }; - 9029E13E354946400DACF29547B6439D /* RSocketException.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RSocketException.h; path = rsocket/RSocketException.h; sourceTree = "<group>"; }; - 90358B946F0DAB2C5B52E737964E5B0B /* CString.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = CString.cpp; path = folly/lang/CString.cpp; sourceTree = "<group>"; }; - 903A7619FDE7ED53437A19C410F5B823 /* RNTapHandler.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RNTapHandler.h; sourceTree = "<group>"; }; - 90825145145C82A8F4E45D55BA6ED37E /* RCTDevMenu.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTDevMenu.h; path = React/CoreModules/RCTDevMenu.h; sourceTree = "<group>"; }; - 909324D1FAB7D91BCC27BF30156B1037 /* SanitizeThread.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SanitizeThread.h; path = folly/synchronization/SanitizeThread.h; sourceTree = "<group>"; }; - 90954E16691E854DD0BEA15D429D1F89 /* YogaKit-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "YogaKit-prefix.pch"; sourceTree = "<group>"; }; - 909FE8760C800877AB48CD3590A9B3E6 /* double-conversion.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = "double-conversion.cc"; path = "double-conversion/double-conversion.cc"; sourceTree = "<group>"; }; - 90A795B88B61AAA21793461B45F9B037 /* NativeToJsBridge.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; path = NativeToJsBridge.cpp; sourceTree = "<group>"; }; - 90BBC45C00FF7D9C89021A4AE0CF792B /* Feather.ttf */ = {isa = PBXFileReference; includeInIndex = 1; name = Feather.ttf; path = Fonts/Feather.ttf; sourceTree = "<group>"; }; - 90BCAF1AC58CAB9DA6A0307E93957A3D /* GULKeychainUtils.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = GULKeychainUtils.h; path = GoogleUtilities/Environment/Private/GULKeychainUtils.h; sourceTree = "<group>"; }; - 90C1BBCC13D38BBBE0B1EF10702BDF8A /* UnboundedQueue.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = UnboundedQueue.h; path = folly/concurrency/UnboundedQueue.h; sourceTree = "<group>"; }; - 90C78CFE1BD35726BCF58E8406235BD2 /* LICENSE */ = {isa = PBXFileReference; includeInIndex = 1; path = LICENSE; sourceTree = "<group>"; }; - 90C7C147085C240CCCF67AB7DD43F1AD /* RCTInputAccessoryViewManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTInputAccessoryViewManager.h; sourceTree = "<group>"; }; - 90E0C5C1D038330241A0A2B207F13D08 /* RCTNativeModule.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTNativeModule.h; sourceTree = "<group>"; }; - 911B3EC5FE59FFBB5939024ADE0D328B /* UMTaskManagerInterface.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = UMTaskManagerInterface.release.xcconfig; sourceTree = "<group>"; }; - 912C4CF3278E3ADA0ED28931B9049835 /* FIRCLSBinaryImage.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRCLSBinaryImage.m; path = Crashlytics/Crashlytics/Components/FIRCLSBinaryImage.m; sourceTree = "<group>"; }; - 9141094EE1ED49F64CDFCC8C60B96156 /* FIRInstallationsStoredItem.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRInstallationsStoredItem.h; path = FirebaseInstallations/Source/Library/InstallationsStore/FIRInstallationsStoredItem.h; sourceTree = "<group>"; }; - 9141D4AE95A883D2B8AEE11992DA5379 /* IPAddress.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = IPAddress.cpp; path = folly/IPAddress.cpp; sourceTree = "<group>"; }; - 91509E398C1544A50BA682D970B0C426 /* RNCCameraRollManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNCCameraRollManager.m; path = ios/RNCCameraRollManager.m; sourceTree = "<group>"; }; - 915614263E2FD7EFE2949E5B1BC80034 /* EventHandler.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = EventHandler.h; path = folly/io/async/EventHandler.h; sourceTree = "<group>"; }; - 915A7157FB89341848EA3CD577FD6C95 /* PackedSyncPtr.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = PackedSyncPtr.h; path = folly/PackedSyncPtr.h; sourceTree = "<group>"; }; - 9161C064CF73C4FE3FD901619FBA9101 /* CodingDetail.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = CodingDetail.h; path = folly/experimental/CodingDetail.h; sourceTree = "<group>"; }; - 916E3D76B71C70231A1C7B52E8287F82 /* BugsnagErrorTypes.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = BugsnagErrorTypes.m; sourceTree = "<group>"; }; - 91A46B091E0CF0D8EC21498BA37BBE37 /* UMJavaScriptContextProvider.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = UMJavaScriptContextProvider.h; sourceTree = "<group>"; }; - 91B926ACABA2AE33C652F669C9BF2D8E /* README.md */ = {isa = PBXFileReference; includeInIndex = 1; path = README.md; sourceTree = "<group>"; }; - 91C32104C640587A2B646FD89013D4BF /* RCTScrollEvent.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTScrollEvent.h; sourceTree = "<group>"; }; - 91E76A46D4AB33E0DEF355E7518F45FE /* RNCPicker.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = RNCPicker.release.xcconfig; sourceTree = "<group>"; }; - 91F251357B1B861D6BECB35B97540576 /* FirebaseInstallationsInternal.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FirebaseInstallationsInternal.h; path = FirebaseInstallations/Source/Library/Private/FirebaseInstallationsInternal.h; sourceTree = "<group>"; }; - 91F4CDD7DFE9FE5BC9DB09A0AF6C5080 /* RCTMessageThread.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTMessageThread.h; sourceTree = "<group>"; }; - 920403F95D8B596C5E2AFA4076FF68C6 /* SafeAssert.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = SafeAssert.cpp; path = folly/lang/SafeAssert.cpp; sourceTree = "<group>"; }; - 92043D3966AF5FC9C59E6083D1D92325 /* BSG_KSCrash.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = BSG_KSCrash.m; sourceTree = "<group>"; }; - 920923E2DB170384DABDA9E8EC651393 /* GULNetworkConstants.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = GULNetworkConstants.m; path = GoogleUtilities/Network/GULNetworkConstants.m; sourceTree = "<group>"; }; - 920E913BF836AE4C356DD271D480E02C /* RCTMaskedView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTMaskedView.h; sourceTree = "<group>"; }; - 921B4C6825D843743335AA43D91F5D25 /* InlineFunctionRef.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = InlineFunctionRef.h; path = folly/synchronization/detail/InlineFunctionRef.h; sourceTree = "<group>"; }; - 9227C3987BC3C6437A9CA0B0FE0DC784 /* RCTVersion.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTVersion.m; sourceTree = "<group>"; }; - 9230371FE9E5F6AED627EE5E80815F4A /* GDTCORPrioritizer.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = GDTCORPrioritizer.h; path = GoogleDataTransport/GDTCORLibrary/Public/GDTCORPrioritizer.h; sourceTree = "<group>"; }; - 923755E9F99621CC05524BE00627817C /* JSINativeModules.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = JSINativeModules.cpp; path = jsireact/JSINativeModules.cpp; sourceTree = "<group>"; }; - 924EC671F2BB84B649EB05BB2E750512 /* upsampling_sse2.c */ = {isa = PBXFileReference; includeInIndex = 1; name = upsampling_sse2.c; path = src/dsp/upsampling_sse2.c; sourceTree = "<group>"; }; - 92568FDF28118EA53C8947A0124C1273 /* Utility.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Utility.h; path = folly/Utility.h; sourceTree = "<group>"; }; - 9284728F7EFB51C94FA364446012C888 /* RNPushKitEventListener.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNPushKitEventListener.m; path = RNNotifications/RNPushKitEventListener.m; sourceTree = "<group>"; }; - 92A5874C878DFADCA0810C116E060219 /* Flipper-Folly.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "Flipper-Folly.release.xcconfig"; sourceTree = "<group>"; }; - 92A76AE2B586872B9AE72F08122BB086 /* HardwareConcurrency.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = HardwareConcurrency.h; path = folly/system/HardwareConcurrency.h; sourceTree = "<group>"; }; - 92BF5CC7B1AC56ADD518B6BBE1ECE380 /* react-native-jitsi-meet.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = "react-native-jitsi-meet.podspec"; sourceTree = "<group>"; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; - 92CAD975CD7A20E93B55EF4E59090F99 /* QBAssetCell.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = QBAssetCell.h; path = ios/QBImagePicker/QBImagePicker/QBAssetCell.h; sourceTree = "<group>"; }; - 92CF4CA7AA549F6D173DB1F3510DAF47 /* bufferevent_sock.c */ = {isa = PBXFileReference; includeInIndex = 1; path = bufferevent_sock.c; sourceTree = "<group>"; }; - 92D2413E4C09A3C32914CC71A085E54D /* Cursor.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Cursor.h; path = folly/io/Cursor.h; sourceTree = "<group>"; }; - 92DC2AC6A377D3C7250197995BC60280 /* RCTInputAccessoryViewManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTInputAccessoryViewManager.m; sourceTree = "<group>"; }; - 92E81D540171FAD8E231E1AF4066DB6B /* UMLogManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = UMLogManager.h; sourceTree = "<group>"; }; - 92F409B54F566135765FA15FF2FD4B10 /* Enumerate.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Enumerate.h; path = folly/container/Enumerate.h; sourceTree = "<group>"; }; - 9327F9C7E8982E0CE3C75DE507864913 /* RCTBaseTextInputViewManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTBaseTextInputViewManager.h; sourceTree = "<group>"; }; - 932CD41FA6D89BAE46722550106F1928 /* Bits.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Bits.h; path = folly/lang/Bits.h; sourceTree = "<group>"; }; - 932D6A4AAAE1FBAB7EE894FC1698E905 /* CppAttributes.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = CppAttributes.h; path = folly/CppAttributes.h; sourceTree = "<group>"; }; - 932E20379D08F815983A1E168E8F071D /* Semaphore.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = Semaphore.cpp; path = folly/portability/Semaphore.cpp; sourceTree = "<group>"; }; - 93346F13A155B02B6626A101E5194AC7 /* SharedPromise.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SharedPromise.h; path = folly/futures/SharedPromise.h; sourceTree = "<group>"; }; - 9336B954C54F0EF7BD2CC0490E9C3813 /* RSocketServiceHandler.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RSocketServiceHandler.h; path = rsocket/RSocketServiceHandler.h; sourceTree = "<group>"; }; - 934CDE0CBDE9A0282A8DEC058F6C14E1 /* RCTDevSplitBundleLoader.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTDevSplitBundleLoader.h; path = React/CoreModules/RCTDevSplitBundleLoader.h; sourceTree = "<group>"; }; - 9353040D7264C12287CD0206AAA0DA10 /* Indestructible.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Indestructible.h; path = folly/Indestructible.h; sourceTree = "<group>"; }; - 9363660B9A66C416940A5ED430891623 /* FBReactNativeSpec.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FBReactNativeSpec.h; path = FBReactNativeSpec/FBReactNativeSpec.h; sourceTree = "<group>"; }; - 937111731B8DBCD33C8B4E822A0195D2 /* SKButtonDescriptor.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SKButtonDescriptor.h; path = iOS/Plugins/FlipperKitLayoutPlugin/FlipperKitLayoutPlugin/descriptors/SKButtonDescriptor.h; sourceTree = "<group>"; }; - 9372AC00A3DB1B500E10C1F4B72DB57E /* FIRCLSLogger.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRCLSLogger.h; path = Crashlytics/Crashlytics/Helpers/FIRCLSLogger.h; sourceTree = "<group>"; }; - 9388BB3EF820E441837B5478F65B29FC /* Ordering.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Ordering.h; path = folly/lang/Ordering.h; sourceTree = "<group>"; }; - 939CB389DABA0DEE02F6290050EF69F1 /* RCTImageUtils.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTImageUtils.m; sourceTree = "<group>"; }; - 939D19E9FA261043EA8E6CF511D9E404 /* RNCMaskedView.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = RNCMaskedView.release.xcconfig; sourceTree = "<group>"; }; - 93A57444DDE85F66B2D236FA286C7281 /* EXAV-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "EXAV-dummy.m"; sourceTree = "<group>"; }; - 93BA17DDE6DD075837649508F5724300 /* React-jsi.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = "React-jsi.podspec"; sourceTree = "<group>"; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; - 93BBACFC282DB3608E7443B4F8F92F19 /* REACondNode.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = REACondNode.m; sourceTree = "<group>"; }; - 93C39DD0F16BF1BE85C726C64342D0CA /* BugsnagAppWithState+Private.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "BugsnagAppWithState+Private.h"; sourceTree = "<group>"; }; - 93C97B60047255164EA4F8718B8EC42B /* near_lossless_enc.c */ = {isa = PBXFileReference; includeInIndex = 1; name = near_lossless_enc.c; path = src/enc/near_lossless_enc.c; sourceTree = "<group>"; }; - 93D2A241AFA45A6CEEA2FA5F519FF56E /* libwebp-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "libwebp-dummy.m"; sourceTree = "<group>"; }; - 93DF72D593084C73110B41D3BABC0BC0 /* SDImageIOAnimatedCoder.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SDImageIOAnimatedCoder.h; path = SDWebImage/Core/SDImageIOAnimatedCoder.h; sourceTree = "<group>"; }; - 93F5D0BEA9EEDC395520623630745A92 /* FingerprintPolynomial.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FingerprintPolynomial.h; path = folly/detail/FingerprintPolynomial.h; sourceTree = "<group>"; }; - 93F6814888179AE89637262451E46FA8 /* hermes.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = hermes.framework; path = destroot/Library/Frameworks/iphoneos/hermes.framework; sourceTree = "<group>"; }; - 93FC45CC18820A048275DA3BBE31FD89 /* REAEventNode.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = REAEventNode.m; sourceTree = "<group>"; }; - 940D3485BDD3CAB77D10FE84E6AEE696 /* RCTSurfaceHostingView.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTSurfaceHostingView.mm; sourceTree = "<group>"; }; - 9411A527A4DE7B8E9CA14E97E7DDA16C /* GDTCORDataFuture.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = GDTCORDataFuture.m; path = GoogleDataTransport/GDTCORLibrary/GDTCORDataFuture.m; sourceTree = "<group>"; }; - 942912A1EA0A7436F2FDD973903DF116 /* FIRCoreDiagnosticsConnector.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRCoreDiagnosticsConnector.h; path = FirebaseCore/Sources/Private/FIRCoreDiagnosticsConnector.h; sourceTree = "<group>"; }; - 944C0D1EFE3AB1A70D936F9AB2715AC3 /* SKApplicationDescriptor.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SKApplicationDescriptor.h; path = iOS/Plugins/FlipperKitLayoutPlugin/FlipperKitLayoutPlugin/descriptors/SKApplicationDescriptor.h; sourceTree = "<group>"; }; - 948A4B74B6634810FD7152CB3A62A612 /* subscription.md */ = {isa = PBXFileReference; includeInIndex = 1; name = subscription.md; path = docs/subscription.md; sourceTree = "<group>"; }; + 8F6CB3F06A39DBD81E67FDD710F76D48 /* REATransitionAnimation.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = REATransitionAnimation.h; sourceTree = "<group>"; }; + 8F72A24E3ED1D2F94C38CD7ACDCC7B5C /* hermes.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = hermes.h; path = destroot/include/hermes/hermes.h; sourceTree = "<group>"; }; + 8F86198C42D356BDF6D5CC1F3A3A675D /* defer-internal.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "defer-internal.h"; sourceTree = "<group>"; }; + 8FA192F3B4714F084952D58E029E9090 /* QBVideoIndicatorView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = QBVideoIndicatorView.h; path = ios/QBImagePicker/QBImagePicker/QBVideoIndicatorView.h; sourceTree = "<group>"; }; + 8FA38133468760021D39118AA73ABB42 /* SKResponseInfo.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = SKResponseInfo.m; path = iOS/Plugins/FlipperKitNetworkPlugin/FlipperKitNetworkPlugin/SKResponseInfo.m; sourceTree = "<group>"; }; + 8FA7CA232C9946B587E471293ACCFC9E /* STTimerFDTimeoutManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = STTimerFDTimeoutManager.h; path = folly/experimental/STTimerFDTimeoutManager.h; sourceTree = "<group>"; }; + 8FABD72C9E2EE3995E41F7E7224B66DE /* FlipperRSocketResponder.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = FlipperRSocketResponder.cpp; path = xplat/Flipper/FlipperRSocketResponder.cpp; sourceTree = "<group>"; }; + 8FB1C4D54632CC114605D22467F9372D /* RCTRawTextShadowView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTRawTextShadowView.h; sourceTree = "<group>"; }; + 8FBB84EA1937A72F9BB88533A2D71AE9 /* FIRCLSDemangleOperation.mm */ = {isa = PBXFileReference; includeInIndex = 1; name = FIRCLSDemangleOperation.mm; path = Crashlytics/Crashlytics/Operations/Symbolication/FIRCLSDemangleOperation.mm; sourceTree = "<group>"; }; + 8FBB8E31EC21D1CBFDC103E2EDAE1070 /* UMAppDelegateWrapper.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = UMAppDelegateWrapper.h; path = UMCore/UMAppDelegateWrapper.h; sourceTree = "<group>"; }; + 8FCC1DF98D8D4892FEE7981E8C1C51BC /* FIRCLSAllocate.c */ = {isa = PBXFileReference; includeInIndex = 1; name = FIRCLSAllocate.c; path = Crashlytics/Crashlytics/Helpers/FIRCLSAllocate.c; sourceTree = "<group>"; }; + 8FE3240015DA25E919A097D17D00DE49 /* bit_writer_utils.c */ = {isa = PBXFileReference; includeInIndex = 1; name = bit_writer_utils.c; path = src/utils/bit_writer_utils.c; sourceTree = "<group>"; }; + 8FF8D787CE740246DD485EC2B9980630 /* TimedDrivableExecutor.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = TimedDrivableExecutor.h; path = folly/executors/TimedDrivableExecutor.h; sourceTree = "<group>"; }; + 8FFBB874C46CEA50E77139029650AB86 /* FIRCLSFABNetworkClient.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRCLSFABNetworkClient.m; path = Crashlytics/Shared/FIRCLSNetworking/FIRCLSFABNetworkClient.m; sourceTree = "<group>"; }; + 8FFF7AC74A2B4F478C5F2AD660D630E0 /* react-native-document-picker.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "react-native-document-picker.debug.xcconfig"; sourceTree = "<group>"; }; + 900768324A4F17DD15851A07B2A18578 /* Launder.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Launder.h; path = folly/lang/Launder.h; sourceTree = "<group>"; }; + 900D4F320E989BC916568651EAC1858A /* RCTTurboModuleManager.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTTurboModuleManager.mm; sourceTree = "<group>"; }; + 901206FA466E71B8B154836EB931AD2A /* EventBaseBackendBase.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = EventBaseBackendBase.cpp; path = folly/io/async/EventBaseBackendBase.cpp; sourceTree = "<group>"; }; + 9014B91BCD5A69C788727A81994C48F0 /* Preprocessor.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Preprocessor.h; path = folly/Preprocessor.h; sourceTree = "<group>"; }; + 90169179608738F3EE20B24798F5018A /* SDImageCacheDefine.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = SDImageCacheDefine.m; path = SDWebImage/Core/SDImageCacheDefine.m; sourceTree = "<group>"; }; + 901AACE639312BF5DE86D58D45064E77 /* FIRCLSPackageReportOperation.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRCLSPackageReportOperation.m; path = Crashlytics/Crashlytics/Operations/Reports/FIRCLSPackageReportOperation.m; sourceTree = "<group>"; }; + 90228DD9CF6B05645E6690C53AD4A221 /* FIRCoreDiagnosticsConnector.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRCoreDiagnosticsConnector.h; path = FirebaseCore/Sources/Private/FIRCoreDiagnosticsConnector.h; sourceTree = "<group>"; }; + 903F7945B94ED2046D609A119505B599 /* RCTShadowView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTShadowView.h; sourceTree = "<group>"; }; + 905C4A2E0B91A8A9EEA897C6E47B431D /* EXAVObject.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = EXAVObject.h; path = EXAV/EXAVObject.h; sourceTree = "<group>"; }; + 9065431250E40827CDAF45747568F67A /* BSGConnectivity.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BSGConnectivity.h; sourceTree = "<group>"; }; + 90708FC08907750D80683605D1B29894 /* REAAllTransitions.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = REAAllTransitions.h; sourceTree = "<group>"; }; + 907F12A5AC833E515F4925CF4B537581 /* RNConfigReader.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNConfigReader.h; path = ios/RNConfigReader.h; sourceTree = "<group>"; }; + 90886ED3F19323A4ED158C3E18181CD8 /* SerialExecutor.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = SerialExecutor.cpp; path = folly/executors/SerialExecutor.cpp; sourceTree = "<group>"; }; + 908AEBD907478D7638C62BD46D4F7F90 /* Flipper-RSocket-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "Flipper-RSocket-dummy.m"; sourceTree = "<group>"; }; + 90AF26C6F16CDF6E27F729A7BBDF1769 /* StreamFragmentAccumulator.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = StreamFragmentAccumulator.h; path = rsocket/statemachine/StreamFragmentAccumulator.h; sourceTree = "<group>"; }; + 90C860AA372F1A946F4F12B9A7EADC85 /* RNFBApp.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = RNFBApp.podspec; sourceTree = "<group>"; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; + 90CD07F197F7D3C0F14D959F46D50FFB /* ipv6-internal.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "ipv6-internal.h"; sourceTree = "<group>"; }; + 90CD2431988C18ADBC261F0BFAF3BE98 /* GoogleDataTransportInternal.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = GoogleDataTransportInternal.h; path = GoogleDataTransport/GDTCORLibrary/Internal/GoogleDataTransportInternal.h; sourceTree = "<group>"; }; + 90CE700FC7EF1C20C9AF19AF6DFC6BEF /* BSGUIKit.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BSGUIKit.h; sourceTree = "<group>"; }; + 90F3F244CB7794A176C31580D4464693 /* react-native-simple-crypto-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "react-native-simple-crypto-prefix.pch"; sourceTree = "<group>"; }; + 90F540860647F95D4E309A4370604FA3 /* RNFlingHandler.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RNFlingHandler.m; sourceTree = "<group>"; }; + 9111371448EAA7AEEE36984B8BEF1734 /* README.md */ = {isa = PBXFileReference; includeInIndex = 1; path = README.md; sourceTree = "<group>"; }; + 9137730D6D9EF23883779E2130ACF74C /* EventHandler.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = EventHandler.cpp; path = folly/io/async/EventHandler.cpp; sourceTree = "<group>"; }; + 9147608CCF3C8761308CE5361DBEFF50 /* Demangle.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = Demangle.cpp; path = folly/detail/Demangle.cpp; sourceTree = "<group>"; }; + 915DDE4D9CAD1164B7707A88FE4F4F71 /* FIRCoreDiagnosticsConnector.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRCoreDiagnosticsConnector.h; path = FirebaseCore/Sources/Private/FIRCoreDiagnosticsConnector.h; sourceTree = "<group>"; }; + 9167A925AAB617B7D73080B2A9A091E0 /* FIRLoggerLevel.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRLoggerLevel.h; path = FirebaseCore/Sources/Public/FirebaseCore/FIRLoggerLevel.h; sourceTree = "<group>"; }; + 91889F33FABB8B897AE43FC96DFCA87C /* REAUtils.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = REAUtils.h; path = ios/REAUtils.h; sourceTree = "<group>"; }; + 9191C389ECCEDE514709DB9014B65844 /* FlipperKitReactPlugin.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FlipperKitReactPlugin.h; path = iOS/Plugins/FlipperKitReactPlugin/FlipperKitReactPlugin/FlipperKitReactPlugin.h; sourceTree = "<group>"; }; + 9193DB1178F58229FE5634006E64A332 /* EXAppleAuthentication.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = EXAppleAuthentication.m; path = EXAppleAuthentication/EXAppleAuthentication.m; sourceTree = "<group>"; }; + 91B2FC67F492B2114B67A1B2429ADB6D /* RecordIO-inl.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "RecordIO-inl.h"; path = "folly/io/RecordIO-inl.h"; sourceTree = "<group>"; }; + 91B489E0393C8513D96598B65BF2901E /* react-native-appearance-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "react-native-appearance-dummy.m"; sourceTree = "<group>"; }; + 91B5A6D0C65ACE19D0A47A4FB90D4734 /* fr.lproj */ = {isa = PBXFileReference; includeInIndex = 1; name = fr.lproj; path = "Objective-C/TOCropViewController/Resources/fr.lproj"; sourceTree = "<group>"; }; + 91DD6CF3D9386064908C8DF3737E49CF /* ConcurrentSkipList-inl.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "ConcurrentSkipList-inl.h"; path = "folly/ConcurrentSkipList-inl.h"; sourceTree = "<group>"; }; + 91E188CE298C843330179204C0C7FDAF /* SDImageGraphics.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SDImageGraphics.h; path = SDWebImage/Core/SDImageGraphics.h; sourceTree = "<group>"; }; + 91EF17B4E96C325051493245CC43FC73 /* Time.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Time.h; path = folly/portability/Time.h; sourceTree = "<group>"; }; + 92059877E726376AD26B932833F991DA /* FBLazyVector.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = FBLazyVector.release.xcconfig; sourceTree = "<group>"; }; + 920CE168839BE2662068B5F88C5F6B81 /* GDTCOREvent.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = GDTCOREvent.m; path = GoogleDataTransport/GDTCORLibrary/GDTCOREvent.m; sourceTree = "<group>"; }; + 92474C5083F1FF717AB740685222FB9F /* EXWebBrowser.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = EXWebBrowser.debug.xcconfig; sourceTree = "<group>"; }; + 924E2BA21366C7E3308595E200626D21 /* React-callinvoker.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = "React-callinvoker.podspec"; sourceTree = "<group>"; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; + 925872547B0958B455C57C81FE6697EF /* AsyncSignalHandler.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = AsyncSignalHandler.h; path = folly/io/async/AsyncSignalHandler.h; sourceTree = "<group>"; }; + 925C52DE1975FCE524344D40A1E394E0 /* CtorConfig.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = CtorConfig.h; path = destroot/include/hermes/Public/CtorConfig.h; sourceTree = "<group>"; }; + 928332B87BD69A8EC4038001F223248D /* FIRCLSHost.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRCLSHost.m; path = Crashlytics/Crashlytics/Components/FIRCLSHost.m; sourceTree = "<group>"; }; + 9287B76C2C9B47239AC1E73D2BBD8149 /* FIRLibrary.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRLibrary.h; path = FirebaseCore/Sources/Private/FIRLibrary.h; sourceTree = "<group>"; }; + 928A005C389A3F26AA596AE8D032B596 /* TimekeeperScheduledExecutor.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = TimekeeperScheduledExecutor.h; path = folly/executors/TimekeeperScheduledExecutor.h; sourceTree = "<group>"; }; + 929288C0C91551931B3A305BF75A7CBE /* event.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; path = event.cpp; sourceTree = "<group>"; }; + 92931E89F8A7F0F1C206F2E85A98BBE6 /* RNFBAppModule.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNFBAppModule.h; path = ios/RNFBApp/RNFBAppModule.h; sourceTree = "<group>"; }; + 929C00F9896BB239C78A0788F9AA230A /* utils.c */ = {isa = PBXFileReference; includeInIndex = 1; name = utils.c; path = src/utils/utils.c; sourceTree = "<group>"; }; + 92A28529F13E7C0684B21B2C829C9C6A /* RCTSubtractionAnimatedNode.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTSubtractionAnimatedNode.h; sourceTree = "<group>"; }; + 92AA7A8871EC7BD75F099AC1FBF339D8 /* ParkingLot.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = ParkingLot.cpp; path = folly/synchronization/ParkingLot.cpp; sourceTree = "<group>"; }; + 92B98D79B80A11C241B2C25BEAB7C807 /* FlipperInitConfig.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FlipperInitConfig.h; path = xplat/Flipper/FlipperInitConfig.h; sourceTree = "<group>"; }; + 92D9BA5F2835454A664AE1823699E248 /* GULHeartbeatDateStorage.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = GULHeartbeatDateStorage.h; path = GoogleUtilities/Environment/Private/GULHeartbeatDateStorage.h; sourceTree = "<group>"; }; + 92ECA95197B1587F62AA86B35EF33839 /* cost_mips_dsp_r2.c */ = {isa = PBXFileReference; includeInIndex = 1; name = cost_mips_dsp_r2.c; path = src/dsp/cost_mips_dsp_r2.c; sourceTree = "<group>"; }; + 92F4850079F06FDE4229F1A59BD9AF55 /* BSG_KSString.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BSG_KSString.h; sourceTree = "<group>"; }; + 92F772505469F7B51F99FCAA9380D68A /* RNReanimated-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "RNReanimated-prefix.pch"; sourceTree = "<group>"; }; + 93074C0BB58E9B56D2043AA01605C9BC /* RNCPicker.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNCPicker.h; path = ios/RNCPicker.h; sourceTree = "<group>"; }; + 93076B98AE8AA4CF1A37A8657993ED91 /* BSG_KSCrashC.c */ = {isa = PBXFileReference; includeInIndex = 1; path = BSG_KSCrashC.c; sourceTree = "<group>"; }; + 930D97BC88AFEE502D58B06AE880A9E7 /* RNFBApp.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = RNFBApp.debug.xcconfig; sourceTree = "<group>"; }; + 93150517B8B8E33E2B6F5B6AE637F5C8 /* HighlighterViewManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = HighlighterViewManager.m; sourceTree = "<group>"; }; + 9318D8686DCB957CD44C28F18B007542 /* HardwareConcurrency.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = HardwareConcurrency.h; path = folly/system/HardwareConcurrency.h; sourceTree = "<group>"; }; + 93308F420E42F74B5A2750E4E732D71A /* RCTCustomInputControllerTemp.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTCustomInputControllerTemp.m; sourceTree = "<group>"; }; + 9336128E4BB130A5809670702420D6C4 /* TimedDrivableExecutor.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = TimedDrivableExecutor.cpp; path = folly/executors/TimedDrivableExecutor.cpp; sourceTree = "<group>"; }; + 93474E2A32F3F89607C1C64A814178ED /* JSIDynamic.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; path = JSIDynamic.cpp; sourceTree = "<group>"; }; + 9351A95DC0CA462DA49B4D338052E5F9 /* ErrorCode.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = ErrorCode.cpp; path = rsocket/framing/ErrorCode.cpp; sourceTree = "<group>"; }; + 935698F1D84D39E6ADDFB31AC2463B31 /* F14Mask.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = F14Mask.h; path = folly/container/detail/F14Mask.h; sourceTree = "<group>"; }; + 935C2364F12FB415DB80BD6BD122E7BB /* SDAnimatedImagePlayer.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SDAnimatedImagePlayer.h; path = SDWebImage/Core/SDAnimatedImagePlayer.h; sourceTree = "<group>"; }; + 937643CBD5E1179457B43E9615FDE49F /* IDStore.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = IDStore.h; path = ios/IDStore.h; sourceTree = "<group>"; }; + 9376D3DA733EB7A9F52EB85BA7A6D7BF /* BlockingQueue.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = BlockingQueue.h; path = folly/executors/task_queue/BlockingQueue.h; sourceTree = "<group>"; }; + 93972940615BA109232EF3C4B4C4FE46 /* RNGestureHandlerManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNGestureHandlerManager.h; path = ios/RNGestureHandlerManager.h; sourceTree = "<group>"; }; + 93A55AA66A5CAC2977A683C098422295 /* RCTGIFImageDecoder.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTGIFImageDecoder.h; path = Libraries/Image/RCTGIFImageDecoder.h; sourceTree = "<group>"; }; + 93A8BE9D0FEAE0D5377DB25DCCFC8D1D /* RCTRootContentView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTRootContentView.m; sourceTree = "<group>"; }; + 93BC5623D929B9D1C5B87AE509F7BB03 /* React-jsinspector.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "React-jsinspector.debug.xcconfig"; sourceTree = "<group>"; }; + 93BE2A7258570215888E5E1DBC0D20DA /* YogaKit.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = YogaKit.debug.xcconfig; sourceTree = "<group>"; }; + 93E91CD1E2E39BE42F531025E5BC95B5 /* FIRLogger.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRLogger.h; path = FirebaseCore/Sources/Private/FIRLogger.h; sourceTree = "<group>"; }; + 93F7F55C9FEEF65950585E15EB8E2360 /* BugsnagAppWithState.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BugsnagAppWithState.h; sourceTree = "<group>"; }; + 93FAF2D396F725E27801608CC01AEDA3 /* log_severity.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = log_severity.h; path = src/glog/log_severity.h; sourceTree = "<group>"; }; + 940A3662887443C415A3B1D34DF8A3EA /* Restart.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Restart.h; path = ios/Restart.h; sourceTree = "<group>"; }; + 940C8C350C1A8444977469EC19E98889 /* ARTGroupManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = ARTGroupManager.h; sourceTree = "<group>"; }; + 94206CF6E7B7962F10AA8B2B1B313F9D /* json.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = json.cpp; path = folly/json.cpp; sourceTree = "<group>"; }; + 9436B91C9FF161478B84F75E61058C78 /* RCTBaseTextViewManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTBaseTextViewManager.h; sourceTree = "<group>"; }; + 944E90329EADCCBF55638351C5FA6823 /* EXAudioSessionManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = EXAudioSessionManager.h; path = EXAV/EXAudioSessionManager.h; sourceTree = "<group>"; }; + 945A3CDBC2E936DC988EF83FAEDE97F4 /* RCTModuloAnimatedNode.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTModuloAnimatedNode.h; sourceTree = "<group>"; }; + 9462415FFF97F7CF86775C4B3AD3AF3E /* RNCSafeAreaProvider.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNCSafeAreaProvider.h; path = ios/SafeAreaView/RNCSafeAreaProvider.h; sourceTree = "<group>"; }; + 9484D5E5BABAE4DBA96379456A3C18E2 /* LICENSE */ = {isa = PBXFileReference; includeInIndex = 1; path = LICENSE; sourceTree = "<group>"; }; 949B140FBE75F86A22077BDC59663BF9 /* Pods-ShareRocketChatRN-resources.sh */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.script.sh; path = "Pods-ShareRocketChatRN-resources.sh"; sourceTree = "<group>"; }; - 94A96617407F7DDFF6A60E846D25757B /* BSGEventUploadFileOperation.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = BSGEventUploadFileOperation.m; sourceTree = "<group>"; }; - 94B9103E88D643C46E50A2568D73798F /* DoubleConversion-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "DoubleConversion-prefix.pch"; sourceTree = "<group>"; }; - 94BE9A0B11F10DD46B5AEFD4178E116F /* Orientation.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Orientation.h; path = iOS/RCTOrientation/Orientation.h; sourceTree = "<group>"; }; - 94D9587D0AA314F54749BAC8F4AD0D86 /* BugsnagPluginClient.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BugsnagPluginClient.h; sourceTree = "<group>"; }; - 94DB5F79A325AE3462321F5B421B3675 /* RCTSafeAreaViewManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTSafeAreaViewManager.m; sourceTree = "<group>"; }; - 94F84EA98D279AB2D0F27FD2F47507A5 /* RCTLayout.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTLayout.m; sourceTree = "<group>"; }; - 9505DA46341E16895E696AA8B1B082ED /* READebugNode.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = READebugNode.m; sourceTree = "<group>"; }; - 950A7E73159E8A8BE072290647F86D8C /* FrameFlags.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FrameFlags.h; path = rsocket/framing/FrameFlags.h; sourceTree = "<group>"; }; - 952F961F3F5395DE74B427AED838B647 /* EXReactNativeUserNotificationCenterProxy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = EXReactNativeUserNotificationCenterProxy.m; path = EXPermissions/EXReactNativeUserNotificationCenterProxy.m; sourceTree = "<group>"; }; - 95409ABF25D42C8C7A43CEB383BB217A /* REACallFuncNode.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = REACallFuncNode.h; sourceTree = "<group>"; }; - 955FF74652B28A8FB2FF9E3F715C9545 /* RValueReferenceWrapper.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RValueReferenceWrapper.h; path = folly/lang/RValueReferenceWrapper.h; sourceTree = "<group>"; }; - 9572A0E17A29F17FD5B5BA89C0AB5DE0 /* logging.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = logging.h; path = src/glog/logging.h; sourceTree = "<group>"; }; - 957BDDA4643CD66E7752B7C7F1E09ECC /* react-native-jitsi-meet-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "react-native-jitsi-meet-dummy.m"; sourceTree = "<group>"; }; - 95886B2AC7494B540A28ECCD92E6914D /* BSG_KSMach_x86_32.c */ = {isa = PBXFileReference; includeInIndex = 1; path = BSG_KSMach_x86_32.c; sourceTree = "<group>"; }; - 9591C5298AF54D3E53DC9613C0E2ED57 /* UMReactNativeAdapter.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = UMReactNativeAdapter.release.xcconfig; sourceTree = "<group>"; }; - 959538869682DE8F5F8416B71AFB8690 /* CxxNativeModule.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = CxxNativeModule.h; sourceTree = "<group>"; }; - 95996D377A3676FC12259D965827644A /* TurboModulePerfLogger.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = TurboModulePerfLogger.h; sourceTree = "<group>"; }; - 959DD080ECCEA10F66B1BC358DD0AD32 /* upsampling_mips_dsp_r2.c */ = {isa = PBXFileReference; includeInIndex = 1; name = upsampling_mips_dsp_r2.c; path = src/dsp/upsampling_mips_dsp_r2.c; sourceTree = "<group>"; }; - 95A1C64F658C55F9743F8E5CECFBC7CF /* EXAppleAuthentication.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = EXAppleAuthentication.debug.xcconfig; sourceTree = "<group>"; }; - 95ADE5F1DC7D299FB47B126861411FA9 /* BasicTransportCertificate.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = BasicTransportCertificate.h; path = folly/io/async/ssl/BasicTransportCertificate.h; sourceTree = "<group>"; }; - 95C952DEB1AD9F4915CC2757BC264465 /* RCTPackagerClient.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTPackagerClient.h; sourceTree = "<group>"; }; + 94B75D8DFA6087D12A00F22627596B00 /* SKDispatchQueue.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SKDispatchQueue.h; path = iOS/Plugins/FlipperKitNetworkPlugin/FlipperKitNetworkPlugin/SKDispatchQueue.h; sourceTree = "<group>"; }; + 94C2F6F553845BBCD1EA20039EA40845 /* Assume-inl.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "Assume-inl.h"; path = "folly/lang/Assume-inl.h"; sourceTree = "<group>"; }; + 94D00C9DCBF32A0BDA44BBD4083BD70E /* Yoga.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = Yoga.cpp; path = yoga/Yoga.cpp; sourceTree = "<group>"; }; + 94D0F71569ECB5CA48D1300C73C7A995 /* RNFBUtilsModule.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNFBUtilsModule.h; path = ios/RNFBApp/RNFBUtilsModule.h; sourceTree = "<group>"; }; + 94D7E4CC5B1798F6DDEF6B1D65AD374F /* RCTWeakProxy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTWeakProxy.m; sourceTree = "<group>"; }; + 94FD9A8EEE79572CB38F4A5EBC79751C /* Bugsnag+Private.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "Bugsnag+Private.h"; sourceTree = "<group>"; }; + 950830CC50FB7E47054D6B2FC97B23A1 /* raw_logging.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = raw_logging.cc; path = src/raw_logging.cc; sourceTree = "<group>"; }; + 952DF28E4BE7FA02F536556154EB795B /* RCTDisplayWeakRefreshable.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTDisplayWeakRefreshable.h; path = Libraries/Image/RCTDisplayWeakRefreshable.h; sourceTree = "<group>"; }; + 95414DFF7A18D72D48FA7AE92DDDA857 /* JSIndexedRAMBundle.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; path = JSIndexedRAMBundle.cpp; sourceTree = "<group>"; }; + 954232D5415DE23661DF2D0BDC5D5612 /* DebuggerTypes.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = DebuggerTypes.h; path = destroot/include/hermes/Public/DebuggerTypes.h; sourceTree = "<group>"; }; + 95503C247F5429F6E5C0317D8BCA8A9A /* ObservableDoOperator.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ObservableDoOperator.h; path = yarpl/observable/ObservableDoOperator.h; sourceTree = "<group>"; }; + 956044FF56EACEBCFC038AEE4BD75555 /* UMAppLoader.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = UMAppLoader.podspec; sourceTree = "<group>"; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; + 9577A31D828189F7819F1B05697FB260 /* AESCrypt.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = AESCrypt.cpp; path = Core/aes/AESCrypt.cpp; sourceTree = "<group>"; }; + 9581BCB540B6DE2B8B6715B36CD5D069 /* json_pointer.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = json_pointer.h; path = folly/json_pointer.h; sourceTree = "<group>"; }; + 9582915FE4E63A436F37137EFED1A579 /* RCTConvert+ART.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "RCTConvert+ART.m"; path = "ios/RCTConvert+ART.m"; sourceTree = "<group>"; }; + 958AC6930E90C161303CD3BE53186744 /* UIImage+ExtendedCacheData.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "UIImage+ExtendedCacheData.h"; path = "SDWebImage/Core/UIImage+ExtendedCacheData.h"; sourceTree = "<group>"; }; + 9592BE656EE844942EA0F3BF227D00D2 /* RCTImageLoader.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTImageLoader.mm; sourceTree = "<group>"; }; + 959BA46CE2AC241D0364E2195EBF169C /* Arena-inl.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "Arena-inl.h"; path = "folly/memory/Arena-inl.h"; sourceTree = "<group>"; }; + 95A70031801EF4BD36980EAFF67B0FDE /* README.md */ = {isa = PBXFileReference; includeInIndex = 1; path = README.md; sourceTree = "<group>"; }; 95D00A3E66C847FBED5DC0B6073EB67F /* Pods-defaults-RocketChatRN-acknowledgements.plist */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.plist.xml; path = "Pods-defaults-RocketChatRN-acknowledgements.plist"; sourceTree = "<group>"; }; - 95D457B73EC18B3EE005F27734E9C2EC /* FBLPromise+Wrap.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "FBLPromise+Wrap.m"; path = "Sources/FBLPromises/FBLPromise+Wrap.m"; sourceTree = "<group>"; }; - 95E467C2CA3EAB1FECEF9E2AD4F9B632 /* REAParamNode.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = REAParamNode.m; sourceTree = "<group>"; }; - 960AFA97C6DCB819D930DEC1EA15BF49 /* GULUserDefaults.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = GULUserDefaults.h; path = GoogleUtilities/UserDefaults/Private/GULUserDefaults.h; sourceTree = "<group>"; }; - 960B662DBF07CC6F9D678776B42D2D22 /* RCTRefreshControl.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTRefreshControl.h; sourceTree = "<group>"; }; - 96137BB348C0ED1939CB13E295939E4C /* Memory.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Memory.h; path = folly/portability/Memory.h; sourceTree = "<group>"; }; - 961AD9B86A4FFB2F74738BAF22D70B68 /* 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 = "<group>"; }; + 95E2DB6F1DB9AD6DC2CF79A05A0D5233 /* FIRCurrentDateProvider.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRCurrentDateProvider.h; path = FirebaseInstallations/Source/Library/InstallationsIDController/FIRCurrentDateProvider.h; sourceTree = "<group>"; }; + 95EA1CB0FDBF910C585689F704B5831B /* AsyncTimeout.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = AsyncTimeout.h; path = folly/io/async/AsyncTimeout.h; sourceTree = "<group>"; }; + 95F92A612914BDEC7924724EB18891C6 /* JSCExecutorFactory.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = JSCExecutorFactory.mm; sourceTree = "<group>"; }; + 9610016162D10430452F416287D66266 /* MMKVHandler.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = MMKVHandler.h; path = iOS/MMKV/MMKV/MMKVHandler.h; sourceTree = "<group>"; }; + 9613FB321CC5D1D35DAAC54E326B5748 /* RNFBCrashlyticsInitProvider.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNFBCrashlyticsInitProvider.m; path = ios/RNFBCrashlytics/RNFBCrashlyticsInitProvider.m; sourceTree = "<group>"; }; 9621F4B0A44623E984DC190DDF0A9A4B /* libPods-defaults-RocketChatRN.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; name = "libPods-defaults-RocketChatRN.a"; path = "libPods-defaults-RocketChatRN.a"; sourceTree = BUILT_PRODUCTS_DIR; }; - 9622CBA20F72B0317AA01CD58030645E /* ObservableConcatOperators.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ObservableConcatOperators.h; path = yarpl/observable/ObservableConcatOperators.h; sourceTree = "<group>"; }; - 96241B9F1CFBD84D1ACCFE24CA7634CF /* RNConfigReader.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = RNConfigReader.debug.xcconfig; sourceTree = "<group>"; }; - 96467C509C117597F95EFD14D4F49097 /* WarmResumeManager.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = WarmResumeManager.cpp; path = rsocket/internal/WarmResumeManager.cpp; sourceTree = "<group>"; }; - 964ED3AFCF1FA95EB0D582FF7DD71626 /* http-internal.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "http-internal.h"; sourceTree = "<group>"; }; - 9660208B0CEFAE20C259097910CE9787 /* SmallLocks.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SmallLocks.h; path = folly/synchronization/SmallLocks.h; sourceTree = "<group>"; }; - 9661B1C4A2B56C984ADF56018468F19E /* Flipper.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = Flipper.debug.xcconfig; sourceTree = "<group>"; }; - 9665E96A1951706C8EAE0C847E4E7288 /* SKBufferingPlugin.mm */ = {isa = PBXFileReference; includeInIndex = 1; name = SKBufferingPlugin.mm; path = iOS/Plugins/FlipperKitNetworkPlugin/FlipperKitNetworkPlugin/SKBufferingPlugin.mm; sourceTree = "<group>"; }; - 9683279A137FDD94EBCEC25771038803 /* RNCMaskedView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNCMaskedView.h; path = ios/RNCMaskedView.h; sourceTree = "<group>"; }; - 96971B5D8949E96B552B0C7CFBD06F72 /* SysMman.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SysMman.h; path = folly/portability/SysMman.h; sourceTree = "<group>"; }; - 96A65951DF1FD441212C181B834813A3 /* FIRCLSProfiling.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRCLSProfiling.h; path = Crashlytics/Crashlytics/Helpers/FIRCLSProfiling.h; sourceTree = "<group>"; }; - 96BF2D34B47DCE54AA42D94CBA7CA081 /* Access.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Access.h; path = folly/container/Access.h; sourceTree = "<group>"; }; - 96C961D244E629D8F1928A1FD8230EC6 /* SDAnimatedImage.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SDAnimatedImage.h; path = SDWebImage/Core/SDAnimatedImage.h; sourceTree = "<group>"; }; - 96CFDA90AB401FBA7E4CFF0BEF711DF7 /* GDTCORPlatform.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = GDTCORPlatform.m; path = GoogleDataTransport/GDTCORLibrary/GDTCORPlatform.m; sourceTree = "<group>"; }; - 96E4461D9DEA1D2C1CFFB0E9C5177F3B /* UMFileSystemInterface.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = UMFileSystemInterface.h; path = UMFileSystemInterface/UMFileSystemInterface.h; sourceTree = "<group>"; }; - 96E65B84F0413A12D554FE770DB991AD /* HardwareConcurrency.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = HardwareConcurrency.cpp; path = folly/system/HardwareConcurrency.cpp; sourceTree = "<group>"; }; - 96FF04602D313A035A686E37DB0AD9DD /* FIRLogger.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRLogger.h; path = FirebaseCore/Sources/Private/FIRLogger.h; sourceTree = "<group>"; }; - 97091FD93643FE8D36CD583C5E548E92 /* IOExecutor.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = IOExecutor.h; path = folly/executors/IOExecutor.h; sourceTree = "<group>"; }; - 971CD715DCCACC85D5AB2AD820C9B7A7 /* BSG_KSCrashC.c */ = {isa = PBXFileReference; includeInIndex = 1; path = BSG_KSCrashC.c; sourceTree = "<group>"; }; - 9728A1D78B6345338374226E0BB3DB05 /* ThreadLock.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ThreadLock.h; path = Core/ThreadLock.h; sourceTree = "<group>"; }; - 972A33A68333AB5F1158E2DD2B039E97 /* JsArgumentHelpers.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = JsArgumentHelpers.h; sourceTree = "<group>"; }; - 9730C5179AB23C55654E2F7644F4C25F /* RCTDevLoadingView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTDevLoadingView.h; path = React/CoreModules/RCTDevLoadingView.h; sourceTree = "<group>"; }; - 973D4FEE9B301EE619FA03B31A4F2933 /* SysMembarrier.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SysMembarrier.h; path = folly/portability/SysMembarrier.h; sourceTree = "<group>"; }; - 97443E49951B2C31C21D22A095CED0A6 /* GULLogger.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = GULLogger.m; path = GoogleUtilities/Logger/GULLogger.m; sourceTree = "<group>"; }; - 974A52EA9574697A6D4F84ABF5566E6E /* Stdlib.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Stdlib.h; path = folly/portability/Stdlib.h; sourceTree = "<group>"; }; - 975AFAA25345A61144FCBD53F33CA621 /* JSBigString.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; path = JSBigString.cpp; sourceTree = "<group>"; }; - 9761F3CC3B223CD48DD9834FAD2DB33B /* AsymmetricMemoryBarrier.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = AsymmetricMemoryBarrier.cpp; path = folly/synchronization/AsymmetricMemoryBarrier.cpp; sourceTree = "<group>"; }; - 978BA8A0B9691E1FD6D7C40F23C87A4E /* fixed-dtoa.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "fixed-dtoa.h"; path = "double-conversion/fixed-dtoa.h"; sourceTree = "<group>"; }; - 97AD5CA8E943FBEDCED81FAA61E6D950 /* RNFastImage.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = RNFastImage.podspec; sourceTree = "<group>"; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; - 97B763A074EB5BD7EAE91979A432F6AC /* RCTEventDispatcher.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTEventDispatcher.mm; sourceTree = "<group>"; }; - 97B8EA718F1DDCEEF99ACC9109F2026F /* FlipperState.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = FlipperState.cpp; path = xplat/Flipper/FlipperState.cpp; sourceTree = "<group>"; }; - 97D8DC1607DCE53508DE8A2DF929757A /* strtod.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = strtod.h; path = "double-conversion/strtod.h"; sourceTree = "<group>"; }; - 97E794BA33DA6947E9A38E96DC57959A /* UMImageLoaderInterface.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = UMImageLoaderInterface.release.xcconfig; sourceTree = "<group>"; }; - 97E927B66185AC875950011515566C7E /* Portability.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Portability.h; path = folly/Portability.h; sourceTree = "<group>"; }; - 97EEA106B8FDE670E90842205BDC5135 /* react-native-netinfo-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "react-native-netinfo-dummy.m"; sourceTree = "<group>"; }; - 97F0CE7DDECCEC0566F9F9C3954CF19F /* json_patch.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = json_patch.cpp; path = folly/json_patch.cpp; sourceTree = "<group>"; }; - 9805FAF985C740CD5AF04BB3DC67F701 /* RNRotationHandler.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RNRotationHandler.h; sourceTree = "<group>"; }; - 981334D1B99AA550C5C38286FB70EB92 /* GDTCOREvent_Private.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = GDTCOREvent_Private.h; path = GoogleDataTransport/GDTCORLibrary/Private/GDTCOREvent_Private.h; sourceTree = "<group>"; }; - 98173C30AAAEB60BB67F719BDE999FA1 /* picture_enc.c */ = {isa = PBXFileReference; includeInIndex = 1; name = picture_enc.c; path = src/enc/picture_enc.c; sourceTree = "<group>"; }; - 9827822A10AE401C50A145D0783F598F /* picture_csp_enc.c */ = {isa = PBXFileReference; includeInIndex = 1; name = picture_csp_enc.c; path = src/enc/picture_csp_enc.c; sourceTree = "<group>"; }; - 9833E76FD72AA77BD04299DE95E2078A /* HHWheelTimer.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = HHWheelTimer.cpp; path = folly/io/async/HHWheelTimer.cpp; sourceTree = "<group>"; }; - 9846051E8163DD05F07AEFC5926019F2 /* ARTPattern.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = ARTPattern.m; sourceTree = "<group>"; }; - 984F1BFA478C3F2BB470222B51A85C46 /* SDAnimatedImageView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = SDAnimatedImageView.m; path = SDWebImage/Core/SDAnimatedImageView.m; sourceTree = "<group>"; }; - 9881046FDD9C36E6167F04A001FF345A /* FIRErrorCode.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRErrorCode.h; path = FirebaseCore/Sources/Private/FIRErrorCode.h; sourceTree = "<group>"; }; - 988D1D5D5262936DBBB6D4BF4F110318 /* SysSyscall.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SysSyscall.h; path = folly/portability/SysSyscall.h; sourceTree = "<group>"; }; - 98B00F71EF99AF2042883F39A85341E1 /* FIRCLSURLSessionTask.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRCLSURLSessionTask.h; path = Crashlytics/Crashlytics/FIRCLSURLSession/Tasks/FIRCLSURLSessionTask.h; sourceTree = "<group>"; }; - 98B3C00ED1A48B9AFDFA6A37D768C053 /* FBLPromise+Testing.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "FBLPromise+Testing.h"; path = "Sources/FBLPromises/include/FBLPromise+Testing.h"; sourceTree = "<group>"; }; - 98C50B476070D8672516720D0DC6473F /* FKUserDefaultsSwizzleUtility.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FKUserDefaultsSwizzleUtility.h; path = iOS/Plugins/FlipperKitUserDefaultsPlugin/FKUserDefaultsSwizzleUtility.h; sourceTree = "<group>"; }; - 98C8C0BAD902465510161FDA9A574223 /* Stdio.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Stdio.h; path = folly/portability/Stdio.h; sourceTree = "<group>"; }; - 98CA4C533F56EA8774B37B7E5CFD6E7A /* ScheduledRSocketResponder.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ScheduledRSocketResponder.h; path = rsocket/internal/ScheduledRSocketResponder.h; sourceTree = "<group>"; }; - 98D20082443CB51499254D58AA1B64FD /* FIRCLSSymbolicationOperation.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRCLSSymbolicationOperation.m; path = Crashlytics/Crashlytics/Operations/Symbolication/FIRCLSSymbolicationOperation.m; sourceTree = "<group>"; }; - 98DAAEA31AF8159C03E061644FC4BB80 /* UMPermissionsInterface-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "UMPermissionsInterface-prefix.pch"; sourceTree = "<group>"; }; - 98E57AADE4A8D369C30FBB97722F8FB5 /* RNJitsiMeetViewManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNJitsiMeetViewManager.h; path = ios/RNJitsiMeetViewManager.h; sourceTree = "<group>"; }; - 98F5638F8036BD901269E11FB8559946 /* UMSensorsInterface.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = UMSensorsInterface.podspec; sourceTree = "<group>"; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; - 98F664E7D76100C647C47911BF525392 /* BSG_KSCrashContext.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BSG_KSCrashContext.h; sourceTree = "<group>"; }; - 990A00178717052F257E58B288D15A84 /* FiberIOExecutor.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FiberIOExecutor.h; path = folly/executors/FiberIOExecutor.h; sourceTree = "<group>"; }; - 9915685C01F70A36E07105E093943607 /* Request.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Request.h; path = folly/io/async/Request.h; sourceTree = "<group>"; }; - 992A830F43307EFD1D876DEB3FA56EB6 /* RNFBRCTEventEmitter.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNFBRCTEventEmitter.m; path = ios/RNFBApp/RNFBRCTEventEmitter.m; sourceTree = "<group>"; }; - 992BE0FF9C4E7E0A4E2106380FB6AEC1 /* FrameType.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FrameType.h; path = rsocket/framing/FrameType.h; sourceTree = "<group>"; }; - 992D41F7A137097278CF3EDB63F141AE /* LNAnimatorTemp.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = LNAnimatorTemp.h; sourceTree = "<group>"; }; - 992DD574BFA6E0642113BB1C117173AB /* RCTKeyCommands.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTKeyCommands.h; sourceTree = "<group>"; }; - 9942BE296BDC9338E1E5B26D1CFF0853 /* RCTEventEmitter.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTEventEmitter.h; sourceTree = "<group>"; }; - 9950AA3B543B1E92A2B0EE75F9A5621F /* RCTBaseTextInputView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTBaseTextInputView.m; sourceTree = "<group>"; }; - 995FB2978F4C016731E2A206E0EB8447 /* README.md */ = {isa = PBXFileReference; includeInIndex = 1; path = README.md; sourceTree = "<group>"; }; - 996F677F0C4D75E0BA8139D2D0B4FF19 /* RNCommandsHandler.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNCommandsHandler.m; path = RNNotifications/RNCommandsHandler.m; sourceTree = "<group>"; }; - 9973427BC849E103A860FA21364BE7BB /* React-RCTText-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "React-RCTText-dummy.m"; sourceTree = "<group>"; }; - 997BBF1F370A66F6EAD822AE43E3E6F0 /* RSocketTransport.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RSocketTransport.h; path = rsocket/transports/RSocketTransport.h; sourceTree = "<group>"; }; - 998986BB30812E936C369038CBD6799A /* SKHighlightOverlay.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SKHighlightOverlay.h; path = iOS/Plugins/FlipperKitPluginUtils/FlipperKitHighlightOverlay/SKHighlightOverlay.h; sourceTree = "<group>"; }; - 99A6421B152D69680B967E3A392F1F99 /* EXConstantsService.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = EXConstantsService.h; path = EXConstants/EXConstantsService.h; sourceTree = "<group>"; }; - 99AE7D08E695C2160D38F69BBEDC8E2F /* AtomicUnorderedMap.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = AtomicUnorderedMap.h; path = folly/AtomicUnorderedMap.h; sourceTree = "<group>"; }; - 99B7A76C5FDAC071619973B54DEF69DE /* RCTConvert+Text.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "RCTConvert+Text.h"; path = "Libraries/Text/RCTConvert+Text.h"; sourceTree = "<group>"; }; - 99BC38F149A766A810843A66109219B8 /* SDWebImageDownloaderDecryptor.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SDWebImageDownloaderDecryptor.h; path = SDWebImage/Core/SDWebImageDownloaderDecryptor.h; sourceTree = "<group>"; }; - 99BE2F500519335CDB65E84AFD50FDF5 /* FrameFlags.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = FrameFlags.cpp; path = rsocket/framing/FrameFlags.cpp; sourceTree = "<group>"; }; - 99CDE89A9ABDA7BAFFE28A851DB55DB9 /* FIRCoreDiagnostics.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRCoreDiagnostics.m; path = Firebase/CoreDiagnostics/FIRCDLibrary/FIRCoreDiagnostics.m; sourceTree = "<group>"; }; + 963605EF2214948C92F4F2EB87B7F717 /* RCTInspectorPackagerConnection.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTInspectorPackagerConnection.m; sourceTree = "<group>"; }; + 9636CA304D0800814FE268B7CAC120BC /* SDAnimatedImageView+WebCache.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "SDAnimatedImageView+WebCache.h"; path = "SDWebImage/Core/SDAnimatedImageView+WebCache.h"; sourceTree = "<group>"; }; + 963D100AE3F34EC8E0415BDE41ED843A /* HazptrThreadPoolExecutor.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = HazptrThreadPoolExecutor.h; path = folly/synchronization/HazptrThreadPoolExecutor.h; sourceTree = "<group>"; }; + 96408A247A8585E195EFE59F6D2A8F94 /* FIRInstallationsItem+RegisterInstallationAPI.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "FIRInstallationsItem+RegisterInstallationAPI.m"; path = "FirebaseInstallations/Source/Library/InstallationsAPI/FIRInstallationsItem+RegisterInstallationAPI.m"; sourceTree = "<group>"; }; + 9676C3DB7DFE23361D6B1FF98E9CEF18 /* F14Set.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = F14Set.h; path = folly/container/F14Set.h; sourceTree = "<group>"; }; + 9685144DF6196BA90C7716B91E231B30 /* RNCConnectionStateWatcher.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNCConnectionStateWatcher.h; path = ios/RNCConnectionStateWatcher.h; sourceTree = "<group>"; }; + 9685AD784EAD951E2708D500DB1E46A8 /* README.md */ = {isa = PBXFileReference; includeInIndex = 1; path = README.md; sourceTree = "<group>"; }; + 96A3D3EABA6E54D205950E7FBE97DCFD /* SaturatingSemaphore.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SaturatingSemaphore.h; path = folly/synchronization/SaturatingSemaphore.h; sourceTree = "<group>"; }; + 96A41279F3E2C276096CCD680E045ABB /* signalhandler.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = signalhandler.cc; path = src/signalhandler.cc; sourceTree = "<group>"; }; + 96C47B2C14F09F0CEEE92D97B1AAA4F4 /* Executor.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Executor.h; path = folly/Executor.h; sourceTree = "<group>"; }; + 96C6478B16331AA6109135B6553E2233 /* BSG_KSCrashState.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = BSG_KSCrashState.m; sourceTree = "<group>"; }; + 96CF5E5631A3BC277F3C295FC0CCB840 /* UIImage+Extension.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "UIImage+Extension.m"; path = "ios/src/UIImage+Extension.m"; sourceTree = "<group>"; }; + 96D9C1CF38ABB091FCA84C472795BFEA /* BSG_KSMachApple.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BSG_KSMachApple.h; sourceTree = "<group>"; }; + 96F081335C712C7621EB3E7D03F23609 /* UMMagnetometerInterface.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = UMMagnetometerInterface.h; path = UMSensorsInterface/UMMagnetometerInterface.h; sourceTree = "<group>"; }; + 96F1C711648D7EC7F24569DD43BCC978 /* RNLocalize.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = RNLocalize.podspec; sourceTree = "<group>"; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; + 9704856B132A18D019D8C8500400D8C5 /* FrameProcessor.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FrameProcessor.h; path = rsocket/framing/FrameProcessor.h; sourceTree = "<group>"; }; + 9711B6132BF37054EE9339D0F51F2762 /* AsyncPauseState.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = AsyncPauseState.h; sourceTree = "<group>"; }; + 97564B076C7DB08D2A2B8BA13FEB42A3 /* RCTParserUtils.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTParserUtils.h; sourceTree = "<group>"; }; + 9762DD58E41F3AE1276FEF73934D751F /* YGNodePrint.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = YGNodePrint.h; path = yoga/YGNodePrint.h; sourceTree = "<group>"; }; + 9767E8B1CE2B3E52386A6752C7982703 /* YGMacros.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = YGMacros.h; path = yoga/YGMacros.h; sourceTree = "<group>"; }; + 9778B10B7FF21E856F84F2337269C962 /* GDTCCTUploader.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = GDTCCTUploader.m; path = GoogleDataTransport/GDTCCTLibrary/GDTCCTUploader.m; sourceTree = "<group>"; }; + 9786BDA3897B7B925F5A1BE2BDCC00A3 /* RNFBVersion.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNFBVersion.m; path = ios/RNFBApp/RNFBVersion.m; sourceTree = "<group>"; }; + 97929816D7EB4B98DE433493E463D493 /* Hazptr.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = Hazptr.cpp; path = folly/synchronization/Hazptr.cpp; sourceTree = "<group>"; }; + 979E7FEE22327117DC214AE9CD06679A /* RValueReferenceWrapper.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RValueReferenceWrapper.h; path = folly/lang/RValueReferenceWrapper.h; sourceTree = "<group>"; }; + 97C85C41CE66F2DB92F38874F06E6344 /* FingerprintPolynomial.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FingerprintPolynomial.h; path = folly/detail/FingerprintPolynomial.h; sourceTree = "<group>"; }; + 97EACA374DAEF6EBE6E4B85CC24B0FF1 /* FIRCLSUUID.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRCLSUUID.m; path = Crashlytics/Shared/FIRCLSUUID.m; sourceTree = "<group>"; }; + 97F83FBADCFDF7E6A192341BCD09CA2A /* BugsnagConfigSerializer.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BugsnagConfigSerializer.h; sourceTree = "<group>"; }; + 981CDDFA1C10E65722D25E7A97756788 /* RNSScreen.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNSScreen.h; path = ios/RNSScreen.h; sourceTree = "<group>"; }; + 98277B8A184BC8C047CE83E5FC4F83F7 /* FIRCLSFABHost.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRCLSFABHost.m; path = Crashlytics/Shared/FIRCLSFABHost.m; sourceTree = "<group>"; }; + 983C766C4E4BF3B284BAC9CB16A078FB /* EXHapticsModule.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = EXHapticsModule.h; path = EXHaptics/EXHapticsModule.h; sourceTree = "<group>"; }; + 987A523FE8F6A0A90CDADDDC37473814 /* React-RCTSettings-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "React-RCTSettings-prefix.pch"; sourceTree = "<group>"; }; + 989664807ECEE69B4F9008E82B293039 /* RNDeviceInfo-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "RNDeviceInfo-prefix.pch"; sourceTree = "<group>"; }; + 989CE4BB67CB2751A57CC3D5BA309B0F /* RCTRedBoxSetEnabled.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTRedBoxSetEnabled.m; sourceTree = "<group>"; }; + 98B837F26EC99DCB7279A533520ACC3D /* FIRInstallationsLogger.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRInstallationsLogger.m; path = FirebaseInstallations/Source/Library/FIRInstallationsLogger.m; sourceTree = "<group>"; }; + 98B97D3E7FB183253A65788833F81CE2 /* MaterialIcons.ttf */ = {isa = PBXFileReference; includeInIndex = 1; name = MaterialIcons.ttf; path = Fonts/MaterialIcons.ttf; sourceTree = "<group>"; }; + 98BC84500A9169FA9330A22C2AAD42EB /* React-RCTImage-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "React-RCTImage-prefix.pch"; sourceTree = "<group>"; }; + 98C0D5FA0AC2D39C2A02838D1243B0E5 /* StreamStateMachineBase.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = StreamStateMachineBase.h; path = rsocket/statemachine/StreamStateMachineBase.h; sourceTree = "<group>"; }; + 98E2830DD301E0C3482CFFB5AD445B65 /* BSGEventUploadOperation.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = BSGEventUploadOperation.m; sourceTree = "<group>"; }; + 98F98571D2236847E60AEA194772C9F8 /* EXHapticsModule.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = EXHapticsModule.m; path = EXHaptics/EXHapticsModule.m; sourceTree = "<group>"; }; + 99058BE0A3D642B8735DB2DA74E35876 /* RCTPackagerClient.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTPackagerClient.h; sourceTree = "<group>"; }; + 990946150492B7C60D4FD514DD761909 /* BlurView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = BlurView.h; path = ios/BlurView.h; sourceTree = "<group>"; }; + 9929A30078F3C244D4ABD9E027C02733 /* BSG_KSLogger.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = BSG_KSLogger.m; sourceTree = "<group>"; }; + 993B8BBCAC56746549B6BC04232AE17F /* FIRCoreDiagnosticsInterop.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRCoreDiagnosticsInterop.h; path = Interop/CoreDiagnostics/Public/FIRCoreDiagnosticsInterop.h; sourceTree = "<group>"; }; + 99426704230609B4CF885AD3E0E448AC /* RCTMultilineTextInputView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTMultilineTextInputView.h; sourceTree = "<group>"; }; + 99464526434E7417235B1DA89FC8AFBE /* Subprocess.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = Subprocess.cpp; path = folly/Subprocess.cpp; sourceTree = "<group>"; }; + 995646CCF0E2046980210989B52D01E1 /* UMUserNotificationCenterProxyInterface.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = UMUserNotificationCenterProxyInterface.h; path = UMPermissionsInterface/UMUserNotificationCenterProxyInterface.h; sourceTree = "<group>"; }; + 9957D9BFB06677250280FB41B8D55747 /* lossless.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = lossless.h; path = src/dsp/lossless.h; sourceTree = "<group>"; }; + 995C7A8BCB27704A758DEF0332441DAD /* InlineFunctionRef.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = InlineFunctionRef.h; path = folly/synchronization/detail/InlineFunctionRef.h; sourceTree = "<group>"; }; + 9960632C404B1ECAF125F6460DCA1C9A /* RCTURLRequestHandler.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTURLRequestHandler.h; sourceTree = "<group>"; }; + 99660FDC1706DDB1D718EA06874CB12E /* RNDateTimePickerManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNDateTimePickerManager.h; path = ios/RNDateTimePickerManager.h; sourceTree = "<group>"; }; + 99708DECC904CFAAF7578A5A192C3842 /* RCTDevLoadingView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTDevLoadingView.h; path = React/CoreModules/RCTDevLoadingView.h; sourceTree = "<group>"; }; + 997B9669B047BE0E81C061CD2AB037C5 /* RCTAnimatedImage.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTAnimatedImage.h; path = Libraries/Image/RCTAnimatedImage.h; sourceTree = "<group>"; }; + 999048AB0EB9CC2EB28D51EDDDBAA9B4 /* GULLogger.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = GULLogger.h; path = GoogleUtilities/Logger/Private/GULLogger.h; sourceTree = "<group>"; }; + 999A317D20118A96C8F8EA0DA2DA2CF9 /* SingleWriterFixedHashMap.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SingleWriterFixedHashMap.h; path = folly/experimental/SingleWriterFixedHashMap.h; sourceTree = "<group>"; }; + 99AC71BDA4E2D7CCAC66A1A334011E41 /* EXSessionUploadTaskDelegate.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = EXSessionUploadTaskDelegate.m; sourceTree = "<group>"; }; + 99C2467B06D24DAF9B08DF392B6DCA56 /* RNFBAnalytics.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = RNFBAnalytics.podspec; sourceTree = "<group>"; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; + 99C79F0BF17B901215CEAD29F0F185CD /* CocoaAsyncSocket-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "CocoaAsyncSocket-prefix.pch"; sourceTree = "<group>"; }; 99D5CD245388DC76AAEF6E1E351A90ED /* libFlipper-Folly.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; name = "libFlipper-Folly.a"; path = "libFlipper-Folly.a"; sourceTree = BUILT_PRODUCTS_DIR; }; - 99D63D6DE4959BB4E1B63AC9F0799982 /* FIRCLSThreadState.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRCLSThreadState.h; path = Crashlytics/Crashlytics/Helpers/FIRCLSThreadState.h; sourceTree = "<group>"; }; - 99E3822B579F39D825E4D810F4C4351F /* RCTConstants.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTConstants.m; sourceTree = "<group>"; }; - 9A04AB43580B7A96DD95CED1945FA3D0 /* UICollectionView+SKInvalidation.mm */ = {isa = PBXFileReference; includeInIndex = 1; name = "UICollectionView+SKInvalidation.mm"; path = "iOS/Plugins/FlipperKitLayoutPlugin/FlipperKitLayoutPlugin/UICollectionView+SKInvalidation.mm"; sourceTree = "<group>"; }; - 9A0DB699138E7ADD7B50FBB90AF68DDE /* FIRCLSHost.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRCLSHost.h; path = Crashlytics/Crashlytics/Components/FIRCLSHost.h; sourceTree = "<group>"; }; - 9A28152C927DBE33FC159F237838CA4F /* BSGFileLocations.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = BSGFileLocations.m; sourceTree = "<group>"; }; - 9A418F3C1CC849FB2AF5C76D1273ABA1 /* 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 = "<group>"; }; - 9A50EA4CF7F6CC29ED52C30E2B562A6A /* UMAppLoader.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = UMAppLoader.podspec; sourceTree = "<group>"; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; - 9A52031D01DDD2FCD2A068151409B973 /* SafeAreaSpacerViewManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = SafeAreaSpacerViewManager.h; sourceTree = "<group>"; }; - 9A61FEF3F9A3004BC803F9B58AF3184B /* RCTImageURLLoaderWithAttribution.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTImageURLLoaderWithAttribution.h; path = Libraries/Image/RCTImageURLLoaderWithAttribution.h; sourceTree = "<group>"; }; - 9A633EE03144C9F1454429E6F8B2C160 /* OpenSSLVersionFinder.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = OpenSSLVersionFinder.h; path = folly/ssl/OpenSSLVersionFinder.h; sourceTree = "<group>"; }; - 9A7DC932EBFEA8EAD11B91E04EC2CE30 /* REABezierNode.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = REABezierNode.h; sourceTree = "<group>"; }; - 9A8C62FBCBEE317E39083D803E58E73E /* SKTouch.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SKTouch.h; path = iOS/Plugins/FlipperKitLayoutPlugin/FlipperKitLayoutPlugin/SKTouch.h; sourceTree = "<group>"; }; - 9AE40EC74114F2FFBD6CF82143D0C4A4 /* IOThreadPoolExecutor.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = IOThreadPoolExecutor.cpp; path = folly/executors/IOThreadPoolExecutor.cpp; sourceTree = "<group>"; }; - 9AE69C4075F10FB677FDB33EC3800CD5 /* React-Core-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "React-Core-dummy.m"; sourceTree = "<group>"; }; - 9AEB5D60F61E5CFCED85D70717DD27A5 /* es.lproj */ = {isa = PBXFileReference; includeInIndex = 1; name = es.lproj; path = ios/QBImagePicker/QBImagePicker/es.lproj; sourceTree = "<group>"; }; - 9B408B54017E7CCE97492E0497ADAAD3 /* DynamicConverter.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = DynamicConverter.h; path = folly/DynamicConverter.h; sourceTree = "<group>"; }; - 9B421A26D9964D79519F4A35E88647A2 /* KeepaliveTimer.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = KeepaliveTimer.cpp; path = rsocket/internal/KeepaliveTimer.cpp; sourceTree = "<group>"; }; - 9B45635ECCFEB9E3F7E1FB505F12D162 /* RCTInputAccessoryShadowView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTInputAccessoryShadowView.m; sourceTree = "<group>"; }; - 9B49A76A77062C6D3136B4DCCE6D2A60 /* RCTFollyConvert.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTFollyConvert.h; sourceTree = "<group>"; }; - 9B4E35C0E3E457D89A4DF2403BB432CA /* RCTSRWebSocket.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTSRWebSocket.h; path = Libraries/WebSocket/RCTSRWebSocket.h; sourceTree = "<group>"; }; - 9B513B2654AB7DD415E90B2561132369 /* BugsnagEndpointConfiguration.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BugsnagEndpointConfiguration.h; sourceTree = "<group>"; }; - 9B5CC4A2C693BCADBAABAD140462B77B /* RSocketStateMachine.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RSocketStateMachine.h; path = rsocket/statemachine/RSocketStateMachine.h; sourceTree = "<group>"; }; - 9B679B86B635682E764C49E591251FBD /* RNGestureHandlerManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNGestureHandlerManager.h; path = ios/RNGestureHandlerManager.h; sourceTree = "<group>"; }; - 9B691F81785E6B2010292AA5926E20DD /* ThreadLocalDetail.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ThreadLocalDetail.h; path = folly/detail/ThreadLocalDetail.h; sourceTree = "<group>"; }; - 9B7ACB1294CE1C97BF683629EF603AB7 /* ExecutorWithPriority-inl.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "ExecutorWithPriority-inl.h"; path = "folly/executors/ExecutorWithPriority-inl.h"; sourceTree = "<group>"; }; - 9BA3DE51E17B480EAFB1A0B28D2E7932 /* RCTGIFImageDecoder.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTGIFImageDecoder.h; path = Libraries/Image/RCTGIFImageDecoder.h; sourceTree = "<group>"; }; - 9BBA1BDA6B1594B64653392F0F7A2436 /* ThreadedRepeatingFunctionRunner.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ThreadedRepeatingFunctionRunner.h; path = folly/experimental/ThreadedRepeatingFunctionRunner.h; sourceTree = "<group>"; }; - 9BBE384FEBA7D7ECA92B70B0FA235097 /* FIRCLSUnwind.c */ = {isa = PBXFileReference; includeInIndex = 1; name = FIRCLSUnwind.c; path = Crashlytics/Crashlytics/Unwind/FIRCLSUnwind.c; sourceTree = "<group>"; }; - 9BC77CD967B59458E50857129DF0EB80 /* ScheduledSingleSubscription.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = ScheduledSingleSubscription.cpp; path = rsocket/internal/ScheduledSingleSubscription.cpp; sourceTree = "<group>"; }; - 9BD3EAC8DAC65366C406E05DB227732B /* File.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = File.h; path = folly/gen/File.h; sourceTree = "<group>"; }; - 9BEC1860957320D1CF2C90CF1F9595DB /* RNBootSplash.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNBootSplash.m; path = ios/RNBootSplash.m; sourceTree = "<group>"; }; - 9BF2FD70B586966F632DE0F4C3452BC4 /* SysUio.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SysUio.h; path = folly/portability/SysUio.h; sourceTree = "<group>"; }; - 9BF3A3327FE1B27155736ADEAAC66603 /* Shared.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = Shared.m; sourceTree = "<group>"; }; - 9BFF8F1D045AC3CDC40AF33C85E5F676 /* RCTI18nUtil.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTI18nUtil.m; sourceTree = "<group>"; }; - 9C0A981168E1E4D33DE99B228E8298F7 /* BSG_KSSignalInfo.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BSG_KSSignalInfo.h; sourceTree = "<group>"; }; - 9C139F30664C2AC9E917F2E99A29FE32 /* RCTSegmentedControlManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTSegmentedControlManager.m; sourceTree = "<group>"; }; - 9C1ADDEEF0CD70CEAF9F4B1C55F0E0D4 /* SDAnimatedImageView+WebCache.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "SDAnimatedImageView+WebCache.m"; path = "SDWebImage/Core/SDAnimatedImageView+WebCache.m"; sourceTree = "<group>"; }; - 9C2FF72F433B5B816D4642C6E2EEAB91 /* RCTRsa.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RCTRsa.m; path = ios/RCTCrypto/RCTRsa.m; sourceTree = "<group>"; }; - 9C470A77658DF10376C0D0C59415D547 /* RCTScrollContentViewManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTScrollContentViewManager.h; sourceTree = "<group>"; }; - 9C5FEF15984208664BD1D21E2627057A /* UIImage+MemoryCacheCost.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "UIImage+MemoryCacheCost.h"; path = "SDWebImage/Core/UIImage+MemoryCacheCost.h"; sourceTree = "<group>"; }; - 9C8354DC313E0CA6CCE6E30B455DCCB4 /* TimeoutManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = TimeoutManager.h; path = folly/io/async/TimeoutManager.h; sourceTree = "<group>"; }; - 9C9D12209F331BCF7D802934F1175076 /* README.md */ = {isa = PBXFileReference; includeInIndex = 1; path = README.md; sourceTree = "<group>"; }; - 9CA4C13C6B5E00891719B5CBCDD2123D /* Event.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Event.h; path = folly/portability/Event.h; sourceTree = "<group>"; }; - 9CA6E8C4E777904A2FD84541C7D45F8D /* RCTTurboModuleManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTTurboModuleManager.h; sourceTree = "<group>"; }; - 9CA76A689A2C2A3731103D8254D9FCA7 /* BlurViewManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = BlurViewManager.m; path = ios/BlurViewManager.m; sourceTree = "<group>"; }; - 9CB068C3C1090FBC4AC6414F186E9BE8 /* RCTDevLoadingViewSetEnabled.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTDevLoadingViewSetEnabled.m; sourceTree = "<group>"; }; - 9CF7B065AE2F454C92B112DA7734C782 /* UMBarCodeScannerInterface.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = UMBarCodeScannerInterface.debug.xcconfig; sourceTree = "<group>"; }; - 9CFA170F05C3C601903D7C2A7A727F25 /* RCTJavaScriptLoader.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTJavaScriptLoader.h; sourceTree = "<group>"; }; - 9D14E9A01BCC594A2A85D381466E888B /* experiments-inl.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "experiments-inl.h"; sourceTree = "<group>"; }; - 9D175055633CCF57160228809C16FCB1 /* EventBase.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = EventBase.cpp; path = folly/io/async/EventBase.cpp; sourceTree = "<group>"; }; - 9D3481C77D8830B0B3647B64636CAFB1 /* EnvironmentUtil.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = EnvironmentUtil.m; path = ios/RNDeviceInfo/EnvironmentUtil.m; sourceTree = "<group>"; }; - 9D45DA6845E2F96A779737D9DF9A488F /* DynamicBoundedQueue.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = DynamicBoundedQueue.h; path = folly/concurrency/DynamicBoundedQueue.h; sourceTree = "<group>"; }; - 9D49C2015EC82F52D2FDB558E03A1801 /* UMTaskManagerInterface.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = UMTaskManagerInterface.debug.xcconfig; sourceTree = "<group>"; }; - 9D638D4F4487C7E2904849EB50E2914D /* RCTSliderManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTSliderManager.m; sourceTree = "<group>"; }; + 99D65B5DD0728878C6747E042CADDE03 /* Checksum.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Checksum.h; path = Core/crc32/Checksum.h; sourceTree = "<group>"; }; + 99E7DF70F984A46560879C1A2A386C3F /* BSG_KSCrashC.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BSG_KSCrashC.h; sourceTree = "<group>"; }; + 99FBA755E375E696825A1FF380343425 /* LICENSE */ = {isa = PBXFileReference; includeInIndex = 1; path = LICENSE; sourceTree = "<group>"; }; + 9A189C4054AD854F4D21C9A20DDACE85 /* 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 = "<group>"; }; + 9A27C96617D845E65927ED9FEBDC28B1 /* BSG_KSFileUtils.c */ = {isa = PBXFileReference; includeInIndex = 1; path = BSG_KSFileUtils.c; sourceTree = "<group>"; }; + 9A4C7AA591718F482310B7277EDA147E /* RCTProfileTrampoline-x86_64.S */ = {isa = PBXFileReference; includeInIndex = 1; path = "RCTProfileTrampoline-x86_64.S"; sourceTree = "<group>"; }; + 9A5E0F276F9F718AD095DDEF5457B8C9 /* FKTextSearchable.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FKTextSearchable.h; path = iOS/Plugins/FlipperKitLayoutPlugin/FlipperKitLayoutTextSearchable/FKTextSearchable.h; sourceTree = "<group>"; }; + 9A67A8CA4910C21CB87423C954D39115 /* FLEXNetworkRecorder.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FLEXNetworkRecorder.h; path = iOS/Plugins/FlipperKitNetworkPlugin/SKIOSNetworkPlugin/FLEXNetworkLib/FLEXNetworkRecorder.h; sourceTree = "<group>"; }; + 9A7390090F7B70ACFD253A824EBC9E60 /* BSG_KSJSONCodec.c */ = {isa = PBXFileReference; includeInIndex = 1; path = BSG_KSJSONCodec.c; sourceTree = "<group>"; }; + 9A73CE23FB147CF6D296F0FE430DBF47 /* RCTVirtualTextShadowView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTVirtualTextShadowView.h; sourceTree = "<group>"; }; + 9A7D715843BB9AC058F9282B77EF33B7 /* sk.lproj */ = {isa = PBXFileReference; includeInIndex = 1; name = sk.lproj; path = "Objective-C/TOCropViewController/Resources/sk.lproj"; sourceTree = "<group>"; }; + 9A88FD44E8CD2626AE7F2D2681C1696D /* ParkingLot.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ParkingLot.h; path = folly/synchronization/ParkingLot.h; sourceTree = "<group>"; }; + 9A9DA9A0D1F5C69DCEA3815845A3298C /* EXAppleAuthentication.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = EXAppleAuthentication.release.xcconfig; sourceTree = "<group>"; }; + 9A9E308C336BF53207877FDF436CC583 /* evsignal-internal.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "evsignal-internal.h"; sourceTree = "<group>"; }; + 9AAB1F452A5C9549CD4BE20F3FB5CEED /* Iterator.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Iterator.h; path = folly/container/Iterator.h; sourceTree = "<group>"; }; + 9ABF5F5E8AA1A3AAE865E95E2E84B143 /* GLog.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = GLog.h; path = folly/GLog.h; sourceTree = "<group>"; }; + 9ACF7DE9D0AD4C96FFD0FD7A5965BBC2 /* GULSwizzler.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = GULSwizzler.m; path = GoogleUtilities/MethodSwizzler/GULSwizzler.m; sourceTree = "<group>"; }; + 9AD7CD8B560BA14C5DB429AC9B7BFE39 /* SysMman.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SysMman.h; path = folly/portability/SysMman.h; sourceTree = "<group>"; }; + 9AD983C02E167C26EDBB3F01F2A808B4 /* RCTView+SafeAreaCompat.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "RCTView+SafeAreaCompat.h"; path = "ios/SafeAreaView/RCTView+SafeAreaCompat.h"; sourceTree = "<group>"; }; + 9AFA5DF18E6F3D40FB109A02644C62EB /* HazptrThrLocal.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = HazptrThrLocal.h; path = folly/synchronization/HazptrThrLocal.h; sourceTree = "<group>"; }; + 9B3EAE68C60D045960DABBEAE70DF98B /* FBReactNativeSpec.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = FBReactNativeSpec.podspec; sourceTree = "<group>"; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; + 9B448EEF196BC34CAABD90DDD6E824BD /* RNFBVersion.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNFBVersion.h; path = ios/RNFBApp/RNFBVersion.h; sourceTree = "<group>"; }; + 9B4C54262ECC6C05D83CF812166F27C8 /* MallctlHelper.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = MallctlHelper.cpp; path = folly/memory/MallctlHelper.cpp; sourceTree = "<group>"; }; + 9B4D7F9F40525593EE77ED8F35556278 /* bufferevent-internal.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "bufferevent-internal.h"; sourceTree = "<group>"; }; + 9B5A8D4CA93B7E6695798AF9B46667CE /* da-DK.lproj */ = {isa = PBXFileReference; includeInIndex = 1; name = "da-DK.lproj"; path = "Objective-C/TOCropViewController/Resources/da-DK.lproj"; sourceTree = "<group>"; }; + 9B6BF5B9ECEB947E6434F80E7556912C /* EXAV.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = EXAV.podspec; sourceTree = "<group>"; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; + 9B6E7F5DAA2E02F6D3737E7F5CE5B5C5 /* UMDefines.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = UMDefines.h; path = UMCore/UMDefines.h; sourceTree = "<group>"; }; + 9B72B432D840B5DBE7A9FF102A3D30CB /* RCTModuloAnimatedNode.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTModuloAnimatedNode.m; sourceTree = "<group>"; }; + 9B75EDEE61FAF608EEADF71C0F458266 /* RCTTypeSafety-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "RCTTypeSafety-prefix.pch"; sourceTree = "<group>"; }; + 9B7FF8134BA75FBD5E98F96D5C9D32AE /* json.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = json.h; path = folly/json.h; sourceTree = "<group>"; }; + 9BAD85DAE3C54E43EED133E9F0A73741 /* BSG_KSCrashDoctor.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BSG_KSCrashDoctor.h; sourceTree = "<group>"; }; + 9BB100A2237ABE19F090F03047E5A7B2 /* REATransition.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = REATransition.m; sourceTree = "<group>"; }; + 9BCA63BA8EB46EB8BDEA34E41CAF24A1 /* React-Core-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "React-Core-dummy.m"; sourceTree = "<group>"; }; + 9BD25DA7C72B018B37F585E722698980 /* FlipperConnectionManagerImpl.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = FlipperConnectionManagerImpl.cpp; path = xplat/Flipper/FlipperConnectionManagerImpl.cpp; sourceTree = "<group>"; }; + 9BD2DD1221D8C084608F1C491378119E /* AtomicHashArray.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = AtomicHashArray.h; path = folly/AtomicHashArray.h; sourceTree = "<group>"; }; + 9BE222E8B158676246FAD50D29C872C7 /* ReentrantAllocator.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ReentrantAllocator.h; path = folly/memory/ReentrantAllocator.h; sourceTree = "<group>"; }; + 9BEE134C86764356DF2A10AC3A998638 /* TOCropOverlayView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = TOCropOverlayView.h; path = "Objective-C/TOCropViewController/Views/TOCropOverlayView.h"; sourceTree = "<group>"; }; + 9BF261C9B75258A3F31BA963ED60C856 /* RCTShadowView+Layout.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "RCTShadowView+Layout.h"; sourceTree = "<group>"; }; + 9C2C2C287E99390465AF82ACDCED1D10 /* Checksum.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Checksum.h; path = folly/hash/Checksum.h; sourceTree = "<group>"; }; + 9C2D09C5E5F72095A6969052F76A009C /* FIRLogger.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRLogger.h; path = FirebaseCore/Sources/Private/FIRLogger.h; sourceTree = "<group>"; }; + 9C34960654A1BD689460A1875C947358 /* ExecutionObserver.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ExecutionObserver.h; path = folly/experimental/ExecutionObserver.h; sourceTree = "<group>"; }; + 9C448EF2EA084A44F21CE2F67C41DE25 /* RNCSafeAreaView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNCSafeAreaView.h; path = ios/SafeAreaView/RNCSafeAreaView.h; sourceTree = "<group>"; }; + 9C4715389C063A644FD9B1177AA7D2AD /* Spin.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Spin.h; path = folly/synchronization/detail/Spin.h; sourceTree = "<group>"; }; + 9C5138D91DFF4E6499962787850986A7 /* FIRAppInternal.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRAppInternal.h; path = FirebaseCore/Sources/Private/FIRAppInternal.h; sourceTree = "<group>"; }; + 9C690D3E981000594444488BD50AEE40 /* RNDateTimePicker.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = RNDateTimePicker.podspec; sourceTree = "<group>"; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; + 9C776381CEC4281D942CD39D3E725A0F /* EXSessionResumableDownloadTaskDelegate.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = EXSessionResumableDownloadTaskDelegate.m; sourceTree = "<group>"; }; + 9C7943C63991EED72FA56823AC13E3C5 /* ScheduledFrameProcessor.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = ScheduledFrameProcessor.cpp; path = rsocket/framing/ScheduledFrameProcessor.cpp; sourceTree = "<group>"; }; + 9C7F33798A8CF2C30E472171DD9210BA /* openssl_cfb128.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = openssl_cfb128.cpp; path = Core/aes/openssl/openssl_cfb128.cpp; sourceTree = "<group>"; }; + 9C8244B617C5DF72EE1513EE6A6D1B91 /* FIRAppInternal.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRAppInternal.h; path = FirebaseCore/Sources/Private/FIRAppInternal.h; sourceTree = "<group>"; }; + 9C9458BB8630C31C6B23D6C7E4D850AB /* AsyncSocketBase.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = AsyncSocketBase.h; path = folly/io/async/AsyncSocketBase.h; sourceTree = "<group>"; }; + 9CAA78DA637D210B287BB5C5FDA5F100 /* Pbkdf2.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = Pbkdf2.h; sourceTree = "<group>"; }; + 9CAEB29520E2068F454FF971EDBA977A /* en.lproj */ = {isa = PBXFileReference; includeInIndex = 1; name = en.lproj; path = ios/QBImagePicker/QBImagePicker/en.lproj; sourceTree = "<group>"; }; + 9CB4C3582A95DA599575D178F835328A /* FBLPromise+Wrap.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "FBLPromise+Wrap.m"; path = "Sources/FBLPromises/FBLPromise+Wrap.m"; sourceTree = "<group>"; }; + 9CB687755DF9F6842807414C27C17009 /* UMFontScalersManagerInterface.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = UMFontScalersManagerInterface.h; path = UMFontInterface/UMFontScalersManagerInterface.h; sourceTree = "<group>"; }; + 9CEBD65DCEDC9D218DCDB4190B9979C3 /* RCTBackedTextInputDelegateAdapter.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTBackedTextInputDelegateAdapter.m; sourceTree = "<group>"; }; + 9D1A6CE8093A8BE304A4D57E2D5CC924 /* GlobalExecutor.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = GlobalExecutor.cpp; path = folly/executors/GlobalExecutor.cpp; sourceTree = "<group>"; }; + 9D3329D2E4370FE6072579AC125814E7 /* FBString.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FBString.h; path = folly/FBString.h; sourceTree = "<group>"; }; + 9D687684730A33CC3373C2FB4D94F6ED /* FIRCLSDwarfExpressionMachine.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRCLSDwarfExpressionMachine.h; path = Crashlytics/Crashlytics/Unwind/Dwarf/FIRCLSDwarfExpressionMachine.h; sourceTree = "<group>"; }; + 9D7BF1DD96609446F172113B64BFAE2F /* RCTConvert+RNNotifications.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "RCTConvert+RNNotifications.h"; path = "RNNotifications/RCTConvert+RNNotifications.h"; sourceTree = "<group>"; }; + 9D8E7320DAED45BF95E8451F770249AA /* dec_mips_dsp_r2.c */ = {isa = PBXFileReference; includeInIndex = 1; name = dec_mips_dsp_r2.c; path = src/dsp/dec_mips_dsp_r2.c; sourceTree = "<group>"; }; 9D940727FF8FB9C785EB98E56350EF41 /* Podfile */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; name = Podfile; path = ../Podfile; sourceTree = SOURCE_ROOT; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; - 9D9709598D5DB757633AC6B35AA28861 /* RNCSafeAreaViewMode.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNCSafeAreaViewMode.m; path = ios/SafeAreaView/RNCSafeAreaViewMode.m; sourceTree = "<group>"; }; - 9D9E57DF4A08C75F2004E8D4518455E9 /* MallctlHelper.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = MallctlHelper.h; path = folly/memory/MallctlHelper.h; sourceTree = "<group>"; }; - 9D9E65506D61DF8C18A834C7563C7C8D /* muxedit.c */ = {isa = PBXFileReference; includeInIndex = 1; name = muxedit.c; path = src/mux/muxedit.c; sourceTree = "<group>"; }; - 9DAB026597DCEA620D82C5772AAF6B91 /* cost_enc.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = cost_enc.h; path = src/enc/cost_enc.h; sourceTree = "<group>"; }; - 9DAEC44B30FD86D9A2F84B6E93CE9B64 /* FIRErrorCode.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRErrorCode.h; path = FirebaseCore/Sources/Private/FIRErrorCode.h; sourceTree = "<group>"; }; - 9DB1D8FE765BE7361DB47698214C8827 /* FIRInstallationsVersion.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRInstallationsVersion.h; path = FirebaseInstallations/Source/Library/Public/FIRInstallationsVersion.h; sourceTree = "<group>"; }; - 9DBBB127A1D2B1415678647D1AF3E00C /* RCTCxxConvert.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTCxxConvert.m; sourceTree = "<group>"; }; - 9DEA55A51F57363C0F0C23EFCDD595E1 /* Firebase.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Firebase.h; path = CoreOnly/Sources/Firebase.h; sourceTree = "<group>"; }; - 9DFE6F4142248275D50E279C9D26E398 /* RCTShadowView+Internal.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "RCTShadowView+Internal.m"; sourceTree = "<group>"; }; - 9E04DE717E041E0009FD97ED613179E4 /* UniqueInstance.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = UniqueInstance.h; path = folly/detail/UniqueInstance.h; sourceTree = "<group>"; }; - 9E2713CA157638DEAFAC794B8097287C /* React-RCTLinking.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "React-RCTLinking.release.xcconfig"; sourceTree = "<group>"; }; - 9E28708E421A551C02DCD2DDE407CF2A /* RCTReconnectingWebSocket.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTReconnectingWebSocket.h; path = Libraries/WebSocket/RCTReconnectingWebSocket.h; sourceTree = "<group>"; }; - 9E3873CDFC6CC882995CB4188C6285B5 /* ReentrantAllocator.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = ReentrantAllocator.cpp; path = folly/memory/ReentrantAllocator.cpp; sourceTree = "<group>"; }; - 9E5AD003D0351443AD6EA78593F25440 /* MPMCPipelineDetail.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = MPMCPipelineDetail.h; path = folly/detail/MPMCPipelineDetail.h; sourceTree = "<group>"; }; - 9E6BB66DD78A86120B879D7FAFC4D31C /* AtomicIntrusiveLinkedList.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = AtomicIntrusiveLinkedList.h; path = folly/AtomicIntrusiveLinkedList.h; sourceTree = "<group>"; }; - 9E6C0F837C54854E825A6330E8F6E8F3 /* picture_psnr_enc.c */ = {isa = PBXFileReference; includeInIndex = 1; name = picture_psnr_enc.c; path = src/enc/picture_psnr_enc.c; sourceTree = "<group>"; }; - 9E74F12D027EC60353BA18DC9C8F057C /* UIView+React.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "UIView+React.h"; sourceTree = "<group>"; }; - 9E8370F57B4CD8FC9815CC109C7CF48C /* Yoga-umbrella.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "Yoga-umbrella.h"; sourceTree = "<group>"; }; - 9EBBFD227451F1DC3B489BF474AD54A2 /* Zocial.ttf */ = {isa = PBXFileReference; includeInIndex = 1; name = Zocial.ttf; path = Fonts/Zocial.ttf; sourceTree = "<group>"; }; - 9ED419A662981D7AE5D0F29FA5445E7C /* EXAudioSessionManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = EXAudioSessionManager.h; path = EXAV/EXAudioSessionManager.h; sourceTree = "<group>"; }; - 9EDAFE445CC359519665AD447C4AF68D /* EXAVObject.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = EXAVObject.h; path = EXAV/EXAVObject.h; sourceTree = "<group>"; }; - 9EEEEE02F2EDE8821AF6967B644451D7 /* ThreadWheelTimekeeper.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ThreadWheelTimekeeper.h; path = folly/futures/ThreadWheelTimekeeper.h; sourceTree = "<group>"; }; - 9EF4F1EDCD4553A3703C9FCDACB61264 /* RCTPicker.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTPicker.m; sourceTree = "<group>"; }; - 9EF736721F771CE99651D129AB365263 /* HazptrDomain.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = HazptrDomain.h; path = folly/synchronization/HazptrDomain.h; sourceTree = "<group>"; }; - 9F198B4D94F74E5EB473430661ECBF52 /* react-native-restart-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "react-native-restart-dummy.m"; sourceTree = "<group>"; }; - 9F2555743479256A7A6B651E39603366 /* event.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; path = event.cpp; sourceTree = "<group>"; }; - 9F2ABF8C2BEA2939B53F3C2267EF8A0A /* ApplyTuple.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ApplyTuple.h; path = folly/functional/ApplyTuple.h; sourceTree = "<group>"; }; - 9F2E5E567F2A3E3F8FACC128F1C8B145 /* FIRComponentContainer.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRComponentContainer.h; path = FirebaseCore/Sources/Private/FIRComponentContainer.h; sourceTree = "<group>"; }; - 9F3324150D838B5A79EFFA3B7990E404 /* BSG_KSMachApple.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BSG_KSMachApple.h; sourceTree = "<group>"; }; - 9F347E42EA64B7AFE343CE9A4E497834 /* RCTUIManagerUtils.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTUIManagerUtils.h; sourceTree = "<group>"; }; - 9F3B0002B8624CBE05928C53384482F2 /* FBLPromise+Then.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "FBLPromise+Then.m"; path = "Sources/FBLPromises/FBLPromise+Then.m"; sourceTree = "<group>"; }; - 9F42DFDA6F22835E42110275C6D45AD4 /* LICENSE */ = {isa = PBXFileReference; includeInIndex = 1; path = LICENSE; sourceTree = "<group>"; }; - 9F53199A8BA2FDC86956E4B0A37BDC5C /* RCTSpringAnimation.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTSpringAnimation.m; sourceTree = "<group>"; }; - 9F78E8173F3AD7E6C2E45CB1615BC1F9 /* MPMCPipeline.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = MPMCPipeline.h; path = folly/MPMCPipeline.h; sourceTree = "<group>"; }; - 9F7C36C1C750664D152408323FD6AE48 /* RCTModuleData.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTModuleData.mm; sourceTree = "<group>"; }; - 9F857244E538483C660C5D21E4A4E1C4 /* UMSensorsInterface.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = UMSensorsInterface.debug.xcconfig; sourceTree = "<group>"; }; - 9F9676C4A5E6C9AE62620BAF6A929F33 /* stl_logging.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = stl_logging.h; path = src/glog/stl_logging.h; sourceTree = "<group>"; }; - 9F9C7917EDBBA65B57AA90AF42B42EFA /* React-RCTImage.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "React-RCTImage.release.xcconfig"; sourceTree = "<group>"; }; - 9FA635843704EF8F520FAF3EEA7C13FB /* SafeAreaSpacerViewManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = SafeAreaSpacerViewManager.m; sourceTree = "<group>"; }; - 9FC7A652DA51D9F0183EA2D12E37F94B /* SKViewControllerDescriptor.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = SKViewControllerDescriptor.m; path = iOS/Plugins/FlipperKitLayoutPlugin/FlipperKitLayoutPlugin/descriptors/SKViewControllerDescriptor.m; sourceTree = "<group>"; }; - 9FD8D72D506FB7BB9779A6A4738FD3A3 /* UMMagnetometerUncalibratedInterface.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = UMMagnetometerUncalibratedInterface.h; path = UMSensorsInterface/UMMagnetometerUncalibratedInterface.h; sourceTree = "<group>"; }; + 9DAB5C3C0C54EF20AC6A016F81BCB324 /* AsyncUDPSocket.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = AsyncUDPSocket.cpp; path = folly/io/async/AsyncUDPSocket.cpp; sourceTree = "<group>"; }; + 9DC767DC904E88F95B01EC1884C58EAD /* GDTCORUploadCoordinator.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = GDTCORUploadCoordinator.m; path = GoogleDataTransport/GDTCORLibrary/GDTCORUploadCoordinator.m; sourceTree = "<group>"; }; + 9DCAC8DEF32BB328348010B9B668C695 /* RCTInspector.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTInspector.h; sourceTree = "<group>"; }; + 9DE2265AC2173BD699C025B13295C46B /* SynthTraceParser.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SynthTraceParser.h; path = destroot/include/hermes/SynthTraceParser.h; sourceTree = "<group>"; }; + 9DFF722C9D68928E81A928D28CE99CED /* FramedDuplexConnection.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = FramedDuplexConnection.cpp; path = rsocket/framing/FramedDuplexConnection.cpp; sourceTree = "<group>"; }; + 9E139D4F482DC617373FEB481D027CD4 /* FIRCLSNetworkOperation.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRCLSNetworkOperation.h; path = Crashlytics/Crashlytics/Settings/Operations/FIRCLSNetworkOperation.h; sourceTree = "<group>"; }; + 9E13BBA8010F6F62D44B113AAC705B4F /* PTUSBHub.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = PTUSBHub.h; path = peertalk/PTUSBHub.h; sourceTree = "<group>"; }; + 9E46261BF0E0562C957F1938C2E01B4E /* FIRComponent.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRComponent.m; path = FirebaseCore/Sources/FIRComponent.m; sourceTree = "<group>"; }; + 9E583AE0B79ADCAFA06F714C42CC11AA /* FIRInstallationsItem+RegisterInstallationAPI.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "FIRInstallationsItem+RegisterInstallationAPI.h"; path = "FirebaseInstallations/Source/Library/InstallationsAPI/FIRInstallationsItem+RegisterInstallationAPI.h"; sourceTree = "<group>"; }; + 9E5B369692DD49A1207756CB546F2873 /* RNBootSplash.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = RNBootSplash.debug.xcconfig; sourceTree = "<group>"; }; + 9E70C4CDC4883FAF7985FBA60AC0887C /* SingletonStackTrace.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SingletonStackTrace.h; path = folly/detail/SingletonStackTrace.h; sourceTree = "<group>"; }; + 9E90C46615F70ECF98722F3F47553119 /* Flipper-RSocket.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "Flipper-RSocket.debug.xcconfig"; sourceTree = "<group>"; }; + 9E9236BF00C9FDCE2CFAB89E5365DABB /* TOCropView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = TOCropView.m; path = "Objective-C/TOCropViewController/Views/TOCropView.m"; sourceTree = "<group>"; }; + 9E9F0CA0AD24E936C9349B1E2AB23F1B /* BugsnagLogger.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BugsnagLogger.h; sourceTree = "<group>"; }; + 9EA70BC335E7EFA9FDBBBF88EC1184D1 /* fast-dtoa.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = "fast-dtoa.cc"; path = "double-conversion/fast-dtoa.cc"; sourceTree = "<group>"; }; + 9EAF4D65E03E37FE5ADDAC62B76870F8 /* RCTAsyncLocalStorage.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTAsyncLocalStorage.mm; sourceTree = "<group>"; }; + 9EF1056B23A9B94F36664ED877D70BF7 /* RCTRootViewDelegate.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTRootViewDelegate.h; sourceTree = "<group>"; }; + 9F07C8CE434FB8B78BC5450419469744 /* TurnSequencer.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = TurnSequencer.h; path = folly/detail/TurnSequencer.h; sourceTree = "<group>"; }; + 9F181517B422C45089E2090D9AAC85EF /* BSG_KSBacktrace_Private.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BSG_KSBacktrace_Private.h; sourceTree = "<group>"; }; + 9F1C5606DA9104AF6B22862FAFDD0D77 /* BugsnagDevice.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = BugsnagDevice.m; sourceTree = "<group>"; }; + 9F30AFEBBC37000168C10B0BB40DE901 /* RCTDevLoadingViewProtocol.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTDevLoadingViewProtocol.h; sourceTree = "<group>"; }; + 9F429CEB783585ECA1518DDF2AA5ACA0 /* RCTBlobCollector.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTBlobCollector.h; sourceTree = "<group>"; }; + 9F46948EA5689BB7E4664C5C76413A5A /* YGLayout+Private.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "YGLayout+Private.h"; path = "YogaKit/Source/YGLayout+Private.h"; sourceTree = "<group>"; }; + 9F473D10D4BEC9883C118559D09E47D2 /* PTPrivate.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = PTPrivate.h; path = peertalk/PTPrivate.h; sourceTree = "<group>"; }; + 9F47A09925FF12045E3D2DF13989F980 /* Request.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = Request.cpp; path = folly/io/async/Request.cpp; sourceTree = "<group>"; }; + 9F56204C5FC40660920CB35912E3356C /* evthread-internal.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "evthread-internal.h"; sourceTree = "<group>"; }; + 9F69EA0F0BB305B299410EEDF8633580 /* Exception.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Exception.h; path = folly/lang/Exception.h; sourceTree = "<group>"; }; + 9F768F04C38BAF84EA1352F285207C37 /* SanitizeLeak.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = SanitizeLeak.cpp; path = folly/memory/SanitizeLeak.cpp; sourceTree = "<group>"; }; + 9F7EFFB24345B894A3094B6D5DCB0314 /* utils.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = utils.h; path = src/utils/utils.h; sourceTree = "<group>"; }; + 9F7FADD37C3F8AF37C3CC95F95D63C9C /* ExecutorWithPriority.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = ExecutorWithPriority.cpp; path = folly/executors/ExecutorWithPriority.cpp; sourceTree = "<group>"; }; + 9F8C65F736FD93DD73B765716F33ED48 /* FBLPromise+Race.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "FBLPromise+Race.h"; path = "Sources/FBLPromises/include/FBLPromise+Race.h"; sourceTree = "<group>"; }; + 9F95D88D96F31D25741FC673B5C98F59 /* UIView+Yoga.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "UIView+Yoga.h"; path = "YogaKit/Source/UIView+Yoga.h"; sourceTree = "<group>"; }; + 9FB2ED4E8C205706D7B38E38D9F86BD3 /* FlipperClient+Testing.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "FlipperClient+Testing.h"; path = "iOS/FlipperKit/FlipperClient+Testing.h"; sourceTree = "<group>"; }; + 9FC7EE2E473A597CD0C373812B6AB405 /* Chrono.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Chrono.h; path = folly/Chrono.h; sourceTree = "<group>"; }; + 9FCF037A8C66C92036A5020D7BE6073D /* SKScrollViewDescriptor.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SKScrollViewDescriptor.h; path = iOS/Plugins/FlipperKitLayoutPlugin/FlipperKitLayoutPlugin/descriptors/SKScrollViewDescriptor.h; sourceTree = "<group>"; }; + 9FD276F819B7C16BDF04D389D2341CCB /* Flipper-Glog.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "Flipper-Glog.debug.xcconfig"; sourceTree = "<group>"; }; + 9FD82F983E0AD0C4D20CD38BB9B275FF /* RNForceTouchHandler.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RNForceTouchHandler.h; sourceTree = "<group>"; }; + 9FE264DC6DA612A4908D1B7682BF366F /* AsyncTrace.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = AsyncTrace.cpp; path = folly/detail/AsyncTrace.cpp; sourceTree = "<group>"; }; + 9FE4C61F261844691C8E404357836761 /* UIImage+MultiFormat.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "UIImage+MultiFormat.m"; path = "SDWebImage/Core/UIImage+MultiFormat.m"; sourceTree = "<group>"; }; 9FF15DDF56C721A3A36BEBEC97A731D5 /* Pods-defaults-Rocket.Chat-umbrella.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "Pods-defaults-Rocket.Chat-umbrella.h"; sourceTree = "<group>"; }; - A00C340A4B1A226F54946F261788FB14 /* RCTConvert+FIROptions.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "RCTConvert+FIROptions.h"; path = "ios/RNFBApp/RCTConvert+FIROptions.h"; sourceTree = "<group>"; }; - A013671F5CF9AF26EE93AA8DB5192186 /* RNGestureHandler.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = RNGestureHandler.release.xcconfig; sourceTree = "<group>"; }; - A01526E3DCC0E11B78DB0E7B3B6F7FB2 /* SharedProxyCxxModule.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = SharedProxyCxxModule.h; sourceTree = "<group>"; }; - A01A966EA9B80F740CA05FDAE563EFD8 /* RCTConvert+CoreLocation.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "RCTConvert+CoreLocation.h"; sourceTree = "<group>"; }; - A0239A64DC167652EC09D68A2ADCAF84 /* EvilIcons.ttf */ = {isa = PBXFileReference; includeInIndex = 1; name = EvilIcons.ttf; path = Fonts/EvilIcons.ttf; sourceTree = "<group>"; }; - A045463B429A15AE4E7D8C9C7D3D25CC /* diy-fp.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = "diy-fp.cc"; path = "double-conversion/diy-fp.cc"; sourceTree = "<group>"; }; - A05F3C56018FFF610BB63324E31E4CD3 /* README.md */ = {isa = PBXFileReference; includeInIndex = 1; path = README.md; sourceTree = "<group>"; }; - A09076E9363084BD2F32C9CFAB0F4542 /* TimekeeperScheduledExecutor.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = TimekeeperScheduledExecutor.h; path = folly/executors/TimekeeperScheduledExecutor.h; sourceTree = "<group>"; }; - A09AB235098FCF4BFA9D0D5B5E22A857 /* SocketOptionMap.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SocketOptionMap.h; path = folly/io/SocketOptionMap.h; sourceTree = "<group>"; }; - A0A9FF330B926B4379D094F6AE01C7C2 /* demangle.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = demangle.cc; path = src/demangle.cc; sourceTree = "<group>"; }; - A0B884808F87BC14E17E0C76EDF5FFA4 /* RNGestureHandlerState.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNGestureHandlerState.h; path = ios/RNGestureHandlerState.h; sourceTree = "<group>"; }; - A0E317BA0618B3CF6CE687522449B03C /* HazptrUtils.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = HazptrUtils.h; path = folly/synchronization/detail/HazptrUtils.h; sourceTree = "<group>"; }; - A0E7DE312BB0A7E371784C7A0DDCFEEA /* Hardware.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Hardware.h; path = folly/synchronization/detail/Hardware.h; sourceTree = "<group>"; }; - A0E9033941C3AB907B1B7A92CE61D944 /* RSocketStateMachine.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = RSocketStateMachine.cpp; path = rsocket/statemachine/RSocketStateMachine.cpp; sourceTree = "<group>"; }; - A0F186D93E942FD055EA978A99397B35 /* TurboModuleBinding.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; path = TurboModuleBinding.cpp; sourceTree = "<group>"; }; - A1017F5C6F53C539BC0122C7CDA019A9 /* FIRVersion.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRVersion.m; path = FirebaseCore/Sources/FIRVersion.m; sourceTree = "<group>"; }; - A154FC57002D4A7C3A176A9677A855C0 /* LongLivedObject.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; path = LongLivedObject.cpp; sourceTree = "<group>"; }; - A157D526C4A9B116FFA877831071C982 /* RNSScreenStack.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNSScreenStack.h; path = ios/RNSScreenStack.h; sourceTree = "<group>"; }; - A1676AAC61EFA3771E2E5B301AC959E0 /* SDImageCoder.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = SDImageCoder.m; path = SDWebImage/Core/SDImageCoder.m; sourceTree = "<group>"; }; - A16956E0F13387473A1FADDE58ECD237 /* http.c */ = {isa = PBXFileReference; includeInIndex = 1; path = http.c; sourceTree = "<group>"; }; - A1761F12273ABDA4063CBDC302557BC3 /* UMModuleRegistryAdapter.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = UMModuleRegistryAdapter.h; sourceTree = "<group>"; }; - A180CF8E7D7BE31D09455978DA60DC12 /* ErrorCode.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ErrorCode.h; path = rsocket/framing/ErrorCode.h; sourceTree = "<group>"; }; - A18608C4217F3EFA8C0D2A878CF092C2 /* EventBaseManager.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = EventBaseManager.cpp; path = folly/io/async/EventBaseManager.cpp; sourceTree = "<group>"; }; - A1877D4F4969CD370E0D2105E0DBF43E /* SDImageGraphics.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = SDImageGraphics.m; path = SDWebImage/Core/SDImageGraphics.m; sourceTree = "<group>"; }; - A193D813D8C5A0B8CF41715AD34A8F01 /* react-native-simple-crypto.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "react-native-simple-crypto.debug.xcconfig"; sourceTree = "<group>"; }; - A19A4B820CD795CEC835A155BEA73DCA /* IPAddressException.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = IPAddressException.h; path = folly/IPAddressException.h; sourceTree = "<group>"; }; - A19D959C2D30B646978CC853404DA1BA /* Singleton.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Singleton.h; path = folly/Singleton.h; sourceTree = "<group>"; }; - A1A2C8C7FD4B43B1CCE15E34F066D5BD /* RCTWeakProxy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTWeakProxy.m; sourceTree = "<group>"; }; - A1A5738D7D8CEF7C7CE36B9B805C5EA8 /* SDImageCachesManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = SDImageCachesManager.m; path = SDWebImage/Core/SDImageCachesManager.m; sourceTree = "<group>"; }; - A1B24C17B642E8896288A691DB8F105C /* Format-inl.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "Format-inl.h"; path = "folly/Format-inl.h"; sourceTree = "<group>"; }; - A1BF68D59DC67100D469927A60889975 /* GULSwizzler.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = GULSwizzler.h; path = GoogleUtilities/MethodSwizzler/Private/GULSwizzler.h; sourceTree = "<group>"; }; - A1CDB664089BF1448C4BA69FBA03D6CE /* IPAddress.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = IPAddress.cpp; path = folly/detail/IPAddress.cpp; sourceTree = "<group>"; }; - A1CE18A3F321A875155302101DDA52BE /* UMModuleRegistryConsumer.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = UMModuleRegistryConsumer.h; sourceTree = "<group>"; }; - A1EB5F02162EBF607D4F46A727A08B51 /* HazptrObj.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = HazptrObj.h; path = folly/synchronization/HazptrObj.h; sourceTree = "<group>"; }; - A1F1A4CF23D301F5E48F1A6FF632D891 /* GDTCORFlatFileStorage.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = GDTCORFlatFileStorage.m; path = GoogleDataTransport/GDTCORLibrary/GDTCORFlatFileStorage.m; sourceTree = "<group>"; }; - A20B8C264F43DCE74DED1C6902DCD7F2 /* JitsiMeetSDK.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = JitsiMeetSDK.debug.xcconfig; sourceTree = "<group>"; }; - A2284343BA5188575777B171B3DF19A5 /* RCTConvert.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTConvert.h; sourceTree = "<group>"; }; - A239EAE2E123539A743F11FE6B18B97B /* SDDiskCache.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SDDiskCache.h; path = SDWebImage/Core/SDDiskCache.h; sourceTree = "<group>"; }; - A241079C26BA7316518080B63897BAF8 /* Random-inl.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "Random-inl.h"; path = "folly/Random-inl.h"; sourceTree = "<group>"; }; - A25214D7DAAEF582BA04DF499825DF44 /* RNNotificationCenterMulticast.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNNotificationCenterMulticast.m; path = RNNotifications/RNNotificationCenterMulticast.m; sourceTree = "<group>"; }; - A260E94609877FF65B233EE6D71362FB /* react-native-cookies.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = "react-native-cookies.podspec"; sourceTree = "<group>"; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; - A27423CFA6F234FE0C8C47A25AA11A1E /* SanitizeThread.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = SanitizeThread.cpp; path = folly/synchronization/SanitizeThread.cpp; sourceTree = "<group>"; }; - A278CD47BA9CBE42767AD48876A27A33 /* FlipperConnectionManagerImpl.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FlipperConnectionManagerImpl.h; path = xplat/Flipper/FlipperConnectionManagerImpl.h; sourceTree = "<group>"; }; - A296FCCEBB73CBA5F8831A307C3B5D91 /* RCTLocalAssetImageLoader.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTLocalAssetImageLoader.mm; sourceTree = "<group>"; }; - A2C445EAF42760A0FA5EB239EA31565B /* SKTapListener.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SKTapListener.h; path = iOS/Plugins/FlipperKitLayoutPlugin/FlipperKitLayoutPlugin/SKTapListener.h; sourceTree = "<group>"; }; - A2DD810F8278E0F12D995044E5BF7A15 /* FBLPromiseError.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FBLPromiseError.h; path = Sources/FBLPromises/include/FBLPromiseError.h; sourceTree = "<group>"; }; - A2E6B5FB00130B2A74065468823F5126 /* MessageTypes.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = MessageTypes.h; sourceTree = "<group>"; }; - A2F0117A83EC190EDCF3EEEA2CB09250 /* SKNamed.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SKNamed.h; path = iOS/Plugins/FlipperKitLayoutPlugin/FlipperKitLayoutPlugin/SKNamed.h; sourceTree = "<group>"; }; - A2FB913EDB37F8913760401CA81068BD /* SpookyHashV2.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = SpookyHashV2.cpp; path = folly/hash/SpookyHashV2.cpp; sourceTree = "<group>"; }; - A2FEB54F65AC6BA164AB7601C6A11F0B /* Subprocess.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = Subprocess.cpp; path = folly/Subprocess.cpp; sourceTree = "<group>"; }; - A3040695AF0032C688FAA0D4587AAB2E /* react-native-mmkv-storage.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = "react-native-mmkv-storage.podspec"; sourceTree = "<group>"; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; - A30625DAC877C1D1E7E335916E73632A /* ColdResumeHandler.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ColdResumeHandler.h; path = rsocket/ColdResumeHandler.h; sourceTree = "<group>"; }; - A328A991453EF3EA707048259AEBC009 /* lossless_enc_sse2.c */ = {isa = PBXFileReference; includeInIndex = 1; name = lossless_enc_sse2.c; path = src/dsp/lossless_enc_sse2.c; sourceTree = "<group>"; }; - A353F7E086D2B4C0BCD3F3CF28DF872F /* UMPermissionsMethodsDelegate.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = UMPermissionsMethodsDelegate.m; path = UMPermissionsInterface/UMPermissionsMethodsDelegate.m; sourceTree = "<group>"; }; - A35A7DE406B8FAE3EB7579B1AD3ACF49 /* RCTImageLoaderLoggable.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTImageLoaderLoggable.h; path = Libraries/Image/RCTImageLoaderLoggable.h; sourceTree = "<group>"; }; - A3667F9A5A9B50046346F725B90E6303 /* quant.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = quant.h; path = src/dsp/quant.h; sourceTree = "<group>"; }; - A3803A14867971EE2F7147E185238DC3 /* FIRCLSInternalReport.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRCLSInternalReport.m; path = Crashlytics/Crashlytics/Models/FIRCLSInternalReport.m; sourceTree = "<group>"; }; - A3C338F47E0F3CD612CD2E4833E1BD3F /* README.md */ = {isa = PBXFileReference; includeInIndex = 1; path = README.md; sourceTree = "<group>"; }; - A3C360852FD0472C6619B4C887EB5796 /* LICENSE.md */ = {isa = PBXFileReference; includeInIndex = 1; path = LICENSE.md; sourceTree = "<group>"; }; - A3E40312392D7D79909DD9D28107B2D5 /* Hazptr.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Hazptr.h; path = folly/synchronization/Hazptr.h; sourceTree = "<group>"; }; - A3ED697F0E0E24C8E2A51F3891D132DB /* ResourceBundle-AccessibilityResources-React-Core-Info.plist */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.plist.xml; path = "ResourceBundle-AccessibilityResources-React-Core-Info.plist"; sourceTree = "<group>"; }; - A3F2CA03CD6CE2779AC3B2571F1888FD /* EnableSharedFromThis.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = EnableSharedFromThis.h; path = folly/memory/EnableSharedFromThis.h; sourceTree = "<group>"; }; - A3F2E83BB04FE8AD5C6B2DB7479DAE08 /* React-RCTNetwork-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "React-RCTNetwork-prefix.pch"; sourceTree = "<group>"; }; - A40D35B3E223EE3A59C70211AF70DD57 /* REAJSCallNode.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = REAJSCallNode.h; sourceTree = "<group>"; }; - A4193D9F18881BC00CADFFE156D0A4E8 /* EXLocalAuthentication.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = EXLocalAuthentication.h; path = EXLocalAuthentication/EXLocalAuthentication.h; sourceTree = "<group>"; }; - A421F2EFDBAA96C876AB25BD44230474 /* String.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = String.h; path = folly/String.h; sourceTree = "<group>"; }; - A439185E722B36F1A8B1BEE7BDC71514 /* EXVideoManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = EXVideoManager.h; sourceTree = "<group>"; }; - A442BB7FDC24744FFABDB77D2DC980A9 /* RCTBorderStyle.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTBorderStyle.h; sourceTree = "<group>"; }; - A45B86740B69AAA5C0F05B0A58EDE5CF /* SDFileAttributeHelper.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = SDFileAttributeHelper.m; path = SDWebImage/Private/SDFileAttributeHelper.m; sourceTree = "<group>"; }; - A462BE5BC8918B04994A88A4585974A6 /* FIRCLSDataCollectionArbiter.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRCLSDataCollectionArbiter.h; path = Crashlytics/Crashlytics/DataCollection/FIRCLSDataCollectionArbiter.h; sourceTree = "<group>"; }; - A49F25B700EE4A6775B874F4E8AD3D62 /* RootView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RootView.m; path = ios/RootView.m; sourceTree = "<group>"; }; - A4A32A4AC472CF79969A87EDAEC04E29 /* IOExecutor.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = IOExecutor.h; path = folly/executors/IOExecutor.h; sourceTree = "<group>"; }; - A4A5845B88A33EFDB6AAE2D6706453D8 /* RNCSlider.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNCSlider.h; path = ios/RNCSlider.h; sourceTree = "<group>"; }; - A4AC4A18649390E71529D211141C6CF9 /* ProducerConsumerQueue.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ProducerConsumerQueue.h; path = folly/ProducerConsumerQueue.h; sourceTree = "<group>"; }; - A4B11545965ABE6C7AB237B1765A88BC /* Builtins.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Builtins.h; path = folly/portability/Builtins.h; sourceTree = "<group>"; }; - A4B57CE6698F52AC38D62EEC7933FC7E /* RCTNetworking.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTNetworking.mm; sourceTree = "<group>"; }; - A4E286F0D5D5A1C67FF8F09F07A85C09 /* RCTDevSplitBundleLoader.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTDevSplitBundleLoader.mm; sourceTree = "<group>"; }; - A4E5D8024113C04A308B589034455548 /* RNCSlider.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNCSlider.m; path = ios/RNCSlider.m; sourceTree = "<group>"; }; - A5105BEB6D09F367043F57348917EBD3 /* RNCMaskedViewManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNCMaskedViewManager.m; path = ios/RNCMaskedViewManager.m; sourceTree = "<group>"; }; - A55820A233D2D3FA9344258E8AF8EED8 /* BugsnagReactNative-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "BugsnagReactNative-prefix.pch"; sourceTree = "<group>"; }; - A568645E3EC4F41A6B8E54985BE21DD0 /* Dirent.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Dirent.h; path = folly/portability/Dirent.h; sourceTree = "<group>"; }; - A56FDAA3345D4565EECAADA887F4A7EE /* StringKeyedMap.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = StringKeyedMap.h; path = folly/experimental/StringKeyedMap.h; sourceTree = "<group>"; }; - A5A8A6223D3018087503ED099D20C803 /* YGStyle.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = YGStyle.cpp; path = yoga/YGStyle.cpp; sourceTree = "<group>"; }; - A5B397701238EF3AAAEE7E5D6211B1DF /* React-CoreModules.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = "React-CoreModules.podspec"; sourceTree = "<group>"; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; - A5C656C37A50DDE3A50DF9C5554CE5FF /* ClientResumeStatusCallback.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ClientResumeStatusCallback.h; path = rsocket/internal/ClientResumeStatusCallback.h; sourceTree = "<group>"; }; - A5C6E23D40EB9A3E072F8F115094E957 /* ProducerConsumerQueue.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ProducerConsumerQueue.h; path = folly/ProducerConsumerQueue.h; sourceTree = "<group>"; }; - A5D16A061AC19EBE3F2A997C614F5904 /* IOThreadPoolExecutor.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = IOThreadPoolExecutor.cpp; path = folly/executors/IOThreadPoolExecutor.cpp; sourceTree = "<group>"; }; - A60901098A81B5D3F5D589CC582F5A4F /* VibrancyViewManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = VibrancyViewManager.m; path = ios/VibrancyViewManager.m; sourceTree = "<group>"; }; - A6168E0E97D94D09DC85AA49AC1CF4B7 /* ConstexprMath.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ConstexprMath.h; path = folly/ConstexprMath.h; sourceTree = "<group>"; }; - A61F1D11A4487E7EB38BE9486F5B775B /* ssim.c */ = {isa = PBXFileReference; includeInIndex = 1; name = ssim.c; path = src/dsp/ssim.c; sourceTree = "<group>"; }; - A651A21FE23C668C852E87BDECE35979 /* FIRCLSCompactUnwind_Private.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRCLSCompactUnwind_Private.h; path = Crashlytics/Crashlytics/Unwind/Compact/FIRCLSCompactUnwind_Private.h; sourceTree = "<group>"; }; - A6665D8FC0F6D068B435FA4B02F47F71 /* evrpc.c */ = {isa = PBXFileReference; includeInIndex = 1; path = evrpc.c; sourceTree = "<group>"; }; - A6697BFBED15299BCC3A039345ADA674 /* AsymmetricMemoryBarrier.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = AsymmetricMemoryBarrier.cpp; path = folly/synchronization/AsymmetricMemoryBarrier.cpp; sourceTree = "<group>"; }; - A669D8965DD5F59135852201EAA4B1C7 /* SKNetworkReporter.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SKNetworkReporter.h; path = iOS/Plugins/FlipperKitNetworkPlugin/FlipperKitNetworkPlugin/SKNetworkReporter.h; sourceTree = "<group>"; }; - A67B831BF4C65D29F2045462D7945319 /* Malloc.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Malloc.h; path = folly/portability/Malloc.h; sourceTree = "<group>"; }; + A01401321A90BC04771BAFEE60127391 /* 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 = "<group>"; }; + A014BE425C5CBD9DDC7C274146B4321C /* PriorityUnboundedBlockingQueue.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = PriorityUnboundedBlockingQueue.h; path = folly/executors/task_queue/PriorityUnboundedBlockingQueue.h; sourceTree = "<group>"; }; + A01A7B4009B157C9F5A11FD709E3ACC0 /* YGEnums.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = YGEnums.cpp; path = yoga/YGEnums.cpp; sourceTree = "<group>"; }; + A028B596E96BBAFE851F533BD3E845E1 /* RCTConvert+REATransition.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "RCTConvert+REATransition.m"; sourceTree = "<group>"; }; + A05BE5B211AF4004673B3A6C9A6CE2F8 /* RNFBCrashlytics.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = RNFBCrashlytics.release.xcconfig; sourceTree = "<group>"; }; + A05E072DA13B6584CC62221F217075F6 /* SingletonThreadLocal.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SingletonThreadLocal.h; path = folly/SingletonThreadLocal.h; sourceTree = "<group>"; }; + A064533E97B502530F807E4DAE7A584E /* SDImageAWebPCoder.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = SDImageAWebPCoder.m; path = SDWebImage/Core/SDImageAWebPCoder.m; sourceTree = "<group>"; }; + A075277F9D8C3C4B42DF84526EEB3506 /* Bits.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Bits.h; path = folly/Bits.h; sourceTree = "<group>"; }; + A07870FDB1FE7BBE4F539AA836EA893D /* RCTImageUtils.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTImageUtils.m; sourceTree = "<group>"; }; + A07AD7E08943915773F121F1AC28C074 /* Thread.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = Thread.h; sourceTree = "<group>"; }; + A07EA4BBD031EA9B7E087D507BF24A2C /* FIRErrorCode.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRErrorCode.h; path = FirebaseCore/Sources/Private/FIRErrorCode.h; sourceTree = "<group>"; }; + A0836689A6A9839A624AA1AD3532F0FC /* SDWebImageOptionsProcessor.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = SDWebImageOptionsProcessor.m; path = SDWebImage/Core/SDWebImageOptionsProcessor.m; sourceTree = "<group>"; }; + A0B2E4EEE31D000D9E7BA8D5758417BF /* event.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = event.h; sourceTree = "<group>"; }; + A0B366DFF56FD3B4BF2B6DCE891BF968 /* UMLogHandler.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = UMLogHandler.h; sourceTree = "<group>"; }; + A0BDE8A4AA65853E8D80A058219B4EF2 /* fr.lproj */ = {isa = PBXFileReference; includeInIndex = 1; name = fr.lproj; path = ios/QBImagePicker/QBImagePicker/fr.lproj; sourceTree = "<group>"; }; + A0C699DAC074F9AFFCF08DC96AC6F29C /* SKObject.mm */ = {isa = PBXFileReference; includeInIndex = 1; name = SKObject.mm; path = iOS/Plugins/FlipperKitLayoutPlugin/FlipperKitLayoutPlugin/SKObject.mm; sourceTree = "<group>"; }; + A0CEAD7740B748E268BE507A6D57D3E3 /* UMUtilitiesInterface.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = UMUtilitiesInterface.h; sourceTree = "<group>"; }; + A0E8607987523B8DC4650ADA3DD4954C /* F14Set-fwd.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "F14Set-fwd.h"; path = "folly/container/F14Set-fwd.h"; sourceTree = "<group>"; }; + A0F49EB1261E67C62D442AE9CEB9691F /* tree_dec.c */ = {isa = PBXFileReference; includeInIndex = 1; name = tree_dec.c; path = src/dec/tree_dec.c; sourceTree = "<group>"; }; + A0F8C68EF6165C3215A1E5DB0929AF1D /* id.lproj */ = {isa = PBXFileReference; includeInIndex = 1; name = id.lproj; path = "Objective-C/TOCropViewController/Resources/id.lproj"; sourceTree = "<group>"; }; + A0FA0B3D20272164B9C92EA04B85AECD /* RNReanimated.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = RNReanimated.release.xcconfig; sourceTree = "<group>"; }; + A10972E529A6C2808B08DC7C481B6269 /* FIRCLSCodeMapping.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRCLSCodeMapping.m; path = Crashlytics/Shared/FIRCLSMachO/FIRCLSCodeMapping.m; sourceTree = "<group>"; }; + A10EEBDD70E24A024D7E6587F1225DD7 /* react-native-blur-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "react-native-blur-dummy.m"; sourceTree = "<group>"; }; + A129FA173BD1DFA8F6367D62CEE74D07 /* Subscriber.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Subscriber.h; path = yarpl/flowable/Subscriber.h; sourceTree = "<group>"; }; + A12C5E61F87AF0DF23C1C85A7CC261B1 /* React-RCTSettings.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "React-RCTSettings.release.xcconfig"; sourceTree = "<group>"; }; + A153C0CA7BA353404786AECB0BB90426 /* libevent-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "libevent-dummy.m"; sourceTree = "<group>"; }; + A15E024E81E4B35210810C7A2A05232C /* BugsnagSessionTrackingApiClient.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = BugsnagSessionTrackingApiClient.m; sourceTree = "<group>"; }; + A1708B410A9A99F818560047F6B83B10 /* RCTSwitch.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTSwitch.m; sourceTree = "<group>"; }; + A1724662FE6410CBF204187731FC2B41 /* SDImageGIFCoder.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SDImageGIFCoder.h; path = SDWebImage/Core/SDImageGIFCoder.h; sourceTree = "<group>"; }; + A17A3E33AEC9C005C0448DCCA03EAED5 /* RNFetchBlobConst.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNFetchBlobConst.m; path = ios/RNFetchBlobConst.m; sourceTree = "<group>"; }; + A1826A51E5A3B71B55BC8ED2946E146D /* Firebase.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = Firebase.debug.xcconfig; sourceTree = "<group>"; }; + A187271DBE453899DB38732023FAD7FC /* filters.c */ = {isa = PBXFileReference; includeInIndex = 1; name = filters.c; path = src/dsp/filters.c; sourceTree = "<group>"; }; + A1986C6D606FBC81905F838949469960 /* RCTImageBlurUtils.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTImageBlurUtils.h; path = Libraries/Image/RCTImageBlurUtils.h; sourceTree = "<group>"; }; + A19B3641972DFDEF6C610329D938A577 /* MicroSpinLock.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = MicroSpinLock.h; path = folly/MicroSpinLock.h; sourceTree = "<group>"; }; + A1B1893DB617FD868202311D82D507F9 /* RNNotificationEventHandler.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNNotificationEventHandler.h; path = RNNotifications/RNNotificationEventHandler.h; sourceTree = "<group>"; }; + A1C4352DCBB57612077AB0EA4D037BC8 /* SDWebImageCompat.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = SDWebImageCompat.m; path = SDWebImage/Core/SDWebImageCompat.m; sourceTree = "<group>"; }; + A1C72CB2024B020F0BACFFBAFFF398BB /* RuntimeExecutor.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RuntimeExecutor.h; path = ReactCommon/RuntimeExecutor.h; sourceTree = "<group>"; }; + A1CA3D1269334D265DC34656C0E265C0 /* dynamic.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = dynamic.cpp; path = folly/dynamic.cpp; sourceTree = "<group>"; }; + A1E15E833103B095D6A492A72302C0DD /* RCTFrameAnimation.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTFrameAnimation.h; sourceTree = "<group>"; }; + A1EFF181F448B40C8D4167283D2792F4 /* REATransformNode.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = REATransformNode.m; sourceTree = "<group>"; }; + A2117B94DAEF4CF3025EF45683B75874 /* FIRInstallations.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRInstallations.m; path = FirebaseInstallations/Source/Library/FIRInstallations.m; sourceTree = "<group>"; }; + A2362C88A1AFCFDEAA6AD7F6E6D5EE7A /* GDTCORClock.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = GDTCORClock.h; path = GoogleDataTransport/GDTCORLibrary/Public/GoogleDataTransport/GDTCORClock.h; sourceTree = "<group>"; }; + A23A4947A1B36DA2A9D086CE451C65B1 /* EventBase.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = EventBase.h; path = folly/io/async/EventBase.h; sourceTree = "<group>"; }; + A2442D48231140AD6BCB586CE92C9E66 /* GULReachabilityMessageCode.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = GULReachabilityMessageCode.h; path = GoogleUtilities/Reachability/Private/GULReachabilityMessageCode.h; sourceTree = "<group>"; }; + A2552646544B387A939585DEDDDF36EE /* RCTJavaScriptLoader.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTJavaScriptLoader.h; sourceTree = "<group>"; }; + A259A0FF1E27179E8242BC746013659F /* yuv.c */ = {isa = PBXFileReference; includeInIndex = 1; name = yuv.c; path = src/dsp/yuv.c; sourceTree = "<group>"; }; + A25D5D45D2D27A0358B1ADB4C871C53A /* BugsnagMetadata+Private.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "BugsnagMetadata+Private.h"; sourceTree = "<group>"; }; + A26D68BF2D8F8FC9A6C574EF12B4B437 /* UMImageLoaderInterface.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = UMImageLoaderInterface.debug.xcconfig; sourceTree = "<group>"; }; + A27BB64DAAB9E2500C9B4F5777EF93F0 /* RCTBridgeDelegate.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTBridgeDelegate.h; sourceTree = "<group>"; }; + A28B1A5C7E386E8E089F4393DA365C78 /* react-native-orientation-locker-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "react-native-orientation-locker-dummy.m"; sourceTree = "<group>"; }; + A290D9C2C1BC4AB169772A94FD2E226D /* fa-IR.lproj */ = {isa = PBXFileReference; includeInIndex = 1; name = "fa-IR.lproj"; path = "Objective-C/TOCropViewController/Resources/fa-IR.lproj"; sourceTree = "<group>"; }; + A29D0534ACBDE9B678310F276EED3E82 /* StreamsWriter.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = StreamsWriter.h; path = rsocket/statemachine/StreamsWriter.h; sourceTree = "<group>"; }; + A2A1F2D3F2E7580A8577FA49CF9FD49A /* FrameSerializer.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = FrameSerializer.cpp; path = rsocket/framing/FrameSerializer.cpp; sourceTree = "<group>"; }; + A2B5A8E537600162AB8597D49A7BE2FC /* String.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = String.h; path = folly/String.h; sourceTree = "<group>"; }; + A2C32E0F0891CF5F726A67ADB19EBE7E /* cct.nanopb.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = cct.nanopb.h; path = GoogleDataTransport/GDTCCTLibrary/Protogen/nanopb/cct.nanopb.h; sourceTree = "<group>"; }; + A2C61C4682049BF8587E9647FF603D07 /* FIRInstallationsStoredItem.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRInstallationsStoredItem.m; path = FirebaseInstallations/Source/Library/InstallationsStore/FIRInstallationsStoredItem.m; sourceTree = "<group>"; }; + A2CBC79D0EF11C29C0C619CDF9311FDF /* RCTSurfaceRootShadowView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTSurfaceRootShadowView.m; sourceTree = "<group>"; }; + A2D8871D252BE47ECD2EAE390C67E065 /* FLEXNetworkTransaction.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FLEXNetworkTransaction.m; path = iOS/Plugins/FlipperKitNetworkPlugin/SKIOSNetworkPlugin/FLEXNetworkLib/FLEXNetworkTransaction.m; sourceTree = "<group>"; }; + A2F4F46BEE9CB108C2568BC67BB843DD /* NetworkSocket.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = NetworkSocket.h; path = folly/net/NetworkSocket.h; sourceTree = "<group>"; }; + A30BDD6D18D3E6C8BE21D0EE933FEC3A /* cost_enc.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = cost_enc.h; path = src/enc/cost_enc.h; sourceTree = "<group>"; }; + A311B1DBB401A97B5CD759FBDE004D66 /* RCTLayout.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTLayout.m; sourceTree = "<group>"; }; + A32E1D826D45C6D87E282C7C2E0CC917 /* BSG_KSCrashIdentifier.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = BSG_KSCrashIdentifier.m; sourceTree = "<group>"; }; + A331DA9E6FED246046610474DFFF9506 /* HHWheelTimer-fwd.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "HHWheelTimer-fwd.h"; path = "folly/io/async/HHWheelTimer-fwd.h"; sourceTree = "<group>"; }; + A35454FAFB2D4546FBF973FE612A1FC3 /* RCTVibration.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTVibration.mm; sourceTree = "<group>"; }; + A38B26C9211D7346DB821D290C901A04 /* Exception.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Exception.h; path = folly/lang/Exception.h; sourceTree = "<group>"; }; + A3902286D50885212D595DE5B054CDFE /* RWSpinLock.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RWSpinLock.h; path = folly/RWSpinLock.h; sourceTree = "<group>"; }; + A3AAE258AB6B1C65738363B2F5C0B1AE /* CxxNativeModule.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = CxxNativeModule.h; sourceTree = "<group>"; }; + A3B97CA912041A914E281D953A284D66 /* SparseByteSet.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SparseByteSet.h; path = folly/container/SparseByteSet.h; sourceTree = "<group>"; }; + A3C80F84A1E1D39ACC873D973D635786 /* ARTLinearGradient.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = ARTLinearGradient.m; sourceTree = "<group>"; }; + A3D9FFEE9CDAC88F236831ED1C8F83C1 /* react-native-webview.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "react-native-webview.release.xcconfig"; sourceTree = "<group>"; }; + A3E18277756197A0A553F84F29354558 /* react-native-document-picker.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = "react-native-document-picker.podspec"; sourceTree = "<group>"; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; + A3F0637DFD5FDE161664BF407B7FC4B3 /* DecoratedAsyncTransportWrapper.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = DecoratedAsyncTransportWrapper.h; path = folly/io/async/DecoratedAsyncTransportWrapper.h; sourceTree = "<group>"; }; + A40164AC8FC8B27943881073BCCB73E9 /* SDImageIOAnimatedCoder.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = SDImageIOAnimatedCoder.m; path = SDWebImage/Core/SDImageIOAnimatedCoder.m; sourceTree = "<group>"; }; + A420AE87F419ECE42BF832525ACCF164 /* RCT-Folly-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "RCT-Folly-prefix.pch"; sourceTree = "<group>"; }; + A4316714ED82B007B05A438ADAB8F83C /* SocketFileDescriptorMap.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SocketFileDescriptorMap.h; path = folly/net/detail/SocketFileDescriptorMap.h; sourceTree = "<group>"; }; + A4318DB425556BD36065E7BFE615F68F /* RCTTransformAnimatedNode.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTTransformAnimatedNode.m; sourceTree = "<group>"; }; + A442DDEB9EB087845B51D3230BD83BB7 /* LICENSE */ = {isa = PBXFileReference; includeInIndex = 1; path = LICENSE; sourceTree = "<group>"; }; + A4575EEC2CBE5727DDD75B140BF8F1E9 /* React-perflogger.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = "React-perflogger.podspec"; sourceTree = "<group>"; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; + A46459009EC9B77CB665A02B2D67C745 /* FIRExceptionModel.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRExceptionModel.h; path = Crashlytics/Crashlytics/Public/FirebaseCrashlytics/FIRExceptionModel.h; sourceTree = "<group>"; }; + A4650709044A2D71D36B4BF1497CE5C3 /* FontAwesome5_Solid.ttf */ = {isa = PBXFileReference; includeInIndex = 1; name = FontAwesome5_Solid.ttf; path = Fonts/FontAwesome5_Solid.ttf; sourceTree = "<group>"; }; + A48DF5FFA469292B32E95C6BE59BAE9F /* RNPushKit.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNPushKit.h; path = RNNotifications/RNPushKit.h; sourceTree = "<group>"; }; + A490E4633614F23366F2CA288D7711EE /* FBLPromiseError.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FBLPromiseError.m; path = Sources/FBLPromises/FBLPromiseError.m; sourceTree = "<group>"; }; + A4ADC28707C7AE3D5341C32BF03805D7 /* F14Policy.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = F14Policy.h; path = folly/container/detail/F14Policy.h; sourceTree = "<group>"; }; + A4E7DC6BCE96DD8740ED05BA6A458413 /* NSData+ImageContentType.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "NSData+ImageContentType.m"; path = "SDWebImage/Core/NSData+ImageContentType.m"; sourceTree = "<group>"; }; + A4F52189F0AF31689D4C70B36C44D1A9 /* RCTUtils.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTUtils.m; sourceTree = "<group>"; }; + A50292957C3E70705B878E8D24C8FFC2 /* UMCore.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = UMCore.debug.xcconfig; sourceTree = "<group>"; }; + A51061D375D8ABF74537A515EC57C4AD /* SKYogaKitHelper.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SKYogaKitHelper.h; path = iOS/Plugins/FlipperKitLayoutPlugin/FlipperKitLayoutPlugin/utils/SKYogaKitHelper.h; sourceTree = "<group>"; }; + A5235993A2CC8CCA3E412EDEE60755AF /* F14IntrinsicsAvailability.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = F14IntrinsicsAvailability.h; path = folly/container/detail/F14IntrinsicsAvailability.h; sourceTree = "<group>"; }; + A5546F85DD45F445015199630CB347A5 /* ARTRenderableManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = ARTRenderableManager.h; sourceTree = "<group>"; }; + A56C587DBDC4B48E9F5CFF0193226010 /* FIRCLSMachException.c */ = {isa = PBXFileReference; includeInIndex = 1; name = FIRCLSMachException.c; path = Crashlytics/Crashlytics/Handlers/FIRCLSMachException.c; sourceTree = "<group>"; }; + A57488A1DF1FBC162D26AA9A1E49FC7F /* BSG_KSCrashReportWriter.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BSG_KSCrashReportWriter.h; sourceTree = "<group>"; }; + A579A33674E42D7A4D6B19577BBEF9EE /* Yoga-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "Yoga-prefix.pch"; sourceTree = "<group>"; }; + A58C153E6AC53F4E9FDEAB3D815ABA1B /* RCTBundleURLProvider.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTBundleURLProvider.mm; sourceTree = "<group>"; }; + A58E11BC4303D841C176EC359F3ECFB2 /* UIResponder+FirstResponderTemp.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "UIResponder+FirstResponderTemp.m"; sourceTree = "<group>"; }; + A5B4AE691E43B8B3A2967DE826F9AD7A /* RCTImageDataDecoder.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTImageDataDecoder.h; path = Libraries/Image/RCTImageDataDecoder.h; sourceTree = "<group>"; }; + A5BCD82F46DBC338B1AEF948C94D162C /* RCTKeyboardObserver.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTKeyboardObserver.h; path = React/CoreModules/RCTKeyboardObserver.h; sourceTree = "<group>"; }; + A5F4D12F5974C98D275970FC61C62409 /* rn-fetch-blob.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "rn-fetch-blob.debug.xcconfig"; sourceTree = "<group>"; }; + A601D5464B05A583EFCE0E2965D83BE8 /* Unicode.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = Unicode.cpp; path = folly/Unicode.cpp; sourceTree = "<group>"; }; + A60204F19AF38FA7F5A1FCB3A43D6CEF /* RSocketServer.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = RSocketServer.cpp; path = rsocket/RSocketServer.cpp; sourceTree = "<group>"; }; + A60637556B2A0F2278472AD01746E6BF /* SparseByteSet.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SparseByteSet.h; path = folly/container/SparseByteSet.h; sourceTree = "<group>"; }; + A6069B0CE5871CE390C0BF17513DAB9B /* UMModuleRegistryConsumer.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = UMModuleRegistryConsumer.h; sourceTree = "<group>"; }; + A60FE3A6A0342AEFFCF275920D57F014 /* react-native-cookies.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = "react-native-cookies.podspec"; sourceTree = "<group>"; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; + A612EE6AF69D3D6CCF0F30D403386C8E /* RNGestureHandler-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "RNGestureHandler-dummy.m"; sourceTree = "<group>"; }; + A642F4FE514632AF6CB04E272D58AC0A /* SDInternalMacros.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SDInternalMacros.h; path = SDWebImage/Private/SDInternalMacros.h; sourceTree = "<group>"; }; + A644314535FE9D782FC2FC48295F0C9B /* React-RCTAnimation-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "React-RCTAnimation-dummy.m"; sourceTree = "<group>"; }; + A65D78F5333BB774AA455685A38C777F /* EXVideoThumbnails.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = EXVideoThumbnails.podspec; sourceTree = "<group>"; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; + A66443B2E29B8D449409ECED0B36858A /* GULSceneDelegateSwizzler_Private.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = GULSceneDelegateSwizzler_Private.h; path = GoogleUtilities/SceneDelegateSwizzler/Internal/GULSceneDelegateSwizzler_Private.h; sourceTree = "<group>"; }; + A667A93C3C91659DED396A26BDF43B19 /* BugsnagUser.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = BugsnagUser.m; sourceTree = "<group>"; }; + A689C86B4B08AD1F345082A0169BAB81 /* UMEventEmitter.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = UMEventEmitter.h; sourceTree = "<group>"; }; A68E5A9B69A3BA0FD52CAF7A354EC93B /* libReact-RCTNetwork.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; name = "libReact-RCTNetwork.a"; path = "libReact-RCTNetwork.a"; sourceTree = BUILT_PRODUCTS_DIR; }; - A6B2FA02FE906EFA9535232DB0BAF5D0 /* FIRCLSThreadArrayOperation.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRCLSThreadArrayOperation.h; path = Crashlytics/Crashlytics/Operations/Symbolication/FIRCLSThreadArrayOperation.h; sourceTree = "<group>"; }; - A6B53E018BB1410AE17A0898B3DB1F13 /* RNCSafeAreaViewEdges.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNCSafeAreaViewEdges.m; path = ios/SafeAreaView/RNCSafeAreaViewEdges.m; sourceTree = "<group>"; }; - A6C61E6BE7733E96C385CEEB85A1E332 /* RuntimeConfig.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RuntimeConfig.h; path = destroot/include/hermes/Public/RuntimeConfig.h; sourceTree = "<group>"; }; - A6D61B128EC0F6DFF20B04348BA44CDF /* BugsnagError.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BugsnagError.h; sourceTree = "<group>"; }; - A6DEDACF54C93C17C745DAFA77E4CCB4 /* CertificateUtils.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = CertificateUtils.h; path = xplat/Flipper/CertificateUtils.h; sourceTree = "<group>"; }; + A6B173C42E5C4B89C6E1A28AFE092DCA /* cost_mips32.c */ = {isa = PBXFileReference; includeInIndex = 1; name = cost_mips32.c; path = src/dsp/cost_mips32.c; sourceTree = "<group>"; }; + A6E95B20F1E1E3E8D4A9BDF2B9EC761F /* Flipper.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = Flipper.release.xcconfig; sourceTree = "<group>"; }; + A6EAD134FABE877CC4CB14654D71CEE3 /* BugsnagBreadcrumb+Private.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "BugsnagBreadcrumb+Private.h"; sourceTree = "<group>"; }; A6EB796E6E9E63CB8E30B650EF1BB98B /* Pods-NotificationService.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "Pods-NotificationService.release.xcconfig"; sourceTree = "<group>"; }; - A6EFB7B6FFED346EE8755ECD26CD7F23 /* Overload.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Overload.h; path = folly/Overload.h; sourceTree = "<group>"; }; - A6F768252ED54153A55922B20E00C66D /* rn-fetch-blob.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "rn-fetch-blob.debug.xcconfig"; sourceTree = "<group>"; }; - A711B6DDF5746588A5FFCD5E330DBF3D /* ReactMarker.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; path = ReactMarker.cpp; sourceTree = "<group>"; }; - A72E28AEF6DF1265BDD71B5670AF408C /* pb_decode.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = pb_decode.h; sourceTree = "<group>"; }; - A72F4F01C82EB2FEF9C866D788AA26ED /* experiments.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = experiments.h; sourceTree = "<group>"; }; - A760025F9DCA8E281E648E58C5F5CFD8 /* MiniPBCoder.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = MiniPBCoder.h; path = Core/MiniPBCoder.h; sourceTree = "<group>"; }; - A76299CA52706D2EDE496A287FA92AA8 /* FIRCLSUtility.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRCLSUtility.m; path = Crashlytics/Crashlytics/Helpers/FIRCLSUtility.m; sourceTree = "<group>"; }; - A762AC50A28DDAF26213B122E713022B /* RCTRootContentView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTRootContentView.m; sourceTree = "<group>"; }; - A767B1B3873B1AF05F2881B4DAC3C7F2 /* AtomicLinkedList.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = AtomicLinkedList.h; path = folly/AtomicLinkedList.h; sourceTree = "<group>"; }; - A77AADE54BAD99ECC1C2D6DFE43F452A /* RNSScreenStack.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNSScreenStack.m; path = ios/RNSScreenStack.m; sourceTree = "<group>"; }; - A77C5D2282D9A9D640536AD0C814D836 /* UMFontManagerInterface.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = UMFontManagerInterface.h; path = UMFontInterface/UMFontManagerInterface.h; sourceTree = "<group>"; }; - A78FF933AD4698C6020BBB8A63C66E0A /* Lazy.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Lazy.h; path = folly/Lazy.h; sourceTree = "<group>"; }; - A79DEA6FB66798FDB09A6F59CFE1E257 /* lossless_enc.c */ = {isa = PBXFileReference; includeInIndex = 1; name = lossless_enc.c; path = src/dsp/lossless_enc.c; sourceTree = "<group>"; }; - A79E6B0FA53228F0C22FDAE97E39A414 /* react-native-notifications-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "react-native-notifications-dummy.m"; sourceTree = "<group>"; }; - A7A0905593F2528C6B73F62C34691F05 /* MasterPtr.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = MasterPtr.h; path = folly/experimental/MasterPtr.h; sourceTree = "<group>"; }; - A7AE6578BD7F7F96E800B58A62BFCE2D /* stop_watch.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = stop_watch.h; path = folly/stop_watch.h; sourceTree = "<group>"; }; - A7BE38DF3D2C4B8BFB184F5F4F3B0276 /* FFFastImageView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FFFastImageView.h; path = ios/FastImage/FFFastImageView.h; sourceTree = "<group>"; }; - A7D5D462C841F0799D424EE3599BFBD4 /* FlipperConnectionManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FlipperConnectionManager.h; path = xplat/Flipper/FlipperConnectionManager.h; sourceTree = "<group>"; }; - A7E4D3C5DD7542CA12F52F8F049EA1A4 /* ProxyLockable.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ProxyLockable.h; path = folly/synchronization/detail/ProxyLockable.h; sourceTree = "<group>"; }; - A7EEF6408FDB5FF81ACAD6D54CBF7D1D /* React-runtimeexecutor.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = "React-runtimeexecutor.podspec"; sourceTree = "<group>"; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; - A7F3286AAEC755CDF16E674143494868 /* BSG_KSObjCApple.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BSG_KSObjCApple.h; sourceTree = "<group>"; }; - A7F777A235BC6BD096853867E94D2332 /* GULOriginalIMPConvenienceMacros.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = GULOriginalIMPConvenienceMacros.h; path = GoogleUtilities/MethodSwizzler/Private/GULOriginalIMPConvenienceMacros.h; sourceTree = "<group>"; }; - A800C3F16DC464A4511CDAE609AFBA34 /* ARTNodeManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = ARTNodeManager.m; sourceTree = "<group>"; }; - A81308D786A9569FA6C94767535A684F /* FIRCLSUnwind_arch.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRCLSUnwind_arch.h; path = Crashlytics/Crashlytics/Unwind/FIRCLSUnwind_arch.h; sourceTree = "<group>"; }; - A81B190C680DAF19D634822AB23DBCAD /* BSG_KSCrashState.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = BSG_KSCrashState.m; sourceTree = "<group>"; }; - A81CB8F7CCCAFF5C081E6D88856ABE8C /* RCTSlider.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTSlider.m; sourceTree = "<group>"; }; - A82E8AA0A350E86E661EF7349E03E7EE /* SDImageAPNGCoder.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SDImageAPNGCoder.h; path = SDWebImage/Core/SDImageAPNGCoder.h; sourceTree = "<group>"; }; - A83265905D820ED86E7A6C8F2B1722CE /* LifoSemMPMCQueue.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = LifoSemMPMCQueue.h; path = folly/executors/task_queue/LifoSemMPMCQueue.h; sourceTree = "<group>"; }; - A8328F6F268BE9F930BB69676027BA42 /* BugsnagEventDeserializer.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BugsnagEventDeserializer.h; sourceTree = "<group>"; }; - A8452C7C5F850E613A7F3ACCEB22A96A /* Latch.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Latch.h; path = rsocket/benchmarks/Latch.h; sourceTree = "<group>"; }; - A84C7960CEE6FB114D2D907465B2C77D /* FarmHash.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FarmHash.h; path = folly/hash/FarmHash.h; sourceTree = "<group>"; }; - A84D4EF51DA254BE4994B6F594A91701 /* LNInterpolable.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = LNInterpolable.h; sourceTree = "<group>"; }; - A86457AA05C659AA93937FFB3628D5CC /* FIRCLSProfiling.c */ = {isa = PBXFileReference; includeInIndex = 1; name = FIRCLSProfiling.c; path = Crashlytics/Crashlytics/Helpers/FIRCLSProfiling.c; sourceTree = "<group>"; }; - A86994FD156A22B3C21CE4E425A6D6B9 /* iterator_enc.c */ = {isa = PBXFileReference; includeInIndex = 1; name = iterator_enc.c; path = src/enc/iterator_enc.c; sourceTree = "<group>"; }; - A87434E572253A7172B76006412A08CB /* RNScreens.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = RNScreens.debug.xcconfig; sourceTree = "<group>"; }; - A87D058A90DAB0C942B4AAC56C56B15C /* BugsnagSession+Private.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "BugsnagSession+Private.h"; sourceTree = "<group>"; }; - A890CCB8BF008676AE761ACA4F9AA0B0 /* zh-Hant.lproj */ = {isa = PBXFileReference; includeInIndex = 1; name = "zh-Hant.lproj"; path = "Objective-C/TOCropViewController/Resources/zh-Hant.lproj"; sourceTree = "<group>"; }; - A8A50CF4DE81C41A118A56BE7BDB341C /* SlowFingerprint.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SlowFingerprint.h; path = folly/detail/SlowFingerprint.h; sourceTree = "<group>"; }; - A8B24971382BB080E93170E98E414535 /* UMViewManagerAdapter.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = UMViewManagerAdapter.h; sourceTree = "<group>"; }; - A8B3E5DAFD46EE56452724AED9AC92DC /* StampedPtr.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = StampedPtr.h; path = folly/experimental/StampedPtr.h; sourceTree = "<group>"; }; - A8BE121CC2AC61A2582FB032C7E7D75D /* Align.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Align.h; path = folly/lang/Align.h; sourceTree = "<group>"; }; - A8C055FC19F0A2F755E33523A31825D8 /* Format.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Format.h; path = folly/Format.h; sourceTree = "<group>"; }; - A8C11BD5F904EC7DB1CB1B99D289E15A /* RCTLogBox.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTLogBox.h; path = React/CoreModules/RCTLogBox.h; sourceTree = "<group>"; }; - A8CFEE93B9F8FEA5EF794D45484A1B61 /* MaterialCommunityIcons.ttf */ = {isa = PBXFileReference; includeInIndex = 1; name = MaterialCommunityIcons.ttf; path = Fonts/MaterialCommunityIcons.ttf; sourceTree = "<group>"; }; - A8D091FBDDF484E5548B37CF0E4988D8 /* EXSessionUploadTaskDelegate.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = EXSessionUploadTaskDelegate.m; sourceTree = "<group>"; }; - A8D24D469956C8F6DAEE7C47B001D415 /* RCTPerformanceLogger.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTPerformanceLogger.h; sourceTree = "<group>"; }; - A8DC685D979E2B8BDE1E93424E8F30FA /* REANodesManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = REANodesManager.h; path = ios/REANodesManager.h; sourceTree = "<group>"; }; - A8E323CFE2D9B1962135FED636658650 /* OpenSSL.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = OpenSSL.h; path = folly/portability/OpenSSL.h; sourceTree = "<group>"; }; - A8F437656C3AF0F0D47F9C9E340C3D0B /* IDStore.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = IDStore.h; path = ios/IDStore.h; sourceTree = "<group>"; }; - A8FE5B5DF100160357515A6D5DE374A9 /* RNCSafeAreaViewLocalData.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNCSafeAreaViewLocalData.m; path = ios/SafeAreaView/RNCSafeAreaViewLocalData.m; sourceTree = "<group>"; }; - A9082B2BD3226DFFA225E5FFFB855224 /* ARTBrush.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = ARTBrush.h; sourceTree = "<group>"; }; - A90DA217769C6CAEDBADCEFC36C37E03 /* GDTCORUploadCoordinator.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = GDTCORUploadCoordinator.m; path = GoogleDataTransport/GDTCORLibrary/GDTCORUploadCoordinator.m; sourceTree = "<group>"; }; - A922CE6E628589CA169E46B45E4FEA3D /* InterProcessLock.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = InterProcessLock.cpp; path = Core/InterProcessLock.cpp; sourceTree = "<group>"; }; - A92471AA2B82BDB11D3DB2938A92C154 /* FIRInstallationsAPIService.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRInstallationsAPIService.m; path = FirebaseInstallations/Source/Library/InstallationsAPI/FIRInstallationsAPIService.m; sourceTree = "<group>"; }; - A930981C438F317DEF84316287E3A808 /* FFFastImageViewManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FFFastImageViewManager.m; path = ios/FastImage/FFFastImageViewManager.m; sourceTree = "<group>"; }; - A9341F7BF84C0221A1AD1B597F136AD2 /* BSG_Jailbreak.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BSG_Jailbreak.h; sourceTree = "<group>"; }; - A9357393A4888576CA047A140A767760 /* EXFilePermissionModule.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = EXFilePermissionModule.m; path = EXFileSystem/EXFilePermissionModule.m; sourceTree = "<group>"; }; - A93E8BB7D84136FC86255E9EA99F0019 /* RSocketConnectionEvents.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RSocketConnectionEvents.h; path = rsocket/RSocketConnectionEvents.h; sourceTree = "<group>"; }; - A94A8FADCF705A06FA759CBDCA969EB6 /* ProxyLockable-inl.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "ProxyLockable-inl.h"; path = "folly/synchronization/detail/ProxyLockable-inl.h"; sourceTree = "<group>"; }; - A94FCD9AAF25D7B2B66A4B98CD68586B /* UMTaskLaunchReason.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = UMTaskLaunchReason.h; path = UMTaskManagerInterface/UMTaskLaunchReason.h; sourceTree = "<group>"; }; - A95381923A4483CA559F35A6430C2197 /* GDTCORFlatFileStorage.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = GDTCORFlatFileStorage.h; path = GoogleDataTransport/GDTCORLibrary/Private/GDTCORFlatFileStorage.h; sourceTree = "<group>"; }; - A954D4E2C3B902244793F2C11C9ED0B0 /* Random.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Random.h; path = folly/Random.h; sourceTree = "<group>"; }; - A95ACD68CF68B792E1500C4081DB693C /* RNFBCrashlytics-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "RNFBCrashlytics-dummy.m"; sourceTree = "<group>"; }; - A95B6FF5792E56C7262B028418ECB65D /* String.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = String.cpp; path = folly/portability/String.cpp; sourceTree = "<group>"; }; - A95BDCA70C13B92DD2B92AAFC48B3CA2 /* SKEnvironmentVariables.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SKEnvironmentVariables.h; path = iOS/FlipperKit/SKEnvironmentVariables.h; sourceTree = "<group>"; }; - A968324B0784C8F950C8F9ED1FEECC6C /* RCTUtilsUIOverride.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTUtilsUIOverride.m; sourceTree = "<group>"; }; - A96FC450C08890803E2BAB0375AA0B02 /* StaticTracepoint-ELFx86.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "StaticTracepoint-ELFx86.h"; path = "folly/tracing/StaticTracepoint-ELFx86.h"; sourceTree = "<group>"; }; - A976071786DC29EB8FCFEB8885F34F6C /* AsyncTrace.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = AsyncTrace.h; path = folly/detail/AsyncTrace.h; sourceTree = "<group>"; }; - A99D740C046DC693B8C279E9906F5ED3 /* FIRCLSApplication.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRCLSApplication.h; path = Crashlytics/Crashlytics/Components/FIRCLSApplication.h; sourceTree = "<group>"; }; - A9A235A975FFA925CF1A128115C1D9A2 /* glog-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "glog-dummy.m"; sourceTree = "<group>"; }; - A9AC8519E29D55ED91FE0970464B8F9D /* Singleton.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = Singleton.cpp; path = folly/Singleton.cpp; sourceTree = "<group>"; }; - A9AE808ED601364F3208A8ECB8B3C571 /* GDTCORTransport_Private.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = GDTCORTransport_Private.h; path = GoogleDataTransport/GDTCORLibrary/Private/GDTCORTransport_Private.h; sourceTree = "<group>"; }; - A9B044D3E141763E51736E7D14D52B9F /* HHWheelTimer.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = HHWheelTimer.h; path = folly/io/async/HHWheelTimer.h; sourceTree = "<group>"; }; - A9DD47F0BB4836BFA4ED9A1E2DEDC457 /* jsi-inl.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "jsi-inl.h"; path = "destroot/include/jsi/jsi-inl.h"; sourceTree = "<group>"; }; - A9F8ACCF50BC8F3E29983A656D96F585 /* Combine-inl.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "Combine-inl.h"; path = "folly/gen/Combine-inl.h"; sourceTree = "<group>"; }; - AA074CE31B00318F430EE520E2BB8096 /* FileUtil.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FileUtil.h; path = folly/FileUtil.h; sourceTree = "<group>"; }; - AA115C6C6F3591F70233C194A5D280DA /* EXAudioRecordingPermissionRequester.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = EXAudioRecordingPermissionRequester.h; path = EXAV/EXAudioRecordingPermissionRequester.h; sourceTree = "<group>"; }; - AA2A808F6CF64F7216D304333B12D1EA /* React-RCTText.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = "React-RCTText.podspec"; sourceTree = "<group>"; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; - AA33C72486C653056728F07308087B0D /* RCTSettingsPlugins.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTSettingsPlugins.h; path = Libraries/Settings/RCTSettingsPlugins.h; sourceTree = "<group>"; }; - AA3C8BBE1A936D7951F79A44B7FD02E2 /* FireAndForgetBasedFlipperResponder.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FireAndForgetBasedFlipperResponder.h; path = xplat/Flipper/FireAndForgetBasedFlipperResponder.h; sourceTree = "<group>"; }; - AA7FC102D46DBA597743B98D535FAB2F /* RCTRawTextViewManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTRawTextViewManager.h; sourceTree = "<group>"; }; - AA817559181B1223AA1F194FBE06B705 /* JSCRuntime.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = JSCRuntime.h; sourceTree = "<group>"; }; - AA8DA18CA91D26D11E1BAE2D71DFBFF6 /* Preprocessor.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Preprocessor.h; path = folly/Preprocessor.h; sourceTree = "<group>"; }; - AA94BB85E6121A9830C7A5CCF2A3185F /* GDTCORReachability_Private.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = GDTCORReachability_Private.h; path = GoogleDataTransport/GDTCORLibrary/Private/GDTCORReachability_Private.h; sourceTree = "<group>"; }; - AAA30A7DDBAFFF09EFBED557C00B0D64 /* FIRCLSFCRAnalytics.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRCLSFCRAnalytics.h; path = Crashlytics/Crashlytics/Helpers/FIRCLSFCRAnalytics.h; sourceTree = "<group>"; }; - AAAD5A87BBE65DD6BFF0976C7031A52C /* BugsnagReactNative.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = BugsnagReactNative.release.xcconfig; sourceTree = "<group>"; }; - AAB6149E896399EC0424B0B9EE28140D /* FIRCLSURLBuilder.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRCLSURLBuilder.m; path = Crashlytics/Shared/FIRCLSNetworking/FIRCLSURLBuilder.m; sourceTree = "<group>"; }; - AADBF22EE399BD2B3827742C13A250C0 /* react-native-background-timer-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "react-native-background-timer-prefix.pch"; sourceTree = "<group>"; }; - AAE7C3A7CFA89498E2F31CD466E8BD1F /* alpha_processing_sse2.c */ = {isa = PBXFileReference; includeInIndex = 1; name = alpha_processing_sse2.c; path = src/dsp/alpha_processing_sse2.c; sourceTree = "<group>"; }; - AAEA2C6C59C3DCDBD6EC36A6FF34CCDB /* UIImage+WebP.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "UIImage+WebP.h"; path = "SDWebImageWebPCoder/Classes/UIImage+WebP.h"; sourceTree = "<group>"; }; - AAEB5F0A5261B6D7B056ED1D75CC3CCF /* react-native-netinfo.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "react-native-netinfo.release.xcconfig"; sourceTree = "<group>"; }; - AB0B72218F11A875FF74D719EE5216C6 /* REAAllTransitions.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = REAAllTransitions.h; sourceTree = "<group>"; }; - AB112A4A6AAFBE00566605E8813D47AF /* lossless.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = lossless.h; path = src/dsp/lossless.h; sourceTree = "<group>"; }; - AB12C6E2A0D5BC8A894FCE32AE68E684 /* Sha.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = Sha.m; sourceTree = "<group>"; }; - AB22F01A08BB12BFA3F69194EBE722CF /* Config.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Config.h; path = folly/portability/Config.h; sourceTree = "<group>"; }; - AB2B5D58205F45FDC1B97AF9658D4492 /* BSGEventUploader.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BSGEventUploader.h; sourceTree = "<group>"; }; - AB2EBB07BB6780F2CFD6D21C26BE1E35 /* FIRCLSAsyncOperation.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRCLSAsyncOperation.h; path = Crashlytics/Crashlytics/Operations/FIRCLSAsyncOperation.h; sourceTree = "<group>"; }; - AB332063C3B127E3C0129F7EC7B091A0 /* JSIndexedRAMBundle.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = JSIndexedRAMBundle.h; sourceTree = "<group>"; }; - AB338D3DE7775EC9A3A7A5C6C8EF8871 /* RCTSpringAnimation.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTSpringAnimation.h; sourceTree = "<group>"; }; - AB37EFF737ECCA2E5C39C1BB53DB1638 /* RNSScreen.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNSScreen.m; path = ios/RNSScreen.m; sourceTree = "<group>"; }; - AB3C3EBE83825F847588B9C5EFE94821 /* FIRCLSURLSessionDownloadTask.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRCLSURLSessionDownloadTask.m; path = Crashlytics/Crashlytics/FIRCLSURLSession/Tasks/FIRCLSURLSessionDownloadTask.m; sourceTree = "<group>"; }; - AB45991526D712A35DE228423BC25B30 /* UIImageView+WebCache.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "UIImageView+WebCache.h"; path = "SDWebImage/Core/UIImageView+WebCache.h"; sourceTree = "<group>"; }; - AB67EAA6F30A859AE4F167D603F2160B /* RCTDevLoadingView.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTDevLoadingView.mm; sourceTree = "<group>"; }; - AB69548D24BE673DDA52B188807B39E6 /* BSG_KSMachHeaders.c */ = {isa = PBXFileReference; includeInIndex = 1; path = BSG_KSMachHeaders.c; sourceTree = "<group>"; }; - AB72D0C7A9094E258164E9D11158FC88 /* FBLPromise+Race.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "FBLPromise+Race.m"; path = "Sources/FBLPromises/FBLPromise+Race.m"; sourceTree = "<group>"; }; - AB92F07C8F16DC3AB790670FF753DD93 /* Malloc.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Malloc.h; path = folly/memory/Malloc.h; sourceTree = "<group>"; }; - ABC0FE0AC4418ABB1EABFD7ED37E3D6F /* RCTDivisionAnimatedNode.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTDivisionAnimatedNode.h; sourceTree = "<group>"; }; + A713C4D8C2CE5B3EFD1B7903550824F7 /* React-RCTVibration-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "React-RCTVibration-dummy.m"; sourceTree = "<group>"; }; + A719A1FE15388E43AFA1D2D2B8F5270B /* RNGestureHandlerDirection.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNGestureHandlerDirection.h; path = ios/RNGestureHandlerDirection.h; sourceTree = "<group>"; }; + A7231535DFDA30875B03E9FF8662F2E1 /* MacAddress.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = MacAddress.cpp; path = folly/MacAddress.cpp; sourceTree = "<group>"; }; + A727200FB1C30F038E22BDF6D2F7B371 /* StringKeyedMap.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = StringKeyedMap.h; path = folly/experimental/StringKeyedMap.h; sourceTree = "<group>"; }; + A74F17B32C316E760FA01B2658047F4C /* Atomic.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Atomic.h; path = folly/portability/Atomic.h; sourceTree = "<group>"; }; + A7AE4C112A9C0E8D23130D66015256A6 /* UMBarometerInterface.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = UMBarometerInterface.h; path = UMSensorsInterface/UMBarometerInterface.h; sourceTree = "<group>"; }; + A7B87EC71F3D2E483F96490E65E15949 /* RNFetchBlob.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RNFetchBlob.h; sourceTree = "<group>"; }; + A7D7F37BB0B91AEDCF698721FE47965A /* Flipper-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "Flipper-prefix.pch"; sourceTree = "<group>"; }; + A7EB5333D8D740EF49452388B2A226AC /* enc_sse41.c */ = {isa = PBXFileReference; includeInIndex = 1; name = enc_sse41.c; path = src/dsp/enc_sse41.c; sourceTree = "<group>"; }; + A7F56ED3CEE91114DB7461FFC45AC369 /* dec_mips32.c */ = {isa = PBXFileReference; includeInIndex = 1; name = dec_mips32.c; path = src/dsp/dec_mips32.c; sourceTree = "<group>"; }; + A80A50525BE9BC48A9652F07AD5F7A61 /* PasswordInFile.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = PasswordInFile.cpp; path = folly/io/async/PasswordInFile.cpp; sourceTree = "<group>"; }; + A8101FE06157EF4DF41B0814106EA0C5 /* enc.c */ = {isa = PBXFileReference; includeInIndex = 1; name = enc.c; path = src/dsp/enc.c; sourceTree = "<group>"; }; + A841B4EACF296E65D45A97F5066D3D51 /* READebugNode.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = READebugNode.h; sourceTree = "<group>"; }; + A8512406AA9C785FC47F1D9EFAEE0312 /* EXAV.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = EXAV.m; path = EXAV/EXAV.m; sourceTree = "<group>"; }; + A85228D7B9EC8EF927D8DC036E08B119 /* RSocketRequester.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RSocketRequester.h; path = rsocket/RSocketRequester.h; sourceTree = "<group>"; }; + A853A4CA9DACFBF2D6B754C0FA8DC7B4 /* REATransitionValues.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = REATransitionValues.h; sourceTree = "<group>"; }; + A85D36FF0E68AA85158F238FF245A5A1 /* File.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = File.h; path = folly/gen/File.h; sourceTree = "<group>"; }; + A88C28AE44EA01E6C1E91DDE5C823B4A /* MMKVStorage.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = MMKVStorage.h; path = ios/MMKVStorage.h; sourceTree = "<group>"; }; + A89F8E8588D3A040D9A2CC55D00CCE76 /* Lazy.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Lazy.h; path = folly/Lazy.h; sourceTree = "<group>"; }; + A8A4C4865DD5F2FBBD92A53B3C1CF964 /* RNFBCrashlyticsInitProvider.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNFBCrashlyticsInitProvider.h; path = ios/RNFBCrashlytics/RNFBCrashlyticsInitProvider.h; sourceTree = "<group>"; }; + A8AA01B12BD72E9481BDC86B4359358B /* EventHandler.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = EventHandler.h; path = folly/io/async/EventHandler.h; sourceTree = "<group>"; }; + A8C3337815DE9029213AAD700DC70EC8 /* RCTVirtualTextViewManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTVirtualTextViewManager.m; sourceTree = "<group>"; }; + A8D67169B06CDD791F18902CECE9AD36 /* SDImageGIFCoder.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = SDImageGIFCoder.m; path = SDWebImage/Core/SDImageGIFCoder.m; sourceTree = "<group>"; }; + A8E4E72172851DD14FD9BC19BDA9DBC4 /* RNFBAnalytics-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "RNFBAnalytics-dummy.m"; sourceTree = "<group>"; }; + A8E677B559055F437CAD3C6DE15C2693 /* GULUserDefaults.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = GULUserDefaults.m; path = GoogleUtilities/UserDefaults/GULUserDefaults.m; sourceTree = "<group>"; }; + A8ED4FC37F45F282C42B8DB967D8F07D /* RNCNetInfo.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNCNetInfo.h; path = ios/RNCNetInfo.h; sourceTree = "<group>"; }; + A8F550FC3C93B3A025BC59A59C8DFA40 /* Hazptr.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Hazptr.h; path = folly/synchronization/Hazptr.h; sourceTree = "<group>"; }; + A901E85DB1951BB6578C0CF3CF9AFD75 /* React-Core-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "React-Core-prefix.pch"; sourceTree = "<group>"; }; + A90CA49100A59A5C1F7701DA04C99C1F /* DiscriminatedPtr.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = DiscriminatedPtr.h; path = folly/DiscriminatedPtr.h; sourceTree = "<group>"; }; + A90DBAA0157F1B7A71DA54AFC9323660 /* FirebaseCrashlytics-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "FirebaseCrashlytics-dummy.m"; sourceTree = "<group>"; }; + A91F8178F933F3845E938957A1BBDD67 /* RCTEventDispatcher.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTEventDispatcher.h; path = React/CoreModules/RCTEventDispatcher.h; sourceTree = "<group>"; }; + A941B251FAB14916870F851B8A0C2BA4 /* RCTErrorInfo.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTErrorInfo.h; sourceTree = "<group>"; }; + A95740C9DB44B2E16ED1692FC13DA2B0 /* FIRCLSReport.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRCLSReport.m; path = Crashlytics/Crashlytics/Models/FIRCLSReport.m; sourceTree = "<group>"; }; + A967F62BFC8C0C3006531BF6D8076FE5 /* picture_enc.c */ = {isa = PBXFileReference; includeInIndex = 1; name = picture_enc.c; path = src/enc/picture_enc.c; sourceTree = "<group>"; }; + A96F312A95C5FB7D75C6209A97196BF4 /* BSG_KSMach.c */ = {isa = PBXFileReference; includeInIndex = 1; path = BSG_KSMach.c; sourceTree = "<group>"; }; + A973AC58D9A2C5888133161AC7B2981F /* RNFetchBlobFS.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNFetchBlobFS.m; path = ios/RNFetchBlobFS.m; sourceTree = "<group>"; }; + A977CF3BA76F162374A0F4762F5BDE58 /* FIRCLSLogger.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRCLSLogger.h; path = Crashlytics/Crashlytics/Helpers/FIRCLSLogger.h; sourceTree = "<group>"; }; + A980271696F165C031EB427644D5FDFE /* nanopb.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = nanopb.debug.xcconfig; sourceTree = "<group>"; }; + A98037ED1EC3C4BD6B05A6FF59336A08 /* PicoSpinLock.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = PicoSpinLock.h; path = folly/synchronization/PicoSpinLock.h; sourceTree = "<group>"; }; + A983B63D77A384672D21FDCF439686EA /* ResourceBundle-QBImagePicker-RNImageCropPicker-Info.plist */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.plist.xml; path = "ResourceBundle-QBImagePicker-RNImageCropPicker-Info.plist"; sourceTree = "<group>"; }; + A991F82BC6DF02ED3273094F6D042AFD /* RCTDiffClampAnimatedNode.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTDiffClampAnimatedNode.h; sourceTree = "<group>"; }; + A99AE43C0ED933C968518E5C8CCE6085 /* Foreach-inl.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "Foreach-inl.h"; path = "folly/container/Foreach-inl.h"; sourceTree = "<group>"; }; + A9BF703E9789996BFAF54CC5BE39FE73 /* RCTConvert+RNNotifications.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "RCTConvert+RNNotifications.m"; path = "RNNotifications/RCTConvert+RNNotifications.m"; sourceTree = "<group>"; }; + A9C73AABAB83395DEABC45D6983F91D7 /* FIRHeartbeatInfo.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRHeartbeatInfo.h; path = FirebaseCore/Sources/Private/FIRHeartbeatInfo.h; sourceTree = "<group>"; }; + A9CB7A325F6C4A8CD958B643A1CA5898 /* Promise.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Promise.h; path = folly/futures/Promise.h; sourceTree = "<group>"; }; + A9D27B78632B4D950CAC99302388240E /* GlobalExecutor.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = GlobalExecutor.h; path = folly/executors/GlobalExecutor.h; sourceTree = "<group>"; }; + A9D8EC8975C06F9981D05C04B002E935 /* RNCSafeAreaViewManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNCSafeAreaViewManager.m; path = ios/SafeAreaView/RNCSafeAreaViewManager.m; sourceTree = "<group>"; }; + A9EAC6E8CF6D7191C20BC30D81A57E80 /* RCTPbkdf2.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTPbkdf2.h; path = ios/RCTCrypto/RCTPbkdf2.h; sourceTree = "<group>"; }; + AA01213DF095986D52879CCA5C6A3D60 /* JSModulesUnbundle.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = JSModulesUnbundle.h; sourceTree = "<group>"; }; + AA1C73746D6C58C509F1895BD311E80E /* README.md */ = {isa = PBXFileReference; includeInIndex = 1; path = README.md; sourceTree = "<group>"; }; + AA255A2E76C1D22D1B27D797B7928B90 /* MMKVLog.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = MMKVLog.cpp; path = Core/MMKVLog.cpp; sourceTree = "<group>"; }; + AA2E2DFB21A4D2B6BC1D3847332820F3 /* vlog_is_on.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = vlog_is_on.cc; path = src/vlog_is_on.cc; sourceTree = "<group>"; }; + AA40C6A1953C0DDCEA500B451F593A1B /* filters_sse2.c */ = {isa = PBXFileReference; includeInIndex = 1; name = filters_sse2.c; path = src/dsp/filters_sse2.c; sourceTree = "<group>"; }; + AA50E88895FD316E36B9363CA3AA21B7 /* BugsnagDevice+Private.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "BugsnagDevice+Private.h"; sourceTree = "<group>"; }; + AA61CFA601E9334CDA05C3D1CCE0DFE5 /* MMKV_OSX.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = MMKV_OSX.cpp; path = Core/MMKV_OSX.cpp; sourceTree = "<group>"; }; + AA64FA3F890E3BEF86836EBC8B4FF332 /* RCTPickerManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTPickerManager.m; sourceTree = "<group>"; }; + AA686A002FFDABBC06150D2F2FB3EFEE /* ScheduledExecutor.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ScheduledExecutor.h; path = folly/executors/ScheduledExecutor.h; sourceTree = "<group>"; }; + AAC5104AD30B669A817C007D7D25661B /* react-native-netinfo.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "react-native-netinfo.release.xcconfig"; sourceTree = "<group>"; }; + AAC545D81CFA3EBA6BDC48096E92BE57 /* MasterPtr.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = MasterPtr.h; path = folly/experimental/MasterPtr.h; sourceTree = "<group>"; }; + AADABC3AA0CD01B88E565AD19ED6D419 /* RNNotificationsStore.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNNotificationsStore.m; path = RNNotifications/RNNotificationsStore.m; sourceTree = "<group>"; }; + AAF21E78FFF83D734A0A9B816EEC7D84 /* InterProcessLock.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = InterProcessLock.h; path = Core/InterProcessLock.h; sourceTree = "<group>"; }; + AAF379D6CFF2D0FC6401068CAA891B66 /* 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 = "<group>"; }; + AAF80F5CDD0C1A755D4B8DA5DF2DBFEA /* SDMemoryCache.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = SDMemoryCache.m; path = SDWebImage/Core/SDMemoryCache.m; sourceTree = "<group>"; }; + AAFB23BF96435BCE802CF29A1D2DD0DB /* GULNetworkLoggerProtocol.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = GULNetworkLoggerProtocol.h; path = GoogleUtilities/Network/Private/GULNetworkLoggerProtocol.h; sourceTree = "<group>"; }; + AB05E0B54F9CACFB493BA9F06065E344 /* FlipperUtil.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FlipperUtil.m; path = iOS/FlipperKit/FlipperUtil.m; sourceTree = "<group>"; }; + AB291EFF8B37D47613CB3B7E6190C674 /* Unit.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Unit.h; path = folly/Unit.h; sourceTree = "<group>"; }; + AB33CF7965FFB23B44AA26F7D0329CB6 /* OpenSSL.xcframework */ = {isa = PBXFileReference; includeInIndex = 1; name = OpenSSL.xcframework; path = Frameworks/OpenSSL.xcframework; sourceTree = "<group>"; }; + AB46E437A1102228110B8730B5ACA59E /* RCTBaseTextShadowView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTBaseTextShadowView.m; sourceTree = "<group>"; }; + AB4847BCD9AC4671DFCBC8795CDC7DBD /* RNSScreenStackHeaderConfig.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNSScreenStackHeaderConfig.h; path = ios/RNSScreenStackHeaderConfig.h; sourceTree = "<group>"; }; + AB810E8A6D88EC6E2B47CA5C3005F39D /* RNVectorIconsManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNVectorIconsManager.h; path = RNVectorIconsManager/RNVectorIconsManager.h; sourceTree = "<group>"; }; + AB868C42416DE1FB18A0321E8A992EAF /* BugsnagSessionTrackingPayload.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = BugsnagSessionTrackingPayload.m; sourceTree = "<group>"; }; + AB8F60078DBFD9815D9D7E54C3F811CB /* LockTraits.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = LockTraits.h; path = folly/LockTraits.h; sourceTree = "<group>"; }; + AB9A84570B7996820AFE57ABE338509F /* F14Set-fwd.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "F14Set-fwd.h"; path = "folly/container/F14Set-fwd.h"; sourceTree = "<group>"; }; + ABB7BFE95C94832DA8EC00ACA36D765E /* UMFilePermissionModuleInterface.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = UMFilePermissionModuleInterface.h; path = UMFileSystemInterface/UMFilePermissionModuleInterface.h; sourceTree = "<group>"; }; ABCA9F4CD6EE0D4686EBA505F526A436 /* libPods-ShareRocketChatRN.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; name = "libPods-ShareRocketChatRN.a"; path = "libPods-ShareRocketChatRN.a"; sourceTree = BUILT_PRODUCTS_DIR; }; - ABD11CDC541F63D4559316516DA9F8BE /* BSG_KSBacktrace.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BSG_KSBacktrace.h; sourceTree = "<group>"; }; - ABD3A2C3ABA0E1DFC3CA633DDDDE1135 /* react-native-safe-area-context.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "react-native-safe-area-context.debug.xcconfig"; sourceTree = "<group>"; }; - ABD3AC8515A557FDAD3B1D32F8F37F03 /* SDWebImageWebPCoder.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = SDWebImageWebPCoder.release.xcconfig; sourceTree = "<group>"; }; - ABF1B552E10C4896CB1C682734BDDECF /* symbolize.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = symbolize.cc; path = src/symbolize.cc; sourceTree = "<group>"; }; + ABD80F05D7F4102D080A130112D40F01 /* ScheduledFrameTransport.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = ScheduledFrameTransport.cpp; path = rsocket/framing/ScheduledFrameTransport.cpp; sourceTree = "<group>"; }; + ABD968A3D7F1963B3AC919D1E4D5E89D /* FFFastImageSource.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FFFastImageSource.m; path = ios/FastImage/FFFastImageSource.m; sourceTree = "<group>"; }; + ABE7E447FE54B287BAD4DA779F117D2A /* ARTPattern.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = ARTPattern.m; sourceTree = "<group>"; }; ABFEEA82A6C346B22843FBE0B0582182 /* libFBReactNativeSpec.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; name = libFBReactNativeSpec.a; path = libFBReactNativeSpec.a; sourceTree = BUILT_PRODUCTS_DIR; }; + AC0791A944E94810FB0D0C9E34E28DAE /* RCTBlobPlugins.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTBlobPlugins.mm; sourceTree = "<group>"; }; AC12C7E29555A7CFDDEF1EDB5BC2F3DA /* libFlipper-DoubleConversion.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; name = "libFlipper-DoubleConversion.a"; path = "libFlipper-DoubleConversion.a"; sourceTree = BUILT_PRODUCTS_DIR; }; - AC285F19833FF6C501FF2EFFBEE5F876 /* README.md */ = {isa = PBXFileReference; includeInIndex = 1; path = README.md; sourceTree = "<group>"; }; - AC2EEB1C5D2349E639546215C18B912F /* NetworkSocket.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = NetworkSocket.h; path = folly/net/NetworkSocket.h; sourceTree = "<group>"; }; - AC33911EFC3CBBE0C2DBB62F33FEE78B /* Fingerprint.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = Fingerprint.cpp; path = folly/Fingerprint.cpp; sourceTree = "<group>"; }; - AC3B6E2A54F07D4CA19C1041C8695202 /* SysUio.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = SysUio.cpp; path = folly/portability/SysUio.cpp; sourceTree = "<group>"; }; - AC415482470B49FA58A52B81A346C781 /* RCTShadowView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTShadowView.m; sourceTree = "<group>"; }; - AC4A668B78FF89E6A3E4160725FD7B7F /* Combine.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Combine.h; path = folly/gen/Combine.h; sourceTree = "<group>"; }; - AC65BF4B9DD13A49749589F7DAC592CE /* DistributedMutex.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = DistributedMutex.cpp; path = folly/synchronization/DistributedMutex.cpp; sourceTree = "<group>"; }; - AC6ACF007CE014EF66FDD4CA87758D24 /* FIRCLSURLSession_PrivateMethods.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRCLSURLSession_PrivateMethods.h; path = Crashlytics/Crashlytics/FIRCLSURLSession/FIRCLSURLSession_PrivateMethods.h; sourceTree = "<group>"; }; - AC806598F97772C30B60BE5001B27B85 /* ThreadLock.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = ThreadLock.cpp; path = Core/ThreadLock.cpp; sourceTree = "<group>"; }; - AC997D5A6CE46D81B2A9839825070905 /* RCTCrypto-Bridging-Header.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "RCTCrypto-Bridging-Header.h"; path = "ios/RCTCrypto/RCTCrypto-Bridging-Header.h"; sourceTree = "<group>"; }; - AC9BB0D68164184A242BC72EFA1AC562 /* FlipperCppBridgingResponder.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FlipperCppBridgingResponder.h; path = iOS/FlipperKit/CppBridge/FlipperCppBridgingResponder.h; sourceTree = "<group>"; }; - ACA61489DCBF21D8BF85939ECCD147C3 /* TurboModuleUtils.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = TurboModuleUtils.h; sourceTree = "<group>"; }; + AC15CCA4067E7DC28224259328EB4CCA /* README.md */ = {isa = PBXFileReference; includeInIndex = 1; path = README.md; sourceTree = "<group>"; }; + AC23ADFCCB5EF607BD312EC43DBB3E28 /* FIRInstallationsAPIService.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRInstallationsAPIService.m; path = FirebaseInstallations/Source/Library/InstallationsAPI/FIRInstallationsAPIService.m; sourceTree = "<group>"; }; + AC398CB65D2867C2F84DC25FE8F79636 /* MemoryFile.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = MemoryFile.h; path = Core/MemoryFile.h; sourceTree = "<group>"; }; + AC41E74A59F0C785D412B949044207AE /* GULNSDataInternal.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = GULNSDataInternal.h; path = "GoogleUtilities/NSData+zlib/Private/GULNSDataInternal.h"; sourceTree = "<group>"; }; + AC55B0799EE63B29DC2437C51EB50477 /* ApplyTuple.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ApplyTuple.h; path = folly/functional/ApplyTuple.h; sourceTree = "<group>"; }; + AC589C3F3182F43CA06615B88BE9744E /* RNNotificationCenter.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNNotificationCenter.m; path = RNNotifications/RNNotificationCenter.m; sourceTree = "<group>"; }; + AC59B0D20C66F6CC9F8F7946CB6BF210 /* GULKeychainStorage.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = GULKeychainStorage.h; path = GoogleUtilities/Environment/Private/GULKeychainStorage.h; sourceTree = "<group>"; }; + AC6AA7C03B20425796FF7A5A742F6FA7 /* README.md */ = {isa = PBXFileReference; includeInIndex = 1; path = README.md; sourceTree = "<group>"; }; + AC6DCC72636F3B12FA8261D13790492A /* Sleeper.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Sleeper.h; path = folly/synchronization/detail/Sleeper.h; sourceTree = "<group>"; }; + AC730EFB80AB1A4B11A4CAE8295075DC /* RCTLocalAssetImageLoader.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTLocalAssetImageLoader.mm; sourceTree = "<group>"; }; + AC74338314CFFDC45412C73662006009 /* Access.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Access.h; path = folly/container/Access.h; sourceTree = "<group>"; }; + AC8F51AAADB5F6E5AAE02EA7C7D4E5F3 /* GULNSData+zlib.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "GULNSData+zlib.m"; path = "GoogleUtilities/NSData+zlib/GULNSData+zlib.m"; sourceTree = "<group>"; }; + ACB53D4AFB059ACDB104EB813B5E8A8C /* ConnectionDemux.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; path = ConnectionDemux.cpp; sourceTree = "<group>"; }; + ACBAEA79CA733659BB119586B0A39EAA /* ARTSolidColor.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = ARTSolidColor.h; sourceTree = "<group>"; }; ACBB7F62B267CC7C9BBBAE41DE94743B /* libFlipper-PeerTalk.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; name = "libFlipper-PeerTalk.a"; path = "libFlipper-PeerTalk.a"; sourceTree = BUILT_PRODUCTS_DIR; }; - ACC0F4349D58D335B27F1282C6714108 /* CocoaAsyncSocket.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = CocoaAsyncSocket.debug.xcconfig; sourceTree = "<group>"; }; - ACCA7A6E3C142EF4A0ACFF27DA8855EE /* ConcurrentHashMap.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ConcurrentHashMap.h; path = folly/concurrency/ConcurrentHashMap.h; sourceTree = "<group>"; }; - ACDBFAED8F715B67451411AA0A54F83B /* UMImageLoaderInterface.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = UMImageLoaderInterface.h; path = UMImageLoaderInterface/UMImageLoaderInterface.h; sourceTree = "<group>"; }; - ACDE026E7E3436E45FCF245D8CB49C47 /* TOCroppedImageAttributes.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = TOCroppedImageAttributes.h; path = "Objective-C/TOCropViewController/Models/TOCroppedImageAttributes.h"; sourceTree = "<group>"; }; - ACF202B61D194289B0E43EA1932CB5ED /* SDWebImagePrefetcher.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SDWebImagePrefetcher.h; path = SDWebImage/Core/SDWebImagePrefetcher.h; sourceTree = "<group>"; }; - ACF5B261D4C1ED5A6B4EA7D551B4517C /* Varint.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Varint.h; path = folly/Varint.h; sourceTree = "<group>"; }; - ACFA40E85AC8F98E11C92BEEF692E7D1 /* Firebase.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = Firebase.release.xcconfig; sourceTree = "<group>"; }; - ACFCB59D5CFCD7486AF23ECB8B8B0703 /* libevent-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "libevent-prefix.pch"; sourceTree = "<group>"; }; - AD0D3A362D811F5EAEB5C140E2BDCCEF /* CoreModulesPlugins.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = CoreModulesPlugins.h; path = React/CoreModules/CoreModulesPlugins.h; sourceTree = "<group>"; }; - AD234ACED22A090F331A623760C1DA2E /* VirtualEventBase.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = VirtualEventBase.h; path = folly/io/async/VirtualEventBase.h; sourceTree = "<group>"; }; - AD2FF0BAAA560F5B8DBBE1906D7FD106 /* RNCAsyncStorage-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "RNCAsyncStorage-prefix.pch"; sourceTree = "<group>"; }; + ACC92146647DE8B73C921197D0F36B64 /* log.c */ = {isa = PBXFileReference; includeInIndex = 1; path = log.c; sourceTree = "<group>"; }; + ACCE3F9E79A8D57667C0A1EEC19B960F /* EXAppleAuthenticationMappings.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = EXAppleAuthenticationMappings.h; path = EXAppleAuthentication/EXAppleAuthenticationMappings.h; sourceTree = "<group>"; }; + ACF1F4AC32DB4B49B8963B1F798941BA /* en.lproj */ = {isa = PBXFileReference; includeInIndex = 1; name = en.lproj; path = "Objective-C/TOCropViewController/Resources/en.lproj"; sourceTree = "<group>"; }; + ACFE58F4770B1DD6CAA4F08F6E09FDB0 /* BugsnagEventDeserializer.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = BugsnagEventDeserializer.m; sourceTree = "<group>"; }; + AD37EAA1168CC304AA093D62E194D2D1 /* AtomicHashMap.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = AtomicHashMap.h; path = folly/AtomicHashMap.h; sourceTree = "<group>"; }; + AD3E68E6F82A75FE3EB0FD47443FBD54 /* ExceptionString.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ExceptionString.h; path = folly/ExceptionString.h; sourceTree = "<group>"; }; AD40A94AE1ADFA1CDF9602BA3B04C90E /* libEXAV.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; name = libEXAV.a; path = libEXAV.a; sourceTree = BUILT_PRODUCTS_DIR; }; - AD42BC2ED1D7BE159095952915525A01 /* Cursor.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Cursor.h; path = folly/io/Cursor.h; sourceTree = "<group>"; }; - AD585F5C53DCFDAFFB4294C34CF88D09 /* RCTPicker.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTPicker.h; sourceTree = "<group>"; }; - AD590E4013E1628FF06BDECB4388B4EA /* NotificationQueue.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = NotificationQueue.h; path = folly/io/async/NotificationQueue.h; sourceTree = "<group>"; }; - AD664037CDFA6CCEDAAA356ABF4A0B56 /* RNFBCrashlyticsModule.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNFBCrashlyticsModule.m; path = ios/RNFBCrashlytics/RNFBCrashlyticsModule.m; sourceTree = "<group>"; }; - AD6A0F2BBD4B6CB65337D865E0A1505F /* FIRCoreDiagnosticsInterop.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRCoreDiagnosticsInterop.h; path = Interop/CoreDiagnostics/Public/FIRCoreDiagnosticsInterop.h; sourceTree = "<group>"; }; - AD85699B31E40102C07F98DDD2FD6527 /* Partial.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Partial.h; path = folly/functional/Partial.h; sourceTree = "<group>"; }; - AD8969F8B8FA962CAE381726C768953E /* ExecutorWithPriority.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = ExecutorWithPriority.cpp; path = folly/executors/ExecutorWithPriority.cpp; sourceTree = "<group>"; }; - ADA91F9364E85FD662C943D0540B2363 /* GroupVarint.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = GroupVarint.cpp; path = folly/GroupVarint.cpp; sourceTree = "<group>"; }; - ADB42F84974E7CE03E7F919814FB22A4 /* RSocketClient.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RSocketClient.h; path = rsocket/RSocketClient.h; sourceTree = "<group>"; }; - ADC19C5F25BC45B39BBB809E36798BF8 /* RCTConvert+RNNotifications.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "RCTConvert+RNNotifications.m"; path = "RNNotifications/RCTConvert+RNNotifications.m"; sourceTree = "<group>"; }; - ADC303935FF231B0CA9192400CD9661F /* BugsnagCollections.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = BugsnagCollections.m; sourceTree = "<group>"; }; - ADD183449DEFDDF51E3C7BBCAB364AE6 /* event.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = event.h; sourceTree = "<group>"; }; - ADDEF0085804B78FFCF10A662AA36569 /* Assume-inl.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "Assume-inl.h"; path = "folly/lang/Assume-inl.h"; sourceTree = "<group>"; }; - ADE3B99706E1995C0DCAAE8F4B722ECF /* RCT-Folly-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "RCT-Folly-dummy.m"; sourceTree = "<group>"; }; - ADEFD5B66F064F5EDDCD15BA9C6B49FC /* RCTRedBox.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTRedBox.mm; sourceTree = "<group>"; }; - ADF844E92090E13A94B7FFED33503E01 /* RNForceTouchHandler.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RNForceTouchHandler.m; sourceTree = "<group>"; }; - AE1F66FF6A4EA4EFE43EADA7E95E849A /* GULKeychainStorage.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = GULKeychainStorage.h; path = GoogleUtilities/Environment/Private/GULKeychainStorage.h; sourceTree = "<group>"; }; - AE60EBEF10EB410D6454E9435714035A /* RCTVibration.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTVibration.h; path = Libraries/Vibration/RCTVibration.h; sourceTree = "<group>"; }; - AE6427E508F8E6A55971C77A7E65FEB1 /* rescaler_sse2.c */ = {isa = PBXFileReference; includeInIndex = 1; name = rescaler_sse2.c; path = src/dsp/rescaler_sse2.c; sourceTree = "<group>"; }; - AE6C0F640CBDB125D6165A9FE5277811 /* ARTSolidColor.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = ARTSolidColor.m; sourceTree = "<group>"; }; - AE7EB057D8B7F41692CE68C832C174E7 /* LICENSE */ = {isa = PBXFileReference; includeInIndex = 1; path = LICENSE; sourceTree = "<group>"; }; - AE81EB40D8855381204EDA2A1E90003E /* UMAppLoader.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = UMAppLoader.release.xcconfig; sourceTree = "<group>"; }; - AE886A948A2579DB6EF611D087C1C182 /* GULNSData+zlib.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "GULNSData+zlib.h"; path = "GoogleUtilities/NSData+zlib/Public/GULNSData+zlib.h"; sourceTree = "<group>"; }; - AE894CCD5487DD70504F6EFA69532ADF /* BSGConfigurationBuilder.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BSGConfigurationBuilder.h; sourceTree = "<group>"; }; - AE8AC1829EFA92E41449AE5D122C171F /* ReactNativeUiLib-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "ReactNativeUiLib-dummy.m"; sourceTree = "<group>"; }; - AE8CA691F749AEA3C9AE791BCF1E2D3B /* SKNodeDescriptor.mm */ = {isa = PBXFileReference; includeInIndex = 1; name = SKNodeDescriptor.mm; path = iOS/Plugins/FlipperKitLayoutPlugin/FlipperKitLayoutPlugin/SKNodeDescriptor.mm; sourceTree = "<group>"; }; - AE90C8B5FF1EB890795F8EFBBE3B16F2 /* Observables.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = Observables.cpp; path = yarpl/observable/Observables.cpp; sourceTree = "<group>"; }; - AEA69030E785D72A0C0CC8E9C51F1A44 /* GDTCCTCompressionHelper.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = GDTCCTCompressionHelper.h; path = GoogleDataTransportCCTSupport/GDTCCTLibrary/Private/GDTCCTCompressionHelper.h; sourceTree = "<group>"; }; - AEB135E8942546DB1AF42D3CF1B59508 /* RCTCxxMethod.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTCxxMethod.mm; sourceTree = "<group>"; }; - AEE92C474B44CBA057719274639B2098 /* String.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = String.h; path = folly/String.h; sourceTree = "<group>"; }; - AEEFB0BA442774E323DD9CC6CD76ECA4 /* GDTCCTUploader.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = GDTCCTUploader.h; path = GoogleDataTransportCCTSupport/GDTCCTLibrary/Private/GDTCCTUploader.h; sourceTree = "<group>"; }; - AF1052A3AA28D97DA92D09B41486C8AE /* RCTInputAccessoryView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTInputAccessoryView.m; sourceTree = "<group>"; }; - AF137C52FE6DED8BCA627862CACD77AE /* jsi.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = jsi.h; path = destroot/include/jsi/jsi.h; sourceTree = "<group>"; }; - AF14A4D82AF1821431DB8664A697F559 /* FFFastImageView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FFFastImageView.m; path = ios/FastImage/FFFastImageView.m; sourceTree = "<group>"; }; - AF153272AA59E892E9EAFBABC890E928 /* Benchmarks.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = Benchmarks.cpp; path = rsocket/benchmarks/Benchmarks.cpp; sourceTree = "<group>"; }; - AF1AA0233F4B030FCA8C522FDDCED681 /* EDFThreadPoolExecutor.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = EDFThreadPoolExecutor.h; path = folly/executors/EDFThreadPoolExecutor.h; sourceTree = "<group>"; }; - AF21403E28C34FCEB1EB5AD97C2AAF24 /* vp8_dec.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = vp8_dec.h; path = src/dec/vp8_dec.h; sourceTree = "<group>"; }; - AF33CE15513792246634152E3DCA3C2B /* CoreModulesPlugins.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = CoreModulesPlugins.mm; sourceTree = "<group>"; }; - AF492A2FAAF74AC6ADAD5E79DCE6A08A /* UIImage+Resize.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "UIImage+Resize.h"; path = "ios/src/UIImage+Resize.h"; sourceTree = "<group>"; }; - AF5285E913D9C8AD1A6810470E198466 /* yuv_sse41.c */ = {isa = PBXFileReference; includeInIndex = 1; name = yuv_sse41.c; path = src/dsp/yuv_sse41.c; sourceTree = "<group>"; }; + AD5272F35581455FCB38C329C710D92E /* GULSecureCoding.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = GULSecureCoding.h; path = GoogleUtilities/Environment/Private/GULSecureCoding.h; sourceTree = "<group>"; }; + AD6EC1CE10CEE5E26692EB97319A576F /* Libgen.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = Libgen.cpp; path = folly/portability/Libgen.cpp; sourceTree = "<group>"; }; + AD72F8ABD0DC27C9178229557159F668 /* Unit.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Unit.h; path = folly/Unit.h; sourceTree = "<group>"; }; + AD928CF3372D9798FA1B78C5FD00C83D /* ThreadName.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ThreadName.h; path = folly/system/ThreadName.h; sourceTree = "<group>"; }; + AD9E48B645FD5F52BE09363C823EAA97 /* FBLPromise+Timeout.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "FBLPromise+Timeout.m"; path = "Sources/FBLPromises/FBLPromise+Timeout.m"; sourceTree = "<group>"; }; + ADA1F5A3936520BE6DACDE7600DF5238 /* NSBezierPath+SDRoundedCorners.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "NSBezierPath+SDRoundedCorners.m"; path = "SDWebImage/Private/NSBezierPath+SDRoundedCorners.m"; sourceTree = "<group>"; }; + ADA3196766C374BC80B399D6B8F0537B /* RsaFormatter.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RsaFormatter.h; sourceTree = "<group>"; }; + ADAC2FF1F07052C8B111B7F23D1ACED3 /* RCTLayoutAnimation.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTLayoutAnimation.m; sourceTree = "<group>"; }; + ADCBE5CD617D332C60C0C6661CCE293D /* RNSScreenContainer.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNSScreenContainer.h; path = ios/RNSScreenContainer.h; sourceTree = "<group>"; }; + ADCE13A437B51A8E4DE08350213790B2 /* AsyncUDPSocket.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = AsyncUDPSocket.h; path = folly/io/async/AsyncUDPSocket.h; sourceTree = "<group>"; }; + ADCF5534828DB3CD3A9DE9523DC4C1B8 /* FileUtilDetail.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FileUtilDetail.h; path = folly/detail/FileUtilDetail.h; sourceTree = "<group>"; }; + ADD6216FDE061903E534DD598E79DDA1 /* FIRCLSDataCollectionToken.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRCLSDataCollectionToken.m; path = Crashlytics/Crashlytics/DataCollection/FIRCLSDataCollectionToken.m; sourceTree = "<group>"; }; + ADDE8828F81CA4F99392A484A6D64E28 /* RCTSinglelineTextInputViewManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTSinglelineTextInputViewManager.h; sourceTree = "<group>"; }; + ADE2B31E84EF1342BDD291F96C07BDD2 /* RSocket.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RSocket.h; path = rsocket/RSocket.h; sourceTree = "<group>"; }; + AE03D954CA04298775A9A3379F965E0D /* SKTapListener.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SKTapListener.h; path = iOS/Plugins/FlipperKitLayoutPlugin/FlipperKitLayoutPlugin/SKTapListener.h; sourceTree = "<group>"; }; + AE3A3D6B37CCEF385FE230EDB88E483D /* TOCroppedImageAttributes.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = TOCroppedImageAttributes.m; path = "Objective-C/TOCropViewController/Models/TOCroppedImageAttributes.m"; sourceTree = "<group>"; }; + AE48CE0491B4D11FA8A9B4406D7594B9 /* PropagateConst.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = PropagateConst.h; path = folly/lang/PropagateConst.h; sourceTree = "<group>"; }; + AE52D0D71FEFEC4BE0233DFA66C4551D /* React-RCTLinking-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "React-RCTLinking-prefix.pch"; sourceTree = "<group>"; }; + AE5A3BA5D8DE9CB34BA3DF05889E17BF /* RCTUIManagerUtils.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTUIManagerUtils.h; sourceTree = "<group>"; }; + AE5F014858B40871264FFFCCBE7E2700 /* FlipperCppBridgingResponder.mm */ = {isa = PBXFileReference; includeInIndex = 1; name = FlipperCppBridgingResponder.mm; path = iOS/FlipperKit/CppBridge/FlipperCppBridgingResponder.mm; sourceTree = "<group>"; }; + AE6385F9078171EC3377BBF2BBCD6A24 /* histogram_enc.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = histogram_enc.h; path = src/enc/histogram_enc.h; sourceTree = "<group>"; }; + AE70837C612AE7D24CA5BB67408C5255 /* Expected.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Expected.h; path = folly/Expected.h; sourceTree = "<group>"; }; + AE775A84C1A36A7AD7B4F6DB894723CD /* FIRDiagnosticsData.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRDiagnosticsData.m; path = FirebaseCore/Sources/FIRDiagnosticsData.m; sourceTree = "<group>"; }; + AE778A0F8856F1A013BB134498D05F4E /* RNBootSplash.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNBootSplash.h; path = ios/RNBootSplash.h; sourceTree = "<group>"; }; + AE857425BA88C970565521926420F82F /* UMTaskServiceInterface.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = UMTaskServiceInterface.h; path = UMTaskManagerInterface/UMTaskServiceInterface.h; sourceTree = "<group>"; }; + AE8686E24AB11F8CD87A9FA78E5EB6F6 /* RNFBPreferences.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNFBPreferences.m; path = ios/RNFBApp/RNFBPreferences.m; sourceTree = "<group>"; }; + AE988DA3D13C903E9532F8EE8736A5B9 /* react-native-webview.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "react-native-webview.debug.xcconfig"; sourceTree = "<group>"; }; + AEB7062BC1CA34C27BD61962B05C8CAD /* RCTImageStoreManager.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTImageStoreManager.mm; sourceTree = "<group>"; }; + AEBE777944987407ACB4E2B0C290EF36 /* BSG_Jailbreak.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BSG_Jailbreak.h; sourceTree = "<group>"; }; + AED32787DE14BA131887AAC0EA14F77D /* UICollectionView+SKInvalidation.mm */ = {isa = PBXFileReference; includeInIndex = 1; name = "UICollectionView+SKInvalidation.mm"; path = "iOS/Plugins/FlipperKitLayoutPlugin/FlipperKitLayoutPlugin/UICollectionView+SKInvalidation.mm"; sourceTree = "<group>"; }; + AEDA68E134190CE078D79652BF9C2981 /* color_cache_utils.c */ = {isa = PBXFileReference; includeInIndex = 1; name = color_cache_utils.c; path = src/utils/color_cache_utils.c; sourceTree = "<group>"; }; + AEE04B86B08146D2599D59FFC1455CDE /* RCTRootShadowView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTRootShadowView.h; sourceTree = "<group>"; }; + AEF0E048470BB3514B56999490E54844 /* F14IntrinsicsAvailability.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = F14IntrinsicsAvailability.h; path = folly/container/detail/F14IntrinsicsAvailability.h; sourceTree = "<group>"; }; + AEFA078EB7DE2F215A9B9A6C4E542DB2 /* UMAppLoader-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "UMAppLoader-dummy.m"; sourceTree = "<group>"; }; + AF0745E0046A86F0A431A89A77372F33 /* RNCSafeAreaViewLocalData.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNCSafeAreaViewLocalData.h; path = ios/SafeAreaView/RNCSafeAreaViewLocalData.h; sourceTree = "<group>"; }; + AF10CBD12AA62234E58F17BC712BB165 /* RCTFrameUpdate.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTFrameUpdate.h; sourceTree = "<group>"; }; + AF116B0C9DF3973E4D1C89D74AF2BEF2 /* boost-for-react-native.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "boost-for-react-native.release.xcconfig"; sourceTree = "<group>"; }; + AF1408D268049C8C4C54B4987BCA1CF6 /* MMKV-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "MMKV-dummy.m"; sourceTree = "<group>"; }; + AF3415B3D5FF32410C0115036DCF794A /* Feather.ttf */ = {isa = PBXFileReference; includeInIndex = 1; name = Feather.ttf; path = Fonts/Feather.ttf; sourceTree = "<group>"; }; + AF3EC9BE7E477CCA5AA4752CB8907463 /* DefaultKeepAliveExecutor.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = DefaultKeepAliveExecutor.h; path = folly/DefaultKeepAliveExecutor.h; sourceTree = "<group>"; }; + AF4996137CF6A3B559074D8DB8F85011 /* react-native-orientation-locker.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = "react-native-orientation-locker.podspec"; sourceTree = "<group>"; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; + AF6354181882A3184F2A8406B0A7F9CD /* ProxyLockable-inl.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "ProxyLockable-inl.h"; path = "folly/synchronization/detail/ProxyLockable-inl.h"; sourceTree = "<group>"; }; + AF69F91177882A1FF2E4F2678A36644C /* RCTTextShadowView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTTextShadowView.h; sourceTree = "<group>"; }; AF72FD600DE7E2D330BA50F877993E05 /* libUMCore.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; name = libUMCore.a; path = libUMCore.a; sourceTree = BUILT_PRODUCTS_DIR; }; - AF88246064A0F24D2BEA1AAA4535D82C /* RNPushKit.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNPushKit.m; path = RNNotifications/RNPushKit.m; sourceTree = "<group>"; }; - AF92831C225D2F0E3C8CE8446FF6B84F /* MiniPBCoder_OSX.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = MiniPBCoder_OSX.cpp; path = Core/MiniPBCoder_OSX.cpp; sourceTree = "<group>"; }; - AFA925ABF9B55E902B2FC9DB241E3192 /* YGNodePrint.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = YGNodePrint.h; path = yoga/YGNodePrint.h; sourceTree = "<group>"; }; - AFAAC35F1D7EBA12FAE2CE82168A8B09 /* AtomicHashMap-inl.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "AtomicHashMap-inl.h"; path = "folly/AtomicHashMap-inl.h"; sourceTree = "<group>"; }; - AFBA0DC87250CE5452721227940656DE /* UIImage+ExtendedCacheData.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "UIImage+ExtendedCacheData.m"; path = "SDWebImage/Core/UIImage+ExtendedCacheData.m"; sourceTree = "<group>"; }; - AFDEB7B9A74282D9812379970531FCAB /* FIRCLSFile.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRCLSFile.h; path = Crashlytics/Crashlytics/Helpers/FIRCLSFile.h; sourceTree = "<group>"; }; - AFE9F1D8D32C245F4D11F96848D588CB /* RCTSwitchManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTSwitchManager.m; sourceTree = "<group>"; }; - AFFA37E0D240F51E9319F97795876607 /* yuv.c */ = {isa = PBXFileReference; includeInIndex = 1; name = yuv.c; path = src/dsp/yuv.c; sourceTree = "<group>"; }; - AFFEB724A1817711BD36B10EF0CDD742 /* BSGJSONSerialization.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BSGJSONSerialization.h; sourceTree = "<group>"; }; - B001EE8C196C9E10035286FE7EE84032 /* FIRCLSInternalLogging.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRCLSInternalLogging.h; path = Crashlytics/Crashlytics/Helpers/FIRCLSInternalLogging.h; sourceTree = "<group>"; }; - B00A3D811FE95BAA79458C70701C7D1E /* json.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = json.h; path = folly/json.h; sourceTree = "<group>"; }; - B00F17CD86E0960793ED999778327FA0 /* FIRAEvent+Internal.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "FIRAEvent+Internal.h"; path = "Crashlytics/Crashlytics/Helpers/FIRAEvent+Internal.h"; sourceTree = "<group>"; }; - B0165A96BF4E5166DAC954DD7CC76CC1 /* React-RCTBlob.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "React-RCTBlob.debug.xcconfig"; sourceTree = "<group>"; }; - B017EE09913730740C6957C49A600CCC /* ThreadLocalDetail.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = ThreadLocalDetail.cpp; path = folly/detail/ThreadLocalDetail.cpp; sourceTree = "<group>"; }; - B024CE0A8658C173B1A92EAEF273CA05 /* AtomicHashArray-inl.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "AtomicHashArray-inl.h"; path = "folly/AtomicHashArray-inl.h"; sourceTree = "<group>"; }; - B02D8D43A8E6786CF62BCF30E24A36D9 /* QBAlbumCell.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = QBAlbumCell.m; path = ios/QBImagePicker/QBImagePicker/QBAlbumCell.m; sourceTree = "<group>"; }; - B042F5A5AB0621F4132E429D09681A9B /* SDWebImageOptionsProcessor.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SDWebImageOptionsProcessor.h; path = SDWebImage/Core/SDWebImageOptionsProcessor.h; sourceTree = "<group>"; }; - B0465C015983248F32D4F2E83D69D8D1 /* Benchmark.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Benchmark.h; path = folly/Benchmark.h; sourceTree = "<group>"; }; - B04A0DBA2F42C8B8861D99EDCA183129 /* RCTSRWebSocket.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RCTSRWebSocket.m; path = Libraries/WebSocket/RCTSRWebSocket.m; sourceTree = "<group>"; }; - B09923908C0ED67A7B5131B7BB580CEE /* de.lproj */ = {isa = PBXFileReference; includeInIndex = 1; name = de.lproj; path = "Objective-C/TOCropViewController/Resources/de.lproj"; sourceTree = "<group>"; }; - B0B15E0495BCA939F82E3999573D2DFB /* BugsnagLastRunInfo.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BugsnagLastRunInfo.h; sourceTree = "<group>"; }; + AF90DE3148D112B1E87789F6734CB18D /* RCTTextAttributes.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTTextAttributes.m; sourceTree = "<group>"; }; + AF95E83E2C5034A52CE17141CA50F426 /* TestSubscriber.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = TestSubscriber.h; path = yarpl/flowable/TestSubscriber.h; sourceTree = "<group>"; }; + AFA986D249892E3FFF0989691CC3B935 /* RCTExceptionsManager.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTExceptionsManager.mm; sourceTree = "<group>"; }; + AFAD65AA13985A28ADC98BD8C5068EB6 /* RCTBridgeMethod.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTBridgeMethod.h; sourceTree = "<group>"; }; + AFB2718456535A9D9DE11EA260D9A65E /* react-native-document-picker-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "react-native-document-picker-prefix.pch"; sourceTree = "<group>"; }; + AFB3DA1084FEC7BFD1B3B27BE5F973F5 /* FirebaseCore-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "FirebaseCore-dummy.m"; sourceTree = "<group>"; }; + AFBE12C4DE3A7ED228FE7E283346DFFB /* AtomicUtil.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = AtomicUtil.h; path = folly/synchronization/AtomicUtil.h; sourceTree = "<group>"; }; + AFD436FF59C479B66D2D812CE0111873 /* RCTSurfaceHostingView.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTSurfaceHostingView.mm; sourceTree = "<group>"; }; + AFEF67BDD8C0CD8BD2F4CC4D9CFFFCE6 /* EXLocalAuthentication.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = EXLocalAuthentication.podspec; sourceTree = "<group>"; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; + B00B844E645A4E61C5FF2BA98F7EC1E1 /* ObservableConcatOperators.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ObservableConcatOperators.h; path = yarpl/observable/ObservableConcatOperators.h; sourceTree = "<group>"; }; + B012542C77A21052EADE0688F2953250 /* BSG_KSMach_Arm.c */ = {isa = PBXFileReference; includeInIndex = 1; path = BSG_KSMach_Arm.c; sourceTree = "<group>"; }; + B014B6CFDE21C3CDECA04DC8FB451F11 /* RCTSwitch.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTSwitch.h; sourceTree = "<group>"; }; + B01693F81A1CAD93402D7E2E150E6331 /* Format.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Format.h; path = folly/Format.h; sourceTree = "<group>"; }; + B02B5CA1B297D39A188A109B08820B67 /* StreamFragmentAccumulator.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = StreamFragmentAccumulator.cpp; path = rsocket/statemachine/StreamFragmentAccumulator.cpp; sourceTree = "<group>"; }; + B043689307E99F13549BE277D43358BE /* TLRefCount.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = TLRefCount.h; path = folly/experimental/TLRefCount.h; sourceTree = "<group>"; }; + B045E9D2723576894CFADB8CF99D1BDC /* TOCropViewController.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = TOCropViewController.m; path = "Objective-C/TOCropViewController/TOCropViewController.m"; sourceTree = "<group>"; }; + B056643EEAA87C1FF8FF181C98E8A5A3 /* Flipper-PeerTalk.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "Flipper-PeerTalk.release.xcconfig"; sourceTree = "<group>"; }; + B0706F0483156F03FEFD862EB587B92B /* SKInvalidation.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SKInvalidation.h; path = iOS/Plugins/FlipperKitLayoutPlugin/FlipperKitLayoutPlugin/SKInvalidation.h; sourceTree = "<group>"; }; + B07548603CA2ADF5B6A45D3C2F0A74E5 /* diy-fp.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = "diy-fp.cc"; path = "double-conversion/diy-fp.cc"; sourceTree = "<group>"; }; + B07F676F038A947FB374C7219F06F0B5 /* RCTRefreshControlManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTRefreshControlManager.h; sourceTree = "<group>"; }; + B09CBD69C7A804AE3E4219DDD94A3EA4 /* nl.lproj */ = {isa = PBXFileReference; includeInIndex = 1; name = nl.lproj; path = "Objective-C/TOCropViewController/Resources/nl.lproj"; sourceTree = "<group>"; }; + B0A99655DC65C3E62F66CA74D06F4888 /* FlipperKit-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "FlipperKit-prefix.pch"; sourceTree = "<group>"; }; B0B214D775196BA7CA8E17E53048A493 /* libSDWebImage.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; name = libSDWebImage.a; path = libSDWebImage.a; sourceTree = BUILT_PRODUCTS_DIR; }; - B0B5D9B71A83EC9F23FB5432F6A776D9 /* EXVideoPlayerViewController.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = EXVideoPlayerViewController.m; sourceTree = "<group>"; }; - B0D5A182C42291DAF7F26A11BD8C8483 /* BSGEventUploadObjectOperation.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BSGEventUploadObjectOperation.h; sourceTree = "<group>"; }; - B0F4A1B84ED63749F8044921E15E45F5 /* FBLPromise+Do.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "FBLPromise+Do.m"; path = "Sources/FBLPromises/FBLPromise+Do.m"; sourceTree = "<group>"; }; - B0FCCFB255C5A631079CFB219A9AB261 /* RSocketErrors.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RSocketErrors.h; path = rsocket/RSocketErrors.h; sourceTree = "<group>"; }; - B126233D13D7E7E44723CA60B4D89984 /* LICENSE */ = {isa = PBXFileReference; includeInIndex = 1; path = LICENSE; sourceTree = "<group>"; }; - B12663CABBD318E5F233935D392A54B0 /* EventBaseManager.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = EventBaseManager.cpp; path = folly/io/async/EventBaseManager.cpp; sourceTree = "<group>"; }; - B145BBC0D222D042C25563A552C7B1F1 /* ShutdownSocketSet.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = ShutdownSocketSet.cpp; path = folly/io/ShutdownSocketSet.cpp; sourceTree = "<group>"; }; - B15175F2164C98A39C87EB95FFC28E02 /* BlockingQueue.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = BlockingQueue.h; path = folly/executors/task_queue/BlockingQueue.h; sourceTree = "<group>"; }; - B156798CE872930251DCFF8958AA59D3 /* FlipperKit.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = FlipperKit.release.xcconfig; sourceTree = "<group>"; }; - B167633F9DF72ADB205A2AECBB9C05A5 /* FBLPromise+Timeout.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "FBLPromise+Timeout.h"; path = "Sources/FBLPromises/include/FBLPromise+Timeout.h"; sourceTree = "<group>"; }; - B173169CAFCA51717A0990FA0F85CAF4 /* StreamsWriter.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = StreamsWriter.h; path = rsocket/statemachine/StreamsWriter.h; sourceTree = "<group>"; }; - B180A30621C18D083C4C04ABBBD78726 /* libwebp.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = libwebp.release.xcconfig; sourceTree = "<group>"; }; - B199080EDD3C366AAB586045837DF903 /* react-native-blur.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = "react-native-blur.podspec"; sourceTree = "<group>"; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; - B1B5F8F61C6845AF170F2EED2DAE8326 /* VibrancyViewManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = VibrancyViewManager.h; path = ios/VibrancyViewManager.h; sourceTree = "<group>"; }; - B1BC2E3C86586718127703C3E68A9E23 /* RCTInterpolationAnimatedNode.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTInterpolationAnimatedNode.m; sourceTree = "<group>"; }; - B1CC5F300C379D9AFF7A7F9E68C4BC16 /* TcpConnectionFactory.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = TcpConnectionFactory.cpp; path = rsocket/transports/tcp/TcpConnectionFactory.cpp; sourceTree = "<group>"; }; - B1E2BB6BFC8F3CCCB19085DD174E8AC0 /* ThreadWheelTimekeeper.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = ThreadWheelTimekeeper.cpp; path = folly/futures/ThreadWheelTimekeeper.cpp; sourceTree = "<group>"; }; - B1E53AC7BC87F814F9DFAFF685664566 /* UMAppDelegateWrapper.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = UMAppDelegateWrapper.h; path = UMCore/UMAppDelegateWrapper.h; sourceTree = "<group>"; }; - B1E561BB53064F378156F22F2A0939AC /* LNAnimatorTemp.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = LNAnimatorTemp.m; sourceTree = "<group>"; }; - B1F5D075BFE910A7152B6F26241607C1 /* Optional.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Optional.h; path = folly/Optional.h; sourceTree = "<group>"; }; - B1F760470CBA775E2C937B689C311319 /* RCTObjcExecutor.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTObjcExecutor.h; sourceTree = "<group>"; }; - B1FF6B2CA1B1140675F34754AA1FAC9C /* SDImageIOCoder.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = SDImageIOCoder.m; path = SDWebImage/Core/SDImageIOCoder.m; sourceTree = "<group>"; }; - B21A11DD91D2D39B41DAC66618429CFE /* Yoga.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Yoga.h; path = yoga/Yoga.h; sourceTree = "<group>"; }; - B21C9729FD9EC0FB30E16883878AF772 /* AsyncTimeout.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = AsyncTimeout.h; path = folly/io/async/AsyncTimeout.h; sourceTree = "<group>"; }; - B2239967123C25EBE50C9AE997EBA3B2 /* rn-fetch-blob-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "rn-fetch-blob-dummy.m"; sourceTree = "<group>"; }; - B227BFF053D18A02145168DAB7EF0D3D /* KeyCommands.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = KeyCommands.podspec; sourceTree = "<group>"; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; - B23643BC6130F9372FAFC59EED9BF7DA /* F14IntrinsicsAvailability.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = F14IntrinsicsAvailability.h; path = folly/container/detail/F14IntrinsicsAvailability.h; sourceTree = "<group>"; }; - B2479DB2FE66EE76609DF15B3AB5F1F9 /* FIRCLSFCRAnalytics.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRCLSFCRAnalytics.m; path = Crashlytics/Crashlytics/Helpers/FIRCLSFCRAnalytics.m; sourceTree = "<group>"; }; - B248EA8DEF3C40A83D0E1F7246D05B6D /* README.md */ = {isa = PBXFileReference; includeInIndex = 1; path = README.md; sourceTree = "<group>"; }; - B29C1B4AEAB65007F1EE031667FAF0FC /* NSButton+WebCache.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "NSButton+WebCache.m"; path = "SDWebImage/Core/NSButton+WebCache.m"; sourceTree = "<group>"; }; - B2A940E26A5A7DA164A5F39A2B057952 /* RCTInvalidating.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTInvalidating.h; sourceTree = "<group>"; }; - B2ACB7C42F1DE37F79D071DC63437F91 /* SSLContext.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SSLContext.h; path = folly/io/async/SSLContext.h; sourceTree = "<group>"; }; - B2AD51EBD6D9EED1E920D3576E9CD20B /* RCTModuleData.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTModuleData.h; sourceTree = "<group>"; }; - B2B0C2B2DA9D3780174162903F4E336E /* RCTVibrationPlugins.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTVibrationPlugins.h; path = Libraries/Vibration/RCTVibrationPlugins.h; sourceTree = "<group>"; }; - B2B1577097A380C5EFC177FF78557FF4 /* RNCSafeAreaViewLocalData.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNCSafeAreaViewLocalData.h; path = ios/SafeAreaView/RNCSafeAreaViewLocalData.h; sourceTree = "<group>"; }; - B2B8C59FD073EE3821727E5FF2FE7236 /* json_pointer.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = json_pointer.cpp; path = folly/json_pointer.cpp; sourceTree = "<group>"; }; - B2E0119137ABBA5AA5D171159172945D /* React-RCTSettings.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = "React-RCTSettings.podspec"; sourceTree = "<group>"; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; - B2ECBA9C7F58B36347D49D2C42DC9E92 /* RNPinchHandler.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RNPinchHandler.h; sourceTree = "<group>"; }; - B301AAB908F0277D9B59DFA5796189EB /* ARTCGFloatArray.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ARTCGFloatArray.h; path = ios/ARTCGFloatArray.h; sourceTree = "<group>"; }; - B30D6FE2E629D083BE994DC651DCB6DC /* react-native-safe-area-context-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "react-native-safe-area-context-prefix.pch"; sourceTree = "<group>"; }; - B315AC002517DB5B0E4BB7730C693375 /* RCTURLRequestDelegate.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTURLRequestDelegate.h; sourceTree = "<group>"; }; - B319FBAEAC3E1E7C2A80BB51E7C7F421 /* UIView+Private.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "UIView+Private.h"; sourceTree = "<group>"; }; - B32D5C22FD2CA2DB5B184D29AD6792C8 /* MMKVCore-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "MMKVCore-dummy.m"; sourceTree = "<group>"; }; - B32DD95FEA09DF1C9AAFDCB797ACD40D /* Flipper-Glog.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "Flipper-Glog.release.xcconfig"; sourceTree = "<group>"; }; - B334C8C9484417B4553E4A2ADA7991EA /* Unistd.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Unistd.h; path = folly/portability/Unistd.h; sourceTree = "<group>"; }; - B335892566A9D0203E6E06C4932EBC6B /* Flipper-Glog-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "Flipper-Glog-dummy.m"; sourceTree = "<group>"; }; + B0B6594FD82B8CDCBC9F5393B2A244FC /* BSG_KSCrashSentry.c */ = {isa = PBXFileReference; includeInIndex = 1; path = BSG_KSCrashSentry.c; sourceTree = "<group>"; }; + B17C95B209B98EA07B3310578D724ED3 /* BugsnagKeys.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = BugsnagKeys.m; sourceTree = "<group>"; }; + B18D8BFF70F1BFE1FAD743784EB04A32 /* OpenSSLHash.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = OpenSSLHash.h; path = folly/ssl/OpenSSLHash.h; sourceTree = "<group>"; }; + B18DD986F43F3181EBB8DA82ADF5FC77 /* RCTVersion.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTVersion.h; sourceTree = "<group>"; }; + B19C5C8B6FBF23E225D37116C98A1A26 /* diy-fp.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "diy-fp.h"; path = "double-conversion/diy-fp.h"; sourceTree = "<group>"; }; + B1C51DD87B30358E7B653A7186A36086 /* FIRComponentType.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRComponentType.m; path = FirebaseCore/Sources/FIRComponentType.m; sourceTree = "<group>"; }; + B1CB6CEF5FF06DC6153CDA4F8DA55607 /* BugsnagKVStoreObjC.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BugsnagKVStoreObjC.h; sourceTree = "<group>"; }; + B1EFD3176979B895DB18DC7BFB980B17 /* SpookyHashV2.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = SpookyHashV2.cpp; path = folly/hash/SpookyHashV2.cpp; sourceTree = "<group>"; }; + B1F8CF581CB5D7DBDA3CE18D2C0D1B28 /* ScheduledSubscription.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = ScheduledSubscription.cpp; path = rsocket/internal/ScheduledSubscription.cpp; sourceTree = "<group>"; }; + B20F12B1FABAAE29FA8AEDBFA3E3C310 /* rescaler.c */ = {isa = PBXFileReference; includeInIndex = 1; name = rescaler.c; path = src/dsp/rescaler.c; sourceTree = "<group>"; }; + B23DFB13AC3F5FC16160D2739D8A204C /* json_patch.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = json_patch.h; path = folly/json_patch.h; sourceTree = "<group>"; }; + B247BAA030EA2BCCEB72086F4E4F6279 /* Frame.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Frame.h; path = rsocket/framing/Frame.h; sourceTree = "<group>"; }; + B25041660018CCFC686A1BCEBBC6700A /* StaticTracepoint.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = StaticTracepoint.h; path = folly/tracing/StaticTracepoint.h; sourceTree = "<group>"; }; + B28964FDACCE3E5DFEDCEC8B6C240FF3 /* FIRConfiguration.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRConfiguration.m; path = FirebaseCore/Sources/FIRConfiguration.m; sourceTree = "<group>"; }; + B289B481D490E9AB326ABEB0BFB6B9AB /* RCTSRWebSocket.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RCTSRWebSocket.m; path = Libraries/WebSocket/RCTSRWebSocket.m; sourceTree = "<group>"; }; + B299D23428F04BCB9299578DBB3D25E3 /* RCTRawTextViewManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTRawTextViewManager.m; sourceTree = "<group>"; }; + B2A1EC0055E423BFA6B6E942F059E186 /* AsyncTimeout.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = AsyncTimeout.cpp; path = folly/io/async/AsyncTimeout.cpp; sourceTree = "<group>"; }; + B2C132FB32D0B4C3D6E4FDA06C9AE554 /* GULKeychainUtils.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = GULKeychainUtils.h; path = GoogleUtilities/Environment/Private/GULKeychainUtils.h; sourceTree = "<group>"; }; + B2DC601003B56909E4E622587FF16416 /* Subscription.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Subscription.h; path = yarpl/observable/Subscription.h; sourceTree = "<group>"; }; + B2E4B390C593EC4820C4A6261073B4EA /* ThreadName.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = ThreadName.cpp; path = folly/system/ThreadName.cpp; sourceTree = "<group>"; }; + B2F4EC6DC896E7B729A777B3662E1116 /* GoogleUtilities-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "GoogleUtilities-dummy.m"; sourceTree = "<group>"; }; + B2F6D12646EC41A9CEFB3768C870894A /* GULNetworkURLSession.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = GULNetworkURLSession.m; path = GoogleUtilities/Network/GULNetworkURLSession.m; sourceTree = "<group>"; }; + B2FD527FF5DA6B6E6330F03166CA0B63 /* SDMemoryCache.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SDMemoryCache.h; path = SDWebImage/Core/SDMemoryCache.h; sourceTree = "<group>"; }; + B30D63A627EC586F59161BE38FFC498A /* AsyncTimeout.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = AsyncTimeout.h; path = folly/io/async/AsyncTimeout.h; sourceTree = "<group>"; }; + B30E609D568365127079DE15F8F18390 /* RCTBlobManager.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTBlobManager.mm; sourceTree = "<group>"; }; + B316952DD73BA4536327BAC2F0C3085C /* StreamsWriter.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = StreamsWriter.cpp; path = rsocket/statemachine/StreamsWriter.cpp; sourceTree = "<group>"; }; + B337CA6C756C410795979F5E94F07157 /* SDAnimatedImagePlayer.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = SDAnimatedImagePlayer.m; path = SDWebImage/Core/SDAnimatedImagePlayer.m; sourceTree = "<group>"; }; B34D7AD717D6773326F1B507DC17B4FE /* Pods-NotificationService-acknowledgements.markdown */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text; path = "Pods-NotificationService-acknowledgements.markdown"; sourceTree = "<group>"; }; - B3513E19B47BF3451C5B25B0E2ED515B /* FIRBundleUtil.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRBundleUtil.m; path = FirebaseCore/Sources/FIRBundleUtil.m; sourceTree = "<group>"; }; - B35A3F11DC99091C6A796255001C7507 /* BSGEventUploader.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = BSGEventUploader.m; sourceTree = "<group>"; }; - B36D2A2E934218455F4CFB5C60922B9A /* EXReactNativeUserNotificationCenterProxy.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = EXReactNativeUserNotificationCenterProxy.h; path = EXPermissions/EXReactNativeUserNotificationCenterProxy.h; sourceTree = "<group>"; }; - B373A07D6A1D7A65054827E179FE0B52 /* FLEXNetworkObserver.mm */ = {isa = PBXFileReference; includeInIndex = 1; name = FLEXNetworkObserver.mm; path = iOS/Plugins/FlipperKitNetworkPlugin/SKIOSNetworkPlugin/FLEXNetworkLib/FLEXNetworkObserver.mm; sourceTree = "<group>"; }; - B374D73EA1612B85750D61AE6F16271F /* BugsnagEndpointConfiguration.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = BugsnagEndpointConfiguration.m; sourceTree = "<group>"; }; - B37603DEF7D9FC146306428CF41DA217 /* ThriftStreamShim.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ThriftStreamShim.h; path = yarpl/flowable/ThriftStreamShim.h; sourceTree = "<group>"; }; - B37CF269BCAE8B7D2A9F579D77ED442F /* Synchronized.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Synchronized.h; path = folly/Synchronized.h; sourceTree = "<group>"; }; - B38BE1DD0BFD5C7BECE27605B2D9D362 /* UTF8String.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = UTF8String.h; path = folly/UTF8String.h; sourceTree = "<group>"; }; - B38EFFCE50312E2914CA7E5325427451 /* EXAppleAuthentication.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = EXAppleAuthentication.podspec; sourceTree = "<group>"; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; - B397F83E5364B2FB27FC44746EC7445B /* BugsnagKVStoreObjC.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = BugsnagKVStoreObjC.m; sourceTree = "<group>"; }; - B39FA304FAD2133BE2076EF1F90A524A /* FIRInteropParameterNames.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRInteropParameterNames.h; path = Interop/Analytics/Public/FIRInteropParameterNames.h; sourceTree = "<group>"; }; - B3C6BFB580171BD8CB2AC2C4D3FDE006 /* NamedThreadFactory.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = NamedThreadFactory.h; path = folly/executors/thread_factory/NamedThreadFactory.h; sourceTree = "<group>"; }; - B3D315E54667C3E03E9D6864813B0E38 /* React-RCTLinking.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "React-RCTLinking.debug.xcconfig"; sourceTree = "<group>"; }; - B3D9CC080476DE1289297FCA471067E9 /* Tearable.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Tearable.h; path = folly/synchronization/Tearable.h; sourceTree = "<group>"; }; - B3DC606F8383444756BD0A8665311ACC /* DestructorCheck.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = DestructorCheck.h; path = folly/io/async/DestructorCheck.h; sourceTree = "<group>"; }; - B3DCE9A7714DB904FBF656639EC14D50 /* RCTVersion.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTVersion.h; sourceTree = "<group>"; }; - B3DDF3E68ACB1EB42C9B28FEFE55CD1A /* BugsnagConfiguration.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = BugsnagConfiguration.m; sourceTree = "<group>"; }; - B3EA108D86B0FF481C6D662FACD8A709 /* FIRCLSURLSession.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRCLSURLSession.h; path = Crashlytics/Crashlytics/FIRCLSURLSession/FIRCLSURLSession.h; sourceTree = "<group>"; }; - B3F477DAC2CCDDEF7E1FA593B313DA60 /* UMAppLoader.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = UMAppLoader.debug.xcconfig; sourceTree = "<group>"; }; - B4085A0F7918181A1D30B9BC6816F89B /* React-RCTLinking.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = "React-RCTLinking.podspec"; sourceTree = "<group>"; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; - B40DF7C2CDE03744D98968D0D2ACF035 /* RCTView+SafeAreaCompat.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "RCTView+SafeAreaCompat.h"; path = "ios/SafeAreaView/RCTView+SafeAreaCompat.h"; sourceTree = "<group>"; }; - B41E122A072DAC1D36112A10BA073686 /* BSGAppHangDetector.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BSGAppHangDetector.h; sourceTree = "<group>"; }; - B42749E166A6F32EB791289DDD896CB2 /* SDMemoryCache.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = SDMemoryCache.m; path = SDWebImage/Core/SDMemoryCache.m; sourceTree = "<group>"; }; - B427BF719A851FABFC69FC83BC0A0D4F /* FirebaseCore-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "FirebaseCore-dummy.m"; sourceTree = "<group>"; }; + B34DD17F4E32CC762E39A207CBD45B1F /* CompactValue.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = CompactValue.h; path = yoga/CompactValue.h; sourceTree = "<group>"; }; + B367A31FC95F7361F2F0277B285EB989 /* AsymmetricMemoryBarrier.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = AsymmetricMemoryBarrier.h; path = folly/synchronization/AsymmetricMemoryBarrier.h; sourceTree = "<group>"; }; + B3691DD6BCD74E7E5AC60CA66EC5B91C /* logging.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = logging.cc; path = src/logging.cc; sourceTree = "<group>"; }; + B38339CD40565498AB3A0F135F383164 /* StringKeyedCommon.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = StringKeyedCommon.h; path = folly/experimental/StringKeyedCommon.h; sourceTree = "<group>"; }; + B388AA0CE17EA16BD7DAEC50D1DE956E /* EXVideoPlayerViewController.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = EXVideoPlayerViewController.h; sourceTree = "<group>"; }; + B38FF39FA74A1AEFB9C17FD5A791AFB5 /* RCTObjcExecutor.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTObjcExecutor.mm; sourceTree = "<group>"; }; + B39E4C3BF6FBE891D24FB9FB58B1A83A /* HazptrDomain.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = HazptrDomain.h; path = folly/synchronization/HazptrDomain.h; sourceTree = "<group>"; }; + B3A7081A4A4B2E57040505D3748DD58C /* pl.lproj */ = {isa = PBXFileReference; includeInIndex = 1; name = pl.lproj; path = ios/QBImagePicker/QBImagePicker/pl.lproj; sourceTree = "<group>"; }; + B3ADE572FF5E4A6BC753131678DE7389 /* Replaceable.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Replaceable.h; path = folly/Replaceable.h; sourceTree = "<group>"; }; + B3B89525513B26DEE78599CC58B9266E /* GULNSData+zlib.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "GULNSData+zlib.h"; path = "GoogleUtilities/NSData+zlib/Public/GULNSData+zlib.h"; sourceTree = "<group>"; }; + B3BF1A52461BB6FE59700736C60FB865 /* BugsnagEvent.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BugsnagEvent.h; sourceTree = "<group>"; }; + B3E2484AD5AEA3DD003A028AE0D0A26B /* Zocial.ttf */ = {isa = PBXFileReference; includeInIndex = 1; name = Zocial.ttf; path = Fonts/Zocial.ttf; sourceTree = "<group>"; }; + B402B42D229C980F48C778C86ED59C9D /* README.md */ = {isa = PBXFileReference; includeInIndex = 1; path = README.md; sourceTree = "<group>"; }; + B40EC70902CB402A5BF316D6EB99426F /* MessageConverters.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = MessageConverters.h; sourceTree = "<group>"; }; + B421DAF8DD57F52DA5882F7B07CE2C59 /* Exceptions.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = Exceptions.h; sourceTree = "<group>"; }; + B424E6895C5689421DCACF865CF69CF3 /* FIRCLSBinaryImage.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRCLSBinaryImage.m; path = Crashlytics/Crashlytics/Components/FIRCLSBinaryImage.m; sourceTree = "<group>"; }; B43874C6CBB50E7134FBEC24BABFE14F /* libGoogleUtilities.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; name = libGoogleUtilities.a; path = libGoogleUtilities.a; sourceTree = BUILT_PRODUCTS_DIR; }; - B44CE495171BBFB5DACBAF704180480D /* GDTCCTCompressionHelper.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = GDTCCTCompressionHelper.m; path = GoogleDataTransportCCTSupport/GDTCCTLibrary/GDTCCTCompressionHelper.m; sourceTree = "<group>"; }; - B44FE944CBD14BC532A9DD4246A36A3B /* react-native-netinfo.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = "react-native-netinfo.podspec"; sourceTree = "<group>"; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; - B4507C7DFD6A67ED8484D249AA895C20 /* RCTMultilineTextInputView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTMultilineTextInputView.m; sourceTree = "<group>"; }; - B45474904DD6995F174BFA84F6F23090 /* 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 = "<group>"; }; - B46883F207ACBB452D6EE32DEAF039EE /* QueuedImmediateExecutor.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = QueuedImmediateExecutor.h; path = folly/executors/QueuedImmediateExecutor.h; sourceTree = "<group>"; }; - B46B99D18C68C5C66A1CED7FA48ADB82 /* IPAddressSource.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = IPAddressSource.h; path = folly/detail/IPAddressSource.h; sourceTree = "<group>"; }; - B46F85E40519FA5AB0A27F10596B9823 /* SafeAreaManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = SafeAreaManager.m; sourceTree = "<group>"; }; - B46F8DE0AECDD9DFDBD2A2738BE7B127 /* dec_neon.c */ = {isa = PBXFileReference; includeInIndex = 1; name = dec_neon.c; path = src/dsp/dec_neon.c; sourceTree = "<group>"; }; - B4732D765306D8AD1EEA3CE1FB3C3263 /* UMFontInterface.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = UMFontInterface.podspec; sourceTree = "<group>"; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; - B47797D3D59C968EF82764FEA01FCDB7 /* RCTInspector.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTInspector.mm; sourceTree = "<group>"; }; - B4874D1CB2474417B8C726895842F734 /* ObservingInputAccessoryViewTemp.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = ObservingInputAccessoryViewTemp.h; sourceTree = "<group>"; }; - B48D3B93369EBB01AFF2CD25B126C52E /* FIRCLSGlobals.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRCLSGlobals.h; path = Crashlytics/Crashlytics/Components/FIRCLSGlobals.h; sourceTree = "<group>"; }; - B490FDB36545F4DD07EA59B9D2ABF055 /* ConcurrentHashMap.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ConcurrentHashMap.h; path = folly/concurrency/ConcurrentHashMap.h; sourceTree = "<group>"; }; - B4A669AEE4E790FB79D3AFC1B3EF5C78 /* Memory.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Memory.h; path = folly/portability/Memory.h; sourceTree = "<group>"; }; - B4A78ECF85E46B193729EC71AE037CAC /* Subscription.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Subscription.h; path = yarpl/flowable/Subscription.h; sourceTree = "<group>"; }; - B4B0CDEF0F319F78ECA60005B35D15D0 /* RCTConvert+FIRApp.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "RCTConvert+FIRApp.h"; path = "ios/RNFBApp/RCTConvert+FIRApp.h"; sourceTree = "<group>"; }; - B4BA5D239213ECF054E3BA8966E4EC22 /* UIView+WebCacheOperation.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "UIView+WebCacheOperation.h"; path = "SDWebImage/Core/UIView+WebCacheOperation.h"; sourceTree = "<group>"; }; - B4E063DE07DC46F94A32EAAEA472888D /* Flipper-DoubleConversion.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "Flipper-DoubleConversion.release.xcconfig"; sourceTree = "<group>"; }; - B4EE1F2A065F2CF26B2C1EB0F8CFB0F7 /* HighlighterView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = HighlighterView.h; sourceTree = "<group>"; }; - B4F4D024338D6DCA927F3774F1084E88 /* openssl_opensslconf.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = openssl_opensslconf.h; path = Core/aes/openssl/openssl_opensslconf.h; sourceTree = "<group>"; }; - B4FBBE4BE1E75B75A567276F3B442B94 /* MicroLock.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = MicroLock.h; path = folly/MicroLock.h; sourceTree = "<group>"; }; - B50DE8C8F2A19864483D8FC8DD07475B /* RCTTouchEvent.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTTouchEvent.h; sourceTree = "<group>"; }; - B50E06C043C66E717739CED2E150DC3A /* FIRExceptionModel_Private.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRExceptionModel_Private.h; path = Crashlytics/Crashlytics/Private/FIRExceptionModel_Private.h; sourceTree = "<group>"; }; - B50E418173626EB95A687FAA9F1361ED /* BugsnagUser+Private.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "BugsnagUser+Private.h"; sourceTree = "<group>"; }; - B533344AF098D6D3E0A567188723B749 /* QueuedImmediateExecutor.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = QueuedImmediateExecutor.h; path = folly/executors/QueuedImmediateExecutor.h; sourceTree = "<group>"; }; - B5354F53863FEF868B169393D964F0FA /* ShutdownSocketSet.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ShutdownSocketSet.h; path = folly/io/ShutdownSocketSet.h; sourceTree = "<group>"; }; - B54848B8630496BE379E72B317F1C472 /* Octicons.ttf */ = {isa = PBXFileReference; includeInIndex = 1; name = Octicons.ttf; path = Fonts/Octicons.ttf; sourceTree = "<group>"; }; - B558A1DF0DF86EF02FB44FA2DBAE46B7 /* MMKVStorage.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = MMKVStorage.h; path = ios/MMKVStorage.h; sourceTree = "<group>"; }; - B55B72929A8B06D0ABA87CB5C61D4A15 /* RCTDataRequestHandler.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTDataRequestHandler.h; path = Libraries/Network/RCTDataRequestHandler.h; sourceTree = "<group>"; }; - B55ED6D43E31453B520A2C98A7BF77CC /* SDImageGraphics.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SDImageGraphics.h; path = SDWebImage/Core/SDImageGraphics.h; sourceTree = "<group>"; }; - B56F12B746CB0F16C8001E746A25E3D0 /* ThreadedExecutor.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ThreadedExecutor.h; path = folly/executors/ThreadedExecutor.h; sourceTree = "<group>"; }; - B575DF54154C3EFCDB5A1FF18BDE48A3 /* YGLayout.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = YGLayout.h; path = yoga/YGLayout.h; sourceTree = "<group>"; }; - B57D2A87F8D209EC3EE1910BF101A458 /* LICENSE */ = {isa = PBXFileReference; includeInIndex = 1; path = LICENSE; sourceTree = "<group>"; }; - B5841F5B83CE4B881DD2006D46B09497 /* ThreadName.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = ThreadName.cpp; path = folly/system/ThreadName.cpp; sourceTree = "<group>"; }; - B58D427C9F4C3FA81D777B5ACD90965F /* Init.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = Init.cpp; path = folly/ssl/Init.cpp; sourceTree = "<group>"; }; - B59BA6E9E92F0A289F145CF2CEF05F1D /* RCTCustomKeyboardViewControllerTemp.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTCustomKeyboardViewControllerTemp.m; sourceTree = "<group>"; }; - B5DC539B8635A83E5170C5A413DDBF15 /* MessageTypesInlines.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = MessageTypesInlines.h; sourceTree = "<group>"; }; - B5FC7F17ABCDE32FBB838064E95987E3 /* React-jsiexecutor.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "React-jsiexecutor.debug.xcconfig"; sourceTree = "<group>"; }; - B601C6E328718F723F5CE385782660DD /* SysStat.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SysStat.h; path = folly/portability/SysStat.h; sourceTree = "<group>"; }; - B6170D91BAB843A4CF639875AD18E134 /* CancellationToken.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = CancellationToken.cpp; path = folly/CancellationToken.cpp; sourceTree = "<group>"; }; - B622CF7B7190C737864DAF48DBAD79FD /* react-native-slider.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "react-native-slider.debug.xcconfig"; sourceTree = "<group>"; }; - B6256683A3DCE9CB6912C1017947136B /* VirtualExecutor.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = VirtualExecutor.h; path = folly/VirtualExecutor.h; sourceTree = "<group>"; }; - B63229FD73062316E617CD530F989313 /* RNVectorIcons.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = RNVectorIcons.debug.xcconfig; sourceTree = "<group>"; }; - B651F536139C25C10C31A34A85FEFB3B /* RNGestureHandler.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNGestureHandler.m; path = ios/RNGestureHandler.m; sourceTree = "<group>"; }; - B66CDF20D4E34DD68D5EEBC0BAE954FD /* FIROptionsInternal.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIROptionsInternal.h; path = FirebaseCore/Sources/Private/FIROptionsInternal.h; sourceTree = "<group>"; }; - B69368CC35C431BE1843055E90E0E6C7 /* Enumerate.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Enumerate.h; path = folly/container/Enumerate.h; sourceTree = "<group>"; }; - B6951FFCEC3C2314DC3AF5B2C5BE38D1 /* FIRCLSSettings.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRCLSSettings.h; path = Crashlytics/Crashlytics/Models/FIRCLSSettings.h; sourceTree = "<group>"; }; - B69F271A5C44B69E65EC9A06D5CF0CA2 /* RCTImageViewManager.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTImageViewManager.mm; sourceTree = "<group>"; }; - B6AC1192986FF4E613E462BDDD84A013 /* FBCxxFollyDynamicConvert.mm */ = {isa = PBXFileReference; includeInIndex = 1; name = FBCxxFollyDynamicConvert.mm; path = iOS/FlipperKit/FBCxxFollyDynamicConvert/FBCxxFollyDynamicConvert.mm; sourceTree = "<group>"; }; - B6BB9D8F6BE1944E983E7AA3816B439C /* AntDesign.ttf */ = {isa = PBXFileReference; includeInIndex = 1; name = AntDesign.ttf; path = Fonts/AntDesign.ttf; sourceTree = "<group>"; }; - B6D2E1D1CAC874F5DD7600D748D64C55 /* Traits.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Traits.h; path = folly/Traits.h; sourceTree = "<group>"; }; - B6D4F2FE824E43B1277BA6B136BEC7B6 /* RCTRootContentView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTRootContentView.h; sourceTree = "<group>"; }; - B7358C94276CCEC1B4AE7E9A1A8E374F /* Bugsnag.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = Bugsnag.m; sourceTree = "<group>"; }; - B7554BFC029B0AB8A8E3D5C447DEA119 /* MacAddress.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = MacAddress.h; path = folly/MacAddress.h; sourceTree = "<group>"; }; + B439E5B9F66B4F7805FDC4E1E5F61BC5 /* react-native-background-timer.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = "react-native-background-timer.podspec"; sourceTree = "<group>"; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; + B4400AE4917C2A82AC54DE4C01C7A2C6 /* RCTDevSettings.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTDevSettings.mm; sourceTree = "<group>"; }; + B4681F304686A817A9869BAF480C5CA0 /* UMModuleRegistry.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = UMModuleRegistry.m; sourceTree = "<group>"; }; + B483C3BBFE73AFD0FE97410E8CBCE17F /* Assume.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Assume.h; path = folly/lang/Assume.h; sourceTree = "<group>"; }; + B484992CB708582738F0C049A0B73519 /* RCTTextSelection.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTTextSelection.m; sourceTree = "<group>"; }; + B493F54BA438354C6850587AFEE7F862 /* InterProcessLock_Android.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = InterProcessLock_Android.cpp; path = Core/InterProcessLock_Android.cpp; sourceTree = "<group>"; }; + B49D41C143E58F3495723D2CF6FD6BF7 /* FIRAppAssociationRegistration.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRAppAssociationRegistration.m; path = FirebaseCore/Sources/FIRAppAssociationRegistration.m; sourceTree = "<group>"; }; + B4A63399DBE9EB5094BAC0ED1B42FBA2 /* EXSessionDownloadTaskDelegate.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = EXSessionDownloadTaskDelegate.h; sourceTree = "<group>"; }; + B4AC3D11CD080D4B84DFC82ACE482AE0 /* RCTBaseTextInputView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTBaseTextInputView.h; sourceTree = "<group>"; }; + B4DB01298D1239EC66FB772919F29746 /* SDWebImageDownloaderDecryptor.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SDWebImageDownloaderDecryptor.h; path = SDWebImage/Core/SDWebImageDownloaderDecryptor.h; sourceTree = "<group>"; }; + B4E384DEEE8C9A58FF86C72B61FC57BF /* RCTMultipartStreamReader.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTMultipartStreamReader.m; sourceTree = "<group>"; }; + B4E4B99D6878885DE3CB3CFDFA415FA5 /* Yoga.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Yoga.h; path = yoga/Yoga.h; sourceTree = "<group>"; }; + B4E979E8B1B68E1B9EC052F35AD592DC /* RCTActivityIndicatorViewManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTActivityIndicatorViewManager.h; sourceTree = "<group>"; }; + B51092D2F569AE8D17ACEEC01B46DC3C /* FIRCLSFCRAnalytics.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRCLSFCRAnalytics.h; path = Crashlytics/Crashlytics/Helpers/FIRCLSFCRAnalytics.h; sourceTree = "<group>"; }; + B514DB33F06769DCC6A36DA37247A272 /* FIRApp.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRApp.m; path = FirebaseCore/Sources/FIRApp.m; sourceTree = "<group>"; }; + B516B3668347996229395EAAAF8389BB /* RNJitsiMeetView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNJitsiMeetView.h; path = ios/RNJitsiMeetView.h; sourceTree = "<group>"; }; + B519BB6A04C3B100F3C318A6441C6E97 /* RCTInvalidating.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTInvalidating.h; sourceTree = "<group>"; }; + B51E46FF0D5413499FCA7622EFBAD409 /* muxedit.c */ = {isa = PBXFileReference; includeInIndex = 1; name = muxedit.c; path = src/mux/muxedit.c; sourceTree = "<group>"; }; + B52F292ACF154504BA0E6CA8BEE36F15 /* react-native-jitsi-meet-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "react-native-jitsi-meet-prefix.pch"; sourceTree = "<group>"; }; + B533013C01209F83514298BFEB3D9617 /* ThreadedExecutor.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = ThreadedExecutor.cpp; path = folly/executors/ThreadedExecutor.cpp; sourceTree = "<group>"; }; + B53C1C5EBE9A9AE568EEBE08184B7367 /* event_tagging.c */ = {isa = PBXFileReference; includeInIndex = 1; path = event_tagging.c; sourceTree = "<group>"; }; + B544B95949BACC91F99B62CEBE1DC6EA /* FIRCLSReportUploader.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRCLSReportUploader.m; path = Crashlytics/Crashlytics/Controllers/FIRCLSReportUploader.m; sourceTree = "<group>"; }; + B54581542CFB5914B417CB0DFA407969 /* decode.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = decode.h; path = src/webp/decode.h; sourceTree = "<group>"; }; + B546841AE02F300AB74A33E2E4B8BF4C /* ExecutorWithPriority.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ExecutorWithPriority.h; path = folly/executors/ExecutorWithPriority.h; sourceTree = "<group>"; }; + B54B72A35DD0CD55E0840174847E759A /* UIImage+MemoryCacheCost.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "UIImage+MemoryCacheCost.m"; path = "SDWebImage/Core/UIImage+MemoryCacheCost.m"; sourceTree = "<group>"; }; + B54F56C85788C5B0FA034D9D8D8037BD /* RCTTextViewManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTTextViewManager.h; sourceTree = "<group>"; }; + B557807E0C158966CF51C08105365454 /* time-internal.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "time-internal.h"; sourceTree = "<group>"; }; + B57660A82B09BE7B288631FEA0BF9292 /* ARTNode.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = ARTNode.m; path = ios/ARTNode.m; sourceTree = "<group>"; }; + B57E17A472DDC914E66B0305C417D643 /* upsampling_sse2.c */ = {isa = PBXFileReference; includeInIndex = 1; name = upsampling_sse2.c; path = src/dsp/upsampling_sse2.c; sourceTree = "<group>"; }; + B57FF3B52257A1FD93CAFF861156C813 /* UMTaskManagerInterface.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = UMTaskManagerInterface.debug.xcconfig; sourceTree = "<group>"; }; + B583ECEC702B41E3EBBF552DA01325CA /* TraceInterpreter.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = TraceInterpreter.h; path = destroot/include/hermes/TraceInterpreter.h; sourceTree = "<group>"; }; + B5A046382DEDFB3065B0D2F9A8AD54FA /* RCTPropsAnimatedNode.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTPropsAnimatedNode.m; sourceTree = "<group>"; }; + B5AAFDBDD30C2F921CC79B715028D2FD /* BSG_KSObjC.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BSG_KSObjC.h; sourceTree = "<group>"; }; + B5AB0EE956AB7D0ED1130CEFF502E945 /* EXFilePermissionModule.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = EXFilePermissionModule.m; path = EXFileSystem/EXFilePermissionModule.m; sourceTree = "<group>"; }; + B5ADB75AB97B0A5C47D0018B45F4202A /* AtomicHashUtils.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = AtomicHashUtils.h; path = folly/detail/AtomicHashUtils.h; sourceTree = "<group>"; }; + B5AFD159BE846B39294374822DB0056A /* FlipperResponder.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FlipperResponder.h; path = iOS/FlipperKit/FlipperResponder.h; sourceTree = "<group>"; }; + B5B464FB942D06E211A0B48F5C9B02AF /* IOBufQueue.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = IOBufQueue.cpp; path = folly/io/IOBufQueue.cpp; sourceTree = "<group>"; }; + B5C79F57E46A0E0A2844B65E90A40377 /* CPUThreadPoolExecutor.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = CPUThreadPoolExecutor.h; path = folly/executors/CPUThreadPoolExecutor.h; sourceTree = "<group>"; }; + B5E1A6E74F8AA555D9E3F9ABB31513BC /* SharedMutex.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SharedMutex.h; path = folly/SharedMutex.h; sourceTree = "<group>"; }; + B5EB104F2848D58E4CA4F67A2B166034 /* BugsnagMetadataStore.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BugsnagMetadataStore.h; sourceTree = "<group>"; }; + B5F5313166AD87EBAACF75ECE422CF07 /* RCTPicker.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTPicker.h; sourceTree = "<group>"; }; + B61146E3EE6273B1702590326BB87205 /* FIRCLSDwarfUnwind.c */ = {isa = PBXFileReference; includeInIndex = 1; name = FIRCLSDwarfUnwind.c; path = Crashlytics/Crashlytics/Unwind/Dwarf/FIRCLSDwarfUnwind.c; sourceTree = "<group>"; }; + B61EFA9CF6CEB104E7551C7D1018E4AE /* SDAsyncBlockOperation.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SDAsyncBlockOperation.h; path = SDWebImage/Private/SDAsyncBlockOperation.h; sourceTree = "<group>"; }; + B623E45C1693994714135B7109FB2FDC /* UMReactFontManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = UMReactFontManager.m; sourceTree = "<group>"; }; + B6320D872BAB5CE92F32C50664C9FAE1 /* RCTScrollContentView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTScrollContentView.m; sourceTree = "<group>"; }; + B6325E804BC4483D7A43FA4964AA1B54 /* FIRCLSGlobals.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRCLSGlobals.h; path = Crashlytics/Crashlytics/Components/FIRCLSGlobals.h; sourceTree = "<group>"; }; + B63F79830273A3DF0E8D709BA0816775 /* FIRCLSProcessReportOperation.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRCLSProcessReportOperation.h; path = Crashlytics/Crashlytics/Operations/Reports/FIRCLSProcessReportOperation.h; sourceTree = "<group>"; }; + B64D20EEA3C8C271224C33D9424FE4BC /* GULReachabilityChecker.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = GULReachabilityChecker.h; path = GoogleUtilities/Reachability/Private/GULReachabilityChecker.h; sourceTree = "<group>"; }; + B65B9F2A9526E214078BD707BDCC2D26 /* FBLPromise+Wrap.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "FBLPromise+Wrap.h"; path = "Sources/FBLPromises/include/FBLPromise+Wrap.h"; sourceTree = "<group>"; }; + B65BD07C5CB9F791C2F239B4C88BD2A4 /* FIRLibrary.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRLibrary.h; path = FirebaseCore/Sources/Private/FIRLibrary.h; sourceTree = "<group>"; }; + B6633DF5F0B0F4B5CDC537963C3A7DDE /* FKPortForwardingServer.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FKPortForwardingServer.m; path = iOS/FlipperKit/FKPortForwarding/FKPortForwardingServer.m; sourceTree = "<group>"; }; + B68269625DEDC5C2F2A7174D46F8D226 /* MallocImpl.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = MallocImpl.h; path = folly/memory/detail/MallocImpl.h; sourceTree = "<group>"; }; + B687F62A32AE1A4320D396AB328D17D5 /* Benchmark.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = Benchmark.cpp; path = folly/Benchmark.cpp; sourceTree = "<group>"; }; + B68A31D90ECD9BFED45A51A81AF5CCF2 /* BSG_KSArchSpecific.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BSG_KSArchSpecific.h; sourceTree = "<group>"; }; + B697A893B8DC509D12C177DA13AD0D49 /* NSBezierPath+SDRoundedCorners.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "NSBezierPath+SDRoundedCorners.h"; path = "SDWebImage/Private/NSBezierPath+SDRoundedCorners.h"; sourceTree = "<group>"; }; + B6A048BF36F865F8521220D52CAD2933 /* RNCAsyncStorage.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = RNCAsyncStorage.podspec; sourceTree = "<group>"; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; + B6A1EF804E42CE1429AB5A0BE5971E9D /* DoubleConversion.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = DoubleConversion.release.xcconfig; sourceTree = "<group>"; }; + B6AAF0CE52EE128A1869CD89020EA450 /* React-cxxreact.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = "React-cxxreact.podspec"; sourceTree = "<group>"; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; + B6C83B6A47820335281644C779C5D743 /* SDWebImageDefine.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = SDWebImageDefine.m; path = SDWebImage/Core/SDWebImageDefine.m; sourceTree = "<group>"; }; + B6CDB36AA30B88F08031095EE0019709 /* InitThreadFactory.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = InitThreadFactory.h; path = folly/executors/thread_factory/InitThreadFactory.h; sourceTree = "<group>"; }; + B6ECD3FBC736FB8C0DDCEAD684BA16E3 /* RNCSliderManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNCSliderManager.h; path = ios/RNCSliderManager.h; sourceTree = "<group>"; }; + B7140A77D7771430635D02EE033088B2 /* react-native-appearance.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "react-native-appearance.release.xcconfig"; sourceTree = "<group>"; }; B75A261FE3CE62D5A559B997074E70FC /* libreact-native-background-timer.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; name = "libreact-native-background-timer.a"; path = "libreact-native-background-timer.a"; sourceTree = BUILT_PRODUCTS_DIR; }; - B775B43D0D55C6186D1F81AACAC574A6 /* UMExportedModule.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = UMExportedModule.m; path = UMCore/UMExportedModule.m; sourceTree = "<group>"; }; - B7789F4DD5CB94A03DCE8958303BAB32 /* RCTSafeAreaView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTSafeAreaView.h; sourceTree = "<group>"; }; - B7882807A6DD96AEF4AE5270F95E61EE /* RNFBCrashlyticsModule.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNFBCrashlyticsModule.h; path = ios/RNFBCrashlytics/RNFBCrashlyticsModule.h; sourceTree = "<group>"; }; - B798703660D7BD3CEAD6BD9B086379AA /* UniqueInstance.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = UniqueInstance.h; path = folly/detail/UniqueInstance.h; sourceTree = "<group>"; }; - B79E44E27992535930335B6EE61DC447 /* RCTSinglelineTextInputViewManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTSinglelineTextInputViewManager.m; sourceTree = "<group>"; }; - B7BAE7EC72A94B862129150291E3A12E /* RCTEventAnimation.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTEventAnimation.h; sourceTree = "<group>"; }; - B7BBE31EBE16FD2D7953E7902D4D8227 /* react-native-notifications.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "react-native-notifications.debug.xcconfig"; sourceTree = "<group>"; }; - B7BC91B67A80E1AB170A8F6E59819C61 /* HighlighterViewManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = HighlighterViewManager.h; sourceTree = "<group>"; }; - B7CB201A324A5C467DCAB13465BE0F9F /* React-RCTBlob-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "React-RCTBlob-prefix.pch"; sourceTree = "<group>"; }; - B7D3AEE78A9732BA1D67DD3282B58E05 /* Flipper-Folly.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "Flipper-Folly.debug.xcconfig"; sourceTree = "<group>"; }; - B7DDC6B95ED221B17E79CCE904953D67 /* UMBarCodeScannerInterface.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = UMBarCodeScannerInterface.podspec; sourceTree = "<group>"; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; - B7EC11A8C0A5E64EF001007C760450B6 /* SDWebImageManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = SDWebImageManager.m; path = SDWebImage/Core/SDWebImageManager.m; sourceTree = "<group>"; }; - B83C0C0C4E720AD644EF057182F53228 /* RNCAsyncStorage.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNCAsyncStorage.h; path = ios/RNCAsyncStorage.h; sourceTree = "<group>"; }; - B8596D6EBD7AD819A94AE4D14F360601 /* RCTScrollContentShadowView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTScrollContentShadowView.h; sourceTree = "<group>"; }; - B868B6CA52D88A582EACBA25D7B6A530 /* dynamic.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = dynamic.h; path = folly/dynamic.h; sourceTree = "<group>"; }; - B876C23C439C3C7CCABB78AE23C0A80D /* SDWebImageDownloaderRequestModifier.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SDWebImageDownloaderRequestModifier.h; path = SDWebImage/Core/SDWebImageDownloaderRequestModifier.h; sourceTree = "<group>"; }; - B8861BD54155CF886F44EE104B6E00F2 /* Conv.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Conv.h; path = folly/Conv.h; sourceTree = "<group>"; }; + B75D7EF0D60FCFBA75FE3515D84FF9A4 /* RCTBackedTextInputDelegate.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTBackedTextInputDelegate.h; sourceTree = "<group>"; }; + B76DC5ADB1F699F5B7C2F51EC0B9EC28 /* Uri.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = Uri.cpp; path = folly/Uri.cpp; sourceTree = "<group>"; }; + B76E59CE14DF9432450E8D201717765C /* GULHeartbeatDateStorage.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = GULHeartbeatDateStorage.h; path = GoogleUtilities/Environment/Private/GULHeartbeatDateStorage.h; sourceTree = "<group>"; }; + B777DC6A61C93DBEA4C43306D00F6740 /* muxread.c */ = {isa = PBXFileReference; includeInIndex = 1; name = muxread.c; path = src/mux/muxread.c; sourceTree = "<group>"; }; + B77C225F35F08279F4E35ACD7FD8A49C /* glog-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "glog-prefix.pch"; sourceTree = "<group>"; }; + B7819A5997833715CD3236A1380FA66B /* IPAddressSource.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = IPAddressSource.h; path = folly/detail/IPAddressSource.h; sourceTree = "<group>"; }; + B7936606279EB4447A57B80121C06276 /* pb_encode.c */ = {isa = PBXFileReference; includeInIndex = 1; path = pb_encode.c; sourceTree = "<group>"; }; + B7B6F4407290E480EAD41439189B1E15 /* UMReactNativeEventEmitter.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = UMReactNativeEventEmitter.m; sourceTree = "<group>"; }; + B7BC6BA1B4698C43960E16494772596A /* RCTDeviceInfo.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTDeviceInfo.h; path = React/CoreModules/RCTDeviceInfo.h; sourceTree = "<group>"; }; + B7BDC75370C589C7BF0E331321D32FAE /* react-native-slider.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "react-native-slider.debug.xcconfig"; sourceTree = "<group>"; }; + B7DFCF17D31149459375D9C1A6FF8CDC /* FirebaseCoreInternal.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FirebaseCoreInternal.h; path = FirebaseCore/Sources/Private/FirebaseCoreInternal.h; sourceTree = "<group>"; }; + B7E88D2F833179F2F02DB5A5C8DC2734 /* cost_enc.c */ = {isa = PBXFileReference; includeInIndex = 1; name = cost_enc.c; path = src/enc/cost_enc.c; sourceTree = "<group>"; }; + B7EEDC6851A7A7BEE31B4108384C0CC4 /* FormatArg.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FormatArg.h; path = folly/FormatArg.h; sourceTree = "<group>"; }; + B7F4364BDBBBC33E6CAD9E672693E774 /* log.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = log.h; path = yoga/log.h; sourceTree = "<group>"; }; + B803800C2D87BA47D7D6517CCF93757A /* RCTProfileTrampoline-arm64.S */ = {isa = PBXFileReference; includeInIndex = 1; path = "RCTProfileTrampoline-arm64.S"; sourceTree = "<group>"; }; + B814C8A657613DFD226DC12F8B9A5DEB /* Constexpr.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Constexpr.h; path = folly/portability/Constexpr.h; sourceTree = "<group>"; }; + B83FD2375577CE2B5BAEB16B9D586CC4 /* bignum-dtoa.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = "bignum-dtoa.cc"; path = "double-conversion/bignum-dtoa.cc"; sourceTree = "<group>"; }; + B8407499D8B29EE08B4B629AE7F04EBD /* HazptrHolder.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = HazptrHolder.h; path = folly/synchronization/HazptrHolder.h; sourceTree = "<group>"; }; + B848311E54CCC02328922D14C45474A7 /* EXVideoManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = EXVideoManager.h; sourceTree = "<group>"; }; + B85912FF145CE36B398A5D5381E12159 /* BugsnagSession.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BugsnagSession.h; sourceTree = "<group>"; }; + B865B4353C239BD21FA0FEE4C32A8019 /* RCTSwitchManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTSwitchManager.h; sourceTree = "<group>"; }; + B86B10A33F3C3D54F749DF9E17558B5E /* EDFThreadPoolExecutor.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = EDFThreadPoolExecutor.cpp; path = folly/executors/EDFThreadPoolExecutor.cpp; sourceTree = "<group>"; }; + B86D5CCFC7E2896E992AC90FC20B1E90 /* Stdlib.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Stdlib.h; path = folly/portability/Stdlib.h; sourceTree = "<group>"; }; + B86E48B0F2B7C6E18E9297ECCB847D81 /* REASetNode.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = REASetNode.h; sourceTree = "<group>"; }; + B8787063496C665D382D5BDE7DDDC67D /* FIRDependency.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRDependency.h; path = FirebaseCore/Sources/Private/FIRDependency.h; sourceTree = "<group>"; }; + B883E6DE9EE8ED41A5F4978944199A05 /* InspectorState.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; path = InspectorState.cpp; sourceTree = "<group>"; }; + B886A62870C66C4BB66F121C1DF4FC6E /* RNCSafeAreaProvider.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNCSafeAreaProvider.m; path = ios/SafeAreaView/RNCSafeAreaProvider.m; sourceTree = "<group>"; }; B88A54159B245E727A6D16DEFE105A09 /* libMMKV.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; name = libMMKV.a; path = libMMKV.a; sourceTree = BUILT_PRODUCTS_DIR; }; - B88B9FC40F2A4122608EDB5E15FAF6AE /* SingletonThreadLocal.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SingletonThreadLocal.h; path = folly/SingletonThreadLocal.h; sourceTree = "<group>"; }; - B89880C34A22F7D671DEC637659A0068 /* SDDisplayLink.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = SDDisplayLink.m; path = SDWebImage/Private/SDDisplayLink.m; sourceTree = "<group>"; }; - B8B04429ED933128C921E875024E3240 /* BugsnagApp.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BugsnagApp.h; sourceTree = "<group>"; }; - B8BFDD279AF1CA07792F3710FF5DC905 /* TOCropScrollView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = TOCropScrollView.m; path = "Objective-C/TOCropViewController/Views/TOCropScrollView.m"; sourceTree = "<group>"; }; + B8943F0EDDB176A73456D9B22DDBC978 /* FIRCLSInstallIdentifierModel.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRCLSInstallIdentifierModel.h; path = Crashlytics/Crashlytics/Models/FIRCLSInstallIdentifierModel.h; sourceTree = "<group>"; }; + B89BE205EA2CDDE020474282EB87CAB9 /* SpookyHashV1.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SpookyHashV1.h; path = folly/hash/SpookyHashV1.h; sourceTree = "<group>"; }; + B8A8FD6E338F770746C2515FF05ED4E3 /* Poly.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Poly.h; path = folly/Poly.h; sourceTree = "<group>"; }; + B8AC4401071B23E14A4CB08B9ECDD287 /* RCTMaskedViewManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTMaskedViewManager.h; sourceTree = "<group>"; }; B8CD4B9B578CE9FA38114B638C9CAA78 /* libRNCMaskedView.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; name = libRNCMaskedView.a; path = libRNCMaskedView.a; sourceTree = BUILT_PRODUCTS_DIR; }; - B8D8BFEBC605F5B2FC3A82710426E43C /* REAConcatNode.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = REAConcatNode.h; sourceTree = "<group>"; }; - B8F219340A061E4C9BCAE205A836076D /* RNCCameraRollManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNCCameraRollManager.h; path = ios/RNCCameraRollManager.h; sourceTree = "<group>"; }; - B8F9958D28A43B51CE55A9E673B47073 /* React-Core.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "React-Core.debug.xcconfig"; sourceTree = "<group>"; }; - B90E21FA5E3F701B8D278B2E7060FECA /* Format.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Format.h; path = folly/Format.h; sourceTree = "<group>"; }; - B910507E6F3163603403C8E93367A32B /* BitIteratorDetail.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = BitIteratorDetail.h; path = folly/container/detail/BitIteratorDetail.h; sourceTree = "<group>"; }; - B9168CE688658C39AAA643B653709B19 /* cost_mips_dsp_r2.c */ = {isa = PBXFileReference; includeInIndex = 1; name = cost_mips_dsp_r2.c; path = src/dsp/cost_mips_dsp_r2.c; sourceTree = "<group>"; }; - B919A05E9213379A4D71D1D3ADF05F89 /* Format.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = Format.cpp; path = folly/Format.cpp; sourceTree = "<group>"; }; - B93E72F5981D76CB887E4C865D7B3A1E /* FIRCLSReport.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRCLSReport.m; path = Crashlytics/Crashlytics/Models/FIRCLSReport.m; sourceTree = "<group>"; }; - B93F6DD0458524D09451B650252973D4 /* types.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = types.h; path = src/webp/types.h; sourceTree = "<group>"; }; - B952CB53081748F46C04F821010B3D86 /* EXAppleAuthentication.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = EXAppleAuthentication.m; path = EXAppleAuthentication/EXAppleAuthentication.m; sourceTree = "<group>"; }; - B95EEB8F6BF6053F409241818BF479A4 /* webp_dec.c */ = {isa = PBXFileReference; includeInIndex = 1; name = webp_dec.c; path = src/dec/webp_dec.c; sourceTree = "<group>"; }; - B9703E1EC5B12F2D715115AC6A7FBB93 /* demux.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = demux.h; path = src/webp/demux.h; sourceTree = "<group>"; }; - B97145061E4F7F28CDE503B069456A48 /* FIRCLSCompactUnwind.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRCLSCompactUnwind.h; path = Crashlytics/Crashlytics/Unwind/Compact/FIRCLSCompactUnwind.h; sourceTree = "<group>"; }; - B97940D26FBBECAD4EB08C0B41320551 /* MMKV-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "MMKV-prefix.pch"; sourceTree = "<group>"; }; - B98616A239AE9A3B63B404892883D35F /* RSocketServer.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = RSocketServer.cpp; path = rsocket/RSocketServer.cpp; sourceTree = "<group>"; }; - B98CDF7AE9D73022D3C6DAAA3A63DBE7 /* RNFBAppModule.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNFBAppModule.m; path = ios/RNFBApp/RNFBAppModule.m; sourceTree = "<group>"; }; - B9ADA132BEE432456C1FEB59C840BF3D /* React-jsinspector.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "React-jsinspector.release.xcconfig"; sourceTree = "<group>"; }; - B9B3872121E4529E8679F086AD34150F /* Hash.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Hash.h; path = folly/Hash.h; sourceTree = "<group>"; }; - B9BE633D011E108B8B50930D8EE40B41 /* SharedMutex.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SharedMutex.h; path = folly/SharedMutex.h; sourceTree = "<group>"; }; - B9E52071A61994BF47D9A3698EB8E196 /* StringKeyedCommon.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = StringKeyedCommon.h; path = folly/experimental/StringKeyedCommon.h; sourceTree = "<group>"; }; - BA00BA8DBEC8789DE446298CE67B3864 /* SDWebImage-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "SDWebImage-prefix.pch"; sourceTree = "<group>"; }; - BA128D60C396E9F6F2E87021A86DF3E9 /* String-inl.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "String-inl.h"; path = "folly/gen/String-inl.h"; sourceTree = "<group>"; }; - BA1A677DC8F9D0351B40C2A6CE7308C9 /* TokenBucket.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = TokenBucket.h; path = folly/TokenBucket.h; sourceTree = "<group>"; }; - BA1EB84932C3877DF0FC3BAC3427CC29 /* UIImage+CropRotate.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "UIImage+CropRotate.m"; path = "Objective-C/TOCropViewController/Categories/UIImage+CropRotate.m"; sourceTree = "<group>"; }; - BA200C7606484DA619B8C99C0D67660B /* InlineFunctionRef.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = InlineFunctionRef.h; path = folly/synchronization/detail/InlineFunctionRef.h; sourceTree = "<group>"; }; - BA30F381505351432375646265A3BE63 /* Memory.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Memory.h; path = folly/Memory.h; sourceTree = "<group>"; }; - BA3C1544B3D3A1541D6FC1E84475A9C8 /* EXConstants.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = EXConstants.h; path = EXConstants/EXConstants.h; sourceTree = "<group>"; }; - BA4B0E81EF9BF74DB565EB8D5A64184A /* react-native-appearance.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = "react-native-appearance.podspec"; sourceTree = "<group>"; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; - BA6458BF22C37B2D7D59E6DEA84BBD75 /* RNFBUtilsModule.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNFBUtilsModule.h; path = ios/RNFBApp/RNFBUtilsModule.h; sourceTree = "<group>"; }; - BA68EB70167AC162F9C6BF90C3190740 /* FIRCLSURLSession.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRCLSURLSession.m; path = Crashlytics/Crashlytics/FIRCLSURLSession/FIRCLSURLSession.m; sourceTree = "<group>"; }; - BA6C0D4B6015D75E5E7148299643A578 /* SKBufferingPlugin.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SKBufferingPlugin.h; path = iOS/Plugins/FlipperKitNetworkPlugin/FlipperKitNetworkPlugin/SKBufferingPlugin.h; sourceTree = "<group>"; }; - BA7064702BBDD1BA702AF42B10B58528 /* Common.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = Common.cpp; path = rsocket/internal/Common.cpp; sourceTree = "<group>"; }; - BA82B896587B196F261A9B1D9428EEB3 /* RCTPlatform.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTPlatform.h; path = React/CoreModules/RCTPlatform.h; sourceTree = "<group>"; }; - BA844493E0367735F02B3DC1ABEC6311 /* react-native-notifications.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = "react-native-notifications.podspec"; sourceTree = "<group>"; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; - BAABEC84C45BD5093160DF0FDE106A1C /* format_constants.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = format_constants.h; path = src/webp/format_constants.h; sourceTree = "<group>"; }; - BAB84396E1439CFE9B9D46D2E892FB4F /* RNCAsyncStorage.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = RNCAsyncStorage.debug.xcconfig; sourceTree = "<group>"; }; - BAB895311E1541DB93B0995E28ABA13F /* WaitOptions.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = WaitOptions.cpp; path = folly/synchronization/WaitOptions.cpp; sourceTree = "<group>"; }; - BACA1141597E10199EE9225185C0479F /* RNScreens-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "RNScreens-prefix.pch"; sourceTree = "<group>"; }; - BACE883A39343A35E0D7C43689B9A13E /* RCTRawTextViewManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTRawTextViewManager.m; sourceTree = "<group>"; }; + B8D58CDC8C712FF30A0126DFE3675E22 /* RSocketConnectionEvents.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RSocketConnectionEvents.h; path = rsocket/RSocketConnectionEvents.h; sourceTree = "<group>"; }; + B8EAD51533CCC8510B05C61167CF30C1 /* cached-powers.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = "cached-powers.cc"; path = "double-conversion/cached-powers.cc"; sourceTree = "<group>"; }; + B8F4214C366F610C6CC161D5EF319EE7 /* RCTVibrationPlugins.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTVibrationPlugins.h; path = Libraries/Vibration/RCTVibrationPlugins.h; sourceTree = "<group>"; }; + B8FAFFA070B07CA0DB9F87AE324C23EA /* FutureDAG.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FutureDAG.h; path = folly/experimental/FutureDAG.h; sourceTree = "<group>"; }; + B8FB8DCC4FA54C16CC43FA4D5B055A47 /* RNCAppearanceProviderManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNCAppearanceProviderManager.h; path = ios/Appearance/RNCAppearanceProviderManager.h; sourceTree = "<group>"; }; + B902097AB0865E942278A788B4ECADA1 /* RCTEventDispatcherProtocol.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTEventDispatcherProtocol.h; sourceTree = "<group>"; }; + B902AAFDCACA9FCCED6F2CACFDA43EC6 /* FlowableTimeoutOperator.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FlowableTimeoutOperator.h; path = yarpl/flowable/FlowableTimeoutOperator.h; sourceTree = "<group>"; }; + B904EDD7A21392FF5218370D4C03BFD1 /* RCTProfile.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTProfile.m; sourceTree = "<group>"; }; + B91FA07DDC1F357726D2A27933E5CC69 /* RNCMaskedView.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = RNCMaskedView.debug.xcconfig; sourceTree = "<group>"; }; + B92888970D09A244409C3FAA59F16FF1 /* RNCAssetsLibraryRequestHandler.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNCAssetsLibraryRequestHandler.h; path = ios/RNCAssetsLibraryRequestHandler.h; sourceTree = "<group>"; }; + B97E15C16CB8C9D848ED71929825BD2A /* Partial.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Partial.h; path = folly/functional/Partial.h; sourceTree = "<group>"; }; + B984B35392A6C5B1B772CE97FC230C64 /* RNCSafeAreaViewMode.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNCSafeAreaViewMode.h; path = ios/SafeAreaView/RNCSafeAreaViewMode.h; sourceTree = "<group>"; }; + B98DB40B7B38129B280E814B98F7BFF0 /* RCTAnimationPlugins.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTAnimationPlugins.mm; sourceTree = "<group>"; }; + B99F525FCC76E52098115B9303C55706 /* Utility.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Utility.h; path = folly/Utility.h; sourceTree = "<group>"; }; + B9A94B9B943F4851C13E70DE5CCE9242 /* RCTCxxConvert.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTCxxConvert.h; sourceTree = "<group>"; }; + B9B133B19C128B94A13984973C723D0F /* yuv_sse2.c */ = {isa = PBXFileReference; includeInIndex = 1; name = yuv_sse2.c; path = src/dsp/yuv_sse2.c; sourceTree = "<group>"; }; + B9C229BBB6B5FFF41B76C1FD24EB7592 /* RCTUIManagerUtils.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTUIManagerUtils.m; sourceTree = "<group>"; }; + B9CB036662B425956219CABBF2D05AB0 /* RNFastImage-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "RNFastImage-prefix.pch"; sourceTree = "<group>"; }; + B9D1E7CE0AF119E2C8F08C52950D93F7 /* ConnectionSet.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = ConnectionSet.cpp; path = rsocket/internal/ConnectionSet.cpp; sourceTree = "<group>"; }; + B9EA2BFF71FC61037E85472DC246B382 /* crashlytics.nanopb.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = crashlytics.nanopb.h; path = Crashlytics/Protogen/nanopb/crashlytics.nanopb.h; sourceTree = "<group>"; }; + BA0B17C6CC0345E297879CD97FD2DF7F /* GULApplication.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = GULApplication.h; path = GoogleUtilities/AppDelegateSwizzler/Private/GULApplication.h; sourceTree = "<group>"; }; + BA188DBCECDDE254F17CA79FED920D28 /* cct.nanopb.c */ = {isa = PBXFileReference; includeInIndex = 1; name = cct.nanopb.c; path = GoogleDataTransport/GDTCCTLibrary/Protogen/nanopb/cct.nanopb.c; sourceTree = "<group>"; }; + BA2104C28844C7A572B36FAA240809B3 /* FIRAnalyticsConfiguration.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRAnalyticsConfiguration.h; path = FirebaseCore/Sources/FIRAnalyticsConfiguration.h; sourceTree = "<group>"; }; + BA451C7A7BAB81792094596D55EC16C2 /* Flipper-RSocket.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "Flipper-RSocket.release.xcconfig"; sourceTree = "<group>"; }; + BA4C9A83EAC6E45C5DD4EDB018A07DBE /* FirebaseInstallations-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "FirebaseInstallations-dummy.m"; sourceTree = "<group>"; }; + BA4DB82DDD53437C4A144B7869223AD5 /* SysFile.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SysFile.h; path = folly/portability/SysFile.h; sourceTree = "<group>"; }; + BA6AC8EEC7B97FC44312916970496223 /* RCTRequired.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = RCTRequired.debug.xcconfig; sourceTree = "<group>"; }; + BA739C03B0E7AE13D575D4822A0E9810 /* MicroSpinLock.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = MicroSpinLock.h; path = folly/synchronization/MicroSpinLock.h; sourceTree = "<group>"; }; + BA8051693341AD55637B5003B37AEA80 /* RCTKeyCommands.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTKeyCommands.h; sourceTree = "<group>"; }; + BA90AAA853CBF34D0C78AA6018B36724 /* Future-pre.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "Future-pre.h"; path = "folly/futures/Future-pre.h"; sourceTree = "<group>"; }; + BA99F33CB1BE0E6FF8F2B36C459CFCAE /* RequestResponseRequester.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = RequestResponseRequester.cpp; path = rsocket/statemachine/RequestResponseRequester.cpp; sourceTree = "<group>"; }; + BAA3DD4AC9BDA7FCA8B5336DF5A8FF4E /* EXSessionUploadTaskDelegate.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = EXSessionUploadTaskDelegate.h; sourceTree = "<group>"; }; + BAC4C285C8767C71E34E42BE3FC409D7 /* OpenSSL.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = OpenSSL.h; path = folly/portability/OpenSSL.h; sourceTree = "<group>"; }; + BAC841220BA4DC6A7D77051B7DC0BEB3 /* GDTCORTransformer_Private.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = GDTCORTransformer_Private.h; path = GoogleDataTransport/GDTCORLibrary/Private/GDTCORTransformer_Private.h; sourceTree = "<group>"; }; + BAE05B179A4809DD45875E8223B3DCA2 /* stop_watch.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = stop_watch.h; path = folly/stop_watch.h; sourceTree = "<group>"; }; + BAE0910FE95F74A73440C82AB7B23EBB /* UMModuleRegistryProvider.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = UMModuleRegistryProvider.m; sourceTree = "<group>"; }; BAED847E8A22919EDDB894F3B4C38BFF /* Pods-ShareRocketChatRN-umbrella.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "Pods-ShareRocketChatRN-umbrella.h"; sourceTree = "<group>"; }; - BB1B2F8D8B7929C7DD01DEADCFB8FD3F /* Function.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Function.h; path = folly/Function.h; sourceTree = "<group>"; }; - BB390DCFA35B0EAECFFD2DE810925E64 /* SysFile.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = SysFile.cpp; path = folly/portability/SysFile.cpp; sourceTree = "<group>"; }; - BB425AA1BAB6D0A9A235C609336095DA /* RCTModalHostViewManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTModalHostViewManager.m; sourceTree = "<group>"; }; - BB43EAEC8B9375884DB2ADF6A88233BE /* RCTActionSheetManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTActionSheetManager.h; path = React/CoreModules/RCTActionSheetManager.h; sourceTree = "<group>"; }; - BB7A5AF8671A1E7E75DC19F1F6616F9F /* BugsnagAppWithState.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BugsnagAppWithState.h; sourceTree = "<group>"; }; - BB8D81B8EB25444591F57C018D815DEE /* UMViewManagerAdapter.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = UMViewManagerAdapter.m; sourceTree = "<group>"; }; - BB924E2348F50D4641552CACC27C7A2F /* EXKeepAwake.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = EXKeepAwake.podspec; sourceTree = "<group>"; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; - BB96B5172CA1FDCD97A37E07C1F50BC1 /* ManualExecutor.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ManualExecutor.h; path = folly/executors/ManualExecutor.h; sourceTree = "<group>"; }; - BB9CC1354ABBC880F7DDB6106CBDE2D0 /* RCTSurfaceRootShadowView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTSurfaceRootShadowView.m; sourceTree = "<group>"; }; - BBC73BC2EAC1CDAC3847AABE5647B8D4 /* Unit.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Unit.h; path = folly/Unit.h; sourceTree = "<group>"; }; - BBC9D9225EE71E347821C2095E8B0833 /* SDImageCodersManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = SDImageCodersManager.m; path = SDWebImage/Core/SDImageCodersManager.m; sourceTree = "<group>"; }; - BBD00687D106C7D010206329B7785BEC /* HHWheelTimer.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = HHWheelTimer.h; path = folly/io/async/HHWheelTimer.h; sourceTree = "<group>"; }; - BBDEB7A5A1D274B0349AF930BC82FA55 /* UMMagnetometerInterface.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = UMMagnetometerInterface.h; path = UMSensorsInterface/UMMagnetometerInterface.h; sourceTree = "<group>"; }; - BBE9C3596335651D37543687ED4457F1 /* BSG_KSLogger.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = BSG_KSLogger.m; sourceTree = "<group>"; }; - BBFF18BC3711F0D248974C74C2D2F962 /* DeferObservable.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = DeferObservable.h; path = yarpl/observable/DeferObservable.h; sourceTree = "<group>"; }; - BC00DF5048BAF76589CBE6DDC1D7F994 /* react-native-slider.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = "react-native-slider.podspec"; sourceTree = "<group>"; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; - BC06AD0CDFCDE2EBDF8C53D6CA3E097A /* FIRComponentType.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRComponentType.h; path = FirebaseCore/Sources/Private/FIRComponentType.h; sourceTree = "<group>"; }; - BC10A03BA6895C6F997D6FD59A9DBCB7 /* SDWebImageOptionsProcessor.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = SDWebImageOptionsProcessor.m; path = SDWebImage/Core/SDWebImageOptionsProcessor.m; sourceTree = "<group>"; }; - BC1B59FA7B55DBD9453B1CDEE536A836 /* GULLogger.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = GULLogger.h; path = GoogleUtilities/Logger/Private/GULLogger.h; sourceTree = "<group>"; }; - BC1DFE2FED2A0B13126963E15601113B /* REABezierNode.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = REABezierNode.m; sourceTree = "<group>"; }; - BC1E496EFDBEBAD5DF0D5A4E7A903EC3 /* README.md */ = {isa = PBXFileReference; includeInIndex = 1; path = README.md; sourceTree = "<group>"; }; - BC2640F7778BB7204E46524DA5B3D0EF /* JSITracing.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; path = JSITracing.cpp; sourceTree = "<group>"; }; + BAFD2F4F1D254E646C2A611BAC1E1554 /* EXAppleAuthentication.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = EXAppleAuthentication.debug.xcconfig; sourceTree = "<group>"; }; + BB04E68A718FD9F3948B60D8FCC96A13 /* LICENSE */ = {isa = PBXFileReference; includeInIndex = 1; path = LICENSE; sourceTree = "<group>"; }; + BB16EC06441BBAD5366188EEF93E012B /* ExecutorWithPriority-inl.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "ExecutorWithPriority-inl.h"; path = "folly/executors/ExecutorWithPriority-inl.h"; sourceTree = "<group>"; }; + BB186A09DE72D55E392646ED4CDA28F5 /* RCTMaskedViewManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTMaskedViewManager.m; sourceTree = "<group>"; }; + BB373DBC911B3BFAE3EB62B2039ACEBC /* SDWebImageOperation.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = SDWebImageOperation.m; path = SDWebImage/Core/SDWebImageOperation.m; sourceTree = "<group>"; }; + BB51EAD13717EEAFF17982B9A4B2D2EC /* PriorityUnboundedQueueSet.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = PriorityUnboundedQueueSet.h; path = folly/concurrency/PriorityUnboundedQueueSet.h; sourceTree = "<group>"; }; + BB5210672C926795B942E2BF01402BAF /* PTChannel.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = PTChannel.m; path = peertalk/PTChannel.m; sourceTree = "<group>"; }; + BB52DF9D9AE2390B605532A766CECC04 /* strlcpy.c */ = {isa = PBXFileReference; includeInIndex = 1; path = strlcpy.c; sourceTree = "<group>"; }; + BB547C3126E1E62124EF98618F077F91 /* vp8l_enc.c */ = {isa = PBXFileReference; includeInIndex = 1; name = vp8l_enc.c; path = src/enc/vp8l_enc.c; sourceTree = "<group>"; }; + BB6373697896307C1CF75D0F24CEABC4 /* GMock.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = GMock.h; path = folly/portability/GMock.h; sourceTree = "<group>"; }; + BB64E5F2016ABADF413A0D03AF7A2955 /* RNCommandsHandler.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNCommandsHandler.h; path = RNNotifications/RNCommandsHandler.h; sourceTree = "<group>"; }; + BB650E7F41FDA89431C8B0F460DD6C68 /* RNGestureHandler-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "RNGestureHandler-prefix.pch"; sourceTree = "<group>"; }; + BB6A4BFC1EEDAE5C44DB4423FB8E880C /* NSDataBigString.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = NSDataBigString.mm; sourceTree = "<group>"; }; + BB804F0568669C71B236C99E83947DBF /* zh-Hans.lproj */ = {isa = PBXFileReference; includeInIndex = 1; name = "zh-Hans.lproj"; path = "Objective-C/TOCropViewController/Resources/zh-Hans.lproj"; sourceTree = "<group>"; }; + BB89A194A05E3FEBDABCDD32E61A2BBC /* ReactNativeUiLib-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "ReactNativeUiLib-prefix.pch"; sourceTree = "<group>"; }; + BB9E443E24D77E23B856F91F909B75FF /* FIRCLSRecordIdentity.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRCLSRecordIdentity.h; path = Crashlytics/Crashlytics/Models/Record/FIRCLSRecordIdentity.h; sourceTree = "<group>"; }; + BBA277E609233F77B06E75864C42C2CE /* Merge.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Merge.h; path = folly/container/Merge.h; sourceTree = "<group>"; }; + BBB6D44F456CC2B7A2B9F95DBCBD4686 /* RCTProfileTrampoline-i386.S */ = {isa = PBXFileReference; includeInIndex = 1; path = "RCTProfileTrampoline-i386.S"; sourceTree = "<group>"; }; + BBBED6693ECDF015B718A1B62DB4B205 /* SDAnimatedImageView+WebCache.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "SDAnimatedImageView+WebCache.m"; path = "SDWebImage/Core/SDAnimatedImageView+WebCache.m"; sourceTree = "<group>"; }; + BBC61E5C4CEAFFFC0045933275BBCF5C /* EXVideoThumbnailsModule.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = EXVideoThumbnailsModule.m; path = EXVideoThumbnails/EXVideoThumbnailsModule.m; sourceTree = "<group>"; }; + BBF3FDB13C0A9D56D65CA198AA2DA3EC /* SDWebImageDownloaderRequestModifier.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SDWebImageDownloaderRequestModifier.h; path = SDWebImage/Core/SDWebImageDownloaderRequestModifier.h; sourceTree = "<group>"; }; + BC0A833D86EBE30F2D3F35AAFCB253EF /* HHWheelTimer-fwd.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "HHWheelTimer-fwd.h"; path = "folly/io/async/HHWheelTimer-fwd.h"; sourceTree = "<group>"; }; + BC0FC7699EFE844E79726F9437573E88 /* RCTCxxUtils.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTCxxUtils.h; sourceTree = "<group>"; }; + BC0FFFC1A8F1650CE3B1575F96822525 /* GDTCORTransport.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = GDTCORTransport.m; path = GoogleDataTransport/GDTCORLibrary/GDTCORTransport.m; sourceTree = "<group>"; }; + BC121D1EDEBCFC35A54337DD44518B26 /* ReadMostlySharedPtr.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ReadMostlySharedPtr.h; path = folly/experimental/ReadMostlySharedPtr.h; sourceTree = "<group>"; }; + BC1D5E6895E2C8CD1B0087DA90AFADC7 /* F14Map.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = F14Map.h; path = folly/container/F14Map.h; sourceTree = "<group>"; }; + BC1DC87184145EA55F828E06FB2A2AD0 /* RSocketStateMachine.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = RSocketStateMachine.cpp; path = rsocket/statemachine/RSocketStateMachine.cpp; sourceTree = "<group>"; }; + BC2D76F8ACCFF11154DE53A671ADA898 /* RCTConvert+REATransition.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "RCTConvert+REATransition.h"; sourceTree = "<group>"; }; + BC37A07A078953FA9C67B14C2308FE3B /* TurboModulePerfLogger.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = TurboModulePerfLogger.h; sourceTree = "<group>"; }; + BC3DD15C5887438E50FC9EA6DC9B0853 /* StreamRequester.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = StreamRequester.cpp; path = rsocket/statemachine/StreamRequester.cpp; sourceTree = "<group>"; }; + BC40038B0C055C464BE0186522177E7E /* project.pbxproj */ = {isa = PBXFileReference; includeInIndex = 1; path = project.pbxproj; sourceTree = "<group>"; }; BC41F4BEFC115303267857B135A144AE /* libUMPermissionsInterface.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; name = libUMPermissionsInterface.a; path = libUMPermissionsInterface.a; sourceTree = BUILT_PRODUCTS_DIR; }; - BC4E6281F75612E2835E8AAAFBCF5CEB /* RecoverableError.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RecoverableError.h; sourceTree = "<group>"; }; - BC5FD72C5B1D80E461FC33D412719E91 /* GDTCORStorageProtocol.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = GDTCORStorageProtocol.h; path = GoogleDataTransport/GDTCORLibrary/Public/GDTCORStorageProtocol.h; sourceTree = "<group>"; }; - BC86EC8B18C511C23A361D514C240D1B /* Log.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = Log.cpp; path = xplat/Flipper/Log.cpp; sourceTree = "<group>"; }; - BC914DD1DC14DB1242681F2556E73482 /* GroupVarintDetail.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = GroupVarintDetail.h; path = folly/detail/GroupVarintDetail.h; sourceTree = "<group>"; }; - BCA751A5356A57DB945A6CA6FEC74027 /* LICENSE */ = {isa = PBXFileReference; includeInIndex = 1; path = LICENSE; sourceTree = "<group>"; }; - BCA937F2B436CFAF9FF094281DB97064 /* TimedDrivableExecutor.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = TimedDrivableExecutor.cpp; path = folly/executors/TimedDrivableExecutor.cpp; sourceTree = "<group>"; }; - BCABB017733DA167CDCE49C71D027269 /* RCTDevLoadingViewSetEnabled.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTDevLoadingViewSetEnabled.h; sourceTree = "<group>"; }; - BCB188AF9D06035BEC1720D50031039E /* EXFileSystem.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = EXFileSystem.debug.xcconfig; sourceTree = "<group>"; }; - BCC1146DC641696C5D12F3D1EA347D6C /* Future.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Future.h; path = folly/futures/Future.h; sourceTree = "<group>"; }; - BCE3200B783F0F1D598AC56BA7FD6A23 /* Barrier.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = Barrier.cpp; path = folly/futures/Barrier.cpp; sourceTree = "<group>"; }; - BCE8B2C58C7A5FFE918225BF23BF842E /* openssl_aesv8-armx.S */ = {isa = PBXFileReference; includeInIndex = 1; name = "openssl_aesv8-armx.S"; path = "Core/aes/openssl/openssl_aesv8-armx.S"; sourceTree = "<group>"; }; - BCFA9E7DF0704A04BDB7768D0ACCCCF0 /* SDImageIOAnimatedCoderInternal.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SDImageIOAnimatedCoderInternal.h; path = SDWebImage/Private/SDImageIOAnimatedCoderInternal.h; sourceTree = "<group>"; }; - BCFB13C2659CB7FE3E33BC3301B57589 /* IOBufQueue.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = IOBufQueue.cpp; path = folly/io/IOBufQueue.cpp; sourceTree = "<group>"; }; - BD083BEA419C7DF1EB778B933C9AEA62 /* Promise.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Promise.h; path = folly/futures/Promise.h; sourceTree = "<group>"; }; - BD1B5313E3DFB75390C1A4251F51B5DE /* SparseByteSet.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SparseByteSet.h; path = folly/container/SparseByteSet.h; sourceTree = "<group>"; }; - BD3ECCBE605E838A98E04315AF90943A /* SDImageCachesManagerOperation.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SDImageCachesManagerOperation.h; path = SDWebImage/Private/SDImageCachesManagerOperation.h; sourceTree = "<group>"; }; - BD53164FA67EF8F1844D6FCCE10D3DC3 /* SDAnimatedImageRep.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = SDAnimatedImageRep.m; path = SDWebImage/Core/SDAnimatedImageRep.m; sourceTree = "<group>"; }; - BD56632D10B1E370B66E12A3E178C53C /* BSG_RFC3339DateTool.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BSG_RFC3339DateTool.h; sourceTree = "<group>"; }; - BD569C16ACD867CA9120A03F34357CB6 /* GULUserDefaults.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = GULUserDefaults.m; path = GoogleUtilities/UserDefaults/GULUserDefaults.m; sourceTree = "<group>"; }; - BD56CEF8B6BCD247C23E4101C7DD84AC /* RNFBRCTEventEmitter.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNFBRCTEventEmitter.h; path = ios/RNFBApp/RNFBRCTEventEmitter.h; sourceTree = "<group>"; }; - BD5CC643B7659D611CA418FB5BC4A3C4 /* AtomicNotification.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = AtomicNotification.cpp; path = folly/synchronization/AtomicNotification.cpp; sourceTree = "<group>"; }; - BD6E8DBC6B22B90257F40CEF70FDC667 /* RCTPerfMonitor.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTPerfMonitor.mm; sourceTree = "<group>"; }; - BD6FB50291DEB555A1866C9D465DAE39 /* EventBase.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = EventBase.cpp; path = folly/io/async/EventBase.cpp; sourceTree = "<group>"; }; + BC531872A8B8408BB22C3143C0E93C2C /* RCTAes.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTAes.h; path = ios/RCTCrypto/RCTAes.h; sourceTree = "<group>"; }; + BC5A8EB8C175BB7177BC9EDFC785A348 /* FIRCLSFABAsyncOperation_Private.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRCLSFABAsyncOperation_Private.h; path = Crashlytics/Shared/FIRCLSOperation/FIRCLSFABAsyncOperation_Private.h; sourceTree = "<group>"; }; + BC828387E0BD6C1F14CD1856FC3E6777 /* SSLSession.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SSLSession.h; path = folly/ssl/SSLSession.h; sourceTree = "<group>"; }; + BC850027576B40183C5DBB2AA9E3D153 /* F14Table.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = F14Table.h; path = folly/container/detail/F14Table.h; sourceTree = "<group>"; }; + BC876C52B8F5AA5AA56F08028D17C48A /* Hash.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Hash.h; path = folly/Hash.h; sourceTree = "<group>"; }; + BC93DAC52933D53B45689FDD4C0EF852 /* JsArgumentHelpers-inl.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "JsArgumentHelpers-inl.h"; sourceTree = "<group>"; }; + BCAB5F9355E7B67E72281C118F7E9B44 /* MallocImpl.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = MallocImpl.cpp; path = folly/memory/detail/MallocImpl.cpp; sourceTree = "<group>"; }; + BCAD06DC4FD9F3245E74C83872F0749B /* REABlockNode.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = REABlockNode.m; sourceTree = "<group>"; }; + BCDC010B49295444D741D1A3E33A354E /* rescaler_utils.c */ = {isa = PBXFileReference; includeInIndex = 1; name = rescaler_utils.c; path = src/utils/rescaler_utils.c; sourceTree = "<group>"; }; + BCE8E7A1308177D526F02E3F790A7267 /* FormatTraits.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FormatTraits.h; path = folly/FormatTraits.h; sourceTree = "<group>"; }; + BCFE6834A2D4F7499BA855B563E7283D /* RCTNativeAnimatedNodesManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTNativeAnimatedNodesManager.h; path = Libraries/NativeAnimation/RCTNativeAnimatedNodesManager.h; sourceTree = "<group>"; }; + BD12D0A2749451844C41B7DBE9F9F28C /* FIRExceptionModel.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRExceptionModel.m; path = Crashlytics/Crashlytics/FIRExceptionModel.m; sourceTree = "<group>"; }; + BD15CE40B518BC6FFE519660FEFE7ABA /* MicroLock.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = MicroLock.cpp; path = folly/MicroLock.cpp; sourceTree = "<group>"; }; + BD3FAD946280A369B7E7C125D630B8F2 /* UMConstantsInterface.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = UMConstantsInterface.release.xcconfig; sourceTree = "<group>"; }; + BD416B2D9CA92351531929EF11CEDC2C /* upsampling.c */ = {isa = PBXFileReference; includeInIndex = 1; name = upsampling.c; path = src/dsp/upsampling.c; sourceTree = "<group>"; }; + BD42A2C009514DC873362B80B05007E1 /* BugsnagCrashSentry.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BugsnagCrashSentry.h; sourceTree = "<group>"; }; + BD48C0475A0B45B50A7F1D966947CCB0 /* VibrancyView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = VibrancyView.h; path = ios/VibrancyView.h; sourceTree = "<group>"; }; + BD59D65E2CF97FA205A9744A8CF02561 /* ChannelResponder.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = ChannelResponder.cpp; path = rsocket/statemachine/ChannelResponder.cpp; sourceTree = "<group>"; }; + BD5F1B1B639117DA8C0CA2F41DF28EF3 /* StaticTracepoint-ELFx86.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "StaticTracepoint-ELFx86.h"; path = "folly/tracing/StaticTracepoint-ELFx86.h"; sourceTree = "<group>"; }; + BD654ECED1FB0C41FFE813F0AF97A914 /* react-native-webview.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = "react-native-webview.podspec"; sourceTree = "<group>"; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; BD71E2539823621820F84384064C253A /* libReact-Core.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; name = "libReact-Core.a"; path = "libReact-Core.a"; sourceTree = BUILT_PRODUCTS_DIR; }; - BD73AA891D62385187260FC9FAF1E975 /* FIRDependency.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRDependency.m; path = FirebaseCore/Sources/FIRDependency.m; sourceTree = "<group>"; }; - BD74D03C3EB4CC221C70AE0F7F2DB24E /* EXWebBrowser.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = EXWebBrowser.h; path = EXWebBrowser/EXWebBrowser.h; sourceTree = "<group>"; }; - BD8642644F3A2804EB341CF7DF6465E8 /* BitIterator.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = BitIterator.h; path = folly/container/BitIterator.h; sourceTree = "<group>"; }; - BD92A024E058A1F1ACA50D8C9EA59838 /* YGEnums.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = YGEnums.h; path = yoga/YGEnums.h; sourceTree = "<group>"; }; - BD96F42BE96BED51567382ECD48D9017 /* SDWebImagePrefetcher.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = SDWebImagePrefetcher.m; path = SDWebImage/Core/SDWebImagePrefetcher.m; sourceTree = "<group>"; }; - BD98F0005A10B45C2B6F183D42D31D3C /* FLEXUtility.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FLEXUtility.h; path = iOS/Plugins/FlipperKitNetworkPlugin/SKIOSNetworkPlugin/FLEXNetworkLib/FLEXUtility.h; sourceTree = "<group>"; }; - BDA2A69E14FB628DD6843A24D005F18D /* double-conversion.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "double-conversion.h"; path = "double-conversion/double-conversion.h"; sourceTree = "<group>"; }; - BDA60B5F2263D814E171E633B919C049 /* GULSceneDelegateSwizzler_Private.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = GULSceneDelegateSwizzler_Private.h; path = GoogleUtilities/SceneDelegateSwizzler/Internal/GULSceneDelegateSwizzler_Private.h; sourceTree = "<group>"; }; - BDCD4150CA90CA54D93291168F2D3975 /* RCTSurfaceSizeMeasureMode.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTSurfaceSizeMeasureMode.h; sourceTree = "<group>"; }; - BDE5F0AC59BC5BAB36BA4C7B8245D641 /* rn-extensions-share.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "rn-extensions-share.debug.xcconfig"; sourceTree = "<group>"; }; - BE088D34B31ACFBDBA428DB61D2FC8FE /* React-RCTNetwork-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "React-RCTNetwork-dummy.m"; sourceTree = "<group>"; }; - BE25E45DF047A25091D66D41617ACFD5 /* RSocketParameters.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RSocketParameters.h; path = rsocket/RSocketParameters.h; sourceTree = "<group>"; }; + BD7848B983A057E3E9D2FA433AFCFE2C /* RCTConvert+CoreLocation.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "RCTConvert+CoreLocation.h"; sourceTree = "<group>"; }; + BD86AC1F3317A7CFA77DBFA2CA11CE98 /* SanitizeThread.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SanitizeThread.h; path = folly/synchronization/SanitizeThread.h; sourceTree = "<group>"; }; + BD94D174AF2F42552D523C7512ACF60D /* FIRCLSMultipartMimeStreamEncoder.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRCLSMultipartMimeStreamEncoder.h; path = Crashlytics/Shared/FIRCLSNetworking/FIRCLSMultipartMimeStreamEncoder.h; sourceTree = "<group>"; }; + BDA1B1D5DB335E4C976544E82311199F /* SanitizeLeak.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SanitizeLeak.h; path = folly/memory/SanitizeLeak.h; sourceTree = "<group>"; }; + BDA6FCB2956855B835FE86108CE5C320 /* BSG_KSCrashSentry_NSException.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = BSG_KSCrashSentry_NSException.m; sourceTree = "<group>"; }; + BDC54EB2B374B18C1E3098F5191D6F65 /* RCTTransformAnimatedNode.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTTransformAnimatedNode.h; sourceTree = "<group>"; }; + BDD36D38C63470DC0E1B558404F36FE5 /* RCTNetworkTask.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTNetworkTask.mm; sourceTree = "<group>"; }; + BDEB977E76B4D94A94A55E8BFEDC72EF /* CallstackHelper.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = CallstackHelper.h; path = xplat/Flipper/utils/CallstackHelper.h; sourceTree = "<group>"; }; + BDEF27D34211AF9452A90A2A483FED77 /* FIRCLSReport.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRCLSReport.h; path = Crashlytics/Crashlytics/Models/FIRCLSReport.h; sourceTree = "<group>"; }; + BDF53C8A66D836C5E886A2B6E40DE531 /* RNVectorIcons-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "RNVectorIcons-prefix.pch"; sourceTree = "<group>"; }; + BDFFE1CC2C91451B462C153CA49ABA6B /* vp8i_dec.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = vp8i_dec.h; path = src/dec/vp8i_dec.h; sourceTree = "<group>"; }; + BE1BEE680D245D53EB7CC5864492A3E6 /* LICENSE */ = {isa = PBXFileReference; includeInIndex = 1; path = LICENSE; sourceTree = "<group>"; }; BE44CBCE6C75B26E95A4555F9D976298 /* Pods-defaults-RocketChatRN-umbrella.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "Pods-defaults-RocketChatRN-umbrella.h"; sourceTree = "<group>"; }; - BE4B2EC9E780573AB23F987993FB301D /* CString.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = CString.h; path = folly/lang/CString.h; sourceTree = "<group>"; }; - BE506F4325CA171F9BC83739E72F4075 /* DoubleConversion.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = DoubleConversion.release.xcconfig; sourceTree = "<group>"; }; - BE6BA2C9AB3AF5A8930FB3A8745D4505 /* RCTFollyConvert.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTFollyConvert.mm; sourceTree = "<group>"; }; - BE8085DDE5007490C571E6E464198B33 /* react-native-document-picker-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "react-native-document-picker-dummy.m"; sourceTree = "<group>"; }; - BE8EE1CD0FADA9E37185A53DE4260E02 /* nanopb-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "nanopb-prefix.pch"; sourceTree = "<group>"; }; - BE8FE5ABD07B445E6E17FBDE8B6AF829 /* SDAnimatedImagePlayer.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SDAnimatedImagePlayer.h; path = SDWebImage/Core/SDAnimatedImagePlayer.h; sourceTree = "<group>"; }; - BE976562678AD794F1D9F2F35E89CA6D /* CodedInputData.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = CodedInputData.cpp; path = Core/CodedInputData.cpp; sourceTree = "<group>"; }; - BE9AC67A44540CE72419BBE469231EA5 /* ScheduledFrameProcessor.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ScheduledFrameProcessor.h; path = rsocket/framing/ScheduledFrameProcessor.h; sourceTree = "<group>"; }; - BEC8E3B1DECB8985FD462B8ED229F93D /* dec.c */ = {isa = PBXFileReference; includeInIndex = 1; name = dec.c; path = src/dsp/dec.c; sourceTree = "<group>"; }; - BECE1E300CED3753A0542E5F1E4AF11E /* NSValue+Interpolation.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "NSValue+Interpolation.h"; sourceTree = "<group>"; }; - BED0871489A485AE4BFE22FE7FBC108E /* SKDispatchQueue.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SKDispatchQueue.h; path = iOS/Plugins/FlipperKitNetworkPlugin/FlipperKitNetworkPlugin/SKDispatchQueue.h; sourceTree = "<group>"; }; - BED4D545EAB9F7C4A9B42407D30E8441 /* BugsnagReactNativePlugin.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = BugsnagReactNativePlugin.m; sourceTree = "<group>"; }; - BED751D1A47742D040BC09C13B8E004A /* RCTEventDispatcherProtocol.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTEventDispatcherProtocol.h; sourceTree = "<group>"; }; - BF1A76C52BB358B20970029ABBCE6EB5 /* UMSingletonModule.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = UMSingletonModule.m; path = UMCore/UMSingletonModule.m; sourceTree = "<group>"; }; - BF1E0BB7752D56C6845E112D9F00FF21 /* react-native-simple-crypto.modulemap */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.module; path = "react-native-simple-crypto.modulemap"; sourceTree = "<group>"; }; + BE4BF2B90A39CF8DBE4933FC5F6E71E1 /* RCTTouchHandler.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTTouchHandler.h; sourceTree = "<group>"; }; + BE5D11AEE9A2F2EF5094F9163D11D6B9 /* AsyncSSLSocket.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = AsyncSSLSocket.cpp; path = folly/io/async/AsyncSSLSocket.cpp; sourceTree = "<group>"; }; + BE632B847C3388AFC7C215B03240E2F3 /* FIRConfigurationInternal.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRConfigurationInternal.h; path = FirebaseCore/Sources/FIRConfigurationInternal.h; sourceTree = "<group>"; }; + BE6473D5079526E5C6B8062E82E6FFB5 /* ARTShape.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ARTShape.h; path = ios/ARTShape.h; sourceTree = "<group>"; }; + BE88319027CF3F72369EE2AD402EE208 /* Merge.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Merge.h; path = folly/container/Merge.h; sourceTree = "<group>"; }; + BEA197A86A523FC2F0293A232E2ABB08 /* MPMCPipeline.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = MPMCPipeline.h; path = folly/MPMCPipeline.h; sourceTree = "<group>"; }; + BECA37A5BFCB63F2C4A1A1E3A36A40F1 /* GULSwizzler.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = GULSwizzler.h; path = GoogleUtilities/MethodSwizzler/Private/GULSwizzler.h; sourceTree = "<group>"; }; + BECD62A210E871515F60DFD14F6A902F /* RAMBundleRegistry.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RAMBundleRegistry.h; sourceTree = "<group>"; }; + BED6ECDEACADEF05310734AB5770C4C5 /* StreamRequester.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = StreamRequester.h; path = rsocket/statemachine/StreamRequester.h; sourceTree = "<group>"; }; + BF18C673FF1CF6FAA32ADF19EA0942B0 /* openssl_aesv8-armx.S */ = {isa = PBXFileReference; includeInIndex = 1; name = "openssl_aesv8-armx.S"; path = "Core/aes/openssl/openssl_aesv8-armx.S"; sourceTree = "<group>"; }; BF1F456334C248BD77BE65C60F42FF67 /* libreact-native-simple-crypto.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; name = "libreact-native-simple-crypto.a"; path = "libreact-native-simple-crypto.a"; sourceTree = BUILT_PRODUCTS_DIR; }; - BF3037CDFDFCB0CB5E66960695EEF907 /* MessageQueueThread.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = MessageQueueThread.h; sourceTree = "<group>"; }; - BF5415DDB9E4FE5CFE25F782B29B7048 /* React-cxxreact-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "React-cxxreact-dummy.m"; sourceTree = "<group>"; }; - BF55835DEC39E3DA93EFFAB8A7E93815 /* RCTCxxUtils.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTCxxUtils.mm; sourceTree = "<group>"; }; - BF67BBDCA673E1FB5C1DD2309AF4CB54 /* FIRCLSRecordBase.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRCLSRecordBase.h; path = Crashlytics/Crashlytics/Models/Record/FIRCLSRecordBase.h; sourceTree = "<group>"; }; - BF6A49E6A21E30BB62BAC2885B08D2F2 /* RCTProfile.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTProfile.m; sourceTree = "<group>"; }; - BF6EEDE5D31E9583322CA71355AE74EB /* FIRCLSUserLogging.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRCLSUserLogging.m; path = Crashlytics/Crashlytics/Components/FIRCLSUserLogging.m; sourceTree = "<group>"; }; - BF72C69834CD282DFCE8ACCEEB7995E4 /* RCTKeyCommandConstants.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTKeyCommandConstants.h; path = ios/KeyCommands/RCTKeyCommandConstants.h; sourceTree = "<group>"; }; - BF872E3366FF64D781D6F38C56729C8B /* Flipper-Folly-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "Flipper-Folly-dummy.m"; sourceTree = "<group>"; }; - BF88558A95843F4AD6A7248E71B60DEF /* SocketAddress.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = SocketAddress.cpp; path = folly/SocketAddress.cpp; sourceTree = "<group>"; }; - BF8EAF9B12CBD7900A74B8D532A0C961 /* UMGyroscopeInterface.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = UMGyroscopeInterface.h; path = UMSensorsInterface/UMGyroscopeInterface.h; sourceTree = "<group>"; }; - BF926A855355608FCE60EEDBF74D78E2 /* react-native-restart-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "react-native-restart-prefix.pch"; sourceTree = "<group>"; }; - BFA4879CBA92A53717B01D68F383A73F /* DecoratedAsyncTransportWrapper.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = DecoratedAsyncTransportWrapper.h; path = folly/io/async/DecoratedAsyncTransportWrapper.h; sourceTree = "<group>"; }; - BFB833A212D11C1F41AC5557EFFF34D4 /* RCTFrameAnimation.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTFrameAnimation.m; sourceTree = "<group>"; }; - BFB871EFCC026E0E1B2229CA8B6C8679 /* DeviceUID.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = DeviceUID.m; path = ios/RNDeviceInfo/DeviceUID.m; sourceTree = "<group>"; }; - BFEFAFEBF84E9FBD4F8AD032AB419A71 /* QBSlomoIconView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = QBSlomoIconView.h; path = ios/QBImagePicker/QBImagePicker/QBSlomoIconView.h; sourceTree = "<group>"; }; - BFF2B93582DD82BCA452AC0DBA5D0647 /* RCTDataRequestHandler.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTDataRequestHandler.mm; sourceTree = "<group>"; }; - BFF4279A327AF0457A60C98234BFA95B /* lossless_enc_mips32.c */ = {isa = PBXFileReference; includeInIndex = 1; name = lossless_enc_mips32.c; path = src/dsp/lossless_enc_mips32.c; sourceTree = "<group>"; }; - BFF9EC62AB53882036DC920F1DC18E0E /* BugsnagKVStore.c */ = {isa = PBXFileReference; includeInIndex = 1; path = BugsnagKVStore.c; sourceTree = "<group>"; }; - C00C64F14C3A18BFFF5DCDBD56C60169 /* ReactNativeART-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "ReactNativeART-dummy.m"; sourceTree = "<group>"; }; - C00EDB550A0E30C35EF12C0F95474382 /* Poly.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Poly.h; path = folly/Poly.h; sourceTree = "<group>"; }; - C0180E0DAAFCDC1180358204BBF1D0EE /* RNCAsyncStorage.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNCAsyncStorage.m; path = ios/RNCAsyncStorage.m; sourceTree = "<group>"; }; - C041368CA726A7C4BA1CF1337AC041DB /* StreamResponder.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = StreamResponder.cpp; path = rsocket/statemachine/StreamResponder.cpp; sourceTree = "<group>"; }; - C06B1CFDE7B4DF08E03F2CC199843255 /* React-RCTText.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "React-RCTText.debug.xcconfig"; sourceTree = "<group>"; }; - C08376657BF0FFD85723248EA8D3C3D1 /* FIRCLSFABAsyncOperation_Private.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRCLSFABAsyncOperation_Private.h; path = Crashlytics/Shared/FIRCLSOperation/FIRCLSFABAsyncOperation_Private.h; sourceTree = "<group>"; }; - C09EA5E56B1A86D17A324942FE907F38 /* UMUIManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = UMUIManager.h; sourceTree = "<group>"; }; - C0F3BA7F568A29FDD4CE4A27DD46EF52 /* RNGestureHandler.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNGestureHandler.h; path = ios/RNGestureHandler.h; sourceTree = "<group>"; }; - C0F4D931F564B9208DE178D639DE0CC1 /* react-native-blur-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "react-native-blur-prefix.pch"; sourceTree = "<group>"; }; - C10A6CED735847F162A4E0FA40C2F42D /* GlobalThreadPoolList.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = GlobalThreadPoolList.cpp; path = folly/executors/GlobalThreadPoolList.cpp; sourceTree = "<group>"; }; - C10EF9F124CA4DE97790AECBE28BBB56 /* Fixture.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = Fixture.cpp; path = rsocket/benchmarks/Fixture.cpp; sourceTree = "<group>"; }; - C12603CA84D0C123860475E5587EF16D /* SDAnimatedImagePlayer.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = SDAnimatedImagePlayer.m; path = SDWebImage/Core/SDAnimatedImagePlayer.m; sourceTree = "<group>"; }; - C15118AF7B06E7AA8617780010187407 /* EXKeepAwake-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "EXKeepAwake-dummy.m"; sourceTree = "<group>"; }; - C16AEF8FC19B26B9C212A7F9183DDF93 /* FIRCLSURLSessionTask.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRCLSURLSessionTask.m; path = Crashlytics/Crashlytics/FIRCLSURLSession/Tasks/FIRCLSURLSessionTask.m; sourceTree = "<group>"; }; - C16EB91026B1EF04C1DC87BB87155F18 /* FIRCLSUtility.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRCLSUtility.h; path = Crashlytics/Crashlytics/Helpers/FIRCLSUtility.h; sourceTree = "<group>"; }; - C184B7335460D0CE1CA51D5B2D27A070 /* project.pbxproj */ = {isa = PBXFileReference; includeInIndex = 1; path = project.pbxproj; sourceTree = "<group>"; }; - C191067ED21FA9A8C57AE29B73488327 /* RCTCustomInputControllerTemp.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTCustomInputControllerTemp.h; sourceTree = "<group>"; }; - C19F8470C15F18F4285BAA5A9A8A8BF5 /* SafeAreaSpacerView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = SafeAreaSpacerView.m; sourceTree = "<group>"; }; - C19F872B607A5D258F69243BA87A938D /* RCTImageCache.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTImageCache.m; sourceTree = "<group>"; }; + BF20B3086476162690B76C054B6BC834 /* BlurEffectWithAmount.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = BlurEffectWithAmount.h; path = ios/BlurEffectWithAmount.h; sourceTree = "<group>"; }; + BF2BA5624423FD9F222021A05B549B0A /* TypeInfo.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = TypeInfo.h; path = folly/lang/TypeInfo.h; sourceTree = "<group>"; }; + BF2FC6550D674098D111C8FA0FEC0449 /* RCTJSIExecutorRuntimeInstaller.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTJSIExecutorRuntimeInstaller.mm; sourceTree = "<group>"; }; + BF32C23543FA20462B19DE963AD41925 /* UMReactLogHandler.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = UMReactLogHandler.h; sourceTree = "<group>"; }; + BF340157E2DB3F706AFCD381A9700B8A /* RNCSafeAreaProviderManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNCSafeAreaProviderManager.h; path = ios/SafeAreaView/RNCSafeAreaProviderManager.h; sourceTree = "<group>"; }; + BF48C1FBA27345C7E65E927C1F0C5D4B /* ThreadedExecutor.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ThreadedExecutor.h; path = folly/executors/ThreadedExecutor.h; sourceTree = "<group>"; }; + BF5409D991F72DFC729CA5C3956D7377 /* FlipperConnectionManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FlipperConnectionManager.h; path = xplat/Flipper/FlipperConnectionManager.h; sourceTree = "<group>"; }; + BF627F29C14D735D7BB79511FDDB0BB4 /* RCTInputAccessoryViewContent.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTInputAccessoryViewContent.h; sourceTree = "<group>"; }; + BF8DDAB588A8C634390A3295248FF6AF /* FBLPromiseError.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FBLPromiseError.h; path = Sources/FBLPromises/include/FBLPromiseError.h; sourceTree = "<group>"; }; + BFA7CDEAB6619D5D6734E5939DE68B7D /* UIButton+WebCache.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "UIButton+WebCache.h"; path = "SDWebImage/Core/UIButton+WebCache.h"; sourceTree = "<group>"; }; + BFAFF725F0A6788E42AD5BD768D7EC8A /* IOVec.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = IOVec.h; path = folly/portability/IOVec.h; sourceTree = "<group>"; }; + BFB3EAD1F08052928F837173A84FB07D /* pb_common.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = pb_common.h; sourceTree = "<group>"; }; + BFBBB4AF1B39739BA1EE28615B12873F /* BSGEventUploadKSCrashReportOperation.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = BSGEventUploadKSCrashReportOperation.m; sourceTree = "<group>"; }; + C028A0DFD42134BB483EB42D8ADA552F /* Uri.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Uri.h; path = folly/Uri.h; sourceTree = "<group>"; }; + C036C9C64E0B5AEFC84E6F3EE2A92F56 /* TOCropToolbar.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = TOCropToolbar.h; path = "Objective-C/TOCropViewController/Views/TOCropToolbar.h"; sourceTree = "<group>"; }; + C04BDF934280132FD2E9B83D8356207E /* Tearable.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Tearable.h; path = folly/synchronization/Tearable.h; sourceTree = "<group>"; }; + C05EBA7ECA9BA88FCC5B5514DCFD4B8D /* cached-powers.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = "cached-powers.cc"; path = "double-conversion/cached-powers.cc"; sourceTree = "<group>"; }; + C075A5AF12BE0ADE8D0375177F57CB41 /* React-jsi-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "React-jsi-dummy.m"; sourceTree = "<group>"; }; + C07D929F467CAAB69D2FFA4E77C393E7 /* ThreadCachedArena.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ThreadCachedArena.h; path = folly/memory/ThreadCachedArena.h; sourceTree = "<group>"; }; + C08B6C4F14452F11A0C35EAA5606EC2B /* BSGSerialization.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BSGSerialization.h; sourceTree = "<group>"; }; + C08F68C436B1B6C297B66E735AE25FE6 /* AtomicHashArray-inl.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "AtomicHashArray-inl.h"; path = "folly/AtomicHashArray-inl.h"; sourceTree = "<group>"; }; + C0ABEB63E7D7AD3EE90F270C36817B76 /* TurnSequencer.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = TurnSequencer.h; path = folly/detail/TurnSequencer.h; sourceTree = "<group>"; }; + C0B33919C6008C738F795DC16361E687 /* WarmResumeManager.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = WarmResumeManager.cpp; path = rsocket/internal/WarmResumeManager.cpp; sourceTree = "<group>"; }; + C0B3EE55CDCAA648213EF694E824B6B4 /* GDTCORStorageProtocol.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = GDTCORStorageProtocol.h; path = GoogleDataTransport/GDTCORLibrary/Public/GoogleDataTransport/GDTCORStorageProtocol.h; sourceTree = "<group>"; }; + C0B8F248902305759A0F7F3E507345DB /* GDTCORReachability_Private.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = GDTCORReachability_Private.h; path = GoogleDataTransport/GDTCORLibrary/Private/GDTCORReachability_Private.h; sourceTree = "<group>"; }; + C12207B25B4906F505A12EC8D6966B6B /* RCTScrollContentViewManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTScrollContentViewManager.m; sourceTree = "<group>"; }; + C1241CA78447F3917B5348A7FA35A374 /* REATransitionManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = REATransitionManager.h; sourceTree = "<group>"; }; + C1266DDB7B3CEB8B1201BA5AECDB1612 /* BSG_KSMach.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BSG_KSMach.h; sourceTree = "<group>"; }; + C1531CA68850AABDD9BAF7E5A0FD549B /* MethodCall.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; path = MethodCall.cpp; sourceTree = "<group>"; }; + C154CBB7C847660E6A69FC7CDAE35DED /* Request.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = Request.cpp; path = folly/io/async/Request.cpp; sourceTree = "<group>"; }; + C15BA64FED83321E6DDF17E582661D67 /* RNFetchBlobProgress.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNFetchBlobProgress.m; path = ios/RNFetchBlobProgress.m; sourceTree = "<group>"; }; + C168B257C296583F2E04E4803FDEA54A /* BlurViewManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = BlurViewManager.h; path = ios/BlurViewManager.h; sourceTree = "<group>"; }; + C16A0090D8D00D4BFED6D88CD18B4DD2 /* Async.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Async.h; path = folly/executors/Async.h; sourceTree = "<group>"; }; + C16B3DC6A579069815AE1C282805757A /* evhttp.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = evhttp.h; path = include/evhttp.h; sourceTree = "<group>"; }; + C1737AEC22308691BE969F972E941D29 /* GULHeartbeatDateStorage.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = GULHeartbeatDateStorage.m; path = GoogleUtilities/Environment/GULHeartbeatDateStorage.m; sourceTree = "<group>"; }; + C174102962D3DE782B18DB29175D29D0 /* EventBaseManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = EventBaseManager.h; path = folly/io/async/EventBaseManager.h; sourceTree = "<group>"; }; + C195C15C494B221007C723593670F997 /* UMReactFontManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = UMReactFontManager.h; sourceTree = "<group>"; }; + C1979C5F2ECD6347C6568631CD0FA9D3 /* RCTDisplayWeakRefreshable.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTDisplayWeakRefreshable.m; sourceTree = "<group>"; }; C1A919103EAC9813D236486C34FC0A21 /* libReact-RCTVibration.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; name = "libReact-RCTVibration.a"; path = "libReact-RCTVibration.a"; sourceTree = BUILT_PRODUCTS_DIR; }; - C1A92D7C500C0C8CEF6AC4E77BC0643D /* Hazptr-fwd.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "Hazptr-fwd.h"; path = "folly/synchronization/Hazptr-fwd.h"; sourceTree = "<group>"; }; - C1AF891DE00053BEBECE069FAE7BD92E /* CheckedMath.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = CheckedMath.h; path = folly/lang/CheckedMath.h; sourceTree = "<group>"; }; - C1B96F85E728B20381F51A90D5688A0B /* SDWebImageDownloaderRequestModifier.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = SDWebImageDownloaderRequestModifier.m; path = SDWebImage/Core/SDWebImageDownloaderRequestModifier.m; sourceTree = "<group>"; }; - C1CAC101D574B1469EE2EDF35A0FB67B /* UIImage+MultiFormat.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "UIImage+MultiFormat.m"; path = "SDWebImage/Core/UIImage+MultiFormat.m"; sourceTree = "<group>"; }; - C1D2B47E1C5431346888E77888673620 /* AutoAttachUtils.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; path = AutoAttachUtils.cpp; sourceTree = "<group>"; }; - C1E1432BBE969A04A27A1692A1197129 /* RCTParserUtils.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTParserUtils.h; sourceTree = "<group>"; }; - C20492402F9EA7E3B8AD53A1D41FC5D2 /* FIRInstallationsItem+RegisterInstallationAPI.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "FIRInstallationsItem+RegisterInstallationAPI.h"; path = "FirebaseInstallations/Source/Library/InstallationsAPI/FIRInstallationsItem+RegisterInstallationAPI.h"; sourceTree = "<group>"; }; - C21363F67760B2C4D800FA5E6E6B6A07 /* FIRCLSReportUploader.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRCLSReportUploader.m; path = Crashlytics/Crashlytics/Controllers/FIRCLSReportUploader.m; sourceTree = "<group>"; }; - C231A474BA8817ABE62D624B50C23C9E /* SKScrollViewDescriptor.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SKScrollViewDescriptor.h; path = iOS/Plugins/FlipperKitLayoutPlugin/FlipperKitLayoutPlugin/descriptors/SKScrollViewDescriptor.h; sourceTree = "<group>"; }; - C23E608D6ECDE8DAF3600B13F5FD8ABC /* RCTProfileTrampoline-arm64.S */ = {isa = PBXFileReference; includeInIndex = 1; path = "RCTProfileTrampoline-arm64.S"; sourceTree = "<group>"; }; - C25265491BA05D7DA07E73525B2E5ADE /* EDFThreadPoolExecutor.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = EDFThreadPoolExecutor.cpp; path = folly/executors/EDFThreadPoolExecutor.cpp; sourceTree = "<group>"; }; - C25717694583716545F087E9F69CADB0 /* IOS7Polyfill.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = IOS7Polyfill.h; path = ios/IOS7Polyfill.h; sourceTree = "<group>"; }; - C259D520D409213364BF1A2188CC03BC /* TestObserver.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = TestObserver.h; path = yarpl/observable/TestObserver.h; sourceTree = "<group>"; }; - C2661B362B6625627DF372579E7AEF04 /* SKInvalidation.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = SKInvalidation.m; path = iOS/Plugins/FlipperKitLayoutPlugin/FlipperKitLayoutPlugin/SKInvalidation.m; sourceTree = "<group>"; }; - C2716E1FCC4CC046E067D51DA07E0760 /* libevent.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = libevent.debug.xcconfig; sourceTree = "<group>"; }; - C272F0D9672149E05A955551304CD02F /* EXLocalAuthentication-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "EXLocalAuthentication-prefix.pch"; sourceTree = "<group>"; }; - C27817BEBD0764AAA5531522DE8E09A3 /* RNBootSplash-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "RNBootSplash-dummy.m"; sourceTree = "<group>"; }; - C27CA06AF20B21BE9B9CF6351CF39A10 /* contents.xcworkspacedata */ = {isa = PBXFileReference; includeInIndex = 1; path = contents.xcworkspacedata; sourceTree = "<group>"; }; - C27DC7AE4DE697B574D21F7A3A57FB75 /* LockTraits.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = LockTraits.h; path = folly/LockTraits.h; sourceTree = "<group>"; }; - C297EEB29D530D2065D16CD01752FEB2 /* cost_neon.c */ = {isa = PBXFileReference; includeInIndex = 1; name = cost_neon.c; path = src/dsp/cost_neon.c; sourceTree = "<group>"; }; - C2A38FCFC0C7CBF5FB62C446C28158CD /* FIRInstallationsStoredAuthToken.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRInstallationsStoredAuthToken.m; path = FirebaseInstallations/Source/Library/InstallationsStore/FIRInstallationsStoredAuthToken.m; sourceTree = "<group>"; }; - C2C0E90FEA77DD0E5EFF604B618FDA96 /* FIRInstallationsAPIService.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRInstallationsAPIService.h; path = FirebaseInstallations/Source/Library/InstallationsAPI/FIRInstallationsAPIService.h; sourceTree = "<group>"; }; - C2CC138F3EBFE8E6414F78D511270704 /* EXAppleAuthentication-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "EXAppleAuthentication-dummy.m"; sourceTree = "<group>"; }; - C2D9F45693D8E29A6B33D948513BB8DE /* React-RCTVibration.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "React-RCTVibration.release.xcconfig"; sourceTree = "<group>"; }; - C2DA9F23FE8526DB70B1265FB9EDB63B /* Function.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Function.h; path = folly/Function.h; sourceTree = "<group>"; }; - C32367A944FF6A86BFA89489019B2D6B /* ReactNativeVersion.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = ReactNativeVersion.h; sourceTree = "<group>"; }; - C32591EEDE3377EF9F2D1BAFD2185D97 /* RCTAppearance.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTAppearance.mm; sourceTree = "<group>"; }; - C3266B4D8442BC0F9230B842A2B712B9 /* FIRCLSUserDefaults.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRCLSUserDefaults.m; path = Crashlytics/Crashlytics/FIRCLSUserDefaults/FIRCLSUserDefaults.m; sourceTree = "<group>"; }; - C335481D064FA5535D3CC9FB9822A2BF /* FIRInstallationsIIDTokenStore.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRInstallationsIIDTokenStore.m; path = FirebaseInstallations/Source/Library/IIDMigration/FIRInstallationsIIDTokenStore.m; sourceTree = "<group>"; }; - C335D0C23B2DA8C1FF4D4D1B65B1F207 /* FIRCLSPackageReportOperation.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRCLSPackageReportOperation.h; path = Crashlytics/Crashlytics/Operations/Reports/FIRCLSPackageReportOperation.h; sourceTree = "<group>"; }; - C336B4D8990B6662D77B53EDCBDC9C6D /* PriorityUnboundedBlockingQueue.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = PriorityUnboundedBlockingQueue.h; path = folly/executors/task_queue/PriorityUnboundedBlockingQueue.h; sourceTree = "<group>"; }; - C33C6F61CDBFDA394DA7D50D55E37F81 /* en.lproj */ = {isa = PBXFileReference; includeInIndex = 1; name = en.lproj; path = React/AccessibilityResources/en.lproj; sourceTree = "<group>"; }; - C34BB7C9B5B6543C0E09A57C1B4F97EC /* UMLogHandler.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = UMLogHandler.h; sourceTree = "<group>"; }; - C36FF5D1A5B1A0456D961B26047AFBF3 /* StorageSetters.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = StorageSetters.h; path = ios/StorageSetters.h; sourceTree = "<group>"; }; - C37A75FDB49EFCEE4A1211875E3F47BA /* AtomicUnorderedMapUtils.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = AtomicUnorderedMapUtils.h; path = folly/detail/AtomicUnorderedMapUtils.h; sourceTree = "<group>"; }; - C37B23A8A1B5BEEEB622D8D6A3A35F81 /* FutureExecutor.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FutureExecutor.h; path = folly/executors/FutureExecutor.h; sourceTree = "<group>"; }; - C384BD5C849992AA306DD4C7B352C41A /* AsyncUDPServerSocket.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = AsyncUDPServerSocket.h; path = folly/io/async/AsyncUDPServerSocket.h; sourceTree = "<group>"; }; - C38A463A289BDC39E11BEFD5870CA52C /* RCTConvert+FIRApp.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "RCTConvert+FIRApp.m"; path = "ios/RNFBApp/RCTConvert+FIRApp.m"; sourceTree = "<group>"; }; - C3ACADAB2B34DCE52AC92C162C411639 /* React-cxxreact-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "React-cxxreact-prefix.pch"; sourceTree = "<group>"; }; - C3DE00015B04BC59D5769982E8B2F861 /* InterProcessLock.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = InterProcessLock.h; path = Core/InterProcessLock.h; sourceTree = "<group>"; }; - C3F26F9B4FA2A351DDE03859A88225A7 /* FBLPromise+Any.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "FBLPromise+Any.h"; path = "Sources/FBLPromises/include/FBLPromise+Any.h"; sourceTree = "<group>"; }; - C4152E0A282E1646120955713F62D908 /* ARTContainer.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ARTContainer.h; path = ios/ARTContainer.h; sourceTree = "<group>"; }; - C41C8A2FA397BDDA73801BC5E52EAD9D /* glog-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "glog-prefix.pch"; sourceTree = "<group>"; }; - C420F3C2B52E600E348B204665C68FD2 /* Spin.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Spin.h; path = folly/synchronization/detail/Spin.h; sourceTree = "<group>"; }; - C447F5E1A3B40FDA187DD4B2BB4E3656 /* Stdio.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = Stdio.cpp; path = folly/portability/Stdio.cpp; sourceTree = "<group>"; }; - C482D8D7D2504F96998F7712D5357600 /* openssl_md5_dgst.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = openssl_md5_dgst.cpp; path = Core/aes/openssl/openssl_md5_dgst.cpp; sourceTree = "<group>"; }; - C4AFB3459812979FCF112335B1814369 /* SysResource.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SysResource.h; path = folly/portability/SysResource.h; sourceTree = "<group>"; }; - C4BF2CCBBF5CE374288FBFF0D54C7ADF /* UMModuleRegistryHolderReactModule.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = UMModuleRegistryHolderReactModule.h; sourceTree = "<group>"; }; - C4C3CFCA8CF7497E1AF0C2007F1378E0 /* HazptrThrLocal.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = HazptrThrLocal.h; path = folly/synchronization/HazptrThrLocal.h; sourceTree = "<group>"; }; - C4D0A9D298494CD59E36A2F6D0BA0F3A /* log-internal.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "log-internal.h"; sourceTree = "<group>"; }; - C4EC293F2FD023668E6B3531C1E85E2D /* FIRCLSApplicationIdentifierModel.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRCLSApplicationIdentifierModel.m; path = Crashlytics/Crashlytics/Settings/Models/FIRCLSApplicationIdentifierModel.m; sourceTree = "<group>"; }; - C50601436C1024EC64C217FF43FAB96F /* zh-Hans.lproj */ = {isa = PBXFileReference; includeInIndex = 1; name = "zh-Hans.lproj"; path = "ios/QBImagePicker/QBImagePicker/zh-Hans.lproj"; sourceTree = "<group>"; }; - C52CF47231E5F2DD0870D298922E99E8 /* CPUThreadPoolExecutor.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = CPUThreadPoolExecutor.h; path = folly/executors/CPUThreadPoolExecutor.h; sourceTree = "<group>"; }; - C52D5EEE205E1F7DD0555001CB7F2C05 /* TLRefCount.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = TLRefCount.h; path = folly/experimental/TLRefCount.h; sourceTree = "<group>"; }; - C546EB9A217A4633A47E8498CCE72DC9 /* RCTSafeAreaShadowView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTSafeAreaShadowView.m; sourceTree = "<group>"; }; - C5536BC129A4DDE4A2E9C777B33C13C1 /* FIROptions.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIROptions.h; path = FirebaseCore/Sources/Public/FIROptions.h; sourceTree = "<group>"; }; - C56282F270075C6B28A3525902415FFD /* FirebaseInstallations-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "FirebaseInstallations-dummy.m"; sourceTree = "<group>"; }; - C56532EC0EFA749A87186D083FF75C66 /* Benchmark.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Benchmark.h; path = folly/Benchmark.h; sourceTree = "<group>"; }; - C567B7482E7DA9EA3E8295E3F0050D90 /* FIRCLSConstants.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRCLSConstants.m; path = Crashlytics/Shared/FIRCLSConstants.m; sourceTree = "<group>"; }; - C572FF6900F516C43191EAD1DD36F938 /* RCTErrorInfo.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTErrorInfo.m; sourceTree = "<group>"; }; - C58BA3EBB523D3E170AA5B68803E20C3 /* SKViewDescriptor.mm */ = {isa = PBXFileReference; includeInIndex = 1; name = SKViewDescriptor.mm; path = iOS/Plugins/FlipperKitLayoutPlugin/FlipperKitLayoutPlugin/descriptors/SKViewDescriptor.mm; sourceTree = "<group>"; }; - C590CA6D07CAF60A863741EFE53EDA7A /* EXAppleAuthenticationRequest.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = EXAppleAuthenticationRequest.h; path = EXAppleAuthentication/EXAppleAuthenticationRequest.h; sourceTree = "<group>"; }; - C594E33B7F2DC2B31F6CDCF045C05323 /* ThreadId.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ThreadId.h; path = folly/system/ThreadId.h; sourceTree = "<group>"; }; - C5AE0C796CB2CF1C33E96DBE07AC523A /* UnboundedQueue.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = UnboundedQueue.h; path = folly/concurrency/UnboundedQueue.h; sourceTree = "<group>"; }; - C5BA21FE6230E9775ACB8D055FFFB703 /* ReactCommon-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "ReactCommon-prefix.pch"; sourceTree = "<group>"; }; - C5BAF70E5AB8A74B2B59C84C0A57DF1A /* EXConstants-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "EXConstants-dummy.m"; sourceTree = "<group>"; }; - C5F18678F590CDEA4A6F29AF36D8C5DC /* UIImage+Extension.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "UIImage+Extension.h"; path = "ios/src/UIImage+Extension.h"; sourceTree = "<group>"; }; - C5FBB4CF298ADFEDE3E0D4083594D093 /* fixed-dtoa.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = "fixed-dtoa.cc"; path = "double-conversion/fixed-dtoa.cc"; sourceTree = "<group>"; }; - C5FD43B9AFE049BA54629F93A34D0BF1 /* BugsnagReactNative.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BugsnagReactNative.h; sourceTree = "<group>"; }; - C6047C5622988513A77CF76E8BE0CD9F /* RCTInputAccessoryViewContent.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTInputAccessoryViewContent.h; sourceTree = "<group>"; }; - C60C273209D11C25647302AA4EE459C7 /* REACondNode.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = REACondNode.h; sourceTree = "<group>"; }; - C60F0BD5F22F65B8ECCCB31C20A6C5E1 /* BugsnagBreadcrumbs.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = BugsnagBreadcrumbs.m; sourceTree = "<group>"; }; - C63764A8CAAA45692EA96FB71D6BA9E0 /* EXAppleAuthenticationButton.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = EXAppleAuthenticationButton.h; path = EXAppleAuthentication/EXAppleAuthenticationButton.h; sourceTree = "<group>"; }; - C637D5D18B465F42A4FE037A2B898D4C /* RCTMultipartDataTask.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTMultipartDataTask.m; sourceTree = "<group>"; }; - C63DD0A29BA912799F564DF84CD28550 /* RCTTurboModuleManager.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTTurboModuleManager.mm; sourceTree = "<group>"; }; - C6485B3A9CFDBF4692BD579F07E4A983 /* FIRCLSFile.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRCLSFile.m; path = Crashlytics/Crashlytics/Helpers/FIRCLSFile.m; sourceTree = "<group>"; }; - C68F5547801F990A641A430EE0156A96 /* SSLSession.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SSLSession.h; path = folly/ssl/SSLSession.h; sourceTree = "<group>"; }; - C699DCC52925CA7072A737F15E0BA4DF /* SpookyHashV2.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SpookyHashV2.h; path = folly/hash/SpookyHashV2.h; sourceTree = "<group>"; }; - C6AF3E49B2DBFEA9ACFC6345FDDDB37F /* pb_common.c */ = {isa = PBXFileReference; includeInIndex = 1; path = pb_common.c; sourceTree = "<group>"; }; - C6BCD75A89838F565A9A4B789D2A4598 /* LICENSE */ = {isa = PBXFileReference; includeInIndex = 1; path = LICENSE; sourceTree = "<group>"; }; - C6BD62929306BF4418698C2A220A1675 /* react-native-webview-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "react-native-webview-prefix.pch"; sourceTree = "<group>"; }; - C6CFB06B15368338718A38E06350FC81 /* ARTRenderable.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ARTRenderable.h; path = ios/ARTRenderable.h; sourceTree = "<group>"; }; - C6E1B1212C5D216DCE70D3FACC3B83DB /* bignum.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = bignum.cc; path = "double-conversion/bignum.cc"; sourceTree = "<group>"; }; - C6E690072E939AEE09A66F89F821D423 /* HazptrRec.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = HazptrRec.h; path = folly/synchronization/HazptrRec.h; sourceTree = "<group>"; }; - C6F45D5F31EF86F02D6CEF8DC22D0725 /* StreamResponder.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = StreamResponder.h; path = rsocket/statemachine/StreamResponder.h; sourceTree = "<group>"; }; - C6F73EEAFB5B026BF8C70AC11A3B4748 /* Unicode.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Unicode.h; path = folly/Unicode.h; sourceTree = "<group>"; }; - C6FC6468868664B70D3E281882C24504 /* BlurView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = BlurView.h; path = ios/BlurView.h; sourceTree = "<group>"; }; - C702EBD3C9260919ACAA7E0A82E95960 /* NetOps.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = NetOps.h; path = folly/net/NetOps.h; sourceTree = "<group>"; }; - C70B44F70601F2E891612366843D044B /* RCTObjcExecutor.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTObjcExecutor.mm; sourceTree = "<group>"; }; - C70CAFDE76103EF6F4BE78422776CD56 /* RCTRsaUtils.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RCTRsaUtils.m; path = ios/RCTCrypto/RCTRsaUtils.m; sourceTree = "<group>"; }; - C75C6B8A5C0B8A7BE9CF9D1D54519831 /* hermes-engine.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "hermes-engine.release.xcconfig"; sourceTree = "<group>"; }; - C761D7AE50CD6FB34E193946254D6163 /* RCTSurfaceView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTSurfaceView.h; sourceTree = "<group>"; }; + C1B78497C118D797D5ADBEE63ACB1B20 /* TOCropView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = TOCropView.h; path = "Objective-C/TOCropViewController/Views/TOCropView.h"; sourceTree = "<group>"; }; + C1C4AB165361C79E9CEB10B849DD0B99 /* react-native-restart.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "react-native-restart.release.xcconfig"; sourceTree = "<group>"; }; + C1CDE33B7060CA6268E5BB09D6C3D9C1 /* FIRCLSUserDefaults.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRCLSUserDefaults.h; path = Crashlytics/Crashlytics/FIRCLSUserDefaults/FIRCLSUserDefaults.h; sourceTree = "<group>"; }; + C1D6FE29065E9A121578B8F30FA54DCD /* ARTShape.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = ARTShape.m; path = ios/ARTShape.m; sourceTree = "<group>"; }; + C1E0B3DC529E43C36C8197D5F584CCF1 /* ConcurrentBitSet.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ConcurrentBitSet.h; path = folly/ConcurrentBitSet.h; sourceTree = "<group>"; }; + C1F41A61435A7C7E40E9077594036A96 /* FIRCLSRecordIdentity.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRCLSRecordIdentity.m; path = Crashlytics/Crashlytics/Models/Record/FIRCLSRecordIdentity.m; sourceTree = "<group>"; }; + C1F7E1EEB19A423B1476F31F15A38E33 /* RCTInspectorDevServerHelper.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTInspectorDevServerHelper.mm; sourceTree = "<group>"; }; + C234DB5B3DCA472579F8C0C36ADF15C8 /* BitIterator.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = BitIterator.h; path = folly/container/BitIterator.h; sourceTree = "<group>"; }; + C244AA513FFAD26EAB360CBA0358127F /* FIRInstallationsLogger.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRInstallationsLogger.h; path = FirebaseInstallations/Source/Library/FIRInstallationsLogger.h; sourceTree = "<group>"; }; + C251FA74397E7B2F935F2108DF468B6E /* RCTClipboard.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTClipboard.mm; sourceTree = "<group>"; }; + C2552710DA4C088019A97F3466AD3499 /* glog-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "glog-dummy.m"; sourceTree = "<group>"; }; + C2686D2DACF39830370970E397E22833 /* react-native-document-picker-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "react-native-document-picker-dummy.m"; sourceTree = "<group>"; }; + C270D3C8DD62D73590FDBDB26EFA004D /* RNFBSharedUtils.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNFBSharedUtils.m; path = ios/RNFBApp/RNFBSharedUtils.m; sourceTree = "<group>"; }; + C2741538C85411612EAAA5071D8728ED /* Subprocess.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Subprocess.h; path = folly/Subprocess.h; sourceTree = "<group>"; }; + C288B40E2097CE575595F2B83C2A0472 /* CodedInputData.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = CodedInputData.h; path = Core/CodedInputData.h; sourceTree = "<group>"; }; + C2BBFDF4951B2F34F4374712C320CE3A /* ThreadLock.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ThreadLock.h; path = Core/ThreadLock.h; sourceTree = "<group>"; }; + C2C0B2910A52A3006CF8E3988EE80E94 /* Core.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Core.h; path = folly/futures/detail/Core.h; sourceTree = "<group>"; }; + C2FF2D65FA94C18434A0AF49D567C8CD /* F14SetFallback.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = F14SetFallback.h; path = folly/container/detail/F14SetFallback.h; sourceTree = "<group>"; }; + C30636F41EC13C7EB5E5AA7CB7506F7C /* GlobalThreadPoolList.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = GlobalThreadPoolList.h; path = folly/executors/GlobalThreadPoolList.h; sourceTree = "<group>"; }; + C312E05EF3D713D9648C61B28E1AAB3A /* vp8l_dec.c */ = {isa = PBXFileReference; includeInIndex = 1; name = vp8l_dec.c; path = src/dec/vp8l_dec.c; sourceTree = "<group>"; }; + C32393DDB51A0B195B34B4535A256CB4 /* RCTNativeModule.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTNativeModule.h; sourceTree = "<group>"; }; + C33090DF54A87168F762E93E9BA72418 /* Assume.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Assume.h; path = folly/lang/Assume.h; sourceTree = "<group>"; }; + C330B436526E5A04D2C6503FBE48A1E4 /* UMCore-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "UMCore-prefix.pch"; sourceTree = "<group>"; }; + C347441AD794A6AB6894FE5F60D5DDD0 /* react-native-restart-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "react-native-restart-dummy.m"; sourceTree = "<group>"; }; + C351020A52CFE117D3D25CEDA3DF7389 /* YGLayoutExtensions.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = YGLayoutExtensions.swift; path = YogaKit/Source/YGLayoutExtensions.swift; sourceTree = "<group>"; }; + C36B6A7DA9E95014AADD74A5CD021257 /* RCTSurfaceView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTSurfaceView.h; sourceTree = "<group>"; }; + C372933D88C37B0D59A71894B0B7CE3F /* StreamThroughputMemory.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = StreamThroughputMemory.cpp; path = rsocket/benchmarks/StreamThroughputMemory.cpp; sourceTree = "<group>"; }; + C3881C2C10611F2DDD8AA446938F53E7 /* QBAlbumCell.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = QBAlbumCell.h; path = ios/QBImagePicker/QBImagePicker/QBAlbumCell.h; sourceTree = "<group>"; }; + C3967DC526D085329D25451465D93FC1 /* README.md */ = {isa = PBXFileReference; includeInIndex = 1; path = README.md; sourceTree = "<group>"; }; + C3A4C29F98C2DD45327F6406A9C707B7 /* PThread.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = PThread.cpp; path = folly/portability/PThread.cpp; sourceTree = "<group>"; }; + C3A5CB191248FBE18048B5D6CF31A54C /* 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 = "<group>"; }; + C3CBBD49FBF8E308B82A5CD2216E44B6 /* vi.lproj */ = {isa = PBXFileReference; includeInIndex = 1; name = vi.lproj; path = "Objective-C/TOCropViewController/Resources/vi.lproj"; sourceTree = "<group>"; }; + C3DE11FB3C66C7DE7FD2E306BA250BB9 /* MMKVLog.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = MMKVLog.h; path = Core/MMKVLog.h; sourceTree = "<group>"; }; + C40A95AEC97C91A777EAAA0CA077D939 /* RCTFollyConvert.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTFollyConvert.h; sourceTree = "<group>"; }; + C41E86BF368A139B46170621488AE0D6 /* FIRInstallationsSingleOperationPromiseCache.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRInstallationsSingleOperationPromiseCache.h; path = FirebaseInstallations/Source/Library/InstallationsIDController/FIRInstallationsSingleOperationPromiseCache.h; sourceTree = "<group>"; }; + C42847A363311858658F4553BD12026F /* UMFaceDetectorManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = UMFaceDetectorManager.h; path = UMFaceDetectorInterface/UMFaceDetectorManager.h; sourceTree = "<group>"; }; + C449B8BE34D1CFA82FF4DEF257292E35 /* UIImage+ForceDecode.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "UIImage+ForceDecode.h"; path = "SDWebImage/Core/UIImage+ForceDecode.h"; sourceTree = "<group>"; }; + C44E14BE03F6FFE681870AED03433C0E /* GFlags.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = GFlags.h; path = folly/portability/GFlags.h; sourceTree = "<group>"; }; + C46A8681CA64926B09E43E6EA28AD16F /* libwebp-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "libwebp-prefix.pch"; sourceTree = "<group>"; }; + C46EFDBD3BCD8DFF87C413FD97C9147C /* Flipper.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = Flipper.debug.xcconfig; sourceTree = "<group>"; }; + C47D3095036C31C6B96CA8592A209873 /* EXPermissions.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = EXPermissions.h; path = EXPermissions/EXPermissions.h; sourceTree = "<group>"; }; + C48F9B2393D26CDBBA0B14EDC839E061 /* BSG_KSCrashSentry_MachException.c */ = {isa = PBXFileReference; includeInIndex = 1; path = BSG_KSCrashSentry_MachException.c; sourceTree = "<group>"; }; + C4946950FF904051FEE051239C0735EB /* react-native-notifications.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "react-native-notifications.release.xcconfig"; sourceTree = "<group>"; }; + C49B83D58BE9FC604375C33DAA92C8A0 /* RNFBRCTEventEmitter.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNFBRCTEventEmitter.m; path = ios/RNFBApp/RNFBRCTEventEmitter.m; sourceTree = "<group>"; }; + C49D0128CB07E3148BD5E5F19BA1EA56 /* Instance.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = Instance.h; sourceTree = "<group>"; }; + C4ED9D5AD546A2B65037A818D86E4159 /* ProducerConsumerQueue.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ProducerConsumerQueue.h; path = folly/ProducerConsumerQueue.h; sourceTree = "<group>"; }; + C50D2A2BB340B3D8AC276D02DDBAE733 /* ThreadCachedArena.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ThreadCachedArena.h; path = folly/memory/ThreadCachedArena.h; sourceTree = "<group>"; }; + C50DD7A9722E94B5BC21245A22CDAFF2 /* Syslog.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Syslog.h; path = folly/portability/Syslog.h; sourceTree = "<group>"; }; + C51F1A10A0787000C867688F83C16D3C /* UMViewManagerAdapterClassesRegistry.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = UMViewManagerAdapterClassesRegistry.h; sourceTree = "<group>"; }; + C520FD4C6233AB926C0AC071ABEC1A46 /* react-native-background-timer.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "react-native-background-timer.debug.xcconfig"; sourceTree = "<group>"; }; + C523B1BC29A1768450EB25F94A158E36 /* EventBaseLocal.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = EventBaseLocal.h; path = folly/io/async/EventBaseLocal.h; sourceTree = "<group>"; }; + C52C94B0900C21DCE054013A5071B4F3 /* ParkingLot.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ParkingLot.h; path = folly/synchronization/ParkingLot.h; sourceTree = "<group>"; }; + C55A79EB50BB30463EDFCC0A38DAE4CC /* EXVideoView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = EXVideoView.m; sourceTree = "<group>"; }; + C563392C1183EBD6083BB71BBC3750E9 /* RCTModalHostView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTModalHostView.m; sourceTree = "<group>"; }; + C56930969E532B06DF7C516F3D45D20F /* InlineFunctionRef.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = InlineFunctionRef.h; path = folly/synchronization/detail/InlineFunctionRef.h; sourceTree = "<group>"; }; + C585558FF762C77A46401E17B9643AEE /* RCTWebSocketModule.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTWebSocketModule.mm; sourceTree = "<group>"; }; + C5884F76C5A355E9519F66C7FA22BA75 /* ieee.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ieee.h; path = "double-conversion/ieee.h"; sourceTree = "<group>"; }; + C58D6937D5123E41801DC10A05F9B30B /* RNNotificationParser.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNNotificationParser.h; path = RNNotifications/RNNotificationParser.h; sourceTree = "<group>"; }; + C5944E4011C8B8BCFBAEC469F128BE4C /* RNNotificationCenterMulticast.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNNotificationCenterMulticast.h; path = RNNotifications/RNNotificationCenterMulticast.h; sourceTree = "<group>"; }; + C59908684CB5C37A6E10F285C5AEDA6A /* YGEnums.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = YGEnums.h; path = yoga/YGEnums.h; sourceTree = "<group>"; }; + C59D3539338B1EF05CAF60908628092B /* Expected.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Expected.h; path = folly/Expected.h; sourceTree = "<group>"; }; + C5A1BA0DF312D57EAA60C74D5EDDCEC8 /* react-native-appearance-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "react-native-appearance-prefix.pch"; sourceTree = "<group>"; }; + C5A7A1A8C9CD668E521FF94CBB54A013 /* SysFile.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = SysFile.cpp; path = folly/portability/SysFile.cpp; sourceTree = "<group>"; }; + C5CCC1E5D273AAD82F90D01B0FAB97B7 /* EventBaseManager.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = EventBaseManager.cpp; path = folly/io/async/EventBaseManager.cpp; sourceTree = "<group>"; }; + C5CE4B90C03F50DAB4A4F404465C3636 /* RCTTouchEvent.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTTouchEvent.m; sourceTree = "<group>"; }; + C5DA3FAFC38388F72D280CD53E1EDB5B /* React-Core.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = "React-Core.podspec"; sourceTree = "<group>"; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; + C5DD48F46D8B1790D9D67B76581C205F /* FBLPromise+Then.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "FBLPromise+Then.m"; path = "Sources/FBLPromises/FBLPromise+Then.m"; sourceTree = "<group>"; }; + C5E949B46D8B3289F5A68BA65DDBE074 /* React-Core.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "React-Core.debug.xcconfig"; sourceTree = "<group>"; }; + C5FE5A7E16D6D204C71CF2B1969DF7CC /* FlipperConnectionManagerImpl.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FlipperConnectionManagerImpl.h; path = xplat/Flipper/FlipperConnectionManagerImpl.h; sourceTree = "<group>"; }; + C6233B4B3770DEA268E645CA28EEBED3 /* react-native-notifications.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = "react-native-notifications.podspec"; sourceTree = "<group>"; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; + C62F97A54A3192C080A56A0D23E51642 /* JSIExecutor.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = JSIExecutor.h; path = jsireact/JSIExecutor.h; sourceTree = "<group>"; }; + C64101AE28CB43EB122B102799DF5D94 /* FBLPromise+Validate.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "FBLPromise+Validate.h"; path = "Sources/FBLPromises/include/FBLPromise+Validate.h"; sourceTree = "<group>"; }; + C65231695825D0A6C58171D316C2C02F /* React-RCTBlob.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "React-RCTBlob.debug.xcconfig"; sourceTree = "<group>"; }; + C661E81895557EE03473B762AE3903F6 /* Throughput.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Throughput.h; path = rsocket/benchmarks/Throughput.h; sourceTree = "<group>"; }; + C667DF70CB34F92432D5D8F744419CCA /* README.md */ = {isa = PBXFileReference; includeInIndex = 1; path = README.md; sourceTree = "<group>"; }; + C675EE07F0452E7FDC6693E3AC1BAC01 /* RCTReconnectingWebSocket.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RCTReconnectingWebSocket.m; path = Libraries/WebSocket/RCTReconnectingWebSocket.m; sourceTree = "<group>"; }; + C681F2E67CBE2A839B3525F23341F454 /* bufferevent_sock.c */ = {isa = PBXFileReference; includeInIndex = 1; path = bufferevent_sock.c; sourceTree = "<group>"; }; + C6A0C31BD9C61BA1C30F779E8279AF1D /* RNFBCrashlyticsModule.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNFBCrashlyticsModule.m; path = ios/RNFBCrashlytics/RNFBCrashlyticsModule.m; sourceTree = "<group>"; }; + C6A43BB36383DEBCBE5AAC4170CA5153 /* ThreadCachedLists.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ThreadCachedLists.h; path = folly/synchronization/detail/ThreadCachedLists.h; sourceTree = "<group>"; }; + C6A7179C49AA739E8E450CCA1979EB56 /* Types.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Types.h; path = folly/futures/detail/Types.h; sourceTree = "<group>"; }; + C6A9B7C171935C751C2A5DF89DA9F388 /* Indestructible.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Indestructible.h; path = folly/Indestructible.h; sourceTree = "<group>"; }; + C6B1066D2E2BCA2EF6415B87774B99F9 /* RCTDataRequestHandler.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTDataRequestHandler.h; path = Libraries/Network/RCTDataRequestHandler.h; sourceTree = "<group>"; }; + C6B5B7CC7966C0E96B5E97B5344097F5 /* evrpc.c */ = {isa = PBXFileReference; includeInIndex = 1; path = evrpc.c; sourceTree = "<group>"; }; + C6CA12A7D42612E84AD5D864686753EC /* Cast.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Cast.h; path = folly/lang/Cast.h; sourceTree = "<group>"; }; + C6E040984100ED986B0756DED66A8C07 /* GULSecureCoding.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = GULSecureCoding.m; path = GoogleUtilities/Environment/GULSecureCoding.m; sourceTree = "<group>"; }; + C6E90EEE25B5A1F0B0281138B3892EBE /* JSINativeModules.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = JSINativeModules.h; path = jsireact/JSINativeModules.h; sourceTree = "<group>"; }; + C70F4E086F9A06BF9983AE4769ADEACE /* DynamicParser-inl.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "DynamicParser-inl.h"; path = "folly/experimental/DynamicParser-inl.h"; sourceTree = "<group>"; }; + C7124A00A370CDCBF3C1270C969985AF /* Hardware.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Hardware.h; path = folly/synchronization/detail/Hardware.h; sourceTree = "<group>"; }; + C7259B83FDEDD3DF95D4D54C7B187BBB /* SKNodeDescriptor.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SKNodeDescriptor.h; path = iOS/Plugins/FlipperKitLayoutPlugin/FlipperKitLayoutPlugin/SKNodeDescriptor.h; sourceTree = "<group>"; }; + C73848EDC5F4BBC10E3F0D6EA0821D4D /* BugsnagSessionTracker.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = BugsnagSessionTracker.m; sourceTree = "<group>"; }; + C73B61CAC86CA6702B49ED64B86007B1 /* RSocketClient.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = RSocketClient.cpp; path = rsocket/RSocketClient.cpp; sourceTree = "<group>"; }; + C7483680708E81437AD83CDCD6DD5819 /* README.md */ = {isa = PBXFileReference; includeInIndex = 1; path = README.md; sourceTree = "<group>"; }; + C757E685B784FC1257DA5BB2CCC3C276 /* RNVectorIcons.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = RNVectorIcons.release.xcconfig; sourceTree = "<group>"; }; + C76D2EF8CBBC06D9CAD7AA5F180D747B /* CheckedMath.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = CheckedMath.h; path = folly/lang/CheckedMath.h; sourceTree = "<group>"; }; C777CF2FB1E39A45CBBDB54E8693F471 /* libRNReanimated.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; name = libRNReanimated.a; path = libRNReanimated.a; sourceTree = BUILT_PRODUCTS_DIR; }; - C79056AE4E814424756A05CE2F5F997D /* FBString.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FBString.h; path = folly/FBString.h; sourceTree = "<group>"; }; - C79C9B6348AE626037636647482DFC5E /* Sha.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = Sha.h; sourceTree = "<group>"; }; - C7A634C0809C6C8B3F48DAA06217C421 /* BugsnagStackframe+Private.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "BugsnagStackframe+Private.h"; sourceTree = "<group>"; }; - C7A950D965978616E154B786E20C04CE /* RCTUIManagerObserverCoordinator.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTUIManagerObserverCoordinator.h; sourceTree = "<group>"; }; - C7AB557274CF57A02EC21EC9FDC67657 /* FIRCLSByteUtility.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRCLSByteUtility.h; path = Crashlytics/Shared/FIRCLSByteUtility.h; sourceTree = "<group>"; }; - C7B7B89B9C2CBFE2FA20597CAE914577 /* Baton.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Baton.h; path = folly/synchronization/Baton.h; sourceTree = "<group>"; }; - C7C2268BCC9BE5C1853C9EEE1432E4DB /* EXAVPlayerData.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = EXAVPlayerData.m; path = EXAV/EXAVPlayerData.m; sourceTree = "<group>"; }; - C7C93169AF188C480F80B2DB487D1E57 /* AsyncSignalHandler.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = AsyncSignalHandler.cpp; path = folly/io/async/AsyncSignalHandler.cpp; sourceTree = "<group>"; }; - C7CA2A8556A16B3C49FF1B41CC0AE811 /* GoogleDataTransportCCTSupport.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = GoogleDataTransportCCTSupport.release.xcconfig; sourceTree = "<group>"; }; - C7CC87F7EED5A5012C03710749B33402 /* React-RCTText-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "React-RCTText-prefix.pch"; sourceTree = "<group>"; }; - C7D2C8A889B69DBFF16BE95AB81BB04C /* BugsnagPluginClient.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = BugsnagPluginClient.m; sourceTree = "<group>"; }; - C8029B6FA3BDC64E572449C131DB4F9A /* GULKeychainStorage.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = GULKeychainStorage.m; path = GoogleUtilities/Environment/SecureStorage/GULKeychainStorage.m; sourceTree = "<group>"; }; - C81BC27172EA0CE5C80194C0D70A45D3 /* RCTRequired.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = RCTRequired.release.xcconfig; sourceTree = "<group>"; }; - C81C1CDD0B6CEA783E7B2FED5B4A6A4D /* Math.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Math.h; path = folly/Math.h; sourceTree = "<group>"; }; - C8644BEA899187C9860C8C5A4BCE9404 /* RCTUITextView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTUITextView.h; sourceTree = "<group>"; }; - C86BB786B3B58004A16C9CAF9B645A88 /* UIView+WebCache.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "UIView+WebCache.m"; path = "SDWebImage/Core/UIView+WebCache.m"; sourceTree = "<group>"; }; - C86DF7EF0D2DB8F15D67CAB2D5C16B89 /* Assume.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Assume.h; path = folly/lang/Assume.h; sourceTree = "<group>"; }; - C8755BAEBC83C22B03BD7DB43383D48B /* SoftRealTimeExecutor.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SoftRealTimeExecutor.h; path = folly/executors/SoftRealTimeExecutor.h; sourceTree = "<group>"; }; - C89060B13A5EAABE289966B9B7599BED /* BugsnagSessionTrackingApiClient.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BugsnagSessionTrackingApiClient.h; sourceTree = "<group>"; }; - C8A62565FF0C008C8CCCA2F926455E43 /* EXAppleAuthentication.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = EXAppleAuthentication.h; path = EXAppleAuthentication/EXAppleAuthentication.h; sourceTree = "<group>"; }; - C8A8E750D6EB315BBAD13D52C36D1C35 /* TypeInfo.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = TypeInfo.h; path = folly/lang/TypeInfo.h; sourceTree = "<group>"; }; - C8AF838B4B48FCC4915595140A0E4514 /* ScopeGuard.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = ScopeGuard.cpp; path = folly/ScopeGuard.cpp; sourceTree = "<group>"; }; - C8BDECB59759E467E4BA207CDA35DA99 /* KeyboardTrackingViewTempManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = KeyboardTrackingViewTempManager.m; sourceTree = "<group>"; }; - C8BF84940347B813510E1C68D77E276D /* Flipper-DoubleConversion-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "Flipper-DoubleConversion-prefix.pch"; sourceTree = "<group>"; }; - C8C92828DAAD3DF19095AB319D64147F /* FBLPromise+Validate.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "FBLPromise+Validate.m"; path = "Sources/FBLPromises/FBLPromise+Validate.m"; sourceTree = "<group>"; }; - C8D74669E35EE408A4DE3CEE1FEF52A8 /* RNGestureHandler.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = RNGestureHandler.debug.xcconfig; sourceTree = "<group>"; }; - C8F7A0909CE76DB246CB41A3FF611281 /* evdns.c */ = {isa = PBXFileReference; includeInIndex = 1; path = evdns.c; sourceTree = "<group>"; }; - C90799EA218551C7B83AA144EDE89E53 /* UMEventEmitter.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = UMEventEmitter.h; sourceTree = "<group>"; }; - C9106D8860AE51771CD2A85A8D20BB16 /* CString.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = CString.cpp; path = folly/lang/CString.cpp; sourceTree = "<group>"; }; - C9147CB539C346522CDE0A26BEEAD07A /* cost_sse2.c */ = {isa = PBXFileReference; includeInIndex = 1; name = cost_sse2.c; path = src/dsp/cost_sse2.c; sourceTree = "<group>"; }; - C91950A7DFC8996A18ADDFAB2C6DD073 /* SSLOptions.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SSLOptions.h; path = folly/io/async/SSLOptions.h; sourceTree = "<group>"; }; - C92973A386C0B253E39A7584ED55CFFC /* MallctlHelper.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = MallctlHelper.cpp; path = folly/memory/MallctlHelper.cpp; sourceTree = "<group>"; }; - C94A27A28BC851B411267E9F4705266D /* FIRCLSCodeMapping.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRCLSCodeMapping.m; path = Crashlytics/Shared/FIRCLSMachO/FIRCLSCodeMapping.m; sourceTree = "<group>"; }; - C94CA6CA326F12DDC913D558730C0BFA /* Poly-inl.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "Poly-inl.h"; path = "folly/Poly-inl.h"; sourceTree = "<group>"; }; - C9513ADBC8F5FD588932B568C8D26DDB /* REABlockNode.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = REABlockNode.h; sourceTree = "<group>"; }; - C95ECC7C9717D97B9AC7FD144C98ADF2 /* FIRCLSThreadState.c */ = {isa = PBXFileReference; includeInIndex = 1; name = FIRCLSThreadState.c; path = Crashlytics/Crashlytics/Helpers/FIRCLSThreadState.c; sourceTree = "<group>"; }; - C9609E96411BE8E2F628880FC339B53F /* CallstackHelper.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = CallstackHelper.h; path = xplat/Flipper/utils/CallstackHelper.h; sourceTree = "<group>"; }; - C9754419D7609BFF0E75CE875DCC4656 /* 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 = "<group>"; }; - C97FBA18067CC52B4EC4531841DDA970 /* String.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = String.cpp; path = folly/String.cpp; sourceTree = "<group>"; }; - C9825762599913C6EB8217C8F9C4D952 /* BSG_RFC3339DateTool.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = BSG_RFC3339DateTool.m; sourceTree = "<group>"; }; - C98E349E86046891AFC5FF8A087E9764 /* Cast.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Cast.h; path = folly/lang/Cast.h; sourceTree = "<group>"; }; - C996B89FC9E4665A6ADF3EF655EC8278 /* ThreadCachedArena.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ThreadCachedArena.h; path = folly/memory/ThreadCachedArena.h; sourceTree = "<group>"; }; - C9A67E3773B8A1005ED03BE3434F1EC5 /* QBCheckmarkView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = QBCheckmarkView.h; path = ios/QBImagePicker/QBImagePicker/QBCheckmarkView.h; sourceTree = "<group>"; }; - C9A7663B51899E9286FE8EFD38D72255 /* ARTShapeManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = ARTShapeManager.m; sourceTree = "<group>"; }; - C9AD1B7ACF67B011EFE62F0C72771D6D /* SynthTrace.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SynthTrace.h; path = destroot/include/hermes/SynthTrace.h; sourceTree = "<group>"; }; - C9AEE440B62716E7DC763567258B5DB4 /* RNDateTimePicker.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNDateTimePicker.m; path = ios/RNDateTimePicker.m; sourceTree = "<group>"; }; - C9B967E1CE6B4A87E51F75B5187C594A /* REAAlwaysNode.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = REAAlwaysNode.m; sourceTree = "<group>"; }; - C9BD5139DF22D21BF4CB4F97E6819226 /* BugsnagSystemState.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BugsnagSystemState.h; sourceTree = "<group>"; }; - C9BE03A9ED4C0B01D14B481322AEEF98 /* jsi.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = jsi.h; sourceTree = "<group>"; }; - C9C9A2BE6194882D45341E0D8CEE3C18 /* React-RCTVibration-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "React-RCTVibration-dummy.m"; sourceTree = "<group>"; }; - C9DAB19BAE0886CC6E1FC7AEE195FB70 /* encode.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = encode.h; path = src/webp/encode.h; sourceTree = "<group>"; }; - C9DF09F69040AFECB8B414130D0B901C /* time-internal.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "time-internal.h"; sourceTree = "<group>"; }; - C9F3D0F0276B02303042AD8CEDE218BF /* RNDocumentPicker.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNDocumentPicker.h; path = ios/RNDocumentPicker/RNDocumentPicker.h; sourceTree = "<group>"; }; - C9F7D7AF91C7C14AE0306582CCBDCC34 /* RCTNetworking.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTNetworking.h; path = Libraries/Network/RCTNetworking.h; sourceTree = "<group>"; }; - C9FA6C28A33D0F7D55E824B7E43BB184 /* JemallocNodumpAllocator.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = JemallocNodumpAllocator.h; path = folly/experimental/JemallocNodumpAllocator.h; sourceTree = "<group>"; }; - CA04D0CCECD5149348E432A7532FD6F2 /* Fontisto.ttf */ = {isa = PBXFileReference; includeInIndex = 1; name = Fontisto.ttf; path = Fonts/Fontisto.ttf; sourceTree = "<group>"; }; - CA138AF36FD6DF96FF7BC56831E4DBF0 /* BugsnagDeviceWithState+Private.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "BugsnagDeviceWithState+Private.h"; sourceTree = "<group>"; }; - CA241484EAD056CDDD9937901FD9EFBA /* REATransition.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = REATransition.h; sourceTree = "<group>"; }; - CA53479D1F7EC6FB3472EFF20F157B6C /* FIRInstallationsStoredItem.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRInstallationsStoredItem.m; path = FirebaseInstallations/Source/Library/InstallationsStore/FIRInstallationsStoredItem.m; sourceTree = "<group>"; }; - CA557537137B6A0D183A619E100A10F7 /* RNFBMeta.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNFBMeta.h; path = ios/RNFBApp/RNFBMeta.h; sourceTree = "<group>"; }; - CA5710B5600A232F2F638BD59F307CCC /* BSGSerialization.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = BSGSerialization.m; sourceTree = "<group>"; }; - CA5B2F76C7122E579D86F19EDCFF9E89 /* RCTUIManagerObserverCoordinator.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTUIManagerObserverCoordinator.mm; sourceTree = "<group>"; }; - CA751CAFBA7E102722EC9DE334A0204A /* FlipperStateUpdateListener.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FlipperStateUpdateListener.h; path = iOS/FlipperKit/FlipperStateUpdateListener.h; sourceTree = "<group>"; }; - CA7D82AD20F59E7EA3AB0E410CD00BD2 /* UnboundedBlockingQueue.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = UnboundedBlockingQueue.h; path = folly/executors/task_queue/UnboundedBlockingQueue.h; sourceTree = "<group>"; }; - CA9DB25258DD17465318AC4999B7F0F0 /* enc_sse41.c */ = {isa = PBXFileReference; includeInIndex = 1; name = enc_sse41.c; path = src/dsp/enc_sse41.c; sourceTree = "<group>"; }; - CAAEF98599CE9874378A568A022A2BC7 /* SDWebImageDownloaderResponseModifier.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = SDWebImageDownloaderResponseModifier.m; path = SDWebImage/Core/SDWebImageDownloaderResponseModifier.m; sourceTree = "<group>"; }; - CAB2A0986BCA709B4AF09D1754932213 /* FormatArg.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FormatArg.h; path = folly/FormatArg.h; sourceTree = "<group>"; }; - CABA488DABFBFA90F5E1369C3D813996 /* SKDescriptorMapper.mm */ = {isa = PBXFileReference; includeInIndex = 1; name = SKDescriptorMapper.mm; path = iOS/Plugins/FlipperKitLayoutPlugin/FlipperKitLayoutPlugin/SKDescriptorMapper.mm; sourceTree = "<group>"; }; - CADCD6AC0A44BC12DF3E31CFFCB2A47D /* BSG_KSMachHeaders.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BSG_KSMachHeaders.h; sourceTree = "<group>"; }; - CAF267891123E2841781DC5673196785 /* react-native-webview.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "react-native-webview.release.xcconfig"; sourceTree = "<group>"; }; - CAF651E25771DF3B08038A53419DD063 /* UMKernelService.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = UMKernelService.h; sourceTree = "<group>"; }; - CAFCAA2659951C5F2840A793D96B938F /* FBReactNativeSpec-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "FBReactNativeSpec-dummy.m"; sourceTree = "<group>"; }; - CB2403880F88F5DA093CE37CD971C654 /* RNFBCrashlytics.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = RNFBCrashlytics.debug.xcconfig; sourceTree = "<group>"; }; - CB338AADDEBFFCE1DAE9153E8BD54079 /* RCTImageLoader.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTImageLoader.h; path = Libraries/Image/RCTImageLoader.h; sourceTree = "<group>"; }; - CB4CB6D66748FA47C30357F2544B39B2 /* BugsnagMetadata+Private.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "BugsnagMetadata+Private.h"; sourceTree = "<group>"; }; - CB67C93D6401F212FFF1E5EE7D0106B9 /* RCTSafeAreaShadowView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTSafeAreaShadowView.h; sourceTree = "<group>"; }; - CB780F18AF9E3DAFA1FD46D41E5ACBC1 /* UIImageView+HighlightedWebCache.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "UIImageView+HighlightedWebCache.h"; path = "SDWebImage/Core/UIImageView+HighlightedWebCache.h"; sourceTree = "<group>"; }; - CB8D1B05F7691BAED8591CFF2B187C65 /* FIRInstallationsItem+RegisterInstallationAPI.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "FIRInstallationsItem+RegisterInstallationAPI.m"; path = "FirebaseInstallations/Source/Library/InstallationsAPI/FIRInstallationsItem+RegisterInstallationAPI.m"; sourceTree = "<group>"; }; - CB9ED71E24B8573D5A3F1BDF00522916 /* README.md */ = {isa = PBXFileReference; includeInIndex = 1; path = README.md; sourceTree = "<group>"; }; - CBB9ED84AB9A1E593EF7C4C7413E06F0 /* FrameType.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = FrameType.cpp; path = rsocket/framing/FrameType.cpp; sourceTree = "<group>"; }; - CBC7720687E8A53CEA1A579059D11CFD /* SerialExecutor.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = SerialExecutor.h; sourceTree = "<group>"; }; - CBCA6480660BBE935E0D88687BB059A0 /* RCTConvert+RNNotifications.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "RCTConvert+RNNotifications.h"; path = "RNNotifications/RCTConvert+RNNotifications.h"; sourceTree = "<group>"; }; - CBD2370D02EB3B8FBD40A033B277308D /* FIRCLSMultipartMimeStreamEncoder.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRCLSMultipartMimeStreamEncoder.m; path = Crashlytics/Shared/FIRCLSNetworking/FIRCLSMultipartMimeStreamEncoder.m; sourceTree = "<group>"; }; - CBD7F32DD3F52D110764E7A7679E3C64 /* Flipper-DoubleConversion-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "Flipper-DoubleConversion-dummy.m"; sourceTree = "<group>"; }; - CBE1616AF656630B81600BEF0C1320C4 /* RCTTextAttributes.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTTextAttributes.h; path = Libraries/Text/RCTTextAttributes.h; sourceTree = "<group>"; }; - CC024E46040AD05842D1554339DB9DFF /* EXSessionTaskDelegate.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = EXSessionTaskDelegate.m; sourceTree = "<group>"; }; - CC10DEE2E7D3DEC467AC54EDE7E1CDED /* VirtualExecutor.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = VirtualExecutor.h; path = folly/VirtualExecutor.h; sourceTree = "<group>"; }; - CC132ACF573618FC05434FE77430522E /* Instance.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; path = Instance.cpp; sourceTree = "<group>"; }; - CC14741F8FDEC687198BDBA374E6780E /* HHWheelTimer-fwd.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "HHWheelTimer-fwd.h"; path = "folly/io/async/HHWheelTimer-fwd.h"; sourceTree = "<group>"; }; - CC30D68C227093DD75664F5A4F39836F /* YGLayout.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = YGLayout.h; path = YogaKit/Source/YGLayout.h; sourceTree = "<group>"; }; - CC46805A90E29C92F294FA16CC350C72 /* ReactNativeART-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "ReactNativeART-prefix.pch"; sourceTree = "<group>"; }; - CC6D4C630EB514AF39E21E6867D5917F /* Demangle.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = Demangle.cpp; path = folly/Demangle.cpp; sourceTree = "<group>"; }; - CC6DC74B878F52C4264D8737E8D26F2B /* Flipper-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "Flipper-prefix.pch"; sourceTree = "<group>"; }; - CC72D21238CDBFB46D8CFCC77CCABD69 /* TOCropViewController.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = TOCropViewController.debug.xcconfig; sourceTree = "<group>"; }; - CC799336E05389500EC88E957FB42160 /* RCTSurfacePresenterStub.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTSurfacePresenterStub.m; sourceTree = "<group>"; }; - CC8FAA1C912262D8FB04EABEE005863E /* BugsnagApp+Private.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "BugsnagApp+Private.h"; sourceTree = "<group>"; }; - CC9EC9A93BF2708C130F9C64C754CAA6 /* enc_mips32.c */ = {isa = PBXFileReference; includeInIndex = 1; name = enc_mips32.c; path = src/dsp/enc_mips32.c; sourceTree = "<group>"; }; - CCB7250174E85BADCF71CD4CF0B6F9A1 /* Payload.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = Payload.cpp; path = rsocket/Payload.cpp; sourceTree = "<group>"; }; - CCB97095D881D3E0D5625AFC68D06EA2 /* BSGNotificationBreadcrumbs.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BSGNotificationBreadcrumbs.h; sourceTree = "<group>"; }; - CCBA08FC978D2D5552E2C77919C442BC /* VirtualEventBase.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = VirtualEventBase.cpp; path = folly/io/async/VirtualEventBase.cpp; sourceTree = "<group>"; }; - CCE6F0D85D54A00E182C45B6F5C344B2 /* Inspector.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; path = Inspector.cpp; sourceTree = "<group>"; }; - CCFEC6EEED220D1BD667FF0839451C3E /* Config.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Config.h; path = folly/portability/Config.h; sourceTree = "<group>"; }; - CD0A3443C6A7213D97CFC3BE33030908 /* FIRInstallationsStoredAuthToken.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRInstallationsStoredAuthToken.h; path = FirebaseInstallations/Source/Library/InstallationsStore/FIRInstallationsStoredAuthToken.h; sourceTree = "<group>"; }; - CD173BD5FA0D4297EBFCFC4693B7BEEA /* RCTVirtualTextViewManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTVirtualTextViewManager.m; sourceTree = "<group>"; }; - CD2F3B487E3BAE150BE5331123974954 /* SDMemoryCache.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SDMemoryCache.h; path = SDWebImage/Core/SDMemoryCache.h; sourceTree = "<group>"; }; - CD30F9D9684EBC52D35FC0E36B792B13 /* CodedInputData_OSX.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = CodedInputData_OSX.cpp; path = Core/CodedInputData_OSX.cpp; sourceTree = "<group>"; }; - CD3AC61CFAD2B9EF698313B94B268FF3 /* RuntimeExecutor.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RuntimeExecutor.h; path = ReactCommon/RuntimeExecutor.h; sourceTree = "<group>"; }; - CD5D732B125633DF2A14954BE4893DD4 /* SDGraphicsImageRenderer.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = SDGraphicsImageRenderer.m; path = SDWebImage/Core/SDGraphicsImageRenderer.m; sourceTree = "<group>"; }; - CD6D627770512A04521700EC63B07BE2 /* MemoryIdler.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = MemoryIdler.h; path = folly/detail/MemoryIdler.h; sourceTree = "<group>"; }; - CD6D9EE4F9E1E2024338F163648B0426 /* SDWebImageCacheSerializer.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = SDWebImageCacheSerializer.m; path = SDWebImage/Core/SDWebImageCacheSerializer.m; sourceTree = "<group>"; }; - CD72FF4935D9AD07EEF34CDEC0AFC91F /* FIRInstallationsIIDStore.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRInstallationsIIDStore.m; path = FirebaseInstallations/Source/Library/IIDMigration/FIRInstallationsIIDStore.m; sourceTree = "<group>"; }; - CD8B8724B348C3772D9565D61F8A3846 /* react-native-webview.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "react-native-webview.debug.xcconfig"; sourceTree = "<group>"; }; - CD9E7EF418A1E7DC076C5815A0AC9131 /* SKStateUpdateCPPWrapper.mm */ = {isa = PBXFileReference; includeInIndex = 1; name = SKStateUpdateCPPWrapper.mm; path = iOS/FlipperKit/SKStateUpdateCPPWrapper.mm; sourceTree = "<group>"; }; - CDD860D6ECAD3BA713BD4D1F7DC63507 /* RCTBaseTextViewManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTBaseTextViewManager.m; sourceTree = "<group>"; }; - CDE9A556EC556FFEFABB9A9F7E9DD557 /* EventBaseBackendBase.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = EventBaseBackendBase.h; path = folly/io/async/EventBaseBackendBase.h; sourceTree = "<group>"; }; - CDF16ECD50D0280EC60B6417A2282ABA /* BSG_KSCrashSentry_Signal.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BSG_KSCrashSentry_Signal.h; sourceTree = "<group>"; }; - CE0AECC804B24895157FC7CA0CBEC546 /* FlipperKitNetworkPlugin.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FlipperKitNetworkPlugin.h; path = iOS/Plugins/FlipperKitNetworkPlugin/FlipperKitNetworkPlugin/FlipperKitNetworkPlugin.h; sourceTree = "<group>"; }; - CE1A3BE870187D9779BD588E99A4BA1E /* StreamRequester.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = StreamRequester.cpp; path = rsocket/statemachine/StreamRequester.cpp; sourceTree = "<group>"; }; - CE30F05F7BDE8ECCE8129CA563DFC777 /* FIRCLSDwarfExpressionMachine.c */ = {isa = PBXFileReference; includeInIndex = 1; name = FIRCLSDwarfExpressionMachine.c; path = Crashlytics/Crashlytics/Unwind/Dwarf/FIRCLSDwarfExpressionMachine.c; sourceTree = "<group>"; }; - CE52DDDD28C1BCF00DA998C465092169 /* FIRCLSFABHost.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRCLSFABHost.m; path = Crashlytics/Shared/FIRCLSFABHost.m; sourceTree = "<group>"; }; - CE58441B97197A9C77EC5B3FA60736DD /* RNFastImage-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "RNFastImage-dummy.m"; sourceTree = "<group>"; }; - CE6D47E068EE3C3F710FDCC6A5571833 /* RCTSafeAreaViewLocalData.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTSafeAreaViewLocalData.m; sourceTree = "<group>"; }; - CE6DA0E0588B8854385C4C0A03DAB96E /* TimeoutManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = TimeoutManager.h; path = folly/io/async/TimeoutManager.h; sourceTree = "<group>"; }; - CE71E32B1F316D819469B576AFFD0199 /* PThread.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = PThread.cpp; path = folly/portability/PThread.cpp; sourceTree = "<group>"; }; - CE720B80740482075792A51EC72C64FF /* RCTBlobManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTBlobManager.h; path = Libraries/Blob/RCTBlobManager.h; sourceTree = "<group>"; }; - CE75A73372A46C20D81FFA32E2B7FF33 /* React-jsi.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "React-jsi.release.xcconfig"; sourceTree = "<group>"; }; - CE804605C2C458698224684169342575 /* GoogleDataTransportCCTSupport-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "GoogleDataTransportCCTSupport-dummy.m"; sourceTree = "<group>"; }; - CE8225378D28D5807F1B16BB9BAE9DC8 /* ConsumerBase.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = ConsumerBase.cpp; path = rsocket/statemachine/ConsumerBase.cpp; sourceTree = "<group>"; }; - CEA3B35EB09CCF2BD8C1C215046FBDBC /* BugsnagError.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = BugsnagError.m; sourceTree = "<group>"; }; - CEC466FD202E23F29881E8BEB39E7530 /* NamedThreadFactory.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = NamedThreadFactory.h; path = folly/executors/thread_factory/NamedThreadFactory.h; sourceTree = "<group>"; }; - CEE0941739C9D8C648BEE31B28E6BAB0 /* LockFreeRingBuffer.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = LockFreeRingBuffer.h; path = folly/experimental/LockFreeRingBuffer.h; sourceTree = "<group>"; }; - CEEE463F217CBE6145E587648B5C4980 /* EXKeepAwake.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = EXKeepAwake.h; path = EXKeepAwake/EXKeepAwake.h; sourceTree = "<group>"; }; - CF052B7BAEBD12FB552E6AAA12CE3E99 /* SKSearchResultNode.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = SKSearchResultNode.m; path = iOS/Plugins/FlipperKitLayoutPlugin/FlipperKitLayoutPlugin/SKSearchResultNode.m; sourceTree = "<group>"; }; - CF0C1E54F3BF3139BD54F1B42B3175A4 /* evmap-internal.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "evmap-internal.h"; sourceTree = "<group>"; }; - CF20904EF4194014012A59328286CE8D /* SharedMutex.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = SharedMutex.cpp; path = folly/SharedMutex.cpp; sourceTree = "<group>"; }; - CF23CC817A95D2D6EC9B51B5E14343C7 /* cct.nanopb.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = cct.nanopb.h; path = GoogleDataTransportCCTSupport/GDTCCTLibrary/Protogen/nanopb/cct.nanopb.h; sourceTree = "<group>"; }; - CF4BDEC955538583A9CAA48843409B0D /* alpha_dec.c */ = {isa = PBXFileReference; includeInIndex = 1; name = alpha_dec.c; path = src/dec/alpha_dec.c; sourceTree = "<group>"; }; - CF5736726F34C338E30E0C2E192BFCEC /* picture_tools_enc.c */ = {isa = PBXFileReference; includeInIndex = 1; name = picture_tools_enc.c; path = src/enc/picture_tools_enc.c; sourceTree = "<group>"; }; - CF6F2DB2D18A812C3A854361966399FB /* filters_neon.c */ = {isa = PBXFileReference; includeInIndex = 1; name = filters_neon.c; path = src/dsp/filters_neon.c; sourceTree = "<group>"; }; - CF77D25B62CE45B31D07F75CB0D5E5D5 /* ChecksumDetail.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ChecksumDetail.h; path = folly/hash/detail/ChecksumDetail.h; sourceTree = "<group>"; }; - CF84CF3255A89822E1EF8A2A7F263EE8 /* TestUtil.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = TestUtil.h; path = folly/experimental/TestUtil.h; sourceTree = "<group>"; }; - CF8644F271E44401C198A359C279E6A2 /* FIRCLSNetworkClient.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRCLSNetworkClient.m; path = Crashlytics/Crashlytics/Controllers/FIRCLSNetworkClient.m; sourceTree = "<group>"; }; - CF92CB2DC5E901A2117D9D01EE01BBBE /* MemoryResource.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = MemoryResource.h; path = folly/memory/MemoryResource.h; sourceTree = "<group>"; }; - CFADAE6600C315D4EFB5CC5D47467A27 /* SDWeakProxy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = SDWeakProxy.m; path = SDWebImage/Private/SDWeakProxy.m; sourceTree = "<group>"; }; - CFB354F515813222413E2132DB870EBF /* cost.c */ = {isa = PBXFileReference; includeInIndex = 1; name = cost.c; path = src/dsp/cost.c; sourceTree = "<group>"; }; - CFBC2C9D2EE19A36E1AAE876E3BF5D26 /* NativeToJsBridge.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = NativeToJsBridge.h; sourceTree = "<group>"; }; - CFDAAEEE30F471C4329F59C88696B0DA /* RNFBAnalytics.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = RNFBAnalytics.podspec; sourceTree = "<group>"; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; - CFE777E168A9AFBF074D469F9EFF7C47 /* RNCNetInfo.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNCNetInfo.m; path = ios/RNCNetInfo.m; sourceTree = "<group>"; }; - CFEEC4B26238A97760C661FC6EBEEDE7 /* ModuleRegistry.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; path = ModuleRegistry.cpp; sourceTree = "<group>"; }; - D004E755154C0609093CBA5A993FFB05 /* RNFBCrashlyticsInitProvider.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNFBCrashlyticsInitProvider.h; path = ios/RNFBCrashlytics/RNFBCrashlyticsInitProvider.h; sourceTree = "<group>"; }; - D00CE9B3086FA1A05219E162F854B74F /* webp_enc.c */ = {isa = PBXFileReference; includeInIndex = 1; name = webp_enc.c; path = src/enc/webp_enc.c; sourceTree = "<group>"; }; - D025A744BC6CB86BDC6E7478D67C5018 /* RNCPicker-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "RNCPicker-prefix.pch"; sourceTree = "<group>"; }; - D03E0BDAF9B99DCFE7142FA24C3753B9 /* AtFork.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = AtFork.h; path = folly/detail/AtFork.h; sourceTree = "<group>"; }; - D03FB8816A2AB881FD70B5B6B25F9651 /* BugsnagKeys.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BugsnagKeys.h; sourceTree = "<group>"; }; - D05C1CEC62104465904E3A67032B0338 /* BSGConnectivity.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = BSGConnectivity.m; sourceTree = "<group>"; }; - D073692990B9BF66DA53ABBA5F0547E2 /* CtorConfig.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = CtorConfig.h; path = destroot/include/hermes/Public/CtorConfig.h; sourceTree = "<group>"; }; - D086FD2DC70AB96A859578DC6120A23B /* PackedSyncPtr.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = PackedSyncPtr.h; path = folly/PackedSyncPtr.h; sourceTree = "<group>"; }; - D09D3FE7CC7C7E27C81BB8B8916180FB /* ResourceBundle-TOCropViewControllerBundle-TOCropViewController-Info.plist */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.plist.xml; path = "ResourceBundle-TOCropViewControllerBundle-TOCropViewController-Info.plist"; sourceTree = "<group>"; }; - D0ACA1571BAA3C0B215051D0BB3BC857 /* REATransition.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = REATransition.m; sourceTree = "<group>"; }; - D0B9B3241560309851012EDF6E8A3626 /* RNFlingHandler.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RNFlingHandler.h; sourceTree = "<group>"; }; - D0BFF27AF933BF8DFC29BAD4589847E5 /* REAModule.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = REAModule.h; path = ios/REAModule.h; sourceTree = "<group>"; }; - D0D88DE9238F87B08F5FA4F0049515F4 /* RCTActivityIndicatorViewManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTActivityIndicatorViewManager.m; sourceTree = "<group>"; }; - D0E13984E0A2C4736083DC35869FC7C2 /* Hardware.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Hardware.h; path = folly/chrono/Hardware.h; sourceTree = "<group>"; }; - D0F7ABFB07A02E065BC573837BB2AFFB /* QueuedImmediateExecutor.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = QueuedImmediateExecutor.cpp; path = folly/executors/QueuedImmediateExecutor.cpp; sourceTree = "<group>"; }; - D10E2669C8848E54D113A42302BB19D4 /* instrumentation.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = instrumentation.h; path = destroot/include/jsi/instrumentation.h; sourceTree = "<group>"; }; - D10F12D128550E3DC072FBFC7CAF85D8 /* PolyDetail.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = PolyDetail.h; path = folly/detail/PolyDetail.h; sourceTree = "<group>"; }; - D1261855BFFA8311D0C7C5B1019EBC88 /* Bugsnag.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = Bugsnag.h; sourceTree = "<group>"; }; - D138E7168D289E33D969E784634487E8 /* RCTInputAccessoryViewContent.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTInputAccessoryViewContent.m; sourceTree = "<group>"; }; - D138EEBF36D8E69C1BB1C575F483FB4B /* ar.lproj */ = {isa = PBXFileReference; includeInIndex = 1; name = ar.lproj; path = "Objective-C/TOCropViewController/Resources/ar.lproj"; sourceTree = "<group>"; }; - D188BCD922AC3C4939F431D7B60837B9 /* WebRTC.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = WebRTC.framework; path = Frameworks/WebRTC.framework; sourceTree = "<group>"; }; - D18A2940596CFCC7B0DD063E40A88D66 /* UMPermissionsInterface.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = UMPermissionsInterface.release.xcconfig; sourceTree = "<group>"; }; - D18D8EE86A6247AEC17789C49CB93D6D /* FlipperCertificateProvider.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FlipperCertificateProvider.h; path = xplat/Flipper/FlipperCertificateProvider.h; sourceTree = "<group>"; }; - D19A4CA590DD20503C9910C053E7E6EC /* SKTapListenerImpl.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = SKTapListenerImpl.m; path = iOS/Plugins/FlipperKitLayoutPlugin/FlipperKitLayoutPlugin/SKTapListenerImpl.m; sourceTree = "<group>"; }; - D1C3457EB97C2E145F1E6A47676EB365 /* FIRCLSURLSessionUploadTask.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRCLSURLSessionUploadTask.m; path = Crashlytics/Crashlytics/FIRCLSURLSession/Tasks/FIRCLSURLSessionUploadTask.m; sourceTree = "<group>"; }; - D1F9BC25A5F9A6EBE79C5FC99E1ACCCB /* FlipperRSocketResponder.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FlipperRSocketResponder.h; path = xplat/Flipper/FlipperRSocketResponder.h; sourceTree = "<group>"; }; - D20343DBF407D8021B5FCD3EC802C4E2 /* BSG_KSCrashType.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BSG_KSCrashType.h; sourceTree = "<group>"; }; - D209C4FA27308DF998A5A82B02E763F2 /* RNFastImage.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = RNFastImage.release.xcconfig; sourceTree = "<group>"; }; - D20C1F69C8D64CF80267E0043A39E62E /* QBImagePicker.storyboard */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = file.storyboard; name = QBImagePicker.storyboard; path = ios/QBImagePicker/QBImagePicker/QBImagePicker.storyboard; sourceTree = "<group>"; }; - D218CD7A1D139E9F1C38C68C1D1BC373 /* TypeList.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = TypeList.h; path = folly/detail/TypeList.h; sourceTree = "<group>"; }; - D2322A3A37A78CF82ABE28C37D8CACA5 /* SonarKitNetworkPlugin+CPPInitialization.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "SonarKitNetworkPlugin+CPPInitialization.h"; path = "iOS/Plugins/FlipperKitNetworkPlugin/FlipperKitNetworkPlugin/SonarKitNetworkPlugin+CPPInitialization.h"; sourceTree = "<group>"; }; - D232B35AB8CB2A662E1C23302D9213F2 /* FIRCLSHandler.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRCLSHandler.m; path = Crashlytics/Crashlytics/Handlers/FIRCLSHandler.m; sourceTree = "<group>"; }; - D24C2A558A4C2CF8CAD1BE5E4935C980 /* 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 = "<group>"; }; - D25CC58E2E6BE4726CC342479689DE85 /* Demangle.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Demangle.h; path = folly/detail/Demangle.h; sourceTree = "<group>"; }; - D25EC3A6EE178FA0BB33279376E6666B /* RNNotificationCenterListener.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNNotificationCenterListener.m; path = RNNotifications/RNNotificationCenterListener.m; sourceTree = "<group>"; }; - D26852D1F256C76D2220095D278152DF /* DuplexConnection.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = DuplexConnection.h; path = rsocket/DuplexConnection.h; sourceTree = "<group>"; }; - D275BB6BB5DDB9ADBCA034837339D4E6 /* DefaultKeepAliveExecutor.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = DefaultKeepAliveExecutor.h; path = folly/DefaultKeepAliveExecutor.h; sourceTree = "<group>"; }; - D283895F4E266C2F034DEA9F975C4B52 /* GoogleAppMeasurement.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = GoogleAppMeasurement.framework; path = Frameworks/GoogleAppMeasurement.framework; sourceTree = "<group>"; }; - D2943406FA1878F07097E101AE75878A /* React-CoreModules.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "React-CoreModules.debug.xcconfig"; sourceTree = "<group>"; }; - D2BAFB5712B5C8FFFE439BE7B8832975 /* JSIExecutor.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = JSIExecutor.h; path = jsireact/JSIExecutor.h; sourceTree = "<group>"; }; - D2C5FC90D2479A209F796DDE8961A2CA /* nanopb.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = nanopb.debug.xcconfig; sourceTree = "<group>"; }; - D2CB543418A0278B8EA4AF0B5E8165B1 /* GULApplication.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = GULApplication.h; path = GoogleUtilities/AppDelegateSwizzler/Private/GULApplication.h; sourceTree = "<group>"; }; - D2D9FC5046BFD665D655F0ECFA346B84 /* ThreadPoolExecutor.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = ThreadPoolExecutor.cpp; path = folly/executors/ThreadPoolExecutor.cpp; sourceTree = "<group>"; }; - D2F655E41C63BAB63A290AB9417740CC /* AsyncTimeout.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = AsyncTimeout.cpp; path = folly/io/async/AsyncTimeout.cpp; sourceTree = "<group>"; }; - D30DBF5B6FCBC3771FC82D8F61B0DDE1 /* BugsnagClient.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = BugsnagClient.m; sourceTree = "<group>"; }; - D31F5C04F4B11BAF9893FCEEBF4FCAF5 /* FBLazyVector.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = FBLazyVector.release.xcconfig; sourceTree = "<group>"; }; - D328775106F074AD45878F03B4247CCD /* SysTypes.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SysTypes.h; path = folly/portability/SysTypes.h; sourceTree = "<group>"; }; - D32F6732FAD1516979A5B9333CC2ED3F /* Math.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Math.h; path = folly/portability/Math.h; sourceTree = "<group>"; }; - D341FB6C784B8F24292A0C10871CB739 /* ProgramOptions.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ProgramOptions.h; path = folly/experimental/ProgramOptions.h; sourceTree = "<group>"; }; - D34F0718894EB8BF26A6311E5213A124 /* RCTConvert+FFFastImage.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "RCTConvert+FFFastImage.h"; path = "ios/FastImage/RCTConvert+FFFastImage.h"; sourceTree = "<group>"; }; - D36ACE68BB8264C4141B635EA0BD695D /* small_vector.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = small_vector.h; path = folly/small_vector.h; sourceTree = "<group>"; }; - D3747BB10FAC0DDEE8A101726C4278CA /* FlipperKitCertificateProvider.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FlipperKitCertificateProvider.h; path = iOS/FlipperKit/FlipperKitCertificateProvider.h; sourceTree = "<group>"; }; - D375D0FFEF2CAE4C446E135EF0E4CEC6 /* token_enc.c */ = {isa = PBXFileReference; includeInIndex = 1; name = token_enc.c; path = src/enc/token_enc.c; sourceTree = "<group>"; }; - D37B65DEDF478FA183504D83B5AFE43C /* RNCMaskedView.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = RNCMaskedView.podspec; sourceTree = "<group>"; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; - D387CEB2E8DFB44CA15F0A1870D36947 /* Futex.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Futex.h; path = folly/detail/Futex.h; sourceTree = "<group>"; }; - D39EE2ECB1DCDBE29E86E36789934FD5 /* EXHaptics-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "EXHaptics-dummy.m"; sourceTree = "<group>"; }; - D3AA599DC936541F96C2A0FDEDADF1A2 /* SysTime.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SysTime.h; path = folly/portability/SysTime.h; sourceTree = "<group>"; }; - D3B33FD155FD295BAA0410C2986FCA37 /* BlurView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = BlurView.m; path = ios/BlurView.m; sourceTree = "<group>"; }; - D3CA87F3981BA1FAD1B5A90A2FB91D9D /* jsi.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; path = jsi.cpp; sourceTree = "<group>"; }; - D3CB59A60FE13ECB21FE7841B42C6FF9 /* EXWebBrowser-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "EXWebBrowser-prefix.pch"; sourceTree = "<group>"; }; - D3DE53BFB30AD316FAD57081454D1606 /* README.md */ = {isa = PBXFileReference; includeInIndex = 1; path = README.md; sourceTree = "<group>"; }; - D3F24519187C0062D2335EF4A06B631F /* RCTTextViewManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTTextViewManager.h; sourceTree = "<group>"; }; - D406C3172FD33987CC90D98C292F301B /* FIRCLSSettingsOnboardingManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRCLSSettingsOnboardingManager.m; path = Crashlytics/Crashlytics/Settings/FIRCLSSettingsOnboardingManager.m; sourceTree = "<group>"; }; - D40C3533BF228493CCEDE27D1FB64084 /* BSGStorageMigratorV0V1.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BSGStorageMigratorV0V1.h; sourceTree = "<group>"; }; - D42007B4C16C152C107FFE5553789732 /* BSGGlobals.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = BSGGlobals.m; sourceTree = "<group>"; }; - D4228F768266D79383C00EDA869BA843 /* EnableSharedFromThis.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = EnableSharedFromThis.h; path = folly/memory/EnableSharedFromThis.h; sourceTree = "<group>"; }; - D4565DF68C06D16A9AA04709FCD92143 /* YogaKit-umbrella.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "YogaKit-umbrella.h"; sourceTree = "<group>"; }; - D459214CFD30F80EBC830BD08EBBA7B9 /* RNCAsyncStorage.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = RNCAsyncStorage.podspec; sourceTree = "<group>"; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; - D48E7AE778250FC2EF3E2A77AB216EB9 /* Utils.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Utils.h; path = yoga/Utils.h; sourceTree = "<group>"; }; - D492EF8863AEA098B6A3F3255B3F8CB9 /* FIRInstallationsAuthTokenResult.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRInstallationsAuthTokenResult.h; path = FirebaseInstallations/Source/Library/Public/FIRInstallationsAuthTokenResult.h; sourceTree = "<group>"; }; - D4962E415A146278EC19A739E2A05AA7 /* RCTBridge.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTBridge.m; sourceTree = "<group>"; }; - D4A2BE8CFED384AE4AC4EC33BB298903 /* FIRInstallationsVersion.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRInstallationsVersion.m; path = FirebaseInstallations/Source/Library/FIRInstallationsVersion.m; sourceTree = "<group>"; }; - D4BCB0CAAD65FBB0F6AE920BC1F835D6 /* F14Defaults.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = F14Defaults.h; path = folly/container/detail/F14Defaults.h; sourceTree = "<group>"; }; - D4C7960CE956C5F384C6FCFE3EF90FF5 /* RNPanHandler.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RNPanHandler.h; sourceTree = "<group>"; }; - D4E5EA08053591079B41F2327DF440C6 /* dsp.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = dsp.h; path = src/dsp/dsp.h; sourceTree = "<group>"; }; - D4E8533611C40EE3FCB6EF0597A4181F /* SDImageLoadersManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SDImageLoadersManager.h; path = SDWebImage/Core/SDImageLoadersManager.h; sourceTree = "<group>"; }; - D4F1C532F9BEF20239D3696E29DB5A39 /* FIRBundleUtil.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRBundleUtil.h; path = FirebaseCore/Sources/FIRBundleUtil.h; sourceTree = "<group>"; }; - D5076B2B02335290CFEE9635052C0FE6 /* README.md */ = {isa = PBXFileReference; includeInIndex = 1; path = README.md; sourceTree = "<group>"; }; - D50DC825479EC74D8D93ED11C4676228 /* BugsnagMetadata.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = BugsnagMetadata.m; sourceTree = "<group>"; }; - D53862AF54CF2656B4120C75EA8B3C4B /* RCTSlider.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTSlider.h; sourceTree = "<group>"; }; - D548161C546809C36062E8F56DB53607 /* RNNotificationEventHandler.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNNotificationEventHandler.h; path = RNNotifications/RNNotificationEventHandler.h; sourceTree = "<group>"; }; - D55EECDF82319E1B43BAC813BD004C14 /* OpenSSLHash.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = OpenSSLHash.h; path = folly/ssl/OpenSSLHash.h; sourceTree = "<group>"; }; - D560D51D8AE4A5857AA12820C4EE5243 /* REASetNode.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = REASetNode.m; sourceTree = "<group>"; }; - D567A3C8BCF2DBFD5392F80573BD4FB4 /* evbuffer-internal.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "evbuffer-internal.h"; sourceTree = "<group>"; }; - D570269BE6A7372A8F825DF7468EFFD9 /* RCTTrackingAnimatedNode.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTTrackingAnimatedNode.h; sourceTree = "<group>"; }; - D57829D18EEE1D92E43BA2B93BFD087E /* SafeAssert.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = SafeAssert.cpp; path = folly/lang/SafeAssert.cpp; sourceTree = "<group>"; }; - D5840566E7BBCE62361B020239DE8975 /* Uri-inl.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "Uri-inl.h"; path = "folly/Uri-inl.h"; sourceTree = "<group>"; }; - D5871C9F2D5BC90B1A9AB94AC972717E /* Builtins.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Builtins.h; path = folly/portability/Builtins.h; sourceTree = "<group>"; }; - D5931E02E7529784C22BB8BEB80A6E2D /* SKObject.mm */ = {isa = PBXFileReference; includeInIndex = 1; name = SKObject.mm; path = iOS/Plugins/FlipperKitLayoutPlugin/FlipperKitLayoutPlugin/SKObject.mm; sourceTree = "<group>"; }; - D59570E752E35C2A399AE364FF6C7326 /* BugsnagEvent.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BugsnagEvent.h; sourceTree = "<group>"; }; - D59DB87E3210D516D896651D27738B12 /* PTChannel.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = PTChannel.m; path = peertalk/PTChannel.m; sourceTree = "<group>"; }; - D5AB44E082B868273CCA855943AA3210 /* jsilib-posix.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; path = "jsilib-posix.cpp"; sourceTree = "<group>"; }; + C77975A40EB793754C529E4F1E2C940F /* RCTRedBoxExtraDataViewController.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTRedBoxExtraDataViewController.h; sourceTree = "<group>"; }; + C77AE054E6C98B2867295BD1D1F00451 /* BSGEventUploadFileOperation.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BSGEventUploadFileOperation.h; sourceTree = "<group>"; }; + C7AD3CCE0D3496A960C844190A522D81 /* RCTAutoInsetsProtocol.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTAutoInsetsProtocol.h; sourceTree = "<group>"; }; + C7C1E49AC50F3752C4372BE348DC4C5D /* SDImageTransformer.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = SDImageTransformer.m; path = SDWebImage/Core/SDImageTransformer.m; sourceTree = "<group>"; }; + C7CCD833CEF922D9C81E18E742C0C72E /* RNBridgeModule.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNBridgeModule.m; path = RNNotifications/RNBridgeModule.m; sourceTree = "<group>"; }; + C7E01B8D96A6A5D008B7BD4712B4A77E /* FlipperKitLayoutPlugin.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FlipperKitLayoutPlugin.h; path = iOS/Plugins/FlipperKitLayoutPlugin/FlipperKitLayoutPlugin/FlipperKitLayoutPlugin.h; sourceTree = "<group>"; }; + C7EF2F6D3CC60C1B5A2B7D4166352F68 /* GULSceneDelegateSwizzler.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = GULSceneDelegateSwizzler.m; path = GoogleUtilities/SceneDelegateSwizzler/GULSceneDelegateSwizzler.m; sourceTree = "<group>"; }; + C802EBADEC39C509D1798703A2EF936C /* RCTBackedTextInputDelegateAdapter.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTBackedTextInputDelegateAdapter.h; sourceTree = "<group>"; }; + C812C7A2CA1618D49935EEBB8E88B6B1 /* JSIndexedRAMBundle.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = JSIndexedRAMBundle.h; sourceTree = "<group>"; }; + C8158EFD605094CF9F75D54FC59232C2 /* ReactCommon-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "ReactCommon-prefix.pch"; sourceTree = "<group>"; }; + C8312EE3F5AF0073ACE90C79C7BD5A8B /* BugsnagFileStore.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = BugsnagFileStore.m; sourceTree = "<group>"; }; + C839D914356AF655FE842EE39198CC8F /* RCTSurfaceHostingView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTSurfaceHostingView.h; sourceTree = "<group>"; }; + C84F6A4F3C8674A1931287A3ADC662ED /* DiscriminatedPtr.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = DiscriminatedPtr.h; path = folly/DiscriminatedPtr.h; sourceTree = "<group>"; }; + C8589FA79D7E30BE09851C2648720ADC /* RCTSafeAreaViewManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTSafeAreaViewManager.m; sourceTree = "<group>"; }; + C85F04EE7E0E69179B29E901B9719E47 /* fixed-dtoa.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "fixed-dtoa.h"; path = "double-conversion/fixed-dtoa.h"; sourceTree = "<group>"; }; + C86569314D70F88BEAB99A136A62B607 /* FIRInstallationsBackoffController.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRInstallationsBackoffController.m; path = FirebaseInstallations/Source/Library/InstallationsIDController/FIRInstallationsBackoffController.m; sourceTree = "<group>"; }; + C869C51C8EFE20989F52362C28C4D379 /* TOCropViewController-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "TOCropViewController-prefix.pch"; sourceTree = "<group>"; }; + C8A12A33D06B594ABBEF1E48E3E85A16 /* dsp.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = dsp.h; path = src/dsp/dsp.h; sourceTree = "<group>"; }; + C8A58146358F8008D44793DC28206F26 /* 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 = "<group>"; }; + C8C7E5B7C97E0586A05F011016042666 /* ConnectionDemux.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = ConnectionDemux.h; sourceTree = "<group>"; }; + C8D74C63DDB2002D35AE9930980E43A9 /* SKNamed.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SKNamed.h; path = iOS/Plugins/FlipperKitLayoutPlugin/FlipperKitLayoutPlugin/SKNamed.h; sourceTree = "<group>"; }; + C8F7F7F7E5E13629D7E1BB3CD2BF108C /* FBReactNativeSpec.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = FBReactNativeSpec.debug.xcconfig; sourceTree = "<group>"; }; + C908638D5A76002CB9B80147DC186B84 /* RNDateTimePicker.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = RNDateTimePicker.debug.xcconfig; sourceTree = "<group>"; }; + C909406C508DE8B5CA6D433D712E8F7B /* RCTCxxConvert.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTCxxConvert.m; sourceTree = "<group>"; }; + C90E5B92A22F2756779B3B9CBBDC0969 /* RCTActionSheetManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTActionSheetManager.h; path = React/CoreModules/RCTActionSheetManager.h; sourceTree = "<group>"; }; + C9175199DD1119E2B5B1244B05FBA35C /* RNRootViewGestureRecognizer.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNRootViewGestureRecognizer.m; path = ios/RNRootViewGestureRecognizer.m; sourceTree = "<group>"; }; + C92DFEB7E0726FD3ED0828A3E897A8C8 /* cached-powers.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "cached-powers.h"; path = "double-conversion/cached-powers.h"; sourceTree = "<group>"; }; + C938F168AE77168233713E28A859D703 /* RNPushKitEventListener.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNPushKitEventListener.m; path = RNNotifications/RNPushKitEventListener.m; sourceTree = "<group>"; }; + C9465C6CD1FE3B85A35657A6D579F255 /* FBLPromise+Testing.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "FBLPromise+Testing.h"; path = "Sources/FBLPromises/include/FBLPromise+Testing.h"; sourceTree = "<group>"; }; + C9482309C441C31984AB24DE22790B24 /* React-RCTVibration.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "React-RCTVibration.release.xcconfig"; sourceTree = "<group>"; }; + C951C9A15CDA8B3C95F31CE99FC1BCA8 /* RCTFileReaderModule.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTFileReaderModule.h; path = Libraries/Blob/RCTFileReaderModule.h; sourceTree = "<group>"; }; + C96FA1BE517F6C3D939058B7369032EB /* UMAppLifecycleService.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = UMAppLifecycleService.h; sourceTree = "<group>"; }; + C9842BA82BF3CC6B47590CA475DA33F7 /* FlipperResponder.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FlipperResponder.h; path = xplat/Flipper/FlipperResponder.h; sourceTree = "<group>"; }; + C98E80671720E82C339727D44F2BBBD6 /* HeterogeneousAccess-fwd.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "HeterogeneousAccess-fwd.h"; path = "folly/container/HeterogeneousAccess-fwd.h"; sourceTree = "<group>"; }; + C98F8A6219BAF0591622EA375658E571 /* Core.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Core.h; path = folly/gen/Core.h; sourceTree = "<group>"; }; + C9A2DF75FB35957CAFD0A894B60E521A /* FIRCLSContext.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRCLSContext.h; path = Crashlytics/Crashlytics/Components/FIRCLSContext.h; sourceTree = "<group>"; }; + C9ACC95C7DC421A6470BC58FCCF662D4 /* BugsnagAppWithState+Private.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "BugsnagAppWithState+Private.h"; sourceTree = "<group>"; }; + C9AEDF38717DC2C834E24EACF2A8FE91 /* CodedOutputData.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = CodedOutputData.h; path = Core/CodedOutputData.h; sourceTree = "<group>"; }; + C9CADE12C60EAC1E368649669F8D6BC9 /* Base.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Base.h; path = folly/gen/Base.h; sourceTree = "<group>"; }; + C9D10192873E10EBEFC0FD929A4FDF2A /* EvictingCacheMap.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = EvictingCacheMap.h; path = folly/container/EvictingCacheMap.h; sourceTree = "<group>"; }; + C9E31513156118A9EDB572F3109377DE /* dec_clip_tables.c */ = {isa = PBXFileReference; includeInIndex = 1; name = dec_clip_tables.c; path = src/dsp/dec_clip_tables.c; sourceTree = "<group>"; }; + C9F56858BC85BFB3E1F009D076FC02AC /* RangeSse42.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RangeSse42.h; path = folly/detail/RangeSse42.h; sourceTree = "<group>"; }; + CA0033022F8A9798C812CC343DC76E0D /* TupleOps.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = TupleOps.h; path = folly/experimental/TupleOps.h; sourceTree = "<group>"; }; + CA25F46C0F5D8FD0E0E3722EC50F3AE5 /* FBLPromise+Delay.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "FBLPromise+Delay.m"; path = "Sources/FBLPromises/FBLPromise+Delay.m"; sourceTree = "<group>"; }; + CA3996A48A9A86870035D6DCD2CC6087 /* Arena.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Arena.h; path = folly/memory/Arena.h; sourceTree = "<group>"; }; + CA9017152276C463BA9E96FB3B4A1CAA /* SKTapListenerImpl.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = SKTapListenerImpl.m; path = iOS/Plugins/FlipperKitLayoutPlugin/FlipperKitLayoutPlugin/SKTapListenerImpl.m; sourceTree = "<group>"; }; + CAA13C369F7BB0E14043022141EBCEB3 /* MemoryResource.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = MemoryResource.h; path = folly/memory/MemoryResource.h; sourceTree = "<group>"; }; + CAA3D0AD0975E79689071935C41A3566 /* RCTAssert.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTAssert.h; sourceTree = "<group>"; }; + CAAA28D75E616E4A4D2DDDCB631604FF /* GULSecureCoding.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = GULSecureCoding.h; path = GoogleUtilities/Environment/Private/GULSecureCoding.h; sourceTree = "<group>"; }; + CAAD8D8D804700F912DCF45774D314B6 /* RCTImageUtils.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTImageUtils.h; path = Libraries/Image/RCTImageUtils.h; sourceTree = "<group>"; }; + CAC3F9E889E1D4F78D588FB9FDC6A2BB /* SDWebImagePrefetcher.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SDWebImagePrefetcher.h; path = SDWebImage/Core/SDWebImagePrefetcher.h; sourceTree = "<group>"; }; + CADA196845FBE46E9D06E1F82AC1B987 /* RNConfigReader-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "RNConfigReader-prefix.pch"; sourceTree = "<group>"; }; + CADB2A96D0B4184DE3BC77F3CF165EA4 /* UIView+React.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "UIView+React.h"; sourceTree = "<group>"; }; + CADE3B66C3F30EA04D381F4C01914FD7 /* UniqueInstance.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = UniqueInstance.cpp; path = folly/detail/UniqueInstance.cpp; sourceTree = "<group>"; }; + CAE3B513D2466CE7B9C9D528D733BFB0 /* Flowables.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Flowables.h; path = yarpl/flowable/Flowables.h; sourceTree = "<group>"; }; + CAEA4499C5DCFBCEC518ED80409B8690 /* cost_neon.c */ = {isa = PBXFileReference; includeInIndex = 1; name = cost_neon.c; path = src/dsp/cost_neon.c; sourceTree = "<group>"; }; + CB0546AF46BE382CDD2C473260367D50 /* FIRDependency.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRDependency.m; path = FirebaseCore/Sources/FIRDependency.m; sourceTree = "<group>"; }; + CB11113B67FAB5106E09D71F8C5C8A15 /* FIRCLSMachOBinary.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRCLSMachOBinary.h; path = Crashlytics/Shared/FIRCLSMachO/FIRCLSMachOBinary.h; sourceTree = "<group>"; }; + CB2565E5F040DD7273876E4CA97FE315 /* RCTVersion.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTVersion.m; sourceTree = "<group>"; }; + CB3E46D1ACB9CD54E60CB3F44E6AD260 /* Hardware.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Hardware.h; path = folly/chrono/Hardware.h; sourceTree = "<group>"; }; + CB528CA7E28D15A5C4F3823F7D0AEA62 /* REAConcatNode.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = REAConcatNode.h; sourceTree = "<group>"; }; + CB7745F211E436DA3D41D94069D34EDF /* FBLPromise.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FBLPromise.h; path = Sources/FBLPromises/include/FBLPromise.h; sourceTree = "<group>"; }; + CB7FF62BABFBB4886F29B70EEE27FDAC /* FIRCLSConstants.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRCLSConstants.h; path = Crashlytics/Shared/FIRCLSConstants.h; sourceTree = "<group>"; }; + CBA7F0902B9323448D6EF74B5B5DD7EC /* SSLContext.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SSLContext.h; path = folly/io/async/SSLContext.h; sourceTree = "<group>"; }; + CBBD9597A707810EA51D856CEEC6016F /* RNNotifications.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNNotifications.m; path = RNNotifications/RNNotifications.m; sourceTree = "<group>"; }; + CBC29039A8B61CBE95D13E9B7FABAE07 /* FIRCLSFile.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRCLSFile.m; path = Crashlytics/Crashlytics/Helpers/FIRCLSFile.m; sourceTree = "<group>"; }; + CBDE4A3F073F40553782AFDA8631AFEF /* F14Table.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = F14Table.cpp; path = folly/container/detail/F14Table.cpp; sourceTree = "<group>"; }; + CBEF697AAB8C9A5121EC4DB2FFFF5D8A /* FBLPromise+Do.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "FBLPromise+Do.m"; path = "Sources/FBLPromises/FBLPromise+Do.m"; sourceTree = "<group>"; }; + CBF81007BEDC4D0CC875B7F05BB3F250 /* MemoryIdler.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = MemoryIdler.cpp; path = folly/detail/MemoryIdler.cpp; sourceTree = "<group>"; }; + CC074BE074A2DC008C2AA872F35AD84E /* Builtins.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Builtins.h; path = folly/portability/Builtins.h; sourceTree = "<group>"; }; + CC17FC05F12D85955D1E11D8DBE50B44 /* RCTRootContentView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTRootContentView.h; sourceTree = "<group>"; }; + CC292892402129582C4504C141967A9F /* YGValue.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = YGValue.cpp; path = yoga/YGValue.cpp; sourceTree = "<group>"; }; + CC5A512255584A64F4972E8E168758BB /* RCTJavaScriptExecutor.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTJavaScriptExecutor.h; sourceTree = "<group>"; }; + CC673C15E8F300DD3C214F761942C29D /* FIRComponentContainer.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRComponentContainer.m; path = FirebaseCore/Sources/FIRComponentContainer.m; sourceTree = "<group>"; }; + CC78E64FEF64E7E898E5132651878B0A /* HazptrObj.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = HazptrObj.h; path = folly/synchronization/HazptrObj.h; sourceTree = "<group>"; }; + CC8F8557B9ECBD881EF9387282AD7DDF /* CppAttributes.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = CppAttributes.h; path = folly/CppAttributes.h; sourceTree = "<group>"; }; + CC997E074FE62510CA0786366A9E1389 /* FBLPromise+Async.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "FBLPromise+Async.h"; path = "Sources/FBLPromises/include/FBLPromise+Async.h"; sourceTree = "<group>"; }; + CCC432188685D40CE399E751B2621ADE /* RNLocalize.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNLocalize.h; path = ios/RNLocalize.h; sourceTree = "<group>"; }; + CCDEF6DC9158142C2569FC4EEF7A3135 /* FiberIOExecutor.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FiberIOExecutor.h; path = folly/executors/FiberIOExecutor.h; sourceTree = "<group>"; }; + CCF25425C76A5AF881A528161D70FE39 /* PublishProcessor.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = PublishProcessor.h; path = yarpl/flowable/PublishProcessor.h; sourceTree = "<group>"; }; + CCF666AC4D6885A12F4D06F9A6731EA2 /* RNImageCropPicker-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "RNImageCropPicker-prefix.pch"; sourceTree = "<group>"; }; + CD0AE00988D2C3F989A528440752F896 /* SanitizeThread.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SanitizeThread.h; path = folly/synchronization/SanitizeThread.h; sourceTree = "<group>"; }; + CD2430E94DB5D99A7DCDEC135483F627 /* Octicons.ttf */ = {isa = PBXFileReference; includeInIndex = 1; name = Octicons.ttf; path = Fonts/Octicons.ttf; sourceTree = "<group>"; }; + CD2A64E38F2C7DDE7104C53029CB5899 /* FLEXNetworkObserver.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FLEXNetworkObserver.h; path = iOS/Plugins/FlipperKitNetworkPlugin/SKIOSNetworkPlugin/FLEXNetworkLib/FLEXNetworkObserver.h; sourceTree = "<group>"; }; + CD2B52679D03A6D86CB575504386A4C9 /* FIRCLSFeatures.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRCLSFeatures.h; path = Crashlytics/Crashlytics/Helpers/FIRCLSFeatures.h; sourceTree = "<group>"; }; + CD39FA0EEC45B70E15BE7CA8C7174C22 /* Rsa.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = Rsa.m; sourceTree = "<group>"; }; + CD4A5BA18FD10EFD3CBBB926AD7698F8 /* dec_neon.c */ = {isa = PBXFileReference; includeInIndex = 1; name = dec_neon.c; path = src/dsp/dec_neon.c; sourceTree = "<group>"; }; + CD4BD38B816D63A9E21E04313DF74D02 /* SpinLock.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SpinLock.h; path = folly/SpinLock.h; sourceTree = "<group>"; }; + CD4E5B90BB7D8FF7C8D77F0548A70E5B /* RCTUIUtils.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTUIUtils.m; sourceTree = "<group>"; }; + CD617F1246C514E430DB87BB8CA2FC58 /* react-native-mmkv-storage-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "react-native-mmkv-storage-prefix.pch"; sourceTree = "<group>"; }; + CD6CF0B30CD04C100AD26A0857C5B53C /* YGLayout.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = YGLayout.h; path = yoga/YGLayout.h; sourceTree = "<group>"; }; + CD734B7E29592FC94D2BBA360FA9BCCC /* random_utils.c */ = {isa = PBXFileReference; includeInIndex = 1; name = random_utils.c; path = src/utils/random_utils.c; sourceTree = "<group>"; }; + CD89A9F9C536B61983B6660179DE85A1 /* FirebaseCoreDiagnostics.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = FirebaseCoreDiagnostics.debug.xcconfig; sourceTree = "<group>"; }; + CD91383C2E2E5199BDAD51EA6938AC11 /* ScheduledSingleSubscription.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = ScheduledSingleSubscription.cpp; path = rsocket/internal/ScheduledSingleSubscription.cpp; sourceTree = "<group>"; }; + CD981957F83A187AFBD9176B4BFE4A60 /* TimeoutQueue.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = TimeoutQueue.h; path = folly/TimeoutQueue.h; sourceTree = "<group>"; }; + CD9EA923835F8F0DC093F10A4C280953 /* SingletonStackTrace.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = SingletonStackTrace.cpp; path = folly/detail/SingletonStackTrace.cpp; sourceTree = "<group>"; }; + CDA342781653B4E9B3978FB641B98241 /* FIRCLSURLBuilder.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRCLSURLBuilder.m; path = Crashlytics/Shared/FIRCLSNetworking/FIRCLSURLBuilder.m; sourceTree = "<group>"; }; + CDB02E1C3FD1D61CA44327824DF1C0AD /* StreamThroughputTcp.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = StreamThroughputTcp.cpp; path = rsocket/benchmarks/StreamThroughputTcp.cpp; sourceTree = "<group>"; }; + CDB9FE50CE65AB62B2DC4B171E743E27 /* SDDeviceHelper.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = SDDeviceHelper.m; path = SDWebImage/Private/SDDeviceHelper.m; sourceTree = "<group>"; }; + CDCCC001ECA9202F30A0E96544B193AA /* SetupResumeAcceptor.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = SetupResumeAcceptor.cpp; path = rsocket/internal/SetupResumeAcceptor.cpp; sourceTree = "<group>"; }; + CDCEFBBEF34B5CC0DA26AE9BA7512A0B /* FIRCLSUserLogging.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRCLSUserLogging.m; path = Crashlytics/Crashlytics/Components/FIRCLSUserLogging.m; sourceTree = "<group>"; }; + CDE0A0AD204BBDC0BBF8F8CDD50CF5FF /* Conv.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Conv.h; path = folly/Conv.h; sourceTree = "<group>"; }; + CDE1E005AD34405685A1ADA68CDF9786 /* 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 = "<group>"; }; + CDE3A6B231C42D2F2242F34E5614826A /* MMKV.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = MMKV.h; path = iOS/MMKV/MMKV/MMKV.h; sourceTree = "<group>"; }; + CDF60A607B554908330138E15DC7985F /* RCTImageLoaderProtocol.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTImageLoaderProtocol.h; path = Libraries/Image/RCTImageLoaderProtocol.h; sourceTree = "<group>"; }; + CE07118517AB5518BB53334C458B36DB /* README.md */ = {isa = PBXFileReference; includeInIndex = 1; path = README.md; sourceTree = "<group>"; }; + CE091935A1DE9BA3CB8F71FAADE961E3 /* Demangle.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Demangle.h; path = folly/Demangle.h; sourceTree = "<group>"; }; + CE092D003C0D1363E7125323AFCB0371 /* RCTComponentEvent.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTComponentEvent.h; sourceTree = "<group>"; }; + CE14F644111E4EF96C004A501E7E3F89 /* Pbkdf2.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = Pbkdf2.m; sourceTree = "<group>"; }; + CE19C469714E90E6046C7BB53DFECFFD /* RCTConvert.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTConvert.h; sourceTree = "<group>"; }; + CE3E929EED8EF841424DA775AD25A066 /* react-native-simple-crypto-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "react-native-simple-crypto-dummy.m"; sourceTree = "<group>"; }; + CE4290D6C388B7DC6008E00B28447963 /* TcpDuplexConnection.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = TcpDuplexConnection.cpp; path = rsocket/transports/tcp/TcpDuplexConnection.cpp; sourceTree = "<group>"; }; + CE4ACF55E78CE323566F5EC27CEAB715 /* README.md */ = {isa = PBXFileReference; includeInIndex = 1; path = README.md; sourceTree = "<group>"; }; + CE57DF3068D571E8ED1E135125146E4A /* GDTCORTransport.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = GDTCORTransport.h; path = GoogleDataTransport/GDTCORLibrary/Public/GoogleDataTransport/GDTCORTransport.h; sourceTree = "<group>"; }; + CE660E219D67034FCC5F1706EF1422DF /* FlipperClient.mm */ = {isa = PBXFileReference; includeInIndex = 1; name = FlipperClient.mm; path = iOS/FlipperKit/FlipperClient.mm; sourceTree = "<group>"; }; + CE785EF183FC8FBB7C41FAAE45962088 /* BitVectorCoding.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = BitVectorCoding.h; path = folly/experimental/BitVectorCoding.h; sourceTree = "<group>"; }; + CE8E01EDDBCB255B9EE76CCCEC2040FA /* ShutdownSocketSet.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ShutdownSocketSet.h; path = folly/io/ShutdownSocketSet.h; sourceTree = "<group>"; }; + CE974F0ACCF4111A78D5E2921F862F4B /* EventBase.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = EventBase.h; path = folly/io/async/EventBase.h; sourceTree = "<group>"; }; + CE9BB285173AAB80FD42F78CEB01AE75 /* BugsnagDeviceWithState.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = BugsnagDeviceWithState.m; sourceTree = "<group>"; }; + CEB4E7DC8C2B4AEC6C03C2BF7EF7E3C1 /* RSocketRequester.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = RSocketRequester.cpp; path = rsocket/RSocketRequester.cpp; sourceTree = "<group>"; }; + CED34BF6B5EDBA98C66224C09F1C86DE /* WebRTC.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = WebRTC.framework; path = Frameworks/WebRTC.framework; sourceTree = "<group>"; }; + CEDEC16D242D3AB6AC66BC65C614B468 /* IOBuf.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = IOBuf.h; path = folly/io/IOBuf.h; sourceTree = "<group>"; }; + CEE02671D4EA7343C8E882B0DF465236 /* Future.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Future.h; path = folly/futures/Future.h; sourceTree = "<group>"; }; + CEEE6393BE39442384D5C5561A4317CE /* FIRCLSUserLogging.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRCLSUserLogging.h; path = Crashlytics/Crashlytics/Components/FIRCLSUserLogging.h; sourceTree = "<group>"; }; + CF02DBB9D807079D900DCBC21F9261BC /* RequestResponseRequester.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RequestResponseRequester.h; path = rsocket/statemachine/RequestResponseRequester.h; sourceTree = "<group>"; }; + CF0EF9A6A38D72EBECC7D87700F442CD /* SDImageAPNGCoder.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SDImageAPNGCoder.h; path = SDWebImage/Core/SDImageAPNGCoder.h; sourceTree = "<group>"; }; + CF19331C4BFCF98FDBF977DB471ED58B /* AsyncSocketException.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = AsyncSocketException.cpp; path = folly/io/async/AsyncSocketException.cpp; sourceTree = "<group>"; }; + CF26307A01B535F6B8CCD07C6870014A /* event.c */ = {isa = PBXFileReference; includeInIndex = 1; path = event.c; sourceTree = "<group>"; }; + CF321EFBE81AB8036DEEB087ECEBB0D5 /* RCTExceptionsManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTExceptionsManager.h; path = React/CoreModules/RCTExceptionsManager.h; sourceTree = "<group>"; }; + CF42B5B064BCCC3B835905134AAAD221 /* RCTBorderDrawing.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTBorderDrawing.h; sourceTree = "<group>"; }; + CF430869D640E630ABEAFE06D4BE94B2 /* FIRCoreDiagnistics.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRCoreDiagnistics.h; path = Firebase/CoreDiagnostics/FIRCDLibrary/Public/FIRCoreDiagnistics.h; sourceTree = "<group>"; }; + CF5F818C871CFBBA60572CD3BBD14A6F /* BugsnagSession.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = BugsnagSession.m; sourceTree = "<group>"; }; + CF65E777DED24A463115D265CE916CBF /* REANodesManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = REANodesManager.h; path = ios/REANodesManager.h; sourceTree = "<group>"; }; + CF6B335CA6A24C0E34CE1178B73074ED /* FIRCLSReportManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRCLSReportManager.h; path = Crashlytics/Crashlytics/Controllers/FIRCLSReportManager.h; sourceTree = "<group>"; }; + CF7EADF7ED40D72F88FA05C09CF843DE /* DynamicBoundedQueue.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = DynamicBoundedQueue.h; path = folly/concurrency/DynamicBoundedQueue.h; sourceTree = "<group>"; }; + CF82A4E77B9640A6213D6DEDBD251B47 /* FIRCLSDownloadAndSaveSettingsOperation.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRCLSDownloadAndSaveSettingsOperation.m; path = Crashlytics/Crashlytics/Settings/Operations/FIRCLSDownloadAndSaveSettingsOperation.m; sourceTree = "<group>"; }; + CF8F3C91A2EE74028AE13839CD858594 /* SDWebImageDownloaderConfig.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SDWebImageDownloaderConfig.h; path = SDWebImage/Core/SDWebImageDownloaderConfig.h; sourceTree = "<group>"; }; + CF990913EFA65300DDCC620C8E9CA032 /* React-RCTText.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "React-RCTText.release.xcconfig"; sourceTree = "<group>"; }; + CFA4F2FA3C88A7D35152B22E7D9725B1 /* SmallLocks.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SmallLocks.h; path = folly/synchronization/SmallLocks.h; sourceTree = "<group>"; }; + CFACE0911429A6BA3F871B013D8B2399 /* RNDocumentPicker.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNDocumentPicker.h; path = ios/RNDocumentPicker/RNDocumentPicker.h; sourceTree = "<group>"; }; + CFCA6EC824A804A4BD1EF5D60AD0BAE6 /* UMErrorCodes.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = UMErrorCodes.h; path = UMCore/UMErrorCodes.h; sourceTree = "<group>"; }; + CFD0D773F2FCE6B5C0D56C2842DB0467 /* SKApplicationDescriptor.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = SKApplicationDescriptor.m; path = iOS/Plugins/FlipperKitLayoutPlugin/FlipperKitLayoutPlugin/descriptors/SKApplicationDescriptor.m; sourceTree = "<group>"; }; + CFD4F8C4C727F66BB925CF7F3ECA74D5 /* NSImage+Compatibility.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "NSImage+Compatibility.h"; path = "SDWebImage/Core/NSImage+Compatibility.h"; sourceTree = "<group>"; }; + CFD5CD332C25FA50FADC4490C8D3F493 /* UMModuleRegistryAdapter.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = UMModuleRegistryAdapter.h; sourceTree = "<group>"; }; + CFD5D433CA806CF3EB22FB199349ADC9 /* RNFetchBlobConst.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNFetchBlobConst.h; path = ios/RNFetchBlobConst.h; sourceTree = "<group>"; }; + CFDC3F9FDB51524D20CAE780A18C3DB1 /* LICENSE */ = {isa = PBXFileReference; includeInIndex = 1; path = LICENSE; sourceTree = "<group>"; }; + CFE2AA7DF1860B203B5580F759BF8BE5 /* tree_enc.c */ = {isa = PBXFileReference; includeInIndex = 1; name = tree_enc.c; path = src/enc/tree_enc.c; sourceTree = "<group>"; }; + CFE3123682E7E5697A86D0FB05A801EF /* Sse.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Sse.h; path = folly/detail/Sse.h; sourceTree = "<group>"; }; + D0193B9109E9DE832E6E71E8C07C0270 /* AtomicHashUtils.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = AtomicHashUtils.h; path = folly/detail/AtomicHashUtils.h; sourceTree = "<group>"; }; + D01DCCA04112909D92568516F663C4D4 /* symbolize.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = symbolize.cc; path = src/symbolize.cc; sourceTree = "<group>"; }; + D0264B1AA2FEBFDA697D93A28E7A2766 /* Sched.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Sched.h; path = folly/portability/Sched.h; sourceTree = "<group>"; }; + D02C6ABB28463CB47A581157D3C68849 /* RNSScreenStackHeaderConfig.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNSScreenStackHeaderConfig.m; path = ios/RNSScreenStackHeaderConfig.m; sourceTree = "<group>"; }; + D02F20BF6E1154C083BD69E44AA4A4EC /* RNDeviceInfo.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = RNDeviceInfo.release.xcconfig; sourceTree = "<group>"; }; + D03DD3D9967691C8C338FD67FC15AD65 /* strtod.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = strtod.h; path = "double-conversion/strtod.h"; sourceTree = "<group>"; }; + D041292F71AB80BB90C4B8687EDD24F6 /* WaitOptions.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = WaitOptions.cpp; path = folly/synchronization/WaitOptions.cpp; sourceTree = "<group>"; }; + D06029A9B76A37D836A4F0443C29C50F /* REAOperatorNode.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = REAOperatorNode.m; sourceTree = "<group>"; }; + D076A104DC0E6EFC414C82042DDD1B94 /* EnvUtil.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = EnvUtil.h; path = folly/experimental/EnvUtil.h; sourceTree = "<group>"; }; + D09537518C21CE8E47566D4E1FEDE0DF /* dec.c */ = {isa = PBXFileReference; includeInIndex = 1; name = dec.c; path = src/dsp/dec.c; sourceTree = "<group>"; }; + D0A02E66F3E7FEE85144BD8B7A510334 /* FontAwesome5_Brands.ttf */ = {isa = PBXFileReference; includeInIndex = 1; name = FontAwesome5_Brands.ttf; path = Fonts/FontAwesome5_Brands.ttf; sourceTree = "<group>"; }; + D0CE421CC8A4C9837026846BCDE1A445 /* FramedReader.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = FramedReader.cpp; path = rsocket/framing/FramedReader.cpp; sourceTree = "<group>"; }; + D0DE27E36E7ADC9C6CEA3497966BCFA1 /* REABezierNode.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = REABezierNode.m; sourceTree = "<group>"; }; + D0FE38529652F813FF0712E9EFF2E516 /* RCTBridge.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTBridge.h; sourceTree = "<group>"; }; + D102A25F7247CF3B03CF434C7B0790BA /* filters_neon.c */ = {isa = PBXFileReference; includeInIndex = 1; name = filters_neon.c; path = src/dsp/filters_neon.c; sourceTree = "<group>"; }; + D136BF5DA8A5079F5840F05FE141612C /* Asm.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Asm.h; path = folly/portability/Asm.h; sourceTree = "<group>"; }; + D166197618128ABC3A4BC88F932FB2F5 /* RCTDefines.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTDefines.h; sourceTree = "<group>"; }; + D1695FF45F7EFD0F6B23C0407157CC45 /* BSG_KSCrashContext.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BSG_KSCrashContext.h; sourceTree = "<group>"; }; + D16FF83056B9FD37359BCD7A742ECF77 /* UMKernelService.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = UMKernelService.h; sourceTree = "<group>"; }; + D1A6F404F90E13DBF429526B0388390C /* React-jsinspector-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "React-jsinspector-prefix.pch"; sourceTree = "<group>"; }; + D1AE227B022F913F13000625C0D13D1C /* RCTCxxModule.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTCxxModule.mm; sourceTree = "<group>"; }; + D1B16CC3EAAE53003608FE62B2BCCEAF /* TimerFDTimeoutManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = TimerFDTimeoutManager.h; path = folly/experimental/TimerFDTimeoutManager.h; sourceTree = "<group>"; }; + D2181DD524EF3D415808B30363562037 /* RCTView+SafeAreaCompat.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "RCTView+SafeAreaCompat.m"; path = "ios/SafeAreaView/RCTView+SafeAreaCompat.m"; sourceTree = "<group>"; }; + D222CD863DC0F5C199799A779CD0F404 /* MMKVCore-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "MMKVCore-dummy.m"; sourceTree = "<group>"; }; + D2260EFFF9AA6BC794D7AF479D1764CD /* quant_levels_dec_utils.c */ = {isa = PBXFileReference; includeInIndex = 1; name = quant_levels_dec_utils.c; path = src/utils/quant_levels_dec_utils.c; sourceTree = "<group>"; }; + D22C18325FC64BD5613A3743881012D5 /* RCTConvert+ART.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "RCTConvert+ART.h"; path = "ios/RCTConvert+ART.h"; sourceTree = "<group>"; }; + D23F052527B5208F2253747BA59D8361 /* 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 = "<group>"; }; + D241A7C39A64E6352F74442DF94CADAC /* StorageGetters.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = StorageGetters.h; path = ios/StorageGetters.h; sourceTree = "<group>"; }; + D266F32E36F1D9B01C20BA9CF95F70A5 /* SDWebImageTransition.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = SDWebImageTransition.m; path = SDWebImage/Core/SDWebImageTransition.m; sourceTree = "<group>"; }; + D26C1318C6930A4F53CE24F7FB16A3F5 /* RNGestureHandlerModule.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNGestureHandlerModule.m; path = ios/RNGestureHandlerModule.m; sourceTree = "<group>"; }; + D2788447DB5BB0C9AC58C348C764FAFA /* evmap-internal.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "evmap-internal.h"; sourceTree = "<group>"; }; + D27E33A14AD00A478FDF10B3EE52BF87 /* RCTConvert+FIROptions.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "RCTConvert+FIROptions.m"; path = "ios/RNFBApp/RCTConvert+FIROptions.m"; sourceTree = "<group>"; }; + D28B65567E422C2E83DFD92784EDF81D /* InspectorInterfaces.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; path = InspectorInterfaces.cpp; sourceTree = "<group>"; }; + D28E11947246CB06DA165492B4BDF211 /* UIImage+MultiFormat.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "UIImage+MultiFormat.h"; path = "SDWebImage/Core/UIImage+MultiFormat.h"; sourceTree = "<group>"; }; + D2B5427BED29EAB9A559B33BA7745FDB /* ExceptionWrapper-inl.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "ExceptionWrapper-inl.h"; path = "folly/ExceptionWrapper-inl.h"; sourceTree = "<group>"; }; + D2F48ABCD4510D96E5A6230C5ACC652F /* RNFastImage-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "RNFastImage-dummy.m"; sourceTree = "<group>"; }; + D30D01D6C84A05C120520596009D1D0D /* RCTVirtualTextShadowView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTVirtualTextShadowView.m; sourceTree = "<group>"; }; + D312000E411FF067BEB309C4E6A3A740 /* ScheduledRSocketResponder.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = ScheduledRSocketResponder.cpp; path = rsocket/internal/ScheduledRSocketResponder.cpp; sourceTree = "<group>"; }; + D35714F1DE1B673DFFF46E224E8134DB /* RecordIO.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RecordIO.h; path = folly/io/RecordIO.h; sourceTree = "<group>"; }; + D36008AB5F7A1E20D537906402F61D07 /* RelaxedConcurrentPriorityQueue.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RelaxedConcurrentPriorityQueue.h; path = folly/experimental/RelaxedConcurrentPriorityQueue.h; sourceTree = "<group>"; }; + D360CDBB3F44D031ECD8095EC7D2DA6B /* BSGEventUploadFileOperation.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = BSGEventUploadFileOperation.m; sourceTree = "<group>"; }; + D362E4EC506FE9B68127CA4845F1C89E /* react-native-orientation-locker.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "react-native-orientation-locker.debug.xcconfig"; sourceTree = "<group>"; }; + D36806D4A591121A6A341FD898291244 /* SocketAddress.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SocketAddress.h; path = folly/SocketAddress.h; sourceTree = "<group>"; }; + D36AD3EF5E73964B40ACFADCAB874208 /* ThreadWheelTimekeeper.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = ThreadWheelTimekeeper.cpp; path = folly/futures/ThreadWheelTimekeeper.cpp; sourceTree = "<group>"; }; + D374BA343D3CF4DC839241C8B3F14C24 /* DestructorCheck.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = DestructorCheck.h; path = folly/io/async/DestructorCheck.h; sourceTree = "<group>"; }; + D37A0A62C432572579D7169FF41FE511 /* fixed-dtoa.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "fixed-dtoa.h"; path = "double-conversion/fixed-dtoa.h"; sourceTree = "<group>"; }; + D38A1786D45DEDF79279416210586D76 /* BugsnagFileStore.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BugsnagFileStore.h; sourceTree = "<group>"; }; + D38D8A458E5252FB25BD211D87029119 /* ieee.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ieee.h; path = "double-conversion/ieee.h"; sourceTree = "<group>"; }; + D3C193A820700A9A3C5A490A4C0B0692 /* react-native-safe-area-context.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "react-native-safe-area-context.debug.xcconfig"; sourceTree = "<group>"; }; + D3C90EEF0D081912A0C00F1B69E4D849 /* GULReachabilityChecker+Internal.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "GULReachabilityChecker+Internal.h"; path = "GoogleUtilities/Reachability/GULReachabilityChecker+Internal.h"; sourceTree = "<group>"; }; + D4007D15ED9F7F0D108C1418BC3B81F0 /* RNConfigReader.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNConfigReader.m; path = ios/RNConfigReader.m; sourceTree = "<group>"; }; + D40109BDD7D7379FCEE56F266A8BEE2C /* RCTUIImageViewAnimated.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTUIImageViewAnimated.m; sourceTree = "<group>"; }; + D401EC1775668C9F237B9E67D6025E9F /* FutureExecutor.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FutureExecutor.h; path = folly/executors/FutureExecutor.h; sourceTree = "<group>"; }; + D4138AB14AC0B59849EEE029BF2AFD4B /* DelayedDestruction.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = DelayedDestruction.h; path = folly/io/async/DelayedDestruction.h; sourceTree = "<group>"; }; + D41720A5821F5E5A55A3AF6F6AE932DC /* zh-Hans.lproj */ = {isa = PBXFileReference; includeInIndex = 1; name = "zh-Hans.lproj"; path = "ios/QBImagePicker/QBImagePicker/zh-Hans.lproj"; sourceTree = "<group>"; }; + D42EB438306BF26D95C38B486BEA38F9 /* rescaler_mips32.c */ = {isa = PBXFileReference; includeInIndex = 1; name = rescaler_mips32.c; path = src/dsp/rescaler_mips32.c; sourceTree = "<group>"; }; + D42F2375680C6A11007073F4136BFBBC /* mux.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = mux.h; path = src/webp/mux.h; sourceTree = "<group>"; }; + D42FA47D8CEE27E2BE4400033B9B7749 /* EXWebBrowser.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = EXWebBrowser.podspec; sourceTree = "<group>"; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; + D43565053E48A0F015E2978B5F8D68A2 /* CachelinePadded.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = CachelinePadded.h; path = folly/CachelinePadded.h; sourceTree = "<group>"; }; + D4379BCDE544B189C14DEA4F7CDC496D /* BugsnagClient.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BugsnagClient.h; sourceTree = "<group>"; }; + D44C0140539A59A18FE89CE33D234A04 /* MessageTypes.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; path = MessageTypes.cpp; sourceTree = "<group>"; }; + D452B44256503340137A8432B0219204 /* README.md */ = {isa = PBXFileReference; includeInIndex = 1; path = README.md; sourceTree = "<group>"; }; + D459413E258EF08FE6AD5DE93DE10076 /* FIRErrors.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRErrors.m; path = FirebaseCore/Sources/FIRErrors.m; sourceTree = "<group>"; }; + D45BCFCFCF1DB25C0A44A81037793A8C /* AutoTimer.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = AutoTimer.h; path = folly/experimental/AutoTimer.h; sourceTree = "<group>"; }; + D4658B75F7F786045BE392B677FA6E25 /* YogaKit-umbrella.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "YogaKit-umbrella.h"; sourceTree = "<group>"; }; + D477392FB9B2985D4B560FC9F00F60D9 /* evdns.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = evdns.h; path = include/evdns.h; sourceTree = "<group>"; }; + D479C7BF3A8162D27ABCAB7AB12A6B80 /* jsi.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; path = jsi.cpp; sourceTree = "<group>"; }; + D4909276A1CF7396B4D98AC5284DBF95 /* RCTImageCache.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTImageCache.h; path = Libraries/Image/RCTImageCache.h; sourceTree = "<group>"; }; + D4B18576E0547224F89BEB005146149C /* SDImageCoderHelper.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SDImageCoderHelper.h; path = SDWebImage/Core/SDImageCoderHelper.h; sourceTree = "<group>"; }; + D4BE5218ADF076BE760CD30650DFEFE2 /* GDTCORTransformer.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = GDTCORTransformer.m; path = GoogleDataTransport/GDTCORLibrary/GDTCORTransformer.m; sourceTree = "<group>"; }; + D4C63E5B2D79338D7C4D0A1E7587481F /* RCTActionSheetManager.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTActionSheetManager.mm; sourceTree = "<group>"; }; + D4CC268A186C2665E8DAB88EEFCD9225 /* RNCAsyncStorage-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "RNCAsyncStorage-dummy.m"; sourceTree = "<group>"; }; + D4D6CCBBE78B400B6423476C4419EEDD /* Baton.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Baton.h; path = folly/synchronization/Baton.h; sourceTree = "<group>"; }; + D4E00FFFEE4E93E4614D889757FDD006 /* ManualTimekeeper.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ManualTimekeeper.h; path = folly/futures/ManualTimekeeper.h; sourceTree = "<group>"; }; + D4E6B10B027589CC0D13904E5652C677 /* FBLPromise+Async.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "FBLPromise+Async.m"; path = "Sources/FBLPromises/FBLPromise+Async.m"; sourceTree = "<group>"; }; + D4F83753BDBC8E000744C90B985EE321 /* json_pointer.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = json_pointer.cpp; path = folly/json_pointer.cpp; sourceTree = "<group>"; }; + D505B1982CC2CFB96E2D494BEF603E08 /* EXKeepAwake-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "EXKeepAwake-prefix.pch"; sourceTree = "<group>"; }; + D50C4EFDCEEF6D65DA96B2B16A3BFCF7 /* FBString.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FBString.h; path = folly/FBString.h; sourceTree = "<group>"; }; + D51D9799E96AB9D38F807DEE930E673B /* RNCAsyncStorage-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "RNCAsyncStorage-prefix.pch"; sourceTree = "<group>"; }; + D5766EF7E497D250E2A30F945F948659 /* notificationsEvents.md */ = {isa = PBXFileReference; includeInIndex = 1; name = notificationsEvents.md; path = docs/notificationsEvents.md; sourceTree = "<group>"; }; + D587B7794B90AFAA1B084608EBAF0AF4 /* SDAnimatedImageRep.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = SDAnimatedImageRep.m; path = SDWebImage/Core/SDAnimatedImageRep.m; sourceTree = "<group>"; }; + D593B296E32B92BB806548E326673D7A /* GDTCORTransformer.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = GDTCORTransformer.h; path = GoogleDataTransport/GDTCORLibrary/Private/GDTCORTransformer.h; sourceTree = "<group>"; }; + D599233F99B35B87EF994B4D5B1C71BC /* QBAlbumCell.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = QBAlbumCell.m; path = ios/QBImagePicker/QBImagePicker/QBAlbumCell.m; sourceTree = "<group>"; }; + D59C2BB4EEDA2307FB27DE5D3C646762 /* React-perflogger.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "React-perflogger.debug.xcconfig"; sourceTree = "<group>"; }; + D5BA47AD0D188088BC8EC8DB31B99804 /* evutil.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = evutil.h; path = include/evutil.h; sourceTree = "<group>"; }; + D5BAB0F7D0CACDD4F459851168D9D9C5 /* rn-fetch-blob.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = "rn-fetch-blob.podspec"; sourceTree = "<group>"; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; + D5BCB869F0778DBD7819480C485B6BCB /* UMCore-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "UMCore-dummy.m"; sourceTree = "<group>"; }; D5C775614AC76D44CECB6BE08B022F1F /* libReactCommon.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; name = libReactCommon.a; path = libReactCommon.a; sourceTree = BUILT_PRODUCTS_DIR; }; - D5C9EB3DD6251F36240159CAB9F95695 /* RNNotificationCenter.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNNotificationCenter.m; path = RNNotifications/RNNotificationCenter.m; sourceTree = "<group>"; }; - D5CAFDCB85306D5AFD07084BA1737101 /* SDWebImageWebPCoder.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SDWebImageWebPCoder.h; path = SDWebImageWebPCoder/Module/SDWebImageWebPCoder.h; sourceTree = "<group>"; }; - D5D99E68D42DB1FFA29F7AD244CD2F3C /* REAOperatorNode.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = REAOperatorNode.h; sourceTree = "<group>"; }; - D5E55A4EAD292CC5AB8F7832A3894AAB /* RCTImageUtils.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTImageUtils.h; path = Libraries/Image/RCTImageUtils.h; sourceTree = "<group>"; }; - D5E8E5688B76AA91CD7061A0CF7F37A9 /* NSImage+Compatibility.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "NSImage+Compatibility.m"; path = "SDWebImage/Core/NSImage+Compatibility.m"; sourceTree = "<group>"; }; - D6140EAA04937CCDC62246EB577E04F8 /* React.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = React.debug.xcconfig; sourceTree = "<group>"; }; - D61D7C469D560268F734071F40F27401 /* RCTImageShadowView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTImageShadowView.h; path = Libraries/Image/RCTImageShadowView.h; sourceTree = "<group>"; }; - D6367FCCF442159AB5CD62FC726DC2DA /* FIRCLSFABHost.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRCLSFABHost.h; path = Crashlytics/Shared/FIRCLSFABHost.h; sourceTree = "<group>"; }; - D64E5F3C5FEBB3D23A3B391A2C24C43A /* SpookyHashV1.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SpookyHashV1.h; path = folly/hash/SpookyHashV1.h; sourceTree = "<group>"; }; - D64EC9825D8C6C4D2EE46C9A5061CA48 /* RCTWrapperViewController.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTWrapperViewController.m; sourceTree = "<group>"; }; + D5C829CCC3F442A701CD2E2F09B739CB /* RNFBJSON.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNFBJSON.m; path = ios/RNFBApp/RNFBJSON.m; sourceTree = "<group>"; }; + D5C9DB500B1E39595B959B32B30E2C9C /* RNCSafeAreaShadowView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNCSafeAreaShadowView.h; path = ios/SafeAreaView/RNCSafeAreaShadowView.h; sourceTree = "<group>"; }; + D5CBA7880C6B559A0675AEB1AFA1D486 /* SKButtonDescriptor.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SKButtonDescriptor.h; path = iOS/Plugins/FlipperKitLayoutPlugin/FlipperKitLayoutPlugin/descriptors/SKButtonDescriptor.h; sourceTree = "<group>"; }; + D5CBF2336F4095BC29EB6E32B6EDAED5 /* DoubleConversion.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = DoubleConversion.debug.xcconfig; sourceTree = "<group>"; }; + D5CEF3BE626A0F51048E3A98AD749977 /* Futex.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = Futex.cpp; path = folly/detail/Futex.cpp; sourceTree = "<group>"; }; + D5D4A35C039B449EEE26253887AF56B5 /* MMKVCore-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "MMKVCore-prefix.pch"; sourceTree = "<group>"; }; + D5DCE34AE44ABDAD954DBB33B552D7F0 /* Unistd.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = Unistd.cpp; path = folly/portability/Unistd.cpp; sourceTree = "<group>"; }; + D5DD2C250927C510A2B49BFA22469A45 /* RNCSafeAreaProviderManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNCSafeAreaProviderManager.m; path = ios/SafeAreaView/RNCSafeAreaProviderManager.m; sourceTree = "<group>"; }; + D5DF871E5541F85348A02BB5A56F8F6D /* DistributedMutex-inl.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "DistributedMutex-inl.h"; path = "folly/synchronization/DistributedMutex-inl.h"; sourceTree = "<group>"; }; + D5EAA763AC237A7062340F64F2368CED /* RCTConvert+FIRApp.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "RCTConvert+FIRApp.m"; path = "ios/RNFBApp/RCTConvert+FIRApp.m"; sourceTree = "<group>"; }; + D5F1F178A9CE6827C6BDFADD69C75AF4 /* REAStyleNode.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = REAStyleNode.m; sourceTree = "<group>"; }; + D5FACD49A2D051595D62C927DA9FFDFB /* FIRCLSCrashedMarkerFile.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRCLSCrashedMarkerFile.h; path = Crashlytics/Crashlytics/Components/FIRCLSCrashedMarkerFile.h; sourceTree = "<group>"; }; + D60FBEC67E263236021D52314FE75310 /* SafeAreaSpacerView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = SafeAreaSpacerView.m; sourceTree = "<group>"; }; + D61E3A2684B2F705B24D04DD0741ECF6 /* NSValue+Interpolation.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "NSValue+Interpolation.h"; sourceTree = "<group>"; }; + D62A9D54E64E898C18AEC393B07FC575 /* ARTNodeManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = ARTNodeManager.h; sourceTree = "<group>"; }; + D62F9413E9543BF9437FF1A09736306A /* RCTPlatform.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTPlatform.mm; sourceTree = "<group>"; }; D67A8477403D4FF04D10186E20CBF92B /* Pods-defaults-Rocket.Chat.modulemap */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.module; path = "Pods-defaults-Rocket.Chat.modulemap"; sourceTree = "<group>"; }; - D688BD0666F5655DF0C68C2D97CA9956 /* AtomicStruct.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = AtomicStruct.h; path = folly/synchronization/AtomicStruct.h; sourceTree = "<group>"; }; - D698A54C40003FD1EE0618F5FCF5A4ED /* Access.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Access.h; path = folly/container/Access.h; sourceTree = "<group>"; }; - D6B54A82E94BF7B2CFD4B0174A07DE6C /* RCTRawTextShadowView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTRawTextShadowView.m; sourceTree = "<group>"; }; - D6BB074FFB236F462289D831184046B2 /* rn-fetch-blob-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "rn-fetch-blob-prefix.pch"; sourceTree = "<group>"; }; - D6BB52881A2A5900E7C1260BC6523D0A /* RCTRedBoxExtraDataViewController.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTRedBoxExtraDataViewController.h; sourceTree = "<group>"; }; - D6C5BB22211A7F56D8953B1A2AE24CEC /* FIRConfiguration.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRConfiguration.h; path = FirebaseCore/Sources/Public/FIRConfiguration.h; sourceTree = "<group>"; }; - D6CA99BC0704966CBE320E4264148590 /* UMFileSystemInterface.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = UMFileSystemInterface.release.xcconfig; sourceTree = "<group>"; }; - D6CB014D6F64A3F8BA9B0124907F5578 /* alpha_processing_sse41.c */ = {isa = PBXFileReference; includeInIndex = 1; name = alpha_processing_sse41.c; path = src/dsp/alpha_processing_sse41.c; sourceTree = "<group>"; }; - D6DA5D70F73C5260C38572CAB82003DB /* EventUtil.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = EventUtil.h; path = folly/io/async/EventUtil.h; sourceTree = "<group>"; }; - D6E2DBCF4B67D998B4EB021A9E07EAC8 /* GULReachabilityChecker.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = GULReachabilityChecker.h; path = GoogleUtilities/Reachability/Private/GULReachabilityChecker.h; sourceTree = "<group>"; }; - D6FA4F6C91F2A4BED4534715D40E0D1F /* BugsnagCollections.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BugsnagCollections.h; sourceTree = "<group>"; }; - D700921BD027F1AA96650E3B71E9DC89 /* REANodesManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = REANodesManager.m; path = ios/REANodesManager.m; sourceTree = "<group>"; }; - D701A1CF1CB4D49D5A42D1C4A0CC106E /* UnboundedBlockingQueue.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = UnboundedBlockingQueue.h; path = folly/executors/task_queue/UnboundedBlockingQueue.h; sourceTree = "<group>"; }; - D7158FAE9DF446090D9C9B2C3C24BD46 /* React-jsi-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "React-jsi-prefix.pch"; sourceTree = "<group>"; }; - D725CF596A4AFE33281DA292DE582717 /* FBLazyVector.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = FBLazyVector.debug.xcconfig; sourceTree = "<group>"; }; - D72BB39F5E1E5882B7FBD679B664534B /* ConcurrentSkipList.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ConcurrentSkipList.h; path = folly/ConcurrentSkipList.h; sourceTree = "<group>"; }; - D72FD378C4B1FCB1EF395201B2FA0620 /* filters_mips_dsp_r2.c */ = {isa = PBXFileReference; includeInIndex = 1; name = filters_mips_dsp_r2.c; path = src/dsp/filters_mips_dsp_r2.c; sourceTree = "<group>"; }; - D73071E48F25255F5B10C19EEF913046 /* FLEXNetworkRecorder.mm */ = {isa = PBXFileReference; includeInIndex = 1; name = FLEXNetworkRecorder.mm; path = iOS/Plugins/FlipperKitNetworkPlugin/SKIOSNetworkPlugin/FLEXNetworkLib/FLEXNetworkRecorder.mm; sourceTree = "<group>"; }; - D73244402DD95F9ACCC241FA741963AD /* RNFetchBlobRequest.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNFetchBlobRequest.h; path = ios/RNFetchBlobRequest.h; sourceTree = "<group>"; }; - D7356C5A625D90CA214661C8C6D6F794 /* SDAnimatedImageRep.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SDAnimatedImageRep.h; path = SDWebImage/Core/SDAnimatedImageRep.h; sourceTree = "<group>"; }; - D746FBE13B9C27EC693E1F439D3AB800 /* HermesExecutorFactory.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = HermesExecutorFactory.h; sourceTree = "<group>"; }; - D74ABFF01BBF287ECFE62FA3E7B8555B /* Sched.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Sched.h; path = folly/portability/Sched.h; sourceTree = "<group>"; }; - D75A2CFEEF6B8B25305A84FB7831CDD0 /* GDTCORReachability.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = GDTCORReachability.m; path = GoogleDataTransport/GDTCORLibrary/GDTCORReachability.m; sourceTree = "<group>"; }; - D76E8495FF3C4F45E05A1D077E2B3DF0 /* bit_writer_utils.c */ = {isa = PBXFileReference; includeInIndex = 1; name = bit_writer_utils.c; path = src/utils/bit_writer_utils.c; sourceTree = "<group>"; }; - D77046677C44FB3A05A464AB21EAB128 /* GDTCORConsoleLogger.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = GDTCORConsoleLogger.m; path = GoogleDataTransport/GDTCORLibrary/GDTCORConsoleLogger.m; sourceTree = "<group>"; }; - D78EEF985308C79B8FBBEB68CCDDFABD /* RCTDisplayWeakRefreshable.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTDisplayWeakRefreshable.h; path = Libraries/Image/RCTDisplayWeakRefreshable.h; sourceTree = "<group>"; }; - D796A028626A993301936F75D47B1E5F /* lossless_enc_msa.c */ = {isa = PBXFileReference; includeInIndex = 1; name = lossless_enc_msa.c; path = src/dsp/lossless_enc_msa.c; sourceTree = "<group>"; }; - D79ECBAD9D023B23590DA3F9860C4878 /* BSG_KSJSONCodec.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BSG_KSJSONCodec.h; sourceTree = "<group>"; }; - D7BEB610C4B614A30006C73B615D4BD0 /* Libgen.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Libgen.h; path = folly/portability/Libgen.h; sourceTree = "<group>"; }; - D7D9D01F1D4E888BD17D69E7D442D3DF /* WTCallback.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = WTCallback.h; path = folly/futures/WTCallback.h; sourceTree = "<group>"; }; - D7E5EC94D71759DD5DA4BF40DACD91FA /* FIRCLSRecordApplication.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRCLSRecordApplication.h; path = Crashlytics/Crashlytics/Models/Record/FIRCLSRecordApplication.h; sourceTree = "<group>"; }; - D80FDE7E34FA2982674064A6D85232B8 /* vp8l_enc.c */ = {isa = PBXFileReference; includeInIndex = 1; name = vp8l_enc.c; path = src/enc/vp8l_enc.c; sourceTree = "<group>"; }; - D811B83316C917BE0F602B3C2A560270 /* filter_enc.c */ = {isa = PBXFileReference; includeInIndex = 1; name = filter_enc.c; path = src/enc/filter_enc.c; sourceTree = "<group>"; }; - D844116E0E005795AB0B48CDE2A3E004 /* neon.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = neon.h; path = src/dsp/neon.h; sourceTree = "<group>"; }; - D84AD1D3232B0FAF8CBACB1950484819 /* RCTSourceCode.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTSourceCode.h; path = React/CoreModules/RCTSourceCode.h; sourceTree = "<group>"; }; - D85BA8C9AB92AE4535FB92658398E81D /* React-callinvoker.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "React-callinvoker.debug.xcconfig"; sourceTree = "<group>"; }; - D86615BEDC991166E3F53C91B920E5FC /* RNFBPreferences.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNFBPreferences.h; path = ios/RNFBApp/RNFBPreferences.h; sourceTree = "<group>"; }; - D86896FB5858820428D3DDDC6CD96A55 /* SDImageAssetManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = SDImageAssetManager.m; path = SDWebImage/Private/SDImageAssetManager.m; sourceTree = "<group>"; }; - D8698ACE66F07F626C2B700C0BA8D62B /* FiberIOExecutor.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FiberIOExecutor.h; path = folly/executors/FiberIOExecutor.h; sourceTree = "<group>"; }; - D8A89591EFBF3724820EDA6841A165CE /* SaturatingSemaphore.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SaturatingSemaphore.h; path = folly/synchronization/SaturatingSemaphore.h; sourceTree = "<group>"; }; - D8B03F145549407E02F672A812CBA01E /* RCTComponentData.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTComponentData.h; sourceTree = "<group>"; }; - D8D01FDBB13E714AD1DA9DEFE7609ACE /* UMCameraInterface.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = UMCameraInterface.h; path = UMCameraInterface/UMCameraInterface.h; sourceTree = "<group>"; }; - D8DC5D16E9213B3F499E8791592C12EC /* FIRCLSSymbolResolver.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRCLSSymbolResolver.h; path = Crashlytics/Crashlytics/Models/FIRCLSSymbolResolver.h; sourceTree = "<group>"; }; - D8E85493FCB78658F657C88B19877EB1 /* RCTSurfaceHostingView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTSurfaceHostingView.h; sourceTree = "<group>"; }; - D900AC4A16FB055481C7D4BB42394972 /* RCTLog.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTLog.h; sourceTree = "<group>"; }; - D900E79A9D933E573EB8C221244030C1 /* SKTouch.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = SKTouch.m; path = iOS/Plugins/FlipperKitLayoutPlugin/FlipperKitLayoutPlugin/SKTouch.m; sourceTree = "<group>"; }; - D90A516468223E4268E626853F28BA1E /* ScheduledSingleObserver.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ScheduledSingleObserver.h; path = rsocket/internal/ScheduledSingleObserver.h; sourceTree = "<group>"; }; - D9104C131E539E312ABC6D17CDBFF06A /* TimekeeperScheduledExecutor.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = TimekeeperScheduledExecutor.cpp; path = folly/executors/TimekeeperScheduledExecutor.cpp; sourceTree = "<group>"; }; - D9162D718DE8040C51ADEB85D83D40F4 /* SDWebImageCompat.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SDWebImageCompat.h; path = SDWebImage/Core/SDWebImageCompat.h; sourceTree = "<group>"; }; - D928F49253BF59C0396D955092552CE1 /* BSG_KSCrashAdvanced.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BSG_KSCrashAdvanced.h; sourceTree = "<group>"; }; - D93CBCD48E40E7740CBB907E63A0A0DD /* SDImageAssetManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SDImageAssetManager.h; path = SDWebImage/Private/SDImageAssetManager.h; sourceTree = "<group>"; }; - D967740974DAB66D1FEA4D0A3D483511 /* RSocketRequester.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = RSocketRequester.cpp; path = rsocket/RSocketRequester.cpp; sourceTree = "<group>"; }; - D967B64E4416C42C87B408BA762B2AB4 /* WaitOptions.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = WaitOptions.h; path = folly/synchronization/WaitOptions.h; sourceTree = "<group>"; }; - D96F714DCDDAD43778C9DE25AB46587B /* AsyncSocket.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = AsyncSocket.cpp; path = folly/io/async/AsyncSocket.cpp; sourceTree = "<group>"; }; - D980C0A62EE8742795B8DE601B15EB93 /* SingletonThreadLocal.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SingletonThreadLocal.h; path = folly/SingletonThreadLocal.h; sourceTree = "<group>"; }; - D9891CE4FDE6F86E8136EB0A7555C8DD /* GDTCCTNanopbHelpers.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = GDTCCTNanopbHelpers.h; path = GoogleDataTransportCCTSupport/GDTCCTLibrary/Private/GDTCCTNanopbHelpers.h; sourceTree = "<group>"; }; - D9B8B92F24A47BEF9C95B210D292BA64 /* RCTInputAccessoryView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTInputAccessoryView.h; sourceTree = "<group>"; }; - D9BD28134A368C0AFA8B5E2C29BC4702 /* FIRInstallationsIIDTokenStore.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRInstallationsIIDTokenStore.h; path = FirebaseInstallations/Source/Library/IIDMigration/FIRInstallationsIIDTokenStore.h; sourceTree = "<group>"; }; - D9D89707F1744A3D93B48B799E2D5D7C /* RNFBVersion.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNFBVersion.h; path = ios/RNFBApp/RNFBVersion.h; sourceTree = "<group>"; }; + D67ACC2314FA2B658F92E5F068BFEE0F /* AtFork.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = AtFork.h; path = folly/detail/AtFork.h; sourceTree = "<group>"; }; + D68049508BF0E5CC421C7CC5DB78B59A /* GroupVarintDetail.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = GroupVarintDetail.h; path = folly/detail/GroupVarintDetail.h; sourceTree = "<group>"; }; + D68A584080E8CF76C94BCDFFDDF02C52 /* ConstexprMath.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ConstexprMath.h; path = folly/ConstexprMath.h; sourceTree = "<group>"; }; + D68DA410094157A0BA34ABD08B1E5535 /* ARTRenderable.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ARTRenderable.h; path = ios/ARTRenderable.h; sourceTree = "<group>"; }; + D6918D770542844C8CDEABAEE8FE34CE /* UMReactNativeAdapter.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = UMReactNativeAdapter.release.xcconfig; sourceTree = "<group>"; }; + D694D851AAAA37B1C0C34BAE8627F0E9 /* Inspector.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; path = Inspector.cpp; sourceTree = "<group>"; }; + D69C5CC76F15D9125DE7B037BAC658C1 /* RNRootView-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "RNRootView-prefix.pch"; sourceTree = "<group>"; }; + D69FE965D8470E992659F8AD229E1282 /* SDWeakProxy.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SDWeakProxy.h; path = SDWebImage/Private/SDWeakProxy.h; sourceTree = "<group>"; }; + D6A0958D442C7ED7922F3B3CA4AB56D1 /* FIRCLSFABAsyncOperation.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRCLSFABAsyncOperation.m; path = Crashlytics/Shared/FIRCLSOperation/FIRCLSFABAsyncOperation.m; sourceTree = "<group>"; }; + D6A9263E428455178C45DF3EA6071D0A /* UMModuleRegistryProvider.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = UMModuleRegistryProvider.h; sourceTree = "<group>"; }; + D6B0C7E4DEBDBB2E175176E7E5FD6FAC /* DynamicParser.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = DynamicParser.h; path = folly/experimental/DynamicParser.h; sourceTree = "<group>"; }; + D6B274FFC451DF078D950A38CA3B7134 /* Color+Interpolation.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "Color+Interpolation.h"; sourceTree = "<group>"; }; + D6CB5BF60AC415D82DF23C7F7BEDC080 /* RCTImageCache.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTImageCache.m; sourceTree = "<group>"; }; + D6DC43FAAB93BD1B22373A30CE42C566 /* UIView+WebCache.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "UIView+WebCache.m"; path = "SDWebImage/Core/UIView+WebCache.m"; sourceTree = "<group>"; }; + D6E7E5C984A7CE02FD4AD0154690A7A0 /* React-runtimeexecutor.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "React-runtimeexecutor.debug.xcconfig"; sourceTree = "<group>"; }; + D6E9C366366BC0F940F7C5C0FA27DCDC /* SDWebImageWebPCoder.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SDWebImageWebPCoder.h; path = SDWebImageWebPCoder/Module/SDWebImageWebPCoder.h; sourceTree = "<group>"; }; + D6EDE6F5C49C2FF4A67647D6BE2F1A41 /* GoogleDataTransport.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = GoogleDataTransport.debug.xcconfig; sourceTree = "<group>"; }; + D6F26ACEC8B343A1960C63C5B6C5CB66 /* bignum-dtoa.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "bignum-dtoa.h"; path = "double-conversion/bignum-dtoa.h"; sourceTree = "<group>"; }; + D734C3BFED52867A5EF766D67D2FE2CD /* React-cxxreact.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "React-cxxreact.release.xcconfig"; sourceTree = "<group>"; }; + D738BCAB7F79BC193091F33A4DE06B44 /* YGValue.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = YGValue.h; path = yoga/YGValue.h; sourceTree = "<group>"; }; + D74682771CDC57AD1A454E56564F1CEC /* hermes-engine.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "hermes-engine.release.xcconfig"; sourceTree = "<group>"; }; + D74B7EF944F7B4B6E8616A0630290244 /* FBLPromise+Testing.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "FBLPromise+Testing.m"; path = "Sources/FBLPromises/FBLPromise+Testing.m"; sourceTree = "<group>"; }; + D75B3D83DFE90E4D889F8DEE8C4CE40F /* SDWebImageWebPCoder.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = SDWebImageWebPCoder.debug.xcconfig; sourceTree = "<group>"; }; + D76534D1CBA2C034F50357BECE4CC28D /* FlipperStep.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FlipperStep.h; path = xplat/Flipper/FlipperStep.h; sourceTree = "<group>"; }; + D769384A5426A2E4EF2F1B1EBE235883 /* TOCropViewController.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = TOCropViewController.release.xcconfig; sourceTree = "<group>"; }; + D771DA0527D7B0DDB41B94E3FE5842CE /* TurboCxxModule.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = TurboCxxModule.h; sourceTree = "<group>"; }; + D7738A887BFB896B8399D095EB5585B5 /* SingletonStackTrace.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = SingletonStackTrace.cpp; path = folly/detail/SingletonStackTrace.cpp; sourceTree = "<group>"; }; + D78B65C229F9D0E7291DEFF4B6725894 /* SSLOptions.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SSLOptions.h; path = folly/io/async/SSLOptions.h; sourceTree = "<group>"; }; + D78C9FED5967ECD5F3492058FC4D879D /* Rcu-inl.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "Rcu-inl.h"; path = "folly/synchronization/Rcu-inl.h"; sourceTree = "<group>"; }; + D79AC027A1B23F36045E29A37C63DAA1 /* Rcu.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = Rcu.cpp; path = folly/synchronization/Rcu.cpp; sourceTree = "<group>"; }; + D7C1D107B6E2F4C60FFF533308092BFF /* upsampling_neon.c */ = {isa = PBXFileReference; includeInIndex = 1; name = upsampling_neon.c; path = src/dsp/upsampling_neon.c; sourceTree = "<group>"; }; + D7C3074D50DEDDB9AFFB91F3D45C7179 /* FrameType.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FrameType.h; path = rsocket/framing/FrameType.h; sourceTree = "<group>"; }; + D808E4B04022E80B4F0087DC180B0FC4 /* RCTProfileTrampoline-arm.S */ = {isa = PBXFileReference; includeInIndex = 1; path = "RCTProfileTrampoline-arm.S"; sourceTree = "<group>"; }; + D82E6DE977BA24F6B59DC331128C89DF /* react-native-restart.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "react-native-restart.debug.xcconfig"; sourceTree = "<group>"; }; + D83E5303B275BAFD350DF4571C18EBF2 /* PropagateConst.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = PropagateConst.h; path = folly/lang/PropagateConst.h; sourceTree = "<group>"; }; + D842E174A97F11F09A4DE8DACF7BE73A /* RCTUtilsUIOverride.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTUtilsUIOverride.h; sourceTree = "<group>"; }; + D845824BFFC5155C9C129FCC79DA6890 /* RCTImageView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTImageView.h; path = Libraries/Image/RCTImageView.h; sourceTree = "<group>"; }; + D85A369EFBA4BBD7BB63FCC9783D4A51 /* LockFreeRingBuffer.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = LockFreeRingBuffer.h; path = folly/experimental/LockFreeRingBuffer.h; sourceTree = "<group>"; }; + D87C636CDA6C03A6EE02D87E582E9826 /* Parallel.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Parallel.h; path = folly/gen/Parallel.h; sourceTree = "<group>"; }; + D8856188E55D23E597CA6AB793883D21 /* README.md */ = {isa = PBXFileReference; includeInIndex = 1; path = README.md; sourceTree = "<group>"; }; + D8B3766BD51485AF86C68E0F8988ADD2 /* HHWheelTimer.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = HHWheelTimer.h; path = folly/io/async/HHWheelTimer.h; sourceTree = "<group>"; }; + D8BA54EF1A15FC91F3B1B1F1C9F903BA /* UMFontManagerInterface.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = UMFontManagerInterface.h; path = UMFontInterface/UMFontManagerInterface.h; sourceTree = "<group>"; }; + D8F4957E5C1113EAC98C0AB582D174D1 /* Fixture.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Fixture.h; path = rsocket/benchmarks/Fixture.h; sourceTree = "<group>"; }; + D90A7FB3CD7B561322A29DE92F22B920 /* ReactNativeART.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = ReactNativeART.release.xcconfig; sourceTree = "<group>"; }; + D90CB9417D8F1123A5353CCBF6692AC3 /* RCTInputAccessoryShadowView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTInputAccessoryShadowView.m; sourceTree = "<group>"; }; + D93ACA8B0780F238C78FFAECA4477102 /* IOBuf.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = IOBuf.cpp; path = folly/io/IOBuf.cpp; sourceTree = "<group>"; }; + D93CF1F0237213AA754C54DE0EFA5366 /* MemoryIdler.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = MemoryIdler.h; path = folly/detail/MemoryIdler.h; sourceTree = "<group>"; }; + D947A721D0BCB8B7BDC2BB99963EB67B /* FrameFlags.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = FrameFlags.cpp; path = rsocket/framing/FrameFlags.cpp; sourceTree = "<group>"; }; + D94ECE30AFEF546C492D255F08F7C614 /* README.md */ = {isa = PBXFileReference; includeInIndex = 1; path = README.md; sourceTree = "<group>"; }; + D9521755B9E284AB2B70A05ABB295504 /* Payload.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = Payload.cpp; path = rsocket/Payload.cpp; sourceTree = "<group>"; }; + D96F6558003383FD9384D345C606AA44 /* RCTFPSGraph.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTFPSGraph.m; sourceTree = "<group>"; }; + D9793BA392F9F6934215CAA6F427A092 /* RCTTurboModule.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTTurboModule.h; sourceTree = "<group>"; }; + D97D0D61F193378B1415E9746A9E09D9 /* Memory.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Memory.h; path = folly/Memory.h; sourceTree = "<group>"; }; + D98CDBB8EE1165A5BE4DED01657BC9E3 /* UMViewManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = UMViewManager.m; path = UMCore/UMViewManager.m; sourceTree = "<group>"; }; + D9970A06F0EABEE1CDA5A676817FC4EC /* React-RCTBlob.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "React-RCTBlob.release.xcconfig"; sourceTree = "<group>"; }; + D9A7DFA907DA186A887DEF894D608770 /* Hazptr.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Hazptr.h; path = folly/synchronization/Hazptr.h; sourceTree = "<group>"; }; + D9AA0E58A17A0123CBB2163F5A4EAAD7 /* FixedString.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FixedString.h; path = folly/FixedString.h; sourceTree = "<group>"; }; + D9B3EB5941B824F9D97452AC08A1624F /* README.md */ = {isa = PBXFileReference; includeInIndex = 1; path = README.md; sourceTree = "<group>"; }; + D9B8082407558663E343336FAD81339A /* ThreadWheelTimekeeper.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = ThreadWheelTimekeeper.cpp; path = folly/futures/ThreadWheelTimekeeper.cpp; sourceTree = "<group>"; }; + D9B81C1FE905D5C9E63A64EB76498264 /* EXAppleAuthenticationButtonViewManagers.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = EXAppleAuthenticationButtonViewManagers.m; path = EXAppleAuthentication/EXAppleAuthenticationButtonViewManagers.m; sourceTree = "<group>"; }; + D9E6D4EF7F749130DD3943A66833AEAB /* BugsnagEndpointConfiguration.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = BugsnagEndpointConfiguration.m; sourceTree = "<group>"; }; + D9E95C9FB67C54EC47F46C3719C4981F /* RNConfigReader.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = RNConfigReader.release.xcconfig; sourceTree = "<group>"; }; D9F334F2E90E3EE462FC4192AF5C03BD /* libReact-jsi.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; name = "libReact-jsi.a"; path = "libReact-jsi.a"; sourceTree = BUILT_PRODUCTS_DIR; }; - D9F75E7DAE922168FF40B90D585476A7 /* EXConstants.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = EXConstants.m; path = EXConstants/EXConstants.m; sourceTree = "<group>"; }; - DA0734961EB066403A23D40DD5CB7F39 /* RNCWKProcessPoolManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNCWKProcessPoolManager.h; path = apple/RNCWKProcessPoolManager.h; sourceTree = "<group>"; }; - DA0A31425FD62D5681ABB35C58430178 /* RCTCxxUtils.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTCxxUtils.h; sourceTree = "<group>"; }; - DA0C110A12A0BD5E9A1907F4493D4C96 /* AsymmetricMemoryBarrier.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = AsymmetricMemoryBarrier.h; path = folly/synchronization/AsymmetricMemoryBarrier.h; sourceTree = "<group>"; }; - DA0EB8F4CBDE9D79FB27DC6176E546B1 /* RCTCxxModule.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTCxxModule.h; sourceTree = "<group>"; }; - DA1A7C7065BBB16BAB98F0BA2DBDF640 /* GDTCOREventTransformer.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = GDTCOREventTransformer.h; path = GoogleDataTransport/GDTCORLibrary/Public/GDTCOREventTransformer.h; sourceTree = "<group>"; }; - DA347E30919A7E6027316853F9B08054 /* OpenSSL.xcframework */ = {isa = PBXFileReference; includeInIndex = 1; name = OpenSSL.xcframework; path = Frameworks/OpenSSL.xcframework; sourceTree = "<group>"; }; - DA377E3CB010F7FAD6550A7731DC2069 /* StreamThroughputMemory.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = StreamThroughputMemory.cpp; path = rsocket/benchmarks/StreamThroughputMemory.cpp; sourceTree = "<group>"; }; - DA3D9803A70D7FC57E9B8275A62D4EEB /* crashlytics.nanopb.c */ = {isa = PBXFileReference; includeInIndex = 1; name = crashlytics.nanopb.c; path = Crashlytics/Protogen/nanopb/crashlytics.nanopb.c; sourceTree = "<group>"; }; + DA074481EAB02CBD5264BE664A2FE4DD /* GULAppEnvironmentUtil.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = GULAppEnvironmentUtil.h; path = GoogleUtilities/Environment/Private/GULAppEnvironmentUtil.h; sourceTree = "<group>"; }; + DA0891BE7085BF877176C4E68682D374 /* HazptrThreadPoolExecutor.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = HazptrThreadPoolExecutor.h; path = folly/synchronization/HazptrThreadPoolExecutor.h; sourceTree = "<group>"; }; + DA36EFB8A253B32980DA920615833F66 /* FIRComponentContainer.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRComponentContainer.h; path = FirebaseCore/Sources/Private/FIRComponentContainer.h; sourceTree = "<group>"; }; DA4B7547743BC6FDE8E00424A6906467 /* Pods-defaults-RocketChatRN.modulemap */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.module; path = "Pods-defaults-RocketChatRN.modulemap"; sourceTree = "<group>"; }; - DA6569714811CB81F5058D796EF7AD4A /* AutoAttachUtils.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = AutoAttachUtils.h; sourceTree = "<group>"; }; - DA6C6CDB3F61B53988510109BBA0ABDB /* FBLPromise.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FBLPromise.m; path = Sources/FBLPromises/FBLPromise.m; sourceTree = "<group>"; }; - DA6EA58A70A87346A369EECF66BD4BC8 /* cost_mips32.c */ = {isa = PBXFileReference; includeInIndex = 1; name = cost_mips32.c; path = src/dsp/cost_mips32.c; sourceTree = "<group>"; }; - DA75C4879252CC32645B3BD2E5E3AFD2 /* RCTErrorInfo.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTErrorInfo.h; sourceTree = "<group>"; }; - DA75C6D163FC79F2CB585CA01FA60FE5 /* RCTSwitch.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTSwitch.h; sourceTree = "<group>"; }; - DA78EECCA50E297CC158E7C7315675C1 /* UMReactNativeAdapter-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "UMReactNativeAdapter-prefix.pch"; sourceTree = "<group>"; }; - DA81A58DABB5895D1ECF1FDA42B13D66 /* BSGInternalErrorReporter.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BSGInternalErrorReporter.h; sourceTree = "<group>"; }; - DA9882DBA3E80B8310FB0D89D0130D4B /* RCTLayout.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTLayout.h; sourceTree = "<group>"; }; - DAA93BB561277F589EFD5B03D3A98A18 /* RCTSurface.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTSurface.h; sourceTree = "<group>"; }; - DAACBB6E0B5F70EA6D859B825E7C77C7 /* PolyException.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = PolyException.h; path = folly/PolyException.h; sourceTree = "<group>"; }; - DACBA26AE500A3366C8A944D81FB5518 /* RCTLayoutAnimation.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTLayoutAnimation.m; sourceTree = "<group>"; }; - DAD7E54D8867A225CF32D8C459853200 /* EXSessionDownloadTaskDelegate.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = EXSessionDownloadTaskDelegate.m; sourceTree = "<group>"; }; - DAFAD979CBC200B5DB75C39E4AE29EED /* RCTPropsAnimatedNode.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTPropsAnimatedNode.m; sourceTree = "<group>"; }; - DB014116AB6D8DA1BB2E892E70011113 /* React-RCTSettings-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "React-RCTSettings-dummy.m"; sourceTree = "<group>"; }; - DB04AFD2052A8B45AA419361620B12A1 /* buffer_dec.c */ = {isa = PBXFileReference; includeInIndex = 1; name = buffer_dec.c; path = src/dec/buffer_dec.c; sourceTree = "<group>"; }; - DB1694FAC251DD37A22E57B2BDFFEB94 /* Asm.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Asm.h; path = folly/portability/Asm.h; sourceTree = "<group>"; }; - DB504C02660FF2C2B4C187F3EAA7E482 /* RNFBCrashlytics.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = RNFBCrashlytics.podspec; sourceTree = "<group>"; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; - DB5270A4484D1B65DE6FE5335163CC17 /* HazptrHolder.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = HazptrHolder.h; path = folly/synchronization/HazptrHolder.h; sourceTree = "<group>"; }; - DB583B583C1BD1062181AF46E3326085 /* vp8li_dec.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = vp8li_dec.h; path = src/dec/vp8li_dec.h; sourceTree = "<group>"; }; - DB5DD268804BED7D139485C26E2CEB48 /* ScheduledSubscription.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ScheduledSubscription.h; path = rsocket/internal/ScheduledSubscription.h; sourceTree = "<group>"; }; - DB84C45CEDAAB1F8403BCE7ACC59018C /* MethodCall.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; path = MethodCall.cpp; sourceTree = "<group>"; }; - DB991B88FA1191D58DA60D46AA320720 /* RCTScrollContentViewManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTScrollContentViewManager.m; sourceTree = "<group>"; }; - DB9FFA6AFE6BDC6D8DC0FE90FDB23935 /* SKRequestInfo.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = SKRequestInfo.m; path = iOS/Plugins/FlipperKitNetworkPlugin/FlipperKitNetworkPlugin/SKRequestInfo.m; sourceTree = "<group>"; }; - DBB54F45B678B6B1A2F5299F690252AB /* signalhandler.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = signalhandler.cc; path = src/signalhandler.cc; sourceTree = "<group>"; }; - DBBEB9B5D2777C75E5E5B2DAE9212D52 /* FIRCLSReportManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRCLSReportManager.m; path = Crashlytics/Crashlytics/Controllers/FIRCLSReportManager.m; sourceTree = "<group>"; }; - DBC3D997AF120FFB33BFD96167D936A0 /* FirebaseCore.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = FirebaseCore.debug.xcconfig; sourceTree = "<group>"; }; - DBC5AB500EC382238A41629F473B0C66 /* RCTModalHostViewController.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTModalHostViewController.m; sourceTree = "<group>"; }; - DBD5CDF8A3997C9089262005FF386AE1 /* FIRCLSDataCollectionArbiter.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRCLSDataCollectionArbiter.m; path = Crashlytics/Crashlytics/DataCollection/FIRCLSDataCollectionArbiter.m; sourceTree = "<group>"; }; - DBEFB7984A9AC1B43EEEAD4ACC05B2E0 /* CPUThreadPoolExecutor.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = CPUThreadPoolExecutor.cpp; path = folly/executors/CPUThreadPoolExecutor.cpp; sourceTree = "<group>"; }; - DC04B7B67B78CB967E161CCB71C613AE /* dynamic-inl.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "dynamic-inl.h"; path = "folly/dynamic-inl.h"; sourceTree = "<group>"; }; - DC257BCEEAB24E409CAE1A8E70D2C27C /* RCTRootViewInternal.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTRootViewInternal.h; sourceTree = "<group>"; }; - DC2814881692783265682204F533FCA5 /* GULNSDataInternal.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = GULNSDataInternal.h; path = "GoogleUtilities/NSData+zlib/Private/GULNSDataInternal.h"; sourceTree = "<group>"; }; - DC2B8A3D13C3025E4C71AC6D6C299FD7 /* RNReanimated.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = RNReanimated.release.xcconfig; sourceTree = "<group>"; }; - DC304B4145DD0AFD8E5888E0F029F416 /* ARTRadialGradient.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = ARTRadialGradient.m; sourceTree = "<group>"; }; - DC3AB289AEEAE80022BC8C183E917049 /* RCTParserUtils.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTParserUtils.m; sourceTree = "<group>"; }; - DC49F5F953C7FE75F85B0FE2D307C478 /* OpenSSLCertUtils.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = OpenSSLCertUtils.h; path = folly/ssl/OpenSSLCertUtils.h; sourceTree = "<group>"; }; - DC4BE8CF568ED744029CDF35B870724F /* react-native-netinfo-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "react-native-netinfo-prefix.pch"; sourceTree = "<group>"; }; - DC66BC4DB4CD3441B632CC2F80B5ADB5 /* REAParamNode.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = REAParamNode.h; sourceTree = "<group>"; }; - DC80956E306D104D9DA8EE53BC5F76CE /* PromisesObjC-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "PromisesObjC-dummy.m"; sourceTree = "<group>"; }; - DC98663CBAC5D49967881800F0B876E9 /* CpuId.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = CpuId.h; path = folly/CpuId.h; sourceTree = "<group>"; }; - DCA962ED9AF42D56D730366FF8D1B34F /* lossless_msa.c */ = {isa = PBXFileReference; includeInIndex = 1; name = lossless_msa.c; path = src/dsp/lossless_msa.c; sourceTree = "<group>"; }; - DCE53D3A2A477839449B9C6C35566704 /* BridgeNativeModulePerfLogger.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = BridgeNativeModulePerfLogger.cpp; path = reactperflogger/BridgeNativeModulePerfLogger.cpp; sourceTree = "<group>"; }; - DCEA8F941CDD15EB2069935B316A55BB /* KeyCommands-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "KeyCommands-dummy.m"; sourceTree = "<group>"; }; - DCF019AC633D3837A65275E1E41BEBD5 /* StorageGetters.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = StorageGetters.h; path = ios/StorageGetters.h; sourceTree = "<group>"; }; - DD0660AC75549E78737B5FC624874D50 /* RangeSse42.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RangeSse42.h; path = folly/detail/RangeSse42.h; sourceTree = "<group>"; }; - DD0E1AD5E554C9C1E9D21507A4CEB48F /* ConcurrentBitSet.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ConcurrentBitSet.h; path = folly/ConcurrentBitSet.h; sourceTree = "<group>"; }; - DD4D85719B708A4778BF1B148B6F1152 /* RCTCxxMethod.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTCxxMethod.h; sourceTree = "<group>"; }; - DD55A550A260F6C74B624318596B279D /* MallocImpl.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = MallocImpl.cpp; path = folly/memory/detail/MallocImpl.cpp; sourceTree = "<group>"; }; - DD57B527F7CD29DAD0193178373998AA /* REAEventNode.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = REAEventNode.h; sourceTree = "<group>"; }; - DD639A12C46710EA1B2D9A2641AF3122 /* EXWebBrowser.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = EXWebBrowser.m; path = EXWebBrowser/EXWebBrowser.m; sourceTree = "<group>"; }; - DD6B376F981D957E30F8608A3BD3C449 /* RCTInspectorDevServerHelper.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTInspectorDevServerHelper.h; sourceTree = "<group>"; }; - DD6E84E7343B2D60B6A59A0E7D041EEA /* FIRCLSFeatures.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRCLSFeatures.h; path = Crashlytics/Crashlytics/Helpers/FIRCLSFeatures.h; sourceTree = "<group>"; }; - DD7A1D12AC47F0A2F9DB230C5B19CCA8 /* FIRCLSHost.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRCLSHost.m; path = Crashlytics/Crashlytics/Components/FIRCLSHost.m; sourceTree = "<group>"; }; - DD94706F88D0811C813652FD44EAA9F1 /* SKObjectHash.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SKObjectHash.h; path = iOS/Plugins/FlipperKitLayoutPlugin/FlipperKitLayoutPlugin/utils/SKObjectHash.h; sourceTree = "<group>"; }; - DD97A2E781B1133BD6C71C1544A56098 /* alpha_processing.c */ = {isa = PBXFileReference; includeInIndex = 1; name = alpha_processing.c; path = src/dsp/alpha_processing.c; sourceTree = "<group>"; }; - DD9F427E6ADEB4967A1DDC5A41D08DB5 /* ThreadLocal.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ThreadLocal.h; path = folly/ThreadLocal.h; sourceTree = "<group>"; }; - DDA7ABA5C0D80550BED808644A658551 /* FIROptionsInternal.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIROptionsInternal.h; path = FirebaseCore/Sources/Private/FIROptionsInternal.h; sourceTree = "<group>"; }; - DDA8E082D0DF3E4233CC86CFC94A7648 /* Rsa.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = Rsa.h; sourceTree = "<group>"; }; - DDAF0C9DBFFF10B30338CC4C086D1271 /* FileUtilDetail.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FileUtilDetail.h; path = folly/detail/FileUtilDetail.h; sourceTree = "<group>"; }; - DDB24E02EA6FB47F447446D284BE71FF /* BSGJSONSerialization.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = BSGJSONSerialization.m; sourceTree = "<group>"; }; - DDB2BB56871CCE78DA7807E3C85737B7 /* Fcntl.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Fcntl.h; path = folly/portability/Fcntl.h; sourceTree = "<group>"; }; - DDC9FC6CAA3FE7456CC806F378220131 /* FramedDuplexConnection.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = FramedDuplexConnection.cpp; path = rsocket/framing/FramedDuplexConnection.cpp; sourceTree = "<group>"; }; - DDCF0E1C73520263E3B6793D999FC73E /* Checksum.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Checksum.h; path = folly/hash/Checksum.h; sourceTree = "<group>"; }; - DE10C5B336D195F78AE3691779E4C990 /* RCTUIManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTUIManager.m; sourceTree = "<group>"; }; - DE10C6C8FDDFDEA4542FC71322F6D75A /* enc_mips_dsp_r2.c */ = {isa = PBXFileReference; includeInIndex = 1; name = enc_mips_dsp_r2.c; path = src/dsp/enc_mips_dsp_r2.c; sourceTree = "<group>"; }; - DE1BFDAFC28F339CABA7846F7BD52752 /* ms.lproj */ = {isa = PBXFileReference; includeInIndex = 1; name = ms.lproj; path = "Objective-C/TOCropViewController/Resources/ms.lproj"; sourceTree = "<group>"; }; - DE478CEF7E6BBAC84708D5A369135801 /* React-RCTAnimation-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "React-RCTAnimation-prefix.pch"; sourceTree = "<group>"; }; - DE5A7C8C6EAD47E655B33CFF04F6CCFE /* RCTTypeSafety.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = RCTTypeSafety.release.xcconfig; sourceTree = "<group>"; }; - DE76F127E42557B9BD2B3676495F1E2F /* RCTModalHostViewManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTModalHostViewManager.h; sourceTree = "<group>"; }; - DEA2D806E5C15B459D214AD5626635F9 /* UMAccelerometerInterface.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = UMAccelerometerInterface.h; path = UMSensorsInterface/UMAccelerometerInterface.h; sourceTree = "<group>"; }; - DEAFDDB7B183EBCD227325CE5F4B9AE5 /* quant_levels_utils.c */ = {isa = PBXFileReference; includeInIndex = 1; name = quant_levels_utils.c; path = src/utils/quant_levels_utils.c; sourceTree = "<group>"; }; - DEB90D2F0F706C27B95CF613DC87C589 /* LifoSem.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = LifoSem.h; path = folly/synchronization/LifoSem.h; sourceTree = "<group>"; }; - DEBBF54F56A219AE3EAD4D0D55B46B95 /* LICENSE */ = {isa = PBXFileReference; includeInIndex = 1; path = LICENSE; sourceTree = "<group>"; }; - DECCCE09E7F014EABBD87DC1B1B5C2B0 /* UMUtilities.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = UMUtilities.m; path = UMCore/UMUtilities.m; sourceTree = "<group>"; }; - DECD7F61EE2634B152C7B32EF629DCEB /* react-native-notifications.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "react-native-notifications.release.xcconfig"; sourceTree = "<group>"; }; - DED15C1208E208890C8166DEFA7CCCF0 /* React-RCTActionSheet.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "React-RCTActionSheet.release.xcconfig"; sourceTree = "<group>"; }; - DEDF0041639EE57E1B34CD0EB872879D /* ProtocolVersion.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = ProtocolVersion.cpp; path = rsocket/framing/ProtocolVersion.cpp; sourceTree = "<group>"; }; - DEDFCDEDEC54C491C5F3C67AFD4F3CB5 /* AtomicHashArray.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = AtomicHashArray.h; path = folly/AtomicHashArray.h; sourceTree = "<group>"; }; - DEE3203D0A7AFEFAD6E8D45299F7C77B /* MMKV.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = MMKV.debug.xcconfig; sourceTree = "<group>"; }; - DF0B15772E0E0B0756F827B79AD46102 /* WaitOptions.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = WaitOptions.h; path = folly/synchronization/WaitOptions.h; sourceTree = "<group>"; }; - DF0CCC4ED5EA093604440EBDE947BC63 /* GoogleAppMeasurement.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = GoogleAppMeasurement.release.xcconfig; sourceTree = "<group>"; }; - DF281B7C5E8720EB7DC9F94FAA8F7B42 /* RCTTextViewManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTTextViewManager.m; sourceTree = "<group>"; }; - DF2C8B2FED7F52A516FB7033B9AA4253 /* FBReactNativeSpec-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "FBReactNativeSpec-prefix.pch"; sourceTree = "<group>"; }; - DF395A5AE875959199CDB011ADB83A79 /* RNFetchBlobReqBuilder.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNFetchBlobReqBuilder.m; path = ios/RNFetchBlobReqBuilder.m; sourceTree = "<group>"; }; - DF5DAB21386A74C921BAC62E663D7583 /* NativeModule.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = NativeModule.h; sourceTree = "<group>"; }; - DF5E666704223D49885200E7A2BC8F94 /* UMCore.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = UMCore.release.xcconfig; sourceTree = "<group>"; }; - DF6110689FAD371694B43752C553C769 /* RCTModalHostView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTModalHostView.m; sourceTree = "<group>"; }; - DF6E83B328726602E52506BBD87E3626 /* BSGEventUploadFileOperation.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BSGEventUploadFileOperation.h; sourceTree = "<group>"; }; - DF6F68824D610DAD329C4F8A043CE87E /* CPortability.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = CPortability.h; path = folly/CPortability.h; sourceTree = "<group>"; }; - DF89921367DDB419FD2E008843163C09 /* RCTRawTextShadowView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTRawTextShadowView.h; sourceTree = "<group>"; }; - DF924119346381ACE894F12EB6E0AF5E /* RCTInterpolationAnimatedNode.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTInterpolationAnimatedNode.h; sourceTree = "<group>"; }; - DFBC3A559DA99D3C1938A7085FF679F6 /* RCTBundleURLProvider.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTBundleURLProvider.h; sourceTree = "<group>"; }; - DFCBE7E816E8C610AEBD170C5BEB2938 /* RCTAlertManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTAlertManager.h; path = React/CoreModules/RCTAlertManager.h; sourceTree = "<group>"; }; - DFD4B2798F450F184E7C446D967B164E /* SDWebImageWebPCoder.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = SDWebImageWebPCoder.debug.xcconfig; sourceTree = "<group>"; }; - DFE622CE288FAC9F6429A57296A9C7DA /* RCTHTTPRequestHandler.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTHTTPRequestHandler.mm; sourceTree = "<group>"; }; - DFF170F26E49AF34B2AED8CAC632BA14 /* UMReactLogHandler.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = UMReactLogHandler.m; sourceTree = "<group>"; }; - DFFB7BE862EB42E833249ED655B2CAC7 /* RNCSafeAreaView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNCSafeAreaView.m; path = ios/SafeAreaView/RNCSafeAreaView.m; sourceTree = "<group>"; }; - E0017F1443C3D35518E942C0337D1FDD /* UMFileSystemInterface.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = UMFileSystemInterface.debug.xcconfig; sourceTree = "<group>"; }; + DA52BCCCE327BA8A224EED5CE8E55D25 /* QBSlomoIconView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = QBSlomoIconView.h; path = ios/QBImagePicker/QBImagePicker/QBSlomoIconView.h; sourceTree = "<group>"; }; + DA7767037C3986DE5DDB21498330B810 /* REAModule.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = REAModule.h; path = ios/REAModule.h; sourceTree = "<group>"; }; + DA80D3B5DA6531D36906B8D9D79BC6B8 /* Builtins.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = Builtins.cpp; path = folly/portability/Builtins.cpp; sourceTree = "<group>"; }; + DA84AA5EDB8540934AFDE0056B486425 /* react-native-jitsi-meet-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "react-native-jitsi-meet-dummy.m"; sourceTree = "<group>"; }; + DA99AFF483616230158822497780D24B /* BugsnagReactNativePlugin.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = BugsnagReactNativePlugin.m; sourceTree = "<group>"; }; + DA9CB1EBD91EFEE2DA3CF4E11EAEFDD0 /* Framer.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Framer.h; path = rsocket/framing/Framer.h; sourceTree = "<group>"; }; + DABBBA2AB0D423BAB4690276648E9AAD /* RequestResponseThroughputTcp.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = RequestResponseThroughputTcp.cpp; path = rsocket/benchmarks/RequestResponseThroughputTcp.cpp; sourceTree = "<group>"; }; + DABDBD196E6571BD342353CF5AA6740F /* SingletonStackTrace.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SingletonStackTrace.h; path = folly/detail/SingletonStackTrace.h; sourceTree = "<group>"; }; + DABFDAABF70DF58C7B47B299BD23472F /* BSG_KSMach_x86_64.c */ = {isa = PBXFileReference; includeInIndex = 1; path = BSG_KSMach_x86_64.c; sourceTree = "<group>"; }; + DAC0F7B0065D32DA0B58D23C9729310E /* BSGGlobals.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = BSGGlobals.m; sourceTree = "<group>"; }; + DAC3018CB7636026856C12EC99B1754E /* ManualTimekeeper.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = ManualTimekeeper.cpp; path = folly/futures/ManualTimekeeper.cpp; sourceTree = "<group>"; }; + DAE1A314C9086C54F54B843E6913D998 /* FireAndForgetResponder.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FireAndForgetResponder.h; path = rsocket/statemachine/FireAndForgetResponder.h; sourceTree = "<group>"; }; + DAEA82AFD379F43CF8B4581E22B1C9CB /* IPAddressV6.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = IPAddressV6.h; path = folly/IPAddressV6.h; sourceTree = "<group>"; }; + DB0F68A6996C90EBB0D19A1A478038DC /* Memory.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Memory.h; path = folly/portability/Memory.h; sourceTree = "<group>"; }; + DB1323C9DA03F365D3974FE452471AC1 /* Synchronized.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Synchronized.h; path = folly/Synchronized.h; sourceTree = "<group>"; }; + DB3C3CFF9D313427B3C2E2C7BBC3A6D4 /* F14Policy.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = F14Policy.h; path = folly/container/detail/F14Policy.h; sourceTree = "<group>"; }; + DB3C75FB714D609425CC689E0D9A02A5 /* ReactMarker.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; path = ReactMarker.cpp; sourceTree = "<group>"; }; + DB49284BA60C9CDB17FC0A52E6C52C2F /* RNCSlider.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNCSlider.m; path = ios/RNCSlider.m; sourceTree = "<group>"; }; + DB6FF4B04D43DF300C878F0E323293E2 /* AsyncPipe.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = AsyncPipe.cpp; path = folly/io/async/AsyncPipe.cpp; sourceTree = "<group>"; }; + DB7449C4662DD2C53595F6FA4C3885A5 /* hermes_tracing.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = hermes_tracing.h; path = destroot/include/hermes/hermes_tracing.h; sourceTree = "<group>"; }; + DB8304DCE4775BF595E14CCF4DF2BFE3 /* FIRInstallationsStoredItem.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRInstallationsStoredItem.h; path = FirebaseInstallations/Source/Library/InstallationsStore/FIRInstallationsStoredItem.h; sourceTree = "<group>"; }; + DB8AA9A7EB6000F4AD2A31C27D56F1FA /* BSG_RFC3339DateTool.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BSG_RFC3339DateTool.h; sourceTree = "<group>"; }; + DB9F6D4971DB832513557BEC07F2D0B8 /* README.md */ = {isa = PBXFileReference; includeInIndex = 1; path = README.md; sourceTree = "<group>"; }; + DBA439DF63949719E3443EB2D2243C3E /* common_sse41.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = common_sse41.h; path = src/dsp/common_sse41.h; sourceTree = "<group>"; }; + DBA6250BFEECC287C07056E2770CF399 /* GULUserDefaults.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = GULUserDefaults.h; path = GoogleUtilities/UserDefaults/Private/GULUserDefaults.h; sourceTree = "<group>"; }; + DBAD0CD82749AD1074C4D8E8A28A9EC2 /* SDWebImageIndicator.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = SDWebImageIndicator.m; path = SDWebImage/Core/SDWebImageIndicator.m; sourceTree = "<group>"; }; + DBAFBBE1AB5DD80349AEB3073D48C011 /* SDWebImageError.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SDWebImageError.h; path = SDWebImage/Core/SDWebImageError.h; sourceTree = "<group>"; }; + DBC5D47B58979EDCB450163B961643F2 /* RCTHTTPRequestHandler.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTHTTPRequestHandler.h; path = Libraries/Network/RCTHTTPRequestHandler.h; sourceTree = "<group>"; }; + DBD1A6E618F01836ED2B06599555D1AF /* RCTView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTView.m; sourceTree = "<group>"; }; + DBDF1114FDDCD5D98105C66E3195F985 /* EDFThreadPoolExecutor.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = EDFThreadPoolExecutor.cpp; path = folly/executors/EDFThreadPoolExecutor.cpp; sourceTree = "<group>"; }; + DBE67F81087C01FA91F34D8FE14A8AD5 /* UIView+React.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "UIView+React.m"; sourceTree = "<group>"; }; + DBE866325A36D001D96181A65ABFEE5A /* libwebp-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "libwebp-dummy.m"; sourceTree = "<group>"; }; + DBF711F4AAB6980F35932B29ED2835AE /* KeyCommands.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = KeyCommands.podspec; sourceTree = "<group>"; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; + DC02F58567E3D4E85DCC5F61B24595CD /* UMViewManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = UMViewManager.h; path = UMCore/UMViewManager.h; sourceTree = "<group>"; }; + DC1A2C84C6F73AD4E0C952D4528E7E11 /* React-RCTVibration.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = "React-RCTVibration.podspec"; sourceTree = "<group>"; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; + DC1F22AE25B37DF87B934AFEE2507496 /* SafeAssert.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = SafeAssert.cpp; path = folly/lang/SafeAssert.cpp; sourceTree = "<group>"; }; + DC2E4B6CAEC8AD28AA4CE3AB6C7982CB /* LifoSem.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = LifoSem.h; path = folly/synchronization/LifoSem.h; sourceTree = "<group>"; }; + DC493A70EBDE33201AF4621EE5568DD5 /* RCTRefreshControl.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTRefreshControl.h; sourceTree = "<group>"; }; + DC5368FFBFCF8BA9818088B9DEA7FFFE /* AtomicHashMap.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = AtomicHashMap.h; path = folly/AtomicHashMap.h; sourceTree = "<group>"; }; + DC60E88F62613DF045EFC5E7EE59FBC2 /* Align.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Align.h; path = folly/lang/Align.h; sourceTree = "<group>"; }; + DC88A0066DA2D56B8BDD2F35EA19F97C /* PromisesObjC.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = PromisesObjC.release.xcconfig; sourceTree = "<group>"; }; + DC8E48ECC645482C7260C86742DC8B6A /* RCTWebSocketExecutor.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTWebSocketExecutor.mm; sourceTree = "<group>"; }; + DC9347580DD46D4613601B5B364CE3E8 /* Indestructible.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Indestructible.h; path = folly/Indestructible.h; sourceTree = "<group>"; }; + DC9B06C8AD7A8CB32E98F5C17BE1548B /* RCTConstants.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTConstants.h; sourceTree = "<group>"; }; + DCAC4087891D28E90586EE4821EA2D67 /* DynamicConverter.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = DynamicConverter.h; path = folly/DynamicConverter.h; sourceTree = "<group>"; }; + DCB9270A28452608FFE50C2F9CC2FEF4 /* ARTNode.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ARTNode.h; path = ios/ARTNode.h; sourceTree = "<group>"; }; + DCBC7AF49AE6BD3BFE71EC733783741F /* EXAppleAuthenticationRequest.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = EXAppleAuthenticationRequest.h; path = EXAppleAuthentication/EXAppleAuthenticationRequest.h; sourceTree = "<group>"; }; + DCC31409B0B1BA2E6B09D34100290782 /* Unicode.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Unicode.h; path = folly/Unicode.h; sourceTree = "<group>"; }; + DCD831ABC23B3D5C9971C822E49110B4 /* react-native-mmkv-storage.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "react-native-mmkv-storage.release.xcconfig"; sourceTree = "<group>"; }; + DCDA4E7345D70E01B95518BAC48043C2 /* YGNode.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = YGNode.cpp; path = yoga/YGNode.cpp; sourceTree = "<group>"; }; + DCE58ABA654029011ED09757A595D63D /* RCTConvert+Transform.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "RCTConvert+Transform.m"; sourceTree = "<group>"; }; + DCF2641ACC996C44C1D2622BF8727B1E /* FirebaseInstallationsInternal.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FirebaseInstallationsInternal.h; path = FirebaseInstallations/Source/Library/Private/FirebaseInstallationsInternal.h; sourceTree = "<group>"; }; + DCFEE6AEA20DD62C6DFADE9FACDF2533 /* BugsnagKVStoreObjC.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = BugsnagKVStoreObjC.m; sourceTree = "<group>"; }; + DD26C00ED1F1F50D771825F0D69AECAC /* ReadMostlySharedPtr.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ReadMostlySharedPtr.h; path = folly/experimental/ReadMostlySharedPtr.h; sourceTree = "<group>"; }; + DD27B446E08664EF31F0CFB66BC3578C /* FIRCLSByteUtility.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRCLSByteUtility.m; path = Crashlytics/Shared/FIRCLSByteUtility.m; sourceTree = "<group>"; }; + DD306913C1F472264E94BDDC41B20E4E /* VibrancyView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = VibrancyView.m; path = ios/VibrancyView.m; sourceTree = "<group>"; }; + DD503C772E0582A17452A72977BA5452 /* RCTConvert+CoreLocation.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "RCTConvert+CoreLocation.m"; sourceTree = "<group>"; }; + DD52D5D5C44C993D9F2BD1F3F405171A /* raw_logging.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = raw_logging.cc; path = src/raw_logging.cc; sourceTree = "<group>"; }; + DD5A958800B43B181B344F1410CCEAEB /* Aes.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = Aes.m; sourceTree = "<group>"; }; + DD5BDA18C71452B05C20511A75E2CF40 /* RNScreens.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = RNScreens.release.xcconfig; sourceTree = "<group>"; }; + DD6C3B25204BF0888E2875F69B89C495 /* GDTCOREventDataObject.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = GDTCOREventDataObject.h; path = GoogleDataTransport/GDTCORLibrary/Public/GoogleDataTransport/GDTCOREventDataObject.h; sourceTree = "<group>"; }; + DD755238A9D677B6E4714C0E46577C33 /* GULOriginalIMPConvenienceMacros.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = GULOriginalIMPConvenienceMacros.h; path = GoogleUtilities/MethodSwizzler/Private/GULOriginalIMPConvenienceMacros.h; sourceTree = "<group>"; }; + DD77D897798B46F8D83F3832E61D9200 /* RNFBAnalytics-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "RNFBAnalytics-prefix.pch"; sourceTree = "<group>"; }; + DDA78673345D42E2C2AB52A9ED40D16C /* HazptrRec.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = HazptrRec.h; path = folly/synchronization/HazptrRec.h; sourceTree = "<group>"; }; + DDB70A193A635C8BCEC6DB0D9B9A98A2 /* RCTManagedPointer.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTManagedPointer.mm; sourceTree = "<group>"; }; + DDC37DACDEA1431F770DE863913C358C /* GDTCORTransport_Private.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = GDTCORTransport_Private.h; path = GoogleDataTransport/GDTCORLibrary/Private/GDTCORTransport_Private.h; sourceTree = "<group>"; }; + DDC59207513A0233D36A0B773EDBB157 /* README.md */ = {isa = PBXFileReference; includeInIndex = 1; path = README.md; sourceTree = "<group>"; }; + DDD71BA9D7956144F78A2BAF9E612B4D /* FlipperStateUpdateListener.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FlipperStateUpdateListener.h; path = iOS/FlipperKit/FlipperStateUpdateListener.h; sourceTree = "<group>"; }; + DDDC0DDD07B123DEEA383C75BAA64CA6 /* FIRCLSByteUtility.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRCLSByteUtility.h; path = Crashlytics/Shared/FIRCLSByteUtility.h; sourceTree = "<group>"; }; + DDE8F2ACA773FF72F96223B5BC5A11BF /* REAParamNode.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = REAParamNode.h; sourceTree = "<group>"; }; + DDF3F3DE44951223CA46296DCF7D8E7F /* Uri-inl.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "Uri-inl.h"; path = "folly/Uri-inl.h"; sourceTree = "<group>"; }; + DDFF6E2CEC99C6098D7C60394C9AF956 /* Flipper-DoubleConversion-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "Flipper-DoubleConversion-dummy.m"; sourceTree = "<group>"; }; + DE3D4333E0AFB9649B662738A8FE78F0 /* anim_decode.c */ = {isa = PBXFileReference; includeInIndex = 1; name = anim_decode.c; path = src/demux/anim_decode.c; sourceTree = "<group>"; }; + DE7125DE27A7A99E457DA6CC95894E6A /* TypedIOBuf.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = TypedIOBuf.h; path = folly/io/TypedIOBuf.h; sourceTree = "<group>"; }; + DE83F965334111733A182914FB049851 /* GDTCORDirectorySizeTracker.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = GDTCORDirectorySizeTracker.h; path = GoogleDataTransport/GDTCORLibrary/Internal/GDTCORDirectorySizeTracker.h; sourceTree = "<group>"; }; + DE93F934808F8210E6A322F786C151A9 /* Ionicons.ttf */ = {isa = PBXFileReference; includeInIndex = 1; name = Ionicons.ttf; path = Fonts/Ionicons.ttf; sourceTree = "<group>"; }; + DE9EF59EB47BEE522C0C3250922393F0 /* SysTypes.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SysTypes.h; path = folly/portability/SysTypes.h; sourceTree = "<group>"; }; + DEB811EED7EEFCB022BCE01926F31D92 /* GoogleAppMeasurement.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = GoogleAppMeasurement.framework; path = Frameworks/GoogleAppMeasurement.framework; sourceTree = "<group>"; }; + DEE0C0B60E4F95B51F04576CB693C483 /* UIResponder+FirstResponderTemp.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "UIResponder+FirstResponderTemp.h"; sourceTree = "<group>"; }; + DEE206A5A73797C0F70635F3A25EF1E1 /* SharedProxyCxxModule.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = SharedProxyCxxModule.h; sourceTree = "<group>"; }; + DEECB65E82C196738DA8DC63518F4D82 /* RNEventEmitter.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNEventEmitter.m; path = RNNotifications/RNEventEmitter.m; sourceTree = "<group>"; }; + DEFEF26DB3E2778B721B53A1C9AE98A9 /* Stdio.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Stdio.h; path = folly/portability/Stdio.h; sourceTree = "<group>"; }; + DF0EBE8F42C9993C9C93029480BBF012 /* UMTaskManagerInterface.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = UMTaskManagerInterface.release.xcconfig; sourceTree = "<group>"; }; + DF3A7061D50176ED65E5FE98AE32410A /* GDTCOREvent.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = GDTCOREvent.h; path = GoogleDataTransport/GDTCORLibrary/Public/GoogleDataTransport/GDTCOREvent.h; sourceTree = "<group>"; }; + DF4299C534A9167B8BCD112ED4910DFB /* Conv.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = Conv.cpp; path = folly/Conv.cpp; sourceTree = "<group>"; }; + DF436128B506C1CB246BFDCD445191E3 /* React-RCTImage-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "React-RCTImage-dummy.m"; sourceTree = "<group>"; }; + DF4AAE5C0B13A8AF7BF6C0CF3CE90BBB /* RCTTrackingAnimatedNode.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTTrackingAnimatedNode.h; sourceTree = "<group>"; }; + DF75627473938CFD636AEA4D64C5EE54 /* RCTSurfaceStage.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTSurfaceStage.h; sourceTree = "<group>"; }; + DF85DCBBC868D6D6912BB276E4493F91 /* RCTMultipartDataTask.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTMultipartDataTask.m; sourceTree = "<group>"; }; + DF9128C5BE69B6D2BADFA8FC0035EFD0 /* dynamic.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = dynamic.h; path = folly/dynamic.h; sourceTree = "<group>"; }; + DFB76EA691E409D498FA61B91A89687F /* Orientation.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Orientation.h; path = iOS/RCTOrientation/Orientation.h; sourceTree = "<group>"; }; + DFC6BF680707D168D18167BE77EBF696 /* FKUserDefaultsPlugin.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FKUserDefaultsPlugin.m; path = iOS/Plugins/FlipperKitUserDefaultsPlugin/FKUserDefaultsPlugin.m; sourceTree = "<group>"; }; + DFCB3AAEEBFD26F496CF62E461317606 /* RemoteObjectsTable.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; path = RemoteObjectsTable.cpp; sourceTree = "<group>"; }; + DFD5522C57CCDC99ADD2072F3F16BF53 /* UIImageView+HighlightedWebCache.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "UIImageView+HighlightedWebCache.m"; path = "SDWebImage/Core/UIImageView+HighlightedWebCache.m"; sourceTree = "<group>"; }; + DFD628481C697E806262FE83EEF0901E /* JSExecutor.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = JSExecutor.h; sourceTree = "<group>"; }; + DFFFC76CADC4FA38E908A2930997B23B /* RNVectorIcons.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = RNVectorIcons.podspec; sourceTree = "<group>"; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; E00BE2A3146698E81A8F9D00E8F93A6C /* libFlipper-Glog.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; name = "libFlipper-Glog.a"; path = "libFlipper-Glog.a"; sourceTree = BUILT_PRODUCTS_DIR; }; - E02E32A237431173E06EC82446A1EB12 /* REAClockNodes.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = REAClockNodes.m; sourceTree = "<group>"; }; - E0363F552304962F69D4227E89A03FD4 /* Flowable.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Flowable.h; path = yarpl/flowable/Flowable.h; sourceTree = "<group>"; }; - E05EC65CB6F61CB2A94A6FA66F5CBEBC /* BugsnagStackframe.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = BugsnagStackframe.m; sourceTree = "<group>"; }; - E081C312DD756143481ED6E7E4B81ACD /* ScheduledSubscriber.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ScheduledSubscriber.h; path = rsocket/internal/ScheduledSubscriber.h; sourceTree = "<group>"; }; - E0ACDEC4D4AAA9175FD58CD68F056807 /* ThreadName.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ThreadName.h; path = folly/system/ThreadName.h; sourceTree = "<group>"; }; + E00E1B45C22DACAF48805A11E4B9F00A /* RCTModalHostView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTModalHostView.h; sourceTree = "<group>"; }; + E011A6E4FE31252609CE24B6B3C8DAF4 /* RNCWKProcessPoolManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNCWKProcessPoolManager.h; path = apple/RNCWKProcessPoolManager.h; sourceTree = "<group>"; }; + E03AF46D82E888F3C4DF35C8FDD8CA5B /* MMKVLog_Android.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = MMKVLog_Android.cpp; path = Core/MMKVLog_Android.cpp; sourceTree = "<group>"; }; + E0474F716A1CA75CFAF802B2DE4D95B1 /* ParallelMap-inl.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "ParallelMap-inl.h"; path = "folly/gen/ParallelMap-inl.h"; sourceTree = "<group>"; }; + E0482C81ACC1C403CBC884E10E066760 /* AutoAttachUtils.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = AutoAttachUtils.h; sourceTree = "<group>"; }; + E058DE8168AA55FCA6654A0779ACB92E /* Exception.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Exception.h; path = folly/Exception.h; sourceTree = "<group>"; }; + E05F1444615E94542B2F2854939D6B4D /* REAClockNodes.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = REAClockNodes.h; sourceTree = "<group>"; }; + E065FA866681DBC6AF41756D747C68A8 /* rescaler_neon.c */ = {isa = PBXFileReference; includeInIndex = 1; name = rescaler_neon.c; path = src/dsp/rescaler_neon.c; sourceTree = "<group>"; }; + E0776908675D32B6902509CA0A010DF6 /* RCTNativeAnimatedNodesManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTNativeAnimatedNodesManager.m; sourceTree = "<group>"; }; + E084F2E7A1D6CE8510B553B7752D8AF8 /* Instance.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; path = Instance.cpp; sourceTree = "<group>"; }; + E0875825C7C1BA3530CBD3E7E54E6296 /* FIRCLSException.mm */ = {isa = PBXFileReference; includeInIndex = 1; name = FIRCLSException.mm; path = Crashlytics/Crashlytics/Handlers/FIRCLSException.mm; sourceTree = "<group>"; }; + E08AF471F00AED3924F9C46ABA65782B /* webpi_dec.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = webpi_dec.h; path = src/dec/webpi_dec.h; sourceTree = "<group>"; }; + E08C7917A39B65602D642F0F8B1420E3 /* vlog_is_on.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = vlog_is_on.cc; path = src/vlog_is_on.cc; sourceTree = "<group>"; }; + E09266813B868F30441EEE5D3FF16FC5 /* RNCookieManagerIOS.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNCookieManagerIOS.h; path = ios/RNCookieManagerIOS/RNCookieManagerIOS.h; sourceTree = "<group>"; }; E0B603F54009DAEF6C3BAAE621E5F180 /* libMMKVCore.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; name = libMMKVCore.a; path = libMMKVCore.a; sourceTree = BUILT_PRODUCTS_DIR; }; - E0C4E152DE6AB8C0C9C6931C1350B01B /* FIRCLSDemangleOperation.mm */ = {isa = PBXFileReference; includeInIndex = 1; name = FIRCLSDemangleOperation.mm; path = Crashlytics/Crashlytics/Operations/Symbolication/FIRCLSDemangleOperation.mm; sourceTree = "<group>"; }; - E0D470BF6CA037D3474A1794EE56F3EC /* Singleton.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = Singleton.cpp; path = folly/Singleton.cpp; sourceTree = "<group>"; }; - E0E6313449FF04D37ED86F79B8A8A3E2 /* OpenSSLCertUtils.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = OpenSSLCertUtils.cpp; path = folly/ssl/OpenSSLCertUtils.cpp; sourceTree = "<group>"; }; - E0E7621907959CFCC82A5725717C078F /* FIRCLSUserDefaults_private.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRCLSUserDefaults_private.h; path = Crashlytics/Crashlytics/FIRCLSUserDefaults/FIRCLSUserDefaults_private.h; sourceTree = "<group>"; }; - E0F792E72F8179297D7FA3C6EDE6C734 /* Singleton-inl.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "Singleton-inl.h"; path = "folly/Singleton-inl.h"; sourceTree = "<group>"; }; + E0BB57D21ED84CE263E1CE65E9576113 /* FIRCLSProcess.c */ = {isa = PBXFileReference; includeInIndex = 1; name = FIRCLSProcess.c; path = Crashlytics/Crashlytics/Components/FIRCLSProcess.c; sourceTree = "<group>"; }; + E0C4E2F4E4071B1AF88CB0D7BE75AA87 /* String-inl.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "String-inl.h"; path = "folly/gen/String-inl.h"; sourceTree = "<group>"; }; + E0D110C27AE0AB7AC9945656D9E7629E /* String-inl.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "String-inl.h"; path = "folly/String-inl.h"; sourceTree = "<group>"; }; + E0D4FE657221BBED4DC51E0EEB808D83 /* AutoAttachUtils.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; path = AutoAttachUtils.cpp; sourceTree = "<group>"; }; + E0ED632A690028C20D54E6F3A7876D12 /* Memory.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Memory.h; path = folly/portability/Memory.h; sourceTree = "<group>"; }; + E0F348CB4EBE93463B9642B83143962C /* openssl_md32_common.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = openssl_md32_common.h; path = Core/aes/openssl/openssl_md32_common.h; sourceTree = "<group>"; }; E0FE6533198104C97DB047DD5CD8AC67 /* libRNDeviceInfo.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; name = libRNDeviceInfo.a; path = libRNDeviceInfo.a; sourceTree = BUILT_PRODUCTS_DIR; }; - E1122B8B9816D5222710898DE93C3090 /* BugsnagDevice.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BugsnagDevice.h; sourceTree = "<group>"; }; - E118F6858BCEB19DF7DC045DC499869C /* README.md */ = {isa = PBXFileReference; includeInIndex = 1; path = README.md; sourceTree = "<group>"; }; - E1483CD8DB8D1F9F325FC40E006F8437 /* EXImageLoader.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = EXImageLoader.debug.xcconfig; sourceTree = "<group>"; }; - E15545D395D44A2CB1B9694E05BA0A65 /* GDTCOREvent.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = GDTCOREvent.m; path = GoogleDataTransport/GDTCORLibrary/GDTCOREvent.m; sourceTree = "<group>"; }; - E16681AEC54C6821A4E5D9301BB830F5 /* SDAssociatedObject.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = SDAssociatedObject.m; path = SDWebImage/Private/SDAssociatedObject.m; sourceTree = "<group>"; }; - E1BED444528B620E58346B09FA9CED47 /* BugsnagStacktrace.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BugsnagStacktrace.h; sourceTree = "<group>"; }; - E1E10551E1BA25B796460E47DC1ED197 /* REAJSCallNode.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = REAJSCallNode.m; sourceTree = "<group>"; }; - E1F1FF326CB1EAE4FF47CAA50C53DD6E /* RNBridgeModule.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNBridgeModule.h; path = RNNotifications/RNBridgeModule.h; sourceTree = "<group>"; }; - E1F7A0D97DA95FFB171D971F6CDBA8A3 /* FlowableDoOperator.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FlowableDoOperator.h; path = yarpl/flowable/FlowableDoOperator.h; sourceTree = "<group>"; }; - E201E516C29C03E985F33F4B984DC851 /* EXAV.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = EXAV.release.xcconfig; sourceTree = "<group>"; }; - E213DA801612E3BBF9E1C0B2821BD9CA /* RCTSinglelineTextInputView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTSinglelineTextInputView.h; sourceTree = "<group>"; }; - E21871B529EE14E91E52A27A8D1D1F13 /* Throughput.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Throughput.h; path = rsocket/benchmarks/Throughput.h; sourceTree = "<group>"; }; - E2196A5273FA07E66750CC0BAF09C27D /* AESCrypt.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = AESCrypt.cpp; path = Core/aes/AESCrypt.cpp; sourceTree = "<group>"; }; - E22B4113FC51C7241A0EF4BA6B002A14 /* NSData+ImageContentType.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "NSData+ImageContentType.m"; path = "SDWebImage/Core/NSData+ImageContentType.m"; sourceTree = "<group>"; }; - E2352E5FBE76E56B7B7BA6EF4F362CA4 /* FIRCLSUserLogging.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRCLSUserLogging.h; path = Crashlytics/Crashlytics/Components/FIRCLSUserLogging.h; sourceTree = "<group>"; }; - E240658062D7BD715785CFECCEAF544C /* FIRInstallationsLogger.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRInstallationsLogger.h; path = FirebaseInstallations/Source/Library/FIRInstallationsLogger.h; sourceTree = "<group>"; }; - E2631F974453177DD607E7B3C7AFD9A2 /* RCTBaseTextShadowView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTBaseTextShadowView.h; sourceTree = "<group>"; }; - E267A724BD8FE80839D12EA727B73AA5 /* F14Set.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = F14Set.h; path = folly/container/F14Set.h; sourceTree = "<group>"; }; - E26ADF16295C527BD74FD846E1F63094 /* FormatTraits.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FormatTraits.h; path = folly/FormatTraits.h; sourceTree = "<group>"; }; - E2775552BE0BE024476C10F95F7A12A2 /* bignum.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = bignum.cc; path = "double-conversion/bignum.cc"; sourceTree = "<group>"; }; - E2800914624977D069D1D05693D208F8 /* Flipper-PeerTalk-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "Flipper-PeerTalk-dummy.m"; sourceTree = "<group>"; }; - E288C521FCC2E603C406F068150CCF85 /* FutureSplitter.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FutureSplitter.h; path = folly/futures/FutureSplitter.h; sourceTree = "<group>"; }; - E28A2805C79CA4D8B140FB3487A2714D /* RNFBAnalytics-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "RNFBAnalytics-dummy.m"; sourceTree = "<group>"; }; - E2B5FC28C6329188208C5332F782776C /* BSG_KSObjC.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BSG_KSObjC.h; sourceTree = "<group>"; }; + E1017FC1A561D5627004E40633BED2A9 /* Singleton.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Singleton.h; path = folly/Singleton.h; sourceTree = "<group>"; }; + E10CC49F53DBF6560D6A4321960C76BA /* RNConfigReader.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = RNConfigReader.podspec; sourceTree = "<group>"; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; + E115122B84BB45292C4B26E6AE03BD57 /* UIColor+SKSonarValueCoder.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "UIColor+SKSonarValueCoder.h"; path = "iOS/Plugins/FlipperKitLayoutPlugin/FlipperKitLayoutPlugin/UIColor+SKSonarValueCoder.h"; sourceTree = "<group>"; }; + E12C0BD97750A1146C29953C5321F5A2 /* EXAudioSessionManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = EXAudioSessionManager.m; path = EXAV/EXAudioSessionManager.m; sourceTree = "<group>"; }; + E12C71B1F21722242BA20B48FCD80C48 /* Unicode.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Unicode.h; path = folly/Unicode.h; sourceTree = "<group>"; }; + E14F97DFBA6EDB24AE0BA2664AEA03E7 /* RCTComponentEvent.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTComponentEvent.m; sourceTree = "<group>"; }; + E16948EBAFBF296FF310AAC7FBE3D843 /* RCTScrollContentShadowView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTScrollContentShadowView.h; sourceTree = "<group>"; }; + E16BA816953EB2A650B4516FC6B20BA6 /* RCTTextSelection.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTTextSelection.h; sourceTree = "<group>"; }; + E170CB358FA51CCD7F155A2D1C864B82 /* CheckedMath.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = CheckedMath.h; path = folly/lang/CheckedMath.h; sourceTree = "<group>"; }; + E1713A5588F8D04B6CA83CD72D7E26D0 /* FIRCLSUnwind_arm.c */ = {isa = PBXFileReference; includeInIndex = 1; name = FIRCLSUnwind_arm.c; path = Crashlytics/Crashlytics/Unwind/FIRCLSUnwind_arm.c; sourceTree = "<group>"; }; + E18F26C7E0C16B106C7477F1CE0EA23F /* GULKeychainStorage.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = GULKeychainStorage.m; path = GoogleUtilities/Environment/SecureStorage/GULKeychainStorage.m; sourceTree = "<group>"; }; + E19B50AA4726F2C347CC9F9427E40319 /* AsyncSocketException.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = AsyncSocketException.h; path = folly/io/async/AsyncSocketException.h; sourceTree = "<group>"; }; + E1A29F8E06F7F92E4BA68304B65854A9 /* RCTAssert.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTAssert.m; sourceTree = "<group>"; }; + E1AB457B4F2773C7D747AD8F872C56AA /* BugsnagEventDeserializer.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BugsnagEventDeserializer.h; sourceTree = "<group>"; }; + E1AC095A5B43CACDFB3CA599A89CEF58 /* BugsnagLastRunInfo+Private.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "BugsnagLastRunInfo+Private.h"; sourceTree = "<group>"; }; + E1C1D58B539091B426EB2BE6AF1806A0 /* 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 = "<group>"; }; + E1CCD557F7181B3B0B5A3051A3CE40E6 /* RCTLog.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTLog.h; sourceTree = "<group>"; }; + E1D4345844A51A3143929344413ED7AB /* Conv.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = Conv.cpp; path = folly/Conv.cpp; sourceTree = "<group>"; }; + E1F93ED3671627B465FF6F04D7101D11 /* SDFileAttributeHelper.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = SDFileAttributeHelper.m; path = SDWebImage/Private/SDFileAttributeHelper.m; sourceTree = "<group>"; }; + E20842BB9F561E665311E5C26920917A /* alphai_dec.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = alphai_dec.h; path = src/dec/alphai_dec.h; sourceTree = "<group>"; }; + E20CAC7035E523A79C4F926DC98E7941 /* RNFBAppModule.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNFBAppModule.m; path = ios/RNFBApp/RNFBAppModule.m; sourceTree = "<group>"; }; + E2109A456A1AD90F143C45FF3B76ECC7 /* EventHandler.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = EventHandler.h; path = folly/io/async/EventHandler.h; sourceTree = "<group>"; }; + E24A8FF6BC602FBE633329C0DF646AAA /* REAJSCallNode.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = REAJSCallNode.m; sourceTree = "<group>"; }; + E24E6D1748759D3AD31F4F29C336E607 /* de.lproj */ = {isa = PBXFileReference; includeInIndex = 1; name = de.lproj; path = ios/QBImagePicker/QBImagePicker/de.lproj; sourceTree = "<group>"; }; + E256BF973F3576F39BF1249F5DB370E1 /* RNLocalize-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "RNLocalize-prefix.pch"; sourceTree = "<group>"; }; + E270D67F3D37A2FBE427DFA23B89A44E /* jsilib.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = jsilib.h; path = destroot/include/jsi/jsilib.h; sourceTree = "<group>"; }; + E28DC9882E95092FF5A22E9440916B36 /* RNCMaskedView-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "RNCMaskedView-dummy.m"; sourceTree = "<group>"; }; + E29EC038ADE36DEC92B372698811EEC4 /* RCTSafeAreaShadowView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTSafeAreaShadowView.m; sourceTree = "<group>"; }; + E29F1B28FB69628C4FC255D6304DD01F /* FileUtilDetail.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FileUtilDetail.h; path = folly/detail/FileUtilDetail.h; sourceTree = "<group>"; }; + E2A41D3659BDDF2344E851C3C0E2516B /* RCT-Folly.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "RCT-Folly.debug.xcconfig"; sourceTree = "<group>"; }; + E2A7E7AFFF7BD0EFD1EBCFA32ADEBD4E /* Format-inl.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "Format-inl.h"; path = "folly/Format-inl.h"; sourceTree = "<group>"; }; E2B63D462DB7F827C4B11FD51E4F8E2D /* libFirebaseCore.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; name = libFirebaseCore.a; path = libFirebaseCore.a; sourceTree = BUILT_PRODUCTS_DIR; }; - E2BB7A4727306FDE5D3F4BFAFD898726 /* IOBufQueue.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = IOBufQueue.cpp; path = folly/io/IOBufQueue.cpp; sourceTree = "<group>"; }; - E2C20142D7302B9F6BD186560877B9BF /* UMErrorCodes.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = UMErrorCodes.m; path = UMCore/UMErrorCodes.m; sourceTree = "<group>"; }; - E2C4F5D506247FD844878A1AA9B5B87E /* ARTGroupManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = ARTGroupManager.m; sourceTree = "<group>"; }; - E2C60A3260F71E892868D6AD6AEAF785 /* HazptrThreadPoolExecutor.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = HazptrThreadPoolExecutor.cpp; path = folly/synchronization/HazptrThreadPoolExecutor.cpp; sourceTree = "<group>"; }; - E2E3E7B7F4020EE3A3F8B639ACC00310 /* RCTLayoutAnimationGroup.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTLayoutAnimationGroup.h; sourceTree = "<group>"; }; - E2E51B08C8241F5CB9E1911832BB6E5C /* FireAndForgetResponder.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FireAndForgetResponder.h; path = rsocket/statemachine/FireAndForgetResponder.h; sourceTree = "<group>"; }; - E2FEA075AAC34B17ECD9903D379DE845 /* README.md */ = {isa = PBXFileReference; includeInIndex = 1; path = README.md; sourceTree = "<group>"; }; - E31156F425D164A2ED4E39B2E9028DD3 /* MMKV_IO.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = MMKV_IO.cpp; path = Core/MMKV_IO.cpp; sourceTree = "<group>"; }; - E311AF75C55D8D925493BFE2F1C09138 /* EXImageLoader.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = EXImageLoader.release.xcconfig; sourceTree = "<group>"; }; - E311CA96855FCF8855795BD4CE0AED45 /* rn-extensions-share-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "rn-extensions-share-dummy.m"; sourceTree = "<group>"; }; - E315D7B79159981A3EBB25FF9ED5CAE2 /* SaturatingSemaphore.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SaturatingSemaphore.h; path = folly/synchronization/SaturatingSemaphore.h; sourceTree = "<group>"; }; - E32F0ADDAD67DE6FFAEA3592A5620057 /* UIResponder+FirstResponderTemp.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "UIResponder+FirstResponderTemp.m"; sourceTree = "<group>"; }; - E34AB18BAA4A47BB7C41BBCFCB2261F2 /* GoogleUtilities.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = GoogleUtilities.release.xcconfig; sourceTree = "<group>"; }; - E361178BFF0F0A5AC12C76B6300B8268 /* RCTAes.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTAes.h; path = ios/RCTCrypto/RCTAes.h; sourceTree = "<group>"; }; - E36301726B1651C9836AC75A92EAE3EC /* AtomicHashUtils.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = AtomicHashUtils.h; path = folly/detail/AtomicHashUtils.h; sourceTree = "<group>"; }; - E366B66C03DB791740DF2536692620C1 /* REATransformNode.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = REATransformNode.m; sourceTree = "<group>"; }; - E36DAA2644DEBB87D9DAF5D9B3E3637D /* YGStyle.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = YGStyle.h; path = yoga/YGStyle.h; sourceTree = "<group>"; }; - E384D9EEFFAFC41DAC815088C09F4FA1 /* README.md */ = {isa = PBXFileReference; includeInIndex = 1; path = README.md; sourceTree = "<group>"; }; - E38C1AE8DEA5B9BE757563C6DE252B33 /* React-RCTImage.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "React-RCTImage.debug.xcconfig"; sourceTree = "<group>"; }; - E3A107D1CA871E2270BFC3B29210E99B /* GCDAsyncSocket.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = GCDAsyncSocket.h; path = Source/GCD/GCDAsyncSocket.h; sourceTree = "<group>"; }; - E3A23A2CAFD9B49866258805E564EE65 /* EXKeepAwake.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = EXKeepAwake.debug.xcconfig; sourceTree = "<group>"; }; - E3B827B8FE180C2C5A5139B362493C4C /* Connection.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = Connection.h; sourceTree = "<group>"; }; - E3BBE7A4CE823D2C68A59F6AA015FA1C /* BSG_KSCrashSentry_CPPException.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = BSG_KSCrashSentry_CPPException.mm; sourceTree = "<group>"; }; - E3BC7A6739A79A73F4091DEBB379CD0A /* BSGGlobals.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BSGGlobals.h; sourceTree = "<group>"; }; - E3BEF7877F768148E3E79A624A08A9FF /* YGConfig.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = YGConfig.h; path = yoga/YGConfig.h; sourceTree = "<group>"; }; - E3D5FF0ED8DC8C460ACAF715A3DACD19 /* DoubleConversion-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "DoubleConversion-dummy.m"; sourceTree = "<group>"; }; - E3E88B0CE350E5F46AB94F51A3084A92 /* predictor_enc.c */ = {isa = PBXFileReference; includeInIndex = 1; name = predictor_enc.c; path = src/enc/predictor_enc.c; sourceTree = "<group>"; }; - E3FBC406B7914F6D0D0800690D849E54 /* RCTImagePlugins.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTImagePlugins.mm; sourceTree = "<group>"; }; - E4111FAF4E1B43ADB06B9376F8FA80E8 /* RCTEventDispatcher.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTEventDispatcher.m; sourceTree = "<group>"; }; - E411C8BA0F4807158FF937325ED18B84 /* SDWebImageCacheKeyFilter.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SDWebImageCacheKeyFilter.h; path = SDWebImage/Core/SDWebImageCacheKeyFilter.h; sourceTree = "<group>"; }; - E41EB8C393836F73849E4A9EC52E1A37 /* F14Set-fwd.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "F14Set-fwd.h"; path = "folly/container/F14Set-fwd.h"; sourceTree = "<group>"; }; - E41FB7DBD8033F45915F4E81DBA50E0F /* CoreCachedSharedPtr.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = CoreCachedSharedPtr.h; path = folly/concurrency/CoreCachedSharedPtr.h; sourceTree = "<group>"; }; - E43323A34806A9BD3B6B4CB4A2FB27BD /* InlineExecutor.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = InlineExecutor.cpp; path = folly/executors/InlineExecutor.cpp; sourceTree = "<group>"; }; - E43D0C392A379945AB4092E47E7E0531 /* SerialExecutor.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SerialExecutor.h; path = folly/executors/SerialExecutor.h; sourceTree = "<group>"; }; - E46D73F190A6730B576634310DE76E76 /* FKTextSearchable.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FKTextSearchable.h; path = iOS/Plugins/FlipperKitLayoutPlugin/FlipperKitLayoutTextSearchable/FKTextSearchable.h; sourceTree = "<group>"; }; - E46F50A7B06925F63C961B555F8D2501 /* Yoga.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = Yoga.release.xcconfig; sourceTree = "<group>"; }; - E476010170478AC9D7AA25B09F7DCF62 /* RNFetchBlob.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RNFetchBlob.m; sourceTree = "<group>"; }; - E4840827025F06AA40F6ECA03F460647 /* Portability.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Portability.h; path = folly/Portability.h; sourceTree = "<group>"; }; - E49150825E7B7233D0DF10044CFF560C /* AsyncTransportCertificate.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = AsyncTransportCertificate.h; path = folly/io/async/AsyncTransportCertificate.h; sourceTree = "<group>"; }; - E495647157E078E4359FE6D76B770AB8 /* RNReanimated-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "RNReanimated-dummy.m"; sourceTree = "<group>"; }; + E2CFCB04C5B5C726E1082EAF0B9E003D /* TokenBucket.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = TokenBucket.h; path = folly/TokenBucket.h; sourceTree = "<group>"; }; + E2E49DD0C8929E7A7FD37E93CC1E9610 /* ARTShapeManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = ARTShapeManager.m; sourceTree = "<group>"; }; + E2E64270484232874B989E1185FE02C0 /* SDImageCachesManagerOperation.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SDImageCachesManagerOperation.h; path = SDWebImage/Private/SDImageCachesManagerOperation.h; sourceTree = "<group>"; }; + E2F2B2A8ACCA4D1DCBB169367C885EFF /* BugsnagReactNativePlugin.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BugsnagReactNativePlugin.h; sourceTree = "<group>"; }; + E3064AA592E63D119E4B6ADA43C9659A /* FrameSerializer.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FrameSerializer.h; path = rsocket/framing/FrameSerializer.h; sourceTree = "<group>"; }; + E314D4C2C6C65DFF19CCAEA88EF912E3 /* ScopedEventBaseThread.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = ScopedEventBaseThread.cpp; path = folly/io/async/ScopedEventBaseThread.cpp; sourceTree = "<group>"; }; + E31C19D8AFC44ECFFDC07485931767FC /* RNDateTimePickerManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNDateTimePickerManager.m; path = ios/RNDateTimePickerManager.m; sourceTree = "<group>"; }; + E322625505DDB3B36E6E3A865CF9CD6B /* FBLPromise+Then.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "FBLPromise+Then.h"; path = "Sources/FBLPromises/include/FBLPromise+Then.h"; sourceTree = "<group>"; }; + E326346C3F6F956C4A7A0CD43686C0C5 /* SysMman.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = SysMman.cpp; path = folly/portability/SysMman.cpp; sourceTree = "<group>"; }; + E32E47B2EB301B509BAE594765A2A40C /* CPUThreadPoolExecutor.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = CPUThreadPoolExecutor.cpp; path = folly/executors/CPUThreadPoolExecutor.cpp; sourceTree = "<group>"; }; + E330670D615FDD6559EFB2776AA38D5F /* RCTPbkdf2.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RCTPbkdf2.m; path = ios/RCTCrypto/RCTPbkdf2.m; sourceTree = "<group>"; }; + E332AEF40249C0BD861884BBD88AE916 /* GDTCCTNanopbHelpers.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = GDTCCTNanopbHelpers.h; path = GoogleDataTransport/GDTCCTLibrary/Private/GDTCCTNanopbHelpers.h; sourceTree = "<group>"; }; + E3473D58F3FD2F725F1CADF0934C85EC /* Barrier.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = Barrier.cpp; path = folly/futures/Barrier.cpp; sourceTree = "<group>"; }; + E34C91358CF624A99CF981CA243796DF /* UMNativeModulesProxy.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = UMNativeModulesProxy.h; sourceTree = "<group>"; }; + E351D7A5203DFA3D8E7AC5382744D494 /* rn-fetch-blob-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "rn-fetch-blob-prefix.pch"; sourceTree = "<group>"; }; + E358D84192D39F3403238DD6343235A1 /* MMKV.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = MMKV.h; path = Core/MMKV.h; sourceTree = "<group>"; }; + E35B447FE84DFCBF82D5E0E79DEB9EFD /* RNFetchBlobNetwork.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNFetchBlobNetwork.m; path = ios/RNFetchBlobNetwork.m; sourceTree = "<group>"; }; + E391A38F3AB7DC9C5B3A3E00AA4A96AA /* TOCroppedImageAttributes.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = TOCroppedImageAttributes.h; path = "Objective-C/TOCropViewController/Models/TOCroppedImageAttributes.h"; sourceTree = "<group>"; }; + E3CC73C5AF7227BD689ABCDCAC176D38 /* Fcntl.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Fcntl.h; path = folly/portability/Fcntl.h; sourceTree = "<group>"; }; + E3D8666BBACE87E4BE1D6B8FAC65D0C9 /* SocketFastOpen.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = SocketFastOpen.cpp; path = folly/detail/SocketFastOpen.cpp; sourceTree = "<group>"; }; + E3DAD9C92A1A82542F125C1530FC634B /* EXPermissions.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = EXPermissions.debug.xcconfig; sourceTree = "<group>"; }; + E3E4EF97A59C1231D48A36AD639EE20D /* RCTScrollViewManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTScrollViewManager.m; sourceTree = "<group>"; }; + E3E4FA13F9AF4BE05DBAE8765242D98A /* LICENSE */ = {isa = PBXFileReference; includeInIndex = 1; path = LICENSE; sourceTree = "<group>"; }; + E3EAF96E3C845AC45913410509630EA6 /* HardwareConcurrency.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = HardwareConcurrency.cpp; path = folly/system/HardwareConcurrency.cpp; sourceTree = "<group>"; }; + E3F0E5A37D0A77F1842D32D82C515000 /* Fcntl.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Fcntl.h; path = folly/portability/Fcntl.h; sourceTree = "<group>"; }; + E3F7EA7EF7F7921678ABA06E6A73D95D /* RNDeviceInfo-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "RNDeviceInfo-dummy.m"; sourceTree = "<group>"; }; + E4169119DC0D169FCDC07B564BB80AA8 /* RCTFileRequestHandler.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTFileRequestHandler.mm; sourceTree = "<group>"; }; + E4201C99C3B6EA1D84374FE7D238F074 /* PromisesObjC-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "PromisesObjC-dummy.m"; sourceTree = "<group>"; }; + E42359BFAB47E421C142D3E16A23D74E /* alpha_enc.c */ = {isa = PBXFileReference; includeInIndex = 1; name = alpha_enc.c; path = src/enc/alpha_enc.c; sourceTree = "<group>"; }; + E4291BE5D4094204E717CF0508CFAF71 /* IOBuf.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = IOBuf.h; path = folly/io/IOBuf.h; sourceTree = "<group>"; }; + E4878457DAD0DD21255A055941A61A09 /* RNConfigReader-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "RNConfigReader-dummy.m"; sourceTree = "<group>"; }; + E494E88B86ACCB777078C6A4EC044B55 /* RNPushKitEventListener.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNPushKitEventListener.h; path = RNNotifications/RNPushKitEventListener.h; sourceTree = "<group>"; }; E496A53A92B4E464B5C30DC5B1E4E257 /* libRNRootView.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; name = libRNRootView.a; path = libRNRootView.a; sourceTree = BUILT_PRODUCTS_DIR; }; - E49BA4E0B5A65C4D0C289A3CE128B70B /* Future-pre.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "Future-pre.h"; path = "folly/futures/Future-pre.h"; sourceTree = "<group>"; }; - E4A5AC96B92CF782E2E8B80ED46C299D /* Init.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Init.h; path = folly/init/Init.h; sourceTree = "<group>"; }; - E4A6BA210B4EFD203AABF20E4E4B840D /* RCTUtils.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTUtils.m; sourceTree = "<group>"; }; - E4AC6DA50FDB54B47545655896A80D4E /* RCTLinkingManager.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTLinkingManager.mm; sourceTree = "<group>"; }; - E4B12CEC68F65F6CC49C9E3844577875 /* StreamsWriter.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = StreamsWriter.cpp; path = rsocket/statemachine/StreamsWriter.cpp; sourceTree = "<group>"; }; - E4B494359C9B23346165C652A401B302 /* BSG_KSCrashSentry_MachException.c */ = {isa = PBXFileReference; includeInIndex = 1; path = BSG_KSCrashSentry_MachException.c; sourceTree = "<group>"; }; - E4B78EBBF959C2EAF87A2DCF877BD136 /* JSITracing.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = JSITracing.h; sourceTree = "<group>"; }; - E4FC8715E1EB40E6DA91B572FD796DA9 /* Try.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Try.h; path = folly/Try.h; sourceTree = "<group>"; }; - E503A206DA16C1284D11C3DA57A0F135 /* RequestResponseResponder.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = RequestResponseResponder.cpp; path = rsocket/statemachine/RequestResponseResponder.cpp; sourceTree = "<group>"; }; - E509FD956BD9317B6C7E872F35A42704 /* CachelinePadded.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = CachelinePadded.h; path = folly/CachelinePadded.h; sourceTree = "<group>"; }; - E50E37E179D4BCED1B314EEEDDEF6C2E /* ChannelRequester.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ChannelRequester.h; path = rsocket/statemachine/ChannelRequester.h; sourceTree = "<group>"; }; - E5110EEC4FB7CF35A200C38520B5D6C3 /* TimedDrivableExecutor.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = TimedDrivableExecutor.h; path = folly/executors/TimedDrivableExecutor.h; sourceTree = "<group>"; }; - E5164A0041888D02D9F6B0521C7C8880 /* FirebaseAnalytics.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = FirebaseAnalytics.release.xcconfig; sourceTree = "<group>"; }; - E51825EED7240CC4E05BE009AC454015 /* TimekeeperScheduledExecutor.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = TimekeeperScheduledExecutor.h; path = folly/executors/TimekeeperScheduledExecutor.h; sourceTree = "<group>"; }; - E51E3D93489327FBA7B49801806BF032 /* json_patch.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = json_patch.h; path = folly/json_patch.h; sourceTree = "<group>"; }; - E531E7D2B3ED3E5A8881EEFD0CC0A77B /* GULReachabilityChecker+Internal.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "GULReachabilityChecker+Internal.h"; path = "GoogleUtilities/Reachability/GULReachabilityChecker+Internal.h"; sourceTree = "<group>"; }; - E5337603B78A222B6B5B57618DB6080B /* SynchronizedPtr.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SynchronizedPtr.h; path = folly/SynchronizedPtr.h; sourceTree = "<group>"; }; - E54E206E6640A82C57D50C0627552E5F /* openssl_arm_arch.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = openssl_arm_arch.h; path = Core/aes/openssl/openssl_arm_arch.h; sourceTree = "<group>"; }; - E551AF1B96A249735565C79072A99930 /* event_tagging.c */ = {isa = PBXFileReference; includeInIndex = 1; path = event_tagging.c; sourceTree = "<group>"; }; - E5539CD4B01605A209EAE449CD37F855 /* RCTSurfaceStage.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTSurfaceStage.h; sourceTree = "<group>"; }; - E553F01BE30FCC53EB6EE5B3FA54B6B5 /* StaticSingletonManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = StaticSingletonManager.h; path = folly/detail/StaticSingletonManager.h; sourceTree = "<group>"; }; - E55B796088A5C84D7AFE45AE1D13C2DC /* AsyncSignalHandler.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = AsyncSignalHandler.h; path = folly/io/async/AsyncSignalHandler.h; sourceTree = "<group>"; }; - E55D28053CED82024BBF5606B125B4AD /* RNCMaskedView-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "RNCMaskedView-dummy.m"; sourceTree = "<group>"; }; - E55E4E782BC0B7CC36EAD9507597C474 /* Format.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = Format.cpp; path = folly/Format.cpp; sourceTree = "<group>"; }; + E4B0D417A284D85E11C0002AB9A27794 /* IntrusiveList.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = IntrusiveList.h; path = folly/IntrusiveList.h; sourceTree = "<group>"; }; + E4B3AE51832A2A1D1F7AB2D2C7126B8E /* RCTMultilineTextInputViewManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTMultilineTextInputViewManager.m; sourceTree = "<group>"; }; + E4C0031B5C49C9E0C0226C93B2339A51 /* Yoga.modulemap */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.module; path = Yoga.modulemap; sourceTree = "<group>"; }; + E4C02CD52F3ECC48E0FDAB1D374C47E3 /* ConcurrentHashMap.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ConcurrentHashMap.h; path = folly/concurrency/ConcurrentHashMap.h; sourceTree = "<group>"; }; + E4C69F25A2BEB7A59CD853002DC3ED09 /* MethodCall.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = MethodCall.h; sourceTree = "<group>"; }; + E4C9A4B31AD0A6250478EA448B4064EC /* RNCPicker.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = RNCPicker.debug.xcconfig; sourceTree = "<group>"; }; + E4CBBB2A0213C343B58B13DD110F317A /* KeyCommands.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = KeyCommands.debug.xcconfig; sourceTree = "<group>"; }; + E4D567FBBB517C1C45BDB8F7B8D44777 /* TurboModule.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = TurboModule.h; sourceTree = "<group>"; }; + E4E3AE5EDA62C95B4A4110C93361957C /* FIRCLSSymbolResolver.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRCLSSymbolResolver.h; path = Crashlytics/Crashlytics/Models/FIRCLSSymbolResolver.h; sourceTree = "<group>"; }; + E4E47BC976C96EFCCAC054D03EE06784 /* FIRCLSLogger.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRCLSLogger.m; path = Crashlytics/Crashlytics/Helpers/FIRCLSLogger.m; sourceTree = "<group>"; }; + E4E90D9EB96E434849D3D9AE7AE6E2DA /* TypeList.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = TypeList.h; path = folly/detail/TypeList.h; sourceTree = "<group>"; }; + E4EF61E074D0AFE177C5A3546D4C1630 /* GCConfig.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = GCConfig.h; path = destroot/include/hermes/Public/GCConfig.h; sourceTree = "<group>"; }; + E518A968D204E2B4A079F40115E26296 /* Future.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Future.h; path = folly/futures/Future.h; sourceTree = "<group>"; }; + E51C62E0BA9971F4FEC91528EB53CEE5 /* ConcurrentSkipList-inl.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "ConcurrentSkipList-inl.h"; path = "folly/ConcurrentSkipList-inl.h"; sourceTree = "<group>"; }; + E52C581DD54A2EE36E349C1977879E10 /* UMModuleRegistryAdapter.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = UMModuleRegistryAdapter.m; sourceTree = "<group>"; }; + E5358FA0CE94F364385FC3214CEE3E13 /* RCTAnimationPlugins.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTAnimationPlugins.h; path = Libraries/NativeAnimation/RCTAnimationPlugins.h; sourceTree = "<group>"; }; + E540DDA1FC9323CD80D9AA672062CC35 /* FlipperConnectionImpl.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FlipperConnectionImpl.h; path = xplat/Flipper/FlipperConnectionImpl.h; sourceTree = "<group>"; }; + E5463DB18FF3651C69C2B5E057281EAF /* GoogleDataTransportInternal.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = GoogleDataTransportInternal.h; path = GoogleDataTransport/GDTCORLibrary/Internal/GoogleDataTransportInternal.h; sourceTree = "<group>"; }; + E55193D3600A210F71F9BEB5BEB6BE15 /* AtomicUtils.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = AtomicUtils.h; path = folly/synchronization/detail/AtomicUtils.h; sourceTree = "<group>"; }; + E556E64E8575166C57A3D7ECD8CF7122 /* RCTPackagerConnection.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTPackagerConnection.mm; sourceTree = "<group>"; }; + E559D9067DC554374AEE83E406D966B1 /* ClockGettimeWrappers.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = ClockGettimeWrappers.cpp; path = folly/ClockGettimeWrappers.cpp; sourceTree = "<group>"; }; E55EA3C6F285F6FA8067C5C8A428FA64 /* libRNFastImage.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; name = libRNFastImage.a; path = libRNFastImage.a; sourceTree = BUILT_PRODUCTS_DIR; }; - E56CEBB5E690CE30375C80AABF6B4CE1 /* Cursor.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = Cursor.cpp; path = folly/io/Cursor.cpp; sourceTree = "<group>"; }; - E59C76EA0B2F7BDD8545DE03BE13E951 /* DebuggerTypes.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = DebuggerTypes.h; path = destroot/include/hermes/Public/DebuggerTypes.h; sourceTree = "<group>"; }; - E5A50A19568EFE63722FB4084BE8F624 /* react-native-orientation-locker.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = "react-native-orientation-locker.podspec"; sourceTree = "<group>"; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; - E5B537ACAE05A9107F8CA4D4676B8F34 /* RCTKeyboardObserver.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTKeyboardObserver.mm; sourceTree = "<group>"; }; - E5D28F0A61F7D7F137B1FB7DCFDA4210 /* RCTProfile.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTProfile.h; sourceTree = "<group>"; }; - E5D4170E4147969786CE3297B8D288DF /* BugsnagKVStore.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BugsnagKVStore.h; sourceTree = "<group>"; }; - E5DBA3610AA54AC09C951A55CEA789D4 /* FKPortForwardingServer.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FKPortForwardingServer.m; path = iOS/FlipperKit/FKPortForwarding/FKPortForwardingServer.m; sourceTree = "<group>"; }; - E5DD2E4A3E1B76BAD034115D0188B153 /* UIImageView+WebCache.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "UIImageView+WebCache.m"; path = "SDWebImage/Core/UIImageView+WebCache.m"; sourceTree = "<group>"; }; - E5E64F267161CCD740E6E399862D33D0 /* react-native-cameraroll-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "react-native-cameraroll-dummy.m"; sourceTree = "<group>"; }; - E5F7C4CFBBA3148E9239CEC7A806D43C /* Assume.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = Assume.cpp; path = folly/lang/Assume.cpp; sourceTree = "<group>"; }; - E5FBFF562348BFED4DA0A752A2AEC5F5 /* GULNetworkLoggerProtocol.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = GULNetworkLoggerProtocol.h; path = GoogleUtilities/Network/Private/GULNetworkLoggerProtocol.h; sourceTree = "<group>"; }; - E5FE7116DCC620D7CF0E83B589FADB2C /* SDImageCoder.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SDImageCoder.h; path = SDWebImage/Core/SDImageCoder.h; sourceTree = "<group>"; }; - E6047876F69097A9838EEBDAF3540193 /* InlineExecutor.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = InlineExecutor.h; path = folly/executors/InlineExecutor.h; sourceTree = "<group>"; }; - E60B63962F0015EBE01DA39997A2EC56 /* RCTSinglelineTextInputViewManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTSinglelineTextInputViewManager.h; sourceTree = "<group>"; }; - E612D2832D116E527EFCC79329C6BEC5 /* DispatchMessageQueueThread.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = DispatchMessageQueueThread.h; sourceTree = "<group>"; }; - E61AF1CB17B0CA8E7D4A8158361F4DF4 /* JSIExecutor.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = JSIExecutor.cpp; path = jsireact/JSIExecutor.cpp; sourceTree = "<group>"; }; - E623D939ADE2AE10BEAA3C1B7D16981B /* RCTJSIExecutorRuntimeInstaller.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTJSIExecutorRuntimeInstaller.h; sourceTree = "<group>"; }; - E6247092A3A7D4453BA51D4C8EB6FA36 /* RNConfigReader-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "RNConfigReader-prefix.pch"; sourceTree = "<group>"; }; - E62636EB54EBAC8FFAAD4C44CF3B71D7 /* RCTInputAccessoryShadowView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTInputAccessoryShadowView.h; sourceTree = "<group>"; }; - E62A1F105A07C4476D9363A56E5BBAA8 /* RCTVibrationPlugins.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTVibrationPlugins.mm; sourceTree = "<group>"; }; - E649690720DE207C55AEC9762403EB41 /* RNBridgeModule.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNBridgeModule.m; path = RNNotifications/RNBridgeModule.m; sourceTree = "<group>"; }; - E64D6F2518426A503477914FC7324C80 /* RNNativeViewHandler.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RNNativeViewHandler.m; sourceTree = "<group>"; }; - E654F3DD214C3891F78D738C606F77F9 /* FIRErrors.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRErrors.h; path = FirebaseCore/Sources/Private/FIRErrors.h; sourceTree = "<group>"; }; - E658D0B87F376A26ECCE7D29B51CB804 /* ThreadCachedArena.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ThreadCachedArena.h; path = folly/memory/ThreadCachedArena.h; sourceTree = "<group>"; }; - E65DF580CDF8C63ECECC8CD73F27ABBF /* RCTNativeAnimatedTurboModule.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTNativeAnimatedTurboModule.mm; sourceTree = "<group>"; }; - E65F59936EEA71AA441C0A9D942FFAEA /* VibrancyView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = VibrancyView.h; path = ios/VibrancyView.h; sourceTree = "<group>"; }; - E690CF7FDCEF70E0454A91E9EB1E11EA /* EXAppleAuthenticationButtonViewManagers.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = EXAppleAuthenticationButtonViewManagers.m; path = EXAppleAuthentication/EXAppleAuthenticationButtonViewManagers.m; sourceTree = "<group>"; }; + E55EDDEC77042F3A98563BFA72154E6D /* SerialExecutor.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = SerialExecutor.h; sourceTree = "<group>"; }; + E56D2743944F33EEACBFD17834DF29B6 /* FIRCLSAllocate.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRCLSAllocate.h; path = Crashlytics/Crashlytics/Helpers/FIRCLSAllocate.h; sourceTree = "<group>"; }; + E5812AE9654BC3D45A1CFBAF08286EDA /* ParkingLot.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = ParkingLot.cpp; path = folly/synchronization/ParkingLot.cpp; sourceTree = "<group>"; }; + E5A94C202F92FAC83424F6ACDCC5CD83 /* hermes-engine.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "hermes-engine.debug.xcconfig"; sourceTree = "<group>"; }; + E5CD9A4A9B17CBD64EAF74A0668ED407 /* FIRCLSAsyncOperation.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRCLSAsyncOperation.m; path = Crashlytics/Crashlytics/Operations/FIRCLSAsyncOperation.m; sourceTree = "<group>"; }; + E5D5F9AB1D06A59BD793A94340EBCCFD /* Time.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Time.h; path = folly/portability/Time.h; sourceTree = "<group>"; }; + E60E6DCBBC4B36C4E43EC611EA3D2700 /* RNConfigReader.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = RNConfigReader.debug.xcconfig; sourceTree = "<group>"; }; + E61799849438E443FA8F89CB1E7DA49D /* AsyncTrace.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = AsyncTrace.h; path = folly/detail/AsyncTrace.h; sourceTree = "<group>"; }; + E61E98696B10F024465A30044F503482 /* nanopb-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "nanopb-dummy.m"; sourceTree = "<group>"; }; + E62CF2366AEA19ECB171DDE5AEDCE7D1 /* BSG_KSBacktrace.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BSG_KSBacktrace.h; sourceTree = "<group>"; }; + E6318B70E54C826E673F6F63003CADF4 /* Sse.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Sse.h; path = folly/detail/Sse.h; sourceTree = "<group>"; }; + E63ED249D8F7E965097918453011F47C /* UncaughtExceptions.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = UncaughtExceptions.h; path = folly/lang/UncaughtExceptions.h; sourceTree = "<group>"; }; + E6438A9D92D63FE37954A555CF17180E /* FIRCLSThreadArrayOperation.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRCLSThreadArrayOperation.h; path = Crashlytics/Crashlytics/Operations/Symbolication/FIRCLSThreadArrayOperation.h; sourceTree = "<group>"; }; + E6541407FBC45AD01D6C67E86D304935 /* BSG_KSSystemInfoC.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BSG_KSSystemInfoC.h; sourceTree = "<group>"; }; + E6587A2DFF4F9DDCDF2073DB2041C48F /* React-perflogger-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "React-perflogger-dummy.m"; sourceTree = "<group>"; }; + E67E4622717AF2F4B726295DFD25C04A /* cs.lproj */ = {isa = PBXFileReference; includeInIndex = 1; name = cs.lproj; path = "Objective-C/TOCropViewController/Resources/cs.lproj"; sourceTree = "<group>"; }; + E68905C156ABE50BA45B88BB0A773969 /* RNNotificationCenterListener.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNNotificationCenterListener.m; path = RNNotifications/RNNotificationCenterListener.m; sourceTree = "<group>"; }; + E68AABB7E6C2334DCF5B7AF56976E819 /* BugsnagSessionTracker.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BugsnagSessionTracker.h; sourceTree = "<group>"; }; + E68ABF8D733C8D4CB8759E1864D8DA10 /* FIRInstallationsHTTPError.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRInstallationsHTTPError.m; path = FirebaseInstallations/Source/Library/Errors/FIRInstallationsHTTPError.m; sourceTree = "<group>"; }; + E6928B48932A98341D9398DDCDBD2C08 /* vp8i_enc.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = vp8i_enc.h; path = src/enc/vp8i_enc.h; sourceTree = "<group>"; }; + E69CD8888A61ACCF02A99D4050B4D66F /* TimeoutQueue.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = TimeoutQueue.h; path = folly/TimeoutQueue.h; sourceTree = "<group>"; }; E6A16705C69FC7DE11C2469A4A0F8358 /* libReact-RCTText.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; name = "libReact-RCTText.a"; path = "libReact-RCTText.a"; sourceTree = BUILT_PRODUCTS_DIR; }; - E6A7AB775F20AF1DAAFE10B7A75707F6 /* OpenSSLPtrTypes.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = OpenSSLPtrTypes.h; path = folly/ssl/OpenSSLPtrTypes.h; sourceTree = "<group>"; }; - E6B31D47FEA12DF3F7029345AFBA4B35 /* RNFBCrashlytics.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = RNFBCrashlytics.release.xcconfig; sourceTree = "<group>"; }; - E6BB15D5AAC1A14C30DCEFA63C6121DC /* react-native-document-picker.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "react-native-document-picker.debug.xcconfig"; sourceTree = "<group>"; }; - E6C7448F6E74F1B3741E80C1407DB9AA /* RCTImageLoaderProtocol.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTImageLoaderProtocol.h; path = Libraries/Image/RCTImageLoaderProtocol.h; sourceTree = "<group>"; }; - E6E79FE021EE1FF1B04B701B1D757EEB /* RCTAlertController.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTAlertController.m; sourceTree = "<group>"; }; - E6E9C7C5B109498EC681F09D923E5C93 /* EnvUtil.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = EnvUtil.h; path = folly/experimental/EnvUtil.h; sourceTree = "<group>"; }; - E6F8E4122200E27EF9E2B713BD332D98 /* react-native-simple-crypto-umbrella.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "react-native-simple-crypto-umbrella.h"; sourceTree = "<group>"; }; - E70FB33CFF014F38A4E95193A259BC24 /* FlipperState.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FlipperState.h; path = xplat/Flipper/FlipperState.h; sourceTree = "<group>"; }; - E72C685352DEFE901EBBF6470E4C2F4E /* FarmHash.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FarmHash.h; path = folly/hash/FarmHash.h; sourceTree = "<group>"; }; - E72D1BAC77A444AB18BD08E79FF60128 /* PublisherBase.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = PublisherBase.cpp; path = rsocket/statemachine/PublisherBase.cpp; sourceTree = "<group>"; }; - E72DF4E8DF7E1FAE2347EB412774F23C /* SysMman.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = SysMman.cpp; path = folly/portability/SysMman.cpp; sourceTree = "<group>"; }; - E73576E4DD271746E8BF6040262BEDEA /* RCTComponentEvent.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTComponentEvent.m; sourceTree = "<group>"; }; - E737CD50AB9187B1427A4BE435D43ED7 /* SDImageWebPCoder.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = SDImageWebPCoder.m; path = SDWebImageWebPCoder/Classes/SDImageWebPCoder.m; sourceTree = "<group>"; }; - E739090C6C03C989B43BF82B69633336 /* RAMBundleRegistry.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; path = RAMBundleRegistry.cpp; sourceTree = "<group>"; }; - E759369F67438720C9E32980E6886097 /* RCTPropsAnimatedNode.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTPropsAnimatedNode.h; sourceTree = "<group>"; }; - E75DC717CE866A378A65C768DBF983EE /* RCTMultiplicationAnimatedNode.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTMultiplicationAnimatedNode.h; sourceTree = "<group>"; }; - E79C2D119F2D803A10DD36C7E1C7AC04 /* ParkingLot.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = ParkingLot.cpp; path = folly/synchronization/ParkingLot.cpp; sourceTree = "<group>"; }; - E7ADF92BC8D60C28A629D61B66BEC765 /* README.md */ = {isa = PBXFileReference; includeInIndex = 1; path = README.md; sourceTree = "<group>"; }; - E7D0233C155796C1E13046A0A2621FFB /* select.c */ = {isa = PBXFileReference; includeInIndex = 1; path = select.c; sourceTree = "<group>"; }; - E7D542686358449C4464EF32763BE4A2 /* upsampling_sse41.c */ = {isa = PBXFileReference; includeInIndex = 1; name = upsampling_sse41.c; path = src/dsp/upsampling_sse41.c; sourceTree = "<group>"; }; - E7D565D7D6C306053C2BDFCF2E18FB85 /* GULKeychainStorage.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = GULKeychainStorage.h; path = GoogleUtilities/Environment/Private/GULKeychainStorage.h; sourceTree = "<group>"; }; - E7FA9A7A65259B3BD7831B47502FF765 /* ThreadedExecutor.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ThreadedExecutor.h; path = folly/executors/ThreadedExecutor.h; sourceTree = "<group>"; }; - E7FEFE9C75C4B0D2872A9B3DB2E10D6B /* DynamicParser-inl.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "DynamicParser-inl.h"; path = "folly/experimental/DynamicParser-inl.h"; sourceTree = "<group>"; }; - E80635EC34953AA8AD4B2B9D96B1F1D6 /* Unicode.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = Unicode.cpp; path = folly/Unicode.cpp; sourceTree = "<group>"; }; - E80DD25952CCAFAE57F3977CEC976B49 /* BugsnagError+Private.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "BugsnagError+Private.h"; sourceTree = "<group>"; }; - E815744FFA2710E1B7D0A4B6EED45E59 /* GULHeartbeatDateStorage.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = GULHeartbeatDateStorage.m; path = GoogleUtilities/Environment/GULHeartbeatDateStorage.m; sourceTree = "<group>"; }; - E82511315009324355D2E12F76D4A1CD /* LICENSE */ = {isa = PBXFileReference; includeInIndex = 1; path = LICENSE; sourceTree = "<group>"; }; - E82BBCC6FC3B357369DB911A9DDB8310 /* Stdlib.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = Stdlib.cpp; path = folly/portability/Stdlib.cpp; sourceTree = "<group>"; }; - E8407F7D051C127800BA923758D2BCDF /* RNBootSplash.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNBootSplash.h; path = ios/RNBootSplash.h; sourceTree = "<group>"; }; - E84B304A0A3E5E63A9395D43DACFBEC1 /* FIRStackFrame.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRStackFrame.h; path = Crashlytics/Crashlytics/Public/FIRStackFrame.h; sourceTree = "<group>"; }; - E84CBA71F965032851FABF0DCEB5989E /* TurboCxxModule.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = TurboCxxModule.h; sourceTree = "<group>"; }; - E854F6CC4EF3F49C1842C5F714E0A458 /* RCTTiming.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTTiming.h; path = React/CoreModules/RCTTiming.h; sourceTree = "<group>"; }; - E86E5936B7E74BEB90393903C90CB8F1 /* UMAppLifecycleService.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = UMAppLifecycleService.h; sourceTree = "<group>"; }; - E87529B1BAFDF45BD486509718772E8E /* Types.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Types.h; path = folly/futures/detail/Types.h; sourceTree = "<group>"; }; - E884679A003053FDD31145859496BA59 /* RCTPackagerClient.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTPackagerClient.m; sourceTree = "<group>"; }; - E8A17AD3EF22B3EDE7BC6C2E0715F83F /* RNNotifications.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNNotifications.h; path = RNNotifications/RNNotifications.h; sourceTree = "<group>"; }; - E8A76263AAF9CD26313B2E6488D9987E /* TurnSequencer.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = TurnSequencer.h; path = folly/detail/TurnSequencer.h; sourceTree = "<group>"; }; - E8BF05003B6E1A74DEB132D265F033A8 /* BugsnagReactNative.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = BugsnagReactNative.podspec; sourceTree = "<group>"; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; - E8BFDC44834812D83E93BA1CF7F08FA1 /* GLog.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = GLog.h; path = folly/GLog.h; sourceTree = "<group>"; }; - E92ABFDAB203180947FBEDCB9BC3B942 /* GDTCORUploadPackage.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = GDTCORUploadPackage.h; path = GoogleDataTransport/GDTCORLibrary/Public/GDTCORUploadPackage.h; sourceTree = "<group>"; }; - E930EFE217233CB3748BF3259CC7C4C4 /* StorageIndexer.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = StorageIndexer.m; path = ios/StorageIndexer.m; sourceTree = "<group>"; }; - E9379D71B955ED8CE023DC49B56E9AD4 /* RSocketServiceHandler.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = RSocketServiceHandler.cpp; path = rsocket/RSocketServiceHandler.cpp; sourceTree = "<group>"; }; - E93BF2785F1FCD510171B2995196D697 /* RCTImageEditingManager.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTImageEditingManager.mm; sourceTree = "<group>"; }; + E6B85D082DB25A1C9DCA3E28E844D939 /* Subscription.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = Subscription.cpp; path = yarpl/observable/Subscription.cpp; sourceTree = "<group>"; }; + E6B9AB610EF64D266D39FF5B4150363C /* BSGAppHangDetector.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = BSGAppHangDetector.m; sourceTree = "<group>"; }; + E6BB1C756AA76D2E9FABD61C8B6FEDBC /* SKObject.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SKObject.h; path = iOS/Plugins/FlipperKitLayoutPlugin/FlipperKitLayoutPlugin/SKObject.h; sourceTree = "<group>"; }; + E6C55CDB3C7EEB76F1BDEC8B84C08B70 /* Flipper-DoubleConversion.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "Flipper-DoubleConversion.debug.xcconfig"; sourceTree = "<group>"; }; + E6CDEBBD0A515FDA086530130EC3F198 /* HHWheelTimer.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = HHWheelTimer.h; path = folly/io/async/HHWheelTimer.h; sourceTree = "<group>"; }; + E6DE1541D11FE040E5609B01D20E0545 /* ResumeIdentificationToken.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ResumeIdentificationToken.h; path = rsocket/framing/ResumeIdentificationToken.h; sourceTree = "<group>"; }; + E6EAE357D82F2E13F6104993B12B3A06 /* experiments-inl.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "experiments-inl.h"; sourceTree = "<group>"; }; + E7068CC5C72E5A4B01423730674BCAE8 /* LICENSE */ = {isa = PBXFileReference; includeInIndex = 1; path = LICENSE; sourceTree = "<group>"; }; + E70A023443904DDE940CCFDFA3F0C672 /* RCTActivityIndicatorView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTActivityIndicatorView.h; sourceTree = "<group>"; }; + E7139B81C2E757EA8FD47CE93F0CE719 /* FIRInteropParameterNames.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRInteropParameterNames.h; path = Interop/Analytics/Public/FIRInteropParameterNames.h; sourceTree = "<group>"; }; + E7205498D2F3F369D9740496F9922020 /* FBLPromise+Reduce.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "FBLPromise+Reduce.m"; path = "Sources/FBLPromises/FBLPromise+Reduce.m"; sourceTree = "<group>"; }; + E721B6881F3C08E2F491A70FCC2BEF12 /* RNFBAnalyticsModule.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNFBAnalyticsModule.h; path = ios/RNFBAnalytics/RNFBAnalyticsModule.h; sourceTree = "<group>"; }; + E730EBB084C9DC7409F5E53223334B09 /* LICENSE */ = {isa = PBXFileReference; includeInIndex = 1; path = LICENSE; sourceTree = "<group>"; }; + E74B2390826FB2794D4E9D6F68330E82 /* RCTCxxMethod.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTCxxMethod.h; sourceTree = "<group>"; }; + E74CA33DC4408297AB9312E4ADD10393 /* FIRInstallationsErrorUtil.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRInstallationsErrorUtil.m; path = FirebaseInstallations/Source/Library/Errors/FIRInstallationsErrorUtil.m; sourceTree = "<group>"; }; + E767C837A93698578654244485430BB9 /* EXVideoManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = EXVideoManager.m; sourceTree = "<group>"; }; + E767EDE510B2A5DA1EFBC660848C0CF0 /* rn-extensions-share.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "rn-extensions-share.debug.xcconfig"; sourceTree = "<group>"; }; + E7995DC0480B1067A3A2F82B55A71617 /* RCTUtilsUIOverride.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTUtilsUIOverride.m; sourceTree = "<group>"; }; + E79EC242E65EB52F2828B86D9E7A0D80 /* RNGestureHandlerRegistry.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNGestureHandlerRegistry.m; path = ios/RNGestureHandlerRegistry.m; sourceTree = "<group>"; }; + E7A328D28422E92147AD1F7451D341BB /* Flipper-DoubleConversion.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "Flipper-DoubleConversion.release.xcconfig"; sourceTree = "<group>"; }; + E7B6328667F2FA8DF55197698F02ED7E /* ARTCGFloatArray.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ARTCGFloatArray.h; path = ios/ARTCGFloatArray.h; sourceTree = "<group>"; }; + E7C0881A148A19554848C55E2B067AF0 /* dec_sse2.c */ = {isa = PBXFileReference; includeInIndex = 1; name = dec_sse2.c; path = src/dsp/dec_sse2.c; sourceTree = "<group>"; }; + E7C894C4FDB3B68AC61B2DFAE33695BA /* BugsnagPluginClient.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BugsnagPluginClient.h; sourceTree = "<group>"; }; + E7D7E5764E0D01068DAFEF7FE7D871CB /* SocketFastOpen.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SocketFastOpen.h; path = folly/detail/SocketFastOpen.h; sourceTree = "<group>"; }; + E7DC01D9F4735AD047F9CF5FE1EDFD90 /* MMKV_IO.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = MMKV_IO.cpp; path = Core/MMKV_IO.cpp; sourceTree = "<group>"; }; + E7FA7EE95BE4A304050E55C74AC667B8 /* FIRCLSInternalReport.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRCLSInternalReport.m; path = Crashlytics/Crashlytics/Models/FIRCLSInternalReport.m; sourceTree = "<group>"; }; + E8036EBC20C3DAD44D097899CDDEB694 /* react-native-cameraroll.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "react-native-cameraroll.debug.xcconfig"; sourceTree = "<group>"; }; + E8174C59FD3D3964DAF1DF7BBBDD6FF1 /* FlipperClient.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FlipperClient.h; path = iOS/FlipperKit/FlipperClient.h; sourceTree = "<group>"; }; + E81D6597FD41EC2250920BE7EA8BA98D /* SafeAssert.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = SafeAssert.cpp; path = folly/lang/SafeAssert.cpp; sourceTree = "<group>"; }; + E828FF08F9796B4267F0A14AD9EB559C /* FirebaseAnalytics.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = FirebaseAnalytics.framework; path = Frameworks/FirebaseAnalytics.framework; sourceTree = "<group>"; }; + E83B01A80E91470832F3B5D3472999BC /* Yoga-umbrella.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "Yoga-umbrella.h"; sourceTree = "<group>"; }; + E84581F67CA2CE086EEADB1C1AAEE161 /* EXImageLoader.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = EXImageLoader.debug.xcconfig; sourceTree = "<group>"; }; + E84CD843B3717222F5638748ABAAACC4 /* RCTModuleMethod.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTModuleMethod.h; sourceTree = "<group>"; }; + E85B8F5F5C43BE70699346841EC7680E /* FlipperStep.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = FlipperStep.cpp; path = xplat/Flipper/FlipperStep.cpp; sourceTree = "<group>"; }; + E85DBCFF9F297181E55A74A8EEF65F52 /* OpenSSLCertUtils.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = OpenSSLCertUtils.h; path = folly/ssl/OpenSSLCertUtils.h; sourceTree = "<group>"; }; + E8652DC586A8078BE224572772939625 /* RCTPlatform.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTPlatform.h; path = React/CoreModules/RCTPlatform.h; sourceTree = "<group>"; }; + E877BFD6008956994ADB321921307C48 /* MacAddress.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = MacAddress.h; path = folly/MacAddress.h; sourceTree = "<group>"; }; + E87B9BAF7FB45DB14BF0B14F2C108FEC /* VibrancyViewManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = VibrancyViewManager.h; path = ios/VibrancyViewManager.h; sourceTree = "<group>"; }; + E87C8355BA03A7A58F8952F04ADC0F64 /* RCTPropsAnimatedNode.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTPropsAnimatedNode.h; sourceTree = "<group>"; }; + E87D76941C99A09E1FB0A8226001CC70 /* RCTTouchHandler.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTTouchHandler.m; sourceTree = "<group>"; }; + E88B8B5BD70965A723C4F388A858D6FF /* ScopedLock.hpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.h; name = ScopedLock.hpp; path = Core/ScopedLock.hpp; sourceTree = "<group>"; }; + E8CD8BDFE2CDD261866203AA17B0D151 /* SlowFingerprint.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SlowFingerprint.h; path = folly/detail/SlowFingerprint.h; sourceTree = "<group>"; }; + E8F1B8C288CB8F577C1F3C18AAF8DE82 /* SysSyscall.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SysSyscall.h; path = folly/portability/SysSyscall.h; sourceTree = "<group>"; }; + E8F5E04EDAF61B931754F5347ABAA5B8 /* PBEncodeItem.hpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.h; name = PBEncodeItem.hpp; path = Core/PBEncodeItem.hpp; sourceTree = "<group>"; }; + E900F67C8DDDC40135FFCE9958BE486C /* Random-inl.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "Random-inl.h"; path = "folly/Random-inl.h"; sourceTree = "<group>"; }; + E9053330601A717F1DD225D45861FA62 /* RCTVirtualTextViewManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTVirtualTextViewManager.h; sourceTree = "<group>"; }; + E91079F658950548BA8A14EAEA577901 /* FlipperDiagnosticsViewController.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FlipperDiagnosticsViewController.m; path = iOS/FlipperKit/FlipperDiagnosticsViewController.m; sourceTree = "<group>"; }; + E91442E477D08F10FF4AA1A2DD37E3B7 /* LICENSE */ = {isa = PBXFileReference; includeInIndex = 1; path = LICENSE; sourceTree = "<group>"; }; + E925EBA91ACA78CE2B3EB8CFC56CE146 /* EventUtil.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = EventUtil.h; path = folly/io/async/EventUtil.h; sourceTree = "<group>"; }; + E9276909B746B950BCE40B6DEE214CF7 /* SSLErrors.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SSLErrors.h; path = folly/io/async/ssl/SSLErrors.h; sourceTree = "<group>"; }; + E929425F5DCAA5C70F87531A9D4C0899 /* EventHandler.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = EventHandler.cpp; path = folly/io/async/EventHandler.cpp; sourceTree = "<group>"; }; + E939F2E1F58D724AC907BB671CC49047 /* FIRCLSException.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRCLSException.h; path = Crashlytics/Crashlytics/Handlers/FIRCLSException.h; sourceTree = "<group>"; }; + E93C31DAC71CF4E3EDCD9BFDEEC10A55 /* RNPushKit.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNPushKit.m; path = RNNotifications/RNPushKit.m; sourceTree = "<group>"; }; E93F701CA8EB196D77AE99E094D873E4 /* libFlipper.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; name = libFlipper.a; path = libFlipper.a; sourceTree = BUILT_PRODUCTS_DIR; }; - E9521D4F883C544DE47CDF5C2FDF5C87 /* libwebp.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = libwebp.debug.xcconfig; sourceTree = "<group>"; }; - E96622D92C07CF69EA6BEF2AA363F0A1 /* ScopeGuard.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ScopeGuard.h; path = folly/ScopeGuard.h; sourceTree = "<group>"; }; - E9727559286383AEBBDE40C6EC18F9F5 /* pl.lproj */ = {isa = PBXFileReference; includeInIndex = 1; name = pl.lproj; path = ios/QBImagePicker/QBImagePicker/pl.lproj; sourceTree = "<group>"; }; - E99B73487DA7D10636D3E972B48C58CC /* Singleton.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Singleton.h; path = folly/detail/Singleton.h; sourceTree = "<group>"; }; - E99CEF4EEC42A2629D3B68DA23D0046B /* RNCPicker.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNCPicker.h; path = ios/RNCPicker.h; sourceTree = "<group>"; }; - E99D032CA45AE795463E8CCFCA3FBE80 /* BugsnagFileStore.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = BugsnagFileStore.m; sourceTree = "<group>"; }; - E9A7FD5F85D4E9397A1DFCA59AA21099 /* RNGestureHandler-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "RNGestureHandler-dummy.m"; sourceTree = "<group>"; }; - E9AB1651105F9583CE5F40B209236A82 /* SpinLock.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SpinLock.h; path = folly/SpinLock.h; sourceTree = "<group>"; }; - E9C8ED646C0773D3BB14C7CEA285BB54 /* UninitializedMemoryHacks.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = UninitializedMemoryHacks.h; path = folly/memory/UninitializedMemoryHacks.h; sourceTree = "<group>"; }; - E9C9B3A573476303618E7B4B8707A48D /* BSG_KSJSONCodecObjC.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = BSG_KSJSONCodecObjC.m; sourceTree = "<group>"; }; - E9DAA69C91C5D71F71C166021395D3BE /* TOCropViewController-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "TOCropViewController-dummy.m"; sourceTree = "<group>"; }; - E9E08C14A6995E6EB264EB5847FC74CC /* SDDisplayLink.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SDDisplayLink.h; path = SDWebImage/Private/SDDisplayLink.h; sourceTree = "<group>"; }; - E9EB53456EF9DFAB70B1BF7C11D270BC /* mips_macro.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = mips_macro.h; path = src/dsp/mips_macro.h; sourceTree = "<group>"; }; - E9F2CFBAAFD22F8C32D71F9E71BC5619 /* cct.nanopb.c */ = {isa = PBXFileReference; includeInIndex = 1; name = cct.nanopb.c; path = GoogleDataTransportCCTSupport/GDTCCTLibrary/Protogen/nanopb/cct.nanopb.c; sourceTree = "<group>"; }; - E9F3A729CD9D33AD75FD8C1B0BBC0ECD /* FIRCLSDemangleOperation.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRCLSDemangleOperation.h; path = Crashlytics/Crashlytics/Operations/Symbolication/FIRCLSDemangleOperation.h; sourceTree = "<group>"; }; - E9F8ED4171EE1BF4C32DAD3F2AC794BF /* react-native-cameraroll.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "react-native-cameraroll.debug.xcconfig"; sourceTree = "<group>"; }; - EA05B65AECBCE03C6DC5D919C42395DF /* Flipper-RSocket-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "Flipper-RSocket-prefix.pch"; sourceTree = "<group>"; }; - EA0EF4A0499795DDFB3E11E94D6A68F2 /* Array.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Array.h; path = folly/container/Array.h; sourceTree = "<group>"; }; - EA12FAEFE8EE553CC6DEF4727ED0D5FD /* ieee.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ieee.h; path = "double-conversion/ieee.h"; sourceTree = "<group>"; }; - EA26F49E2AADEDB96790941D0189B8D0 /* BSG_KSCrashDoctor.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = BSG_KSCrashDoctor.m; sourceTree = "<group>"; }; - EA3D4260045DA638F2FF39E754353EC0 /* FlipperClient.mm */ = {isa = PBXFileReference; includeInIndex = 1; name = FlipperClient.mm; path = iOS/FlipperKit/FlipperClient.mm; sourceTree = "<group>"; }; - EA44814345FD3334AE3676B7C6390179 /* RCTSurfaceView+Internal.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "RCTSurfaceView+Internal.h"; sourceTree = "<group>"; }; - EA449C581CDD206DD064779B64A3A908 /* RCTModuleMethod.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTModuleMethod.h; sourceTree = "<group>"; }; - EA4C93D56FE5D85A1A138AC0E69C8862 /* RNEventEmitter.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNEventEmitter.m; path = RNNotifications/RNEventEmitter.m; sourceTree = "<group>"; }; - EA4C94D30D9F5FC1CCCEB7C2FFEA5CEF /* BSG_KSCrashSentry_NSException.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = BSG_KSCrashSentry_NSException.m; sourceTree = "<group>"; }; - EA6CA669DB11D03491E655AF46257689 /* UMViewManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = UMViewManager.m; path = UMCore/UMViewManager.m; sourceTree = "<group>"; }; - EA73FDEB663FBC04237C1E36C9FAB412 /* ParkingLot.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = ParkingLot.cpp; path = folly/synchronization/ParkingLot.cpp; sourceTree = "<group>"; }; - EA80C6CC551744CB4EE5BF2A056CF5B1 /* glog.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = glog.release.xcconfig; sourceTree = "<group>"; }; - EA81D63A714DF53A54E422BCA8FA65DE /* GCDAsyncSocket.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = GCDAsyncSocket.m; path = Source/GCD/GCDAsyncSocket.m; sourceTree = "<group>"; }; - EA880D94604F3BDF76B355942BB36599 /* RCTTurboModule.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTTurboModule.mm; sourceTree = "<group>"; }; - EA885519C9B954A79F80E54872CB9A51 /* RCTEventEmitter.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTEventEmitter.m; sourceTree = "<group>"; }; - EA8A071B5F6B8CB45234079D7A7C9042 /* RCTSurfacePresenterStub.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTSurfacePresenterStub.h; sourceTree = "<group>"; }; - EA8AF9736E107436330E00907D1BA6BC /* BugsnagSystemState.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = BugsnagSystemState.m; sourceTree = "<group>"; }; - EA8C4045E05D9C71E7B35F1F39E7D037 /* TypeList.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = TypeList.h; path = folly/detail/TypeList.h; sourceTree = "<group>"; }; - EAD20D2095CADB729BA7A29DFD8EFFDF /* SKYogaKitHelper.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SKYogaKitHelper.h; path = iOS/Plugins/FlipperKitLayoutPlugin/FlipperKitLayoutPlugin/utils/SKYogaKitHelper.h; sourceTree = "<group>"; }; - EAD4FACB9D0471C931F15BC3D70024B9 /* SingleWriterFixedHashMap.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SingleWriterFixedHashMap.h; path = folly/experimental/SingleWriterFixedHashMap.h; sourceTree = "<group>"; }; - EAF20ABA35CE7DAC773C403F7BD7C4F4 /* F14Policy.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = F14Policy.h; path = folly/container/detail/F14Policy.h; sourceTree = "<group>"; }; - EAF8ACC31CCAED2FF89273D035C7A486 /* Traits.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Traits.h; path = folly/Traits.h; sourceTree = "<group>"; }; - EB11D8980233FB28B3EB591690D4B933 /* boost-for-react-native.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "boost-for-react-native.debug.xcconfig"; sourceTree = "<group>"; }; - EB1889F513B963203313D59B84A4D47D /* UMAppLoader-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "UMAppLoader-dummy.m"; sourceTree = "<group>"; }; - EB34A2FB4CEB74806B9886BC1034D7F6 /* Demangle.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = Demangle.cpp; path = folly/detail/Demangle.cpp; sourceTree = "<group>"; }; - EB418C913486EA3E3381B3FE24AA0955 /* ConnectionAcceptor.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ConnectionAcceptor.h; path = rsocket/ConnectionAcceptor.h; sourceTree = "<group>"; }; - EB549B703A202BC1F8F18BA6CA72C26B /* EXPermissions.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = EXPermissions.release.xcconfig; sourceTree = "<group>"; }; - EB5AE6725DBDBA72012A0E3EDB522345 /* RCTMaskedViewManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTMaskedViewManager.h; sourceTree = "<group>"; }; - EB5BB0A2EBE0C8E9B64B96F6CE49737A /* FIRCLSDataCollectionToken.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRCLSDataCollectionToken.h; path = Crashlytics/Crashlytics/DataCollection/FIRCLSDataCollectionToken.h; sourceTree = "<group>"; }; - EB719189CCE4314E49807A63718D917B /* FIRCLSDwarfUnwindRegisters.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRCLSDwarfUnwindRegisters.h; path = Crashlytics/Crashlytics/Unwind/Dwarf/FIRCLSDwarfUnwindRegisters.h; sourceTree = "<group>"; }; - EB7484EC228A3F3928B29F2172BFC923 /* Cast.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Cast.h; path = folly/lang/Cast.h; sourceTree = "<group>"; }; - EB7F915F146B38A65846A157B7FB3EC6 /* IPAddress.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = IPAddress.h; path = folly/detail/IPAddress.h; sourceTree = "<group>"; }; - EB8DD2A0419BC72BF274073FC1A56A06 /* EnvironmentUtil.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = EnvironmentUtil.h; path = ios/RNDeviceInfo/EnvironmentUtil.h; sourceTree = "<group>"; }; - EB917A79529EC54B6B6890E1CC8DAB5D /* BSGNotificationBreadcrumbs.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = BSGNotificationBreadcrumbs.m; sourceTree = "<group>"; }; - EB9F25DCA076A959BA3546C7479973C1 /* FBVector.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FBVector.h; path = folly/FBVector.h; sourceTree = "<group>"; }; - EBA6F0DD4A3B953CD39A34A3970D8304 /* RNFBPreferences.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNFBPreferences.m; path = ios/RNFBApp/RNFBPreferences.m; sourceTree = "<group>"; }; - EBB2C777B8701067235AF173874B4438 /* IOBuf.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = IOBuf.h; path = folly/io/IOBuf.h; sourceTree = "<group>"; }; - EBB7562BD808A9A1D1BC43A8E0459F7E /* RCTModuloAnimatedNode.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTModuloAnimatedNode.m; sourceTree = "<group>"; }; - EBB8FDCD812D4599E46C88E2E592A7FB /* msa_macro.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = msa_macro.h; path = src/dsp/msa_macro.h; sourceTree = "<group>"; }; - EBC93F84D6D9CE3D89CABD497B79A55E /* CacheLocality.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = CacheLocality.cpp; path = folly/concurrency/CacheLocality.cpp; sourceTree = "<group>"; }; - EBDAEB955E4ABF88F7711DF389E903E3 /* UIView+Yoga.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "UIView+Yoga.h"; path = "YogaKit/Source/UIView+Yoga.h"; sourceTree = "<group>"; }; - EBDC1ACBB829C220D69159D036999F34 /* React-jsiexecutor.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = "React-jsiexecutor.podspec"; sourceTree = "<group>"; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; - EBDFCF84A98A224047685A16A587A47E /* ARTGroupManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = ARTGroupManager.h; sourceTree = "<group>"; }; - EBEF24FFE00373397C3BD58477679B7D /* Launder.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Launder.h; path = folly/lang/Launder.h; sourceTree = "<group>"; }; - EBFF5BC3C4AEDDCB346F620E28EF4774 /* RCTRequired.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = RCTRequired.debug.xcconfig; sourceTree = "<group>"; }; - EC1DE8EA926E548E11AF410E548B8716 /* BlockingQueue.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = BlockingQueue.h; path = folly/executors/task_queue/BlockingQueue.h; sourceTree = "<group>"; }; - EC226F2BAC9F1180223CF366941ED6C2 /* ExecutionObserver.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ExecutionObserver.h; path = folly/experimental/ExecutionObserver.h; sourceTree = "<group>"; }; - EC23D8DB996B1FE92A084940B1F28352 /* SDWebImageDownloaderDecryptor.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = SDWebImageDownloaderDecryptor.m; path = SDWebImage/Core/SDWebImageDownloaderDecryptor.m; sourceTree = "<group>"; }; - EC33EB81EAFE738D028161A843133FDA /* FBLPromise.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FBLPromise.h; path = Sources/FBLPromises/include/FBLPromise.h; sourceTree = "<group>"; }; - EC406A8E1DF9CEE11C8A055B76618D94 /* yuv.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = yuv.h; path = src/dsp/yuv.h; sourceTree = "<group>"; }; - EC51DD54CD0EED9344522EB545B298B3 /* ARTShadow.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ARTShadow.h; path = ios/ARTShadow.h; sourceTree = "<group>"; }; - EC68D88BEDF536EA7336B88F76A1E0F8 /* SysTime.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SysTime.h; path = folly/portability/SysTime.h; sourceTree = "<group>"; }; - EC6B215909BFDC7A355DECAD3E931417 /* FIRCLSProcessReportOperation.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRCLSProcessReportOperation.h; path = Crashlytics/Crashlytics/Operations/Reports/FIRCLSProcessReportOperation.h; sourceTree = "<group>"; }; - EC8909AA3E1DF660755798850979DAAF /* IOVec.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = IOVec.h; path = folly/portability/IOVec.h; sourceTree = "<group>"; }; - EC939FB768D3C5B9EEC1D46DB5A0FC4D /* HardwareConcurrency.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = HardwareConcurrency.h; path = folly/system/HardwareConcurrency.h; sourceTree = "<group>"; }; - ECDC3BE6EAC7A6FAD7234E57E15E0496 /* StringKeyedUnorderedSet.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = StringKeyedUnorderedSet.h; path = folly/experimental/StringKeyedUnorderedSet.h; sourceTree = "<group>"; }; - ECF30685940A43B4A6F919BCADA28019 /* EXVideoView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = EXVideoView.m; sourceTree = "<group>"; }; - ED035C750CEB17C74F2277A208C6E663 /* README.md */ = {isa = PBXFileReference; includeInIndex = 1; path = README.md; sourceTree = "<group>"; }; - ED04B609E205529A34A85339041DF566 /* quant_dec.c */ = {isa = PBXFileReference; includeInIndex = 1; name = quant_dec.c; path = src/dec/quant_dec.c; sourceTree = "<group>"; }; - ED12C7802BB41CE6B9622FA5B3D33026 /* MallocImpl.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = MallocImpl.h; path = folly/memory/detail/MallocImpl.h; sourceTree = "<group>"; }; + E94450F60F88981F0F9B5CC1FA1B1406 /* README.md */ = {isa = PBXFileReference; includeInIndex = 1; path = README.md; sourceTree = "<group>"; }; + E95CE71CDCC61CAC3D23FA368B7E1B0E /* BSG_KSCrashReportVersion.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BSG_KSCrashReportVersion.h; sourceTree = "<group>"; }; + E9674C9916F4EEC3422C811A2DCB1DC5 /* NSData+EXFileSystem.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "NSData+EXFileSystem.m"; path = "EXFileSystem/NSData+EXFileSystem.m"; sourceTree = "<group>"; }; + E98ED8687320DD7F5B1A63F0E263BE94 /* MicroLock.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = MicroLock.h; path = folly/MicroLock.h; sourceTree = "<group>"; }; + E991E5E47993FFF5CC39C7778660689E /* NSError+BSG_SimpleConstructor.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "NSError+BSG_SimpleConstructor.h"; sourceTree = "<group>"; }; + E9951475FDDF6AB34EAEA4098D522B3A /* SDWebImageError.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = SDWebImageError.m; path = SDWebImage/Core/SDWebImageError.m; sourceTree = "<group>"; }; + E9A028ECD2FAE4A614A311ACCCFB39E1 /* RCTSha.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RCTSha.m; path = ios/RCTCrypto/RCTSha.m; sourceTree = "<group>"; }; + E9ADB6A08763ED49D59E4EBF6C1A0D39 /* picture_tools_enc.c */ = {isa = PBXFileReference; includeInIndex = 1; name = picture_tools_enc.c; path = src/enc/picture_tools_enc.c; sourceTree = "<group>"; }; + E9AFEA1F08D4C6B6779A89305C7B8C04 /* FBReactNativeSpec-generated.mm */ = {isa = PBXFileReference; includeInIndex = 1; name = "FBReactNativeSpec-generated.mm"; path = "FBReactNativeSpec/FBReactNativeSpec-generated.mm"; sourceTree = "<group>"; }; + E9C099B8FB69ACE8F5CCB6D0B0963181 /* LNAnimatorTemp.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = LNAnimatorTemp.h; sourceTree = "<group>"; }; + E9D56396B82765C9C86F9435AABF8ADB /* ConcurrentSkipList.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ConcurrentSkipList.h; path = folly/ConcurrentSkipList.h; sourceTree = "<group>"; }; + E9D6318A61A6F05A93D364FA8B61523A /* RCTBlobPlugins.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTBlobPlugins.h; sourceTree = "<group>"; }; + E9D69DE3A4C9582AD3FCD7AF84477754 /* Config.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Config.h; path = folly/portability/Config.h; sourceTree = "<group>"; }; + E9E6EB091324946C1F909EB08DBC0921 /* FIRInstallationsIIDTokenStore.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRInstallationsIIDTokenStore.h; path = FirebaseInstallations/Source/Library/IIDMigration/FIRInstallationsIIDTokenStore.h; sourceTree = "<group>"; }; + E9EFEE604999AB71CEEFEB069E932646 /* RNCSafeAreaView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNCSafeAreaView.m; path = ios/SafeAreaView/RNCSafeAreaView.m; sourceTree = "<group>"; }; + E9FD60CE1670E8FFE98BB60B37B90E55 /* Connection.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = Connection.h; sourceTree = "<group>"; }; + EA0A26AECF7809D8EF387DCB66A93172 /* fast-dtoa.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = "fast-dtoa.cc"; path = "double-conversion/fast-dtoa.cc"; sourceTree = "<group>"; }; + EA0D4C1D84AF2768C5D1ACFD13776663 /* UMUIManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = UMUIManager.h; sourceTree = "<group>"; }; + EA1248254BDC1A7EEA87E7847F61350B /* FIRCLSSymbolicationOperation.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRCLSSymbolicationOperation.h; path = Crashlytics/Crashlytics/Operations/Symbolication/FIRCLSSymbolicationOperation.h; sourceTree = "<group>"; }; + EA3932D03662A7605E9CC644AA503CE7 /* RCTSourceCode.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTSourceCode.h; path = React/CoreModules/RCTSourceCode.h; sourceTree = "<group>"; }; + EA40AD7C921B0D3FF6F18EBF9327BA62 /* AtomicNotification.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = AtomicNotification.cpp; path = folly/synchronization/AtomicNotification.cpp; sourceTree = "<group>"; }; + EA5A03D8EFFE75949B7FAAB79BFDECDC /* experiments.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = experiments.h; sourceTree = "<group>"; }; + EA66EA6A980D001ED348488BAFD37249 /* Peertalk.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Peertalk.h; path = peertalk/Peertalk.h; sourceTree = "<group>"; }; + EAA732B815650B9BD28A764FEF918484 /* QBImagePickerController.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = QBImagePickerController.h; path = ios/QBImagePicker/QBImagePicker/QBImagePickerController.h; sourceTree = "<group>"; }; + EAAD0A21019BA1C3EBD479F36C002AE3 /* SysUio.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SysUio.h; path = folly/portability/SysUio.h; sourceTree = "<group>"; }; + EAAD84A5D28E911B8134B69981F3F2C2 /* BugsnagSessionTrackingApiClient.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BugsnagSessionTrackingApiClient.h; sourceTree = "<group>"; }; + EAB8127143A2F947099CAB92EF7626FA /* SDImageAssetManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SDImageAssetManager.h; path = SDWebImage/Private/SDImageAssetManager.h; sourceTree = "<group>"; }; + EABFEF26A3742B4D20A91E9C3DFF9FE3 /* FIRAnalyticsInterop.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRAnalyticsInterop.h; path = Interop/Analytics/Public/FIRAnalyticsInterop.h; sourceTree = "<group>"; }; + EAC4E7AB32B7543D14F47D83743EB120 /* SpinLock.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SpinLock.h; path = folly/SpinLock.h; sourceTree = "<group>"; }; + EB01BFCB1230B86893810B0FA743D369 /* WaitOptions.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = WaitOptions.h; path = folly/synchronization/WaitOptions.h; sourceTree = "<group>"; }; + EB2FD639C15FAB649B31135F564AB0FA /* 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 = "<group>"; }; + EB40B4A6E0A32B4CCFD1362F9191319A /* EXHaptics.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = EXHaptics.podspec; sourceTree = "<group>"; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; + EB53656FD26194F4F31764DC489E7F55 /* YGLayout.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = YGLayout.h; path = YogaKit/Source/YGLayout.h; sourceTree = "<group>"; }; + EB5BD72842B6A007F1E9CC23CA36DABB /* Hash.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Hash.h; path = folly/hash/Hash.h; sourceTree = "<group>"; }; + EB662EDE131C1868971DF3AA17B0F431 /* BridgeNativeModulePerfLogger.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = BridgeNativeModulePerfLogger.cpp; path = reactperflogger/BridgeNativeModulePerfLogger.cpp; sourceTree = "<group>"; }; + EB7A6496AAF2B236C87CC456EB447314 /* UIImage+WebP.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "UIImage+WebP.h"; path = "SDWebImageWebPCoder/Classes/UIImage+WebP.h"; sourceTree = "<group>"; }; + EB86772559D8B25FB62D762875B4E1A5 /* FIRCLSSettingsOnboardingManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRCLSSettingsOnboardingManager.m; path = Crashlytics/Crashlytics/Settings/FIRCLSSettingsOnboardingManager.m; sourceTree = "<group>"; }; + EB8B96665FF79081B9EFCA774FB85C18 /* RCTSurfaceSizeMeasureMode.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTSurfaceSizeMeasureMode.h; sourceTree = "<group>"; }; + EB9010DBE79F1BF407373D703255FF5C /* LockTraits.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = LockTraits.h; path = folly/LockTraits.h; sourceTree = "<group>"; }; + EB918D28A13F814594FF66347950AD00 /* RCTParserUtils.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTParserUtils.m; sourceTree = "<group>"; }; + EBA7D8B578D83D2EA70FD81B5A503184 /* EXWebBrowser-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "EXWebBrowser-dummy.m"; sourceTree = "<group>"; }; + EBAD5878503D651E76AA75F6F59B5B01 /* RCTCxxBridgeDelegate.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTCxxBridgeDelegate.h; sourceTree = "<group>"; }; + EBC61984E9A791396BA225C68D3F7C9C /* EXFileSystemLocalFileHandler.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = EXFileSystemLocalFileHandler.m; path = EXFileSystem/EXFileSystemLocalFileHandler.m; sourceTree = "<group>"; }; + EBDCD2C2A1B8831B8C5993F9DA647E96 /* Preprocessor.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Preprocessor.h; path = folly/Preprocessor.h; sourceTree = "<group>"; }; + EC0119EA515BA065530341757CDABD41 /* SDAsyncBlockOperation.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = SDAsyncBlockOperation.m; path = SDWebImage/Private/SDAsyncBlockOperation.m; sourceTree = "<group>"; }; + EC02C6E84074EFCF1231C798451567A0 /* SoftRealTimeExecutor.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SoftRealTimeExecutor.h; path = folly/executors/SoftRealTimeExecutor.h; sourceTree = "<group>"; }; + EC242389AB991BA11B83C97B4A9C1D1B /* MMKV.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = MMKV.cpp; path = Core/MMKV.cpp; sourceTree = "<group>"; }; + EC301A08BE3237E8EBE79C29BA2180C8 /* BitIteratorDetail.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = BitIteratorDetail.h; path = folly/container/detail/BitIteratorDetail.h; sourceTree = "<group>"; }; + EC3C8F1E41FBE855E1C2FB179997DDCA /* SmallLocks.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SmallLocks.h; path = folly/synchronization/SmallLocks.h; sourceTree = "<group>"; }; + EC60535B983E35A579A059DDDC106B11 /* EXAppleAuthenticationButton.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = EXAppleAuthenticationButton.h; path = EXAppleAuthentication/EXAppleAuthenticationButton.h; sourceTree = "<group>"; }; + EC7C7FD009F5B1DBEFEB0C39DCC9B2B6 /* SDImageCachesManagerOperation.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = SDImageCachesManagerOperation.m; path = SDWebImage/Private/SDImageCachesManagerOperation.m; sourceTree = "<group>"; }; + EC880A8128CFF41BA6E644C55E0FD307 /* ARTRadialGradient.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = ARTRadialGradient.h; sourceTree = "<group>"; }; + ECAC80887180311A52124B1B1F656A3D /* CocoaAsyncSocket.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = CocoaAsyncSocket.debug.xcconfig; sourceTree = "<group>"; }; + ECB0B10DD768508DCF778839CB5DB229 /* webp_enc.c */ = {isa = PBXFileReference; includeInIndex = 1; name = webp_enc.c; path = src/enc/webp_enc.c; sourceTree = "<group>"; }; + ECBA40CD1101BF2E0730C1C46F1910C3 /* AtomicNotification-inl.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "AtomicNotification-inl.h"; path = "folly/synchronization/AtomicNotification-inl.h"; sourceTree = "<group>"; }; + ECC13EFAFE42DDD8635067D4053E26F7 /* FIRCLSUUID.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRCLSUUID.h; path = Crashlytics/Shared/FIRCLSUUID.h; sourceTree = "<group>"; }; ED1E3FC0DC90F4A787472917BFB6B235 /* libEXFileSystem.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; name = libEXFileSystem.a; path = libEXFileSystem.a; sourceTree = BUILT_PRODUCTS_DIR; }; - ED213EAFD7F2C5486CCED6F2A9B5A25F /* MicroSpinLock.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = MicroSpinLock.h; path = folly/synchronization/MicroSpinLock.h; sourceTree = "<group>"; }; - ED30428981B0CC60BB4328E0F7C7F14A /* RCTWeakProxy.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTWeakProxy.h; sourceTree = "<group>"; }; - ED305439FEC86D5CE3B0292A6FA4B6DB /* Padded.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Padded.h; path = folly/Padded.h; sourceTree = "<group>"; }; - ED45D171CC848818FB692BD38CF0737E /* RCTTextDecorationLineType.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTTextDecorationLineType.h; sourceTree = "<group>"; }; - ED47FD185B8AA82F02D6F845DC61469F /* AtomicSharedPtr.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = AtomicSharedPtr.h; path = folly/concurrency/AtomicSharedPtr.h; sourceTree = "<group>"; }; - ED50B52E1E0AF213DCD66EE91D277AA9 /* RCTSegmentedControl.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTSegmentedControl.h; sourceTree = "<group>"; }; - ED57072DCCF9248D12FAA58064DA33AC /* EXHaptics-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "EXHaptics-prefix.pch"; sourceTree = "<group>"; }; - ED59A322A00B63535E5F9FE1CC01764D /* GDTCORConsoleLogger.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = GDTCORConsoleLogger.h; path = GoogleDataTransport/GDTCORLibrary/Public/GDTCORConsoleLogger.h; sourceTree = "<group>"; }; - ED61FC0FD69FCF27EEEA00BC72707CD9 /* Iterators.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Iterators.h; path = folly/detail/Iterators.h; sourceTree = "<group>"; }; - ED625D5A21C9F1B61CFF7642D677FE07 /* REAAlwaysNode.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = REAAlwaysNode.h; sourceTree = "<group>"; }; - ED64319A152E60F820924678CC660D67 /* RNLocalize.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = RNLocalize.podspec; sourceTree = "<group>"; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; - ED66C4774C8544D1E55121F478A0810D /* RNCSafeAreaViewManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNCSafeAreaViewManager.h; path = ios/SafeAreaView/RNCSafeAreaViewManager.h; sourceTree = "<group>"; }; - ED66E2553655F4848CEB00B46D764060 /* RCTAlertController.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTAlertController.h; path = React/CoreModules/RCTAlertController.h; sourceTree = "<group>"; }; - ED6C9E7E40237984988F15B2078AE5EE /* FIRCLSDwarfUnwind.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRCLSDwarfUnwind.h; path = Crashlytics/Crashlytics/Unwind/Dwarf/FIRCLSDwarfUnwind.h; sourceTree = "<group>"; }; - ED716E78774947E880E7508529601934 /* UIImage+MultiFormat.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "UIImage+MultiFormat.h"; path = "SDWebImage/Core/UIImage+MultiFormat.h"; sourceTree = "<group>"; }; - ED75D8954D22516560576D647EF26B78 /* UMModuleRegistryDelegate.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = UMModuleRegistryDelegate.h; sourceTree = "<group>"; }; - ED81A5EB12FE3E918B3DCFFEBF9AE754 /* FBLPromise+Do.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "FBLPromise+Do.h"; path = "Sources/FBLPromises/include/FBLPromise+Do.h"; sourceTree = "<group>"; }; - ED865F1DE44468A0B0B652D71ED61413 /* FIRCLSFABNetworkClient.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRCLSFABNetworkClient.m; path = Crashlytics/Shared/FIRCLSNetworking/FIRCLSFABNetworkClient.m; sourceTree = "<group>"; }; - ED9DA0CE1A4AFD77FC0FFB024D143F70 /* ResumeManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ResumeManager.h; path = rsocket/ResumeManager.h; sourceTree = "<group>"; }; - EDAC98E95F85540E8E1A36A7C48A79E6 /* CPUThreadPoolExecutor.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = CPUThreadPoolExecutor.cpp; path = folly/executors/CPUThreadPoolExecutor.cpp; sourceTree = "<group>"; }; - EDBCFDE5CEA3ACBEA4B2452C2223DD05 /* TestSubscriber.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = TestSubscriber.h; path = yarpl/flowable/TestSubscriber.h; sourceTree = "<group>"; }; - EDCAAAC9AAC0652F4DBF8DA542199E4B /* FontAwesome.ttf */ = {isa = PBXFileReference; includeInIndex = 1; name = FontAwesome.ttf; path = Fonts/FontAwesome.ttf; sourceTree = "<group>"; }; - EDCEE072649FFB5B0DD762223223B843 /* RNCWKProcessPoolManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNCWKProcessPoolManager.m; path = apple/RNCWKProcessPoolManager.m; sourceTree = "<group>"; }; - EE003B14F3BDD73E4063997EC4E2607F /* ARTPattern.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = ARTPattern.h; sourceTree = "<group>"; }; - EE0C19A707DD76A72F53CE519B41D6C0 /* RCTExceptionsManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTExceptionsManager.h; path = React/CoreModules/RCTExceptionsManager.h; sourceTree = "<group>"; }; - EE109F48562DC7EEFB22086F85702B57 /* SDAnimatedImageView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SDAnimatedImageView.h; path = SDWebImage/Core/SDAnimatedImageView.h; sourceTree = "<group>"; }; - EE1629DBC0F2312E94B2E5DA2A46C3D9 /* RCTView+SafeAreaCompat.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "RCTView+SafeAreaCompat.m"; path = "ios/SafeAreaView/RCTView+SafeAreaCompat.m"; sourceTree = "<group>"; }; - EE1A20F80817C3502570E241C4933149 /* ReadMostlySharedPtr.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ReadMostlySharedPtr.h; path = folly/experimental/ReadMostlySharedPtr.h; sourceTree = "<group>"; }; - EE1C228CC76D024E333510EC9F96FACE /* yuv_sse2.c */ = {isa = PBXFileReference; includeInIndex = 1; name = yuv_sse2.c; path = src/dsp/yuv_sse2.c; sourceTree = "<group>"; }; - EE211749CD18ADB36400BEAD047FD706 /* Connection.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; path = Connection.cpp; sourceTree = "<group>"; }; + ED1FC1838AC20AA29DBAE02E95FAA743 /* Hazptr.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = Hazptr.cpp; path = folly/synchronization/Hazptr.cpp; sourceTree = "<group>"; }; + ED2378544EDCF5D2CDCAD6A2A635BC8E /* React-RCTSettings.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "React-RCTSettings.debug.xcconfig"; sourceTree = "<group>"; }; + ED545A7415C735944B0CDBA23CCD1C7F /* SanitizeLeak.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SanitizeLeak.h; path = folly/memory/SanitizeLeak.h; sourceTree = "<group>"; }; + ED5E5CD0AAA69F7F9A275BD457441B33 /* React-cxxreact-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "React-cxxreact-prefix.pch"; sourceTree = "<group>"; }; + ED6230AA27C1221321280A84565C2157 /* EXReactNativeUserNotificationCenterProxy.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = EXReactNativeUserNotificationCenterProxy.h; path = EXPermissions/EXReactNativeUserNotificationCenterProxy.h; sourceTree = "<group>"; }; + ED6FC95257E7936177CDEC7059C0124E /* Asm.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Asm.h; path = folly/portability/Asm.h; sourceTree = "<group>"; }; + ED72FD77FD32A7E8A196A2240EC9F8EF /* FKPortForwardingCommon.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FKPortForwardingCommon.h; path = iOS/FlipperKit/FKPortForwarding/FKPortForwardingCommon.h; sourceTree = "<group>"; }; + ED763F5A828E88AA053D8BDF61B0914A /* EXFileSystemLocalFileHandler.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = EXFileSystemLocalFileHandler.h; path = EXFileSystem/EXFileSystemLocalFileHandler.h; sourceTree = "<group>"; }; + ED8A36714A99A4FB94FE1DE114B4B7FE /* RCTTextView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTTextView.m; sourceTree = "<group>"; }; + EDA7F183AB9627613CBA33BB54C3CE2B /* react-native-jitsi-meet.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "react-native-jitsi-meet.debug.xcconfig"; sourceTree = "<group>"; }; + EDB60C5D7FEE0147D2378B4D91C6A5F9 /* UIImage+WebP.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "UIImage+WebP.m"; path = "SDWebImageWebPCoder/Classes/UIImage+WebP.m"; sourceTree = "<group>"; }; + EDB7E6AC9EA604F902C8BA66329C6727 /* Combine-inl.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "Combine-inl.h"; path = "folly/gen/Combine-inl.h"; sourceTree = "<group>"; }; + EDC424833BCC9856A557DEA41C0B762C /* RCTFrameAnimation.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTFrameAnimation.m; sourceTree = "<group>"; }; + EDCBCE60597A66C80CD7DB9A15E9A891 /* RCTLayoutAnimation.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTLayoutAnimation.h; sourceTree = "<group>"; }; + EDF7C04F611F867F36DBBD81BDA2A1D1 /* BugsnagEvent.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = BugsnagEvent.m; sourceTree = "<group>"; }; + EE0023B4A8761E97045FD66E0191155C /* EXConstantsService.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = EXConstantsService.h; path = EXConstants/EXConstantsService.h; sourceTree = "<group>"; }; + EE0C2DE45F182C1434D3B095679A8C14 /* ARTRenderableManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = ARTRenderableManager.m; sourceTree = "<group>"; }; EE4AEFEACE275DDCFB42B9400BF6B218 /* libRNFBCrashlytics.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; name = libRNFBCrashlytics.a; path = libRNFBCrashlytics.a; sourceTree = BUILT_PRODUCTS_DIR; }; - EE70FC63C3A4A9EC29E4C29EEEF55D45 /* RCTScrollViewManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTScrollViewManager.h; sourceTree = "<group>"; }; - EE722C6B5031C8949D777F1EFEFB3201 /* FlipperClient+Testing.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "FlipperClient+Testing.h"; path = "iOS/FlipperKit/FlipperClient+Testing.h"; sourceTree = "<group>"; }; - EE7B1FD6B52A6B8F1A82A3DAA4B1FBA0 /* RNCSafeAreaViewEdges.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNCSafeAreaViewEdges.h; path = ios/SafeAreaView/RNCSafeAreaViewEdges.h; sourceTree = "<group>"; }; - EE7E08EF7B1252B45B70331226DB8144 /* FramedDuplexConnection.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FramedDuplexConnection.h; path = rsocket/framing/FramedDuplexConnection.h; sourceTree = "<group>"; }; - EE8277FB56719177EFE2FAC4CDBCA097 /* syntax_enc.c */ = {isa = PBXFileReference; includeInIndex = 1; name = syntax_enc.c; path = src/enc/syntax_enc.c; sourceTree = "<group>"; }; + EE4CA88257AAA729310362DA3CFECB7C /* CertificateUtils.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = CertificateUtils.h; path = xplat/Flipper/CertificateUtils.h; sourceTree = "<group>"; }; + EE4D20166977C496105B00B3B3E2749B /* FBCxxFollyDynamicConvert.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FBCxxFollyDynamicConvert.h; path = iOS/FlipperKit/FBCxxFollyDynamicConvert/FBCxxFollyDynamicConvert.h; sourceTree = "<group>"; }; + EE5D7FDE71CDF4A8E89BE9507C683653 /* libwebp.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = libwebp.debug.xcconfig; sourceTree = "<group>"; }; + EE68B46045F3D1266490C875E7E436DD /* IOBufQueue.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = IOBufQueue.h; path = folly/io/IOBufQueue.h; sourceTree = "<group>"; }; + EE7156ABDA0AA89109C037D29E14E207 /* RNCSafeAreaViewLocalData.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNCSafeAreaViewLocalData.m; path = ios/SafeAreaView/RNCSafeAreaViewLocalData.m; sourceTree = "<group>"; }; + EE7681EF0BCB9E6154C44E202406602B /* RCTRequired.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = RCTRequired.release.xcconfig; sourceTree = "<group>"; }; + EE8DD79105FD6CD7F21384E0BB0B584F /* IOThreadPoolExecutor.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = IOThreadPoolExecutor.h; path = folly/executors/IOThreadPoolExecutor.h; sourceTree = "<group>"; }; + EE9AF4B52D9E531EB33BC64623F8F534 /* react-native-safe-area-context-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "react-native-safe-area-context-dummy.m"; sourceTree = "<group>"; }; + EE9B29A0DCB0980858423988A3E97C4C /* Atomic.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Atomic.h; path = folly/portability/Atomic.h; sourceTree = "<group>"; }; + EE9F37816B96DBBDAEBD78874B51350E /* rescaler_msa.c */ = {isa = PBXFileReference; includeInIndex = 1; name = rescaler_msa.c; path = src/dsp/rescaler_msa.c; sourceTree = "<group>"; }; EEA4CC9B97D8B1DF863F7448D02747DE /* Pods-ShareRocketChatRN.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "Pods-ShareRocketChatRN.debug.xcconfig"; sourceTree = "<group>"; }; - EEAAAEE3BEC255C0C7A96639641B3098 /* lossless_common.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = lossless_common.h; path = src/dsp/lossless_common.h; sourceTree = "<group>"; }; - EEC53FB638BA80024B5BEB0C515A1750 /* FrameSerializer.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FrameSerializer.h; path = rsocket/framing/FrameSerializer.h; sourceTree = "<group>"; }; - EEC665DD4753ABE611DF1D3DB2DE8782 /* FirebaseAnalytics.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = FirebaseAnalytics.framework; path = Frameworks/FirebaseAnalytics.framework; sourceTree = "<group>"; }; - EECEF8976E9A1DE282356790E4A04086 /* FrameTransportImpl.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FrameTransportImpl.h; path = rsocket/framing/FrameTransportImpl.h; sourceTree = "<group>"; }; + EEA93AD538991156E8E9E2FCF34FFC47 /* UMBarCodeScannerInterface.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = UMBarCodeScannerInterface.h; path = UMBarCodeScannerInterface/UMBarCodeScannerInterface.h; sourceTree = "<group>"; }; + EEAF50E5A17C4C0526B439E01595A262 /* BugsnagMetadata.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BugsnagMetadata.h; sourceTree = "<group>"; }; + EEB2FCC69C421CD84466BFEAD77BAE37 /* BugsnagLastRunInfo.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BugsnagLastRunInfo.h; sourceTree = "<group>"; }; + EEB8E5C9104AD2FD20DA552CDE97997A /* FLEXNetworkTransaction.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FLEXNetworkTransaction.h; path = iOS/Plugins/FlipperKitNetworkPlugin/SKIOSNetworkPlugin/FLEXNetworkLib/FLEXNetworkTransaction.h; sourceTree = "<group>"; }; + EEBA5183DD7B72FC02092AA25A9EF007 /* BSGInternalErrorReporter.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BSGInternalErrorReporter.h; sourceTree = "<group>"; }; + EECA4C602AB40654CF18C580823F2E1D /* AtFork.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = AtFork.h; path = folly/detail/AtFork.h; sourceTree = "<group>"; }; + EED694C9A1F5F474AD411753E970C387 /* RCTSurfacePresenterStub.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTSurfacePresenterStub.h; sourceTree = "<group>"; }; EEDBF403E8E0B3885E65C2741B536BC5 /* libReact-RCTImage.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; name = "libReact-RCTImage.a"; path = "libReact-RCTImage.a"; sourceTree = BUILT_PRODUCTS_DIR; }; - EEDEF25F4BD51250B333F8487ADCABD1 /* RNFastImage.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = RNFastImage.debug.xcconfig; sourceTree = "<group>"; }; - EEEF5FAAE4B42250CBF1B3FF63D486E3 /* BSG_KSCrashC.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BSG_KSCrashC.h; sourceTree = "<group>"; }; - EF0C759B7ECF1822BCBF5D46FEDB41A8 /* CallOnce.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = CallOnce.h; path = folly/synchronization/CallOnce.h; sourceTree = "<group>"; }; - EF592042EFCC79A50F2FD7710BCF2557 /* README.md */ = {isa = PBXFileReference; includeInIndex = 1; path = README.md; sourceTree = "<group>"; }; - EF66E1865FB77B1C24A04F48399DC43D /* UMConstantsInterface.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = UMConstantsInterface.release.xcconfig; sourceTree = "<group>"; }; - EF66ECB1C963FF6FB3F5A9F987CF61D3 /* MPMCPipeline.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = MPMCPipeline.h; path = folly/MPMCPipeline.h; sourceTree = "<group>"; }; + EEE22705C82A7BD89B0F93A476726B64 /* EventBaseThread.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = EventBaseThread.cpp; path = folly/io/async/EventBaseThread.cpp; sourceTree = "<group>"; }; + EEE4B84A16F6FDFDD94DE3D376866E57 /* IndexedMemPool.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = IndexedMemPool.h; path = folly/IndexedMemPool.h; sourceTree = "<group>"; }; + EEFDD3D1CDB51E78F30A78E695583DAD /* EXVideoThumbnails.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = EXVideoThumbnails.debug.xcconfig; sourceTree = "<group>"; }; + EF1356A53C518896E0B04CD2DFFFE5BD /* libevent-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "libevent-prefix.pch"; sourceTree = "<group>"; }; + EF2FFA3AFACCC1F3B06FCF1D81325D1B /* README.md */ = {isa = PBXFileReference; includeInIndex = 1; path = README.md; sourceTree = "<group>"; }; + EF38B10E6F6B60A3311655668D07E61F /* RCTMessageThread.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTMessageThread.mm; sourceTree = "<group>"; }; + EF3D4BEE22F6CEEFC22E8EAB98F576D9 /* UMLogManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = UMLogManager.h; sourceTree = "<group>"; }; + EF484C4CCDEEB38F082663EE1763A984 /* BugsnagConfigSerializer.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = BugsnagConfigSerializer.m; sourceTree = "<group>"; }; + EF49DF606834B553E1C98BF8BEF57C0F /* FIRInstallationsSingleOperationPromiseCache.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRInstallationsSingleOperationPromiseCache.m; path = FirebaseInstallations/Source/Library/InstallationsIDController/FIRInstallationsSingleOperationPromiseCache.m; sourceTree = "<group>"; }; EF68A95B2BB34793D30DC18E1A29109A /* Pods-NotificationService.modulemap */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.module; path = "Pods-NotificationService.modulemap"; sourceTree = "<group>"; }; - EF77B45DE1171993B31D40830A5CB5B4 /* ScheduledRSocketResponder.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = ScheduledRSocketResponder.cpp; path = rsocket/internal/ScheduledRSocketResponder.cpp; sourceTree = "<group>"; }; - EF976FDB7A999CA6E88171129823FFF7 /* RCTMultipartStreamReader.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTMultipartStreamReader.m; sourceTree = "<group>"; }; - EF987966C8243A6D7B2997CCB6DEBF19 /* CallbackOStream.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = CallbackOStream.h; sourceTree = "<group>"; }; - EF9EDC6CDBDDC9EA7F72BB6CE3AF8C23 /* util-internal.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "util-internal.h"; sourceTree = "<group>"; }; - EFAF65A558262424D56BC320489FDC28 /* MacAddress.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = MacAddress.h; path = folly/MacAddress.h; sourceTree = "<group>"; }; - EFBF0F66DD05093A50745A956B265F83 /* RCTRefreshControl.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTRefreshControl.m; sourceTree = "<group>"; }; - EFC449A78C30152FAB91048DC5A53E0E /* HazptrObj.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = HazptrObj.h; path = folly/synchronization/HazptrObj.h; sourceTree = "<group>"; }; - EFC7499F43B3972E69F26C8E148364C0 /* SingletonStackTrace.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = SingletonStackTrace.cpp; path = folly/detail/SingletonStackTrace.cpp; sourceTree = "<group>"; }; - EFD07F0983ABE92891B7D4414B44854B /* UMModuleRegistryAdapter.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = UMModuleRegistryAdapter.m; sourceTree = "<group>"; }; - EFD4EBBD38CDFD28C3A24C71E03FB0D2 /* React-jsiexecutor-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "React-jsiexecutor-dummy.m"; sourceTree = "<group>"; }; - EFDCFE3582FA69D9B77B4B503E169BE2 /* FBLPromise+Always.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "FBLPromise+Always.m"; path = "Sources/FBLPromises/FBLPromise+Always.m"; sourceTree = "<group>"; }; - EFE8405103A0E74725C59DC5C99FDB57 /* README.md */ = {isa = PBXFileReference; includeInIndex = 1; path = README.md; sourceTree = "<group>"; }; - EFF316F1C4228437B26E8ADBDF40A0F0 /* react-native-webview-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "react-native-webview-dummy.m"; sourceTree = "<group>"; }; - EFFA369D0A99F61C59AC66A7809A1D45 /* ja.lproj */ = {isa = PBXFileReference; includeInIndex = 1; name = ja.lproj; path = "Objective-C/TOCropViewController/Resources/ja.lproj"; sourceTree = "<group>"; }; - F00FBEAB647FF5D3E69DF36C8F70061B /* SDImageFrame.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = SDImageFrame.m; path = SDWebImage/Core/SDImageFrame.m; sourceTree = "<group>"; }; - F028259E27D1417958999A7A7A1310D2 /* REAConcatNode.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = REAConcatNode.m; sourceTree = "<group>"; }; - F02EE84B34FF166699B9607FA173C25A /* DistributedMutex.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = DistributedMutex.cpp; path = folly/synchronization/DistributedMutex.cpp; sourceTree = "<group>"; }; - F043E4504C069306DD6A6870ABB75F40 /* FlipperStep.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = FlipperStep.cpp; path = xplat/Flipper/FlipperStep.cpp; sourceTree = "<group>"; }; - F068A4842CE3553A27782E11612DDC0C /* evsignal-internal.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "evsignal-internal.h"; sourceTree = "<group>"; }; - F07D2F18E27AAD4431AA0C119A2B18A2 /* fixed-dtoa.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = "fixed-dtoa.cc"; path = "double-conversion/fixed-dtoa.cc"; sourceTree = "<group>"; }; - F081E4DF5CFA79D41D16C87B19AD63DB /* RNCAppearance.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNCAppearance.h; path = ios/Appearance/RNCAppearance.h; sourceTree = "<group>"; }; - F090F061AC5C4B0E1DC3E845757F1542 /* QBAlbumsViewController.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = QBAlbumsViewController.h; path = ios/QBImagePicker/QBImagePicker/QBAlbumsViewController.h; sourceTree = "<group>"; }; - F091B10FC5021AF0D2DC79A4895E6728 /* Pretty.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Pretty.h; path = folly/lang/Pretty.h; sourceTree = "<group>"; }; - F09857F1319ADC4E8AA076419B8A0A33 /* PublishProcessor.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = PublishProcessor.h; path = yarpl/flowable/PublishProcessor.h; sourceTree = "<group>"; }; - F09E3CE4EFFEADA4D5525E7AC223798F /* REANode.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = REANode.h; sourceTree = "<group>"; }; - F0A4024A7743D4E8FC58B80F1A7A3CA9 /* SDmetamacros.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SDmetamacros.h; path = SDWebImage/Private/SDmetamacros.h; sourceTree = "<group>"; }; - F0A55BFC31DE0F8623420BCCFBAA7569 /* REATransitionValues.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = REATransitionValues.h; sourceTree = "<group>"; }; - F0AAE5E8D832ABA019BCFEACD02E56C8 /* FIRCLSMachOSlice.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRCLSMachOSlice.h; path = Crashlytics/Shared/FIRCLSMachO/FIRCLSMachOSlice.h; sourceTree = "<group>"; }; - F0B9BDE093A1DAEEACF5BFC7242457E0 /* Range.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Range.h; path = folly/Range.h; sourceTree = "<group>"; }; - F0CB1544ADBADE695E5E2247DDC9EFF7 /* SynchronizedPtr.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SynchronizedPtr.h; path = folly/SynchronizedPtr.h; sourceTree = "<group>"; }; - F0DBC971FD93CC9B2793DC0B11B8E605 /* dynamic-inl.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "dynamic-inl.h"; path = "folly/dynamic-inl.h"; sourceTree = "<group>"; }; - F0DD32790BF0B2290C451608FE612652 /* ApplyTuple.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ApplyTuple.h; path = folly/functional/ApplyTuple.h; sourceTree = "<group>"; }; - F0E13337EC10017E2AFDE5434B762C18 /* FlipperKit-umbrella.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "FlipperKit-umbrella.h"; sourceTree = "<group>"; }; - F0E2A3B05B70177D3701F3E365014AB2 /* ObservingInputAccessoryViewTemp.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = ObservingInputAccessoryViewTemp.m; sourceTree = "<group>"; }; - F0F1A127EAB2FFE1F6FA20CA11630AA4 /* BugsnagNotifier.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = BugsnagNotifier.m; sourceTree = "<group>"; }; - F12F35269850391E9FAF0153A7CE2C48 /* RNCSafeAreaProviderManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNCSafeAreaProviderManager.m; path = ios/SafeAreaView/RNCSafeAreaProviderManager.m; sourceTree = "<group>"; }; - F136C717FB0B4F7B7A23AF3EFAA2FF44 /* BugsnagReactNativeEmitter.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = BugsnagReactNativeEmitter.m; sourceTree = "<group>"; }; - F14F1528780DEA27C1649BEE79620E7E /* BugsnagClient.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BugsnagClient.h; sourceTree = "<group>"; }; - F150D58501413FC437A7A472E236321E /* enc_neon.c */ = {isa = PBXFileReference; includeInIndex = 1; name = enc_neon.c; path = src/dsp/enc_neon.c; sourceTree = "<group>"; }; - F15808387AB6C7A111FF6C455A1A6FE9 /* SecureStorage.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SecureStorage.h; path = ios/SecureStorage.h; sourceTree = "<group>"; }; - F16029932C4F596513746C170634EF45 /* WarmResumeManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = WarmResumeManager.h; path = rsocket/internal/WarmResumeManager.h; sourceTree = "<group>"; }; - F162080DEB1F229CAD72B7EF91B26785 /* BugsnagKVStoreObjC.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BugsnagKVStoreObjC.h; sourceTree = "<group>"; }; - F16498BF973941A83EFADF8207428D45 /* REAAllTransitions.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = REAAllTransitions.m; sourceTree = "<group>"; }; - F16E8A00A68196A9CE422DD73DF4B061 /* UIButton+WebCache.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "UIButton+WebCache.h"; path = "SDWebImage/Core/UIButton+WebCache.h"; sourceTree = "<group>"; }; - F1863201D0BA8344F02D2910F23AADA4 /* FIRHeartbeatInfo.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRHeartbeatInfo.h; path = FirebaseCore/Sources/Private/FIRHeartbeatInfo.h; sourceTree = "<group>"; }; - F19F759098215F99E10C42499F69820B /* NetworkSocket.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = NetworkSocket.h; path = folly/net/NetworkSocket.h; sourceTree = "<group>"; }; - F19FBB1C6850FD0D010A5CE4BEA22D3D /* RCTMaskedViewManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTMaskedViewManager.m; sourceTree = "<group>"; }; - F1A2D374367175141CF15B034A500836 /* RNFetchBlobFS.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNFetchBlobFS.m; path = ios/RNFetchBlobFS.m; sourceTree = "<group>"; }; - F1A969915DD37E525AB5C521D62D6480 /* CertificateUtils.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = CertificateUtils.cpp; path = xplat/Flipper/CertificateUtils.cpp; sourceTree = "<group>"; }; - F1CAFDC9749A658C4C770C094DF84470 /* BlurViewManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = BlurViewManager.h; path = ios/BlurViewManager.h; sourceTree = "<group>"; }; - F1CC8DA0187F606BF5BF0A4A91CC75AB /* StaticConst.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = StaticConst.h; path = folly/lang/StaticConst.h; sourceTree = "<group>"; }; - F1D45A2B71EC9AA7167B5151A6B1F0D2 /* BugsnagStateEvent.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BugsnagStateEvent.h; sourceTree = "<group>"; }; - F1D841594AC0B3715C4A76A17BDB42B0 /* fast-dtoa.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = "fast-dtoa.cc"; path = "double-conversion/fast-dtoa.cc"; sourceTree = "<group>"; }; - F20A431211371FE48A41C08351C700CA /* 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 = "<group>"; }; - F20E738D3A69438E1C122F9A0597DA9A /* BugsnagNotifier.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BugsnagNotifier.h; sourceTree = "<group>"; }; + EF6A3687A89707FF71DBAC25B3C28AB2 /* MallctlHelper.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = MallctlHelper.h; path = folly/memory/MallctlHelper.h; sourceTree = "<group>"; }; + EF92A3D8D66DA08CCF7ED8E86B9725B3 /* threadsafe.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = threadsafe.h; path = destroot/include/jsi/threadsafe.h; sourceTree = "<group>"; }; + EF9A525C1847A25D33B4CB692DAB7542 /* SysStat.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = SysStat.cpp; path = folly/portability/SysStat.cpp; sourceTree = "<group>"; }; + EF9B17918BC9B80C3A6A70878E0E66D7 /* RCTImageBlurUtils.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTImageBlurUtils.m; sourceTree = "<group>"; }; + EF9F9B40B59884AA918C73FDA84E908F /* ThreadedExecutor.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = ThreadedExecutor.cpp; path = folly/executors/ThreadedExecutor.cpp; sourceTree = "<group>"; }; + EFA380136E56EF1168C73643B83C1765 /* SafeAreaSpacerViewManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = SafeAreaSpacerViewManager.h; sourceTree = "<group>"; }; + EFAD5EE7E50BC426E4036746EAF035F0 /* GTest.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = GTest.h; path = folly/portability/GTest.h; sourceTree = "<group>"; }; + EFB1B434B0478286A13F53815B9C66F3 /* Yoga-internal.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "Yoga-internal.h"; path = "yoga/Yoga-internal.h"; sourceTree = "<group>"; }; + EFB80692826100C6A8DEA3C03404B78D /* yuv_neon.c */ = {isa = PBXFileReference; includeInIndex = 1; name = yuv_neon.c; path = src/dsp/yuv_neon.c; sourceTree = "<group>"; }; + EFBA0E8BF64DCE2AA563A4BD01F2946E /* Demangle.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Demangle.h; path = folly/Demangle.h; sourceTree = "<group>"; }; + EFCE646CA819204EB1B4286A22B4F130 /* subscription.md */ = {isa = PBXFileReference; includeInIndex = 1; name = subscription.md; path = docs/subscription.md; sourceTree = "<group>"; }; + EFCFED14B57978221E8267BE2937FC7E /* react-native-netinfo.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "react-native-netinfo.debug.xcconfig"; sourceTree = "<group>"; }; + EFD4097B80231FC57723D7A7599CF48D /* GMock.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = GMock.h; path = folly/portability/GMock.h; sourceTree = "<group>"; }; + EFF4FBF68FC07FD11653947BD8A34BD7 /* Cast.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Cast.h; path = folly/lang/Cast.h; sourceTree = "<group>"; }; + EFFA9C330697F1C695ACB214D18D70F9 /* FlipperCertificateProvider.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FlipperCertificateProvider.h; path = xplat/Flipper/FlipperCertificateProvider.h; sourceTree = "<group>"; }; + F004A64B4940A02B0785F64F19050AD9 /* FBLazyVector.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = FBLazyVector.podspec; sourceTree = "<group>"; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; + F016796C74A38DBC3F969759C3838DFB /* BSG_KSDynamicLinker.c */ = {isa = PBXFileReference; includeInIndex = 1; path = BSG_KSDynamicLinker.c; sourceTree = "<group>"; }; + F01CA0A6C121628F76304AE1630DBC03 /* RCTTiming.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTTiming.mm; sourceTree = "<group>"; }; + F02A95F025F642C249F29F88C764C9F0 /* ProtocolVersion.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = ProtocolVersion.cpp; path = rsocket/framing/ProtocolVersion.cpp; sourceTree = "<group>"; }; + F04D2978A22BB01CC8D75C9356763B9F /* BugsnagHandledState.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = BugsnagHandledState.m; sourceTree = "<group>"; }; + F051493D056B9AF6EB46402FD3620353 /* event-internal.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "event-internal.h"; sourceTree = "<group>"; }; + F0561B61CA7F5F895368C653D8E97247 /* RNCommandsHandler.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNCommandsHandler.m; path = RNNotifications/RNCommandsHandler.m; sourceTree = "<group>"; }; + F056CE86E8BEF0CA9C81C45C0AC39494 /* Overload.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Overload.h; path = folly/Overload.h; sourceTree = "<group>"; }; + F05E23181964B5DB3DA9CAE9B3725C93 /* RNGestureHandler.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = RNGestureHandler.release.xcconfig; sourceTree = "<group>"; }; + F06A096379BAFA71C2F1705052E9B92B /* Varint.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Varint.h; path = folly/Varint.h; sourceTree = "<group>"; }; + F06DF5583F13FAE37BE8F8BDB6801DEE /* LongLivedObject.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; path = LongLivedObject.cpp; sourceTree = "<group>"; }; + F074BE2BAC445D8077F083CE97035C93 /* SingletonRelaxedCounter.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SingletonRelaxedCounter.h; path = folly/experimental/SingletonRelaxedCounter.h; sourceTree = "<group>"; }; + F098BDF23C2AA20DA0214FC0904F20DD /* AtFork.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = AtFork.cpp; path = folly/detail/AtFork.cpp; sourceTree = "<group>"; }; + F09ACD2C696E19BA02A255E902062619 /* CxxModule.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = CxxModule.h; sourceTree = "<group>"; }; + F0A26ECFDC84508746B22EFAD978180B /* SDWebImageIndicator.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SDWebImageIndicator.h; path = SDWebImage/Core/SDWebImageIndicator.h; sourceTree = "<group>"; }; + F0B50EE62EBE1CA22B37FBCAD7F5D3BC /* FIRComponentContainerInternal.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRComponentContainerInternal.h; path = FirebaseCore/Sources/FIRComponentContainerInternal.h; sourceTree = "<group>"; }; + F0C9246AE66C375D6D9D7C18C8E7443D /* Unistd.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Unistd.h; path = folly/portability/Unistd.h; sourceTree = "<group>"; }; + F0F8563E9938CC5830771DEEF4DF34A9 /* ThreadFactory.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ThreadFactory.h; path = folly/executors/thread_factory/ThreadFactory.h; sourceTree = "<group>"; }; + F103884550DA9031A3ADEC95E41DD20C /* FBLPromise+Retry.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "FBLPromise+Retry.h"; path = "Sources/FBLPromises/include/FBLPromise+Retry.h"; sourceTree = "<group>"; }; + F10520B4E2457035556B41CB3D68C96E /* FrameHeader.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = FrameHeader.cpp; path = rsocket/framing/FrameHeader.cpp; sourceTree = "<group>"; }; + F1119CB26F58CECB80B0BDE92CDE187B /* GDTCORUploadCoordinator.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = GDTCORUploadCoordinator.h; path = GoogleDataTransport/GDTCORLibrary/Private/GDTCORUploadCoordinator.h; sourceTree = "<group>"; }; + F1224CF1FAC20781A12765F7749CA93C /* AsyncServerSocket.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = AsyncServerSocket.cpp; path = folly/io/async/AsyncServerSocket.cpp; sourceTree = "<group>"; }; + F12632781D16C90A6A7C19F0A5B4CE37 /* ARTGroupManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = ARTGroupManager.m; sourceTree = "<group>"; }; + F1423CCA2253A30759D525E1EABF2D1C /* ScheduledSubscription.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ScheduledSubscription.h; path = rsocket/internal/ScheduledSubscription.h; sourceTree = "<group>"; }; + F1525F5D012CCCBA79287FC90249EA61 /* SDDeviceHelper.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SDDeviceHelper.h; path = SDWebImage/Private/SDDeviceHelper.h; sourceTree = "<group>"; }; + F187605B680E0AC816088473ED8A6B8A /* RCTScrollableProtocol.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTScrollableProtocol.h; sourceTree = "<group>"; }; + F1909A2D03F46AA2D6F5572953128631 /* Request.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Request.h; path = folly/io/async/Request.h; sourceTree = "<group>"; }; + F19C3F3CCF694603ACEC809519F74205 /* SDWebImage.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SDWebImage.h; path = WebImage/SDWebImage.h; sourceTree = "<group>"; }; + F1C03CC5E39DFB5CD535DBCE5F959EDC /* IOThreadPoolExecutor.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = IOThreadPoolExecutor.h; path = folly/executors/IOThreadPoolExecutor.h; sourceTree = "<group>"; }; + F1D8F2EE73988327CFE6DD4EA11D606D /* SDImageLoadersManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SDImageLoadersManager.h; path = SDWebImage/Core/SDImageLoadersManager.h; sourceTree = "<group>"; }; + F1EE0156D120B7A7DAC12B5C1B0D5126 /* FrameTransportImpl.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FrameTransportImpl.h; path = rsocket/framing/FrameTransportImpl.h; sourceTree = "<group>"; }; + F1F27BC5355EB19D783DF12333EAC71E /* RNCPicker.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = RNCPicker.release.xcconfig; sourceTree = "<group>"; }; + F1F43DC8BBC3CC0811CB67A5C6DF1F90 /* BugsnagStackframe.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BugsnagStackframe.h; sourceTree = "<group>"; }; + F20BBBFC85F40454A7B0070814063AD7 /* BugsnagStateEvent.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BugsnagStateEvent.h; sourceTree = "<group>"; }; + F21A04FAEE0F91FAB4A9EABA1D703194 /* RCTAnimationType.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTAnimationType.h; sourceTree = "<group>"; }; F21CCAF47107D491C484F4743F565B80 /* Pods-defaults-RocketChatRN-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "Pods-defaults-RocketChatRN-dummy.m"; sourceTree = "<group>"; }; - F22CCC95CE1E45D47814E4D6F87F62FD /* RCTRootViewDelegate.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTRootViewDelegate.h; sourceTree = "<group>"; }; - F2384F9FCDC8C8E4F8092212A51E69BE /* FirebaseInstallations.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FirebaseInstallations.h; path = FirebaseInstallations/Source/Library/Public/FirebaseInstallations.h; sourceTree = "<group>"; }; - F23AD8558F75A3F91F8721E980114C00 /* RCTImageURLLoaderWithAttribution.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTImageURLLoaderWithAttribution.mm; sourceTree = "<group>"; }; - F24DFCD6A2EC058E56485B04B0AD967E /* SDImageHEICCoder.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SDImageHEICCoder.h; path = SDWebImage/Core/SDImageHEICCoder.h; sourceTree = "<group>"; }; + F22C8F6F10A4A28CE597599D878568E9 /* UMFontInterface.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = UMFontInterface.debug.xcconfig; sourceTree = "<group>"; }; + F236C869FB3E9E8F0765998742979893 /* libMMKV.mm */ = {isa = PBXFileReference; includeInIndex = 1; name = libMMKV.mm; path = iOS/MMKV/MMKV/libMMKV.mm; sourceTree = "<group>"; }; + F238D27159B2F303D261196FF6A23BB9 /* animi.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = animi.h; path = src/mux/animi.h; sourceTree = "<group>"; }; + F239F9305BAA73762F877D2242AEBF5E /* ConnectionAcceptor.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ConnectionAcceptor.h; path = rsocket/ConnectionAcceptor.h; sourceTree = "<group>"; }; + F24451F359924006BCBDACD83CFC2B00 /* Time.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = Time.cpp; path = folly/portability/Time.cpp; sourceTree = "<group>"; }; + F24891A200C44A22D9D76A370CA3F7D4 /* FileUtil.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = FileUtil.cpp; path = folly/FileUtil.cpp; sourceTree = "<group>"; }; F25C3E827CEC99016CF835D55FD8A055 /* libPods-defaults-Rocket.Chat.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; name = "libPods-defaults-Rocket.Chat.a"; path = "libPods-defaults-Rocket.Chat.a"; sourceTree = BUILT_PRODUCTS_DIR; }; - F2644328A8685FAFB272DAD706AC4A36 /* SDImageLoader.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SDImageLoader.h; path = SDWebImage/Core/SDImageLoader.h; sourceTree = "<group>"; }; - F26E8EE3627DD007995E38872AAFA34A /* SafeAreaSpacerView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = SafeAreaSpacerView.h; sourceTree = "<group>"; }; - F27BB7B44D3D4D6F369D067EAC8C428F /* RCTModalManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTModalManager.m; sourceTree = "<group>"; }; - F28AFBA649D98C9468C89AEAE0F12E2D /* RNCAsyncStorageDelegate.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNCAsyncStorageDelegate.h; path = ios/RNCAsyncStorageDelegate.h; sourceTree = "<group>"; }; - F28B8D6EE6C68BAEA3DE434FE5F84065 /* EXConstants-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "EXConstants-prefix.pch"; sourceTree = "<group>"; }; - F29E3DA00733EA6D3619E628AEB20A0D /* UIButton+WebCache.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "UIButton+WebCache.m"; path = "SDWebImage/Core/UIButton+WebCache.m"; sourceTree = "<group>"; }; - F2A83070D76D4896271A32C9846E7EAC /* InspectorState.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = InspectorState.h; sourceTree = "<group>"; }; - F2BB8F624E91CC8BB4F8EAA5F175A5EA /* QuotientMultiSet.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = QuotientMultiSet.h; path = folly/experimental/QuotientMultiSet.h; sourceTree = "<group>"; }; - F2C8F1BCEEA27866D3346B8A49A98330 /* RCTDeviceInfo.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTDeviceInfo.mm; sourceTree = "<group>"; }; - F2CC85DC5B0E20ACBC7029154A770E99 /* GCTripwireContext.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = GCTripwireContext.h; path = destroot/include/hermes/Public/GCTripwireContext.h; sourceTree = "<group>"; }; - F2D103493A4E5E2BFF321613C9284ED7 /* SafeAreaSpacerShadowView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = SafeAreaSpacerShadowView.m; sourceTree = "<group>"; }; - F2D42952D771D6847FB7EE54F104C408 /* RNBootSplash.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = RNBootSplash.podspec; sourceTree = "<group>"; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; - F2E3027F493B38842E9FDBD22E957D27 /* RNFetchBlobNetwork.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNFetchBlobNetwork.h; path = ios/RNFetchBlobNetwork.h; sourceTree = "<group>"; }; + F25FF464A50485C9E6EF75F37E63A8A6 /* RCTShadowView+Internal.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "RCTShadowView+Internal.h"; sourceTree = "<group>"; }; + F26DCDB073067708AD7C60F110CA061B /* UMModuleRegistryHolderReactModule.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = UMModuleRegistryHolderReactModule.h; sourceTree = "<group>"; }; + F28995EDCAA081DEFAA755562D6D3896 /* React-RCTLinking.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "React-RCTLinking.release.xcconfig"; sourceTree = "<group>"; }; + F29E291A5148CF2D38BAD33733CFE9BF /* React-jsi.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "React-jsi.debug.xcconfig"; sourceTree = "<group>"; }; + F2A38F04DB883450BE8C18345A3BDDA3 /* FlipperClient.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FlipperClient.h; path = xplat/Flipper/FlipperClient.h; sourceTree = "<group>"; }; + F2B3121FD47DE568876878DCEC983EA6 /* react-native-mmkv-storage.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "react-native-mmkv-storage.debug.xcconfig"; sourceTree = "<group>"; }; + F2BEE07964007060837060C4054614E4 /* ARTBrush.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = ARTBrush.h; sourceTree = "<group>"; }; + F2E1A7FA147CABBCF9C7A131CADE6AFC /* RNTapHandler.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RNTapHandler.m; sourceTree = "<group>"; }; + F2E56DAB7E0B81A22B49544037C2981C /* Stdio.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Stdio.h; path = folly/portability/Stdio.h; sourceTree = "<group>"; }; F2E7C88DFCD460A4B46B913ADEB8A641 /* libReact-jsiexecutor.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; name = "libReact-jsiexecutor.a"; path = "libReact-jsiexecutor.a"; sourceTree = BUILT_PRODUCTS_DIR; }; - F308F629276CE5EA8D6AC34229F4156C /* AtomicUnorderedMapUtils.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = AtomicUnorderedMapUtils.h; path = folly/detail/AtomicUnorderedMapUtils.h; sourceTree = "<group>"; }; + F2E7E882068AFFD0D788B616C92B5C4B /* SonarKitNetworkPlugin+CPPInitialization.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "SonarKitNetworkPlugin+CPPInitialization.h"; path = "iOS/Plugins/FlipperKitNetworkPlugin/FlipperKitNetworkPlugin/SonarKitNetworkPlugin+CPPInitialization.h"; sourceTree = "<group>"; }; F30FCE3AC19A17A706E00638A3116BEF /* Pods-defaults-RocketChatRN-acknowledgements.markdown */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text; path = "Pods-defaults-RocketChatRN-acknowledgements.markdown"; sourceTree = "<group>"; }; - F317354C786766822DD67A7E191EA343 /* RCTImageSource.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTImageSource.m; sourceTree = "<group>"; }; - F328B6D74BBFF9B06C0F13B48B5952DA /* SafeAreaSpacerViewLocalData.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = SafeAreaSpacerViewLocalData.h; sourceTree = "<group>"; }; + F3165E5051CA7C643DDB125447F37120 /* UMModuleRegistry.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = UMModuleRegistry.h; sourceTree = "<group>"; }; + F317C306898E4EE02D4448085D2CA05E /* http-internal.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "http-internal.h"; sourceTree = "<group>"; }; + F31E184818299EDC875D14017A91F0EC /* GCDAsyncSocket.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = GCDAsyncSocket.m; path = Source/GCD/GCDAsyncSocket.m; sourceTree = "<group>"; }; + F31F4D18704D4CF5DDE0B84BA5B40818 /* Range.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Range.h; path = folly/Range.h; sourceTree = "<group>"; }; + F3275BB538AA27CBC0BF22122EBD1AE2 /* EXConstants.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = EXConstants.podspec; sourceTree = "<group>"; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; F32A0F7045702BDFBAB9059CAD1938C9 /* Pods-ShareRocketChatRN-acknowledgements.plist */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.plist.xml; path = "Pods-ShareRocketChatRN-acknowledgements.plist"; sourceTree = "<group>"; }; - F32DF292FF18701CD4296B0F2A789C71 /* Singleton-inl.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "Singleton-inl.h"; path = "folly/Singleton-inl.h"; sourceTree = "<group>"; }; - F338801AAA68464A8DC5F21FC676D9B0 /* FrameTransport.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FrameTransport.h; path = rsocket/framing/FrameTransport.h; sourceTree = "<group>"; }; - F339762AA8DD6F76C7A6BE4A9051877A /* RCTBlobPlugins.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTBlobPlugins.h; sourceTree = "<group>"; }; - F3489AA7582FB320BAC9935E0E332756 /* diy-fp.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "diy-fp.h"; path = "double-conversion/diy-fp.h"; sourceTree = "<group>"; }; - F350699D1059C8E80FBC4C4DF05A2B0E /* MPMCQueue.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = MPMCQueue.h; path = folly/MPMCQueue.h; sourceTree = "<group>"; }; - F37CF827ECF3CB523CFB5303EAEAC16A /* FirebaseInstallations.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = FirebaseInstallations.release.xcconfig; sourceTree = "<group>"; }; - F38C5303F7B521491FE9BA5EC76CB6E8 /* FIRDiagnosticsData.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRDiagnosticsData.m; path = FirebaseCore/Sources/FIRDiagnosticsData.m; sourceTree = "<group>"; }; - F3B55915438E2A778BBDC814F29F37B8 /* evthread-internal.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "evthread-internal.h"; sourceTree = "<group>"; }; - F3D4269EDDDB1D35DEE5FFE4C47815A6 /* AtomicUtils.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = AtomicUtils.h; path = folly/synchronization/detail/AtomicUtils.h; sourceTree = "<group>"; }; - F3D4718735FCE29271043BE67B3D5EF2 /* Sleeper.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Sleeper.h; path = folly/synchronization/detail/Sleeper.h; sourceTree = "<group>"; }; - F3DD32D017B1DA9E161BB9E0F4188B94 /* FlipperKitLayoutPlugin.mm */ = {isa = PBXFileReference; includeInIndex = 1; name = FlipperKitLayoutPlugin.mm; path = iOS/Plugins/FlipperKitLayoutPlugin/FlipperKitLayoutPlugin/FlipperKitLayoutPlugin.mm; sourceTree = "<group>"; }; - F3F9C7E6CC836240AC4DBF3C75028666 /* CustomizationPoint.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = CustomizationPoint.h; path = folly/lang/CustomizationPoint.h; sourceTree = "<group>"; }; - F401C944F2D198765DF6DC6A29B04212 /* BSGStorageMigratorV0V1.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = BSGStorageMigratorV0V1.m; sourceTree = "<group>"; }; - F40F4D13C064134A3B808F152E583CC3 /* VirtualEventBase.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = VirtualEventBase.h; path = folly/io/async/VirtualEventBase.h; sourceTree = "<group>"; }; - F4158AE7E59BBE121CFE1EC34EF5D4B8 /* InspectorInterfaces.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = InspectorInterfaces.h; sourceTree = "<group>"; }; - F426EC127A24804A5AF0A94BBCFFD9E3 /* BSG_KSString.c */ = {isa = PBXFileReference; includeInIndex = 1; path = BSG_KSString.c; sourceTree = "<group>"; }; - F42986ECFFA483050295D48982F1A735 /* SysTypes.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SysTypes.h; path = folly/portability/SysTypes.h; sourceTree = "<group>"; }; - F42A2624F056C94D80F5503354B73FFC /* REANode.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = REANode.m; sourceTree = "<group>"; }; - F458D12292FA35B08C9A39B64CF76800 /* JSModulesUnbundle.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = JSModulesUnbundle.h; sourceTree = "<group>"; }; - F46660C998520D7CE088FE9B174D1ED5 /* openssl_aes_core.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = openssl_aes_core.cpp; path = Core/aes/openssl/openssl_aes_core.cpp; sourceTree = "<group>"; }; - F47828A6ACE63FA46BE094630CED9783 /* RCTInspectorPackagerConnection.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTInspectorPackagerConnection.m; sourceTree = "<group>"; }; - F478FCC2423FF68BE7E0D0291906F44A /* RNDateTimePicker-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "RNDateTimePicker-prefix.pch"; sourceTree = "<group>"; }; - F479CFB21AB01D2A48131512847D204F /* FramedReader.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FramedReader.h; path = rsocket/framing/FramedReader.h; sourceTree = "<group>"; }; - F4894891D2683756B59E4356267E11C3 /* GULAppEnvironmentUtil.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = GULAppEnvironmentUtil.h; path = GoogleUtilities/Environment/Private/GULAppEnvironmentUtil.h; sourceTree = "<group>"; }; - F492C284CDCC72A9270CF65696729407 /* JSIndexedRAMBundle.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; path = JSIndexedRAMBundle.cpp; sourceTree = "<group>"; }; - F4BA021EFDD407D4A27AEF8D47D838CA /* UMSingletonModule.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = UMSingletonModule.h; path = UMCore/UMSingletonModule.h; sourceTree = "<group>"; }; - F4C353ED5FA2A9612D4901DA4A0899F8 /* SDImageCachesManagerOperation.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = SDImageCachesManagerOperation.m; path = SDWebImage/Private/SDImageCachesManagerOperation.m; sourceTree = "<group>"; }; - F4DE545BA22392C8F815EBCF42429004 /* GULAppDelegateSwizzler.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = GULAppDelegateSwizzler.m; path = GoogleUtilities/AppDelegateSwizzler/GULAppDelegateSwizzler.m; sourceTree = "<group>"; }; - F51458ED217868C4E220100B51E3EFC2 /* React-RCTImage-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "React-RCTImage-prefix.pch"; sourceTree = "<group>"; }; - F52F4AA3524EB137E5E1FCD4279DD068 /* EXAV.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = EXAV.h; path = EXAV/EXAV.h; sourceTree = "<group>"; }; - F52F845A189384EC9BBD6B8783511AD3 /* FBLPromise+Catch.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "FBLPromise+Catch.m"; path = "Sources/FBLPromises/FBLPromise+Catch.m"; sourceTree = "<group>"; }; - F5344B45D2A5F2585D79F4084CC0F9EA /* FlipperUtil.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FlipperUtil.m; path = iOS/FlipperKit/FlipperUtil.m; sourceTree = "<group>"; }; - F55B26C281E7CC639D090359C95AF714 /* Foreach.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Foreach.h; path = folly/container/Foreach.h; sourceTree = "<group>"; }; - F563103478429FABE9D3126BBB73415A /* SDImageAPNGCoder.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = SDImageAPNGCoder.m; path = SDWebImage/Core/SDImageAPNGCoder.m; sourceTree = "<group>"; }; - F576BCC4172904927F23B98D1F64E741 /* BSG_KSDynamicLinker.c */ = {isa = PBXFileReference; includeInIndex = 1; path = BSG_KSDynamicLinker.c; sourceTree = "<group>"; }; - F5771F51BE8367D62CF31BCD2A4FEB67 /* UMPermissionsInterface.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = UMPermissionsInterface.debug.xcconfig; sourceTree = "<group>"; }; - F57E1E3DCF37995386576E9CD9D1DCE9 /* EXVideoThumbnails-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "EXVideoThumbnails-prefix.pch"; sourceTree = "<group>"; }; + F33FCC88A656E718464320FF41707B79 /* SysMembarrier.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SysMembarrier.h; path = folly/portability/SysMembarrier.h; sourceTree = "<group>"; }; + F343002BB2B4DA1CE8C45B5552C49BE7 /* React-RCTSettings-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "React-RCTSettings-dummy.m"; sourceTree = "<group>"; }; + F348C17160791B418E4FCA6FE14C7C5F /* FormatTraits.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FormatTraits.h; path = folly/FormatTraits.h; sourceTree = "<group>"; }; + F379A2FA213B159CAA445AAFC58A1691 /* SpookyHashV2.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SpookyHashV2.h; path = folly/hash/SpookyHashV2.h; sourceTree = "<group>"; }; + F37CAA1BEBD73DD2B9788530A732D1B5 /* FirebaseInstallationsInternal.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FirebaseInstallationsInternal.h; path = FirebaseInstallations/Source/Library/Private/FirebaseInstallationsInternal.h; sourceTree = "<group>"; }; + F37EB6A0766E146E621A1D6868989631 /* Future-inl.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "Future-inl.h"; path = "folly/futures/Future-inl.h"; sourceTree = "<group>"; }; + F3BEA36EB7569BE1806319E18BAB6FFE /* RCTSettingsManager.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTSettingsManager.mm; sourceTree = "<group>"; }; + F3C1F85D975715828845F12903D106E6 /* FIRCLSRecordHost.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRCLSRecordHost.h; path = Crashlytics/Crashlytics/Models/Record/FIRCLSRecordHost.h; sourceTree = "<group>"; }; + F3C4D0D2462F12988B951082840298D4 /* SanitizeThread.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = SanitizeThread.cpp; path = folly/synchronization/SanitizeThread.cpp; sourceTree = "<group>"; }; + F3D56F6AE392B635143AD0767217F95D /* pb.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = pb.h; sourceTree = "<group>"; }; + F3EF2BABF628BD30CBEDFAADE5D45AC2 /* LICENSE */ = {isa = PBXFileReference; includeInIndex = 1; path = LICENSE; sourceTree = "<group>"; }; + F3F2F4373C12768936C270504E041C55 /* GlobalThreadPoolList.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = GlobalThreadPoolList.cpp; path = folly/executors/GlobalThreadPoolList.cpp; sourceTree = "<group>"; }; + F3F78A7171BDEEE6A1842EEB7FB87325 /* NetOps.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = NetOps.cpp; path = folly/net/NetOps.cpp; sourceTree = "<group>"; }; + F405B50EACD439F73F1A0EA0FDB3EC24 /* RCTImageEditingManager.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTImageEditingManager.mm; sourceTree = "<group>"; }; + F4409C0FB2CCA739DA7E9F19D29A86DB /* FIRCLSNetworkClient.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRCLSNetworkClient.h; path = Crashlytics/Crashlytics/Controllers/FIRCLSNetworkClient.h; sourceTree = "<group>"; }; + F450D69FF61503349DAA40ADE9ABB40D /* SDWebImageWebPCoder-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "SDWebImageWebPCoder-dummy.m"; sourceTree = "<group>"; }; + F45431E727CEC1C36147A703596FF74F /* BSGJSONSerialization.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = BSGJSONSerialization.m; sourceTree = "<group>"; }; + F455595C7B8188AE4C46D5F4CC159DA9 /* FIRCLSRecordApplication.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRCLSRecordApplication.h; path = Crashlytics/Crashlytics/Models/Record/FIRCLSRecordApplication.h; sourceTree = "<group>"; }; + F468F920BF6EB11ED152DCCDE798BEB8 /* RNFBCrashlyticsModule.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNFBCrashlyticsModule.h; path = ios/RNFBCrashlytics/RNFBCrashlyticsModule.h; sourceTree = "<group>"; }; + F46A38F1C7E8F5D455FD085A7B45F867 /* RNRootView.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = RNRootView.podspec; sourceTree = "<group>"; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; + F48067040CCB3B1BD73CE2965F3D7C10 /* SKBufferingPlugin.mm */ = {isa = PBXFileReference; includeInIndex = 1; name = SKBufferingPlugin.mm; path = iOS/Plugins/FlipperKitNetworkPlugin/FlipperKitNetworkPlugin/SKBufferingPlugin.mm; sourceTree = "<group>"; }; + F49E84A1651622E867FACDA8C6F5F079 /* BSG_KSSysCtl.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BSG_KSSysCtl.h; sourceTree = "<group>"; }; + F4B8D69415A8D7A469F7EB8AD4E07DB9 /* SocketFileDescriptorMap.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SocketFileDescriptorMap.h; path = folly/net/detail/SocketFileDescriptorMap.h; sourceTree = "<group>"; }; + F4FC303BE623F15A91E502F10F95F27F /* BugsnagReactNative-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "BugsnagReactNative-dummy.m"; sourceTree = "<group>"; }; + F50E25A082569D3B41EF4955CEA52004 /* signal.c */ = {isa = PBXFileReference; includeInIndex = 1; path = signal.c; sourceTree = "<group>"; }; + F522621A2D8CEB2DDB646CCEBA7C6CD5 /* README.md */ = {isa = PBXFileReference; includeInIndex = 1; path = README.md; sourceTree = "<group>"; }; + F547618559A17BDE84AEA8C8B1A96C34 /* SDAnimatedImageRep.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SDAnimatedImageRep.h; path = SDWebImage/Core/SDAnimatedImageRep.h; sourceTree = "<group>"; }; + F5482F3FA62ED2DDA5C9E62A59C92487 /* FBLPromise+Retry.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "FBLPromise+Retry.m"; path = "Sources/FBLPromises/FBLPromise+Retry.m"; sourceTree = "<group>"; }; + F54C1971B91025F5A8D7CE3B712EB115 /* BlurView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = BlurView.m; path = ios/BlurView.m; sourceTree = "<group>"; }; + F54EC49EE27595E7E1A857F791CC1C27 /* DistributedMutex.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = DistributedMutex.h; path = folly/synchronization/DistributedMutex.h; sourceTree = "<group>"; }; + F54EF9636F8EF8D470087BFD45504BAA /* rn-fetch-blob-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "rn-fetch-blob-dummy.m"; sourceTree = "<group>"; }; + F56E1BC0BB86E1FEB6FB53404A70E4A8 /* RNImageCropPicker-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "RNImageCropPicker-dummy.m"; sourceTree = "<group>"; }; + F57554B8798B821B86D33DA39C44C6F7 /* Singleton.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = Singleton.cpp; path = folly/Singleton.cpp; sourceTree = "<group>"; }; + F57B9746C57D5E93F3933A24BD4A76E8 /* UIImage+Transform.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "UIImage+Transform.h"; path = "SDWebImage/Core/UIImage+Transform.h"; sourceTree = "<group>"; }; + F57E12BAB618666EA8CF634EB94E0821 /* GDTCOREvent+GDTCCTSupport.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "GDTCOREvent+GDTCCTSupport.m"; path = "GoogleDataTransport/GDTCCTLibrary/GDTCOREvent+GDTCCTSupport.m"; sourceTree = "<group>"; }; F58021416A62A986A53B2D12008A3F89 /* Pods-NotificationService-resources.sh */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.script.sh; path = "Pods-NotificationService-resources.sh"; sourceTree = "<group>"; }; - F581C9A5F02DED7814305888D182DF40 /* ConnectionContextStore.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = ConnectionContextStore.cpp; path = xplat/Flipper/ConnectionContextStore.cpp; sourceTree = "<group>"; }; - F581E23D64DDD0F3D518E17717970CA0 /* AtomicUtils.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = AtomicUtils.h; path = folly/synchronization/detail/AtomicUtils.h; sourceTree = "<group>"; }; - F5851EAB8954DE15BC38C794A0139EA3 /* MessageConverters.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = MessageConverters.h; sourceTree = "<group>"; }; - F59574F26EAD934B166EC8F9C822F2FD /* RNBackgroundTimer.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNBackgroundTimer.h; path = ios/RNBackgroundTimer.h; sourceTree = "<group>"; }; - F5B377F6105317F97F4A000A3DDB28B5 /* EXVideoPlayerViewControllerDelegate.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = EXVideoPlayerViewControllerDelegate.h; sourceTree = "<group>"; }; - F5BABE80C6537FD2891E8B6959445D25 /* RCTAnimatedImage.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTAnimatedImage.h; path = Libraries/Image/RCTAnimatedImage.h; sourceTree = "<group>"; }; - F5C23D5F46756EE864E58C1346D30056 /* thread_utils.c */ = {isa = PBXFileReference; includeInIndex = 1; name = thread_utils.c; path = src/utils/thread_utils.c; sourceTree = "<group>"; }; - F5C24A28F7BE299202A4BE137E4D7B83 /* RCTURLRequestHandler.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTURLRequestHandler.h; sourceTree = "<group>"; }; - F5C47C24A4E9B381B4471B21AF14D50F /* LifoSem.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = LifoSem.h; path = folly/synchronization/LifoSem.h; sourceTree = "<group>"; }; - F5C5DF4C60B77F8383B42AB7ACBA6C09 /* CpuId.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = CpuId.h; path = folly/CpuId.h; sourceTree = "<group>"; }; + F59A6F4DC9C806979A5F9CD7065B6AA5 /* Windows.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Windows.h; path = folly/portability/Windows.h; sourceTree = "<group>"; }; + F5B7A7557434258316DCCD0C31D78362 /* logging.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = logging.h; path = src/glog/logging.h; sourceTree = "<group>"; }; + F5BEE9DC30E2FFDE072729FD8E3A7FE7 /* FIRLibrary.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRLibrary.h; path = FirebaseCore/Sources/Private/FIRLibrary.h; sourceTree = "<group>"; }; + F5C022372C179DDA7ED73B390D6E7CAD /* SKApplicationDescriptor.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SKApplicationDescriptor.h; path = iOS/Plugins/FlipperKitLayoutPlugin/FlipperKitLayoutPlugin/descriptors/SKApplicationDescriptor.h; sourceTree = "<group>"; }; + F5C4E0D1C6DB2B953954178AE8925AC2 /* dwarf.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = dwarf.h; path = Crashlytics/third_party/libunwind/dwarf.h; sourceTree = "<group>"; }; + F5C6295C545DD73F3BA7592066FC1F44 /* FIRStackFrame_Private.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRStackFrame_Private.h; path = Crashlytics/Crashlytics/Private/FIRStackFrame_Private.h; sourceTree = "<group>"; }; F5DC1A318679E374AF8B617C6DA4652A /* Pods-defaults-Rocket.Chat-frameworks.sh */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.script.sh; path = "Pods-defaults-Rocket.Chat-frameworks.sh"; sourceTree = "<group>"; }; - F5E7B4DED4D5A8CA8A2AC2E8E3B2E978 /* UMBarCodeScannerProviderInterface.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = UMBarCodeScannerProviderInterface.h; path = UMBarCodeScannerInterface/UMBarCodeScannerProviderInterface.h; sourceTree = "<group>"; }; - F5EB7201D728C7DB3F37A71DB6AF6C98 /* QBAssetsViewController.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = QBAssetsViewController.h; path = ios/QBImagePicker/QBImagePicker/QBAssetsViewController.h; sourceTree = "<group>"; }; - F5F787DF75B9E09594E5251817DDFB91 /* evdns.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = evdns.h; path = include/evdns.h; sourceTree = "<group>"; }; - F60B8B4C00F766209BDBF4C89C226F47 /* lossless_sse2.c */ = {isa = PBXFileReference; includeInIndex = 1; name = lossless_sse2.c; path = src/dsp/lossless_sse2.c; sourceTree = "<group>"; }; - F619F6E9441077F0E51EB483160227A3 /* RCTRootShadowView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTRootShadowView.m; sourceTree = "<group>"; }; - F61AC29A434D8AD3AA33C42765183FBD /* Flipper-RSocket.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "Flipper-RSocket.release.xcconfig"; sourceTree = "<group>"; }; - F61ACA5C6F1C50F250EAC26D616F95AE /* React-perflogger.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = "React-perflogger.podspec"; sourceTree = "<group>"; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; - F64742258C6EF3E1F9C88DADBD27295E /* ReadMostlySharedPtr.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ReadMostlySharedPtr.h; path = folly/experimental/ReadMostlySharedPtr.h; sourceTree = "<group>"; }; - F656E9E9B098FF51164E8EDD69ECDCB0 /* upsampling_msa.c */ = {isa = PBXFileReference; includeInIndex = 1; name = upsampling_msa.c; path = src/dsp/upsampling_msa.c; sourceTree = "<group>"; }; - F664652BB858F525BA3D936AEB2F1E1B /* MMKVHandler.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = MMKVHandler.h; path = iOS/MMKV/MMKV/MMKVHandler.h; sourceTree = "<group>"; }; - F667AE46E263A7A517E722D9B783D79B /* FIRCLSOperation.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRCLSOperation.h; path = Crashlytics/Shared/FIRCLSOperation/FIRCLSOperation.h; sourceTree = "<group>"; }; - F6841ECB79AB4A38CB837F68495B3AB0 /* tree_enc.c */ = {isa = PBXFileReference; includeInIndex = 1; name = tree_enc.c; path = src/enc/tree_enc.c; sourceTree = "<group>"; }; - F68A5EB0647CE6880D14B79F96C6735C /* FBReactNativeSpec-generated.mm */ = {isa = PBXFileReference; includeInIndex = 1; name = "FBReactNativeSpec-generated.mm"; path = "FBReactNativeSpec/FBReactNativeSpec-generated.mm"; sourceTree = "<group>"; }; - F68BA11CC0C275B67DC8ECAFC32E5A60 /* RCTScrollableProtocol.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTScrollableProtocol.h; sourceTree = "<group>"; }; - F68BDB89D6BB3EDD1ADD7F9F18B1F9C2 /* UMCore.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = UMCore.debug.xcconfig; sourceTree = "<group>"; }; - F6999E1FA5D1118E99918E215C000A6E /* RNPushKitEventHandler.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNPushKitEventHandler.h; path = RNNotifications/RNPushKitEventHandler.h; sourceTree = "<group>"; }; - F69B4FD77A2ECAB40F80D5B29BFC7385 /* Rcu.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Rcu.h; path = folly/synchronization/Rcu.h; sourceTree = "<group>"; }; - F6AB4587E201E4C23AB7619E10ED0427 /* evutil.c */ = {isa = PBXFileReference; includeInIndex = 1; path = evutil.c; sourceTree = "<group>"; }; - F6C380CA7A33FA313D82D9CB909D3CE4 /* Flipper-DoubleConversion.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "Flipper-DoubleConversion.debug.xcconfig"; sourceTree = "<group>"; }; - F6D284B7576715CC4396B43BE47D1555 /* RNReanimated.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = RNReanimated.debug.xcconfig; sourceTree = "<group>"; }; - F6DAA1715ADF9A5DE86C19321C5B86A2 /* Iterators.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Iterators.h; path = folly/detail/Iterators.h; sourceTree = "<group>"; }; - F6EA10A90AA1593D6A98F29E04F47B9E /* bignum.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = bignum.h; path = "double-conversion/bignum.h"; sourceTree = "<group>"; }; - F6FC3E36C12BEA0B1BCE874338D485A7 /* notificationsEvents.md */ = {isa = PBXFileReference; includeInIndex = 1; name = notificationsEvents.md; path = docs/notificationsEvents.md; sourceTree = "<group>"; }; - F6FE7555EDE359A14D2F715534F474C8 /* Demangle.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Demangle.h; path = folly/detail/Demangle.h; sourceTree = "<group>"; }; - F706C3AD388C5F7FBE62C7B79AE8E90C /* Lazy.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Lazy.h; path = folly/Lazy.h; sourceTree = "<group>"; }; - F709182254F371DCB7FC9E4E5AD51402 /* firebasecore.nanopb.c */ = {isa = PBXFileReference; includeInIndex = 1; name = firebasecore.nanopb.c; path = Firebase/CoreDiagnostics/FIRCDLibrary/Protogen/nanopb/firebasecore.nanopb.c; sourceTree = "<group>"; }; - F7108AEA271F505A21FEBB5ABFFBDDCF /* AtFork.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = AtFork.cpp; path = folly/detail/AtFork.cpp; sourceTree = "<group>"; }; - F711B71C9191D701EF0B6D739CAF2971 /* SDInternalMacros.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SDInternalMacros.h; path = SDWebImage/Private/SDInternalMacros.h; sourceTree = "<group>"; }; - F71D2A9EEEBCF6C9678A20634F0036C8 /* FIRCLSFABAsyncOperation.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRCLSFABAsyncOperation.h; path = Crashlytics/Shared/FIRCLSOperation/FIRCLSFABAsyncOperation.h; sourceTree = "<group>"; }; - F71DB06084160D809A34D0F0449453D5 /* MessageInterfaces.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = MessageInterfaces.h; sourceTree = "<group>"; }; + F5E2B237BFC19F48FDF152EAA9B894DD /* SequencedExecutor.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SequencedExecutor.h; path = folly/executors/SequencedExecutor.h; sourceTree = "<group>"; }; + F5E9FE96DB4AA86A910234CF52014188 /* RCTDatePickerManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTDatePickerManager.h; sourceTree = "<group>"; }; + F5EB82991A1B638E2A6F834DF732662C /* SDWebImageDownloaderResponseModifier.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SDWebImageDownloaderResponseModifier.h; path = SDWebImage/Core/SDWebImageDownloaderResponseModifier.h; sourceTree = "<group>"; }; + F5EE5C65D649197C91054743EE3A0C64 /* FBReactNativeSpec-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "FBReactNativeSpec-dummy.m"; sourceTree = "<group>"; }; + F5FD9615C9387CDEF7E5BBFC5D2FAEE8 /* HeterogeneousAccess.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = HeterogeneousAccess.h; path = folly/container/HeterogeneousAccess.h; sourceTree = "<group>"; }; + F6022B2589E185C6020F07C84EB20DB4 /* SKTouch.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = SKTouch.m; path = iOS/Plugins/FlipperKitLayoutPlugin/FlipperKitLayoutPlugin/SKTouch.m; sourceTree = "<group>"; }; + F60877BDF5E130758B51C0D0373E61D9 /* UIImageView+HighlightedWebCache.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "UIImageView+HighlightedWebCache.h"; path = "SDWebImage/Core/UIImageView+HighlightedWebCache.h"; sourceTree = "<group>"; }; + F62408E36F62BECBE6226DF96670A02D /* FIRAEvent+Internal.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "FIRAEvent+Internal.h"; path = "Crashlytics/Crashlytics/Helpers/FIRAEvent+Internal.h"; sourceTree = "<group>"; }; + F6549A9A5F99E62D99D983A74FA4A6A7 /* alpha_dec.c */ = {isa = PBXFileReference; includeInIndex = 1; name = alpha_dec.c; path = src/dec/alpha_dec.c; sourceTree = "<group>"; }; + F65A84E9BF932DBC59430F17CDE7C3C8 /* RCTActivityIndicatorView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTActivityIndicatorView.m; sourceTree = "<group>"; }; + F65D143C60A6A95F37D9162CEEBC6D75 /* Cursor-inl.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "Cursor-inl.h"; path = "folly/io/Cursor-inl.h"; sourceTree = "<group>"; }; + F67FB9122A26EBBE899BB25396DE5622 /* Buffer.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Buffer.h; path = destroot/include/hermes/Public/Buffer.h; sourceTree = "<group>"; }; + F6A13C3347D23CF1821E036AF8CD9008 /* RCTNetworkPlugins.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTNetworkPlugins.h; path = Libraries/Network/RCTNetworkPlugins.h; sourceTree = "<group>"; }; + F6A1DCC469A89C1E8B42121ADE8559B8 /* BSG_KSCrashReport.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BSG_KSCrashReport.h; sourceTree = "<group>"; }; + F6BDB030D490C6730F2CBA19D1722AD6 /* RNVectorIcons.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = RNVectorIcons.debug.xcconfig; sourceTree = "<group>"; }; + F6C6B4E0355CC1484A7FD00EBDA99622 /* FIRCLSDataParsing.c */ = {isa = PBXFileReference; includeInIndex = 1; name = FIRCLSDataParsing.c; path = Crashlytics/Crashlytics/Unwind/Dwarf/FIRCLSDataParsing.c; sourceTree = "<group>"; }; + F6C827663F55B3E2CA36D075AA95F4BF /* select.c */ = {isa = PBXFileReference; includeInIndex = 1; path = select.c; sourceTree = "<group>"; }; + F6CBEE43C9FDE7721945939CE7EAC722 /* REAJSCallNode.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = REAJSCallNode.h; sourceTree = "<group>"; }; + F6D58787CF9C02ADEC238464A9EEF2CD /* FIRCLSCompoundOperation.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRCLSCompoundOperation.m; path = Crashlytics/Shared/FIRCLSOperation/FIRCLSCompoundOperation.m; sourceTree = "<group>"; }; + F6FA02EAEB1035A6D80BCA07414C14A8 /* UICollectionView+SKInvalidation.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "UICollectionView+SKInvalidation.h"; path = "iOS/Plugins/FlipperKitLayoutPlugin/FlipperKitLayoutPlugin/UICollectionView+SKInvalidation.h"; sourceTree = "<group>"; }; + F7099AD4BEC621BFBE7F24E626653828 /* NativeModulePerfLogger.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = NativeModulePerfLogger.h; path = reactperflogger/NativeModulePerfLogger.h; sourceTree = "<group>"; }; F71EBF73F354B475D465FF6DE9A66707 /* libReact-RCTBlob.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; name = "libReact-RCTBlob.a"; path = "libReact-RCTBlob.a"; sourceTree = BUILT_PRODUCTS_DIR; }; - F71F5BB161EFE16845835C17D1071F44 /* SDImageTransformer.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SDImageTransformer.h; path = SDWebImage/Core/SDImageTransformer.h; sourceTree = "<group>"; }; - F73BB6947B4750A2A5E5F61F29384ACE /* YogaKit.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = YogaKit.debug.xcconfig; sourceTree = "<group>"; }; - F741A695174331064C6F1F03D184685B /* RSocketRequester.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RSocketRequester.h; path = rsocket/RSocketRequester.h; sourceTree = "<group>"; }; - F75799BE5F54F996D3AE4DDCC29FB260 /* pb_encode.c */ = {isa = PBXFileReference; includeInIndex = 1; path = pb_encode.c; sourceTree = "<group>"; }; - F759368598F3CB12858EFD5919BB5FB1 /* BugsnagBreadcrumbs.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BugsnagBreadcrumbs.h; sourceTree = "<group>"; }; - F77B5FF434ABB196616C9FDD68A45DBA /* FIRDependency.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRDependency.h; path = FirebaseCore/Sources/Private/FIRDependency.h; sourceTree = "<group>"; }; - F784B594BAB762A38CFE432CC18FE196 /* RNGestureHandlerEvents.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNGestureHandlerEvents.h; path = ios/RNGestureHandlerEvents.h; sourceTree = "<group>"; }; - F7A188639F1627BFE03D870F23213D40 /* react-native-slider-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "react-native-slider-prefix.pch"; sourceTree = "<group>"; }; - F7A64D41667778D33A9333B1C9294E2F /* threadsafe.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = threadsafe.h; path = destroot/include/jsi/threadsafe.h; sourceTree = "<group>"; }; - F7A9DDBA9BFFE646492645017B4ED408 /* MemoryMapping.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = MemoryMapping.h; path = folly/system/MemoryMapping.h; sourceTree = "<group>"; }; - F7B36E0655F52B09126B8CB05E74753E /* da-DK.lproj */ = {isa = PBXFileReference; includeInIndex = 1; name = "da-DK.lproj"; path = "Objective-C/TOCropViewController/Resources/da-DK.lproj"; sourceTree = "<group>"; }; - F7C40C88F5C3C5FE1938B1CEC0B1179C /* UMAppDelegateWrapper.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = UMAppDelegateWrapper.m; path = UMCore/UMAppDelegateWrapper.m; sourceTree = "<group>"; }; - F7D554F5ED674572E6525FC97E60D179 /* UMReactNativeAdapter.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = UMReactNativeAdapter.podspec; sourceTree = "<group>"; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; - F7E66212CF7771A3C2BB41F23B4A3798 /* RCTShadowView+Layout.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "RCTShadowView+Layout.m"; sourceTree = "<group>"; }; - F80D14207A4BC374E1108E515C59113B /* GlobalShutdownSocketSet.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = GlobalShutdownSocketSet.cpp; path = folly/io/GlobalShutdownSocketSet.cpp; sourceTree = "<group>"; }; - F80EFFD5CEFD057F6C9AB017625E04C0 /* GULUserDefaults.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = GULUserDefaults.h; path = GoogleUtilities/UserDefaults/Private/GULUserDefaults.h; sourceTree = "<group>"; }; - F83A4C8812F4CB19573C1DD3BB28018E /* Registration.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; path = Registration.cpp; sourceTree = "<group>"; }; - F83F91B2D05DD47B50B966F30439E031 /* TcpConnectionAcceptor.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = TcpConnectionAcceptor.h; path = rsocket/transports/tcp/TcpConnectionAcceptor.h; sourceTree = "<group>"; }; - F84258E26BD1F2E4F4E845499D19D291 /* vp8i_enc.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = vp8i_enc.h; path = src/enc/vp8i_enc.h; sourceTree = "<group>"; }; - F84D66B66D9C1D0B7FA28AC0AF726DA5 /* openssl_md32_common.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = openssl_md32_common.h; path = Core/aes/openssl/openssl_md32_common.h; sourceTree = "<group>"; }; - F84EC6F38F363EC3FADF882D35D98126 /* FlipperKit-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "FlipperKit-prefix.pch"; sourceTree = "<group>"; }; - F850DA2AF3D46F85AD5CA6273D824993 /* Promise-inl.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "Promise-inl.h"; path = "folly/futures/Promise-inl.h"; sourceTree = "<group>"; }; - F857F1D4F6B0DA51D90C2E47D9113790 /* InterProcessLock_Win32.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = InterProcessLock_Win32.cpp; path = Core/InterProcessLock_Win32.cpp; sourceTree = "<group>"; }; - F85832130A3148FE810602F0E05D38C5 /* Payload.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Payload.h; path = rsocket/Payload.h; sourceTree = "<group>"; }; - F87FD82161211A08881DC52942907F6B /* FlowableConcatOperators.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FlowableConcatOperators.h; path = yarpl/flowable/FlowableConcatOperators.h; sourceTree = "<group>"; }; - F8858511AF37F8A3D53D4FE0D621D8F9 /* RecordIO.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RecordIO.h; path = folly/io/RecordIO.h; sourceTree = "<group>"; }; - F893670BC5A985D6ABFC6BDA419F2EB6 /* Future-inl.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "Future-inl.h"; path = "folly/futures/Future-inl.h"; sourceTree = "<group>"; }; - F89FCCEDA81EAB26185CEB2124BC010D /* RCTDevMenu.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTDevMenu.mm; sourceTree = "<group>"; }; - F8A293D697BEB0EB90B945383C617400 /* Hazptr-fwd.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "Hazptr-fwd.h"; path = "folly/synchronization/Hazptr-fwd.h"; sourceTree = "<group>"; }; - F8A34C931F8875081A4EE2BB1B802E30 /* UMPermissionsInterface-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "UMPermissionsInterface-dummy.m"; sourceTree = "<group>"; }; - F8A79B87F04F432DCEF4AB0A2C2E513F /* QuotientMultiSet-inl.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "QuotientMultiSet-inl.h"; path = "folly/experimental/QuotientMultiSet-inl.h"; sourceTree = "<group>"; }; - F8B921051AB4FF0A77981EF9913F6E3F /* JSBigString.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = JSBigString.h; sourceTree = "<group>"; }; - F8BC1EE68A6BE949F205AF0A712CB58C /* CancellationToken-inl.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "CancellationToken-inl.h"; path = "folly/CancellationToken-inl.h"; sourceTree = "<group>"; }; - F8CD14050C72D23D91D42E504CB876EF /* GoogleAppMeasurement.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = GoogleAppMeasurement.debug.xcconfig; sourceTree = "<group>"; }; - F8CD2C6096A9D4F117D18EEE386A1A90 /* UncaughtExceptions.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = UncaughtExceptions.h; path = folly/lang/UncaughtExceptions.h; sourceTree = "<group>"; }; - F8D2E7E327EF00F423CF3CB0003837EE /* MMKVLog.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = MMKVLog.cpp; path = Core/MMKVLog.cpp; sourceTree = "<group>"; }; - F8D50667E4ED06A26937DE3CB1093BF5 /* EXAudioSessionManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = EXAudioSessionManager.m; path = EXAV/EXAudioSessionManager.m; sourceTree = "<group>"; }; - F8FD5A216F32168394C74F3137AD387D /* AsyncPipe.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = AsyncPipe.h; path = folly/io/async/AsyncPipe.h; sourceTree = "<group>"; }; - F905161DEF3AFDF41768E0E23B15FB64 /* FIRStackFrame_Private.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRStackFrame_Private.h; path = Crashlytics/Crashlytics/Private/FIRStackFrame_Private.h; sourceTree = "<group>"; }; - F90EED1DC20A348419D2B4FB2DCB70F7 /* EvictingCacheMap.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = EvictingCacheMap.h; path = folly/container/EvictingCacheMap.h; sourceTree = "<group>"; }; - F93297EBA8996FF25D53F9E5C941A5A3 /* react-native-appearance-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "react-native-appearance-prefix.pch"; sourceTree = "<group>"; }; - F9368D22615B059953CDCF32754A57A7 /* EXLocalAuthentication.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = EXLocalAuthentication.debug.xcconfig; sourceTree = "<group>"; }; - F9443F644AE9D404E5CF0E1FF4F41249 /* AsyncSocket.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = AsyncSocket.h; path = folly/io/async/AsyncSocket.h; sourceTree = "<group>"; }; - F947BA1DC1389531D34C18DE2C6E1145 /* RNRootView-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "RNRootView-prefix.pch"; sourceTree = "<group>"; }; + F727A6C560A80D6C4340A360F6165D01 /* LICENSE */ = {isa = PBXFileReference; includeInIndex = 1; path = LICENSE; sourceTree = "<group>"; }; + F745E5844EBA717F3FE221B9D9AEB705 /* ConcurrentSkipList.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ConcurrentSkipList.h; path = folly/ConcurrentSkipList.h; sourceTree = "<group>"; }; + F75D536DA30AA1A0D79332B0C6A2C5D2 /* BugsnagClient+Private.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "BugsnagClient+Private.h"; sourceTree = "<group>"; }; + F76EE1C98010B48017F99E9415B09082 /* FBReactNativeSpec.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FBReactNativeSpec.h; path = FBReactNativeSpec/FBReactNativeSpec.h; sourceTree = "<group>"; }; + F776D60FB667C746DF277574BF048264 /* demux.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = demux.h; path = src/webp/demux.h; sourceTree = "<group>"; }; + F7791AC50382463B28563BA48F532699 /* FKUserDefaultsSwizzleUtility.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FKUserDefaultsSwizzleUtility.m; path = iOS/Plugins/FlipperKitUserDefaultsPlugin/FKUserDefaultsSwizzleUtility.m; sourceTree = "<group>"; }; + F77B08D31ED678F2A63EFEBF905B9087 /* StaticSingletonManager.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = StaticSingletonManager.cpp; path = folly/detail/StaticSingletonManager.cpp; sourceTree = "<group>"; }; + F78211D4FD23D27644E347F720DC8E1C /* ConsumerBase.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = ConsumerBase.cpp; path = rsocket/statemachine/ConsumerBase.cpp; sourceTree = "<group>"; }; + F78F110C5F8839D10F228F22B1E31F34 /* lossless_enc_mips32.c */ = {isa = PBXFileReference; includeInIndex = 1; name = lossless_enc_mips32.c; path = src/dsp/lossless_enc_mips32.c; sourceTree = "<group>"; }; + F790966EA07A4F943FA0BF5E98CF2091 /* SpookyHashV1.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SpookyHashV1.h; path = folly/hash/SpookyHashV1.h; sourceTree = "<group>"; }; + F7951274C6D29B36FF679B413B1225AF /* bignum-dtoa.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "bignum-dtoa.h"; path = "double-conversion/bignum-dtoa.h"; sourceTree = "<group>"; }; + F7952731325EA7F2FB0479BCE002FE43 /* RCTConvert+Text.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "RCTConvert+Text.h"; path = "Libraries/Text/RCTConvert+Text.h"; sourceTree = "<group>"; }; + F796CA545A9F9C266A8DE3AE34F32647 /* AsyncSocket.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = AsyncSocket.cpp; path = folly/io/async/AsyncSocket.cpp; sourceTree = "<group>"; }; + F7A2AF898F78167F67A4A2CA7158BD64 /* ms.lproj */ = {isa = PBXFileReference; includeInIndex = 1; name = ms.lproj; path = "Objective-C/TOCropViewController/Resources/ms.lproj"; sourceTree = "<group>"; }; + F7B50BECA858432EF418DD563163CAED /* Access.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Access.h; path = folly/container/Access.h; sourceTree = "<group>"; }; + F7B64BBF9802E85831BA749D87FEFBD1 /* OpenSSLVersionFinder.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = OpenSSLVersionFinder.h; path = folly/ssl/OpenSSLVersionFinder.h; sourceTree = "<group>"; }; + F7BF4B7C110C63EB758933D3B7253787 /* upsampling_sse41.c */ = {isa = PBXFileReference; includeInIndex = 1; name = upsampling_sse41.c; path = src/dsp/upsampling_sse41.c; sourceTree = "<group>"; }; + F7CD435CD4E46750DE4B82F5AF6B5B21 /* TcpConnectionFactory.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = TcpConnectionFactory.h; path = rsocket/transports/tcp/TcpConnectionFactory.h; sourceTree = "<group>"; }; + F7D383BE946449E81482E0C52DEEAA2E /* dynamic-inl.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "dynamic-inl.h"; path = "folly/dynamic-inl.h"; sourceTree = "<group>"; }; + F7DECC70BFE17F20696B8FCFB273831D /* GroupVarint.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = GroupVarint.cpp; path = folly/GroupVarint.cpp; sourceTree = "<group>"; }; + F7E5BFD9FD22173D1788D3711873E988 /* EXAVPlayerData.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = EXAVPlayerData.m; path = EXAV/EXAVPlayerData.m; sourceTree = "<group>"; }; + F807C0E0D9C1EFCFD738859E4A938A68 /* RCTLinkingPlugins.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTLinkingPlugins.h; path = Libraries/LinkingIOS/RCTLinkingPlugins.h; sourceTree = "<group>"; }; + F807E37EF0726DC1414E32115CFDCAD5 /* ThreadCachedInts.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ThreadCachedInts.h; path = folly/synchronization/detail/ThreadCachedInts.h; sourceTree = "<group>"; }; + F80E4469818647F9466CAF65D9F2EE98 /* RCTInspectorPackagerConnection.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTInspectorPackagerConnection.h; sourceTree = "<group>"; }; + F81D792404551EAA9DB06CC26DB66445 /* EXConstants-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "EXConstants-prefix.pch"; sourceTree = "<group>"; }; + F81F87B5004A289DBE4F4307E14A89A1 /* react-native-blur-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "react-native-blur-prefix.pch"; sourceTree = "<group>"; }; + F8204127A8D36C03965AACB99B22F7E2 /* RCTSafeAreaViewManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTSafeAreaViewManager.h; sourceTree = "<group>"; }; + F82646B926187FE9E372C29E964FB043 /* FIRCLSProfiling.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRCLSProfiling.h; path = Crashlytics/Crashlytics/Helpers/FIRCLSProfiling.h; sourceTree = "<group>"; }; + F830869A5BA9B0311FE238D8C392EEEC /* Likely.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Likely.h; path = folly/Likely.h; sourceTree = "<group>"; }; + F8322B9F6F3255F3B6086FC3492FACCF /* ThriftStreamShim.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ThriftStreamShim.h; path = yarpl/flowable/ThriftStreamShim.h; sourceTree = "<group>"; }; + F83BC6F24990629827A879FEB9557436 /* Bits.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Bits.h; path = folly/Bits.h; sourceTree = "<group>"; }; + F855D000A6931352CA53740EF0A8A551 /* NestedCommandLineApp.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = NestedCommandLineApp.h; path = folly/experimental/NestedCommandLineApp.h; sourceTree = "<group>"; }; + F8763C6057AB617F7452C58585044056 /* RNFBSharedUtils.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNFBSharedUtils.h; path = ios/RNFBApp/RNFBSharedUtils.h; sourceTree = "<group>"; }; + F88748E761D6697D9DD3CCA1F52FDE08 /* RCTSafeAreaView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTSafeAreaView.m; sourceTree = "<group>"; }; + F8A8F150C65DA05E27B5E645F96D3CA1 /* MallocImpl.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = MallocImpl.h; path = folly/memory/detail/MallocImpl.h; sourceTree = "<group>"; }; + F8B7D9FB748CD5154BCCBA62BCC0ED0F /* SKNamed.mm */ = {isa = PBXFileReference; includeInIndex = 1; name = SKNamed.mm; path = iOS/Plugins/FlipperKitLayoutPlugin/FlipperKitLayoutPlugin/SKNamed.mm; sourceTree = "<group>"; }; + F8D488C84A7D59AABCEB805B424A3232 /* UniqueInstance.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = UniqueInstance.h; path = folly/detail/UniqueInstance.h; sourceTree = "<group>"; }; + F8DEE4D76290DC1C1FDE7E486F7F1862 /* FIRCLSDataParsing.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRCLSDataParsing.h; path = Crashlytics/Crashlytics/Unwind/Dwarf/FIRCLSDataParsing.h; sourceTree = "<group>"; }; + F8E3759604A0E108F70FFC0CE8AA09E3 /* ChannelRequester.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ChannelRequester.h; path = rsocket/statemachine/ChannelRequester.h; sourceTree = "<group>"; }; + F93717F4C8C2112025E8814378E75D48 /* IPAddressV4.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = IPAddressV4.h; path = folly/IPAddressV4.h; sourceTree = "<group>"; }; F958876A082BF810B342435CE3FB5AF6 /* libRCTTypeSafety.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; name = libRCTTypeSafety.a; path = libRCTTypeSafety.a; sourceTree = BUILT_PRODUCTS_DIR; }; - F9590B544AC71E50DB3D4A1FD459091F /* AsyncSocketException.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = AsyncSocketException.cpp; path = folly/io/async/AsyncSocketException.cpp; sourceTree = "<group>"; }; - F96321D27807E501875E9B7AD050A2D2 /* GDTCORLifecycle.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = GDTCORLifecycle.m; path = GoogleDataTransport/GDTCORLibrary/GDTCORLifecycle.m; sourceTree = "<group>"; }; - F968A99F776F201893FF2E12F10DC872 /* MallctlHelper.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = MallctlHelper.h; path = folly/memory/MallctlHelper.h; sourceTree = "<group>"; }; - F969AB07C5F0F86647AD40EF77FD8A5B /* UMInternalModule.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = UMInternalModule.h; sourceTree = "<group>"; }; - F96EAFECE7254CF38639FE8E3ECF86BF /* RNCConnectionStateWatcher.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNCConnectionStateWatcher.m; path = ios/RNCConnectionStateWatcher.m; sourceTree = "<group>"; }; - F96FEC904C3C515E17B3C84FE3C2C8D5 /* RCTImageViewManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTImageViewManager.h; path = Libraries/Image/RCTImageViewManager.h; sourceTree = "<group>"; }; - F975E93D0FA1578E1A6F12A2B7879ABE /* README.md */ = {isa = PBXFileReference; includeInIndex = 1; path = README.md; sourceTree = "<group>"; }; - F9A922675A0AEE799DFC55AF54CD6D29 /* CancellationToken-inl.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "CancellationToken-inl.h"; path = "folly/CancellationToken-inl.h"; sourceTree = "<group>"; }; - F9AB6E248D04BFEA6DDB12144F24888A /* Ordering.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Ordering.h; path = folly/lang/Ordering.h; sourceTree = "<group>"; }; - F9AE333ECA95951FD8ED4424A16B3433 /* Retrying.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Retrying.h; path = folly/futures/Retrying.h; sourceTree = "<group>"; }; - F9AF0CE3E531CB7ECF512BA158A835A9 /* BugsnagPlugin.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BugsnagPlugin.h; sourceTree = "<group>"; }; - F9C5B792F5BED323EE2A3FD36FAE2E44 /* RCTStyleAnimatedNode.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTStyleAnimatedNode.h; sourceTree = "<group>"; }; - F9DD0BC61611D57C9D11D949E99F4721 /* RCTBridge+Private.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "RCTBridge+Private.h"; sourceTree = "<group>"; }; - F9EF06F5F49DEB53FEDFF233A23B10D5 /* GDTCORAssert.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = GDTCORAssert.h; path = GoogleDataTransport/GDTCORLibrary/Public/GDTCORAssert.h; sourceTree = "<group>"; }; - F9F717971EB4CADD925F4933F21D6A1B /* FIRCLSRecordIdentity.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRCLSRecordIdentity.m; path = Crashlytics/Crashlytics/Models/Record/FIRCLSRecordIdentity.m; sourceTree = "<group>"; }; - FA08E277E9507C2A0DA8E52FEC0EC8E5 /* RCT-Folly-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "RCT-Folly-prefix.pch"; sourceTree = "<group>"; }; - FA0A3AAE1D9214E3A5BF27D002C29A5E /* DistributedMutex-inl.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "DistributedMutex-inl.h"; path = "folly/synchronization/DistributedMutex-inl.h"; sourceTree = "<group>"; }; - FA187242EBEDD3399949F29771D88BC5 /* ReactNativeART.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = ReactNativeART.debug.xcconfig; sourceTree = "<group>"; }; - FA3D6C41645AC0376301D491D6A72F1B /* filters_msa.c */ = {isa = PBXFileReference; includeInIndex = 1; name = filters_msa.c; path = src/dsp/filters_msa.c; sourceTree = "<group>"; }; - FA40170E5CE0A56BEF48BE0B6D7955AA /* RCTModuleMethod.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTModuleMethod.mm; sourceTree = "<group>"; }; - FA45F4A628D2428B77D2FC2F4E4BD03F /* HazptrHolder.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = HazptrHolder.h; path = folly/synchronization/HazptrHolder.h; sourceTree = "<group>"; }; - FA5E26E72716FB2C14E4628E317D45D2 /* File.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = File.h; path = folly/File.h; sourceTree = "<group>"; }; - FA71C084C162276FBC53CF96C82956E1 /* RCTModuloAnimatedNode.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTModuloAnimatedNode.h; sourceTree = "<group>"; }; - FA78E89356894AB05B1E6C451A83D8CB /* InlineExecutor.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = InlineExecutor.h; path = folly/executors/InlineExecutor.h; sourceTree = "<group>"; }; - FA857FDABCDE1F76E178BF9A5E3828C2 /* EXAV.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = EXAV.m; path = EXAV/EXAV.m; sourceTree = "<group>"; }; - FA91F551FEA0B48AF49F7EDFF5C38E56 /* BSG_KSFileUtils.c */ = {isa = PBXFileReference; includeInIndex = 1; path = BSG_KSFileUtils.c; sourceTree = "<group>"; }; - FAC851118E62DB911AC0EB77960EE97A /* TurboModule.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = TurboModule.h; sourceTree = "<group>"; }; - FAC8A167DF1A7C0901FE50F1DE77AB71 /* RCTConvertHelpers.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTConvertHelpers.mm; sourceTree = "<group>"; }; - FAD7A3F2CAE2409B8C2A9B0EE30BF275 /* RSocketServer.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RSocketServer.h; path = rsocket/RSocketServer.h; sourceTree = "<group>"; }; - FAD97A42DFA849596624DD41A3ACE426 /* GDTCORTransport.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = GDTCORTransport.h; path = GoogleDataTransport/GDTCORLibrary/Public/GDTCORTransport.h; sourceTree = "<group>"; }; - FAE388C4C377F211302B9CBF05455030 /* Arena-inl.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "Arena-inl.h"; path = "folly/memory/Arena-inl.h"; sourceTree = "<group>"; }; - FAFCCD7B99AE6159D261163AC8C4ABBF /* File.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = File.cpp; path = folly/File.cpp; sourceTree = "<group>"; }; - FB13979D42C83C133B136F38E22E8680 /* LongLivedObject.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = LongLivedObject.h; sourceTree = "<group>"; }; - FB1C906AA0D780C3960F0FCABF91285B /* TOCropViewController.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = TOCropViewController.m; path = "Objective-C/TOCropViewController/TOCropViewController.m"; sourceTree = "<group>"; }; - FB1CD31848D10613306C97D58F26A6AC /* SKNodeDescriptor.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SKNodeDescriptor.h; path = iOS/Plugins/FlipperKitLayoutPlugin/FlipperKitLayoutPlugin/SKNodeDescriptor.h; sourceTree = "<group>"; }; - FB382A9A31F060BB77B2CC16756C177A /* RNImageCropPicker-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "RNImageCropPicker-prefix.pch"; sourceTree = "<group>"; }; - FB39E988EB8A89967A85BB29D55C89AE /* UMTaskServiceInterface.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = UMTaskServiceInterface.h; path = UMTaskManagerInterface/UMTaskServiceInterface.h; sourceTree = "<group>"; }; - FB4559CDF57FC81DD76DA71C08892047 /* ResumeIdentificationToken.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ResumeIdentificationToken.h; path = rsocket/framing/ResumeIdentificationToken.h; sourceTree = "<group>"; }; - FB66E981678899432AAEE22D2D1F4B7F /* RCTSurfaceHostingProxyRootView.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTSurfaceHostingProxyRootView.mm; sourceTree = "<group>"; }; + F95C9E4B25916C939ACD2E44B12E6DA9 /* RNCMaskedView.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = RNCMaskedView.release.xcconfig; sourceTree = "<group>"; }; + F95D3E752D3BEF5CD0C2D28305CBD55F /* BugsnagClient.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = BugsnagClient.m; sourceTree = "<group>"; }; + F97078FCF30CC35CA7715F874B527C7D /* FIRCLSNetworkResponseHandler.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRCLSNetworkResponseHandler.m; path = Crashlytics/Shared/FIRCLSNetworking/FIRCLSNetworkResponseHandler.m; sourceTree = "<group>"; }; + F972FAB223630D4E75FE516B0E56C049 /* EXSessionTaskDispatcher.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = EXSessionTaskDispatcher.m; sourceTree = "<group>"; }; + F98D6C96EA26524A9155DD361F636BAE /* RCTDevMenu.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTDevMenu.mm; sourceTree = "<group>"; }; + F98E3134D65976FD9479A6B6092A7F53 /* Conv.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Conv.h; path = folly/chrono/Conv.h; sourceTree = "<group>"; }; + F9A13D88A9905A8A572B112E6BCB497F /* JemallocHugePageAllocator.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = JemallocHugePageAllocator.h; path = folly/experimental/JemallocHugePageAllocator.h; sourceTree = "<group>"; }; + F9A5A788558F16AB89DABAAD5E24AB48 /* TimeoutManager.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = TimeoutManager.cpp; path = folly/io/async/TimeoutManager.cpp; sourceTree = "<group>"; }; + F9A6B702F8965CEB6A5B1066209C51EB /* RCTSinglelineTextInputViewManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTSinglelineTextInputViewManager.m; sourceTree = "<group>"; }; + F9B1811BDCE0BB5B628B719B86B94774 /* libwebp.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = libwebp.release.xcconfig; sourceTree = "<group>"; }; + F9B9B7A1BC468EDEA5B4AAEB6BE0EF96 /* MRCCanary.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = MRCCanary.m; sourceTree = "<group>"; }; + F9BDCF485B7E596A53C18814ABABD023 /* RCTCxxMethod.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTCxxMethod.mm; sourceTree = "<group>"; }; + F9C5E346AB4ED6F02FF894D0747C22DC /* IPAddress.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = IPAddress.cpp; path = folly/IPAddress.cpp; sourceTree = "<group>"; }; + F9C7F6857302085BBF86C401C4DE192B /* ModuleRegistry.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = ModuleRegistry.h; sourceTree = "<group>"; }; + F9CC0145BE94C17477E376B71955FD47 /* lossless.c */ = {isa = PBXFileReference; includeInIndex = 1; name = lossless.c; path = src/dsp/lossless.c; sourceTree = "<group>"; }; + F9ED10D80DF2DA2F2304FC06E4CE1CE7 /* SDImageCoderHelper.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = SDImageCoderHelper.m; path = SDWebImage/Core/SDImageCoderHelper.m; sourceTree = "<group>"; }; + F9F69C168B48BE3FC825F189D5FF08C8 /* F14Table.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = F14Table.cpp; path = folly/container/detail/F14Table.cpp; sourceTree = "<group>"; }; + F9FD59B33C4ADE83A2C7E66A89D544B6 /* FIRInstallationsIIDTokenStore.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRInstallationsIIDTokenStore.m; path = FirebaseInstallations/Source/Library/IIDMigration/FIRInstallationsIIDTokenStore.m; sourceTree = "<group>"; }; + FA0893D5CF2FA5B4FB0B667DC3784E3A /* RNSScreenStack.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNSScreenStack.m; path = ios/RNSScreenStack.m; sourceTree = "<group>"; }; + FA0D821FA03BC48C93913B32C2B3192E /* Bits.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Bits.h; path = folly/lang/Bits.h; sourceTree = "<group>"; }; + FA122F1129D1B618CC5406E1B8773EDC /* react-native-mmkv-storage-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "react-native-mmkv-storage-dummy.m"; sourceTree = "<group>"; }; + FA244FC87045F1DBCFA197A0DD24F855 /* UMNativeModulesProxy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = UMNativeModulesProxy.m; sourceTree = "<group>"; }; + FA2A16557EF2B0E6EC764CECF527E094 /* FIRInstallationsErrors.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRInstallationsErrors.h; path = FirebaseInstallations/Source/Library/Public/FirebaseInstallations/FIRInstallationsErrors.h; sourceTree = "<group>"; }; + FA3A2828981CEC4C13EE039427DF4D9A /* RCT-Folly-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "RCT-Folly-dummy.m"; sourceTree = "<group>"; }; + FA51FDC1C5DBFB8A0B7A7E4D4B1174FC /* bufferevent_filter.c */ = {isa = PBXFileReference; includeInIndex = 1; path = bufferevent_filter.c; sourceTree = "<group>"; }; + FA7AD3865FCF52F38470178B0BCF4D69 /* LNInterpolable.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = LNInterpolable.m; sourceTree = "<group>"; }; + FA939D9AE922CBBBC7FBEEA4A895C80B /* RNGestureHandlerEvents.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNGestureHandlerEvents.h; path = ios/RNGestureHandlerEvents.h; sourceTree = "<group>"; }; + FA97666CA17482324C214BB3294E7B2E /* EXAV.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = EXAV.debug.xcconfig; sourceTree = "<group>"; }; + FA97894334A6A43BE3607D30566772DD /* UMFileSystemInterface.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = UMFileSystemInterface.h; path = UMFileSystemInterface/UMFileSystemInterface.h; sourceTree = "<group>"; }; + FACACF017AF83855282D16388F775642 /* ARTRadialGradient.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = ARTRadialGradient.m; sourceTree = "<group>"; }; + FACDCD7C43F82CBE335AA610A4018F7E /* RSocketResponder.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RSocketResponder.h; path = rsocket/RSocketResponder.h; sourceTree = "<group>"; }; + FAE4BA9A297C48914F2924C957B6FC44 /* SysFile.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SysFile.h; path = folly/portability/SysFile.h; sourceTree = "<group>"; }; + FAE9B69DE4B59C9CA70E3401E52C5A27 /* RecoverableError.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RecoverableError.h; sourceTree = "<group>"; }; + FAF3F09255F1D2DE831CECC41208BD08 /* RSocketServiceHandler.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RSocketServiceHandler.h; path = rsocket/RSocketServiceHandler.h; sourceTree = "<group>"; }; + FAF4A076B4FBC752545689903A594249 /* SwappableEventBase.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SwappableEventBase.h; path = rsocket/internal/SwappableEventBase.h; sourceTree = "<group>"; }; + FAFB7932D5F408B3087EE89AED92665A /* FIRApp.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRApp.h; path = FirebaseCore/Sources/Public/FirebaseCore/FIRApp.h; sourceTree = "<group>"; }; + FAFFBB3139BD45FA9CD0F1222555298C /* UMViewManagerAdapter.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = UMViewManagerAdapter.h; sourceTree = "<group>"; }; + FB04F3FFD2C843D7565D520D56347E1F /* ConnectionContextStore.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = ConnectionContextStore.cpp; path = xplat/Flipper/ConnectionContextStore.cpp; sourceTree = "<group>"; }; + FB11CDFCB970930C223AB157A8D8800A /* RCTAlertController.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTAlertController.m; sourceTree = "<group>"; }; + FB14AA75D6F8B12713B65C3C0B23991F /* cached-powers.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "cached-powers.h"; path = "double-conversion/cached-powers.h"; sourceTree = "<group>"; }; + FB2D97A9D8323E2DB472D501306E8578 /* Future.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = Future.cpp; path = folly/futures/Future.cpp; sourceTree = "<group>"; }; + FB2EB556BBFFC3DD8CF36FA741D0E7FE /* EnvironmentUtil.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = EnvironmentUtil.m; path = ios/RNDeviceInfo/EnvironmentUtil.m; sourceTree = "<group>"; }; + FB3A4704A9E6F6AA1163764FCF24B35F /* EXHaptics-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "EXHaptics-prefix.pch"; sourceTree = "<group>"; }; + FB4609297D7EBEB33A1DEBB6B4C9DBC6 /* GDTCORPlatform.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = GDTCORPlatform.h; path = GoogleDataTransport/GDTCORLibrary/Public/GoogleDataTransport/GDTCORPlatform.h; sourceTree = "<group>"; }; FB6FAD8F0183E86ACBFBD8A81BA7BF3A /* liblibevent.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; name = liblibevent.a; path = liblibevent.a; sourceTree = BUILT_PRODUCTS_DIR; }; - FB71298544C4A579C35EA82025B38F9A /* React-jsi.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "React-jsi.debug.xcconfig"; sourceTree = "<group>"; }; - FB93C116608C7D0893D4BF7038D99D1F /* FIRCLSNetworkClient.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRCLSNetworkClient.h; path = Crashlytics/Crashlytics/Controllers/FIRCLSNetworkClient.h; sourceTree = "<group>"; }; - FBB320002E181B764E4B39247F2C49AA /* Executor.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Executor.h; path = folly/Executor.h; sourceTree = "<group>"; }; - FBCB658A9A1C862C5CC585CCE43230B6 /* RNGestureHandlerModule.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNGestureHandlerModule.h; path = ios/RNGestureHandlerModule.h; sourceTree = "<group>"; }; - FBCC9D8F5D3463434F12152F53AD744A /* RNPinchHandler.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RNPinchHandler.m; sourceTree = "<group>"; }; - FBD206A4E40645F8B1B0CA79E1EBD3D2 /* UMEventEmitterService.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = UMEventEmitterService.h; sourceTree = "<group>"; }; - FBD63547CE6A0E4EBC76D27EBE26B64E /* MessageTypes.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; path = MessageTypes.cpp; sourceTree = "<group>"; }; - FBD951D0B0CC459A4AC6A1C86491F255 /* CocoaAsyncSocket-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "CocoaAsyncSocket-prefix.pch"; sourceTree = "<group>"; }; - FBEBC8AE4B5592403820E4F187C46A48 /* SKViewDescriptor.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SKViewDescriptor.h; path = iOS/Plugins/FlipperKitLayoutPlugin/FlipperKitLayoutPlugin/descriptors/SKViewDescriptor.h; sourceTree = "<group>"; }; - FC1BC417DD12AC349999A332965BBB26 /* react-native-document-picker.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = "react-native-document-picker.podspec"; sourceTree = "<group>"; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; - FC3B2F6648E4E990484D03409B3C47C2 /* UMModuleRegistryProvider.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = UMModuleRegistryProvider.m; sourceTree = "<group>"; }; - FC3C2EC41A218DD33B6276EB82F35EF5 /* Executor.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = Executor.cpp; path = folly/Executor.cpp; sourceTree = "<group>"; }; - FC6D40DB7C45B03A921125161D7D475E /* FIRCoreDiagnosticsData.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRCoreDiagnosticsData.h; path = Interop/CoreDiagnostics/Public/FIRCoreDiagnosticsData.h; sourceTree = "<group>"; }; - FC74A77541F9CFAEA3B265B8EBB9F649 /* RCTHTTPRequestHandler.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTHTTPRequestHandler.h; path = Libraries/Network/RCTHTTPRequestHandler.h; sourceTree = "<group>"; }; - FC77D4B7D9EDE13C7061E4AD80EBDD69 /* SDWebImageOperation.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SDWebImageOperation.h; path = SDWebImage/Core/SDWebImageOperation.h; sourceTree = "<group>"; }; - FC7E6596644453D30491DBA091AAF494 /* FIRCLSMachException.c */ = {isa = PBXFileReference; includeInIndex = 1; name = FIRCLSMachException.c; path = Crashlytics/Crashlytics/Handlers/FIRCLSMachException.c; sourceTree = "<group>"; }; - FC83FB36E6881FC37B06AB32B3F37279 /* BSG_KSMach.c */ = {isa = PBXFileReference; includeInIndex = 1; path = BSG_KSMach.c; sourceTree = "<group>"; }; - FC882B53AD9232AB35FE1978D55A730F /* SDWebImageWebPCoder-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "SDWebImageWebPCoder-dummy.m"; sourceTree = "<group>"; }; - FCA58601E5C7F004185388335C86AF23 /* RNCSafeAreaShadowView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNCSafeAreaShadowView.m; path = ios/SafeAreaView/RNCSafeAreaShadowView.m; sourceTree = "<group>"; }; - FCAF45D355DD370C372A77984C10FA2C /* RCTSwitch.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTSwitch.m; sourceTree = "<group>"; }; - FCB7E3B5334ABF28474FCC48E3B1C68D /* FlipperClient.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FlipperClient.h; path = xplat/Flipper/FlipperClient.h; sourceTree = "<group>"; }; - FCB95C6F1EA0545E85DE1112C478B3C7 /* RCTDiffClampAnimatedNode.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTDiffClampAnimatedNode.h; sourceTree = "<group>"; }; - FCE82986B8F4C7BF2E760101EF43B205 /* Yoga-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "Yoga-prefix.pch"; sourceTree = "<group>"; }; + FB7B707D73A96256AFB6C94EA4476430 /* BugsnagAppWithState.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = BugsnagAppWithState.m; sourceTree = "<group>"; }; + FB7EB5CD5B565A806FD653ED1798BF12 /* SDAnimatedImage.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = SDAnimatedImage.m; path = SDWebImage/Core/SDAnimatedImage.m; sourceTree = "<group>"; }; + FB819972EAF59971982DDB28824F9E13 /* Flipper-PeerTalk-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "Flipper-PeerTalk-prefix.pch"; sourceTree = "<group>"; }; + FB89335A51E5ED3CA6083050F7673144 /* RNGestureHandlerModule.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNGestureHandlerModule.h; path = ios/RNGestureHandlerModule.h; sourceTree = "<group>"; }; + FB95C4A95B0A1FA29CF82699CDF9CFBD /* quant_levels_utils.c */ = {isa = PBXFileReference; includeInIndex = 1; name = quant_levels_utils.c; path = src/utils/quant_levels_utils.c; sourceTree = "<group>"; }; + FBAA7D070E6470295A9B6E90BB3291FE /* ru.lproj */ = {isa = PBXFileReference; includeInIndex = 1; name = ru.lproj; path = "Objective-C/TOCropViewController/Resources/ru.lproj"; sourceTree = "<group>"; }; + FBAB66AAE91AB16AB82AFE713AD34805 /* Hmac.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = Hmac.h; sourceTree = "<group>"; }; + FBB7125ADFCF78448D0F36274B52C84F /* FIRCLSUnwind_x86.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRCLSUnwind_x86.h; path = Crashlytics/Crashlytics/Unwind/FIRCLSUnwind_x86.h; sourceTree = "<group>"; }; + FBC504EDF59DE9270074FE8270F0E12D /* README.md */ = {isa = PBXFileReference; includeInIndex = 1; path = README.md; sourceTree = "<group>"; }; + FBD0EFB0FDFF95518D453A7BFB2EBC0B /* MallctlHelper.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = MallctlHelper.h; path = folly/memory/MallctlHelper.h; sourceTree = "<group>"; }; + FBD7EC5C4E9BF5E79948261B286C57ED /* RNCAsyncStorage.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = RNCAsyncStorage.debug.xcconfig; sourceTree = "<group>"; }; + FBEC5B8A9770701E345EA771EFD754F3 /* RCTUtils.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTUtils.h; sourceTree = "<group>"; }; + FC01F4B39879A2480D4B6028DAE81BF3 /* AtomicUnorderedMap.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = AtomicUnorderedMap.h; path = folly/AtomicUnorderedMap.h; sourceTree = "<group>"; }; + FC058A64BDCD34CD6DF5447D0622A941 /* ThreadPoolExecutor.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ThreadPoolExecutor.h; path = folly/executors/ThreadPoolExecutor.h; sourceTree = "<group>"; }; + FC0651B5DCD007381B23EF3578D73D62 /* SDWebImage-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "SDWebImage-prefix.pch"; sourceTree = "<group>"; }; + FC0F3870E08ADD6FFC9474C9A9AAAEA8 /* TOActivityCroppedImageProvider.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = TOActivityCroppedImageProvider.m; path = "Objective-C/TOCropViewController/Models/TOActivityCroppedImageProvider.m"; sourceTree = "<group>"; }; + FC135A6F68C0A8FBC3B924A43F41306C /* CoreModulesPlugins.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = CoreModulesPlugins.mm; sourceTree = "<group>"; }; + FC26680BEC1F8F093322A2729CF67C77 /* FIRCLSCompactUnwind.c */ = {isa = PBXFileReference; includeInIndex = 1; name = FIRCLSCompactUnwind.c; path = Crashlytics/Crashlytics/Unwind/Compact/FIRCLSCompactUnwind.c; sourceTree = "<group>"; }; + FC373A9DC58CB1F490B80E66B9FE52B1 /* CancellationToken-inl.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "CancellationToken-inl.h"; path = "folly/CancellationToken-inl.h"; sourceTree = "<group>"; }; + FC3CD7EE8F9F382FE5C059AC57B6FAD6 /* FIRInstallationsIDController.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRInstallationsIDController.m; path = FirebaseInstallations/Source/Library/InstallationsIDController/FIRInstallationsIDController.m; sourceTree = "<group>"; }; + FC4AC844AE90D8511B58A8E5F8CCFBC7 /* PBUtility.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = PBUtility.cpp; path = Core/PBUtility.cpp; sourceTree = "<group>"; }; + FC4CF500185FA215AC755932557D573A /* openssl_arm_arch.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = openssl_arm_arch.h; path = Core/aes/openssl/openssl_arm_arch.h; sourceTree = "<group>"; }; + FC5D23D66F64DE6257A71A7A948016FC /* demux.c */ = {isa = PBXFileReference; includeInIndex = 1; name = demux.c; path = src/demux/demux.c; sourceTree = "<group>"; }; + FC69A1F119262FD7AFCB5A910A990A41 /* GCDAsyncUdpSocket.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = GCDAsyncUdpSocket.m; path = Source/GCD/GCDAsyncUdpSocket.m; sourceTree = "<group>"; }; + FC766911E19B3B3A13737CDCDCA2B610 /* jsilib-posix.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; path = "jsilib-posix.cpp"; sourceTree = "<group>"; }; + FC7BA2995D23707B039023ED3FBD9309 /* RCTConvert.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTConvert.m; sourceTree = "<group>"; }; + FC7C8C95530C3414B1CCCB71B37AB0B6 /* ProxyLockable.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ProxyLockable.h; path = folly/synchronization/detail/ProxyLockable.h; sourceTree = "<group>"; }; + FC85D8AF9D1575904B9685DF53D41DB5 /* HardwareConcurrency.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = HardwareConcurrency.cpp; path = folly/system/HardwareConcurrency.cpp; sourceTree = "<group>"; }; + FCA38B1F87AE7FB2F491C9B71303C3CB /* RCTAnimatedNode.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTAnimatedNode.h; sourceTree = "<group>"; }; + FCB4E3FE7B23D24CC3159DAFBA8933D4 /* ParallelMap.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ParallelMap.h; path = folly/gen/ParallelMap.h; sourceTree = "<group>"; }; + FCB73DFE3703A1630BF94739756D7E43 /* GULAppEnvironmentUtil.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = GULAppEnvironmentUtil.m; path = GoogleUtilities/Environment/third_party/GULAppEnvironmentUtil.m; sourceTree = "<group>"; }; FCF61D9B2B75054A9A3185DDC609B7FF /* libSDWebImageWebPCoder.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; name = libSDWebImageWebPCoder.a; path = libSDWebImageWebPCoder.a; sourceTree = BUILT_PRODUCTS_DIR; }; - FD028CB98C9F9EFDFAFBE551B94565B8 /* RCTBackedTextInputDelegate.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTBackedTextInputDelegate.h; sourceTree = "<group>"; }; - FD05E41D3DBD6CEB5FA70823CF4C4329 /* FBLPromise+Any.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "FBLPromise+Any.m"; path = "Sources/FBLPromises/FBLPromise+Any.m"; sourceTree = "<group>"; }; - FD082006079338D62D08663C33A48A59 /* BugsnagDevice+Private.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "BugsnagDevice+Private.h"; sourceTree = "<group>"; }; - FD122D95D3FA4E6535A1CA894145D057 /* RNFBApp-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "RNFBApp-dummy.m"; sourceTree = "<group>"; }; - FD1931A7004B7A0B8E31C246FAE641BB /* FIRCLSDwarfExpressionMachine.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRCLSDwarfExpressionMachine.h; path = Crashlytics/Crashlytics/Unwind/Dwarf/FIRCLSDwarfExpressionMachine.h; sourceTree = "<group>"; }; - FD1A4FB0F4464BD1370B5260F737A4F1 /* ieee.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ieee.h; path = "double-conversion/ieee.h"; sourceTree = "<group>"; }; - FD2A557AEB83B8CC073A1184AB31527D /* nanopb.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = nanopb.release.xcconfig; sourceTree = "<group>"; }; - FD35FC9A29C7C86E783D3C8A3A0DEF3A /* ConnectionContextStore.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ConnectionContextStore.h; path = xplat/Flipper/ConnectionContextStore.h; sourceTree = "<group>"; }; - FD3B4717E08D79F7EEEE2083AA6BD770 /* SDAsyncBlockOperation.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = SDAsyncBlockOperation.m; path = SDWebImage/Private/SDAsyncBlockOperation.m; sourceTree = "<group>"; }; - FD6C8D5A0B4CCBA5486FD113C97A9D07 /* Invoke.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Invoke.h; path = folly/functional/Invoke.h; sourceTree = "<group>"; }; - FD7CEB9400B120D3967B693B0B157334 /* LockTraits.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = LockTraits.h; path = folly/LockTraits.h; sourceTree = "<group>"; }; - FD939B493E1F5FBBC1297B44B2E9A962 /* ExceptionWrapper-inl.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "ExceptionWrapper-inl.h"; path = "folly/ExceptionWrapper-inl.h"; sourceTree = "<group>"; }; - FD9EDEDEF1E88E6DCEF209BD0AF2F483 /* TimedDrivableExecutor.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = TimedDrivableExecutor.h; path = folly/executors/TimedDrivableExecutor.h; sourceTree = "<group>"; }; - FDBD0C57A0C9A4AFF777B7532C045201 /* UMConstantsInterface.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = UMConstantsInterface.podspec; sourceTree = "<group>"; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; - FDCC2F6EA2E74361965F0588E6B7717B /* Foreach.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Foreach.h; path = folly/container/Foreach.h; sourceTree = "<group>"; }; - FDD204D61CE2D011A95FD93EAA25308B /* React-RCTVibration-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "React-RCTVibration-prefix.pch"; sourceTree = "<group>"; }; - FDD2686C962849789E028510F6F2B0A6 /* EXFileSystem.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = EXFileSystem.m; path = EXFileSystem/EXFileSystem.m; sourceTree = "<group>"; }; - FDDAAF3643795C5D07BFB71694E8382D /* Sockets.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = Sockets.cpp; path = folly/portability/Sockets.cpp; sourceTree = "<group>"; }; - FE0A9EDABB70F6E69735C65E4CB586B9 /* rescaler_mips32.c */ = {isa = PBXFileReference; includeInIndex = 1; name = rescaler_mips32.c; path = src/dsp/rescaler_mips32.c; sourceTree = "<group>"; }; - FE11B48849D25AB2247070F9E98D8372 /* RCTTextShadowView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTTextShadowView.m; sourceTree = "<group>"; }; + FD0FDF2E56B08BF4D8E5232371099E8A /* IStream.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = IStream.h; path = folly/gen/IStream.h; sourceTree = "<group>"; }; + FD3A0B4E8CF1B34B3A4E43A21FE9BAD7 /* BlockingQueue.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = BlockingQueue.h; path = folly/executors/task_queue/BlockingQueue.h; sourceTree = "<group>"; }; + FD3C35BB97BAAAF9FE98796360FAB900 /* yuv_mips_dsp_r2.c */ = {isa = PBXFileReference; includeInIndex = 1; name = yuv_mips_dsp_r2.c; path = src/dsp/yuv_mips_dsp_r2.c; sourceTree = "<group>"; }; + FD42AC801A0BDE146CA859C569E48C87 /* glog.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = glog.debug.xcconfig; sourceTree = "<group>"; }; + FD461EE59FE4B4B89FF3F7146CEB210A /* RemoteObjectsTable.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RemoteObjectsTable.h; sourceTree = "<group>"; }; + FD4F74679C5E74C71997193C5A3D3FFC /* SlowFingerprint.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SlowFingerprint.h; path = folly/detail/SlowFingerprint.h; sourceTree = "<group>"; }; + FD57249DC6AFC9BAEFDF3786523C45EE /* RNPanHandler.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RNPanHandler.m; sourceTree = "<group>"; }; + FD6AD5CC1AF9CA60CC2D7A509818482A /* jsi-inl.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "jsi-inl.h"; path = "destroot/include/jsi/jsi-inl.h"; sourceTree = "<group>"; }; + FD743512C597807DC9CB219BC47D7BFA /* 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 = "<group>"; }; + FD912543F94EC5B502AF5271B7F33F57 /* RCTDevLoadingView.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTDevLoadingView.mm; sourceTree = "<group>"; }; + FD966F6723FEA70CB4896D68ECDDA8B5 /* utilities.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = utilities.cc; path = src/utilities.cc; sourceTree = "<group>"; }; + FDD3541856E2E010A9D6F44CF49EDA9E /* UMPermissionsInterface.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = UMPermissionsInterface.h; path = UMPermissionsInterface/UMPermissionsInterface.h; sourceTree = "<group>"; }; + FDD67C7EDC8BEC5BC16D4AA698E30017 /* GDTCORLifecycle.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = GDTCORLifecycle.h; path = GoogleDataTransport/GDTCORLibrary/Public/GoogleDataTransport/GDTCORLifecycle.h; sourceTree = "<group>"; }; + FDDBDE0E313FFFD31702308B3825DA1B /* Checksum.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = Checksum.cpp; path = folly/hash/Checksum.cpp; sourceTree = "<group>"; }; + FDDEA29E2F8A04B854CA85687AF9F8C7 /* BugsnagDeviceWithState.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BugsnagDeviceWithState.h; sourceTree = "<group>"; }; + FDE0DDE655FE59C18B987D220FCBF80E /* RCTReloadCommand.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTReloadCommand.m; sourceTree = "<group>"; }; + FDFCD3E6441FC713AC2E8D93658F0058 /* Future-pre.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "Future-pre.h"; path = "folly/futures/Future-pre.h"; sourceTree = "<group>"; }; + FE0CEE3875F4D526EEDF6C494EE9B551 /* FIRComponent.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRComponent.h; path = FirebaseCore/Sources/Private/FIRComponent.h; sourceTree = "<group>"; }; + FE1CBD37357CD9E7632A37818BB633A1 /* ConcurrentHashMap.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ConcurrentHashMap.h; path = folly/concurrency/ConcurrentHashMap.h; sourceTree = "<group>"; }; FE1E812071397E31AE21DFF368B781B1 /* TOCropViewControllerBundle.bundle */ = {isa = PBXFileReference; explicitFileType = wrapper.cfbundle; includeInIndex = 0; name = TOCropViewControllerBundle.bundle; path = "TOCropViewController-TOCropViewControllerBundle.bundle"; sourceTree = BUILT_PRODUCTS_DIR; }; - FE2D8D8C28338380E5C7F236E7D59928 /* fa.lproj */ = {isa = PBXFileReference; includeInIndex = 1; name = fa.lproj; path = "Objective-C/TOCropViewController/Resources/fa.lproj"; sourceTree = "<group>"; }; - FE3BF3728F1CB1F893F7BFC06E6505EC /* RNNativeViewHandler.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RNNativeViewHandler.h; sourceTree = "<group>"; }; - FE5C2E5ECE500F046DDAEFBB1AA82A09 /* Sockets.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Sockets.h; path = folly/portability/Sockets.h; sourceTree = "<group>"; }; + FE2CF4FF67D880518972632AA0B80CE8 /* FarmHash.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FarmHash.h; path = folly/hash/FarmHash.h; sourceTree = "<group>"; }; + FE42936A36A0F14375B8229211963068 /* json.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = json.h; path = folly/json.h; sourceTree = "<group>"; }; FE6D792B6328AAF68E46924D7F466631 /* AccessibilityResources.bundle */ = {isa = PBXFileReference; explicitFileType = wrapper.cfbundle; includeInIndex = 0; name = AccessibilityResources.bundle; path = "React-Core-AccessibilityResources.bundle"; sourceTree = BUILT_PRODUCTS_DIR; }; + FE71AB6ACE29182C54F48975A052D5FA /* Cursor.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Cursor.h; path = folly/io/Cursor.h; sourceTree = "<group>"; }; + FE7517475BAFEC22D43CB0FCFF157263 /* MapUtil.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = MapUtil.h; path = folly/MapUtil.h; sourceTree = "<group>"; }; FE7B9294FF05AAFD1653E2104E10844A /* libReact-RCTAnimation.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; name = "libReact-RCTAnimation.a"; path = "libReact-RCTAnimation.a"; sourceTree = BUILT_PRODUCTS_DIR; }; - FE8D16AF667A7D8A41E9D13981967F3B /* FIRCLSSymbolResolver.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRCLSSymbolResolver.m; path = Crashlytics/Crashlytics/Models/FIRCLSSymbolResolver.m; sourceTree = "<group>"; }; - FEC8FE60ECAE340F1C62F76ABB5097D5 /* SDWebImageDownloaderOperation.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SDWebImageDownloaderOperation.h; path = SDWebImage/Core/SDWebImageDownloaderOperation.h; sourceTree = "<group>"; }; - FECF06704C4BCA91C6A43790DEB6D35C /* RNFBApp.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = RNFBApp.release.xcconfig; sourceTree = "<group>"; }; - FED12E0BDD67E0F93E53BEFCF504D270 /* MemoryIdler.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = MemoryIdler.cpp; path = folly/detail/MemoryIdler.cpp; sourceTree = "<group>"; }; - FEDED317099F2F9D101BBB2B59B5DC84 /* 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 = "<group>"; }; - FEEA2711BAA6C175F6373B87C94FEA5C /* Sse.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Sse.h; path = folly/detail/Sse.h; sourceTree = "<group>"; }; - FF00494CCECEB92C703520915AF2DF03 /* RSocketClient.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = RSocketClient.cpp; path = rsocket/RSocketClient.cpp; sourceTree = "<group>"; }; - FF1278116DDF6E31C0A121D313ECD61B /* SysMembarrier.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = SysMembarrier.cpp; path = folly/portability/SysMembarrier.cpp; sourceTree = "<group>"; }; - FF1E5960C85CE08107861C1055BE68B1 /* FIRCLSdSYM.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRCLSdSYM.h; path = Crashlytics/Shared/FIRCLSMachO/FIRCLSdSYM.h; sourceTree = "<group>"; }; - FF259A97C6851A6DFEA8E80CC64AAE13 /* IndexedMemPool.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = IndexedMemPool.h; path = folly/IndexedMemPool.h; sourceTree = "<group>"; }; - FF4A69A3C859B09ABE519C0CD4F41FC9 /* SocketFastOpen.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = SocketFastOpen.cpp; path = folly/detail/SocketFastOpen.cpp; sourceTree = "<group>"; }; - FF4FBD82B67BC08F0D6292D2D201F97D /* BugsnagHandledState.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BugsnagHandledState.h; sourceTree = "<group>"; }; - FF502F3EBDB9A79E6731736B20C705A2 /* Poly.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Poly.h; path = folly/Poly.h; sourceTree = "<group>"; }; - FF6809C3B5759B98830548E16DE1858D /* SharedMutex.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SharedMutex.h; path = folly/SharedMutex.h; sourceTree = "<group>"; }; - FF6856A70766A3EF1370F83A8EB1690C /* EventBaseBackendBase.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = EventBaseBackendBase.cpp; path = folly/io/async/EventBaseBackendBase.cpp; sourceTree = "<group>"; }; - FF6FDC0558CA5B4149283A7623418B24 /* SKInvalidation.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SKInvalidation.h; path = iOS/Plugins/FlipperKitLayoutPlugin/FlipperKitLayoutPlugin/SKInvalidation.h; sourceTree = "<group>"; }; - FF9B1705147C4A4C0497F3D38501F86C /* UMReactFontManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = UMReactFontManager.h; sourceTree = "<group>"; }; - FF9C3D5930CF0F4DF3E43D8EC1FD1858 /* Hmac.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = Hmac.m; sourceTree = "<group>"; }; - FFA8920602E194F719FDBCD36097B350 /* TOCropViewController.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = TOCropViewController.release.xcconfig; sourceTree = "<group>"; }; - FFCE347A1CEBBD0FA95EFF4E15B38328 /* RCT-Folly.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "RCT-Folly.release.xcconfig"; sourceTree = "<group>"; }; - FFD1CAE105527CF63F11A820AD292567 /* GDTCORRegistrar.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = GDTCORRegistrar.h; path = GoogleDataTransport/GDTCORLibrary/Public/GDTCORRegistrar.h; sourceTree = "<group>"; }; - FFDB251CDA064A494DD8DE2607DC5A3A /* FIRComponent.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRComponent.h; path = FirebaseCore/Sources/Private/FIRComponent.h; sourceTree = "<group>"; }; - FFDB7FAA8CFF007C8D2DBF497D5F7D2C /* FIRCLSMachO.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRCLSMachO.h; path = Crashlytics/Shared/FIRCLSMachO/FIRCLSMachO.h; sourceTree = "<group>"; }; + FE83732058AC5994FE21C50230D73E66 /* SDGraphicsImageRenderer.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SDGraphicsImageRenderer.h; path = SDWebImage/Core/SDGraphicsImageRenderer.h; sourceTree = "<group>"; }; + FE97BFFD142F98C3E36949A71B50973D /* Sha.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = Sha.h; sourceTree = "<group>"; }; + FE9F5E6B24E19D35FC23321AD7A27911 /* UMAppLoader-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "UMAppLoader-prefix.pch"; sourceTree = "<group>"; }; + FEBBB2E7EFEFC0EB23B93C4B0C023DAA /* Demangle.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = Demangle.cpp; path = folly/Demangle.cpp; sourceTree = "<group>"; }; + FEC8FDF81B3041D687AC472ECE166DC3 /* RCTCustomKeyboardViewControllerTemp.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTCustomKeyboardViewControllerTemp.h; sourceTree = "<group>"; }; + FED139A5C947F85FAF85C63E97CF494E /* RCTAccessibilityManager.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTAccessibilityManager.mm; sourceTree = "<group>"; }; + FEDAA1DC549280FA07BBD1645592665A /* RCTFrameUpdate.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTFrameUpdate.m; sourceTree = "<group>"; }; + FEFFD15AD871DAA74E6314076A89F75E /* FLEXNetworkObserver.mm */ = {isa = PBXFileReference; includeInIndex = 1; name = FLEXNetworkObserver.mm; path = iOS/Plugins/FlipperKitNetworkPlugin/SKIOSNetworkPlugin/FLEXNetworkLib/FLEXNetworkObserver.mm; sourceTree = "<group>"; }; + FF114CF0CE7C0C6953191EBCF4CBBB38 /* AtomicNotification-inl.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "AtomicNotification-inl.h"; path = "folly/synchronization/AtomicNotification-inl.h"; sourceTree = "<group>"; }; + FF28BAB7193AAECF5B3B5BB51BFE1922 /* UMDeviceMotionInterface.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = UMDeviceMotionInterface.h; path = UMSensorsInterface/UMDeviceMotionInterface.h; sourceTree = "<group>"; }; + FF33429B257A3F2058A70B3165030403 /* LICENSE */ = {isa = PBXFileReference; includeInIndex = 1; path = LICENSE; sourceTree = "<group>"; }; + FF3DC9A5EBDB132DCA56A724FC1D10FF /* RCTAsyncLocalStorage.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTAsyncLocalStorage.h; path = React/CoreModules/RCTAsyncLocalStorage.h; sourceTree = "<group>"; }; + FF4A54CF894C8947A9E4D75D0738ACA3 /* FIRCLSSerializeSymbolicatedFramesOperation.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRCLSSerializeSymbolicatedFramesOperation.m; path = Crashlytics/Crashlytics/Operations/Symbolication/FIRCLSSerializeSymbolicatedFramesOperation.m; sourceTree = "<group>"; }; + FF51358FDCA889F656C79C2EC31E6028 /* SocketFastOpen.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SocketFastOpen.h; path = folly/detail/SocketFastOpen.h; sourceTree = "<group>"; }; + FF52E63FA1C5D41760062EDCB6AAA418 /* Uri.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Uri.h; path = folly/Uri.h; sourceTree = "<group>"; }; + FF840C6A2CD6C50E8290EA05801C39DD /* LICENSE */ = {isa = PBXFileReference; includeInIndex = 1; path = LICENSE; sourceTree = "<group>"; }; + FFD1A511B550CDC9B86240DC9ED622A5 /* Utility.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Utility.h; path = folly/synchronization/Utility.h; sourceTree = "<group>"; }; + FFD63B3614A36E11D4A3B917BF0B2223 /* AtomicLinkedList.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = AtomicLinkedList.h; path = folly/AtomicLinkedList.h; sourceTree = "<group>"; }; + FFDA049D1A5FC9943216AE3AEFB3D2F4 /* ChannelResponder.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ChannelResponder.h; path = rsocket/statemachine/ChannelResponder.h; sourceTree = "<group>"; }; FFDC7746794AB17CFB7150820479DF40 /* libFlipper-RSocket.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; name = "libFlipper-RSocket.a"; path = "libFlipper-RSocket.a"; sourceTree = BUILT_PRODUCTS_DIR; }; - FFEEEAA43F9E2279D73C849BE609807E /* SanitizeLeak.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = SanitizeLeak.cpp; path = folly/memory/SanitizeLeak.cpp; sourceTree = "<group>"; }; - FFFB3400D9B937F709EDAA8E0F84A585 /* RCTActivityIndicatorViewManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTActivityIndicatorViewManager.h; sourceTree = "<group>"; }; + FFE019844913A8A8022BC04C00968534 /* Sleeper.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Sleeper.h; path = folly/synchronization/detail/Sleeper.h; sourceTree = "<group>"; }; + FFE3A2934B2A92FDDFFA491390C78526 /* File-inl.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "File-inl.h"; path = "folly/gen/File-inl.h"; sourceTree = "<group>"; }; + FFF4C8DB6F8F4C1F921CFA18E1626774 /* FIRCLSDataCollectionArbiter.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRCLSDataCollectionArbiter.h; path = Crashlytics/Crashlytics/DataCollection/FIRCLSDataCollectionArbiter.h; sourceTree = "<group>"; }; + FFFD6378FE7EA3865A2BD3814EC14027 /* BSGAppKit.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BSGAppKit.h; sourceTree = "<group>"; }; /* End PBXFileReference section */ /* Begin PBXFrameworksBuildPhase section */ - 0615D9ED43AF53DF22ADA10E76905AAF /* Frameworks */ = { - isa = PBXFrameworksBuildPhase; - buildActionMask = 2147483647; - files = ( - ); - runOnlyForDeploymentPostprocessing = 0; - }; - 06A3F9F481ED5BA74F32721A55EC4EED /* Frameworks */ = { + 006695842DDB3108A8C748E1092F8C0D /* Frameworks */ = { isa = PBXFrameworksBuildPhase; buildActionMask = 2147483647; files = ( ); runOnlyForDeploymentPostprocessing = 0; }; - 06C7CFE6615FAB6FFC979FFD210C6D6B /* Frameworks */ = { + 03D2C677C010FCE89FD5716FD1A9D537 /* Frameworks */ = { isa = PBXFrameworksBuildPhase; buildActionMask = 2147483647; files = ( @@ -13570,20 +13505,6 @@ ); runOnlyForDeploymentPostprocessing = 0; }; - 094AC3245FADAF5DBBEA7ECAB638E8D1 /* Frameworks */ = { - isa = PBXFrameworksBuildPhase; - buildActionMask = 2147483647; - files = ( - ); - runOnlyForDeploymentPostprocessing = 0; - }; - 0A1622D4B45E86D4BA47153B70CCC6E8 /* Frameworks */ = { - isa = PBXFrameworksBuildPhase; - buildActionMask = 2147483647; - files = ( - ); - runOnlyForDeploymentPostprocessing = 0; - }; 0B2351201886A582A4987397C9CCFC27 /* Frameworks */ = { isa = PBXFrameworksBuildPhase; buildActionMask = 2147483647; @@ -13591,21 +13512,21 @@ ); runOnlyForDeploymentPostprocessing = 0; }; - 0C1E383AB1CDADD9A74B10264E0CBA02 /* Frameworks */ = { + 0BBFC7DAA1E06DFFB83633A914E099F7 /* Frameworks */ = { isa = PBXFrameworksBuildPhase; buildActionMask = 2147483647; files = ( ); runOnlyForDeploymentPostprocessing = 0; }; - 0CDFE3C2D078FB44B58EF903F4DEAA7F /* Frameworks */ = { + 0C1E383AB1CDADD9A74B10264E0CBA02 /* Frameworks */ = { isa = PBXFrameworksBuildPhase; buildActionMask = 2147483647; files = ( ); runOnlyForDeploymentPostprocessing = 0; }; - 0E524B4CD3E5901ECA12F9118A571F54 /* Frameworks */ = { + 0FFE85F5E2A752756E2F4DD3B04BC715 /* Frameworks */ = { isa = PBXFrameworksBuildPhase; buildActionMask = 2147483647; files = ( @@ -13626,7 +13547,7 @@ ); runOnlyForDeploymentPostprocessing = 0; }; - 16D542A505F9763CF89BAE7EAC972694 /* Frameworks */ = { + 152B0A941A8CDEDE459680207A6C63B8 /* Frameworks */ = { isa = PBXFrameworksBuildPhase; buildActionMask = 2147483647; files = ( @@ -13647,13 +13568,6 @@ ); runOnlyForDeploymentPostprocessing = 0; }; - 18A314E525F481665908AACF3D55FDD0 /* Frameworks */ = { - isa = PBXFrameworksBuildPhase; - buildActionMask = 2147483647; - files = ( - ); - runOnlyForDeploymentPostprocessing = 0; - }; 19E8945C1E855C6EA0DB5AF332075DE7 /* Frameworks */ = { isa = PBXFrameworksBuildPhase; buildActionMask = 2147483647; @@ -13682,35 +13596,35 @@ ); runOnlyForDeploymentPostprocessing = 0; }; - 25FE4B6AC8DFEABC185404F013EDF4A9 /* Frameworks */ = { + 2184262B94CAAFAF89B3BAAEC507BC04 /* Frameworks */ = { isa = PBXFrameworksBuildPhase; buildActionMask = 2147483647; files = ( ); runOnlyForDeploymentPostprocessing = 0; }; - 2697CAACE81DB3F436C2C2696C976C23 /* Frameworks */ = { + 2A23B11F857A7454B871D819542E44B7 /* Frameworks */ = { isa = PBXFrameworksBuildPhase; buildActionMask = 2147483647; files = ( ); runOnlyForDeploymentPostprocessing = 0; }; - 274DED14DC226F4FFEB0135F04B1EC27 /* Frameworks */ = { + 2A3CC09211F19158A8311928F6FB2853 /* Frameworks */ = { isa = PBXFrameworksBuildPhase; buildActionMask = 2147483647; files = ( ); runOnlyForDeploymentPostprocessing = 0; }; - 2A324E4746DB80E29874AA089755B1E9 /* Frameworks */ = { + 2B6FADC534900245E119443D5BA01E92 /* Frameworks */ = { isa = PBXFrameworksBuildPhase; buildActionMask = 2147483647; files = ( ); runOnlyForDeploymentPostprocessing = 0; }; - 2AC53D729A9E0D2A2AC583B626B028BE /* Frameworks */ = { + 2BF769C9A303C35F3AF855274C3F9CED /* Frameworks */ = { isa = PBXFrameworksBuildPhase; buildActionMask = 2147483647; files = ( @@ -13731,14 +13645,14 @@ ); runOnlyForDeploymentPostprocessing = 0; }; - 36A4838F1353C315E6135E06D576B5B3 /* Frameworks */ = { + 33773628A1ADE3BCD75642EB4877F697 /* Frameworks */ = { isa = PBXFrameworksBuildPhase; buildActionMask = 2147483647; files = ( ); runOnlyForDeploymentPostprocessing = 0; }; - 36F26C4C734E8588E99C9754140D3669 /* Frameworks */ = { + 339C7ED035D265CF14C5281425F7ECA7 /* Frameworks */ = { isa = PBXFrameworksBuildPhase; buildActionMask = 2147483647; files = ( @@ -13766,98 +13680,98 @@ ); runOnlyForDeploymentPostprocessing = 0; }; - 3D6EAB8755CEC7BF11F57D2E2C9531B9 /* Frameworks */ = { + 3EB0C66C05E3A89D7387D6A31F40A5F9 /* Frameworks */ = { isa = PBXFrameworksBuildPhase; buildActionMask = 2147483647; files = ( ); runOnlyForDeploymentPostprocessing = 0; }; - 3EB0C66C05E3A89D7387D6A31F40A5F9 /* Frameworks */ = { + 4379CAF1DB03818BA27AF9C46364DEAC /* Frameworks */ = { isa = PBXFrameworksBuildPhase; buildActionMask = 2147483647; files = ( ); runOnlyForDeploymentPostprocessing = 0; }; - 41BB1927509BDFF50ABBF429C29F99A7 /* Frameworks */ = { + 44E7600D08CB6BBC85BCD5A537CEDC17 /* Frameworks */ = { isa = PBXFrameworksBuildPhase; buildActionMask = 2147483647; files = ( ); runOnlyForDeploymentPostprocessing = 0; }; - 4379CAF1DB03818BA27AF9C46364DEAC /* Frameworks */ = { + 45DE0E46676F8DA0160E0E8BC44846A7 /* Frameworks */ = { isa = PBXFrameworksBuildPhase; buildActionMask = 2147483647; files = ( ); runOnlyForDeploymentPostprocessing = 0; }; - 43C372FEA4081584E0F45A7025F2B6DC /* Frameworks */ = { + 4809F106B679DB639078BF78A4D90047 /* Frameworks */ = { isa = PBXFrameworksBuildPhase; buildActionMask = 2147483647; files = ( ); runOnlyForDeploymentPostprocessing = 0; }; - 45DE0E46676F8DA0160E0E8BC44846A7 /* Frameworks */ = { + 4FC3A63003CF26024AD51363D652F192 /* Frameworks */ = { isa = PBXFrameworksBuildPhase; buildActionMask = 2147483647; files = ( ); runOnlyForDeploymentPostprocessing = 0; }; - 47DD1A475E3F12C74B93009CC32A35D4 /* Frameworks */ = { + 525DCCDA1DF812DF6452698E974EEC29 /* Frameworks */ = { isa = PBXFrameworksBuildPhase; buildActionMask = 2147483647; files = ( ); runOnlyForDeploymentPostprocessing = 0; }; - 4809F106B679DB639078BF78A4D90047 /* Frameworks */ = { + 5600FF2636F70E74A5931C35672BC8BB /* Frameworks */ = { isa = PBXFrameworksBuildPhase; buildActionMask = 2147483647; files = ( ); runOnlyForDeploymentPostprocessing = 0; }; - 4927BD1B98A84A2C86C7AB0612955C10 /* Frameworks */ = { + 57663EE8E93F7808B0315A49A4BCA79E /* Frameworks */ = { isa = PBXFrameworksBuildPhase; buildActionMask = 2147483647; files = ( ); runOnlyForDeploymentPostprocessing = 0; }; - 4FC3A63003CF26024AD51363D652F192 /* Frameworks */ = { + 5B34F21E583007D82FFDECB8B752AEC0 /* Frameworks */ = { isa = PBXFrameworksBuildPhase; buildActionMask = 2147483647; files = ( ); runOnlyForDeploymentPostprocessing = 0; }; - 5600FF2636F70E74A5931C35672BC8BB /* Frameworks */ = { + 60EF3A54828FCA6B321B5D018A52C2F3 /* Frameworks */ = { isa = PBXFrameworksBuildPhase; buildActionMask = 2147483647; files = ( ); runOnlyForDeploymentPostprocessing = 0; }; - 57663EE8E93F7808B0315A49A4BCA79E /* Frameworks */ = { + 6143D9418B82C41B09B2A4A980F3185D /* Frameworks */ = { isa = PBXFrameworksBuildPhase; buildActionMask = 2147483647; files = ( ); runOnlyForDeploymentPostprocessing = 0; }; - 5BB61348516797F98DB7291477F25B93 /* Frameworks */ = { + 61657456EF7D835218B233017E2C1AAC /* Frameworks */ = { isa = PBXFrameworksBuildPhase; buildActionMask = 2147483647; files = ( ); runOnlyForDeploymentPostprocessing = 0; }; - 5CB9AEADFD9920EE12A7AB31A87E6C9B /* Frameworks */ = { + 67F185E879935C088D67E9DC803ED1C1 /* Frameworks */ = { isa = PBXFrameworksBuildPhase; buildActionMask = 2147483647; files = ( @@ -13878,119 +13792,119 @@ ); runOnlyForDeploymentPostprocessing = 0; }; - 6F4D91982CA29811352BD9AA9D80D801 /* Frameworks */ = { + 71D808423B6C6B4ECD6EDF236D09D893 /* Frameworks */ = { isa = PBXFrameworksBuildPhase; buildActionMask = 2147483647; files = ( ); runOnlyForDeploymentPostprocessing = 0; }; - 71D808423B6C6B4ECD6EDF236D09D893 /* Frameworks */ = { + 740805709C7EC64A77E6BC181ED26D53 /* Frameworks */ = { isa = PBXFrameworksBuildPhase; buildActionMask = 2147483647; files = ( ); runOnlyForDeploymentPostprocessing = 0; }; - 76EF700C7CE56E8F5B6D1C077D2FEF53 /* Frameworks */ = { + 7541B3BEBB8DC8C5B12F2AAB773635D4 /* Frameworks */ = { isa = PBXFrameworksBuildPhase; buildActionMask = 2147483647; files = ( ); runOnlyForDeploymentPostprocessing = 0; }; - 772FAED248537EF7AAB5D93B26AC1D88 /* Frameworks */ = { + 7C36E0229638450457D2F7074A24D643 /* Frameworks */ = { isa = PBXFrameworksBuildPhase; buildActionMask = 2147483647; files = ( ); runOnlyForDeploymentPostprocessing = 0; }; - 7E9DBD87767A4B7DB0C15A825D74D560 /* Frameworks */ = { + 7C994E2693E4DAD9E2A08EA009E249E8 /* Frameworks */ = { isa = PBXFrameworksBuildPhase; buildActionMask = 2147483647; files = ( ); runOnlyForDeploymentPostprocessing = 0; }; - 886C32514753C74BF10F98AD5099DBFB /* Frameworks */ = { + 7E9DBD87767A4B7DB0C15A825D74D560 /* Frameworks */ = { isa = PBXFrameworksBuildPhase; buildActionMask = 2147483647; files = ( ); runOnlyForDeploymentPostprocessing = 0; }; - 8A1F5B60EC4A511A7F2245A93CE18FA2 /* Frameworks */ = { + 8081FF05CEE2E2164D18963C9334FE4A /* Frameworks */ = { isa = PBXFrameworksBuildPhase; buildActionMask = 2147483647; files = ( ); runOnlyForDeploymentPostprocessing = 0; }; - 8BA1BE1AA86046F731A299A90F48F47C /* Frameworks */ = { + 840FD44EE431DB803C7E23D6896BE192 /* Frameworks */ = { isa = PBXFrameworksBuildPhase; buildActionMask = 2147483647; files = ( ); runOnlyForDeploymentPostprocessing = 0; }; - 8C31BB30375E33D666B7964BAE92F6F5 /* Frameworks */ = { + 87FCC0154FD7048FA76DE88A15AF33D8 /* Frameworks */ = { isa = PBXFrameworksBuildPhase; buildActionMask = 2147483647; files = ( ); runOnlyForDeploymentPostprocessing = 0; }; - 8D565FA49E6F0EFA98DE5496CD8AD27D /* Frameworks */ = { + 8A1F5B60EC4A511A7F2245A93CE18FA2 /* Frameworks */ = { isa = PBXFrameworksBuildPhase; buildActionMask = 2147483647; files = ( ); runOnlyForDeploymentPostprocessing = 0; }; - 8F59E186ECE4687B417F87A75B24BAD0 /* Frameworks */ = { + 8C6ED094982A12F07D40D94F2E45C4E8 /* Frameworks */ = { isa = PBXFrameworksBuildPhase; buildActionMask = 2147483647; files = ( ); runOnlyForDeploymentPostprocessing = 0; }; - 8FCE07682FCCB59E7A8309D3F9FA6FB5 /* Frameworks */ = { + 91646EA234AC3FEF04B7249DA6452096 /* Frameworks */ = { isa = PBXFrameworksBuildPhase; buildActionMask = 2147483647; files = ( ); runOnlyForDeploymentPostprocessing = 0; }; - 9019351B2013DBE70FFC962917EE6E8D /* Frameworks */ = { + 952499CC4C498603DA43FC81CB7DFB69 /* Frameworks */ = { isa = PBXFrameworksBuildPhase; buildActionMask = 2147483647; files = ( ); runOnlyForDeploymentPostprocessing = 0; }; - 91646EA234AC3FEF04B7249DA6452096 /* Frameworks */ = { + 98E6577849DCF5C402CD4DC8F61093FA /* Frameworks */ = { isa = PBXFrameworksBuildPhase; buildActionMask = 2147483647; files = ( ); runOnlyForDeploymentPostprocessing = 0; }; - 922C8248D4EBD9723ABBB0E242C6B7D8 /* Frameworks */ = { + 9C301E03D913B26B22DB51076BC08D36 /* Frameworks */ = { isa = PBXFrameworksBuildPhase; buildActionMask = 2147483647; files = ( ); runOnlyForDeploymentPostprocessing = 0; }; - 98E6577849DCF5C402CD4DC8F61093FA /* Frameworks */ = { + 9ED6298079E7CFFF78E00188B7EB1EDB /* Frameworks */ = { isa = PBXFrameworksBuildPhase; buildActionMask = 2147483647; files = ( ); runOnlyForDeploymentPostprocessing = 0; }; - 9C947A33C1672CF907F182ED96F234B7 /* Frameworks */ = { + A1EF0D79437B785899BEA7327393B5A6 /* Frameworks */ = { isa = PBXFrameworksBuildPhase; buildActionMask = 2147483647; files = ( @@ -14004,168 +13918,168 @@ ); runOnlyForDeploymentPostprocessing = 0; }; - A4475EB91C5C44D2A349A2ECD6B17401 /* Frameworks */ = { + A8C319088C621F415AECA7C9FCDFB123 /* Frameworks */ = { isa = PBXFrameworksBuildPhase; buildActionMask = 2147483647; files = ( ); runOnlyForDeploymentPostprocessing = 0; }; - A56E11ADBCC08C7D525CDBB967BFDC18 /* Frameworks */ = { + ABE86F2D61BE5DCF08F469DE66EAD1B8 /* Frameworks */ = { isa = PBXFrameworksBuildPhase; buildActionMask = 2147483647; files = ( ); runOnlyForDeploymentPostprocessing = 0; }; - A821EBF7BEF1209B095AFE0F7D01AF9F /* Frameworks */ = { + AE01ECF4CFA9660A0D54E0B36CDC2F49 /* Frameworks */ = { isa = PBXFrameworksBuildPhase; buildActionMask = 2147483647; files = ( ); runOnlyForDeploymentPostprocessing = 0; }; - A8C319088C621F415AECA7C9FCDFB123 /* Frameworks */ = { + AE0F4EF2288FE6414809170E8301AD6A /* Frameworks */ = { isa = PBXFrameworksBuildPhase; buildActionMask = 2147483647; files = ( ); runOnlyForDeploymentPostprocessing = 0; }; - ABE86F2D61BE5DCF08F469DE66EAD1B8 /* Frameworks */ = { + AE8034A8E29FDF3134E498078A3266C7 /* Frameworks */ = { isa = PBXFrameworksBuildPhase; buildActionMask = 2147483647; files = ( ); runOnlyForDeploymentPostprocessing = 0; }; - AE01ECF4CFA9660A0D54E0B36CDC2F49 /* Frameworks */ = { + AEC50A43C7CC8565A8CC7E310C768904 /* Frameworks */ = { isa = PBXFrameworksBuildPhase; buildActionMask = 2147483647; files = ( ); runOnlyForDeploymentPostprocessing = 0; }; - AE0F4EF2288FE6414809170E8301AD6A /* Frameworks */ = { + B06F838229CD5A595E07798DEDA86592 /* Frameworks */ = { isa = PBXFrameworksBuildPhase; buildActionMask = 2147483647; files = ( ); runOnlyForDeploymentPostprocessing = 0; }; - AE8034A8E29FDF3134E498078A3266C7 /* Frameworks */ = { + B458B587EAFB173EBB3886C36D6C5861 /* Frameworks */ = { isa = PBXFrameworksBuildPhase; buildActionMask = 2147483647; files = ( ); runOnlyForDeploymentPostprocessing = 0; }; - AEC50A43C7CC8565A8CC7E310C768904 /* Frameworks */ = { + B4986818AC8B7E07D2DFFBAF909767A1 /* Frameworks */ = { isa = PBXFrameworksBuildPhase; buildActionMask = 2147483647; files = ( ); runOnlyForDeploymentPostprocessing = 0; }; - B06F838229CD5A595E07798DEDA86592 /* Frameworks */ = { + B60EADEDBBA33813FB9235DA07B6EA98 /* Frameworks */ = { isa = PBXFrameworksBuildPhase; buildActionMask = 2147483647; files = ( ); runOnlyForDeploymentPostprocessing = 0; }; - B16361FAE64D27E46BE21FB0DFE5B6CF /* Frameworks */ = { + B957C43085298A49DA950F909D0AC37C /* Frameworks */ = { isa = PBXFrameworksBuildPhase; buildActionMask = 2147483647; files = ( ); runOnlyForDeploymentPostprocessing = 0; }; - B18D6FC4695EE9D488646219D64136DD /* Frameworks */ = { + BA66C14E60DA9F5EA13DB34D82C7BC18 /* Frameworks */ = { isa = PBXFrameworksBuildPhase; buildActionMask = 2147483647; files = ( ); runOnlyForDeploymentPostprocessing = 0; }; - B458B587EAFB173EBB3886C36D6C5861 /* Frameworks */ = { + BDBF9123E275D79D72830529DDBD0188 /* Frameworks */ = { isa = PBXFrameworksBuildPhase; buildActionMask = 2147483647; files = ( ); runOnlyForDeploymentPostprocessing = 0; }; - B4986818AC8B7E07D2DFFBAF909767A1 /* Frameworks */ = { + BE0265773847A9F98C02265892AFA225 /* Frameworks */ = { isa = PBXFrameworksBuildPhase; buildActionMask = 2147483647; files = ( ); runOnlyForDeploymentPostprocessing = 0; }; - B957C43085298A49DA950F909D0AC37C /* Frameworks */ = { + BF737B47E6E4756E49A1FE82E1212FE6 /* Frameworks */ = { isa = PBXFrameworksBuildPhase; buildActionMask = 2147483647; files = ( ); runOnlyForDeploymentPostprocessing = 0; }; - B9F15CC4E7A790B8CB98BD8F59D38587 /* Frameworks */ = { + C037ADB9F54151561ADB329B98703A06 /* Frameworks */ = { isa = PBXFrameworksBuildPhase; buildActionMask = 2147483647; files = ( ); runOnlyForDeploymentPostprocessing = 0; }; - BEE7F8065C4285BE5056ECAF04472D60 /* Frameworks */ = { + C09E63A4C2A3DDE053FBB45D8C35226D /* Frameworks */ = { isa = PBXFrameworksBuildPhase; buildActionMask = 2147483647; files = ( ); runOnlyForDeploymentPostprocessing = 0; }; - BF737B47E6E4756E49A1FE82E1212FE6 /* Frameworks */ = { + C2D8F7262835A02B9952069078694176 /* Frameworks */ = { isa = PBXFrameworksBuildPhase; buildActionMask = 2147483647; files = ( ); runOnlyForDeploymentPostprocessing = 0; }; - C037ADB9F54151561ADB329B98703A06 /* Frameworks */ = { + C3BC4479247EE51A209DD9FEED7600C2 /* Frameworks */ = { isa = PBXFrameworksBuildPhase; buildActionMask = 2147483647; files = ( ); runOnlyForDeploymentPostprocessing = 0; }; - C36D034E8BA7B4FF22CE4D6F94D604FC /* Frameworks */ = { + C3E817838C754C9EDECB59367BDBF5A2 /* Frameworks */ = { isa = PBXFrameworksBuildPhase; buildActionMask = 2147483647; files = ( ); runOnlyForDeploymentPostprocessing = 0; }; - C44BB04015DF2257CD7DBA77075BE16F /* Frameworks */ = { + C571BF9FC0779CF41DE07B12827362CD /* Frameworks */ = { isa = PBXFrameworksBuildPhase; buildActionMask = 2147483647; files = ( ); runOnlyForDeploymentPostprocessing = 0; }; - C496617F801558CE8BE3D307D72565D3 /* Frameworks */ = { + C5E8BB4C49A6823A13674CD9E49D3F38 /* Frameworks */ = { isa = PBXFrameworksBuildPhase; buildActionMask = 2147483647; files = ( ); runOnlyForDeploymentPostprocessing = 0; }; - C733EB8292891A1E95A574F173849A17 /* Frameworks */ = { + CAFAD5CA48A9F97C0F72849759ECB4D6 /* Frameworks */ = { isa = PBXFrameworksBuildPhase; buildActionMask = 2147483647; files = ( ); runOnlyForDeploymentPostprocessing = 0; }; - CAFAD5CA48A9F97C0F72849759ECB4D6 /* Frameworks */ = { + CEDD879702EEF208E25DA9E1CE343974 /* Frameworks */ = { isa = PBXFrameworksBuildPhase; buildActionMask = 2147483647; files = ( @@ -14179,14 +14093,14 @@ ); runOnlyForDeploymentPostprocessing = 0; }; - D53569BC185C8976331FD2E0EFEEFFC7 /* Frameworks */ = { + D8370AAA7EDC178A007AAB57492E76FC /* Frameworks */ = { isa = PBXFrameworksBuildPhase; buildActionMask = 2147483647; files = ( ); runOnlyForDeploymentPostprocessing = 0; }; - D6A39A77ED1F270CD92DE17EE0AF1656 /* Frameworks */ = { + D9BEE04BFBA956F9D454E2977DE35419 /* Frameworks */ = { isa = PBXFrameworksBuildPhase; buildActionMask = 2147483647; files = ( @@ -14207,42 +14121,56 @@ ); runOnlyForDeploymentPostprocessing = 0; }; - DDC4D8C0F4080E0C98424DA76891575F /* Frameworks */ = { + DE79CC7915A8E6FE3210953A5092287F /* Frameworks */ = { isa = PBXFrameworksBuildPhase; buildActionMask = 2147483647; files = ( ); runOnlyForDeploymentPostprocessing = 0; }; - DE79CC7915A8E6FE3210953A5092287F /* Frameworks */ = { + DFCA4986259EF6090AE75613C681A5F8 /* Frameworks */ = { isa = PBXFrameworksBuildPhase; buildActionMask = 2147483647; files = ( ); runOnlyForDeploymentPostprocessing = 0; }; - DFCA4986259EF6090AE75613C681A5F8 /* Frameworks */ = { + E2818D4AC5DB061AE7F8DE52F82D1BF4 /* Frameworks */ = { isa = PBXFrameworksBuildPhase; buildActionMask = 2147483647; files = ( ); runOnlyForDeploymentPostprocessing = 0; }; - E12E6A6310A53994D5F1643B28B9BCCF /* Frameworks */ = { + E3E13ACB021F25C010579EFC639E312A /* Frameworks */ = { isa = PBXFrameworksBuildPhase; buildActionMask = 2147483647; files = ( ); runOnlyForDeploymentPostprocessing = 0; }; - E3E13ACB021F25C010579EFC639E312A /* Frameworks */ = { + E4548AF74BC74906EFCEF73214ADB67B /* Frameworks */ = { isa = PBXFrameworksBuildPhase; buildActionMask = 2147483647; files = ( ); runOnlyForDeploymentPostprocessing = 0; }; - E4548AF74BC74906EFCEF73214ADB67B /* Frameworks */ = { + E57D487337DEAFB85E2A27E122468E20 /* Frameworks */ = { + isa = PBXFrameworksBuildPhase; + buildActionMask = 2147483647; + files = ( + ); + runOnlyForDeploymentPostprocessing = 0; + }; + E66926C960C9C649CE82B41770F5EA65 /* Frameworks */ = { + isa = PBXFrameworksBuildPhase; + buildActionMask = 2147483647; + files = ( + ); + runOnlyForDeploymentPostprocessing = 0; + }; + E8E5B2B14E801D7E3235783D82512F6F /* Frameworks */ = { isa = PBXFrameworksBuildPhase; buildActionMask = 2147483647; files = ( @@ -14256,14 +14184,14 @@ ); runOnlyForDeploymentPostprocessing = 0; }; - EF44AAFDF7D1EFE4BD2D0AEC87F54183 /* Frameworks */ = { + F0A3C66A2C7EDA029D16C4A4AB68569C /* Frameworks */ = { isa = PBXFrameworksBuildPhase; buildActionMask = 2147483647; files = ( ); runOnlyForDeploymentPostprocessing = 0; }; - F5B4F2569A623305018E44F0E870F184 /* Frameworks */ = { + F193F515851F02984CBBAB54FE72E57E /* Frameworks */ = { isa = PBXFrameworksBuildPhase; buildActionMask = 2147483647; files = ( @@ -14291,14 +14219,21 @@ ); runOnlyForDeploymentPostprocessing = 0; }; - FCD5440E0834900038464E68F142E969 /* Frameworks */ = { + FDA40E51F35E0E1F493A6265B9591810 /* Frameworks */ = { isa = PBXFrameworksBuildPhase; buildActionMask = 2147483647; files = ( ); runOnlyForDeploymentPostprocessing = 0; }; - FDA40E51F35E0E1F493A6265B9591810 /* Frameworks */ = { + FDF77490ABFD2D1AE6A249E3DCE6B4F1 /* Frameworks */ = { + isa = PBXFrameworksBuildPhase; + buildActionMask = 2147483647; + files = ( + ); + runOnlyForDeploymentPostprocessing = 0; + }; + FFD102E81D59ADED42B64CB25853BF79 /* Frameworks */ = { isa = PBXFrameworksBuildPhase; buildActionMask = 2147483647; files = ( @@ -14308,696 +14243,463 @@ /* End PBXFrameworksBuildPhase section */ /* Begin PBXGroup section */ - 000784771CA1B21F5D3DE154273F01C6 /* webp */ = { - isa = PBXGroup; - children = ( - CF4BDEC955538583A9CAA48843409B0D /* alpha_dec.c */, - 6D394A72631D12B745FC13EBB49EBD4A /* alpha_enc.c */, - DD97A2E781B1133BD6C71C1544A56098 /* alpha_processing.c */, - D24C2A558A4C2CF8CAD1BE5E4935C980 /* alpha_processing_mips_dsp_r2.c */, - 644633337DCD128ED7793DA3C7441FEB /* alpha_processing_neon.c */, - AAE7C3A7CFA89498E2F31CD466E8BD1F /* alpha_processing_sse2.c */, - D6CB014D6F64A3F8BA9B0124907F5578 /* alpha_processing_sse41.c */, - 3714F374E87928906502C9E5AF26AEBF /* alphai_dec.h */, - 6E28EDF634FF6ECE4803956901A890EB /* analysis_enc.c */, - 44CDC77F327D712E76506179E42099DA /* backward_references_cost_enc.c */, - 8D6FA0A067E58BD035A8CB254BF874DD /* backward_references_enc.c */, - 961AD9B86A4FFB2F74738BAF22D70B68 /* backward_references_enc.h */, - 416EEA29D5AD9BC6C8A5E7C50814100B /* bit_reader_inl_utils.h */, - 45420B71146AFC154A4B2DF43AD79E2B /* bit_reader_utils.c */, - FEDED317099F2F9D101BBB2B59B5DC84 /* bit_reader_utils.h */, - D76E8495FF3C4F45E05A1D077E2B3DF0 /* bit_writer_utils.c */, - F20A431211371FE48A41C08351C700CA /* bit_writer_utils.h */, - DB04AFD2052A8B45AA419361620B12A1 /* buffer_dec.c */, - 116093A73B32F5F786FD46E2F9307F24 /* color_cache_utils.c */, - 9A418F3C1CC849FB2AF5C76D1273ABA1 /* color_cache_utils.h */, - 5C8840FC1E09D950CB658115B4791F05 /* common_dec.h */, - 03B96308C041D885CCF507BE7B0B0340 /* common_sse2.h */, - 35EE45AAA32375675BA4E409CE39608C /* common_sse41.h */, - 78805741973DFB53A145A589929A9B63 /* config_enc.c */, - CFB354F515813222413E2132DB870EBF /* cost.c */, - 5B226505A9C8CFF13FE2314419290926 /* cost_enc.c */, - 9DAB026597DCEA620D82C5772AAF6B91 /* cost_enc.h */, - DA6EA58A70A87346A369EECF66BD4BC8 /* cost_mips32.c */, - B9168CE688658C39AAA643B653709B19 /* cost_mips_dsp_r2.c */, - C297EEB29D530D2065D16CD01752FEB2 /* cost_neon.c */, - C9147CB539C346522CDE0A26BEEAD07A /* cost_sse2.c */, - 54D5F480D3D001B12F3F9B7A708902AB /* cpu.c */, - BEC8E3B1DECB8985FD462B8ED229F93D /* dec.c */, - 52670FF4817FA37ED38D1FAEBA55FE4C /* dec_clip_tables.c */, - 083D2D5543B3909AD297AD13441396FE /* dec_mips32.c */, - 56C70B4DCF1B4B7B72930A3391747A64 /* dec_mips_dsp_r2.c */, - 494B87A43A32CA29805FA67042D33BDE /* dec_msa.c */, - B46F8DE0AECDD9DFDBD2A2738BE7B127 /* dec_neon.c */, - 463C40BF9D263B0F0FFCC31EBEE4F3DD /* dec_sse2.c */, - 158853D4DAF24639C36E51C1EB0294AF /* dec_sse41.c */, - 04EE6D85344BB560A07B1DB6773B6A74 /* decode.h */, - D4E5EA08053591079B41F2327DF440C6 /* dsp.h */, - 6699132F7FA7337ED210A2AEF692D1CD /* enc.c */, - CC9EC9A93BF2708C130F9C64C754CAA6 /* enc_mips32.c */, - DE10C6C8FDDFDEA4542FC71322F6D75A /* enc_mips_dsp_r2.c */, - 241FD3A495440FC29D4AC6656455F0FF /* enc_msa.c */, - F150D58501413FC437A7A472E236321E /* enc_neon.c */, - 901A7545398A64492BA691CD54AE2FEE /* enc_sse2.c */, - CA9DB25258DD17465318AC4999B7F0F0 /* enc_sse41.c */, - C9DAB19BAE0886CC6E1FC7AEE195FB70 /* encode.h */, - 82908EB5AA22CDA5F63B991A8908CDC9 /* endian_inl_utils.h */, - D811B83316C917BE0F602B3C2A560270 /* filter_enc.c */, - 4C1FE474229C2ACA4C7C4D7B00D43C22 /* filters.c */, - D72FD378C4B1FCB1EF395201B2FA0620 /* filters_mips_dsp_r2.c */, - FA3D6C41645AC0376301D491D6A72F1B /* filters_msa.c */, - CF6F2DB2D18A812C3A854361966399FB /* filters_neon.c */, - 70F794C19EB963A9D7CFF9111E434BEC /* filters_sse2.c */, - 854392E79DEFD120A20C066DCB55C4AF /* filters_utils.c */, - 06F5134F46BE5F3A905A0A76DA52F28E /* filters_utils.h */, - BAABEC84C45BD5093160DF0FDE106A1C /* format_constants.h */, - 086B1B9630B10C0C7A5C473B6B1D4EDD /* frame_dec.c */, - 825B2285A1530B004DDAD6CEE1315843 /* frame_enc.c */, - 85CCC568F8B4853890D4002955C643F0 /* histogram_enc.c */, - 6D67E32F1621EB8851E0CC5B2C35BB15 /* histogram_enc.h */, - 0F5D190FECA2BE663103CD614226C896 /* huffman_encode_utils.c */, - 3194A8673DB4A5FEE86505230F0E1A74 /* huffman_encode_utils.h */, - 75FE639F23AD7D3BB243E0AD9988E003 /* huffman_utils.c */, - 32393333791182EC6F342CFCF50B78E5 /* huffman_utils.h */, - 684772E1C17950688E2D02F4D586194B /* idec_dec.c */, - 68060AEBDFA64E78B014DA913C5C68F2 /* io_dec.c */, - A86994FD156A22B3C21CE4E425A6D6B9 /* iterator_enc.c */, - 84C6B17C8D76B76582EE0FA44BC1C73B /* lossless.c */, - AB112A4A6AAFBE00566605E8813D47AF /* lossless.h */, - EEAAAEE3BEC255C0C7A96639641B3098 /* lossless_common.h */, - A79DEA6FB66798FDB09A6F59CFE1E257 /* lossless_enc.c */, - BFF4279A327AF0457A60C98234BFA95B /* lossless_enc_mips32.c */, - 181BB8553F5626DBE6B2445592F321BF /* lossless_enc_mips_dsp_r2.c */, - D796A028626A993301936F75D47B1E5F /* lossless_enc_msa.c */, - 7C8E82EC8AAEA9B4CE0D2B7BCD31E075 /* lossless_enc_neon.c */, - A328A991453EF3EA707048259AEBC009 /* lossless_enc_sse2.c */, - 1C1EE646B96355CEC7249BBC052C77EC /* lossless_enc_sse41.c */, - 1426D4C7456CF932B66DD1B74A1CC592 /* lossless_mips_dsp_r2.c */, - DCA962ED9AF42D56D730366FF8D1B34F /* lossless_msa.c */, - 22B13775F5C133858DE4AF2F01D40718 /* lossless_neon.c */, - F60B8B4C00F766209BDBF4C89C226F47 /* lossless_sse2.c */, - E9EB53456EF9DFAB70B1BF7C11D270BC /* mips_macro.h */, - EBB8FDCD812D4599E46C88E2E592A7FB /* msa_macro.h */, - 53FBAA5077083A561752542CB9651EF7 /* mux_types.h */, - 93C97B60047255164EA4F8718B8EC42B /* near_lossless_enc.c */, - D844116E0E005795AB0B48CDE2A3E004 /* neon.h */, - 9827822A10AE401C50A145D0783F598F /* picture_csp_enc.c */, - 98173C30AAAEB60BB67F719BDE999FA1 /* picture_enc.c */, - 9E6C0F837C54854E825A6330E8F6E8F3 /* picture_psnr_enc.c */, - 5415899438777A95114A46A19EB4EB86 /* picture_rescale_enc.c */, - CF5736726F34C338E30E0C2E192BFCEC /* picture_tools_enc.c */, - E3E88B0CE350E5F46AB94F51A3084A92 /* predictor_enc.c */, - A3667F9A5A9B50046346F725B90E6303 /* quant.h */, - ED04B609E205529A34A85339041DF566 /* quant_dec.c */, - 4FE7B594CF6867E71FE4E2301AFEAD29 /* quant_enc.c */, - 5E650516DB771BA1A51A67A821704DA4 /* quant_levels_dec_utils.c */, - C9754419D7609BFF0E75CE875DCC4656 /* quant_levels_dec_utils.h */, - DEAFDDB7B183EBCD227325CE5F4B9AE5 /* quant_levels_utils.c */, - 0D15D4485815571BD58306D43BF2AB9E /* quant_levels_utils.h */, - 554C9744B627BCE0D470D29FD391FE4F /* random_utils.c */, - 7F976042875AB37E3178DA3B51131C0F /* random_utils.h */, - 7397E539A39B1BE430B7A86A3D7AA9B3 /* rescaler.c */, - FE0A9EDABB70F6E69735C65E4CB586B9 /* rescaler_mips32.c */, - 452CC8CE14DB69F8B48468BE79829A20 /* rescaler_mips_dsp_r2.c */, - 4E464EDB507E574CC1C3824FD4BEF570 /* rescaler_msa.c */, - 65C4D9484C6E95E9F01F5CA361F5F57E /* rescaler_neon.c */, - AE6427E508F8E6A55971C77A7E65FEB1 /* rescaler_sse2.c */, - 3C69E16660B149ABB112C2C8F03FF6CE /* rescaler_utils.c */, - 69E9EBCDB1ECAB7A20C2934E5487BCD8 /* rescaler_utils.h */, - A61F1D11A4487E7EB38BE9486F5B775B /* ssim.c */, - 402AAB81A0A41700074D0620AF821F75 /* ssim_sse2.c */, - EE8277FB56719177EFE2FAC4CDBCA097 /* syntax_enc.c */, - F5C23D5F46756EE864E58C1346D30056 /* thread_utils.c */, - 4B70EDFA652908C411936321ADE7A72C /* thread_utils.h */, - D375D0FFEF2CAE4C446E135EF0E4CEC6 /* token_enc.c */, - 0060E421CEEA15B5BFBDDC917B0CBD7F /* tree_dec.c */, - F6841ECB79AB4A38CB837F68495B3AB0 /* tree_enc.c */, - B93F6DD0458524D09451B650252973D4 /* types.h */, - 16740E5B21418D74BF0EB7B99959E337 /* upsampling.c */, - 959DD080ECCEA10F66B1BC358DD0AD32 /* upsampling_mips_dsp_r2.c */, - F656E9E9B098FF51164E8EDD69ECDCB0 /* upsampling_msa.c */, - 469009AF4E41FD57592E38B8933095BE /* upsampling_neon.c */, - 924EC671F2BB84B649EB05BB2E750512 /* upsampling_sse2.c */, - E7D542686358449C4464EF32763BE4A2 /* upsampling_sse41.c */, - 7963E4D9437C77A4AD380A283F73B8CD /* utils.c */, - 4F93F61A90764C0E78C82A039657A0C8 /* utils.h */, - 058BEC2FCC8D1DBEBCBBF9C636C2C347 /* vp8_dec.c */, - AF21403E28C34FCEB1EB5AD97C2AAF24 /* vp8_dec.h */, - 4340B7430F3D81B338E9EB775A64D8D7 /* vp8i_dec.h */, - F84258E26BD1F2E4F4E845499D19D291 /* vp8i_enc.h */, - 7AC7CEAE075D5FE37F18F69929AF0DB6 /* vp8l_dec.c */, - D80FDE7E34FA2982674064A6D85232B8 /* vp8l_enc.c */, - DB583B583C1BD1062181AF46E3326085 /* vp8li_dec.h */, - 83B05D19439553D21178193FF0C75B05 /* vp8li_enc.h */, - B95EEB8F6BF6053F409241818BF479A4 /* webp_dec.c */, - D00CE9B3086FA1A05219E162F854B74F /* webp_enc.c */, - 2E763E54264B6EE3E48C2E8F9CC09D76 /* webpi_dec.h */, - AFFA37E0D240F51E9319F97795876607 /* yuv.c */, - EC406A8E1DF9CEE11C8A055B76618D94 /* yuv.h */, - 228D6DB21FCFE39B36DCB5F42552FB22 /* yuv_mips32.c */, - 8ACA5A3A6CD82F1DFA5BA81BA8BA4E2B /* yuv_mips_dsp_r2.c */, - 5B9A6ACBF39BC62B711A68ECDD7E99A5 /* yuv_neon.c */, - EE1C228CC76D024E333510EC9F96FACE /* yuv_sse2.c */, - AF5285E913D9C8AD1A6810470E198466 /* yuv_sse41.c */, - ); - name = webp; - sourceTree = "<group>"; - }; - 0012CE52DF826E823DB925B46FA05058 /* React-RCTSettings */ = { + 009020698D33530A59EEC8F742CB09B0 /* Support Files */ = { isa = PBXGroup; children = ( - 0CC423979935EE595B6D7953492ABE5E /* RCTSettingsManager.mm */, - 697AD1D3EC759E22877C4FDBCFCF6816 /* RCTSettingsPlugins.mm */, - F2D81CCA0762A4A03BCFC78CE0764E76 /* Pod */, - DD6AF4948EC7F51B326A53CE0EE46600 /* Support Files */, + 5B147776F8079045740990C71E6E0DC5 /* RNReanimated-dummy.m */, + 92F772505469F7B51F99FCAA9380D68A /* RNReanimated-prefix.pch */, + 7EFA6F51DFE94641963FADC371A45CDD /* RNReanimated.debug.xcconfig */, + A0FA0B3D20272164B9C92EA04B85AECD /* RNReanimated.release.xcconfig */, ); - name = "React-RCTSettings"; - path = "../../node_modules/react-native/Libraries/Settings"; + name = "Support Files"; + path = "../../ios/Pods/Target Support Files/RNReanimated"; sourceTree = "<group>"; }; - 0051AE31E8160682B6666AF94FD43D76 /* React-CoreModules */ = { - isa = PBXGroup; - children = ( - AF33CE15513792246634152E3DCA3C2B /* CoreModulesPlugins.mm */, - 708F4376C358D7131052A82B9135C4A6 /* RCTAccessibilityManager.mm */, - 6ED4D25011BAD0ECDF0976D92211BF3F /* RCTActionSheetManager.mm */, - E6E79FE021EE1FF1B04B701B1D757EEB /* RCTAlertController.m */, - 2794BF391589D1CFB5280CB6BDDBE022 /* RCTAlertManager.mm */, - C32591EEDE3377EF9F2D1BAFD2185D97 /* RCTAppearance.mm */, - 696B1D52D0D68745C933A07535EEDDCF /* RCTAppState.mm */, - 86AA0BB8AB1F81709D8DAE74879B068D /* RCTAsyncLocalStorage.mm */, - 6D4488B3A6E4CE9B4FDFD87803624CEF /* RCTClipboard.mm */, - F2C8F1BCEEA27866D3346B8A49A98330 /* RCTDeviceInfo.mm */, - AB67EAA6F30A859AE4F167D603F2160B /* RCTDevLoadingView.mm */, - F89FCCEDA81EAB26185CEB2124BC010D /* RCTDevMenu.mm */, - 5ECE145F88E238B706A47CA042E7F8C0 /* RCTDevSettings.mm */, - A4E286F0D5D5A1C67FF8F09F07A85C09 /* RCTDevSplitBundleLoader.mm */, - 97B763A074EB5BD7EAE91979A432F6AC /* RCTEventDispatcher.mm */, - 773AEAE125E1B97FCE5EFAB6EFE16A8A /* RCTExceptionsManager.mm */, - 896D88B2987A64FD6E6A606176592663 /* RCTFPSGraph.m */, - 0CAE1967C4A341DC0BBDF6A55DE59DAC /* RCTI18nManager.mm */, - E5B537ACAE05A9107F8CA4D4676B8F34 /* RCTKeyboardObserver.mm */, - 1B3F7EED940B46ECFC021D632EC4EE86 /* RCTLogBox.mm */, - 2ED748BD35A98F47D36456871617E751 /* RCTLogBoxView.mm */, - BD6E8DBC6B22B90257F40CEF70FDC667 /* RCTPerfMonitor.mm */, - 5CC09DC9037224C3B66F8AC19F2B6059 /* RCTPlatform.mm */, - ADEFD5B66F064F5EDDCD15BA9C6B49FC /* RCTRedBox.mm */, - 2C17B2692915442C061B9BD0B2FC5D68 /* RCTSourceCode.mm */, - 0D4E47CF87EA1B46B2B44533C1B5C444 /* RCTStatusBarManager.mm */, - 86D860598D8AF40A45A7B59E29840C40 /* RCTTiming.mm */, - 6F815F8790C9087086FE9DE411255EBF /* RCTWebSocketExecutor.mm */, - 000055EB58F9954C08827947C49DEAA3 /* RCTWebSocketModule.mm */, - 36B571D5CDF18F9956567753B26DE890 /* Pod */, - 7F3B210349E9AB3E3EADD2AB592D867D /* Support Files */, + 009725AD616C88107E9E85EA3832B390 /* Pod */ = { + isa = PBXGroup; + children = ( + A65D78F5333BB774AA455685A38C777F /* EXVideoThumbnails.podspec */, ); - name = "React-CoreModules"; - path = "../../node_modules/react-native/React/CoreModules"; + name = Pod; sourceTree = "<group>"; }; - 009C51A2701501821F87CBCF6497D66D /* Support Files */ = { + 019F4350E0E3F85B36E57E567F2CA562 /* Support Files */ = { isa = PBXGroup; children = ( - E2800914624977D069D1D05693D208F8 /* Flipper-PeerTalk-dummy.m */, - 83FFB31122ACD6342390D22F82E06526 /* Flipper-PeerTalk-prefix.pch */, - 5552D7AE40E5A50731F0F4C046F682DC /* Flipper-PeerTalk.debug.xcconfig */, - 23CBD9A37682B465F6CB75E650F8675D /* Flipper-PeerTalk.release.xcconfig */, + BA4C9A83EAC6E45C5DD4EDB018A07DBE /* FirebaseInstallations-dummy.m */, + 51409E6C143CBD10A7022D181AD05C97 /* FirebaseInstallations.debug.xcconfig */, + 43D7B64570C40DF6E8433A263BC61A23 /* FirebaseInstallations.release.xcconfig */, ); name = "Support Files"; - path = "../Target Support Files/Flipper-PeerTalk"; + path = "../Target Support Files/FirebaseInstallations"; sourceTree = "<group>"; }; - 00ADBD0236ADCA79BCE5BE9B3FB7543B /* FlipperKitHighlightOverlay */ = { + 01C6E1CC34560087816F0483182D8E6F /* React-RCTText */ = { isa = PBXGroup; children = ( - 998986BB30812E936C369038CBD6799A /* SKHighlightOverlay.h */, - 1756CBAB34D943C6297BED0A55482AA7 /* SKHighlightOverlay.mm */, + 7DE8F262818B68B3D9479342809A3FA5 /* RCTConvert+Text.m */, + AF90DE3148D112B1E87789F6734CB18D /* RCTTextAttributes.m */, + 82C276D42E09666AD73E8CD1310CD202 /* BaseText */, + 6161E69692F046BEE09B40DE7057110E /* Pod */, + 367F75B5395814C95FBC6940706A38E4 /* RawText */, + DF8CDDFA41D40FD8761164362F20E2DF /* Support Files */, + C6B189E7E4E2519B41287C4F70A6F34B /* Text */, + 58D8349D9789571F86FEF50DE3522DB4 /* TextInput */, + 9222D8F2F2CCA954D801B29B58133336 /* VirtualText */, ); - name = FlipperKitHighlightOverlay; + name = "React-RCTText"; + path = "../../node_modules/react-native/Libraries/Text"; sourceTree = "<group>"; }; - 012DBFA344725E841C467E35D87FC881 /* EXConstants */ = { + 020A920469E387438DA839E40B50D1A1 /* Pod */ = { isa = PBXGroup; children = ( - BA3C1544B3D3A1541D6FC1E84475A9C8 /* EXConstants.h */, - D9F75E7DAE922168FF40B90D585476A7 /* EXConstants.m */, - 99A6421B152D69680B967E3A392F1F99 /* EXConstantsService.h */, - 2A213939D88D46C9D88D0BBCEF62E13D /* EXConstantsService.m */, - CB9661D71BCD7348E4BC7B92F1AD56D0 /* Pod */, - FDC62708DB0A95B2B84A97F1E0E256EB /* Support Files */, + 8EE238295A186AB79EFC2086EE6E8BF9 /* React-runtimeexecutor.podspec */, ); - name = EXConstants; - path = "../../node_modules/expo-constants/ios"; + name = Pod; sourceTree = "<group>"; }; - 02189358DA22899E52E53CE4299E2518 /* UMViewManagerAdapter */ = { + 020E6182E7808A696F57F9F3243842BC /* UMConstantsInterface */ = { isa = PBXGroup; children = ( - A8B24971382BB080E93170E98E414535 /* UMViewManagerAdapter.h */, - BB8D81B8EB25444591F57C018D815DEE /* UMViewManagerAdapter.m */, + 185FE4E0B9CA2A974DE8757BADB58270 /* UMConstantsInterface.h */, + 3C4CBE09F9D5E4F77764513A875EB80E /* Pod */, + 16B33FE0C28AB179DC57D4A264F93023 /* Support Files */, ); - name = UMViewManagerAdapter; - path = UMReactNativeAdapter/UMViewManagerAdapter; + name = UMConstantsInterface; + path = "../../node_modules/unimodules-constants-interface/ios"; sourceTree = "<group>"; }; - 0232CDC089ABCD0FFD2CD6C7209AFFCD /* Filters */ = { + 02440701E502651F0D4B592FE52DC73A /* Hermes */ = { isa = PBXGroup; children = ( - 3D6A7D1051A44C58772B267CE3C0CB9D /* BSGOnErrorSentBlock.h */, + FAD02732E02C52426AF72A7FD679A9C6 /* executor */, + 9D9202D8699EAC3357EF24651729ED7D /* inspector */, ); - name = Filters; - path = Filters; + name = Hermes; sourceTree = "<group>"; }; - 029BF0B569B93D06A7FB9DC6E0DE1338 /* ReactNativeUiLib */ = { + 02745E0F458036ABF70BF6BCD198622D /* rn-fetch-blob */ = { isa = PBXGroup; children = ( - D5F0CA470DA4BE6B46050DA749D431CB /* highlighterview */, - BB9FF11C4412FB2EBC8E2587466E69A1 /* keyboardinput */, - B16EB19843469B10D649ED357705821C /* keyboardtrackingview */, - 347C38F6F21989397AC3CB18A4E7C341 /* Pod */, - A58FB0DC3EEEF0A80F13C0D7CAC969AD /* safearea */, - 27C6A48BE3DEDE8FE6166EB7BF79F808 /* Support Files */, + 4151E6E8CD22D62817BFD176F46C47B2 /* IOS7Polyfill.h */, + CFD5D433CA806CF3EB22FB199349ADC9 /* RNFetchBlobConst.h */, + A17A3E33AEC9C005C0448DCCA03EAED5 /* RNFetchBlobConst.m */, + 89519AAA023D40C815D13A2C6446F331 /* RNFetchBlobFS.h */, + A973AC58D9A2C5888133161AC7B2981F /* RNFetchBlobFS.m */, + 0F482264A5F03184C2C8D7EB02669185 /* RNFetchBlobNetwork.h */, + E35B447FE84DFCBF82D5E0E79DEB9EFD /* RNFetchBlobNetwork.m */, + 30420862A390D1AE4CC457133E60F8FA /* RNFetchBlobProgress.h */, + C15BA64FED83321E6DDF17E582661D67 /* RNFetchBlobProgress.m */, + 6F826C12232902831C6A8A5B51932167 /* RNFetchBlobReqBuilder.h */, + 46D8AFCB9404B9613D562E0D7C40D619 /* RNFetchBlobReqBuilder.m */, + 71CD9E44DA64C989303E710807944A2E /* RNFetchBlobRequest.h */, + 0A72DCC2B270FAEF35327ABE4377E9AB /* RNFetchBlobRequest.m */, + EE145B526FD9C500E3EE81FEA9A86E11 /* Pod */, + 94044C0788A8BF35C5933953E6DCDD01 /* RNFetchBlob */, + 0BFCA3CAF2205B80603775C12C71E533 /* Support Files */, ); - name = ReactNativeUiLib; - path = "../../node_modules/react-native-ui-lib/lib"; + name = "rn-fetch-blob"; + path = "../../node_modules/rn-fetch-blob"; sourceTree = "<group>"; }; - 0310FA1F7CAEBC972DEA0F3438CB2395 /* KeyCommands */ = { + 031A407B0F437C4428E3DC6172F1922A /* AppDelegateSwizzler */ = { isa = PBXGroup; children = ( - BF72C69834CD282DFCE8ACCEEB7995E4 /* RCTKeyCommandConstants.h */, - 583CAA829AE25EB98694B65A874253F7 /* RCTKeyCommandConstants.m */, - 7BD4BC06C4F2B33F49A31B34CEFC5BAE /* RCTKeyCommandsManager.h */, - 598032C41ED7209D4D75542FF1256B60 /* RCTKeyCommandsManager.m */, - 878EAAEFA33FFD1622DBCF1CA2AAA4A4 /* Pod */, - 57607476FB45C52C9F3CF22F8AC2CEA8 /* Support Files */, + 2C53BA3A14F3E261645320BF646094F2 /* GULAppDelegateSwizzler.h */, + 8B523D4F8EE3938CDA5AD7F4FC0AD84B /* GULAppDelegateSwizzler.m */, + 8D357E39610B78B1B1423DF059D09C27 /* GULAppDelegateSwizzler_Private.h */, + BA0B17C6CC0345E297879CD97FD2DF7F /* GULApplication.h */, + 08DD1C8956EFC51591EE871B90105F17 /* GULLoggerCodes.h */, + 36B788886CC8AAF191D4241DB1468F25 /* GULSceneDelegateSwizzler.h */, + C7EF2F6D3CC60C1B5A2B7D4166352F68 /* GULSceneDelegateSwizzler.m */, + A66443B2E29B8D449409ECED0B36858A /* GULSceneDelegateSwizzler_Private.h */, ); - name = KeyCommands; - path = "../../node_modules/react-native-keycommands"; + name = AppDelegateSwizzler; sourceTree = "<group>"; }; - 038CFA8CF16A391D11D40F6BB3294922 /* TOCropViewController */ = { - isa = PBXGroup; - children = ( - 83BF47C14F8ECEF5838A4507B32CC1A7 /* TOActivityCroppedImageProvider.h */, - 4B0DA798E2D2355D319142E0A3A2AD19 /* TOActivityCroppedImageProvider.m */, - 257487F947497776522450F01A975F69 /* TOCropOverlayView.h */, - 6A0A2760653BF9EBB93B810586FD6825 /* TOCropOverlayView.m */, - ACDE026E7E3436E45FCF245D8CB49C47 /* TOCroppedImageAttributes.h */, - 4EBC54B71950E3E9223F51E241B05BA5 /* TOCroppedImageAttributes.m */, - 64AA081DD681754AE4C37B1CF1559595 /* TOCropScrollView.h */, - B8BFDD279AF1CA07792F3710FF5DC905 /* TOCropScrollView.m */, - 5ED1781E466357A234FAA7C7480F39C7 /* TOCropToolbar.h */, - 4835786E04114DA8AC9459D9771373BF /* TOCropToolbar.m */, - 5DB6C7D6E115FC52ECED1026C673AD3A /* TOCropView.h */, - 6F36E13AC167DFE778E66EEF82E1F9E6 /* TOCropView.m */, - 4F0EBDA87DC8D3A4C9A7FF510D285709 /* TOCropViewConstants.h */, - 51852D46308FFDE1FBDB5D68507E6D81 /* TOCropViewController.h */, - FB1C906AA0D780C3960F0FCABF91285B /* TOCropViewController.m */, - 495EB46C90284196792D3BC2F73D02C9 /* TOCropViewControllerTransitioning.h */, - 7B7B40FEF2CA07AB1DFF7B12D0DB76A7 /* TOCropViewControllerTransitioning.m */, - 6358C91D6EFFFEE83C8D79EAC09C685D /* UIImage+CropRotate.h */, - BA1EB84932C3877DF0FC3BAC3427CC29 /* UIImage+CropRotate.m */, - D7A69D80011F2C8C0C8461E0295C3A2D /* Resources */, - 542CE1C1019116EA2390CEE5E334025E /* Support Files */, + 03EE83CA2E12F4819FCB7A35023B202A /* Support Files */ = { + isa = PBXGroup; + children = ( + 52A8F8CC113E6CB9AD4B096E8BCA0DAA /* Flipper-Folly-dummy.m */, + 791CA9ACA4BD658A1CFAF394936B742B /* Flipper-Folly-prefix.pch */, + 04FE1C48C270E5E94A361C0453358D2A /* Flipper-Folly.debug.xcconfig */, + 3045E058279AE6D3C20DC67840145F8D /* Flipper-Folly.release.xcconfig */, ); - name = TOCropViewController; - path = TOCropViewController; + name = "Support Files"; + path = "../Target Support Files/Flipper-Folly"; sourceTree = "<group>"; }; - 06254E569651D28305BFE2D742C32E4F /* Nodes */ = { + 0422C2089F3FD212E766E374B893DD8D /* Frameworks */ = { isa = PBXGroup; children = ( - 6ED44C6E2CAA76255A8A8349F38A9EC4 /* RCTAdditionAnimatedNode.m */, - 87E47624EA5966C953C89E28C2FA8F10 /* RCTAnimatedNode.m */, - 3C4440B36E277CE16DA33BC400C130CC /* RCTDiffClampAnimatedNode.m */, - 2BA3E5792BCC8BDA3697E65514DAA0E4 /* RCTDivisionAnimatedNode.m */, - B1BC2E3C86586718127703C3E68A9E23 /* RCTInterpolationAnimatedNode.m */, - EBB7562BD808A9A1D1BC43A8E0459F7E /* RCTModuloAnimatedNode.m */, - 02FF1085A4CCD4E09581C17A9D3F00D0 /* RCTMultiplicationAnimatedNode.m */, - DAFAD979CBC200B5DB75C39E4AE29EED /* RCTPropsAnimatedNode.m */, - 8D9037CD1178822F4B7F101ED0CEE3EA /* RCTStyleAnimatedNode.m */, - 43CFFE187D922E2A69DF28EEEF6CB5D5 /* RCTSubtractionAnimatedNode.m */, - 43D4CFD7E0C1B4DBC898DD936DB82101 /* RCTTrackingAnimatedNode.m */, - 0A99368FA9B7C56371503B6CE44602A8 /* RCTTransformAnimatedNode.m */, - 70A8F6F5498FFF2183DE83495A2A6750 /* RCTValueAnimatedNode.m */, + DEB811EED7EEFCB022BCE01926F31D92 /* GoogleAppMeasurement.framework */, ); - name = Nodes; - path = Nodes; + name = Frameworks; sourceTree = "<group>"; }; - 078C4ABBF9B38F7D5C6DB692554B1C8D /* Support Files */ = { + 04D8BAAFF6AE8C429A1D1FC3440F57B4 /* Frameworks */ = { isa = PBXGroup; children = ( - 1139C8C34759E7654D2D541DBF65F60B /* Flipper-dummy.m */, - CC6DC74B878F52C4264D8737E8D26F2B /* Flipper-prefix.pch */, - 9661B1C4A2B56C984ADF56018468F19E /* Flipper.debug.xcconfig */, - 1F6519389DFA260CF2086318A834088C /* Flipper.release.xcconfig */, + 829A01EAD1D6E879313132D12CEDAC69 /* FIRAnalyticsConnector.framework */, + E828FF08F9796B4267F0A14AD9EB559C /* FirebaseAnalytics.framework */, ); - name = "Support Files"; - path = "../Target Support Files/Flipper"; + name = Frameworks; sourceTree = "<group>"; }; - 079D401F8814535095F94E5481AF2BB6 /* glog */ = { + 0531C2B0DF8E6412781508B88D131B1D /* platform */ = { isa = PBXGroup; children = ( - 2CE7BF3DDCFD977FF416D41F80C473E0 /* demangle.cc */, - 6FE8D5121E05847BA6EB20C418665D7B /* log_severity.h */, - 76A2FBF4184A2FCA5AC7623C4BC03C3C /* logging.cc */, - 9572A0E17A29F17FD5B5BA89C0AB5DE0 /* logging.h */, - 421A4791005C1BA0283FE5ED2FEEF2AF /* raw_logging.cc */, - 33CA2D791B052E6E11AC901556D70981 /* raw_logging.h */, - 16A223CEA878D93518E9E43F6E112732 /* signalhandler.cc */, - 9F9676C4A5E6C9AE62620BAF6A929F33 /* stl_logging.h */, - 09548D9C5FD0A5969D3B8EF8CA6B4A54 /* symbolize.cc */, - 20FB1C46B3A480564D18373330A4363E /* utilities.cc */, - 1D0833EFB29C9DBA18B45BB7E8104330 /* vlog_is_on.cc */, - 8DAEA4597188EA7C15AAD0C4B323ECE1 /* vlog_is_on.h */, - 7383E688697BCB70812C71EB0457B46D /* Support Files */, + 18182F70DC4A4C8EEA56E79A5E180921 /* ios */, ); - name = glog; - path = glog; + name = platform; + path = react/nativemodule/core/platform; sourceTree = "<group>"; }; - 08493E7480FC1038F8F5F21F1D41AA2B /* Pod */ = { + 05431B8BCA564B7B217DE41FBECE480B /* Support Files */ = { isa = PBXGroup; children = ( - E384D9EEFFAFC41DAC815088C09F4FA1 /* README.md */, - 281DED7A5AC3482F24B86FA5ED70B94A /* RNRootView.podspec */, + 2F118897C006AB220C8163855124852B /* EXFileSystem-dummy.m */, + 5B967C4A932DDBBE4181F2AEDA62C2C9 /* EXFileSystem-prefix.pch */, + 8C449A90B85CFA57689DCD7524C8C627 /* EXFileSystem.debug.xcconfig */, + 86D87D5369397F87F8CA5DBEC4A1A801 /* EXFileSystem.release.xcconfig */, ); - name = Pod; + name = "Support Files"; + path = "../../../ios/Pods/Target Support Files/EXFileSystem"; sourceTree = "<group>"; }; - 0874FE68C60470262F19A57B0AC74BEB /* Support Files */ = { + 05F80AA363BD9F43E07C1846CF971054 /* Pod */ = { isa = PBXGroup; children = ( - 5DE1DEECA7B95C2F487E21F26B6995B3 /* RNDateTimePicker-dummy.m */, - F478FCC2423FF68BE7E0D0291906F44A /* RNDateTimePicker-prefix.pch */, - 1076C197124588FD6485535FFF0916BD /* RNDateTimePicker.debug.xcconfig */, - 1B5F6CEE5D7CFF670C9C2F1FC8621A17 /* RNDateTimePicker.release.xcconfig */, + 0C1A36B98A5D3CC289DC78A06B17012A /* UMImageLoaderInterface.podspec */, ); - name = "Support Files"; - path = "../../../ios/Pods/Target Support Files/RNDateTimePicker"; + name = Pod; sourceTree = "<group>"; }; - 091C7C2E680ABBE8944BB4E230A85B4E /* Support Files */ = { + 061BBADDD1C04A60F765A3ADD54B90C2 /* react-native-jitsi-meet */ = { isa = PBXGroup; children = ( - 6DD121FD76E97C58E23365FDFC628B14 /* EXImageLoader-dummy.m */, - 0A7C4523B69E2AA2672DFA346EE4BE43 /* EXImageLoader-prefix.pch */, - E1483CD8DB8D1F9F325FC40E006F8437 /* EXImageLoader.debug.xcconfig */, - E311AF75C55D8D925493BFE2F1C09138 /* EXImageLoader.release.xcconfig */, + B516B3668347996229395EAAAF8389BB /* RNJitsiMeetView.h */, + 787929CD1708FBBF19467CBBE9748112 /* RNJitsiMeetView.m */, + 3C559E3DA31957EBFEC0E161361DD497 /* RNJitsiMeetViewManager.h */, + 72F09B481BA119EF2EC7893B0A7171B0 /* RNJitsiMeetViewManager.m */, + 663EB3E9314FF758852926E5B5E70186 /* Pod */, + 3D1403CC59E007D9484B621FDBABFB60 /* Support Files */, ); - name = "Support Files"; - path = "../../../ios/Pods/Target Support Files/EXImageLoader"; + name = "react-native-jitsi-meet"; + path = "../../node_modules/react-native-jitsi-meet"; sourceTree = "<group>"; }; - 0928B51CE3E1E654EF6139AEC2243BD1 /* Nodes */ = { + 079A87B185079B110F17CB5E5A45B3DE /* Pod */ = { isa = PBXGroup; children = ( - 70D108EC355DF85A27E3C4DBC75DF773 /* RCTAdditionAnimatedNode.h */, - 56E5FA42808A7E3FA3882E05796F2BE2 /* RCTAnimatedNode.h */, - FCB95C6F1EA0545E85DE1112C478B3C7 /* RCTDiffClampAnimatedNode.h */, - ABC0FE0AC4418ABB1EABFD7ED37E3D6F /* RCTDivisionAnimatedNode.h */, - DF924119346381ACE894F12EB6E0AF5E /* RCTInterpolationAnimatedNode.h */, - FA71C084C162276FBC53CF96C82956E1 /* RCTModuloAnimatedNode.h */, - E75DC717CE866A378A65C768DBF983EE /* RCTMultiplicationAnimatedNode.h */, - E759369F67438720C9E32980E6886097 /* RCTPropsAnimatedNode.h */, - F9C5B792F5BED323EE2A3FD36FAE2E44 /* RCTStyleAnimatedNode.h */, - 5FE6C989797E55076A1A74AF992750C5 /* RCTSubtractionAnimatedNode.h */, - D570269BE6A7372A8F825DF7468EFFD9 /* RCTTrackingAnimatedNode.h */, - 03FBFF30594F0CEA591FF451970653F4 /* RCTTransformAnimatedNode.h */, - 2A2E31F1D554AB0E4ED50E5806B88B3E /* RCTValueAnimatedNode.h */, + 731D24C2903EFD112F0553EDDF09C149 /* UMCameraInterface.podspec */, ); - name = Nodes; - path = Libraries/NativeAnimation/Nodes; + name = Pod; sourceTree = "<group>"; }; - 09F60EF4922F0B81EC1E179E66BCF4B3 /* Support Files */ = { + 07CF9A0426612D8E6327C5BE5C6EA0F5 /* Support Files */ = { isa = PBXGroup; children = ( - C56282F270075C6B28A3525902415FFD /* FirebaseInstallations-dummy.m */, - 0A467EA9EDF19944AF6E37B46B9583FC /* FirebaseInstallations.debug.xcconfig */, - F37CF827ECF3CB523CFB5303EAEAC16A /* FirebaseInstallations.release.xcconfig */, + 11EB762104ABC3B16FD943E6556ABDD5 /* react-native-webview-dummy.m */, + 0B3F7CD8E591FB8336568A4AF891318B /* react-native-webview-prefix.pch */, + AE988DA3D13C903E9532F8EE8736A5B9 /* react-native-webview.debug.xcconfig */, + A3D9FFEE9CDAC88F236831ED1C8F83C1 /* react-native-webview.release.xcconfig */, ); name = "Support Files"; - path = "../Target Support Files/FirebaseInstallations"; + path = "../../ios/Pods/Target Support Files/react-native-webview"; sourceTree = "<group>"; }; - 0A40D5E22B5A4885069D0691AE56BE4D /* UMCameraInterface */ = { + 07F0D01F0C02EE2616A2C8F96CD710C1 /* highlighterview */ = { isa = PBXGroup; children = ( - D8D01FDBB13E714AD1DA9DEFE7609ACE /* UMCameraInterface.h */, - D06623C9D46AC971A9EC0B8EBE0104FF /* Pod */, - 3B8B1DF98386A9823FE884510BFF7F14 /* Support Files */, + 1F1AA338890A235F39D8D7B65FC57680 /* HighlighterView.h */, + 2B2DCB43C92C7E9AD3015561EEA0E1A6 /* HighlighterView.m */, + 431FFEB87527809BC652981A82736970 /* HighlighterViewManager.h */, + 93150517B8B8E33E2B6F5B6AE637F5C8 /* HighlighterViewManager.m */, ); - name = UMCameraInterface; - path = "../../node_modules/unimodules-camera-interface/ios"; + name = highlighterview; + path = ios/reactnativeuilib/highlighterview; sourceTree = "<group>"; }; - 0ABAE5E9F152B0A5E14A3544DEACD0E6 /* Support Files */ = { + 0879EF7176840201E9EED788C78A4EBC /* Pod */ = { isa = PBXGroup; children = ( - BF5415DDB9E4FE5CFE25F782B29B7048 /* React-cxxreact-dummy.m */, - C3ACADAB2B34DCE52AC92C162C411639 /* React-cxxreact-prefix.pch */, - 443779677599696911099703F1E27B42 /* React-cxxreact.debug.xcconfig */, - 31A1445D31D37F28425B528799C43F1F /* React-cxxreact.release.xcconfig */, + F3275BB538AA27CBC0BF22122EBD1AE2 /* EXConstants.podspec */, ); - name = "Support Files"; - path = "../../../../ios/Pods/Target Support Files/React-cxxreact"; + name = Pod; sourceTree = "<group>"; }; - 0B4F336C514F383337AD55993EEFA77B /* RCTNetworkHeaders */ = { + 08AB72E1B8EC2DFECAB3DB7700372052 /* Support Files */ = { isa = PBXGroup; children = ( - B55B72929A8B06D0ABA87CB5C61D4A15 /* RCTDataRequestHandler.h */, - 11DAD95EB383741A607A74A0E7158358 /* RCTFileRequestHandler.h */, - FC74A77541F9CFAEA3B265B8EBB9F649 /* RCTHTTPRequestHandler.h */, - C9F7D7AF91C7C14AE0306582CCBDCC34 /* RCTNetworking.h */, - 1A7CE26C0CA1D4575095C3AD73588D7B /* RCTNetworkPlugins.h */, - 78B7E72795E2B29EDDE0ACDB1A9D248B /* RCTNetworkTask.h */, + F5EE5C65D649197C91054743EE3A0C64 /* FBReactNativeSpec-dummy.m */, + 7554BB8935BF30544A1BAB1A315F547F /* FBReactNativeSpec-prefix.pch */, + C8F7F7F7E5E13629D7E1BB3CD2BF108C /* FBReactNativeSpec.debug.xcconfig */, + 63AE1B5A4BBCE6A5A6F03038206B99FF /* FBReactNativeSpec.release.xcconfig */, ); - name = RCTNetworkHeaders; + name = "Support Files"; + path = "../../../../ios/Pods/Target Support Files/FBReactNativeSpec"; sourceTree = "<group>"; }; - 0B53B07E2A4EBC1FA87BED8D187FEEE1 /* react-native-cookies */ = { + 08E55CCD326C30959D08132ACE42810E /* Support Files */ = { isa = PBXGroup; children = ( - 8443DF482A4A09A72E9EE2EF68264AA6 /* RNCookieManagerIOS.h */, - 810D5871ADA0B4191B15B5E4A9394733 /* RNCookieManagerIOS.m */, - 45936C54D08E5A57C991B0222E4E9BEF /* Pod */, - 5815DF1EE4F4138F356D334F99315099 /* Support Files */, + 15E5D39416253D4FF2FDDB79A68D2714 /* ReactNativeART-dummy.m */, + 1B5DF456870BB7C289A56F9C7F7DEE44 /* ReactNativeART-prefix.pch */, + 4C7756C6CDF52E752A2C7D304C9E42B5 /* ReactNativeART.debug.xcconfig */, + D90A7FB3CD7B561322A29DE92F22B920 /* ReactNativeART.release.xcconfig */, ); - name = "react-native-cookies"; - path = "../../node_modules/@react-native-cookies/cookies"; + name = "Support Files"; + path = "../../../ios/Pods/Target Support Files/ReactNativeART"; sourceTree = "<group>"; }; - 0B691A079711499CB39AA67B7945F227 /* Support Files */ = { + 09AF395FE807DB05976029397E70006B /* Pod */ = { isa = PBXGroup; children = ( - 2949045990424B924BB4ACE1FF5B0454 /* EXPermissions-dummy.m */, - 4A3539FC5276FDA9160CBF06662BF190 /* EXPermissions-prefix.pch */, - 120C448D23A1D2880C0A29639A4D28E3 /* EXPermissions.debug.xcconfig */, - EB549B703A202BC1F8F18BA6CA72C26B /* EXPermissions.release.xcconfig */, + FF840C6A2CD6C50E8290EA05801C39DD /* LICENSE */, + FBC504EDF59DE9270074FE8270F0E12D /* README.md */, + 6A23DD9A9377F492E87C66B5084AB7A7 /* RNBootSplash.podspec */, ); - name = "Support Files"; - path = "../../../ios/Pods/Target Support Files/EXPermissions"; + name = Pod; sourceTree = "<group>"; }; - 0B8BD02255C2CA937F4BF1379B80F7E9 /* Support Files */ = { + 0A82C1348040BFD7208A60737A8B6F47 /* Support Files */ = { isa = PBXGroup; children = ( - 54016B7EE3DEBAD705D147B677B5369F /* FirebaseCrashlytics-dummy.m */, - 3E6E94B693FE00876871B854A67A2A1C /* FirebaseCrashlytics.debug.xcconfig */, - 1AB2709DA658997009EE4C33507AAC44 /* FirebaseCrashlytics.release.xcconfig */, + 5985A7456A5B59AB64CBBCB991CB7E8F /* boost-for-react-native.debug.xcconfig */, + AF116B0C9DF3973E4D1C89D74AF2BEF2 /* boost-for-react-native.release.xcconfig */, ); name = "Support Files"; - path = "../Target Support Files/FirebaseCrashlytics"; + path = "../Target Support Files/boost-for-react-native"; sourceTree = "<group>"; }; - 0C72D09103A95D8FF37F9A28510E4133 /* Pod */ = { + 0B8837394CDED46C0DC539CDC0BAA01B /* Pod */ = { isa = PBXGroup; children = ( - E82511315009324355D2E12F76D4A1CD /* LICENSE */, - 8215C5F33AEA1B010AC029A40C872169 /* README.md */, - 1C363FF244E55F1750F22E78AB8BFCD8 /* rn-extensions-share.podspec */, + E3E4FA13F9AF4BE05DBAE8765242D98A /* LICENSE */, + 68B1895293A406187C0B0FA72328C9D5 /* README.md */, + E10CC49F53DBF6560D6A4321960C76BA /* RNConfigReader.podspec */, ); name = Pod; sourceTree = "<group>"; }; - 0E1EF7FD04745BCA08893FF3D93320FB /* Pod */ = { + 0BB054BEA3D0347C43EA3BBA4401701B /* UMAppLoader */ = { isa = PBXGroup; children = ( - 081CDA12B85E6970A4DD9FBE607A3AAB /* LICENSE */, - 25DB1A2CD425834D51DBF9951B90345A /* react-native-safe-area-context.podspec */, - 338D4E099E55BDD65470E14BF5332F87 /* README.md */, + 4B68FEE532B51AD6840FA5137DEB0D9B /* UMAppLoaderProvider.h */, + 7159B60E5811C6AD44AB91EA1C4150DA /* UMAppLoaderProvider.m */, + 99F2B343D25FFBB43360EB303CBD1837 /* Interfaces */, + E76E2D664D429BC0F4E8FCF6A352A5D6 /* Pod */, + A65D704F029F2A573E976AFA403D0681 /* Support Files */, ); - name = Pod; + name = UMAppLoader; + path = "../../node_modules/unimodules-app-loader/ios"; sourceTree = "<group>"; }; - 0EC07F7CFED2E62168EAF9271FDC23A1 /* Pod */ = { + 0BFCA3CAF2205B80603775C12C71E533 /* Support Files */ = { isa = PBXGroup; children = ( - 51B85E44A450130E8077001DE97DDC86 /* LICENSE */, - B248EA8DEF3C40A83D0E1F7246D05B6D /* README.md */, - 43872AEC50F02D54258971586CCE5B86 /* RNGestureHandler.podspec */, + F54EF9636F8EF8D470087BFD45504BAA /* rn-fetch-blob-dummy.m */, + E351D7A5203DFA3D8E7AC5382744D494 /* rn-fetch-blob-prefix.pch */, + A5F4D12F5974C98D275970FC61C62409 /* rn-fetch-blob.debug.xcconfig */, + 6F68D16045CC60438ED6D125C1CA2A95 /* rn-fetch-blob.release.xcconfig */, ); - name = Pod; + name = "Support Files"; + path = "../../ios/Pods/Target Support Files/rn-fetch-blob"; sourceTree = "<group>"; }; - 1021CBFA06415F01DCAA687139697296 /* Support Files */ = { + 0CC8E41958AA73464796D17389A66F63 /* React-callinvoker */ = { isa = PBXGroup; children = ( - C9C9A2BE6194882D45341E0D8CEE3C18 /* React-RCTVibration-dummy.m */, - FDD204D61CE2D011A95FD93EAA25308B /* React-RCTVibration-prefix.pch */, - 088D72C0DB7BE89FA9B04E9896A589D5 /* React-RCTVibration.debug.xcconfig */, - C2D9F45693D8E29A6B33D948513BB8DE /* React-RCTVibration.release.xcconfig */, + 7A4D1A146DDD39ADA896AB3176A6E656 /* CallInvoker.h */, + 754270423BF0585DCC816E300640291D /* Pod */, + 8A2F0834909969C0738C3EDEEA4E8980 /* Support Files */, ); - name = "Support Files"; - path = "../../../../ios/Pods/Target Support Files/React-RCTVibration"; + name = "React-callinvoker"; + path = "../../node_modules/react-native/ReactCommon/callinvoker"; sourceTree = "<group>"; }; - 103CC2A89D0EE2F2E5F23C4F506954E2 /* Support Files */ = { + 0CD485A836B8131F12C0159728194E8C /* Profiler */ = { isa = PBXGroup; children = ( - C2CC138F3EBFE8E6414F78D511270704 /* EXAppleAuthentication-dummy.m */, - 54D44305B2A10ACB385926B44F27A128 /* EXAppleAuthentication-prefix.pch */, - 95A1C64F658C55F9743F8E5CECFBC7CF /* EXAppleAuthentication.debug.xcconfig */, - 5FAA21C6C0C9980EEE59850DC56F4710 /* EXAppleAuthentication.release.xcconfig */, + 86A212C5E3B3DA33A5250FFA9E9D75AB /* RCTMacros.h */, + 873F8ECACC5B3D4A0E4C64AF3AE47B17 /* RCTProfile.h */, + B904EDD7A21392FF5218370D4C03BFD1 /* RCTProfile.m */, + D808E4B04022E80B4F0087DC180B0FC4 /* RCTProfileTrampoline-arm.S */, + B803800C2D87BA47D7D6517CCF93757A /* RCTProfileTrampoline-arm64.S */, + BBB6D44F456CC2B7A2B9F95DBCBD4686 /* RCTProfileTrampoline-i386.S */, + 9A4C7AA591718F482310B7277EDA147E /* RCTProfileTrampoline-x86_64.S */, ); - name = "Support Files"; - path = "../../../ios/Pods/Target Support Files/EXAppleAuthentication"; + name = Profiler; + path = React/Profiler; sourceTree = "<group>"; }; - 10E3478B3B64EB823B56561B7731BC42 /* Support Files */ = { + 0D5E0ED848823C4A9CF4732DBBB9A3AD /* Pod */ = { isa = PBXGroup; children = ( - E55D28053CED82024BBF5606B125B4AD /* RNCMaskedView-dummy.m */, - 02F8CC2129A43B8BD6053EF5DC64F1E5 /* RNCMaskedView-prefix.pch */, - 34E97ED2E8B3D9030E0FEFDF1E0F0EA0 /* RNCMaskedView.debug.xcconfig */, - 939D19E9FA261043EA8E6CF511D9E404 /* RNCMaskedView.release.xcconfig */, + 08DE0898B00448B8DC9EBFBA87B9844D /* Yoga.podspec */, ); - name = "Support Files"; - path = "../../../ios/Pods/Target Support Files/RNCMaskedView"; + name = Pod; sourceTree = "<group>"; }; - 10F86E66E0536F796186D4071AAF9666 /* BugsnagReactNative */ = { + 0E172DF09E7F1268E0CDEF4A0B36AB95 /* BugsnagReactNative */ = { isa = PBXGroup; children = ( - 6E14464624A16C87A3E048A7BD5D4F68 /* BugsnagConfigSerializer.h */, - 4EA0D8520C977127B4CFE93E6E40CCE0 /* BugsnagConfigSerializer.m */, - A8328F6F268BE9F930BB69676027BA42 /* BugsnagEventDeserializer.h */, - 73F9C5FBFBBC5A005A4AE1FE0927089F /* BugsnagEventDeserializer.m */, - C5FD43B9AFE049BA54629F93A34D0BF1 /* BugsnagReactNative.h */, - 49835B928F1BD03B9BF8EFAFBC8B036A /* BugsnagReactNative.m */, - 208FA81342E93D1EEFE65C0E4EF49F03 /* BugsnagReactNativeEmitter.h */, - F136C717FB0B4F7B7A23AF3EFAA2FF44 /* BugsnagReactNativeEmitter.m */, - 2BE066C60E8DFBD22751401C52C64631 /* BugsnagReactNativePlugin.h */, - BED4D545EAB9F7C4A9B42407D30E8441 /* BugsnagReactNativePlugin.m */, + 8169289A16172E9EC0D9970D9FADC3E1 /* BugsnagReactNative */, + 9821E66DDE02061CB0BD6C0C9AEA6FA6 /* Pod */, + 288BBD8916459D9422CCB853F0BB9F76 /* Support Files */, + 8CCF397632B51A60332B1A50F3EA6367 /* vendor */, ); name = BugsnagReactNative; - path = ios/BugsnagReactNative; + path = "../../node_modules/@bugsnag/react-native"; sourceTree = "<group>"; }; - 111AAA3ABE57A743F5849CC9525371AC /* Support Files */ = { + 0F66B4413A10C1E0CC06A99221453CB5 /* RNCAsyncStorage */ = { isa = PBXGroup; children = ( - 4F04F335D30B43118E83087B7DED120B /* UMReactNativeAdapter-dummy.m */, - DA78EECCA50E297CC158E7C7315675C1 /* UMReactNativeAdapter-prefix.pch */, - 3A01F89A0B9A22D8CBF6CF6A3DB222EB /* UMReactNativeAdapter.debug.xcconfig */, - 9591C5298AF54D3E53DC9613C0E2ED57 /* UMReactNativeAdapter.release.xcconfig */, + 81240458546B2B5965C60E0E8653C7AA /* RNCAsyncStorage.h */, + 713D18A0F927E82D9EE01184D3A0711F /* RNCAsyncStorage.m */, + 0ADBD03590FCD60BAC613B75EB93D7DC /* RNCAsyncStorageDelegate.h */, + D0E93366D7E2948A104118F40D29D92B /* Pod */, + 6F61755232548064EB42E4964FC94041 /* Support Files */, ); - name = "Support Files"; - path = "../../../../ios/Pods/Target Support Files/UMReactNativeAdapter"; + name = RNCAsyncStorage; + path = "../../node_modules/@react-native-community/async-storage"; sourceTree = "<group>"; }; - 11C0389B6A245AB145289CFD7F7A5799 /* react-native-background-timer */ = { + 0FCC55AC41E618C2997586BC5DEABFC9 /* RCTTextHeaders */ = { isa = PBXGroup; children = ( - F59574F26EAD934B166EC8F9C822F2FD /* RNBackgroundTimer.h */, - 23F38D8B8018A84BB11E245D1381A5EA /* RNBackgroundTimer.m */, - E94FB031F791D1DED308D8442EA23A97 /* Pod */, - 53DCBAA1138E63235F18EB007CD16B9D /* Support Files */, + F7952731325EA7F2FB0479BCE002FE43 /* RCTConvert+Text.h */, + 4AE859DB73B60453019C741A10E0F20C /* RCTTextAttributes.h */, + 7D5C34423FCB2323B104CA61F72766FB /* RCTTextTransform.h */, + A12E3B0371B168AF2CAC230BC71C36EC /* BaseText */, + 6840231AA9584C555921309B24EDF0EE /* RawText */, + 78E1701265C6FD74DA05460F7CA7125C /* Text */, + A947B713FC38E284C5C49533C4AC46C7 /* TextInput */, + A10CFB818384E813405312FCF799F09C /* VirtualText */, ); - name = "react-native-background-timer"; - path = "../../node_modules/react-native-background-timer"; + name = RCTTextHeaders; sourceTree = "<group>"; }; - 11E103C4A6EAB85209C2CB12C4BAB44F /* Support Files */ = { + 0FCD8CB8399625D637A48F4F8D718CA5 /* turbomodule */ = { isa = PBXGroup; children = ( - 5F9930C748EC0C40FBA684586C473A75 /* hermes-engine-copy-dsyms.sh */, - 777C2BBE7EEA5B56B30C1A83D6FED868 /* hermes-engine.debug.xcconfig */, - C75C6B8A5C0B8A7BE9CF9D1D54519831 /* hermes-engine.release.xcconfig */, + 54615E3642586D024F48C2DEF8F3185B /* core */, ); - name = "Support Files"; - path = "../Target Support Files/hermes-engine"; + name = turbomodule; sourceTree = "<group>"; }; - 120C1FBC82BE1BC7AE0D71BD6C462DD0 /* Pods */ = { - isa = PBXGroup; - children = ( - 2DEE7E4490FAF113AC4089C451217EDD /* boost-for-react-native */, - 2061B7311BF445D14F55305B58ED8988 /* CocoaAsyncSocket */, - 16645291BE2C26B99026DFA742E76664 /* DoubleConversion */, - 3569ED544B7FB5799855EF9E104057CD /* Firebase */, - F45F99239F8D620BA75E45AC10FCBE50 /* FirebaseAnalytics */, - 922BB6498D6D5011745AD9FBB7727AF4 /* FirebaseCore */, - 3C340826F2D3F6DEC6DDD45CDAE54284 /* FirebaseCoreDiagnostics */, - AFC41DCED6C84C0E3D3864337005B4FF /* FirebaseCrashlytics */, - 882258EDA3057FBDBA54EAF0089FA8F1 /* FirebaseInstallations */, - C8A8E855EDDC87385228AF9B4F73D7ED /* Flipper */, - DE69EEF3E4308F8C93489B04B112E51B /* Flipper-DoubleConversion */, - 33C44897323E8C824AD5ECFD9CF54193 /* Flipper-Folly */, - FDE591237FAC89F53367CD509516E292 /* Flipper-Glog */, - 1C510A0633AA2F02AED3612F6DBCC490 /* Flipper-PeerTalk */, - EED5E57AA1C7DF8F3937866EF0FFBFC7 /* Flipper-RSocket */, - B61A56661EF0A5EC24AF28A604FEC43D /* FlipperKit */, - 079D401F8814535095F94E5481AF2BB6 /* glog */, - 6F5C12627FE5AA5217A5A9F537485EA2 /* GoogleAppMeasurement */, - A9146119A42942F30E1D9115B834BF8A /* GoogleDataTransport */, - BAD71722BBC8434CD53F97DB4A5FEFCC /* GoogleDataTransportCCTSupport */, - EEC72927606E0CC1947DF352C60A3014 /* GoogleUtilities */, - F9B45698BD58555FD6D0225DD72AF051 /* hermes-engine */, - 19BCBCA23754C003B87C6264595C711B /* JitsiMeetSDK */, - 609D88F4210B15C54BF80F69AA48082C /* libevent */, - EC490A32C6CF61E09B0AAC527BA6CE84 /* libwebp */, - 27F422F53DA14B74AE0EF0CC5DC4DA05 /* MMKV */, - 95C2B1AB6A1E297FCF2D154CE0138FEC /* MMKVCore */, - 549F03B7AB363968A96C1850917DEAB1 /* nanopb */, - 8E3B9973267DC0A13BA8F6ED59216B83 /* OpenSSL-Universal */, - DEB1871F6BB119B54DE25704596197E0 /* PromisesObjC */, - 366FD0BAA8D9A84B9FEB1AECF2F017A0 /* RCT-Folly */, - 9EDC4943333AC93B4B0A6E28BAECFEB2 /* SDWebImage */, - 1FC1040188BBDF21303EB3FECEB54093 /* SDWebImageWebPCoder */, - 038CFA8CF16A391D11D40F6BB3294922 /* TOCropViewController */, - D8E8B0BA35328310950576D70F36C2C5 /* YogaKit */, + 1092B5ACB401ACDEB68762646F93BD21 /* react-native-background-timer */ = { + isa = PBXGroup; + children = ( + 304AD20C70DB3E64039789A15DBB9415 /* RNBackgroundTimer.h */, + 6E3F8039F3E6487E7B3E9B47C2103F5A /* RNBackgroundTimer.m */, + 17FE0EC81996A8E5CB74006D1EE15E44 /* Pod */, + 2225B2E0BF601A1D44C34A5B03A44546 /* Support Files */, ); - name = Pods; + name = "react-native-background-timer"; + path = "../../node_modules/react-native-background-timer"; + sourceTree = "<group>"; + }; + 1249786ABBBEC1AEB532934B9452FC3C /* RNFBApp */ = { + isa = PBXGroup; + children = ( + 7E8306194B37FF93351C45CE032D09DB /* RCTConvert+FIRApp.h */, + D5EAA763AC237A7062340F64F2368CED /* RCTConvert+FIRApp.m */, + 81E711EDF86BDA4016B5F2285F371B00 /* RCTConvert+FIROptions.h */, + D27E33A14AD00A478FDF10B3EE52BF87 /* RCTConvert+FIROptions.m */, + 92931E89F8A7F0F1C206F2E85A98BBE6 /* RNFBAppModule.h */, + E20CAC7035E523A79C4F926DC98E7941 /* RNFBAppModule.m */, + 67884F02AFA4A4C5CD877BAE71140A8E /* RNFBJSON.h */, + D5C829CCC3F442A701CD2E2F09B739CB /* RNFBJSON.m */, + 5D5D617BF1BC0026ECDB3CAFB3817335 /* RNFBMeta.h */, + 39F32567CACF1FECCE5A668745D14D17 /* RNFBMeta.m */, + 60C1D01E4D0506C274000D49DB12BC39 /* RNFBPreferences.h */, + AE8686E24AB11F8CD87A9FA78E5EB6F6 /* RNFBPreferences.m */, + 031CD10AFB96D37EFA1EDE05350F7CC8 /* RNFBRCTEventEmitter.h */, + C49B83D58BE9FC604375C33DAA92C8A0 /* RNFBRCTEventEmitter.m */, + F8763C6057AB617F7452C58585044056 /* RNFBSharedUtils.h */, + C270D3C8DD62D73590FDBDB26EFA004D /* RNFBSharedUtils.m */, + 94D0F71569ECB5CA48D1300C73C7A995 /* RNFBUtilsModule.h */, + 88C029A7ED9C2B67B1F4E99BF9082AD8 /* RNFBUtilsModule.m */, + 9B448EEF196BC34CAABD90DDD6E824BD /* RNFBVersion.h */, + 9786BDA3897B7B925F5A1BE2BDCC00A3 /* RNFBVersion.m */, + BC8C7A68F41D43C506EC383220590D0C /* Pod */, + CF53A53A20801CEDA39635D18DC89D2C /* Support Files */, + ); + name = RNFBApp; + path = "../../node_modules/@react-native-firebase/app"; sourceTree = "<group>"; }; - 13EC029082B3E3E2E6E3AB5D12656686 /* Support Files */ = { + 14018DD87B4CEC68F8478D89187C85BE /* UIUtils */ = { isa = PBXGroup; children = ( - 04CFEFB3F1120ED65335C3CA7E6A4ED3 /* react-native-orientation-locker-dummy.m */, - 2907CC3C454CF4176D9898F9A569C05A /* react-native-orientation-locker-prefix.pch */, - 7B2B988372B94744CFCB043C04181A2F /* react-native-orientation-locker.debug.xcconfig */, - 0559FF4F31D9F39593DA553690AC4BBF /* react-native-orientation-locker.release.xcconfig */, + 8D3F832CBFE1481C2D75D252A84A5CD7 /* RCTUIUtils.h */, + CD4E5B90BB7D8FF7C8D77F0548A70E5B /* RCTUIUtils.m */, ); - name = "Support Files"; - path = "../../ios/Pods/Target Support Files/react-native-orientation-locker"; + name = UIUtils; + path = React/UIUtils; sourceTree = "<group>"; }; - 1431C1F2FD53BA86D5FC99BAE55DEF1C /* Support Files */ = { + 14287E22BFC541D7E1B1DA5A41EB49D4 /* EXAppleAuthentication */ = { isa = PBXGroup; children = ( - 3F813FC47D3E286B891888504333930C /* CocoaAsyncSocket-dummy.m */, - FBD951D0B0CC459A4AC6A1C86491F255 /* CocoaAsyncSocket-prefix.pch */, - ACC0F4349D58D335B27F1282C6714108 /* CocoaAsyncSocket.debug.xcconfig */, - 5882B802CF53A5BD9EDA6D07631B851F /* CocoaAsyncSocket.release.xcconfig */, + 6B89B5A3359D59632830F00672C3BE33 /* EXAppleAuthentication.h */, + 9193DB1178F58229FE5634006E64A332 /* EXAppleAuthentication.m */, + EC60535B983E35A579A059DDDC106B11 /* EXAppleAuthenticationButton.h */, + 842A4201E90DF456D92F4F226977EE73 /* EXAppleAuthenticationButton.m */, + D9B81C1FE905D5C9E63A64EB76498264 /* EXAppleAuthenticationButtonViewManagers.m */, + ACCE3F9E79A8D57667C0A1EEC19B960F /* EXAppleAuthenticationMappings.h */, + 47DC74C70FADE5A2C3FC4104F57341ED /* EXAppleAuthenticationMappings.m */, + DCBC7AF49AE6BD3BFE71EC733783741F /* EXAppleAuthenticationRequest.h */, + 5468AAE699A2ACA0AAD80F3F1FF37684 /* EXAppleAuthenticationRequest.m */, + DB97AA1A48D6FB430A869E9290893242 /* Pod */, + DEC3FB23FC7838128C08F7B54D3610A0 /* Support Files */, ); - name = "Support Files"; - path = "../Target Support Files/CocoaAsyncSocket"; + name = EXAppleAuthentication; + path = "../../node_modules/expo-apple-authentication/ios"; sourceTree = "<group>"; }; 14365716044418A82E6DD14AA8D16049 /* Pods-defaults-RocketChatRN */ = { @@ -15017,3545 +14719,3452 @@ path = "Target Support Files/Pods-defaults-RocketChatRN"; sourceTree = "<group>"; }; - 14B0874027965AB0076A22C974812618 /* Pod */ = { + 1462FF17D85C9E346EBB74DAB06AF65B /* Support Files */ = { isa = PBXGroup; children = ( - 7DDAD7B74DF964029D8C8E0445940E3D /* UMFaceDetectorInterface.podspec */, + D6E7E5C984A7CE02FD4AD0154690A7A0 /* React-runtimeexecutor.debug.xcconfig */, + 164CF990B6AC6234874C2E2172DF3099 /* React-runtimeexecutor.release.xcconfig */, ); - name = Pod; + name = "Support Files"; + path = "../../../../ios/Pods/Target Support Files/React-runtimeexecutor"; sourceTree = "<group>"; }; - 15370399CFB593553101E73843678C13 /* react-native-blur */ = { + 1596C653533EB76110C383C74B1800CC /* EXPermissions */ = { isa = PBXGroup; children = ( - 501761ADCF286CCADF126E860D725360 /* BlurEffectWithAmount.h */, - 67CAA565D53A463C56D681FD8D161D9F /* BlurEffectWithAmount.m */, - C6FC6468868664B70D3E281882C24504 /* BlurView.h */, - D3B33FD155FD295BAA0410C2986FCA37 /* BlurView.m */, - F1CAFDC9749A658C4C770C094DF84470 /* BlurViewManager.h */, - 9CA76A689A2C2A3731103D8254D9FCA7 /* BlurViewManager.m */, - E65F59936EEA71AA441C0A9D942FFAEA /* VibrancyView.h */, - 7E329469FAA7DDFFCC66C76EDC885390 /* VibrancyView.m */, - B1B5F8F61C6845AF170F2EED2DAE8326 /* VibrancyViewManager.h */, - A60901098A81B5D3F5D589CC582F5A4F /* VibrancyViewManager.m */, - 910422524195BA4E7726E48984121CCA /* Pod */, - B864EE777F6E3ED39E767110907AB296 /* Support Files */, + C47D3095036C31C6B96CA8592A209873 /* EXPermissions.h */, + 5697C390F57A4F934D4B97888CC0ED8C /* EXPermissions.m */, + ED6230AA27C1221321280A84565C2157 /* EXReactNativeUserNotificationCenterProxy.h */, + 0A848E516FF5E4906E2FE4906CF53101 /* EXReactNativeUserNotificationCenterProxy.m */, + B6B68E47A39DD1B48632891ECF353A77 /* Pod */, + 68A840BBAFD32D0B957C61178D5963A7 /* Support Files */, ); - name = "react-native-blur"; - path = "../../node_modules/@react-native-community/blur"; + name = EXPermissions; + path = "../../node_modules/expo-permissions/ios"; sourceTree = "<group>"; }; - 162A0E35DD751790684EC0010D116703 /* Support Files */ = { + 16141671EB0C81B0E6793AC999981E49 /* Support Files */ = { isa = PBXGroup; children = ( - 9973427BC849E103A860FA21364BE7BB /* React-RCTText-dummy.m */, - C7CC87F7EED5A5012C03710749B33402 /* React-RCTText-prefix.pch */, - C06B1CFDE7B4DF08E03F2CC199843255 /* React-RCTText.debug.xcconfig */, - 83FC195C5C31491E3BCB9BAD956650FE /* React-RCTText.release.xcconfig */, + D5BCB869F0778DBD7819480C485B6BCB /* UMCore-dummy.m */, + C330B436526E5A04D2C6503FBE48A1E4 /* UMCore-prefix.pch */, + A50292957C3E70705B878E8D24C8FFC2 /* UMCore.debug.xcconfig */, + 483DE237053E6501C418813E704C1737 /* UMCore.release.xcconfig */, ); name = "Support Files"; - path = "../../../../ios/Pods/Target Support Files/React-RCTText"; + path = "../../../../ios/Pods/Target Support Files/UMCore"; sourceTree = "<group>"; }; - 16645291BE2C26B99026DFA742E76664 /* DoubleConversion */ = { - isa = PBXGroup; - children = ( - E2775552BE0BE024476C10F95F7A12A2 /* bignum.cc */, - F6EA10A90AA1593D6A98F29E04F47B9E /* bignum.h */, - 14BDA591D15263674DB406B72E60712C /* bignum-dtoa.cc */, - 41B4DD6B88E7EA1B7760F352EBEE8C01 /* bignum-dtoa.h */, - 73BE7F7E69A8E5DF009A8FD8C3FE67B6 /* cached-powers.cc */, - 142DDC0602F382620626934657D3292E /* cached-powers.h */, - A045463B429A15AE4E7D8C9C7D3D25CC /* diy-fp.cc */, - 5DA06A75A3E5419934A4FD58166B2332 /* diy-fp.h */, - 54E3357E369C5F5A2A821A386ABF801A /* double-conversion.cc */, - 45688CB7F4790EFA9F1BA88B21774843 /* double-conversion.h */, - F1D841594AC0B3715C4A76A17BDB42B0 /* fast-dtoa.cc */, - 4647C9AE1DB91B4C22C79A10ACFCDDC6 /* fast-dtoa.h */, - C5FBB4CF298ADFEDE3E0D4083594D093 /* fixed-dtoa.cc */, - 52AC005AA38CFB40CD236E225477B6B6 /* fixed-dtoa.h */, - EA12FAEFE8EE553CC6DEF4727ED0D5FD /* ieee.h */, - 7ABB4E8B99C98B574CB424B8DDFAA63C /* strtod.cc */, - 97D8DC1607DCE53508DE8A2DF929757A /* strtod.h */, - 845121F58E60C9853B35C0969291ADC2 /* utils.h */, - 6665EACE47279D3879B88B303EA8C471 /* Support Files */, + 169BF91446CE21DBD4A643C047DF3BDB /* react-native-mmkv-storage */ = { + isa = PBXGroup; + children = ( + 937643CBD5E1179457B43E9615FDE49F /* IDStore.h */, + 0F99C17F54AFF30DC1CC8A0FCED7A624 /* IDStore.m */, + A88C28AE44EA01E6C1E91DDE5C823B4A /* MMKVStorage.h */, + 35A9D47A4ABC348BC5E30791D60A4626 /* MMKVStorage.m */, + 3BEAA460A23771D599DF023A79A4EA4F /* SecureStorage.h */, + 5EDD6E0F5C05F19348940A2935DDABAB /* SecureStorage.m */, + D241A7C39A64E6352F74442DF94CADAC /* StorageGetters.h */, + 213D58F4C36044D2D7244175DCDF0213 /* StorageGetters.m */, + 799FDB7BADF4CD47827FBF0CABCDF14B /* StorageIndexer.h */, + 14159E6EF3CEA3BC20EB32C69B33E151 /* StorageIndexer.m */, + 7EF55F898C1187358F49B84B1A43897E /* StorageSetters.h */, + 6C074DF871C0E31CBD4C7796492FC54B /* StorageSetters.m */, + 34FA04AD1A93F9D96FE7A369171E49A7 /* Pod */, + 4302F6E45343B523EB7CD942575C7057 /* Support Files */, ); - name = DoubleConversion; - path = DoubleConversion; + name = "react-native-mmkv-storage"; + path = "../../node_modules/react-native-mmkv-storage"; sourceTree = "<group>"; }; - 16CEF3BFD35752F2FF9D0834B94F1BF3 /* Support Files */ = { + 16B33FE0C28AB179DC57D4A264F93023 /* Support Files */ = { isa = PBXGroup; children = ( - DC80956E306D104D9DA8EE53BC5F76CE /* PromisesObjC-dummy.m */, - 20FC4995E75BF49DB27DB50D147EE508 /* PromisesObjC.debug.xcconfig */, - 3EBB8DE63D81A58A5C248488CF5C0F61 /* PromisesObjC.release.xcconfig */, + 192709148C6C37D9585AD5551089661E /* UMConstantsInterface.debug.xcconfig */, + BD3FAD946280A369B7E7C125D630B8F2 /* UMConstantsInterface.release.xcconfig */, ); name = "Support Files"; - path = "../Target Support Files/PromisesObjC"; + path = "../../../ios/Pods/Target Support Files/UMConstantsInterface"; sourceTree = "<group>"; }; - 16DF97173707887DEFD155929A3E8141 /* RCTWebSocket */ = { - isa = PBXGroup; - children = ( - 9E28708E421A551C02DCD2DDE407CF2A /* RCTReconnectingWebSocket.h */, - 0DF5EBAE45D17E0DE1799E01B3B01984 /* RCTReconnectingWebSocket.m */, - 9B4E35C0E3E457D89A4DF2403BB432CA /* RCTSRWebSocket.h */, - B04A0DBA2F42C8B8861D99EDCA183129 /* RCTSRWebSocket.m */, + 16E7F4000344A0D587E2176D60EBEC1E /* Development Pods */ = { + isa = PBXGroup; + children = ( + 0E172DF09E7F1268E0CDEF4A0B36AB95 /* BugsnagReactNative */, + 14287E22BFC541D7E1B1DA5A41EB49D4 /* EXAppleAuthentication */, + 9921FA0EA57C303717FD7E5912AAB6C7 /* EXAV */, + 4CFBA9F5A7A1CC89578660641C21D278 /* EXConstants */, + 87500C0AA83653610134C8B5ADCB6251 /* EXFileSystem */, + 69E11B620648CA8B2699E3CC2AC431C2 /* EXHaptics */, + 61877A8748423FFF3CF7D55415300F52 /* EXImageLoader */, + 1A260AB19E59CBDB9D05DE10E083FC7F /* EXKeepAwake */, + B27C895CADD10533C9288543D6F0608F /* EXLocalAuthentication */, + 1596C653533EB76110C383C74B1800CC /* EXPermissions */, + AF28A50A66A77AF50E2C75B2A5AC8382 /* EXVideoThumbnails */, + B19AFD4A83DFF79162CAB744C11C3BEB /* EXWebBrowser */, + B25D5D941AF9A43DF360085301502344 /* FBLazyVector */, + 4AD902E8BC6F826DC1812D17EBA0AF72 /* FBReactNativeSpec */, + 41E7F562A33E643AAB2F12AE16AB645D /* KeyCommands */, + B99419571BF39EC785167BAB46A2AB8A /* RCTRequired */, + 8792825AAC7B4D1E4CBB900241E5C241 /* RCTTypeSafety */, + F4221F5AEB772D27150794A606347C21 /* React */, + 0CC8E41958AA73464796D17389A66F63 /* React-callinvoker */, + C2A0D810A23C33BD458BACDE7CE68732 /* React-Core */, + E953694EDC1DEBD7F4BC682ADA71F768 /* React-CoreModules */, + 86BF88F7964EB2443BDFC97560C5FBE2 /* React-cxxreact */, + 979A52A97263342D2FFA17C38397AC71 /* React-jsi */, + B74A4B63D00F9598D73BAC60B20669E2 /* React-jsiexecutor */, + 2CE8507A5199BB65C80BB4427859E38F /* React-jsinspector */, + B2E0B5C358D426308490742D6084620B /* react-native-appearance */, + 1092B5ACB401ACDEB68762646F93BD21 /* react-native-background-timer */, + A99CDF1D089EC5D4FDC23BE56193B6E2 /* react-native-blur */, + BDDF511BF15219F579052C6E83C55E89 /* react-native-cameraroll */, + C754A7B52D17F949C00FA080E53A1F71 /* react-native-cookies */, + 7051A920BCFD95189911A2492637FDB7 /* react-native-document-picker */, + 061BBADDD1C04A60F765A3ADD54B90C2 /* react-native-jitsi-meet */, + 169BF91446CE21DBD4A643C047DF3BDB /* react-native-mmkv-storage */, + 7B14A42A0F49B2B11669730B07A0C484 /* react-native-netinfo */, + A092FE18116FB391CB36F0790FA5E069 /* react-native-notifications */, + 9AB1FAE78477FB9B4C6FE6292E96B7E9 /* react-native-orientation-locker */, + 516F3F1F36C549E9B8B45E504EEF5250 /* react-native-restart */, + 36D95FA44DE1D3857D3A160E5CE03303 /* react-native-safe-area-context */, + C10B43B4CADF6C984A9394FA56816717 /* react-native-simple-crypto */, + D19AD8738EB09E9E7F6E52F9CE8E208B /* react-native-slider */, + D66ECEA94DDCDB869E31C4FA3B83A1A7 /* react-native-webview */, + 648582A43A721F908DBEA66863645E7C /* React-perflogger */, + 7DA63835E94912AF76B1881B2CAFBDEA /* React-RCTActionSheet */, + 24D3B85EB1607E0DDB5E3FDF70E92A37 /* React-RCTAnimation */, + 6E5D6ED50617AAD58DB0A610CECFBBB6 /* React-RCTBlob */, + 20F63C19E476707173CC748E5728D96E /* React-RCTImage */, + A54E671FADA0EF3FCDCC3371ED3316BB /* React-RCTLinking */, + 33E5999D884556154B384831ED828BE0 /* React-RCTNetwork */, + 881D38AEE41E78CB0208C317E5D77970 /* React-RCTSettings */, + 01C6E1CC34560087816F0483182D8E6F /* React-RCTText */, + 95F8B28043E78DC91045B448DDED5FAB /* React-RCTVibration */, + 195D9C67A8214E1F551E03857E0331B4 /* React-runtimeexecutor */, + DCDC83EACA417CC9734283A73954FED7 /* ReactCommon */, + FFF476878A9F9892AF72126F4460BDF4 /* ReactNativeART */, + 27C328596D14C65BBC860EF603524A6D /* ReactNativeUiLib */, + 3559177BBD3FD43B8C0155B4CC917898 /* rn-extensions-share */, + 02745E0F458036ABF70BF6BCD198622D /* rn-fetch-blob */, + 557A82E50C2162BFDF00921CCA83FC3C /* RNBootSplash */, + 0F66B4413A10C1E0CC06A99221453CB5 /* RNCAsyncStorage */, + C799D902ECBA8F8EE41980F58BD4C152 /* RNCMaskedView */, + 7671EAB56461F5416F164118AF366DF2 /* RNConfigReader */, + 43DC8433B5D799477F7998EA57BCBB69 /* RNCPicker */, + 964B51959756A47179929D2076A8F8B3 /* RNDateTimePicker */, + 6DEFDD5642349BB692CDB2D60017A21C /* RNDeviceInfo */, + B87C495E9ECF384D6C09929B1C42FCD7 /* RNFastImage */, + E45F79926B1DEC76A444D347CF989A15 /* RNFBAnalytics */, + 1249786ABBBEC1AEB532934B9452FC3C /* RNFBApp */, + 927ABC54375E318142B31631AE6C8026 /* RNFBCrashlytics */, + EFFDB7E400016369BBC2E162311A357D /* RNGestureHandler */, + 259161F85DB34AB257C7988AFE010FCA /* RNImageCropPicker */, + 250AC13A6831470D1D4F4877AD099C46 /* RNLocalize */, + 1E779FDBD611AA2409B0E81A15A73A84 /* RNReanimated */, + 77F5A9550CF24A4156540CB862D9BE56 /* RNRootView */, + BEDC46B44CD676FCB81956C128C076C3 /* RNScreens */, + 5D7C02A3457AD5AE51F5E8746A5BF864 /* RNVectorIcons */, + 0BB054BEA3D0347C43EA3BBA4401701B /* UMAppLoader */, + FD5D5C55C343CD419502E55E3CD081E0 /* UMBarCodeScannerInterface */, + 810055EBEC44C7B164A1A0C295864D49 /* UMCameraInterface */, + 020E6182E7808A696F57F9F3243842BC /* UMConstantsInterface */, + 60D7DC65D8A221144EE8CD7AE0CF69BB /* UMCore */, + FCE301E45FB6E33FDFC1DAB8A9644A59 /* UMFaceDetectorInterface */, + EC7A025E4019D520CF1710925860F3D6 /* UMFileSystemInterface */, + 8EC6E1B08331159733FBCD6B9ECEB78B /* UMFontInterface */, + 4CE09526823CC9E2455A69D84B6C399A /* UMImageLoaderInterface */, + ECCE2F9CE4A0CEC77B95EF38ED2A3720 /* UMPermissionsInterface */, + E2668025D1080A94CFC359101701060E /* UMReactNativeAdapter */, + 6D1C04B70FBC60BC51441A66DA38F65F /* UMSensorsInterface */, + B5C3904AB2E54D217D4FA50B11F807F3 /* UMTaskManagerInterface */, + 3DBA0B49AE081C12A76C0BF872F2B0FC /* Yoga */, ); - name = RCTWebSocket; + name = "Development Pods"; sourceTree = "<group>"; }; - 16EC9B2B3B254E5E3A9B97999E10F173 /* Storage */ = { + 17143473E71D82F9CA1B3BD38E870FDA /* Support Files */ = { isa = PBXGroup; children = ( - 3572364D36B575E095ED6CF97556C4E5 /* BSGFileLocations.h */, - 9A28152C927DBE33FC159F237838CA4F /* BSGFileLocations.m */, - D40C3533BF228493CCEDE27D1FB64084 /* BSGStorageMigratorV0V1.h */, - F401C944F2D198765DF6DC6A29B04212 /* BSGStorageMigratorV0V1.m */, - 1ED60785E613974940745804A80CF521 /* BugsnagFileStore.h */, - E99D032CA45AE795463E8CCFCA3FBE80 /* BugsnagFileStore.m */, - 6B459DE3753ACF65B3EE6005C011ABAA /* BugsnagSessionFileStore.h */, - 07BABC1C04DAB1CEC0A77A7D6B220B6A /* BugsnagSessionFileStore.m */, + 0A677091F7E6C895CF485AFF88061238 /* ReactCommon-dummy.m */, + C8158EFD605094CF9F75D54FC59232C2 /* ReactCommon-prefix.pch */, + 1B80F1E298C7BE951402589FADECE3E6 /* ReactCommon.debug.xcconfig */, + 2E1B2426818A7ADF3D4A444798C51B11 /* ReactCommon.release.xcconfig */, ); - name = Storage; - path = Storage; + name = "Support Files"; + path = "../../../ios/Pods/Target Support Files/ReactCommon"; sourceTree = "<group>"; }; - 16F19B631347386A4D406EB5A29DF185 /* RNImageCropPicker */ = { + 17A64176C1A9991726C17D82A3688928 /* Support Files */ = { isa = PBXGroup; children = ( - 5321578E4C914574AC5A3F7F7ACF0704 /* Compression.h */, - 4EDBEF597A90BB3A563FD690349CFDDE /* Compression.m */, - 295599FD34D82437BF3C41270FBB2523 /* ImageCropPicker.h */, - 69B4659927463CDABCB118B5DEC7ED20 /* ImageCropPicker.m */, - C5F18678F590CDEA4A6F29AF36D8C5DC /* UIImage+Extension.h */, - 2E8A4966347DDE08B91EE969C520C066 /* UIImage+Extension.m */, - AF492A2FAAF74AC6ADAD5E79DCE6A08A /* UIImage+Resize.h */, - 60EA4B570BE390DC3171F49D41731488 /* UIImage+Resize.m */, - 4D6B9E82B00C4C54E90E2F9CADB473BE /* Pod */, - 3B5F06B35DD32F9A59054F621F630E47 /* QBImagePickerController */, - B0F213CEE2ABCC56288FC244E24CE662 /* Support Files */, + 38A853DDE5DCB11FF4723E6DE75A82E9 /* ResourceBundle-TOCropViewControllerBundle-TOCropViewController-Info.plist */, + 132388F5690F703D4FC06D21DDAD5C75 /* TOCropViewController-dummy.m */, + C869C51C8EFE20989F52362C28C4D379 /* TOCropViewController-prefix.pch */, + 2E0D66364E3C4E81BCA4CBCF60208FFF /* TOCropViewController.debug.xcconfig */, + D769384A5426A2E4EF2F1B1EBE235883 /* TOCropViewController.release.xcconfig */, ); - name = RNImageCropPicker; - path = "../../node_modules/react-native-image-crop-picker"; + name = "Support Files"; + path = "../Target Support Files/TOCropViewController"; sourceTree = "<group>"; }; - 16F3F2CE67054AA63D889EF26CEBEF74 /* React-RCTBlob */ = { + 17FE0EC81996A8E5CB74006D1EE15E44 /* Pod */ = { isa = PBXGroup; children = ( - 6CCC914F4F5E3F78B40CCDAC0BDEB908 /* RCTBlobCollector.h */, - 5C9B552556AD3AC3AC9A1FF4D59CECE1 /* RCTBlobCollector.mm */, - 8FCFA71E7FBCE4592668FE90C1220BE6 /* RCTBlobManager.mm */, - F339762AA8DD6F76C7A6BE4A9051877A /* RCTBlobPlugins.h */, - 89E76C6091B3365DFAFAB90BF5C9CFDF /* RCTBlobPlugins.mm */, - 1742A79C0C3E90899FB5F9FBA7D59CC0 /* RCTFileReaderModule.mm */, - FCCF69CABCDBA2B92EA18F72B31768A2 /* Pod */, - 2ED49C3FDA7BEC476F00E79559D73E9D /* Support Files */, + 3336C448B999F7328D6CD6D233007F26 /* LICENSE */, + B439E5B9F66B4F7805FDC4E1E5F61BC5 /* react-native-background-timer.podspec */, + 6F726843B1A0A9E0B5C7253E254BC7C5 /* README.md */, ); - name = "React-RCTBlob"; - path = "../../node_modules/react-native/Libraries/Blob"; + name = Pod; sourceTree = "<group>"; }; - 1735DB7DC7AEF560880AFDB0920B82DE /* Surface */ = { + 18182F70DC4A4C8EEA56E79A5E180921 /* ios */ = { isa = PBXGroup; children = ( - DAA93BB561277F589EFD5B03D3A98A18 /* RCTSurface.h */, - 79B29BED9BBCAA461C6D59F27D7BADC4 /* RCTSurface.mm */, - 4D2B5DC912FBCDE6B892CA46F279A39D /* RCTSurfaceDelegate.h */, - 18F0FA4FDA122C17C4DCBEB2AA25B85E /* RCTSurfaceProtocol.h */, - 129BF999B117C84BAB3A73C84ADAD27B /* RCTSurfaceRootShadowView.h */, - BB9CC1354ABBC880F7DDB6106CBDE2D0 /* RCTSurfaceRootShadowView.m */, - 207111C4FFBA3C94778096073B011DFE /* RCTSurfaceRootShadowViewDelegate.h */, - 87F2CBC95E98D64C0ADA8517411FE08D /* RCTSurfaceRootView.h */, - 580DCF30E8F730B898A9CB6FDA5A1DBA /* RCTSurfaceRootView.mm */, - E5539CD4B01605A209EAE449CD37F855 /* RCTSurfaceStage.h */, - 4EBDF38D772E501B8DDFAD480A0A8439 /* RCTSurfaceStage.m */, - C761D7AE50CD6FB34E193946254D6163 /* RCTSurfaceView.h */, - 32A5033B53147739415CD64E50CB0241 /* RCTSurfaceView.mm */, - EA44814345FD3334AE3676B7C6390179 /* RCTSurfaceView+Internal.h */, - 929F25571593985667AC183E1D7A61D9 /* SurfaceHostingView */, + D9793BA392F9F6934215CAA6F427A092 /* RCTTurboModule.h */, + 4C846DE60E62FB1B326BB9FACF5BC6B2 /* RCTTurboModule.mm */, + 6AB2DD14EB283F12DE4CEBF4B5A703FA /* RCTTurboModuleManager.h */, + 900D4F320E989BC916568651EAC1858A /* RCTTurboModuleManager.mm */, ); - name = Surface; - path = Surface; + name = ios; + path = ios; sourceTree = "<group>"; }; - 173F16F614C99F1F2EBB2FE4639688D3 /* Source */ = { + 18606EBFA5C234F789506035B2BA77EF /* Client */ = { isa = PBXGroup; children = ( - 7F3A7EA895F0566C5548469737EF00DD /* KSCrash */, + F95D3E752D3BEF5CD0C2D28305CBD55F /* BugsnagClient.m */, + F75D536DA30AA1A0D79332B0C6A2C5D2 /* BugsnagClient+Private.h */, ); - name = Source; - path = Source; + name = Client; + path = Client; sourceTree = "<group>"; }; - 182FD26660A490C17254AF5BCF8CBE3A /* React-callinvoker */ = { + 18E1615B62641629A658B850089CF52F /* Pod */ = { isa = PBXGroup; children = ( - 6C50F0B068A73AFAA9B5CC8A6EE68016 /* CallInvoker.h */, - C92D2063B50D3797E0D045BB8BEDC2AB /* Pod */, - 29F709BE7E7EBE94BBB06009E02BEA34 /* Support Files */, + CFDC3F9FDB51524D20CAE780A18C3DB1 /* LICENSE */, + 23EFBAA8DE3967F0AFED27C0D414220F /* README.md */, + 2EDC35FADC6890E28E63154C7DC8FB7E /* RNFastImage.podspec */, ); - name = "React-callinvoker"; - path = "../../node_modules/react-native/ReactCommon/callinvoker"; + name = Pod; sourceTree = "<group>"; }; - 192A2D7E57C30857F88797D9326B7047 /* UMModuleRegistryProvider */ = { + 195D9C67A8214E1F551E03857E0331B4 /* React-runtimeexecutor */ = { isa = PBXGroup; children = ( - 65A8ACF1D7DE947873F2F653FE01B728 /* UMModuleRegistryProvider.h */, - FC3B2F6648E4E990484D03409B3C47C2 /* UMModuleRegistryProvider.m */, + A1C72CB2024B020F0BACFFBAFFF398BB /* RuntimeExecutor.h */, + 020A920469E387438DA839E40B50D1A1 /* Pod */, + 1462FF17D85C9E346EBB74DAB06AF65B /* Support Files */, ); - name = UMModuleRegistryProvider; - path = UMCore/UMModuleRegistryProvider; + name = "React-runtimeexecutor"; + path = "../../node_modules/react-native/ReactCommon/runtimeexecutor"; sourceTree = "<group>"; }; - 19BCBCA23754C003B87C6264595C711B /* JitsiMeetSDK */ = { + 1A260AB19E59CBDB9D05DE10E083FC7F /* EXKeepAwake */ = { isa = PBXGroup; children = ( - DD78A7C1E8AB03582FCA970B8837ACF7 /* Frameworks */, - 232FAB984194B9627924CC2E17377511 /* Support Files */, + 85C5E583C34060CFAC90E15745B7EBC6 /* EXKeepAwake.h */, + 40C01F28CDDDF2800415EF6636A7A24D /* EXKeepAwake.m */, + 85D221EFE995E046B7EE3BA92DDD74DA /* Pod */, + 91FEF6CFA9701A66FA8884096DF574C4 /* Support Files */, ); - name = JitsiMeetSDK; - path = JitsiMeetSDK; + name = EXKeepAwake; + path = "../../node_modules/expo-keep-awake/ios"; sourceTree = "<group>"; }; - 1B082747F9E813D0338BCAD63F875FCB /* Support Files */ = { + 1AC96B4540C77E60DFC5DD4EFC60950D /* Support Files */ = { isa = PBXGroup; children = ( - 2C4C8B8A91B2C7212F97BAF2DAE6A97B /* Firebase.debug.xcconfig */, - ACFA40E85AC8F98E11C92BEEF692E7D1 /* Firebase.release.xcconfig */, + 48015236B93E01880EC193330B870139 /* EXHaptics-dummy.m */, + FB3A4704A9E6F6AA1163764FCF24B35F /* EXHaptics-prefix.pch */, + 2D8EE039B4423CFA9CD0F721D152E617 /* EXHaptics.debug.xcconfig */, + 680822EACD88D7EA569C8C0538032DE3 /* EXHaptics.release.xcconfig */, ); name = "Support Files"; - path = "../Target Support Files/Firebase"; + path = "../../../ios/Pods/Target Support Files/EXHaptics"; sourceTree = "<group>"; }; - 1B31FDA752685D2F5B5D0C1C9D81877D /* Protocols */ = { + 1AE95371744C7DE8CD4EB44CAC561D3D /* Pod */ = { isa = PBXGroup; children = ( - 0A8135C214F18C12DA255B2595E7E617 /* UMAppLifecycleListener.h */, - E86E5936B7E74BEB90393903C90CB8F1 /* UMAppLifecycleService.h */, - C90799EA218551C7B83AA144EDE89E53 /* UMEventEmitter.h */, - FBD206A4E40645F8B1B0CA79E1EBD3D2 /* UMEventEmitterService.h */, - F969AB07C5F0F86647AD40EF77FD8A5B /* UMInternalModule.h */, - 91A46B091E0CF0D8EC21498BA37BBE37 /* UMJavaScriptContextProvider.h */, - CAF651E25771DF3B08038A53419DD063 /* UMKernelService.h */, - C34BB7C9B5B6543C0E09A57C1B4F97EC /* UMLogHandler.h */, - A1CE18A3F321A875155302101DDA52BE /* UMModuleRegistryConsumer.h */, - C09EA5E56B1A86D17A324942FE907F38 /* UMUIManager.h */, - 6E0CDCC5D6ED7F4BA5BD967EE9279F4B /* UMUtilitiesInterface.h */, - ); - name = Protocols; - path = UMCore/Protocols; - sourceTree = "<group>"; - }; - 1B335148B93033657E20AC9E4B039735 /* Development Pods */ = { - isa = PBXGroup; - children = ( - 2DE5EBC4462FAB226CF1389AC547081A /* BugsnagReactNative */, - 6188F243DDEBAF750199A0437E405B5D /* EXAppleAuthentication */, - D15ED738D87DD497D46022FF9F0E37B8 /* EXAV */, - 012DBFA344725E841C467E35D87FC881 /* EXConstants */, - A46028F3C2BF9F9250B1A76C28F447EF /* EXFileSystem */, - 5BB55349F94B480F64D0D497441B51A5 /* EXHaptics */, - 7DD3CC43754B8BB4344595E9E8F9DE9F /* EXImageLoader */, - A560EFE2C83F48343706CFC874A6696A /* EXKeepAwake */, - DCEC7379A961D5631CF2252F29FA5EA6 /* EXLocalAuthentication */, - BBEA79C48F83498C265AE187467CA896 /* EXPermissions */, - 995F9E2F0B69506652E782FC65C4A6C6 /* EXVideoThumbnails */, - 53DFB52417A78862E432498F0F33CEFC /* EXWebBrowser */, - 89F3BCF1FE4AF51C65B00C90266890A0 /* FBLazyVector */, - D28D229C5EE87F7BAB47AF2F689FFA65 /* FBReactNativeSpec */, - 0310FA1F7CAEBC972DEA0F3438CB2395 /* KeyCommands */, - D0E71086ADCF2FEA20D803FBBECBA339 /* RCTRequired */, - 9FB1FC23DE15AFE2E73510A47F631002 /* RCTTypeSafety */, - 4EDCC714192024D6D9BF2E59778B78A1 /* React */, - 182FD26660A490C17254AF5BCF8CBE3A /* React-callinvoker */, - 399E361168DC15BBA351FDF15B988A20 /* React-Core */, - 0051AE31E8160682B6666AF94FD43D76 /* React-CoreModules */, - 57C8456FBD7C8139050FCC835628C511 /* React-cxxreact */, - 29290CDC75BEB381B81698C34C08C9E8 /* React-jsi */, - 80E4CCAFD5FF95805C8836B2EF70A567 /* React-jsiexecutor */, - BE78E2A6C9710F8E92C2B7B9145E5D12 /* React-jsinspector */, - E59FEF70BFF6740CC25625B0B26D0730 /* react-native-appearance */, - 11C0389B6A245AB145289CFD7F7A5799 /* react-native-background-timer */, - 15370399CFB593553101E73843678C13 /* react-native-blur */, - BC8AD7436858385576E3D4D83284830B /* react-native-cameraroll */, - 0B53B07E2A4EBC1FA87BED8D187FEEE1 /* react-native-cookies */, - 3ECF7641B16FCA7AEC743CA0985A1BD2 /* react-native-document-picker */, - C556E6A80675BF73DEC959223199473A /* react-native-jitsi-meet */, - E1D4BF5E99E0AF9736EEFC1DCB8D0688 /* react-native-mmkv-storage */, - 7950EE29EE71494397E527E7A0DA6FF8 /* react-native-netinfo */, - A840C4EEDEFE30A7526204C1CD1C063F /* react-native-notifications */, - E9C7468296CF3D854A6FE3CCDCE8AC5E /* react-native-orientation-locker */, - B5C94B22866D0D81496F56267E46A91B /* react-native-restart */, - F7CA8A6EC0BBAEED2EF6838FD4356737 /* react-native-safe-area-context */, - ED6F5ECD9E4977BB3242B6DCBAEA7DB2 /* react-native-simple-crypto */, - 54FC4D24043627C1BEB096BBC6FB23F1 /* react-native-slider */, - 8CCDE0C1317BAD85D95C2EE070994A16 /* react-native-webview */, - 665EF1CC568095EF79E87D15FAA1106F /* React-perflogger */, - 864CF10D742C3C6D7902FAD8E8271F0B /* React-RCTActionSheet */, - 8D1C566FFF4721FE4113138C0C3A9B01 /* React-RCTAnimation */, - 16F3F2CE67054AA63D889EF26CEBEF74 /* React-RCTBlob */, - A3C6F98DF7B23B0632926F167871EBB2 /* React-RCTImage */, - 77B6CFB7EA90A814C562A8632026BFC3 /* React-RCTLinking */, - 869B4074E5995282377E90FFCC5FAE96 /* React-RCTNetwork */, - 0012CE52DF826E823DB925B46FA05058 /* React-RCTSettings */, - 88D72EAE58E7FF54C41C9AE90D614DE4 /* React-RCTText */, - BC01994F5346B655A7EF2DBB8A594621 /* React-RCTVibration */, - A587B4C02F87F1060C117A378428DFB5 /* React-runtimeexecutor */, - 4AF77E31B0B3576820370F5FD7E7B525 /* ReactCommon */, - 3F630BF050CA9C4050D4D842FC79957E /* ReactNativeART */, - 029BF0B569B93D06A7FB9DC6E0DE1338 /* ReactNativeUiLib */, - A31D5AD00EAE5341E2F862C116937B96 /* rn-extensions-share */, - DD448CFE54899E8214FC0DE261C125B5 /* rn-fetch-blob */, - B611CE5D5941E6EC93FB041A5D1CC251 /* RNBootSplash */, - 1C7EAF4559B58A91FC3ACD6238962A64 /* RNCAsyncStorage */, - 2F1824855DC6896AC2F93FCBE0CF1B9D /* RNCMaskedView */, - 3F68AF716FB9A41D57E83991D632C6C2 /* RNConfigReader */, - E934F12F18782FA5B7B698BDE78CDB0F /* RNCPicker */, - 58A0BF53D5CFE638DE2E520B1BCBAD33 /* RNDateTimePicker */, - 82350E5B841E516E40D653D2AB5544C3 /* RNDeviceInfo */, - AB7F6355C86DFC7E91B9EAC52F07B85F /* RNFastImage */, - 3534088DB66DEF568FAF45B5A920EB0F /* RNFBAnalytics */, - CF47CCB4B0D7AE3C64A1E8209912222A /* RNFBApp */, - 66B22295C3DA10581CB53EA09351F463 /* RNFBCrashlytics */, - AF3CB75A79A4B74B34F3BB35441AD173 /* RNGestureHandler */, - 16F19B631347386A4D406EB5A29DF185 /* RNImageCropPicker */, - 31DD4FF38AC66E1A3EE4190CF53BF65A /* RNLocalize */, - D3D565AD0273ADAF1182FCDB041402D1 /* RNReanimated */, - 70BD345152219405D7B9B498749DE2F4 /* RNRootView */, - E39145EAD6394D4B8D24AEF743F4F5E9 /* RNScreens */, - 80F18FC30D1168F50A8F5773FDBE16A6 /* RNVectorIcons */, - 8FCF92E88EA049BECAD6F86AFBFF76E0 /* UMAppLoader */, - 35071B6A8FBDBF6B984FB20DCC1B6E85 /* UMBarCodeScannerInterface */, - 0A40D5E22B5A4885069D0691AE56BE4D /* UMCameraInterface */, - C5F15D6DBC185E120658917AE5C9B8E3 /* UMConstantsInterface */, - DBE62A767FAC06B7576C596C16323417 /* UMCore */, - 27AE64D6C1A1C55C1B64934788AFC47C /* UMFaceDetectorInterface */, - 9EAD96B268B16ABA0F5D8AF18F58FA65 /* UMFileSystemInterface */, - D66284598A6DA33D69CE93DBC9B03E96 /* UMFontInterface */, - D40748F6423A8A1669F834DA2CCA7E6F /* UMImageLoaderInterface */, - 8A398024DCC655930DBEA867FA2BF127 /* UMPermissionsInterface */, - 861B805BFF1794D2F3879FD37E1AC9EB /* UMReactNativeAdapter */, - C2550707A5AC3D8A3EF4CB8AC0F7536A /* UMSensorsInterface */, - BF0FA41607BD73699FF511D72C0D6DB7 /* UMTaskManagerInterface */, - C0FC3DA25325B253DEA3F31467C0C1AF /* Yoga */, + 71E46B333F10D80A5ED81ABF7FDC0454 /* LICENCE */, + 2F51571F85122C36A871BFD77D7B2544 /* react-native-cameraroll.podspec */, + D94ECE30AFEF546C492D255F08F7C614 /* README.md */, ); - name = "Development Pods"; + name = Pod; sourceTree = "<group>"; }; - 1BB3134D8F6E3A3586510F3F466926CF /* Support Files */ = { + 1BC6885C8F47EA5A1A99DA683F6A61DB /* Support Files */ = { isa = PBXGroup; children = ( - CE58441B97197A9C77EC5B3FA60736DD /* RNFastImage-dummy.m */, - 37B0BD899FBA992E7DEE922392E39845 /* RNFastImage-prefix.pch */, - EEDEF25F4BD51250B333F8487ADCABD1 /* RNFastImage.debug.xcconfig */, - D209C4FA27308DF998A5A82B02E763F2 /* RNFastImage.release.xcconfig */, + 5F7F98B3B6339240DCBE2E827C0DD546 /* FBLazyVector.debug.xcconfig */, + 92059877E726376AD26B932833F991DA /* FBLazyVector.release.xcconfig */, ); name = "Support Files"; - path = "../../../ios/Pods/Target Support Files/RNFastImage"; + path = "../../../../ios/Pods/Target Support Files/FBLazyVector"; sourceTree = "<group>"; }; - 1BF0FAC162CBE9BEEB6BD29935DD335B /* Pod */ = { + 1C616AC4BFBC9C9F2235A0E26B0CBF97 /* Pod */ = { isa = PBXGroup; children = ( - 16A67BBF51FE99EC701E5F6893B3DBFF /* LICENSE.md */, - FC1BC417DD12AC349999A332965BBB26 /* react-native-document-picker.podspec */, - 658CDE58F0A145A01F4B64355610CEA8 /* README.md */, + 65F7CB4A286E2603515767C7F06F1E10 /* UMFileSystemInterface.podspec */, ); name = Pod; sourceTree = "<group>"; }; - 1C510A0633AA2F02AED3612F6DBCC490 /* Flipper-PeerTalk */ = { + 1CF1A2E5B348D1EFA6BB4DEA6A4A50ED /* Pod */ = { isa = PBXGroup; children = ( - 32D1463A74A42DAEDD2840B3434A62A1 /* Peertalk.h */, - 13BE33B0C55DC851925EE31F13B66FAE /* PTChannel.h */, - D59DB87E3210D516D896651D27738B12 /* PTChannel.m */, - 701944664DEF41CE893374775990E72D /* PTPrivate.h */, - 7F934D5CF6DFDE0A7D00F52698ED4CA6 /* PTProtocol.h */, - 57700021537417430A8DB243329E7650 /* PTProtocol.m */, - 1D4EC3A4E9152127A244D35219F44B64 /* PTUSBHub.h */, - 3BDF8F521A698660A217C9B7AC6B17AA /* PTUSBHub.m */, - 009C51A2701501821F87CBCF6497D66D /* Support Files */, + 4C67DB30CFB868D7FF8CF4B46999863A /* React-RCTSettings.podspec */, ); - name = "Flipper-PeerTalk"; - path = "Flipper-PeerTalk"; + name = Pod; sourceTree = "<group>"; }; - 1C7EAF4559B58A91FC3ACD6238962A64 /* RNCAsyncStorage */ = { + 1E779FDBD611AA2409B0E81A15A73A84 /* RNReanimated */ = { isa = PBXGroup; children = ( - B83C0C0C4E720AD644EF057182F53228 /* RNCAsyncStorage.h */, - C0180E0DAAFCDC1180358204BBF1D0EE /* RNCAsyncStorage.m */, - F28AFBA649D98C9468C89AEAE0F12E2D /* RNCAsyncStorageDelegate.h */, - 73032D7ABFA5F5EC43ADEF910CFBCF21 /* Pod */, - 9401049CC091D20F3E832BE0538542FF /* Support Files */, + DA7767037C3986DE5DDB21498330B810 /* REAModule.h */, + 0310EA46F7784672052765AA34A76A98 /* REAModule.m */, + CF65E777DED24A463115D265CE916CBF /* REANodesManager.h */, + 714FDC1F96F45101C4BC7D6DD7B54EEF /* REANodesManager.m */, + 91889F33FABB8B897AE43FC96DFCA87C /* REAUtils.h */, + 5BCAF5C141CDB4D8DDF90EDFF2308E7E /* Nodes */, + 95AEB76D62A6BB25A4F7ED268FD29B4E /* Pod */, + 009020698D33530A59EEC8F742CB09B0 /* Support Files */, + 5DECA447299278F70175E5FB2E5C6CA7 /* Transitioning */, ); - name = RNCAsyncStorage; - path = "../../node_modules/@react-native-community/async-storage"; + name = RNReanimated; + path = "../../node_modules/react-native-reanimated"; sourceTree = "<group>"; }; - 1D12C2D07E4439611478BC772F414AD3 /* Support Files */ = { + 1EB04418B2093424DB3E69C1D3AE19F8 /* Drivers */ = { isa = PBXGroup; children = ( - 2E7C44F8E7F7F762E989594768FD709E /* Flipper-RSocket-dummy.m */, - EA05B65AECBCE03C6DC5D919C42395DF /* Flipper-RSocket-prefix.pch */, - 86D9281E1BAC373B598A7CD54FB33844 /* Flipper-RSocket.debug.xcconfig */, - F61AC29A434D8AD3AA33C42765183FBD /* Flipper-RSocket.release.xcconfig */, + 79741A574F95677A119A9C98B9A3CF7F /* RCTAnimationDriver.h */, + 1D13AFF42849FCF2922C5D4CE85D0C68 /* RCTDecayAnimation.h */, + 7E62C4E75C3C64FEBDF28EA2731043A1 /* RCTEventAnimation.h */, + A1E15E833103B095D6A492A72302C0DD /* RCTFrameAnimation.h */, + 030F3025CC8683ED91DFF18888825EB7 /* RCTSpringAnimation.h */, ); - name = "Support Files"; - path = "../Target Support Files/Flipper-RSocket"; + name = Drivers; + path = Libraries/NativeAnimation/Drivers; sourceTree = "<group>"; }; - 1D7AF6AC756E889CFBBA16648E0D9321 /* Delivery */ = { + 1F0ECDDC6EAFE3B1C3D8B15164F91CAB /* Support Files */ = { isa = PBXGroup; children = ( - 111352AA53F0093A3AB2AEB343C37458 /* BSGConnectivity.h */, - D05C1CEC62104465904E3A67032B0338 /* BSGConnectivity.m */, - AB2B5D58205F45FDC1B97AF9658D4492 /* BSGEventUploader.h */, - B35A3F11DC99091C6A796255001C7507 /* BSGEventUploader.m */, - DF6E83B328726602E52506BBD87E3626 /* BSGEventUploadFileOperation.h */, - 94A96617407F7DDFF6A60E846D25757B /* BSGEventUploadFileOperation.m */, - 3B58D254DBD56810C7C07ABA162011BB /* BSGEventUploadKSCrashReportOperation.h */, - 574448DDB956D4C4A26897FFD13475A1 /* BSGEventUploadKSCrashReportOperation.m */, - B0D5A182C42291DAF7F26A11BD8C8483 /* BSGEventUploadObjectOperation.h */, - 27B7CEE5273A820E4FE8C0B13071E6DC /* BSGEventUploadObjectOperation.m */, - 3BF80B3C5C9D06C7E4861B18B24125A9 /* BSGEventUploadOperation.h */, - 039B1088A923BF790ADA0AC7732F66D2 /* BSGEventUploadOperation.m */, - 70BFA5E481DB2ED2EDD2DC75CC99DB74 /* BugsnagApiClient.h */, - 112D962E5A1F21D8C0DCB29477800458 /* BugsnagApiClient.m */, - C89060B13A5EAABE289966B9B7599BED /* BugsnagSessionTrackingApiClient.h */, - 85850D0F4EDDE83B68C1D3E63B63EB40 /* BugsnagSessionTrackingApiClient.m */, + C2552710DA4C088019A97F3466AD3499 /* glog-dummy.m */, + B77C225F35F08279F4E35ACD7FD8A49C /* glog-prefix.pch */, + FD42AC801A0BDE146CA859C569E48C87 /* glog.debug.xcconfig */, + 417426C714E7EDEE92C076113FA90A03 /* glog.release.xcconfig */, ); - name = Delivery; - path = Delivery; + name = "Support Files"; + path = "../Target Support Files/glog"; sourceTree = "<group>"; }; - 1DA63BF698EFFC4138BF51C8BC58CC1D /* Pod */ = { + 207C2302153C83A5CA7D255B781BBC87 /* FlipperKitLayoutTextSearchable */ = { isa = PBXGroup; children = ( - 3598CD9163C8A620F21EE26D2D077183 /* advancedIos.md */, - 47104D1984A5C2F25BE8C9292B94B0AB /* installation.md */, - B57D2A87F8D209EC3EE1910BF101A458 /* LICENSE */, - 7E6ACF4F764B85148076064F490E35DC /* localNotifications.md */, - F6FC3E36C12BEA0B1BCE874338D485A7 /* notificationsEvents.md */, - BA844493E0367735F02B3DC1ABEC6311 /* react-native-notifications.podspec */, - 6994E61B1A90908489F7A027BC5BDC02 /* README.md */, - 948A4B74B6634810FD7152CB3A62A612 /* subscription.md */, + 9A5E0F276F9F718AD095DDEF5457B8C9 /* FKTextSearchable.h */, ); - name = Pod; + name = FlipperKitLayoutTextSearchable; sourceTree = "<group>"; }; - 1EA2EBBA07EAB3F2E0170F57BE43726A /* demux */ = { - isa = PBXGroup; - children = ( - 530F1C764011FFBC084B034896A6E8A4 /* anim_decode.c */, - 4A509BA41AB36AFEFE7EC02BD8CA6ED5 /* demux.c */, - B9703E1EC5B12F2D715115AC6A7FBB93 /* demux.h */, + 20F63C19E476707173CC748E5728D96E /* React-RCTImage */ = { + isa = PBXGroup; + children = ( + 31B736BE7228184663AE1A86DF4C1C1F /* RCTAnimatedImage.m */, + C1979C5F2ECD6347C6568631CD0FA9D3 /* RCTDisplayWeakRefreshable.m */, + 2ADF919ACD1DFA6C9191F1B910DDC860 /* RCTGIFImageDecoder.mm */, + EF9B17918BC9B80C3A6A70878E0E66D7 /* RCTImageBlurUtils.m */, + D6CB5BF60AC415D82DF23C7F7BEDC080 /* RCTImageCache.m */, + F405B50EACD439F73F1A0EA0FDB3EC24 /* RCTImageEditingManager.mm */, + 9592BE656EE844942EA0F3BF227D00D2 /* RCTImageLoader.mm */, + 2327894C2B59A3F440C762DB0BEF834B /* RCTImagePlugins.mm */, + 7955ED1B6B2DD3172B03B4E3478C1ABC /* RCTImageShadowView.m */, + AEB7062BC1CA34C27BD61962B05C8CAD /* RCTImageStoreManager.mm */, + 1B435EF2017E1F20AD5CF118245FBEB4 /* RCTImageURLLoaderWithAttribution.mm */, + A07870FDB1FE7BBE4F539AA836EA893D /* RCTImageUtils.m */, + 6B91F87BB4D4FAC6EEB305BE78E8BBB1 /* RCTImageView.mm */, + 3DF75861838DDABC8AF9BE7F154D114E /* RCTImageViewManager.mm */, + AC730EFB80AB1A4B11A4CAE8295075DC /* RCTLocalAssetImageLoader.mm */, + 1C4B1C3D55038D8241E8C3A8DC65EF7F /* RCTResizeMode.m */, + D40109BDD7D7379FCEE56F266A8BEE2C /* RCTUIImageViewAnimated.m */, + BD531864D042792CDEC0F787E46CE3CB /* Pod */, + 5499811CCE572E20A404BE25683BA078 /* Support Files */, ); - name = demux; + name = "React-RCTImage"; + path = "../../node_modules/react-native/Libraries/Image"; sourceTree = "<group>"; }; - 1FC1040188BBDF21303EB3FECEB54093 /* SDWebImageWebPCoder */ = { + 20F9BD3DA7775A2BD2C6BB8D5A2E921B /* Pod */ = { isa = PBXGroup; children = ( - 655AB00308011B638B5EA2AA6AE30280 /* SDImageWebPCoder.h */, - E737CD50AB9187B1427A4BE435D43ED7 /* SDImageWebPCoder.m */, - D5CAFDCB85306D5AFD07084BA1737101 /* SDWebImageWebPCoder.h */, - AAEA2C6C59C3DCDBD6EC36A6FF34CCDB /* UIImage+WebP.h */, - 5F62DCB13F6FE4400AF13DBBAB827945 /* UIImage+WebP.m */, - F842F6F89CA701E4254C809E1592B182 /* Support Files */, + 7834F8BE59A7F0F329006BA4FEDE0426 /* react-native-slider.podspec */, ); - name = SDWebImageWebPCoder; - path = SDWebImageWebPCoder; + name = Pod; sourceTree = "<group>"; }; - 2061B7311BF445D14F55305B58ED8988 /* CocoaAsyncSocket */ = { + 215EE71E60569DB05FF26161E7C664CF /* Support Files */ = { isa = PBXGroup; children = ( - E3A107D1CA871E2270BFC3B29210E99B /* GCDAsyncSocket.h */, - EA81D63A714DF53A54E422BCA8FA65DE /* GCDAsyncSocket.m */, - 8CB4425DEDB29C7C46FA36E77962311C /* GCDAsyncUdpSocket.h */, - 46B53E77B1FA9966C50B3BF377B08F20 /* GCDAsyncUdpSocket.m */, - 1431C1F2FD53BA86D5FC99BAE55DEF1C /* Support Files */, + F22C8F6F10A4A28CE597599D878568E9 /* UMFontInterface.debug.xcconfig */, + 56DF29480F800CBF2C64F9E17530DB92 /* UMFontInterface.release.xcconfig */, ); - name = CocoaAsyncSocket; - path = CocoaAsyncSocket; + name = "Support Files"; + path = "../../../ios/Pods/Target Support Files/UMFontInterface"; sourceTree = "<group>"; }; - 2082BB99107B3B538C2E9FFC0E7A5C1A /* Support Files */ = { + 21E32A20651A361D31852E9F75F05665 /* Pod */ = { isa = PBXGroup; children = ( - EB1889F513B963203313D59B84A4D47D /* UMAppLoader-dummy.m */, - 11CB20F69C4411E5FDBA7623836E517F /* UMAppLoader-prefix.pch */, - B3F477DAC2CCDDEF7E1FA593B313DA60 /* UMAppLoader.debug.xcconfig */, - AE81EB40D8855381204EDA2A1E90003E /* UMAppLoader.release.xcconfig */, + DBF711F4AAB6980F35932B29ED2835AE /* KeyCommands.podspec */, + AC6AA7C03B20425796FF7A5A742F6FA7 /* README.md */, ); - name = "Support Files"; - path = "../../../ios/Pods/Target Support Files/UMAppLoader"; + name = Pod; sourceTree = "<group>"; }; - 2086F8EB8E1E136B1E3FCC567017A038 /* Pod */ = { + 21FF0413E51E5927C20A823885044C26 /* Pod */ = { isa = PBXGroup; children = ( - 8A4F992D9FCFC9A6A3E8F32CA25A1412 /* EXPermissions.podspec */, + 0F5E25774A2948D641A7AE3B4306D912 /* LICENSE */, + 5AED150B060C283C6EFA418C3DE4F99E /* react-native-simple-crypto.podspec */, + 5426D9405F47F6D9F19A4EA96DD6C685 /* README.md */, ); name = Pod; sourceTree = "<group>"; }; - 2162A14A4DD7552B05675CC2711CB9E2 /* Support Files */ = { + 2225B2E0BF601A1D44C34A5B03A44546 /* Support Files */ = { isa = PBXGroup; children = ( - A95ACD68CF68B792E1500C4081DB693C /* RNFBCrashlytics-dummy.m */, - 5C4250C05D4C210BAFA42C1CB4B27CB5 /* RNFBCrashlytics-prefix.pch */, - CB2403880F88F5DA093CE37CD971C654 /* RNFBCrashlytics.debug.xcconfig */, - E6B31D47FEA12DF3F7029345AFBA4B35 /* RNFBCrashlytics.release.xcconfig */, + 37F1C18A4491901D5F5CB3B40424AC9C /* react-native-background-timer-dummy.m */, + 03D32750B02F2B5B58CBF41B24D10095 /* react-native-background-timer-prefix.pch */, + C520FD4C6233AB926C0AC071ABEC1A46 /* react-native-background-timer.debug.xcconfig */, + 3911516156577DF9C5F5A3685066EC74 /* react-native-background-timer.release.xcconfig */, ); name = "Support Files"; - path = "../../../ios/Pods/Target Support Files/RNFBCrashlytics"; + path = "../../ios/Pods/Target Support Files/react-native-background-timer"; sourceTree = "<group>"; }; - 218B26ABB0386AF0A97FB99AAE154B4C /* Frameworks */ = { + 22881836D7C73855A7F0D4C8AC194614 /* UMModuleRegistryProvider */ = { isa = PBXGroup; children = ( - 93F6814888179AE89637262451E46FA8 /* hermes.framework */, + D6A9263E428455178C45DF3EA6071D0A /* UMModuleRegistryProvider.h */, + BAE0910FE95F74A73440C82AB7B23EBB /* UMModuleRegistryProvider.m */, ); - name = Frameworks; + name = UMModuleRegistryProvider; + path = UMCore/UMModuleRegistryProvider; sourceTree = "<group>"; }; - 222528DDC6F0791247B5F37794C1A6BA /* Frameworks */ = { + 23942DE058D01DFF756D4A335B258302 /* Sentry */ = { isa = PBXGroup; children = ( - DA347E30919A7E6027316853F9B08054 /* OpenSSL.xcframework */, + B0B6594FD82B8CDCBC9F5393B2A244FC /* BSG_KSCrashSentry.c */, + 5807F2C33809D5E878C86A6F5D2315FC /* BSG_KSCrashSentry.h */, + 5D65FEA08350DF25703FBEB071660B67 /* BSG_KSCrashSentry_CPPException.h */, + 33DCB070BC1552B9AC0A497A56B5E840 /* BSG_KSCrashSentry_CPPException.mm */, + C48F9B2393D26CDBBA0B14EDC839E061 /* BSG_KSCrashSentry_MachException.c */, + 8E8B8B502897CE64B858C572C0C71A6D /* BSG_KSCrashSentry_MachException.h */, + 26C99F9B4AFE7A7931259FA66C717FA6 /* BSG_KSCrashSentry_NSException.h */, + BDA6FCB2956855B835FE86108CE5C320 /* BSG_KSCrashSentry_NSException.m */, + 6956FA0BEEA18B2C999C9AF16B8C84FC /* BSG_KSCrashSentry_Private.h */, + 247584254CD6306F655C87C8E03F6A1A /* BSG_KSCrashSentry_Signal.c */, + 3873885FDE6C533F17175B3E4CDA9ED0 /* BSG_KSCrashSentry_Signal.h */, ); - name = Frameworks; + name = Sentry; + path = Sentry; sourceTree = "<group>"; }; - 2301EE18F04F8E39CEB03D3ECC283D06 /* Support Files */ = { + 23B12132B8D0B6B40DDE73129C2C975E /* Support Files */ = { isa = PBXGroup; children = ( - ADE3B99706E1995C0DCAAE8F4B722ECF /* RCT-Folly-dummy.m */, - FA08E277E9507C2A0DA8E52FEC0EC8E5 /* RCT-Folly-prefix.pch */, - 7168429E95F77F02B8E48355B4F86802 /* RCT-Folly.debug.xcconfig */, - FFCE347A1CEBBD0FA95EFF4E15B38328 /* RCT-Folly.release.xcconfig */, + A26D68BF2D8F8FC9A6C574EF12B4B437 /* UMImageLoaderInterface.debug.xcconfig */, + 53A25457AA2F5E11930B3BBD24AAAE87 /* UMImageLoaderInterface.release.xcconfig */, ); name = "Support Files"; - path = "../Target Support Files/RCT-Folly"; + path = "../../../ios/Pods/Target Support Files/UMImageLoaderInterface"; sourceTree = "<group>"; }; - 232FAB984194B9627924CC2E17377511 /* Support Files */ = { + 23CCF046D46285D6C88F9654E8DCA11B /* Support Files */ = { isa = PBXGroup; children = ( - A20B8C264F43DCE74DED1C6902DCD7F2 /* JitsiMeetSDK.debug.xcconfig */, - 6AB4C38354B40701BDF1A1954B9961DA /* JitsiMeetSDK.release.xcconfig */, + 28AF10AFA2CADC9D1F3B44DAB330B364 /* React-Core.modulemap */, + 9BCA63BA8EB46EB8BDEA34E41CAF24A1 /* React-Core-dummy.m */, + A901E85DB1951BB6578C0CF3CF9AFD75 /* React-Core-prefix.pch */, + 45F742A342CFA03B6BF8A6D4A5B2680A /* React-Core-umbrella.h */, + C5E949B46D8B3289F5A68BA65DDBE074 /* React-Core.debug.xcconfig */, + 07774C1286725FE266209BEA16EC979C /* React-Core.release.xcconfig */, + 38C62E45BB1E52F02B094FCF21E47B42 /* ResourceBundle-AccessibilityResources-React-Core-Info.plist */, ); name = "Support Files"; - path = "../Target Support Files/JitsiMeetSDK"; + path = "../../ios/Pods/Target Support Files/React-Core"; sourceTree = "<group>"; }; - 240535AAA21390B67D2D702AA4D47519 /* decode */ = { + 24D3B85EB1607E0DDB5E3FDF70E92A37 /* React-RCTAnimation */ = { isa = PBXGroup; children = ( + B98DB40B7B38129B280E814B98F7BFF0 /* RCTAnimationPlugins.mm */, + 5EB8BCC8CE4CA4E5257E9EE9D8DFEEDC /* RCTAnimationUtils.m */, + 72021CD6FDC16641FE32B29F2B4298D1 /* RCTNativeAnimatedModule.mm */, + E0776908675D32B6902509CA0A010DF6 /* RCTNativeAnimatedNodesManager.m */, + 7F50EC6C678A19D8ED9FBA50CD018824 /* RCTNativeAnimatedTurboModule.mm */, + FDB041B6BC3B26E4240A31816AFE80FC /* Drivers */, + D91566042B591DCC296B29B8259A1226 /* Nodes */, + 5861784A343BB0A7B423CAF35CD859A9 /* Pod */, + DFD94A53177D094DB449CB60B1EF3BAF /* Support Files */, ); - name = decode; + name = "React-RCTAnimation"; + path = "../../node_modules/react-native/Libraries/NativeAnimation"; sourceTree = "<group>"; }; - 25D598A75FCE674C4B80EAA48F9E6C06 /* Reporting */ = { + 250AC13A6831470D1D4F4877AD099C46 /* RNLocalize */ = { isa = PBXGroup; children = ( - 0232CDC089ABCD0FFD2CD6C7209AFFCD /* Filters */, + CCC432188685D40CE399E751B2621ADE /* RNLocalize.h */, + 53490095923FA34950C79C426F7DA506 /* RNLocalize.m */, + 29DC2D0D5EAFA3C8D23C07939CB0DB60 /* Pod */, + 8624ECA8F1A11855D90A8157AECD709D /* Support Files */, ); - name = Reporting; - path = Reporting; + name = RNLocalize; + path = "../../node_modules/react-native-localize"; sourceTree = "<group>"; }; - 25E311ECE3341C0A076F3113BF6D46A2 /* Support Files */ = { + 259161F85DB34AB257C7988AFE010FCA /* RNImageCropPicker */ = { isa = PBXGroup; children = ( - 88924A7F0E7ED8E66C1C0A3ABE595DE3 /* React-RCTAnimation-dummy.m */, - DE478CEF7E6BBAC84708D5A369135801 /* React-RCTAnimation-prefix.pch */, - 03902662E196BE0FB6D7C3BBAD0738EA /* React-RCTAnimation.debug.xcconfig */, - 6E4512E71DEA6EB132DB9A11EE925080 /* React-RCTAnimation.release.xcconfig */, + 2AE41A90EF30E02EAEBC24635E29B3BB /* Compression.h */, + 6F857D7A9F2EEFD5B9868211790701B1 /* Compression.m */, + 1504C61606908441BCDB1E6DE9E99F8D /* ImageCropPicker.h */, + 06011A6CDB80AEEF08F8150720A83252 /* ImageCropPicker.m */, + 13C9DCDBDB2D1B7AFF2E38F8C10A5085 /* UIImage+Extension.h */, + 96CF5E5631A3BC277F3C295FC0CCB840 /* UIImage+Extension.m */, + 71198C8517842D7AEA353B5FA30A37AC /* UIImage+Resize.h */, + 7AE17C12D9DA6F3CAA60799AC0F75100 /* UIImage+Resize.m */, + AF03A5AFD4053246726471CAC37AC28D /* Pod */, + 8AC78126E0BFCA44C1FD51C8EBE9F3F1 /* QBImagePickerController */, + 8C7A97F1D3EC45E4F7F4BB00B87F704D /* Support Files */, ); - name = "Support Files"; - path = "../../../../ios/Pods/Target Support Files/React-RCTAnimation"; + name = RNImageCropPicker; + path = "../../node_modules/react-native-image-crop-picker"; sourceTree = "<group>"; }; - 2630F56D134825750C948A207C1710C3 /* Support Files */ = { + 26113A1861798C188909D30D241D8FFD /* Pod */ = { isa = PBXGroup; children = ( - 77807DD48D1773606AF513C2B92338F5 /* UMFaceDetectorInterface.debug.xcconfig */, - 15C06E8BC22CE33F1AC579FF3EED5F01 /* UMFaceDetectorInterface.release.xcconfig */, + 77B77CDF0FA41ECC60D9D90BD8F45E70 /* LICENSE */, + C7483680708E81437AD83CDCD6DD5819 /* README.md */, + 7A5D5CA21E972294551147039C4E5091 /* RNCPicker.podspec */, ); - name = "Support Files"; - path = "../../../ios/Pods/Target Support Files/UMFaceDetectorInterface"; + name = Pod; sourceTree = "<group>"; }; - 27AE64D6C1A1C55C1B64934788AFC47C /* UMFaceDetectorInterface */ = { + 26803B56814DC980F3B959B1FBE9BC2D /* SafeAreaView */ = { isa = PBXGroup; children = ( - 23AE9981C25EC0DD6CAA9273628B1D1D /* UMFaceDetectorManager.h */, - 121B8E3C90C259A8DBB49E51ECF028F2 /* UMFaceDetectorManagerProvider.h */, - 14B0874027965AB0076A22C974812618 /* Pod */, - 2630F56D134825750C948A207C1710C3 /* Support Files */, + 21D090713EF4723A06E95FD652DDFFB1 /* RCTSafeAreaShadowView.h */, + E29EC038ADE36DEC92B372698811EEC4 /* RCTSafeAreaShadowView.m */, + 6DD39F3B80F2E865CD453EF8134313CF /* RCTSafeAreaView.h */, + F88748E761D6697D9DD3CCA1F52FDE08 /* RCTSafeAreaView.m */, + 59A76FD85FEC15007F5A75BB830709B4 /* RCTSafeAreaViewLocalData.h */, + 2C4AEAFC32DB9FC914DF2A9F1B94097F /* RCTSafeAreaViewLocalData.m */, + F8204127A8D36C03965AACB99B22F7E2 /* RCTSafeAreaViewManager.h */, + C8589FA79D7E30BE09851C2648720ADC /* RCTSafeAreaViewManager.m */, ); - name = UMFaceDetectorInterface; - path = "../../node_modules/unimodules-face-detector-interface/ios"; + name = SafeAreaView; + path = SafeAreaView; sourceTree = "<group>"; }; - 27C6A48BE3DEDE8FE6166EB7BF79F808 /* Support Files */ = { + 276F2447B8343326A0BF7E2F502F4024 /* lib */ = { isa = PBXGroup; children = ( - AE8AC1829EFA92E41449AE5D122C171F /* ReactNativeUiLib-dummy.m */, - 0870CA6F2AB8D35483D97F6189570EB4 /* ReactNativeUiLib-prefix.pch */, - 859B9C5CC2B046D642D6E37D5EC38A39 /* ReactNativeUiLib.debug.xcconfig */, - 8AA93F829781BB82572A2B7D14A93599 /* ReactNativeUiLib.release.xcconfig */, + 489D974C89DEF6F6C71D3872B05C2503 /* Aes.h */, + DD5A958800B43B181B344F1410CCEAEB /* Aes.m */, + FBAB66AAE91AB16AB82AFE713AD34805 /* Hmac.h */, + 67062CF6AC995696AF7FC66834D2DA65 /* Hmac.m */, + 9CAA78DA637D210B287BB5C5FDA5F100 /* Pbkdf2.h */, + CE14F644111E4EF96C004A501E7E3F89 /* Pbkdf2.m */, + 620AB4522D0CF02D6205FEC37D7FDEA7 /* Rsa.h */, + CD39FA0EEC45B70E15BE7CA8C7174C22 /* Rsa.m */, + ADA3196766C374BC80B399D6B8F0537B /* RsaFormatter.h */, + 68B9B14D4B822F0B1C8EFF9014D985E6 /* RsaFormatter.m */, + FE97BFFD142F98C3E36949A71B50973D /* Sha.h */, + 27CCA1DA090A6DC6DEE5D9B9828835B9 /* Sha.m */, + 5C22ACCDC0165AD80A1495A1C5FD04C5 /* Shared.h */, + 13DFE388CEDD89331C7130FB57E3D3D8 /* Shared.m */, ); - name = "Support Files"; - path = "../../../ios/Pods/Target Support Files/ReactNativeUiLib"; + name = lib; + path = ios/RCTCrypto/lib; sourceTree = "<group>"; }; - 27F422F53DA14B74AE0EF0CC5DC4DA05 /* MMKV */ = { + 27C328596D14C65BBC860EF603524A6D /* ReactNativeUiLib */ = { isa = PBXGroup; children = ( - 2E73A9322BBB7C6B2CE667F4A5619F30 /* libMMKV.mm */, - 871379DC580A9906566837C1B872A61C /* MMKV.h */, - F664652BB858F525BA3D936AEB2F1E1B /* MMKVHandler.h */, - 56D90BF2040C78853B6B88181FDB7439 /* Support Files */, + 07F0D01F0C02EE2616A2C8F96CD710C1 /* highlighterview */, + 8C3F1877AC68DA4EF1143D8849F1D6AE /* keyboardinput */, + B45CAD9ADC2A37C133AD139914B7F2E4 /* keyboardtrackingview */, + 4069EFDF213FF92300B0E7E49787FEE6 /* Pod */, + 2C18704F6FDB18AE4CE1AC507059A80F /* safearea */, + E762060329116CF6E7ACDC60D47201D4 /* Support Files */, ); - name = MMKV; - path = MMKV; + name = ReactNativeUiLib; + path = "../../node_modules/react-native-ui-lib/lib"; sourceTree = "<group>"; }; - 27F74A6091A6F5F5492D142B1FE6BAD6 /* Support Files */ = { + 27E913A581B7FFB1B9585B20F3677002 /* Support Files */ = { isa = PBXGroup; children = ( - 9CF7B065AE2F454C92B112DA7734C782 /* UMBarCodeScannerInterface.debug.xcconfig */, - 7882F64290BD38F9E125BF84409F74A5 /* UMBarCodeScannerInterface.release.xcconfig */, + FA3A2828981CEC4C13EE039427DF4D9A /* RCT-Folly-dummy.m */, + A420AE87F419ECE42BF832525ACCF164 /* RCT-Folly-prefix.pch */, + E2A41D3659BDDF2344E851C3C0E2516B /* RCT-Folly.debug.xcconfig */, + 7A9833FF71C31016A4E2A5EA1C9771BE /* RCT-Folly.release.xcconfig */, ); name = "Support Files"; - path = "../../../ios/Pods/Target Support Files/UMBarCodeScannerInterface"; + path = "../Target Support Files/RCT-Folly"; sourceTree = "<group>"; }; - 28231AF484C698273669847C1DD7ABBA /* RawText */ = { + 280A91D2F151B77AAD5E1CEDFAF9CBE9 /* Support Files */ = { isa = PBXGroup; children = ( - D6B54A82E94BF7B2CFD4B0174A07DE6C /* RCTRawTextShadowView.m */, - BACE883A39343A35E0D7C43689B9A13E /* RCTRawTextViewManager.m */, + 1EA15BC31B95CAA5F932BD649E1AA636 /* hermes-engine-copy-dsyms.sh */, + E5A94C202F92FAC83424F6ACDCC5CD83 /* hermes-engine.debug.xcconfig */, + D74682771CDC57AD1A454E56564F1CEC /* hermes-engine.release.xcconfig */, ); - name = RawText; - path = RawText; + name = "Support Files"; + path = "../Target Support Files/hermes-engine"; sourceTree = "<group>"; }; - 291031A305B371D4AEE4F1DA066ACD4E /* Support Files */ = { + 288BBD8916459D9422CCB853F0BB9F76 /* Support Files */ = { isa = PBXGroup; children = ( - 6174C6C58855E02EEFC88B8F6D256DF9 /* Yoga.modulemap */, - 78D86B2A9ECB46E74E8330B64B2E55F9 /* Yoga-dummy.m */, - FCE82986B8F4C7BF2E760101EF43B205 /* Yoga-prefix.pch */, - 9E8370F57B4CD8FC9815CC109C7CF48C /* Yoga-umbrella.h */, - 00FB9E7D2F9A485D27C21E89AFFBDDDD /* Yoga.debug.xcconfig */, - E46F50A7B06925F63C961B555F8D2501 /* Yoga.release.xcconfig */, + F4FC303BE623F15A91E502F10F95F27F /* BugsnagReactNative-dummy.m */, + 8D9F82E39FE42CCE54277424F6A4E9F7 /* BugsnagReactNative-prefix.pch */, + 01570026119213B57D22D400450D94ED /* BugsnagReactNative.debug.xcconfig */, + 315831ACFBEFB820DCC00BD89DBA328D /* BugsnagReactNative.release.xcconfig */, ); name = "Support Files"; - path = "../../../../ios/Pods/Target Support Files/Yoga"; + path = "../../../ios/Pods/Target Support Files/BugsnagReactNative"; sourceTree = "<group>"; }; - 2919C4ADBC70FACD374207376B0BC186 /* Support Files */ = { + 29A3B81312447CA2A0225A26D2870CBA /* Network */ = { isa = PBXGroup; children = ( - 5A358E9295CEDF21341438F2707CE599 /* OpenSSL-Universal-xcframeworks.sh */, - 520842FBB570439D5E9C9C0F1D1828C5 /* OpenSSL-Universal.debug.xcconfig */, - 3D3089FB9A74DB9C995A4671B1944823 /* OpenSSL-Universal.release.xcconfig */, + 736DCA4DF1C742B4DA8461B6BEA0B28B /* GULMutableDictionary.h */, + 8E0AEF464378C51B421A6713B4A467EF /* GULMutableDictionary.m */, + 85B3131B3BE42565EBCF1FC623E68D8B /* GULNetwork.h */, + 1702E5C4538682E4F7D67E56D30B45E9 /* GULNetwork.m */, + 08BE1AD9E69EDE2425AF86A0B0EC0BBC /* GULNetworkConstants.h */, + 6BB0D3164DF6D26FBC19375EEC896078 /* GULNetworkConstants.m */, + AAFB23BF96435BCE802CF29A1D2DD0DB /* GULNetworkLoggerProtocol.h */, + 7B867BAEA2E53533D05505E5FBD7DD50 /* GULNetworkMessageCode.h */, + 552355C1FCF6DABDBA85A2A1C7CEA885 /* GULNetworkURLSession.h */, + B2F6D12646EC41A9CEFB3768C870894A /* GULNetworkURLSession.m */, ); - name = "Support Files"; - path = "../Target Support Files/OpenSSL-Universal"; + name = Network; sourceTree = "<group>"; }; - 291EA66C178E664FC9E1C62C71796E21 /* UIUtils */ = { + 29DC2D0D5EAFA3C8D23C07939CB0DB60 /* Pod */ = { isa = PBXGroup; children = ( - 1786B30D3A2D0FDA491DA441AA95B05F /* RCTUIUtils.h */, - 291A3EF93026735D4A371473E47296C4 /* RCTUIUtils.m */, + BB04E68A718FD9F3948B60D8FCC96A13 /* LICENSE */, + CE4ACF55E78CE323566F5EC27CEAB715 /* README.md */, + 96F1C711648D7EC7F24569DD43BCC978 /* RNLocalize.podspec */, ); - name = UIUtils; - path = React/UIUtils; + name = Pod; sourceTree = "<group>"; }; - 29290CDC75BEB381B81698C34C08C9E8 /* React-jsi */ = { + 2A12A928747D151AE0920A140912BDFE /* UserDefaults */ = { isa = PBXGroup; children = ( - 100FF3BEA5FECADD67AD149C0ECC3CB4 /* JSCRuntime.cpp */, - AA817559181B1223AA1F194FBE06B705 /* JSCRuntime.h */, - 672AF95080F815C951BE7C1CD6E27BE8 /* jsi */, - AC3FACD0A5A73FFF1253989A85A746E3 /* Pod */, - 38D9EAF47DFD9D6656C267373959A73D /* Support Files */, + DBA6250BFEECC287C07056E2770CF399 /* GULUserDefaults.h */, + A8E677B559055F437CAD3C6DE15C2693 /* GULUserDefaults.m */, ); - name = "React-jsi"; - path = "../../node_modules/react-native/ReactCommon/jsi"; + name = UserDefaults; sourceTree = "<group>"; }; - 29F709BE7E7EBE94BBB06009E02BEA34 /* Support Files */ = { + 2A748CDA2E3F0E08B1E6F9F5AD77059D /* Logger */ = { isa = PBXGroup; children = ( - D85BA8C9AB92AE4535FB92658398E81D /* React-callinvoker.debug.xcconfig */, - 81AF47282A6DA97839BF24F1A5FA42E7 /* React-callinvoker.release.xcconfig */, + 999048AB0EB9CC2EB28D51EDDDBAA9B4 /* GULLogger.h */, + 22FCECE27AAAF9E8AAAA8027CE20B388 /* GULLogger.m */, + 1A2582A0D7CD2DB2109561639E902BC9 /* GULLoggerLevel.h */, ); - name = "Support Files"; - path = "../../../../ios/Pods/Target Support Files/React-callinvoker"; + name = Logger; sourceTree = "<group>"; }; - 2A13D72527B64620BD3DDE11B8E77759 /* CxxModule */ = { - isa = PBXGroup; - children = ( - E612D2832D116E527EFCC79329C6BEC5 /* DispatchMessageQueueThread.h */, - DD4D85719B708A4778BF1B148B6F1152 /* RCTCxxMethod.h */, - AEB135E8942546DB1AF42D3CF1B59508 /* RCTCxxMethod.mm */, - DA0EB8F4CBDE9D79FB27DC6176E546B1 /* RCTCxxModule.h */, - 7FE97DB842A59B5C2F615564FE5857EE /* RCTCxxModule.mm */, - DA0A31425FD62D5681ABB35C58430178 /* RCTCxxUtils.h */, - BF55835DEC39E3DA93EFFAB8A7E93815 /* RCTCxxUtils.mm */, - 90E0C5C1D038330241A0A2B207F13D08 /* RCTNativeModule.h */, - 5D7BE327B326B95C648585A7BE370A3A /* RCTNativeModule.mm */, + 2BCBAA7DE9F438304DA33731EBBC9CB3 /* Flipper-RSocket */ = { + isa = PBXGroup; + children = ( + 08010035679FEE5E6091D4ACF7366ADE /* Allowance.h */, + 520200035F2C53EC379867018D7BCA3B /* AsyncGeneratorShim.h */, + 3AF0E7ABA076B0C0E9450C8BE79D0876 /* BaselinesAsyncSocket.cpp */, + 6784B66FCD9A8C5EB48CB4446A7DD63A /* BaselinesTcp.cpp */, + 826FC00055EF9A1713E52FA84C707BE3 /* Benchmarks.cpp */, + 40804BDDC9B997A460AE9078112642A6 /* CancelingSubscriber.h */, + 1E3D9120908BE2B007676F80A40D1FBE /* ChannelRequester.cpp */, + F8E3759604A0E108F70FFC0CE8AA09E3 /* ChannelRequester.h */, + BD59D65E2CF97FA205A9744A8CF02561 /* ChannelResponder.cpp */, + FFDA049D1A5FC9943216AE3AEFB3D2F4 /* ChannelResponder.h */, + 1C5C9FE5EED5AE4B5BB2873DA9C503F5 /* ClientResumeStatusCallback.h */, + 64669BD8F6B902548104BF0EE4D90002 /* ColdResumeHandler.cpp */, + 2B59DBB7F0438F49EE3ED69F5F807ADB /* ColdResumeHandler.h */, + 29F533E7B70B1E571B0054B93BA488A5 /* Common.cpp */, + 07112AD0BBE4E4D25675317B961F84F6 /* Common.h */, + F239F9305BAA73762F877D2242AEBF5E /* ConnectionAcceptor.h */, + 318F5BC012C98F6683CA0DC5D00DDC39 /* ConnectionFactory.h */, + B9D1E7CE0AF119E2C8F08C52950D93F7 /* ConnectionSet.cpp */, + 60AD4EFF257DE21A37206860B2AF6B12 /* ConnectionSet.h */, + F78211D4FD23D27644E347F720DC8E1C /* ConsumerBase.cpp */, + 1329A9576B25701FE7200B3333966D55 /* ConsumerBase.h */, + 5197EE6E5D853011D1F9A8DCD5E562CB /* DeferFlowable.h */, + 4E231934ED5D8D8EAF362949A9BCF46B /* DeferObservable.h */, + 3FB5C3DB4F86649869C6EBD20E9F3283 /* DuplexConnection.h */, + 3F431064D61644D8793711FFEB7CFBA3 /* EmitterFlowable.h */, + 9351A95DC0CA462DA49B4D338052E5F9 /* ErrorCode.cpp */, + 519151A41D138ADEBAF93B5DFA661CCC /* ErrorCode.h */, + 59F022EF092EB9F714DCCA53A46A977A /* FireAndForgetResponder.cpp */, + DAE1A314C9086C54F54B843E6913D998 /* FireAndForgetResponder.h */, + 6489452F04807883523A1FFC418B15C6 /* FireForgetThroughputTcp.cpp */, + 7C526FC408D59932EA460CABD3A1C0DD /* Fixture.cpp */, + D8F4957E5C1113EAC98C0AB582D174D1 /* Fixture.h */, + 1AA67571B37D6DF127BEFC3BB0F740A9 /* Flowable.h */, + 4E14F46EE083E9BBBC6B8527E221DEBF /* Flowable_FromObservable.h */, + 01E694FF9802B4585B341D1E0888152D /* FlowableConcatOperators.h */, + 8EF9DB1D163CDEB70F26F81A4C52D4D2 /* FlowableDoOperator.h */, + 19DEC86B796AFA6357C76938F5511B32 /* FlowableObserveOnOperator.h */, + 59CF413A690341D81C3A0118EA067AB6 /* FlowableOperator.h */, + 8106C55F6EB8A83C7B846CC3E85A8B18 /* Flowables.cpp */, + CAE3B513D2466CE7B9C9D528D733BFB0 /* Flowables.h */, + B902AAFDCACA9FCCED6F2CACFDA43EC6 /* FlowableTimeoutOperator.h */, + 0A669C2FB3E713DBC488F7E6C7F31FF4 /* Frame.cpp */, + B247BAA030EA2BCCEB72086F4E4F6279 /* Frame.h */, + 9DFF722C9D68928E81A928D28CE99CED /* FramedDuplexConnection.cpp */, + 23B822ABE5B828DE67B014671F72AA3C /* FramedDuplexConnection.h */, + D0CE421CC8A4C9837026846BCDE1A445 /* FramedReader.cpp */, + 1A9F8591F2B098D7202BFA3E470BF076 /* FramedReader.h */, + D947A721D0BCB8B7BDC2BB99963EB67B /* FrameFlags.cpp */, + 8CF744B5A7E7269E61FF69287E7453AA /* FrameFlags.h */, + F10520B4E2457035556B41CB3D68C96E /* FrameHeader.cpp */, + 4FD91DABC2ACBF3238E5B7DFB7E65B83 /* FrameHeader.h */, + 9704856B132A18D019D8C8500400D8C5 /* FrameProcessor.h */, + 78C3DD5E9BC7C9B9507FFB2A02CE7CC2 /* Framer.cpp */, + DA9CB1EBD91EFEE2DA3CF4E11EAEFDD0 /* Framer.h */, + A2A1F2D3F2E7580A8577FA49CF9FD49A /* FrameSerializer.cpp */, + E3064AA592E63D119E4B6ADA43C9659A /* FrameSerializer.h */, + 9A189C4054AD854F4D21C9A20DDACE85 /* FrameSerializer_v1_0.cpp */, + 8C83E0915495B8F27BA7E3333C668216 /* FrameSerializer_v1_0.h */, + 08352C8CAC1838E9D2DE5E829028575D /* FrameTransport.h */, + 6A61F8A8DFBE1EE2BB45DAD8BEA5C3B3 /* FrameTransportImpl.cpp */, + F1EE0156D120B7A7DAC12B5C1B0D5126 /* FrameTransportImpl.h */, + 7A5E80FDFC53B12ABD075832C3EFE0D1 /* FrameType.cpp */, + D7C3074D50DEDDB9AFFB91F3D45C7179 /* FrameType.h */, + 1812504A074771DDFF9A406E4531F4FA /* KeepaliveTimer.cpp */, + 20DFC15259D61ECFBBDC81BACFF9285B /* KeepaliveTimer.h */, + 040F7E7B6E634434DFC89127AAC83D15 /* Latch.h */, + 5D3D49522DC4035458D2554F1CA42CEA /* Observable.h */, + B00B844E645A4E61C5FF2BA98F7EC1E1 /* ObservableConcatOperators.h */, + 95503C247F5429F6E5C0317D8BCA8A9A /* ObservableDoOperator.h */, + 0421732F2E3E823263A486C10562D634 /* ObservableOperator.h */, + 2F8E9524F8DDF11783626A8747AFE0AB /* Observables.cpp */, + 3D52CC65517C6DEB7AE2E77BFB4742BA /* Observables.h */, + 480F651048CB68CD4A41142E6C94189C /* Observer.h */, + D9521755B9E284AB2B70A05ABB295504 /* Payload.cpp */, + 1AD061EB19068E967A52EA97CB9C0705 /* Payload.h */, + F02A95F025F642C249F29F88C764C9F0 /* ProtocolVersion.cpp */, + 4B491027E9CC2530F2AD5AA42CD4AAB9 /* ProtocolVersion.h */, + 30220F5F5960F9DC9BA06E83F1C5A86E /* PublisherBase.cpp */, + 578CBD79060AF149B9A4FCA0E52B7571 /* PublisherBase.h */, + CCF25425C76A5AF881A528161D70FE39 /* PublishProcessor.h */, + BA99F33CB1BE0E6FF8F2B36C459CFCAE /* RequestResponseRequester.cpp */, + CF02DBB9D807079D900DCBC21F9261BC /* RequestResponseRequester.h */, + 01B4BB59CE0F08F46986E5A92AF0508D /* RequestResponseResponder.cpp */, + 2051544C3E94931527318464D6F58B46 /* RequestResponseResponder.h */, + DABBBA2AB0D423BAB4690276648E9AAD /* RequestResponseThroughputTcp.cpp */, + 186F7E6D85BC225BD8ED6C1B4BFCD44A /* ResumeIdentificationToken.cpp */, + E6DE1541D11FE040E5609B01D20E0545 /* ResumeIdentificationToken.h */, + 63CA53CC84313A31F74768406BD7D28D /* ResumeManager.h */, + 252A87767BF8EA29A2BDE4C59032DFAA /* RSocket.cpp */, + ADE2B31E84EF1342BDD291F96C07BDD2 /* RSocket.h */, + C73B61CAC86CA6702B49ED64B86007B1 /* RSocketClient.cpp */, + 3CFC40D774313BAD493B0E0E5376C3F7 /* RSocketClient.h */, + B8D58CDC8C712FF30A0126DFE3675E22 /* RSocketConnectionEvents.h */, + 055D080F25379DA6232697488611E3A9 /* RSocketErrors.h */, + 4AFDB174B549F4BE754596DB44CDB018 /* RSocketException.h */, + 5E9BDE07FCC8F639F6B0B8D965E6BCDE /* RSocketParameters.cpp */, + 760863F9772B27FF17279E053C58DAA5 /* RSocketParameters.h */, + CEB4E7DC8C2B4AEC6C03C2BF7EF7E3C1 /* RSocketRequester.cpp */, + A85228D7B9EC8EF927D8DC036E08B119 /* RSocketRequester.h */, + 17A9D03748A1F6493E29DE072BCEA91E /* RSocketResponder.cpp */, + FACDCD7C43F82CBE335AA610A4018F7E /* RSocketResponder.h */, + A60204F19AF38FA7F5A1FCB3A43D6CEF /* RSocketServer.cpp */, + 4364FC67F9D8304BD684CD412D7A3FD2 /* RSocketServer.h */, + 314F2B2F68329CE3B94D04E536278460 /* RSocketServerState.h */, + 608CAE17196F36A656F194BBBEE79D45 /* RSocketServiceHandler.cpp */, + FAF3F09255F1D2DE831CECC41208BD08 /* RSocketServiceHandler.h */, + BC1DC87184145EA55F828E06FB2A2AD0 /* RSocketStateMachine.cpp */, + 686690D1A2F8AF1F778AD3D51CEB18D4 /* RSocketStateMachine.h */, + 33B24E80D660D66811180391F16DD06E /* RSocketStats.cpp */, + 0574B06E6531E44B4662F577344A737C /* RSocketStats.h */, + 34F495AEC35C641A75B111FEC3FBA89F /* RSocketTransport.h */, + 9C7943C63991EED72FA56823AC13E3C5 /* ScheduledFrameProcessor.cpp */, + 657882E0A02D92232D9F6BBCA2379183 /* ScheduledFrameProcessor.h */, + ABD80F05D7F4102D080A130112D40F01 /* ScheduledFrameTransport.cpp */, + 1171ACD8F2E1D59BCF493239D501C8FA /* ScheduledFrameTransport.h */, + D312000E411FF067BEB309C4E6A3A740 /* ScheduledRSocketResponder.cpp */, + 32D07D9D57746C4771BB344C1387DB7A /* ScheduledRSocketResponder.h */, + 01E1291498C64C07547774F16AA1E544 /* ScheduledSingleObserver.h */, + CD91383C2E2E5199BDAD51EA6938AC11 /* ScheduledSingleSubscription.cpp */, + 7A484DDABB84263AD064B6E98671AE8B /* ScheduledSingleSubscription.h */, + 34DD9A2B9267BAB868DE6445E96973FC /* ScheduledSubscriber.h */, + B1F8CF581CB5D7DBDA3CE18D2C0D1B28 /* ScheduledSubscription.cpp */, + F1423CCA2253A30759D525E1EABF2D1C /* ScheduledSubscription.h */, + CDCCC001ECA9202F30A0E96544B193AA /* SetupResumeAcceptor.cpp */, + 73CDF81B12C70A6D012FA67A3587C67C /* SetupResumeAcceptor.h */, + 4DE570E4EA43B841487A2B1C4E71F0A9 /* StackTraceUtils.h */, + B02B5CA1B297D39A188A109B08820B67 /* StreamFragmentAccumulator.cpp */, + 90AF26C6F16CDF6E27F729A7BBDF1769 /* StreamFragmentAccumulator.h */, + BC3DD15C5887438E50FC9EA6DC9B0853 /* StreamRequester.cpp */, + BED6ECDEACADEF05310734AB5770C4C5 /* StreamRequester.h */, + 4B410A2FD9231817FB4F46C73F7032CF /* StreamResponder.cpp */, + 4CD16689C0CE720E915AA45FEE447997 /* StreamResponder.h */, + 72CC93EF1D5AD73A041DBDF4A2089DD2 /* StreamStateMachineBase.cpp */, + 98C0D5FA0AC2D39C2A02838D1243B0E5 /* StreamStateMachineBase.h */, + B316952DD73BA4536327BAC2F0C3085C /* StreamsWriter.cpp */, + A29D0534ACBDE9B678310F276EED3E82 /* StreamsWriter.h */, + C372933D88C37B0D59A71894B0B7CE3F /* StreamThroughputMemory.cpp */, + CDB02E1C3FD1D61CA44327824DF1C0AD /* StreamThroughputTcp.cpp */, + A129FA173BD1DFA8F6367D62CEE74D07 /* Subscriber.h */, + 36B43E04C192429200B971BCA766EE2B /* Subscription.cpp */, + E6B85D082DB25A1C9DCA3E28E844D939 /* Subscription.cpp */, + 5EBEFB8A6FCE9E056223261A9B679700 /* Subscription.h */, + B2DC601003B56909E4E622587FF16416 /* Subscription.h */, + 489F45F96C3CA3020DDAC6A5D4168536 /* SwappableEventBase.cpp */, + FAF4A076B4FBC752545689903A594249 /* SwappableEventBase.h */, + 827AD32D3C28F102941B4AFB05F76826 /* TcpConnectionAcceptor.cpp */, + 68ECE53B36A62F07366780830325CAB6 /* TcpConnectionAcceptor.h */, + 13F84715F1EB67124DA06FA6170ED005 /* TcpConnectionFactory.cpp */, + F7CD435CD4E46750DE4B82F5AF6B5B21 /* TcpConnectionFactory.h */, + CE4290D6C388B7DC6008E00B28447963 /* TcpDuplexConnection.cpp */, + 5ECBD247FFBC6EAE6ACBA9EC10EC5D54 /* TcpDuplexConnection.h */, + 5B521E87425A4CF714B0790D468D35FF /* TestObserver.h */, + AF95E83E2C5034A52CE17141CA50F426 /* TestSubscriber.h */, + F8322B9F6F3255F3B6086FC3492FACCF /* ThriftStreamShim.h */, + C661E81895557EE03473B762AE3903F6 /* Throughput.h */, + C0B33919C6008C738F795DC16361E687 /* WarmResumeManager.cpp */, + 5CF8400C1FF7E5A0FC9E033047B9DF61 /* WarmResumeManager.h */, + 35BAA952C62D79C1417676CACC008ED2 /* Support Files */, ); - name = CxxModule; - path = React/CxxModule; + name = "Flipper-RSocket"; + path = "Flipper-RSocket"; sourceTree = "<group>"; }; - 2ADDAEF89256CBF49155EA891F52C149 /* FlipperKitLayoutTextSearchable */ = { + 2C18704F6FDB18AE4CE1AC507059A80F /* safearea */ = { isa = PBXGroup; children = ( - E46D73F190A6730B576634310DE76E76 /* FKTextSearchable.h */, + 18627B4FB3750C350C14C81CE2081CF7 /* SafeAreaManager.h */, + 854AF6E897C7148E0D314B3C42A8586E /* SafeAreaManager.m */, + 39155CA8E4BB22686EC036947E746C55 /* SafeAreaSpacerShadowView.h */, + 0641C1A8B6C6A5462693D901E04AA211 /* SafeAreaSpacerShadowView.m */, + 56A56D098D5382B35FB0453B22066535 /* SafeAreaSpacerView.h */, + D60FBEC67E263236021D52314FE75310 /* SafeAreaSpacerView.m */, + 7323E8E1B233223D42B8522731D41F6F /* SafeAreaSpacerViewLocalData.h */, + 5ABB8CEBDD6E648722E013DE24A76315 /* SafeAreaSpacerViewLocalData.m */, + EFA380136E56EF1168C73643B83C1765 /* SafeAreaSpacerViewManager.h */, + 8A041C096BF8FF454FEEBBDE428AAC96 /* SafeAreaSpacerViewManager.m */, ); - name = FlipperKitLayoutTextSearchable; + name = safearea; + path = ios/reactnativeuilib/safearea; sourceTree = "<group>"; }; - 2B3A3D161EE9A83388601D1B21185E62 /* RNFetchBlob */ = { + 2C433B0D6F8268CB7D1E19A51310148F /* Pod */ = { isa = PBXGroup; children = ( - 84FACB1B8A9DB495EDF073E347729893 /* RNFetchBlob.h */, - E476010170478AC9D7AA25B09F7DCF62 /* RNFetchBlob.m */, + 31603B8B43F1E7752E52306C178570EC /* UMFaceDetectorInterface.podspec */, ); - name = RNFetchBlob; - path = ios/RNFetchBlob; + name = Pod; sourceTree = "<group>"; }; - 2B45685CBA4FA71A1D076B8BEC8EB450 /* Support Files */ = { + 2C9F72500B54DAFB754B1471D76C6198 /* Support Files */ = { isa = PBXGroup; children = ( - BE088D34B31ACFBDBA428DB61D2FC8FE /* React-RCTNetwork-dummy.m */, - A3F2E83BB04FE8AD5C6B2DB7479DAE08 /* React-RCTNetwork-prefix.pch */, - 8615DB1436F8371A8275C4ACBDA47BFC /* React-RCTNetwork.debug.xcconfig */, - 00D4C04F9C078B723204D9E3500F2881 /* React-RCTNetwork.release.xcconfig */, + 3386B029270CBF405F9F29D38FFC7ED5 /* React-jsiexecutor-dummy.m */, + 4F0A632F2CC3B049922861BE76FE1835 /* React-jsiexecutor-prefix.pch */, + 324ED92993327E75D24EBE7F53716AA4 /* React-jsiexecutor.debug.xcconfig */, + 118866EE1ECCAD2E28C4A2E746435DE5 /* React-jsiexecutor.release.xcconfig */, ); name = "Support Files"; - path = "../../../../ios/Pods/Target Support Files/React-RCTNetwork"; + path = "../../../../ios/Pods/Target Support Files/React-jsiexecutor"; sourceTree = "<group>"; }; - 2DCA09607972EF02C6DC33BC3DE26927 /* Support Files */ = { + 2CE8507A5199BB65C80BB4427859E38F /* React-jsinspector */ = { isa = PBXGroup; children = ( - F8A34C931F8875081A4EE2BB1B802E30 /* UMPermissionsInterface-dummy.m */, - 98DAAEA31AF8159C03E061644FC4BB80 /* UMPermissionsInterface-prefix.pch */, - F5771F51BE8367D62CF31BCD2A4FEB67 /* UMPermissionsInterface.debug.xcconfig */, - D18A2940596CFCC7B0DD063E40A88D66 /* UMPermissionsInterface.release.xcconfig */, + D28B65567E422C2E83DFD92784EDF81D /* InspectorInterfaces.cpp */, + 2342F92B9B224A9643F2D47E450D4869 /* InspectorInterfaces.h */, + 92CEE54CB01552724415B00C9BE9FA10 /* Pod */, + ABB056AD1EA55CDD592092135E8D9AC4 /* Support Files */, ); - name = "Support Files"; - path = "../../../ios/Pods/Target Support Files/UMPermissionsInterface"; - sourceTree = "<group>"; - }; - 2DE5EBC4462FAB226CF1389AC547081A /* BugsnagReactNative */ = { - isa = PBXGroup; - children = ( - 10F86E66E0536F796186D4071AAF9666 /* BugsnagReactNative */, - 6ABD67D964FDB8D39BBD2A098FE3D095 /* Pod */, - 326825D90FD7E0E28366D006D62F34B2 /* Support Files */, - 9551023A9ABE6695D0ACF46D95AD29DE /* vendor */, - ); - name = BugsnagReactNative; - path = "../../node_modules/@bugsnag/react-native"; + name = "React-jsinspector"; + path = "../../node_modules/react-native/ReactCommon/jsinspector"; sourceTree = "<group>"; }; - 2DEE7E4490FAF113AC4089C451217EDD /* boost-for-react-native */ = { + 2D0268FA72C6CBC0A0FDF37625E01983 /* RNConfigReader.xcworkspace */ = { isa = PBXGroup; children = ( - E5D00CEC67D46E5680117553520ECE11 /* Support Files */, + 5892DADA7DB089BA3D5F12C2C39FA1E6 /* contents.xcworkspacedata */, ); - name = "boost-for-react-native"; - path = "boost-for-react-native"; + name = RNConfigReader.xcworkspace; + path = ios/RNConfigReader.xcworkspace; sourceTree = "<group>"; }; - 2ED49C3FDA7BEC476F00E79559D73E9D /* Support Files */ = { + 2DE527341F42F547119E05BE0E45B993 /* CppBridge */ = { isa = PBXGroup; children = ( - 28A8F597A0C2B9228920010A7D3BA31D /* React-RCTBlob-dummy.m */, - B7CB201A324A5C467DCAB13465BE0F9F /* React-RCTBlob-prefix.pch */, - B0165A96BF4E5166DAC954DD7CC76CC1 /* React-RCTBlob.debug.xcconfig */, - 7E61F8A63FBA407A952062E0F522055D /* React-RCTBlob.release.xcconfig */, ); - name = "Support Files"; - path = "../../../../ios/Pods/Target Support Files/React-RCTBlob"; + name = CppBridge; sourceTree = "<group>"; }; - 2EF25E51A7D9B87C4E7E327310CEAACE /* Support Files */ = { - isa = PBXGroup; - children = ( - 5CD4624DD0FCA9E92E21136ACCE7F269 /* react-native-safe-area-context-dummy.m */, - B30D6FE2E629D083BE994DC651DCB6DC /* react-native-safe-area-context-prefix.pch */, - ABD3A2C3ABA0E1DFC3CA633DDDDE1135 /* react-native-safe-area-context.debug.xcconfig */, - 3C500AB3A394159D74E166DE57D0C06D /* react-native-safe-area-context.release.xcconfig */, + 2EF2380284FBB4F1698873FDD7F4DFB6 /* FirebaseInstallations */ = { + isa = PBXGroup; + children = ( + 9C5138D91DFF4E6499962787850986A7 /* FIRAppInternal.h */, + FE0CEE3875F4D526EEDF6C494EE9B551 /* FIRComponent.h */, + 1A2BBD20BA4A44E2396498DD89D9251A /* FIRComponentContainer.h */, + 14E9AEBA220A2D5DB5D2C0F836D2FD20 /* FIRComponentType.h */, + 90228DD9CF6B05645E6690C53AD4A221 /* FIRCoreDiagnosticsConnector.h */, + 95E2DB6F1DB9AD6DC2CF79A05A0D5233 /* FIRCurrentDateProvider.h */, + 6A88281868F02A88B6C5D6C317FFB031 /* FIRCurrentDateProvider.m */, + 3A1A10E892C61342945164626A677F48 /* FIRDependency.h */, + 3FA0CCF04D2E6683749FEDC56756898D /* FirebaseCoreInternal.h */, + 4ACB3D8CA8F2D8F84A6C9806BCAECF81 /* FirebaseInstallations.h */, + F37CAA1BEBD73DD2B9788530A732D1B5 /* FirebaseInstallationsInternal.h */, + A07EA4BBD031EA9B7E087D507BF24A2C /* FIRErrorCode.h */, + 2A043FAA13A27B2B62A791DD5EC7F592 /* FIRErrors.h */, + 877A93CC3BCA1A046A2B37CE4F41BD49 /* FIRHeartbeatInfo.h */, + 040FF851D30C23B39D7E38A14D54F92B /* FIRInstallations.h */, + A2117B94DAEF4CF3025EF45683B75874 /* FIRInstallations.m */, + 6879CFC650A2964667562910F7EC20B9 /* FIRInstallationsAPIService.h */, + AC23ADFCCB5EF607BD312EC43DBB3E28 /* FIRInstallationsAPIService.m */, + 834EE78545DDAF73EA1C6BD54795E196 /* FIRInstallationsAuthTokenResult.h */, + 3F024AA44CDFFD77E7B15C35A988977D /* FIRInstallationsAuthTokenResult.m */, + 331DFB278B4A619A11F7AA0B45220887 /* FIRInstallationsAuthTokenResultInternal.h */, + 20EF3CE5AEB50AB1D838CE2D9804AE4B /* FIRInstallationsBackoffController.h */, + C86569314D70F88BEAB99A136A62B607 /* FIRInstallationsBackoffController.m */, + FA2A16557EF2B0E6EC764CECF527E094 /* FIRInstallationsErrors.h */, + 4B213F84153CB8FA9FF51978376799A0 /* FIRInstallationsErrorUtil.h */, + E74CA33DC4408297AB9312E4ADD10393 /* FIRInstallationsErrorUtil.m */, + 04DCACFC45902D2E1B8D9090875D8207 /* FIRInstallationsHTTPError.h */, + E68ABF8D733C8D4CB8759E1864D8DA10 /* FIRInstallationsHTTPError.m */, + 0E18B5EFACA1F01D22B93F8AD83F8D64 /* FIRInstallationsIDController.h */, + FC3CD7EE8F9F382FE5C059AC57B6FAD6 /* FIRInstallationsIDController.m */, + 760F88B941BACF05AEC85414CDC6B800 /* FIRInstallationsIIDStore.h */, + 173E059CC0B22FC43C047F7226085477 /* FIRInstallationsIIDStore.m */, + E9E6EB091324946C1F909EB08DBC0921 /* FIRInstallationsIIDTokenStore.h */, + F9FD59B33C4ADE83A2C7E66A89D544B6 /* FIRInstallationsIIDTokenStore.m */, + 0A9419B6A5D619E948EA95FCA9FBA8E0 /* FIRInstallationsItem.h */, + 4FDB641DD6622C3337E50799D6CAF50B /* FIRInstallationsItem.m */, + 9E583AE0B79ADCAFA06F714C42CC11AA /* FIRInstallationsItem+RegisterInstallationAPI.h */, + 96408A247A8585E195EFE59F6D2A8F94 /* FIRInstallationsItem+RegisterInstallationAPI.m */, + C244AA513FFAD26EAB360CBA0358127F /* FIRInstallationsLogger.h */, + 98B837F26EC99DCB7279A533520ACC3D /* FIRInstallationsLogger.m */, + C41E86BF368A139B46170621488AE0D6 /* FIRInstallationsSingleOperationPromiseCache.h */, + EF49DF606834B553E1C98BF8BEF57C0F /* FIRInstallationsSingleOperationPromiseCache.m */, + 883107563F2F824E99F911C228B6A82F /* FIRInstallationsStatus.h */, + 2596698ACF231F8C3C03B19A9CA4DB9D /* FIRInstallationsStore.h */, + 12B4D0E69B42898FEE7C64F75658DD45 /* FIRInstallationsStore.m */, + 85247E76FEDDA0708B324800C21EF376 /* FIRInstallationsStoredAuthToken.h */, + 4B7D7162E4A6826DB0F5EBD39C2FC138 /* FIRInstallationsStoredAuthToken.m */, + DB8304DCE4775BF595E14CCF4DF2BFE3 /* FIRInstallationsStoredItem.h */, + A2C61C4682049BF8587E9647FF603D07 /* FIRInstallationsStoredItem.m */, + 54CE73AA7F6B4AB2117180DC6185A2BF /* FIRInstallationsVersion.h */, + 2359E112F64A66EE9D8494191A688182 /* FIRInstallationsVersion.m */, + B65BD07C5CB9F791C2F239B4C88BD2A4 /* FIRLibrary.h */, + 7B73D902D17E1F44871C986BEA5651A9 /* FIRLogger.h */, + 6C3AF7CE91E8F8CE88130AA34B1745CE /* FIROptionsInternal.h */, + 402ECC98F44C7DA60F37BE67E646438B /* GULAppEnvironmentUtil.h */, + 1FC677C4009E2D403D641CDB80110FE0 /* GULHeartbeatDateStorage.h */, + 4F63FB8C00FDE84A14231F4368DFB9BB /* GULKeychainStorage.h */, + 89C0E030EA23067337E4B13B2B06A6E4 /* GULKeychainUtils.h */, + AD5272F35581455FCB38C329C710D92E /* GULSecureCoding.h */, + 1D9DEB733CE9D2A9744D90E5190C5223 /* GULUserDefaults.h */, + 019F4350E0E3F85B36E57E567F2CA562 /* Support Files */, ); - name = "Support Files"; - path = "../../ios/Pods/Target Support Files/react-native-safe-area-context"; + name = FirebaseInstallations; + path = FirebaseInstallations; sourceTree = "<group>"; }; - 2F1824855DC6896AC2F93FCBE0CF1B9D /* RNCMaskedView */ = { + 2F221F60AFFCC5FF79E45225DAD94BB5 /* Nodes */ = { isa = PBXGroup; children = ( - 9683279A137FDD94EBCEC25771038803 /* RNCMaskedView.h */, - 00B64C68E8E48A836E1764A9AA6F83DE /* RNCMaskedView.m */, - 739C26D6C8C0848BCEE6E33039D4CA57 /* RNCMaskedViewManager.h */, - A5105BEB6D09F367043F57348917EBD3 /* RNCMaskedViewManager.m */, - B5B617E1CC9C786733CB42BD157F5536 /* Pod */, - 10E3478B3B64EB823B56561B7731BC42 /* Support Files */, + 14A8F1B794881C2676CC886279448BA7 /* RCTAdditionAnimatedNode.h */, + FCA38B1F87AE7FB2F491C9B71303C3CB /* RCTAnimatedNode.h */, + A991F82BC6DF02ED3273094F6D042AFD /* RCTDiffClampAnimatedNode.h */, + 46D20B68B02C602D5A8962FAB8EF7F0C /* RCTDivisionAnimatedNode.h */, + 500229F368620D7BA99FE0B967E1337E /* RCTInterpolationAnimatedNode.h */, + 945A3CDBC2E936DC988EF83FAEDE97F4 /* RCTModuloAnimatedNode.h */, + 7DA4FAE190AC0544AD46620A9D3D38E7 /* RCTMultiplicationAnimatedNode.h */, + E87C8355BA03A7A58F8952F04ADC0F64 /* RCTPropsAnimatedNode.h */, + 4AD42BDC89311DA46FC142825692FAEA /* RCTStyleAnimatedNode.h */, + 92A28529F13E7C0684B21B2C829C9C6A /* RCTSubtractionAnimatedNode.h */, + DF4AAE5C0B13A8AF7BF6C0CF3CE90BBB /* RCTTrackingAnimatedNode.h */, + BDC54EB2B374B18C1E3098F5191D6F65 /* RCTTransformAnimatedNode.h */, + 5CC0990CF7E4D760637082C49C07B948 /* RCTValueAnimatedNode.h */, ); - name = RNCMaskedView; - path = "../../node_modules/@react-native-community/masked-view"; + name = Nodes; + path = Libraries/NativeAnimation/Nodes; sourceTree = "<group>"; }; - 2F90513627F8CF41BECF52C115FB80D9 /* Support Files */ = { + 2FDA3D05A72A8C2A9A7DCF293A4AA58F /* Support Files */ = { isa = PBXGroup; children = ( - E0017F1443C3D35518E942C0337D1FDD /* UMFileSystemInterface.debug.xcconfig */, - D6CA99BC0704966CBE320E4264148590 /* UMFileSystemInterface.release.xcconfig */, + 1FC8C7FEF43365F0F3E9C8898A5CD658 /* Flipper-Glog-dummy.m */, + 31188DA7046C75C689C3A17C4A65B528 /* Flipper-Glog-prefix.pch */, + 9FD276F819B7C16BDF04D389D2341CCB /* Flipper-Glog.debug.xcconfig */, + 37D1DA9BD315177B54A3275E67C48CA5 /* Flipper-Glog.release.xcconfig */, ); name = "Support Files"; - path = "../../../ios/Pods/Target Support Files/UMFileSystemInterface"; - sourceTree = "<group>"; - }; - 31DD4FF38AC66E1A3EE4190CF53BF65A /* RNLocalize */ = { - isa = PBXGroup; - children = ( - 5B314EBC0F63CD448CFF48D750EBD705 /* RNLocalize.h */, - 88503417B54D3757756715839F7FDEE0 /* RNLocalize.m */, - FCEED0EE883829DB1F57C7D6F38DB526 /* Pod */, - F8263D86AEC7E8A3F873201850FC131A /* Support Files */, - ); - name = RNLocalize; - path = "../../node_modules/react-native-localize"; + path = "../Target Support Files/Flipper-Glog"; sourceTree = "<group>"; }; - 326825D90FD7E0E28366D006D62F34B2 /* Support Files */ = { + 301FE73E5199B12AD392C36691B5F004 /* Support Files */ = { isa = PBXGroup; children = ( - 4A503693896CA041F220F3392F98D2C4 /* BugsnagReactNative-dummy.m */, - A55820A233D2D3FA9344258E8AF8EED8 /* BugsnagReactNative-prefix.pch */, - 1A5D76D484B71B551E3699390AAF7DE1 /* BugsnagReactNative.debug.xcconfig */, - AAAD5A87BBE65DD6BFF0976C7031A52C /* BugsnagReactNative.release.xcconfig */, + A713C4D8C2CE5B3EFD1B7903550824F7 /* React-RCTVibration-dummy.m */, + 0E8D336D814770BB24162711FCBB1CB7 /* React-RCTVibration-prefix.pch */, + 12D0CAC905F86FBBA072F2413D3853DB /* React-RCTVibration.debug.xcconfig */, + C9482309C441C31984AB24DE22790B24 /* React-RCTVibration.release.xcconfig */, ); name = "Support Files"; - path = "../../../ios/Pods/Target Support Files/BugsnagReactNative"; + path = "../../../../ios/Pods/Target Support Files/React-RCTVibration"; sourceTree = "<group>"; }; - 33C44897323E8C824AD5ECFD9CF54193 /* Flipper-Folly */ = { - isa = PBXGroup; - children = ( - 96BF2D34B47DCE54AA42D94CBA7CA081 /* Access.h */, - 5D09B9B81C4A268D1194275F7C4547BF /* Align.h */, - 288958F4742B33959C00CCDA830DEF73 /* Aligned.h */, - 9F2ABF8C2BEA2939B53F3C2267EF8A0A /* ApplyTuple.h */, - 7BE09AE7D89E67A3549EB8A5B7B2CD7E /* Arena.h */, - FAE388C4C377F211302B9CBF05455030 /* Arena-inl.h */, - 311084FAB238D4B04EF72063D8B3C7DC /* Array.h */, - 7936B2B68C9F299497D44B44C6790BD2 /* Asm.h */, - 0DE80E422D8FB9F62B9655C08E9C59A2 /* Assume.cpp */, - 03AE25503118EA1D4DE028BBCADCAEF1 /* Assume.h */, - ADDEF0085804B78FFCF10A662AA36569 /* Assume-inl.h */, - 9761F3CC3B223CD48DD9834FAD2DB33B /* AsymmetricMemoryBarrier.cpp */, - 7536C3E69616C9AB111495D6F460242E /* AsymmetricMemoryBarrier.h */, - 18ADCDBC13F2746435E16CDFE483C6DD /* Async.h */, - 300B9EB55C9B47A2297C2359CE720EA5 /* AsyncPipe.cpp */, - F8FD5A216F32168394C74F3137AD387D /* AsyncPipe.h */, - 79045EA0EA1525B86D20B46C46E39329 /* AsyncServerSocket.cpp */, - 596F10574E5D420FE66BBA5FD276D16F /* AsyncServerSocket.h */, - C7C93169AF188C480F80B2DB487D1E57 /* AsyncSignalHandler.cpp */, - E55B796088A5C84D7AFE45AE1D13C2DC /* AsyncSignalHandler.h */, - D96F714DCDDAD43778C9DE25AB46587B /* AsyncSocket.cpp */, - F9443F644AE9D404E5CF0E1FF4F41249 /* AsyncSocket.h */, - 86DB9FF8A5FF212C97C3C37B038AAD4A /* AsyncSocketBase.h */, - F9590B544AC71E50DB3D4A1FD459091F /* AsyncSocketException.cpp */, - 3179E362EF619F351025752F94B9DB5B /* AsyncSocketException.h */, - 678C4DAE117185D4BB58E20B091B3292 /* AsyncSSLSocket.cpp */, - 8FB6953130C3692368ABA9E95DDF35CD /* AsyncSSLSocket.h */, - D2F655E41C63BAB63A290AB9417740CC /* AsyncTimeout.cpp */, - 81EBB074B75AC78031E9362402A44DAE /* AsyncTimeout.h */, - 39209F2A8F1496454A4AE88A288F0C42 /* AsyncTrace.cpp */, - 077F291B3D51FC13039F9019F22DEA24 /* AsyncTrace.h */, - 1C418CFFC9F39E1A5FC204E52C134F4C /* AsyncTransport.h */, - E49150825E7B7233D0DF10044CFF560C /* AsyncTransportCertificate.h */, - C384BD5C849992AA306DD4C7B352C41A /* AsyncUDPServerSocket.h */, - 5DFF7397E09CAEAD4EF98B7FC86A0F4F /* AsyncUDPSocket.cpp */, - 1857653120D5622FD9F39A9D005F8B7E /* AsyncUDPSocket.h */, - F7108AEA271F505A21FEBB5ABFFBDDCF /* AtFork.cpp */, - 5DB376A59FEDEFFDE68EA4CA8C8D80F4 /* AtFork.h */, - 3D4F5116A90608016B3C8971E284CBB8 /* Atomic.h */, - 094CBF061F9D96166BC5518B23A1D231 /* AtomicHashArray.h */, - 68B8924F51A5D653C23A9DA652BE953B /* AtomicHashArray-inl.h */, - 734E703831B26FFA5CD930FA8D15BE86 /* AtomicHashMap.h */, - AFAAC35F1D7EBA12FAE2CE82168A8B09 /* AtomicHashMap-inl.h */, - E36301726B1651C9836AC75A92EAE3EC /* AtomicHashUtils.h */, - 6AF2C1FE145FB923BB121653B852C92F /* AtomicIntrusiveLinkedList.h */, - 213D548C6546BE0F12326CB0627B85DF /* AtomicLinkedList.h */, - BD5CC643B7659D611CA418FB5BC4A3C4 /* AtomicNotification.cpp */, - 0AA7D6C7EE116FB089F092288EDD2DDB /* AtomicNotification.h */, - 0E37DC15B8F6DE03E03EB0C7D0597E83 /* AtomicNotification-inl.h */, - 33A01B20A0E6F66087CEA56A381AD053 /* AtomicReadMostlyMainPtr.h */, - 39558BEC676CF0090DC6F863F28DCF08 /* AtomicRef.h */, - 0B55A127DD622501C234A7CAB8F25911 /* AtomicSharedPtr.h */, - 8907F3F77CF6C50D7C220B4046CFA9A7 /* AtomicStruct.h */, - 99AE7D08E695C2160D38F69BBEDC8E2F /* AtomicUnorderedMap.h */, - F308F629276CE5EA8D6AC34229F4156C /* AtomicUnorderedMapUtils.h */, - 897624EA4822C72FCC452205A90DFCEE /* AtomicUtil.h */, - 767B925C026CB9A6115D2DAA8564ACF5 /* AtomicUtil-inl.h */, - F581E23D64DDD0F3D518E17717970CA0 /* AtomicUtils.h */, - 5B79F9D35FD7D0A9CC6EEA2FC0B28D87 /* AutoTimer.h */, - BCE3200B783F0F1D598AC56BA7FD6A23 /* Barrier.cpp */, - 18B7462B3C061DE486F2ECD2DBB0EFC8 /* Barrier.h */, - 339FD1678F620533FC6D3666F36ED195 /* Base.h */, - 0C123BAA55F6AFD3FBB4D6479169F9F8 /* Base-inl.h */, - 95ADE5F1DC7D299FB47B126861411FA9 /* BasicTransportCertificate.h */, - C7B7B89B9C2CBFE2FA20597CAE914577 /* Baton.h */, - 1A2F80DEFE681CACE159542DB9E6A231 /* Benchmark.cpp */, - B0465C015983248F32D4F2E83D69D8D1 /* Benchmark.h */, - 80465CD88BDB7A9BE15102CF50241913 /* BitIterator.h */, - 7ABDE4FF616E844389AC74A4458AFF47 /* BitIteratorDetail.h */, - 0A466DFCCBBD36B9700AC88D7B170FE2 /* Bits.h */, - 1F27B274B4E3C0B45C501A1018E1EDC8 /* Bits.h */, - 932CD41FA6D89BAE46722550106F1928 /* Bits.h */, - 5617917CB20E847E1CF7B0488DD757C5 /* BitVectorCoding.h */, - B15175F2164C98A39C87EB95FFC28E02 /* BlockingQueue.h */, - 6DE2E381F8E1CE4FA0EC39A780E182F4 /* Builtins.cpp */, - D5871C9F2D5BC90B1A9AB94AC972717E /* Builtins.h */, - EBC93F84D6D9CE3D89CABD497B79A55E /* CacheLocality.cpp */, - 8784FBC1C5E137B83281BBDA13166A55 /* CacheLocality.h */, - 67547ABBE9B4176AC94A8DF3675333BE /* CallOnce.h */, - B6170D91BAB843A4CF639875AD18E134 /* CancellationToken.cpp */, - 6BF6B2F608C86C28E7AFB5A77D03196D /* CancellationToken.h */, - F8BC1EE68A6BE949F205AF0A712CB58C /* CancellationToken-inl.h */, - EB7484EC228A3F3928B29F2172BFC923 /* Cast.h */, - 3756EE7F1DFB6475A746872E741191EA /* CheckedMath.h */, - 1B95FD1CBD6AAFC3CF3DA514411F74B4 /* Checksum.cpp */, - 18991E23AA99F50B64E25A247D7A6330 /* Checksum.h */, - CF77D25B62CE45B31D07F75CB0D5E5D5 /* ChecksumDetail.h */, - 7D4E753D377F1A7B0CEEECEF14FBDE54 /* Chrono.h */, - 8E4879361D6DE644A9C5A10461131D73 /* ClockGettimeWrappers.cpp */, - 2ABB4D4481DB4A0DC59ADFAA1D7E6372 /* ClockGettimeWrappers.h */, - 785B606FC7774F8E8A8F2286341D5D4E /* Codel.cpp */, - 1A4213B6882D8C685BE04A8787BC1E6A /* Codel.h */, - 9161C064CF73C4FE3FD901619FBA9101 /* CodingDetail.h */, - AC4A668B78FF89E6A3E4160725FD7B7F /* Combine.h */, - A9F8ACCF50BC8F3E29983A656D96F585 /* Combine-inl.h */, - 12B923F05BC76AE6BE7912614DF2CFC6 /* ConcurrentBitSet.h */, - B490FDB36545F4DD07EA59B9D2ABF055 /* ConcurrentHashMap.h */, - D72BB39F5E1E5882B7FBD679B664534B /* ConcurrentSkipList.h */, - 216BEC9C3E14F94116B4559C40897AF2 /* ConcurrentSkipList-inl.h */, - AB22F01A08BB12BFA3F69194EBE722CF /* Config.h */, - 2249782DAE38F15094B7368177F456FD /* Constexpr.h */, - A6168E0E97D94D09DC85AA49AC1CF4B7 /* ConstexprMath.h */, - 0B922E44971B3921CDD009FE8B22C4CF /* Conv.cpp */, - 1F52333D428D405656E110A96D202CD1 /* Conv.h */, - 0284EBCEAA398D64FA047A23F7CE1818 /* Conv.h */, - 147256C1CA6ECB603F9BCC7C65C426CE /* Core.h */, - 0B5DDF99B9B8A7E45B951E939DAB22B0 /* Core.h */, - 6A190983119A82156CA0B4A385EE69BB /* Core-inl.h */, - E41FB7DBD8033F45915F4E81DBA50E0F /* CoreCachedSharedPtr.h */, - 17EAE7495E58442FC2FD7773A34CB238 /* CPortability.h */, - 61FAF4CE050658BE2F201783FE487029 /* CppAttributes.h */, - DC98663CBAC5D49967881800F0B876E9 /* CpuId.h */, - DBEFB7984A9AC1B43EEEAD4ACC05B2E0 /* CPUThreadPoolExecutor.cpp */, - 252927535F70E0F87C20A16C6B6C1BE1 /* CPUThreadPoolExecutor.h */, - 90358B946F0DAB2C5B52E737964E5B0B /* CString.cpp */, - 2D2390B0DF63D8AA73976078BCD5CB07 /* CString.h */, - 1AFBC8012C03C0758C3004F0FFCDDE3B /* Cursor.cpp */, - 92D2413E4C09A3C32914CC71A085E54D /* Cursor.h */, - 81A496C1E15F3F3AC37175B4920FF619 /* Cursor-inl.h */, - F3F9C7E6CC836240AC4DBF3C75028666 /* CustomizationPoint.h */, - BFA4879CBA92A53717B01D68F383A73F /* DecoratedAsyncTransportWrapper.h */, - D275BB6BB5DDB9ADBCA034837339D4E6 /* DefaultKeepAliveExecutor.h */, - 8628666FA737EDC5296AE41BD832DECF /* DelayedDestruction.h */, - 62F459488D43AA27FF3659559D36B974 /* DelayedDestructionBase.h */, - EB34A2FB4CEB74806B9886BC1034D7F6 /* Demangle.cpp */, - CC6D4C630EB514AF39E21E6867D5917F /* Demangle.cpp */, - 50E5E39E08E43D6230F656F5307A4CD1 /* Demangle.h */, - D25CC58E2E6BE4726CC342479689DE85 /* Demangle.h */, - B3DC606F8383444756BD0A8665311ACC /* DestructorCheck.h */, - 0BCE31A8D64EFB8D1E1ADDB316355ADA /* Dirent.cpp */, - 4A1451795BAB36BC948A32F0BA98E35F /* Dirent.h */, - 8EA8AD2545A0AD14865A826A89AF03BD /* DiscriminatedPtr.h */, - 462C48E8BA7700B5491CB4AB994C7950 /* DiscriminatedPtrDetail.h */, - F02EE84B34FF166699B9607FA173C25A /* DistributedMutex.cpp */, - 5955B368F840981A96CA92E5EC8D0045 /* DistributedMutex.h */, - FA0A3AAE1D9214E3A5BF27D002C29A5E /* DistributedMutex-inl.h */, - 675E5ADC3EACC082F3B1BAAA56677263 /* DistributedMutexSpecializations.h */, - 2632AD27AF35AE4D7B055CA92A3B1858 /* DrivableExecutor.h */, - 6CFDA273373426936C27E061A9BA16A2 /* dynamic.cpp */, - B868B6CA52D88A582EACBA25D7B6A530 /* dynamic.h */, - DC04B7B67B78CB967E161CCB71C613AE /* dynamic-inl.h */, - 9D45DA6845E2F96A779737D9DF9A488F /* DynamicBoundedQueue.h */, - 27C25D4CBD6AD371E662EA30DDEB4FA4 /* DynamicConverter.h */, - 48040670F59DBB3F85B5BDCCA8100CAC /* DynamicParser.h */, - E7FEFE9C75C4B0D2872A9B3DB2E10D6B /* DynamicParser-inl.h */, - 1CD803A9BEF9283EC2BA36AE359720AB /* EDFThreadPoolExecutor.cpp */, - 58FA23D37D8D8DF8F7AEEF92C9A7F627 /* EDFThreadPoolExecutor.h */, - 2FA223FDB03BD8D6326DE81D5DD9B6F2 /* EliasFanoCoding.h */, - D4228F768266D79383C00EDA869BA843 /* EnableSharedFromThis.h */, - B69368CC35C431BE1843055E90E0E6C7 /* Enumerate.h */, - E6E9C7C5B109498EC681F09D923E5C93 /* EnvUtil.h */, - 9CA4C13C6B5E00891719B5CBCDD2123D /* Event.h */, - BD6FB50291DEB555A1866C9D465DAE39 /* EventBase.cpp */, - 26785966E130F952CD8CB3ACCFD3A7D6 /* EventBase.h */, - 3B752E769E8F38741D11CE8E7DAFF4BE /* EventBaseBackendBase.cpp */, - CDE9A556EC556FFEFABB9A9F7E9DD557 /* EventBaseBackendBase.h */, - 62211D510BC0A02100BC630FA71A248E /* EventBaseLocal.cpp */, - 2BA78A360616F5D78A8FC1A42DB78ED7 /* EventBaseLocal.h */, - B12663CABBD318E5F233935D392A54B0 /* EventBaseManager.cpp */, - 03AA07AD50C90033067A6D07CFA342DA /* EventBaseManager.h */, - 6D716AC570A14D99A2182905FE68EC50 /* EventBaseThread.cpp */, - 775D02E0BCC26F06F0C7E64E8F728344 /* EventBaseThread.h */, - 3A11F134BC882C7D27091A2C96946962 /* EventCount.h */, - 01F562B383893768D4CE562C173AF28B /* EventFDWrapper.h */, - 27C22E18F4FEEECB7C921B89D1C16AF1 /* EventHandler.cpp */, - 915614263E2FD7EFE2949E5B1BC80034 /* EventHandler.h */, - D6DA5D70F73C5260C38572CAB82003DB /* EventUtil.h */, - 389CFC3E4D576AC52BDAAC552137FFF1 /* EvictingCacheMap.h */, - 71958D0A1F6512F350E97FAA14DCFAB9 /* Exception.h */, - 331FC717C92873188CC5A657D146E0CA /* Exception.h */, - 7A3BF570E94C8640895966EC47D8ABFD /* ExceptionString.h */, - 4BA0DC74B20FFB89DC6B793878214871 /* ExceptionWrapper.cpp */, - 11F3B1FB18F5565F8113DB73ACB4066F /* ExceptionWrapper.h */, - FD939B493E1F5FBBC1297B44B2E9A962 /* ExceptionWrapper-inl.h */, - EC226F2BAC9F1180223CF366941ED6C2 /* ExecutionObserver.h */, - 472D02EEF0092AF824E9106FFB083347 /* Executor.cpp */, - FBB320002E181B764E4B39247F2C49AA /* Executor.h */, - AD8969F8B8FA962CAE381726C768953E /* ExecutorWithPriority.cpp */, - 284F8BD84956D62791B3DD3B673A9587 /* ExecutorWithPriority.h */, - 50A35339F5AB5829AC849060EC4E180B /* ExecutorWithPriority-inl.h */, - 74331866546A2EF1194D00398E03F336 /* Expected.h */, - D4BCB0CAAD65FBB0F6AE920BC1F835D6 /* F14Defaults.h */, - B23643BC6130F9372FAFC59EED9BF7DA /* F14IntrinsicsAvailability.h */, - 8F238380E1440E17738C994469B85113 /* F14Map.h */, - 6035C4A147C0B8830C13A13C56336ABA /* F14Map-fwd.h */, - 6D72FDDBC60397E485A899802B6F59BA /* F14MapFallback.h */, - 03026205607C4B1019C6B373E3907ECC /* F14Mask.h */, - EAF20ABA35CE7DAC773C403F7BD7C4F4 /* F14Policy.h */, - E267A724BD8FE80839D12EA727B73AA5 /* F14Set.h */, - E41EB8C393836F73849E4A9EC52E1A37 /* F14Set-fwd.h */, - 69845DF7E945F2C245A84A9EB73674A1 /* F14SetFallback.h */, - 4B7ABF9B133936B32C5EF56502D08238 /* F14Table.cpp */, - 3C405EC7A77603ED777850B068C8117B /* F14Table.h */, - E72C685352DEFE901EBBF6470E4C2F4E /* FarmHash.h */, - C79056AE4E814424756A05CE2F5F997D /* FBString.h */, - EB9F25DCA076A959BA3546C7479973C1 /* FBVector.h */, - 2380FF5BB3C57B87167C2E233299EC05 /* Fcntl.cpp */, - DDB2BB56871CCE78DA7807E3C85737B7 /* Fcntl.h */, - D8698ACE66F07F626C2B700C0BA8D62B /* FiberIOExecutor.h */, - FAFCCD7B99AE6159D261163AC8C4ABBF /* File.cpp */, - 58A9B9AC86A3C640CA3F1826C1B01A7E /* File.h */, - 9BD3EAC8DAC65366C406E05DB227732B /* File.h */, - 182A4AD9ECC2018EF67F3EC8BF813BBD /* File-inl.h */, - 28C3762D3397CC9F4A3AE546622E7715 /* FileUtil.cpp */, - AA074CE31B00318F430EE520E2BB8096 /* FileUtil.h */, - DDAF0C9DBFFF10B30338CC4C086D1271 /* FileUtilDetail.h */, - AC33911EFC3CBBE0C2DBB62F33FEE78B /* Fingerprint.cpp */, - 7D1197EAB8DC51BB58614FA311213FE6 /* Fingerprint.h */, - 93F5D0BEA9EEDC395520623630745A92 /* FingerprintPolynomial.h */, - 83E759385470971E9A1619229F94FBAC /* FixedString.h */, - 62BD993AF8582A2D4517FBE2A6DCCB40 /* FlatCombiningPriorityQueue.h */, - FDCC2F6EA2E74361965F0588E6B7717B /* Foreach.h */, - 84A7E4EA97CD08BAA03992168255DF5F /* Foreach-inl.h */, - B919A05E9213379A4D71D1D3ADF05F89 /* Format.cpp */, - A8C055FC19F0A2F755E33523A31825D8 /* Format.h */, - 3F7AF7C24195A31AE72C879CAD00133C /* Format-inl.h */, - 14562566D7E2D611A5AEB28A2033E764 /* FormatArg.h */, - E26ADF16295C527BD74FD846E1F63094 /* FormatTraits.h */, - BB1B2F8D8B7929C7DD01DEADCFB8FD3F /* Function.h */, - 7329DC9DC46804A4F663CE828B7DF7E1 /* FunctionScheduler.h */, - 4BA812FB89277D12BBAE8052D0AA1C09 /* Futex.cpp */, - D387CEB2E8DFB44CA15F0A1870D36947 /* Futex.h */, - 3D6853AA624FC5A933BB11FA7D0A0A67 /* Futex-inl.h */, - 839253E53A9EB87E2EA39F80D36577BB /* Future.cpp */, - BCC1146DC641696C5D12F3D1EA347D6C /* Future.h */, - 86C8AFAF52D4784EC7065D0D01FB286C /* Future-inl.h */, - E49BA4E0B5A65C4D0C289A3CE128B70B /* Future-pre.h */, - 6D8BCB33436BE48FAD4C6E8DD4A9C0C6 /* FutureDAG.h */, - C37B23A8A1B5BEEEB622D8D6A3A35F81 /* FutureExecutor.h */, - 3F484593EFF29DBA96F4D324F71F0098 /* FutureSplitter.h */, - 183DEFA82BC9DB9C9B0C37345C7E6763 /* GFlags.h */, - 6C1989CBEB6492178FB599E7162B2097 /* GlobalExecutor.cpp */, - 8D0C14BFCFF30C61341F3F7AF0BE77AC /* GlobalExecutor.h */, - F80D14207A4BC374E1108E515C59113B /* GlobalShutdownSocketSet.cpp */, - 77ACDDC07D639F420CA1C30073310AC8 /* GlobalShutdownSocketSet.h */, - C10A6CED735847F162A4E0FA40C2F42D /* GlobalThreadPoolList.cpp */, - 7C6E28B05FDE1F1220AB6DE4481E0C48 /* GlobalThreadPoolList.h */, - 04D979379AC3B5C4CC390B73EEDE68C6 /* GLog.h */, - 1D887A378298359AE26B8C8F180008B1 /* GMock.h */, - ADA91F9364E85FD662C943D0540B2363 /* GroupVarint.cpp */, - 8A55EA8DB6FFFDD98AC945B1B3D554C6 /* GroupVarint.h */, - 4C7DD8FD043A47577F15DC6CF75B2B5F /* GroupVarintDetail.h */, - 5E191E90BBC4E5C7147A7B5E598B5512 /* GTest.h */, - D0E13984E0A2C4736083DC35869FC7C2 /* Hardware.h */, - 4A7DC779EC9F79607D650D429C2CFB5E /* Hardware.h */, - 96E65B84F0413A12D554FE770DB991AD /* HardwareConcurrency.cpp */, - EC939FB768D3C5B9EEC1D46DB5A0FC4D /* HardwareConcurrency.h */, - 1525B451ACD76144D005B1730EFC66B9 /* Hash.h */, - 1552C077ACD09853FBB69E829A0ACB17 /* Hash.h */, - 09C34605C950C91E8CCCD2F4AEDB7101 /* Hazptr.cpp */, - 0968102F2373098DC9AE92B7935D4ED8 /* Hazptr.h */, - C1A92D7C500C0C8CEF6AC4E77BC0643D /* Hazptr-fwd.h */, - 9EF736721F771CE99651D129AB365263 /* HazptrDomain.h */, - DB5270A4484D1B65DE6FE5335163CC17 /* HazptrHolder.h */, - EFC449A78C30152FAB91048DC5A53E0E /* HazptrObj.h */, - 556022F0512FB062A96153D84CAD318B /* HazptrObjLinked.h */, - C6E690072E939AEE09A66F89F821D423 /* HazptrRec.h */, - 7230FD2897AE4D58AEFEA90FAF377284 /* HazptrThreadPoolExecutor.cpp */, - 55831EB804F47E27775A4F202AAEC9A5 /* HazptrThreadPoolExecutor.h */, - C4C3CFCA8CF7497E1AF0C2007F1378E0 /* HazptrThrLocal.h */, - A0E317BA0618B3CF6CE687522449B03C /* HazptrUtils.h */, - 4F54D13B31B2191DE26549C9CCCE60BB /* HeterogeneousAccess.h */, - 509A1E62B3E7BC802847A7DB7EF72A0C /* HeterogeneousAccess-fwd.h */, - 156FA2E86BCB36706E2E70639A7A49EE /* HHWheelTimer.cpp */, - A9B044D3E141763E51736E7D14D52B9F /* HHWheelTimer.h */, - CC14741F8FDEC687198BDBA374E6780E /* HHWheelTimer-fwd.h */, - 9353040D7264C12287CD0206AAA0DA10 /* Indestructible.h */, - 3DBCF2CFA6B9196E782F05003BFEB3E3 /* IndexedMemPool.h */, - B58D427C9F4C3FA81D777B5ACD90965F /* Init.cpp */, - E4A5AC96B92CF782E2E8B80ED46C299D /* Init.h */, - 23E0C20316338E7EB9BFE9DF8D664C73 /* Init.h */, - 7C2B6BD46CD0D6B84F5DF2CAE06AA6F6 /* InitThreadFactory.h */, - 71D33565832EF9643AF1A9C72CFC9A05 /* InlineExecutor.cpp */, - FA78E89356894AB05B1E6C451A83D8CB /* InlineExecutor.h */, - 921B4C6825D843743335AA43D91F5D25 /* InlineFunctionRef.h */, - 61BC42558FD1A68292D50CDD2D1E6983 /* Instructions.h */, - 1859134AD65C65ED5257C915403A0415 /* IntrusiveList.h */, - FD6C8D5A0B4CCBA5486FD113C97A9D07 /* Invoke.h */, - 45269C5EE793D1B620BDCB32BD86F9FA /* IOBuf.cpp */, - EBB2C777B8701067235AF173874B4438 /* IOBuf.h */, - BCFB13C2659CB7FE3E33BC3301B57589 /* IOBufQueue.cpp */, - 75363C348BFBE2799A03172F6AA1D7EF /* IOBufQueue.h */, - 97091FD93643FE8D36CD583C5E548E92 /* IOExecutor.h */, - 0B2797F574294906070F7BE48ECC1B64 /* IOObjectCache.h */, - A5D16A061AC19EBE3F2A997C614F5904 /* IOThreadPoolExecutor.cpp */, - 28D50C0EAC121DA5EA76E53EF81A12AA /* IOThreadPoolExecutor.h */, - 3AF66D31DBF731A2EB5A4616B400EED2 /* IOVec.h */, - A1CDB664089BF1448C4BA69FBA03D6CE /* IPAddress.cpp */, - 9141D4AE95A883D2B8AEE11992DA5379 /* IPAddress.cpp */, - 0E9FC43B02A652C5EFBABABA7B5033D8 /* IPAddress.h */, - 218686AD810DEA476DDD6BF4C3AFEBFE /* IPAddress.h */, - A19A4B820CD795CEC835A155BEA73DCA /* IPAddressException.h */, - 3A22E60D5FD59C685BF2A17BFE1C94FB /* IPAddressSource.h */, - 100412FA16CB816F8170F047DB52EF09 /* IPAddressV4.cpp */, - 02C991DF0D290846DE19F8CA80AD4354 /* IPAddressV4.h */, - 46CD1A9F5FC1F1EAE2FBD43827A6D039 /* IPAddressV6.cpp */, - 4A7A40CF223EA236B4C3E3A43161EBA8 /* IPAddressV6.h */, - 321BE554D2E363EDFEC003839ADA7C62 /* IStream.h */, - 39D1EEAFC914D6FEA74E28CDC4075CB6 /* Iterator.h */, - ED61FC0FD69FCF27EEEA00BC72707CD9 /* Iterators.h */, - 8D2EA741293DB1E455E1E6953536B516 /* JemallocHugePageAllocator.h */, - C9FA6C28A33D0F7D55E824B7E43BB184 /* JemallocNodumpAllocator.h */, - 28E6791CB338BCC501263524B29045DC /* json.cpp */, - 12105428025D405B7878360FB13F8519 /* json.h */, - 97F0CE7DDECCEC0566F9F9C3954CF19F /* json_patch.cpp */, - E51E3D93489327FBA7B49801806BF032 /* json_patch.h */, - B2B8C59FD073EE3821727E5FF2FE7236 /* json_pointer.cpp */, - 3B899CF40EB34555A58F17D2D7E0A951 /* json_pointer.h */, - 1BE2CE95755FD233875DDCC84C917EA0 /* JSONSchema.h */, - 48D3CB40A59D83C6E945D88CC2CC0214 /* Launder.h */, - A78FF933AD4698C6020BBB8A63C66E0A /* Lazy.h */, - 31D20C85F5829B2CD3A10D7F0581B896 /* Libgen.cpp */, - 79335A93D83AE486F8FF48BDCC4B04CE /* Libgen.h */, - DEB90D2F0F706C27B95CF613DC87C589 /* LifoSem.h */, - A83265905D820ED86E7A6C8F2B1722CE /* LifoSemMPMCQueue.h */, - 7E7FEF0E48A56300697B528E63674E6A /* Likely.h */, - CEE0941739C9D8C648BEE31B28E6BAB0 /* LockFreeRingBuffer.h */, - C27DC7AE4DE697B574D21F7A3A57FB75 /* LockTraits.h */, - 38258EDC2ECDB25B79EB77612803051E /* MacAddress.cpp */, - B7554BFC029B0AB8A8E3D5C447DEA119 /* MacAddress.h */, - 4B72CF035DDDD520F1E8BB2BAC516F3B /* MallctlHelper.cpp */, - 9D9E57DF4A08C75F2004E8D4518455E9 /* MallctlHelper.h */, - 4A250A57F6B6B341255994B45DE729FA /* Malloc.cpp */, - 04EFE173DFCD42C297A5081E121E245C /* Malloc.h */, - 570C4FC163FDB50A3BA899B5D8E85574 /* Malloc.h */, - 070AF3A34162C4E169CC46A26A40058E /* MallocImpl.cpp */, - ED12C7802BB41CE6B9622FA5B3D33026 /* MallocImpl.h */, - 66A3E0F59BFBF183C03632E2F93359A4 /* ManualExecutor.cpp */, - BB96B5172CA1FDCD97A37E07C1F50BC1 /* ManualExecutor.h */, - 092F24E4BE5DD6FB8A6ABE16A9CDBF1D /* ManualTimekeeper.cpp */, - 81B637E3ADF97DD6C410CDCA1F53A559 /* ManualTimekeeper.h */, - 485C781CBCAEAD3D09B21CB983E20236 /* MapUtil.h */, - A7A0905593F2528C6B73F62C34691F05 /* MasterPtr.h */, - D32F6732FAD1516979A5B9333CC2ED3F /* Math.h */, - 4AD14B53656A77114A33E2075E243ACF /* Math.h */, - 7BC49A12A1FFA6C6DBE2E137733C3CDD /* Memory.h */, - 96137BB348C0ED1939CB13E295939E4C /* Memory.h */, - FED12E0BDD67E0F93E53BEFCF504D270 /* MemoryIdler.cpp */, - CD6D627770512A04521700EC63B07BE2 /* MemoryIdler.h */, - 8645C0A09204F941254F04AFF321631B /* MemoryMapping.cpp */, - F7A9DDBA9BFFE646492645017B4ED408 /* MemoryMapping.h */, - 14B414E138B4DADDE37A307B4CF155EB /* MemoryResource.h */, - 0263F9C5636F7B48EF2C7E0CE750C7E8 /* Merge.h */, - 01FC364F6C6E3B591535A7FC19249754 /* MicroLock.cpp */, - 8EB7532A0A3B8B481335D17280B270C0 /* MicroLock.h */, - 234F0314DE67CB4B3A250EF8DDD92405 /* MicroSpinLock.h */, - 7C83D83A0D4C1323C708527D106098BC /* MicroSpinLock.h */, - 1CF6006987F5370C7D44118131A77BA4 /* MoveWrapper.h */, - 9F78E8173F3AD7E6C2E45CB1615BC1F9 /* MPMCPipeline.h */, - 9E5AD003D0351443AD6EA78593F25440 /* MPMCPipelineDetail.h */, - 7E75554C6C3D8AB01B1D0B5851FEACB5 /* MPMCQueue.h */, - CEC466FD202E23F29881E8BEB39E7530 /* NamedThreadFactory.h */, - 3358D2CA5F4B26E8D42DF90BC66436BD /* NestedCommandLineApp.h */, - 6B13A8544A674349A2B8685A22CF4DA5 /* NetOps.cpp */, - C702EBD3C9260919ACAA7E0A82E95960 /* NetOps.h */, - AC2EEB1C5D2349E639546215C18B912F /* NetworkSocket.h */, - AD590E4013E1628FF06BDECB4388B4EA /* NotificationQueue.h */, - 134DA3EF0958741484AC765F914EC417 /* OpenSSL.cpp */, - 2FDB606CC614250FF6B4EC84434F465A /* OpenSSL.h */, - E0E6313449FF04D37ED86F79B8A8A3E2 /* OpenSSLCertUtils.cpp */, - DC49F5F953C7FE75F85B0FE2D307C478 /* OpenSSLCertUtils.h */, - 61F4312D6E2ABF2D879843953CC06ABF /* OpenSSLHash.cpp */, - D55EECDF82319E1B43BAC813BD004C14 /* OpenSSLHash.h */, - 7C417B868FBE646E1842489AC453BE29 /* OpenSSLLockTypes.h */, - E6A7AB775F20AF1DAAFE10B7A75707F6 /* OpenSSLPtrTypes.h */, - 358EE261026F11C402B0460DCA40BD33 /* OpenSSLThreading.cpp */, - 37920939AB5D980EE983073A8D803CDA /* OpenSSLThreading.h */, - 0EB0E8506FB986DC31C6541AA2C48B9F /* OpenSSLUtils.cpp */, - 141EF977202A47725867A9CCA553B222 /* OpenSSLUtils.h */, - 9A633EE03144C9F1454429E6F8B2C160 /* OpenSSLVersionFinder.h */, - 1B7B1EAFBA5C026A9F7DA41C1B308F5A /* Optional.h */, - F9AB6E248D04BFEA6DDB12144F24888A /* Ordering.h */, - A6EFB7B6FFED346EE8755ECD26CD7F23 /* Overload.h */, - 915A7157FB89341848EA3CD577FD6C95 /* PackedSyncPtr.h */, - ED305439FEC86D5CE3B0292A6FA4B6DB /* Padded.h */, - 8F12146FE27561032F8D4B3189081660 /* Parallel.h */, - 5E7AC2F842CF15F2E25C14CED3929FF8 /* Parallel-inl.h */, - 6E994E6FB4BBB5D87BDF1A7DE791E5E6 /* ParallelMap.h */, - 41B034CB24DAE6CFF748E08DAD09A2DA /* ParallelMap-inl.h */, - E79C2D119F2D803A10DD36C7E1C7AC04 /* ParkingLot.cpp */, - 504AD14FE100A20D8DC16B176158574E /* ParkingLot.h */, - AD85699B31E40102C07F98DDD2FD6527 /* Partial.h */, - 274B19FA8A792CB235E69E5DD624093F /* PasswordInFile.cpp */, - 112246D068CDB2E5FEDB9BA4F6062328 /* PasswordInFile.h */, - 1E89B6B8FDB288DDFFC2F6F07006D9FA /* Phase.h */, - 32C09F0FA9D8B1AFE6F4D9994E4B577C /* PicoSpinLock.h */, - FF502F3EBDB9A79E6731736B20C705A2 /* Poly.h */, - 729D1112986370E02BFA684FD3F582D1 /* Poly-inl.h */, - D10F12D128550E3DC072FBFC7CAF85D8 /* PolyDetail.h */, - DAACBB6E0B5F70EA6D859B825E7C77C7 /* PolyException.h */, - 2A9CC50E192B5C6EDAF41409F4688612 /* Portability.h */, - E4840827025F06AA40F6ECA03F460647 /* Portability.h */, - AA8DA18CA91D26D11E1BAE2D71DFBFF6 /* Preprocessor.h */, - 144B46E1E0D1B4E0404E9472E9B7ED9B /* Pretty.h */, - 7189806B62CAABC6A938101E021B1B48 /* PriorityLifoSemMPMCQueue.h */, - 55B349C864E792E7F69E016CCB3CD3A5 /* PriorityThreadFactory.h */, - C336B4D8990B6662D77B53EDCBDC9C6D /* PriorityUnboundedBlockingQueue.h */, - 8263CCFE9BAAD61D8DE661674A7EA03D /* PriorityUnboundedQueueSet.h */, - A5C6E23D40EB9A3E072F8F115094E957 /* ProducerConsumerQueue.h */, - D341FB6C784B8F24292A0C10871CB739 /* ProgramOptions.h */, - 84F337E321B6C51564FA2BBE9406F7E8 /* Promise.h */, - 272CDB0FA827230F8DE743CE89D46813 /* Promise-inl.h */, - 8F3EFD758F22BA8D07980A6B2CCC00D3 /* PropagateConst.h */, - A7E4D3C5DD7542CA12F52F8F049EA1A4 /* ProxyLockable.h */, - 3B61349BDE1BBD7581068301130AA7B8 /* ProxyLockable-inl.h */, - CE71E32B1F316D819469B576AFFD0199 /* PThread.cpp */, - 6A41D7E2DBBC26D635269DD18909A0B0 /* PThread.h */, - D0F7ABFB07A02E065BC573837BB2AFFB /* QueuedImmediateExecutor.cpp */, - B533344AF098D6D3E0A567188723B749 /* QueuedImmediateExecutor.h */, - F2BB8F624E91CC8BB4F8EAA5F175A5EA /* QuotientMultiSet.h */, - F8A79B87F04F432DCEF4AB0A2C2E513F /* QuotientMultiSet-inl.h */, - 49223835FFBCC772834BC23A41BF7AE6 /* Random.cpp */, - 6526F41ECBDF99585387BFDC5787A33B /* Random.h */, - 2C93158493456F2BAA4F220083CADB69 /* Random-inl.h */, - F0B9BDE093A1DAEEACF5BFC7242457E0 /* Range.h */, - 43BC01F6464C78A7AD978DBF451A3241 /* RangeCommon.cpp */, - 38C5A3D20CC6919B029171559FD2EDEB /* RangeCommon.h */, - 3AF1EEF7F1F5EBC06486735CE5F3E758 /* RangeSse42.cpp */, - DD0660AC75549E78737B5FC624874D50 /* RangeSse42.h */, - 2A897F4C8EDD4045318816540C3C8C81 /* Rcu-inl.h */, - EE1A20F80817C3502570E241C4933149 /* ReadMostlySharedPtr.h */, - 60F3BCBDD6A323B314E65E8E2810E3C2 /* RecordIO.cpp */, - F8858511AF37F8A3D53D4FE0D621D8F9 /* RecordIO.h */, - 8DA209082F197D4EEA07EDCF022523BD /* RecordIO-inl.h */, - 9E3873CDFC6CC882995CB4188C6285B5 /* ReentrantAllocator.cpp */, - 6533957012F837CCA5A902610A989D73 /* ReentrantAllocator.h */, - 430CB77D6D03E7480CD6EDB29C7352B3 /* RelaxedConcurrentPriorityQueue.h */, - 53418337E874FD7F99613A3D213BEA32 /* Replaceable.h */, - 85E337353277B5A943B144A297742D26 /* Request.cpp */, - 9915685C01F70A36E07105E093943607 /* Request.h */, - F9AE333ECA95951FD8ED4424A16B3433 /* Retrying.h */, - 8AFD581736261F2861B84FE2B7207D9B /* RValueReferenceWrapper.h */, - 8759EFD10AA0DA5C62FA058D4B47E9E9 /* RWSpinLock.h */, - 51C4E5F5418C933B54618D04FE90B1EC /* RWSpinLock.h */, - 920403F95D8B596C5E2AFA4076FF68C6 /* SafeAssert.cpp */, - 65C750CF4B56A5F3925533462CABEC7A /* SafeAssert.h */, - FFEEEAA43F9E2279D73C849BE609807E /* SanitizeLeak.cpp */, - 080AB2B7CB8699758B3D6C0D17453CBC /* SanitizeLeak.h */, - A27423CFA6F234FE0C8C47A25AA11A1E /* SanitizeThread.cpp */, - 536F7347189B2519493855E0FBBF78CB /* SanitizeThread.h */, - E315D7B79159981A3EBB25FF9ED5CAE2 /* SaturatingSemaphore.h */, - 5F26D293A32C713B8BFCD57BD007346D /* Sched.cpp */, - 7142F1FB30D196FFDE9E3CEBCCCE4C8B /* Sched.h */, - 6D873A659FB8A00376E60A16382DB886 /* ScheduledExecutor.h */, - 42E9A5F1D01E71AAEF7A1C0EE956D535 /* ScopedEventBaseThread.cpp */, - 344D4B81A4B4C0FF7F5D353EC4EDC00A /* ScopedEventBaseThread.h */, - 2276E935AF07959AB2B1F1212BD9EF3F /* ScopedTraceSection.h */, - C8AF838B4B48FCC4915595140A0E4514 /* ScopeGuard.cpp */, - 43032CE22287A7D741D63E15464A404B /* ScopeGuard.h */, - 2F67A5F42B06C732F114178CBE4CA845 /* Select64.h */, - 932E20379D08F815983A1E168E8F071D /* Semaphore.cpp */, - 701E5530C6B17E2445815FABEF3968E4 /* Semaphore.h */, - 1B95CA518AB99C7208289965A486D6FE /* SequencedExecutor.h */, - 1EC50934E3A2BC5FF287395B8A34E26E /* SerialExecutor.cpp */, - E43D0C392A379945AB4092E47E7E0531 /* SerialExecutor.h */, - CF20904EF4194014012A59328286CE8D /* SharedMutex.cpp */, - FF6809C3B5759B98830548E16DE1858D /* SharedMutex.h */, - 1F3B6EF4D34085B601971A0296E98F21 /* SharedPromise.h */, - 647CE40CF1C8A2EB7C6DA7AD4397FDC3 /* SharedPromise-inl.h */, - 00D5C969B704D8EC2C092FF7BFCCAA79 /* Shell.cpp */, - 797A5D5B3084449D2EA9A26C6A00D6A0 /* Shell.h */, - B145BBC0D222D042C25563A552C7B1F1 /* ShutdownSocketSet.cpp */, - B5354F53863FEF868B169393D964F0FA /* ShutdownSocketSet.h */, - A9AC8519E29D55ED91FE0970464B8F9D /* Singleton.cpp */, - 8C2BF6D7D29BA84505F3F81A66087F40 /* Singleton.h */, - E99B73487DA7D10636D3E972B48C58CC /* Singleton.h */, - E0F792E72F8179297D7FA3C6EDE6C734 /* Singleton-inl.h */, - 14C7ED7A9BB3E80BD1FFA1CB82001C31 /* SingletonRelaxedCounter.h */, - 0B6320C3DD794AA8706FA4994AD76ADA /* SingletonStackTrace.cpp */, - 4B7124FEDB72AB8418902207CD8F8B49 /* SingletonStackTrace.h */, - B88B9FC40F2A4122608EDB5E15FAF6AE /* SingletonThreadLocal.h */, - 18C569751F640461AACE7DB4F9B16D40 /* SingleWriterFixedHashMap.h */, - F3D4718735FCE29271043BE67B3D5EF2 /* Sleeper.h */, - 2E43413B26C98EF6028F572F7427F9E6 /* SlowFingerprint.h */, - D36ACE68BB8264C4141B635EA0BD695D /* small_vector.h */, - 2579C83AE47641A16DCDEB3AD0508DBB /* SmallLocks.h */, - BF88558A95843F4AD6A7248E71B60DEF /* SocketAddress.cpp */, - 3FB18B497B48508BD83F35E98B89335D /* SocketAddress.h */, - FF4A69A3C859B09ABE519C0CD4F41FC9 /* SocketFastOpen.cpp */, - 8CCF2A4D4486F1371EF28C581C24CF65 /* SocketFastOpen.h */, - 2E23C9017DF38BEE442275A1E8AC6343 /* SocketFileDescriptorMap.h */, - 0D4D83CF4BCF22D89386EBB6F4EED2E2 /* SocketOptionMap.cpp */, - A09AB235098FCF4BFA9D0D5B5E22A857 /* SocketOptionMap.h */, - FDDAAF3643795C5D07BFB71694E8382D /* Sockets.cpp */, - 3856A7B799D915322E5F6E56FB2ED6E1 /* Sockets.h */, - 8CB5A4488DD9C1D73C063B5AF6E4F7D2 /* SoftRealTimeExecutor.h */, - 363933C9D4336A82E96B622D5B760E34 /* sorted_vector_types.h */, - BD1B5313E3DFB75390C1A4251F51B5DE /* SparseByteSet.h */, - C420F3C2B52E600E348B204665C68FD2 /* Spin.h */, - 43BA4D2D3218ED77C5BA9CB2D3F81FD1 /* SpinLock.h */, - 29DF24F2AEDFDE6DADBA573079529B6B /* SpookyHashV1.cpp */, - 61CB4D4ACAB911DE070EDC4C8B5F88DC /* SpookyHashV1.h */, - A2FB913EDB37F8913760401CA81068BD /* SpookyHashV2.cpp */, - 50261AF3C745BB3A0CDFA2344529F574 /* SpookyHashV2.h */, - 4CECE588B11B66574740EDC761BC4245 /* Sse.cpp */, - 7368C7BB10308A0411937E8FED486628 /* Sse.h */, - 8EE023928DA39891828783C169ACD22E /* SSLContext.cpp */, - B2ACB7C42F1DE37F79D071DC63437F91 /* SSLContext.h */, - 8F490AB1187BEA7440DB7027375B3B9D /* SSLErrors.cpp */, - 04B3591ACFC47620F91491211E4222FB /* SSLErrors.h */, - 8C32EFB899197ECB36CD52A99530F9D3 /* SSLOptions.cpp */, - C91950A7DFC8996A18ADDFAB2C6DD073 /* SSLOptions.h */, - C68F5547801F990A641A430EE0156A96 /* SSLSession.h */, - 3A4BB6035141C108E1A0BA59217CE37D /* SSLSessionImpl.cpp */, - 1336466C47E2463B99D3F5FB5F02507F /* SSLSessionImpl.h */, - A8B3E5DAFD46EE56452724AED9AC92DC /* StampedPtr.h */, - F1CC8DA0187F606BF5BF0A4A91CC75AB /* StaticConst.h */, - 20F6BA2AE366AF4C6F7F93F4965CD616 /* StaticSingletonManager.cpp */, - 09F08A801E02AEB6C1E8F95750DFC75C /* StaticSingletonManager.h */, - 5D701AED020EB1DA57B6FDE8E105FA78 /* StaticTracepoint.h */, - A96FC450C08890803E2BAB0375AA0B02 /* StaticTracepoint-ELFx86.h */, - C447F5E1A3B40FDA187DD4B2BB4E3656 /* Stdio.cpp */, - 98C8C0BAD902465510161FDA9A574223 /* Stdio.h */, - E82BBCC6FC3B357369DB911A9DDB8310 /* Stdlib.cpp */, - 974A52EA9574697A6D4F84ABF5566E6E /* Stdlib.h */, - 2290DE35F2FE49F15FDED12428AEDACB /* stop_watch.h */, - C97FBA18067CC52B4EC4531841DDA970 /* String.cpp */, - A95B6FF5792E56C7262B028418ECB65D /* String.cpp */, - 7799E18DBF8044E92CF250F46DCD321D /* String.h */, - AEE92C474B44CBA057719274639B2098 /* String.h */, - 110CD94C79C42A487EE1D6CC50098487 /* String.h */, - 07E05E20935578086C3DCD67D966155F /* String-inl.h */, - BA128D60C396E9F6F2E87021A86DF3E9 /* String-inl.h */, - B9E52071A61994BF47D9A3698EB8E196 /* StringKeyedCommon.h */, - A56FDAA3345D4565EECAADA887F4A7EE /* StringKeyedMap.h */, - 61C1AC94DA8359D54DFA47BA5050F019 /* StringKeyedSet.h */, - 3737F11E4FA8A02C2FB84B43465555B1 /* StringKeyedUnorderedMap.h */, - ECDC3BE6EAC7A6FAD7234E57E15E0496 /* StringKeyedUnorderedSet.h */, - 8EC1FD54A43DE7F6BA21F2B42197B5B6 /* STTimerFDTimeoutManager.h */, - A2FEB54F65AC6BA164AB7601C6A11F0B /* Subprocess.cpp */, - 714617101653AABBA370CB7F07BC74DD /* Subprocess.h */, - 033C850F3FEB52866E0474A4C21D0158 /* Synchronized.h */, - F0CB1544ADBADE695E5E2247DDC9EFF7 /* SynchronizedPtr.h */, - BB390DCFA35B0EAECFFD2DE810925E64 /* SysFile.cpp */, - 361B3EAC5B4BA385FD118F17A9B0D62E /* SysFile.h */, - 5B1A3A030C5391095F45FBDA62640A67 /* Syslog.h */, - FF1278116DDF6E31C0A121D313ECD61B /* SysMembarrier.cpp */, - 6A07399903C688EED824AF5CD4ED6843 /* SysMembarrier.h */, - E72DF4E8DF7E1FAE2347EB412774F23C /* SysMman.cpp */, - 96971B5D8949E96B552B0C7CFBD06F72 /* SysMman.h */, - 3E17D8288C72780F8067F47CB16FDE7E /* SysResource.cpp */, - 7B3BCBAF0DBA3247D26157C240545AF1 /* SysResource.h */, - 38EEC9DFD8C2803A99DE518F66CAE9DD /* SysStat.cpp */, - 876DB1F6D29925E73C087F2C3AB36795 /* SysStat.h */, - 80840BAF96C12C2F4F42314F720FB483 /* SysSyscall.h */, - 7F7FAEEC6D720AA177A3ABE4D635B2D2 /* SysTime.cpp */, - D3AA599DC936541F96C2A0FDEDADF1A2 /* SysTime.h */, - F42986ECFFA483050295D48982F1A735 /* SysTypes.h */, - 1EF847C047A35D234BA6D2C802DA29CE /* SysUio.cpp */, - 8FD0422E27ABD51A7F0B26BBD184FBA7 /* SysUio.h */, - B3D9CC080476DE1289297FCA471067E9 /* Tearable.h */, - CF84CF3255A89822E1EF8A2A7F263EE8 /* TestUtil.h */, - 80482005A3D7C74B5C232B9C7E752CA0 /* ThreadCachedArena.cpp */, - C996B89FC9E4665A6ADF3EF655EC8278 /* ThreadCachedArena.h */, - 82169797FE5B608D75B4F5F79C13280D /* ThreadCachedInt.h */, - 2D813A9476AB28E62E3DA121A0362C1B /* ThreadCachedInts.h */, - 598D07341ECC791245D8956E8B93C174 /* ThreadCachedLists.h */, - 01742674828B7DB5C4115878466F5134 /* ThreadedExecutor.cpp */, - B56F12B746CB0F16C8001E746A25E3D0 /* ThreadedExecutor.h */, - 9BBA1BDA6B1594B64653392F0F7A2436 /* ThreadedRepeatingFunctionRunner.h */, - 6325EB92C709FD51590164146B016D32 /* ThreadFactory.h */, - C594E33B7F2DC2B31F6CDCF045C05323 /* ThreadId.h */, - 0A56B007166F99AFBC7ED5B55A6B28B0 /* ThreadLocal.h */, - 8403A2E98112F59D3BAF6617AECA11EC /* ThreadLocalDetail.cpp */, - 9B691F81785E6B2010292AA5926E20DD /* ThreadLocalDetail.h */, - B5841F5B83CE4B881DD2006D46B09497 /* ThreadName.cpp */, - 4E04F05AACD8047089A85B4474584ADE /* ThreadName.h */, - 4CED0991748193F85234B92043C467E6 /* ThreadPoolExecutor.cpp */, - 144FCDDA6C4928F6C6EC8F1864CEE384 /* ThreadPoolExecutor.h */, - B1E2BB6BFC8F3CCCB19085DD174E8AC0 /* ThreadWheelTimekeeper.cpp */, - 52B3BD3001DD4C280B48DC3695188A70 /* ThreadWheelTimekeeper.h */, - 7740BA7FA0A7CD669E269EA357054220 /* ThreadWheelTimekeeperHighRes.h */, - 0499D4D0215385E03992B5E8D6EEB000 /* Time.cpp */, - 842065B8B3BD58AC120D1C31CB5FB335 /* Time.h */, - BCA937F2B436CFAF9FF094281DB97064 /* TimedDrivableExecutor.cpp */, - FD9EDEDEF1E88E6DCEF209BD0AF2F483 /* TimedDrivableExecutor.h */, - D9104C131E539E312ABC6D17CDBFF06A /* TimekeeperScheduledExecutor.cpp */, - E51825EED7240CC4E05BE009AC454015 /* TimekeeperScheduledExecutor.h */, - 4B58A282A684CE85411B72C0613BB634 /* TimeoutManager.cpp */, - CE6DA0E0588B8854385C4C0A03DAB96E /* TimeoutManager.h */, - 29A82CA43E2FB7A6EF4D228560B1C21A /* TimeoutQueue.cpp */, - 36FB2386D2E70E78CC8780D01AEE8E72 /* TimeoutQueue.h */, - 34AB1BEDE616A3B49F4EE42ECC2C6D3C /* TimerFD.h */, - 761424EAD5660486653AC7FB3BFC141F /* TimerFDTimeoutManager.h */, - C52D5EEE205E1F7DD0555001CB7F2C05 /* TLRefCount.h */, - 8EB6966C2F4A349FF86C237F57F846FA /* TLSDefinitions.h */, - 23D92F955B626161AF653427B4BBB71B /* TokenBucket.h */, - B6D2E1D1CAC874F5DD7600D748D64C55 /* Traits.h */, - 690044B01CE1973C18744D256E86F459 /* Try.h */, - 0B67C4B41669063ADAD31C56F4EF5A81 /* Try-inl.h */, - 634C827508AD23CC96DA5F402D7C9362 /* TupleOps.h */, - E8A76263AAF9CD26313B2E6488D9987E /* TurnSequencer.h */, - 64C7DEA7D869F455672B981CDD297434 /* TypedIOBuf.h */, - C8A8E750D6EB315BBAD13D52C36D1C35 /* TypeInfo.h */, - D218CD7A1D139E9F1C38C68C1D1BC373 /* TypeList.h */, - E87529B1BAFDF45BD486509718772E8E /* Types.h */, - D701A1CF1CB4D49D5A42D1C4A0CC106E /* UnboundedBlockingQueue.h */, - C5AE0C796CB2CF1C33E96DBE07AC523A /* UnboundedQueue.h */, - F8CD2C6096A9D4F117D18EEE386A1A90 /* UncaughtExceptions.h */, - E80635EC34953AA8AD4B2B9D96B1F1D6 /* Unicode.cpp */, - C6F73EEAFB5B026BF8C70AC11A3B4748 /* Unicode.h */, - E9C8ED646C0773D3BB14C7CEA285BB54 /* UninitializedMemoryHacks.h */, - 60A78B90FBEAE0D288D92B02DE601C21 /* UniqueInstance.cpp */, - 9E04DE717E041E0009FD97ED613179E4 /* UniqueInstance.h */, - 0381BAB37FB5527EC89A3772A617850D /* Unistd.cpp */, - B334C8C9484417B4553E4A2ADA7991EA /* Unistd.h */, - BBC73BC2EAC1CDAC3847AABE5647B8D4 /* Unit.h */, - 5903689357297B6FC54A8D0B3466D988 /* Uri.cpp */, - 8C8477445D129B95B0123B10B04C8B2A /* Uri.h */, - D5840566E7BBCE62361B020239DE8975 /* Uri-inl.h */, - B38BE1DD0BFD5C7BECE27605B2D9D362 /* UTF8String.h */, - 1AF8240480B74734E9ACF9DCC64540B5 /* Util.h */, - 761205744C0A0C3ECE16EE27DD734BFD /* Utility.h */, - 92568FDF28118EA53C8947A0124C1273 /* Utility.h */, - ACF5B261D4C1ED5A6B4EA7D551B4517C /* Varint.h */, - 429C870EF7851C5214B985CA7719601D /* VirtualEventBase.cpp */, - AD234ACED22A090F331A623760C1DA2E /* VirtualEventBase.h */, - B6256683A3DCE9CB6912C1017947136B /* VirtualExecutor.h */, - BAB895311E1541DB93B0995E28ABA13F /* WaitOptions.cpp */, - D967B64E4416C42C87B408BA762B2AB4 /* WaitOptions.h */, - 36E4866295DA29143E64F3AADB213048 /* Windows.h */, - 4657CCCB92CCDDA25EF0802548198033 /* WriteChainAsyncTransportWrapper.h */, - D7D9D01F1D4E888BD17D69E7D442D3DF /* WTCallback.h */, - B5EF057EE7503CD37F7E87B234D21753 /* Support Files */, + 31D7BC5754D2DD97935147720A2B0AFD /* CoreModulesHeaders */ = { + isa = PBXGroup; + children = ( + 5C380D14E8DBD8C0F44438D5E224E4B4 /* CoreModulesPlugins.h */, + 30C6A673762960806A10E087045D8274 /* RCTAccessibilityManager.h */, + C90E5B92A22F2756779B3B9CBBDC0969 /* RCTActionSheetManager.h */, + 363995549CDE4BAF8C851D1A1A635AA9 /* RCTAlertController.h */, + 61E4388E53D070EA79EB9F25037A47F5 /* RCTAlertManager.h */, + 363175F68603475AA6CB0DAAABEA31E0 /* RCTAppearance.h */, + 1D0C4BF06CD34906FCE76E3ECC41F595 /* RCTAppState.h */, + FF3DC9A5EBDB132DCA56A724FC1D10FF /* RCTAsyncLocalStorage.h */, + 57F4BEB4EAD11CEF0512A863E45AF88F /* RCTClipboard.h */, + B7BC6BA1B4698C43960E16494772596A /* RCTDeviceInfo.h */, + 99708DECC904CFAAF7578A5A192C3842 /* RCTDevLoadingView.h */, + 792B15B6607D742613734F37D1345212 /* RCTDevMenu.h */, + 0D3E92E69878B83B64510531A9E10C55 /* RCTDevSettings.h */, + 418764080E11C33C74227F5A2564D280 /* RCTDevSplitBundleLoader.h */, + A91F8178F933F3845E938957A1BBDD67 /* RCTEventDispatcher.h */, + CF321EFBE81AB8036DEEB087ECEBB0D5 /* RCTExceptionsManager.h */, + 39B668AB0A8435B8130D7C1AFEA1860E /* RCTFPSGraph.h */, + 0F5BB0D26E4F6DE586FDC4493B707B37 /* RCTI18nManager.h */, + A5BCD82F46DBC338B1AEF948C94D162C /* RCTKeyboardObserver.h */, + 4545CC6BBD253B776261180B046852C7 /* RCTLogBox.h */, + 54DAB02A271605CA8E777D0C62060EEC /* RCTLogBoxView.h */, + E8652DC586A8078BE224572772939625 /* RCTPlatform.h */, + 4D1FD5CE2558DD09C75F927E5236A0FB /* RCTRedBox.h */, + EA3932D03662A7605E9CC644AA503CE7 /* RCTSourceCode.h */, + 805A27CDDA09509DF32D8AB883B76AE9 /* RCTStatusBarManager.h */, + 325375ABA11BC069C8DEF3907FB776BE /* RCTTiming.h */, + 0ECBE995F71640C8FC30B3C7CBD8618B /* RCTWebSocketExecutor.h */, + 59CD62A3389AF34FBFAAB69561CC308D /* RCTWebSocketModule.h */, ); - name = "Flipper-Folly"; - path = "Flipper-Folly"; + name = CoreModulesHeaders; sourceTree = "<group>"; }; - 3433F2D71F93B5C751F175294A56C7E6 /* CoreOnly */ = { + 32BA65ABF199D7E698FE359AFED0A321 /* Support Files */ = { isa = PBXGroup; children = ( - 9DEA55A51F57363C0F0C23EFCDD595E1 /* Firebase.h */, + 76639CAE0288EDD790D54B5342F2A83D /* RNBootSplash-dummy.m */, + 4C1D22B3868C43D2EED53F3E52B044D5 /* RNBootSplash-prefix.pch */, + 9E5B369692DD49A1207756CB546F2873 /* RNBootSplash.debug.xcconfig */, + 00DA78C61B87958A350C03ABF4BF8A97 /* RNBootSplash.release.xcconfig */, ); - name = CoreOnly; + name = "Support Files"; + path = "../../ios/Pods/Target Support Files/RNBootSplash"; sourceTree = "<group>"; }; - 34530DD0B832E4C99BD44D019F8225FC /* bugsnag-cocoa */ = { + 33462920D986B8BC6BF7697FA5B14FB1 /* Support Files */ = { isa = PBXGroup; children = ( - 37E18C2889BDB4B1AD665BC33A97BBCF /* Bugsnag */, + E28DC9882E95092FF5A22E9440916B36 /* RNCMaskedView-dummy.m */, + 5888E4209D82B012879B6749C0F5DC81 /* RNCMaskedView-prefix.pch */, + B91FA07DDC1F357726D2A27933E5CC69 /* RNCMaskedView.debug.xcconfig */, + F95C9E4B25916C939ACD2E44B12E6DA9 /* RNCMaskedView.release.xcconfig */, ); - name = "bugsnag-cocoa"; - path = "bugsnag-cocoa"; + name = "Support Files"; + path = "../../../ios/Pods/Target Support Files/RNCMaskedView"; sourceTree = "<group>"; }; - 347C38F6F21989397AC3CB18A4E7C341 /* Pod */ = { + 3397B6813AC1F4164525E8BCBC7B2BF1 /* DevSupport */ = { isa = PBXGroup; children = ( - 52A7365380BDE375D1690CA2016D6E62 /* ReactNativeUiLib.podspec */, + 68CAE3B473EA141D1D9A05AE67464738 /* DevSupport */, + FF577BFC10B6F33C76908338AF7DB8F0 /* Inspector */, ); - name = Pod; + name = DevSupport; sourceTree = "<group>"; }; - 35071B6A8FBDBF6B984FB20DCC1B6E85 /* UMBarCodeScannerInterface */ = { + 33E5999D884556154B384831ED828BE0 /* React-RCTNetwork */ = { isa = PBXGroup; children = ( - 276DB70CAFFA8C51DC9B44E88B8A4223 /* UMBarCodeScannerInterface.h */, - F5E7B4DED4D5A8CA8A2AC2E8E3B2E978 /* UMBarCodeScannerProviderInterface.h */, - 58D6CD830BF4033E4AFF05CF0202F788 /* Pod */, - 27F74A6091A6F5F5492D142B1FE6BAD6 /* Support Files */, + 3B9957E2C48D243E6052077D17D96840 /* RCTDataRequestHandler.mm */, + E4169119DC0D169FCDC07B564BB80AA8 /* RCTFileRequestHandler.mm */, + 41DF9C1BA38FCCA93950CA4977947BE9 /* RCTHTTPRequestHandler.mm */, + 8B11C71699DC740A7D05AF64BC950BDD /* RCTNetworking.mm */, + 7542B6581D86DE78244807AABE670477 /* RCTNetworkPlugins.mm */, + BDD36D38C63470DC0E1B558404F36FE5 /* RCTNetworkTask.mm */, + 3E265653095F89AF93EFA591793E2327 /* Pod */, + A6DA127BE7B398303C4A53B8F0095426 /* Support Files */, ); - name = UMBarCodeScannerInterface; - path = "../../node_modules/unimodules-barcode-scanner-interface/ios"; + name = "React-RCTNetwork"; + path = "../../node_modules/react-native/Libraries/Network"; sourceTree = "<group>"; }; - 3534088DB66DEF568FAF45B5A920EB0F /* RNFBAnalytics */ = { + 34FA04AD1A93F9D96FE7A369171E49A7 /* Pod */ = { isa = PBXGroup; children = ( - 2071AD3F0AFE230C3414C7848E15AE62 /* RNFBAnalyticsModule.h */, - 8BE6ADD1D1BE6811A03AFB71BBB1B55C /* RNFBAnalyticsModule.m */, - 90847C147529FEF4F28E023947EEBBB2 /* Pod */, - 443035F3C3FB5B8DE480E9FC38A1B786 /* Support Files */, + 1A6BF01E15B9068DF6E8D6578E71D733 /* LICENSE */, + 1E922A64CDDE228D261F29041E16608B /* react-native-mmkv-storage.podspec */, + CE07118517AB5518BB53334C458B36DB /* README.md */, ); - name = RNFBAnalytics; - path = "../../node_modules/@react-native-firebase/analytics"; + name = Pod; sourceTree = "<group>"; }; - 3569ED544B7FB5799855EF9E104057CD /* Firebase */ = { + 3559177BBD3FD43B8C0155B4CC917898 /* rn-extensions-share */ = { isa = PBXGroup; children = ( - 3433F2D71F93B5C751F175294A56C7E6 /* CoreOnly */, - 1B082747F9E813D0338BCAD63F875FCB /* Support Files */, - ); - name = Firebase; - path = Firebase; - sourceTree = "<group>"; - }; - 366FD0BAA8D9A84B9FEB1AECF2F017A0 /* RCT-Folly */ = { - isa = PBXGroup; - children = ( - D698A54C40003FD1EE0618F5FCF5A4ED /* Access.h */, - A8BE121CC2AC61A2582FB032C7E7D75D /* Align.h */, - 58B8205D88F6BC2164C9E39D657287A0 /* Aligned.h */, - F0DD32790BF0B2290C451608FE612652 /* ApplyTuple.h */, - 761B0A90B62FD46941587EE7D33277AE /* Arena.h */, - 5EC93F69EB17565DC472711C55309B4C /* Arena-inl.h */, - EA0EF4A0499795DDFB3E11E94D6A68F2 /* Array.h */, - DB1694FAC251DD37A22E57B2BDFFEB94 /* Asm.h */, - E5F7C4CFBBA3148E9239CEC7A806D43C /* Assume.cpp */, - C86DF7EF0D2DB8F15D67CAB2D5C16B89 /* Assume.h */, - A976071786DC29EB8FCFEB8885F34F6C /* AsyncTrace.h */, - D03E0BDAF9B99DCFE7142FA24C3753B9 /* AtFork.h */, - 38BBE2CA9186650AFBC919E763904BBD /* Atomic.h */, - DEDFCDEDEC54C491C5F3C67AFD4F3CB5 /* AtomicHashArray.h */, - B024CE0A8658C173B1A92EAEF273CA05 /* AtomicHashArray-inl.h */, - 770C9E7B377482C3CDAC5BFD3DBD94DE /* AtomicHashMap.h */, - 8CE91CAD974A0975205D751C86C23139 /* AtomicHashMap-inl.h */, - 210C8413BB03BC4DB926FE8A054C875D /* AtomicHashUtils.h */, - 9E6BB66DD78A86120B879D7FAFC4D31C /* AtomicIntrusiveLinkedList.h */, - A767B1B3873B1AF05F2881B4DAC3C7F2 /* AtomicLinkedList.h */, - 614BA35B6914DE93A82BE6DC1195EBE9 /* AtomicUnorderedMap.h */, - C37A75FDB49EFCEE4A1211875E3F47BA /* AtomicUnorderedMapUtils.h */, - C56532EC0EFA749A87186D083FF75C66 /* Benchmark.h */, - BD8642644F3A2804EB341CF7DF6465E8 /* BitIterator.h */, - B910507E6F3163603403C8E93367A32B /* BitIteratorDetail.h */, - 5F7131E80F05E6182455932994237783 /* Bits.h */, - 6E88B1A9026F546D449585CF54CEB725 /* Bits.h */, - A4B11545965ABE6C7AB237B1765A88BC /* Builtins.h */, - E509FD956BD9317B6C7E872F35A42704 /* CachelinePadded.h */, - 1F0EE0F7910D4DE8ACCD1C5AA15A07C8 /* CancellationToken.h */, - F9A922675A0AEE799DFC55AF54CD6D29 /* CancellationToken-inl.h */, - C98E349E86046891AFC5FF8A087E9764 /* Cast.h */, - C1AF891DE00053BEBECE069FAE7BD92E /* CheckedMath.h */, - DDCF0E1C73520263E3B6793D999FC73E /* Checksum.h */, - 0846660998DB5993367CE75C3BE71D85 /* Chrono.h */, - 836C95D081ECB5434F342E17A88F8CA0 /* ClockGettimeWrappers.h */, - DD0E1AD5E554C9C1E9D21507A4CEB48F /* ConcurrentBitSet.h */, - 4C99E44EFF703AFF54FB84284C85BEFC /* ConcurrentSkipList.h */, - 7E9567E0914302535C295590D9E802F2 /* ConcurrentSkipList-inl.h */, - CCFEC6EEED220D1BD667FF0839451C3E /* Config.h */, - 0AE90D932F5FFCC1DBCCA7B9D17A6B0C /* Constexpr.h */, - 4A665DDBA684A68855493C39C9A17880 /* ConstexprMath.h */, - 8ADD9A407E7D7F73D4235E69A029B08D /* Conv.cpp */, - B8861BD54155CF886F44EE104B6E00F2 /* Conv.h */, - DF6F68824D610DAD329C4F8A043CE87E /* CPortability.h */, - 932D6A4AAAE1FBAB7EE894FC1698E905 /* CppAttributes.h */, - F5C5DF4C60B77F8383B42AB7ACBA6C09 /* CpuId.h */, - C9106D8860AE51771CD2A85A8D20BB16 /* CString.cpp */, - BE4B2EC9E780573AB23F987993FB301D /* CString.h */, - 4DAEC73A517CF97C666864661DB55390 /* CustomizationPoint.h */, - 4652354732BAAD1E1BF37A644FBCFB1D /* DefaultKeepAliveExecutor.h */, - 2E989BFAB2A9F137B9B90605149AC2B9 /* Demangle.cpp */, - 71AE22565DA82EAA87D9FBFEE7C353B9 /* Demangle.cpp */, - F6FE7555EDE359A14D2F715534F474C8 /* Demangle.h */, - 5B49FDBF3FC01A38C036AFDF31332825 /* Demangle.h */, - A568645E3EC4F41A6B8E54985BE21DD0 /* Dirent.h */, - 4EA1683C021C4EC5FEE026813886B9B8 /* DiscriminatedPtr.h */, - 2A8DBA4F20110FCD2B5510ADC12462F8 /* DiscriminatedPtrDetail.h */, - 26E253A144B29FD6ACEB1D84A5B4F6C2 /* dynamic.cpp */, - 05EB11B4088E4CA6D0CB872253BCFCCF /* dynamic.h */, - F0DBC971FD93CC9B2793DC0B11B8E605 /* dynamic-inl.h */, - 9B408B54017E7CCE97492E0497ADAAD3 /* DynamicConverter.h */, - A3F2CA03CD6CE2779AC3B2571F1888FD /* EnableSharedFromThis.h */, - 92F409B54F566135765FA15FF2FD4B10 /* Enumerate.h */, - 80C0413E19A2DBCC3F6918891B6DCA41 /* Event.h */, - F90EED1DC20A348419D2B4FB2DCB70F7 /* EvictingCacheMap.h */, - 210647A8DAB9BA0BC3CFFB53080E24FC /* Exception.h */, - 4CBD13E740A98CB3DE73F9DF0337B28B /* Exception.h */, - 337F59CD81DBE94A74954F4597B94B9C /* ExceptionString.h */, - 86B97EE47635299C9D8446981F698087 /* ExceptionWrapper.h */, - 3887EC7543C5FB4AF86290527D48BD28 /* ExceptionWrapper-inl.h */, - 30AF8D3CCB290A00C1F861CCCCE68A94 /* Executor.h */, - 3AE56CA7AC8987C48F156489C4059B75 /* Expected.h */, - 29BB2342D6548FB4328A430E838AF6D1 /* F14Defaults.h */, - 140AAC91E8ED0B016C8DC8C5131FF746 /* F14IntrinsicsAvailability.h */, - 64B3EB06DBD57A098DB73AE093530DC6 /* F14Map.h */, - 57296D14B37F4B594C34FDEC9A63E717 /* F14Map-fwd.h */, - 065FBA790EB915D267BFD279DCEA5863 /* F14Mask.h */, - 6D32352F57E8F9AA7298DD4C5C8B23BD /* F14Policy.h */, - 7DDD0E4D55A3F32EBF355204599D60A0 /* F14Set.h */, - 69B07D62B4420F1F79859BE4CEBE6317 /* F14Set-fwd.h */, - 5D807357EC0B10568626B6462BAE2112 /* F14Table.cpp */, - 289FAC143E9FC44F43C2C9F3BFD11E1C /* F14Table.h */, - A84C7960CEE6FB114D2D907465B2C77D /* FarmHash.h */, - 8F6A790A04657521BE6AAFBD73CE25EC /* FBString.h */, - 73E2107DD4CEDAC8631E3F8D4AC29C87 /* FBVector.h */, - 37A59588AB9E695C969A7A078928DA45 /* Fcntl.h */, - FA5E26E72716FB2C14E4628E317D45D2 /* File.h */, - 63E1B74E561C965DABC1A328D38BBD67 /* FileUtil.cpp */, - 2C4D8DF159A741D57577CD8295426EBB /* FileUtil.h */, - 21208A38F5A34E06291195EF0E2908C6 /* FileUtilDetail.h */, - 2E4F334248833C97B3656DE81F2B2778 /* Fingerprint.h */, - 270500ED0A569CA88773DA34EB2A806A /* FingerprintPolynomial.h */, - 860239C88599BC26C8132EA2A3B02158 /* FixedString.h */, - F55B26C281E7CC639D090359C95AF714 /* Foreach.h */, - 28B56D2A63D67651137709B2BDCEE69D /* Foreach-inl.h */, - E55E4E782BC0B7CC36EAD9507597C474 /* Format.cpp */, - B90E21FA5E3F701B8D278B2E7060FECA /* Format.h */, - A1B24C17B642E8896288A691DB8F105C /* Format-inl.h */, - CAB2A0986BCA709B4AF09D1754932213 /* FormatArg.h */, - 7AF0EDBD81AE0FAFA35C0AB0497212B4 /* FormatTraits.h */, - C2DA9F23FE8526DB70B1265FB9EDB63B /* Function.h */, - 83D65B87F81FC79D264226D68569D33A /* Futex.h */, - 6498003091836BC30C2529E6F103179E /* Futex-inl.h */, - 8EBC48E874B62E68701ECFA4FB7CA363 /* GFlags.h */, - E8BFDC44834812D83E93BA1CF7F08FA1 /* GLog.h */, - 493DCB98EA5DCFD10DAB11CBB5E00622 /* GMock.h */, - 1F67315E7880925AA24F1ADCA8867579 /* GroupVarint.h */, - BC914DD1DC14DB1242681F2556E73482 /* GroupVarintDetail.h */, - 442ECB432E7884203A62F2A6522EF418 /* GTest.h */, - B9B3872121E4529E8679F086AD34150F /* Hash.h */, - 0E0FD9AABD54D4C664E1E35921489745 /* Hash.h */, - 3663947E78F78F183D279D27C650548D /* HeterogeneousAccess.h */, - 8371C3FBE908131FE0B4BAAE1E6D2F52 /* HeterogeneousAccess-fwd.h */, - 37ED6C8E5748E3D977D1C2577627B96E /* Indestructible.h */, - FF259A97C6851A6DFEA8E80CC64AAE13 /* IndexedMemPool.h */, - 64AEE34E39F21439039BA2068927D0F2 /* IntrusiveList.h */, - 393CE8EC718597E11A7CEECF30F7B927 /* Invoke.h */, - EC8909AA3E1DF660755798850979DAAF /* IOVec.h */, - 46BED2DF70C6BAE76102F1EED1551686 /* IPAddress.h */, - EB7F915F146B38A65846A157B7FB3EC6 /* IPAddress.h */, - 6B9475DFB50607546ADDE85EFFA6AB56 /* IPAddressException.h */, - B46B99D18C68C5C66A1CED7FA48ADB82 /* IPAddressSource.h */, - 18E4B2F4BB2F7FF67DB269B56E4CCDF0 /* IPAddressV4.h */, - 8BFF647876CB7C31171CD68C2B2688E5 /* IPAddressV6.h */, - 5BDE5CE1F29F2B5E710DBC832F28D9B5 /* Iterator.h */, - F6DAA1715ADF9A5DE86C19321C5B86A2 /* Iterators.h */, - 1E3906B67AE280892E16D218B31CE65D /* json.cpp */, - B00A3D811FE95BAA79458C70701C7D1E /* json.h */, - 7A68BE5DE275AC8222532BCA9206A279 /* json_patch.h */, - 42E07FEF574DA0ECD1BC7F643A4EC7CE /* json_pointer.cpp */, - 5BC13F39AC5C4806FD4BEED0207D40BA /* json_pointer.h */, - EBEF24FFE00373397C3BD58477679B7D /* Launder.h */, - F706C3AD388C5F7FBE62C7B79AE8E90C /* Lazy.h */, - D7BEB610C4B614A30006C73B615D4BD0 /* Libgen.h */, - 0153F266157533ACE5EA59284B4E8922 /* Likely.h */, - FD7CEB9400B120D3967B693B0B157334 /* LockTraits.h */, - EFAF65A558262424D56BC320489FDC28 /* MacAddress.h */, - F968A99F776F201893FF2E12F10DC872 /* MallctlHelper.h */, - A67B831BF4C65D29F2045462D7945319 /* Malloc.h */, - AB92F07C8F16DC3AB790670FF753DD93 /* Malloc.h */, - DD55A550A260F6C74B624318596B279D /* MallocImpl.cpp */, - 12165C66AD4A3FAE0B695344667405C6 /* MallocImpl.h */, - 285AC2398EBE625A8D9A4F1277BBAADE /* MapUtil.h */, - C81C1CDD0B6CEA783E7B2FED5B4A6A4D /* Math.h */, - 0BD55AF06C4C5D21CB16B94666B41A91 /* Math.h */, - B4A669AEE4E790FB79D3AFC1B3EF5C78 /* Memory.h */, - BA30F381505351432375646265A3BE63 /* Memory.h */, - 103D85709FAEBE30EE0B816C9B015B9C /* MemoryIdler.h */, - CF92CB2DC5E901A2117D9D01EE01BBBE /* MemoryResource.h */, - 47C84FA9DBDB8034B972C27156F21F00 /* Merge.h */, - B4FBBE4BE1E75B75A567276F3B442B94 /* MicroLock.h */, - 051BC3CCB1F2C53A32AE05774FB983A7 /* MicroSpinLock.h */, - 4DA348A7D21149FE8CE8BB8E70E897ED /* MoveWrapper.h */, - EF66ECB1C963FF6FB3F5A9F987CF61D3 /* MPMCPipeline.h */, - 2C5800E04BD2368D3CB11E16D4EF1829 /* MPMCPipelineDetail.h */, - F350699D1059C8E80FBC4C4DF05A2B0E /* MPMCQueue.h */, - 23CFC27A0D600C50FD6262EBCF48AAB9 /* NetOps.cpp */, - 073C7A7AF4093E077B81947FA20CD463 /* NetOps.h */, - F19F759098215F99E10C42499F69820B /* NetworkSocket.h */, - A8E323CFE2D9B1962135FED636658650 /* OpenSSL.h */, - B1F5D075BFE910A7152B6F26241607C1 /* Optional.h */, - 9388BB3EF820E441837B5478F65B29FC /* Ordering.h */, - 6C8D435674D93881B7111A8FBBEE9D1E /* Overload.h */, - D086FD2DC70AB96A859578DC6120A23B /* PackedSyncPtr.h */, - 67A7E38CB6EA455F1DB1AC26C42A0EFA /* Padded.h */, - 3A77F6EE9A506C325B1356B3440C8FF4 /* Partial.h */, - C00EDB550A0E30C35EF12C0F95474382 /* Poly.h */, - C94CA6CA326F12DDC913D558730C0BFA /* Poly-inl.h */, - 52BC7916B2B7B219EB6FC9CC2A5AB472 /* PolyDetail.h */, - 4225A60B45A95BED41217E53FC10BDDB /* PolyException.h */, - 97E927B66185AC875950011515566C7E /* Portability.h */, - 23DAE6AA300B3D3D134253810C2441BE /* Preprocessor.h */, - F091B10FC5021AF0D2DC79A4895E6728 /* Pretty.h */, - A4AC4A18649390E71529D211141C6CF9 /* ProducerConsumerQueue.h */, - 06EF2F083C06FEFE6A287DC283072E67 /* PropagateConst.h */, - 42E3DD27E3C62F7A40FD2F65470B1589 /* PThread.h */, - A954D4E2C3B902244793F2C11C9ED0B0 /* Random.h */, - A241079C26BA7316518080B63897BAF8 /* Random-inl.h */, - 4B8D76CAE2FEE7117E9E0A6C31E9CFEB /* Range.h */, - 65F1AC1A3944F25FB966B24E6E90882F /* RangeCommon.h */, - 13A70D257EB606DB7DAE4D4BDCEDE0A7 /* RangeSse42.h */, - 7BA6F36479FF33E103FFB4087E81E9E2 /* Replaceable.h */, - 955FF74652B28A8FB2FF9E3F715C9545 /* RValueReferenceWrapper.h */, - 6FBB3076E8F8AAE9C08B725DFAB0C8D3 /* RWSpinLock.h */, - D57829D18EEE1D92E43BA2B93BFD087E /* SafeAssert.cpp */, - 733ED06FBC1F2020F12228873F997D20 /* SafeAssert.h */, - 6EB546ADA24193FABD659F8D647F5A17 /* SanitizeLeak.h */, - D74ABFF01BBF287ECFE62FA3E7B8555B /* Sched.h */, - 33A7E941A4206E08C5B025F4C63C64D2 /* ScopeGuard.cpp */, - E96622D92C07CF69EA6BEF2AA363F0A1 /* ScopeGuard.h */, - 2FD8BFB766C4D8652467E620E4061E38 /* Semaphore.h */, - B9BE633D011E108B8B50930D8EE40B41 /* SharedMutex.h */, - A19D959C2D30B646978CC853404DA1BA /* Singleton.h */, - 52487E7EA3FF06EFCB57D1CD9FA0DCF2 /* Singleton.h */, - F32DF292FF18701CD4296B0F2A789C71 /* Singleton-inl.h */, - 5DEC62479ED4703A3493A030B50AC9AE /* SingletonStackTrace.h */, - D980C0A62EE8742795B8DE601B15EB93 /* SingletonThreadLocal.h */, - A8A50CF4DE81C41A118A56BE7BDB341C /* SlowFingerprint.h */, - 2571DDCDB2652412E88CCFE7FFF135B1 /* small_vector.h */, - 862386D325E2D34453FACDF8BC1C8191 /* SocketAddress.h */, - 1EFAA1EC8ABC4B195F6D05DB2149CC0A /* SocketFastOpen.h */, - 655295FC2D10FA8D103EC75D8A0C884B /* SocketFileDescriptorMap.h */, - FE5C2E5ECE500F046DDAEFBB1AA82A09 /* Sockets.h */, - 12899CF7B0A4C003456EED43A6AC7EAB /* sorted_vector_types.h */, - 313463C598C757EF8F324DB0BF06F135 /* SparseByteSet.h */, - E9AB1651105F9583CE5F40B209236A82 /* SpinLock.h */, - D64E5F3C5FEBB3D23A3B391A2C24C43A /* SpookyHashV1.h */, - 3F9E5087DC25C01058CCEF28892B1C75 /* SpookyHashV2.cpp */, - C699DCC52925CA7072A737F15E0BA4DF /* SpookyHashV2.h */, - FEEA2711BAA6C175F6373B87C94FEA5C /* Sse.h */, - 4A04C5093939CC2837C05F0DF48DDCAA /* StaticConst.h */, - E553F01BE30FCC53EB6EE5B3FA54B6B5 /* StaticSingletonManager.h */, - 2B8E8C68AEE768BDD9E736F62AB3056B /* Stdio.h */, - 759AE7B54AF92C3EFB888E9A1E4A49F9 /* Stdlib.h */, - A7AE6578BD7F7F96E800B58A62BFCE2D /* stop_watch.h */, - 1969D4A64C9DBF508235F802293B8EBD /* String.cpp */, - 36565EF649A1D1CC9CC7CB756E6298A9 /* String.h */, - A421F2EFDBAA96C876AB25BD44230474 /* String.h */, - 83F37D98A00763F81E61FCC64732810A /* String-inl.h */, - 7627539D8AF7D002F4A4360B6B27BFFF /* Subprocess.h */, - B37CF269BCAE8B7D2A9F579D77ED442F /* Synchronized.h */, - E5337603B78A222B6B5B57618DB6080B /* SynchronizedPtr.h */, - 52292E739162D20DA20E175D11C9397D /* SysFile.h */, - 21DE4820CB09FD8DF00F8B3310FA446F /* Syslog.h */, - 973D4FEE9B301EE619FA03B31A4F2933 /* SysMembarrier.h */, - 4B1D0814E55E56B96BFC377C0059C7FF /* SysMman.h */, - C4AFB3459812979FCF112335B1814369 /* SysResource.h */, - B601C6E328718F723F5CE385782660DD /* SysStat.h */, - 988D1D5D5262936DBBB6D4BF4F110318 /* SysSyscall.h */, - EC68D88BEDF536EA7336B88F76A1E0F8 /* SysTime.h */, - D328775106F074AD45878F03B4247CCD /* SysTypes.h */, - AC3B6E2A54F07D4CA19C1041C8695202 /* SysUio.cpp */, - 9BF2FD70B586966F632DE0F4C3452BC4 /* SysUio.h */, - E658D0B87F376A26ECCE7D29B51CB804 /* ThreadCachedArena.h */, - 1BBC025510EABED14B092533E2EA14D6 /* ThreadCachedInt.h */, - DD9F427E6ADEB4967A1DDC5A41D08DB5 /* ThreadLocal.h */, - 6B6792230C95B3E30825ACD9B116B40D /* ThreadLocalDetail.h */, - 837E9CF02683AFD9515312499D96F62E /* Time.h */, - 51C259A9824478DE5643E9C5F2A26E91 /* TimeoutQueue.h */, - BA1A677DC8F9D0351B40C2A6CE7308C9 /* TokenBucket.h */, - EAF8ACC31CCAED2FF89273D035C7A486 /* Traits.h */, - E4FC8715E1EB40E6DA91B572FD796DA9 /* Try.h */, - 51BFC1D0986C540B6E8C5C8456C71D32 /* Try-inl.h */, - 0F0F007E490BD7A6AD5E2861E1F025A7 /* TurnSequencer.h */, - 8664497135BCFA9897D91A8767C2B915 /* TypeInfo.h */, - EA8C4045E05D9C71E7B35F1F39E7D037 /* TypeList.h */, - 444A46906D8E12F1A3B33616C40E9FE0 /* UncaughtExceptions.h */, - 7CB388056028D7AA7C6FD0156B291F39 /* Unicode.cpp */, - 7594BECDFBA4190D7EF60C88EB269846 /* Unicode.h */, - 62DA78B0C8B22C0F5F258C14B2B653A9 /* UninitializedMemoryHacks.h */, - 42D2022526F4B2777243BC68F4ABF49F /* UniqueInstance.cpp */, - B798703660D7BD3CEAD6BD9B086379AA /* UniqueInstance.h */, - 49ADD9E9092F2EBE6E2D3FCF1CEF87FB /* Unistd.h */, - 7C29BD3BD584BB49CE36715D9D1254BD /* Unit.h */, - 42C85A45524DE2BA8DD6A46943FFF9E1 /* Uri.h */, - 450830B6145DACC4C6D5A7DC4011A9DB /* Uri-inl.h */, - 4990C4B9B9AA45A9F6839CFF93A49CEC /* UTF8String.h */, - 1E7A67F3728F9137FBCE4D5B6613BAEE /* Util.h */, - 6FED52E48A4F7480A2C6FF36C02DB30A /* Utility.h */, - 213E5645948B35C26F6888909095F5A8 /* Varint.h */, - CC10DEE2E7D3DEC467AC54EDE7E1CDED /* VirtualExecutor.h */, - 57772953C8F6A7EE7549195AE3766F39 /* Windows.h */, - F1780DF17F8F254B4E8C6DC421BAE976 /* Futures */, - 2301EE18F04F8E39CEB03D3ECC283D06 /* Support Files */, + 31AC08E94AF9F12D2554ACB6A307FA1D /* ReactNativeShareExtension.h */, + 8D671DD9C09EC323906CEFAC8A87493D /* ReactNativeShareExtension.m */, + 4F15FA72B7B88A3A51AD105D50A58B73 /* Pod */, + AAC4DBE8EC11A7ABE5299909DFB53366 /* Support Files */, ); - name = "RCT-Folly"; - path = "RCT-Folly"; + name = "rn-extensions-share"; + path = "../../node_modules/rn-extensions-share"; sourceTree = "<group>"; }; - 36B571D5CDF18F9956567753B26DE890 /* Pod */ = { - isa = PBXGroup; - children = ( - A5B397701238EF3AAAEE7E5D6211B1DF /* React-CoreModules.podspec */, + 35B920AC5532689D3C3916B2F250D7B3 /* Helpers */ = { + isa = PBXGroup; + children = ( + DB8AA9A7EB6000F4AD2A31C27D56F1FA /* BSG_RFC3339DateTool.h */, + 270ED4C0A8F69348FF1FE797E0E06DF0 /* BSG_RFC3339DateTool.m */, + 75F1836F8CC9C426B26F8EEE1ECE4D5C /* BSGAppHangDetector.h */, + E6B9AB610EF64D266D39FF5B4150363C /* BSGAppHangDetector.m */, + FFFD6378FE7EA3865A2BD3814EC14027 /* BSGAppKit.h */, + 8200515752D33D5F883C291B2285950E /* BSGGlobals.h */, + DAC0F7B0065D32DA0B58D23C9729310E /* BSGGlobals.m */, + EEBA5183DD7B72FC02092AA25A9EF007 /* BSGInternalErrorReporter.h */, + 061526E906CF56F9E500DA4E33B7AAFE /* BSGInternalErrorReporter.m */, + 1A2AB5B10BF8177FEF938E1DE5ACB5DD /* BSGJSONSerialization.h */, + F45431E727CEC1C36147A703596FF74F /* BSGJSONSerialization.m */, + C08B6C4F14452F11A0C35EAA5606EC2B /* BSGSerialization.h */, + 74ED020DAD572E4DDD2ED2ADB981442F /* BSGSerialization.m */, + 90CE700FC7EF1C20C9AF19AF6DFC6BEF /* BSGUIKit.h */, + 22FD3CD3C14D4A27147C7FD131AC67B1 /* BugsnagCollections.h */, + 80580563A830049C8F6B7151C484FB53 /* BugsnagCollections.m */, + 0C92569759A532197BCA2EC4CA3E0CE0 /* BugsnagKeys.h */, + B17C95B209B98EA07B3310578D724ED3 /* BugsnagKeys.m */, + 107BC9AC4578A69B39C27751985613B7 /* BugsnagKVStore.c */, + 05E986F5F42A4CD27147D702D802B7D3 /* BugsnagKVStore.h */, + B1CB6CEF5FF06DC6153CDA4F8DA55607 /* BugsnagKVStoreObjC.h */, + DCFEE6AEA20DD62C6DFADE9FACDF2533 /* BugsnagKVStoreObjC.m */, + 9E9F0CA0AD24E936C9349B1E2AB23F1B /* BugsnagLogger.h */, + 8BAD30A36D29548F628F420A0F4C8FC8 /* BugsnagPlatformConditional.h */, + F9B9B7A1BC468EDEA5B4AAEB6BE0EF96 /* MRCCanary.m */, ); - name = Pod; + name = Helpers; + path = Helpers; sourceTree = "<group>"; }; - 379FC1A4AA39C182B24660BE1D835886 /* Support Files */ = { + 35BAA952C62D79C1417676CACC008ED2 /* Support Files */ = { isa = PBXGroup; children = ( - CE804605C2C458698224684169342575 /* GoogleDataTransportCCTSupport-dummy.m */, - 016F790BB3FCBF679484B8AA059CD576 /* GoogleDataTransportCCTSupport.debug.xcconfig */, - C7CA2A8556A16B3C49FF1B41CC0AE811 /* GoogleDataTransportCCTSupport.release.xcconfig */, + 908AEBD907478D7638C62BD46D4F7F90 /* Flipper-RSocket-dummy.m */, + 53F2B139F253C910EC667BFF9FF86BCC /* Flipper-RSocket-prefix.pch */, + 9E90C46615F70ECF98722F3F47553119 /* Flipper-RSocket.debug.xcconfig */, + BA451C7A7BAB81792094596D55EC16C2 /* Flipper-RSocket.release.xcconfig */, ); name = "Support Files"; - path = "../Target Support Files/GoogleDataTransportCCTSupport"; - sourceTree = "<group>"; - }; - 37E18C2889BDB4B1AD665BC33A97BBCF /* Bugsnag */ = { - isa = PBXGroup; - children = ( - B7358C94276CCEC1B4AE7E9A1A8E374F /* Bugsnag.m */, - 8CEF6312A691D6DB22CF8785A46A0F92 /* Bugsnag+Private.h */, - 320D2D9ED3CB8B62056C35DC07E096D4 /* BugsnagCrashSentry.h */, - 01EE423A9240BC77F04F0954BFE9AB21 /* BugsnagCrashSentry.m */, - 434E94F8ABB8EC5550FB9722BBAB5A64 /* BugsnagLastRunInfo.m */, - 0A1AB6D01744E2320165DCECBB1BE4F9 /* BugsnagLastRunInfo+Private.h */, - 2F7346407420D349CF5ADF41C420A657 /* BugsnagSessionTracker.h */, - 7AE5CF45ABF4F6803BE087F741E80D4C /* BugsnagSessionTracker.m */, - 10EE657F01EBB6BCF4637D1124C1343B /* BugsnagSessionTracker+Private.h */, - C9BD5139DF22D21BF4CB4F97E6819226 /* BugsnagSystemState.h */, - EA8AF9736E107436330E00907D1BA6BC /* BugsnagSystemState.m */, - 6B8177413FE23A44A20772483FB6A2DB /* Breadcrumbs */, - 5D6FD0E97DAF411CF365958D4C4A2A43 /* Client */, - 7B2BB809FDDECF64E64B0B8EFAA482BB /* Configuration */, - 1D7AF6AC756E889CFBBA16648E0D9321 /* Delivery */, - 592FAACF379830F3D0E3FE3F478C6D10 /* Helpers */, - 751EF41D8D7AA945AF43D96BCC74634A /* include */, - 84E40C32042BC4E376079790C363EBBC /* KSCrash */, - 8E5A32E3DE7F8BBF28366A1F99BCFEA5 /* Metadata */, - 89E9DE362B0DA8851E0A2A3EDC9F8C0F /* Payload */, - 8A6EAA35821CBEC3697C77A447F0A1D9 /* Plugins */, - 16EC9B2B3B254E5E3A9B97999E10F173 /* Storage */, - ); - name = Bugsnag; - path = Bugsnag; + path = "../Target Support Files/Flipper-RSocket"; sourceTree = "<group>"; }; - 381949ED43D1CDA5910C97837B136DE6 /* Pod */ = { + 35EFC3CA1AB41129D73C52050BC7076C /* Pod */ = { isa = PBXGroup; children = ( - 36F2F210CB0253245C2C4717A0A78D78 /* UMCore.podspec */, + 36E33025A93A8F3CBAB69B0E2F19467F /* LICENSE */, + 594498D25C06B01EC3953E6044BE4795 /* react-native-safe-area-context.podspec */, + DB9F6D4971DB832513557BEC07F2D0B8 /* README.md */, ); name = Pod; sourceTree = "<group>"; }; - 389E6219E25B293E37400BF93542290B /* Support Files */ = { + 36783EE0FC0A8CA18E540E322F3FCB9C /* Support Files */ = { isa = PBXGroup; children = ( - CBD7F32DD3F52D110764E7A7679E3C64 /* Flipper-DoubleConversion-dummy.m */, - C8BF84940347B813510E1C68D77E276D /* Flipper-DoubleConversion-prefix.pch */, - F6C380CA7A33FA313D82D9CB909D3CE4 /* Flipper-DoubleConversion.debug.xcconfig */, - B4E063DE07DC46F94A32EAAEA472888D /* Flipper-DoubleConversion.release.xcconfig */, + F450D69FF61503349DAA40ADE9ABB40D /* SDWebImageWebPCoder-dummy.m */, + 7C0E0FEACFC6453F448BD3459F88FDE8 /* SDWebImageWebPCoder-prefix.pch */, + D75B3D83DFE90E4D889F8DEE8C4CE40F /* SDWebImageWebPCoder.debug.xcconfig */, + 2B17C4EA6610DD0C8BAFD168886FF158 /* SDWebImageWebPCoder.release.xcconfig */, ); name = "Support Files"; - path = "../Target Support Files/Flipper-DoubleConversion"; + path = "../Target Support Files/SDWebImageWebPCoder"; sourceTree = "<group>"; }; - 38D9EAF47DFD9D6656C267373959A73D /* Support Files */ = { + 367F75B5395814C95FBC6940706A38E4 /* RawText */ = { isa = PBXGroup; children = ( - 047F29786AB3962508FB437472C96F1A /* React-jsi-dummy.m */, - D7158FAE9DF446090D9C9B2C3C24BD46 /* React-jsi-prefix.pch */, - FB71298544C4A579C35EA82025B38F9A /* React-jsi.debug.xcconfig */, - CE75A73372A46C20D81FFA32E2B7FF33 /* React-jsi.release.xcconfig */, + 42245DA23C66C218041FCAC33FE9FBB5 /* RCTRawTextShadowView.m */, + B299D23428F04BCB9299578DBB3D25E3 /* RCTRawTextViewManager.m */, ); - name = "Support Files"; - path = "../../../../ios/Pods/Target Support Files/React-jsi"; + name = RawText; + path = RawText; sourceTree = "<group>"; }; - 396863BF3DD7F36F45EBEED3C6D4A98D /* Pod */ = { - isa = PBXGroup; - children = ( - 9F42DFDA6F22835E42110275C6D45AD4 /* LICENSE */, - B44FE944CBD14BC532A9DD4246A36A3B /* react-native-netinfo.podspec */, - CB9ED71E24B8573D5A3F1BDF00522916 /* README.md */, + 36D95FA44DE1D3857D3A160E5CE03303 /* react-native-safe-area-context */ = { + isa = PBXGroup; + children = ( + 9AD983C02E167C26EDBB3F01F2A808B4 /* RCTView+SafeAreaCompat.h */, + D2181DD524EF3D415808B30363562037 /* RCTView+SafeAreaCompat.m */, + 9462415FFF97F7CF86775C4B3AD3AF3E /* RNCSafeAreaProvider.h */, + B886A62870C66C4BB66F121C1DF4FC6E /* RNCSafeAreaProvider.m */, + BF340157E2DB3F706AFCD381A9700B8A /* RNCSafeAreaProviderManager.h */, + D5DD2C250927C510A2B49BFA22469A45 /* RNCSafeAreaProviderManager.m */, + D5C9DB500B1E39595B959B32B30E2C9C /* RNCSafeAreaShadowView.h */, + 1EFBBAE8AB7886B389DBD741048D1625 /* RNCSafeAreaShadowView.m */, + 9C448EF2EA084A44F21CE2F67C41DE25 /* RNCSafeAreaView.h */, + E9EFEE604999AB71CEEFEB069E932646 /* RNCSafeAreaView.m */, + 305D26CFA761F37B3D47E07007EC7B10 /* RNCSafeAreaViewEdges.h */, + 3B94B4EFE54E8939DB490367A6F45F08 /* RNCSafeAreaViewEdges.m */, + AF0745E0046A86F0A431A89A77372F33 /* RNCSafeAreaViewLocalData.h */, + EE7156ABDA0AA89109C037D29E14E207 /* RNCSafeAreaViewLocalData.m */, + 1F83AADFDB339088F4A5728C260CA1CD /* RNCSafeAreaViewManager.h */, + A9D8EC8975C06F9981D05C04B002E935 /* RNCSafeAreaViewManager.m */, + B984B35392A6C5B1B772CE97FC230C64 /* RNCSafeAreaViewMode.h */, + 56C371BA2A30A5A542C0D279D7C8FFDD /* RNCSafeAreaViewMode.m */, + 35EFC3CA1AB41129D73C52050BC7076C /* Pod */, + A251929911742F461C1738A3A2B2BCA7 /* Support Files */, ); - name = Pod; + name = "react-native-safe-area-context"; + path = "../../node_modules/react-native-safe-area-context"; sourceTree = "<group>"; }; - 399E361168DC15BBA351FDF15B988A20 /* React-Core */ = { - isa = PBXGroup; - children = ( - C33C6F61CDBFDA394DA7D50D55E37F81 /* en.lproj */, - 5BABAA3A876E374DB80E5EE341FF8328 /* CoreModulesHeaders */, - A2EA80D2B861D24F3C4EFFFF75D4A028 /* Default */, - 9F36383D72DBF777DCB4FF1C7E4D0CA0 /* DevSupport */, - D8096B7AEC97A59C7C7D5A5E93C22202 /* Hermes */, - CDEA12D8150F0166590FD46EEE7CA305 /* Pod */, - 7136B12C4957CB04016A9076AF6B7651 /* RCTAnimationHeaders */, - FA808CFB40F601FBA98ACB56E8260884 /* RCTBlobHeaders */, - 4CFF1B77A281FBC35B5E1A2E3DDCD4CC /* RCTImageHeaders */, - C2A30B7BC14C869EC1C303D971779223 /* RCTLinkingHeaders */, - 0B4F336C514F383337AD55993EEFA77B /* RCTNetworkHeaders */, - 40AC56184139D6A75DDD29A9BFC052CE /* RCTSettingsHeaders */, - ADC0180113BDF314524896A2DC7468BA /* RCTTextHeaders */, - 5BE88C47F5FE6B199AAE81DE4BE4EEF0 /* RCTVibrationHeaders */, - 16DF97173707887DEFD155929A3E8141 /* RCTWebSocket */, - 71040A7C01F867C4BBC1C3486A7E176B /* Support Files */, + 3787109CDF46DA83FE0C17CCD01A997F /* Futures */ = { + isa = PBXGroup; + children = ( + 02E76B3039E44E736565839CF613AE10 /* AsymmetricMemoryBarrier.cpp */, + B367A31FC95F7361F2F0277B285EB989 /* AsymmetricMemoryBarrier.h */, + C16A0090D8D00D4BFED6D88CD18B4DD2 /* Async.h */, + B2A1EC0055E423BFA6B6E942F059E186 /* AsyncTimeout.cpp */, + B30D63A627EC586F59161BE38FFC498A /* AsyncTimeout.h */, + 9FE264DC6DA612A4908D1B7682BF366F /* AsyncTrace.cpp */, + 03F6A81651428CF6A0D1B7CDC17AD860 /* AtFork.cpp */, + EA40AD7C921B0D3FF6F18EBF9327BA62 /* AtomicNotification.cpp */, + 1E056EA80C08502FA5C2B3EDE2615AC6 /* AtomicNotification.h */, + FF114CF0CE7C0C6953191EBCF4CBBB38 /* AtomicNotification-inl.h */, + 2109CB5F9ED104223A72C779DFCBD94F /* AtomicRef.h */, + 3B3788F8258C5AFD581368264FDA6EC0 /* AtomicSharedPtr.h */, + 483A424645C643C6F62273D264C9C012 /* AtomicStruct.h */, + AFBE12C4DE3A7ED228FE7E283346DFFB /* AtomicUtil.h */, + 69266AA2F199517E1CE3701554C2D38D /* AtomicUtil-inl.h */, + 34F2A49096DA03691B06EB432BFDD8DD /* AtomicUtils.h */, + 219F95BDC452F054919BE390CA44FAD4 /* Barrier.cpp */, + 412784C7C3A0FA90CA9E2DAC98311092 /* Barrier.h */, + 776E7B2B835457CC2AB52FEE1B8AAC2A /* Baton.h */, + 9376D3DA733EB7A9F52EB85BA7A6D7BF /* BlockingQueue.h */, + 00443FFCCDDF161CD8DFD017A55D4A88 /* CacheLocality.cpp */, + 3000FD46CAF4EBF7A223C354DAFFA0A5 /* CacheLocality.h */, + 71E688AEAE6F6FF30C7DBB6D959B08E6 /* CallOnce.h */, + 0C35B1979695650F734AC54105C3ED8F /* Codel.cpp */, + 5967AC659FA8F442DB8A30E79F49DF90 /* Codel.h */, + E4C02CD52F3ECC48E0FDAB1D374C47E3 /* ConcurrentHashMap.h */, + C2C0B2910A52A3006CF8E3988EE80E94 /* Core.h */, + 4702F8B4394700B876E6EC9AA10B126F /* CoreCachedSharedPtr.h */, + E32E47B2EB301B509BAE594765A2A40C /* CPUThreadPoolExecutor.cpp */, + B5C79F57E46A0E0A2844B65E90A40377 /* CPUThreadPoolExecutor.h */, + 54FBE15BA1D187A4AEFAFA03FEFC9C25 /* Cursor.cpp */, + 57BA2E3DE3BD6E99C21F9BD955EE1E88 /* Cursor.h */, + 8315EC8BE2696659FC483DFE2C5E2F5D /* Cursor-inl.h */, + D4138AB14AC0B59849EEE029BF2AFD4B /* DelayedDestruction.h */, + 48D8B573FAFDCBAEC2E0C9E47D554EF7 /* DelayedDestructionBase.h */, + 6F529978CE6C0E0515FDBA2200333180 /* DistributedMutex.cpp */, + 285331CA47C6E381B537A8A928F0000B /* DistributedMutex.h */, + 4160C448C828C2C631B18EB34826A60B /* DistributedMutex-inl.h */, + 5F74FFA25BD89324C424E5BFB2996D1A /* DistributedMutexSpecializations.h */, + 6D807C14AE957A1545813F8580F2C0A5 /* DrivableExecutor.h */, + CF7EADF7ED40D72F88FA05C09CF843DE /* DynamicBoundedQueue.h */, + DBDF1114FDDCD5D98105C66E3195F985 /* EDFThreadPoolExecutor.cpp */, + 71865B28FEA44BE3816EA4DEEDF67AFD /* EDFThreadPoolExecutor.h */, + 0AB70B3409E908C33138CAB53F67E0D5 /* EventBase.cpp */, + CE974F0ACCF4111A78D5E2921F862F4B /* EventBase.h */, + 65F9A20C18286657B51C804366B3B161 /* EventBaseBackendBase.cpp */, + 228CEDEB544D70320F1FA5497145205B /* EventBaseBackendBase.h */, + C5CCC1E5D273AAD82F90D01B0FAB97B7 /* EventBaseManager.cpp */, + C174102962D3DE782B18DB29175D29D0 /* EventBaseManager.h */, + 9137730D6D9EF23883779E2130ACF74C /* EventHandler.cpp */, + A8AA01B12BD72E9481BDC86B4359358B /* EventHandler.h */, + 79D6A081D3A9465A497EC92A32E90940 /* EventUtil.h */, + 48F05A44C3DE98AD7CC3C95E6DF15BB3 /* ExceptionWrapper.cpp */, + 9C34960654A1BD689460A1875C947358 /* ExecutionObserver.h */, + 6C35E3B8FD85E101ECDD7EEA1F9119D9 /* Executor.cpp */, + 13C67E640DC848233FB232A335CC4D28 /* ExecutorWithPriority.cpp */, + 1FFC9CF165C8A81F5E9A6FA7EA21DDBB /* ExecutorWithPriority.h */, + 4EB838DCA6BEE96C8E8347222F32D6E7 /* ExecutorWithPriority-inl.h */, + CCDEF6DC9158142C2569FC4EEF7A3135 /* FiberIOExecutor.h */, + D5CEF3BE626A0F51048E3A98AD749977 /* Futex.cpp */, + FB2D97A9D8323E2DB472D501306E8578 /* Future.cpp */, + CEE02671D4EA7343C8E882B0DF465236 /* Future.h */, + 4AF7891C1BFB04B8A7DA1BF244602232 /* Future-inl.h */, + BA90AAA853CBF34D0C78AA6018B36724 /* Future-pre.h */, + D401EC1775668C9F237B9E67D6025E9F /* FutureExecutor.h */, + 06B347FA46B79F4E5A2FCB6BD159E2C8 /* FutureSplitter.h */, + 9D1A6CE8093A8BE304A4D57E2D5CC924 /* GlobalExecutor.cpp */, + A9D27B78632B4D950CAC99302388240E /* GlobalExecutor.h */, + F3F2F4373C12768936C270504E041C55 /* GlobalThreadPoolList.cpp */, + 1E1934E14E1F07FEA3A927AD82CD777C /* GlobalThreadPoolList.h */, + 7F06B8E0102E9A6491115E7718C3CFA5 /* Hardware.cpp */, + 616490565B5D75C1FD12828608D07A8F /* Hardware.h */, + CB3E46D1ACB9CD54E60CB3F44E6AD260 /* Hardware.h */, + FC85D8AF9D1575904B9685DF53D41DB5 /* HardwareConcurrency.cpp */, + 9318D8686DCB957CD44C28F18B007542 /* HardwareConcurrency.h */, + 97929816D7EB4B98DE433493E463D493 /* Hazptr.cpp */, + D9A7DFA907DA186A887DEF894D608770 /* Hazptr.h */, + 1DC3B08C2A3EA48E6DAFE3C6E4DF4E0C /* Hazptr-fwd.h */, + 0D91C1EF24F8B3150F8D446611EEF869 /* HazptrDomain.h */, + 773F5BF29EB55A7B72274000B1F32F1A /* HazptrHolder.h */, + 7DF8C92D46016A35A83CB010E642BB0F /* HazptrObj.h */, + 1CC4697D34AA2DDFB79F152435D5329D /* HazptrObjLinked.h */, + 45CD2A50538B4ADE29ED0A92D70B4BD8 /* HazptrRec.h */, + 5FC82E595D591D4B64F4CFE54F774BBC /* HazptrThreadPoolExecutor.cpp */, + DA0891BE7085BF877176C4E68682D374 /* HazptrThreadPoolExecutor.h */, + 9AFA5DF18E6F3D40FB109A02644C62EB /* HazptrThrLocal.h */, + 2BE77D0DA9F67FA097B76993286A416F /* HazptrUtils.h */, + 79793B3AFD85E98B0D47E35C3D48A4E7 /* HHWheelTimer.cpp */, + E6CDEBBD0A515FDA086530130EC3F198 /* HHWheelTimer.h */, + BC0A833D86EBE30F2D3F35AAFCB253EF /* HHWheelTimer-fwd.h */, + 24D84A93DFEE19605EB3EF05B95629E1 /* InlineExecutor.cpp */, + 744121C99DBD70574DF792930B81B772 /* InlineExecutor.h */, + 995C7A8BCB27704A758DEF0332441DAD /* InlineFunctionRef.h */, + D93ACA8B0780F238C78FFAECA4477102 /* IOBuf.cpp */, + E4291BE5D4094204E717CF0508CFAF71 /* IOBuf.h */, + B5B464FB942D06E211A0B48F5C9B02AF /* IOBufQueue.cpp */, + EE68B46045F3D1266490C875E7E436DD /* IOBufQueue.h */, + 5A92FF992EECFACB98A6AAE324DA9864 /* IOExecutor.h */, + 89C656AE8DDF5E63FDEEF5C082CDE4F5 /* IOObjectCache.h */, + 34958578C2D08BED25A9D066D85A48D7 /* IOThreadPoolExecutor.cpp */, + F1C03CC5E39DFB5CD535DBCE5F959EDC /* IOThreadPoolExecutor.h */, + DC2E4B6CAEC8AD28AA4CE3AB6C7982CB /* LifoSem.h */, + 0148745B69D68F8F7CF48F7858879BB3 /* LifoSemMPMCQueue.h */, + 9B4C54262ECC6C05D83CF812166F27C8 /* MallctlHelper.cpp */, + 2DB3761BEDAA5821ADD62458767F79F3 /* ManualExecutor.cpp */, + 1EA6BFAE763CA45256D20AC1C876EAE9 /* ManualExecutor.h */, + 8AC43D079609983066D849416C5A1403 /* ManualTimekeeper.cpp */, + D4E00FFFEE4E93E4614D889757FDD006 /* ManualTimekeeper.h */, + 73B558BEFED5FBA5860D5BC5467ACB51 /* MemoryIdler.cpp */, + 688E8F5E88D5CC006C64A88621FE40AE /* MicroSpinLock.h */, + 15706575B7440D7628B450144A719850 /* NamedThreadFactory.h */, + 89619E54E3FF09F4B7C805485250D150 /* NotificationQueue.h */, + E5812AE9654BC3D45A1CFBAF08286EDA /* ParkingLot.cpp */, + C52C94B0900C21DCE054013A5071B4F3 /* ParkingLot.h */, + A98037ED1EC3C4BD6B05A6FF59336A08 /* PicoSpinLock.h */, + 21054BFDA963CAE53BC6C0C930D1F0F1 /* Portability.h */, + 403EECD2D76FEC9AD50732349E5854CF /* PriorityLifoSemMPMCQueue.h */, + A014BE425C5CBD9DDC7C274146B4321C /* PriorityUnboundedBlockingQueue.h */, + 11B57D9AB31BF88D761590967129678D /* PriorityUnboundedQueueSet.h */, + 1EB6441C46623EFBB74D374B620D6758 /* Promise.h */, + 2EE70142C25E38591140016B1C0031C2 /* Promise-inl.h */, + FC7C8C95530C3414B1CCCB71B37AB0B6 /* ProxyLockable.h */, + 6715A7DB80FD5793EDFA838C19F87158 /* ProxyLockable-inl.h */, + 17709E6A9CCC50ABA08578DF3B215015 /* QueuedImmediateExecutor.cpp */, + 68424E50B4C6668FA714883E0188D11D /* QueuedImmediateExecutor.h */, + D79AC027A1B23F36045E29A37C63DAA1 /* Rcu.cpp */, + 0B9F6D62020F4CE293D91DB00FBEBB56 /* Rcu.h */, + 18B3EBD7535B5948A767680D08D99FAA /* Rcu-inl.h */, + BC121D1EDEBCFC35A54337DD44518B26 /* ReadMostlySharedPtr.h */, + C154CBB7C847660E6A69FC7CDAE35DED /* Request.cpp */, + F1909A2D03F46AA2D6F5572953128631 /* Request.h */, + 343E33008B20D72CFB575CA422825FC7 /* Retrying.h */, + 2D51C38652AE7436C677B0DC14D96F78 /* RWSpinLock.h */, + F3C4D0D2462F12988B951082840298D4 /* SanitizeThread.cpp */, + CD0AE00988D2C3F989A528440752F896 /* SanitizeThread.h */, + 96A3D3EABA6E54D205950E7FBE97DCFD /* SaturatingSemaphore.h */, + 36985CC41AD668DDCE8329112FDF0E03 /* ScheduledExecutor.h */, + 180B2B732D98EF0E53FCC4AD48D7A10D /* SequencedExecutor.h */, + 90886ED3F19323A4ED158C3E18181CD8 /* SerialExecutor.cpp */, + 07273EED1F5B917483CD56BA5AB3295B /* SerialExecutor.h */, + 01F2AAFA56C952F1661E1128EA05303C /* SharedMutex.cpp */, + 2A65D7B932BCE0C2808BB5E03C649E0E /* SharedPromise.h */, + 14FA4AE04F50F603C9098CA23EC1EABA /* SharedPromise-inl.h */, + 6EAEF8CD2447B107397ED36052625E6F /* Singleton.cpp */, + D7738A887BFB896B8399D095EB5585B5 /* SingletonStackTrace.cpp */, + 7ED3EE3653736C321CF15A16803B4FC4 /* SingleWriterFixedHashMap.h */, + FFE019844913A8A8022BC04C00968534 /* Sleeper.h */, + CFA4F2FA3C88A7D35152B22E7D9725B1 /* SmallLocks.h */, + EC02C6E84074EFCF1231C798451567A0 /* SoftRealTimeExecutor.h */, + 89E3169DB4F256D17427041E992B6999 /* Spin.h */, + 2507C973B486611A9285B0B07C570945 /* StaticSingletonManager.cpp */, + B25041660018CCFC686A1BCEBBC6700A /* StaticTracepoint.h */, + C04BDF934280132FD2E9B83D8356207E /* Tearable.h */, + F807E37EF0726DC1414E32115CFDCAD5 /* ThreadCachedInts.h */, + C6A43BB36383DEBCBE5AAC4170CA5153 /* ThreadCachedLists.h */, + B533013C01209F83514298BFEB3D9617 /* ThreadedExecutor.cpp */, + BF48C1FBA27345C7E65E927C1F0C5D4B /* ThreadedExecutor.h */, + F0F8563E9938CC5830771DEEF4DF34A9 /* ThreadFactory.h */, + 323635FF4162DAE7E641FCD906CC1FF3 /* ThreadId.h */, + 650D118DA2A3ED16F6DE7E7E61FA1E9F /* ThreadLocalDetail.cpp */, + 867EB193F8D290E223001EE4A386153A /* ThreadName.cpp */, + 588438EB9BCEE11D33DE837B15C9F05A /* ThreadName.h */, + 819B26C8113598C4B7D8AEF45B07224A /* ThreadPoolExecutor.cpp */, + 37AA5C97E3144FC649F744AF6B84F357 /* ThreadPoolExecutor.h */, + D36AD3EF5E73964B40ACFADCAB874208 /* ThreadWheelTimekeeper.cpp */, + 56B08D226B9BC079AF4E97C5363BBF6A /* ThreadWheelTimekeeper.h */, + 654F6D6BF4D05C60FE527A20451CF793 /* TimedDrivableExecutor.cpp */, + 8FF8D787CE740246DD485EC2B9980630 /* TimedDrivableExecutor.h */, + 20CD2C9813B4017733274E5A18695228 /* TimekeeperScheduledExecutor.cpp */, + 09D6EFDB171D78BA44DC89773C4C4CAF /* TimekeeperScheduledExecutor.h */, + 43706B6B95F90A70C0EB27D0F76F622D /* TimeoutManager.cpp */, + 5B408C6E714917EC3AEA908A60D7D4D0 /* TimeoutManager.h */, + 39C8B8AB0A93F88E925A4908467DAFB3 /* TLRefCount.h */, + C6A7179C49AA739E8E450CCA1979EB56 /* Types.h */, + 68E993A7ADE7EB87E977855544F925C6 /* UnboundedBlockingQueue.h */, + 3E7C236A5DF80F7A8F26A2A730EC81EE /* UnboundedQueue.h */, + 658041429E32DF02374A9C53F349F852 /* Utility.h */, + 2CF250AE6DD1E4E2DE99F4622E838810 /* VirtualEventBase.cpp */, + 33AB3A626BC19570CCB463F5CB4624F7 /* VirtualEventBase.h */, + 2522BC763DC7F90EE753EDEE4FE5C0D9 /* WaitOptions.cpp */, + EB01BFCB1230B86893810B0FA743D369 /* WaitOptions.h */, ); - name = "React-Core"; - path = "../../node_modules/react-native"; + name = Futures; sourceTree = "<group>"; }; - 3A37A5E90C6C412F4E0BA775B67E249F /* Pod */ = { + 3857B42EC08A3489D8EE09E4878DEE1C /* JitsiMeetSDK */ = { isa = PBXGroup; children = ( - BB924E2348F50D4641552CACC27C7A2F /* EXKeepAwake.podspec */, + AE1D061A40F4BD66225E708662A62678 /* Frameworks */, + B8A47245B6C78F62F9247BBCE2CF6C16 /* Support Files */, ); - name = Pod; + name = JitsiMeetSDK; + path = JitsiMeetSDK; sourceTree = "<group>"; }; - 3A51952E40338BFA1F012325F35C9B92 /* Support Files */ = { + 3873EB627B278784E56547B3659A3C2E /* Support Files */ = { isa = PBXGroup; children = ( - E311CA96855FCF8855795BD4CE0AED45 /* rn-extensions-share-dummy.m */, - 6DBC133BD573DB96A2EFAC4EFE1318BC /* rn-extensions-share-prefix.pch */, - BDE5F0AC59BC5BAB36BA4C7B8245D641 /* rn-extensions-share.debug.xcconfig */, - 8909D94BC2491628F567748899BADD31 /* rn-extensions-share.release.xcconfig */, + EBA7D8B578D83D2EA70FD81B5A503184 /* EXWebBrowser-dummy.m */, + 7368A8CB8446AD0FE7337D8819F5CD93 /* EXWebBrowser-prefix.pch */, + 92474C5083F1FF717AB740685222FB9F /* EXWebBrowser.debug.xcconfig */, + 0BFE29C1897C5044A8A9E72DB815F30C /* EXWebBrowser.release.xcconfig */, ); name = "Support Files"; - path = "../../ios/Pods/Target Support Files/rn-extensions-share"; - sourceTree = "<group>"; - }; - 3A5230BB15A79DA55006B811D7814B95 /* ViewManagers */ = { - isa = PBXGroup; - children = ( - EBDFCF84A98A224047685A16A587A47E /* ARTGroupManager.h */, - E2C4F5D506247FD844878A1AA9B5B87E /* ARTGroupManager.m */, - 03617C7B382C83B9380716415C7DC53F /* ARTNodeManager.h */, - A800C3F16DC464A4511CDAE609AFBA34 /* ARTNodeManager.m */, - 5C916787C74604D8FD50FB4D7B25FFDA /* ARTRenderableManager.h */, - 7AED5BBB1861BBE84645A9A7B9670CE9 /* ARTRenderableManager.m */, - 821EFB2AD57FC7AAF6E4807273C20B56 /* ARTShapeManager.h */, - C9A7663B51899E9286FE8EFD38D72255 /* ARTShapeManager.m */, - 0717248847249C2F0906B2AF1AC14BA2 /* ARTSurfaceViewManager.h */, - 048BA257BC45490465B8024434ADA4F9 /* ARTSurfaceViewManager.m */, - 788A40ED01BB50ABD4F04BF4036D602E /* ARTTextManager.h */, - 1EAEEC68C0C4EF5223271B9D61A19D6F /* ARTTextManager.m */, - ); - name = ViewManagers; - path = ios/ViewManagers; + path = "../../../ios/Pods/Target Support Files/EXWebBrowser"; sourceTree = "<group>"; }; - 3B0BEE9EB3FAD1BC4E1F3B77ECF664EF /* Frameworks */ = { + 3A6B7BCDC6DCECCBDCEB1976F6992E1C /* RCTVibrationHeaders */ = { isa = PBXGroup; children = ( - 5A1CA625338CE59842D278D9464912E7 /* FIRAnalyticsConnector.framework */, - EEC665DD4753ABE611DF1D3DB2DE8782 /* FirebaseAnalytics.framework */, + 09329ADBC95266AAE6EBA50B5B8A9A47 /* RCTVibration.h */, + B8F4214C366F610C6CC161D5EF319EE7 /* RCTVibrationPlugins.h */, ); - name = Frameworks; - sourceTree = "<group>"; - }; - 3B5F06B35DD32F9A59054F621F630E47 /* QBImagePickerController */ = { - isa = PBXGroup; - children = ( - 297E3326962EB460F2F3DCCB46B61FDD /* de.lproj */, - 00A792DB181EE87A94B1014D67850B27 /* en.lproj */, - 9AEB5D60F61E5CFCED85D70717DD27A5 /* es.lproj */, - 05FAE5D72DBDBDFEF33497FEB33A3454 /* fr.lproj */, - 1588731ED24E7943B390F4C87491A950 /* ja.lproj */, - E9727559286383AEBBDE40C6EC18F9F5 /* pl.lproj */, - 7799E6AB9741A90186122CF2B9D0146D /* QBAlbumCell.h */, - B02D8D43A8E6786CF62BCF30E24A36D9 /* QBAlbumCell.m */, - F090F061AC5C4B0E1DC3E845757F1542 /* QBAlbumsViewController.h */, - 35D9EBB8F22D3DE7D5E65D8D66CBAADC /* QBAlbumsViewController.m */, - 92CAD975CD7A20E93B55EF4E59090F99 /* QBAssetCell.h */, - 5E798A9318B82BB207DAEBB2D6604A9E /* QBAssetCell.m */, - F5EB7201D728C7DB3F37A71DB6AF6C98 /* QBAssetsViewController.h */, - 0E68C66A69B7E5F622F5B5273FC096A4 /* QBAssetsViewController.m */, - C9A67E3773B8A1005ED03BE3434F1EC5 /* QBCheckmarkView.h */, - 445FC593F30485717EBE305592618FD6 /* QBCheckmarkView.m */, - D20C1F69C8D64CF80267E0043A39E62E /* QBImagePicker.storyboard */, - 7A4E2F3708CA04A758B943E594737114 /* QBImagePickerController.h */, - 269B79E04D74D32BB3857DEFBC2B344E /* QBImagePickerController.m */, - BFEFAFEBF84E9FBD4F8AD032AB419A71 /* QBSlomoIconView.h */, - 7A5058AECCABB9E39123724170D99D66 /* QBSlomoIconView.m */, - 591FA607D74A59DECE40C10AAE8667E7 /* QBVideoIconView.h */, - 4ACD3C341BF3A171077258DD2E353362 /* QBVideoIconView.m */, - 02AB655AA81715AD591B40A32DD7A704 /* QBVideoIndicatorView.h */, - 21A6053EC3D1830C964689171A8B773B /* QBVideoIndicatorView.m */, - C50601436C1024EC64C217FF43FAB96F /* zh-Hans.lproj */, - ); - name = QBImagePickerController; + name = RCTVibrationHeaders; sourceTree = "<group>"; }; - 3B8B1DF98386A9823FE884510BFF7F14 /* Support Files */ = { - isa = PBXGroup; - children = ( - 5EDE4B6188274A04D1D48E9D069863FC /* UMCameraInterface.debug.xcconfig */, - 7E91599FA3BC0029A923484575892EE9 /* UMCameraInterface.release.xcconfig */, + 3AFDF5A57A74C1A2963D0DCA690DA2C5 /* Bugsnag */ = { + isa = PBXGroup; + children = ( + A57488A1DF1FBC162D26AA9A1E49FC7F /* BSG_KSCrashReportWriter.h */, + 7BF8661320B466C1F5A30A9F6C78911D /* Bugsnag.h */, + 48EBD311B6C883948527E87141FD06B9 /* BugsnagApp.h */, + 93F7F55C9FEEF65950585E15EB8E2360 /* BugsnagAppWithState.h */, + 6D06E3BDF0E602210146086EAFB9FD00 /* BugsnagBreadcrumb.h */, + D4379BCDE544B189C14DEA4F7CDC496D /* BugsnagClient.h */, + 284E66D4E54073CC3BE652D34F0741C2 /* BugsnagConfiguration.h */, + 3E3865860E855426CA17A53924AFE4A4 /* BugsnagDevice.h */, + FDDEA29E2F8A04B854CA85687AF9F8C7 /* BugsnagDeviceWithState.h */, + 26E0FC50FEB0CD9CE7BC07494EA95166 /* BugsnagEndpointConfiguration.h */, + 3D7062CBF2A45873E87D49AE1209E874 /* BugsnagError.h */, + 7A63FEB9A47A3240CF00E09EFD4156A2 /* BugsnagErrorTypes.h */, + B3BF1A52461BB6FE59700736C60FB865 /* BugsnagEvent.h */, + EEB2FCC69C421CD84466BFEAD77BAE37 /* BugsnagLastRunInfo.h */, + EEAF50E5A17C4C0526B439E01595A262 /* BugsnagMetadata.h */, + B5EB104F2848D58E4CA4F67A2B166034 /* BugsnagMetadataStore.h */, + 678BC240B1E13FB2EE2A5FD4E1644B5E /* BugsnagPlugin.h */, + B85912FF145CE36B398A5D5381E12159 /* BugsnagSession.h */, + F1F43DC8BBC3CC0811CB67A5C6DF1F90 /* BugsnagStackframe.h */, + 8CCB5F1B268A463563A18DB65A0BDC5F /* BugsnagThread.h */, + 87EE099A2FA7249C71DA0EEFE4D874C6 /* BugsnagUser.h */, ); - name = "Support Files"; - path = "../../../ios/Pods/Target Support Files/UMCameraInterface"; + name = Bugsnag; + path = Bugsnag; sourceTree = "<group>"; }; - 3C14BBE5A6DFBD07A3BFC1B457383596 /* Support Files */ = { + 3C4CBE09F9D5E4F77764513A875EB80E /* Pod */ = { isa = PBXGroup; children = ( - CAFCAA2659951C5F2840A793D96B938F /* FBReactNativeSpec-dummy.m */, - DF2C8B2FED7F52A516FB7033B9AA4253 /* FBReactNativeSpec-prefix.pch */, - 868B8F033FCD7483A5C51ED38B9A065C /* FBReactNativeSpec.debug.xcconfig */, - 85EC70A6AA577F3618C422F6509F6B57 /* FBReactNativeSpec.release.xcconfig */, + 1DCF1DAA9F91BFD401F9EC299B0B2A0C /* UMConstantsInterface.podspec */, ); - name = "Support Files"; - path = "../../../../ios/Pods/Target Support Files/FBReactNativeSpec"; + name = Pod; sourceTree = "<group>"; }; - 3C340826F2D3F6DEC6DDD45CDAE54284 /* FirebaseCoreDiagnostics */ = { - isa = PBXGroup; - children = ( - 99CDE89A9ABDA7BAFFE28A851DB55DB9 /* FIRCoreDiagnostics.m */, - 8CBCC34DEE63E69D64899C43FD54A785 /* FIRCoreDiagnosticsData.h */, - AD6A0F2BBD4B6CB65337D865E0A1505F /* FIRCoreDiagnosticsInterop.h */, - F709182254F371DCB7FC9E4E5AD51402 /* firebasecore.nanopb.c */, - 31F5A89B5ABCFC4ABDCC5D2DE0378269 /* firebasecore.nanopb.h */, - C94D33BADEAB73164A522A3CFAB24B0F /* Support Files */, + 3C9381991647AA592F6C79C02BF2FD9F /* Base */ = { + isa = PBXGroup; + children = ( + CAA3D0AD0975E79689071935C41A3566 /* RCTAssert.h */, + E1A29F8E06F7F92E4BA68304B65854A9 /* RCTAssert.m */, + D0FE38529652F813FF0712E9EFF2E516 /* RCTBridge.h */, + 02CE0DDBE38304A04A05DEF7F5FE3CAD /* RCTBridge.m */, + 6EA3FEF89667AC31C1E43DF8B780C049 /* RCTBridge+Private.h */, + A27BB64DAAB9E2500C9B4F5777EF93F0 /* RCTBridgeDelegate.h */, + AFAD65AA13985A28ADC98BD8C5068EB6 /* RCTBridgeMethod.h */, + 58189553A81DAB14B80317C7FAD3B6D4 /* RCTBridgeModule.h */, + 348AFB8AFACAB195A75CC30BF7090541 /* RCTBundleURLProvider.h */, + A58C153E6AC53F4E9FDEAB3D815ABA1B /* RCTBundleURLProvider.mm */, + CE092D003C0D1363E7125323AFCB0371 /* RCTComponentEvent.h */, + E14F97DFBA6EDB24AE0BA2664AEA03E7 /* RCTComponentEvent.m */, + DC9B06C8AD7A8CB32E98F5C17BE1548B /* RCTConstants.h */, + 89FB1F638C4BAA32C456717DD7F9D227 /* RCTConstants.m */, + CE19C469714E90E6046C7BB53DFECFFD /* RCTConvert.h */, + FC7BA2995D23707B039023ED3FBD9309 /* RCTConvert.m */, + B9A94B9B943F4851C13E70DE5CCE9242 /* RCTCxxConvert.h */, + C909406C508DE8B5CA6D433D712E8F7B /* RCTCxxConvert.m */, + D166197618128ABC3A4BC88F932FB2F5 /* RCTDefines.h */, + 215A5D0D0D87FB5454CB21FDE836220D /* RCTDisplayLink.h */, + 031ACA320F67E575B42F3B356C10AFB0 /* RCTDisplayLink.m */, + 14DD3A5C68C0DED534D63AB8DA1C88F7 /* RCTErrorCustomizer.h */, + A941B251FAB14916870F851B8A0C2BA4 /* RCTErrorInfo.h */, + 5E89A01F44F0E3C6CCD8601982962088 /* RCTErrorInfo.m */, + 2D518A14B7415A7E01F104C00B1616C7 /* RCTEventDispatcher.m */, + B902097AB0865E942278A788B4ECADA1 /* RCTEventDispatcherProtocol.h */, + AF10CBD12AA62234E58F17BC712BB165 /* RCTFrameUpdate.h */, + FEDAA1DC549280FA07BBD1645592665A /* RCTFrameUpdate.m */, + 8C7A4D417310DD6EE03A27AC111D31A3 /* RCTImageSource.h */, + 39405A7559E4A2177D7CDBD659A12B11 /* RCTImageSource.m */, + B519BB6A04C3B100F3C318A6441C6E97 /* RCTInvalidating.h */, + CC5A512255584A64F4972E8E168758BB /* RCTJavaScriptExecutor.h */, + A2552646544B387A939585DEDDDF36EE /* RCTJavaScriptLoader.h */, + 7D866E1BD0268B812BE334AEF790C8C2 /* RCTJavaScriptLoader.mm */, + 8E382E89EF807FFA314A1A75455F298C /* RCTJSInvokerModule.h */, + 31636AA1F5453AE72920298B25D2DE9E /* RCTJSScriptLoaderModule.h */, + 42F7B7B97204360BD8D3B5F9379FC544 /* RCTJSStackFrame.h */, + 6B3BE86881CEE4BF2D33147B66892FCA /* RCTJSStackFrame.m */, + BA8051693341AD55637B5003B37AEA80 /* RCTKeyCommands.h */, + 3577215D16A392470FA31E62AB5B8636 /* RCTKeyCommands.m */, + E1CCD557F7181B3B0B5A3051A3CE40E6 /* RCTLog.h */, + 61174B28A33647277F3659768E52A29B /* RCTLog.mm */, + 154D22A5231ACC6F73F3381D7E5C43C5 /* RCTManagedPointer.h */, + DDB70A193A635C8BCEC6DB0D9B9A98A2 /* RCTManagedPointer.mm */, + 156DDD2C3EAE413EE657D5680BDD0EB5 /* RCTModuleData.h */, + 67D05A18B709D6E8245B2D69BBAFFE09 /* RCTModuleData.mm */, + E84CD843B3717222F5638748ABAAACC4 /* RCTModuleMethod.h */, + 88607196F9F59E4FB83FF232C7A6D42B /* RCTModuleMethod.mm */, + 01766B817B74F69DDE794A8716F2BEFD /* RCTMultipartDataTask.h */, + DF85DCBBC868D6D6912BB276E4493F91 /* RCTMultipartDataTask.m */, + 7BC86ACC82C5EA9516C25D89CD0450B1 /* RCTMultipartStreamReader.h */, + B4E384DEEE8C9A58FF86C72B61FC57BF /* RCTMultipartStreamReader.m */, + 35200401D9A9A266DED2D8F5DAEA0733 /* RCTNullability.h */, + 97564B076C7DB08D2A2B8BA13FEB42A3 /* RCTParserUtils.h */, + EB918D28A13F814594FF66347950AD00 /* RCTParserUtils.m */, + 1D7A130AD6D7EFE6B8F448CCB137D3DD /* RCTPerformanceLogger.h */, + 508987E7D16D45673A96292834D1A4D8 /* RCTPerformanceLogger.m */, + 5837A01194E96B3A00B4B14C1EA7EB32 /* RCTRedBoxSetEnabled.h */, + 989CE4BB67CB2751A57CC3D5BA309B0F /* RCTRedBoxSetEnabled.m */, + 5A47CF01E148CBB4EBE9ACFF3AE56AE5 /* RCTReloadCommand.h */, + FDE0DDE655FE59C18B987D220FCBF80E /* RCTReloadCommand.m */, + CC17FC05F12D85955D1E11D8DBE50B44 /* RCTRootContentView.h */, + 93A8BE9D0FEAE0D5377DB25DCCFC8D1D /* RCTRootContentView.m */, + 193D2ADCED8B78496708FBA2E5C135CD /* RCTRootView.h */, + 50B195BF3B7621AB3736102451AB19AC /* RCTRootView.m */, + 9EF1056B23A9B94F36664ED877D70BF7 /* RCTRootViewDelegate.h */, + 1C048DC831E92AF829D40260E0EE5707 /* RCTRootViewInternal.h */, + 5CF09EAFEBBB8AEFCDFC5C6F7320778C /* RCTTouchEvent.h */, + C5CE4B90C03F50DAB4A4F404465C3636 /* RCTTouchEvent.m */, + BE4BF2B90A39CF8DBE4933FC5F6E71E1 /* RCTTouchHandler.h */, + E87D76941C99A09E1FB0A8226001CC70 /* RCTTouchHandler.m */, + 69F49AD1BC7A034C14092E962BD289F3 /* RCTURLRequestDelegate.h */, + 9960632C404B1ECAF125F6460DCA1C9A /* RCTURLRequestHandler.h */, + FBEC5B8A9770701E345EA771EFD754F3 /* RCTUtils.h */, + A4F52189F0AF31689D4C70B36C44D1A9 /* RCTUtils.m */, + D842E174A97F11F09A4DE8DACF7BE73A /* RCTUtilsUIOverride.h */, + E7995DC0480B1067A3A2F82B55A71617 /* RCTUtilsUIOverride.m */, + B18DD986F43F3181EBB8DA82ADF5FC77 /* RCTVersion.h */, + CB2565E5F040DD7273876E4CA97FE315 /* RCTVersion.m */, + 8C369B8A95598DD04AF7432E31EEA407 /* RCTWeakProxy.h */, + 94D7E4CC5B1798F6DDEF6B1D65AD374F /* RCTWeakProxy.m */, + 3DBE0CA0272F905E0EAD0555077E6CE8 /* Surface */, ); - name = FirebaseCoreDiagnostics; - path = FirebaseCoreDiagnostics; + name = Base; + path = React/Base; sourceTree = "<group>"; }; - 3CF6EBCA1E9E52895E565BD6FB14FA5B /* VirtualText */ = { + 3D1403CC59E007D9484B621FDBABFB60 /* Support Files */ = { isa = PBXGroup; children = ( - 478DF8C445CCDF77B39FA9B32149D61C /* RCTVirtualTextShadowView.h */, - 0E66BD9275AF1DCFAE284A18EDB3DB96 /* RCTVirtualTextViewManager.h */, + DA84AA5EDB8540934AFDE0056B486425 /* react-native-jitsi-meet-dummy.m */, + B52F292ACF154504BA0E6CA8BEE36F15 /* react-native-jitsi-meet-prefix.pch */, + EDA7F183AB9627613CBA33BB54C3CE2B /* react-native-jitsi-meet.debug.xcconfig */, + 4A25B203EB3A6BB4B7E0E273F0C17B7C /* react-native-jitsi-meet.release.xcconfig */, ); - name = VirtualText; - path = Libraries/Text/VirtualText; + name = "Support Files"; + path = "../../ios/Pods/Target Support Files/react-native-jitsi-meet"; sourceTree = "<group>"; }; - 3ECF7641B16FCA7AEC743CA0985A1BD2 /* react-native-document-picker */ = { + 3D8F0A5F2B0AE98F5AC330D6F35A8593 /* Support Files */ = { isa = PBXGroup; children = ( - C9F3D0F0276B02303042AD8CEDE218BF /* RNDocumentPicker.h */, - 4150B1022A1C4EA48976C1918DB2DA4D /* RNDocumentPicker.m */, - 1BF0FAC162CBE9BEEB6BD29935DD335B /* Pod */, - FA03BA6B3DBC87C9DA543B61A41D2B04 /* Support Files */, + 3D340443D5745B25B61BBCF80E8C29BF /* Flipper-PeerTalk-dummy.m */, + FB819972EAF59971982DDB28824F9E13 /* Flipper-PeerTalk-prefix.pch */, + 2AF1C3DA0EA9BFA496EE8D24D7FF1031 /* Flipper-PeerTalk.debug.xcconfig */, + B056643EEAA87C1FF8FF181C98E8A5A3 /* Flipper-PeerTalk.release.xcconfig */, ); - name = "react-native-document-picker"; - path = "../../node_modules/react-native-document-picker"; + name = "Support Files"; + path = "../Target Support Files/Flipper-PeerTalk"; sourceTree = "<group>"; }; - 3F630BF050CA9C4050D4D842FC79957E /* ReactNativeART */ = { - isa = PBXGroup; - children = ( - B301AAB908F0277D9B59DFA5796189EB /* ARTCGFloatArray.h */, - C4152E0A282E1646120955713F62D908 /* ARTContainer.h */, - 480AA8188F9EA701921324A062433032 /* ARTGroup.h */, - 4E6FD3789AE32FF2039C5FC657EAA0A4 /* ARTGroup.m */, - 0FAD6BB44C5FCB7E7D3E10085572B5B0 /* ARTNode.h */, - 5C7493E37DFFDB0A29EA930EBD0F25C2 /* ARTNode.m */, - C6CFB06B15368338718A38E06350FC81 /* ARTRenderable.h */, - 7C0B43A991C621D8375536967E7F702D /* ARTRenderable.m */, - EC51DD54CD0EED9344522EB545B298B3 /* ARTShadow.h */, - 372D48682B9E2DF058C7841B584D9BC1 /* ARTShape.h */, - 077F86B7F0AB320485085AB7FE12E1DE /* ARTShape.m */, - 10E8EE79A039D0EAA20868FC060EDE3C /* ARTSurfaceView.h */, - 81228D55716D17AA0DE748C8160BB301 /* ARTSurfaceView.m */, - 00D7029CDF36815B074ED319C2F18BE3 /* ARTText.h */, - 64087F3B75718DA47431935A6FF88F39 /* ARTText.m */, - 58EC4AF8CC887E52459F1B6E3EC87A2F /* ARTTextFrame.h */, - 5A8E6865E8B1705CA95C0ED9EB913458 /* RCTConvert+ART.h */, - 68486419F43F8281CD207605D2E14272 /* RCTConvert+ART.m */, - 76CAC2D2FD5770A1824626F10F1F57FC /* Brushes */, - F665DD37085CF39892F6815455739FCF /* Pod */, - B572E39F5023CA0D41271F4F8E929B5B /* Support Files */, - 3A5230BB15A79DA55006B811D7814B95 /* ViewManagers */, + 3DBA0B49AE081C12A76C0BF872F2B0FC /* Yoga */ = { + isa = PBXGroup; + children = ( + 7945497DE8901950337D8E1CE00AC5EE /* BitUtils.h */, + B34DD17F4E32CC762E39A207CBD45B1F /* CompactValue.h */, + 438F9C3779F6BDA03A38EC647FD69CC2 /* log.cpp */, + B7F4364BDBBBC33E6CAD9E672693E774 /* log.h */, + 23D2EC83CB8129047181B09268B00526 /* Utils.cpp */, + 8B3B29EC8C2E4212C5941E52D6D74A3A /* Utils.h */, + 11EF47C53C4E679048BC90E967DEA688 /* YGConfig.cpp */, + 752D547F033FFFB3943C51C11C104ECF /* YGConfig.h */, + A01A7B4009B157C9F5A11FD709E3ACC0 /* YGEnums.cpp */, + C59908684CB5C37A6E10F285C5AEDA6A /* YGEnums.h */, + 3756272A35EDD26FBF5BB28751ED866A /* YGFloatOptional.h */, + 6CA2FCDDF6A9BF7347C1402992259552 /* YGLayout.cpp */, + CD6CF0B30CD04C100AD26A0857C5B53C /* YGLayout.h */, + 9767E8B1CE2B3E52386A6752C7982703 /* YGMacros.h */, + DCDA4E7345D70E01B95518BAC48043C2 /* YGNode.cpp */, + 2CA1D57BA399573DFF508AE3AD994B96 /* YGNode.h */, + 31E91C55845E195172F9EC2487D1EC84 /* YGNodePrint.cpp */, + 9762DD58E41F3AE1276FEF73934D751F /* YGNodePrint.h */, + 14808E51F8F8A3F84D5CFE8C99751382 /* YGStyle.cpp */, + 06B25885B5B7649C2548FCE36F209555 /* YGStyle.h */, + CC292892402129582C4504C141967A9F /* YGValue.cpp */, + D738BCAB7F79BC193091F33A4DE06B44 /* YGValue.h */, + 94D00C9DCBF32A0BDA44BBD4083BD70E /* Yoga.cpp */, + B4E4B99D6878885DE3CB3CFDFA415FA5 /* Yoga.h */, + EFB1B434B0478286A13F53815B9C66F3 /* Yoga-internal.h */, + CDF800B08DAA34320191F71A8446C666 /* event */, + 96727B1A1F865D987DEEE73A363F5BC9 /* internal */, + 0D5E0ED848823C4A9CF4732DBBB9A3AD /* Pod */, + 5897B0F092B0D6954EBE29B988524465 /* Support Files */, ); - name = ReactNativeART; - path = "../../node_modules/@react-native-community/art"; + name = Yoga; + path = "../../node_modules/react-native/ReactCommon/yoga"; sourceTree = "<group>"; }; - 3F68AF716FB9A41D57E83991D632C6C2 /* RNConfigReader */ = { + 3DBE0CA0272F905E0EAD0555077E6CE8 /* Surface */ = { isa = PBXGroup; children = ( - 61966A99342D60B517BD347F8A86DA49 /* RNConfigReader.h */, - 6EC09334D862F611D8B61F433B6C8440 /* RNConfigReader.m */, - 551D8FB324C29D51DB7D1925EBEE2DC5 /* Pod */, - 862F7B0A41DD6B161675A6E6B7B61144 /* RNConfigReader.xcodeproj */, - 4DD12DDE7AC34A6D988F09A82A6CC482 /* RNConfigReader.xcworkspace */, - 4858F62A4DE166A773F6DCBC4EDB067B /* Support Files */, + 40C47DF61E35F4793300494752C3D210 /* RCTSurface.h */, + 06B9F2E38CB833CB416F49333DCD7B8C /* RCTSurface.mm */, + 634657D9DD5D3C5D17F98FB447F0EB10 /* RCTSurfaceDelegate.h */, + 32C7CA9FEE5440BE6511B1DD5DC25A37 /* RCTSurfaceProtocol.h */, + 1FDFDB4CE3ECC7AC06B4F575248473D6 /* RCTSurfaceRootShadowView.h */, + A2CBC79D0EF11C29C0C619CDF9311FDF /* RCTSurfaceRootShadowView.m */, + 4886B5D5B38A14525A2E22C9C9E0B877 /* RCTSurfaceRootShadowViewDelegate.h */, + 12CAACA147F3FE2825C7E083D3FAC507 /* RCTSurfaceRootView.h */, + 01470023B303C56FCE2DB25EA4A0A414 /* RCTSurfaceRootView.mm */, + DF75627473938CFD636AEA4D64C5EE54 /* RCTSurfaceStage.h */, + 31DA104A7568FEFC8319F0AD7495BE6D /* RCTSurfaceStage.m */, + C36B6A7DA9E95014AADD74A5CD021257 /* RCTSurfaceView.h */, + 58ED28EE57F5C3B60B54690D86E46850 /* RCTSurfaceView.mm */, + 483F8E42C9BEC85E9A2A759A9A894DE3 /* RCTSurfaceView+Internal.h */, + D6A08C9B6A5E2B7798616622B131E47D /* SurfaceHostingView */, ); - name = RNConfigReader; - path = "../../node_modules/react-native-config-reader"; + name = Surface; + path = Surface; sourceTree = "<group>"; }; - 3F7C81F7BCA12A87FB2D45E47B302091 /* Pod */ = { + 3E265653095F89AF93EFA591793E2327 /* Pod */ = { isa = PBXGroup; children = ( - B4085A0F7918181A1D30B9BC6816F89B /* React-RCTLinking.podspec */, + 304D08E37E09551099A582B49AF384FD /* React-RCTNetwork.podspec */, ); name = Pod; sourceTree = "<group>"; }; - 3F8260685653CC7D726E07C5C6BBC587 /* Handlers */ = { - isa = PBXGroup; - children = ( - D0B9B3241560309851012EDF6E8A3626 /* RNFlingHandler.h */, - 59BD0C07D24524D4C340E46EC4907F53 /* RNFlingHandler.m */, - 209F29716FAF00EE6C3A8047B39A532A /* RNForceTouchHandler.h */, - ADF844E92090E13A94B7FFED33503E01 /* RNForceTouchHandler.m */, - 60A8A8253558AB307ED8E84CF4F5D614 /* RNLongPressHandler.h */, - 07A975EBBEF16BAA2DD5A684DF560E5B /* RNLongPressHandler.m */, - FE3BF3728F1CB1F893F7BFC06E6505EC /* RNNativeViewHandler.h */, - E64D6F2518426A503477914FC7324C80 /* RNNativeViewHandler.m */, - D4C7960CE956C5F384C6FCFE3EF90FF5 /* RNPanHandler.h */, - 56BCA2B97E1DAE73AA56E72BEEFB6722 /* RNPanHandler.m */, - B2ECBA9C7F58B36347D49D2C42DC9E92 /* RNPinchHandler.h */, - FBCC9D8F5D3463434F12152F53AD744A /* RNPinchHandler.m */, - 9805FAF985C740CD5AF04BB3DC67F701 /* RNRotationHandler.h */, - 5A89A78A49C5BA532B42B922603F10D5 /* RNRotationHandler.m */, - 903A7619FDE7ED53437A19C410F5B823 /* RNTapHandler.h */, - 1275FBF2FBD9C7995AA9987864CA1174 /* RNTapHandler.m */, - ); - name = Handlers; - path = ios/Handlers; - sourceTree = "<group>"; - }; - 400A0006842DBA7536C33ED4D5829FEB /* Support Files */ = { - isa = PBXGroup; - children = ( - 5AE33E6B0FBB3B12DA4E53484838DA32 /* react-native-appearance-dummy.m */, - F93297EBA8996FF25D53F9E5C941A5A3 /* react-native-appearance-prefix.pch */, - 27E48D41D14E4E75865F8FD09A45346B /* react-native-appearance.debug.xcconfig */, - 6BC844546A49F881F76425F68A1F936E /* react-native-appearance.release.xcconfig */, - ); - name = "Support Files"; - path = "../../ios/Pods/Target Support Files/react-native-appearance"; - sourceTree = "<group>"; - }; - 40AC56184139D6A75DDD29A9BFC052CE /* RCTSettingsHeaders */ = { + 3F1FBB1675D4376015CACF3A2EE1841A /* Pod */ = { isa = PBXGroup; children = ( - 6588EE64A2769BC2FE5EC0F6D78CD8E4 /* RCTSettingsManager.h */, - AA33C72486C653056728F07308087B0D /* RCTSettingsPlugins.h */, + 3BF00140766541362C02FE5E79012436 /* RCTTypeSafety.podspec */, ); - name = RCTSettingsHeaders; + name = Pod; sourceTree = "<group>"; }; - 40F5C52C1A0E439D528F17D8BB7F5429 /* Services */ = { + 3F477476614E2E18DCD4F5750F3AB790 /* ScrollView */ = { isa = PBXGroup; children = ( - FF9B1705147C4A4C0497F3D38501F86C /* UMReactFontManager.h */, - 35E8349DDFB19341CFB6AF34F3E9C974 /* UMReactFontManager.m */, - 81095CC27AB0AD6D943702F4AAED8A59 /* UMReactLogHandler.h */, - DFF170F26E49AF34B2AED8CAC632BA14 /* UMReactLogHandler.m */, - 2995DF92AA3FBAEA5B1D8A964592AFC5 /* UMReactNativeAdapter.h */, - 4FD65F73976A789DD9400A46AC219377 /* UMReactNativeAdapter.m */, - 38566BD58F1A1BD25F8A4793D6740999 /* UMReactNativeEventEmitter.h */, - 4535D92010F9CAB039FDCFF9CD6BA233 /* UMReactNativeEventEmitter.m */, + F187605B680E0AC816088473ED8A6B8A /* RCTScrollableProtocol.h */, + E16948EBAFBF296FF310AAC7FBE3D843 /* RCTScrollContentShadowView.h */, + 4A465F49F85319A835359BE1BD80394A /* RCTScrollContentShadowView.m */, + 66D7CD4D3A3A5E7B98BB29538DD00B04 /* RCTScrollContentView.h */, + B6320D872BAB5CE92F32C50664C9FAE1 /* RCTScrollContentView.m */, + 2D82F8AD0C5FFA93020AC88F7B9DE1DE /* RCTScrollContentViewManager.h */, + C12207B25B4906F505A12EC8D6966B6B /* RCTScrollContentViewManager.m */, + 14598FCDA7590A69056BCAF77CC5C78C /* RCTScrollEvent.h */, + 48C31898E70111242D31300C57B41592 /* RCTScrollEvent.m */, + 8339D7F1F705F604B8E9B6D320962F8A /* RCTScrollView.h */, + 5FE632E11891141E1F9FEB4E7C3C3094 /* RCTScrollView.m */, + 19C03714E1CFB1CE5B3485C6DA8FF0D4 /* RCTScrollViewManager.h */, + E3E4EF97A59C1231D48A36AD639EE20D /* RCTScrollViewManager.m */, ); - name = Services; - path = UMReactNativeAdapter/Services; + name = ScrollView; + path = ScrollView; sourceTree = "<group>"; }; - 416E8EF9EBB0C2E5A393C3CE6DFBD1B3 /* Support Files */ = { + 3F83E118F6A615F0BA65E9653698B1FA /* Support Files */ = { isa = PBXGroup; children = ( - 9F198B4D94F74E5EB473430661ECBF52 /* react-native-restart-dummy.m */, - BF926A855355608FCE60EEDBF74D78E2 /* react-native-restart-prefix.pch */, - 8AA2A7AA72B24124B829115293D735E6 /* react-native-restart.debug.xcconfig */, - 78B4B36C13100D30E53040F5DBA07C93 /* react-native-restart.release.xcconfig */, + B57FF3B52257A1FD93CAFF861156C813 /* UMTaskManagerInterface.debug.xcconfig */, + DF0EBE8F42C9993C9C93029480BBF012 /* UMTaskManagerInterface.release.xcconfig */, ); name = "Support Files"; - path = "../../ios/Pods/Target Support Files/react-native-restart"; + path = "../../../ios/Pods/Target Support Files/UMTaskManagerInterface"; sourceTree = "<group>"; }; - 417E190998E86BEA8DCFFEFE376B3B3E /* Pod */ = { + 3FA637B723073B598A0782878D06105E /* UMModuleRegistry */ = { isa = PBXGroup; children = ( - 129E379454FA7C014949A5AB2C96C229 /* LICENSE */, - 760C480A9FF3DF129FE571D562011BC1 /* README.md */, - F2D42952D771D6847FB7EE54F104C408 /* RNBootSplash.podspec */, + F3165E5051CA7C643DDB125447F37120 /* UMModuleRegistry.h */, + B4681F304686A817A9869BAF480C5CA0 /* UMModuleRegistry.m */, + 6A6E7FEF56C865C3E93762F434D9E7D2 /* UMModuleRegistryDelegate.h */, ); - name = Pod; + name = UMModuleRegistry; + path = UMCore/UMModuleRegistry; sourceTree = "<group>"; }; - 438FB989D257A5781B3F2133C4867DF2 /* Pod */ = { + 400DD1D8399F24EEE07F58F4C509AE33 /* Pod */ = { isa = PBXGroup; children = ( - 430D3FDF8D298AD145FDF3A90FD69493 /* LICENSE */, - BA4B0E81EF9BF74DB565EB8D5A64184A /* react-native-appearance.podspec */, - 804615896A1BBBB7B8BA5D29291F8864 /* README.md */, + 42C48944D46CB7824BD189A80DFCD8D9 /* LICENSE */, + 2C8F209FFE8EB78F2B12E9E90E605B81 /* react-native-netinfo.podspec */, + 491CD68B832FDF4FDCF19475E6257212 /* README.md */, ); name = Pod; sourceTree = "<group>"; }; - 43E56E8FC0D1FD1417476BC28E3F73D1 /* Support Files */ = { + 4069EFDF213FF92300B0E7E49787FEE6 /* Pod */ = { isa = PBXGroup; children = ( - EFD4EBBD38CDFD28C3A24C71E03FB0D2 /* React-jsiexecutor-dummy.m */, - 876151ECB586864624FAF9EE49CA3D76 /* React-jsiexecutor-prefix.pch */, - B5FC7F17ABCDE32FBB838064E95987E3 /* React-jsiexecutor.debug.xcconfig */, - 0E24F4B867825B723C02E2C2EDF698D8 /* React-jsiexecutor.release.xcconfig */, + 1E999BB3A94F4C3C8DE6C9F51EB1064C /* ReactNativeUiLib.podspec */, ); - name = "Support Files"; - path = "../../../../ios/Pods/Target Support Files/React-jsiexecutor"; + name = Pod; sourceTree = "<group>"; }; - 443035F3C3FB5B8DE480E9FC38A1B786 /* Support Files */ = { + 41A61C2BCDBF7705BDA6A9B3F15F9B6A /* Delivery */ = { isa = PBXGroup; children = ( - E28A2805C79CA4D8B140FB3487A2714D /* RNFBAnalytics-dummy.m */, - 62F8007FC792903E650CF2C9E6DCF5C4 /* RNFBAnalytics-prefix.pch */, - 6B51ED28BE9F80874D2FED1984B9BD21 /* RNFBAnalytics.debug.xcconfig */, - 01277E6EA0D313D5068182BBB84B9E98 /* RNFBAnalytics.release.xcconfig */, + 9065431250E40827CDAF45747568F67A /* BSGConnectivity.h */, + 793D0DEA208373B43465480286979A7D /* BSGConnectivity.m */, + 3DFE58DC280C24354C89ED8581F2AE58 /* BSGEventUploader.h */, + 649EDF8FC7D597517AC77AC387A9988B /* BSGEventUploader.m */, + C77AE054E6C98B2867295BD1D1F00451 /* BSGEventUploadFileOperation.h */, + D360CDBB3F44D031ECD8095EC7D2DA6B /* BSGEventUploadFileOperation.m */, + 0BECBBF1D7639FF3BEDA01B7F7A8D053 /* BSGEventUploadKSCrashReportOperation.h */, + BFBBB4AF1B39739BA1EE28615B12873F /* BSGEventUploadKSCrashReportOperation.m */, + 2319748C30CD0CE60C14C11F1F4099C1 /* BSGEventUploadObjectOperation.h */, + 449670A175F67D16EF2471FDD5F80337 /* BSGEventUploadObjectOperation.m */, + 1629DCD89C80CC971CAEA172CE89D77A /* BSGEventUploadOperation.h */, + 98E2830DD301E0C3482CFFB5AD445B65 /* BSGEventUploadOperation.m */, + 80F8C51152A88F8E310C2F937FC02D1E /* BugsnagApiClient.h */, + 66074927E6539E29BBA0ED4F00318A9E /* BugsnagApiClient.m */, + EAAD84A5D28E911B8134B69981F3F2C2 /* BugsnagSessionTrackingApiClient.h */, + A15E024E81E4B35210810C7A2A05232C /* BugsnagSessionTrackingApiClient.m */, ); - name = "Support Files"; - path = "../../../ios/Pods/Target Support Files/RNFBAnalytics"; + name = Delivery; + path = Delivery; sourceTree = "<group>"; }; - 45936C54D08E5A57C991B0222E4E9BEF /* Pod */ = { + 41E7F562A33E643AAB2F12AE16AB645D /* KeyCommands */ = { isa = PBXGroup; children = ( - 2ACB1DD9B5C3CE4961BF64D0BABEF146 /* LICENSE */, - A260E94609877FF65B233EE6D71362FB /* react-native-cookies.podspec */, - BC1E496EFDBEBAD5DF0D5A4E7A903EC3 /* README.md */, + 1B8FC75898BE387DE90BBEF2A78DD45F /* RCTKeyCommandConstants.h */, + 4F86D2F0E17B58BEE60783F6389F01F3 /* RCTKeyCommandConstants.m */, + 19E232523E363F855E72D201E7A8E37C /* RCTKeyCommandsManager.h */, + 765541A8AB33A938F1A82C90EE625733 /* RCTKeyCommandsManager.m */, + 21E32A20651A361D31852E9F75F05665 /* Pod */, + 60612FD22EEFCE40165D8C0C0C7A5FE4 /* Support Files */, ); - name = Pod; + name = KeyCommands; + path = "../../node_modules/react-native-keycommands"; sourceTree = "<group>"; }; - 4858F62A4DE166A773F6DCBC4EDB067B /* Support Files */ = { - isa = PBXGroup; - children = ( - 520BB052543E92220A00A5375AC4F2A9 /* RNConfigReader-dummy.m */, - E6247092A3A7D4453BA51D4C8EB6FA36 /* RNConfigReader-prefix.pch */, - 96241B9F1CFBD84D1ACCFE24CA7634CF /* RNConfigReader.debug.xcconfig */, - 4A94AB5BC9695876728A55E9BC8E5E72 /* RNConfigReader.release.xcconfig */, + 42BEBC79EB22E520303EF690D8604BC4 /* FirebaseCrashlytics */ = { + isa = PBXGroup; + children = ( + 02E47D705E5C2C051ECC606009A45B16 /* crashlytics.nanopb.c */, + B9EA2BFF71FC61037E85472DC246B382 /* crashlytics.nanopb.h */, + F5C4E0D1C6DB2B953954178AE8925AC2 /* dwarf.h */, + 32A511EC977AD0BCB49CEA879D8A1055 /* FIRAEvent.h */, + F62408E36F62BECBE6226DF96670A02D /* FIRAEvent+Internal.h */, + 4544125EE98D84583B44B0914EDC9E8C /* FIRAEvent+Internal.m */, + EABFEF26A3742B4D20A91E9C3DFF9FE3 /* FIRAnalyticsInterop.h */, + 2D2A898A3EA4970135FC50DAF5813F26 /* FIRAnalyticsInteropListener.h */, + 1542535B316655E0CAA2115661BDEC04 /* FIRAppInternal.h */, + 4597FB90204FAE8ED591532A95E0A588 /* FIRAValue.h */, + 8FCC1DF98D8D4892FEE7981E8C1C51BC /* FIRCLSAllocate.c */, + E56D2743944F33EEACBFD17834DF29B6 /* FIRCLSAllocate.h */, + 7F9693DB8B96C131B911B0816AF4EAB7 /* FIRCLSApplication.h */, + 7EF389B42AB085E5B091E9300E955B80 /* FIRCLSApplication.m */, + 424F10EC967B6C380103489098DDF958 /* FIRCLSApplicationIdentifierModel.h */, + 7C86A3794C8EB182B65BBEEBDD2E91C5 /* FIRCLSApplicationIdentifierModel.m */, + 265B08F6FA86271950C3F41CED5C0EF8 /* FIRCLSAsyncOperation.h */, + E5CD9A4A9B17CBD64EAF74A0668ED407 /* FIRCLSAsyncOperation.m */, + 0049C0BE5C128F7EA0EC0991B9DBD9CC /* FIRCLSAsyncOperation_Private.h */, + 2C86E588F197D77BAD6FA658CD7591C5 /* FIRCLSBinaryImage.h */, + B424E6895C5689421DCACF865CF69CF3 /* FIRCLSBinaryImage.m */, + DDDC0DDD07B123DEEA383C75BAA64CA6 /* FIRCLSByteUtility.h */, + DD27B446E08664EF31F0CFB66BC3578C /* FIRCLSByteUtility.m */, + 82FD72CF6BE7239E867031CA2A5CDB4B /* FIRCLSCodeMapping.h */, + A10972E529A6C2808B08DC7C481B6269 /* FIRCLSCodeMapping.m */, + FC26680BEC1F8F093322A2729CF67C77 /* FIRCLSCompactUnwind.c */, + 39514F362C2622FBF4F9344250F93731 /* FIRCLSCompactUnwind.h */, + 59FC09B88591434507CC1AB2FDB224F1 /* FIRCLSCompactUnwind_Private.h */, + 5A7260818D23202F237A776AC5EF9A37 /* FIRCLSCompoundOperation.h */, + F6D58787CF9C02ADEC238464A9EEF2CD /* FIRCLSCompoundOperation.m */, + CB7FF62BABFBB4886F29B70EEE27FDAC /* FIRCLSConstants.h */, + 6D7CA1E307063F03E9CAEE3145E5FA9F /* FIRCLSConstants.m */, + C9A2DF75FB35957CAFD0A894B60E521A /* FIRCLSContext.h */, + 715007B42B09D8542AC25815072B43BB /* FIRCLSContext.m */, + 0F656B99CDE6A4B18486ACC0CB00726B /* FIRCLSCrashedMarkerFile.c */, + D5FACD49A2D051595D62C927DA9FFDFB /* FIRCLSCrashedMarkerFile.h */, + FFF4C8DB6F8F4C1F921CFA18E1626774 /* FIRCLSDataCollectionArbiter.h */, + 5D541543B3E5D49492432F7DBE174E34 /* FIRCLSDataCollectionArbiter.m */, + 8A1784689596DE6BE297AAC0C0775A4E /* FIRCLSDataCollectionToken.h */, + ADD6216FDE061903E534DD598E79DDA1 /* FIRCLSDataCollectionToken.m */, + F6C6B4E0355CC1484A7FD00EBDA99622 /* FIRCLSDataParsing.c */, + F8DEE4D76290DC1C1FDE7E486F7F1862 /* FIRCLSDataParsing.h */, + 509E2E32FB93F2EFADFFE8840EE60358 /* FIRCLSDefines.h */, + 2AB1F4E090C24BBDDB2D3261096B9A37 /* FIRCLSDemangleOperation.h */, + 8FBB84EA1937A72F9BB88533A2D71AE9 /* FIRCLSDemangleOperation.mm */, + 3AD4F747F7528B663EBEC800817BC8C5 /* FIRCLSDownloadAndSaveSettingsOperation.h */, + CF82A4E77B9640A6213D6DEDBD251B47 /* FIRCLSDownloadAndSaveSettingsOperation.m */, + 1F2E9CE19D7C85E3104D06BB9BAD3EFB /* FIRCLSdSYM.h */, + 7B53AC5D4920E9E7B81B0D7B85003B6F /* FIRCLSdSYM.m */, + 0B19F8491F3710791740972EE008C422 /* FIRCLSDwarfExpressionMachine.c */, + 9D687684730A33CC3373C2FB4D94F6ED /* FIRCLSDwarfExpressionMachine.h */, + B61146E3EE6273B1702590326BB87205 /* FIRCLSDwarfUnwind.c */, + 3E3C445DD362E006552ED9B94020C8E1 /* FIRCLSDwarfUnwind.h */, + 797374D8F25FA861C276B5A2409232B8 /* FIRCLSDwarfUnwindRegisters.h */, + E939F2E1F58D724AC907BB671CC49047 /* FIRCLSException.h */, + E0875825C7C1BA3530CBD3E7E54E6296 /* FIRCLSException.mm */, + 80FC216FC9B275DA01858715421E8073 /* FIRCLSExecutionIdentifierModel.h */, + 7E04EDC4EBE5CE7420C0769CB5A27E35 /* FIRCLSExecutionIdentifierModel.m */, + 7A3FFDA97B0F4B7B422659094703968A /* FIRCLSFABAsyncOperation.h */, + D6A0958D442C7ED7922F3B3CA4AB56D1 /* FIRCLSFABAsyncOperation.m */, + BC5A8EB8C175BB7177BC9EDFC785A348 /* FIRCLSFABAsyncOperation_Private.h */, + 6D9429D70EC70845FFAF70C32303F3B4 /* FIRCLSFABHost.h */, + 98277B8A184BC8C047CE83E5FC4F83F7 /* FIRCLSFABHost.m */, + 30628451A5793A471F0D4170CFACBA3D /* FIRCLSFABNetworkClient.h */, + 8FFBB874C46CEA50E77139029650AB86 /* FIRCLSFABNetworkClient.m */, + B51092D2F569AE8D17ACEEC01B46DC3C /* FIRCLSFCRAnalytics.h */, + 876EBA8CB774461F4DF92A66C46C4478 /* FIRCLSFCRAnalytics.m */, + CD2B52679D03A6D86CB575504386A4C9 /* FIRCLSFeatures.h */, + 2E9B02BCEB081D8C4A064ADA354C79CD /* FIRCLSFile.h */, + CBC29039A8B61CBE95D13E9B7FABAE07 /* FIRCLSFile.m */, + 338E51C7292251B49D327914AB09E2FE /* FIRCLSFileManager.h */, + 3C8E21899D97ACD85858531A8C82D092 /* FIRCLSFileManager.m */, + B6325E804BC4483D7A43FA4964AA1B54 /* FIRCLSGlobals.h */, + 092A59B0825956A4A19571C2B83804ED /* FIRCLSHandler.h */, + 1F1435941A1E7FCF0BA13968468F6641 /* FIRCLSHandler.m */, + 75AFB0A1AC15FD822DBF35ECCA7C47C2 /* FIRCLSHost.h */, + 928332B87BD69A8EC4038001F223248D /* FIRCLSHost.m */, + B8943F0EDDB176A73456D9B22DDBC978 /* FIRCLSInstallIdentifierModel.h */, + 03FEDA48A5B565815A323313603FF44B /* FIRCLSInstallIdentifierModel.m */, + 006596CDE3AA5B4D1DCE9F03201E0F34 /* FIRCLSInternalLogging.c */, + 03299B9950D7DE641F1EB45A3B5AC7FF /* FIRCLSInternalLogging.h */, + 18F36F9B70BC0D51553EACBD420A2ECA /* FIRCLSInternalReport.h */, + E7FA7EE95BE4A304050E55C74AC667B8 /* FIRCLSInternalReport.m */, + A977CF3BA76F162374A0F4762F5BDE58 /* FIRCLSLogger.h */, + E4E47BC976C96EFCCAC054D03EE06784 /* FIRCLSLogger.m */, + A56C587DBDC4B48E9F5CFF0193226010 /* FIRCLSMachException.c */, + 3D5ADCD328BE2EA66010C79CABADA29F /* FIRCLSMachException.h */, + 38E8AA73BA78784B368978C9A1A16C35 /* FIRCLSMachO.h */, + 1512FEFD3A4E2B4C25021CB37A1CD913 /* FIRCLSMachO.m */, + CB11113B67FAB5106E09D71F8C5C8A15 /* FIRCLSMachOBinary.h */, + 1705B8BBFC70BBD8D6FB6EDD10903FF8 /* FIRCLSMachOBinary.m */, + 30C5EFCAA7C6CE7C31E738D159F7C9FE /* FIRCLSMachOSlice.h */, + 1A197B590039D6E16FE10EA16E6DEFAE /* FIRCLSMachOSlice.m */, + BD94D174AF2F42552D523C7512ACF60D /* FIRCLSMultipartMimeStreamEncoder.h */, + 8B6866C798B95F624F633B93873652D3 /* FIRCLSMultipartMimeStreamEncoder.m */, + F4409C0FB2CCA739DA7E9F19D29A86DB /* FIRCLSNetworkClient.h */, + 85B346A386483FBE901C171E2EC342F5 /* FIRCLSNetworkClient.m */, + 9E139D4F482DC617373FEB481D027CD4 /* FIRCLSNetworkOperation.h */, + 6DE3BC602794B7B014C4F2205BF94D7B /* FIRCLSNetworkOperation.m */, + 84F9ACFD0FB94E6C1932AEC5F8062C35 /* FIRCLSNetworkResponseHandler.h */, + F97078FCF30CC35CA7715F874B527C7D /* FIRCLSNetworkResponseHandler.m */, + 59F4136A3156CB0C7F9E63466095582E /* FIRCLSOnboardingOperation.h */, + 3BB0FBC8A491BED5B6BA79B426C8E822 /* FIRCLSOnboardingOperation.m */, + 5046672D5CD2E489583B344B69E16C33 /* FIRCLSOperation.h */, + 12DCF98B7E6F60B84F88FCCB4F531BDC /* FIRCLSPackageReportOperation.h */, + 901AACE639312BF5DE86D58D45064E77 /* FIRCLSPackageReportOperation.m */, + E0BB57D21ED84CE263E1CE65E9576113 /* FIRCLSProcess.c */, + 29F73B11296A1A175659C31CA2D81316 /* FIRCLSProcess.h */, + B63F79830273A3DF0E8D709BA0816775 /* FIRCLSProcessReportOperation.h */, + 7C227E6920522A87C4A95E4F39C53459 /* FIRCLSProcessReportOperation.m */, + 4BE58038AF42A4F6D6602E7C7E4641EE /* FIRCLSProfiling.c */, + F82646B926187FE9E372C29E964FB043 /* FIRCLSProfiling.h */, + F455595C7B8188AE4C46D5F4CC159DA9 /* FIRCLSRecordApplication.h */, + 0B180A6F6802A7A61E6F91452DE30BD0 /* FIRCLSRecordApplication.m */, + 2AB62E7244F26DDB1D626582636F2903 /* FIRCLSRecordBase.h */, + 710B93B6279FA34175A5EC56071595E3 /* FIRCLSRecordBase.m */, + F3C1F85D975715828845F12903D106E6 /* FIRCLSRecordHost.h */, + 7F0FC52B7B180D41845578EA52B405DC /* FIRCLSRecordHost.m */, + BB9E443E24D77E23B856F91F909B75FF /* FIRCLSRecordIdentity.h */, + C1F41A61435A7C7E40E9077594036A96 /* FIRCLSRecordIdentity.m */, + BDEF27D34211AF9452A90A2A483FED77 /* FIRCLSReport.h */, + A95740C9DB44B2E16ED1692FC13DA2B0 /* FIRCLSReport.m */, + 7BF737847D1F4D5B207FFF25A89E7EC4 /* FIRCLSReport_Private.h */, + 4616D34D955F7E108D277F6B23866EDF /* FIRCLSReportAdapter.h */, + 5CDE8127D0212CE4F7A8CEFCD5795C68 /* FIRCLSReportAdapter.m */, + 4A38C01DAE4D449991D0E6CD498F2D02 /* FIRCLSReportAdapter_Private.h */, + CF6B335CA6A24C0E34CE1178B73074ED /* FIRCLSReportManager.h */, + 4BAEAF056D6389DB6B5F2D45F2D7F6C0 /* FIRCLSReportManager.m */, + 724AF510DD707C57FABF46C9E00AE4AA /* FIRCLSReportManager_Private.h */, + 8BB71BC185A6662B732F211659D872C7 /* FIRCLSReportUploader.h */, + B544B95949BACC91F99B62CEBE1DC6EA /* FIRCLSReportUploader.m */, + 33905510EBCB8B4262AF53502D0AF47E /* FIRCLSReportUploader_Private.h */, + 2933E807002CCC6FBBAB3658EC0EBE2B /* FIRCLSSerializeSymbolicatedFramesOperation.h */, + FF4A54CF894C8947A9E4D75D0738ACA3 /* FIRCLSSerializeSymbolicatedFramesOperation.m */, + 7E3BB59D0E486762F3F329E8C18CEF27 /* FIRCLSSettings.h */, + 0F34C62FBEEA16631A2D9F75D2C44842 /* FIRCLSSettings.m */, + 4AD8CCD5A61D1B93376751FCC26B447E /* FIRCLSSettingsOnboardingManager.h */, + EB86772559D8B25FB62D762875B4E1A5 /* FIRCLSSettingsOnboardingManager.m */, + 1AC00B115DA4151054C6109CF6F127F7 /* FIRCLSSignal.c */, + 1536F69CC6F86DAD1A696AF309BFCD75 /* FIRCLSSignal.h */, + EA1248254BDC1A7EEA87E7847F61350B /* FIRCLSSymbolicationOperation.h */, + 8830792B869914D4B37C64CD3D5FABC9 /* FIRCLSSymbolicationOperation.m */, + E4E3AE5EDA62C95B4A4110C93361957C /* FIRCLSSymbolResolver.h */, + 07B37CA28D908A0CB36555375A78DC3F /* FIRCLSSymbolResolver.m */, + E6438A9D92D63FE37954A555CF17180E /* FIRCLSThreadArrayOperation.h */, + 51CBD072695636FFFB70286D87493724 /* FIRCLSThreadArrayOperation.m */, + 2DCDA8B91A186FA200056205DA2477FB /* FIRCLSThreadState.c */, + 54D6FE91E066A49CEB31577D89B62768 /* FIRCLSThreadState.h */, + 4EB6D979FF618406692B3FE66D4CF555 /* FIRCLSUnwind.c */, + 2D2808D13D549D1FCB4043E612A36333 /* FIRCLSUnwind.h */, + 3C052948D50C90ACD6BFBD01F0337ED9 /* FIRCLSUnwind_arch.h */, + E1713A5588F8D04B6CA83CD72D7E26D0 /* FIRCLSUnwind_arm.c */, + 491C5D7F7B430ED97EF27D740A624972 /* FIRCLSUnwind_x86.c */, + FBB7125ADFCF78448D0F36274B52C84F /* FIRCLSUnwind_x86.h */, + 121DD1F09E8CD3C53B0E6E1715834DE8 /* FIRCLSURLBuilder.h */, + CDA342781653B4E9B3978FB641B98241 /* FIRCLSURLBuilder.m */, + C1CDE33B7060CA6268E5BB09D6C3D9C1 /* FIRCLSUserDefaults.h */, + 61E24D7397697438414F8AB8AE0D2B37 /* FIRCLSUserDefaults.m */, + 5869C5B02869FD5705BE60AD7EE16C70 /* FIRCLSUserDefaults_private.h */, + CEEE6393BE39442384D5C5561A4317CE /* FIRCLSUserLogging.h */, + CDCEFBBEF34B5CC0DA26AE9BA7512A0B /* FIRCLSUserLogging.m */, + 8D54FE0E7DBE4A49017A481F042BDC24 /* FIRCLSUtility.h */, + 44FA5CD654181862693CEFDF5E39EBEA /* FIRCLSUtility.m */, + ECC13EFAFE42DDD8635067D4053E26F7 /* FIRCLSUUID.h */, + 97EACA374DAEF6EBE6E4B85CC24B0FF1 /* FIRCLSUUID.m */, + 6E51AA750CB397ABC6E205F52BBDCA26 /* FIRComponent.h */, + DA36EFB8A253B32980DA920615833F66 /* FIRComponentContainer.h */, + 6C8BCA9A00B4A3BC15885EB9772FD3D2 /* FIRComponentType.h */, + 7A18B4EF573945FD212FE4535C4A34A2 /* FIRCoreDiagnosticsConnector.h */, + 82240936E8F34134BB053A71108A1882 /* FIRCrashlytics.h */, + 7974700B3A80DF1A0E727661E17D7D80 /* FIRCrashlytics.m */, + B8787063496C665D382D5BDE7DDDC67D /* FIRDependency.h */, + B7DFCF17D31149459375D9C1A6FF8CDC /* FirebaseCoreInternal.h */, + 58872FFB8DFE0488B0E139AEF233ADD0 /* FirebaseCrashlytics.h */, + DCF2641ACC996C44C1D2622BF8727B1E /* FirebaseInstallationsInternal.h */, + 858A91D35A289C13652BDBFA8EA801DB /* FIRErrorCode.h */, + 63A4C477F2CB2B884266342A8B16406A /* FIRErrors.h */, + A46459009EC9B77CB665A02B2D67C745 /* FIRExceptionModel.h */, + BD12D0A2749451844C41B7DBE9F9F28C /* FIRExceptionModel.m */, + 13EF5D78F1055C12E86C76B87215666F /* FIRExceptionModel_Private.h */, + A9C73AABAB83395DEABC45D6983F91D7 /* FIRHeartbeatInfo.h */, + 878D7EB845B053BF5D08C8D05A2E3B35 /* FIRInteropEventNames.h */, + E7139B81C2E757EA8FD47CE93F0CE719 /* FIRInteropParameterNames.h */, + 9287B76C2C9B47239AC1E73D2BBD8149 /* FIRLibrary.h */, + 9C2D09C5E5F72095A6969052F76A009C /* FIRLogger.h */, + 44CEFBA0D4AAB91C0DFEF42E28238C78 /* FIROptionsInternal.h */, + 764B48474BD6B94786EA33F556A80ED0 /* FIRStackFrame.h */, + 848941C0343F09003EFA9E3BD5A3E5D7 /* FIRStackFrame.m */, + F5C6295C545DD73F3BA7592066FC1F44 /* FIRStackFrame_Private.h */, + DE83F965334111733A182914FB049851 /* GDTCORDirectorySizeTracker.h */, + E5463DB18FF3651C69C2B5E057281EAF /* GoogleDataTransportInternal.h */, + 6534F713CC51B933103019CC376A84C0 /* Support Files */, ); - name = "Support Files"; - path = "../../ios/Pods/Target Support Files/RNConfigReader"; + name = FirebaseCrashlytics; + path = FirebaseCrashlytics; sourceTree = "<group>"; }; - 49744E113C4C3F1B442B605185725E55 /* Support Files */ = { + 4302F6E45343B523EB7CD942575C7057 /* Support Files */ = { isa = PBXGroup; children = ( - 1FDBA1499FAC5D38003778610D1DFAC8 /* react-native-mmkv-storage-dummy.m */, - 42042C1A71F24D6A33EB035C65A1C078 /* react-native-mmkv-storage-prefix.pch */, - 82746B65ADB874980B643F7D6A9EACA4 /* react-native-mmkv-storage.debug.xcconfig */, - 0696B943EDC4A311B847984997C71865 /* react-native-mmkv-storage.release.xcconfig */, + FA122F1129D1B618CC5406E1B8773EDC /* react-native-mmkv-storage-dummy.m */, + CD617F1246C514E430DB87BB8CA2FC58 /* react-native-mmkv-storage-prefix.pch */, + F2B3121FD47DE568876878DCEC983EA6 /* react-native-mmkv-storage.debug.xcconfig */, + DCD831ABC23B3D5C9971C822E49110B4 /* react-native-mmkv-storage.release.xcconfig */, ); name = "Support Files"; path = "../../ios/Pods/Target Support Files/react-native-mmkv-storage"; sourceTree = "<group>"; }; - 4A1EFD2802870441B25F49F44AA2EB92 /* SafeAreaView */ = { - isa = PBXGroup; - children = ( - CB67C93D6401F212FFF1E5EE7D0106B9 /* RCTSafeAreaShadowView.h */, - C546EB9A217A4633A47E8498CCE72DC9 /* RCTSafeAreaShadowView.m */, - B7789F4DD5CB94A03DCE8958303BAB32 /* RCTSafeAreaView.h */, - 642047E681784F26A48404E6D40A6ABD /* RCTSafeAreaView.m */, - 199B4D9418A060D8E6D101491598E0C2 /* RCTSafeAreaViewLocalData.h */, - CE6D47E068EE3C3F710FDCC6A5571833 /* RCTSafeAreaViewLocalData.m */, - 35C462873D8556B83C39A330E577312B /* RCTSafeAreaViewManager.h */, - 94DB5F79A325AE3462321F5B421B3675 /* RCTSafeAreaViewManager.m */, - ); - name = SafeAreaView; - path = SafeAreaView; - sourceTree = "<group>"; - }; - 4AF77E31B0B3576820370F5FD7E7B525 /* ReactCommon */ = { - isa = PBXGroup; - children = ( - D83D43E1AE745172DA695D03C2BE1296 /* Support Files */, - 7A5A2B0D92DE68189B5F7747D1FE9852 /* turbomodule */, - ); - name = ReactCommon; - path = "../../node_modules/react-native/ReactCommon"; - sourceTree = "<group>"; - }; - 4B5D8ADF78472A169FC25BD72175E0DB /* VirtualText */ = { + 4354198A2323C0EBC1C8419D2D12F036 /* Support Files */ = { isa = PBXGroup; children = ( - 8F2791169A71E8FC83E4BD3E327C47D1 /* RCTVirtualTextShadowView.m */, - CD173BD5FA0D4297EBFCFC4693B7BEEA /* RCTVirtualTextViewManager.m */, + C2686D2DACF39830370970E397E22833 /* react-native-document-picker-dummy.m */, + AFB2718456535A9D9DE11EA260D9A65E /* react-native-document-picker-prefix.pch */, + 8FFF7AC74A2B4F478C5F2AD660D630E0 /* react-native-document-picker.debug.xcconfig */, + 41AE131494EC50667A17FD1C382326FB /* react-native-document-picker.release.xcconfig */, ); - name = VirtualText; - path = VirtualText; + name = "Support Files"; + path = "../../ios/Pods/Target Support Files/react-native-document-picker"; sourceTree = "<group>"; }; - 4B889D187A787995BC1E3E8B5153BC28 /* BaseText */ = { + 43DC8433B5D799477F7998EA57BCBB69 /* RNCPicker */ = { isa = PBXGroup; children = ( - 157D66F636D88398C690DA2EA50D5955 /* RCTBaseTextShadowView.m */, - CDD860D6ECAD3BA713BD4D1F7DC63507 /* RCTBaseTextViewManager.m */, + 93074C0BB58E9B56D2043AA01605C9BC /* RNCPicker.h */, + 62B2DB8A414D5FB0E633D83AC91D5846 /* RNCPicker.m */, + 81FB001C7716874E02062E3A23DC5118 /* RNCPickerManager.h */, + 3040490EE2A603BE12175008A7297813 /* RNCPickerManager.m */, + 26113A1861798C188909D30D241D8FFD /* Pod */, + D78C9FBACA2EBCBDB08E5B4C26D3824E /* Support Files */, ); - name = BaseText; - path = BaseText; + name = RNCPicker; + path = "../../node_modules/@react-native-community/picker"; sourceTree = "<group>"; }; - 4C499D2B639960FBADB21694E1737622 /* Inspector */ = { + 442B67A53DFC8D2A74494DC32517018D /* Support Files */ = { isa = PBXGroup; children = ( - 2A1622AFF8166C9BC2526873A6A31D07 /* RCTInspector.h */, - B47797D3D59C968EF82764FEA01FCDB7 /* RCTInspector.mm */, - 0EBF0C796FE60145654DE7FB23E26B32 /* RCTInspectorPackagerConnection.h */, - F47828A6ACE63FA46BE094630CED9783 /* RCTInspectorPackagerConnection.m */, - ); - name = Inspector; - path = React/Inspector; - sourceTree = "<group>"; - }; - 4CFF1B77A281FBC35B5E1A2E3DDCD4CC /* RCTImageHeaders */ = { - isa = PBXGroup; - children = ( - F5BABE80C6537FD2891E8B6959445D25 /* RCTAnimatedImage.h */, - D78EEF985308C79B8FBBEB68CCDDFABD /* RCTDisplayWeakRefreshable.h */, - 9BA3DE51E17B480EAFB1A0B28D2E7932 /* RCTGIFImageDecoder.h */, - 87F3ACB4AF1829993FE242559CF76FCA /* RCTImageBlurUtils.h */, - 54C3DB7CB50F66858BBCF53041CFFA71 /* RCTImageCache.h */, - 67A418ACC80C140583AE0AC6CFFA5D8B /* RCTImageDataDecoder.h */, - 379AAF32EBE1F942AD81C1C42FA1E080 /* RCTImageEditingManager.h */, - CB338AADDEBFFCE1DAE9153E8BD54079 /* RCTImageLoader.h */, - A35A7DE406B8FAE3EB7579B1AD3ACF49 /* RCTImageLoaderLoggable.h */, - E6C7448F6E74F1B3741E80C1407DB9AA /* RCTImageLoaderProtocol.h */, - 356DA93D46F12173410FCFE8AA805443 /* RCTImageLoaderWithAttributionProtocol.h */, - 6E320D828713423902FF9737F8D8B1DF /* RCTImagePlugins.h */, - D61D7C469D560268F734071F40F27401 /* RCTImageShadowView.h */, - 792FFD4B7461BB989E9DBD562EAB13A6 /* RCTImageStoreManager.h */, - 4DA6CCA1909E5F67EFB196C7F3C14F29 /* RCTImageURLLoader.h */, - 9A61FEF3F9A3004BC803F9B58AF3184B /* RCTImageURLLoaderWithAttribution.h */, - D5E55A4EAD292CC5AB8F7832A3894AAB /* RCTImageUtils.h */, - 53EA4730DD9F53694EA672E36F0054AF /* RCTImageView.h */, - F96FEC904C3C515E17B3C84FE3C2C8D5 /* RCTImageViewManager.h */, - 13B7AA56ECC8D13805741C6ACCC28520 /* RCTLocalAssetImageLoader.h */, - 0D260A02AF49F7EB75B4F755BE42C822 /* RCTResizeMode.h */, - 6CD0239177EF8EE0D59AB9A4F5F3C1F4 /* RCTUIImageViewAnimated.h */, + 117449E9749A82693065455EEB39A766 /* RNVectorIcons-dummy.m */, + BDF53C8A66D836C5E886A2B6E40DE531 /* RNVectorIcons-prefix.pch */, + F6BDB030D490C6730F2CBA19D1722AD6 /* RNVectorIcons.debug.xcconfig */, + C757E685B784FC1257DA5BB2CCC3C276 /* RNVectorIcons.release.xcconfig */, ); - name = RCTImageHeaders; + name = "Support Files"; + path = "../../ios/Pods/Target Support Files/RNVectorIcons"; sourceTree = "<group>"; }; - 4D6B9E82B00C4C54E90E2F9CADB473BE /* Pod */ = { + 4500EE753C21425A88664C035C1736AE /* UMModuleRegistryAdapter */ = { isa = PBXGroup; children = ( - 90C78CFE1BD35726BCF58E8406235BD2 /* LICENSE */, - EF592042EFCC79A50F2FD7710BCF2557 /* README.md */, - 8E39A1E9B0FE2BEAF1E900754F72BF8B /* RNImageCropPicker.podspec */, + CFD5CD332C25FA50FADC4490C8D3F493 /* UMModuleRegistryAdapter.h */, + E52C581DD54A2EE36E349C1977879E10 /* UMModuleRegistryAdapter.m */, + F26DCDB073067708AD7C60F110CA061B /* UMModuleRegistryHolderReactModule.h */, + 66677E39F319BF04D6A888B1BF319131 /* UMModuleRegistryHolderReactModule.m */, + C51F1A10A0787000C867688F83C16D3C /* UMViewManagerAdapterClassesRegistry.h */, + 87A1D7E27F251CB29B909F0DB4FA2B9F /* UMViewManagerAdapterClassesRegistry.m */, ); - name = Pod; + name = UMModuleRegistryAdapter; + path = UMReactNativeAdapter/UMModuleRegistryAdapter; sourceTree = "<group>"; }; - 4DD12DDE7AC34A6D988F09A82A6CC482 /* RNConfigReader.xcworkspace */ = { + 45B9D47400028318B76EB2F91C739A88 /* Brushes */ = { isa = PBXGroup; children = ( - C27CA06AF20B21BE9B9CF6351CF39A10 /* contents.xcworkspacedata */, + F2BEE07964007060837060C4054614E4 /* ARTBrush.h */, + 58386FEBED776C08ADA276F70C8BCC83 /* ARTBrush.m */, + 061AE9077C7DE3A8143E392D2A7D4066 /* ARTLinearGradient.h */, + A3C80F84A1E1D39ACC873D973D635786 /* ARTLinearGradient.m */, + 12E755A0777B889C32BD2BD50CA56C58 /* ARTPattern.h */, + ABE7E447FE54B287BAD4DA779F117D2A /* ARTPattern.m */, + EC880A8128CFF41BA6E644C55E0FD307 /* ARTRadialGradient.h */, + FACACF017AF83855282D16388F775642 /* ARTRadialGradient.m */, + ACBAEA79CA733659BB119586B0A39EAA /* ARTSolidColor.h */, + 0213B2F9E22E92E5BAA6AE198A55BB24 /* ARTSolidColor.m */, ); - name = RNConfigReader.xcworkspace; - path = ios/RNConfigReader.xcworkspace; + name = Brushes; + path = ios/Brushes; sourceTree = "<group>"; }; - 4E043185C96E22A32248074EBD1E03B8 /* Support Files */ = { + 462E7E3E86577B9033AA8C9E85211BD1 /* Filters */ = { isa = PBXGroup; children = ( - 6E0689640886583CF0A244F816A2FD5B /* EXLocalAuthentication-dummy.m */, - C272F0D9672149E05A955551304CD02F /* EXLocalAuthentication-prefix.pch */, - F9368D22615B059953CDCF32754A57A7 /* EXLocalAuthentication.debug.xcconfig */, - 3244965E9202F6697911B38410249411 /* EXLocalAuthentication.release.xcconfig */, + 697814417C338E1616C26D60D8843D88 /* BSGOnErrorSentBlock.h */, ); - name = "Support Files"; - path = "../../../ios/Pods/Target Support Files/EXLocalAuthentication"; + name = Filters; + path = Filters; sourceTree = "<group>"; }; - 4EDCC714192024D6D9BF2E59778B78A1 /* React */ = { + 48394C1AC5EF92D2DF40B0577F5A9FDF /* RCTWebSocket */ = { isa = PBXGroup; children = ( - 61C26AC849C5315C52B01F3F22F0EB52 /* Pod */, - 6FF1AAAF8C8C3F82DA12A57302173231 /* Support Files */, + 1D44D0157D99893E5B3E1A565EAEBF7C /* RCTReconnectingWebSocket.h */, + C675EE07F0452E7FDC6693E3AC1BAC01 /* RCTReconnectingWebSocket.m */, + 6F0151729363AA82CD2A1FD179D23A78 /* RCTSRWebSocket.h */, + B289B481D490E9AB326ABEB0BFB6B9AB /* RCTSRWebSocket.m */, ); - name = React; - path = "../../node_modules/react-native"; + name = RCTWebSocket; sourceTree = "<group>"; }; - 4EF256C4B1CE85BAF08CF47C3F20CA8D /* Logger */ = { + 498D48B8C222C696EB749620A1002B07 /* CxxModule */ = { isa = PBXGroup; children = ( - BC1B59FA7B55DBD9453B1CDEE536A836 /* GULLogger.h */, - 97443E49951B2C31C21D22A095CED0A6 /* GULLogger.m */, - 1B02821B6E81E20C9CC6052F61C621C4 /* GULLoggerLevel.h */, + 79AF205F6686F71CCAAE0138FB96710F /* DispatchMessageQueueThread.h */, + E74B2390826FB2794D4E9D6F68330E82 /* RCTCxxMethod.h */, + F9BDCF485B7E596A53C18814ABABD023 /* RCTCxxMethod.mm */, + 588845CEA50EEB3FDE0FFB7E9B12FA19 /* RCTCxxModule.h */, + D1AE227B022F913F13000625C0D13D1C /* RCTCxxModule.mm */, + BC0FC7699EFE844E79726F9437573E88 /* RCTCxxUtils.h */, + 17323B5A1FCF01A9DEA3C31A29F96404 /* RCTCxxUtils.mm */, + C32393DDB51A0B195B34B4535A256CB4 /* RCTNativeModule.h */, + 12D8CF80050CCE366B66E7B319A5076C /* RCTNativeModule.mm */, ); - name = Logger; + name = CxxModule; + path = React/CxxModule; sourceTree = "<group>"; }; - 526400428A066077655519992F2112DE /* Environment */ = { + 4AD902E8BC6F826DC1812D17EBA0AF72 /* FBReactNativeSpec */ = { isa = PBXGroup; children = ( - F4894891D2683756B59E4356267E11C3 /* GULAppEnvironmentUtil.h */, - 4A2B792B80ED688B169D906DB78A6E39 /* GULAppEnvironmentUtil.m */, - 7E5ED61984AC5D0734B2848B826BA9D7 /* GULHeartbeatDateStorage.h */, - E815744FFA2710E1B7D0A4B6EED45E59 /* GULHeartbeatDateStorage.m */, - AE1F66FF6A4EA4EFE43EADA7E95E849A /* GULKeychainStorage.h */, - C8029B6FA3BDC64E572449C131DB4F9A /* GULKeychainStorage.m */, - 90BCAF1AC58CAB9DA6A0307E93957A3D /* GULKeychainUtils.h */, - 8D413F8DFA6A6911681D61472C0DC9EF /* GULKeychainUtils.m */, - 69461254E0F0D3F1C43476F6235680E3 /* GULSecureCoding.h */, - 4CFB0570DCDE324E6BE1532D8CF0082E /* GULSecureCoding.m */, + F76EE1C98010B48017F99E9415B09082 /* FBReactNativeSpec.h */, + E9AFEA1F08D4C6B6779A89305C7B8C04 /* FBReactNativeSpec-generated.mm */, + 865EA80FF72905C411500F19015725CC /* Pod */, + 08AB72E1B8EC2DFECAB3DB7700372052 /* Support Files */, ); - name = Environment; + name = FBReactNativeSpec; + path = "../../node_modules/react-native/React/FBReactNativeSpec"; sourceTree = "<group>"; }; - 52F2A33587AF755FD188094DA4F22D31 /* Drivers */ = { + 4BB835F1A7AA1EADEA154A08940D6C38 /* Pod */ = { isa = PBXGroup; children = ( - 18FFB6B8E3B72F4BA864DD9530CC7A6F /* RCTAnimationDriver.h */, - 8AA602DCBEEDEA49A0A583EEDCF0ACFC /* RCTDecayAnimation.h */, - B7BAE7EC72A94B862129150291E3A12E /* RCTEventAnimation.h */, - 316A90574F4767203686A7B623BD08DF /* RCTFrameAnimation.h */, - AB338D3DE7775EC9A3A7A5C6C8EF8871 /* RCTSpringAnimation.h */, + 88E65AF4784A3341EFB299F0A78B0352 /* LICENSE */, + A60FE3A6A0342AEFFCF275920D57F014 /* react-native-cookies.podspec */, + 0A5A0AA28436D13E729BD269D80AA69B /* README.md */, ); - name = Drivers; - path = Libraries/NativeAnimation/Drivers; + name = Pod; sourceTree = "<group>"; }; - 53DCBAA1138E63235F18EB007CD16B9D /* Support Files */ = { + 4C7ED8F2EE9FFB912B5A60956D2BECB5 /* Pod */ = { isa = PBXGroup; children = ( - 4E43DDC445CD2E8A4C9B98D3A5864896 /* react-native-background-timer-dummy.m */, - AADBF22EE399BD2B3827742C13A250C0 /* react-native-background-timer-prefix.pch */, - 18EBC9E9AA518CA89C3B0494781387BA /* react-native-background-timer.debug.xcconfig */, - 8563B2FC4FB842CB858FC49BF425377E /* react-native-background-timer.release.xcconfig */, + 758230C16349B3A4BA4EFE9783B9F247 /* React-jsiexecutor.podspec */, ); - name = "Support Files"; - path = "../../ios/Pods/Target Support Files/react-native-background-timer"; + name = Pod; sourceTree = "<group>"; }; - 53DFB52417A78862E432498F0F33CEFC /* EXWebBrowser */ = { + 4CE09526823CC9E2455A69D84B6C399A /* UMImageLoaderInterface */ = { isa = PBXGroup; children = ( - BD74D03C3EB4CC221C70AE0F7F2DB24E /* EXWebBrowser.h */, - DD639A12C46710EA1B2D9A2641AF3122 /* EXWebBrowser.m */, - 5FAC4FD6164B0174BB389F1F0AA6DD0D /* Pod */, - 6D630155EE7B8185E2F2398D2112A3A1 /* Support Files */, + 5A705E11B33BE573D5FFA5A2A4EC08B4 /* UMImageLoaderInterface.h */, + 05F80AA363BD9F43E07C1846CF971054 /* Pod */, + 23B12132B8D0B6B40DDE73129C2C975E /* Support Files */, ); - name = EXWebBrowser; - path = "../../node_modules/expo-web-browser/ios"; + name = UMImageLoaderInterface; + path = "../../node_modules/unimodules-image-loader-interface/ios"; sourceTree = "<group>"; }; - 542CE1C1019116EA2390CEE5E334025E /* Support Files */ = { + 4CFBA9F5A7A1CC89578660641C21D278 /* EXConstants */ = { isa = PBXGroup; children = ( - D09D3FE7CC7C7E27C81BB8B8916180FB /* ResourceBundle-TOCropViewControllerBundle-TOCropViewController-Info.plist */, - E9DAA69C91C5D71F71C166021395D3BE /* TOCropViewController-dummy.m */, - 69D34CE26D3CB422F08A8EBDA79343E3 /* TOCropViewController-prefix.pch */, - CC72D21238CDBFB46D8CFCC77CCABD69 /* TOCropViewController.debug.xcconfig */, - FFA8920602E194F719FDBCD36097B350 /* TOCropViewController.release.xcconfig */, + 22FF8B9B1D2BEBF80716D353543AFF62 /* EXConstants.h */, + 5B8B887F1F5AC48CCD49D88B008EC0AA /* EXConstants.m */, + EE0023B4A8761E97045FD66E0191155C /* EXConstantsService.h */, + 49273B805FECCA94AFCB75F5897229BE /* EXConstantsService.m */, + 0879EF7176840201E9EED788C78A4EBC /* Pod */, + 8DDEC2C7C56B5048E5451EFF2748C5CA /* Support Files */, ); - name = "Support Files"; - path = "../Target Support Files/TOCropViewController"; + name = EXConstants; + path = "../../node_modules/expo-constants/ios"; sourceTree = "<group>"; }; - 54644E6F3A8F864DD4E2393312366EF8 /* lninterpolation */ = { + 4D0B44150A74ED68C5631F4F68094115 /* Pod */ = { isa = PBXGroup; children = ( - 003B854D5742DC9F339D3D3F25B09576 /* Color+Interpolation.h */, - 1FA781FE35B9737A289A6F6DE796B40D /* Color+Interpolation.m */, - 992D41F7A137097278CF3EDB63F141AE /* LNAnimatorTemp.h */, - B1E561BB53064F378156F22F2A0939AC /* LNAnimatorTemp.m */, - A84D4EF51DA254BE4994B6F594A91701 /* LNInterpolable.h */, - 32CFF859FF41FB0A551A8E139D688D17 /* LNInterpolable.m */, - 365DCA14B065A771C6DEA582FB1A0EF1 /* LNInterpolation.h */, - BECE1E300CED3753A0542E5F1E4AF11E /* NSValue+Interpolation.h */, + 0F9537AA9C947A7B82E6D209E7D89488 /* UMTaskManagerInterface.podspec */, ); - name = lninterpolation; - path = lninterpolation; + name = Pod; sourceTree = "<group>"; }; - 549F03B7AB363968A96C1850917DEAB1 /* nanopb */ = { + 4F15FA72B7B88A3A51AD105D50A58B73 /* Pod */ = { isa = PBXGroup; children = ( - 7F763AD72B33D446728D68075D4A6AC7 /* pb.h */, - C6AF3E49B2DBFEA9ACFC6345FDDDB37F /* pb_common.c */, - 2943A07F6C1324D10B05C1B00DB35875 /* pb_common.h */, - 5C80621220CDF16B10C3A915E83A66BE /* pb_decode.c */, - A72E28AEF6DF1265BDD71B5670AF408C /* pb_decode.h */, - F75799BE5F54F996D3AE4DDCC29FB260 /* pb_encode.c */, - 0F73A7482432ABE08919D16E9DCE3ADC /* pb_encode.h */, - 240535AAA21390B67D2D702AA4D47519 /* decode */, - B9811984AFAD42C4FBA4991F41A2AEC8 /* encode */, - FD9366726B241C67B09A195B37FDC705 /* Support Files */, + 4EFFF56194F1FBBE7E468DB652012DEE /* LICENSE */, + 85C10B4EE4D621E5ABCD7FDCEAAD2AC2 /* README.md */, + 47E44FE3B7B28418834F7B5C5BFF4526 /* rn-extensions-share.podspec */, ); - name = nanopb; - path = nanopb; + name = Pod; sourceTree = "<group>"; }; - 54FC4D24043627C1BEB096BBC6FB23F1 /* react-native-slider */ = { + 4F534F369454BF54B65EEB9AB2D5FFB3 /* rctcustomInputcontroller */ = { isa = PBXGroup; children = ( - A4A5845B88A33EFDB6AAE2D6706453D8 /* RNCSlider.h */, - A4E5D8024113C04A308B589034455548 /* RNCSlider.m */, - 025631EC319F114D70200FF936D0F45C /* RNCSliderManager.h */, - 40D47D7CB3CE368C41CE58178D446F27 /* RNCSliderManager.m */, - 89E42526F9DFE07C60CA8658D8ED2506 /* Pod */, - C4399765432138CF731F49C11D818658 /* Support Files */, + 0CF2233A0E480F3AB0FBCAAFAB9A6E26 /* RCTCustomInputControllerTemp.h */, + 93308F420E42F74B5A2750E4E732D71A /* RCTCustomInputControllerTemp.m */, + FEC8FDF81B3041D687AC472ECE166DC3 /* RCTCustomKeyboardViewControllerTemp.h */, + 6FAADBBA1CE616A466AEC1F955A800A9 /* RCTCustomKeyboardViewControllerTemp.m */, ); - name = "react-native-slider"; - path = "../../node_modules/@react-native-community/slider"; + name = rctcustomInputcontroller; + path = rctcustomInputcontroller; sourceTree = "<group>"; }; - 551D8FB324C29D51DB7D1925EBEE2DC5 /* Pod */ = { + 4F63390788DFA62439205658CA452C71 /* Products */ = { isa = PBXGroup; children = ( - 071CA81D30430B1FFA956BD72ABB280A /* LICENSE */, - 83606A2F1248F96972C39BBACDC1C362 /* README.md */, - 68855EB97EDD027373CF568D23BD5DF6 /* RNConfigReader.podspec */, + FE6D792B6328AAF68E46924D7F466631 /* AccessibilityResources.bundle */, + 3EEAA606F6866DA20E6601B9655B1027 /* libBugsnagReactNative.a */, + 6CBEFE4F9E22AFDC6347A739BB35FF8C /* libCocoaAsyncSocket.a */, + 6FFB7B2992BB53405E6B771A5BA1E97D /* libDoubleConversion.a */, + 7E7E46B76D0AFE3DFC477DC55C5DB326 /* libEXAppleAuthentication.a */, + AD40A94AE1ADFA1CDF9602BA3B04C90E /* libEXAV.a */, + 220361FF3B2778F8F38C2C4DCC5B49FD /* libEXConstants.a */, + ED1E3FC0DC90F4A787472917BFB6B235 /* libEXFileSystem.a */, + 80A51B61FECFED8D1A0D95AAD32A2938 /* libEXHaptics.a */, + 494E934B4070A029E1A8D42C9BDF4646 /* libEXImageLoader.a */, + 09B5856105EF7C6447B9EC57E7E36B34 /* libEXKeepAwake.a */, + 72558F571738704549E1838E845D2770 /* libEXLocalAuthentication.a */, + 72E494917AC5EC2582197F07061A28B0 /* libEXPermissions.a */, + 130335B611EDD6AFF8824641E06138D6 /* libEXVideoThumbnails.a */, + 574E8A849B86DCF8EE5726418D974721 /* libEXWebBrowser.a */, + ABFEEA82A6C346B22843FBE0B0582182 /* libFBReactNativeSpec.a */, + E2B63D462DB7F827C4B11FD51E4F8E2D /* libFirebaseCore.a */, + 8CC9178C366942FD6FF6A115604EAD58 /* libFirebaseCoreDiagnostics.a */, + 86375444C196BA272DDBB8165BF64A15 /* libFirebaseCrashlytics.a */, + 13C8C8B254851998F9289F71229B28A2 /* libFirebaseInstallations.a */, + E93F701CA8EB196D77AE99E094D873E4 /* libFlipper.a */, + AC12C7E29555A7CFDDEF1EDB5BC2F3DA /* libFlipper-DoubleConversion.a */, + 99D5CD245388DC76AAEF6E1E351A90ED /* libFlipper-Folly.a */, + E00BE2A3146698E81A8F9D00E8F93A6C /* libFlipper-Glog.a */, + ACBB7F62B267CC7C9BBBAE41DE94743B /* libFlipper-PeerTalk.a */, + FFDC7746794AB17CFB7150820479DF40 /* libFlipper-RSocket.a */, + 65234B3E668A42D9137B2C7AB051EE37 /* libFlipperKit.a */, + 3CA7A9404CCDD6BA22C97F8348CE3209 /* libglog.a */, + 856B5CD56F194FAD26EA91620B66D614 /* libGoogleDataTransport.a */, + B43874C6CBB50E7134FBEC24BABFE14F /* libGoogleUtilities.a */, + 279390C893577F74DD2049383E1EDD1A /* libKeyCommands.a */, + FB6FAD8F0183E86ACBFBD8A81BA7BF3A /* liblibevent.a */, + 5E4674603A5D5B9215FFA0F8E69F8B71 /* liblibwebp.a */, + B88A54159B245E727A6D16DEFE105A09 /* libMMKV.a */, + E0B603F54009DAEF6C3BAAE621E5F180 /* libMMKVCore.a */, + 06FC5C9CF96D60C50FCD47D339C91951 /* libnanopb.a */, + F25C3E827CEC99016CF835D55FD8A055 /* libPods-defaults-Rocket.Chat.a */, + 9621F4B0A44623E984DC190DDF0A9A4B /* libPods-defaults-RocketChatRN.a */, + 563E0A0FEB65B564D6A02A0A948B2E62 /* libPods-NotificationService.a */, + ABCA9F4CD6EE0D4686EBA505F526A436 /* libPods-ShareRocketChatRN.a */, + 3347A1AB6546F0A3977529B8F199DC41 /* libPromisesObjC.a */, + 1936453FF2A7E3A13063C4917C4D5598 /* libRCT-Folly.a */, + F958876A082BF810B342435CE3FB5AF6 /* libRCTTypeSafety.a */, + BD71E2539823621820F84384064C253A /* libReact-Core.a */, + 6771D231F4C8C5976470A369C474B32E /* libReact-CoreModules.a */, + 37592FDAD45752511010F4B06AC57355 /* libReact-cxxreact.a */, + D9F334F2E90E3EE462FC4192AF5C03BD /* libReact-jsi.a */, + F2E7C88DFCD460A4B46B913ADEB8A641 /* libReact-jsiexecutor.a */, + 2577F299FCB0A19824FE989BE77B8E8F /* libReact-jsinspector.a */, + 242758B9EDFF146ABE411909CAC8F130 /* libreact-native-appearance.a */, + B75A261FE3CE62D5A559B997074E70FC /* libreact-native-background-timer.a */, + 6D65F1A831B333D8CF7EB66829B4339A /* libreact-native-blur.a */, + 8C3E2A6E6F93E60E397F6C0BBA710BF5 /* libreact-native-cameraroll.a */, + 7E103FA6ED177E4D7EF38AD267B42C58 /* libreact-native-cookies.a */, + 08D1FFC2980C1ED72AE9A4C44A0544C3 /* libreact-native-document-picker.a */, + 8074129DF318155B29544548E1CAF4A3 /* libreact-native-jitsi-meet.a */, + 4047BC0750B116B1191149A8E7B5389B /* libreact-native-mmkv-storage.a */, + 83A8CC3246A95431ACEA83C7C742228B /* libreact-native-netinfo.a */, + 012242E4480B29DF1D5791EC61C27FEE /* libreact-native-notifications.a */, + 48425DA2F01D82A20786D5E55E264A29 /* libreact-native-orientation-locker.a */, + 2AE9C51AC524FAF90F73601566183A95 /* libreact-native-restart.a */, + 52FCF98CEFF94C742080B6965D537AD0 /* libreact-native-safe-area-context.a */, + BF1F456334C248BD77BE65C60F42FF67 /* libreact-native-simple-crypto.a */, + 2B17A71888AA28CEFEC37B72F2A68A91 /* libreact-native-slider.a */, + 8DF63376066E2275FF26820B3A512A9B /* libreact-native-webview.a */, + 666E72807891C591E025A75410CD2A26 /* libReact-perflogger.a */, + FE7B9294FF05AAFD1653E2104E10844A /* libReact-RCTAnimation.a */, + F71EBF73F354B475D465FF6DE9A66707 /* libReact-RCTBlob.a */, + EEDBF403E8E0B3885E65C2741B536BC5 /* libReact-RCTImage.a */, + 802121F5B756ACBFDD6D08C36246DADD /* libReact-RCTLinking.a */, + A68E5A9B69A3BA0FD52CAF7A354EC93B /* libReact-RCTNetwork.a */, + 269BE773C9482484B70949A40F4EA525 /* libReact-RCTSettings.a */, + E6A16705C69FC7DE11C2469A4A0F8358 /* libReact-RCTText.a */, + C1A919103EAC9813D236486C34FC0A21 /* libReact-RCTVibration.a */, + D5C775614AC76D44CECB6BE08B022F1F /* libReactCommon.a */, + 51B50F20C76CF72E2BEF8D4764235306 /* libReactNativeART.a */, + 2843CE246C3884DD21A4C251E8B34E25 /* libReactNativeUiLib.a */, + 858AFA83985937825473045CF6808B15 /* librn-extensions-share.a */, + 4FDA96879D96070EB1983E98E655CBDC /* librn-fetch-blob.a */, + 202722AA0D229A11350F6DC0F267A0BA /* libRNBootSplash.a */, + 5737DDB4BC95AD399B3206838AB97095 /* libRNCAsyncStorage.a */, + B8CD4B9B578CE9FA38114B638C9CAA78 /* libRNCMaskedView.a */, + 812ED9CD85898FB3B82136F7CB9A3191 /* libRNConfigReader.a */, + 1DC66AC6FB5802B9BA94177EDB54263D /* libRNCPicker.a */, + 72DE4BF3FB9CE0858E90F96FEF8A53AE /* libRNDateTimePicker.a */, + E0FE6533198104C97DB047DD5CD8AC67 /* libRNDeviceInfo.a */, + E55EA3C6F285F6FA8067C5C8A428FA64 /* libRNFastImage.a */, + 34C842CD40D88AB4B2BF24FC77DA0009 /* libRNFBAnalytics.a */, + 18D0B1E13C69654196028DD6EDCC3452 /* libRNFBApp.a */, + EE4AEFEACE275DDCFB42B9400BF6B218 /* libRNFBCrashlytics.a */, + 8F65F9361F2069CF9E9D751272968DE4 /* libRNGestureHandler.a */, + 3AEA4A114C08533A2C0F8E039A4C5EB9 /* libRNImageCropPicker.a */, + 15912309AA610251329D74FA111DE5CA /* libRNLocalize.a */, + C777CF2FB1E39A45CBBDB54E8693F471 /* libRNReanimated.a */, + E496A53A92B4E464B5C30DC5B1E4E257 /* libRNRootView.a */, + 50B5347C9A6E93B7D4CFC3673BA6FB7E /* libRNScreens.a */, + 8998273719FDD789E6F9C7541AFD0B33 /* libRNVectorIcons.a */, + B0B214D775196BA7CA8E17E53048A493 /* libSDWebImage.a */, + FCF61D9B2B75054A9A3185DDC609B7FF /* libSDWebImageWebPCoder.a */, + 7862C607B7BE0510C2D65193F9B4B4F9 /* libTOCropViewController.a */, + 2D86D213801ABEF7CD86291D4F3FDD34 /* libUMAppLoader.a */, + AF72FD600DE7E2D330BA50F877993E05 /* libUMCore.a */, + BC41F4BEFC115303267857B135A144AE /* libUMPermissionsInterface.a */, + 3B640835BAA914DD267B5E780D8CFEC7 /* libUMReactNativeAdapter.a */, + 65D0A19C165FA1126B1360680FE6DB12 /* libYoga.a */, + 5B3357A1CE67C0BF4AE31936A1BE6888 /* libYogaKit.a */, + 3DCCC9C42EB3E07CFD81800EC8A2515D /* QBImagePicker.bundle */, + FE1E812071397E31AE21DFF368B781B1 /* TOCropViewControllerBundle.bundle */, ); - name = Pod; + name = Products; sourceTree = "<group>"; }; - 56D90BF2040C78853B6B88181FDB7439 /* Support Files */ = { + 516F3F1F36C549E9B8B45E504EEF5250 /* react-native-restart */ = { isa = PBXGroup; children = ( - 0529D73D9878D4E0EC0416AE14565F83 /* MMKV-dummy.m */, - B97940D26FBBECAD4EB08C0B41320551 /* MMKV-prefix.pch */, - DEE3203D0A7AFEFAD6E8D45299F7C77B /* MMKV.debug.xcconfig */, - 19BB8FE3084DED2BBFFA385ECA29B2E6 /* MMKV.release.xcconfig */, + 940A3662887443C415A3B1D34DF8A3EA /* Restart.h */, + 06BD4A267267B4315362C6B45E1AE78E /* Restart.m */, + 6F7027CEDDC02CAD5115996B6967F6BF /* Pod */, + 7F50FCDEC90B194CEF40B264637C1F36 /* Support Files */, ); - name = "Support Files"; - path = "../Target Support Files/MMKV"; + name = "react-native-restart"; + path = "../../node_modules/react-native-restart"; sourceTree = "<group>"; }; - 57607476FB45C52C9F3CF22F8AC2CEA8 /* Support Files */ = { + 5271314B5A54A613DE5A1124AFC27CEF /* EXSessionTasks */ = { isa = PBXGroup; children = ( - DCEA8F941CDD15EB2069935B316A55BB /* KeyCommands-dummy.m */, - 87FB3BAE4C0608D564B86E1ED9EE89A7 /* KeyCommands-prefix.pch */, - 558D3F7ACAF31C18087EB60CBBEF6338 /* KeyCommands.debug.xcconfig */, - 4B61C20E4E6ED1ADB8280B01F982A3F1 /* KeyCommands.release.xcconfig */, + 630DFE07FA0BACFA067723A18560F110 /* EXResumablesManager.h */, + 376ACBDF21AB0C3BBDE0DD89175DC3E0 /* EXResumablesManager.m */, + B4A63399DBE9EB5094BAC0ED1B42FBA2 /* EXSessionDownloadTaskDelegate.h */, + 632742EB6A230FB0A73E7225931002D5 /* EXSessionDownloadTaskDelegate.m */, + 449B4459F9705E22D67741CAC04186C4 /* EXSessionResumableDownloadTaskDelegate.h */, + 9C776381CEC4281D942CD39D3E725A0F /* EXSessionResumableDownloadTaskDelegate.m */, + 80928FA87E96A79A8C1EE78D5178F9F4 /* EXSessionTaskDelegate.h */, + 7FAF25A61AD341A3425A0828553742A5 /* EXSessionTaskDelegate.m */, + 78899B6ADC5B51ED31F2185F1DC3DF76 /* EXSessionTaskDispatcher.h */, + F972FAB223630D4E75FE516B0E56C049 /* EXSessionTaskDispatcher.m */, + BAA3DD4AC9BDA7FCA8B5336DF5A8FF4E /* EXSessionUploadTaskDelegate.h */, + 99AC71BDA4E2D7CCAC66A1A334011E41 /* EXSessionUploadTaskDelegate.m */, ); - name = "Support Files"; - path = "../../ios/Pods/Target Support Files/KeyCommands"; + name = EXSessionTasks; + path = EXFileSystem/EXSessionTasks; sourceTree = "<group>"; }; - 57C8456FBD7C8139050FCC835628C511 /* React-cxxreact */ = { - isa = PBXGroup; - children = ( - 494B50D5D5537B2B9842B43BE6116BEE /* CxxModule.h */, - 1B9BACB0377CD8C8008AD405848F4D2C /* CxxNativeModule.cpp */, - 959538869682DE8F5F8416B71AFB8690 /* CxxNativeModule.h */, - 36ECDE525D4C7376F5E88469F9AA0F0E /* ErrorUtils.h */, - CC132ACF573618FC05434FE77430522E /* Instance.cpp */, - 631870C24E6FF50FFE8421AB36226223 /* Instance.h */, - 972A33A68333AB5F1158E2DD2B039E97 /* JsArgumentHelpers.h */, - 07F8A416674D20EB4979BAF9EBF3D176 /* JsArgumentHelpers-inl.h */, - 975AFAA25345A61144FCBD53F33CA621 /* JSBigString.cpp */, - F8B921051AB4FF0A77981EF9913F6E3F /* JSBigString.h */, - 32A022EC517F10D917BF4DBC33E5C851 /* JSBundleType.cpp */, - 1EF300043F25CCBF87B4550F45407717 /* JSBundleType.h */, - 5D43D654FCA7F23771F07696175762B7 /* JSExecutor.cpp */, - 1899CDD77970FCB7A8B18F971C4DD188 /* JSExecutor.h */, - F492C284CDCC72A9270CF65696729407 /* JSIndexedRAMBundle.cpp */, - AB332063C3B127E3C0129F7EC7B091A0 /* JSIndexedRAMBundle.h */, - F458D12292FA35B08C9A39B64CF76800 /* JSModulesUnbundle.h */, - BF3037CDFDFCB0CB5E66960695EEF907 /* MessageQueueThread.h */, - DB84C45CEDAAB1F8403BCE7ACC59018C /* MethodCall.cpp */, - 8C1679586971637160054AD84FFF9389 /* MethodCall.h */, - CFEEC4B26238A97760C661FC6EBEEDE7 /* ModuleRegistry.cpp */, - 20F579A80884E8844CCC2526B455F17A /* ModuleRegistry.h */, - DF5DAB21386A74C921BAC62E663D7583 /* NativeModule.h */, - 90A795B88B61AAA21793461B45F9B037 /* NativeToJsBridge.cpp */, - CFBC2C9D2EE19A36E1AAE876E3BF5D26 /* NativeToJsBridge.h */, - E739090C6C03C989B43BF82B69633336 /* RAMBundleRegistry.cpp */, - 12287278B9CB792002A71AB641016514 /* RAMBundleRegistry.h */, - A711B6DDF5746588A5FFCD5E330DBF3D /* ReactMarker.cpp */, - 5C4DE2956E605D7F293176107A826EBA /* ReactMarker.h */, - C32367A944FF6A86BFA89489019B2D6B /* ReactNativeVersion.h */, - BC4E6281F75612E2835E8AAAFBCF5CEB /* RecoverableError.h */, - A01526E3DCC0E11B78DB0E7B3B6F7FB2 /* SharedProxyCxxModule.h */, - 533BF04B4077FA2D7C5F3204BADA4DAF /* SystraceSection.h */, - 71B21CD7D6EAC54B42A102151320A96C /* Pod */, - 0ABAE5E9F152B0A5E14A3544DEACD0E6 /* Support Files */, + 5378FE7DB363C58F9C1557372BEE17DC /* Frameworks */ = { + isa = PBXGroup; + children = ( + AB33CF7965FFB23B44AA26F7D0329CB6 /* OpenSSL.xcframework */, ); - name = "React-cxxreact"; - path = "../../node_modules/react-native/ReactCommon/cxxreact"; + name = Frameworks; sourceTree = "<group>"; }; - 57C9E2EC2DF45CDE277B0C080BA1D71E /* Targets Support Files */ = { + 53D6109B56D3D9FA9634A3D52C0CFB58 /* Pod */ = { isa = PBXGroup; children = ( - 7A9D58B5CF36E4DB4963A3D88F79EF87 /* Pods-defaults-Rocket.Chat */, - 14365716044418A82E6DD14AA8D16049 /* Pods-defaults-RocketChatRN */, - 77665CA6DBD4FF81C39E24DADB7370B7 /* Pods-NotificationService */, - 9DB0D3C44A982CC7D6085AEB75D4069E /* Pods-ShareRocketChatRN */, + 000CD55D62AB2366B77B0D781EADCCFB /* LICENSE */, + E94450F60F88981F0F9B5CC1FA1B1406 /* README.md */, + 080A1D3B1E79E0B8AB1B717AA686267D /* RNScreens.podspec */, ); - name = "Targets Support Files"; + name = Pod; sourceTree = "<group>"; }; - 580748C24A4AD51F62DCE59388D39488 /* Transitioning */ = { + 54615E3642586D024F48C2DEF8F3185B /* core */ = { isa = PBXGroup; children = ( - 7E6FC010879F7EE8CDCA75EFA68919D7 /* RCTConvert+REATransition.h */, - 5904BCC1697988B38283030C5C0C88DF /* RCTConvert+REATransition.m */, - AB0B72218F11A875FF74D719EE5216C6 /* REAAllTransitions.h */, - F16498BF973941A83EFADF8207428D45 /* REAAllTransitions.m */, - CA241484EAD056CDDD9937901FD9EFBA /* REATransition.h */, - D0ACA1571BAA3C0B215051D0BB3BC857 /* REATransition.m */, - 5E386DC9A27321FB9860CF02FA9F8D03 /* REATransitionAnimation.h */, - 32423B2579BF05539AC55667519D1939 /* REATransitionAnimation.m */, - 1D5E991FA1F0360C7AAA387F45E784D2 /* REATransitionManager.h */, - 08A0BFC7788EA8338F32393B48AEC433 /* REATransitionManager.m */, - F0A55BFC31DE0F8623420BCCFBAA7569 /* REATransitionValues.h */, - 225B31F9882865796B3764AE575F14B9 /* REATransitionValues.m */, + 0531C2B0DF8E6412781508B88D131B1D /* platform */, + 9CE1380D756C2478BA1F7FE12441A9A6 /* ReactCommon */, ); - name = Transitioning; - path = ios/Transitioning; + name = core; sourceTree = "<group>"; }; - 5815DF1EE4F4138F356D334F99315099 /* Support Files */ = { + 5499811CCE572E20A404BE25683BA078 /* Support Files */ = { isa = PBXGroup; children = ( - 3F27913042F4D16F669BC9B55EF37EC3 /* react-native-cookies-dummy.m */, - 5F57E078B3F1604F757A25A55E445B3D /* react-native-cookies-prefix.pch */, - 3D6A39C11AB41732F04B5DCBC4C192D1 /* react-native-cookies.debug.xcconfig */, - 26808343AB28092E0DAB9877D31D6617 /* react-native-cookies.release.xcconfig */, + DF436128B506C1CB246BFDCD445191E3 /* React-RCTImage-dummy.m */, + 98BC84500A9169FA9330A22C2AAD42EB /* React-RCTImage-prefix.pch */, + 6B3100C7D7414083E5FDF2D55534EB6A /* React-RCTImage.debug.xcconfig */, + 1E07EC44C0EB1007A7C369086E1849C1 /* React-RCTImage.release.xcconfig */, ); name = "Support Files"; - path = "../../../ios/Pods/Target Support Files/react-native-cookies"; + path = "../../../../ios/Pods/Target Support Files/React-RCTImage"; sourceTree = "<group>"; }; - 58A0BF53D5CFE638DE2E520B1BCBAD33 /* RNDateTimePicker */ = { + 557A82E50C2162BFDF00921CCA83FC3C /* RNBootSplash */ = { isa = PBXGroup; children = ( - 01BFEF506A51006C8E0ADF8BA799173D /* RNDateTimePicker.h */, - C9AEE440B62716E7DC763567258B5DB4 /* RNDateTimePicker.m */, - 5CAB83F1E564EEB611ED28B0CEAF30FE /* RNDateTimePickerManager.h */, - 0D5FFC28F633CA358E6A299EB5727859 /* RNDateTimePickerManager.m */, - 8B842BB44F8224928F375A7E2EB8FBE5 /* Pod */, - 0874FE68C60470262F19A57B0AC74BEB /* Support Files */, + AE778A0F8856F1A013BB134498D05F4E /* RNBootSplash.h */, + 2ACD73300513534D548675E0674A31D7 /* RNBootSplash.m */, + 09AF395FE807DB05976029397E70006B /* Pod */, + 32BA65ABF199D7E698FE359AFED0A321 /* Support Files */, ); - name = RNDateTimePicker; - path = "../../node_modules/@react-native-community/datetimepicker"; + name = RNBootSplash; + path = "../../node_modules/react-native-bootsplash"; sourceTree = "<group>"; }; - 58D6CD830BF4033E4AFF05CF0202F788 /* Pod */ = { + 55BAAC3AA1F609EB97E5AE8C922E8D6F /* FlipperKit */ = { isa = PBXGroup; children = ( - B7DDC6B95ED221B17E79CCE904953D67 /* UMBarCodeScannerInterface.podspec */, + FCBBBD93D5B2FA9594B7CDF7BE4424CA /* Core */, + 2DE527341F42F547119E05BE0E45B993 /* CppBridge */, + BCAFE9B24C351CD872A5E711028472C3 /* FBCxxFollyDynamicConvert */, + C8BD7C144BDE559EF0BCFD80EB58C7A0 /* FBDefines */, + B430DE7E3E7B9ECA4AB4D99EC5839499 /* FKPortForwarding */, + A577758C730E6EF3DCE8FE756231BB52 /* FlipperKitHighlightOverlay */, + 9B543FAF1D4BBDAC3DE13DF7376952D8 /* FlipperKitLayoutPlugin */, + 207C2302153C83A5CA7D255B781BBC87 /* FlipperKitLayoutTextSearchable */, + A355AF9707483F981B8A65B0329A9908 /* FlipperKitNetworkPlugin */, + DCD3B6E0821B5A6BD379EC8A57DBABAF /* FlipperKitReactPlugin */, + C133E47E676B3B1CB591C8CAD0645E55 /* FlipperKitUserDefaultsPlugin */, + D10CB45DE28C817DB307E3F01736CA7D /* SKIOSNetworkPlugin */, + 716951C8AA7F3C9E676A262EF2C2DD89 /* Support Files */, ); - name = Pod; + name = FlipperKit; + path = FlipperKit; sourceTree = "<group>"; }; - 592FAACF379830F3D0E3FE3F478C6D10 /* Helpers */ = { - isa = PBXGroup; - children = ( - BD56632D10B1E370B66E12A3E178C53C /* BSG_RFC3339DateTool.h */, - C9825762599913C6EB8217C8F9C4D952 /* BSG_RFC3339DateTool.m */, - B41E122A072DAC1D36112A10BA073686 /* BSGAppHangDetector.h */, - 7D61EC35D28B4EF1C2E3F7DB04DB7EB7 /* BSGAppHangDetector.m */, - 7F9BD92B9BDF85B886D741E7E003973C /* BSGAppKit.h */, - E3BC7A6739A79A73F4091DEBB379CD0A /* BSGGlobals.h */, - D42007B4C16C152C107FFE5553789732 /* BSGGlobals.m */, - DA81A58DABB5895D1ECF1FDA42B13D66 /* BSGInternalErrorReporter.h */, - 023D1714BC6B2A0B494473E614844FA4 /* BSGInternalErrorReporter.m */, - AFFEB724A1817711BD36B10EF0CDD742 /* BSGJSONSerialization.h */, - DDB24E02EA6FB47F447446D284BE71FF /* BSGJSONSerialization.m */, - 5B707ED67B4BB2FCDC42FE3B71683C3D /* BSGSerialization.h */, - CA5710B5600A232F2F638BD59F307CCC /* BSGSerialization.m */, - 33E0D68A84FF625B142642B4F3D770BB /* BSGUIKit.h */, - D6FA4F6C91F2A4BED4534715D40E0D1F /* BugsnagCollections.h */, - ADC303935FF231B0CA9192400CD9661F /* BugsnagCollections.m */, - D03FB8816A2AB881FD70B5B6B25F9651 /* BugsnagKeys.h */, - 62915D9EE18CF11F2284CBAEA75CC96E /* BugsnagKeys.m */, - BFF9EC62AB53882036DC920F1DC18E0E /* BugsnagKVStore.c */, - E5D4170E4147969786CE3297B8D288DF /* BugsnagKVStore.h */, - F162080DEB1F229CAD72B7EF91B26785 /* BugsnagKVStoreObjC.h */, - B397F83E5364B2FB27FC44746EC7445B /* BugsnagKVStoreObjC.m */, - 12BC7C47A9E234FC866C54A93E6763D3 /* BugsnagLogger.h */, - 5824F8E1DF5A3B5BE9B2B0B16CF93383 /* BugsnagPlatformConditional.h */, - 557C06D43567F388267AB80BAAF2CCCA /* MRCCanary.m */, + 563E32F679DD6E532939DAE3A57ACE72 /* Support Files */ = { + isa = PBXGroup; + children = ( + E61E98696B10F024465A30044F503482 /* nanopb-dummy.m */, + 41F17BC8036A205ECB9AAE78788049FA /* nanopb-prefix.pch */, + A980271696F165C031EB427644D5FDFE /* nanopb.debug.xcconfig */, + 044038628B089B5FA05D66B2AFD157EF /* nanopb.release.xcconfig */, ); - name = Helpers; - path = Helpers; + name = "Support Files"; + path = "../Target Support Files/nanopb"; sourceTree = "<group>"; }; - 5AF3EE885CBFFC9FBC554903D7A4C41C /* Support Files */ = { + 564D7F35CEA9F9E3097A947E29168FAF /* Multiline */ = { isa = PBXGroup; children = ( - C27817BEBD0764AAA5531522DE8E09A3 /* RNBootSplash-dummy.m */, - 36C8AD4B44F8CE0B2A2E431FE0F6C235 /* RNBootSplash-prefix.pch */, - 03E4DE6F65D0B3008B5D8D3E4A27F8A2 /* RNBootSplash.debug.xcconfig */, - 1BD2D2A94E724B03DE3F8DF09C6C406D /* RNBootSplash.release.xcconfig */, + 30125186ABE2360AECA131EE8B8E7204 /* RCTMultilineTextInputView.m */, + E4B3AE51832A2A1D1F7AB2D2C7126B8E /* RCTMultilineTextInputViewManager.m */, + 78C025510C9E9E9C4548DB10467B35FA /* RCTUITextView.m */, ); - name = "Support Files"; - path = "../../ios/Pods/Target Support Files/RNBootSplash"; + name = Multiline; + path = Multiline; sourceTree = "<group>"; }; - 5B2BE19CC4C4E3840DD03936DFB689E9 /* Support Files */ = { + 56A9AD6EC85267F0B4E706CD6A93FFDE /* CocoaAsyncSocket */ = { isa = PBXGroup; children = ( - EBFF5BC3C4AEDDCB346F620E28EF4774 /* RCTRequired.debug.xcconfig */, - C81BC27172EA0CE5C80194C0D70A45D3 /* RCTRequired.release.xcconfig */, + 1C0CD7E02E0E472C9B929866A2372DFB /* GCDAsyncSocket.h */, + F31E184818299EDC875D14017A91F0EC /* GCDAsyncSocket.m */, + 8BE0231B9D6DC76A34CC0C93D75E5284 /* GCDAsyncUdpSocket.h */, + FC69A1F119262FD7AFCB5A910A990A41 /* GCDAsyncUdpSocket.m */, + 96FBE0B9517A705CD93F22AFE3506C50 /* Support Files */, ); - name = "Support Files"; - path = "../../../../ios/Pods/Target Support Files/RCTRequired"; + name = CocoaAsyncSocket; + path = CocoaAsyncSocket; sourceTree = "<group>"; }; - 5B611A6E0141478AD75DC5BE14FDE545 /* Support Files */ = { + 578CD1397413FD85946C40CD3A19D615 /* OpenSSL-Universal */ = { isa = PBXGroup; children = ( - 9D49C2015EC82F52D2FDB558E03A1801 /* UMTaskManagerInterface.debug.xcconfig */, - 911B3EC5FE59FFBB5939024ADE0D328B /* UMTaskManagerInterface.release.xcconfig */, + 5378FE7DB363C58F9C1557372BEE17DC /* Frameworks */, + F02E8394CA9A1D2A4181EC8A27A87C51 /* Support Files */, ); - name = "Support Files"; - path = "../../../ios/Pods/Target Support Files/UMTaskManagerInterface"; + name = "OpenSSL-Universal"; + path = "OpenSSL-Universal"; sourceTree = "<group>"; }; - 5BABAA3A876E374DB80E5EE341FF8328 /* CoreModulesHeaders */ = { - isa = PBXGroup; - children = ( - AD0D3A362D811F5EAEB5C140E2BDCCEF /* CoreModulesPlugins.h */, - 5AE726FBD7EA3190FFA99F5A8DF3F737 /* RCTAccessibilityManager.h */, - BB43EAEC8B9375884DB2ADF6A88233BE /* RCTActionSheetManager.h */, - ED66E2553655F4848CEB00B46D764060 /* RCTAlertController.h */, - DFCBE7E816E8C610AEBD170C5BEB2938 /* RCTAlertManager.h */, - 7A608E0C3CA94318016EB7D1EC63456F /* RCTAppearance.h */, - 314D6A4AC5227189966DFE96E9021D45 /* RCTAppState.h */, - 8D994088F51E423A98794D609E35CAF6 /* RCTAsyncLocalStorage.h */, - 2361CE3F774C1F8B37B55A13CBBD1863 /* RCTClipboard.h */, - 2A201E321369369E539FE39ED859515D /* RCTDeviceInfo.h */, - 9730C5179AB23C55654E2F7644F4C25F /* RCTDevLoadingView.h */, - 90825145145C82A8F4E45D55BA6ED37E /* RCTDevMenu.h */, - 3653433E05093D7DD292F6CF1840A064 /* RCTDevSettings.h */, - 934CDE0CBDE9A0282A8DEC058F6C14E1 /* RCTDevSplitBundleLoader.h */, - 50CC8B1CF4B75396D57F35580E672455 /* RCTEventDispatcher.h */, - EE0C19A707DD76A72F53CE519B41D6C0 /* RCTExceptionsManager.h */, - 597A1AF2A1F2D22B468797A24BCF763B /* RCTFPSGraph.h */, - 0EC88FAC2B7478A7FC834D49B9513A81 /* RCTI18nManager.h */, - 2C4686785AFDD41B0581622BD388B30E /* RCTKeyboardObserver.h */, - A8C11BD5F904EC7DB1CB1B99D289E15A /* RCTLogBox.h */, - 41301A2B164A2E2586DB33EB7EA7DFC7 /* RCTLogBoxView.h */, - BA82B896587B196F261A9B1D9428EEB3 /* RCTPlatform.h */, - 29C3FBC8358D2B9354ADE309861B9CDE /* RCTRedBox.h */, - D84AD1D3232B0FAF8CBACB1950484819 /* RCTSourceCode.h */, - 7D85B1D5F8F87719F04404EECA61FC8B /* RCTStatusBarManager.h */, - E854F6CC4EF3F49C1842C5F714E0A458 /* RCTTiming.h */, - 70867544D01800EA6114ADA436856864 /* RCTWebSocketExecutor.h */, - 479E5A6756BD9FAFAF7BDE8B58EA1D30 /* RCTWebSocketModule.h */, + 57BDD950FD4B73386D09B034EA613B61 /* MMKV */ = { + isa = PBXGroup; + children = ( + F236C869FB3E9E8F0765998742979893 /* libMMKV.mm */, + CDE3A6B231C42D2F2242F34E5614826A /* MMKV.h */, + 9610016162D10430452F416287D66266 /* MMKVHandler.h */, + CC34F03143FD52C9D5C332461A049C01 /* Support Files */, ); - name = CoreModulesHeaders; + name = MMKV; + path = MMKV; sourceTree = "<group>"; }; - 5BB55349F94B480F64D0D497441B51A5 /* EXHaptics */ = { + 57C9E2EC2DF45CDE277B0C080BA1D71E /* Targets Support Files */ = { isa = PBXGroup; children = ( - 5D74EF68D1949BD56732B7EAB1BFCE79 /* EXHapticsModule.h */, - 68166958B14ADCB402252DD19DBCF907 /* EXHapticsModule.m */, - 8752AE4BE961C8B8A3881C16D383B796 /* Pod */, - BFE7B99AFC0F2FC332FF51BB451AB5F6 /* Support Files */, + 7A9D58B5CF36E4DB4963A3D88F79EF87 /* Pods-defaults-Rocket.Chat */, + 14365716044418A82E6DD14AA8D16049 /* Pods-defaults-RocketChatRN */, + 77665CA6DBD4FF81C39E24DADB7370B7 /* Pods-NotificationService */, + 9DB0D3C44A982CC7D6085AEB75D4069E /* Pods-ShareRocketChatRN */, ); - name = EXHaptics; - path = "../../node_modules/expo-haptics/ios"; + name = "Targets Support Files"; sourceTree = "<group>"; }; - 5BDB10A43998C1AAB312B64D6D1F2091 /* CxxUtils */ = { + 5861784A343BB0A7B423CAF35CD859A9 /* Pod */ = { isa = PBXGroup; children = ( - 9B49A76A77062C6D3136B4DCCE6D2A60 /* RCTFollyConvert.h */, - BE6BA2C9AB3AF5A8930FB3A8745D4505 /* RCTFollyConvert.mm */, + 0D378E2547F63096DDC6D5435B277CFE /* React-RCTAnimation.podspec */, ); - name = CxxUtils; - path = React/CxxUtils; + name = Pod; sourceTree = "<group>"; }; - 5BE88C47F5FE6B199AAE81DE4BE4EEF0 /* RCTVibrationHeaders */ = { + 5897B0F092B0D6954EBE29B988524465 /* Support Files */ = { isa = PBXGroup; children = ( - AE60EBEF10EB410D6454E9435714035A /* RCTVibration.h */, - B2B0C2B2DA9D3780174162903F4E336E /* RCTVibrationPlugins.h */, + E4C0031B5C49C9E0C0226C93B2339A51 /* Yoga.modulemap */, + 3AB88A44CB2032302C4EAF3C42381FE5 /* Yoga-dummy.m */, + A579A33674E42D7A4D6B19577BBEF9EE /* Yoga-prefix.pch */, + E83B01A80E91470832F3B5D3472999BC /* Yoga-umbrella.h */, + 82D2D03980550B0636B74BD263D0EDFD /* Yoga.debug.xcconfig */, + 7DCBF3C0593054D1A21091980D85866A /* Yoga.release.xcconfig */, ); - name = RCTVibrationHeaders; + name = "Support Files"; + path = "../../../../ios/Pods/Target Support Files/Yoga"; sourceTree = "<group>"; }; - 5CA4B72893C3AC4BE6781F0CEB5FFC5F /* TextInput */ = { + 58D8349D9789571F86FEF50DE3522DB4 /* TextInput */ = { isa = PBXGroup; children = ( - 009BC89DA592B58B06F9C36A0827E973 /* RCTBackedTextInputDelegateAdapter.m */, - 6909DC17B79287F476ED5275B90B517D /* RCTBaseTextInputShadowView.m */, - 9950AA3B543B1E92A2B0EE75F9A5621F /* RCTBaseTextInputView.m */, - 8F5705395441466192BD91D1B715A784 /* RCTBaseTextInputViewManager.m */, - 9B45635ECCFEB9E3F7E1FB505F12D162 /* RCTInputAccessoryShadowView.m */, - AF1052A3AA28D97DA92D09B41486C8AE /* RCTInputAccessoryView.m */, - D138E7168D289E33D969E784634487E8 /* RCTInputAccessoryViewContent.m */, - 92DC2AC6A377D3C7250197995BC60280 /* RCTInputAccessoryViewManager.m */, - 773F67187D644D69CDBF5E12F7BABA77 /* RCTTextSelection.m */, - 717812801402C3A654DB9201AF7EF793 /* Multiline */, - 6E299EEA2EE5BFD46A7DFBF967F08984 /* Singleline */, + 9CEBD65DCEDC9D218DCDB4190B9979C3 /* RCTBackedTextInputDelegateAdapter.m */, + 8CEE6577EEF1351F77E4734688BCE310 /* RCTBaseTextInputShadowView.m */, + 57C542AD851642D11EF58156F9D508CB /* RCTBaseTextInputView.m */, + 60CE61FE1B097DC2250BB5CF9BFDA2A8 /* RCTBaseTextInputViewManager.m */, + D90CB9417D8F1123A5353CCBF6692AC3 /* RCTInputAccessoryShadowView.m */, + 166CC9ED82C474FE161D11939ACB4603 /* RCTInputAccessoryView.m */, + 08C5D7CBDAF06B458488938D1C779CFA /* RCTInputAccessoryViewContent.m */, + 84EA6539FAAD1DC307A5A800A5718C58 /* RCTInputAccessoryViewManager.m */, + B484992CB708582738F0C049A0B73519 /* RCTTextSelection.m */, + 564D7F35CEA9F9E3097A947E29168FAF /* Multiline */, + B23F6A62D1D3642A9DB8D18E982D9596 /* Singleline */, ); name = TextInput; path = TextInput; sourceTree = "<group>"; }; - 5D2D5CA4A6F95D76729EA7568BB10504 /* Support Files */ = { + 5A21187AC8AD68F87D7E8B9F00E6E4A1 /* Support Files */ = { isa = PBXGroup; children = ( - 957BDDA4643CD66E7752B7C7F1E09ECC /* react-native-jitsi-meet-dummy.m */, - 6A11237B02A98AEAEEF0BAEC3866800C /* react-native-jitsi-meet-prefix.pch */, - 534DB8EDC3186CDE3523F27EA5582D99 /* react-native-jitsi-meet.debug.xcconfig */, - 5717BE80A558DC52BD945542F682495A /* react-native-jitsi-meet.release.xcconfig */, + 20C59C8C8A34D7F9C8BC92D693CBFDCE /* RNScreens-dummy.m */, + 124770183A266B30658AC782D2BDF252 /* RNScreens-prefix.pch */, + 751B6C8C89AEC272372D8EB4A3ED7662 /* RNScreens.debug.xcconfig */, + DD5BDA18C71452B05C20511A75E2CF40 /* RNScreens.release.xcconfig */, ); name = "Support Files"; - path = "../../ios/Pods/Target Support Files/react-native-jitsi-meet"; + path = "../../ios/Pods/Target Support Files/RNScreens"; sourceTree = "<group>"; }; - 5D3EFC620D95BE6B9AC68EF209E77490 /* EXSessionTasks */ = { + 5AF68FB827F43FE3EAABDD5CEF3D10FD /* Pod */ = { isa = PBXGroup; children = ( - 15F390A298B8A009BF341A8EED660992 /* EXResumablesManager.h */, - 23EEA2A9DD8C96756CD217E2C8C65B28 /* EXResumablesManager.m */, - 61FFC7CC0B3B4AA85642907AD9B5C5CB /* EXSessionDownloadTaskDelegate.h */, - DAD7E54D8867A225CF32D8C459853200 /* EXSessionDownloadTaskDelegate.m */, - 7267D00F1FD7F2751F6F318FB868C7EA /* EXSessionResumableDownloadTaskDelegate.h */, - 413F677E17E91D83904D400E7DF52DBA /* EXSessionResumableDownloadTaskDelegate.m */, - 09C6346F854CFF3D0E2B723676D88233 /* EXSessionTaskDelegate.h */, - CC024E46040AD05842D1554339DB9DFF /* EXSessionTaskDelegate.m */, - 398D18514E2FEAC75960BF69A0DCC236 /* EXSessionTaskDispatcher.h */, - 7B6DD548394A644C697223589C5139FB /* EXSessionTaskDispatcher.m */, - 81EB88AF33AF8FCFE87CD8EACA206B4F /* EXSessionUploadTaskDelegate.h */, - A8D091FBDDF484E5548B37CF0E4988D8 /* EXSessionUploadTaskDelegate.m */, + A4575EEC2CBE5727DDD75B140BF8F1E9 /* React-perflogger.podspec */, ); - name = EXSessionTasks; - path = EXFileSystem/EXSessionTasks; + name = Pod; sourceTree = "<group>"; }; - 5D6FD0E97DAF411CF365958D4C4A2A43 /* Client */ = { + 5BCAF5C141CDB4D8DDF90EDFF2308E7E /* Nodes */ = { + isa = PBXGroup; + children = ( + 668660252722E7643C38397952F90CC4 /* REAAlwaysNode.h */, + 14DE908F2480D77FD7F3ECA55C39E8B1 /* REAAlwaysNode.m */, + 185A2895867FEA89B6C3318CD2EDF7B3 /* REABezierNode.h */, + D0DE27E36E7ADC9C6CEA3497966BCFA1 /* REABezierNode.m */, + 54CD5FD0F145D63D0153F14AD25D57B9 /* REABlockNode.h */, + BCAD06DC4FD9F3245E74C83872F0749B /* REABlockNode.m */, + 046AC0F27CF51F993B0460A0A57F014A /* REACallFuncNode.h */, + 6B31A0C80E4BD6208A4480A163DC2996 /* REACallFuncNode.m */, + E05F1444615E94542B2F2854939D6B4D /* REAClockNodes.h */, + 17AF539B1F695CF5CD601AD264268C4C /* REAClockNodes.m */, + CB528CA7E28D15A5C4F3823F7D0AEA62 /* REAConcatNode.h */, + 59A362585FC1DCE6EBCB514F91F0F0FE /* REAConcatNode.m */, + 2A74A5D28B9BF69BCF5AD1C0EBEC92B7 /* REACondNode.h */, + 677D64C28A0333CC04528270F5A797EE /* REACondNode.m */, + A841B4EACF296E65D45A97F5066D3D51 /* READebugNode.h */, + 75F8E6BEF17738F4DD95989AA02530D2 /* READebugNode.m */, + 58D72833615ECBB4F79C874CE1E4492E /* REAEventNode.h */, + 3FF50B662CE593C996E03B0F9E392976 /* REAEventNode.m */, + 306DDCB537058D4906C882B918F95498 /* REAFunctionNode.h */, + 4D48B9A0D7207F3DEA16387FE4D6C765 /* REAFunctionNode.m */, + F6CBEE43C9FDE7721945939CE7EAC722 /* REAJSCallNode.h */, + E24A8FF6BC602FBE633329C0DF646AAA /* REAJSCallNode.m */, + 56D78C2ED078AA32E770656F63173371 /* REANode.h */, + 49E2001FCEA7FC2DD9BC5F8A722F8011 /* REANode.m */, + 52265A81AB1340CED9D94D568FAD6A91 /* REAOperatorNode.h */, + D06029A9B76A37D836A4F0443C29C50F /* REAOperatorNode.m */, + DDE8F2ACA773FF72F96223B5BC5A11BF /* REAParamNode.h */, + 2A50237DF5DB54AF3ABCEC6C314A1F2C /* REAParamNode.m */, + 619BFAA923B69509C766ED636D5139A2 /* REAPropsNode.h */, + 55F0E3389C100B389E973E2C19F86A61 /* REAPropsNode.m */, + B86E48B0F2B7C6E18E9297ECCB847D81 /* REASetNode.h */, + 365F6248EFAB0F26FD9478F18205D2FA /* REASetNode.m */, + 8EC52E80CADEF66553D7D2E3E861E66A /* REAStyleNode.h */, + D5F1F178A9CE6827C6BDFADD69C75AF4 /* REAStyleNode.m */, + 4FB404C79DA9E1109F78223BB98F7C11 /* REATransformNode.h */, + A1EFF181F448B40C8D4167283D2792F4 /* REATransformNode.m */, + 3F633D0D6647123D1AFE1E37975AAB6D /* REAValueNode.h */, + 37C77CA46347FF94A942F9303102B26B /* REAValueNode.m */, + ); + name = Nodes; + path = ios/Nodes; + sourceTree = "<group>"; + }; + 5BEFFED9407B77185D32FB8100530A82 /* Support Files */ = { isa = PBXGroup; children = ( - D30DBF5B6FCBC3771FC82D8F61B0DDE1 /* BugsnagClient.m */, - 5AD22713EE6E7C846525A656A9999E89 /* BugsnagClient+Private.h */, + E4878457DAD0DD21255A055941A61A09 /* RNConfigReader-dummy.m */, + CADA196845FBE46E9D06E1F82AC1B987 /* RNConfigReader-prefix.pch */, + E60E6DCBBC4B36C4E43EC611EA3D2700 /* RNConfigReader.debug.xcconfig */, + D9E95C9FB67C54EC47F46C3719C4981F /* RNConfigReader.release.xcconfig */, ); - name = Client; - path = Client; + name = "Support Files"; + path = "../../ios/Pods/Target Support Files/RNConfigReader"; sourceTree = "<group>"; }; - 5FAC4FD6164B0174BB389F1F0AA6DD0D /* Pod */ = { + 5C2D58E6DC460C87A5C80F9B889D4F92 /* Flipper-Glog */ = { isa = PBXGroup; children = ( - 01B28A0C19F8AC0830294597DD03433F /* EXWebBrowser.podspec */, + 53FC3A061F69A1FA640A10B61413A47D /* demangle.cc */, + 06004423AC586CB77ACA75094F5A49CE /* log_severity.h */, + 450E3ABB4C2C35CB59BA0E0CFD2EBB8C /* logging.cc */, + 5FCE087AAB80A33D56A2BCD92CBBD87B /* logging.h */, + 950830CC50FB7E47054D6B2FC97B23A1 /* raw_logging.cc */, + 843CE0263333BE3F22348BA6A99B4224 /* raw_logging.h */, + 64D9B9F25B0FB550384CCEE01DDDB3E2 /* signalhandler.cc */, + 1D4F80F38FCBDB98573E1F28BFD1E1E8 /* stl_logging.h */, + D01DCCA04112909D92568516F663C4D4 /* symbolize.cc */, + 323CDB43595DA28F6122DDABBF25B75F /* utilities.cc */, + AA2E2DFB21A4D2B6BC1D3847332820F3 /* vlog_is_on.cc */, + C8A58146358F8008D44793DC28206F26 /* vlog_is_on.h */, + 2FDA3D05A72A8C2A9A7DCF293A4AA58F /* Support Files */, ); - name = Pod; + name = "Flipper-Glog"; + path = "Flipper-Glog"; sourceTree = "<group>"; }; - 5FEAEB799AFFB038C3392FC4909A3995 /* Pod */ = { + 5C93FDB83706FC7F219427E3C4A4FCD1 /* Pod */ = { isa = PBXGroup; children = ( - 2A7B58051260494638C90C0308908B0B /* FBReactNativeSpec.podspec */, + C5DA3FAFC38388F72D280CD53E1EDB5B /* React-Core.podspec */, ); name = Pod; sourceTree = "<group>"; }; - 609D88F4210B15C54BF80F69AA48082C /* libevent */ = { - isa = PBXGroup; - children = ( - 5EF8A94048C6DB061F18D39393DD8E0C /* buffer.c */, - 457BF153D04F4820C937FA37AFCD368D /* bufferevent.c */, - 6A1E9C1B0EFF5B1C55F68933D06863DE /* bufferevent-internal.h */, - 31BE77BA970F0F9CE3CADED50681A14F /* bufferevent_filter.c */, - 5E28E5E5D8F3D49FB0BC9C998D181E05 /* bufferevent_pair.c */, - 39305B4A5D50A8905FE3337AF9BCC606 /* bufferevent_ratelim.c */, - 92CF4CA7AA549F6D173DB1F3510DAF47 /* bufferevent_sock.c */, - 3307140B2150CE64DA8836A94A018B22 /* changelist-internal.h */, - 30D81A3D660D3599BC10A49C1F29EEE0 /* defer-internal.h */, - 3DFA608104A26481888AF421986C11E4 /* epolltable-internal.h */, - D567A3C8BCF2DBFD5392F80573BD4FB4 /* evbuffer-internal.h */, - 77E27FA756A6B7F123B5FD0442782FD4 /* evconfig-private.h */, - C8F7A0909CE76DB246CB41A3FF611281 /* evdns.c */, - F5F787DF75B9E09594E5251817DDFB91 /* evdns.h */, - 598202B7E8219B4266CB62E0A114604D /* event.c */, - 677A0291688B635D3F8CBAEE82288760 /* event.h */, - 85679925C7418CFBC8047231557F405D /* event-internal.h */, - E551AF1B96A249735565C79072A99930 /* event_tagging.c */, - 64FDB424456A4DD24183CF1B2202D02E /* evhttp.h */, - 53E6098912BE03536ECD4B1FE675B237 /* evmap.c */, - CF0C1E54F3BF3139BD54F1B42B3175A4 /* evmap-internal.h */, - A6665D8FC0F6D068B435FA4B02F47F71 /* evrpc.c */, - 72F272903FFBC94B4E4612A594A555FF /* evrpc.h */, - 6E32947F097148F59B3F1E82CA8CFAF1 /* evrpc-internal.h */, - F068A4842CE3553A27782E11612DDC0C /* evsignal-internal.h */, - 58273B190325B547D525894CCAF07636 /* evthread.c */, - F3B55915438E2A778BBDC814F29F37B8 /* evthread-internal.h */, - F6AB4587E201E4C23AB7619E10ED0427 /* evutil.c */, - 7194150125DD93BA2E704772FCAE9146 /* evutil.h */, - 0D9C23B493FEC20AFFD1BE25C3AE1594 /* evutil_rand.c */, - 8069BAC4F69AE5E45CBB8F33CB396B67 /* evutil_time.c */, - 453EE913EAEECD3E8429629404148DE5 /* ht-internal.h */, - A16956E0F13387473A1FADDE58ECD237 /* http.c */, - 964ED3AFCF1FA95EB0D582FF7DD71626 /* http-internal.h */, - 095F9DC78A02A5B297431EB32A49075F /* iocp-internal.h */, - 72835F36D45E0327A28A757A7B2340F9 /* ipv6-internal.h */, - 19D8F967D64197E724B3530AC7D14799 /* kqueue.c */, - 4F27E3FDA8B6F4EE4FE0EA2B5D213B03 /* kqueue-internal.h */, - 6AFD3DAEA617156BF2B54EC866156EA4 /* listener.c */, - 73A59776370089BF47A36F0979BECF4A /* log.c */, - C4D0A9D298494CD59E36A2F6D0BA0F3A /* log-internal.h */, - 0A87D13283D45B725FCA1772F8ACC6C5 /* minheap-internal.h */, - 62241FF2F74F1894A38653432A83E2DB /* mm-internal.h */, - 7B4FCBFF3CE54A00C2F44A31FB4C5FA7 /* poll.c */, - 3FC593F0F6C973BD78BDD755CB42A289 /* ratelim-internal.h */, - E7D0233C155796C1E13046A0A2621FFB /* select.c */, - 19778043EF9C8D5381A4CDCD7EABD478 /* signal.c */, - 6E06CF35D5BF7A55466AB24B113BEC05 /* strlcpy.c */, - 666D07CFFA0543E74260EBDA643C53E5 /* strlcpy-internal.h */, - C9DF09F69040AFECB8B414130D0B901C /* time-internal.h */, - EF9EDC6CDBDDC9EA7F72BB6CE3AF8C23 /* util-internal.h */, - B171E99FAD968B67BB3F30E399327AEF /* Support Files */, + 5CD1E1E4BCBB689922DDE7EF6FCBD791 /* Singleline */ = { + isa = PBXGroup; + children = ( + 21E9B10350B20B46F457F1680D484330 /* RCTSinglelineTextInputView.h */, + ADDE8828F81CA4F99392A484A6D64E28 /* RCTSinglelineTextInputViewManager.h */, + 60E23A1AB6F172911238053287791884 /* RCTUITextField.h */, ); - name = libevent; - path = libevent; + name = Singleline; + path = Singleline; + sourceTree = "<group>"; + }; + 5D7C02A3457AD5AE51F5E8746A5BF864 /* RNVectorIcons */ = { + isa = PBXGroup; + children = ( + 1DAAF261F2D17945D565CA6D8C7B7931 /* AntDesign.ttf */, + 51799FB3AE4BA29C00232ACEAD419C84 /* Entypo.ttf */, + 00C1D0030B6A0EB560F660CD72C50BD9 /* EvilIcons.ttf */, + AF3415B3D5FF32410C0115036DCF794A /* Feather.ttf */, + 6000029777CD6C1183FDD6ED6EE5E473 /* FontAwesome.ttf */, + D0A02E66F3E7FEE85144BD8B7A510334 /* FontAwesome5_Brands.ttf */, + 41A1883310E364AB6578BF70F7E91181 /* FontAwesome5_Regular.ttf */, + A4650709044A2D71D36B4BF1497CE5C3 /* FontAwesome5_Solid.ttf */, + 3094A52BA121583689AC611C51CB128F /* Fontisto.ttf */, + 4BEADAD1F1953680BAB52F1E438972F3 /* Foundation.ttf */, + DE93F934808F8210E6A322F786C151A9 /* Ionicons.ttf */, + 2EF6B8484DD6B8CEA3C7230F39970CB3 /* MaterialCommunityIcons.ttf */, + 98B97D3E7FB183253A65788833F81CE2 /* MaterialIcons.ttf */, + CD2430E94DB5D99A7DCDEC135483F627 /* Octicons.ttf */, + AB810E8A6D88EC6E2B47CA5C3005F39D /* RNVectorIconsManager.h */, + 3762E3B29377E579A751F5120DD12953 /* RNVectorIconsManager.m */, + 6378F7A784F32A4E6FE54717D0C2C711 /* SimpleLineIcons.ttf */, + B3E2484AD5AEA3DD003A028AE0D0A26B /* Zocial.ttf */, + FD696ED57CDB794AA100ABC8BB21A7CD /* Pod */, + 442B67A53DFC8D2A74494DC32517018D /* Support Files */, + ); + name = RNVectorIcons; + path = "../../node_modules/react-native-vector-icons"; sourceTree = "<group>"; }; - 60A569A3267557CAD6D1AACC49427736 /* Pod */ = { + 5DECA447299278F70175E5FB2E5C6CA7 /* Transitioning */ = { isa = PBXGroup; children = ( - 7C73775E47D4CF9B92EF7CCBDA2F0B96 /* LICENSE */, - A3040695AF0032C688FAA0D4587AAB2E /* react-native-mmkv-storage.podspec */, - 1D211DAD656DEB2E2B152DF669D8F780 /* README.md */, + BC2D76F8ACCFF11154DE53A671ADA898 /* RCTConvert+REATransition.h */, + A028B596E96BBAFE851F533BD3E845E1 /* RCTConvert+REATransition.m */, + 90708FC08907750D80683605D1B29894 /* REAAllTransitions.h */, + 8B0AB493980953FD372BB8AE51D7E316 /* REAAllTransitions.m */, + 40CBD16B14C6A7178F68E9FD7E4623D7 /* REATransition.h */, + 9BB100A2237ABE19F090F03047E5A7B2 /* REATransition.m */, + 8F6CB3F06A39DBD81E67FDD710F76D48 /* REATransitionAnimation.h */, + 05B07042EA64AC71F4F63F6A2A59458E /* REATransitionAnimation.m */, + C1241CA78447F3917B5348A7FA35A374 /* REATransitionManager.h */, + 2A7695ABD283AEBA8C5B925708337EA1 /* REATransitionManager.m */, + A853A4CA9DACFBF2D6B754C0FA8DC7B4 /* REATransitionValues.h */, + 066C8FC82B14EF8D39E443B77EC76E7B /* REATransitionValues.m */, ); - name = Pod; + name = Transitioning; + path = ios/Transitioning; sourceTree = "<group>"; }; - 60C1BED468D2F0A107DD88511A88F613 /* Pod */ = { + 5E33DD9E21FAC40C2A0769DA1C6474B7 /* KSCrash */ = { isa = PBXGroup; children = ( - 4FCCB673DB96C95279676B3DDB6E0FCE /* LICENCE */, - 4BD5536E707ABA8BD79BBE4E822C7694 /* react-native-cameraroll.podspec */, - E7ADF92BC8D60C28A629D61B66BEC765 /* README.md */, + F9FA8CFB76F5DE7BFD3F7CCE602EDFFF /* Source */, ); - name = Pod; + name = KSCrash; + path = KSCrash; sourceTree = "<group>"; }; - 6188F243DDEBAF750199A0437E405B5D /* EXAppleAuthentication */ = { + 5ECB5D60B5CFD2A8AC47651923E5C69F /* boost-for-react-native */ = { isa = PBXGroup; children = ( - C8A62565FF0C008C8CCCA2F926455E43 /* EXAppleAuthentication.h */, - B952CB53081748F46C04F821010B3D86 /* EXAppleAuthentication.m */, - C63764A8CAAA45692EA96FB71D6BA9E0 /* EXAppleAuthenticationButton.h */, - 6B462E204A57616C620FCD610EFD07A8 /* EXAppleAuthenticationButton.m */, - E690CF7FDCEF70E0454A91E9EB1E11EA /* EXAppleAuthenticationButtonViewManagers.m */, - 7EF6B9A47FFA6087F2E4D57B895577D6 /* EXAppleAuthenticationMappings.h */, - 12765E6C0FE3B8B56C136DB523CAC8DA /* EXAppleAuthenticationMappings.m */, - C590CA6D07CAF60A863741EFE53EDA7A /* EXAppleAuthenticationRequest.h */, - 8448FB44BB6062AC013CFCC3DDC33FDD /* EXAppleAuthenticationRequest.m */, - B4725EF2517297DCB97F2B6A02170E04 /* Pod */, - 103CC2A89D0EE2F2E5F23C4F506954E2 /* Support Files */, + 0A82C1348040BFD7208A60737A8B6F47 /* Support Files */, ); - name = EXAppleAuthentication; - path = "../../node_modules/expo-apple-authentication/ios"; + name = "boost-for-react-native"; + path = "boost-for-react-native"; + sourceTree = "<group>"; + }; + 5FAB571729D3E80E77769B437F369A25 /* Support Files */ = { + isa = PBXGroup; + children = ( + C075A5AF12BE0ADE8D0375177F57CB41 /* React-jsi-dummy.m */, + 47B559BFBCF636CFBDC81F7897E603B7 /* React-jsi-prefix.pch */, + F29E291A5148CF2D38BAD33733CFE9BF /* React-jsi.debug.xcconfig */, + 872622AD9816DC9AA672A56FE3022EA4 /* React-jsi.release.xcconfig */, + ); + name = "Support Files"; + path = "../../../../ios/Pods/Target Support Files/React-jsi"; sourceTree = "<group>"; }; - 61C26AC849C5315C52B01F3F22F0EB52 /* Pod */ = { + 5FD5E747A5CF4460BF5C662BFBF36148 /* Pod */ = { isa = PBXGroup; children = ( - 75AFC01FBF230F63FACF16D65C354CDF /* React.podspec */, + 7E97FE95E4C41A1E51357668BF1BB6D6 /* LICENSE */, + AC15CCA4067E7DC28224259328EB4CCA /* README.md */, + 4019437D9A8105DB90685F28B00A2AC9 /* RNFBCrashlytics.podspec */, ); name = Pod; sourceTree = "<group>"; }; - 61DB4E0ECF82517EC3C0C5DE7CD543E0 /* Support Files */ = { + 60612FD22EEFCE40165D8C0C0C7A5FE4 /* Support Files */ = { isa = PBXGroup; children = ( - 93D2A241AFA45A6CEEA2FA5F519FF56E /* libwebp-dummy.m */, - 41E391FB458EE549981AC519F05E9422 /* libwebp-prefix.pch */, - E9521D4F883C544DE47CDF5C2FDF5C87 /* libwebp.debug.xcconfig */, - B180A30621C18D083C4C04ABBBD78726 /* libwebp.release.xcconfig */, + 6A0B6A1B74F6240D061C16E7A8517D50 /* KeyCommands-dummy.m */, + 244045FC67EE9EDFE4DC73B030147888 /* KeyCommands-prefix.pch */, + E4CBBB2A0213C343B58B13DD110F317A /* KeyCommands.debug.xcconfig */, + 575371CAA8C68BBA0098624C8BBD0811 /* KeyCommands.release.xcconfig */, ); name = "Support Files"; - path = "../Target Support Files/libwebp"; + path = "../../ios/Pods/Target Support Files/KeyCommands"; + sourceTree = "<group>"; + }; + 60D7DC65D8A221144EE8CD7AE0CF69BB /* UMCore */ = { + isa = PBXGroup; + children = ( + 8FBB8E31EC21D1CBFDC103E2EDAE1070 /* UMAppDelegateWrapper.h */, + 186E7CE6F33802085E2EC35353A2FD82 /* UMAppDelegateWrapper.m */, + 9B6E7F5DAA2E02F6D3737E7F5CE5B5C5 /* UMDefines.h */, + CFCA6EC824A804A4BD1EF5D60AD0BAE6 /* UMErrorCodes.h */, + 58F2A4C1980EBED08ED1A3FEAF41B079 /* UMErrorCodes.m */, + 21094771FB6E09728AC794C4A8881F7C /* UMExportedModule.h */, + 73644C402ADDBC4FF79DD1C7CA3E356D /* UMExportedModule.m */, + 3286ECC1E3DCBE4667605820D5A6FB12 /* UMSingletonModule.h */, + 1928F203C63BD628DE6CC3FAB3B25A8C /* UMSingletonModule.m */, + 196B684FE01202205F7C293DDDC2A697 /* UMUtilities.h */, + 32DB37546014B6D2F539517579042611 /* UMUtilities.m */, + DC02F58567E3D4E85DCC5F61B24595CD /* UMViewManager.h */, + D98CDBB8EE1165A5BE4DED01657BC9E3 /* UMViewManager.m */, + B22C99DDD0399B2D3F54555E53EBF77E /* Pod */, + A2A47CA2D54357DBF98F511287B8307B /* Protocols */, + E5062990F7C0963D9C751E11904BFE04 /* Services */, + 16141671EB0C81B0E6793AC999981E49 /* Support Files */, + 3FA637B723073B598A0782878D06105E /* UMModuleRegistry */, + 22881836D7C73855A7F0D4C8AC194614 /* UMModuleRegistryProvider */, + ); + name = UMCore; + path = "../../node_modules/@unimodules/core/ios"; sourceTree = "<group>"; }; - 6222957EB3ADCA91D72DBFA80FDDCD9F /* chrome */ = { + 60F2C2E567B03990E30AC666B8031135 /* Pod */ = { isa = PBXGroup; children = ( - C1D2B47E1C5431346888E77888673620 /* AutoAttachUtils.cpp */, - DA6569714811CB81F5058D796EF7AD4A /* AutoAttachUtils.h */, - EE211749CD18ADB36400BEAD047FD706 /* Connection.cpp */, - E3B827B8FE180C2C5A5139B362493C4C /* Connection.h */, - 6AFEA695161609385AB7DFD9B211A61C /* ConnectionDemux.cpp */, - 0CCA0D29921C0C30861DFC9EA324B1CC /* ConnectionDemux.h */, - 77EB9E7906E4AF58634F7804B1AC54B1 /* MessageConverters.cpp */, - F5851EAB8954DE15BC38C794A0139EA3 /* MessageConverters.h */, - F71DB06084160D809A34D0F0449453D5 /* MessageInterfaces.h */, - FBD63547CE6A0E4EBC76D27EBE26B64E /* MessageTypes.cpp */, - A2E6B5FB00130B2A74065468823F5126 /* MessageTypes.h */, - B5DC539B8635A83E5170C5A413DDBF15 /* MessageTypesInlines.h */, - F83A4C8812F4CB19573C1DD3BB28018E /* Registration.cpp */, - 3F3BD9FE0ECD5B49CEFE657B3B74DA51 /* Registration.h */, - 0C64E5996EF4943B03113E475C59389D /* RemoteObjectsTable.cpp */, - 72631910F86F3EE0DD864035E0C8BB24 /* RemoteObjectsTable.h */, + 609049177578FD857C1BD1BF7B09DE8A /* React.podspec */, ); - name = chrome; - path = chrome; + name = Pod; sourceTree = "<group>"; }; - 6250D92290A9FAFD0257B5CC6B025E7D /* Pod */ = { + 610957C62088A22AC6E85A1AB4749D42 /* Pod */ = { isa = PBXGroup; children = ( - 2082D8C40A78A5CF90F5A370481D0F45 /* LICENSE */, - 00EF156A62AF441B7E35EDFB2B6078B5 /* README.md */, - 24D624636378CD4F756251BDFF96F26D /* RNScreens.podspec */, + E730EBB084C9DC7409F5E53223334B09 /* LICENSE */, + BD654ECED1FB0C41FFE813F0AF97A914 /* react-native-webview.podspec */, + 76003F53A89C3FF6FC67360F7CA85A6D /* README.md */, ); name = Pod; sourceTree = "<group>"; }; - 62E11969CA01B53F6A8F692FF47DD689 /* Support Files */ = { + 6161E69692F046BEE09B40DE7057110E /* Pod */ = { isa = PBXGroup; children = ( - 1EC02292322F492419329A9C87450E9F /* GoogleDataTransport-dummy.m */, - 3CB957F7D5240280A57EEDFC6B03ADDF /* GoogleDataTransport.debug.xcconfig */, - 03376185B2F0AEF87CE3705E3A6407C2 /* GoogleDataTransport.release.xcconfig */, + 281556B0D65F9D240378610C4B723C32 /* React-RCTText.podspec */, ); - name = "Support Files"; - path = "../Target Support Files/GoogleDataTransport"; + name = Pod; sourceTree = "<group>"; }; - 65656180EE78A49100F9F87B921283FA /* Support Files */ = { + 61877A8748423FFF3CF7D55415300F52 /* EXImageLoader */ = { isa = PBXGroup; children = ( - FD122D95D3FA4E6535A1CA894145D057 /* RNFBApp-dummy.m */, - 6B596B6A233AC2997CB28970BFAAB97C /* RNFBApp-prefix.pch */, - 45DF22CFEC6C88AEF4D15C665F595E8A /* RNFBApp.debug.xcconfig */, - FECF06704C4BCA91C6A43790DEB6D35C /* RNFBApp.release.xcconfig */, + 5E32AB3F8346FE3131E262D7FC3BCBB7 /* EXImageLoader.h */, + 558F64E901AAC77C744060E7E31B9EB6 /* EXImageLoader.m */, + 8AB3F7CA52B4DF82D06801CAD955E90C /* Pod */, + 7E54233D9639E02BB418536D3D12FDC5 /* Support Files */, ); - name = "Support Files"; - path = "../../../ios/Pods/Target Support Files/RNFBApp"; + name = EXImageLoader; + path = "../../node_modules/expo-image-loader/ios"; + sourceTree = "<group>"; + }; + 61FDAB1E2DCFBF30A6E0C4B7DC9B8A3E /* Core */ = { + isa = PBXGroup; + children = ( + B697A893B8DC509D12C177DA13AD0D49 /* NSBezierPath+SDRoundedCorners.h */, + ADA1F5A3936520BE6DACDE7600DF5238 /* NSBezierPath+SDRoundedCorners.m */, + 404AC726DBF50850379A3DDC4A0451EB /* NSButton+WebCache.h */, + 27B7CC8CF90EC2BD404633EF2BB1295A /* NSButton+WebCache.m */, + 63205B9FA03B467A37E207D88C8DAE9E /* NSData+ImageContentType.h */, + A4E7DC6BCE96DD8740ED05BA6A458413 /* NSData+ImageContentType.m */, + CFD4F8C4C727F66BB925CF7F3ECA74D5 /* NSImage+Compatibility.h */, + 5035B7873CF1F7310D5D1F423C937273 /* NSImage+Compatibility.m */, + 3ACECC4EA794A72E915804596408C485 /* SDAnimatedImage.h */, + FB7EB5CD5B565A806FD653ED1798BF12 /* SDAnimatedImage.m */, + 935C2364F12FB415DB80BD6BD122E7BB /* SDAnimatedImagePlayer.h */, + B337CA6C756C410795979F5E94F07157 /* SDAnimatedImagePlayer.m */, + F547618559A17BDE84AEA8C8B1A96C34 /* SDAnimatedImageRep.h */, + D587B7794B90AFAA1B084608EBAF0AF4 /* SDAnimatedImageRep.m */, + 01346432177A0F38A31D69490AEFF979 /* SDAnimatedImageView.h */, + 6C695160C23EDB5DF51922A7244720D0 /* SDAnimatedImageView.m */, + 9636CA304D0800814FE268B7CAC120BC /* SDAnimatedImageView+WebCache.h */, + BBBED6693ECDF015B718A1B62DB4B205 /* SDAnimatedImageView+WebCache.m */, + 8A2C548B73AA2D5BB802DC260BA10D9A /* SDAssociatedObject.h */, + 05BBEAFED41DC04A0FEF07809A9016E7 /* SDAssociatedObject.m */, + B61EFA9CF6CEB104E7551C7D1018E4AE /* SDAsyncBlockOperation.h */, + EC0119EA515BA065530341757CDABD41 /* SDAsyncBlockOperation.m */, + F1525F5D012CCCBA79287FC90249EA61 /* SDDeviceHelper.h */, + CDB9FE50CE65AB62B2DC4B171E743E27 /* SDDeviceHelper.m */, + 539A6E8F934239B5FD3A14AB9B340C44 /* SDDiskCache.h */, + 1A2F0092199517E21640E0A5311334C6 /* SDDiskCache.m */, + 836CBD51E9CBC69D9D513453F7389F22 /* SDDisplayLink.h */, + 789AD0C6584C9EBD747942000D08F1E1 /* SDDisplayLink.m */, + 688EF260FB61D08789469748B8495A10 /* SDFileAttributeHelper.h */, + E1F93ED3671627B465FF6F04D7101D11 /* SDFileAttributeHelper.m */, + FE83732058AC5994FE21C50230D73E66 /* SDGraphicsImageRenderer.h */, + 302FD0776486D9FEB0388127D5C51FDB /* SDGraphicsImageRenderer.m */, + CF0EF9A6A38D72EBECC7D87700F442CD /* SDImageAPNGCoder.h */, + 44AAFFEF5C348699BCAC4CDE634AF2B7 /* SDImageAPNGCoder.m */, + EAB8127143A2F947099CAB92EF7626FA /* SDImageAssetManager.h */, + 0CA3F5BD3BB611735389502DE1BDD48D /* SDImageAssetManager.m */, + 12A6235C13B73EA7DC232416E3A3D511 /* SDImageAWebPCoder.h */, + A064533E97B502530F807E4DAE7A584E /* SDImageAWebPCoder.m */, + 6AA77FDE9E333D8DA875578AFCB911BF /* SDImageCache.h */, + 433A8432857858E37AE10F9E545EACB1 /* SDImageCache.m */, + 3343C82CEE19411C6CBD8CB3A3171548 /* SDImageCacheConfig.h */, + 44ED5289A0AEC6C4A0076A0D63358700 /* SDImageCacheConfig.m */, + 634FBF6AE5BADA79617F9F32D1B57C96 /* SDImageCacheDefine.h */, + 90169179608738F3EE20B24798F5018A /* SDImageCacheDefine.m */, + 7B9C928EB02FFE4B93F3286C44589B1E /* SDImageCachesManager.h */, + 6D9EBB18615ABD47C0EAEE3D802C5D74 /* SDImageCachesManager.m */, + E2E64270484232874B989E1185FE02C0 /* SDImageCachesManagerOperation.h */, + EC7C7FD009F5B1DBEFEB0C39DCC9B2B6 /* SDImageCachesManagerOperation.m */, + 6A420E90756EE33A727DDA9B85214A9C /* SDImageCoder.h */, + 43C4CD0611716D8B6B933C7734E356A8 /* SDImageCoder.m */, + D4B18576E0547224F89BEB005146149C /* SDImageCoderHelper.h */, + F9ED10D80DF2DA2F2304FC06E4CE1CE7 /* SDImageCoderHelper.m */, + 54A50CDC6630BF259787AE34CC0B62DB /* SDImageCodersManager.h */, + 52D16F7C92685969291985881C5CD1EE /* SDImageCodersManager.m */, + 264DC8E81F8771A101522171898276FC /* SDImageFrame.h */, + 1948A6D0CDF7975A216C1681F5AD37B4 /* SDImageFrame.m */, + A1724662FE6410CBF204187731FC2B41 /* SDImageGIFCoder.h */, + A8D67169B06CDD791F18902CECE9AD36 /* SDImageGIFCoder.m */, + 91E188CE298C843330179204C0C7FDAF /* SDImageGraphics.h */, + 218CF96A79E95351A8CD8A43240E1517 /* SDImageGraphics.m */, + 3A27B8568D6221C2D97AAAF48DF5E6EC /* SDImageHEICCoder.h */, + 1610416C89A5844FDE756ED6F4D80A13 /* SDImageHEICCoder.m */, + 051A45F3034AE2C79868BC8527E387A9 /* SDImageIOAnimatedCoder.h */, + A40164AC8FC8B27943881073BCCB73E9 /* SDImageIOAnimatedCoder.m */, + 664E133DB4DB60AA8FFC8F2CEF986B57 /* SDImageIOAnimatedCoderInternal.h */, + 17F095D41ADF3C95ABD68678CE18CEA0 /* SDImageIOCoder.h */, + 734905DDEBC30BE0764EAD2966D92109 /* SDImageIOCoder.m */, + 01C730C3064C03A4329119B3E97E6BD2 /* SDImageLoader.h */, + 40658A6F13EAD8AF61DBFB66E02CB90D /* SDImageLoader.m */, + F1D8F2EE73988327CFE6DD4EA11D606D /* SDImageLoadersManager.h */, + 194758BFF0EDF20056BB0EF535F84B79 /* SDImageLoadersManager.m */, + 6C525B2DF385293AEFA725B02555587B /* SDImageTransformer.h */, + C7C1E49AC50F3752C4372BE348DC4C5D /* SDImageTransformer.m */, + A642F4FE514632AF6CB04E272D58AC0A /* SDInternalMacros.h */, + 2A86DF01247AC8F668CB4D11C098E4D5 /* SDInternalMacros.m */, + B2FD527FF5DA6B6E6330F03166CA0B63 /* SDMemoryCache.h */, + AAF80F5CDD0C1A755D4B8DA5DF2DBFEA /* SDMemoryCache.m */, + 880AE41B2B3D9C41D0C32762C5E330D8 /* SDmetamacros.h */, + D69FE965D8470E992659F8AD229E1282 /* SDWeakProxy.h */, + 2C643E525D4DDDEE6ABC165EDE7AEEF2 /* SDWeakProxy.m */, + F19C3F3CCF694603ACEC809519F74205 /* SDWebImage.h */, + 71D4741A2CD0FA7B25CAD6903C900456 /* SDWebImageCacheKeyFilter.h */, + 7FD5E449FE946D46CC104D1BA8F12A38 /* SDWebImageCacheKeyFilter.m */, + 8C6DEC7CCE4ACB967A791B8D7475A5D5 /* SDWebImageCacheSerializer.h */, + 50E81A83FFC6FFDE5C3241FE93B9A299 /* SDWebImageCacheSerializer.m */, + 01A4B4534C9A4E3E9EF3007467E87B1F /* SDWebImageCompat.h */, + A1C4352DCBB57612077AB0EA4D037BC8 /* SDWebImageCompat.m */, + 384F0859719D9843F7C7FA76F0EA926F /* SDWebImageDefine.h */, + B6C83B6A47820335281644C779C5D743 /* SDWebImageDefine.m */, + 5813C7E0097017B94D985EC9633FBFD0 /* SDWebImageDownloader.h */, + 06F2263D2C162FB6EBDC2E0471865FF0 /* SDWebImageDownloader.m */, + CF8F3C91A2EE74028AE13839CD858594 /* SDWebImageDownloaderConfig.h */, + 59EAF42B2DD35E28B043F4E1DF08829A /* SDWebImageDownloaderConfig.m */, + B4DB01298D1239EC66FB772919F29746 /* SDWebImageDownloaderDecryptor.h */, + 20037769F813A6C98F1BD2857E37129E /* SDWebImageDownloaderDecryptor.m */, + 627A5F2F82BCBD2FF9C1D568E32124AF /* SDWebImageDownloaderOperation.h */, + 6881EAECE286262C32623455500E16A0 /* SDWebImageDownloaderOperation.m */, + BBF3FDB13C0A9D56D65CA198AA2DA3EC /* SDWebImageDownloaderRequestModifier.h */, + 84D22347A70550A51F01CACB738F8696 /* SDWebImageDownloaderRequestModifier.m */, + F5EB82991A1B638E2A6F834DF732662C /* SDWebImageDownloaderResponseModifier.h */, + 205E9B4034E456E16F07BB4317351CDD /* SDWebImageDownloaderResponseModifier.m */, + DBAFBBE1AB5DD80349AEB3073D48C011 /* SDWebImageError.h */, + E9951475FDDF6AB34EAEA4098D522B3A /* SDWebImageError.m */, + F0A26ECFDC84508746B22EFAD978180B /* SDWebImageIndicator.h */, + DBAD0CD82749AD1074C4D8E8A28A9EC2 /* SDWebImageIndicator.m */, + 1E37499E51FB49512D8F542A58B70688 /* SDWebImageManager.h */, + 2179D202C8285B9D088632C103064341 /* SDWebImageManager.m */, + 5C417082F13348A2FE978DE51CABC139 /* SDWebImageOperation.h */, + BB373DBC911B3BFAE3EB62B2039ACEBC /* SDWebImageOperation.m */, + 89CBFE37F954597846FB1ACA6B10E756 /* SDWebImageOptionsProcessor.h */, + A0836689A6A9839A624AA1AD3532F0FC /* SDWebImageOptionsProcessor.m */, + CAC3F9E889E1D4F78D588FB9FDC6A2BB /* SDWebImagePrefetcher.h */, + 6AC02FB80F0619A73BCDB49DE8DA5C68 /* SDWebImagePrefetcher.m */, + 88A8CF9386ABA2C010DC8E6EFC5AA440 /* SDWebImageTransition.h */, + D266F32E36F1D9B01C20BA9CF95F70A5 /* SDWebImageTransition.m */, + 00B2205C58EB486B6313EC54BE2896D0 /* SDWebImageTransitionInternal.h */, + BFA7CDEAB6619D5D6734E5939DE68B7D /* UIButton+WebCache.h */, + 756D4D016E362247F0D78FDECC82E4EE /* UIButton+WebCache.m */, + 4993B0E0C5C84652892DCF59D89415EA /* UIColor+SDHexString.h */, + 5D56E1417CC17922E45A1213CF47145C /* UIColor+SDHexString.m */, + 958AC6930E90C161303CD3BE53186744 /* UIImage+ExtendedCacheData.h */, + 86A4426DD63E7A4BDC238B788AD83214 /* UIImage+ExtendedCacheData.m */, + C449B8BE34D1CFA82FF4DEF257292E35 /* UIImage+ForceDecode.h */, + 22760F50A98B7C377391FB13AA7FF9DD /* UIImage+ForceDecode.m */, + 03E14DE59094BF7EC1240C23D0AAB6A7 /* UIImage+GIF.h */, + 5C276E40FB11F208975252A027EF257B /* UIImage+GIF.m */, + 57BF65B2DDBDA73523AC58A73FF0F235 /* UIImage+MemoryCacheCost.h */, + B54B72A35DD0CD55E0840174847E759A /* UIImage+MemoryCacheCost.m */, + 5127DB3421F20D8DCBD082E0B433E6A0 /* UIImage+Metadata.h */, + 2B364DA950FE04F9EE2EABD89FA4992D /* UIImage+Metadata.m */, + D28E11947246CB06DA165492B4BDF211 /* UIImage+MultiFormat.h */, + 9FE4C61F261844691C8E404357836761 /* UIImage+MultiFormat.m */, + F57B9746C57D5E93F3933A24BD4A76E8 /* UIImage+Transform.h */, + 1B36AF39935C7942118976E194A3AA88 /* UIImage+Transform.m */, + F60877BDF5E130758B51C0D0373E61D9 /* UIImageView+HighlightedWebCache.h */, + DFD5522C57CCDC99ADD2072F3F16BF53 /* UIImageView+HighlightedWebCache.m */, + 3EF2DAFB6BEFBF1F3DA739A3B552ADBA /* UIImageView+WebCache.h */, + 1818A93F4880699A304FF3EFE5EF1093 /* UIImageView+WebCache.m */, + 2D84EE168450234B3920B655E2D481DB /* UIView+WebCache.h */, + D6DC43FAAB93BD1B22373A30CE42C566 /* UIView+WebCache.m */, + 8609E8579BA1CCBA984F733DF5270E34 /* UIView+WebCacheOperation.h */, + 7758206328D579D0359D1BCFDD50FD9A /* UIView+WebCacheOperation.m */, + ); + name = Core; sourceTree = "<group>"; }; - 65C804B3D3E763DD20ED81980F817FB1 /* ScrollView */ = { + 625C31D34816536D49F42467453E1DAE /* Support Files */ = { isa = PBXGroup; children = ( - F68BA11CC0C275B67DC8ECAFC32E5A60 /* RCTScrollableProtocol.h */, - B8596D6EBD7AD819A94AE4D14F360601 /* RCTScrollContentShadowView.h */, - 81A05C8E8890D8184D5C24DB13E3B2D9 /* RCTScrollContentShadowView.m */, - 1758A6F4E7F4EDB8C7347927B69C4110 /* RCTScrollContentView.h */, - 6F662D0D4F3FA959BF89BA93821F6FAB /* RCTScrollContentView.m */, - 9C470A77658DF10376C0D0C59415D547 /* RCTScrollContentViewManager.h */, - DB991B88FA1191D58DA60D46AA320720 /* RCTScrollContentViewManager.m */, - 91C32104C640587A2B646FD89013D4BF /* RCTScrollEvent.h */, - 3D8210E7D61088E626BC33C0AFF31B23 /* RCTScrollEvent.m */, - 838D1BC1B1D71324DA582F1D93B77A63 /* RCTScrollView.h */, - 329287767C04EA1A5446C112A2C80F58 /* RCTScrollView.m */, - EE70FC63C3A4A9EC29E4C29EEEF55D45 /* RCTScrollViewManager.h */, - 85DF6CE874D2DF49B49C7EEA5F4E7BD7 /* RCTScrollViewManager.m */, + 652D9F3D20EC26A36C330B1C312F4DC3 /* react-native-notifications-dummy.m */, + 7C6576F9F36FDB019818F23DD87788B9 /* react-native-notifications-prefix.pch */, + 8C3469C7C09277648D821CE8A98E3D1C /* react-native-notifications.debug.xcconfig */, + C4946950FF904051FEE051239C0735EB /* react-native-notifications.release.xcconfig */, ); - name = ScrollView; - path = ScrollView; + name = "Support Files"; + path = "../../ios/Pods/Target Support Files/react-native-notifications"; sourceTree = "<group>"; }; - 662EB4D1C14F8AA2C5837B9A29621ED1 /* ReactCommon */ = { + 63753C612619687E239C2490C27DBBD2 /* RCTBlobHeaders */ = { isa = PBXGroup; children = ( - A154FC57002D4A7C3A176A9677A855C0 /* LongLivedObject.cpp */, - FB13979D42C83C133B136F38E22E8680 /* LongLivedObject.h */, - 2F879142E2EE93DE74FB3050AB0E2791 /* TurboCxxModule.cpp */, - E84CBA71F965032851FABF0DCEB5989E /* TurboCxxModule.h */, - 6AE76AE1AFE4CFEA4DBE648484A0B5B0 /* TurboModule.cpp */, - FAC851118E62DB911AC0EB77960EE97A /* TurboModule.h */, - A0F186D93E942FD055EA978A99397B35 /* TurboModuleBinding.cpp */, - 470178089A8B574E25BA6E16B07CA254 /* TurboModuleBinding.h */, - 5E6C0041DF66013D73FBEED12E372544 /* TurboModulePerfLogger.cpp */, - 95996D377A3676FC12259D965827644A /* TurboModulePerfLogger.h */, - 58185E3C2604FA10E23E4B814C6AA23A /* TurboModuleUtils.cpp */, - ACA61489DCBF21D8BF85939ECCD147C3 /* TurboModuleUtils.h */, + 42255A0747B67DE55BFC28AC63FA7534 /* RCTBlobManager.h */, + C951C9A15CDA8B3C95F31CE99FC1BCA8 /* RCTFileReaderModule.h */, ); - name = ReactCommon; - path = react/nativemodule/core/ReactCommon; + name = RCTBlobHeaders; sourceTree = "<group>"; }; - 665EF1CC568095EF79E87D15FAA1106F /* React-perflogger */ = { + 648582A43A721F908DBEA66863645E7C /* React-perflogger */ = { isa = PBXGroup; children = ( - DCE53D3A2A477839449B9C6C35566704 /* BridgeNativeModulePerfLogger.cpp */, - 32CA7828799A6E45E4AA667862A300B4 /* BridgeNativeModulePerfLogger.h */, - 4D7771767C0A64A4CFEC135F4E46E7A1 /* NativeModulePerfLogger.h */, - F01DECD75D599D9E0F21175BA00634B7 /* Pod */, - 682F4457778748FE0956118F9A950718 /* Support Files */, + EB662EDE131C1868971DF3AA17B0F431 /* BridgeNativeModulePerfLogger.cpp */, + 6673917DD9D4A5926D289283FF43D218 /* BridgeNativeModulePerfLogger.h */, + F7099AD4BEC621BFBE7F24E626653828 /* NativeModulePerfLogger.h */, + 5AF68FB827F43FE3EAABDD5CEF3D10FD /* Pod */, + A29255E4804375685D1342009D52D339 /* Support Files */, ); name = "React-perflogger"; path = "../../node_modules/react-native/ReactCommon/reactperflogger"; sourceTree = "<group>"; }; - 6665EACE47279D3879B88B303EA8C471 /* Support Files */ = { + 6534F713CC51B933103019CC376A84C0 /* Support Files */ = { isa = PBXGroup; children = ( - E3D5FF0ED8DC8C460ACAF715A3DACD19 /* DoubleConversion-dummy.m */, - 94B9103E88D643C46E50A2568D73798F /* DoubleConversion-prefix.pch */, - 88397D67F1AC5325B9C5CDF7112BF6CF /* DoubleConversion.debug.xcconfig */, - BE506F4325CA171F9BC83739E72F4075 /* DoubleConversion.release.xcconfig */, + A90DBAA0157F1B7A71DA54AFC9323660 /* FirebaseCrashlytics-dummy.m */, + 1F490230F54F9D4FE6BE9E7B3D7BE4C6 /* FirebaseCrashlytics.debug.xcconfig */, + 0476F6EB62026F8945FCFB7A071961A9 /* FirebaseCrashlytics.release.xcconfig */, ); name = "Support Files"; - path = "../Target Support Files/DoubleConversion"; + path = "../Target Support Files/FirebaseCrashlytics"; sourceTree = "<group>"; }; - 667D684D412E4C6045F8D4DF9927300F /* FKPortForwarding */ = { + 663EB3E9314FF758852926E5B5E70186 /* Pod */ = { isa = PBXGroup; children = ( - 8352C4658640E252FE8BB25FCEDF2A0A /* FKPortForwardingCommon.h */, - 76F1A8FD599DF8E618FA93B58360A75C /* FKPortForwardingServer.h */, - E5DBA3610AA54AC09C951A55CEA789D4 /* FKPortForwardingServer.m */, + FF33429B257A3F2058A70B3165030403 /* LICENSE */, + 48608F85407523C563F08E0A856774F2 /* react-native-jitsi-meet.podspec */, + 7C3A22A1C1A1B46BA33F1841432460A6 /* README.md */, ); - name = FKPortForwarding; + name = Pod; sourceTree = "<group>"; }; - 6682A2D72E17E81E441765B56C5AD7BF /* Reachability */ = { + 6668AB8196A14109F58B7E3427852A96 /* Support Files */ = { isa = PBXGroup; children = ( - D6E2DBCF4B67D998B4EB021A9E07EAC8 /* GULReachabilityChecker.h */, - 2B718F26729C506A76A2B66E211E6927 /* GULReachabilityChecker.m */, - E531E7D2B3ED3E5A8881EEFD0CC0A77B /* GULReachabilityChecker+Internal.h */, - 071524D959DA1A66674ED6538F569B20 /* GULReachabilityMessageCode.h */, + E4201C99C3B6EA1D84374FE7D238F074 /* PromisesObjC-dummy.m */, + 08BC4F14D8C21AD5493AE3AAD10AFB48 /* PromisesObjC.debug.xcconfig */, + DC88A0066DA2D56B8BDD2F35EA19F97C /* PromisesObjC.release.xcconfig */, ); - name = Reachability; + name = "Support Files"; + path = "../Target Support Files/PromisesObjC"; sourceTree = "<group>"; }; - 66B22295C3DA10581CB53EA09351F463 /* RNFBCrashlytics */ = { + 66E5F3E253C92B056DD977ABD161C9CA /* Support Files */ = { isa = PBXGroup; children = ( - D004E755154C0609093CBA5A993FFB05 /* RNFBCrashlyticsInitProvider.h */, - 7EF1B4B664E008E8F33B1CBE45A07A6F /* RNFBCrashlyticsInitProvider.m */, - B7882807A6DD96AEF4AE5270F95E61EE /* RNFBCrashlyticsModule.h */, - AD664037CDFA6CCEDAAA356ABF4A0B56 /* RNFBCrashlyticsModule.m */, - FC9BAE212206265AB6B079A6022BADA8 /* Pod */, - 2162A14A4DD7552B05675CC2711CB9E2 /* Support Files */, + D222CD863DC0F5C199799A779CD0F404 /* MMKVCore-dummy.m */, + D5D4A35C039B449EEE26253887AF56B5 /* MMKVCore-prefix.pch */, + 336739DA7EA480F64F375E08C886BC99 /* MMKVCore.debug.xcconfig */, + 21BADC692D5F7B9ECF57058D26FD8E8A /* MMKVCore.release.xcconfig */, ); - name = RNFBCrashlytics; - path = "../../node_modules/@react-native-firebase/crashlytics"; + name = "Support Files"; + path = "../Target Support Files/MMKVCore"; sourceTree = "<group>"; }; - 672AF95080F815C951BE7C1CD6E27BE8 /* jsi */ = { + 6840231AA9584C555921309B24EDF0EE /* RawText */ = { isa = PBXGroup; children = ( - 124EB0925EE1CAB42EC4BBD5C77ED793 /* decorator.h */, - 19C40F199DC8A09E224DB48995827F5E /* instrumentation.h */, - D3CA87F3981BA1FAD1B5A90A2FB91D9D /* jsi.cpp */, - C9BE03A9ED4C0B01D14B481322AEEF98 /* jsi.h */, - 32C94E4DC8CC970EE989EA673AF074B6 /* jsi-inl.h */, - 8571823AA5D946194320312B28D9AEEF /* JSIDynamic.cpp */, - 83F0718D4AC46929A67616693A2E5E6A /* JSIDynamic.h */, - 8C1132CCBD5C35499E22128E3F54A07B /* jsilib.h */, - D5AB44E082B868273CCA855943AA3210 /* jsilib-posix.cpp */, - 3F5483E0672F46DDF80A6F09BA5152C4 /* jsilib-windows.cpp */, - 89A476ACB3FE57D02EC16766114B7E08 /* threadsafe.h */, + 8FB1C4D54632CC114605D22467F9372D /* RCTRawTextShadowView.h */, + 84FBA57EF83AB8BF7C5569DB8E1F6612 /* RCTRawTextViewManager.h */, ); - name = jsi; - path = jsi; + name = RawText; + path = Libraries/Text/RawText; sourceTree = "<group>"; }; - 67B7CC128AF431AA09BD756EAABC5DC6 /* FlipperKitLayoutPlugin */ = { - isa = PBXGroup; - children = ( - 302B252F9DADA18163B5E886774704D3 /* FlipperKitLayoutPlugin.h */, - F3DD32D017B1DA9E161BB9E0F4188B94 /* FlipperKitLayoutPlugin.mm */, - 944C0D1EFE3AB1A70D936F9AB2715AC3 /* SKApplicationDescriptor.h */, - 3751C8EE9A818AABDBD2B0660FC9FF6E /* SKApplicationDescriptor.m */, - 937111731B8DBCD33C8B4E822A0195D2 /* SKButtonDescriptor.h */, - 39AE4BCE95194D82309404D0B73449CD /* SKButtonDescriptor.mm */, - 7A2EDFBE8E6EBC1A2691133E5F859A12 /* SKDescriptorMapper.h */, - CABA488DABFBFA90F5E1369C3D813996 /* SKDescriptorMapper.mm */, - 83015F74B9F4F8612DBA0CD2A7132244 /* SKHiddenWindow.h */, - 8910ED61EA488A224272FCA22AD8C114 /* SKHiddenWindow.m */, - FF6FDC0558CA5B4149283A7623418B24 /* SKInvalidation.h */, - C2661B362B6625627DF372579E7AEF04 /* SKInvalidation.m */, - A2F0117A83EC190EDCF3EEEA2CB09250 /* SKNamed.h */, - 2C27E6A4B9DEE937229E32BDF9455656 /* SKNamed.mm */, - FB1CD31848D10613306C97D58F26A6AC /* SKNodeDescriptor.h */, - AE8CA691F749AEA3C9AE791BCF1E2D3B /* SKNodeDescriptor.mm */, - 40D77212AD7D72BB9EB317A8F71F76AC /* SKObject.h */, - D5931E02E7529784C22BB8BEB80A6E2D /* SKObject.mm */, - DD94706F88D0811C813652FD44EAA9F1 /* SKObjectHash.h */, - C231A474BA8817ABE62D624B50C23C9E /* SKScrollViewDescriptor.h */, - 86D3CC47B0C340A700E877DEF908FAA8 /* SKScrollViewDescriptor.m */, - 31C5EC4D0F956F3425D9D0AA293684FB /* SKSearchResultNode.h */, - CF052B7BAEBD12FB552E6AAA12CE3E99 /* SKSearchResultNode.m */, - 7581311455DB6CDA5EE85DCA93A6D7AC /* SKSwizzle.h */, - 62A93AAB3B73950E2B5F76E03DE1FD0F /* SKSwizzle.mm */, - A2C445EAF42760A0FA5EB239EA31565B /* SKTapListener.h */, - 343F5A180BBCD24462D71E00FBD98C87 /* SKTapListenerImpl.h */, - D19A4CA590DD20503C9910C053E7E6EC /* SKTapListenerImpl.m */, - 9A8C62FBCBEE317E39083D803E58E73E /* SKTouch.h */, - D900E79A9D933E573EB8C221244030C1 /* SKTouch.m */, - 754E234EEBF74BEB989FA3F5F1BC97FF /* SKViewControllerDescriptor.h */, - 9FC7A652DA51D9F0183EA2D12E37F94B /* SKViewControllerDescriptor.m */, - FBEBC8AE4B5592403820E4F187C46A48 /* SKViewDescriptor.h */, - C58BA3EBB523D3E170AA5B68803E20C3 /* SKViewDescriptor.mm */, - EAD20D2095CADB729BA7A29DFD8EFFDF /* SKYogaKitHelper.h */, - 25A3922725F2DB608224CDDA8A856D1A /* UICollectionView+SKInvalidation.h */, - 9A04AB43580B7A96DD95CED1945FA3D0 /* UICollectionView+SKInvalidation.mm */, - 41718BA175DA03A8FF8BD8BC05A1E6E8 /* UIColor+SKSonarValueCoder.h */, - 112FB65056DB5FBF8B435ACD05AF3E49 /* UIColor+SKSonarValueCoder.mm */, - 5617A0417C21E344068EC440BE7AE2FA /* UIView+SKInvalidation.h */, - 7656B7BFE45650CC91E9A7D6BC46B62C /* UIView+SKInvalidation.mm */, + 688745A3F75D2BAB3B7B0EE15271EE68 /* Pod */ = { + isa = PBXGroup; + children = ( + DDC59207513A0233D36A0B773EDBB157 /* README.md */, + 58B2EE3DF7047CCAA56AC7B3763EA29F /* RNCMaskedView.podspec */, ); - name = FlipperKitLayoutPlugin; + name = Pod; sourceTree = "<group>"; }; - 67BC0A4C87FEC2C6F4858B1AD83570AE /* Pod */ = { + 688B7192B776720FD841DC1AF098EB38 /* Support Files */ = { isa = PBXGroup; children = ( - 46B626453142EFDFCD5CFFCB077A10B4 /* React-RCTVibration.podspec */, + 2AC6B0345C5544562BDC46E803EAA9A1 /* UMReactNativeAdapter-dummy.m */, + 2DD583EEDB3DA36F3471DD76E1CDB475 /* UMReactNativeAdapter-prefix.pch */, + 2D378B6353231BCF643682C809A2179A /* UMReactNativeAdapter.debug.xcconfig */, + D6918D770542844C8CDEABAEE8FE34CE /* UMReactNativeAdapter.release.xcconfig */, ); - name = Pod; + name = "Support Files"; + path = "../../../../ios/Pods/Target Support Files/UMReactNativeAdapter"; sourceTree = "<group>"; }; - 682F4457778748FE0956118F9A950718 /* Support Files */ = { + 68A840BBAFD32D0B957C61178D5963A7 /* Support Files */ = { isa = PBXGroup; children = ( - 776B3012326972E4E0C073ECF6219795 /* React-perflogger-dummy.m */, - 524B0CB6BB24B62F20F2D2771E91A839 /* React-perflogger-prefix.pch */, - 537D942E7F8CDD34D9798800DFD7B3E1 /* React-perflogger.debug.xcconfig */, - 3B44AFCCB749BD05EB75EF3F8E1DE2E5 /* React-perflogger.release.xcconfig */, + 256DB4FCB97F81177E7B7573D07469F6 /* EXPermissions-dummy.m */, + 2FEEBF48A9227E9E99BE90D759F18FD3 /* EXPermissions-prefix.pch */, + E3DAD9C92A1A82542F125C1530FC634B /* EXPermissions.debug.xcconfig */, + 37D8C5D5EA643CB40090F93E9DDA784C /* EXPermissions.release.xcconfig */, ); name = "Support Files"; - path = "../../../../ios/Pods/Target Support Files/React-perflogger"; + path = "../../../ios/Pods/Target Support Files/EXPermissions"; sourceTree = "<group>"; }; - 68402E3A17BC67549AEFCE91A61BF371 /* Support Files */ = { + 68C1A7AB01D09B3F5FA918E01A578F56 /* Pod */ = { isa = PBXGroup; children = ( - 8B5EA7310EF8CC88530EBDC323C4F645 /* RNScreens-dummy.m */, - BACA1141597E10199EE9225185C0479F /* RNScreens-prefix.pch */, - A87434E572253A7172B76006412A08CB /* RNScreens.debug.xcconfig */, - 2F91A48D4257E40AAA818AB8B7100A38 /* RNScreens.release.xcconfig */, + F004A64B4940A02B0785F64F19050AD9 /* FBLazyVector.podspec */, ); - name = "Support Files"; - path = "../../ios/Pods/Target Support Files/RNScreens"; + name = Pod; sourceTree = "<group>"; }; - 69D3D961AC07C97B931878E118178A61 /* Support Files */ = { + 68CAE3B473EA141D1D9A05AE67464738 /* DevSupport */ = { isa = PBXGroup; children = ( - 9F857244E538483C660C5D21E4A4E1C4 /* UMSensorsInterface.debug.xcconfig */, - 25D1F282AA2642EE4323F894908D4CC4 /* UMSensorsInterface.release.xcconfig */, + 9F30AFEBBC37000168C10B0BB40DE901 /* RCTDevLoadingViewProtocol.h */, + 231D4D4A3861A4F8968643D9B4657D2A /* RCTDevLoadingViewSetEnabled.h */, + 42739D7080FC15DE6779B5285FCB3C66 /* RCTDevLoadingViewSetEnabled.m */, + 1CBDE06F5604623677F48CC521E897F4 /* RCTInspectorDevServerHelper.h */, + C1F7E1EEB19A423B1476F31F15A38E33 /* RCTInspectorDevServerHelper.mm */, + 99058BE0A3D642B8735DB2DA74E35876 /* RCTPackagerClient.h */, + 35AC0007576C1B8B1DF8D900E25E8C0F /* RCTPackagerClient.m */, + 19168441D5C8B571BF98E174D35C8DFB /* RCTPackagerConnection.h */, + E556E64E8575166C57A3D7ECD8CF7122 /* RCTPackagerConnection.mm */, ); - name = "Support Files"; - path = "../../../ios/Pods/Target Support Files/UMSensorsInterface"; + name = DevSupport; + path = React/DevSupport; sourceTree = "<group>"; }; - 6A84CB4A517EAA5C9254E881F3AC576C /* Network */ = { + 69E11B620648CA8B2699E3CC2AC431C2 /* EXHaptics */ = { isa = PBXGroup; children = ( - 3AC7AC6810C2996CF21B58F57C3F54A4 /* GULMutableDictionary.h */, - 1B66C0BC893BAE6AF6FA76CBE2469AA8 /* GULMutableDictionary.m */, - 85BCB73B53578F6422484F9D3075B556 /* GULNetwork.h */, - 28862980D7EC5653DE2716BB9B13C94C /* GULNetwork.m */, - 5E3947DC22A5110AC3C2BEA168E2B5E5 /* GULNetworkConstants.h */, - 920923E2DB170384DABDA9E8EC651393 /* GULNetworkConstants.m */, - E5FBFF562348BFED4DA0A752A2AEC5F5 /* GULNetworkLoggerProtocol.h */, - 765C7F6D692CD6A890EC5C076DD04165 /* GULNetworkMessageCode.h */, - 7B2914B9B967D4181977345B5C172F7D /* GULNetworkURLSession.h */, - 6E981642F410BB1CAC1402953B1C9C35 /* GULNetworkURLSession.m */, + 983C766C4E4BF3B284BAC9CB16A078FB /* EXHapticsModule.h */, + 98F98571D2236847E60AEA194772C9F8 /* EXHapticsModule.m */, + BDDF199A86C7282E7630A0690F40DDCD /* Pod */, + 1AC96B4540C77E60DFC5DD4EFC60950D /* Support Files */, ); - name = Network; + name = EXHaptics; + path = "../../node_modules/expo-haptics/ios"; sourceTree = "<group>"; }; - 6ABD67D964FDB8D39BBD2A098FE3D095 /* Pod */ = { + 6B148E9E8B26A36C6CDEEEE033F80F59 /* Support Files */ = { isa = PBXGroup; children = ( - E8BF05003B6E1A74DEB132D265F033A8 /* BugsnagReactNative.podspec */, - 1ECB98E494D26D3CE6B88FA3164715A5 /* LICENSE.txt */, - 14F6318BFB1F3F710D6A8DB51F413F84 /* README.md */, + 21D105099C4673A692A372F21B62A9BF /* UMFaceDetectorInterface.debug.xcconfig */, + 140A58745163FD40C6736690EA71078A /* UMFaceDetectorInterface.release.xcconfig */, ); - name = Pod; + name = "Support Files"; + path = "../../../ios/Pods/Target Support Files/UMFaceDetectorInterface"; sourceTree = "<group>"; }; - 6B8177413FE23A44A20772483FB6A2DB /* Breadcrumbs */ = { + 6B1D0AA45AB51238FE05A676E4B2BE95 /* Pod */ = { isa = PBXGroup; children = ( - CCB97095D881D3E0D5625AFC68D06EA2 /* BSGNotificationBreadcrumbs.h */, - EB917A79529EC54B6B6890E1CC8DAB5D /* BSGNotificationBreadcrumbs.m */, - F759368598F3CB12858EFD5919BB5FB1 /* BugsnagBreadcrumbs.h */, - C60F0BD5F22F65B8ECCCB31C20A6C5E1 /* BugsnagBreadcrumbs.m */, + DC1A2C84C6F73AD4E0C952D4528E7E11 /* React-RCTVibration.podspec */, ); - name = Breadcrumbs; - path = Breadcrumbs; + name = Pod; sourceTree = "<group>"; }; - 6D630155EE7B8185E2F2398D2112A3A1 /* Support Files */ = { + 6BC82FF7BC89E4C883451B42F4B1FF76 /* Support Files */ = { isa = PBXGroup; children = ( - 1E8378298D5B969F8DE52819062D87F2 /* EXWebBrowser-dummy.m */, - D3CB59A60FE13ECB21FE7841B42C6FF9 /* EXWebBrowser-prefix.pch */, - 33AC82FB3AC41D5507F9362E56EF96D8 /* EXWebBrowser.debug.xcconfig */, - 56C209F75E540ED4D8203CDE11F2E1B8 /* EXWebBrowser.release.xcconfig */, + 3DD774C93B66738489E43B1BB2607D8C /* UMCameraInterface.debug.xcconfig */, + 51FA8CDDD40B965481C0EC0F2AF22AB5 /* UMCameraInterface.release.xcconfig */, ); name = "Support Files"; - path = "../../../ios/Pods/Target Support Files/EXWebBrowser"; + path = "../../../ios/Pods/Target Support Files/UMCameraInterface"; sourceTree = "<group>"; }; - 6E030B897EB9A69E0A685B3A7DE38DAD /* Support Files */ = { + 6D1C04B70FBC60BC51441A66DA38F65F /* UMSensorsInterface */ = { isa = PBXGroup; children = ( - 0ED04B806B0C2054B1FD194C3753377E /* React-RCTLinking-dummy.m */, - 31FD48A1A79697ADAB2C8ACE3EF44707 /* React-RCTLinking-prefix.pch */, - B3D315E54667C3E03E9D6864813B0E38 /* React-RCTLinking.debug.xcconfig */, - 9E2713CA157638DEAFAC794B8097287C /* React-RCTLinking.release.xcconfig */, + 772EC68C8E7214FFA85E6340505A8261 /* UMAccelerometerInterface.h */, + A7AE4C112A9C0E8D23130D66015256A6 /* UMBarometerInterface.h */, + FF28BAB7193AAECF5B3B5BB51BFE1922 /* UMDeviceMotionInterface.h */, + 86AA43354781EB3FC10AB9F51D4CE599 /* UMGyroscopeInterface.h */, + 96F081335C712C7621EB3E7D03F23609 /* UMMagnetometerInterface.h */, + 025C2F7DCB80EB9DDBA8C5D02D4B590C /* UMMagnetometerUncalibratedInterface.h */, + EC4EB637FE316C6C8F49AA8FFADA0878 /* Pod */, + AE5CFB3A14CE1A67B82CBCF71FF520A7 /* Support Files */, ); - name = "Support Files"; - path = "../../../../ios/Pods/Target Support Files/React-RCTLinking"; + name = UMSensorsInterface; + path = "../../node_modules/unimodules-sensors-interface/ios"; + sourceTree = "<group>"; + }; + 6DE2F59F5A8B4C981A1B0BE9092B9278 /* GoogleDataTransport */ = { + isa = PBXGroup; + children = ( + BA188DBCECDDE254F17CA79FED920D28 /* cct.nanopb.c */, + A2C32E0F0891CF5F726A67ADB19EBE7E /* cct.nanopb.h */, + 4ECF4374A8D7D6C1F7A4B0CC89421BA4 /* GDTCCTCompressionHelper.h */, + 6FA90B0FB430223A9FD2E50C7AD3D801 /* GDTCCTCompressionHelper.m */, + E332AEF40249C0BD861884BBD88AE916 /* GDTCCTNanopbHelpers.h */, + 1B585001B92D572D8D108B01DE563D87 /* GDTCCTNanopbHelpers.m */, + 492208BA50FEC02B8F120B496081CF9C /* GDTCCTUploader.h */, + 9778B10B7FF21E856F84F2337269C962 /* GDTCCTUploader.m */, + 3543984759986161C90E987C74DB347E /* GDTCORAssert.h */, + 866281292A2FFDF8E8CAC629D7B98DA1 /* GDTCORAssert.m */, + A2362C88A1AFCFDEAA6AD7F6E6D5EE7A /* GDTCORClock.h */, + 1333D058D8C0815919B49B15E4565AE7 /* GDTCORClock.m */, + 053CA373BD5F378835A56B7120D20A24 /* GDTCORConsoleLogger.h */, + 3517D861B595A7821184640F0BE4490D /* GDTCORConsoleLogger.m */, + 8EB0521444F44118EFB8822BEFBACBBA /* GDTCORDirectorySizeTracker.h */, + 296EDB06B8D6AAC2D22E9D6253756607 /* GDTCORDirectorySizeTracker.m */, + DF3A7061D50176ED65E5FE98AE32410A /* GDTCOREvent.h */, + 920CE168839BE2662068B5F88C5F6B81 /* GDTCOREvent.m */, + 42083A5D7C30970CA64E67A67A008624 /* GDTCOREvent+GDTCCTSupport.h */, + F57E12BAB618666EA8CF634EB94E0821 /* GDTCOREvent+GDTCCTSupport.m */, + 4CE4E15A384DFF38BD2A870862BE00FB /* GDTCOREvent_Private.h */, + DD6C3B25204BF0888E2875F69B89C495 /* GDTCOREventDataObject.h */, + 662A01B30096B568A3C97F94CA374EDC /* GDTCOREventTransformer.h */, + 119D24750721B1EC2D973410EB358604 /* GDTCORFlatFileStorage.h */, + 54946FE14E42A0C43FE23C82BCBAFBAA /* GDTCORFlatFileStorage.m */, + FDD67C7EDC8BEC5BC16D4AA698E30017 /* GDTCORLifecycle.h */, + 48CC86A9C89E089A633B393E947C6B89 /* GDTCORLifecycle.m */, + FB4609297D7EBEB33A1DEBB6B4C9DBC6 /* GDTCORPlatform.h */, + 281E167C3CD28D913FFC0D76385BA698 /* GDTCORPlatform.m */, + 02CD3AEF0F712A99CEE6286238AF66F6 /* GDTCORReachability.h */, + 50A32D19B29D8D95569BA66C67C2598B /* GDTCORReachability.m */, + C0B8F248902305759A0F7F3E507345DB /* GDTCORReachability_Private.h */, + 0B300BB25EF30C17CBE911EBDDC1D628 /* GDTCORRegistrar.h */, + 3FC896C6C361F2515F4B433C9199128E /* GDTCORRegistrar.m */, + 421188BB62E77BEEEC88633D0C21785B /* GDTCORRegistrar_Private.h */, + 7CD0812C8669FB0FF221A36F2337B9B0 /* GDTCORStorageEventSelector.h */, + 7F3E1AC8AAB339DB9B31A3E7B939B2D9 /* GDTCORStorageEventSelector.m */, + C0B3EE55CDCAA648213EF694E824B6B4 /* GDTCORStorageProtocol.h */, + 84A31B1151BF5A6F7ED96F281DED34D8 /* GDTCORTargets.h */, + D593B296E32B92BB806548E326673D7A /* GDTCORTransformer.h */, + D4BE5218ADF076BE760CD30650DFEFE2 /* GDTCORTransformer.m */, + BAC841220BA4DC6A7D77051B7DC0BEB3 /* GDTCORTransformer_Private.h */, + CE57DF3068D571E8ED1E135125146E4A /* GDTCORTransport.h */, + BC0FFFC1A8F1650CE3B1575F96822525 /* GDTCORTransport.m */, + DDC37DACDEA1431F770DE863913C358C /* GDTCORTransport_Private.h */, + F1119CB26F58CECB80B0BDE92CDE187B /* GDTCORUploadCoordinator.h */, + 9DC767DC904E88F95B01EC1884C58EAD /* GDTCORUploadCoordinator.m */, + 65CC2C68810A23A3FCED86E4F8155C89 /* GDTCORUploader.h */, + 20CE23FE0767DB939DCE8E3DAEA26426 /* GoogleDataTransport.h */, + 0CDF3A70267A851C613E42137BE69A31 /* GoogleDataTransportInternal.h */, + 8DA835E9075C9368690886559794ABF1 /* Support Files */, + ); + name = GoogleDataTransport; + path = GoogleDataTransport; sourceTree = "<group>"; }; - 6E299EEA2EE5BFD46A7DFBF967F08984 /* Singleline */ = { + 6DEFDD5642349BB692CDB2D60017A21C /* RNDeviceInfo */ = { isa = PBXGroup; children = ( - 4C4E63781EB5282F7FBEC911DEA07DD1 /* RCTSinglelineTextInputView.m */, - B79E44E27992535930335B6EE61DC447 /* RCTSinglelineTextInputViewManager.m */, - 107BF0D79A81DCBF9F2C7251D501A63A /* RCTUITextField.m */, + 7EF29750461614E23F0E518C38D343D7 /* DeviceUID.h */, + 055F0E9CE681A8EA4F97ED0376B32CF3 /* DeviceUID.m */, + 4F8AF30685BDE2D3E73B41E511348C4B /* EnvironmentUtil.h */, + FB2EB556BBFFC3DD8CF36FA741D0E7FE /* EnvironmentUtil.m */, + 57F95CA5D9F767EBB9A4AE6AE0B43914 /* RNDeviceInfo.h */, + 5BFE91A875DDEAD9CC8256B23F04BF88 /* RNDeviceInfo.m */, + B8BA06CD611674D0F071CEECA69402B7 /* Pod */, + F4E2319E5893277772D4F272B233E9B8 /* Support Files */, ); - name = Singleline; - path = Singleline; + name = RNDeviceInfo; + path = "../../node_modules/react-native-device-info"; sourceTree = "<group>"; }; - 6E327E9A663C056D21BD068F8AAB5979 /* Recording */ = { - isa = PBXGroup; - children = ( - A9341F7BF84C0221A1AD1B597F136AD2 /* BSG_Jailbreak.h */, - 432D193BB206D15FA4F612B0D3090FBC /* BSG_KSCrash.h */, - 92043D3966AF5FC9C59E6083D1D92325 /* BSG_KSCrash.m */, - D928F49253BF59C0396D955092552CE1 /* BSG_KSCrashAdvanced.h */, - 971CD715DCCACC85D5AB2AD820C9B7A7 /* BSG_KSCrashC.c */, - EEEF5FAAE4B42250CBF1B3FF63D486E3 /* BSG_KSCrashC.h */, - 98F664E7D76100C647C47911BF525392 /* BSG_KSCrashContext.h */, - 829C9C9E602BAD1C89CF50E09A76222B /* BSG_KSCrashDoctor.h */, - EA26F49E2AADEDB96790941D0189B8D0 /* BSG_KSCrashDoctor.m */, - 43AF0B370689AA129AD26A1065F12CAE /* BSG_KSCrashIdentifier.h */, - 4EC9214E320BBD039409478C85CB3D4E /* BSG_KSCrashIdentifier.m */, - 4B5B3779D6AB8FEFC561F8749A3E7170 /* BSG_KSCrashReport.c */, - 789E43D8893122D597A2C48EDB7CFD7C /* BSG_KSCrashReport.h */, - 09980FBD264D2DD8D9054DC82F6EA5F5 /* BSG_KSCrashReportFields.h */, - 140BF54141B2674E32CB6707116B3D52 /* BSG_KSCrashReportVersion.h */, - 0A7315913B6B00C96B1969BC6DB6EA51 /* BSG_KSCrashState.h */, - A81B190C680DAF19D634822AB23DBCAD /* BSG_KSCrashState.m */, - 6BB250331658AE5163B01B81D50B014F /* BSG_KSCrashType.c */, - D20343DBF407D8021B5FCD3EC802C4E2 /* BSG_KSCrashType.h */, - 72D924B8236E2AF165F6D5F8354A471D /* BSG_KSSystemInfo.h */, - 357963FAA9DC468CA01E17439E7FDD5D /* BSG_KSSystemInfo.m */, - 7E82C6B85AA6A1A43C7EA0B9C5B0DBA1 /* BSG_KSSystemInfoC.h */, - E9A4E43ED98092B712DD6E93E04C7C30 /* Sentry */, - CEED4DC9EE9C33EE5D7640838EBF8A41 /* Tools */, + 6E5D6ED50617AAD58DB0A610CECFBBB6 /* React-RCTBlob */ = { + isa = PBXGroup; + children = ( + 9F429CEB783585ECA1518DDF2AA5ACA0 /* RCTBlobCollector.h */, + 0C70C99F15D0DDBF409A862AC97E6D30 /* RCTBlobCollector.mm */, + B30E609D568365127079DE15F8F18390 /* RCTBlobManager.mm */, + E9D6318A61A6F05A93D364FA8B61523A /* RCTBlobPlugins.h */, + AC0791A944E94810FB0D0C9E34E28DAE /* RCTBlobPlugins.mm */, + 62CB6807706E44E49977C5FB82C6BCC0 /* RCTFileReaderModule.mm */, + B1F2D29FA93B8B3CDD77C3252D094099 /* Pod */, + BDD84B073D4C2C4D6F681232A6BCC29A /* Support Files */, ); - name = Recording; - path = Recording; + name = "React-RCTBlob"; + path = "../../node_modules/react-native/Libraries/Blob"; sourceTree = "<group>"; }; - 6F5C12627FE5AA5217A5A9F537485EA2 /* GoogleAppMeasurement */ = { + 6F61755232548064EB42E4964FC94041 /* Support Files */ = { isa = PBXGroup; children = ( - D0E11B09D36C3939B7FD43A42B866D1E /* Frameworks */, - 7A39CD658434E837FF40C2C8B0F9FBC2 /* Support Files */, + D4CC268A186C2665E8DAB88EEFCD9225 /* RNCAsyncStorage-dummy.m */, + D51D9799E96AB9D38F807DEE930E673B /* RNCAsyncStorage-prefix.pch */, + FBD7EC5C4E9BF5E79948261B286C57ED /* RNCAsyncStorage.debug.xcconfig */, + 33F4C3AC574989647622392F60B874C5 /* RNCAsyncStorage.release.xcconfig */, ); - name = GoogleAppMeasurement; - path = GoogleAppMeasurement; + name = "Support Files"; + path = "../../../ios/Pods/Target Support Files/RNCAsyncStorage"; sourceTree = "<group>"; }; - 6FE9633002568CCB9846A275B09257DF /* Pod */ = { + 6F7027CEDDC02CAD5115996B6967F6BF /* Pod */ = { isa = PBXGroup; children = ( - 69389DC458827669951C8BAA959A038A /* RCTTypeSafety.podspec */, + BE1BEE680D245D53EB7CC5864492A3E6 /* LICENSE */, + 636DA62FE07159A9D3887283ECA95722 /* react-native-restart.podspec */, + EF2FFA3AFACCC1F3B06FCF1D81325D1B /* README.md */, ); name = Pod; sourceTree = "<group>"; }; - 6FF1AAAF8C8C3F82DA12A57302173231 /* Support Files */ = { + 6F714B0B02838EF68E0B0B738E5E153D /* libwebp */ = { isa = PBXGroup; children = ( - D6140EAA04937CCDC62246EB577E04F8 /* React.debug.xcconfig */, - 4B8E3BCF06F973E8F0D678D9DD3178ED /* React.release.xcconfig */, + B8F0470ADBCDB4A9F60C6C568C43D474 /* demux */, + 6FBDE6CB0D097198A2ECF84878F61A7D /* mux */, + C76865D1D6488E859F63D0B8B65A9047 /* Support Files */, + A67E53A4168B9AB3A99F768943EED973 /* webp */, ); - name = "Support Files"; - path = "../../ios/Pods/Target Support Files/React"; + name = libwebp; + path = libwebp; sourceTree = "<group>"; }; - 70BD345152219405D7B9B498749DE2F4 /* RNRootView */ = { + 6FBDE6CB0D097198A2ECF84878F61A7D /* mux */ = { isa = PBXGroup; children = ( - 2C1EE05A18109AA23C61F78E7E447A87 /* RootView.h */, - A49F25B700EE4A6775B874F4E8AD3D62 /* RootView.m */, - 08493E7480FC1038F8F5F21F1D41AA2B /* Pod */, - 722082939E49DC0C18F514CD0A018C9A /* Support Files */, + 7ADFE15812F3798C25514138FF72D250 /* anim_encode.c */, + F238D27159B2F303D261196FF6A23BB9 /* animi.h */, + D42F2375680C6A11007073F4136BFBBC /* mux.h */, + B51E46FF0D5413499FCA7622EFBAD409 /* muxedit.c */, + 7B33457AAB18BD536BCA858D33C2EF4D /* muxi.h */, + 25FC21E2159D275A133F6CE2CC96B31F /* muxinternal.c */, + B777DC6A61C93DBEA4C43306D00F6740 /* muxread.c */, ); - name = RNRootView; - path = "../../node_modules/rn-root-view"; + name = mux; sourceTree = "<group>"; }; - 71040A7C01F867C4BBC1C3486A7E176B /* Support Files */ = { + 703E3A2D66C074EB3FE4B1E6B2F5B6F2 /* Pod */ = { isa = PBXGroup; children = ( - 08F6B390C35EA07D9D7C8C2945CEC55D /* React-Core.modulemap */, - 9AE69C4075F10FB677FDB33EC3800CD5 /* React-Core-dummy.m */, - 23EAC0B27620F9F7EA42AD35A54E3752 /* React-Core-prefix.pch */, - 6A19D8BD47C70E27B2D60A385E031D01 /* React-Core-umbrella.h */, - B8F9958D28A43B51CE55A9E673B47073 /* React-Core.debug.xcconfig */, - 306E981283C96604480F569449C71241 /* React-Core.release.xcconfig */, - A3ED697F0E0E24C8E2A51F3891D132DB /* ResourceBundle-AccessibilityResources-React-Core-Info.plist */, + 8471010C6B4D961AEC95508431E578FB /* UMBarCodeScannerInterface.podspec */, ); - name = "Support Files"; - path = "../../ios/Pods/Target Support Files/React-Core"; + name = Pod; sourceTree = "<group>"; }; - 7136B12C4957CB04016A9076AF6B7651 /* RCTAnimationHeaders */ = { + 7051A920BCFD95189911A2492637FDB7 /* react-native-document-picker */ = { isa = PBXGroup; children = ( - 1C88629AF7D9C7E7E38F3E17677FC2DC /* RCTAnimationPlugins.h */, - 275B06783B4CBD407AB1C9906AB4FC35 /* RCTAnimationUtils.h */, - 37BC4DD8E2155A8B4DB3B8EB9AB6022C /* RCTNativeAnimatedModule.h */, - 5922923155F3938505DC98B5FD1F7886 /* RCTNativeAnimatedNodesManager.h */, - 06384479D373E19F9C14A08E0BFF3788 /* RCTNativeAnimatedTurboModule.h */, - 52F2A33587AF755FD188094DA4F22D31 /* Drivers */, - 0928B51CE3E1E654EF6139AEC2243BD1 /* Nodes */, + CFACE0911429A6BA3F871B013D8B2399 /* RNDocumentPicker.h */, + 2F00848A4EE9AF993619862BE538B869 /* RNDocumentPicker.m */, + AD05C529BCB19E98F091AE378DD5E387 /* Pod */, + 4354198A2323C0EBC1C8419D2D12F036 /* Support Files */, ); - name = RCTAnimationHeaders; + name = "react-native-document-picker"; + path = "../../node_modules/react-native-document-picker"; sourceTree = "<group>"; }; - 717812801402C3A654DB9201AF7EF793 /* Multiline */ = { + 716951C8AA7F3C9E676A262EF2C2DD89 /* Support Files */ = { isa = PBXGroup; children = ( - B4507C7DFD6A67ED8484D249AA895C20 /* RCTMultilineTextInputView.m */, - 44D4034EE561C21C1F6F12E807E4ABC5 /* RCTMultilineTextInputViewManager.m */, - 0B74A30016078BE56D8EE4ADF85FB7C6 /* RCTUITextView.m */, + 39E7ED39D164073BB296073CBD61160F /* FlipperKit.modulemap */, + 17E4C5A160AADEA7769B84DF7FBE0F0E /* FlipperKit-dummy.m */, + B0A99655DC65C3E62F66CA74D06F4888 /* FlipperKit-prefix.pch */, + 62CDF72440C72EDDC9431E8C76523788 /* FlipperKit-umbrella.h */, + 4449FDDF4708DFF964DACA95B2ED2E07 /* FlipperKit.debug.xcconfig */, + 04A9208A06438BA8697BB0565738EFED /* FlipperKit.release.xcconfig */, ); - name = Multiline; - path = Multiline; + name = "Support Files"; + path = "../Target Support Files/FlipperKit"; + sourceTree = "<group>"; + }; + 728C643BF84A753FF5E6C265143FA73A /* DoubleConversion */ = { + isa = PBXGroup; + children = ( + 57A406CB01F26683389D18C435BC8458 /* bignum.cc */, + 4F19EBB764AAEA5EFBA09D04D4CD5CE7 /* bignum.h */, + 7B649321AF25C085837E8A173D0EC236 /* bignum-dtoa.cc */, + D6F26ACEC8B343A1960C63C5B6C5CB66 /* bignum-dtoa.h */, + B8EAD51533CCC8510B05C61167CF30C1 /* cached-powers.cc */, + C92DFEB7E0726FD3ED0828A3E897A8C8 /* cached-powers.h */, + B07548603CA2ADF5B6A45D3C2F0A74E5 /* diy-fp.cc */, + B19C5C8B6FBF23E225D37116C98A1A26 /* diy-fp.h */, + 2F16CC85872CDD00A5479F6196EC100F /* double-conversion.cc */, + 0DDC858D4AD0F13BD80D03A8B2525311 /* double-conversion.h */, + 9EA70BC335E7EFA9FDBBBF88EC1184D1 /* fast-dtoa.cc */, + 0E05463CDBE3D07BACC3A485DCB768FC /* fast-dtoa.h */, + 8AC4306C8753214EDCABE8E3DDEC8F54 /* fixed-dtoa.cc */, + D37A0A62C432572579D7169FF41FE511 /* fixed-dtoa.h */, + D38D8A458E5252FB25BD211D87029119 /* ieee.h */, + 7F7AD7BC28C9471F9722B61DA33E2C02 /* strtod.cc */, + D03DD3D9967691C8C338FD67FC15AD65 /* strtod.h */, + 8E666680A1331834563A1F790787D4D5 /* utils.h */, + 9605107BC3FEBB16054F5B349F87E900 /* Support Files */, + ); + name = DoubleConversion; + path = DoubleConversion; sourceTree = "<group>"; }; - 719E02D3C4FC8F494174E6D5C0CAA682 /* Pod */ = { + 72F2B2E0E0FA993788919579FE3C78F1 /* Support Files */ = { isa = PBXGroup; children = ( - FDBD0C57A0C9A4AFF777B7532C045201 /* UMConstantsInterface.podspec */, + 20BEC0350CD783ED0EDECA8B78636C09 /* React-cxxreact-dummy.m */, + ED5E5CD0AAA69F7F9A275BD457441B33 /* React-cxxreact-prefix.pch */, + 369A28EC323090477F1FBA5CFEA5C82F /* React-cxxreact.debug.xcconfig */, + D734C3BFED52867A5EF766D67D2FE2CD /* React-cxxreact.release.xcconfig */, ); - name = Pod; + name = "Support Files"; + path = "../../../../ios/Pods/Target Support Files/React-cxxreact"; sourceTree = "<group>"; }; - 71B21CD7D6EAC54B42A102151320A96C /* Pod */ = { + 739E2A59F32482CEA406F47E21B2185B /* Pod */ = { isa = PBXGroup; children = ( - 293023BA89AA14C83B86A99FC19C66A2 /* React-cxxreact.podspec */, + 2F4D935444D02CED804044FDC57BFB0A /* LICENSE */, + 1A5605A003470528997BEEEC9427041E /* react-native-appearance.podspec */, + AA1C73746D6C58C509F1895BD311E80E /* README.md */, ); name = Pod; sourceTree = "<group>"; }; - 722082939E49DC0C18F514CD0A018C9A /* Support Files */ = { + 74554376B65AAC2BCFDFDBFE7B85D470 /* Support Files */ = { isa = PBXGroup; children = ( - 7E82EE73F5EEB92B1F189A5C87C94C90 /* RNRootView-dummy.m */, - F947BA1DC1389531D34C18DE2C6E1145 /* RNRootView-prefix.pch */, - 7F391CE3D6B0FE9ACF4401557839803D /* RNRootView.debug.xcconfig */, - 52051000F9BC6625B82A6F74204791A8 /* RNRootView.release.xcconfig */, + 81BE5C5FC940166005A5A95CCFA29123 /* UMBarCodeScannerInterface.debug.xcconfig */, + 436D5E66CE980710C42CC88D6709A5C8 /* UMBarCodeScannerInterface.release.xcconfig */, ); name = "Support Files"; - path = "../../ios/Pods/Target Support Files/RNRootView"; + path = "../../../ios/Pods/Target Support Files/UMBarCodeScannerInterface"; sourceTree = "<group>"; }; - 72FB0D5AEEE2347D17F36456B212A206 /* AppDelegateSwizzler */ = { + 74768709F0B07314B8885CF4DB141024 /* Pod */ = { isa = PBXGroup; children = ( - 4FD51AC155A82E1BD08CC8EEB840440C /* GULAppDelegateSwizzler.h */, - F4DE545BA22392C8F815EBCF42429004 /* GULAppDelegateSwizzler.m */, - 181AF9851716867B9D19B12D9C435955 /* GULAppDelegateSwizzler_Private.h */, - D2CB543418A0278B8EA4AF0B5E8165B1 /* GULApplication.h */, - 842CE69EF38520DDAA52171D3B28A041 /* GULLoggerCodes.h */, - 843C93882E727468AB416A5D1983E793 /* GULSceneDelegateSwizzler.h */, - 842663EF20781EC453C3AB321DD4BF19 /* GULSceneDelegateSwizzler.m */, - BDA60B5F2263D814E171E633B919C049 /* GULSceneDelegateSwizzler_Private.h */, + E7068CC5C72E5A4B01423730674BCAE8 /* LICENSE */, + 0B6945C2978DB275FDA87206648F27EE /* react-native-blur.podspec */, + 3935CBDBB3CD2F18129715691E122F96 /* README.md */, ); - name = AppDelegateSwizzler; + name = Pod; sourceTree = "<group>"; }; - 73032D7ABFA5F5EC43ADEF910CFBCF21 /* Pod */ = { + 74840D8FF4184011D5ED304B153EB149 /* SDWebImage */ = { isa = PBXGroup; children = ( - B126233D13D7E7E44723CA60B4D89984 /* LICENSE */, - A3C338F47E0F3CD612CD2E4833E1BD3F /* README.md */, - D459214CFD30F80EBC830BD08EBBA7B9 /* RNCAsyncStorage.podspec */, + 61FDAB1E2DCFBF30A6E0C4B7DC9B8A3E /* Core */, + EC75C0595DFFF3D7C793D66B440B3CA4 /* Support Files */, ); - name = Pod; + name = SDWebImage; + path = SDWebImage; sourceTree = "<group>"; }; - 7383E688697BCB70812C71EB0457B46D /* Support Files */ = { + 74C19D8F1E1604BF889526E11C82CFAE /* Support Files */ = { isa = PBXGroup; children = ( - A9A235A975FFA925CF1A128115C1D9A2 /* glog-dummy.m */, - C41C8A2FA397BDDA73801BC5E52EAD9D /* glog-prefix.pch */, - 828CB40D123F17957991467978968C8E /* glog.debug.xcconfig */, - EA80C6CC551744CB4EE5BF2A056CF5B1 /* glog.release.xcconfig */, + B2F4EC6DC896E7B729A777B3662E1116 /* GoogleUtilities-dummy.m */, + 0A9ABE163B711F9BB4A60628DCA7F037 /* GoogleUtilities.debug.xcconfig */, + 1440C979E2AE0BA095EE73AB76241BD7 /* GoogleUtilities.release.xcconfig */, ); name = "Support Files"; - path = "../Target Support Files/glog"; + path = "../Target Support Files/GoogleUtilities"; sourceTree = "<group>"; }; - 751EF41D8D7AA945AF43D96BCC74634A /* include */ = { + 74EBEFF16379188FE002F60443566540 /* Support Files */ = { isa = PBXGroup; children = ( - FEDF0F0255067333E30BE5FA68328373 /* Bugsnag */, + DDFF6E2CEC99C6098D7C60394C9AF956 /* Flipper-DoubleConversion-dummy.m */, + 0B084E28B5044089BE68E914CAF59D5A /* Flipper-DoubleConversion-prefix.pch */, + E6C55CDB3C7EEB76F1BDEC8B84C08B70 /* Flipper-DoubleConversion.debug.xcconfig */, + E7A328D28422E92147AD1F7451D341BB /* Flipper-DoubleConversion.release.xcconfig */, ); - name = include; - path = include; + name = "Support Files"; + path = "../Target Support Files/Flipper-DoubleConversion"; sourceTree = "<group>"; }; - 759853FBE6212AD6A2ABD36D16024E1F /* Pod */ = { + 754270423BF0585DCC816E300640291D /* Pod */ = { isa = PBXGroup; children = ( - 343390246A60444A23488A674E808245 /* LICENSE */, - E2FEA075AAC34B17ECD9903D379DE845 /* README.md */, - 69CBDAEC21CED6734106C954B1F4AB29 /* RNReanimated.podspec */, + 924E2BA21366C7E3308595E200626D21 /* React-callinvoker.podspec */, ); name = Pod; sourceTree = "<group>"; }; - 76CAC2D2FD5770A1824626F10F1F57FC /* Brushes */ = { + 7671EAB56461F5416F164118AF366DF2 /* RNConfigReader */ = { isa = PBXGroup; children = ( - A9082B2BD3226DFFA225E5FFFB855224 /* ARTBrush.h */, - 328FF4DA3783FF0044814C6596A7871C /* ARTBrush.m */, - 29B811FAE251A530D910EA08052ED41D /* ARTLinearGradient.h */, - 6F94301C0561DD443C43F2F07AE4968F /* ARTLinearGradient.m */, - EE003B14F3BDD73E4063997EC4E2607F /* ARTPattern.h */, - 9846051E8163DD05F07AEFC5926019F2 /* ARTPattern.m */, - 22A686E40495B915A10C8270E6551F91 /* ARTRadialGradient.h */, - DC304B4145DD0AFD8E5888E0F029F416 /* ARTRadialGradient.m */, - 2A3D59FB3665A31F8B7500521E96B781 /* ARTSolidColor.h */, - AE6C0F640CBDB125D6165A9FE5277811 /* ARTSolidColor.m */, + 907F12A5AC833E515F4925CF4B537581 /* RNConfigReader.h */, + D4007D15ED9F7F0D108C1418BC3B81F0 /* RNConfigReader.m */, + 0B8837394CDED46C0DC539CDC0BAA01B /* Pod */, + 8085B874DC798BC6A47DB1B24188256A /* RNConfigReader.xcodeproj */, + 2D0268FA72C6CBC0A0FDF37625E01983 /* RNConfigReader.xcworkspace */, + 5BEFFED9407B77185D32FB8100530A82 /* Support Files */, ); - name = Brushes; - path = ios/Brushes; + name = RNConfigReader; + path = "../../node_modules/react-native-config-reader"; + sourceTree = "<group>"; + }; + 76E92F68D52EA217FAB939DF89B086E1 /* Pod */ = { + isa = PBXGroup; + children = ( + 2BF75F6240284F7B65E31E4FF0017C53 /* LICENSE.md */, + 9111371448EAA7AEEE36984B8BEF1734 /* README.md */, + 9C690D3E981000594444488BD50AEE40 /* RNDateTimePicker.podspec */, + ); + name = Pod; sourceTree = "<group>"; }; 77665CA6DBD4FF81C39E24DADB7370B7 /* Pods-NotificationService */ = { @@ -18574,79 +18183,128 @@ path = "Target Support Files/Pods-NotificationService"; sourceTree = "<group>"; }; - 77B6CFB7EA90A814C562A8632026BFC3 /* React-RCTLinking */ = { + 77C0229857F774C459A742B96CE9941E /* glog */ = { isa = PBXGroup; children = ( - E4AC6DA50FDB54B47545655896A80D4E /* RCTLinkingManager.mm */, - 3B97C66180DF19949AF1558D6A0033C4 /* RCTLinkingPlugins.mm */, - 3F7C81F7BCA12A87FB2D45E47B302091 /* Pod */, - 6E030B897EB9A69E0A685B3A7DE38DAD /* Support Files */, + 256514FB22EE5A636AFCAFE671661604 /* demangle.cc */, + 93FAF2D396F725E27801608CC01AEDA3 /* log_severity.h */, + B3691DD6BCD74E7E5AC60CA66EC5B91C /* logging.cc */, + F5B7A7557434258316DCCD0C31D78362 /* logging.h */, + DD52D5D5C44C993D9F2BD1F3F405171A /* raw_logging.cc */, + 26009D759FCD4CFA5D0DD5B3481E4FFA /* raw_logging.h */, + 96A41279F3E2C276096CCD680E045ABB /* signalhandler.cc */, + 5F869DEAB35BEEF672102C44847392C4 /* stl_logging.h */, + 733E7F9B2FF8930580B0C7B7AB582728 /* symbolize.cc */, + FD966F6723FEA70CB4896D68ECDDA8B5 /* utilities.cc */, + E08C7917A39B65602D642F0F8B1420E3 /* vlog_is_on.cc */, + AAF379D6CFF2D0FC6401068CAA891B66 /* vlog_is_on.h */, + 1F0ECDDC6EAFE3B1C3D8B15164F91CAB /* Support Files */, ); - name = "React-RCTLinking"; - path = "../../node_modules/react-native/Libraries/LinkingIOS"; + name = glog; + path = glog; sourceTree = "<group>"; }; - 7950EE29EE71494397E527E7A0DA6FF8 /* react-native-netinfo */ = { + 77F5A9550CF24A4156540CB862D9BE56 /* RNRootView */ = { isa = PBXGroup; children = ( - 0F71F642AF3DE7DD9E1E4E9BE0B3DBBD /* RNCConnectionState.h */, - 6D96E809EA4CE71B2F3930CB24DB6293 /* RNCConnectionState.m */, - 66B424E1E337CAC9AA470426F174F470 /* RNCConnectionStateWatcher.h */, - F96EAFECE7254CF38639FE8E3ECF86BF /* RNCConnectionStateWatcher.m */, - 7782E390EB5A04EF25130C2A2A8D343F /* RNCNetInfo.h */, - CFE777E168A9AFBF074D469F9EFF7C47 /* RNCNetInfo.m */, - 396863BF3DD7F36F45EBEED3C6D4A98D /* Pod */, - BCBF9DB2D24F27DAFBA9B681F1BA2629 /* Support Files */, + 0180A12731ED33F0F3326D120B58242C /* RootView.h */, + 0BC0AF6F7F1840A616C4EF1AA18B071A /* RootView.m */, + 86E90AB828E7FB150E5DCB8EBC17AD8B /* Pod */, + C47A6949D0F225E354676DE11E62E3FB /* Support Files */, ); - name = "react-native-netinfo"; - path = "../../node_modules/@react-native-community/netinfo"; + name = RNRootView; + path = "../../node_modules/rn-root-view"; + sourceTree = "<group>"; + }; + 78AFAFCBC49D1846CC4188B58772B558 /* TOCropViewController */ = { + isa = PBXGroup; + children = ( + 8842C6C62B8EB97000D0DB9D8C3CD5ED /* TOActivityCroppedImageProvider.h */, + FC0F3870E08ADD6FFC9474C9A9AAAEA8 /* TOActivityCroppedImageProvider.m */, + 9BEE134C86764356DF2A10AC3A998638 /* TOCropOverlayView.h */, + 3E9530758A87E541E75B2A9926991DE0 /* TOCropOverlayView.m */, + E391A38F3AB7DC9C5B3A3E00AA4A96AA /* TOCroppedImageAttributes.h */, + AE3A3D6B37CCEF385FE230EDB88E483D /* TOCroppedImageAttributes.m */, + 1026FC018D37BBD10EF12B8BF32D2F16 /* TOCropScrollView.h */, + 7DAFD9A92B38247EE388F189092E3525 /* TOCropScrollView.m */, + C036C9C64E0B5AEFC84E6F3EE2A92F56 /* TOCropToolbar.h */, + 3C1C76C6851C9229EAC939FB40F8E638 /* TOCropToolbar.m */, + C1B78497C118D797D5ADBEE63ACB1B20 /* TOCropView.h */, + 9E9236BF00C9FDCE2CFAB89E5365DABB /* TOCropView.m */, + 5DA43F454DC5CD925880DA94DC007DAD /* TOCropViewConstants.h */, + 04B43B5267D59EB7B1978AF41A1C1D7F /* TOCropViewController.h */, + B045E9D2723576894CFADB8CF99D1BDC /* TOCropViewController.m */, + 612353AF466442488436EA3AAD4EC8AF /* TOCropViewControllerTransitioning.h */, + 1447986F2D9C7850D2886D4A0B6A8871 /* TOCropViewControllerTransitioning.m */, + 502CD539F5D6390007138B8B692BD0D0 /* UIImage+CropRotate.h */, + 21EBA6E3E93418399481A3A3B17FF241 /* UIImage+CropRotate.m */, + F28BF443712C063DE5CB94D4140AF9D0 /* Resources */, + 17A64176C1A9991726C17D82A3688928 /* Support Files */, + ); + name = TOCropViewController; + path = TOCropViewController; sourceTree = "<group>"; }; - 797588B8BF534279FFAF1D3FE1861607 /* Support Files */ = { + 78E1701265C6FD74DA05460F7CA7125C /* Text */ = { isa = PBXGroup; children = ( - 2644F2579B6A8617B5235C3BF091B1D3 /* UMImageLoaderInterface.debug.xcconfig */, - 97E794BA33DA6947E9A38E96DC57959A /* UMImageLoaderInterface.release.xcconfig */, + 703652B3ED103950657D2AD13978ED5B /* NSTextStorage+FontScaling.h */, + AF69F91177882A1FF2E4F2678A36644C /* RCTTextShadowView.h */, + 23C6CD8DEB7156865D90C7DA489E00A9 /* RCTTextView.h */, + B54F56C85788C5B0FA034D9D8D8037BD /* RCTTextViewManager.h */, ); - name = "Support Files"; - path = "../../../ios/Pods/Target Support Files/UMImageLoaderInterface"; + name = Text; + path = Libraries/Text/Text; sourceTree = "<group>"; }; - 799233F0A73C201D006B13B7F6BE1B0D /* RawText */ = { + 79B0A3DA4840C812E0386C9E4341F7BE /* RCTSettingsHeaders */ = { isa = PBXGroup; children = ( - DF89921367DDB419FD2E008843163C09 /* RCTRawTextShadowView.h */, - AA7FC102D46DBA597743B98D535FAB2F /* RCTRawTextViewManager.h */, + 25566065A50218CA8988276834F46837 /* RCTSettingsManager.h */, + 65E116481ECE45EDC5359DFFCBE95964 /* RCTSettingsPlugins.h */, ); - name = RawText; - path = Libraries/Text/RawText; + name = RCTSettingsHeaders; sourceTree = "<group>"; }; - 79F53A35899385E73A55FC3AD4210D4A /* UserDefaults */ = { + 79B262E0CD8049A170832568747E65EC /* Support Files */ = { isa = PBXGroup; children = ( - F80EFFD5CEFD057F6C9AB017625E04C0 /* GULUserDefaults.h */, - BD569C16ACD867CA9120A03F34357CB6 /* GULUserDefaults.m */, + 2E45A073CA24752D8FF0BA280FC352AA /* RCTTypeSafety-dummy.m */, + 9B75EDEE61FAF608EEADF71C0F458266 /* RCTTypeSafety-prefix.pch */, + 4387D421C90A12EC6C311817E26C3F08 /* RCTTypeSafety.debug.xcconfig */, + 6AE6A8AC394688CEBF50D5D7E59F9E0C /* RCTTypeSafety.release.xcconfig */, ); - name = UserDefaults; + name = "Support Files"; + path = "../../../../ios/Pods/Target Support Files/RCTTypeSafety"; sourceTree = "<group>"; }; - 7A39CD658434E837FF40C2C8B0F9FBC2 /* Support Files */ = { + 79BB6EB11D2C2754D5CFB11DD9DC05AE /* Default */ = { isa = PBXGroup; children = ( - F8CD14050C72D23D91D42E504CB876EF /* GoogleAppMeasurement.debug.xcconfig */, - DF0CCC4ED5EA093604440EBDE947BC63 /* GoogleAppMeasurement.release.xcconfig */, + 3C9381991647AA592F6C79C02BF2FD9F /* Base */, + C8A67228C074E976B032FDDC5C3270D6 /* CxxBridge */, + 498D48B8C222C696EB749620A1002B07 /* CxxModule */, + B37EF7700E08E678070BBD8749327101 /* CxxUtils */, + B34A5B85FA2915A080E8D4EA8D0BF0F5 /* Modules */, + 0CD485A836B8131F12C0159728194E8C /* Profiler */, + 14018DD87B4CEC68F8478D89187C85BE /* UIUtils */, + 8A4D3CD6B0F9F725BE27255AE5CB2875 /* Views */, ); - name = "Support Files"; - path = "../Target Support Files/GoogleAppMeasurement"; + name = Default; sourceTree = "<group>"; }; - 7A5A2B0D92DE68189B5F7747D1FE9852 /* turbomodule */ = { + 7A07A9F920270DDA0BECB49F3F2D7222 /* Configuration */ = { isa = PBXGroup; children = ( - 8B11D6802FC09C19066A17235A404BA7 /* core */, + 5499C8939B574B7612F6946AD568F52E /* BSGConfigurationBuilder.h */, + 44901D29FC22E4DDAEBEA19E8416A2A2 /* BSGConfigurationBuilder.m */, + 7117BFFC9553028F2923691F6DBFBA01 /* BugsnagConfiguration.m */, + 45536C4FE070219E8587C7C80FA8CE13 /* BugsnagConfiguration+Private.h */, + D9E6D4EF7F749130DD3943A66833AEAB /* BugsnagEndpointConfiguration.m */, + 65C871EF5A78ADCEF923C694CC0DA910 /* BugsnagErrorTypes.m */, ); - name = turbomodule; + name = Configuration; + path = Configuration; sourceTree = "<group>"; }; 7A9D58B5CF36E4DB4963A3D88F79EF87 /* Pods-defaults-Rocket.Chat */ = { @@ -18666,4480 +18324,4740 @@ path = "Target Support Files/Pods-defaults-Rocket.Chat"; sourceTree = "<group>"; }; - 7B037C312B641BA61D9AF131E99A7022 /* Support Files */ = { + 7B14A42A0F49B2B11669730B07A0C484 /* react-native-netinfo */ = { isa = PBXGroup; children = ( - 08272036C5209030B6CF0F4CEFE8A1DA /* RCTTypeSafety-dummy.m */, - 3D86D2A31A5C0B47043E1A36D380B41F /* RCTTypeSafety-prefix.pch */, - 4AECC08C02DCA1B2C649AB26AAE1461E /* RCTTypeSafety.debug.xcconfig */, - DE5A7C8C6EAD47E655B33CFF04F6CCFE /* RCTTypeSafety.release.xcconfig */, + 4249071496CFF721340193A51C6307E2 /* RNCConnectionState.h */, + 1D549A6D5989F2158CE879EFC2085EED /* RNCConnectionState.m */, + 9685144DF6196BA90C7716B91E231B30 /* RNCConnectionStateWatcher.h */, + 7D518967F7BE26E3DE849A4B3E8A416E /* RNCConnectionStateWatcher.m */, + A8ED4FC37F45F282C42B8DB967D8F07D /* RNCNetInfo.h */, + 1AF0C8044A3AEFF8B90BC48C051D33DE /* RNCNetInfo.m */, + 400DD1D8399F24EEE07F58F4C509AE33 /* Pod */, + 98F33C6364A6D8770A1715E0E7C0A112 /* Support Files */, ); - name = "Support Files"; - path = "../../../../ios/Pods/Target Support Files/RCTTypeSafety"; + name = "react-native-netinfo"; + path = "../../node_modules/@react-native-community/netinfo"; sourceTree = "<group>"; }; - 7B07C752853171258EA3AE8E5D78D812 /* TextInput */ = { + 7B32111B372B9D206AD73E2D90C795E7 /* Support Files */ = { isa = PBXGroup; children = ( - FD028CB98C9F9EFDFAFBE551B94565B8 /* RCTBackedTextInputDelegate.h */, - 35B7D5020B6E5BA9A2FE52CC9AE126AD /* RCTBackedTextInputDelegateAdapter.h */, - 219E0924E0BE9C7E6130A5F93A67232A /* RCTBackedTextInputViewProtocol.h */, - 5D3EA5B4B575BDA257735202166064A3 /* RCTBaseTextInputShadowView.h */, - 075FCEEF9548E5D0153233C7A55D489D /* RCTBaseTextInputView.h */, - 9327F9C7E8982E0CE3C75DE507864913 /* RCTBaseTextInputViewManager.h */, - E62636EB54EBAC8FFAAD4C44CF3B71D7 /* RCTInputAccessoryShadowView.h */, - D9B8B92F24A47BEF9C95B210D292BA64 /* RCTInputAccessoryView.h */, - C6047C5622988513A77CF76E8BE0CD9F /* RCTInputAccessoryViewContent.h */, - 90C7C147085C240CCCF67AB7DD43F1AD /* RCTInputAccessoryViewManager.h */, - 1B218D186F54EF65DEED555A468AC649 /* RCTTextSelection.h */, - F359CB836A39AD8FA351F634C8FFC0AB /* Multiline */, - 8CA6E9AD93919F4231A819BECD1E257E /* Singleline */, + A10EEBDD70E24A024D7E6587F1225DD7 /* react-native-blur-dummy.m */, + F81F87B5004A289DBE4F4307E14A89A1 /* react-native-blur-prefix.pch */, + 5EF18B72048676534829D2B5295CEF97 /* react-native-blur.debug.xcconfig */, + 2A40B641776019737D2F6716DF2785DC /* react-native-blur.release.xcconfig */, ); - name = TextInput; - path = Libraries/Text/TextInput; + name = "Support Files"; + path = "../../../ios/Pods/Target Support Files/react-native-blur"; sourceTree = "<group>"; }; - 7B2BB809FDDECF64E64B0B8EFAA482BB /* Configuration */ = { + 7DA63835E94912AF76B1881B2CAFBDEA /* React-RCTActionSheet */ = { isa = PBXGroup; children = ( - AE894CCD5487DD70504F6EFA69532ADF /* BSGConfigurationBuilder.h */, - 414D87E844AD74314047F1E73E041E3B /* BSGConfigurationBuilder.m */, - B3DDF3E68ACB1EB42C9B28FEFE55CD1A /* BugsnagConfiguration.m */, - 8658DD24119E5EAE6FFA7E2582255C55 /* BugsnagConfiguration+Private.h */, - B374D73EA1612B85750D61AE6F16271F /* BugsnagEndpointConfiguration.m */, - 916E3D76B71C70231A1C7B52E8287F82 /* BugsnagErrorTypes.m */, + B8D6D8B3144B1F4BF5097C902EBACB7E /* Pod */, + 889344804A2B3A634512D6DCA04619BD /* Support Files */, ); - name = Configuration; - path = Configuration; + name = "React-RCTActionSheet"; + path = "../../node_modules/react-native/Libraries/ActionSheetIOS"; sourceTree = "<group>"; }; - 7C4DBEA389F45BA24C85310F8D437E9A /* Pod */ = { + 7E54233D9639E02BB418536D3D12FDC5 /* Support Files */ = { isa = PBXGroup; children = ( - 8CDE84785C27C0FF357553A775D1308A /* LICENSE */, - 9C9D12209F331BCF7D802934F1175076 /* README.md */, - 3BB254896ACC06AF2DEF34F612C19B71 /* RNCPicker.podspec */, + 529845ECA5C821EEAEED78FE4F55B888 /* EXImageLoader-dummy.m */, + 117A15DBF9388CFB80D2E379E62B790F /* EXImageLoader-prefix.pch */, + E84581F67CA2CE086EEADB1C1AAEE161 /* EXImageLoader.debug.xcconfig */, + 4BF3B420A604629A007FB24188AE3F73 /* EXImageLoader.release.xcconfig */, ); - name = Pod; + name = "Support Files"; + path = "../../../ios/Pods/Target Support Files/EXImageLoader"; sourceTree = "<group>"; }; - 7C558593C891C3E79B36EA23172BA0B4 /* BaseText */ = { + 7EBE103CCEA5B283D29BCEB0CCFCCD16 /* Support Files */ = { isa = PBXGroup; children = ( - E2631F974453177DD607E7B3C7AFD9A2 /* RCTBaseTextShadowView.h */, - 66F0D8BBD14EFB8EA9197CDCE644FAB0 /* RCTBaseTextViewManager.h */, + 103A3F0B17D04B2D034AE67B05C39295 /* React-CoreModules-dummy.m */, + 78A399A0DEFEA78100BA753EB8A8DE14 /* React-CoreModules-prefix.pch */, + 44625E798DB2E675CC7B1FA051978473 /* React-CoreModules.debug.xcconfig */, + 7A644715508BA643C11C1772E3BAC25C /* React-CoreModules.release.xcconfig */, ); - name = BaseText; - path = Libraries/Text/BaseText; + name = "Support Files"; + path = "../../../../ios/Pods/Target Support Files/React-CoreModules"; sourceTree = "<group>"; }; - 7D2BD92025B51DA60BB351BB9BAEC931 /* FBDefines */ = { + 7F50FCDEC90B194CEF40B264637C1F36 /* Support Files */ = { isa = PBXGroup; children = ( - 5CEEAEB3328E9D73020B5EB925D69D19 /* FBDefines.h */, + C347441AD794A6AB6894FE5F60D5DDD0 /* react-native-restart-dummy.m */, + 8A903BF53090E11B707ACC949DCAE8F5 /* react-native-restart-prefix.pch */, + D82E6DE977BA24F6B59DC331128C89DF /* react-native-restart.debug.xcconfig */, + C1C4AB165361C79E9CEB10B849DD0B99 /* react-native-restart.release.xcconfig */, ); - name = FBDefines; + name = "Support Files"; + path = "../../ios/Pods/Target Support Files/react-native-restart"; sourceTree = "<group>"; }; - 7DD3CC43754B8BB4344595E9E8F9DE9F /* EXImageLoader */ = { - isa = PBXGroup; - children = ( - 26E421091A9BB8C1DB5E4CA5715FF029 /* EXImageLoader.h */, - 2BE952648F93797D468722B37002481C /* EXImageLoader.m */, - 9D565FDAA5E52962D5D1A74FE2740313 /* Pod */, - 091C7C2E680ABBE8944BB4E230A85B4E /* Support Files */, + 7F8FD5601F75BA2B80106503884E50FF /* MMKVCore */ = { + isa = PBXGroup; + children = ( + 9577A31D828189F7819F1B05697FB260 /* AESCrypt.cpp */, + 5853C7858745BDC0AECED015B132A3DF /* AESCrypt.h */, + 99D65B5DD0728878C6747E042CADDE03 /* Checksum.h */, + 20536DFECCAD67C1A36C22F8BF82D921 /* CodedInputData.cpp */, + C288B40E2097CE575595F2B83C2A0472 /* CodedInputData.h */, + 812491C4194E193D02181E745A87692E /* CodedInputData_OSX.cpp */, + 1417DCF8792914775794BB987C8CCE35 /* CodedInputDataCrypt.cpp */, + 492D4D8C096AF085C5431C9BD45D860C /* CodedInputDataCrypt.h */, + 1A01A8487A446A06412C2DA00ED26455 /* CodedInputDataCrypt_OSX.cpp */, + 57404C60E34D39D975216747AF908EA0 /* CodedOutputData.cpp */, + C9AEDF38717DC2C834E24EACF2A8FE91 /* CodedOutputData.h */, + 472E01C9AEC8C9FAB8778EBCF77E0177 /* InterProcessLock.cpp */, + AAF21E78FFF83D734A0A9B816EEC7D84 /* InterProcessLock.h */, + B493F54BA438354C6850587AFEE7F862 /* InterProcessLock_Android.cpp */, + 73B545281744F3E5F2097C57C9DDAB32 /* InterProcessLock_Win32.cpp */, + 2CDFD1719E051485FDF97FBFDF31A9DB /* KeyValueHolder.cpp */, + 8B25F9FC1C5EE30742752D4DC22E5230 /* KeyValueHolder.h */, + 8DC96E731C0C41D2DD02BFE44F134D1B /* MemoryFile.cpp */, + AC398CB65D2867C2F84DC25FE8F79636 /* MemoryFile.h */, + 4855563978F494CAF5E970F8E2AB7688 /* MemoryFile_Android.cpp */, + 859F6EFC95278A09770816A93CF33F33 /* MemoryFile_OSX.cpp */, + 845F9E2043E6F0A9878A5A098678C69F /* MemoryFile_Win32.cpp */, + 1D6942D068B09895C41350CB6C8CC2A0 /* MiniPBCoder.cpp */, + 7A0B16A06065033AE8EF610BDB087D03 /* MiniPBCoder.h */, + 60686497E1A2DD6B97461E8F97C63EC4 /* MiniPBCoder_OSX.cpp */, + 75EAE6D72CC29D61E6B25C78A666D608 /* MMBuffer.cpp */, + 5599301C23C5AF07564AD8BEDCDFB931 /* MMBuffer.h */, + EC242389AB991BA11B83C97B4A9C1D1B /* MMKV.cpp */, + E358D84192D39F3403238DD6343235A1 /* MMKV.h */, + 816BDED2019A060CBAA4FCEA7DF7D636 /* MMKV_Android.cpp */, + E7DC01D9F4735AD047F9CF5FE1EDFD90 /* MMKV_IO.cpp */, + 1A2CB029B12A5A12396F37B487A85183 /* MMKV_IO.h */, + AA61CFA601E9334CDA05C3D1CCE0DFE5 /* MMKV_OSX.cpp */, + 70FD3A6BB23839DC023B390063BCD00F /* MMKV_OSX.h */, + AA255A2E76C1D22D1B27D797B7928B90 /* MMKVLog.cpp */, + C3DE11FB3C66C7DE7FD2E306BA250BB9 /* MMKVLog.h */, + E03AF46D82E888F3C4DF35C8FDD8CA5B /* MMKVLog_Android.cpp */, + 70AB97C866EC4883C3549BD4D9E70EB2 /* MMKVMetaInfo.hpp */, + 2D81AFBC0D5035D488B0F2F703430734 /* MMKVPredef.h */, + 72DABD8A2925F8AD668E0590C277F40A /* openssl_aes.h */, + 07582AB9F05DAA6E75C45920AD53BB92 /* openssl_aes-armv4.S */, + 3540FCF67A82DAF44F7386E90D5EA3DD /* openssl_aes_core.cpp */, + 4C52EEC241E3D896CBF67611F4A7C840 /* openssl_aes_locl.h */, + BF18C673FF1CF6FAA32ADF19EA0942B0 /* openssl_aesv8-armx.S */, + FC4CF500185FA215AC755932557D573A /* openssl_arm_arch.h */, + 9C7F33798A8CF2C30E472171DD9210BA /* openssl_cfb128.cpp */, + E0F348CB4EBE93463B9642B83143962C /* openssl_md32_common.h */, + 4B3B7BE12857B6EFF346805FA5BDB910 /* openssl_md5.h */, + 1EA7069ECAA34F7BD59269E02AF68695 /* openssl_md5_dgst.cpp */, + 07F73D1FFAF03D36C9090687099B6CF4 /* openssl_md5_locl.h */, + 6059EB66B19D9C499452C7E4269AF05C /* openssl_md5_one.cpp */, + 6527C45E613570F8E482BCAF1012824E /* openssl_opensslconf.h */, + E8F5E04EDAF61B931754F5347ABAA5B8 /* PBEncodeItem.hpp */, + FC4AC844AE90D8511B58A8E5F8CCFBC7 /* PBUtility.cpp */, + 0862772803D66228B31F317DE74EA50F /* PBUtility.h */, + E88B8B5BD70965A723C4F388A858D6FF /* ScopedLock.hpp */, + 1AB733080E0BC6F890739987E6D8854F /* ThreadLock.cpp */, + C2BBFDF4951B2F34F4374712C320CE3A /* ThreadLock.h */, + 8DA53BF5F3B812DED81579DE9A22DC40 /* ThreadLock_Win32.cpp */, + 66E5F3E253C92B056DD977ABD161C9CA /* Support Files */, ); - name = EXImageLoader; - path = "../../node_modules/expo-image-loader/ios"; + name = MMKVCore; + path = MMKVCore; sourceTree = "<group>"; }; - 7F28349F29E87A971A2165D82AF74199 /* Support Files */ = { + 7F9ECDF53641E4DED45CB281F2949A00 /* Support Files */ = { isa = PBXGroup; children = ( - BF1E0BB7752D56C6845E112D9F00FF21 /* react-native-simple-crypto.modulemap */, - 86F6DE72AF784651FC53232D648747AE /* react-native-simple-crypto-dummy.m */, - 84EEFE25DC085D62DA57C42255443BB3 /* react-native-simple-crypto-prefix.pch */, - E6F8E4122200E27EF9E2B713BD332D98 /* react-native-simple-crypto-umbrella.h */, - A193D813D8C5A0B8CF41715AD34A8F01 /* react-native-simple-crypto.debug.xcconfig */, - 220F7A02C50FD642BCE587FFBF9649EF /* react-native-simple-crypto.release.xcconfig */, + 3F5C0F96BF99FF667B0CD900AB12B4F5 /* FirebaseAnalytics.debug.xcconfig */, + 6FD502FBDE9ADE2537AD23B5F0C89814 /* FirebaseAnalytics.release.xcconfig */, ); name = "Support Files"; - path = "../../ios/Pods/Target Support Files/react-native-simple-crypto"; + path = "../Target Support Files/FirebaseAnalytics"; sourceTree = "<group>"; }; - 7F3A7EA895F0566C5548469737EF00DD /* KSCrash */ = { + 80627D2C508C20334D4C91E97FAE7E96 /* Pod */ = { isa = PBXGroup; children = ( - 6E327E9A663C056D21BD068F8AAB5979 /* Recording */, - 25D598A75FCE674C4B80EAA48F9E6C06 /* Reporting */, + B6AAF0CE52EE128A1869CD89020EA450 /* React-cxxreact.podspec */, ); - name = KSCrash; - path = KSCrash; + name = Pod; sourceTree = "<group>"; }; - 7F3B210349E9AB3E3EADD2AB592D867D /* Support Files */ = { + 8085B874DC798BC6A47DB1B24188256A /* RNConfigReader.xcodeproj */ = { isa = PBXGroup; children = ( - 592DD183E51F970BE56CF088A5393452 /* React-CoreModules-dummy.m */, - 39CC6CCD7E3BAB1F4F89F8E146204926 /* React-CoreModules-prefix.pch */, - D2943406FA1878F07097E101AE75878A /* React-CoreModules.debug.xcconfig */, - 0434113888E997B21B28150CC3620C44 /* React-CoreModules.release.xcconfig */, + BC40038B0C055C464BE0186522177E7E /* project.pbxproj */, ); - name = "Support Files"; - path = "../../../../ios/Pods/Target Support Files/React-CoreModules"; + name = RNConfigReader.xcodeproj; + path = ios/RNConfigReader.xcodeproj; sourceTree = "<group>"; }; - 7F464A4DA76C89FA2F27058CD6700BB0 /* Drivers */ = { + 810055EBEC44C7B164A1A0C295864D49 /* UMCameraInterface */ = { isa = PBXGroup; children = ( - 6D04BB5E40BA5D8B5192C6EEBBD84FE1 /* RCTDecayAnimation.m */, - 6319E115C683CD8817790D3D6A945E4D /* RCTEventAnimation.m */, - BFB833A212D11C1F41AC5557EFFF34D4 /* RCTFrameAnimation.m */, - 9F53199A8BA2FDC86956E4B0A37BDC5C /* RCTSpringAnimation.m */, + 3F59A79E2C71FD3F9D7D1D886110C9B6 /* UMCameraInterface.h */, + 079A87B185079B110F17CB5E5A45B3DE /* Pod */, + 6BC82FF7BC89E4C883451B42F4B1FF76 /* Support Files */, ); - name = Drivers; - path = Drivers; + name = UMCameraInterface; + path = "../../node_modules/unimodules-camera-interface/ios"; sourceTree = "<group>"; }; - 80E4CCAFD5FF95805C8836B2EF70A567 /* React-jsiexecutor */ = { + 8169289A16172E9EC0D9970D9FADC3E1 /* BugsnagReactNative */ = { isa = PBXGroup; children = ( - E61AF1CB17B0CA8E7D4A8158361F4DF4 /* JSIExecutor.cpp */, - D2BAFB5712B5C8FFFE439BE7B8832975 /* JSIExecutor.h */, - 923755E9F99621CC05524BE00627817C /* JSINativeModules.cpp */, - 27E7AC1CF68C839CBE82198DC24EFFB0 /* JSINativeModules.h */, - ED889B6CD4E18E37D68E3AC6D21D9DF3 /* Pod */, - 43E56E8FC0D1FD1417476BC28E3F73D1 /* Support Files */, - ); - name = "React-jsiexecutor"; - path = "../../node_modules/react-native/ReactCommon/jsiexecutor"; - sourceTree = "<group>"; - }; - 80F18FC30D1168F50A8F5773FDBE16A6 /* RNVectorIcons */ = { - isa = PBXGroup; - children = ( - B6BB9D8F6BE1944E983E7AA3816B439C /* AntDesign.ttf */, - 4B0034E6E9FECAB0B4DC477735148373 /* Entypo.ttf */, - A0239A64DC167652EC09D68A2ADCAF84 /* EvilIcons.ttf */, - 90BBC45C00FF7D9C89021A4AE0CF792B /* Feather.ttf */, - EDCAAAC9AAC0652F4DBF8DA542199E4B /* FontAwesome.ttf */, - 8CEC25A51E15793898FD4217D0D0CF0B /* FontAwesome5_Brands.ttf */, - 6FC75FAFE2C0BD318AD7EAE187B8AE0F /* FontAwesome5_Regular.ttf */, - 41855C855146AEE29E3AD4431CB64A27 /* FontAwesome5_Solid.ttf */, - CA04D0CCECD5149348E432A7532FD6F2 /* Fontisto.ttf */, - 0A15D754AC491E925BECDFAEEEFDF7B4 /* Foundation.ttf */, - 14CE686504FDFCC39519FA7D086BA1ED /* Ionicons.ttf */, - A8CFEE93B9F8FEA5EF794D45484A1B61 /* MaterialCommunityIcons.ttf */, - 7F89B97D7C9697721F4789BEAEA2E875 /* MaterialIcons.ttf */, - B54848B8630496BE379E72B317F1C472 /* Octicons.ttf */, - 611AE1380C322873C05FF482BC9482F7 /* RNVectorIconsManager.h */, - 6F0154D8ACB77B410E5B940FAA48A9FE /* RNVectorIconsManager.m */, - 475F5E2ABC28DCE812339550EE14A300 /* SimpleLineIcons.ttf */, - 9EBBFD227451F1DC3B489BF474AD54A2 /* Zocial.ttf */, - F7E4F3702F4A4EBB7AB5AD0518729F1A /* Pod */, - B8F99F34AAD023195BE9917C547423DB /* Support Files */, + 97F83FBADCFDF7E6A192341BCD09CA2A /* BugsnagConfigSerializer.h */, + EF484C4CCDEEB38F082663EE1763A984 /* BugsnagConfigSerializer.m */, + E1AB457B4F2773C7D747AD8F872C56AA /* BugsnagEventDeserializer.h */, + ACFE58F4770B1DD6CAA4F08F6E09FDB0 /* BugsnagEventDeserializer.m */, + 13C8EFF39EBD8C1872792E87448B21FC /* BugsnagReactNative.h */, + 13BEE7CFC50BA2D9FC56FC9CFE28D4EB /* BugsnagReactNative.m */, + 76BBD5E47BF7A40D3B313E5ED316A3E7 /* BugsnagReactNativeEmitter.h */, + 2DC70E070F382D3F08B01B7B4F06CD00 /* BugsnagReactNativeEmitter.m */, + E2F2B2A8ACCA4D1DCBB169367C885EFF /* BugsnagReactNativePlugin.h */, + DA99AFF483616230158822497780D24B /* BugsnagReactNativePlugin.m */, ); - name = RNVectorIcons; - path = "../../node_modules/react-native-vector-icons"; + name = BugsnagReactNative; + path = ios/BugsnagReactNative; sourceTree = "<group>"; }; - 814E8E7E091098CC83DD495C815F1AF3 /* Support Files */ = { + 818091414E75B7F3405B424DCEE631E1 /* Support Files */ = { isa = PBXGroup; children = ( - 10D3CBD349DDBEDD8BC29FF16094AFD1 /* GoogleUtilities-dummy.m */, - 6ABC70D8E3CD1011B90A77C789F11198 /* GoogleUtilities.debug.xcconfig */, - E34AB18BAA4A47BB7C41BBCFCB2261F2 /* GoogleUtilities.release.xcconfig */, + A1826A51E5A3B71B55BC8ED2946E146D /* Firebase.debug.xcconfig */, + 6FE956191D63ABA57E17E1513E9D1875 /* Firebase.release.xcconfig */, ); name = "Support Files"; - path = "../Target Support Files/GoogleUtilities"; + path = "../Target Support Files/Firebase"; sourceTree = "<group>"; }; - 82350E5B841E516E40D653D2AB5544C3 /* RNDeviceInfo */ = { + 818D0C9F35A3964D514970F14A3ACE66 /* bugsnag-cocoa */ = { isa = PBXGroup; children = ( - 7CA405638D48DB19A0E0CFF3F8B4738F /* DeviceUID.h */, - BFB871EFCC026E0E1B2229CA8B6C8679 /* DeviceUID.m */, - EB8DD2A0419BC72BF274073FC1A56A06 /* EnvironmentUtil.h */, - 9D3481C77D8830B0B3647B64636CAFB1 /* EnvironmentUtil.m */, - 218D3AFA6E45B878589B1C721E75F5CA /* RNDeviceInfo.h */, - 3C12747050F11EA2EA2A16FFF839DC61 /* RNDeviceInfo.m */, - 8F4C90FB99E53B9B60D9F2F00BA23EE5 /* Pod */, - BEBBCA05E2B21F81BA65B32551D96384 /* Support Files */, + 95E830B00B463B3EA41ABD22236CD8EB /* Bugsnag */, ); - name = RNDeviceInfo; - path = "../../node_modules/react-native-device-info"; + name = "bugsnag-cocoa"; + path = "bugsnag-cocoa"; sourceTree = "<group>"; }; - 84E40C32042BC4E376079790C363EBBC /* KSCrash */ = { - isa = PBXGroup; - children = ( - 173F16F614C99F1F2EBB2FE4639688D3 /* Source */, + 81C66A3558845F2A325A30095399F50E /* Tools */ = { + isa = PBXGroup; + children = ( + B68A31D90ECD9BFED45A51A81AF5CCF2 /* BSG_KSArchSpecific.h */, + 04EEAA335768D82E2096B37C92B22236 /* BSG_KSBacktrace.c */, + E62CF2366AEA19ECB171DDE5AEDCE7D1 /* BSG_KSBacktrace.h */, + 9F181517B422C45089E2090D9AAC85EF /* BSG_KSBacktrace_Private.h */, + F016796C74A38DBC3F969759C3838DFB /* BSG_KSDynamicLinker.c */, + 0E04BA4CCD1FFC1F6C42531744CC9EDE /* BSG_KSDynamicLinker.h */, + 9A27C96617D845E65927ED9FEBDC28B1 /* BSG_KSFileUtils.c */, + 6D39637C2F6FBE9A49E684837499B6F0 /* BSG_KSFileUtils.h */, + 9A7390090F7B70ACFD253A824EBC9E60 /* BSG_KSJSONCodec.c */, + 52FC2C23B825C00D94BE09128D07281B /* BSG_KSJSONCodec.h */, + 3CDB63C0C5FF9B95973BDDA51DBA44FA /* BSG_KSJSONCodecObjC.h */, + 7BF92FEE003EB2F5F01A583E050609E0 /* BSG_KSJSONCodecObjC.m */, + 13D25933EC1F44DDB6D4FD278A9B2F10 /* BSG_KSLogger.h */, + 9929A30078F3C244D4ABD9E027C02733 /* BSG_KSLogger.m */, + A96F312A95C5FB7D75C6209A97196BF4 /* BSG_KSMach.c */, + C1266DDB7B3CEB8B1201BA5AECDB1612 /* BSG_KSMach.h */, + B012542C77A21052EADE0688F2953250 /* BSG_KSMach_Arm.c */, + 64545F3BFFC1522366ABE9AFBA5CD50C /* BSG_KSMach_Arm64.c */, + 3AB58E8EB1CF9347D64F4EA3DC8E76C8 /* BSG_KSMach_x86_32.c */, + DABFDAABF70DF58C7B47B299BD23472F /* BSG_KSMach_x86_64.c */, + 96D9C1CF38ABB091FCA84C472795BFEA /* BSG_KSMachApple.h */, + 6C7ECCF5EAD09274C732393613891D4C /* BSG_KSMachHeaders.c */, + 0B9F448034B2BA345701C8E30BBE661D /* BSG_KSMachHeaders.h */, + 53900BCEE51277BE0F3EA3875F8989F5 /* BSG_KSObjC.c */, + B5AAFDBDD30C2F921CC79B715028D2FD /* BSG_KSObjC.h */, + 8860396888A40AA2D0F453E8FEE384A0 /* BSG_KSObjCApple.h */, + 5CC54E56BD40A7D7B702FED4E0D869AF /* BSG_KSSignalInfo.c */, + 003B816CAC62C3D5B14958153513504D /* BSG_KSSignalInfo.h */, + 81C2928C33238876B1C6B4E8DCE5B610 /* BSG_KSString.c */, + 92F4850079F06FDE4229F1A59BD9AF55 /* BSG_KSString.h */, + 89CB43CBD81D5A8BC8980EA6C602177E /* BSG_KSSysCtl.c */, + F49E84A1651622E867FACDA8C6F5F079 /* BSG_KSSysCtl.h */, + E991E5E47993FFF5CC39C7778660689E /* NSError+BSG_SimpleConstructor.h */, + 68FF9557211B4C4EAE34289ECC8670A9 /* NSError+BSG_SimpleConstructor.m */, ); - name = KSCrash; - path = KSCrash; + name = Tools; + path = Tools; sourceTree = "<group>"; }; - 861B805BFF1794D2F3879FD37E1AC9EB /* UMReactNativeAdapter */ = { + 82406A323184750A43DC8E791662C48C /* Firebase */ = { isa = PBXGroup; children = ( - 21ECF7AE502B94FDB7E0B8BD862E867A /* UMBridgeModule.h */, - F27CE71A7A35E5EDF4829C02CD2D6ADA /* Pod */, - 40F5C52C1A0E439D528F17D8BB7F5429 /* Services */, - 111AAA3ABE57A743F5849CC9525371AC /* Support Files */, - 87DBD37B152012978A749BF622E1B171 /* UMModuleRegistryAdapter */, - FDE890A9DD1A908FEA61A28EE5AC18C0 /* UMNativeModulesProxy */, - 02189358DA22899E52E53CE4299E2518 /* UMViewManagerAdapter */, + 8CAA4DF7F6CCB5F6C14C85372D2EC82F /* CoreOnly */, + 818091414E75B7F3405B424DCEE631E1 /* Support Files */, ); - name = UMReactNativeAdapter; - path = "../../node_modules/@unimodules/react-native-adapter/ios"; + name = Firebase; + path = Firebase; sourceTree = "<group>"; }; - 862F7B0A41DD6B161675A6E6B7B61144 /* RNConfigReader.xcodeproj */ = { + 82C276D42E09666AD73E8CD1310CD202 /* BaseText */ = { isa = PBXGroup; children = ( - C184B7335460D0CE1CA51D5B2D27A070 /* project.pbxproj */, + AB46E437A1102228110B8730B5ACA59E /* RCTBaseTextShadowView.m */, + 14157214B32F45B3C07C4066FD85B7D5 /* RCTBaseTextViewManager.m */, ); - name = RNConfigReader.xcodeproj; - path = ios/RNConfigReader.xcodeproj; + name = BaseText; + path = BaseText; sourceTree = "<group>"; }; - 864CF10D742C3C6D7902FAD8E8271F0B /* React-RCTActionSheet */ = { + 85D221EFE995E046B7EE3BA92DDD74DA /* Pod */ = { isa = PBXGroup; children = ( - E049964354328A2EA1287F2BEE1CF2D3 /* Pod */, - F2AD59A18562376746A8C194B5A64512 /* Support Files */, + 694223576BECB03211E4C17C21BC2E85 /* EXKeepAwake.podspec */, ); - name = "React-RCTActionSheet"; - path = "../../node_modules/react-native/Libraries/ActionSheetIOS"; + name = Pod; sourceTree = "<group>"; }; - 86677D26A3179FEF358A0284BC61F3AE /* MethodSwizzler */ = { + 8624ECA8F1A11855D90A8157AECD709D /* Support Files */ = { isa = PBXGroup; children = ( - A7F777A235BC6BD096853867E94D2332 /* GULOriginalIMPConvenienceMacros.h */, - A1BF68D59DC67100D469927A60889975 /* GULSwizzler.h */, - 073A0F73F0D948124331D5ED633FED78 /* GULSwizzler.m */, + 21C2DD7D258C28906DE1501EB0F8ACBA /* RNLocalize-dummy.m */, + E256BF973F3576F39BF1249F5DB370E1 /* RNLocalize-prefix.pch */, + 735A5EE6D6B8774CDEB5EC3D446CCE22 /* RNLocalize.debug.xcconfig */, + 3EE147C11A0E50351D1A5884CE21846E /* RNLocalize.release.xcconfig */, ); - name = MethodSwizzler; + name = "Support Files"; + path = "../../ios/Pods/Target Support Files/RNLocalize"; sourceTree = "<group>"; }; - 8695F1D0F9358BD43DDBE79E5CF98BAB /* Pod */ = { + 865EA80FF72905C411500F19015725CC /* Pod */ = { isa = PBXGroup; children = ( - 7500E3E1B45B0BEE182E458B83EC4818 /* UMPermissionsInterface.podspec */, + 9B3EAE68C60D045960DABBEAE70DF98B /* FBReactNativeSpec.podspec */, ); name = Pod; sourceTree = "<group>"; }; - 869B4074E5995282377E90FFCC5FAE96 /* React-RCTNetwork */ = { + 86BF88F7964EB2443BDFC97560C5FBE2 /* React-cxxreact */ = { + isa = PBXGroup; + children = ( + F09ACD2C696E19BA02A255E902062619 /* CxxModule.h */, + 1663FD8EE873E544DE8F467C94FC3269 /* CxxNativeModule.cpp */, + A3AAE258AB6B1C65738363B2F5C0B1AE /* CxxNativeModule.h */, + 2A94F3ACC6E5FBC3B3243830EACF61C3 /* ErrorUtils.h */, + E084F2E7A1D6CE8510B553B7752D8AF8 /* Instance.cpp */, + C49D0128CB07E3148BD5E5F19BA1EA56 /* Instance.h */, + 354A1ABA776921DDC4A04874C756A010 /* JsArgumentHelpers.h */, + BC93DAC52933D53B45689FDD4C0EF852 /* JsArgumentHelpers-inl.h */, + 883E49195B7635B773600BD4C99DF71E /* JSBigString.cpp */, + 32428EF17285EA0A68E148C734E1B78F /* JSBigString.h */, + 17A8C29DB9A95FD0E6624D6C1A589262 /* JSBundleType.cpp */, + 0F675EFFAE3ECFB12FB48516DB4E756C /* JSBundleType.h */, + 32690E9D92F23FCA4B1ECB8AD6676232 /* JSExecutor.cpp */, + DFD628481C697E806262FE83EEF0901E /* JSExecutor.h */, + 95414DFF7A18D72D48FA7AE92DDDA857 /* JSIndexedRAMBundle.cpp */, + C812C7A2CA1618D49935EEBB8E88B6B1 /* JSIndexedRAMBundle.h */, + AA01213DF095986D52879CCA5C6A3D60 /* JSModulesUnbundle.h */, + 717847177FA8C973CA2A4A05213F08DF /* MessageQueueThread.h */, + C1531CA68850AABDD9BAF7E5A0FD549B /* MethodCall.cpp */, + E4C69F25A2BEB7A59CD853002DC3ED09 /* MethodCall.h */, + 6078EAA74D7CAF3E61BC7BBB5D95C330 /* ModuleRegistry.cpp */, + F9C7F6857302085BBF86C401C4DE192B /* ModuleRegistry.h */, + 8D03DF2B17B4C441CDAE156873B13B97 /* NativeModule.h */, + 2E73F011CEB0A6710D96E7DB18FAE891 /* NativeToJsBridge.cpp */, + 8C703C90ACBCAD43054EB317D29CF447 /* NativeToJsBridge.h */, + 81C4138655AC38E1C4521E44F2AC184F /* RAMBundleRegistry.cpp */, + BECD62A210E871515F60DFD14F6A902F /* RAMBundleRegistry.h */, + DB3C75FB714D609425CC689E0D9A02A5 /* ReactMarker.cpp */, + 09322B44A4B65A65AEB5CCB2A09BCCC2 /* ReactMarker.h */, + 86815C35A8BE9B52F690C4BF4C24EDBD /* ReactNativeVersion.h */, + FAE9B69DE4B59C9CA70E3401E52C5A27 /* RecoverableError.h */, + DEE206A5A73797C0F70635F3A25EF1E1 /* SharedProxyCxxModule.h */, + 8332F5A457625A4469705645641E6A30 /* SystraceSection.h */, + 80627D2C508C20334D4C91E97FAE7E96 /* Pod */, + 72F2B2E0E0FA993788919579FE3C78F1 /* Support Files */, + ); + name = "React-cxxreact"; + path = "../../node_modules/react-native/ReactCommon/cxxreact"; + sourceTree = "<group>"; + }; + 86E90AB828E7FB150E5DCB8EBC17AD8B /* Pod */ = { isa = PBXGroup; children = ( - BFF2B93582DD82BCA452AC0DBA5D0647 /* RCTDataRequestHandler.mm */, - 6F1A6CB5AD58A8B648B42C549671774B /* RCTFileRequestHandler.mm */, - DFE622CE288FAC9F6429A57296A9C7DA /* RCTHTTPRequestHandler.mm */, - A4B57CE6698F52AC38D62EEC7933FC7E /* RCTNetworking.mm */, - 785EDE9EB6D9A2635C20A40E0D42021D /* RCTNetworkPlugins.mm */, - 411C5D3090597F745A84709D99C44A6B /* RCTNetworkTask.mm */, - D74EFFE0E92A52A7E890826465132A73 /* Pod */, - 2B45685CBA4FA71A1D076B8BEC8EB450 /* Support Files */, + D8856188E55D23E597CA6AB793883D21 /* README.md */, + F46A38F1C7E8F5D455FD085A7B45F867 /* RNRootView.podspec */, ); - name = "React-RCTNetwork"; - path = "../../node_modules/react-native/Libraries/Network"; + name = Pod; sourceTree = "<group>"; }; - 8752AE4BE961C8B8A3881C16D383B796 /* Pod */ = { + 87500C0AA83653610134C8B5ADCB6251 /* EXFileSystem */ = { isa = PBXGroup; children = ( - 62317B39353F9FFF8355EEB75F3F34A5 /* EXHaptics.podspec */, + 10259BF2673C5F3A94B58CFD311CFEE8 /* EXFilePermissionModule.h */, + B5AB0EE956AB7D0ED1130CEFF502E945 /* EXFilePermissionModule.m */, + 2E568B34CBD06DBB1EC126FFD4D26639 /* EXFileSystem.h */, + 0F0A1F9F3687152FD079AC216204703A /* EXFileSystem.m */, + 41E0A2B112737D4AD08256D301DDD0BF /* EXFileSystemAssetLibraryHandler.h */, + 0DE20519F96D10F94F99B15D83A5C0D8 /* EXFileSystemAssetLibraryHandler.m */, + ED763F5A828E88AA053D8BDF61B0914A /* EXFileSystemLocalFileHandler.h */, + EBC61984E9A791396BA225C68D3F7C9C /* EXFileSystemLocalFileHandler.m */, + 5E8C7F18DB541C876ABC273E669C0712 /* NSData+EXFileSystem.h */, + E9674C9916F4EEC3422C811A2DCB1DC5 /* NSData+EXFileSystem.m */, + 5271314B5A54A613DE5A1124AFC27CEF /* EXSessionTasks */, + 997E012C05AF84730DBBB1CE278E4BCE /* Pod */, + 05431B8BCA564B7B217DE41FBECE480B /* Support Files */, ); - name = Pod; + name = EXFileSystem; + path = "../../node_modules/expo-file-system/ios"; sourceTree = "<group>"; }; - 878EAAEFA33FFD1622DBCF1CA2AAA4A4 /* Pod */ = { + 876372E9D9BF8E5EE55CD9E9B58CE2B9 /* Flipper-PeerTalk */ = { isa = PBXGroup; children = ( - B227BFF053D18A02145168DAB7EF0D3D /* KeyCommands.podspec */, - ED035C750CEB17C74F2277A208C6E663 /* README.md */, + EA66EA6A980D001ED348488BAFD37249 /* Peertalk.h */, + 15EF28D5FCEFD903464DFEAE40849566 /* PTChannel.h */, + BB5210672C926795B942E2BF01402BAF /* PTChannel.m */, + 9F473D10D4BEC9883C118559D09E47D2 /* PTPrivate.h */, + 219D029E25645D50037F8635115F8CDD /* PTProtocol.h */, + 8288F79984720B638376309474BBC130 /* PTProtocol.m */, + 9E13BBA8010F6F62D44B113AAC705B4F /* PTUSBHub.h */, + 6CCAC95E3D8B12648722D6194ABCEB3B /* PTUSBHub.m */, + 3D8F0A5F2B0AE98F5AC330D6F35A8593 /* Support Files */, ); - name = Pod; + name = "Flipper-PeerTalk"; + path = "Flipper-PeerTalk"; sourceTree = "<group>"; }; - 87DBD37B152012978A749BF622E1B171 /* UMModuleRegistryAdapter */ = { + 8792825AAC7B4D1E4CBB900241E5C241 /* RCTTypeSafety */ = { isa = PBXGroup; children = ( - A1761F12273ABDA4063CBDC302557BC3 /* UMModuleRegistryAdapter.h */, - EFD07F0983ABE92891B7D4414B44854B /* UMModuleRegistryAdapter.m */, - C4BF2CCBBF5CE374288FBFF0D54C7ADF /* UMModuleRegistryHolderReactModule.h */, - 3CF2196A1EE0D95E00B03D669456756F /* UMModuleRegistryHolderReactModule.m */, - 16E471A27712CE9EB296524FB0C8DBB3 /* UMViewManagerAdapterClassesRegistry.h */, - 00C2884BADE0F97B775E97637AA0FA78 /* UMViewManagerAdapterClassesRegistry.m */, + 89C39962E92A4BF26CBB92F6138DCC8B /* RCTConvertHelpers.h */, + 60CE2F8F6A20BC6708038724C9039D4A /* RCTConvertHelpers.mm */, + 2B61C28C621032A7E5EE10834B9DC504 /* RCTTypedModuleConstants.h */, + 08F23C71D0DA22DC5CD8E28001306B89 /* RCTTypedModuleConstants.mm */, + 3F1FBB1675D4376015CACF3A2EE1841A /* Pod */, + 79B262E0CD8049A170832568747E65EC /* Support Files */, ); - name = UMModuleRegistryAdapter; - path = UMReactNativeAdapter/UMModuleRegistryAdapter; + name = RCTTypeSafety; + path = "../../node_modules/react-native/Libraries/TypeSafety"; sourceTree = "<group>"; }; - 87F3EDAC30D04251943D20AACBAECDFB /* Support Files */ = { + 881D38AEE41E78CB0208C317E5D77970 /* React-RCTSettings */ = { isa = PBXGroup; children = ( - C15118AF7B06E7AA8617780010187407 /* EXKeepAwake-dummy.m */, - 4559436A7956CE8D06BFF9273BCC41CB /* EXKeepAwake-prefix.pch */, - E3A23A2CAFD9B49866258805E564EE65 /* EXKeepAwake.debug.xcconfig */, - 4F3DBDE414164598AA85AF34D969F89D /* EXKeepAwake.release.xcconfig */, + F3BEA36EB7569BE1806319E18BAB6FFE /* RCTSettingsManager.mm */, + 3501DA511E7F1F06AA9B6AF247B17A64 /* RCTSettingsPlugins.mm */, + 1CF1A2E5B348D1EFA6BB4DEA6A4A50ED /* Pod */, + 97D0B29B145B98E8B6291D56F568691C /* Support Files */, ); - name = "Support Files"; - path = "../../../ios/Pods/Target Support Files/EXKeepAwake"; + name = "React-RCTSettings"; + path = "../../node_modules/react-native/Libraries/Settings"; sourceTree = "<group>"; }; - 882258EDA3057FBDBA54EAF0089FA8F1 /* FirebaseInstallations */ = { - isa = PBXGroup; - children = ( - 7343CA8A9C7528DFE57EC1F85F33C409 /* FIRAppInternal.h */, - FFDB251CDA064A494DD8DE2607DC5A3A /* FIRComponent.h */, - 62349CEF1BEF279D189F7115CFD85FD1 /* FIRComponentContainer.h */, - BC06AD0CDFCDE2EBDF8C53D6CA3E097A /* FIRComponentType.h */, - 942912A1EA0A7436F2FDD973903DF116 /* FIRCoreDiagnosticsConnector.h */, - F77B5FF434ABB196616C9FDD68A45DBA /* FIRDependency.h */, - 02E08451045D001829AD93FC5DDDC2FE /* FirebaseCoreInternal.h */, - F2384F9FCDC8C8E4F8092212A51E69BE /* FirebaseInstallations.h */, - 91F251357B1B861D6BECB35B97540576 /* FirebaseInstallationsInternal.h */, - 867B29A1250B07A84E8BC281E2916F23 /* FIRErrorCode.h */, - 67D5F573B6CFD6FF0723A26620D16C35 /* FIRErrors.h */, - 7D7EFA14CEAB378BAE4FD09AA6B5FDF1 /* FIRHeartbeatInfo.h */, - 0B32040CFCC394F3ABA8903C6AD30C71 /* FIRInstallations.h */, - 808157E8035BB54AD67EED203B4A8AD8 /* FIRInstallations.m */, - C2C0E90FEA77DD0E5EFF604B618FDA96 /* FIRInstallationsAPIService.h */, - A92471AA2B82BDB11D3DB2938A92C154 /* FIRInstallationsAPIService.m */, - D492EF8863AEA098B6A3F3255B3F8CB9 /* FIRInstallationsAuthTokenResult.h */, - 18571F19C03D63DC9FA1F9030B6EA0B9 /* FIRInstallationsAuthTokenResult.m */, - 3B930A32F432993FA5735ED7FFD3E125 /* FIRInstallationsAuthTokenResultInternal.h */, - 0799A00B1DC38572550D734432304845 /* FIRInstallationsErrors.h */, - 416D359A4FC7BB38FDA1EF50B2C9654C /* FIRInstallationsErrorUtil.h */, - 07B23753CEF78E886235745063A4B131 /* FIRInstallationsErrorUtil.m */, - 1CD4739532193BEA6F2B46CE2CAC3A2A /* FIRInstallationsHTTPError.h */, - 82CD836887898CD56425D5AE3E6F3813 /* FIRInstallationsHTTPError.m */, - 00D323FBBD73EFACF837D4D6D25372A0 /* FIRInstallationsIDController.h */, - 5ED3A731B84B5126546C42978C09FCD0 /* FIRInstallationsIDController.m */, - 7ED107C7D265D1E13894AC662AE1149C /* FIRInstallationsIIDStore.h */, - CD72FF4935D9AD07EEF34CDEC0AFC91F /* FIRInstallationsIIDStore.m */, - D9BD28134A368C0AFA8B5E2C29BC4702 /* FIRInstallationsIIDTokenStore.h */, - C335481D064FA5535D3CC9FB9822A2BF /* FIRInstallationsIIDTokenStore.m */, - 3EF4E581C7EAB7D5EBD1377F06CA0214 /* FIRInstallationsItem.h */, - 171E2F7335FA3822401B90809CDF31D2 /* FIRInstallationsItem.m */, - C20492402F9EA7E3B8AD53A1D41FC5D2 /* FIRInstallationsItem+RegisterInstallationAPI.h */, - CB8D1B05F7691BAED8591CFF2B187C65 /* FIRInstallationsItem+RegisterInstallationAPI.m */, - E240658062D7BD715785CFECCEAF544C /* FIRInstallationsLogger.h */, - 3146EE7F2F7253CE4A19AE42577E2750 /* FIRInstallationsLogger.m */, - 56EA0A0FE0344C01612010C4CCF72387 /* FIRInstallationsSingleOperationPromiseCache.h */, - 487D1690697E71AB3608BBB1B971C59D /* FIRInstallationsSingleOperationPromiseCache.m */, - 13D532F8576952B1731BD9017ABEF549 /* FIRInstallationsStatus.h */, - 07DF80C3CCE5F07D6160CBD62078D66D /* FIRInstallationsStore.h */, - 38DBC4FE53A7D3A0516B8339987659B6 /* FIRInstallationsStore.m */, - CD0A3443C6A7213D97CFC3BE33030908 /* FIRInstallationsStoredAuthToken.h */, - C2A38FCFC0C7CBF5FB62C446C28158CD /* FIRInstallationsStoredAuthToken.m */, - 9141094EE1ED49F64CDFCC8C60B96156 /* FIRInstallationsStoredItem.h */, - CA53479D1F7EC6FB3472EFF20F157B6C /* FIRInstallationsStoredItem.m */, - 9DB1D8FE765BE7361DB47698214C8827 /* FIRInstallationsVersion.h */, - D4A2BE8CFED384AE4AC4EC33BB298903 /* FIRInstallationsVersion.m */, - 6B6AF267F4A7C6DE4A649FA84CE33D1D /* FIRLibrary.h */, - 80313E41FC783BC7ACFB49F771393302 /* FIRLogger.h */, - B66CDF20D4E34DD68D5EEBC0BAE954FD /* FIROptionsInternal.h */, - 3ADA24494E344DDAD822C6DA6B4EF030 /* GULAppEnvironmentUtil.h */, - 41FA13DF57954BD5E585AB26E68DE195 /* GULHeartbeatDateStorage.h */, - E7D565D7D6C306053C2BDFCF2E18FB85 /* GULKeychainStorage.h */, - 14833B7595C20284FE302A11D245BE8D /* GULKeychainUtils.h */, - 2A052AC762DA5E58222E584F38CB2FF1 /* GULSecureCoding.h */, - 960AFA97C6DCB819D930DEC1EA15BF49 /* GULUserDefaults.h */, - 09F60EF4922F0B81EC1E179E66BCF4B3 /* Support Files */, + 889344804A2B3A634512D6DCA04619BD /* Support Files */ = { + isa = PBXGroup; + children = ( + 03F1B16F5C52E58157189895CFC877AE /* React-RCTActionSheet.debug.xcconfig */, + 571E1D14F57017E8C40C842AA049BDCC /* React-RCTActionSheet.release.xcconfig */, ); - name = FirebaseInstallations; - path = FirebaseInstallations; + name = "Support Files"; + path = "../../../../ios/Pods/Target Support Files/React-RCTActionSheet"; sourceTree = "<group>"; }; - 8873D04DE1D823D5C51BAC6BC6789EA1 /* Pod */ = { + 89D9266C9EFEB371A1180E4CBA556316 /* Support Files */ = { isa = PBXGroup; children = ( - 9A50EA4CF7F6CC29ED52C30E2B562A6A /* UMAppLoader.podspec */, + 3433252E366EF683263DDBDA7944D562 /* RNFBCrashlytics-dummy.m */, + 7B3D69974E7D805990C9A23923E45F1E /* RNFBCrashlytics-prefix.pch */, + 55230E1B418258A029FDE8B6BE0AC394 /* RNFBCrashlytics.debug.xcconfig */, + A05BE5B211AF4004673B3A6C9A6CE2F8 /* RNFBCrashlytics.release.xcconfig */, ); - name = Pod; + name = "Support Files"; + path = "../../../ios/Pods/Target Support Files/RNFBCrashlytics"; sourceTree = "<group>"; }; - 88D72EAE58E7FF54C41C9AE90D614DE4 /* React-RCTText */ = { + 89F33F68558C8572F059A27AE180B264 /* Support Files */ = { isa = PBXGroup; children = ( - 1090A8F0485EF829EB52414930011E85 /* RCTConvert+Text.m */, - 37E96A7AD6E875A29E6DCE288196CCA0 /* RCTTextAttributes.m */, - 4B889D187A787995BC1E3E8B5153BC28 /* BaseText */, - EA13FE3EB3903AF08222DB3356F442A7 /* Pod */, - 28231AF484C698273669847C1DD7ABBA /* RawText */, - 162A0E35DD751790684EC0010D116703 /* Support Files */, - FA160BD1B56736D317D96A56C8D7C8ED /* Text */, - 5CA4B72893C3AC4BE6781F0CEB5FFC5F /* TextInput */, - 4B5D8ADF78472A169FC25BD72175E0DB /* VirtualText */, + 5FE6B25622A7875076E7771544A3BBB7 /* React-RCTLinking-dummy.m */, + AE52D0D71FEFEC4BE0233DFA66C4551D /* React-RCTLinking-prefix.pch */, + 3C62467E0F77892F2DAD1D929DCADBAA /* React-RCTLinking.debug.xcconfig */, + F28995EDCAA081DEFAA755562D6D3896 /* React-RCTLinking.release.xcconfig */, ); - name = "React-RCTText"; - path = "../../node_modules/react-native/Libraries/Text"; + name = "Support Files"; + path = "../../../../ios/Pods/Target Support Files/React-RCTLinking"; sourceTree = "<group>"; }; - 89E42526F9DFE07C60CA8658D8ED2506 /* Pod */ = { + 8A2F0834909969C0738C3EDEEA4E8980 /* Support Files */ = { isa = PBXGroup; children = ( - BC00DF5048BAF76589CBE6DDC1D7F994 /* react-native-slider.podspec */, + 8DBB4D83A9EF15F3C643036B7BD46BE0 /* React-callinvoker.debug.xcconfig */, + 33D58C8349C67788E1DB40B2E56C9C5B /* React-callinvoker.release.xcconfig */, ); - name = Pod; + name = "Support Files"; + path = "../../../../ios/Pods/Target Support Files/React-callinvoker"; sourceTree = "<group>"; }; - 89E9DE362B0DA8851E0A2A3EDC9F8C0F /* Payload */ = { - isa = PBXGroup; - children = ( - 86E61A981CF42C4B23BAB5518A622CB0 /* BugsnagApp.m */, - CC8FAA1C912262D8FB04EABEE005863E /* BugsnagApp+Private.h */, - 0433A26CA9AB21D0ECDE15D53044AC50 /* BugsnagAppWithState.m */, - 93C39DD0F16BF1BE85C726C64342D0CA /* BugsnagAppWithState+Private.h */, - 4B96ADDB9FD90F50AE207FA323FF1978 /* BugsnagBreadcrumb.m */, - 73C84770ED47B977C24E8DC125B6EC1B /* BugsnagBreadcrumb+Private.h */, - 0B2BF373E5089F4C67C4A01143AC410A /* BugsnagDevice.m */, - FD082006079338D62D08663C33A48A59 /* BugsnagDevice+Private.h */, - 7A52E65AEAC493527C07E619FAACD214 /* BugsnagDeviceWithState.m */, - CA138AF36FD6DF96FF7BC56831E4DBF0 /* BugsnagDeviceWithState+Private.h */, - CEA3B35EB09CCF2BD8C1C215046FBDBC /* BugsnagError.m */, - E80DD25952CCAFAE57F3977CEC976B49 /* BugsnagError+Private.h */, - 63C45641EB5DB3C16645B6FADBA569B7 /* BugsnagEvent.m */, - 00F410D95A943CF72FF7F8650F7719CF /* BugsnagEvent+Private.h */, - FF4FBD82B67BC08F0D6292D2D201F97D /* BugsnagHandledState.h */, - 5C31E2A1FFF7C0019D735887896DF06A /* BugsnagHandledState.m */, - F20E738D3A69438E1C122F9A0597DA9A /* BugsnagNotifier.h */, - F0F1A127EAB2FFE1F6FA20CA11630AA4 /* BugsnagNotifier.m */, - 0E3C403950789D25A935DB168DD8426B /* BugsnagSession.m */, - A87D058A90DAB0C942B4AAC56C56B15C /* BugsnagSession+Private.h */, - 8B8B3AB8E994E97D8D8B5A5956B0383F /* BugsnagSessionTrackingPayload.h */, - 4E3D0BB48FDDCBE29E682D48D2261735 /* BugsnagSessionTrackingPayload.m */, - E05EC65CB6F61CB2A94A6FA66F5CBEBC /* BugsnagStackframe.m */, - C7A634C0809C6C8B3F48DAA06217C421 /* BugsnagStackframe+Private.h */, - E1BED444528B620E58346B09FA9CED47 /* BugsnagStacktrace.h */, - 6810FE9C38430A012054DCA1F480FCA3 /* BugsnagStacktrace.m */, - F1D45A2B71EC9AA7167B5151A6B1F0D2 /* BugsnagStateEvent.h */, - 0E588F486C0468F453CA323CCA1D6C38 /* BugsnagStateEvent.m */, - 581DB7D061A947F37F56A814CD0A96F3 /* BugsnagThread.m */, - 784506C0C4C013F8ABF39538C9B3BB10 /* BugsnagThread+Private.h */, - 259DFDEAE65227AFC9022670B9B73495 /* BugsnagUser.m */, - B50E418173626EB95A687FAA9F1361ED /* BugsnagUser+Private.h */, + 8A4D3CD6B0F9F725BE27255AE5CB2875 /* Views */ = { + isa = PBXGroup; + children = ( + E70A023443904DDE940CCFDFA3F0C672 /* RCTActivityIndicatorView.h */, + F65A84E9BF932DBC59430F17CDE7C3C8 /* RCTActivityIndicatorView.m */, + B4E979E8B1B68E1B9EC052F35AD592DC /* RCTActivityIndicatorViewManager.h */, + 2F3DA8AA76ADE51D1D3003EA248189DB /* RCTActivityIndicatorViewManager.m */, + F21A04FAEE0F91FAB4A9EABA1D703194 /* RCTAnimationType.h */, + C7AD3CCE0D3496A960C844190A522D81 /* RCTAutoInsetsProtocol.h */, + CF42B5B064BCCC3B835905134AAAD221 /* RCTBorderDrawing.h */, + 6B899EB9E8E548617556D6BAFAC0E4A1 /* RCTBorderDrawing.m */, + 14A980A1F6A5351277268F114470A347 /* RCTBorderStyle.h */, + 3F13A0EF39A72533000EEEE0111DF255 /* RCTComponent.h */, + 6663436A3FDAEEC3695035A818D7F110 /* RCTComponentData.h */, + 0000F319375A277EF8E1E5058ECD39E9 /* RCTComponentData.m */, + BD7848B983A057E3E9D2FA433AFCFE2C /* RCTConvert+CoreLocation.h */, + DD503C772E0582A17452A72977BA5452 /* RCTConvert+CoreLocation.m */, + 2136A1213D6C72B551A9BF56644E3BD9 /* RCTConvert+Transform.h */, + DCE58ABA654029011ED09757A595D63D /* RCTConvert+Transform.m */, + 22A9372738E8D041C6294C72B7D234CD /* RCTDatePicker.h */, + 3E8DB4C7B967E14E5E32E8B10E060037 /* RCTDatePicker.m */, + F5E9FE96DB4AA86A910234CF52014188 /* RCTDatePickerManager.h */, + 08E0C4E5175039C123A7B279B5ACA787 /* RCTDatePickerManager.m */, + 788604AC5FC5EB8E6E1CBD8211BB8921 /* RCTFont.h */, + 782F7D4CEEAD2F0961322A8D335618C0 /* RCTFont.mm */, + 1EA1660C495D301B4D88925F663734E4 /* RCTLayout.h */, + A311B1DBB401A97B5CD759FBDE004D66 /* RCTLayout.m */, + 0688EA3F66749DAB0F240F8FDBC6E235 /* RCTMaskedView.h */, + 58AD62451702F38FF125AA074B831043 /* RCTMaskedView.m */, + B8AC4401071B23E14A4CB08B9ECDD287 /* RCTMaskedViewManager.h */, + BB186A09DE72D55E392646ED4CDA28F5 /* RCTMaskedViewManager.m */, + E00E1B45C22DACAF48805A11E4B9F00A /* RCTModalHostView.h */, + C563392C1183EBD6083BB71BBC3750E9 /* RCTModalHostView.m */, + 02A9508EAC0F10D37E8D431C7044EC4C /* RCTModalHostViewController.h */, + 822B77C3AA2FBC02C2739C0FADC34A4A /* RCTModalHostViewController.m */, + 897876E2437844D406605450A3332829 /* RCTModalHostViewManager.h */, + 24D8AA5A085E1895F66FD84301C1430C /* RCTModalHostViewManager.m */, + 3564137E5147D08FEB10AA993954079C /* RCTModalManager.h */, + 4AD13B8E59FB608E9875ACFB14DB1B2B /* RCTModalManager.m */, + B5F5313166AD87EBAACF75ECE422CF07 /* RCTPicker.h */, + 1BA4EFA28CCED3C9B11C8850E0BF68FD /* RCTPicker.m */, + 26254BBAC79B0EE3C6046000B1A3CB80 /* RCTPickerManager.h */, + AA64FA3F890E3BEF86836EBC8B4FF332 /* RCTPickerManager.m */, + 58F5BCDB27FBC6A69B75C4F1A6690550 /* RCTPointerEvents.h */, + 384D2FF8B4103353957B2ED78E7C289D /* RCTProgressViewManager.h */, + 866840E0C2491C06E2E8070A1943FE07 /* RCTProgressViewManager.m */, + AEE04B86B08146D2599D59FFC1455CDE /* RCTRootShadowView.h */, + 4D437964998D2C0A18278605BE08B9B8 /* RCTRootShadowView.m */, + 2CF135AF3A7A0D72EBC7E189B34DE27D /* RCTSegmentedControl.h */, + 627C2F143E0478A1E833D89AD3EED420 /* RCTSegmentedControl.m */, + 765F72C556C6A9D00A4540B670EA3B12 /* RCTSegmentedControlManager.h */, + 6086248C2E2C94CAFE558B5B83E4B65F /* RCTSegmentedControlManager.m */, + 903F7945B94ED2046D609A119505B599 /* RCTShadowView.h */, + 1A74625F08EFCBE38E874C98F984D054 /* RCTShadowView.m */, + F25FF464A50485C9E6EF75F37E63A8A6 /* RCTShadowView+Internal.h */, + 8D8E9D74AF97B2385EB4FA87CD2EBF52 /* RCTShadowView+Internal.m */, + 9BF261C9B75258A3F31BA963ED60C856 /* RCTShadowView+Layout.h */, + 2CB30789220E5792478E52B860728C9F /* RCTShadowView+Layout.m */, + 492D48AF74729A935712F1EF4A9D7E68 /* RCTSlider.h */, + 6FF6D7458E8C1715C6FA08DDF92F6FE4 /* RCTSlider.m */, + 8C71FE6A0088AE82056650C872DB670B /* RCTSliderManager.h */, + 1653BE17685D8695AD53B0926901A334 /* RCTSliderManager.m */, + B014B6CFDE21C3CDECA04DC8FB451F11 /* RCTSwitch.h */, + A1708B410A9A99F818560047F6B83B10 /* RCTSwitch.m */, + B865B4353C239BD21FA0FEE4C32A8019 /* RCTSwitchManager.h */, + 74D7883E99666545B20F285A05689AFD /* RCTSwitchManager.m */, + 0025553B00C3C36A8BF79261AF533047 /* RCTTextDecorationLineType.h */, + 23573BD4C35106EF45CD3CBA132DC32F /* RCTView.h */, + DBD1A6E618F01836ED2B06599555D1AF /* RCTView.m */, + 69F26FB1017C966CA0EB0F5F862E5F59 /* RCTViewManager.h */, + 2620369B9DA20711E1AA55FCCFA45CA8 /* RCTViewManager.m */, + 800CD1A2C7E6B90875967C3F1B29E1ED /* RCTWrapperViewController.h */, + 5E9B1BD5B1ED703FC6D681CE9B9E43AB /* RCTWrapperViewController.m */, + 56F772CAE7ABA0F1339CD929B661A10E /* UIView+Private.h */, + CADB2A96D0B4184DE3BC77F3CF165EA4 /* UIView+React.h */, + DBE67F81087C01FA91F34D8FE14A8AD5 /* UIView+React.m */, + A135829BC12EAE9CF56E05BEAA1F00D1 /* RefreshControl */, + 26803B56814DC980F3B959B1FBE9BC2D /* SafeAreaView */, + 3F477476614E2E18DCD4F5750F3AB790 /* ScrollView */, ); - name = Payload; - path = Payload; + name = Views; + path = React/Views; sourceTree = "<group>"; }; - 89F3BCF1FE4AF51C65B00C90266890A0 /* FBLazyVector */ = { + 8A73579ABB4A0C48A4226B9C09B26040 /* Pod */ = { isa = PBXGroup; children = ( - 550BFE8F5C79E6486A299B4A4E4C78DF /* FBLazyIterator.h */, - 75EFBDB34FBBB2FE216E35ED156B3113 /* FBLazyVector.h */, - CBFA2D6BA426C9FD78F78F78295C0C63 /* Pod */, - D5C4A0DE852AD3ECBBD511124ECEF0E8 /* Support Files */, + 8D5637F023F01C7033943D6EF1744648 /* UMPermissionsInterface.podspec */, ); - name = FBLazyVector; - path = "../../node_modules/react-native/Libraries/FBLazyVector"; + name = Pod; sourceTree = "<group>"; }; - 8A051C8D312B3BC1040314A153ACB79F /* Pod */ = { + 8AB3F7CA52B4DF82D06801CAD955E90C /* Pod */ = { isa = PBXGroup; children = ( - C6BCD75A89838F565A9A4B789D2A4598 /* LICENSE */, - 995FB2978F4C016731E2A206E0EB8447 /* README.md */, - 97AD5CA8E943FBEDCED81FAA61E6D950 /* RNFastImage.podspec */, + 8902394B5A4A6D2CA6512A17D9955204 /* EXImageLoader.podspec */, ); name = Pod; sourceTree = "<group>"; }; - 8A398024DCC655930DBEA867FA2BF127 /* UMPermissionsInterface */ = { + 8AB66D5D915578447D5551314CF65AC3 /* FirebaseCoreDiagnostics */ = { isa = PBXGroup; children = ( - 1A1F19A586D4C0D63EA88B6ECDC690E2 /* UMPermissionsInterface.h */, - 471436C5FCF70211E89590CF81E793B6 /* UMPermissionsMethodsDelegate.h */, - A353F7E086D2B4C0BCD3F3CF28DF872F /* UMPermissionsMethodsDelegate.m */, - 58817D2F48C0FC9AF0AB1D02CBEE1801 /* UMUserNotificationCenterProxyInterface.h */, - 8695F1D0F9358BD43DDBE79E5CF98BAB /* Pod */, - 2DCA09607972EF02C6DC33BC3DE26927 /* Support Files */, + CF430869D640E630ABEAFE06D4BE94B2 /* FIRCoreDiagnistics.h */, + 367428339A7DC5646DB19BBBF30E151F /* FIRCoreDiagnostics.m */, + 2BC6BBD8A28F29719B12F01C18074170 /* FIRCoreDiagnosticsData.h */, + 993B8BBCAC56746549B6BC04232AE17F /* FIRCoreDiagnosticsInterop.h */, + 853183B8B501634F7E4E02AABCE471ED /* firebasecore.nanopb.c */, + A01401321A90BC04771BAFEE60127391 /* firebasecore.nanopb.h */, + 4A0EEBD114D5C97DC68BAE115096E92D /* GDTCORDirectorySizeTracker.h */, + 90CD2431988C18ADBC261F0BFAF3BE98 /* GoogleDataTransportInternal.h */, + 829E6E370C2FD119D2ED767F24EDE6B0 /* GULAppEnvironmentUtil.h */, + B76E59CE14DF9432450E8D201717765C /* GULHeartbeatDateStorage.h */, + 0EF879CD6D02E996BEB2A566923B0464 /* GULKeychainStorage.h */, + 7C6F6A51162FD6BE1EFE3CC1C144D71A /* GULKeychainUtils.h */, + 011687BE4E9B130A5FA52D6D8E667065 /* GULLogger.h */, + 17171B6FC3B6B0511BB6AA9789244EFC /* GULSecureCoding.h */, + E4683B27615D4AAD9C8A559585EEB012 /* Support Files */, ); - name = UMPermissionsInterface; - path = "../../node_modules/unimodules-permissions-interface/ios"; + name = FirebaseCoreDiagnostics; + path = FirebaseCoreDiagnostics; sourceTree = "<group>"; }; - 8A6EAA35821CBEC3697C77A447F0A1D9 /* Plugins */ = { - isa = PBXGroup; - children = ( - 94D9587D0AA314F54749BAC8F4AD0D86 /* BugsnagPluginClient.h */, - C7D2C8A889B69DBFF16BE95AB81BB04C /* BugsnagPluginClient.m */, + 8AC78126E0BFCA44C1FD51C8EBE9F3F1 /* QBImagePickerController */ = { + isa = PBXGroup; + children = ( + E24E6D1748759D3AD31F4F29C336E607 /* de.lproj */, + 9CAEB29520E2068F454FF971EDBA977A /* en.lproj */, + 6F595EBAE6B22DD20D6125CF27FD7286 /* es.lproj */, + A0BDE8A4AA65853E8D80A058219B4EF2 /* fr.lproj */, + 76654F4D3A7AB35B0D6A131C7FB281A9 /* ja.lproj */, + B3A7081A4A4B2E57040505D3748DD58C /* pl.lproj */, + C3881C2C10611F2DDD8AA446938F53E7 /* QBAlbumCell.h */, + D599233F99B35B87EF994B4D5B1C71BC /* QBAlbumCell.m */, + 14B8D481ECD59F0FAABB9954FEDC1DD7 /* QBAlbumsViewController.h */, + 3B688DBB3C7E9388637BD5D5DABAC99A /* QBAlbumsViewController.m */, + 81057F95C67F88DA343FA4A2AD0F6A97 /* QBAssetCell.h */, + 412FDAE74620E2E0B7617F9F78CC6B19 /* QBAssetCell.m */, + 26E13A24F934A03A572AE164F8303668 /* QBAssetsViewController.h */, + 2DFE00B59DDA7259EA323C7F5D23F5A7 /* QBAssetsViewController.m */, + 8F2AF0ED0C3E7F4FAE9E04D1E74C3857 /* QBCheckmarkView.h */, + 56183F9C3925A0DA23F34F49C19A89CE /* QBCheckmarkView.m */, + 82B6675A30D703760C2724DA313A4810 /* QBImagePicker.storyboard */, + EAA732B815650B9BD28A764FEF918484 /* QBImagePickerController.h */, + 37C33F9E7D8C6775F654ED75C1DCFDC2 /* QBImagePickerController.m */, + DA52BCCCE327BA8A224EED5CE8E55D25 /* QBSlomoIconView.h */, + 49FE1FF251A307308528A7C61047385C /* QBSlomoIconView.m */, + 7AA711C7FE1B29E72984FCB9113EEE56 /* QBVideoIconView.h */, + 54FFA83F2F80083AB0266C03CD7132C7 /* QBVideoIconView.m */, + 8FA192F3B4714F084952D58E029E9090 /* QBVideoIndicatorView.h */, + 22CAD80AE1F264FB310EE06C817220D7 /* QBVideoIndicatorView.m */, + D41720A5821F5E5A55A3AF6F6AE932DC /* zh-Hans.lproj */, ); - name = Plugins; - path = Plugins; + name = QBImagePickerController; sourceTree = "<group>"; }; - 8B11D6802FC09C19066A17235A404BA7 /* core */ = { + 8B0DE15E16E501DCE0AF5B60A8F94F5E /* NSData+zlib */ = { isa = PBXGroup; children = ( - C50B2DC7B1D03CFFCDFC983C705BB30E /* platform */, - 662EB4D1C14F8AA2C5837B9A29621ED1 /* ReactCommon */, + B3B89525513B26DEE78599CC58B9266E /* GULNSData+zlib.h */, + AC8F51AAADB5F6E5AAE02EA7C7D4E5F3 /* GULNSData+zlib.m */, + AC41E74A59F0C785D412B949044207AE /* GULNSDataInternal.h */, ); - name = core; + name = "NSData+zlib"; sourceTree = "<group>"; }; - 8B842BB44F8224928F375A7E2EB8FBE5 /* Pod */ = { + 8B56832329FC65F4505D17E0935CBFA1 /* Pod */ = { isa = PBXGroup; children = ( - A3C360852FD0472C6619B4C887EB5796 /* LICENSE.md */, - 0BE000220127DEB6910FDC7390249D2C /* README.md */, - 7B2FFA910A38768736885FE35A5CF89B /* RNDateTimePicker.podspec */, + 1680CD8F4541996190E72FF3E6DD8A53 /* React-jsi.podspec */, ); name = Pod; sourceTree = "<group>"; }; - 8BCDA242335B32DDD47E0EF491D17437 /* Products */ = { + 8C3F1877AC68DA4EF1143D8849F1D6AE /* keyboardinput */ = { isa = PBXGroup; children = ( - FE6D792B6328AAF68E46924D7F466631 /* AccessibilityResources.bundle */, - 3EEAA606F6866DA20E6601B9655B1027 /* libBugsnagReactNative.a */, - 6CBEFE4F9E22AFDC6347A739BB35FF8C /* libCocoaAsyncSocket.a */, - 6FFB7B2992BB53405E6B771A5BA1E97D /* libDoubleConversion.a */, - 7E7E46B76D0AFE3DFC477DC55C5DB326 /* libEXAppleAuthentication.a */, - AD40A94AE1ADFA1CDF9602BA3B04C90E /* libEXAV.a */, - 220361FF3B2778F8F38C2C4DCC5B49FD /* libEXConstants.a */, - ED1E3FC0DC90F4A787472917BFB6B235 /* libEXFileSystem.a */, - 80A51B61FECFED8D1A0D95AAD32A2938 /* libEXHaptics.a */, - 494E934B4070A029E1A8D42C9BDF4646 /* libEXImageLoader.a */, - 09B5856105EF7C6447B9EC57E7E36B34 /* libEXKeepAwake.a */, - 72558F571738704549E1838E845D2770 /* libEXLocalAuthentication.a */, - 72E494917AC5EC2582197F07061A28B0 /* libEXPermissions.a */, - 130335B611EDD6AFF8824641E06138D6 /* libEXVideoThumbnails.a */, - 574E8A849B86DCF8EE5726418D974721 /* libEXWebBrowser.a */, - ABFEEA82A6C346B22843FBE0B0582182 /* libFBReactNativeSpec.a */, - E2B63D462DB7F827C4B11FD51E4F8E2D /* libFirebaseCore.a */, - 8CC9178C366942FD6FF6A115604EAD58 /* libFirebaseCoreDiagnostics.a */, - 86375444C196BA272DDBB8165BF64A15 /* libFirebaseCrashlytics.a */, - 13C8C8B254851998F9289F71229B28A2 /* libFirebaseInstallations.a */, - E93F701CA8EB196D77AE99E094D873E4 /* libFlipper.a */, - AC12C7E29555A7CFDDEF1EDB5BC2F3DA /* libFlipper-DoubleConversion.a */, - 99D5CD245388DC76AAEF6E1E351A90ED /* libFlipper-Folly.a */, - E00BE2A3146698E81A8F9D00E8F93A6C /* libFlipper-Glog.a */, - ACBB7F62B267CC7C9BBBAE41DE94743B /* libFlipper-PeerTalk.a */, - FFDC7746794AB17CFB7150820479DF40 /* libFlipper-RSocket.a */, - 65234B3E668A42D9137B2C7AB051EE37 /* libFlipperKit.a */, - 3CA7A9404CCDD6BA22C97F8348CE3209 /* libglog.a */, - 856B5CD56F194FAD26EA91620B66D614 /* libGoogleDataTransport.a */, - 6942351307BC1F54575D9853307EAE0E /* libGoogleDataTransportCCTSupport.a */, - B43874C6CBB50E7134FBEC24BABFE14F /* libGoogleUtilities.a */, - 279390C893577F74DD2049383E1EDD1A /* libKeyCommands.a */, - FB6FAD8F0183E86ACBFBD8A81BA7BF3A /* liblibevent.a */, - 5E4674603A5D5B9215FFA0F8E69F8B71 /* liblibwebp.a */, - B88A54159B245E727A6D16DEFE105A09 /* libMMKV.a */, - E0B603F54009DAEF6C3BAAE621E5F180 /* libMMKVCore.a */, - 06FC5C9CF96D60C50FCD47D339C91951 /* libnanopb.a */, - F25C3E827CEC99016CF835D55FD8A055 /* libPods-defaults-Rocket.Chat.a */, - 9621F4B0A44623E984DC190DDF0A9A4B /* libPods-defaults-RocketChatRN.a */, - 563E0A0FEB65B564D6A02A0A948B2E62 /* libPods-NotificationService.a */, - ABCA9F4CD6EE0D4686EBA505F526A436 /* libPods-ShareRocketChatRN.a */, - 3347A1AB6546F0A3977529B8F199DC41 /* libPromisesObjC.a */, - 1936453FF2A7E3A13063C4917C4D5598 /* libRCT-Folly.a */, - F958876A082BF810B342435CE3FB5AF6 /* libRCTTypeSafety.a */, - BD71E2539823621820F84384064C253A /* libReact-Core.a */, - 6771D231F4C8C5976470A369C474B32E /* libReact-CoreModules.a */, - 37592FDAD45752511010F4B06AC57355 /* libReact-cxxreact.a */, - D9F334F2E90E3EE462FC4192AF5C03BD /* libReact-jsi.a */, - F2E7C88DFCD460A4B46B913ADEB8A641 /* libReact-jsiexecutor.a */, - 2577F299FCB0A19824FE989BE77B8E8F /* libReact-jsinspector.a */, - 242758B9EDFF146ABE411909CAC8F130 /* libreact-native-appearance.a */, - B75A261FE3CE62D5A559B997074E70FC /* libreact-native-background-timer.a */, - 6D65F1A831B333D8CF7EB66829B4339A /* libreact-native-blur.a */, - 8C3E2A6E6F93E60E397F6C0BBA710BF5 /* libreact-native-cameraroll.a */, - 7E103FA6ED177E4D7EF38AD267B42C58 /* libreact-native-cookies.a */, - 08D1FFC2980C1ED72AE9A4C44A0544C3 /* libreact-native-document-picker.a */, - 8074129DF318155B29544548E1CAF4A3 /* libreact-native-jitsi-meet.a */, - 4047BC0750B116B1191149A8E7B5389B /* libreact-native-mmkv-storage.a */, - 83A8CC3246A95431ACEA83C7C742228B /* libreact-native-netinfo.a */, - 012242E4480B29DF1D5791EC61C27FEE /* libreact-native-notifications.a */, - 48425DA2F01D82A20786D5E55E264A29 /* libreact-native-orientation-locker.a */, - 2AE9C51AC524FAF90F73601566183A95 /* libreact-native-restart.a */, - 52FCF98CEFF94C742080B6965D537AD0 /* libreact-native-safe-area-context.a */, - BF1F456334C248BD77BE65C60F42FF67 /* libreact-native-simple-crypto.a */, - 2B17A71888AA28CEFEC37B72F2A68A91 /* libreact-native-slider.a */, - 8DF63376066E2275FF26820B3A512A9B /* libreact-native-webview.a */, - 666E72807891C591E025A75410CD2A26 /* libReact-perflogger.a */, - FE7B9294FF05AAFD1653E2104E10844A /* libReact-RCTAnimation.a */, - F71EBF73F354B475D465FF6DE9A66707 /* libReact-RCTBlob.a */, - EEDBF403E8E0B3885E65C2741B536BC5 /* libReact-RCTImage.a */, - 802121F5B756ACBFDD6D08C36246DADD /* libReact-RCTLinking.a */, - A68E5A9B69A3BA0FD52CAF7A354EC93B /* libReact-RCTNetwork.a */, - 269BE773C9482484B70949A40F4EA525 /* libReact-RCTSettings.a */, - E6A16705C69FC7DE11C2469A4A0F8358 /* libReact-RCTText.a */, - C1A919103EAC9813D236486C34FC0A21 /* libReact-RCTVibration.a */, - D5C775614AC76D44CECB6BE08B022F1F /* libReactCommon.a */, - 51B50F20C76CF72E2BEF8D4764235306 /* libReactNativeART.a */, - 2843CE246C3884DD21A4C251E8B34E25 /* libReactNativeUiLib.a */, - 858AFA83985937825473045CF6808B15 /* librn-extensions-share.a */, - 4FDA96879D96070EB1983E98E655CBDC /* librn-fetch-blob.a */, - 202722AA0D229A11350F6DC0F267A0BA /* libRNBootSplash.a */, - 5737DDB4BC95AD399B3206838AB97095 /* libRNCAsyncStorage.a */, - B8CD4B9B578CE9FA38114B638C9CAA78 /* libRNCMaskedView.a */, - 812ED9CD85898FB3B82136F7CB9A3191 /* libRNConfigReader.a */, - 1DC66AC6FB5802B9BA94177EDB54263D /* libRNCPicker.a */, - 72DE4BF3FB9CE0858E90F96FEF8A53AE /* libRNDateTimePicker.a */, - E0FE6533198104C97DB047DD5CD8AC67 /* libRNDeviceInfo.a */, - E55EA3C6F285F6FA8067C5C8A428FA64 /* libRNFastImage.a */, - 34C842CD40D88AB4B2BF24FC77DA0009 /* libRNFBAnalytics.a */, - 18D0B1E13C69654196028DD6EDCC3452 /* libRNFBApp.a */, - EE4AEFEACE275DDCFB42B9400BF6B218 /* libRNFBCrashlytics.a */, - 8F65F9361F2069CF9E9D751272968DE4 /* libRNGestureHandler.a */, - 3AEA4A114C08533A2C0F8E039A4C5EB9 /* libRNImageCropPicker.a */, - 15912309AA610251329D74FA111DE5CA /* libRNLocalize.a */, - C777CF2FB1E39A45CBBDB54E8693F471 /* libRNReanimated.a */, - E496A53A92B4E464B5C30DC5B1E4E257 /* libRNRootView.a */, - 50B5347C9A6E93B7D4CFC3673BA6FB7E /* libRNScreens.a */, - 8998273719FDD789E6F9C7541AFD0B33 /* libRNVectorIcons.a */, - B0B214D775196BA7CA8E17E53048A493 /* libSDWebImage.a */, - FCF61D9B2B75054A9A3185DDC609B7FF /* libSDWebImageWebPCoder.a */, - 7862C607B7BE0510C2D65193F9B4B4F9 /* libTOCropViewController.a */, - 2D86D213801ABEF7CD86291D4F3FDD34 /* libUMAppLoader.a */, - AF72FD600DE7E2D330BA50F877993E05 /* libUMCore.a */, - BC41F4BEFC115303267857B135A144AE /* libUMPermissionsInterface.a */, - 3B640835BAA914DD267B5E780D8CFEC7 /* libUMReactNativeAdapter.a */, - 65D0A19C165FA1126B1360680FE6DB12 /* libYoga.a */, - 5B3357A1CE67C0BF4AE31936A1BE6888 /* libYogaKit.a */, - 3DCCC9C42EB3E07CFD81800EC8A2515D /* QBImagePicker.bundle */, - FE1E812071397E31AE21DFF368B781B1 /* TOCropViewControllerBundle.bundle */, + ECA41A4AF5945036B167A0DD3E78969C /* lninterpolation */, + 4F534F369454BF54B65EEB9AB2D5FFB3 /* rctcustomInputcontroller */, ); - name = Products; + name = keyboardinput; + path = ios/reactnativeuilib/keyboardinput; sourceTree = "<group>"; }; - 8BE1167B2B8A3E0BD71765D5B993230B /* Support Files */ = { + 8C50F6A7E26221D253AD0528237287CC /* Pod */ = { isa = PBXGroup; children = ( - EFF316F1C4228437B26E8ADBDF40A0F0 /* react-native-webview-dummy.m */, - C6BD62929306BF4418698C2A220A1675 /* react-native-webview-prefix.pch */, - CD8B8724B348C3772D9565D61F8A3846 /* react-native-webview.debug.xcconfig */, - CAF267891123E2841781DC5673196785 /* react-native-webview.release.xcconfig */, + AFEF67BDD8C0CD8BD2F4CC4D9CFFFCE6 /* EXLocalAuthentication.podspec */, ); - name = "Support Files"; - path = "../../ios/Pods/Target Support Files/react-native-webview"; + name = Pod; sourceTree = "<group>"; }; - 8CA6E9AD93919F4231A819BECD1E257E /* Singleline */ = { + 8C7A97F1D3EC45E4F7F4BB00B87F704D /* Support Files */ = { isa = PBXGroup; children = ( - E213DA801612E3BBF9E1C0B2821BD9CA /* RCTSinglelineTextInputView.h */, - E60B63962F0015EBE01DA39997A2EC56 /* RCTSinglelineTextInputViewManager.h */, - 5ACE5409F7D0811D41E16155430497AC /* RCTUITextField.h */, + A983B63D77A384672D21FDCF439686EA /* ResourceBundle-QBImagePicker-RNImageCropPicker-Info.plist */, + F56E1BC0BB86E1FEB6FB53404A70E4A8 /* RNImageCropPicker-dummy.m */, + CCF666AC4D6885A12F4D06F9A6731EA2 /* RNImageCropPicker-prefix.pch */, + 4595C87584F3E8A399866B5CD8A8EC2C /* RNImageCropPicker.debug.xcconfig */, + 25AF37C756E35E2CD04A51728B71893D /* RNImageCropPicker.release.xcconfig */, ); - name = Singleline; - path = Singleline; + name = "Support Files"; + path = "../../ios/Pods/Target Support Files/RNImageCropPicker"; sourceTree = "<group>"; }; - 8CCDE0C1317BAD85D95C2EE070994A16 /* react-native-webview */ = { + 8C8980826E7ED6AF894C38BD10C2B90C /* Support Files */ = { isa = PBXGroup; children = ( - 39494CE5C6E65BE2867714886194D196 /* RNCWebView.h */, - 5621347BF283A428BFA1DECDA7C75631 /* RNCWebView.m */, - 58BEA1567C200E7F5F6B279975DF007C /* RNCWebViewManager.h */, - 7505D90D2C884C300D75B003B59BB35E /* RNCWebViewManager.m */, - DA0734961EB066403A23D40DD5CB7F39 /* RNCWKProcessPoolManager.h */, - EDCEE072649FFB5B0DD762223223B843 /* RNCWKProcessPoolManager.m */, - 9E1A7244B70573A31111DF9E6084F55A /* Pod */, - 8BE1167B2B8A3E0BD71765D5B993230B /* Support Files */, + D2F48ABCD4510D96E5A6230C5ACC652F /* RNFastImage-dummy.m */, + B9CB036662B425956219CABBF2D05AB0 /* RNFastImage-prefix.pch */, + 105C50EBA54934CA79953DE0C8DE1EF4 /* RNFastImage.debug.xcconfig */, + 2210CC4400D0694D51F6080A7B00B606 /* RNFastImage.release.xcconfig */, ); - name = "react-native-webview"; - path = "../../node_modules/react-native-webview"; + name = "Support Files"; + path = "../../../ios/Pods/Target Support Files/RNFastImage"; sourceTree = "<group>"; }; - 8D1C566FFF4721FE4113138C0C3A9B01 /* React-RCTAnimation */ = { + 8CAA4DF7F6CCB5F6C14C85372D2EC82F /* CoreOnly */ = { isa = PBXGroup; children = ( - 05DDF222C3236A930FA1D2041D5FB6DF /* RCTAnimationPlugins.mm */, - 2A3F22FAC952E5430A805F4537973541 /* RCTAnimationUtils.m */, - 6CADFA2A40FBABA870ABD822D9B135E7 /* RCTNativeAnimatedModule.mm */, - 85E37AF30AB738B8B5EFA1D488C0E827 /* RCTNativeAnimatedNodesManager.m */, - E65DF580CDF8C63ECECC8CD73F27ABBF /* RCTNativeAnimatedTurboModule.mm */, - 7F464A4DA76C89FA2F27058CD6700BB0 /* Drivers */, - 06254E569651D28305BFE2D742C32E4F /* Nodes */, - A3C8E6D48394621B1A1DF7473CDE20E2 /* Pod */, - 25E311ECE3341C0A076F3113BF6D46A2 /* Support Files */, + 83105B00099FEC5C644B5EB32F0AF37C /* Firebase.h */, ); - name = "React-RCTAnimation"; - path = "../../node_modules/react-native/Libraries/NativeAnimation"; + name = CoreOnly; sourceTree = "<group>"; }; - 8E3B9973267DC0A13BA8F6ED59216B83 /* OpenSSL-Universal */ = { + 8CCF397632B51A60332B1A50F3EA6367 /* vendor */ = { isa = PBXGroup; children = ( - 222528DDC6F0791247B5F37794C1A6BA /* Frameworks */, - 2919C4ADBC70FACD374207376B0BC186 /* Support Files */, + 818D0C9F35A3964D514970F14A3ACE66 /* bugsnag-cocoa */, ); - name = "OpenSSL-Universal"; - path = "OpenSSL-Universal"; + name = vendor; + path = ios/vendor; sourceTree = "<group>"; }; - 8E5A32E3DE7F8BBF28366A1F99BCFEA5 /* Metadata */ = { + 8DA835E9075C9368690886559794ABF1 /* Support Files */ = { isa = PBXGroup; children = ( - D50DC825479EC74D8D93ED11C4676228 /* BugsnagMetadata.m */, - CB4CB6D66748FA47C30357F2544B39B2 /* BugsnagMetadata+Private.h */, + 1BE0E836F457AD43B41535DC70C29F39 /* GoogleDataTransport-dummy.m */, + D6EDE6F5C49C2FF4A67647D6BE2F1A41 /* GoogleDataTransport.debug.xcconfig */, + 1CA40677AD993A6339DDD66C2E5F0124 /* GoogleDataTransport.release.xcconfig */, ); - name = Metadata; - path = Metadata; + name = "Support Files"; + path = "../Target Support Files/GoogleDataTransport"; sourceTree = "<group>"; }; - 8F4C90FB99E53B9B60D9F2F00BA23EE5 /* Pod */ = { + 8DDEC2C7C56B5048E5451EFF2748C5CA /* Support Files */ = { isa = PBXGroup; children = ( - 012F7D3D195DCD3E5316D4D1A7C43311 /* LICENSE */, - E118F6858BCEB19DF7DC045DC499869C /* README.md */, - 174DD3D3F2A5FB69D295E69B39EFB6B5 /* RNDeviceInfo.podspec */, + 36E080E87D3AF4CEF4FC646D0B1AB76A /* EXConstants-dummy.m */, + F81D792404551EAA9DB06CC26DB66445 /* EXConstants-prefix.pch */, + 25919C3E9F7D856708388E79F4E1406F /* EXConstants.debug.xcconfig */, + 00F0ECD141FAD483969D87744195B84A /* EXConstants.release.xcconfig */, ); - name = Pod; + name = "Support Files"; + path = "../../../ios/Pods/Target Support Files/EXConstants"; sourceTree = "<group>"; }; - 8FCF92E88EA049BECAD6F86AFBFF76E0 /* UMAppLoader */ = { + 8EC6E1B08331159733FBCD6B9ECEB78B /* UMFontInterface */ = { isa = PBXGroup; children = ( - 8CAFCFDEAC634A6E70497DD50AFA9962 /* UMAppLoaderProvider.h */, - 042CB045CACE7AFFA4B656B882496E4A /* UMAppLoaderProvider.m */, - DC7BC3BFF6BD1DE54E68E50885C12FE6 /* Interfaces */, - 8873D04DE1D823D5C51BAC6BC6789EA1 /* Pod */, - 2082BB99107B3B538C2E9FFC0E7A5C1A /* Support Files */, + D8BA54EF1A15FC91F3B1B1F1C9F903BA /* UMFontManagerInterface.h */, + 4C1F81FD9E6F43277C9E925F14D3D2B6 /* UMFontProcessorInterface.h */, + 0DA40EC3F21AC3FF0CBFFEFC8D402916 /* UMFontScalerInterface.h */, + 9CB687755DF9F6842807414C27C17009 /* UMFontScalersManagerInterface.h */, + 9C1C66E01C0901DE5C7E84BE2A225636 /* Pod */, + 215EE71E60569DB05FF26161E7C664CF /* Support Files */, ); - name = UMAppLoader; - path = "../../node_modules/unimodules-app-loader/ios"; + name = UMFontInterface; + path = "../../node_modules/unimodules-font-interface/ios"; sourceTree = "<group>"; }; - 90847C147529FEF4F28E023947EEBBB2 /* Pod */ = { + 8F3FE5281E3F3ACAAD24A560027F1E9D /* Support Files */ = { isa = PBXGroup; children = ( - 3747165E54B4A958F377DCBB8451B514 /* LICENSE */, - 0CC82E01F851714C90267C7A7995661C /* README.md */, - CFDAAEEE30F471C4329F59C88696B0DA /* RNFBAnalytics.podspec */, + 3FCF1157FFC387BF27ED8C7EB5524A43 /* Flipper-dummy.m */, + A7D7F37BB0B91AEDCF698721FE47965A /* Flipper-prefix.pch */, + C46EFDBD3BCD8DFF87C413FD97C9147C /* Flipper.debug.xcconfig */, + A6E95B20F1E1E3E8D4A9BDF2B9EC761F /* Flipper.release.xcconfig */, ); - name = Pod; + name = "Support Files"; + path = "../Target Support Files/Flipper"; sourceTree = "<group>"; }; - 90CF9D6D768FDE2512049DD1C5E5A451 /* Support Files */ = { - isa = PBXGroup; - children = ( - 467A1C2E44EBBD5913A8C578602C5AAE /* EXVideoThumbnails-dummy.m */, - F57E1E3DCF37995386576E9CD9D1DCE9 /* EXVideoThumbnails-prefix.pch */, - 1407654FC107F76BB7A3E5B2DD9081B5 /* EXVideoThumbnails.debug.xcconfig */, - 236AF881401FAE128FAAC3B0FA3F256F /* EXVideoThumbnails.release.xcconfig */, + 8FEDB941CABF7AFBD99CC6785DD8469B /* RCTImageHeaders */ = { + isa = PBXGroup; + children = ( + 997B9669B047BE0E81C061CD2AB037C5 /* RCTAnimatedImage.h */, + 952DF28E4BE7FA02F536556154EB795B /* RCTDisplayWeakRefreshable.h */, + 93A55AA66A5CAC2977A683C098422295 /* RCTGIFImageDecoder.h */, + A1986C6D606FBC81905F838949469960 /* RCTImageBlurUtils.h */, + D4909276A1CF7396B4D98AC5284DBF95 /* RCTImageCache.h */, + A5B4AE691E43B8B3A2967DE826F9AD7A /* RCTImageDataDecoder.h */, + 303F643C98184E4DB34F120D81CF162A /* RCTImageEditingManager.h */, + 873DA728CDF6509E742A2C1A707C07B7 /* RCTImageLoader.h */, + 1F9231F5E44746DEE0F29873146F1620 /* RCTImageLoaderLoggable.h */, + CDF60A607B554908330138E15DC7985F /* RCTImageLoaderProtocol.h */, + 20A3891F857FD3CFE9CB38F9E9D80FC5 /* RCTImageLoaderWithAttributionProtocol.h */, + 6F727CFD89C89B8EE07DC23CD07CFA82 /* RCTImagePlugins.h */, + 1F80CD4FAF04DDBDE0833E5B6AA3A018 /* RCTImageShadowView.h */, + 8487E2CA389C2872CE4D384E888CE6B9 /* RCTImageStoreManager.h */, + 09F09D9CAEC455E79664FD96C88C27CF /* RCTImageURLLoader.h */, + 6AE15822D09BA9A976CC03122204B366 /* RCTImageURLLoaderWithAttribution.h */, + CAAD8D8D804700F912DCF45774D314B6 /* RCTImageUtils.h */, + D845824BFFC5155C9C129FCC79DA6890 /* RCTImageView.h */, + 43FE1D1A36FFC54AF8CAFCC9E421B0D0 /* RCTImageViewManager.h */, + 0F7BE525AD2CFD7852E05CF11ACED876 /* RCTLocalAssetImageLoader.h */, + 397D96EA496FBA592A8F15664A9ED2B6 /* RCTResizeMode.h */, + 3BB7931DFB57CC6DE32FB1D4421B8D4C /* RCTUIImageViewAnimated.h */, ); - name = "Support Files"; - path = "../../../ios/Pods/Target Support Files/EXVideoThumbnails"; + name = RCTImageHeaders; sourceTree = "<group>"; }; - 910422524195BA4E7726E48984121CCA /* Pod */ = { + 91FEF6CFA9701A66FA8884096DF574C4 /* Support Files */ = { isa = PBXGroup; children = ( - 58963096519D6C779211460CABBD94E7 /* LICENSE */, - B199080EDD3C366AAB586045837DF903 /* react-native-blur.podspec */, - 651A8F3131951CB6910C3BC1B587DEA4 /* README.md */, + 8373EF15781644723EC409CA6CBD9212 /* EXKeepAwake-dummy.m */, + D505B1982CC2CFB96E2D494BEF603E08 /* EXKeepAwake-prefix.pch */, + 247BCB0F5906C807AA33308FB12ABADE /* EXKeepAwake.debug.xcconfig */, + 0CDFAA03E32CE9D6147ADCBA56E4876A /* EXKeepAwake.release.xcconfig */, ); - name = Pod; + name = "Support Files"; + path = "../../../ios/Pods/Target Support Files/EXKeepAwake"; sourceTree = "<group>"; }; - 922BB6498D6D5011745AD9FBB7727AF4 /* FirebaseCore */ = { - isa = PBXGroup; - children = ( - 4AD8233600FFB546B71BAF0EBB79D22B /* FIRAnalyticsConfiguration.h */, - 3F522791A3F04533C3EE619702346991 /* FIRAnalyticsConfiguration.m */, - 6F0271863C4BA41E4574C7D6BB595537 /* FIRApp.h */, - 592DC2321A8788889B3D76D68D24B042 /* FIRApp.m */, - 89DBA7C561C5E445FC40A52A05441870 /* FIRAppAssociationRegistration.h */, - 7F90B4D772589C134A9486E832D59BFB /* FIRAppAssociationRegistration.m */, - 343B97D9EEBAB3B0515FD53C6201334A /* FIRAppInternal.h */, - D4F1C532F9BEF20239D3696E29DB5A39 /* FIRBundleUtil.h */, - B3513E19B47BF3451C5B25B0E2ED515B /* FIRBundleUtil.m */, - 779A992D4CEE8008A2CEE3910FEF2805 /* FIRComponent.h */, - 63A7B528365B39E6C6E9F68527A0D320 /* FIRComponent.m */, - 9F2E5E567F2A3E3F8FACC128F1C8B145 /* FIRComponentContainer.h */, - 294353905D4A2AB06259E346B63186D5 /* FIRComponentContainer.m */, - 7ACF75B83E9BCF1F92190D41B8827A12 /* FIRComponentContainerInternal.h */, - 2151DEF50B4887F6217F1F2C8F83338A /* FIRComponentType.h */, - 03E7B4CBB3C83D80F339CB90C1B315FE /* FIRComponentType.m */, - D6C5BB22211A7F56D8953B1A2AE24CEC /* FIRConfiguration.h */, - 6D491A5BE778C93D4886A5C866040891 /* FIRConfiguration.m */, - 7016FEDF15804B202D40011AFA46C7A1 /* FIRConfigurationInternal.h */, - 1ED1518F9B4D91C7212B1DF24337648F /* FIRCoreDiagnosticsConnector.h */, - 65C39BD507722298D52DB1270A2BFABE /* FIRCoreDiagnosticsConnector.m */, - FC6D40DB7C45B03A921125161D7D475E /* FIRCoreDiagnosticsData.h */, - 26C4479AE2FD2A23C40DCA31F4837852 /* FIRCoreDiagnosticsInterop.h */, - 2F6F8104994F8DC0891F5424518527FF /* FIRDependency.h */, - BD73AA891D62385187260FC9FAF1E975 /* FIRDependency.m */, - 0AEA0EB941EDBAE9DCC795D9615CD443 /* FIRDiagnosticsData.h */, - F38C5303F7B521491FE9BA5EC76CB6E8 /* FIRDiagnosticsData.m */, - 28E2BAFBF464123D07D80E88EC64B836 /* FirebaseCore.h */, - 5029C3F1FAC79F19E9E6338F44DB533D /* FirebaseCoreInternal.h */, - 9DAEC44B30FD86D9A2F84B6E93CE9B64 /* FIRErrorCode.h */, - E654F3DD214C3891F78D738C606F77F9 /* FIRErrors.h */, - 34C8B1D1EEFDCEED588CE148E11B47E2 /* FIRErrors.m */, - 0228AAAC9829BF3F36E457F5D71714FB /* FIRHeartbeatInfo.h */, - 1A8F7FA2623FB4162CFFE9AC380521F2 /* FIRHeartbeatInfo.m */, - 3350438F260AD1099BB622B3DD2B7478 /* FIRLibrary.h */, - 7EC7BD368C6B452764445084F34B5EFD /* FIRLogger.h */, - 4E7CEA9CAE2AF0E1A5E22F2EDDD3E2BE /* FIRLogger.m */, - 5B18306BC869E0A6F64DC3423EC37D63 /* FIRLoggerLevel.h */, - C5536BC129A4DDE4A2E9C777B33C13C1 /* FIROptions.h */, - 2BB10CDB95E75C6961B3BB55A463C9BF /* FIROptions.m */, - DDA7ABA5C0D80550BED808644A658551 /* FIROptionsInternal.h */, - 747BE71E8C82E7E029D0E1901F01B273 /* FIRVersion.h */, - A1017F5C6F53C539BC0122C7CDA019A9 /* FIRVersion.m */, - 953F7986D74856987774973FCCB9DA59 /* Support Files */, + 9222D8F2F2CCA954D801B29B58133336 /* VirtualText */ = { + isa = PBXGroup; + children = ( + D30D01D6C84A05C120520596009D1D0D /* RCTVirtualTextShadowView.m */, + A8C3337815DE9029213AAD700DC70EC8 /* RCTVirtualTextViewManager.m */, ); - name = FirebaseCore; - path = FirebaseCore; + name = VirtualText; + path = VirtualText; sourceTree = "<group>"; }; - 929F25571593985667AC183E1D7A61D9 /* SurfaceHostingView */ = { + 927ABC54375E318142B31631AE6C8026 /* RNFBCrashlytics */ = { isa = PBXGroup; children = ( - 6F7DD3947C6404858F17C6C80EC228E4 /* RCTSurfaceHostingProxyRootView.h */, - FB66E981678899432AAEE22D2D1F4B7F /* RCTSurfaceHostingProxyRootView.mm */, - D8E85493FCB78658F657C88B19877EB1 /* RCTSurfaceHostingView.h */, - 940D3485BDD3CAB77D10FE84E6AEE696 /* RCTSurfaceHostingView.mm */, - BDCD4150CA90CA54D93291168F2D3975 /* RCTSurfaceSizeMeasureMode.h */, - 1DE1EF90DC2BBDA0ABA8208EFED815A0 /* RCTSurfaceSizeMeasureMode.mm */, + A8A4C4865DD5F2FBBD92A53B3C1CF964 /* RNFBCrashlyticsInitProvider.h */, + 9613FB321CC5D1D35DAAC54E326B5748 /* RNFBCrashlyticsInitProvider.m */, + F468F920BF6EB11ED152DCCDE798BEB8 /* RNFBCrashlyticsModule.h */, + C6A0C31BD9C61BA1C30F779E8279AF1D /* RNFBCrashlyticsModule.m */, + 5FD5E747A5CF4460BF5C662BFBF36148 /* Pod */, + 89D9266C9EFEB371A1180E4CBA556316 /* Support Files */, ); - name = SurfaceHostingView; - path = SurfaceHostingView; + name = RNFBCrashlytics; + path = "../../node_modules/@react-native-firebase/crashlytics"; sourceTree = "<group>"; }; - 9383F13425AE7D54C5688CD630FFD090 /* Profiler */ = { + 92CEE54CB01552724415B00C9BE9FA10 /* Pod */ = { isa = PBXGroup; children = ( - 168E250D320FDE86CCB24E146A6487D0 /* RCTMacros.h */, - E5D28F0A61F7D7F137B1FB7DCFDA4210 /* RCTProfile.h */, - BF6A49E6A21E30BB62BAC2885B08D2F2 /* RCTProfile.m */, - 2714A8AFC726F79408724707E031F80F /* RCTProfileTrampoline-arm.S */, - C23E608D6ECDE8DAF3600B13F5FD8ABC /* RCTProfileTrampoline-arm64.S */, - 2A8F95830D3F54E598653D2A822A45C8 /* RCTProfileTrampoline-i386.S */, - 04CEC819B28EEF081FB1A60A969A8641 /* RCTProfileTrampoline-x86_64.S */, + 813FBE8FCEBF3D17805F07F1F504034A /* React-jsinspector.podspec */, ); - name = Profiler; - path = React/Profiler; + name = Pod; sourceTree = "<group>"; }; - 939B385E714B3CFFB1E4B4E720A6D295 /* Base */ = { - isa = PBXGroup; - children = ( - 7EECDBA9C2689D8B2D852984061BAE5C /* RCTAssert.h */, - 441502CC4AA123448A17A4F45A9351DD /* RCTAssert.m */, - 761D2449B1CD7B8FA9187B26166B2AC4 /* RCTBridge.h */, - D4962E415A146278EC19A739E2A05AA7 /* RCTBridge.m */, - F9DD0BC61611D57C9D11D949E99F4721 /* RCTBridge+Private.h */, - 0158C3C5F6B59D4937DE62B2199DE0AA /* RCTBridgeDelegate.h */, - 759E76BF4E0BCEEDF0710C73EE7060A9 /* RCTBridgeMethod.h */, - 03ABA597EB18982DC357D7D005E5E3B1 /* RCTBridgeModule.h */, - DFBC3A559DA99D3C1938A7085FF679F6 /* RCTBundleURLProvider.h */, - 7656DD83199B7D21A2A2AFE76A975118 /* RCTBundleURLProvider.mm */, - 23292AEFC97696E4FD1368554942AD87 /* RCTComponentEvent.h */, - E73576E4DD271746E8BF6040262BEDEA /* RCTComponentEvent.m */, - 0DF7D4E5C52A9D6120E9A575058D3F6A /* RCTConstants.h */, - 99E3822B579F39D825E4D810F4C4351F /* RCTConstants.m */, - A2284343BA5188575777B171B3DF19A5 /* RCTConvert.h */, - 8F14D03B87A58FC1FBE0393BB896B286 /* RCTConvert.m */, - 5478710FAB2D5DE952BA4AE4F25FEC57 /* RCTCxxConvert.h */, - 9DBBB127A1D2B1415678647D1AF3E00C /* RCTCxxConvert.m */, - 0EDA77D1B8F449421DC2532D38292393 /* RCTDefines.h */, - 79BFEF1825847DD28E26539EE299B92B /* RCTDisplayLink.h */, - 60FC3B7F56EDDDD84C2E753CD47A7FAE /* RCTDisplayLink.m */, - 3F8F686F684238FD8D654AA6C5D5B1DA /* RCTErrorCustomizer.h */, - DA75C4879252CC32645B3BD2E5E3AFD2 /* RCTErrorInfo.h */, - C572FF6900F516C43191EAD1DD36F938 /* RCTErrorInfo.m */, - E4111FAF4E1B43ADB06B9376F8FA80E8 /* RCTEventDispatcher.m */, - BED751D1A47742D040BC09C13B8E004A /* RCTEventDispatcherProtocol.h */, - 08C0C37735B43D597197AEF6D2CDE1C9 /* RCTFrameUpdate.h */, - 1555779B195006E8667B063A0B6672BF /* RCTFrameUpdate.m */, - 226310A8D5AB574DE177101E74A1DE17 /* RCTImageSource.h */, - F317354C786766822DD67A7E191EA343 /* RCTImageSource.m */, - B2A940E26A5A7DA164A5F39A2B057952 /* RCTInvalidating.h */, - 89D1E92791BD83D34D81B52060907553 /* RCTJavaScriptExecutor.h */, - 9CFA170F05C3C601903D7C2A7A727F25 /* RCTJavaScriptLoader.h */, - 68C9E6D3EB09E903470E81DBF85202E6 /* RCTJavaScriptLoader.mm */, - 11F4D1232243030A9C086F45393EDA6A /* RCTJSInvokerModule.h */, - 8DC86699D7FF06D9AC2D7824184FFD21 /* RCTJSScriptLoaderModule.h */, - 60914E3939A0BE01C52CB41770FDFB11 /* RCTJSStackFrame.h */, - 4F49D2F2C2B99010A57070BFAB8D543D /* RCTJSStackFrame.m */, - 992DD574BFA6E0642113BB1C117173AB /* RCTKeyCommands.h */, - 614947D4527A86D0737DD42B9A20A26A /* RCTKeyCommands.m */, - D900AC4A16FB055481C7D4BB42394972 /* RCTLog.h */, - 3D16741B2FF5CADCB83B655457C3DF69 /* RCTLog.mm */, - 07A9DC99CB96BC7EB1CBC7EFF6B4718A /* RCTManagedPointer.h */, - 8AD0F0D4592049D910132658A22E08AB /* RCTManagedPointer.mm */, - B2AD51EBD6D9EED1E920D3576E9CD20B /* RCTModuleData.h */, - 9F7C36C1C750664D152408323FD6AE48 /* RCTModuleData.mm */, - EA449C581CDD206DD064779B64A3A908 /* RCTModuleMethod.h */, - FA40170E5CE0A56BEF48BE0B6D7955AA /* RCTModuleMethod.mm */, - 735F9214AF5AF9C5F1500BB498DBDC15 /* RCTMultipartDataTask.h */, - C637D5D18B465F42A4FE037A2B898D4C /* RCTMultipartDataTask.m */, - 6E00A3B55B15D71B2CD3B55336524196 /* RCTMultipartStreamReader.h */, - EF976FDB7A999CA6E88171129823FFF7 /* RCTMultipartStreamReader.m */, - 146111A52CB56AEC590C1C250424F771 /* RCTNullability.h */, - C1E1432BBE969A04A27A1692A1197129 /* RCTParserUtils.h */, - DC3AB289AEEAE80022BC8C183E917049 /* RCTParserUtils.m */, - A8D24D469956C8F6DAEE7C47B001D415 /* RCTPerformanceLogger.h */, - 76DC70ECDB4F06A59740A2EF006983BE /* RCTPerformanceLogger.m */, - 82205CE222B6E04489CA0E4B9CB5DABD /* RCTRedBoxSetEnabled.h */, - 2DFFAD9F41C6A92527EED93D7F1EB23C /* RCTRedBoxSetEnabled.m */, - 67B0B5C0025E7B120F21C60622927C4C /* RCTReloadCommand.h */, - 84EC04911BB9E6D9B7856568B9938009 /* RCTReloadCommand.m */, - B6D4F2FE824E43B1277BA6B136BEC7B6 /* RCTRootContentView.h */, - A762AC50A28DDAF26213B122E713022B /* RCTRootContentView.m */, - 2A9DA7B3DEEF2490D3AFF80D02558599 /* RCTRootView.h */, - 8040A7E3C4F4E92E5B9FC6E74CD3B7B0 /* RCTRootView.m */, - F22CCC95CE1E45D47814E4D6F87F62FD /* RCTRootViewDelegate.h */, - DC257BCEEAB24E409CAE1A8E70D2C27C /* RCTRootViewInternal.h */, - B50DE8C8F2A19864483D8FC8DD07475B /* RCTTouchEvent.h */, - 617B784FD1DFF9097BAFE1E2344EB943 /* RCTTouchEvent.m */, - 237391D445AE6C2688DAFAFABEDE9202 /* RCTTouchHandler.h */, - 40C245091BB61392A5C0FEFAF15BF406 /* RCTTouchHandler.m */, - B315AC002517DB5B0E4BB7730C693375 /* RCTURLRequestDelegate.h */, - F5C24A28F7BE299202A4BE137E4D7B83 /* RCTURLRequestHandler.h */, - 6FFAD7ACA0EE339C6FAE4005EA9B3FC7 /* RCTUtils.h */, - E4A6BA210B4EFD203AABF20E4E4B840D /* RCTUtils.m */, - 1B21BCAB8E12847B8E6F62ADC277BB13 /* RCTUtilsUIOverride.h */, - A968324B0784C8F950C8F9ED1FEECC6C /* RCTUtilsUIOverride.m */, - B3DCE9A7714DB904FBF656639EC14D50 /* RCTVersion.h */, - 9227C3987BC3C6437A9CA0B0FE0DC784 /* RCTVersion.m */, - ED30428981B0CC60BB4328E0F7C7F14A /* RCTWeakProxy.h */, - A1A2C8C7FD4B43B1CCE15E34F066D5BD /* RCTWeakProxy.m */, - 1735DB7DC7AEF560880AFDB0920B82DE /* Surface */, + 94044C0788A8BF35C5933953E6DCDD01 /* RNFetchBlob */ = { + isa = PBXGroup; + children = ( + A7B87EC71F3D2E483F96490E65E15949 /* RNFetchBlob.h */, + 0D6E820C6CF05DC7636A79B507E31E88 /* RNFetchBlob.m */, ); - name = Base; - path = React/Base; + name = RNFetchBlob; + path = ios/RNFetchBlob; sourceTree = "<group>"; }; - 9401049CC091D20F3E832BE0538542FF /* Support Files */ = { + 94D1C8E8CC034BB9679190AB33A2E456 /* Support Files */ = { isa = PBXGroup; children = ( - 2787A45A8735757BF89DF8998E247CF0 /* RNCAsyncStorage-dummy.m */, - AD2FF0BAAA560F5B8DBBE1906D7FD106 /* RNCAsyncStorage-prefix.pch */, - BAB84396E1439CFE9B9D46D2E892FB4F /* RNCAsyncStorage.debug.xcconfig */, - 4A764BEE14BC35267D9FD25C78F6BB89 /* RNCAsyncStorage.release.xcconfig */, + 2667157068F9D7972460E59733AA11E2 /* react-native-simple-crypto.modulemap */, + CE3E929EED8EF841424DA775AD25A066 /* react-native-simple-crypto-dummy.m */, + 90F3F244CB7794A176C31580D4464693 /* react-native-simple-crypto-prefix.pch */, + 1C81D211652C3CD57829B1D19B946B92 /* react-native-simple-crypto-umbrella.h */, + 8B80ACD405639A2127DD26743CE94C96 /* react-native-simple-crypto.debug.xcconfig */, + 56846E9A604F2FE785A9DAB2C4ECB80B /* react-native-simple-crypto.release.xcconfig */, ); name = "Support Files"; - path = "../../../ios/Pods/Target Support Files/RNCAsyncStorage"; + path = "../../ios/Pods/Target Support Files/react-native-simple-crypto"; sourceTree = "<group>"; }; - 953F7986D74856987774973FCCB9DA59 /* Support Files */ = { + 9549FFDEB3ED33E635676D4AB8C8E5F2 /* nanopb */ = { isa = PBXGroup; children = ( - B427BF719A851FABFC69FC83BC0A0D4F /* FirebaseCore-dummy.m */, - DBC3D997AF120FFB33BFD96167D936A0 /* FirebaseCore.debug.xcconfig */, - 8F5190191CC94B36436BAC17951E36FC /* FirebaseCore.release.xcconfig */, + F3D56F6AE392B635143AD0767217F95D /* pb.h */, + 036F75593E25D76A5CB2F411FBD9FB5E /* pb_common.c */, + BFB3EAD1F08052928F837173A84FB07D /* pb_common.h */, + 073C868461DCB538690281862C697D26 /* pb_decode.c */, + 114B9563272568A2F32B3AE68BBCCDFE /* pb_decode.h */, + B7936606279EB4447A57B80121C06276 /* pb_encode.c */, + 296FF6D10A93D29F271464060530950B /* pb_encode.h */, + 9FF5EA7409598AFC33EF2AC120EDEC99 /* decode */, + CB29A315A3517B6DF934B306C5113CCB /* encode */, + 563E32F679DD6E532939DAE3A57ACE72 /* Support Files */, ); - name = "Support Files"; - path = "../Target Support Files/FirebaseCore"; + name = nanopb; + path = nanopb; sourceTree = "<group>"; }; - 9551023A9ABE6695D0ACF46D95AD29DE /* vendor */ = { + 95AEB76D62A6BB25A4F7ED268FD29B4E /* Pod */ = { isa = PBXGroup; children = ( - 34530DD0B832E4C99BD44D019F8225FC /* bugsnag-cocoa */, + E91442E477D08F10FF4AA1A2DD37E3B7 /* LICENSE */, + D9B3EB5941B824F9D97452AC08A1624F /* README.md */, + 5C8FC5904337308E3717E837CA9CD7F1 /* RNReanimated.podspec */, ); - name = vendor; - path = ios/vendor; + name = Pod; sourceTree = "<group>"; }; - 95C2B1AB6A1E297FCF2D154CE0138FEC /* MMKVCore */ = { - isa = PBXGroup; - children = ( - E2196A5273FA07E66750CC0BAF09C27D /* AESCrypt.cpp */, - 8788C27754B696BDA8DD6600A957E14B /* AESCrypt.h */, - 30E0158E717F1ED37C490CDF675CB681 /* Checksum.h */, - BE976562678AD794F1D9F2F35E89CA6D /* CodedInputData.cpp */, - 2430CFEC73944B4E6CBACE3570B2F700 /* CodedInputData.h */, - CD30F9D9684EBC52D35FC0E36B792B13 /* CodedInputData_OSX.cpp */, - 1158999A56B57AE4217C56B63FFFA59A /* CodedInputDataCrypt.cpp */, - 1EA1B57C073AC14B20B5E5905D1131EA /* CodedInputDataCrypt.h */, - 55D8C288D400FF1755F9015056E5E34A /* CodedInputDataCrypt_OSX.cpp */, - 0B8F8F56D3C45B3777329256B1275595 /* CodedOutputData.cpp */, - 38E1632332F89B9EB75BFF0DB62BFA66 /* CodedOutputData.h */, - 67801958A02500B281EC81392CED35CE /* crc32_armv8.cpp */, - A922CE6E628589CA169E46B45E4FEA3D /* InterProcessLock.cpp */, - C3DE00015B04BC59D5769982E8B2F861 /* InterProcessLock.h */, - 23744ABA4509EF6CB80AC27DE1337FAE /* InterProcessLock_Android.cpp */, - F857F1D4F6B0DA51D90C2E47D9113790 /* InterProcessLock_Win32.cpp */, - 32D640516510CD6D98C1762D93D29598 /* KeyValueHolder.cpp */, - 3554E36A810D8574E002C2092B9121F1 /* KeyValueHolder.h */, - 8FACAC187B44157FC8DE8BAD258EBE36 /* MemoryFile.cpp */, - 52AD7AD43F17197B72F79473014FB75E /* MemoryFile.h */, - 65F7A0C6C87BF5E149864516855F9BB0 /* MemoryFile_Android.cpp */, - 0211423EA326AFDF60ED4C1C6496C396 /* MemoryFile_OSX.cpp */, - 6E1E0315F092C2654B08337CEF9B874D /* MemoryFile_Win32.cpp */, - 0A7AB20268DD9E2D622B86E629FAA4AD /* MiniPBCoder.cpp */, - A760025F9DCA8E281E648E58C5F5CFD8 /* MiniPBCoder.h */, - AF92831C225D2F0E3C8CE8446FF6B84F /* MiniPBCoder_OSX.cpp */, - 77DFA611185C19D8EA65EBBE6DD2DF6C /* MMBuffer.cpp */, - 118760F70DE10C3E528868D8AFF69793 /* MMBuffer.h */, - 5CA67C3517994DD4BC785DB3A2B4FB1A /* MMKV.cpp */, - 8AE7CE9F04ED973A0AB63ADFD39B84B0 /* MMKV.h */, - 8EDA43460C2BF99C5B6F022209E0DA90 /* MMKV_Android.cpp */, - E31156F425D164A2ED4E39B2E9028DD3 /* MMKV_IO.cpp */, - 20DD2DCEC6778419564746DE9727F304 /* MMKV_IO.h */, - 162726B5507F0F382038F5353E150133 /* MMKV_OSX.cpp */, - 2F40785B36761D40360CCF0B7D0E1C43 /* MMKV_OSX.h */, - F8D2E7E327EF00F423CF3CB0003837EE /* MMKVLog.cpp */, - 552390FE19CFD6F5D5586884FACFD5C0 /* MMKVLog.h */, - 0B128A0B7CEFBBB191EF90420A0CCC0C /* MMKVLog_Android.cpp */, - 76A8C67765DA89F084B107A64F614A08 /* MMKVMetaInfo.hpp */, - 8F1DA2CEA3CE04463B0A7359D8CA5609 /* MMKVPredef.h */, - 6A011C3AE203A4A6BA8BC9AEE521484F /* openssl_aes.h */, - 7EA857DA8A2209FA98D02BE1E40ADEC8 /* openssl_aes-armv4.S */, - F46660C998520D7CE088FE9B174D1ED5 /* openssl_aes_core.cpp */, - 6931DC644FEDF73FEBBE11DF0C21A77D /* openssl_aes_locl.h */, - BCE8B2C58C7A5FFE918225BF23BF842E /* openssl_aesv8-armx.S */, - E54E206E6640A82C57D50C0627552E5F /* openssl_arm_arch.h */, - 4C0D19222FBB7FD8D7B92CB3243EABD1 /* openssl_cfb128.cpp */, - F84D66B66D9C1D0B7FA28AC0AF726DA5 /* openssl_md32_common.h */, - 3C3297542C5015ECE437ADDA002D57BF /* openssl_md5.h */, - C482D8D7D2504F96998F7712D5357600 /* openssl_md5_dgst.cpp */, - 15286ADE9046ACD7BB6938AB34C77DDC /* openssl_md5_locl.h */, - 3A0ABE66A02A244D2459E1093B2CB640 /* openssl_md5_one.cpp */, - B4F4D024338D6DCA927F3774F1084E88 /* openssl_opensslconf.h */, - 0C1F0F63DF855EE0FDBA4FD6852B893E /* PBEncodeItem.hpp */, - 3B8270C83DA3FCB589B40A874C110126 /* PBUtility.cpp */, - 5E18EDA82B7F891804060AECEF71B5BE /* PBUtility.h */, - 792D7911DF2A48D00794E7EC7357C1F8 /* ScopedLock.hpp */, - AC806598F97772C30B60BE5001B27B85 /* ThreadLock.cpp */, - 9728A1D78B6345338374226E0BB3DB05 /* ThreadLock.h */, - 78F6CA26048D0032F0E6D6ECC660D451 /* ThreadLock_Win32.cpp */, - CFBD1CFAF90E78854C3262C17F52755B /* Support Files */, + 95E830B00B463B3EA41ABD22236CD8EB /* Bugsnag */ = { + isa = PBXGroup; + children = ( + 491D7E76386CC39B7D3DA418C8BDF3F3 /* Bugsnag.m */, + 94FD9A8EEE79572CB38F4A5EBC79751C /* Bugsnag+Private.h */, + BD42A2C009514DC873362B80B05007E1 /* BugsnagCrashSentry.h */, + 856CB21103FF0F282DA8E8107A242F46 /* BugsnagCrashSentry.m */, + 62ED6B4BCA463AE929A9FCC68439F736 /* BugsnagLastRunInfo.m */, + E1AC095A5B43CACDFB3CA599A89CEF58 /* BugsnagLastRunInfo+Private.h */, + E68AABB7E6C2334DCF5B7AF56976E819 /* BugsnagSessionTracker.h */, + C73848EDC5F4BBC10E3F0D6EA0821D4D /* BugsnagSessionTracker.m */, + 38C9EAA978FFE12645C073012B9D3100 /* BugsnagSessionTracker+Private.h */, + 2D9950EA369675738C58A163E63F7D9F /* BugsnagSystemState.h */, + 7787CE1C516F3A760BCAC0408D65DC68 /* BugsnagSystemState.m */, + A3A35894D6E051078B99D15E1130885B /* Breadcrumbs */, + 18606EBFA5C234F789506035B2BA77EF /* Client */, + 7A07A9F920270DDA0BECB49F3F2D7222 /* Configuration */, + 41A61C2BCDBF7705BDA6A9B3F15F9B6A /* Delivery */, + 35B920AC5532689D3C3916B2F250D7B3 /* Helpers */, + B510109543F1A04DC951A8DA61BE734E /* include */, + 5E33DD9E21FAC40C2A0769DA1C6474B7 /* KSCrash */, + E11B63DA733D2336E9167B317CBD81B6 /* Metadata */, + 993F563C54FED310FA2D7F0C22A0B16C /* Payload */, + 99EC8B8BC345ABB2B9F0F9267C30A7EA /* Plugins */, + D719CF42B24C07C962062EC6D0A4504E /* Storage */, ); - name = MMKVCore; - path = MMKVCore; + name = Bugsnag; + path = Bugsnag; sourceTree = "<group>"; }; - 980EAE587987D45F974EF3986B1DB46F /* Modules */ = { - isa = PBXGroup; - children = ( - 9942BE296BDC9338E1E5B26D1CFF0853 /* RCTEventEmitter.h */, - EA885519C9B954A79F80E54872CB9A51 /* RCTEventEmitter.m */, - 355D6578FE6CE7A9FFF81C56C9A18088 /* RCTI18nUtil.h */, - 9BFF8F1D045AC3CDC40AF33C85E5F676 /* RCTI18nUtil.m */, - 550F4A1CB3049209E177D33601E9B7C0 /* RCTLayoutAnimation.h */, - DACBA26AE500A3366C8A944D81FB5518 /* RCTLayoutAnimation.m */, - E2E3E7B7F4020EE3A3F8B639ACC00310 /* RCTLayoutAnimationGroup.h */, - 077BEFF3805136F3DA0C317B2C868616 /* RCTLayoutAnimationGroup.m */, - D6BB52881A2A5900E7C1260BC6523D0A /* RCTRedBoxExtraDataViewController.h */, - 1F19CC5C35BF909ABD4BC370AB26FF49 /* RCTRedBoxExtraDataViewController.m */, - EA8A071B5F6B8CB45234079D7A7C9042 /* RCTSurfacePresenterStub.h */, - CC799336E05389500EC88E957FB42160 /* RCTSurfacePresenterStub.m */, - 781C339E09C3A84606F79E7D18E333E6 /* RCTUIManager.h */, - DE10C5B336D195F78AE3691779E4C990 /* RCTUIManager.m */, - C7A950D965978616E154B786E20C04CE /* RCTUIManagerObserverCoordinator.h */, - CA5B2F76C7122E579D86F19EDCFF9E89 /* RCTUIManagerObserverCoordinator.mm */, - 9F347E42EA64B7AFE343CE9A4E497834 /* RCTUIManagerUtils.h */, - 31D0FBC843D7D2564E682644B2AA4E9C /* RCTUIManagerUtils.m */, + 95F8B28043E78DC91045B448DDED5FAB /* React-RCTVibration */ = { + isa = PBXGroup; + children = ( + A35454FAFB2D4546FBF973FE612A1FC3 /* RCTVibration.mm */, + 10624FF1EE4D86684789A9D62944F9D4 /* RCTVibrationPlugins.mm */, + 6B1D0AA45AB51238FE05A676E4B2BE95 /* Pod */, + 301FE73E5199B12AD392C36691B5F004 /* Support Files */, ); - name = Modules; - path = React/Modules; + name = "React-RCTVibration"; + path = "../../node_modules/react-native/Libraries/Vibration"; sourceTree = "<group>"; }; - 98686B7ADD52CE21AF3F1261B62CFA12 /* FlipperKitNetworkPlugin */ = { + 9605107BC3FEBB16054F5B349F87E900 /* Support Files */ = { isa = PBXGroup; children = ( - CE0AECC804B24895157FC7CA0CBEC546 /* FlipperKitNetworkPlugin.h */, - 8ABA4E5F665B0B8B414DBC00C6F5F45A /* FlipperKitNetworkPlugin.mm */, - BA6C0D4B6015D75E5E7148299643A578 /* SKBufferingPlugin.h */, - 9665E96A1951706C8EAE0C847E4E7288 /* SKBufferingPlugin.mm */, - 30FBF9F21765CD2B2B91FB4335FCE513 /* SKBufferingPlugin+CPPInitialization.h */, - BED0871489A485AE4BFE22FE7FBC108E /* SKDispatchQueue.h */, - A669D8965DD5F59135852201EAA4B1C7 /* SKNetworkReporter.h */, - 3A8CCCBE73A3BFD287D74C0DFBF7B010 /* SKRequestInfo.h */, - DB9FFA6AFE6BDC6D8DC0FE90FDB23935 /* SKRequestInfo.m */, - 0146ECCB0970B6BA42AE57E3AE89E1E4 /* SKResponseInfo.h */, - 069B7DCA8602CC04FFB29B10C5827D79 /* SKResponseInfo.m */, - D2322A3A37A78CF82ABE28C37D8CACA5 /* SonarKitNetworkPlugin+CPPInitialization.h */, + 386722BED83FD2DE5F55C3152AE9E11E /* DoubleConversion-dummy.m */, + 8A2B295279CC63B26F161C681B8AD579 /* DoubleConversion-prefix.pch */, + D5CBF2336F4095BC29EB6E32B6EDAED5 /* DoubleConversion.debug.xcconfig */, + B6A1EF804E42CE1429AB5A0BE5971E9D /* DoubleConversion.release.xcconfig */, ); - name = FlipperKitNetworkPlugin; + name = "Support Files"; + path = "../Target Support Files/DoubleConversion"; sourceTree = "<group>"; }; - 995F9E2F0B69506652E782FC65C4A6C6 /* EXVideoThumbnails */ = { + 964B51959756A47179929D2076A8F8B3 /* RNDateTimePicker */ = { isa = PBXGroup; children = ( - 55D1B6B22130A6906F858A24EBA49AC0 /* EXVideoThumbnailsModule.h */, - 3F633FC9A4ECFED62A7161EF40385593 /* EXVideoThumbnailsModule.m */, - A625D0C50CDB5C67B97EE9FB239AEF77 /* Pod */, - 90CF9D6D768FDE2512049DD1C5E5A451 /* Support Files */, + 528F237CC320B495D7E3E338DF645B3C /* RNDateTimePicker.h */, + 094BE4C397D199EA39B615A65F6DC4F8 /* RNDateTimePicker.m */, + 99660FDC1706DDB1D718EA06874CB12E /* RNDateTimePickerManager.h */, + E31C19D8AFC44ECFFDC07485931767FC /* RNDateTimePickerManager.m */, + 76E92F68D52EA217FAB939DF89B086E1 /* Pod */, + 96F701EBA438CA5587828835EBB36707 /* Support Files */, ); - name = EXVideoThumbnails; - path = "../../node_modules/expo-video-thumbnails/ios"; + name = RNDateTimePicker; + path = "../../node_modules/@react-native-community/datetimepicker"; sourceTree = "<group>"; }; - 99E18A6BC79341D155808C49D93EDFA4 /* inspector */ = { + 96727B1A1F865D987DEEE73A363F5BC9 /* internal */ = { isa = PBXGroup; children = ( - 17B2D7D6EB299F30ECB668D48EFFC693 /* AsyncPauseState.h */, - 55294EC3E504C8BA006BB2B2EBA6DAC8 /* Exceptions.h */, - CCE6F0D85D54A00E182C45B6F5C344B2 /* Inspector.cpp */, - 16CE48BF7953C0C2AE3725FB0BA0A62C /* Inspector.h */, - 8D4C7E239FF2B59CAAB77967C86A9E05 /* InspectorState.cpp */, - F2A83070D76D4896271A32C9846E7EAC /* InspectorState.h */, - 74DB06B63902EA9FEA6180E8CEF465B4 /* RuntimeAdapter.cpp */, - 2EB2ED7BBB8478C051F527DDEF79EC6F /* RuntimeAdapter.h */, - 6222957EB3ADCA91D72DBFA80FDDCD9F /* chrome */, - DBCB00A3035149DC0C19D83FDDD1B3B1 /* detail */, + 71B8A8AEC76CAD6E08473A8240690083 /* experiments.cpp */, + EA5A03D8EFFE75949B7FAAB79BFDECDC /* experiments.h */, + E6EAE357D82F2E13F6104993B12B3A06 /* experiments-inl.h */, ); - name = inspector; - path = ReactCommon/hermes/inspector; + name = internal; + path = yoga/internal; sourceTree = "<group>"; }; - 9A31E10A47336F778AC987F4BED75802 /* DevSupport */ = { + 96F701EBA438CA5587828835EBB36707 /* Support Files */ = { isa = PBXGroup; children = ( - 8DF9154B625CDF64054C782A8A018631 /* RCTDevLoadingViewProtocol.h */, - BCABB017733DA167CDCE49C71D027269 /* RCTDevLoadingViewSetEnabled.h */, - 9CB068C3C1090FBC4AC6414F186E9BE8 /* RCTDevLoadingViewSetEnabled.m */, - DD6B376F981D957E30F8608A3BD3C449 /* RCTInspectorDevServerHelper.h */, - 3A45D48E274BFCE3C858D392D9F949CA /* RCTInspectorDevServerHelper.mm */, - 95C952DEB1AD9F4915CC2757BC264465 /* RCTPackagerClient.h */, - E884679A003053FDD31145859496BA59 /* RCTPackagerClient.m */, - 26DD49E2C4934CD535EFBBAABC571FE2 /* RCTPackagerConnection.h */, - 31E6E9ED526B2A75CD508972807E3085 /* RCTPackagerConnection.mm */, + 88D064A435C820E2896C2463E3AA9F9F /* RNDateTimePicker-dummy.m */, + 1F30923CC4A6A0FC16DAF543F2033150 /* RNDateTimePicker-prefix.pch */, + C908638D5A76002CB9B80147DC186B84 /* RNDateTimePicker.debug.xcconfig */, + 4C58A1A4422757A5A73BE5AC450D914D /* RNDateTimePicker.release.xcconfig */, ); - name = DevSupport; - path = React/DevSupport; + name = "Support Files"; + path = "../../../ios/Pods/Target Support Files/RNDateTimePicker"; sourceTree = "<group>"; }; - 9BD031E9FB115C1968702E67B4DD73A4 /* executor */ = { + 96FBE0B9517A705CD93F22AFE3506C50 /* Support Files */ = { isa = PBXGroup; children = ( - 4D2FBE8FEFA4D8FD974BDC25702872C8 /* HermesExecutorFactory.cpp */, - D746FBE13B9C27EC693E1F439D3AB800 /* HermesExecutorFactory.h */, - BC2640F7778BB7204E46524DA5B3D0EF /* JSITracing.cpp */, - E4B78EBBF959C2EAF87A2DCF877BD136 /* JSITracing.h */, + 5B00FF93A1ADC567B1107BE1F3FB30EE /* CocoaAsyncSocket-dummy.m */, + 99C79F0BF17B901215CEAD29F0F185CD /* CocoaAsyncSocket-prefix.pch */, + ECAC80887180311A52124B1B1F656A3D /* CocoaAsyncSocket.debug.xcconfig */, + 89BB2EDFC0267D4F5FCBD819ACA56339 /* CocoaAsyncSocket.release.xcconfig */, ); - name = executor; - path = ReactCommon/hermes/executor; + name = "Support Files"; + path = "../Target Support Files/CocoaAsyncSocket"; sourceTree = "<group>"; }; - 9C8094292F690C3ABB1610D9E52A3976 /* mux */ = { + 979A52A97263342D2FFA17C38397AC71 /* React-jsi */ = { isa = PBXGroup; children = ( - 58B94465E6740BC4396BE9B1AA8814EC /* anim_encode.c */, - 7CD6F641BB6063F13EA12BA92620DE6E /* animi.h */, - 6CF53837C68C7B590404D59EF0192BFC /* mux.h */, - 9D9E65506D61DF8C18A834C7563C7C8D /* muxedit.c */, - 0296DE86E440E4C1E3E73A957A6FA40E /* muxi.h */, - 1C846DAFD37C35A25F692FCE7C6E93F9 /* muxinternal.c */, - 8DD7506B4DC024949AB693811564957D /* muxread.c */, + 4FB3B130A3266C0BC8C92E78C515AFA5 /* JSCRuntime.cpp */, + 7B0FC59AE54F461AA104D3898DF5FE56 /* JSCRuntime.h */, + C37537E5DE63D4E8243BE542F90A48A9 /* jsi */, + 8B56832329FC65F4505D17E0935CBFA1 /* Pod */, + 5FAB571729D3E80E77769B437F369A25 /* Support Files */, ); - name = mux; + name = "React-jsi"; + path = "../../node_modules/react-native/ReactCommon/jsi"; sourceTree = "<group>"; }; - 9D565FDAA5E52962D5D1A74FE2740313 /* Pod */ = { + 979ED14AEB4AF9C356342CFD11AEFB77 /* detail */ = { isa = PBXGroup; children = ( - 6CBD09F71E3B527302EF7324C4215788 /* EXImageLoader.podspec */, + 2EA9C9A9E4FA3E8A2BEF1110D54C03E0 /* CallbackOStream.cpp */, + 424CA68846CB2722AF9979E9AE569D5D /* CallbackOStream.h */, + 37A4167B681C5908715BE2EF07DB3E07 /* SerialExecutor.cpp */, + E55EDDEC77042F3A98563BFA72154E6D /* SerialExecutor.h */, + 2C5B7359072A46C3DADEE3375647BCDD /* Thread.cpp */, + A07AD7E08943915773F121F1AC28C074 /* Thread.h */, ); - name = Pod; + name = detail; + path = detail; sourceTree = "<group>"; }; - 9DB0D3C44A982CC7D6085AEB75D4069E /* Pods-ShareRocketChatRN */ = { + 97D0B29B145B98E8B6291D56F568691C /* Support Files */ = { isa = PBXGroup; children = ( - 7125FF740077098B59A78E66EB1F40FE /* Pods-ShareRocketChatRN.modulemap */, - 2B361608B34C96A6FAB5E98FCEA3A462 /* Pods-ShareRocketChatRN-acknowledgements.markdown */, - F32A0F7045702BDFBAB9059CAD1938C9 /* Pods-ShareRocketChatRN-acknowledgements.plist */, - 81ABB69299E6F3BB892E995CFDCECD7A /* Pods-ShareRocketChatRN-dummy.m */, - 949B140FBE75F86A22077BDC59663BF9 /* Pods-ShareRocketChatRN-resources.sh */, - BAED847E8A22919EDDB894F3B4C38BFF /* Pods-ShareRocketChatRN-umbrella.h */, - EEA4CC9B97D8B1DF863F7448D02747DE /* Pods-ShareRocketChatRN.debug.xcconfig */, - 29A522F564C45BAC1C908C4FA821DD3F /* Pods-ShareRocketChatRN.release.xcconfig */, + F343002BB2B4DA1CE8C45B5552C49BE7 /* React-RCTSettings-dummy.m */, + 987A523FE8F6A0A90CDADDDC37473814 /* React-RCTSettings-prefix.pch */, + ED2378544EDCF5D2CDCAD6A2A635BC8E /* React-RCTSettings.debug.xcconfig */, + A12C5E61F87AF0DF23C1C85A7CC261B1 /* React-RCTSettings.release.xcconfig */, ); - name = "Pods-ShareRocketChatRN"; - path = "Target Support Files/Pods-ShareRocketChatRN"; + name = "Support Files"; + path = "../../../../ios/Pods/Target Support Files/React-RCTSettings"; sourceTree = "<group>"; }; - 9E1A7244B70573A31111DF9E6084F55A /* Pod */ = { + 9821E66DDE02061CB0BD6C0C9AEA6FA6 /* Pod */ = { isa = PBXGroup; children = ( - 6CF745EDA739D9C3E1176587CBC2416F /* LICENSE */, - 52F252E0F0B192B8B9210D9400720D55 /* react-native-webview.podspec */, - A05F3C56018FFF610BB63324E31E4CD3 /* README.md */, + 52D8ACC7061D6118857C2A5720E4804E /* BugsnagReactNative.podspec */, + 7991B848FE8BFD9952558DE43DB51A7B /* LICENSE.txt */, + C3967DC526D085329D25451465D93FC1 /* README.md */, ); name = Pod; sourceTree = "<group>"; }; - 9EAD96B268B16ABA0F5D8AF18F58FA65 /* UMFileSystemInterface */ = { + 98D48543254ECFB523827BBFBFBE1757 /* Support Files */ = { isa = PBXGroup; children = ( - 10C29F3BD62122762F636FC1949D2026 /* UMFilePermissionModuleInterface.h */, - 96E4461D9DEA1D2C1CFFB0E9C5177F3B /* UMFileSystemInterface.h */, - BF3FDAC75B9F0DE02856F730C991254F /* Pod */, - 2F90513627F8CF41BECF52C115FB80D9 /* Support Files */, + 165C50D5140942B7C81EF9417151EFC9 /* YogaKit.modulemap */, + 382F713E7632721E001DE0D7ACC15E76 /* YogaKit-dummy.m */, + 7567D6B6253FD278F4BE5BA8DC642816 /* YogaKit-prefix.pch */, + D4658B75F7F786045BE392B677FA6E25 /* YogaKit-umbrella.h */, + 93BE2A7258570215888E5E1DBC0D20DA /* YogaKit.debug.xcconfig */, + 2ED5DDDAC4BBAAA67FE466A1082C95F5 /* YogaKit.release.xcconfig */, ); - name = UMFileSystemInterface; - path = "../../node_modules/unimodules-file-system-interface/ios"; + name = "Support Files"; + path = "../Target Support Files/YogaKit"; sourceTree = "<group>"; }; - 9EDC4943333AC93B4B0A6E28BAECFEB2 /* SDWebImage */ = { + 98F33C6364A6D8770A1715E0E7C0A112 /* Support Files */ = { isa = PBXGroup; children = ( - D5D5A8EE09B0A91BDC986E578C5DD8B3 /* Core */, - FE3F51365DDF1A171FD76E8F2037DB80 /* Support Files */, + 03F6C9D3566B7A517801606D4F076BD1 /* react-native-netinfo-dummy.m */, + 008A70807569A5A2E4A6D52F305F6B88 /* react-native-netinfo-prefix.pch */, + EFCFED14B57978221E8267BE2937FC7E /* react-native-netinfo.debug.xcconfig */, + AAC5104AD30B669A817C007D7D25661B /* react-native-netinfo.release.xcconfig */, ); - name = SDWebImage; - path = SDWebImage; + name = "Support Files"; + path = "../../../ios/Pods/Target Support Files/react-native-netinfo"; sourceTree = "<group>"; }; - 9F36383D72DBF777DCB4FF1C7E4D0CA0 /* DevSupport */ = { + 9921FA0EA57C303717FD7E5912AAB6C7 /* EXAV */ = { isa = PBXGroup; children = ( - 9A31E10A47336F778AC987F4BED75802 /* DevSupport */, - 4C499D2B639960FBADB21694E1737622 /* Inspector */, + 8C5BB0DC78FEE44E43A7590BC2452EA7 /* EXAudioRecordingPermissionRequester.h */, + 8D446EF8FABEBAF49DC15B370BDE1205 /* EXAudioRecordingPermissionRequester.m */, + 944E90329EADCCBF55638351C5FA6823 /* EXAudioSessionManager.h */, + E12C0BD97750A1146C29953C5321F5A2 /* EXAudioSessionManager.m */, + 8CF296CDD1729FF3241AF6E06AA2A505 /* EXAV.h */, + A8512406AA9C785FC47F1D9EFAEE0312 /* EXAV.m */, + 905C4A2E0B91A8A9EEA897C6E47B431D /* EXAVObject.h */, + 1895803C697235430E7866ED95E0A75C /* EXAVPlayerData.h */, + F7E5BFD9FD22173D1788D3711873E988 /* EXAVPlayerData.m */, + C3D8828D50F30D5205F43B1FB50BD051 /* Pod */, + F90D006944306DF911191693C68D34B1 /* Support Files */, + A3F6BD85F98270EFE0F00E920AB2968C /* Video */, ); - name = DevSupport; + name = EXAV; + path = "../../node_modules/expo-av/ios"; sourceTree = "<group>"; }; - 9FB1FC23DE15AFE2E73510A47F631002 /* RCTTypeSafety */ = { - isa = PBXGroup; - children = ( - 6CFF6339FBEA769B1F8F933E9BB6D49B /* RCTConvertHelpers.h */, - FAC8A167DF1A7C0901FE50F1DE77AB71 /* RCTConvertHelpers.mm */, - 0B5104E51CBBF3CC7204A871489BF7FA /* RCTTypedModuleConstants.h */, - 7AF194825F5D1BAADE276FBE93BA8106 /* RCTTypedModuleConstants.mm */, - 6FE9633002568CCB9846A275B09257DF /* Pod */, - 7B037C312B641BA61D9AF131E99A7022 /* Support Files */, + 993F563C54FED310FA2D7F0C22A0B16C /* Payload */ = { + isa = PBXGroup; + children = ( + 73DE348138F627811E88BC6D05D17795 /* BugsnagApp.m */, + 69C7BF5BD05898AE65B22F4D2FA3E6C7 /* BugsnagApp+Private.h */, + FB7B707D73A96256AFB6C94EA4476430 /* BugsnagAppWithState.m */, + C9ACC95C7DC421A6470BC58FCCF662D4 /* BugsnagAppWithState+Private.h */, + 7DDCC772E3B2626C041769FF1CFD16FB /* BugsnagBreadcrumb.m */, + A6EAD134FABE877CC4CB14654D71CEE3 /* BugsnagBreadcrumb+Private.h */, + 9F1C5606DA9104AF6B22862FAFDD0D77 /* BugsnagDevice.m */, + AA50E88895FD316E36B9363CA3AA21B7 /* BugsnagDevice+Private.h */, + CE9BB285173AAB80FD42F78CEB01AE75 /* BugsnagDeviceWithState.m */, + 3B2AFF33229882339749583AE74849FA /* BugsnagDeviceWithState+Private.h */, + 685187C15867A3C0DE83D77B9F5B3A7A /* BugsnagError.m */, + 6D162746E137EFF9841458EA39CF5AAE /* BugsnagError+Private.h */, + EDF7C04F611F867F36DBBD81BDA2A1D1 /* BugsnagEvent.m */, + 57C58E173752B7BA74351EF1442C087D /* BugsnagEvent+Private.h */, + 1E14334F0F1E814B22025C4E1F4DB4F2 /* BugsnagHandledState.h */, + F04D2978A22BB01CC8D75C9356763B9F /* BugsnagHandledState.m */, + 55E276AC1239C55F010D125011B44FC4 /* BugsnagNotifier.h */, + 7066A5AA23A744829427EB4506080E4E /* BugsnagNotifier.m */, + CF5F818C871CFBBA60572CD3BBD14A6F /* BugsnagSession.m */, + 03739C7A744631D8719C0BBC0FAA77AA /* BugsnagSession+Private.h */, + 134633DF5E0610326A5F72493736B545 /* BugsnagSessionTrackingPayload.h */, + AB868C42416DE1FB18A0321E8A992EAF /* BugsnagSessionTrackingPayload.m */, + 03D6A1B21A46BA36C992FD5E70666AEA /* BugsnagStackframe.m */, + 6ADB9F02688559DC6ADDFCE27DE61F81 /* BugsnagStackframe+Private.h */, + 854CEF65AAB084A85CBE3089CB2D760F /* BugsnagStacktrace.h */, + 823C0A80AE747CE9483F241D060396AA /* BugsnagStacktrace.m */, + F20BBBFC85F40454A7B0070814063AD7 /* BugsnagStateEvent.h */, + 8E7B6BD8B49906D9FB21FEEB60A6F08E /* BugsnagStateEvent.m */, + 040DF08DF9FBD2E0C494597214DED9CB /* BugsnagThread.m */, + 60AC6A41E0E5C1F4F76E17AF356A4975 /* BugsnagThread+Private.h */, + A667A93C3C91659DED396A26BDF43B19 /* BugsnagUser.m */, + 180E202451F4D1F49DA7B991516004C8 /* BugsnagUser+Private.h */, ); - name = RCTTypeSafety; - path = "../../node_modules/react-native/Libraries/TypeSafety"; + name = Payload; + path = Payload; sourceTree = "<group>"; }; - A2EA80D2B861D24F3C4EFFFF75D4A028 /* Default */ = { + 996A92E54F30DC62539EFFAC8829C682 /* Support Files */ = { isa = PBXGroup; children = ( - 939B385E714B3CFFB1E4B4E720A6D295 /* Base */, - E77ACC032464D4DCFBB99639A09F92AD /* CxxBridge */, - 2A13D72527B64620BD3DDE11B8E77759 /* CxxModule */, - 5BDB10A43998C1AAB312B64D6D1F2091 /* CxxUtils */, - 980EAE587987D45F974EF3986B1DB46F /* Modules */, - 9383F13425AE7D54C5688CD630FFD090 /* Profiler */, - 291EA66C178E664FC9E1C62C71796E21 /* UIUtils */, - ACE1251AEA98FFF9B51A0825EC78AA44 /* Views */, + A153C0CA7BA353404786AECB0BB90426 /* libevent-dummy.m */, + EF1356A53C518896E0B04CD2DFFFE5BD /* libevent-prefix.pch */, + 36101CE4DF5445830E80F949F70A8DAF /* libevent.debug.xcconfig */, + 1B451D2C333340E5C61C9D464B249D28 /* libevent.release.xcconfig */, ); - name = Default; + name = "Support Files"; + path = "../Target Support Files/libevent"; sourceTree = "<group>"; }; - A31D5AD00EAE5341E2F862C116937B96 /* rn-extensions-share */ = { + 997E012C05AF84730DBBB1CE278E4BCE /* Pod */ = { isa = PBXGroup; children = ( - 3DD200BF5701502D7B4E9ACFF160CDC1 /* ReactNativeShareExtension.h */, - 6E0611FB660329A962544FF42EC9A319 /* ReactNativeShareExtension.m */, - 0C72D09103A95D8FF37F9A28510E4133 /* Pod */, - 3A51952E40338BFA1F012325F35C9B92 /* Support Files */, - ); - name = "rn-extensions-share"; - path = "../../node_modules/rn-extensions-share"; - sourceTree = "<group>"; - }; - A3C6F98DF7B23B0632926F167871EBB2 /* React-RCTImage */ = { - isa = PBXGroup; - children = ( - 4FE1D3B427082E6E61CC0FE1559311CE /* RCTAnimatedImage.m */, - 193324800AD3DBFE52C49B3E1428D6D4 /* RCTDisplayWeakRefreshable.m */, - 8BEA84648DD179648D9C23A7512E5D32 /* RCTGIFImageDecoder.mm */, - 581B0AD8D2AF95FB3BA0D971E4BE811A /* RCTImageBlurUtils.m */, - C19F872B607A5D258F69243BA87A938D /* RCTImageCache.m */, - E93BF2785F1FCD510171B2995196D697 /* RCTImageEditingManager.mm */, - 827B56C1E939D2F8F150F08DF0948799 /* RCTImageLoader.mm */, - E3FBC406B7914F6D0D0800690D849E54 /* RCTImagePlugins.mm */, - 15D83FE08FADE0344CE2715E708B14D5 /* RCTImageShadowView.m */, - 34AB4B3088C51FCD93965DF27C55C21E /* RCTImageStoreManager.mm */, - F23AD8558F75A3F91F8721E980114C00 /* RCTImageURLLoaderWithAttribution.mm */, - 939CB389DABA0DEE02F6290050EF69F1 /* RCTImageUtils.m */, - 7887E907B8FD1216406FF6C50AD5A66F /* RCTImageView.mm */, - B69F271A5C44B69E65EC9A06D5CF0CA2 /* RCTImageViewManager.mm */, - A296FCCEBB73CBA5F8831A307C3B5D91 /* RCTLocalAssetImageLoader.mm */, - 607B3D72F1D65F0541F6A67178F50A0C /* RCTResizeMode.m */, - 63A78931AA61F6FBBB499A3DEE605446 /* RCTUIImageViewAnimated.m */, - CE15F0ED35AE8D19B52658CA1C0E0D05 /* Pod */, - F641105844363762CA3BBBE07CC08592 /* Support Files */, + 707BE48D7690C9621713681E13F8BEE7 /* EXFileSystem.podspec */, ); - name = "React-RCTImage"; - path = "../../node_modules/react-native/Libraries/Image"; + name = Pod; sourceTree = "<group>"; }; - A3C8E6D48394621B1A1DF7473CDE20E2 /* Pod */ = { + 99D1F80639FFAE59992421274DC682AC /* Support Files */ = { isa = PBXGroup; children = ( - 3951F28E64B23BE8624297CEEC5690AE /* React-RCTAnimation.podspec */, + 3DB10551A09EF324D60D88F1CD3C1468 /* react-native-cameraroll-dummy.m */, + 8203DD46160A94C137751F410D6B9909 /* react-native-cameraroll-prefix.pch */, + E8036EBC20C3DAD44D097899CDDEB694 /* react-native-cameraroll.debug.xcconfig */, + 51F68D11476DD57F758D24A7380631DF /* react-native-cameraroll.release.xcconfig */, ); - name = Pod; + name = "Support Files"; + path = "../../../ios/Pods/Target Support Files/react-native-cameraroll"; sourceTree = "<group>"; }; - A46028F3C2BF9F9250B1A76C28F447EF /* EXFileSystem */ = { + 99EC8B8BC345ABB2B9F0F9267C30A7EA /* Plugins */ = { isa = PBXGroup; children = ( - 6397ABA682F826ECC4ADD5A6A5140726 /* EXFilePermissionModule.h */, - A9357393A4888576CA047A140A767760 /* EXFilePermissionModule.m */, - 10639F022D17F4276CF9139CD9340027 /* EXFileSystem.h */, - FDD2686C962849789E028510F6F2B0A6 /* EXFileSystem.m */, - 0D76CCB0098127BEAEB1754CFB47C021 /* EXFileSystemAssetLibraryHandler.h */, - 4DA85919DC6C929D42B9C85978020E39 /* EXFileSystemAssetLibraryHandler.m */, - 79D0F4BEC16414280B347604DB4E25E4 /* EXFileSystemLocalFileHandler.h */, - 70A8EB919807F827463064A126AD186A /* EXFileSystemLocalFileHandler.m */, - 0846ECB42999CAB007D3A70379B7B14A /* NSData+EXFileSystem.h */, - 29DCEFBF38171CEEA0288A959C33AA72 /* NSData+EXFileSystem.m */, - 5D3EFC620D95BE6B9AC68EF209E77490 /* EXSessionTasks */, - D7BB50B092A36558115E67927BEA60A0 /* Pod */, - EE843BA057C1DB41EB47843B96406822 /* Support Files */, + E7C894C4FDB3B68AC61B2DFAE33695BA /* BugsnagPluginClient.h */, + 749DB5073BCB863BE82DBE226A795ABE /* BugsnagPluginClient.m */, ); - name = EXFileSystem; - path = "../../node_modules/expo-file-system/ios"; + name = Plugins; + path = Plugins; sourceTree = "<group>"; }; - A4F60CE43829EECCB340AA01D73F151A /* NSData+zlib */ = { + 99F2B343D25FFBB43360EB303CBD1837 /* Interfaces */ = { isa = PBXGroup; children = ( - AE886A948A2579DB6EF611D087C1C182 /* GULNSData+zlib.h */, - 040B1FEA4D1BB34B7A5D3231137088C5 /* GULNSData+zlib.m */, - DC2814881692783265682204F533FCA5 /* GULNSDataInternal.h */, + 0223030B097EBFB099D8AB118CD11BBD /* UMAppLoaderInterface.h */, + 22594891B864827AE72F110CA04372F2 /* UMAppRecordInterface.h */, ); - name = "NSData+zlib"; + name = Interfaces; + path = UMAppLoader/Interfaces; sourceTree = "<group>"; }; - A560EFE2C83F48343706CFC874A6696A /* EXKeepAwake */ = { + 9AB1FAE78477FB9B4C6FE6292E96B7E9 /* react-native-orientation-locker */ = { isa = PBXGroup; children = ( - CEEE463F217CBE6145E587648B5C4980 /* EXKeepAwake.h */, - 442D2F71BDC5E59CA5DF4FA8490BFFD9 /* EXKeepAwake.m */, - 3A37A5E90C6C412F4E0BA775B67E249F /* Pod */, - 87F3EDAC30D04251943D20AACBAECDFB /* Support Files */, + DFB76EA691E409D498FA61B91A89687F /* Orientation.h */, + 535F71DC083BD6DC83AE41E30FB10B6A /* Orientation.m */, + EC40507A74ACD8B56ADC73F711575193 /* Pod */, + BF01614F3C6328A314DEB14DF705D98C /* Support Files */, ); - name = EXKeepAwake; - path = "../../node_modules/expo-keep-awake/ios"; + name = "react-native-orientation-locker"; + path = "../../node_modules/react-native-orientation-locker"; sourceTree = "<group>"; }; - A587B4C02F87F1060C117A378428DFB5 /* React-runtimeexecutor */ = { + 9B107B20D8EBAC4B3479031333E54B71 /* YogaKit */ = { isa = PBXGroup; children = ( - CD3AC61CFAD2B9EF698313B94B268FF3 /* RuntimeExecutor.h */, - BFBEE6D9669A86D9E7E49186F83EC7C1 /* Pod */, - F518BFDFEDFDC9F567770B50F2224D0F /* Support Files */, + 9F95D88D96F31D25741FC673B5C98F59 /* UIView+Yoga.h */, + 06873E0A4CB49236155789B1F95DB50A /* UIView+Yoga.m */, + EB53656FD26194F4F31764DC489E7F55 /* YGLayout.h */, + 8BE2B495AB39DC5BC0A14688CBF90625 /* YGLayout.m */, + 9F46948EA5689BB7E4664C5C76413A5A /* YGLayout+Private.h */, + C351020A52CFE117D3D25CEDA3DF7389 /* YGLayoutExtensions.swift */, + 98D48543254ECFB523827BBFBFBE1757 /* Support Files */, ); - name = "React-runtimeexecutor"; - path = "../../node_modules/react-native/ReactCommon/runtimeexecutor"; + name = YogaKit; + path = YogaKit; sourceTree = "<group>"; }; - A58FB0DC3EEEF0A80F13C0D7CAC969AD /* safearea */ = { - isa = PBXGroup; - children = ( - 2F85A36A7DF29262707FF6EAC03F1745 /* SafeAreaManager.h */, - B46F85E40519FA5AB0A27F10596B9823 /* SafeAreaManager.m */, - 589DC083B14AD4EC32A765ECD809C693 /* SafeAreaSpacerShadowView.h */, - F2D103493A4E5E2BFF321613C9284ED7 /* SafeAreaSpacerShadowView.m */, - F26E8EE3627DD007995E38872AAFA34A /* SafeAreaSpacerView.h */, - C19F8470C15F18F4285BAA5A9A8A8BF5 /* SafeAreaSpacerView.m */, - F328B6D74BBFF9B06C0F13B48B5952DA /* SafeAreaSpacerViewLocalData.h */, - 853DA4003B234224D0BEF3F4ABD94970 /* SafeAreaSpacerViewLocalData.m */, - 9A52031D01DDD2FCD2A068151409B973 /* SafeAreaSpacerViewManager.h */, - 9FA635843704EF8F520FAF3EEA7C13FB /* SafeAreaSpacerViewManager.m */, + 9B543FAF1D4BBDAC3DE13DF7376952D8 /* FlipperKitLayoutPlugin */ = { + isa = PBXGroup; + children = ( + C7E01B8D96A6A5D008B7BD4712B4A77E /* FlipperKitLayoutPlugin.h */, + 87CD7BBC73225B28898DB1170D2A4ABC /* FlipperKitLayoutPlugin.mm */, + F5C022372C179DDA7ED73B390D6E7CAD /* SKApplicationDescriptor.h */, + CFD0D773F2FCE6B5C0D56C2842DB0467 /* SKApplicationDescriptor.m */, + D5CBA7880C6B559A0675AEB1AFA1D486 /* SKButtonDescriptor.h */, + 7DE3F870A7F79D0E3E6A647C342D3804 /* SKButtonDescriptor.mm */, + 5F866D4AE61BE7526CE3BBD429E189A8 /* SKDescriptorMapper.h */, + 8D7CBF8334137587AB49D63DBB7EE10D /* SKDescriptorMapper.mm */, + 1E9F8F003D4E5587DD3E7297DE4498E4 /* SKHiddenWindow.h */, + 5849A6D1AB37F33B42AB1763065A9A35 /* SKHiddenWindow.m */, + B0706F0483156F03FEFD862EB587B92B /* SKInvalidation.h */, + 469ECA85ADFCA60DC94EEDA8ACE737AC /* SKInvalidation.m */, + C8D74C63DDB2002D35AE9930980E43A9 /* SKNamed.h */, + F8B7D9FB748CD5154BCCBA62BCC0ED0F /* SKNamed.mm */, + C7259B83FDEDD3DF95D4D54C7B187BBB /* SKNodeDescriptor.h */, + 5735D8B0589DE7582511C83B1D932989 /* SKNodeDescriptor.mm */, + E6BB1C756AA76D2E9FABD61C8B6FEDBC /* SKObject.h */, + A0C699DAC074F9AFFCF08DC96AC6F29C /* SKObject.mm */, + 029978C98425860CD0184B7D179E1E26 /* SKObjectHash.h */, + 9FCF037A8C66C92036A5020D7BE6073D /* SKScrollViewDescriptor.h */, + 0230637BAEAD20FA6579CCC2F16B15CF /* SKScrollViewDescriptor.m */, + 264B6AD08F886F66A088AED318F4BAB7 /* SKSearchResultNode.h */, + 7DF05417D62931F0192E674FD34FA258 /* SKSearchResultNode.m */, + 0E1D83EBD460588DE708253C1605E043 /* SKSwizzle.h */, + 063E4525BA253FEC8A4D1283D8465E2D /* SKSwizzle.mm */, + AE03D954CA04298775A9A3379F965E0D /* SKTapListener.h */, + 6AB49E65BB5ABD127A84D611C1CB62CE /* SKTapListenerImpl.h */, + CA9017152276C463BA9E96FB3B4A1CAA /* SKTapListenerImpl.m */, + 667AB0A6DA1DC13B5D02A965480DFE35 /* SKTouch.h */, + F6022B2589E185C6020F07C84EB20DB4 /* SKTouch.m */, + 29E84E084165D246715180500A2282EA /* SKViewControllerDescriptor.h */, + 4D1DCE2ED72E4B4463731242802346A8 /* SKViewControllerDescriptor.m */, + 659CEBCC02772788527A0DB608B01B2B /* SKViewDescriptor.h */, + 30F4ABA56CCCA41721F8816889182B60 /* SKViewDescriptor.mm */, + A51061D375D8ABF74537A515EC57C4AD /* SKYogaKitHelper.h */, + F6FA02EAEB1035A6D80BCA07414C14A8 /* UICollectionView+SKInvalidation.h */, + AED32787DE14BA131887AAC0EA14F77D /* UICollectionView+SKInvalidation.mm */, + E115122B84BB45292C4B26E6AE03BD57 /* UIColor+SKSonarValueCoder.h */, + 5BC0E75BEA0C3729BC189F05C73306F3 /* UIColor+SKSonarValueCoder.mm */, + 588EA247611205AB40E34D046F67D60D /* UIView+SKInvalidation.h */, + 61A1ABF54320C45F9827E2948BD509F9 /* UIView+SKInvalidation.mm */, ); - name = safearea; - path = ios/reactnativeuilib/safearea; + name = FlipperKitLayoutPlugin; sourceTree = "<group>"; }; - A625D0C50CDB5C67B97EE9FB239AEF77 /* Pod */ = { + 9C1C66E01C0901DE5C7E84BE2A225636 /* Pod */ = { isa = PBXGroup; children = ( - 1C4098C080880C9902B332954C09E608 /* EXVideoThumbnails.podspec */, + 05FF7F5F46CBAFD53BE30C7793900B0B /* UMFontInterface.podspec */, ); name = Pod; sourceTree = "<group>"; }; - A727D37490E5DBB66524C3364AD892D9 /* Pod */ = { + 9CE1380D756C2478BA1F7FE12441A9A6 /* ReactCommon */ = { isa = PBXGroup; children = ( - AE7EB057D8B7F41692CE68C832C174E7 /* LICENSE */, - E5A50A19568EFE63722FB4084BE8F624 /* react-native-orientation-locker.podspec */, - 37A7CDF7E561955A0C02FCF2279AB34E /* README.md */, + F06DF5583F13FAE37BE8F8BDB6801DEE /* LongLivedObject.cpp */, + 00386ED3F5F0A03625243B098D97F38A /* LongLivedObject.h */, + 56B1D174D62DE183D38A29229CFA9001 /* TurboCxxModule.cpp */, + D771DA0527D7B0DDB41B94E3FE5842CE /* TurboCxxModule.h */, + 80B83EC9FC27F2E0D1A6E4727A1B12EE /* TurboModule.cpp */, + E4D567FBBB517C1C45BDB8F7B8D44777 /* TurboModule.h */, + 01A1C62C6A1FA3CEC42AFA6595EE1062 /* TurboModuleBinding.cpp */, + 6BCBAE427C2C90AE929A34EABEBBACE3 /* TurboModuleBinding.h */, + 00CA343D159C24F3AD85A34D609C5B01 /* TurboModulePerfLogger.cpp */, + BC37A07A078953FA9C67B14C2308FE3B /* TurboModulePerfLogger.h */, + 8529395CDBC6EFE68705E9AFD278C736 /* TurboModuleUtils.cpp */, + 362EA64A455CD739D1727CF7EFF2B293 /* TurboModuleUtils.h */, ); - name = Pod; + name = ReactCommon; + path = react/nativemodule/core/ReactCommon; sourceTree = "<group>"; }; - A7FBF5AF7B30EDB3E42DB0782927BFF6 /* event */ = { + 9D9202D8699EAC3357EF24651729ED7D /* inspector */ = { isa = PBXGroup; children = ( - 9F2555743479256A7A6B651E39603366 /* event.cpp */, - ADD183449DEFDDF51E3C7BBCAB364AE6 /* event.h */, - ); - name = event; - path = yoga/event; - sourceTree = "<group>"; - }; - A840C4EEDEFE30A7526204C1CD1C063F /* react-native-notifications */ = { - isa = PBXGroup; - children = ( - CBCA6480660BBE935E0D88687BB059A0 /* RCTConvert+RNNotifications.h */, - ADC19C5F25BC45B39BBB809E36798BF8 /* RCTConvert+RNNotifications.m */, - E1F1FF326CB1EAE4FF47CAA50C53DD6E /* RNBridgeModule.h */, - E649690720DE207C55AEC9762403EB41 /* RNBridgeModule.m */, - 8E049A2A502254569AAD1E846716AAF6 /* RNCommandsHandler.h */, - 996F677F0C4D75E0BA8139D2D0B4FF19 /* RNCommandsHandler.m */, - 7283EB23F32AC740B558D0C30B95E95C /* RNEventEmitter.h */, - EA4C93D56FE5D85A1A138AC0E69C8862 /* RNEventEmitter.m */, - 389CD7741351AB924E728EC4798FC86B /* RNNotificationCenter.h */, - D5C9EB3DD6251F36240159CAB9F95695 /* RNNotificationCenter.m */, - 660AB5C7E94D9F3FEF94F33259865B5F /* RNNotificationCenterListener.h */, - D25EC3A6EE178FA0BB33279376E6666B /* RNNotificationCenterListener.m */, - 50E9BC19608F331299520F4A34F93BD0 /* RNNotificationCenterMulticast.h */, - A25214D7DAAEF582BA04DF499825DF44 /* RNNotificationCenterMulticast.m */, - D548161C546809C36062E8F56DB53607 /* RNNotificationEventHandler.h */, - 55EDE0BD7CB5DAA7AD533C74F9DEF1AD /* RNNotificationEventHandler.m */, - 1B981C23504E6D05D84784151C16C344 /* RNNotificationParser.h */, - 3243616DB85F9A421BA274E17024AB10 /* RNNotificationParser.m */, - E8A17AD3EF22B3EDE7BC6C2E0715F83F /* RNNotifications.h */, - 84F81D9B45FDBD78B5ACB07C50EBCCB6 /* RNNotifications.m */, - 65931E231ED87291782F00320FD5E79D /* RNNotificationsStore.h */, - 26205161AA50954D082DD6F48826695F /* RNNotificationsStore.m */, - 312650FE7FD503D2EC40D1882CCEA092 /* RNNotificationUtils.h */, - 54DFF4FA1AFD8A70E0EE2531B28728BA /* RNNotificationUtils.m */, - 6FA0AD66C02F21425433DDB9366CD22F /* RNPushKit.h */, - AF88246064A0F24D2BEA1AAA4535D82C /* RNPushKit.m */, - F6999E1FA5D1118E99918E215C000A6E /* RNPushKitEventHandler.h */, - 737C47ACA6A64D7767636BBE62E6B723 /* RNPushKitEventHandler.m */, - 6057631DB1CAF97943B1AA60672D95C2 /* RNPushKitEventListener.h */, - 9284728F7EFB51C94FA364446012C888 /* RNPushKitEventListener.m */, - 1DA63BF698EFFC4138BF51C8BC58CC1D /* Pod */, - EB013329492B71E5972D2BFF6598ACE6 /* Support Files */, - ); - name = "react-native-notifications"; - path = "../../node_modules/react-native-notifications"; - sourceTree = "<group>"; - }; - A9146119A42942F30E1D9115B834BF8A /* GoogleDataTransport */ = { - isa = PBXGroup; - children = ( - F9EF06F5F49DEB53FEDFF233A23B10D5 /* GDTCORAssert.h */, - 1B1D16C4FA2EE254799289AADD10A332 /* GDTCORAssert.m */, - 463B9B93FEF2AB780CA5E2E4FC38E86E /* GDTCORClock.h */, - 189DE0E4F9AFDB2E31C4C4257EE2E2BF /* GDTCORClock.m */, - ED59A322A00B63535E5F9FE1CC01764D /* GDTCORConsoleLogger.h */, - D77046677C44FB3A05A464AB21EAB128 /* GDTCORConsoleLogger.m */, - 8A097A82EB5F9568D3CD84603C037131 /* GDTCORDataFuture.h */, - 9411A527A4DE7B8E9CA14E97E7DDA16C /* GDTCORDataFuture.m */, - 5CF3C79BD496F82B25133B4BBF8480A7 /* GDTCOREvent.h */, - E15545D395D44A2CB1B9694E05BA0A65 /* GDTCOREvent.m */, - 981334D1B99AA550C5C38286FB70EB92 /* GDTCOREvent_Private.h */, - 38EBC25C4EA7FD49EB95B1FDD35C5B50 /* GDTCOREventDataObject.h */, - DA1A7C7065BBB16BAB98F0BA2DBDF640 /* GDTCOREventTransformer.h */, - A95381923A4483CA559F35A6430C2197 /* GDTCORFlatFileStorage.h */, - A1F1A4CF23D301F5E48F1A6FF632D891 /* GDTCORFlatFileStorage.m */, - 6A312051722868095F0B57B9DF72AD23 /* GDTCORLifecycle.h */, - F96321D27807E501875E9B7AD050A2D2 /* GDTCORLifecycle.m */, - 08593D01040FC8FE0D5E332C14128C19 /* GDTCORPlatform.h */, - 96CFDA90AB401FBA7E4CFF0BEF711DF7 /* GDTCORPlatform.m */, - 9230371FE9E5F6AED627EE5E80815F4A /* GDTCORPrioritizer.h */, - 885292AF47B79C9F9792145F265F4642 /* GDTCORReachability.h */, - D75A2CFEEF6B8B25305A84FB7831CDD0 /* GDTCORReachability.m */, - AA94BB85E6121A9830C7A5CCF2A3185F /* GDTCORReachability_Private.h */, - FFD1CAE105527CF63F11A820AD292567 /* GDTCORRegistrar.h */, - 482C6BFEBA32EB9077DAFBC6513FFC1D /* GDTCORRegistrar.m */, - 2D0AFB3AA334082BD476F588855D6AE5 /* GDTCORRegistrar_Private.h */, - BC5FD72C5B1D80E461FC33D412719E91 /* GDTCORStorageProtocol.h */, - 3C79B1F5A3844A1537C78A0F404800A7 /* GDTCORTargets.h */, - 459058C8C420DB25AC00366251542B31 /* GDTCORTransformer.h */, - 12BEA7F7C4B73D1E36CD768C9F3B9301 /* GDTCORTransformer.m */, - 2A7B74E25DCF95117BA1DB7832421E28 /* GDTCORTransformer_Private.h */, - FAD97A42DFA849596624DD41A3ACE426 /* GDTCORTransport.h */, - 47AB360C660F2545750D62C057AECBF9 /* GDTCORTransport.m */, - A9AE808ED601364F3208A8ECB8B3C571 /* GDTCORTransport_Private.h */, - 23D46A4B7D4AF7D3AD7C0C7AC6357FA1 /* GDTCORUploadCoordinator.h */, - A90DA217769C6CAEDBADCEFC36C37E03 /* GDTCORUploadCoordinator.m */, - 5F996B391DAE5F571B5F458C5A371768 /* GDTCORUploader.h */, - E92ABFDAB203180947FBEDCB9BC3B942 /* GDTCORUploadPackage.h */, - 14558547256AFB38419983E2662EBC1E /* GDTCORUploadPackage.m */, - 8D721A4D99E3EBB65E1C7B97E9D78DA4 /* GDTCORUploadPackage_Private.h */, - 22E37A1F9FEB8ACD0F110A8146B5BCD2 /* GoogleDataTransport.h */, - 62E11969CA01B53F6A8F692FF47DD689 /* Support Files */, + 9711B6132BF37054EE9339D0F51F2762 /* AsyncPauseState.h */, + B421DAF8DD57F52DA5882F7B07CE2C59 /* Exceptions.h */, + D694D851AAAA37B1C0C34BAE8627F0E9 /* Inspector.cpp */, + 13747E7F6A1EE9D642BC1EFAA058B987 /* Inspector.h */, + B883E6DE9EE8ED41A5F4978944199A05 /* InspectorState.cpp */, + 5AFFCEC5536830FDBADF795006808DBA /* InspectorState.h */, + 43932092163523A9D1CC5238C4522DE8 /* RuntimeAdapter.cpp */, + 804588799ADB2C0BB075B4E7DA326F47 /* RuntimeAdapter.h */, + D3E62B7382F021B464DC9C84FCB62839 /* chrome */, + 979ED14AEB4AF9C356342CFD11AEFB77 /* detail */, ); - name = GoogleDataTransport; - path = GoogleDataTransport; + name = inspector; + path = ReactCommon/hermes/inspector; sourceTree = "<group>"; }; - A9546D3813381F9B6AFCFF80EEED1090 /* Pod */ = { + 9DA569C16D4337D799119BDE69C662EE /* Reporting */ = { isa = PBXGroup; children = ( - 785695B3B7894BAD50ED54CC9BE52491 /* React-jsinspector.podspec */, + 462E7E3E86577B9033AA8C9E85211BD1 /* Filters */, ); - name = Pod; + name = Reporting; + path = Reporting; sourceTree = "<group>"; }; - A9E23F86758D4CF67081D5B50EFFFE5B /* lib */ = { + 9DB0D3C44A982CC7D6085AEB75D4069E /* Pods-ShareRocketChatRN */ = { isa = PBXGroup; children = ( - 24A3417FE1B047417425727CDF0DA377 /* Aes.h */, - 6EC653EE003D3BA9DA51B6784B49E387 /* Aes.m */, - 7350AC9E8B2BC0D2157BBD0C505BCEB7 /* Hmac.h */, - FF9C3D5930CF0F4DF3E43D8EC1FD1858 /* Hmac.m */, - 8EACE304750D1CAA3FD4150AB0A736B1 /* Pbkdf2.h */, - 5959A814B9579DC7EF9000E11F7FE3D0 /* Pbkdf2.m */, - DDA8E082D0DF3E4233CC86CFC94A7648 /* Rsa.h */, - 2A11218245C003EDA9A0CB086BF522E4 /* Rsa.m */, - 50E1A35CCEA1D5F6736BC55A46B04A86 /* RsaFormatter.h */, - 4158D7C8F9D15F608EA072E56C9C5029 /* RsaFormatter.m */, - C79C9B6348AE626037636647482DFC5E /* Sha.h */, - AB12C6E2A0D5BC8A894FCE32AE68E684 /* Sha.m */, - 53119D11FE6E6BB4AE2A001EE20671DB /* Shared.h */, - 9BF3A3327FE1B27155736ADEAAC66603 /* Shared.m */, + 7125FF740077098B59A78E66EB1F40FE /* Pods-ShareRocketChatRN.modulemap */, + 2B361608B34C96A6FAB5E98FCEA3A462 /* Pods-ShareRocketChatRN-acknowledgements.markdown */, + F32A0F7045702BDFBAB9059CAD1938C9 /* Pods-ShareRocketChatRN-acknowledgements.plist */, + 81ABB69299E6F3BB892E995CFDCECD7A /* Pods-ShareRocketChatRN-dummy.m */, + 949B140FBE75F86A22077BDC59663BF9 /* Pods-ShareRocketChatRN-resources.sh */, + BAED847E8A22919EDDB894F3B4C38BFF /* Pods-ShareRocketChatRN-umbrella.h */, + EEA4CC9B97D8B1DF863F7448D02747DE /* Pods-ShareRocketChatRN.debug.xcconfig */, + 29A522F564C45BAC1C908C4FA821DD3F /* Pods-ShareRocketChatRN.release.xcconfig */, ); - name = lib; - path = ios/RCTCrypto/lib; + name = "Pods-ShareRocketChatRN"; + path = "Target Support Files/Pods-ShareRocketChatRN"; sourceTree = "<group>"; }; - AB7F6355C86DFC7E91B9EAC52F07B85F /* RNFastImage */ = { + 9DF4817C85B73EE4BF2FE29056565FA7 /* RCTNetworkHeaders */ = { isa = PBXGroup; children = ( - 8373F8F5AA7C5023F46D1F4436A71193 /* FFFastImageSource.h */, - 340F84EFB61AC1E0D0E05C5702D390AE /* FFFastImageSource.m */, - A7BE38DF3D2C4B8BFB184F5F4F3B0276 /* FFFastImageView.h */, - AF14A4D82AF1821431DB8664A697F559 /* FFFastImageView.m */, - 345FF1F313D26A85327F53FEF66D5C49 /* FFFastImageViewManager.h */, - A930981C438F317DEF84316287E3A808 /* FFFastImageViewManager.m */, - D34F0718894EB8BF26A6311E5213A124 /* RCTConvert+FFFastImage.h */, - 18BE84982E8F142FE9CDCC750B190D31 /* RCTConvert+FFFastImage.m */, - 8A051C8D312B3BC1040314A153ACB79F /* Pod */, - 1BB3134D8F6E3A3586510F3F466926CF /* Support Files */, + C6B1066D2E2BCA2EF6415B87774B99F9 /* RCTDataRequestHandler.h */, + 2251AF27379C329919E32F671BB8897C /* RCTFileRequestHandler.h */, + DBC5D47B58979EDCB450163B961643F2 /* RCTHTTPRequestHandler.h */, + 6C155D7FC749B6F3832B8DDCB1790C64 /* RCTNetworking.h */, + F6A13C3347D23CF1821E036AF8CD9008 /* RCTNetworkPlugins.h */, + 8A899A46E2ED8F4DF284B11457BD4CBA /* RCTNetworkTask.h */, ); - name = RNFastImage; - path = "../../node_modules/@rocket.chat/react-native-fast-image"; + name = RCTNetworkHeaders; sourceTree = "<group>"; }; - AC3FACD0A5A73FFF1253989A85A746E3 /* Pod */ = { + 9F2762C723A94A56005A3377843DB8FA /* Support Files */ = { isa = PBXGroup; children = ( - 93BA17DDE6DD075837649508F5724300 /* React-jsi.podspec */, + 7F819A9AAE0B529DE31CB2565F0421EF /* EXVideoThumbnails-dummy.m */, + 41CCDF90752D12DFAD23B93B05F28906 /* EXVideoThumbnails-prefix.pch */, + EEFDD3D1CDB51E78F30A78E695583DAD /* EXVideoThumbnails.debug.xcconfig */, + 79625021B0DFD25538F8E31951109A1F /* EXVideoThumbnails.release.xcconfig */, ); - name = Pod; - sourceTree = "<group>"; - }; - ACE1251AEA98FFF9B51A0825EC78AA44 /* Views */ = { - isa = PBXGroup; - children = ( - 1215CA56CB2009D56FA56A842354661A /* RCTActivityIndicatorView.h */, - 0B7EED2877664F3483849BEAA627B0CA /* RCTActivityIndicatorView.m */, - FFFB3400D9B937F709EDAA8E0F84A585 /* RCTActivityIndicatorViewManager.h */, - D0D88DE9238F87B08F5FA4F0049515F4 /* RCTActivityIndicatorViewManager.m */, - 60D1A26443E475C946E7CBB625FC3318 /* RCTAnimationType.h */, - 6298AE3E0AD6B0EB0E8FA035BC850A15 /* RCTAutoInsetsProtocol.h */, - 730CBBDFDEB767F625E342CD591BCFBD /* RCTBorderDrawing.h */, - 6525E5BC4FA81595E90608B5DC99A111 /* RCTBorderDrawing.m */, - A442BB7FDC24744FFABDB77D2DC980A9 /* RCTBorderStyle.h */, - 3991D9E8935C272F2BEBD8F363AF3305 /* RCTComponent.h */, - D8B03F145549407E02F672A812CBA01E /* RCTComponentData.h */, - 8BE1EDF4BEF9F1060858A53C96B4DFD3 /* RCTComponentData.m */, - A01A966EA9B80F740CA05FDAE563EFD8 /* RCTConvert+CoreLocation.h */, - 229996EBA18541FD5A6EABDF119E951D /* RCTConvert+CoreLocation.m */, - 50CEE436DC02365678F6BE65F5CB4CA0 /* RCTConvert+Transform.h */, - 48FF49A5736D3E0E27EEF1C0B1B69DEE /* RCTConvert+Transform.m */, - 6D7916C3FADB90D716EC5DFF41BB3D99 /* RCTDatePicker.h */, - 3E21C45B397F5E0D718972EB9A1AA3BD /* RCTDatePicker.m */, - 8579EF0DCAD00BFCB49994109AB73B0D /* RCTDatePickerManager.h */, - 27E98DA502B46B1061E58261CCB42964 /* RCTDatePickerManager.m */, - 81191814B978606260CA5B4EC460E41E /* RCTFont.h */, - 7516BE3DA685CEDF74312C0C1CA78095 /* RCTFont.mm */, - DA9882DBA3E80B8310FB0D89D0130D4B /* RCTLayout.h */, - 94F84EA98D279AB2D0F27FD2F47507A5 /* RCTLayout.m */, - 920E913BF836AE4C356DD271D480E02C /* RCTMaskedView.h */, - 0FC97E9950E503E79D263EADAE92167A /* RCTMaskedView.m */, - EB5AE6725DBDBA72012A0E3EDB522345 /* RCTMaskedViewManager.h */, - F19FBB1C6850FD0D010A5CE4BEA22D3D /* RCTMaskedViewManager.m */, - 3553D4C544A3BEDF55E4F169FB3755E3 /* RCTModalHostView.h */, - DF6110689FAD371694B43752C553C769 /* RCTModalHostView.m */, - 8D0A6E6852DDB2645E8D6F3F1EE778C7 /* RCTModalHostViewController.h */, - DBC5AB500EC382238A41629F473B0C66 /* RCTModalHostViewController.m */, - DE76F127E42557B9BD2B3676495F1E2F /* RCTModalHostViewManager.h */, - BB425AA1BAB6D0A9A235C609336095DA /* RCTModalHostViewManager.m */, - 5E14FCE40864E45913A2C969C0B2D7A1 /* RCTModalManager.h */, - F27BB7B44D3D4D6F369D067EAC8C428F /* RCTModalManager.m */, - AD585F5C53DCFDAFFB4294C34CF88D09 /* RCTPicker.h */, - 9EF4F1EDCD4553A3703C9FCDACB61264 /* RCTPicker.m */, - 6A49593F09314002179F647E3B3F9781 /* RCTPickerManager.h */, - 2877506D87948E011C9FBF18BDAB9E75 /* RCTPickerManager.m */, - 34B6A22FA44252C9AB9425D730AB19FD /* RCTPointerEvents.h */, - 60816C0E7B00326FCAD09074D41D8E75 /* RCTProgressViewManager.h */, - 0935676F54EB3972A0752F9B8008D1CC /* RCTProgressViewManager.m */, - 744A8C51F58F8778C55BA80C9470047A /* RCTRootShadowView.h */, - F619F6E9441077F0E51EB483160227A3 /* RCTRootShadowView.m */, - ED50B52E1E0AF213DCD66EE91D277AA9 /* RCTSegmentedControl.h */, - 37027DF918D6FE52D89F88CB601858ED /* RCTSegmentedControl.m */, - 2BD45D297B804D133CC7BF454757DF21 /* RCTSegmentedControlManager.h */, - 9C139F30664C2AC9E917F2E99A29FE32 /* RCTSegmentedControlManager.m */, - 507D17D398B3DB183218F5B94245D41A /* RCTShadowView.h */, - AC415482470B49FA58A52B81A346C781 /* RCTShadowView.m */, - 7C0A0A6CB3381FB125B7DB0B51F1D7DC /* RCTShadowView+Internal.h */, - 9DFE6F4142248275D50E279C9D26E398 /* RCTShadowView+Internal.m */, - 8F3D2E2F139A91C05083EABCCFB6A079 /* RCTShadowView+Layout.h */, - F7E66212CF7771A3C2BB41F23B4A3798 /* RCTShadowView+Layout.m */, - D53862AF54CF2656B4120C75EA8B3C4B /* RCTSlider.h */, - A81CB8F7CCCAFF5C081E6D88856ABE8C /* RCTSlider.m */, - 1594760C53DFE83CD8366904004212D3 /* RCTSliderManager.h */, - 9D638D4F4487C7E2904849EB50E2914D /* RCTSliderManager.m */, - DA75C6D163FC79F2CB585CA01FA60FE5 /* RCTSwitch.h */, - FCAF45D355DD370C372A77984C10FA2C /* RCTSwitch.m */, - 803652DA292561BA0F2B796EB01CC231 /* RCTSwitchManager.h */, - AFE9F1D8D32C245F4D11F96848D588CB /* RCTSwitchManager.m */, - ED45D171CC848818FB692BD38CF0737E /* RCTTextDecorationLineType.h */, - 567132C080CB36CCAE683AD8A7F396F3 /* RCTView.h */, - 7A039AC3AF9B6A4E8EC9068BFFB63CDE /* RCTView.m */, - 3E9BC6BA0472A721C157966D72DC29E8 /* RCTViewManager.h */, - 275A1C7F93D8659DCE761FDF9A9267C4 /* RCTViewManager.m */, - 492C2F67A9C418ADE27FE61B3781B974 /* RCTWrapperViewController.h */, - D64EC9825D8C6C4D2EE46C9A5061CA48 /* RCTWrapperViewController.m */, - B319FBAEAC3E1E7C2A80BB51E7C7F421 /* UIView+Private.h */, - 9E74F12D027EC60353BA18DC9C8F057C /* UIView+React.h */, - 0DDBD5E783F16003D79827A5B335C2E9 /* UIView+React.m */, - F26BD41726D721693FD89A61BD4F4304 /* RefreshControl */, - 4A1EFD2802870441B25F49F44AA2EB92 /* SafeAreaView */, - 65C804B3D3E763DD20ED81980F817FB1 /* ScrollView */, - ); - name = Views; - path = React/Views; + name = "Support Files"; + path = "../../../ios/Pods/Target Support Files/EXVideoThumbnails"; sourceTree = "<group>"; }; - ADC0180113BDF314524896A2DC7468BA /* RCTTextHeaders */ = { + 9F72811C1D549F3FB17475A0F99D0228 /* Support Files */ = { isa = PBXGroup; children = ( - 99B7A76C5FDAC071619973B54DEF69DE /* RCTConvert+Text.h */, - CBE1616AF656630B81600BEF0C1320C4 /* RCTTextAttributes.h */, - 6471F18D06F32C511636C48B2D479CCC /* RCTTextTransform.h */, - 7C558593C891C3E79B36EA23172BA0B4 /* BaseText */, - 799233F0A73C201D006B13B7F6BE1B0D /* RawText */, - B608AE0B629A21F0BB0E28CD23CAA013 /* Text */, - 7B07C752853171258EA3AE8E5D78D812 /* TextInput */, - 3CF6EBCA1E9E52895E565BD6FB14FA5B /* VirtualText */, + 32130A5CD0076E9A8430421436D315B0 /* GoogleAppMeasurement.debug.xcconfig */, + 6C814091ED8C9A65EF28A32FBE9EC883 /* GoogleAppMeasurement.release.xcconfig */, ); - name = RCTTextHeaders; - sourceTree = "<group>"; - }; - AF3CB75A79A4B74B34F3BB35441AD173 /* RNGestureHandler */ = { - isa = PBXGroup; - children = ( - C0F3BA7F568A29FDD4CE4A27DD46EF52 /* RNGestureHandler.h */, - B651F536139C25C10C31A34A85FEFB3B /* RNGestureHandler.m */, - 85782E5A0FDBD520761C5860C266BA68 /* RNGestureHandlerButton.h */, - 4931A8E8445EAB969B58E1A2F8890A80 /* RNGestureHandlerButton.m */, - 1E688FE81B06A10237ADB57140A2DC8C /* RNGestureHandlerDirection.h */, - F784B594BAB762A38CFE432CC18FE196 /* RNGestureHandlerEvents.h */, - 70C686F8D4EC9EA5ED579895B57B2716 /* RNGestureHandlerEvents.m */, - 9B679B86B635682E764C49E591251FBD /* RNGestureHandlerManager.h */, - 42961159B1D3A64B02FE53F5D5921D7B /* RNGestureHandlerManager.m */, - FBCB658A9A1C862C5CC585CCE43230B6 /* RNGestureHandlerModule.h */, - 258482B084569DC0C1112CA43660CA3A /* RNGestureHandlerModule.m */, - 50046DFFDEC7605D743CF83B7EB9EB5B /* RNGestureHandlerRegistry.h */, - 34BBD5BBCA8379CE3AC869AF69F13FA2 /* RNGestureHandlerRegistry.m */, - A0B884808F87BC14E17E0C76EDF5FFA4 /* RNGestureHandlerState.h */, - 144360F619B1568C4D6288B0C0FB58B8 /* RNRootViewGestureRecognizer.h */, - 4B98073CFC9C25D3AC7C10F3E831926B /* RNRootViewGestureRecognizer.m */, - 3F8260685653CC7D726E07C5C6BBC587 /* Handlers */, - 0EC07F7CFED2E62168EAF9271FDC23A1 /* Pod */, - BDA097E7859EC488E598280848CC0060 /* Support Files */, - ); - name = RNGestureHandler; - path = "../../node_modules/react-native-gesture-handler"; + name = "Support Files"; + path = "../Target Support Files/GoogleAppMeasurement"; sourceTree = "<group>"; }; - AFC41DCED6C84C0E3D3864337005B4FF /* FirebaseCrashlytics */ = { - isa = PBXGroup; - children = ( - DA3D9803A70D7FC57E9B8275A62D4EEB /* crashlytics.nanopb.c */, - 5463A1ED9389FDAE33B159B05CD39CCD /* crashlytics.nanopb.h */, - 74B062219A682207723A6303E2CA31A6 /* dwarf.h */, - 5344EE5042D2982D98BB85F45FACA5BB /* FIRAEvent.h */, - B00F17CD86E0960793ED999778327FA0 /* FIRAEvent+Internal.h */, - 807FB3BD4F4C8DC51A9131B966235F59 /* FIRAEvent+Internal.m */, - 374704F57732D2F851254C648CA148F2 /* FIRAnalyticsInterop.h */, - 5FAA8AA11C5B657BABEB5CA3B444722F /* FIRAnalyticsInteropListener.h */, - 72D64CBEA652505759A9A44431D4712A /* FIRAppInternal.h */, - 6691DF0CB8F296A5B4193C56713D9084 /* FIRAValue.h */, - 4F3909692D2EB196C7259A673D4E0BC7 /* FIRCLSAllocate.c */, - 7E3A58C5C01BED5DD03BE3F5A0FB6D11 /* FIRCLSAllocate.h */, - A99D740C046DC693B8C279E9906F5ED3 /* FIRCLSApplication.h */, - 8B03784A0DB6018C0A8088E56A9C06FB /* FIRCLSApplication.m */, - 01609FC711059045DED41A7F851F5D95 /* FIRCLSApplicationIdentifierModel.h */, - C4EC293F2FD023668E6B3531C1E85E2D /* FIRCLSApplicationIdentifierModel.m */, - AB2EBB07BB6780F2CFD6D21C26BE1E35 /* FIRCLSAsyncOperation.h */, - 16F0EA6482987F1240C9EF62BC419BB1 /* FIRCLSAsyncOperation.m */, - 50B8DC3F1C20DA72280B66682F52676F /* FIRCLSAsyncOperation_Private.h */, - 302BF3C74637C7DB351858B047839178 /* FIRCLSBinaryImage.h */, - 912C4CF3278E3ADA0ED28931B9049835 /* FIRCLSBinaryImage.m */, - C7AB557274CF57A02EC21EC9FDC67657 /* FIRCLSByteUtility.h */, - 7F648289041B3DCBC9D738576A3D9B2A /* FIRCLSByteUtility.m */, - 4BC96ED503285A52E16D54ABA224AABF /* FIRCLSCodeMapping.h */, - C94A27A28BC851B411267E9F4705266D /* FIRCLSCodeMapping.m */, - 68CBB36E7717339C490EC08F8C06B009 /* FIRCLSCompactUnwind.c */, - B97145061E4F7F28CDE503B069456A48 /* FIRCLSCompactUnwind.h */, - A651A21FE23C668C852E87BDECE35979 /* FIRCLSCompactUnwind_Private.h */, - 38F5C29B8BABB356CD6F46011DAFE915 /* FIRCLSCompoundOperation.h */, - 1DFF3208242ED749C395BE3D2E37E627 /* FIRCLSCompoundOperation.m */, - 02A8C77EFD540D767BD0CD3496846B86 /* FIRCLSConstants.h */, - C567B7482E7DA9EA3E8295E3F0050D90 /* FIRCLSConstants.m */, - 1E39C777BCB1CBEC757CF7DB20CD46B3 /* FIRCLSContext.h */, - 1E4230BE8F440376E8C2056CE10932FB /* FIRCLSContext.m */, - 6A4B08830BCD18DEC0487928F7DD1183 /* FIRCLSCrashedMarkerFile.c */, - 464D88FB4501E834EE17D24AF6A393EF /* FIRCLSCrashedMarkerFile.h */, - A462BE5BC8918B04994A88A4585974A6 /* FIRCLSDataCollectionArbiter.h */, - DBD5CDF8A3997C9089262005FF386AE1 /* FIRCLSDataCollectionArbiter.m */, - EB5BB0A2EBE0C8E9B64B96F6CE49737A /* FIRCLSDataCollectionToken.h */, - 4DDF6F91919BA6848F310D266B5EF1FB /* FIRCLSDataCollectionToken.m */, - 043397C0E2974CE55163AFD49A0BFBA1 /* FIRCLSDataParsing.c */, - 6E862EF5EF45C3A65DC568F4D8060AAC /* FIRCLSDataParsing.h */, - 70E5267514362AC438D2016BFB6782C3 /* FIRCLSDefines.h */, - E9F3A729CD9D33AD75FD8C1B0BBC0ECD /* FIRCLSDemangleOperation.h */, - E0C4E152DE6AB8C0C9C6931C1350B01B /* FIRCLSDemangleOperation.mm */, - 6B66C21CAE7DE77D9BAA440A406B201D /* FIRCLSDownloadAndSaveSettingsOperation.h */, - 2D2D7C2D1FF6405FC4F8DCCBEB33D66F /* FIRCLSDownloadAndSaveSettingsOperation.m */, - FF1E5960C85CE08107861C1055BE68B1 /* FIRCLSdSYM.h */, - 11A5473574DB8F5B87B8A158CA9708F7 /* FIRCLSdSYM.m */, - CE30F05F7BDE8ECCE8129CA563DFC777 /* FIRCLSDwarfExpressionMachine.c */, - FD1931A7004B7A0B8E31C246FAE641BB /* FIRCLSDwarfExpressionMachine.h */, - 2C1FABDEA357FDEA4376B5426958FB0D /* FIRCLSDwarfUnwind.c */, - ED6C9E7E40237984988F15B2078AE5EE /* FIRCLSDwarfUnwind.h */, - EB719189CCE4314E49807A63718D917B /* FIRCLSDwarfUnwindRegisters.h */, - 30CCD0C483D6373D7BD16F68B8220D19 /* FIRCLSException.h */, - 0AE8790703D5118D50FCE795027DAE86 /* FIRCLSException.mm */, - 1480E96A65A01446E22091CDD5C48855 /* FIRCLSExecutionIdentifierModel.h */, - 24E802A44DA54111432497AF0EBADE6C /* FIRCLSExecutionIdentifierModel.m */, - F71D2A9EEEBCF6C9678A20634F0036C8 /* FIRCLSFABAsyncOperation.h */, - 5AB921F5A3DEFCBC88A0237C87AA2066 /* FIRCLSFABAsyncOperation.m */, - C08376657BF0FFD85723248EA8D3C3D1 /* FIRCLSFABAsyncOperation_Private.h */, - D6367FCCF442159AB5CD62FC726DC2DA /* FIRCLSFABHost.h */, - CE52DDDD28C1BCF00DA998C465092169 /* FIRCLSFABHost.m */, - 341F4134AE669A7FD76D0685541CEAAF /* FIRCLSFABNetworkClient.h */, - ED865F1DE44468A0B0B652D71ED61413 /* FIRCLSFABNetworkClient.m */, - AAA30A7DDBAFFF09EFBED557C00B0D64 /* FIRCLSFCRAnalytics.h */, - B2479DB2FE66EE76609DF15B3AB5F1F9 /* FIRCLSFCRAnalytics.m */, - DD6E84E7343B2D60B6A59A0E7D041EEA /* FIRCLSFeatures.h */, - AFDEB7B9A74282D9812379970531FCAB /* FIRCLSFile.h */, - C6485B3A9CFDBF4692BD579F07E4A983 /* FIRCLSFile.m */, - 145B5155DFCA70A7E41B34A4765E2C92 /* FIRCLSFileManager.h */, - 59A422662B4C7E84503A2F4A62B082F6 /* FIRCLSFileManager.m */, - B48D3B93369EBB01AFF2CD25B126C52E /* FIRCLSGlobals.h */, - 43169030F1ECA77C243FA88624499E18 /* FIRCLSHandler.h */, - D232B35AB8CB2A662E1C23302D9213F2 /* FIRCLSHandler.m */, - 9A0DB699138E7ADD7B50FBB90AF68DDE /* FIRCLSHost.h */, - DD7A1D12AC47F0A2F9DB230C5B19CCA8 /* FIRCLSHost.m */, - 1AEEDE00F48399B38ECC97FB2A33A46A /* FIRCLSInstallIdentifierModel.h */, - 4EED55B8EA691269ACB175FDEF3A7FC1 /* FIRCLSInstallIdentifierModel.m */, - 62B73A440AD7CB767A967E0875089085 /* FIRCLSInternalLogging.c */, - B001EE8C196C9E10035286FE7EE84032 /* FIRCLSInternalLogging.h */, - 0E92081CF67467605D8B96788527E441 /* FIRCLSInternalReport.h */, - A3803A14867971EE2F7147E185238DC3 /* FIRCLSInternalReport.m */, - 9372AC00A3DB1B500E10C1F4B72DB57E /* FIRCLSLogger.h */, - 1CDE6771380C768E14FD930E19FBAEFB /* FIRCLSLogger.m */, - FC7E6596644453D30491DBA091AAF494 /* FIRCLSMachException.c */, - 4650214C8D06B983E210DAE986824CDF /* FIRCLSMachException.h */, - FFDB7FAA8CFF007C8D2DBF497D5F7D2C /* FIRCLSMachO.h */, - 2777CBD18D9C43C9A3474489B0460131 /* FIRCLSMachO.m */, - 877E589A8BF687225F8BDA9BB84A5517 /* FIRCLSMachOBinary.h */, - 4FFD4768964A96ED914AFC1FB2C3CD28 /* FIRCLSMachOBinary.m */, - F0AAE5E8D832ABA019BCFEACD02E56C8 /* FIRCLSMachOSlice.h */, - 63D0C21CDE1E08E58AFE3105E685007B /* FIRCLSMachOSlice.m */, - 74FC53950672DDDEAE0DC47EA151ABEF /* FIRCLSMultipartMimeStreamEncoder.h */, - CBD2370D02EB3B8FBD40A033B277308D /* FIRCLSMultipartMimeStreamEncoder.m */, - FB93C116608C7D0893D4BF7038D99D1F /* FIRCLSNetworkClient.h */, - CF8644F271E44401C198A359C279E6A2 /* FIRCLSNetworkClient.m */, - 88F8A7279BB40AE2387BE1D231002F03 /* FIRCLSNetworkOperation.h */, - 29D360BE948B0B8AE79B6F6128A14937 /* FIRCLSNetworkOperation.m */, - 4393B1186FA44A018BBFA28C519A8C4A /* FIRCLSNetworkResponseHandler.h */, - 17927E411F9A2BFFE622A58AC94ABD1E /* FIRCLSNetworkResponseHandler.m */, - 08A2D3ED61203699C6E69AEB06D1C0BA /* FIRCLSOnboardingOperation.h */, - 441EAB302C099E80DE9A5B559150B9ED /* FIRCLSOnboardingOperation.m */, - F667AE46E263A7A517E722D9B783D79B /* FIRCLSOperation.h */, - C335D0C23B2DA8C1FF4D4D1B65B1F207 /* FIRCLSPackageReportOperation.h */, - 2ED9BF56428DBA0DE10A75282936070F /* FIRCLSPackageReportOperation.m */, - 5334928FBB0132296272FEA11164A514 /* FIRCLSProcess.c */, - 52E1F69E1D0368EFA784C9D21D7DBD74 /* FIRCLSProcess.h */, - EC6B215909BFDC7A355DECAD3E931417 /* FIRCLSProcessReportOperation.h */, - 220D75BBF7829017349A979BCB734ED4 /* FIRCLSProcessReportOperation.m */, - A86457AA05C659AA93937FFB3628D5CC /* FIRCLSProfiling.c */, - 96A65951DF1FD441212C181B834813A3 /* FIRCLSProfiling.h */, - D7E5EC94D71759DD5DA4BF40DACD91FA /* FIRCLSRecordApplication.h */, - 1AD786D1FFEBD9B081A0830735573F7E /* FIRCLSRecordApplication.m */, - BF67BBDCA673E1FB5C1DD2309AF4CB54 /* FIRCLSRecordBase.h */, - 36C2D4F83741C5DF31ACE32DA45B4D33 /* FIRCLSRecordBase.m */, - 6469A47D128F2A11EBBF60DD1195B115 /* FIRCLSRecordHost.h */, - 4376713BCD5106D4E76A07353B85BF9E /* FIRCLSRecordHost.m */, - 2C54CBEF7275D9470822FE0D250A5B09 /* FIRCLSRecordIdentity.h */, - F9F717971EB4CADD925F4933F21D6A1B /* FIRCLSRecordIdentity.m */, - 3BEBFA68C05885A1CC3877F22208E6D8 /* FIRCLSReport.h */, - B93E72F5981D76CB887E4C865D7B3A1E /* FIRCLSReport.m */, - 454E9EA0FB4C60C3075490BC8A0DE5D9 /* FIRCLSReport_Private.h */, - 8A3DB7B67BAC8384B203734EB780A8EA /* FIRCLSReportAdapter.h */, - 587CA81CE7102CB1AE338DEDA0A1B0D5 /* FIRCLSReportAdapter.m */, - 1E1007F4054FC430ED1A198952B47D69 /* FIRCLSReportAdapter_Private.h */, - 33DD3E5B5A4DC8E6EF82F41A5E8D1A7D /* FIRCLSReportManager.h */, - DBBEB9B5D2777C75E5E5B2DAE9212D52 /* FIRCLSReportManager.m */, - 17C0CD6ADA9BC193B0782803DC4943F7 /* FIRCLSReportManager_Private.h */, - 69D3B6CCE8A8969EE3C7CAFE9900BFCE /* FIRCLSReportUploader.h */, - C21363F67760B2C4D800FA5E6E6B6A07 /* FIRCLSReportUploader.m */, - 50C41EF12D05B64B2E575D8C73550625 /* FIRCLSReportUploader_Private.h */, - 7F5467A50B2433558AF81A19C71F11A9 /* FIRCLSSerializeSymbolicatedFramesOperation.h */, - 097D9FA33676D30ACB7766C84788F795 /* FIRCLSSerializeSymbolicatedFramesOperation.m */, - B6951FFCEC3C2314DC3AF5B2C5BE38D1 /* FIRCLSSettings.h */, - 5A9D7451AAEF6D630785986A58FDC007 /* FIRCLSSettings.m */, - 0A7589870AE8D1910F6EEA19A4EBE644 /* FIRCLSSettingsOnboardingManager.h */, - D406C3172FD33987CC90D98C292F301B /* FIRCLSSettingsOnboardingManager.m */, - 3E88D846200DFC32E1B1FB4A60EAF730 /* FIRCLSSignal.c */, - 7141B2FD3EAB6D6D1972EF3F045B9845 /* FIRCLSSignal.h */, - 22403A1A10B620C8AEDD2BB6D04A48F1 /* FIRCLSSymbolicationOperation.h */, - 98D20082443CB51499254D58AA1B64FD /* FIRCLSSymbolicationOperation.m */, - D8DC5D16E9213B3F499E8791592C12EC /* FIRCLSSymbolResolver.h */, - FE8D16AF667A7D8A41E9D13981967F3B /* FIRCLSSymbolResolver.m */, - A6B2FA02FE906EFA9535232DB0BAF5D0 /* FIRCLSThreadArrayOperation.h */, - 39A87EC33C3AE727827CE0318565876B /* FIRCLSThreadArrayOperation.m */, - C95ECC7C9717D97B9AC7FD144C98ADF2 /* FIRCLSThreadState.c */, - 99D63D6DE4959BB4E1B63AC9F0799982 /* FIRCLSThreadState.h */, - 9BBE384FEBA7D7ECA92B70B0FA235097 /* FIRCLSUnwind.c */, - 6EA1D92786FCD194CDB476F296BED4AD /* FIRCLSUnwind.h */, - A81308D786A9569FA6C94767535A684F /* FIRCLSUnwind_arch.h */, - 04CD318B73650A813269D865DF4D5037 /* FIRCLSUnwind_arm.c */, - 5BD5DC609D90282613BD259D7B7025A0 /* FIRCLSUnwind_x86.c */, - 199D2E3FA4093CD5CBD0F97D0EE70B56 /* FIRCLSUnwind_x86.h */, - 6D035BF61D6DF1BDDA08411148CE3E73 /* FIRCLSURLBuilder.h */, - AAB6149E896399EC0424B0B9EE28140D /* FIRCLSURLBuilder.m */, - B3EA108D86B0FF481C6D662FACD8A709 /* FIRCLSURLSession.h */, - BA68EB70167AC162F9C6BF90C3190740 /* FIRCLSURLSession.m */, - AC6ACF007CE014EF66FDD4CA87758D24 /* FIRCLSURLSession_PrivateMethods.h */, - 45933FD560F9D023DC39B0A5D8792B0B /* FIRCLSURLSessionAvailability.h */, - 1EC80EEA530279E219DA9C2BAFC44698 /* FIRCLSURLSessionConfiguration.h */, - 1BC2C2D517C3AAECFF85699B7FA6FB09 /* FIRCLSURLSessionConfiguration.m */, - 7C0C072C906C75C8B707432DD2546F53 /* FIRCLSURLSessionDataTask.h */, - 5217079C508569C2D0F031D958008DBB /* FIRCLSURLSessionDataTask.m */, - 4100516A2F71C4FCEFF4C192A3E25A5C /* FIRCLSURLSessionDataTask_PrivateMethods.h */, - 5669BD5467E7448A1D8086103C214E2E /* FIRCLSURLSessionDownloadTask.h */, - AB3C3EBE83825F847588B9C5EFE94821 /* FIRCLSURLSessionDownloadTask.m */, - 617DC4CFBCE1FAC3EED379342C098A6D /* FIRCLSURLSessionDownloadTask_PrivateMethods.h */, - 98B00F71EF99AF2042883F39A85341E1 /* FIRCLSURLSessionTask.h */, - C16AEF8FC19B26B9C212A7F9183DDF93 /* FIRCLSURLSessionTask.m */, - 6EDA96412237D84713DD44019D1495A1 /* FIRCLSURLSessionTask_PrivateMethods.h */, - 5A29B3E4A16627EEEB36AC28A8C68324 /* FIRCLSURLSessionUploadTask.h */, - D1C3457EB97C2E145F1E6A47676EB365 /* FIRCLSURLSessionUploadTask.m */, - 6F25DD195E34542EF84D539694EAD5F0 /* FIRCLSUserDefaults.h */, - C3266B4D8442BC0F9230B842A2B712B9 /* FIRCLSUserDefaults.m */, - E0E7621907959CFCC82A5725717C078F /* FIRCLSUserDefaults_private.h */, - E2352E5FBE76E56B7B7BA6EF4F362CA4 /* FIRCLSUserLogging.h */, - BF6EEDE5D31E9583322CA71355AE74EB /* FIRCLSUserLogging.m */, - C16EB91026B1EF04C1DC87BB87155F18 /* FIRCLSUtility.h */, - A76299CA52706D2EDE496A287FA92AA8 /* FIRCLSUtility.m */, - 849FC69E990B83A69FC8A87B83C1C2EB /* FIRCLSUUID.h */, - 5DFDE0F1F6827D9150F1F6A956057CA6 /* FIRCLSUUID.m */, - 37E86C5D337B57126E07CA772629577A /* FIRComponent.h */, - 603227E13E228FE45C25D295A158787D /* FIRComponentContainer.h */, - 3A519F6518C260D0FF48E82C2A8808A4 /* FIRComponentType.h */, - 084464DD1DF0BC6D3E42DE008CC002BA /* FIRCoreDiagnosticsConnector.h */, - 2C616658CC648E09155A506047BDB957 /* FIRCrashlytics.h */, - 7D62A205D7B6D909481AF0182C083272 /* FIRCrashlytics.m */, - 3165B7C50B8D93136632716AD3961A52 /* FIRDependency.h */, - 4769820499D04031C91A6FC6F516BD20 /* FirebaseCoreInternal.h */, - 2760A9D6AEC74F2005ED1B8F8B3AFCA9 /* FirebaseCrashlytics.h */, - 9881046FDD9C36E6167F04A001FF345A /* FIRErrorCode.h */, - 4ADFD1409A834BF3CF99EFB686438DC2 /* FIRErrors.h */, - 72505AE0D9A7E5D7961E65C7BC1D3030 /* FIRExceptionModel.h */, - 6E137C9A8D2E3E9A5EF10B8265E9656A /* FIRExceptionModel.m */, - B50E06C043C66E717739CED2E150DC3A /* FIRExceptionModel_Private.h */, - F1863201D0BA8344F02D2910F23AADA4 /* FIRHeartbeatInfo.h */, - 54A0241C5AB2ECD06DAE4825A6FBAABE /* FIRInteropEventNames.h */, - B39FA304FAD2133BE2076EF1F90A524A /* FIRInteropParameterNames.h */, - 21232C6BB4536A408BDAE2BB5D559AD2 /* FIRLibrary.h */, - 96FF04602D313A035A686E37DB0AD9DD /* FIRLogger.h */, - 6497352FEB02FB97EDC668D210D9D639 /* FIROptionsInternal.h */, - E84B304A0A3E5E63A9395D43DACFBEC1 /* FIRStackFrame.h */, - 148BD4524563EAE73DE3CA93B337855C /* FIRStackFrame.m */, - F905161DEF3AFDF41768E0E23B15FB64 /* FIRStackFrame_Private.h */, - 0B8BD02255C2CA937F4BF1379B80F7E9 /* Support Files */, + 9FF5EA7409598AFC33EF2AC120EDEC99 /* decode */ = { + isa = PBXGroup; + children = ( ); - name = FirebaseCrashlytics; - path = FirebaseCrashlytics; + name = decode; sourceTree = "<group>"; }; - B05B78FEB2F3E120F651327A9F49C5BC /* Nodes */ = { - isa = PBXGroup; - children = ( - ED625D5A21C9F1B61CFF7642D677FE07 /* REAAlwaysNode.h */, - C9B967E1CE6B4A87E51F75B5187C594A /* REAAlwaysNode.m */, - 9A7DC932EBFEA8EAD11B91E04EC2CE30 /* REABezierNode.h */, - BC1DFE2FED2A0B13126963E15601113B /* REABezierNode.m */, - C9513ADBC8F5FD588932B568C8D26DDB /* REABlockNode.h */, - 51932962389B22CF23FD8BB7939CDE28 /* REABlockNode.m */, - 95409ABF25D42C8C7A43CEB383BB217A /* REACallFuncNode.h */, - 41BEDDA58A460F4905BC985C1FDBC27D /* REACallFuncNode.m */, - 867184BCA9B2D56CB73DAE176DC85425 /* REAClockNodes.h */, - E02E32A237431173E06EC82446A1EB12 /* REAClockNodes.m */, - B8D8BFEBC605F5B2FC3A82710426E43C /* REAConcatNode.h */, - F028259E27D1417958999A7A7A1310D2 /* REAConcatNode.m */, - C60C273209D11C25647302AA4EE459C7 /* REACondNode.h */, - 93BBACFC282DB3608E7443B4F8F92F19 /* REACondNode.m */, - 6DE49ECD736F3A64C331F6A1E4F30C4E /* READebugNode.h */, - 9505DA46341E16895E696AA8B1B082ED /* READebugNode.m */, - DD57B527F7CD29DAD0193178373998AA /* REAEventNode.h */, - 93FC45CC18820A048275DA3BBE31FD89 /* REAEventNode.m */, - 3E6D248CD28BE41F933CC681EACB82F8 /* REAFunctionNode.h */, - 45CA01141554D9AC3DBB8776F286FFEC /* REAFunctionNode.m */, - A40D35B3E223EE3A59C70211AF70DD57 /* REAJSCallNode.h */, - E1E10551E1BA25B796460E47DC1ED197 /* REAJSCallNode.m */, - F09E3CE4EFFEADA4D5525E7AC223798F /* REANode.h */, - F42A2624F056C94D80F5503354B73FFC /* REANode.m */, - D5D99E68D42DB1FFA29F7AD244CD2F3C /* REAOperatorNode.h */, - 13204C62D0A43D74E6AA57C8A4CDD9AC /* REAOperatorNode.m */, - DC66BC4DB4CD3441B632CC2F80B5ADB5 /* REAParamNode.h */, - 95E467C2CA3EAB1FECEF9E2AD4F9B632 /* REAParamNode.m */, - 3B52C25E241A136F30D3AFEA155BECF7 /* REAPropsNode.h */, - 6A3F39F545F907AF8B49B170FBE2599D /* REAPropsNode.m */, - 098C33BAFFF906D6D3AF3583C8832657 /* REASetNode.h */, - D560D51D8AE4A5857AA12820C4EE5243 /* REASetNode.m */, - 463FD6CE5E4650310F45D38D814546AB /* REAStyleNode.h */, - 20D29AC790079739A24F54BE9F434E94 /* REAStyleNode.m */, - 4C9FD89B38C20D172047C1DFFA6CFCC8 /* REATransformNode.h */, - E366B66C03DB791740DF2536692620C1 /* REATransformNode.m */, - 82ED9F1782E3FD8F7E0CB9DA88B7D1C7 /* REAValueNode.h */, - 8EF4B26C6D38B2DF9388C95BAED0C0C0 /* REAValueNode.m */, + A092FE18116FB391CB36F0790FA5E069 /* react-native-notifications */ = { + isa = PBXGroup; + children = ( + 9D7BF1DD96609446F172113B64BFAE2F /* RCTConvert+RNNotifications.h */, + A9BF703E9789996BFAF54CC5BE39FE73 /* RCTConvert+RNNotifications.m */, + 647E22648B2071E2AE257DBFB9582075 /* RNBridgeModule.h */, + C7CCD833CEF922D9C81E18E742C0C72E /* RNBridgeModule.m */, + BB64E5F2016ABADF413A0D03AF7A2955 /* RNCommandsHandler.h */, + F0561B61CA7F5F895368C653D8E97247 /* RNCommandsHandler.m */, + 59244AA97058CEFA1EAF8F4CA79757DD /* RNEventEmitter.h */, + DEECB65E82C196738DA8DC63518F4D82 /* RNEventEmitter.m */, + 5B9B2869B52E94AC3CA76F7F9D14A2E1 /* RNNotificationCenter.h */, + AC589C3F3182F43CA06615B88BE9744E /* RNNotificationCenter.m */, + 3CFEB7250AB95ADB33F32D344AD223F3 /* RNNotificationCenterListener.h */, + E68905C156ABE50BA45B88BB0A773969 /* RNNotificationCenterListener.m */, + C5944E4011C8B8BCFBAEC469F128BE4C /* RNNotificationCenterMulticast.h */, + 356AFA8260E0E76E520958A7EA66580A /* RNNotificationCenterMulticast.m */, + A1B1893DB617FD868202311D82D507F9 /* RNNotificationEventHandler.h */, + 5934F4E2AE5D648B86C5AEFA11A3EE5A /* RNNotificationEventHandler.m */, + C58D6937D5123E41801DC10A05F9B30B /* RNNotificationParser.h */, + 1FC61343B66E32B55208CE054D2C8AD3 /* RNNotificationParser.m */, + 24DCDAF0CA7922D3EF2B0A2BE9A5B90A /* RNNotifications.h */, + CBBD9597A707810EA51D856CEEC6016F /* RNNotifications.m */, + 6552BF3D9BF160C2B733566D9510E417 /* RNNotificationsStore.h */, + AADABC3AA0CD01B88E565AD19ED6D419 /* RNNotificationsStore.m */, + 857C068BB3BC753DC382372AF7C840C5 /* RNNotificationUtils.h */, + 24F0769A180D025917138DCC3DD3869D /* RNNotificationUtils.m */, + A48DF5FFA469292B32E95C6BE59BAE9F /* RNPushKit.h */, + E93C31DAC71CF4E3EDCD9BFDEEC10A55 /* RNPushKit.m */, + 8E779D86D839C8CB46320F82EB6BE302 /* RNPushKitEventHandler.h */, + 102BC125C6261EB31E3368878A7A8EC2 /* RNPushKitEventHandler.m */, + E494E88B86ACCB777078C6A4EC044B55 /* RNPushKitEventListener.h */, + C938F168AE77168233713E28A859D703 /* RNPushKitEventListener.m */, + A80330950CF891A25CA0A53D7DA57CBB /* Pod */, + 625C31D34816536D49F42467453E1DAE /* Support Files */, ); - name = Nodes; - path = ios/Nodes; + name = "react-native-notifications"; + path = "../../node_modules/react-native-notifications"; sourceTree = "<group>"; }; - B0F213CEE2ABCC56288FC244E24CE662 /* Support Files */ = { + A10CFB818384E813405312FCF799F09C /* VirtualText */ = { isa = PBXGroup; children = ( - 76335C94BC3A1B44E3DF023ABC327CFA /* ResourceBundle-QBImagePicker-RNImageCropPicker-Info.plist */, - 44747932CB8EA27D3A71CBE61CC868EB /* RNImageCropPicker-dummy.m */, - FB382A9A31F060BB77B2CC16756C177A /* RNImageCropPicker-prefix.pch */, - 6DF61E1E4E09C55C34D232E606DAEC35 /* RNImageCropPicker.debug.xcconfig */, - 33C451B5E70DB04A4D69D8018EFC491A /* RNImageCropPicker.release.xcconfig */, + 9A73CE23FB147CF6D296F0FE430DBF47 /* RCTVirtualTextShadowView.h */, + E9053330601A717F1DD225D45861FA62 /* RCTVirtualTextViewManager.h */, ); - name = "Support Files"; - path = "../../ios/Pods/Target Support Files/RNImageCropPicker"; + name = VirtualText; + path = Libraries/Text/VirtualText; sourceTree = "<group>"; }; - B16EB19843469B10D649ED357705821C /* keyboardtrackingview */ = { + A12E3B0371B168AF2CAC230BC71C36EC /* BaseText */ = { isa = PBXGroup; children = ( - 05C1523679D85B2912D83941C003FF06 /* KeyboardTrackingViewTempManager.h */, - C8BDECB59759E467E4BA207CDA35DA99 /* KeyboardTrackingViewTempManager.m */, - B4874D1CB2474417B8C726895842F734 /* ObservingInputAccessoryViewTemp.h */, - F0E2A3B05B70177D3701F3E365014AB2 /* ObservingInputAccessoryViewTemp.m */, - 3DA24849CCBBC6DD9C7740C89655776A /* UIResponder+FirstResponderTemp.h */, - E32F0ADDAD67DE6FFAEA3592A5620057 /* UIResponder+FirstResponderTemp.m */, + 30B57C8C502BC389EAF27871AC63A3B7 /* RCTBaseTextShadowView.h */, + 9436B91C9FF161478B84F75E61058C78 /* RCTBaseTextViewManager.h */, ); - name = keyboardtrackingview; - path = ios/reactnativeuilib/keyboardtrackingview; + name = BaseText; + path = Libraries/Text/BaseText; sourceTree = "<group>"; }; - B171E99FAD968B67BB3F30E399327AEF /* Support Files */ = { + A135829BC12EAE9CF56E05BEAA1F00D1 /* RefreshControl */ = { isa = PBXGroup; children = ( - 3D196C4EDEB47415D485A0236AC6D8D3 /* libevent-dummy.m */, - ACFCB59D5CFCD7486AF23ECB8B8B0703 /* libevent-prefix.pch */, - C2716E1FCC4CC046E067D51DA07E0760 /* libevent.debug.xcconfig */, - 310FC110EFDE34CDB679F28F1FCA2920 /* libevent.release.xcconfig */, + 53CE8828D990C1D32594CB9ADA75AAEB /* RCTRefreshableProtocol.h */, + DC493A70EBDE33201AF4621EE5568DD5 /* RCTRefreshControl.h */, + 0479F3B47B90F344B7FCB6C9EE623327 /* RCTRefreshControl.m */, + B07F676F038A947FB374C7219F06F0B5 /* RCTRefreshControlManager.h */, + 6398CA7769F81D7F92FC70CE94CB859E /* RCTRefreshControlManager.m */, ); - name = "Support Files"; - path = "../Target Support Files/libevent"; + name = RefreshControl; + path = RefreshControl; sourceTree = "<group>"; }; - B4725EF2517297DCB97F2B6A02170E04 /* Pod */ = { + A251929911742F461C1738A3A2B2BCA7 /* Support Files */ = { isa = PBXGroup; children = ( - B38EFFCE50312E2914CA7E5325427451 /* EXAppleAuthentication.podspec */, + EE9AF4B52D9E531EB33BC64623F8F534 /* react-native-safe-area-context-dummy.m */, + 3E03F0BC9E91DA4172E4D56B2C67B871 /* react-native-safe-area-context-prefix.pch */, + D3C193A820700A9A3C5A490A4C0B0692 /* react-native-safe-area-context.debug.xcconfig */, + 5496512ACA34AB0CE45FFA9D693EAFC4 /* react-native-safe-area-context.release.xcconfig */, ); - name = Pod; + name = "Support Files"; + path = "../../ios/Pods/Target Support Files/react-native-safe-area-context"; sourceTree = "<group>"; }; - B572E39F5023CA0D41271F4F8E929B5B /* Support Files */ = { + A29255E4804375685D1342009D52D339 /* Support Files */ = { isa = PBXGroup; children = ( - C00C64F14C3A18BFFF5DCDBD56C60169 /* ReactNativeART-dummy.m */, - CC46805A90E29C92F294FA16CC350C72 /* ReactNativeART-prefix.pch */, - FA187242EBEDD3399949F29771D88BC5 /* ReactNativeART.debug.xcconfig */, - 121B1E4C86111FD774FABC537B3F82D9 /* ReactNativeART.release.xcconfig */, + E6587A2DFF4F9DDCDF2073DB2041C48F /* React-perflogger-dummy.m */, + 301DC27601F097F53542357448F70905 /* React-perflogger-prefix.pch */, + D59C2BB4EEDA2307FB27DE5D3C646762 /* React-perflogger.debug.xcconfig */, + 47DB520D98397A3D722723735A2DFF93 /* React-perflogger.release.xcconfig */, ); name = "Support Files"; - path = "../../../ios/Pods/Target Support Files/ReactNativeART"; + path = "../../../../ios/Pods/Target Support Files/React-perflogger"; sourceTree = "<group>"; }; - B5B617E1CC9C786733CB42BD157F5536 /* Pod */ = { + A2A47CA2D54357DBF98F511287B8307B /* Protocols */ = { isa = PBXGroup; children = ( - 15EA616B395326914B4C56438DE7AC06 /* README.md */, - D37B65DEDF478FA183504D83B5AFE43C /* RNCMaskedView.podspec */, + 1AA62C4CFE08E458DFE5EF0187C26F04 /* UMAppLifecycleListener.h */, + C96FA1BE517F6C3D939058B7369032EB /* UMAppLifecycleService.h */, + A689C86B4B08AD1F345082A0169BAB81 /* UMEventEmitter.h */, + 18841EAE64922AEF1A7C678B7D082522 /* UMEventEmitterService.h */, + 89A788B18FC3CB1C4233F5338DF9D973 /* UMInternalModule.h */, + 2271E66BDA9F93DB2A1611868A2E746C /* UMJavaScriptContextProvider.h */, + D16FF83056B9FD37359BCD7A742ECF77 /* UMKernelService.h */, + A0B366DFF56FD3B4BF2B6DCE891BF968 /* UMLogHandler.h */, + A6069B0CE5871CE390C0BF17513DAB9B /* UMModuleRegistryConsumer.h */, + EA0D4C1D84AF2768C5D1ACFD13776663 /* UMUIManager.h */, + A0CEAD7740B748E268BE507A6D57D3E3 /* UMUtilitiesInterface.h */, ); - name = Pod; + name = Protocols; + path = UMCore/Protocols; sourceTree = "<group>"; }; - B5C94B22866D0D81496F56267E46A91B /* react-native-restart */ = { + A355AF9707483F981B8A65B0329A9908 /* FlipperKitNetworkPlugin */ = { isa = PBXGroup; children = ( - 2F063F42597664A28DB5D13D0BAD4FE9 /* Restart.h */, - 85E941E45C8BA1C7C836427904213DD1 /* Restart.m */, - CB3CDC510C88B70F6A1C208DD6B15F79 /* Pod */, - 416E8EF9EBB0C2E5A393C3CE6DFBD1B3 /* Support Files */, + 6CC22BA0E6A034B3AD81DF40A241DC49 /* FlipperKitNetworkPlugin.h */, + 1C28AF71A2550395858FCAE57EF2CDDA /* FlipperKitNetworkPlugin.mm */, + 6700772380B3CFE2FC3FF245578BFA13 /* SKBufferingPlugin.h */, + F48067040CCB3B1BD73CE2965F3D7C10 /* SKBufferingPlugin.mm */, + 2466A92B7494A946A484AD469D893C44 /* SKBufferingPlugin+CPPInitialization.h */, + 94B75D8DFA6087D12A00F22627596B00 /* SKDispatchQueue.h */, + 2F9D16D75DC649DDF67EFB91F7E5D4B8 /* SKNetworkReporter.h */, + 12FC28C42CDEEC2B4A36BC6B38F2B90A /* SKRequestInfo.h */, + 1503AB4B0CC23C79FD2C3B8501F8C851 /* SKRequestInfo.m */, + 79668A3961A6DFEFB9669630B43305F9 /* SKResponseInfo.h */, + 8FA38133468760021D39118AA73ABB42 /* SKResponseInfo.m */, + F2E7E882068AFFD0D788B616C92B5C4B /* SonarKitNetworkPlugin+CPPInitialization.h */, ); - name = "react-native-restart"; - path = "../../node_modules/react-native-restart"; + name = FlipperKitNetworkPlugin; sourceTree = "<group>"; }; - B5EF057EE7503CD37F7E87B234D21753 /* Support Files */ = { + A3A35894D6E051078B99D15E1130885B /* Breadcrumbs */ = { isa = PBXGroup; children = ( - BF872E3366FF64D781D6F38C56729C8B /* Flipper-Folly-dummy.m */, - 13401F097F69DE0383C3CAFD7C8099BB /* Flipper-Folly-prefix.pch */, - B7D3AEE78A9732BA1D67DD3282B58E05 /* Flipper-Folly.debug.xcconfig */, - 92A5874C878DFADCA0810C116E060219 /* Flipper-Folly.release.xcconfig */, + 831653DB229DFC377339CD7F1A322DC5 /* BSGNotificationBreadcrumbs.h */, + 29464E7FD027FD5149FB2AECB0F0EC55 /* BSGNotificationBreadcrumbs.m */, + 41FFB7E436C0A9942FB61D7A54FC2EB7 /* BugsnagBreadcrumbs.h */, + 1C32CB42A0B9314C31EE1A23564DCAD5 /* BugsnagBreadcrumbs.m */, ); - name = "Support Files"; - path = "../Target Support Files/Flipper-Folly"; + name = Breadcrumbs; + path = Breadcrumbs; sourceTree = "<group>"; }; - B608AE0B629A21F0BB0E28CD23CAA013 /* Text */ = { + A3F6BD85F98270EFE0F00E920AB2968C /* Video */ = { isa = PBXGroup; children = ( - 4C2EDAD5ABAACBC7C7EDE94447778269 /* NSTextStorage+FontScaling.h */, - 73E46AB944E91B060A550C4C5605837C /* RCTTextShadowView.h */, - 6C42293110E4BFCD51D38CDFD8A3C674 /* RCTTextView.h */, - D3F24519187C0062D2335EF4A06B631F /* RCTTextViewManager.h */, + B848311E54CCC02328922D14C45474A7 /* EXVideoManager.h */, + E767C837A93698578654244485430BB9 /* EXVideoManager.m */, + B388AA0CE17EA16BD7DAEC50D1DE956E /* EXVideoPlayerViewController.h */, + 63510083183C02B3312DA0BA286155A7 /* EXVideoPlayerViewController.m */, + 1C7C86FBA70F8F4B2E985D926E9ED8C1 /* EXVideoPlayerViewControllerDelegate.h */, + 0AA9F196BCBD8019F6673CD26051C0C3 /* EXVideoView.h */, + C55A79EB50BB30463EDFCC0A38DAE4CC /* EXVideoView.m */, ); - name = Text; - path = Libraries/Text/Text; + name = Video; + path = EXAV/Video; sourceTree = "<group>"; }; - B611CE5D5941E6EC93FB041A5D1CC251 /* RNBootSplash */ = { + A54E671FADA0EF3FCDCC3371ED3316BB /* React-RCTLinking */ = { isa = PBXGroup; children = ( - E8407F7D051C127800BA923758D2BCDF /* RNBootSplash.h */, - 9BEC1860957320D1CF2C90CF1F9595DB /* RNBootSplash.m */, - 417E190998E86BEA8DCFFEFE376B3B3E /* Pod */, - 5AF3EE885CBFFC9FBC554903D7A4C41C /* Support Files */, + 609CE645A138A2BF46AA3D76008405E6 /* RCTLinkingManager.mm */, + 5DF6EB6DFE188240615EA6EF9A35B572 /* RCTLinkingPlugins.mm */, + F94C9F719C34E1F9DFB66E32FF581087 /* Pod */, + 89F33F68558C8572F059A27AE180B264 /* Support Files */, ); - name = RNBootSplash; - path = "../../node_modules/react-native-bootsplash"; + name = "React-RCTLinking"; + path = "../../node_modules/react-native/Libraries/LinkingIOS"; sourceTree = "<group>"; }; - B61A56661EF0A5EC24AF28A604FEC43D /* FlipperKit */ = { + A577758C730E6EF3DCE8FE756231BB52 /* FlipperKitHighlightOverlay */ = { isa = PBXGroup; children = ( - FFF7FD7DB0C75102D60D37EDE2106E99 /* Core */, - C6C82D686F18C4ACF88623AB9D347067 /* CppBridge */, - E22808753F009160E31EDC41DEE07E60 /* FBCxxFollyDynamicConvert */, - 7D2BD92025B51DA60BB351BB9BAEC931 /* FBDefines */, - 667D684D412E4C6045F8D4DF9927300F /* FKPortForwarding */, - 00ADBD0236ADCA79BCE5BE9B3FB7543B /* FlipperKitHighlightOverlay */, - 67B7CC128AF431AA09BD756EAABC5DC6 /* FlipperKitLayoutPlugin */, - 2ADDAEF89256CBF49155EA891F52C149 /* FlipperKitLayoutTextSearchable */, - 98686B7ADD52CE21AF3F1261B62CFA12 /* FlipperKitNetworkPlugin */, - DBB7186D066449637082373B969C9EB2 /* FlipperKitReactPlugin */, - DAFDB040B96E734BFBF205CF24CFE6B6 /* FlipperKitUserDefaultsPlugin */, - EADB4AC2FAFE74AB2202BC0F01C5868E /* SKIOSNetworkPlugin */, - F67429E53CEB7D36B9F6BCCB4BEA01BB /* Support Files */, + 001330F7A43B6C92C4AF1BD7C7A0315A /* SKHighlightOverlay.h */, + 634439167118190AB0E4E384E0FA9DEE /* SKHighlightOverlay.mm */, ); - name = FlipperKit; - path = FlipperKit; + name = FlipperKitHighlightOverlay; sourceTree = "<group>"; }; - B628BCAA909571D11C0055D68DA9C910 /* Pod */ = { - isa = PBXGroup; - children = ( - B4732D765306D8AD1EEA3CE1FB3C3263 /* UMFontInterface.podspec */, + A591F7156FC92CD6A1DE8403083A58DF /* FirebaseCore */ = { + isa = PBXGroup; + children = ( + BA2104C28844C7A572B36FAA240809B3 /* FIRAnalyticsConfiguration.h */, + 112C873DEA2E74343B0275D53DE2B1A5 /* FIRAnalyticsConfiguration.m */, + FAFB7932D5F408B3087EE89AED92665A /* FIRApp.h */, + B514DB33F06769DCC6A36DA37247A272 /* FIRApp.m */, + 5FB3723779BB5E06CE77C061335CA197 /* FIRAppAssociationRegistration.h */, + B49D41C143E58F3495723D2CF6FD6BF7 /* FIRAppAssociationRegistration.m */, + 9C8244B617C5DF72EE1513EE6A6D1B91 /* FIRAppInternal.h */, + 2238BC159920F94A6ACD6DD5328A6288 /* FIRBundleUtil.h */, + 2F7BE1370A2430FB08BF1653FD466761 /* FIRBundleUtil.m */, + 82D18E992787A1F0B4D161AA392C11F1 /* FIRComponent.h */, + 9E46261BF0E0562C957F1938C2E01B4E /* FIRComponent.m */, + 3AEDCC89AADF30FEC4D3F9DE13587C37 /* FIRComponentContainer.h */, + CC673C15E8F300DD3C214F761942C29D /* FIRComponentContainer.m */, + F0B50EE62EBE1CA22B37FBCAD7F5D3BC /* FIRComponentContainerInternal.h */, + 35FAB482F279313494EED38443F620EA /* FIRComponentType.h */, + B1C51DD87B30358E7B653A7186A36086 /* FIRComponentType.m */, + 5DC0C5CA36BAC64797D4DBFD6D4F5AF7 /* FIRConfiguration.h */, + B28964FDACCE3E5DFEDCEC8B6C240FF3 /* FIRConfiguration.m */, + BE632B847C3388AFC7C215B03240E2F3 /* FIRConfigurationInternal.h */, + 915DDE4D9CAD1164B7707A88FE4F4F71 /* FIRCoreDiagnosticsConnector.h */, + 36D3CFDA98ACA08DE6FF19AA4F97C253 /* FIRCoreDiagnosticsConnector.m */, + 7B71B0CC0F6273737CDF8C46BE213058 /* FIRCoreDiagnosticsData.h */, + 7B49B444E0D78C35F9EF1A2FB6D0EBFE /* FIRCoreDiagnosticsInterop.h */, + 2716C2439DD679FEB55E1E62B8B38683 /* FIRDependency.h */, + CB0546AF46BE382CDD2C473260367D50 /* FIRDependency.m */, + 1DA22A8BB0CCBC35373CA18887183FA1 /* FIRDiagnosticsData.h */, + AE775A84C1A36A7AD7B4F6DB894723CD /* FIRDiagnosticsData.m */, + 172DD778AA29D60C30C35414F10BD6E4 /* FirebaseCore.h */, + 259F6E7CCEFB5E9DB441DC4CFFF0B868 /* FirebaseCoreInternal.h */, + 85F73654092BD3D6F64B5A58B90BB4CD /* FIRErrorCode.h */, + 540F0A04FC92B2DEEDCA2FBF692D382E /* FIRErrors.h */, + D459413E258EF08FE6AD5DE93DE10076 /* FIRErrors.m */, + 08F0D2E3ABA7D3542334418E87E0D79D /* FIRHeartbeatInfo.h */, + 79665451110932A2A4A62F49046CB8BE /* FIRHeartbeatInfo.m */, + F5BEE9DC30E2FFDE072729FD8E3A7FE7 /* FIRLibrary.h */, + 93E91CD1E2E39BE42F531025E5BC95B5 /* FIRLogger.h */, + 8B8C8CA38B97A952982286A04166D93A /* FIRLogger.m */, + 9167A925AAB617B7D73080B2A9A091E0 /* FIRLoggerLevel.h */, + 3BC17F26D9F946CF16A5AF1048E6F48B /* FIROptions.h */, + 6F6FC2381953D8CC4C8047736CEDB43F /* FIROptions.m */, + 19BF4ECC51547C51107B3FCF3410CBDE /* FIROptionsInternal.h */, + 488ABFD1C82D6609EA54219704B79029 /* FIRVersion.h */, + 04A1CE2AFA5CDC051BF40B7AFD333CC9 /* FIRVersion.m */, + 8DBEFA033BCEE191637F28CD6FF5D650 /* GULAppEnvironmentUtil.h */, + 92D9BA5F2835454A664AE1823699E248 /* GULHeartbeatDateStorage.h */, + 06D053228E60AF771B0AA73C61CD543C /* GULKeychainStorage.h */, + B2C132FB32D0B4C3D6E4FDA06C9AE554 /* GULKeychainUtils.h */, + 16D715A4DA0958B00943DFA2BA930EF9 /* GULLogger.h */, + 7C37D10E9A01EB97CE77A2E6C173D2C5 /* GULSecureCoding.h */, + B11047AD02CA7B1753E38376B78A0A37 /* Support Files */, ); - name = Pod; + name = FirebaseCore; + path = FirebaseCore; sourceTree = "<group>"; }; - B7B238CE50E038117537D10FDBB462C7 /* Pod */ = { + A65D704F029F2A573E976AFA403D0681 /* Support Files */ = { isa = PBXGroup; children = ( - 11B51F34AD31D04ECDEA6D348278AF7D /* EXLocalAuthentication.podspec */, + AEFA078EB7DE2F215A9B9A6C4E542DB2 /* UMAppLoader-dummy.m */, + FE9F5E6B24E19D35FC23321AD7A27911 /* UMAppLoader-prefix.pch */, + 48F70B53C832715C518D8865142EA37D /* UMAppLoader.debug.xcconfig */, + 6BDB83DE4FF6D60B4A33255771EDF9BA /* UMAppLoader.release.xcconfig */, ); - name = Pod; + name = "Support Files"; + path = "../../../ios/Pods/Target Support Files/UMAppLoader"; sourceTree = "<group>"; }; - B864EE777F6E3ED39E767110907AB296 /* Support Files */ = { - isa = PBXGroup; - children = ( - 02DA98992F84389AAB8E5B6036D0F305 /* react-native-blur-dummy.m */, - C0F4D931F564B9208DE178D639DE0CC1 /* react-native-blur-prefix.pch */, - 2D34C1E13A0B82E82411A8B80CF5E46E /* react-native-blur.debug.xcconfig */, - 589EFF994DF8E0A93512C85DE371D6DD /* react-native-blur.release.xcconfig */, + A67E53A4168B9AB3A99F768943EED973 /* webp */ = { + isa = PBXGroup; + children = ( + F6549A9A5F99E62D99D983A74FA4A6A7 /* alpha_dec.c */, + E42359BFAB47E421C142D3E16A23D74E /* alpha_enc.c */, + 5ABFE46ECDB76D1CB46D01908F82DEE2 /* alpha_processing.c */, + C3A5CB191248FBE18048B5D6CF31A54C /* alpha_processing_mips_dsp_r2.c */, + 54990C1917C15C7B9DA9FAEC887FBDBC /* alpha_processing_neon.c */, + 5E853505E212DCA8AE078E5D79A52995 /* alpha_processing_sse2.c */, + 0D9E13B42D8071E41F8329AE4CCFD5E1 /* alpha_processing_sse41.c */, + E20842BB9F561E665311E5C26920917A /* alphai_dec.h */, + 7E2C9B2D0C3A09FFAEC096EBC70A7138 /* analysis_enc.c */, + 54CF59A9E9D07E96C9C6306F75169284 /* backward_references_cost_enc.c */, + 2CA64F7219DCE95748B64DB748A56919 /* backward_references_enc.c */, + 62C2BAE5054CC7730B97BC48A0C22945 /* backward_references_enc.h */, + EB2FD639C15FAB649B31135F564AB0FA /* bit_reader_inl_utils.h */, + 8DDB1537BDCEF6E634F1E58804272357 /* bit_reader_utils.c */, + FD743512C597807DC9CB219BC47D7BFA /* bit_reader_utils.h */, + 8FE3240015DA25E919A097D17D00DE49 /* bit_writer_utils.c */, + D23F052527B5208F2253747BA59D8361 /* bit_writer_utils.h */, + 8BE0A8E494C0465711336CCCAFF41367 /* buffer_dec.c */, + AEDA68E134190CE078D79652BF9C2981 /* color_cache_utils.c */, + CDE1E005AD34405685A1ADA68CDF9786 /* color_cache_utils.h */, + 2A00D35E4CC68942CA0444D9534E5267 /* common_dec.h */, + 34EF63733361F1327546C2888C2E39EE /* common_sse2.h */, + DBA439DF63949719E3443EB2D2243C3E /* common_sse41.h */, + 042E024117A9C4AD5843BD75710ACB76 /* config_enc.c */, + 01CCB1FFA00E08BE82F30FF439EC3F19 /* cost.c */, + B7E88D2F833179F2F02DB5A5C8DC2734 /* cost_enc.c */, + A30BDD6D18D3E6C8BE21D0EE933FEC3A /* cost_enc.h */, + A6B173C42E5C4B89C6E1A28AFE092DCA /* cost_mips32.c */, + 92ECA95197B1587F62AA86B35EF33839 /* cost_mips_dsp_r2.c */, + CAEA4499C5DCFBCEC518ED80409B8690 /* cost_neon.c */, + 2EE4A5D73F23FCC7986BCCDDF505606B /* cost_sse2.c */, + 2A62947C0BE9D5F9F52AB723D8F642B1 /* cpu.c */, + D09537518C21CE8E47566D4E1FEDE0DF /* dec.c */, + C9E31513156118A9EDB572F3109377DE /* dec_clip_tables.c */, + A7F56ED3CEE91114DB7461FFC45AC369 /* dec_mips32.c */, + 9D8E7320DAED45BF95E8451F770249AA /* dec_mips_dsp_r2.c */, + 8DB07C15FAEB63072555E50564510204 /* dec_msa.c */, + CD4A5BA18FD10EFD3CBBB926AD7698F8 /* dec_neon.c */, + E7C0881A148A19554848C55E2B067AF0 /* dec_sse2.c */, + 718DFD937258EF31853914212699C5C1 /* dec_sse41.c */, + B54581542CFB5914B417CB0DFA407969 /* decode.h */, + C8A12A33D06B594ABBEF1E48E3E85A16 /* dsp.h */, + A8101FE06157EF4DF41B0814106EA0C5 /* enc.c */, + 5A64C5CCC71DCF270712384B7645219E /* enc_mips32.c */, + 7ABB24C5F472E64F7F2F8FE129DF2BFA /* enc_mips_dsp_r2.c */, + 1FA402F38C6B613FD548CD6A3EB06A8D /* enc_msa.c */, + 11A05424FD6DC91ACD07606792A56420 /* enc_neon.c */, + 5AD84792B8BA850F59C3948EA1781FFB /* enc_sse2.c */, + A7EB5333D8D740EF49452388B2A226AC /* enc_sse41.c */, + 34A2A73F67A71FD934228B600D8E9854 /* encode.h */, + 88747D90A0585A2F954ECD755B50F9BD /* endian_inl_utils.h */, + 53069B957F7CA1845BC05BF45F9102A6 /* filter_enc.c */, + A187271DBE453899DB38732023FAD7FC /* filters.c */, + 249F6060E53408E049D3E4C72D8B36C0 /* filters_mips_dsp_r2.c */, + 13C7C23927BFA046631D345702EBDBB8 /* filters_msa.c */, + D102A25F7247CF3B03CF434C7B0790BA /* filters_neon.c */, + AA40C6A1953C0DDCEA500B451F593A1B /* filters_sse2.c */, + 8703DFD1F725D7C531E5DE2D2D24D58C /* filters_utils.c */, + 72ECB468EFCB007738B802B8D4D804FB /* filters_utils.h */, + 5AD8B1BD6DA5ECE5B6FAEAC0B509E273 /* format_constants.h */, + 360304384D9ED295F63EF9BF36F487FF /* frame_dec.c */, + 57BACE8EA702B6077D884198A4BD230A /* frame_enc.c */, + 2337B72AF2638C0D2768E6E13DE7017D /* histogram_enc.c */, + AE6385F9078171EC3377BBF2BBCD6A24 /* histogram_enc.h */, + 384F32B626CC9119D4D53C79667AE863 /* huffman_encode_utils.c */, + 79F6CAED7A5CF4FFD838687D3621B4B5 /* huffman_encode_utils.h */, + 402D6004D8D8936777EB46B8FC8B1C9D /* huffman_utils.c */, + 5B928E99BB84507D5873C62F0A82FD49 /* huffman_utils.h */, + 21911C88199C17258D8B57DB3943CC5F /* idec_dec.c */, + 0EC6EFE991325E9B560CA6E7223E53FD /* io_dec.c */, + 78C55C9D9EBB57B54F71BC1DD7FBD097 /* iterator_enc.c */, + F9CC0145BE94C17477E376B71955FD47 /* lossless.c */, + 9957D9BFB06677250280FB41B8D55747 /* lossless.h */, + 27D0F7DCBCFDCC0484E7E67819262B68 /* lossless_common.h */, + 5DDF4A02FCBB726E6C9995035E4885AD /* lossless_enc.c */, + F78F110C5F8839D10F228F22B1E31F34 /* lossless_enc_mips32.c */, + 4090544ABDE3D7A5BF2604D40CFBF9DC /* lossless_enc_mips_dsp_r2.c */, + 51A89D94B04B388F9A6FBE820D1F8A67 /* lossless_enc_msa.c */, + 604F728306ABB6F1C920CE8533DBA37C /* lossless_enc_neon.c */, + 852FF6549FCED144268825947D62173F /* lossless_enc_sse2.c */, + 33FF563A86EB3F4F1BB2B2C90E4917B2 /* lossless_enc_sse41.c */, + 058AF4D7607263A25050FC3216C423CF /* lossless_mips_dsp_r2.c */, + 2AE5FF99A812F1C570B571923FC62A8C /* lossless_msa.c */, + 05DF05B7D3E36C80C7FA667E676BEC39 /* lossless_neon.c */, + 3AECD64CC3EABA570E9653BCA3F119EC /* lossless_sse2.c */, + 8954E515C9EA5FE1276F0B6305ABA5B5 /* mips_macro.h */, + 6CBCE3F9D8036069A5A66AFF36D7D970 /* msa_macro.h */, + 21FE461871DA4F3A90EE6C510A64509C /* mux_types.h */, + 13340CBEBDAF673433BF2AF143204B29 /* near_lossless_enc.c */, + 1B0BE4F6E0348631EC7C024F5D9D6294 /* neon.h */, + 876BC048C46BD2A30D7247DE9535BB0F /* picture_csp_enc.c */, + A967F62BFC8C0C3006531BF6D8076FE5 /* picture_enc.c */, + 750AD76246BAAEA02CDFD35E0BE915A1 /* picture_psnr_enc.c */, + 676E7C6AD60756738B6F290B81886C38 /* picture_rescale_enc.c */, + E9ADB6A08763ED49D59E4EBF6C1A0D39 /* picture_tools_enc.c */, + 85A78365230325A0B6589BF873CCE701 /* predictor_enc.c */, + 22E98B4DDF678EB3332D2F52A3DEEE4F /* quant.h */, + 1722118F0E2EE10900EAFA19222731DD /* quant_dec.c */, + 047B83D8277306F34BFCEC97BC58E682 /* quant_enc.c */, + D2260EFFF9AA6BC794D7AF479D1764CD /* quant_levels_dec_utils.c */, + E1C1D58B539091B426EB2BE6AF1806A0 /* quant_levels_dec_utils.h */, + FB95C4A95B0A1FA29CF82699CDF9CFBD /* quant_levels_utils.c */, + 16FA00BA18C730B33832BCE768ED9745 /* quant_levels_utils.h */, + CD734B7E29592FC94D2BBA360FA9BCCC /* random_utils.c */, + 887795AF5F1D1CEA41FD0AD780381379 /* random_utils.h */, + B20F12B1FABAAE29FA8AEDBFA3E3C310 /* rescaler.c */, + D42EB438306BF26D95C38B486BEA38F9 /* rescaler_mips32.c */, + 0DA1B8F35D94DD544B17F036604E9ED5 /* rescaler_mips_dsp_r2.c */, + EE9F37816B96DBBDAEBD78874B51350E /* rescaler_msa.c */, + E065FA866681DBC6AF41756D747C68A8 /* rescaler_neon.c */, + 1A36517820140511F2A7CA13C100543D /* rescaler_sse2.c */, + BCDC010B49295444D741D1A3E33A354E /* rescaler_utils.c */, + 0E256B2666895EC9CF08227E622C6892 /* rescaler_utils.h */, + 0FBE01D13F5CCA3ADD8B3375BDFFEC8C /* ssim.c */, + 89D48EC8B67C6F816ED17B398EE23D95 /* ssim_sse2.c */, + 0F746F870E976031F8DEA7E93FD16CC5 /* syntax_enc.c */, + 15EE2E2D41B11019A15088584522C493 /* thread_utils.c */, + 40EF232A491348E8080175DEDE147BF5 /* thread_utils.h */, + 0ACF20B0ADF9DCB6AEA57FBAA51CFFE5 /* token_enc.c */, + A0F49EB1261E67C62D442AE9CEB9691F /* tree_dec.c */, + CFE2AA7DF1860B203B5580F759BF8BE5 /* tree_enc.c */, + 4862C88581F94CFA64355B637B32BFAB /* types.h */, + BD416B2D9CA92351531929EF11CEDC2C /* upsampling.c */, + 8858FF334D5274ECA287E8F4500FE701 /* upsampling_mips_dsp_r2.c */, + 8C5B457FF2BCABC33122783D85E61854 /* upsampling_msa.c */, + D7C1D107B6E2F4C60FFF533308092BFF /* upsampling_neon.c */, + B57E17A472DDC914E66B0305C417D643 /* upsampling_sse2.c */, + F7BF4B7C110C63EB758933D3B7253787 /* upsampling_sse41.c */, + 929C00F9896BB239C78A0788F9AA230A /* utils.c */, + 9F7EFFB24345B894A3094B6D5DCB0314 /* utils.h */, + 81FA9926975AB558C726AB2EC298B020 /* vp8_dec.c */, + 151F0FA5DA9EC7C8A47F575039DE31DB /* vp8_dec.h */, + BDFFE1CC2C91451B462C153CA49ABA6B /* vp8i_dec.h */, + E6928B48932A98341D9398DDCDBD2C08 /* vp8i_enc.h */, + C312E05EF3D713D9648C61B28E1AAB3A /* vp8l_dec.c */, + BB547C3126E1E62124EF98618F077F91 /* vp8l_enc.c */, + 750EF2E681C1BF89B8DEFB50EE2FB86E /* vp8li_dec.h */, + 75A7A6098346A3A03DD28149317E41DD /* vp8li_enc.h */, + 5D6FF8114042C8C78B7145A24A2C085A /* webp_dec.c */, + ECB0B10DD768508DCF778839CB5DB229 /* webp_enc.c */, + E08AF471F00AED3924F9C46ABA65782B /* webpi_dec.h */, + A259A0FF1E27179E8242BC746013659F /* yuv.c */, + 2A860CA128F0138C1887C3A537C0EDF0 /* yuv.h */, + 5C0C098A84C5181F50C28D53427B9730 /* yuv_mips32.c */, + FD3C35BB97BAAAF9FE98796360FAB900 /* yuv_mips_dsp_r2.c */, + EFB80692826100C6A8DEA3C03404B78D /* yuv_neon.c */, + B9B133B19C128B94A13984973C723D0F /* yuv_sse2.c */, + 220BCA6B5683FB1D8C6533560D89F67F /* yuv_sse41.c */, ); - name = "Support Files"; - path = "../../../ios/Pods/Target Support Files/react-native-blur"; + name = webp; sourceTree = "<group>"; }; - B8F99F34AAD023195BE9917C547423DB /* Support Files */ = { + A6993B0ADE71C6F309BA2E66EED552F5 /* GoogleAppMeasurement */ = { isa = PBXGroup; children = ( - 831F2BE7509E960A2247F8069F11035A /* RNVectorIcons-dummy.m */, - 20D5664A86207CE161CEA323A6300292 /* RNVectorIcons-prefix.pch */, - B63229FD73062316E617CD530F989313 /* RNVectorIcons.debug.xcconfig */, - 61A4BB49B9D906AC2985AD80CF88A646 /* RNVectorIcons.release.xcconfig */, + 0422C2089F3FD212E766E374B893DD8D /* Frameworks */, + 9F72811C1D549F3FB17475A0F99D0228 /* Support Files */, ); - name = "Support Files"; - path = "../../ios/Pods/Target Support Files/RNVectorIcons"; + name = GoogleAppMeasurement; + path = GoogleAppMeasurement; sourceTree = "<group>"; }; - B9811984AFAD42C4FBA4991F41A2AEC8 /* encode */ = { + A6C386EFC1B5AE5894992E9CD8839CAE /* RCTLinkingHeaders */ = { isa = PBXGroup; children = ( + 04ABEFA8B77F5DA53B77E0213920F9B9 /* RCTLinkingManager.h */, + F807C0E0D9C1EFCFD738859E4A938A68 /* RCTLinkingPlugins.h */, ); - name = encode; + name = RCTLinkingHeaders; sourceTree = "<group>"; }; - BAD71722BBC8434CD53F97DB4A5FEFCC /* GoogleDataTransportCCTSupport */ = { + A6DA127BE7B398303C4A53B8F0095426 /* Support Files */ = { isa = PBXGroup; children = ( - E9F2CFBAAFD22F8C32D71F9E71BC5619 /* cct.nanopb.c */, - CF23CC817A95D2D6EC9B51B5E14343C7 /* cct.nanopb.h */, - AEA69030E785D72A0C0CC8E9C51F1A44 /* GDTCCTCompressionHelper.h */, - B44CE495171BBFB5DACBAF704180480D /* GDTCCTCompressionHelper.m */, - D9891CE4FDE6F86E8136EB0A7555C8DD /* GDTCCTNanopbHelpers.h */, - 524B7125CFC13FA52439FAA76CEAE3D1 /* GDTCCTNanopbHelpers.m */, - 2D86212C9EE02C3B1D98668EF11183C4 /* GDTCCTPrioritizer.h */, - 1BCDE75F8D6EB7B2E4AD002DD63895A9 /* GDTCCTPrioritizer.m */, - AEEFB0BA442774E323DD9CC6CD76ECA4 /* GDTCCTUploader.h */, - 46BA6E771CACE78454D8AA68F8424498 /* GDTCCTUploader.m */, - 58FDB347CF2505169C6622AA7F6B1624 /* GDTCOREvent+GDTCCTSupport.h */, - 045DC00385FFA069EE7A16F3DED4A670 /* GDTCOREvent+GDTCCTSupport.m */, - 379FC1A4AA39C182B24660BE1D835886 /* Support Files */, + 4EFF16B0135E733955067386D6ADBFA2 /* React-RCTNetwork-dummy.m */, + 1FFC2946FE885DBB1B5399E34EA2A84F /* React-RCTNetwork-prefix.pch */, + 84DD071B8E7F1F7C15941B897A4B8037 /* React-RCTNetwork.debug.xcconfig */, + 252571F225CA5B44A8928B4F7B89D814 /* React-RCTNetwork.release.xcconfig */, ); - name = GoogleDataTransportCCTSupport; - path = GoogleDataTransportCCTSupport; + name = "Support Files"; + path = "../../../../ios/Pods/Target Support Files/React-RCTNetwork"; sourceTree = "<group>"; }; - BB9FF11C4412FB2EBC8E2587466E69A1 /* keyboardinput */ = { - isa = PBXGroup; - children = ( - 54644E6F3A8F864DD4E2393312366EF8 /* lninterpolation */, - F93ECDB377FFD54E677EC59801E4DA9B /* rctcustomInputcontroller */, + A751671DD3B4E29CCEA15E7EE52063CD /* libevent */ = { + isa = PBXGroup; + children = ( + 081D3C4FBA5F23C00AADD0ADC4D6EA3D /* buffer.c */, + 7743DF8AB724A03994967F3730D669C6 /* bufferevent.c */, + 9B4D7F9F40525593EE77ED8F35556278 /* bufferevent-internal.h */, + FA51FDC1C5DBFB8A0B7A7E4D4B1174FC /* bufferevent_filter.c */, + 4390CE2552863E877774374C52DB464E /* bufferevent_pair.c */, + 200802D09309021A6DB81B6BABDFA193 /* bufferevent_ratelim.c */, + C681F2E67CBE2A839B3525F23341F454 /* bufferevent_sock.c */, + 405E25E6453CADACC8A7D299F35D9104 /* changelist-internal.h */, + 8F86198C42D356BDF6D5CC1F3A3A675D /* defer-internal.h */, + 1E59C6FE932AC20318A18BCC49C793DF /* epolltable-internal.h */, + 20B06F75BE7FBB7628A7F2DAB3CA40A9 /* evbuffer-internal.h */, + 3E55414F03ED03FDD211CFB1B9724B33 /* evconfig-private.h */, + 389FB89D8950DA7F5B9FFE5CED0B4CCA /* evdns.c */, + D477392FB9B2985D4B560FC9F00F60D9 /* evdns.h */, + CF26307A01B535F6B8CCD07C6870014A /* event.c */, + 18A757F80BAEFF88D06B7D9C9E1D5719 /* event.h */, + F051493D056B9AF6EB46402FD3620353 /* event-internal.h */, + B53C1C5EBE9A9AE568EEBE08184B7367 /* event_tagging.c */, + C16B3DC6A579069815AE1C282805757A /* evhttp.h */, + 3285BDA7D5B88ACFF734C44217A25493 /* evmap.c */, + D2788447DB5BB0C9AC58C348C764FAFA /* evmap-internal.h */, + C6B5B7CC7966C0E96B5E97B5344097F5 /* evrpc.c */, + 7257EC5583EBC0AE79AE858C600CFEE8 /* evrpc.h */, + 21BFDB1E52A12AE42D1CBD6DEDA0FCED /* evrpc-internal.h */, + 9A9E308C336BF53207877FDF436CC583 /* evsignal-internal.h */, + 68F85BD0F136D7105A87AC820BF1E89B /* evthread.c */, + 9F56204C5FC40660920CB35912E3356C /* evthread-internal.h */, + 24A3D9A69E87D7BD516F99C0BC1CBFC3 /* evutil.c */, + D5BA47AD0D188088BC8EC8DB31B99804 /* evutil.h */, + 75AD37BCFF8968B13A9E9FBCD55AF142 /* evutil_rand.c */, + 4E820CE5FADDA11D038AE919CAAA2D14 /* evutil_time.c */, + 20BB672B1ED38F35C99F568A333291C4 /* ht-internal.h */, + 62B007BB105C236972648B36F9F24A2A /* http.c */, + F317C306898E4EE02D4448085D2CA05E /* http-internal.h */, + 3F6C74D1D270D3A78E787ACB7CE0B83C /* iocp-internal.h */, + 90CD07F197F7D3C0F14D959F46D50FFB /* ipv6-internal.h */, + 4743B6A02FF67662103272A46445056D /* kqueue.c */, + 521499094380253553C8D99021FC1979 /* kqueue-internal.h */, + 2B97D2F1039F7850D30968EFBC5D51E1 /* listener.c */, + ACC92146647DE8B73C921197D0F36B64 /* log.c */, + 51C810468B8101B10537F681C449FE02 /* log-internal.h */, + 73ACE9620549EEC51264D536F3D9C5E8 /* minheap-internal.h */, + 7ED7CFDD19D9F5C3886F6A5635255DAE /* mm-internal.h */, + 195DDE6FBED86EB465F00C201F79ED3D /* poll.c */, + 2CB8C9120E2A790124C2B6FB1D6B2902 /* ratelim-internal.h */, + F6C827663F55B3E2CA36D075AA95F4BF /* select.c */, + F50E25A082569D3B41EF4955CEA52004 /* signal.c */, + BB52DF9D9AE2390B605532A766CECC04 /* strlcpy.c */, + 6485941607DED1C562F39E7E637068A8 /* strlcpy-internal.h */, + B557807E0C158966CF51C08105365454 /* time-internal.h */, + 6A7C489BCCB907CF21B47569110AE29B /* util-internal.h */, + 996A92E54F30DC62539EFFAC8829C682 /* Support Files */, ); - name = keyboardinput; - path = ios/reactnativeuilib/keyboardinput; + name = libevent; + path = libevent; sourceTree = "<group>"; }; - BBB3D4826FC68C411A951E9AB063DC5E /* Pod */ = { - isa = PBXGroup; - children = ( - 0838CF8772F2CC870DF0D5BF82E230A3 /* LICENSE */, - 2895825EEFCDE8C55ADB08F03392972E /* react-native-simple-crypto.podspec */, - 14E8FC1E63C33E1D4CFF79F2255BE340 /* README.md */, + A7574D5EEE18CCEF683474ED6A7EA4F9 /* Pods */ = { + isa = PBXGroup; + children = ( + 5ECB5D60B5CFD2A8AC47651923E5C69F /* boost-for-react-native */, + 56A9AD6EC85267F0B4E706CD6A93FFDE /* CocoaAsyncSocket */, + 728C643BF84A753FF5E6C265143FA73A /* DoubleConversion */, + 82406A323184750A43DC8E791662C48C /* Firebase */, + F0D3D2589460AFE9FF44696FB703A702 /* FirebaseAnalytics */, + A591F7156FC92CD6A1DE8403083A58DF /* FirebaseCore */, + 8AB66D5D915578447D5551314CF65AC3 /* FirebaseCoreDiagnostics */, + 42BEBC79EB22E520303EF690D8604BC4 /* FirebaseCrashlytics */, + 2EF2380284FBB4F1698873FDD7F4DFB6 /* FirebaseInstallations */, + EA46FE6A87C7E34A3EA7EFBEF382AFB5 /* Flipper */, + BAE05CD2AE30EF6FB39BB3693A222037 /* Flipper-DoubleConversion */, + CD9BDF96378B9C21D2300B07FB39FBE4 /* Flipper-Folly */, + 5C2D58E6DC460C87A5C80F9B889D4F92 /* Flipper-Glog */, + 876372E9D9BF8E5EE55CD9E9B58CE2B9 /* Flipper-PeerTalk */, + 2BCBAA7DE9F438304DA33731EBBC9CB3 /* Flipper-RSocket */, + 55BAAC3AA1F609EB97E5AE8C922E8D6F /* FlipperKit */, + 77C0229857F774C459A742B96CE9941E /* glog */, + A6993B0ADE71C6F309BA2E66EED552F5 /* GoogleAppMeasurement */, + 6DE2F59F5A8B4C981A1B0BE9092B9278 /* GoogleDataTransport */, + EC54B8A3433E26CBD5FEB837EC7DE77E /* GoogleUtilities */, + CA5F92CBD09185DCEAA537E9A998DA90 /* hermes-engine */, + 3857B42EC08A3489D8EE09E4878DEE1C /* JitsiMeetSDK */, + A751671DD3B4E29CCEA15E7EE52063CD /* libevent */, + 6F714B0B02838EF68E0B0B738E5E153D /* libwebp */, + 57BDD950FD4B73386D09B034EA613B61 /* MMKV */, + 7F8FD5601F75BA2B80106503884E50FF /* MMKVCore */, + 9549FFDEB3ED33E635676D4AB8C8E5F2 /* nanopb */, + 578CD1397413FD85946C40CD3A19D615 /* OpenSSL-Universal */, + DBF0D84A98EA2709A680634BD80D21F1 /* PromisesObjC */, + FB726BA65B24C2DFD8A40FDF1B3C2805 /* RCT-Folly */, + 74840D8FF4184011D5ED304B153EB149 /* SDWebImage */, + D93D8C400136425B4A2ADACC4012BFF2 /* SDWebImageWebPCoder */, + 78AFAFCBC49D1846CC4188B58772B558 /* TOCropViewController */, + 9B107B20D8EBAC4B3479031333E54B71 /* YogaKit */, ); - name = Pod; + name = Pods; sourceTree = "<group>"; }; - BBCD12B2F494819405331A6F6C59B9DC /* Pod */ = { + A80330950CF891A25CA0A53D7DA57CBB /* Pod */ = { isa = PBXGroup; children = ( - 8C02F3C11B8B542603922016BFECE1B3 /* RCTRequired.podspec */, + 7E267E937F8E2B2CDD33042D7712FD9E /* advancedIos.md */, + 5411E0A631A2025EA451DA0A94F3AD45 /* installation.md */, + A442DDEB9EB087845B51D3230BD83BB7 /* LICENSE */, + 0986FD10647DF10B6FE6E6E0CDDA0645 /* localNotifications.md */, + D5766EF7E497D250E2A30F945F948659 /* notificationsEvents.md */, + C6233B4B3770DEA268E645CA28EEBED3 /* react-native-notifications.podspec */, + D452B44256503340137A8432B0219204 /* README.md */, + EFCE646CA819204EB1B4286A22B4F130 /* subscription.md */, ); name = Pod; sourceTree = "<group>"; }; - BBEA79C48F83498C265AE187467CA896 /* EXPermissions */ = { + A947B713FC38E284C5C49533C4AC46C7 /* TextInput */ = { isa = PBXGroup; children = ( - 55D918DA09C748DE14493F55B5EF6DFB /* EXPermissions.h */, - 274876894F46385888D92B5FF70E18B5 /* EXPermissions.m */, - B36D2A2E934218455F4CFB5C60922B9A /* EXReactNativeUserNotificationCenterProxy.h */, - 952F961F3F5395DE74B427AED838B647 /* EXReactNativeUserNotificationCenterProxy.m */, - 2086F8EB8E1E136B1E3FCC567017A038 /* Pod */, - 0B691A079711499CB39AA67B7945F227 /* Support Files */, + B75D7EF0D60FCFBA75FE3515D84FF9A4 /* RCTBackedTextInputDelegate.h */, + C802EBADEC39C509D1798703A2EF936C /* RCTBackedTextInputDelegateAdapter.h */, + 2E61B9C64B2D129473FDA65B7ECD84A2 /* RCTBackedTextInputViewProtocol.h */, + 4DD0CE71E75131AF51D4C4432112F823 /* RCTBaseTextInputShadowView.h */, + B4AC3D11CD080D4B84DFC82ACE482AE0 /* RCTBaseTextInputView.h */, + 111328621E8618D4724ED150108E8ECC /* RCTBaseTextInputViewManager.h */, + 5CAA66F6DB529C14D44B812675A4468A /* RCTInputAccessoryShadowView.h */, + 180CBAA0F1BD54DBF5E3C1C1E7E37174 /* RCTInputAccessoryView.h */, + BF627F29C14D735D7BB79511FDDB0BB4 /* RCTInputAccessoryViewContent.h */, + 87628F3E74C1F185BDD7E4430CED5C1F /* RCTInputAccessoryViewManager.h */, + E16BA816953EB2A650B4516FC6B20BA6 /* RCTTextSelection.h */, + CE9D901A4C7B7E6EA06E14CDBB85F707 /* Multiline */, + 5CD1E1E4BCBB689922DDE7EF6FCBD791 /* Singleline */, ); - name = EXPermissions; - path = "../../node_modules/expo-permissions/ios"; + name = TextInput; + path = Libraries/Text/TextInput; sourceTree = "<group>"; }; - BC01994F5346B655A7EF2DBB8A594621 /* React-RCTVibration */ = { + A99CDF1D089EC5D4FDC23BE56193B6E2 /* react-native-blur */ = { isa = PBXGroup; children = ( - 1B7A5687EC3FECBF2152FC845F27CF0C /* RCTVibration.mm */, - E62A1F105A07C4476D9363A56E5BBAA8 /* RCTVibrationPlugins.mm */, - 67BC0A4C87FEC2C6F4858B1AD83570AE /* Pod */, - 1021CBFA06415F01DCAA687139697296 /* Support Files */, + BF20B3086476162690B76C054B6BC834 /* BlurEffectWithAmount.h */, + 00F5BDD07E195066EC47D3280702A669 /* BlurEffectWithAmount.m */, + 990946150492B7C60D4FD514DD761909 /* BlurView.h */, + F54C1971B91025F5A8D7CE3B712EB115 /* BlurView.m */, + C168B257C296583F2E04E4803FDEA54A /* BlurViewManager.h */, + 808F44F5EC5432D0198D9B7F7956925D /* BlurViewManager.m */, + BD48C0475A0B45B50A7F1D966947CCB0 /* VibrancyView.h */, + DD306913C1F472264E94BDDC41B20E4E /* VibrancyView.m */, + E87B9BAF7FB45DB14BF0B14F2C108FEC /* VibrancyViewManager.h */, + 4D13B14D2930B44891B6F473C593C6E9 /* VibrancyViewManager.m */, + 74768709F0B07314B8885CF4DB141024 /* Pod */, + 7B32111B372B9D206AD73E2D90C795E7 /* Support Files */, ); - name = "React-RCTVibration"; - path = "../../node_modules/react-native/Libraries/Vibration"; + name = "react-native-blur"; + path = "../../node_modules/@react-native-community/blur"; sourceTree = "<group>"; }; - BC8AD7436858385576E3D4D83284830B /* react-native-cameraroll */ = { + AAC4DBE8EC11A7ABE5299909DFB53366 /* Support Files */ = { isa = PBXGroup; children = ( - 68F5A2D99D26FA53F6F483CE78272FCB /* RNCAssetsLibraryRequestHandler.h */, - 7039C0FCA8DD90A20EE87615ECC66BC8 /* RNCAssetsLibraryRequestHandler.m */, - B8F219340A061E4C9BCAE205A836076D /* RNCCameraRollManager.h */, - 91509E398C1544A50BA682D970B0C426 /* RNCCameraRollManager.m */, - 60C1BED468D2F0A107DD88511A88F613 /* Pod */, - C9E832C01470FF3A2471A2395831F24B /* Support Files */, + 1682A9D6E802A874CA54DD6AFD6CADD4 /* rn-extensions-share-dummy.m */, + 7613634623035659C4B374024FC27945 /* rn-extensions-share-prefix.pch */, + E767EDE510B2A5DA1EFBC660848C0CF0 /* rn-extensions-share.debug.xcconfig */, + 6062B79C88F3E5F2BACD9C98C12ED378 /* rn-extensions-share.release.xcconfig */, ); - name = "react-native-cameraroll"; - path = "../../node_modules/@react-native-community/cameraroll"; + name = "Support Files"; + path = "../../ios/Pods/Target Support Files/rn-extensions-share"; sourceTree = "<group>"; }; - BCBF9DB2D24F27DAFBA9B681F1BA2629 /* Support Files */ = { + ABB056AD1EA55CDD592092135E8D9AC4 /* Support Files */ = { isa = PBXGroup; children = ( - 97EEA106B8FDE670E90842205BDC5135 /* react-native-netinfo-dummy.m */, - DC4BE8CF568ED744029CDF35B870724F /* react-native-netinfo-prefix.pch */, - 726E49399B5063C9D4B8A919C8DC332A /* react-native-netinfo.debug.xcconfig */, - AAEB5F0A5261B6D7B056ED1D75CC3CCF /* react-native-netinfo.release.xcconfig */, + 32B796F3911250B131614AD71A44B9F0 /* React-jsinspector-dummy.m */, + D1A6F404F90E13DBF429526B0388390C /* React-jsinspector-prefix.pch */, + 93BC5623D929B9D1C5B87AE509F7BB03 /* React-jsinspector.debug.xcconfig */, + 62A7B6AF718A4CD5946C7CC9764C6A21 /* React-jsinspector.release.xcconfig */, ); name = "Support Files"; - path = "../../../ios/Pods/Target Support Files/react-native-netinfo"; + path = "../../../../ios/Pods/Target Support Files/React-jsinspector"; sourceTree = "<group>"; }; - BD687DC53AA49DA999739481B90EE88C /* Support Files */ = { + AD05C529BCB19E98F091AE378DD5E387 /* Pod */ = { isa = PBXGroup; children = ( - B2239967123C25EBE50C9AE997EBA3B2 /* rn-fetch-blob-dummy.m */, - D6BB074FFB236F462289D831184046B2 /* rn-fetch-blob-prefix.pch */, - A6F768252ED54153A55922B20E00C66D /* rn-fetch-blob.debug.xcconfig */, - 0CA6A8600BC7313FDE798B2FEB55E2D6 /* rn-fetch-blob.release.xcconfig */, + 5642F633F9A341C9F1E8E955B9163C7D /* LICENSE.md */, + A3E18277756197A0A553F84F29354558 /* react-native-document-picker.podspec */, + 95A70031801EF4BD36980EAFF67B0FDE /* README.md */, ); - name = "Support Files"; - path = "../../ios/Pods/Target Support Files/rn-fetch-blob"; + name = Pod; sourceTree = "<group>"; }; - BDA097E7859EC488E598280848CC0060 /* Support Files */ = { + AE1D061A40F4BD66225E708662A62678 /* Frameworks */ = { isa = PBXGroup; children = ( - E9A7FD5F85D4E9397A1DFCA59AA21099 /* RNGestureHandler-dummy.m */, - 4068B8AF1FED71038AE3FE70D82055F0 /* RNGestureHandler-prefix.pch */, - C8D74669E35EE408A4DE3CEE1FEF52A8 /* RNGestureHandler.debug.xcconfig */, - A013671F5CF9AF26EE93AA8DB5192186 /* RNGestureHandler.release.xcconfig */, + 81FB8A8D274585B4CE3BB50F126521F5 /* JitsiMeet.framework */, + CED34BF6B5EDBA98C66224C09F1C86DE /* WebRTC.framework */, ); - name = "Support Files"; - path = "../../ios/Pods/Target Support Files/RNGestureHandler"; + name = Frameworks; sourceTree = "<group>"; }; - BE78E2A6C9710F8E92C2B7B9145E5D12 /* React-jsinspector */ = { + AE3D1A1B13B8CD94EFEB6356883FDD7A /* Support Files */ = { isa = PBXGroup; children = ( - 3C0E6135E6AF4241D0A7A7B3239C76BD /* InspectorInterfaces.cpp */, - F4158AE7E59BBE121CFE1EC34EF5D4B8 /* InspectorInterfaces.h */, - A9546D3813381F9B6AFCFF80EEED1090 /* Pod */, - C466B75DDB430321CFBB1D3915B47FF4 /* Support Files */, + 4ACD615B00FA48CD196D1DE7D26E42B7 /* UMPermissionsInterface-dummy.m */, + 1E8062F6E493BF76C92222DB9CAB838E /* UMPermissionsInterface-prefix.pch */, + 26A63B442D5B01F8BEDEC991E83915BA /* UMPermissionsInterface.debug.xcconfig */, + 48B51B86DAF54784EBC1CBCF0CB636FF /* UMPermissionsInterface.release.xcconfig */, ); - name = "React-jsinspector"; - path = "../../node_modules/react-native/ReactCommon/jsinspector"; + name = "Support Files"; + path = "../../../ios/Pods/Target Support Files/UMPermissionsInterface"; sourceTree = "<group>"; }; - BEBBCA05E2B21F81BA65B32551D96384 /* Support Files */ = { + AE5CFB3A14CE1A67B82CBCF71FF520A7 /* Support Files */ = { isa = PBXGroup; children = ( - 52056FC19AE5CE79FA448C8CD56E2440 /* RNDeviceInfo-dummy.m */, - 59C26B81DF6371141DB47D218E5792DA /* RNDeviceInfo-prefix.pch */, - 7752D2A9B047C5C829174949116FD9D8 /* RNDeviceInfo.debug.xcconfig */, - 6DCC0C7F66B675D989796CA6C01D6D6D /* RNDeviceInfo.release.xcconfig */, + 509F97C80AD0476E4185EEB1FC37518D /* UMSensorsInterface.debug.xcconfig */, + 12CB1EDCC92C4ED61D5BECDAE443FA24 /* UMSensorsInterface.release.xcconfig */, ); name = "Support Files"; - path = "../../ios/Pods/Target Support Files/RNDeviceInfo"; + path = "../../../ios/Pods/Target Support Files/UMSensorsInterface"; sourceTree = "<group>"; }; - BECDB209CC9E861AD21DCC762D862C4D /* Pod */ = { + AF03A5AFD4053246726471CAC37AC28D /* Pod */ = { isa = PBXGroup; children = ( - 58F641A2244B06835BA45E03ED2D38D6 /* EXAV.podspec */, + 0482B0FB5FD58CFB6D39382A63681A3C /* LICENSE */, + 0A7C9BDDFE9D7EF130474212C76F099A /* README.md */, + 348F5FCCFC8A30D1C7893F6812C9B74C /* RNImageCropPicker.podspec */, ); name = Pod; sourceTree = "<group>"; }; - BF0FA41607BD73699FF511D72C0D6DB7 /* UMTaskManagerInterface */ = { + AF28A50A66A77AF50E2C75B2A5AC8382 /* EXVideoThumbnails */ = { isa = PBXGroup; children = ( - 759323202EFD7C39295D2C7CCDC547E7 /* UMTaskConsumerInterface.h */, - 57F145D7F0B28F41789BDD4674BC470E /* UMTaskInterface.h */, - A94FCD9AAF25D7B2B66A4B98CD68586B /* UMTaskLaunchReason.h */, - 2225BB6BB6B2D4F5898831945D3BB4BC /* UMTaskManagerInterface.h */, - FB39E988EB8A89967A85BB29D55C89AE /* UMTaskServiceInterface.h */, - E3BAA685845B495FA3B69CF45A0E1B10 /* Pod */, - 5B611A6E0141478AD75DC5BE14FDE545 /* Support Files */, + 2AD517D6606D53C0D497F79527303D0F /* EXVideoThumbnailsModule.h */, + BBC61E5C4CEAFFFC0045933275BBCF5C /* EXVideoThumbnailsModule.m */, + 009725AD616C88107E9E85EA3832B390 /* Pod */, + 9F2762C723A94A56005A3377843DB8FA /* Support Files */, ); - name = UMTaskManagerInterface; - path = "../../node_modules/unimodules-task-manager-interface/ios"; + name = EXVideoThumbnails; + path = "../../node_modules/expo-video-thumbnails/ios"; sourceTree = "<group>"; }; - BF3FDAC75B9F0DE02856F730C991254F /* Pod */ = { + AF4B248A872327E091159AD21AE167D7 /* Pod */ = { isa = PBXGroup; children = ( - 80F694FBCE9A3D4733A7A20AEBD4C67A /* UMFileSystemInterface.podspec */, + 7731ACA515B58BD68EB4A0CB00C95C20 /* UMReactNativeAdapter.podspec */, ); name = Pod; sourceTree = "<group>"; }; - BFBEE6D9669A86D9E7E49186F83EC7C1 /* Pod */ = { + B11047AD02CA7B1753E38376B78A0A37 /* Support Files */ = { isa = PBXGroup; children = ( - A7EEF6408FDB5FF81ACAD6D54CBF7D1D /* React-runtimeexecutor.podspec */, + AFB3DA1084FEC7BFD1B3B27BE5F973F5 /* FirebaseCore-dummy.m */, + 589AF35B1D7F29EC150D0F3C1B2AB572 /* FirebaseCore.debug.xcconfig */, + 2DB078B4CD103C372972A011E7CC79C4 /* FirebaseCore.release.xcconfig */, ); - name = Pod; + name = "Support Files"; + path = "../Target Support Files/FirebaseCore"; sourceTree = "<group>"; }; - BFE7B99AFC0F2FC332FF51BB451AB5F6 /* Support Files */ = { + B19AFD4A83DFF79162CAB744C11C3BEB /* EXWebBrowser */ = { isa = PBXGroup; children = ( - D39EE2ECB1DCDBE29E86E36789934FD5 /* EXHaptics-dummy.m */, - ED57072DCCF9248D12FAA58064DA33AC /* EXHaptics-prefix.pch */, - 5358A11D087A13F0F9BAADB9C6044558 /* EXHaptics.debug.xcconfig */, - 27119F2A6238A2FC86DAFDE84A691EB4 /* EXHaptics.release.xcconfig */, - ); - name = "Support Files"; - path = "../../../ios/Pods/Target Support Files/EXHaptics"; - sourceTree = "<group>"; - }; - C0FC3DA25325B253DEA3F31467C0C1AF /* Yoga */ = { - isa = PBXGroup; - children = ( - 7ED7E10E5234C551A746021EEC0D7E11 /* BitUtils.h */, - 43FE0A52F652BCA6541CD75F6855A028 /* CompactValue.h */, - 20A5C47A270AF6321ACE7FF6B82E0F0F /* log.cpp */, - 3FA35B251233E0CD2A62A22DE7413B9E /* log.h */, - 786DC84CE97474698A7E3B5134CC6EB1 /* Utils.cpp */, - D48E7AE778250FC2EF3E2A77AB216EB9 /* Utils.h */, - 60048274722CA6F80CC4A99152E981E4 /* YGConfig.cpp */, - E3BEF7877F768148E3E79A624A08A9FF /* YGConfig.h */, - 8431F6CE5B1B0F548F4F3EB21BC2AE40 /* YGEnums.cpp */, - BD92A024E058A1F1ACA50D8C9EA59838 /* YGEnums.h */, - 6CD2507059F1C896B0B80005FEC8F1CC /* YGFloatOptional.h */, - 0D2CC58B4BCB1C4FF563AF13F3F12026 /* YGLayout.cpp */, - B575DF54154C3EFCDB5A1FF18BDE48A3 /* YGLayout.h */, - 7580B58FA5ADD47A6A8B642F8F19CB50 /* YGMacros.h */, - 35092844B0028488DE18CCC8D155D32B /* YGNode.cpp */, - 2EFE75415A489ABB03321806F54AB213 /* YGNode.h */, - 603131F97BAA207E67383A8A998042A4 /* YGNodePrint.cpp */, - AFA925ABF9B55E902B2FC9DB241E3192 /* YGNodePrint.h */, - A5A8A6223D3018087503ED099D20C803 /* YGStyle.cpp */, - E36DAA2644DEBB87D9DAF5D9B3E3637D /* YGStyle.h */, - 1886BD93D7B131F8DBADECC1AA9B654F /* YGValue.cpp */, - 040D2C66F76925DFE2827DAF8892434C /* YGValue.h */, - 0D5DAD0301106C54829D77F89B127853 /* Yoga.cpp */, - B21A11DD91D2D39B41DAC66618429CFE /* Yoga.h */, - 04925E4C65CD37F4F5BCEA972570D447 /* Yoga-internal.h */, - A7FBF5AF7B30EDB3E42DB0782927BFF6 /* event */, - E082050E5CBF98E49AF14FD88750E6FA /* internal */, - F5C468E2C8EB29A22C73F934983E7DCB /* Pod */, - 291031A305B371D4AEE4F1DA066ACD4E /* Support Files */, + 1C538417BF7BCF241C6B33F4670B4218 /* EXWebBrowser.h */, + 789946CE41276568CA35C0197BB15913 /* EXWebBrowser.m */, + CFD961710F2BF9DE9B0628B02E64061B /* Pod */, + 3873EB627B278784E56547B3659A3C2E /* Support Files */, ); - name = Yoga; - path = "../../node_modules/react-native/ReactCommon/yoga"; + name = EXWebBrowser; + path = "../../node_modules/expo-web-browser/ios"; sourceTree = "<group>"; }; - C2550707A5AC3D8A3EF4CB8AC0F7536A /* UMSensorsInterface */ = { + B1F2D29FA93B8B3CDD77C3252D094099 /* Pod */ = { isa = PBXGroup; children = ( - DEA2D806E5C15B459D214AD5626635F9 /* UMAccelerometerInterface.h */, - 0DE687D9E5000F208A06330A2DE48445 /* UMBarometerInterface.h */, - 85358689783C24A98EC1C4B280D8640B /* UMDeviceMotionInterface.h */, - BF8EAF9B12CBD7900A74B8D532A0C961 /* UMGyroscopeInterface.h */, - BBDEB7A5A1D274B0349AF930BC82FA55 /* UMMagnetometerInterface.h */, - 9FD8D72D506FB7BB9779A6A4738FD3A3 /* UMMagnetometerUncalibratedInterface.h */, - F71F4191E78D842BDE7853052CE116BA /* Pod */, - 69D3D961AC07C97B931878E118178A61 /* Support Files */, + 1A622CD9ECA22D11BB3CE6F3C5263BB0 /* React-RCTBlob.podspec */, ); - name = UMSensorsInterface; - path = "../../node_modules/unimodules-sensors-interface/ios"; + name = Pod; sourceTree = "<group>"; }; - C2A30B7BC14C869EC1C303D971779223 /* RCTLinkingHeaders */ = { + B22C99DDD0399B2D3F54555E53EBF77E /* Pod */ = { isa = PBXGroup; children = ( - 603DE106673E866A530CB5FBA50E0F94 /* RCTLinkingManager.h */, - 3F078F39E28D25346F07A1C58BABEFCD /* RCTLinkingPlugins.h */, + 005C08BF36C49F7F3EAC5D56CB6AEA66 /* UMCore.podspec */, ); - name = RCTLinkingHeaders; + name = Pod; sourceTree = "<group>"; }; - C352AEE6829F5084C03F1E6270581225 /* Support Files */ = { + B23F6A62D1D3642A9DB8D18E982D9596 /* Singleline */ = { isa = PBXGroup; children = ( - 17D005E8CCCDFF81E0DEBB9090DEFCDC /* FirebaseAnalytics.debug.xcconfig */, - E5164A0041888D02D9F6B0521C7C8880 /* FirebaseAnalytics.release.xcconfig */, + 1A9638AFE653B4FEE8A22B4484C701B3 /* RCTSinglelineTextInputView.m */, + F9A6B702F8965CEB6A5B1066209C51EB /* RCTSinglelineTextInputViewManager.m */, + 2568A4B2915E88D59E2AABFC20C5F479 /* RCTUITextField.m */, ); - name = "Support Files"; - path = "../Target Support Files/FirebaseAnalytics"; + name = Singleline; + path = Singleline; sourceTree = "<group>"; }; - C4399765432138CF731F49C11D818658 /* Support Files */ = { + B25D5D941AF9A43DF360085301502344 /* FBLazyVector */ = { isa = PBXGroup; children = ( - 17845CAD6F547C1EDF098F0E862265FE /* react-native-slider-dummy.m */, - F7A188639F1627BFE03D870F23213D40 /* react-native-slider-prefix.pch */, - B622CF7B7190C737864DAF48DBAD79FD /* react-native-slider.debug.xcconfig */, - 0E9D744742CD8F87F0ACEF7E6DC60ADD /* react-native-slider.release.xcconfig */, + 62A2E36856E184EB020E77462509F0E8 /* FBLazyIterator.h */, + 4185F2DE255EFC1DE8CECAB6BE208D5A /* FBLazyVector.h */, + 68C1A7AB01D09B3F5FA918E01A578F56 /* Pod */, + 1BC6885C8F47EA5A1A99DA683F6A61DB /* Support Files */, ); - name = "Support Files"; - path = "../../../ios/Pods/Target Support Files/react-native-slider"; + name = FBLazyVector; + path = "../../node_modules/react-native/Libraries/FBLazyVector"; sourceTree = "<group>"; }; - C466B75DDB430321CFBB1D3915B47FF4 /* Support Files */ = { + B27C895CADD10533C9288543D6F0608F /* EXLocalAuthentication */ = { isa = PBXGroup; children = ( - 1849D9626394B1D952A744349A6634B7 /* React-jsinspector-dummy.m */, - 394476E4469983424DC3D7A08FF9FD34 /* React-jsinspector-prefix.pch */, - 10357CA40184FA064FBB734CE3ECABC8 /* React-jsinspector.debug.xcconfig */, - B9ADA132BEE432456C1FEB59C840BF3D /* React-jsinspector.release.xcconfig */, + 6A9ACC81048E74B2488B111E9310B84A /* EXLocalAuthentication.h */, + 5CE4FA9E6DCE1303903955F78A5FF1DB /* EXLocalAuthentication.m */, + 8C50F6A7E26221D253AD0528237287CC /* Pod */, + B532B6CF3F0BF3BB832CC7E4C36098A5 /* Support Files */, ); - name = "Support Files"; - path = "../../../../ios/Pods/Target Support Files/React-jsinspector"; + name = EXLocalAuthentication; + path = "../../node_modules/expo-local-authentication/ios"; sourceTree = "<group>"; }; - C50B2DC7B1D03CFFCDFC983C705BB30E /* platform */ = { + B2E0B5C358D426308490742D6084620B /* react-native-appearance */ = { isa = PBXGroup; children = ( - F44E47364DE167325BBAC8AFB37A73EF /* ios */, + 88A2A098F8A88DAB651515192E8A6D7B /* RNCAppearance.h */, + 0A5068E62DFB91FBFDBF5178997F072B /* RNCAppearance.m */, + 433BA9B523064975EF515515F6C1C261 /* RNCAppearanceProvider.h */, + 02010732C384E4EC93AEDA144951A11D /* RNCAppearanceProvider.m */, + B8FB8DCC4FA54C16CC43FA4D5B055A47 /* RNCAppearanceProviderManager.h */, + 60B3D36D170B080A7C6955548B2B01F6 /* RNCAppearanceProviderManager.m */, + 739E2A59F32482CEA406F47E21B2185B /* Pod */, + B8A6C7AD5477AC6F7DCEC18456F1F07C /* Support Files */, ); - name = platform; - path = react/nativemodule/core/platform; + name = "react-native-appearance"; + path = "../../node_modules/react-native-appearance"; sourceTree = "<group>"; }; - C556E6A80675BF73DEC959223199473A /* react-native-jitsi-meet */ = { - isa = PBXGroup; - children = ( - 46F8E31A46FEC6CF9983BA7069B34C96 /* RNJitsiMeetView.h */, - 30CB0B977F5A73E7AFE59076D674E06D /* RNJitsiMeetView.m */, - 98E57AADE4A8D369C30FBB97722F8FB5 /* RNJitsiMeetViewManager.h */, - 753AAAB7744B065CE8CE50EB04D985B3 /* RNJitsiMeetViewManager.m */, - DBFF449F8FD0105F372819BBCAC1D3F7 /* Pod */, - 5D2D5CA4A6F95D76729EA7568BB10504 /* Support Files */, + B34A5B85FA2915A080E8D4EA8D0BF0F5 /* Modules */ = { + isa = PBXGroup; + children = ( + 262812C215454383CBEB720087E45AAE /* RCTEventEmitter.h */, + 83FBD23DAF9A3F2F9BDE451EF2D8950A /* RCTEventEmitter.m */, + 41ABBA113585D0FB5DF0F328F057B6AB /* RCTI18nUtil.h */, + 47D67583AB2B5BD4A0CAFCB9231D1F7C /* RCTI18nUtil.m */, + EDCBCE60597A66C80CD7DB9A15E9A891 /* RCTLayoutAnimation.h */, + ADAC2FF1F07052C8B111B7F23D1ACED3 /* RCTLayoutAnimation.m */, + 442B92926142419FF37F3A3BE515EE45 /* RCTLayoutAnimationGroup.h */, + 542C7BCF65B0205E13A48816C27B884A /* RCTLayoutAnimationGroup.m */, + C77975A40EB793754C529E4F1E2C940F /* RCTRedBoxExtraDataViewController.h */, + 6EE0C5A09F4412AFA85384470C4E09CE /* RCTRedBoxExtraDataViewController.m */, + EED694C9A1F5F474AD411753E970C387 /* RCTSurfacePresenterStub.h */, + 750C84A0046DC59693EE20C346109B36 /* RCTSurfacePresenterStub.m */, + 6E28455D8624804F2480BA8FC54717A4 /* RCTUIManager.h */, + 397D7F76A2BFD0A62919AD6CC7C2AFFF /* RCTUIManager.m */, + 56A7CE68D94ED992183FA601211EB7C0 /* RCTUIManagerObserverCoordinator.h */, + 486A73BDF336231C8B943E010DC27CFD /* RCTUIManagerObserverCoordinator.mm */, + AE5A3BA5D8DE9CB34BA3DF05889E17BF /* RCTUIManagerUtils.h */, + B9C229BBB6B5FFF41B76C1FD24EB7592 /* RCTUIManagerUtils.m */, ); - name = "react-native-jitsi-meet"; - path = "../../node_modules/react-native-jitsi-meet"; + name = Modules; + path = React/Modules; sourceTree = "<group>"; }; - C5F15D6DBC185E120658917AE5C9B8E3 /* UMConstantsInterface */ = { + B37EF7700E08E678070BBD8749327101 /* CxxUtils */ = { isa = PBXGroup; children = ( - 4B5D6AC6CE950516BB23A83FB1478C92 /* UMConstantsInterface.h */, - 719E02D3C4FC8F494174E6D5C0CAA682 /* Pod */, - D81D332C912164717FB625DE697A156D /* Support Files */, + C40A95AEC97C91A777EAAA0CA077D939 /* RCTFollyConvert.h */, + 31C40CB5C42515A2F3617A4D5DEFF3A9 /* RCTFollyConvert.mm */, ); - name = UMConstantsInterface; - path = "../../node_modules/unimodules-constants-interface/ios"; + name = CxxUtils; + path = React/CxxUtils; sourceTree = "<group>"; }; - C6C82D686F18C4ACF88623AB9D347067 /* CppBridge */ = { + B430DE7E3E7B9ECA4AB4D99EC5839499 /* FKPortForwarding */ = { isa = PBXGroup; children = ( + ED72FD77FD32A7E8A196A2240EC9F8EF /* FKPortForwardingCommon.h */, + 2B5F69EB48C119034B23C4B47019B008 /* FKPortForwardingServer.h */, + B6633DF5F0B0F4B5CDC537963C3A7DDE /* FKPortForwardingServer.m */, ); - name = CppBridge; + name = FKPortForwarding; sourceTree = "<group>"; }; - C8A8E855EDDC87385228AF9B4F73D7ED /* Flipper */ = { - isa = PBXGroup; - children = ( - C9609E96411BE8E2F628880FC339B53F /* CallstackHelper.h */, - F1A969915DD37E525AB5C521D62D6480 /* CertificateUtils.cpp */, - A6DEDACF54C93C17C745DAFA77E4CCB4 /* CertificateUtils.h */, - F581C9A5F02DED7814305888D182DF40 /* ConnectionContextStore.cpp */, - FD35FC9A29C7C86E783D3C8A3A0DEF3A /* ConnectionContextStore.h */, - AA3C8BBE1A936D7951F79A44B7FD02E2 /* FireAndForgetBasedFlipperResponder.h */, - 4384560BA5989E2B948CB1DB46E0181E /* FlipperCertificateExchangeMedium.h */, - D18D8EE86A6247AEC17789C49CB93D6D /* FlipperCertificateProvider.h */, - 55E5F67EF246FFC6CAC577A6181668C0 /* FlipperClient.cpp */, - FCB7E3B5334ABF28474FCC48E3B1C68D /* FlipperClient.h */, - 7283439E2F42BB1F01D41FDBA247CAFE /* FlipperConnection.h */, - 4FF999F8D3575678E2BA9D8CCC594E46 /* FlipperConnectionImpl.h */, - A7D5D462C841F0799D424EE3599BFBD4 /* FlipperConnectionManager.h */, - 3BFA84E1B478F0D4404E7812D2B6B035 /* FlipperConnectionManagerImpl.cpp */, - A278CD47BA9CBE42767AD48876A27A33 /* FlipperConnectionManagerImpl.h */, - 7D3A80EE210FFA27031327E4B6770689 /* FlipperInitConfig.h */, - 521AD8BDBE37B570B725AD6291946FEC /* FlipperPlugin.h */, - 81D5CF11457126BB7F19358332C49508 /* FlipperResponder.h */, - 45AFBA3BB759B887B744ADC25D4DF6D7 /* FlipperResponderImpl.h */, - 717F866F052C70065D76AAF36F80803C /* FlipperRSocketResponder.cpp */, - D1F9BC25A5F9A6EBE79C5FC99E1ACCCB /* FlipperRSocketResponder.h */, - 97B8EA718F1DDCEEF99ACC9109F2026F /* FlipperState.cpp */, - E70FB33CFF014F38A4E95193A259BC24 /* FlipperState.h */, - 0700BA622A0AFEE9C4E6E9C7422B940A /* FlipperStateUpdateListener.h */, - F043E4504C069306DD6A6870ABB75F40 /* FlipperStep.cpp */, - 819501D9827962ADC0B59DDBC46D6313 /* FlipperStep.h */, - BC86EC8B18C511C23A361D514C240D1B /* Log.cpp */, - 3603C8C324489767CDF0E94A5AEFAAC5 /* Log.h */, - 078C4ABBF9B38F7D5C6DB692554B1C8D /* Support Files */, + B45CAD9ADC2A37C133AD139914B7F2E4 /* keyboardtrackingview */ = { + isa = PBXGroup; + children = ( + 204F067D5D1AA1B323B1F61E9E15474E /* KeyboardTrackingViewTempManager.h */, + 209A06FCAB1163AC2F80059DF78157D3 /* KeyboardTrackingViewTempManager.m */, + 6A99A29EA0ACDDD52DF9E15CA881F13D /* ObservingInputAccessoryViewTemp.h */, + 0F044BBE2DF64B0AA83933818D2357D8 /* ObservingInputAccessoryViewTemp.m */, + DEE0C0B60E4F95B51F04576CB693C483 /* UIResponder+FirstResponderTemp.h */, + A58E11BC4303D841C176EC359F3ECFB2 /* UIResponder+FirstResponderTemp.m */, ); - name = Flipper; - path = Flipper; + name = keyboardtrackingview; + path = ios/reactnativeuilib/keyboardtrackingview; sourceTree = "<group>"; }; - C92D2063B50D3797E0D045BB8BEDC2AB /* Pod */ = { + B510109543F1A04DC951A8DA61BE734E /* include */ = { isa = PBXGroup; children = ( - 14432B86EFD027ED726F147359E42916 /* React-callinvoker.podspec */, + 3AFDF5A57A74C1A2963D0DCA690DA2C5 /* Bugsnag */, ); - name = Pod; + name = include; + path = include; sourceTree = "<group>"; }; - C94D33BADEAB73164A522A3CFAB24B0F /* Support Files */ = { + B532B6CF3F0BF3BB832CC7E4C36098A5 /* Support Files */ = { isa = PBXGroup; children = ( - 484E5B8BC9CBD9EC6129C95BC0566EA4 /* FirebaseCoreDiagnostics-dummy.m */, - 845095425A65B403ED01C9E0327CEB2B /* FirebaseCoreDiagnostics.debug.xcconfig */, - 377BE4B8159107B85112FCCFD2D2BB97 /* FirebaseCoreDiagnostics.release.xcconfig */, + 32E3DB8EF90E3DA497528CA8E34D164C /* EXLocalAuthentication-dummy.m */, + 15D3CD135B128C931DEA5C0B398450FB /* EXLocalAuthentication-prefix.pch */, + 1ED49CEEF643935D9F795E5F4C4B250B /* EXLocalAuthentication.debug.xcconfig */, + 0581B46ACFAAE812B3732D7DDACB87B3 /* EXLocalAuthentication.release.xcconfig */, ); name = "Support Files"; - path = "../Target Support Files/FirebaseCoreDiagnostics"; + path = "../../../ios/Pods/Target Support Files/EXLocalAuthentication"; sourceTree = "<group>"; }; - C9E832C01470FF3A2471A2395831F24B /* Support Files */ = { + B5C3904AB2E54D217D4FA50B11F807F3 /* UMTaskManagerInterface */ = { isa = PBXGroup; children = ( - E5E64F267161CCD740E6E399862D33D0 /* react-native-cameraroll-dummy.m */, - 08E90EAC02328C836CD7F4397639F4A1 /* react-native-cameraroll-prefix.pch */, - E9F8ED4171EE1BF4C32DAD3F2AC794BF /* react-native-cameraroll.debug.xcconfig */, - 67FC132B2BFBA61E75482AE535AD2BCB /* react-native-cameraroll.release.xcconfig */, + 61D4256891239F936D6FE069E83BF32D /* UMTaskConsumerInterface.h */, + 11497BF19E6E11485671C2640750994B /* UMTaskInterface.h */, + 284ED1505946575211F5C28BBC014E05 /* UMTaskLaunchReason.h */, + 2988B14BE80FD74289F069EF72C3D9C4 /* UMTaskManagerInterface.h */, + AE857425BA88C970565521926420F82F /* UMTaskServiceInterface.h */, + 4D0B44150A74ED68C5631F4F68094115 /* Pod */, + 3F83E118F6A615F0BA65E9653698B1FA /* Support Files */, ); - name = "Support Files"; - path = "../../../ios/Pods/Target Support Files/react-native-cameraroll"; + name = UMTaskManagerInterface; + path = "../../node_modules/unimodules-task-manager-interface/ios"; sourceTree = "<group>"; }; - CB3CDC510C88B70F6A1C208DD6B15F79 /* Pod */ = { + B6B68E47A39DD1B48632891ECF353A77 /* Pod */ = { isa = PBXGroup; children = ( - 42734B3C6C2639A8757DAB59B6F974E4 /* LICENSE */, - 0B6D05B848280DC9B65AF5FC24F1F294 /* react-native-restart.podspec */, - 721EFFEAF7FEF462064ADAE255C90DED /* README.md */, + 829449E85EF56D80B7B136B4F98749A3 /* EXPermissions.podspec */, ); name = Pod; sourceTree = "<group>"; }; - CB9661D71BCD7348E4BC7B92F1AD56D0 /* Pod */ = { + B70E10339BD47EE361BBA497E060FB1D /* Frameworks */ = { isa = PBXGroup; children = ( - 7B191C0582A1D295552BE54AB1442E8E /* EXConstants.podspec */, + 1DDB6F082A92CAA259120E89AA67F742 /* hermes.framework */, ); - name = Pod; - sourceTree = "<group>"; - }; - CBFA2D6BA426C9FD78F78F78295C0C63 /* Pod */ = { - isa = PBXGroup; - children = ( - 8D9321406BF7CDEAA9D3F9279CB455A8 /* FBLazyVector.podspec */, - ); - name = Pod; - sourceTree = "<group>"; - }; - CDCC2CFFA9150AFCBED6BFF8DF9001C3 /* UMModuleRegistry */ = { - isa = PBXGroup; - children = ( - 6810A6ED3034CA85E3808DA46E080054 /* UMModuleRegistry.h */, - 32D34E1C373307BDCED0A4343DFDA2C3 /* UMModuleRegistry.m */, - ED75D8954D22516560576D647EF26B78 /* UMModuleRegistryDelegate.h */, - ); - name = UMModuleRegistry; - path = UMCore/UMModuleRegistry; + name = Frameworks; sourceTree = "<group>"; }; - CDEA12D8150F0166590FD46EEE7CA305 /* Pod */ = { - isa = PBXGroup; - children = ( - 75D2A5E2501562326163271A71C6F178 /* React-Core.podspec */, + B72E276C16D1391BD2C8FFBF971FE23C /* Recording */ = { + isa = PBXGroup; + children = ( + AEBE777944987407ACB4E2B0C290EF36 /* BSG_Jailbreak.h */, + 529445967A2C7AFF7DDFCF1540C4B318 /* BSG_KSCrash.h */, + 77E1D9BE2F3DC659E9C74E3BEFACFCE1 /* BSG_KSCrash.m */, + 30AC685DA58BD7F75FE616B7EC283AF0 /* BSG_KSCrashAdvanced.h */, + 93076B98AE8AA4CF1A37A8657993ED91 /* BSG_KSCrashC.c */, + 99E7DF70F984A46560879C1A2A386C3F /* BSG_KSCrashC.h */, + D1695FF45F7EFD0F6B23C0407157CC45 /* BSG_KSCrashContext.h */, + 9BAD85DAE3C54E43EED133E9F0A73741 /* BSG_KSCrashDoctor.h */, + 2057A12148204AD662E2D930FF0F0F1B /* BSG_KSCrashDoctor.m */, + 0F63E6F72664253D8476D965B0EB350B /* BSG_KSCrashIdentifier.h */, + A32E1D826D45C6D87E282C7C2E0CC917 /* BSG_KSCrashIdentifier.m */, + 2FAD11FB3639D7AB96629AEEAFBF8316 /* BSG_KSCrashReport.c */, + F6A1DCC469A89C1E8B42121ADE8559B8 /* BSG_KSCrashReport.h */, + 209E0E8E3219BE52389EA82293090B01 /* BSG_KSCrashReportFields.h */, + E95CE71CDCC61CAC3D23FA368B7E1B0E /* BSG_KSCrashReportVersion.h */, + 28710F3E5C555F46C3D60494356E1811 /* BSG_KSCrashState.h */, + 96C6478B16331AA6109135B6553E2233 /* BSG_KSCrashState.m */, + 89D2CC2724EC9117594DEF1E1B16FCDF /* BSG_KSCrashType.c */, + 2762D991F37475322F6ADECC124F9BCD /* BSG_KSCrashType.h */, + 6B42EC716CE6BAE68D1852206CF3E6C8 /* BSG_KSSystemInfo.h */, + 11C8A17683EAEB03990D0596378D5B6F /* BSG_KSSystemInfo.m */, + E6541407FBC45AD01D6C67E86D304935 /* BSG_KSSystemInfoC.h */, + 23942DE058D01DFF756D4A335B258302 /* Sentry */, + 81C66A3558845F2A325A30095399F50E /* Tools */, ); - name = Pod; + name = Recording; + path = Recording; sourceTree = "<group>"; }; - CE15F0ED35AE8D19B52658CA1C0E0D05 /* Pod */ = { + B74A4B63D00F9598D73BAC60B20669E2 /* React-jsiexecutor */ = { isa = PBXGroup; children = ( - 7E005D68E62F981E2203A551D6EA372D /* React-RCTImage.podspec */, + 72A173581A4B518AA08913B6A8F53796 /* JSIExecutor.cpp */, + C62F97A54A3192C080A56A0D23E51642 /* JSIExecutor.h */, + 073BE3EF857A2E9BD04B152B8F9524CD /* JSINativeModules.cpp */, + C6E90EEE25B5A1F0B0281138B3892EBE /* JSINativeModules.h */, + 4C7ED8F2EE9FFB912B5A60956D2BECB5 /* Pod */, + 2C9F72500B54DAFB754B1471D76C6198 /* Support Files */, ); - name = Pod; + name = "React-jsiexecutor"; + path = "../../node_modules/react-native/ReactCommon/jsiexecutor"; sourceTree = "<group>"; }; - CE5E6925FFFB8A005BE06E012D5ECF63 /* Pod */ = { + B87C495E9ECF384D6C09929B1C42FCD7 /* RNFastImage */ = { isa = PBXGroup; children = ( - 5273FC4E408E37E58B7C8FD18FE41F20 /* LICENSE */, - AC285F19833FF6C501FF2EFFBEE5F876 /* README.md */, - 750A0AA43A23732D2135BFC9A2BC39A5 /* RNFBApp.podspec */, - ); - name = Pod; - sourceTree = "<group>"; - }; - CEED4DC9EE9C33EE5D7640838EBF8A41 /* Tools */ = { - isa = PBXGroup; - children = ( - 72A91CE4609B0AF92D06577F1DD39A0F /* BSG_KSArchSpecific.h */, - 66E95A42F0A22197DC0CC828955BCA58 /* BSG_KSBacktrace.c */, - ABD11CDC541F63D4559316516DA9F8BE /* BSG_KSBacktrace.h */, - 7BA63D71EF3A6A046A72FA153D8D8971 /* BSG_KSBacktrace_Private.h */, - F576BCC4172904927F23B98D1F64E741 /* BSG_KSDynamicLinker.c */, - 0B87A5BBA8FA573F708551CD582ECB53 /* BSG_KSDynamicLinker.h */, - FA91F551FEA0B48AF49F7EDFF5C38E56 /* BSG_KSFileUtils.c */, - 330CD7BDA80EE0DACB19C7498C4FDF00 /* BSG_KSFileUtils.h */, - 7975AC71361D847C020289BF2CE5BBB9 /* BSG_KSJSONCodec.c */, - D79ECBAD9D023B23590DA3F9860C4878 /* BSG_KSJSONCodec.h */, - 0F1AF0D76254361FAB87C8DBA8DF7440 /* BSG_KSJSONCodecObjC.h */, - E9C9B3A573476303618E7B4B8707A48D /* BSG_KSJSONCodecObjC.m */, - 0EAC3F88A630AB3DF219B13A70581EEB /* BSG_KSLogger.h */, - BBE9C3596335651D37543687ED4457F1 /* BSG_KSLogger.m */, - FC83FB36E6881FC37B06AB32B3F37279 /* BSG_KSMach.c */, - 4A791F484CACBA763C26A0655365C583 /* BSG_KSMach.h */, - 0916BB36DF829DD5FD4D51AA3D725A7B /* BSG_KSMach_Arm.c */, - 00B98116A9CCF0A918097FB180D34F09 /* BSG_KSMach_Arm64.c */, - 95886B2AC7494B540A28ECCD92E6914D /* BSG_KSMach_x86_32.c */, - 3BE5E4F1B8D8EEEACB8C8E1EBE765069 /* BSG_KSMach_x86_64.c */, - 9F3324150D838B5A79EFFA3B7990E404 /* BSG_KSMachApple.h */, - AB69548D24BE673DDA52B188807B39E6 /* BSG_KSMachHeaders.c */, - CADCD6AC0A44BC12DF3E31CFFCB2A47D /* BSG_KSMachHeaders.h */, - 880C9C45607A70557E9BA69E0F44E00D /* BSG_KSObjC.c */, - E2B5FC28C6329188208C5332F782776C /* BSG_KSObjC.h */, - A7F3286AAEC755CDF16E674143494868 /* BSG_KSObjCApple.h */, - 5215B67020579C32FA153F00EE4FBC8D /* BSG_KSSignalInfo.c */, - 9C0A981168E1E4D33DE99B228E8298F7 /* BSG_KSSignalInfo.h */, - F426EC127A24804A5AF0A94BBCFFD9E3 /* BSG_KSString.c */, - 308C47CE2D3A09406168330B0D50A90F /* BSG_KSString.h */, - 5A73746A235A5F24EC13651F3F434619 /* BSG_KSSysCtl.c */, - 7F78273B44B4DA42DBE6141598922D84 /* BSG_KSSysCtl.h */, - 87EF8DAC74FFF7785C03693CE6ED7236 /* NSError+BSG_SimpleConstructor.h */, - 6250AE0BC5C931BC2D8257FEA03EC40D /* NSError+BSG_SimpleConstructor.m */, + 571495843F48EC7A9AA83CD113E635F4 /* FFFastImageSource.h */, + ABD968A3D7F1963B3AC919D1E4D5E89D /* FFFastImageSource.m */, + 799BCB09D0D6E493BF6E6C86899802B0 /* FFFastImageView.h */, + 12CBD9312625413B9F6A59F70F770748 /* FFFastImageView.m */, + 810FC76323A81943B3F0F148F51B82F7 /* FFFastImageViewManager.h */, + 638CBE9EA1418F4753A3B60A63F2DEE8 /* FFFastImageViewManager.m */, + 5FA2717B9A141E1C9710A9F104EA5302 /* RCTConvert+FFFastImage.h */, + 715E6361440D35EA7E293AD4B624606B /* RCTConvert+FFFastImage.m */, + 18E1615B62641629A658B850089CF52F /* Pod */, + 8C8980826E7ED6AF894C38BD10C2B90C /* Support Files */, ); - name = Tools; - path = Tools; + name = RNFastImage; + path = "../../node_modules/@rocket.chat/react-native-fast-image"; sourceTree = "<group>"; }; - CF1408CF629C7361332E53B88F7BD30C = { + B8A47245B6C78F62F9247BBCE2CF6C16 /* Support Files */ = { isa = PBXGroup; children = ( - 9D940727FF8FB9C785EB98E56350EF41 /* Podfile */, - 1B335148B93033657E20AC9E4B039735 /* Development Pods */, - D89477F20FB1DE18A04690586D7808C4 /* Frameworks */, - 120C1FBC82BE1BC7AE0D71BD6C462DD0 /* Pods */, - 8BCDA242335B32DDD47E0EF491D17437 /* Products */, - 57C9E2EC2DF45CDE277B0C080BA1D71E /* Targets Support Files */, + 45413EFE81C6EE013732FA63E6BD552F /* JitsiMeetSDK.debug.xcconfig */, + 641C0E83AFEBA877F036FC9524DEF7E7 /* JitsiMeetSDK.release.xcconfig */, ); + name = "Support Files"; + path = "../Target Support Files/JitsiMeetSDK"; sourceTree = "<group>"; }; - CF3E8839112DE2F8209103C6AD5FE610 /* Support Files */ = { + B8A6C7AD5477AC6F7DCEC18456F1F07C /* Support Files */ = { isa = PBXGroup; children = ( - 93A57444DDE85F66B2D236FA286C7281 /* EXAV-dummy.m */, - 54E444AF140E6610ABEB65A9939202F1 /* EXAV-prefix.pch */, - 654A312852DD07D4EC6DC4D1DF016102 /* EXAV.debug.xcconfig */, - E201E516C29C03E985F33F4B984DC851 /* EXAV.release.xcconfig */, + 91B489E0393C8513D96598B65BF2901E /* react-native-appearance-dummy.m */, + C5A1BA0DF312D57EAA60C74D5EDDCEC8 /* react-native-appearance-prefix.pch */, + 792E20EE8DF01586F424E2A12C2309ED /* react-native-appearance.debug.xcconfig */, + B7140A77D7771430635D02EE033088B2 /* react-native-appearance.release.xcconfig */, ); name = "Support Files"; - path = "../../../ios/Pods/Target Support Files/EXAV"; - sourceTree = "<group>"; - }; - CF47CCB4B0D7AE3C64A1E8209912222A /* RNFBApp */ = { - isa = PBXGroup; - children = ( - B4B0CDEF0F319F78ECA60005B35D15D0 /* RCTConvert+FIRApp.h */, - C38A463A289BDC39E11BEFD5870CA52C /* RCTConvert+FIRApp.m */, - A00C340A4B1A226F54946F261788FB14 /* RCTConvert+FIROptions.h */, - 003CEEB7A99455C56D1CC82459FFC621 /* RCTConvert+FIROptions.m */, - 64272172F300480AAB5564037E52F9C2 /* RNFBAppModule.h */, - B98CDF7AE9D73022D3C6DAAA3A63DBE7 /* RNFBAppModule.m */, - 68D9357F6B530E418ECB4089AF8372A5 /* RNFBJSON.h */, - 2A8048665A94723F5E7236C65B4D80F5 /* RNFBJSON.m */, - CA557537137B6A0D183A619E100A10F7 /* RNFBMeta.h */, - 16D3F3AAD051C0568C7766CD69007D0A /* RNFBMeta.m */, - D86615BEDC991166E3F53C91B920E5FC /* RNFBPreferences.h */, - EBA6F0DD4A3B953CD39A34A3970D8304 /* RNFBPreferences.m */, - BD56CEF8B6BCD247C23E4101C7DD84AC /* RNFBRCTEventEmitter.h */, - 992A830F43307EFD1D876DEB3FA56EB6 /* RNFBRCTEventEmitter.m */, - 4BDD0D0B1D3BA5FD4C57167273A37400 /* RNFBSharedUtils.h */, - 7B8AF369F25FF411A049E73F240EF7F1 /* RNFBSharedUtils.m */, - BA6458BF22C37B2D7D59E6DEA84BBD75 /* RNFBUtilsModule.h */, - 306FDD037C73399B0B0783FC8DF4D453 /* RNFBUtilsModule.m */, - D9D89707F1744A3D93B48B799E2D5D7C /* RNFBVersion.h */, - 8AAD0CD25566C3DF95A09CE18005BFDD /* RNFBVersion.m */, - CE5E6925FFFB8A005BE06E012D5ECF63 /* Pod */, - 65656180EE78A49100F9F87B921283FA /* Support Files */, - ); - name = RNFBApp; - path = "../../node_modules/@react-native-firebase/app"; + path = "../../ios/Pods/Target Support Files/react-native-appearance"; sourceTree = "<group>"; }; - CFBD1CFAF90E78854C3262C17F52755B /* Support Files */ = { + B8BA06CD611674D0F071CEECA69402B7 /* Pod */ = { isa = PBXGroup; children = ( - B32D5C22FD2CA2DB5B184D29AD6792C8 /* MMKVCore-dummy.m */, - 512D84FEAF0C88EA497E2182B0FEA701 /* MMKVCore-prefix.pch */, - 711A800CF56C88C5CA3487D9A12B0336 /* MMKVCore.debug.xcconfig */, - 03949BD4B944E1B14997B7B0B5D7F1F2 /* MMKVCore.release.xcconfig */, + F3EF2BABF628BD30CBEDFAADE5D45AC2 /* LICENSE */, + 83741E9896252B3E2B83FE13B6A122F9 /* README.md */, + 8402DBCDE23589DFB945E75526BE1F56 /* RNDeviceInfo.podspec */, ); - name = "Support Files"; - path = "../Target Support Files/MMKVCore"; + name = Pod; sourceTree = "<group>"; }; - D06623C9D46AC971A9EC0B8EBE0104FF /* Pod */ = { + B8D6D8B3144B1F4BF5097C902EBACB7E /* Pod */ = { isa = PBXGroup; children = ( - 16CE7502F04D98AC3B1C93CFAA52DBDA /* UMCameraInterface.podspec */, + 240C2EFC3E50AF42103FD7DACEFA61B5 /* React-RCTActionSheet.podspec */, ); name = Pod; sourceTree = "<group>"; }; - D0E11B09D36C3939B7FD43A42B866D1E /* Frameworks */ = { + B8F0470ADBCDB4A9F60C6C568C43D474 /* demux */ = { isa = PBXGroup; children = ( - D283895F4E266C2F034DEA9F975C4B52 /* GoogleAppMeasurement.framework */, + DE3D4333E0AFB9649B662738A8FE78F0 /* anim_decode.c */, + FC5D23D66F64DE6257A71A7A948016FC /* demux.c */, + F776D60FB667C746DF277574BF048264 /* demux.h */, ); - name = Frameworks; + name = demux; sourceTree = "<group>"; }; - D0E71086ADCF2FEA20D803FBBECBA339 /* RCTRequired */ = { + B99419571BF39EC785167BAB46A2AB8A /* RCTRequired */ = { isa = PBXGroup; children = ( - 4546ECEAF10646D27459F8AFDD145330 /* RCTRequired.h */, - BBCD12B2F494819405331A6F6C59B9DC /* Pod */, - 5B2BE19CC4C4E3840DD03936DFB689E9 /* Support Files */, + 4BEB1818ED5F8B10EC4E3C65D7BE43F5 /* RCTRequired.h */, + FE56198B0DD2ACD7718F0F3F4FE85A5E /* Pod */, + F63AF7914F663F309F34E4254B1644FA /* Support Files */, ); name = RCTRequired; path = "../../node_modules/react-native/Libraries/RCTRequired"; sourceTree = "<group>"; }; - D15ED738D87DD497D46022FF9F0E37B8 /* EXAV */ = { - isa = PBXGroup; - children = ( - AA115C6C6F3591F70233C194A5D280DA /* EXAudioRecordingPermissionRequester.h */, - 40D6B8422E3644B47E48FEDC7A277629 /* EXAudioRecordingPermissionRequester.m */, - 9ED419A662981D7AE5D0F29FA5445E7C /* EXAudioSessionManager.h */, - F8D50667E4ED06A26937DE3CB1093BF5 /* EXAudioSessionManager.m */, - F52F4AA3524EB137E5E1FCD4279DD068 /* EXAV.h */, - FA857FDABCDE1F76E178BF9A5E3828C2 /* EXAV.m */, - 9EDAFE445CC359519665AD447C4AF68D /* EXAVObject.h */, - 304FE7BE8CD5D7068F8DDD996E27BD76 /* EXAVPlayerData.h */, - C7C2268BCC9BE5C1853C9EEE1432E4DB /* EXAVPlayerData.m */, - BECDB209CC9E861AD21DCC762D862C4D /* Pod */, - CF3E8839112DE2F8209103C6AD5FE610 /* Support Files */, - EDE6635783718043F3AC5D37203B7564 /* Video */, + BAE05CD2AE30EF6FB39BB3693A222037 /* Flipper-DoubleConversion */ = { + isa = PBXGroup; + children = ( + 22948CD80197B55D215C6C86DE7D298E /* bignum.cc */, + 858DFF766011288A0CAD951A97205936 /* bignum.h */, + B83FD2375577CE2B5BAEB16B9D586CC4 /* bignum-dtoa.cc */, + F7951274C6D29B36FF679B413B1225AF /* bignum-dtoa.h */, + C05EBA7ECA9BA88FCC5B5514DCFD4B8D /* cached-powers.cc */, + FB14AA75D6F8B12713B65C3C0B23991F /* cached-powers.h */, + 8EE166457CD928AB77ED880B75F59A56 /* diy-fp.cc */, + 8DB30AA2AB4ABB31BA516196FFA0BC03 /* diy-fp.h */, + 47209F5C4D4AA093F63BFB56CCEB7FB3 /* double-conversion.cc */, + 7F616776571B3C3B67FC89C2A77682E6 /* double-conversion.h */, + EA0A26AECF7809D8EF387DCB66A93172 /* fast-dtoa.cc */, + 19F041F4C5B129A4F3340E1D2B7D9ECF /* fast-dtoa.h */, + 3A374B8F80F74CB8599270F5E70F1305 /* fixed-dtoa.cc */, + C85F04EE7E0E69179B29E901B9719E47 /* fixed-dtoa.h */, + C5884F76C5A355E9519F66C7FA22BA75 /* ieee.h */, + 50C9175D65389B58A1EF4F1876F53BA7 /* strtod.cc */, + 2956802286B2645BEF85DBC2C891166A /* strtod.h */, + 649CA10295792636D47B120956DFE8AA /* utils.h */, + 74EBEFF16379188FE002F60443566540 /* Support Files */, ); - name = EXAV; - path = "../../node_modules/expo-av/ios"; + name = "Flipper-DoubleConversion"; + path = "Flipper-DoubleConversion"; sourceTree = "<group>"; }; - D28D229C5EE87F7BAB47AF2F689FFA65 /* FBReactNativeSpec */ = { + BC8C7A68F41D43C506EC383220590D0C /* Pod */ = { isa = PBXGroup; children = ( - 9363660B9A66C416940A5ED430891623 /* FBReactNativeSpec.h */, - F68A5EB0647CE6880D14B79F96C6735C /* FBReactNativeSpec-generated.mm */, - 5FEAEB799AFFB038C3392FC4909A3995 /* Pod */, - 3C14BBE5A6DFBD07A3BFC1B457383596 /* Support Files */, + 99FBA755E375E696825A1FF380343425 /* LICENSE */, + 39301F5459E0347C51FCA5F3BCADC1D5 /* README.md */, + 90C860AA372F1A946F4F12B9A7EADC85 /* RNFBApp.podspec */, ); - name = FBReactNativeSpec; - path = "../../node_modules/react-native/React/FBReactNativeSpec"; + name = Pod; sourceTree = "<group>"; }; - D3D565AD0273ADAF1182FCDB041402D1 /* RNReanimated */ = { + BCAFE9B24C351CD872A5E711028472C3 /* FBCxxFollyDynamicConvert */ = { isa = PBXGroup; children = ( - D0BFF27AF933BF8DFC29BAD4589847E5 /* REAModule.h */, - 20A19B867E87A3F15E66D9D7C0D9DE34 /* REAModule.m */, - A8DC685D979E2B8BDE1E93424E8F30FA /* REANodesManager.h */, - D700921BD027F1AA96650E3B71E9DC89 /* REANodesManager.m */, - 872D2FCB86AC74686DC67A7EE65FA3A1 /* REAUtils.h */, - B05B78FEB2F3E120F651327A9F49C5BC /* Nodes */, - 759853FBE6212AD6A2ABD36D16024E1F /* Pod */, - FC3E1E1924F8AB032732197B8BD6606B /* Support Files */, - 580748C24A4AD51F62DCE59388D39488 /* Transitioning */, + EE4D20166977C496105B00B3B3E2749B /* FBCxxFollyDynamicConvert.h */, + 178AAE6B594B5B7E771E92DAD364FF10 /* FBCxxFollyDynamicConvert.mm */, ); - name = RNReanimated; - path = "../../node_modules/react-native-reanimated"; + name = FBCxxFollyDynamicConvert; sourceTree = "<group>"; }; - D40748F6423A8A1669F834DA2CCA7E6F /* UMImageLoaderInterface */ = { + BD531864D042792CDEC0F787E46CE3CB /* Pod */ = { isa = PBXGroup; children = ( - ACDBFAED8F715B67451411AA0A54F83B /* UMImageLoaderInterface.h */, - F4832F0C1B0722230AACED41CB08F65F /* Pod */, - 797588B8BF534279FFAF1D3FE1861607 /* Support Files */, + 16623EE3DA633A1873FF21CD70EDD1B3 /* React-RCTImage.podspec */, ); - name = UMImageLoaderInterface; - path = "../../node_modules/unimodules-image-loader-interface/ios"; + name = Pod; sourceTree = "<group>"; }; - D5C4A0DE852AD3ECBBD511124ECEF0E8 /* Support Files */ = { + BDD84B073D4C2C4D6F681232A6BCC29A /* Support Files */ = { isa = PBXGroup; children = ( - D725CF596A4AFE33281DA292DE582717 /* FBLazyVector.debug.xcconfig */, - D31F5C04F4B11BAF9893FCEEBF4FCAF5 /* FBLazyVector.release.xcconfig */, + 6CF964D73E0585457C47F935158DE979 /* React-RCTBlob-dummy.m */, + 549E91F13973489D3FA41C9F90002143 /* React-RCTBlob-prefix.pch */, + C65231695825D0A6C58171D316C2C02F /* React-RCTBlob.debug.xcconfig */, + D9970A06F0EABEE1CDA5A676817FC4EC /* React-RCTBlob.release.xcconfig */, ); name = "Support Files"; - path = "../../../../ios/Pods/Target Support Files/FBLazyVector"; + path = "../../../../ios/Pods/Target Support Files/React-RCTBlob"; sourceTree = "<group>"; }; - D5D5A8EE09B0A91BDC986E578C5DD8B3 /* Core */ = { - isa = PBXGroup; - children = ( - 06ECDC5ED362821B60045388E5F81984 /* NSBezierPath+SDRoundedCorners.h */, - 7878050845433B5C208F692C2F294BE2 /* NSBezierPath+SDRoundedCorners.m */, - 696DE55C286BFCE9ABFD2B09F49FBF2C /* NSButton+WebCache.h */, - B29C1B4AEAB65007F1EE031667FAF0FC /* NSButton+WebCache.m */, - 2617B3D90DC123054065DC048C392F4B /* NSData+ImageContentType.h */, - E22B4113FC51C7241A0EF4BA6B002A14 /* NSData+ImageContentType.m */, - 1848CF67F1E051B439DED093BDF53A20 /* NSImage+Compatibility.h */, - D5E8E5688B76AA91CD7061A0CF7F37A9 /* NSImage+Compatibility.m */, - 96C961D244E629D8F1928A1FD8230EC6 /* SDAnimatedImage.h */, - 1EB3BCD632748D1750199C21F0F1FFF8 /* SDAnimatedImage.m */, - BE8FE5ABD07B445E6E17FBDE8B6AF829 /* SDAnimatedImagePlayer.h */, - C12603CA84D0C123860475E5587EF16D /* SDAnimatedImagePlayer.m */, - D7356C5A625D90CA214661C8C6D6F794 /* SDAnimatedImageRep.h */, - BD53164FA67EF8F1844D6FCCE10D3DC3 /* SDAnimatedImageRep.m */, - EE109F48562DC7EEFB22086F85702B57 /* SDAnimatedImageView.h */, - 984F1BFA478C3F2BB470222B51A85C46 /* SDAnimatedImageView.m */, - 632154CA99C3395F324D6E8391E97CD6 /* SDAnimatedImageView+WebCache.h */, - 9C1ADDEEF0CD70CEAF9F4B1C55F0E0D4 /* SDAnimatedImageView+WebCache.m */, - 0B4CE6901EC9E33F4A67CF767719781D /* SDAssociatedObject.h */, - E16681AEC54C6821A4E5D9301BB830F5 /* SDAssociatedObject.m */, - 5D7795BE80B6157A02063B428151BA3C /* SDAsyncBlockOperation.h */, - FD3B4717E08D79F7EEEE2083AA6BD770 /* SDAsyncBlockOperation.m */, - 041B9921682550847342142D5C565844 /* SDDeviceHelper.h */, - 028531ED5B236705CDB771CB2927310C /* SDDeviceHelper.m */, - A239EAE2E123539A743F11FE6B18B97B /* SDDiskCache.h */, - 43926C42B8EDE22B6094E95AC9E82CC8 /* SDDiskCache.m */, - E9E08C14A6995E6EB264EB5847FC74CC /* SDDisplayLink.h */, - B89880C34A22F7D671DEC637659A0068 /* SDDisplayLink.m */, - 55C2494C1C2BAC91A84EA92BDE1AA6A9 /* SDFileAttributeHelper.h */, - A45B86740B69AAA5C0F05B0A58EDE5CF /* SDFileAttributeHelper.m */, - 6081D20F35C515C6DB4F00B0209A46F4 /* SDGraphicsImageRenderer.h */, - CD5D732B125633DF2A14954BE4893DD4 /* SDGraphicsImageRenderer.m */, - A82E8AA0A350E86E661EF7349E03E7EE /* SDImageAPNGCoder.h */, - F563103478429FABE9D3126BBB73415A /* SDImageAPNGCoder.m */, - D93CBCD48E40E7740CBB907E63A0A0DD /* SDImageAssetManager.h */, - D86896FB5858820428D3DDDC6CD96A55 /* SDImageAssetManager.m */, - 794E673F0C3BE71ED6B7DD19CAB7EB7B /* SDImageCache.h */, - 32049DBA956FAF95AB8A99703E214354 /* SDImageCache.m */, - 2420C687E305DFC74BEF6A8AB892BC01 /* SDImageCacheConfig.h */, - 7CECBAB05A930D507AE7B0E29056A501 /* SDImageCacheConfig.m */, - 3F4C9252C0AB1D6B047BB24CD5E7172C /* SDImageCacheDefine.h */, - 612C955AED499AA9C055FF8D5FDD1640 /* SDImageCacheDefine.m */, - 523701F2861A9AF389FC2C6E43D86D49 /* SDImageCachesManager.h */, - A1A5738D7D8CEF7C7CE36B9B805C5EA8 /* SDImageCachesManager.m */, - BD3ECCBE605E838A98E04315AF90943A /* SDImageCachesManagerOperation.h */, - F4C353ED5FA2A9612D4901DA4A0899F8 /* SDImageCachesManagerOperation.m */, - E5FE7116DCC620D7CF0E83B589FADB2C /* SDImageCoder.h */, - A1676AAC61EFA3771E2E5B301AC959E0 /* SDImageCoder.m */, - 473EAED02F9A9B0273273EC3A0DC6C8F /* SDImageCoderHelper.h */, - 25BDB5BBBC679FA82A17FC504F679035 /* SDImageCoderHelper.m */, - 52707312B51286806012D175CCFF6E9E /* SDImageCodersManager.h */, - BBC9D9225EE71E347821C2095E8B0833 /* SDImageCodersManager.m */, - 30C66852419F645A443E08E8C32C0703 /* SDImageFrame.h */, - F00FBEAB647FF5D3E69DF36C8F70061B /* SDImageFrame.m */, - 2CA2B960B9E1731D599484C0CE3BA035 /* SDImageGIFCoder.h */, - 7C822944916997393C83B0CF3310A16B /* SDImageGIFCoder.m */, - B55ED6D43E31453B520A2C98A7BF77CC /* SDImageGraphics.h */, - A1877D4F4969CD370E0D2105E0DBF43E /* SDImageGraphics.m */, - F24DFCD6A2EC058E56485B04B0AD967E /* SDImageHEICCoder.h */, - 4B47B609D18EF820F82E8AF062AE571D /* SDImageHEICCoder.m */, - 4AA541D7BE961CC64F2D9CCD2719F85C /* SDImageHEICCoderInternal.h */, - 93DF72D593084C73110B41D3BABC0BC0 /* SDImageIOAnimatedCoder.h */, - 3B8A3FAEDB2F64DD6D6F17CD24CA370D /* SDImageIOAnimatedCoder.m */, - BCFA9E7DF0704A04BDB7768D0ACCCCF0 /* SDImageIOAnimatedCoderInternal.h */, - 0632EB5F7E65E53CB0E9FB0623CE095F /* SDImageIOCoder.h */, - B1FF6B2CA1B1140675F34754AA1FAC9C /* SDImageIOCoder.m */, - F2644328A8685FAFB272DAD706AC4A36 /* SDImageLoader.h */, - 636EA45DECCDA93699ABC2B3569AB75E /* SDImageLoader.m */, - D4E8533611C40EE3FCB6EF0597A4181F /* SDImageLoadersManager.h */, - 1153C7F2D8D7F8298826538F83EADA0E /* SDImageLoadersManager.m */, - F71F5BB161EFE16845835C17D1071F44 /* SDImageTransformer.h */, - 670D865981D234F25D9D09BEEA071BAF /* SDImageTransformer.m */, - F711B71C9191D701EF0B6D739CAF2971 /* SDInternalMacros.h */, - 160095035BD762C24128DBBFF7451196 /* SDInternalMacros.m */, - CD2F3B487E3BAE150BE5331123974954 /* SDMemoryCache.h */, - B42749E166A6F32EB791289DDD896CB2 /* SDMemoryCache.m */, - F0A4024A7743D4E8FC58B80F1A7A3CA9 /* SDmetamacros.h */, - 13C689EA90FD217368087E73B44A992F /* SDWeakProxy.h */, - CFADAE6600C315D4EFB5CC5D47467A27 /* SDWeakProxy.m */, - 8E9D737AD88368ED3A2F1A00D90666BE /* SDWebImage.h */, - E411C8BA0F4807158FF937325ED18B84 /* SDWebImageCacheKeyFilter.h */, - 71EF12AE0C678D1106C73CA089B8FDAC /* SDWebImageCacheKeyFilter.m */, - 1B86A59900D99654F5C7B2EBC25EA41E /* SDWebImageCacheSerializer.h */, - CD6D9EE4F9E1E2024338F163648B0426 /* SDWebImageCacheSerializer.m */, - D9162D718DE8040C51ADEB85D83D40F4 /* SDWebImageCompat.h */, - 1D0B5D9A2C2A0FC990882F9357818AA7 /* SDWebImageCompat.m */, - 5AD3167E0123CD275B0C9FCABD515EA8 /* SDWebImageDefine.h */, - 05292F4C9A6B2D46210E32F7F6BBAE86 /* SDWebImageDefine.m */, - 27AFB0003553227843B979313B68397D /* SDWebImageDownloader.h */, - 1B83C5B505E0B8D0D8572D5D9ECEF9D1 /* SDWebImageDownloader.m */, - 849B5400332E67CB49AB4618ABFE2341 /* SDWebImageDownloaderConfig.h */, - 31539C38D495B50907FA4BBE5334CBCD /* SDWebImageDownloaderConfig.m */, - 99BC38F149A766A810843A66109219B8 /* SDWebImageDownloaderDecryptor.h */, - EC23D8DB996B1FE92A084940B1F28352 /* SDWebImageDownloaderDecryptor.m */, - FEC8FE60ECAE340F1C62F76ABB5097D5 /* SDWebImageDownloaderOperation.h */, - 8ECE261CF9D06F4361E4A1F9279B98FE /* SDWebImageDownloaderOperation.m */, - B876C23C439C3C7CCABB78AE23C0A80D /* SDWebImageDownloaderRequestModifier.h */, - C1B96F85E728B20381F51A90D5688A0B /* SDWebImageDownloaderRequestModifier.m */, - 281DE879623596E0556DFE46F612EF83 /* SDWebImageDownloaderResponseModifier.h */, - CAAEF98599CE9874378A568A022A2BC7 /* SDWebImageDownloaderResponseModifier.m */, - 25706E9BC7882308E1CBADFE1696B9B3 /* SDWebImageError.h */, - 34D668980C096A561A31A2EB2F6A66BC /* SDWebImageError.m */, - 883E39C9150F6F0FFA19107EE0D2FC9E /* SDWebImageIndicator.h */, - 55B433F142C10604DED65C5B3CD6AE2C /* SDWebImageIndicator.m */, - 71E1DD6187842470489C1B6D031A902E /* SDWebImageManager.h */, - B7EC11A8C0A5E64EF001007C760450B6 /* SDWebImageManager.m */, - FC77D4B7D9EDE13C7061E4AD80EBDD69 /* SDWebImageOperation.h */, - 5D95CD156892E8171703B58D48E2D707 /* SDWebImageOperation.m */, - B042F5A5AB0621F4132E429D09681A9B /* SDWebImageOptionsProcessor.h */, - BC10A03BA6895C6F997D6FD59A9DBCB7 /* SDWebImageOptionsProcessor.m */, - ACF202B61D194289B0E43EA1932CB5ED /* SDWebImagePrefetcher.h */, - BD96F42BE96BED51567382ECD48D9017 /* SDWebImagePrefetcher.m */, - 6C237B5740E47D383CF27A8B511D0898 /* SDWebImageTransition.h */, - 61C5237AA4FF1AE4631BC96A273B9D85 /* SDWebImageTransition.m */, - 4C5953F908AA69045DC18DFE62C0EB9E /* SDWebImageTransitionInternal.h */, - F16E8A00A68196A9CE422DD73DF4B061 /* UIButton+WebCache.h */, - F29E3DA00733EA6D3619E628AEB20A0D /* UIButton+WebCache.m */, - 8C64D5E749D0C9E115805E9FF856C854 /* UIColor+SDHexString.h */, - 837EFFA6ADD6F536B9A48C66A773DD2B /* UIColor+SDHexString.m */, - 2EEC082619F0F996306EE06C9EE41BD4 /* UIImage+ExtendedCacheData.h */, - AFBA0DC87250CE5452721227940656DE /* UIImage+ExtendedCacheData.m */, - 30775C17AD0C769308C8D4EBB9172108 /* UIImage+ForceDecode.h */, - 40957D11A50DE6E72211996E3F5392B0 /* UIImage+ForceDecode.m */, - 7F9C61CA331FC7DDC4C288FE4E047574 /* UIImage+GIF.h */, - 6D744C16B2F99CC6C399F2964E2BED17 /* UIImage+GIF.m */, - 9C5FEF15984208664BD1D21E2627057A /* UIImage+MemoryCacheCost.h */, - 02164D00426ECD469441E2BF301F9366 /* UIImage+MemoryCacheCost.m */, - 3063FC67A941CB517B8CBB84E4A02102 /* UIImage+Metadata.h */, - 8E95659D462FBF4F81F91F6EBA259A81 /* UIImage+Metadata.m */, - ED716E78774947E880E7508529601934 /* UIImage+MultiFormat.h */, - C1CAC101D574B1469EE2EDF35A0FB67B /* UIImage+MultiFormat.m */, - 635ABD2D0367C7A831A83C0C4FD12CF2 /* UIImage+Transform.h */, - 4B7258AD88FCB09A3552091074015F17 /* UIImage+Transform.m */, - CB780F18AF9E3DAFA1FD46D41E5ACBC1 /* UIImageView+HighlightedWebCache.h */, - 5DAE9BA82BA92370D5416D2AE6FA9324 /* UIImageView+HighlightedWebCache.m */, - AB45991526D712A35DE228423BC25B30 /* UIImageView+WebCache.h */, - E5DD2E4A3E1B76BAD034115D0188B153 /* UIImageView+WebCache.m */, - 186F2C22A26007A725E79335C5E6BC62 /* UIView+WebCache.h */, - C86BB786B3B58004A16C9CAF9B645A88 /* UIView+WebCache.m */, - B4BA5D239213ECF054E3BA8966E4EC22 /* UIView+WebCacheOperation.h */, - 71FC4AB86EE39074E96E5C28674EA949 /* UIView+WebCacheOperation.m */, + BDDF199A86C7282E7630A0690F40DDCD /* Pod */ = { + isa = PBXGroup; + children = ( + EB40B4A6E0A32B4CCFD1362F9191319A /* EXHaptics.podspec */, ); - name = Core; + name = Pod; sourceTree = "<group>"; }; - D5F0CA470DA4BE6B46050DA749D431CB /* highlighterview */ = { + BDDF511BF15219F579052C6E83C55E89 /* react-native-cameraroll */ = { isa = PBXGroup; children = ( - B4EE1F2A065F2CF26B2C1EB0F8CFB0F7 /* HighlighterView.h */, - 29D8C493EAE7FD366C03A3D9A1E33139 /* HighlighterView.m */, - B7BC91B67A80E1AB170A8F6E59819C61 /* HighlighterViewManager.h */, - 4881DB0D5458E784FDA1D1DB2C6C66BD /* HighlighterViewManager.m */, + B92888970D09A244409C3FAA59F16FF1 /* RNCAssetsLibraryRequestHandler.h */, + 6E4E4C4C47575EB1A381962922AFF296 /* RNCAssetsLibraryRequestHandler.m */, + 28B300A06EC09C17E8754D1807B6D5E6 /* RNCCameraRollManager.h */, + 83436CB34880CC0D890517A4022A8D9C /* RNCCameraRollManager.m */, + 1AE95371744C7DE8CD4EB44CAC561D3D /* Pod */, + 99D1F80639FFAE59992421274DC682AC /* Support Files */, ); - name = highlighterview; - path = ios/reactnativeuilib/highlighterview; + name = "react-native-cameraroll"; + path = "../../node_modules/@react-native-community/cameraroll"; sourceTree = "<group>"; }; - D66284598A6DA33D69CE93DBC9B03E96 /* UMFontInterface */ = { + BEDC46B44CD676FCB81956C128C076C3 /* RNScreens */ = { isa = PBXGroup; children = ( - A77C5D2282D9A9D640536AD0C814D836 /* UMFontManagerInterface.h */, - 6A110C638AB89D801A638CD5BE920798 /* UMFontProcessorInterface.h */, - 8E50D0CC014192D8FC11063BA0F86F38 /* UMFontScalerInterface.h */, - 2C8E879CBAB5F3D69BF50A13AD39F50C /* UMFontScalersManagerInterface.h */, - B628BCAA909571D11C0055D68DA9C910 /* Pod */, - EDB227344D35FD0215E5CA6788E10FAD /* Support Files */, + 981CDDFA1C10E65722D25E7A97756788 /* RNSScreen.h */, + 3F06AC025A552090FF558CA9B922D0AF /* RNSScreen.m */, + ADCBE5CD617D332C60C0C6661CCE293D /* RNSScreenContainer.h */, + 549189282880EAC5953D1B5D58741493 /* RNSScreenContainer.m */, + 3DCF307CD6239A322F71C3744124F1A6 /* RNSScreenStack.h */, + FA0893D5CF2FA5B4FB0B667DC3784E3A /* RNSScreenStack.m */, + AB4847BCD9AC4671DFCBC8795CDC7DBD /* RNSScreenStackHeaderConfig.h */, + D02C6ABB28463CB47A581157D3C68849 /* RNSScreenStackHeaderConfig.m */, + 53D6109B56D3D9FA9634A3D52C0CFB58 /* Pod */, + 5A21187AC8AD68F87D7E8B9F00E6E4A1 /* Support Files */, ); - name = UMFontInterface; - path = "../../node_modules/unimodules-font-interface/ios"; + name = RNScreens; + path = "../../node_modules/react-native-screens"; sourceTree = "<group>"; }; - D74EFFE0E92A52A7E890826465132A73 /* Pod */ = { + BF01614F3C6328A314DEB14DF705D98C /* Support Files */ = { isa = PBXGroup; children = ( - 784DEF566EEE9ED8B16D39E08CBC534A /* React-RCTNetwork.podspec */, + A28B1A5C7E386E8E089F4393DA365C78 /* react-native-orientation-locker-dummy.m */, + 4278803205CA14229C2CAFEFBF1DEDC8 /* react-native-orientation-locker-prefix.pch */, + D362E4EC506FE9B68127CA4845F1C89E /* react-native-orientation-locker.debug.xcconfig */, + 04D284FE3432B8715AC627BF4DEBCE70 /* react-native-orientation-locker.release.xcconfig */, ); - name = Pod; + name = "Support Files"; + path = "../../ios/Pods/Target Support Files/react-native-orientation-locker"; sourceTree = "<group>"; }; - D7A69D80011F2C8C0C8461E0295C3A2D /* Resources */ = { - isa = PBXGroup; - children = ( - D138EEBF36D8E69C1BB1C575F483FB4B /* ar.lproj */, - 3B16F42AC62B1A9A9AE57DE532764A2F /* Base.lproj */, - F7B36E0655F52B09126B8CB05E74753E /* da-DK.lproj */, - B09923908C0ED67A7B5131B7BB580CEE /* de.lproj */, - 2D581ED99932190F20B005D628B8B0D3 /* en.lproj */, - 0200F4C529843FA559B3B7EAFBDCA3B7 /* es.lproj */, - FE2D8D8C28338380E5C7F236E7D59928 /* fa.lproj */, - 82654E144A90FED84B5D39EE71AF431F /* fa-IR.lproj */, - 8731BAC61933E776D4154A97D7F4D917 /* fi.lproj */, - 1892B79315556CD65E27E57D81FA5045 /* fr.lproj */, - 80211F1678ED1CAB959ACFB0AE2E477D /* hu.lproj */, - 4EEE229A6F5FBD1E1646B6DF98A66DD4 /* id.lproj */, - 54C880A4BF84B88F1F9DADFB3F064F43 /* it.lproj */, - EFFA369D0A99F61C59AC66A7809A1D45 /* ja.lproj */, - 121C082C44622369A24320E0608F7EBA /* ko.lproj */, - DE1BFDAFC28F339CABA7846F7BD52752 /* ms.lproj */, - 54DE1CD8942989BC6D0340E4917972AE /* nl.lproj */, - 23F9A8394A485E9F98B11A001596AA9B /* pl.lproj */, - 83DC996CF00F18599135A2312BD308E7 /* pt.lproj */, - 25CEA0EDE1F1F4F5ED0DD3050A6FF576 /* pt-BR.lproj */, - 8A8E9CFBF687EC1E6D5F284EC2205B4D /* ro.lproj */, - 2054197C408D33E1C62FD02C30E9B296 /* ru.lproj */, - 1161903683157589F2902EBB4CEB72F0 /* tr.lproj */, - 725581291AB34A22FDD48D80C8380B6A /* vi.lproj */, - 35B92DD54E7AC89C7BAF3A9792630E8D /* zh-Hans.lproj */, - A890CCB8BF008676AE761ACA4F9AA0B0 /* zh-Hant.lproj */, + C10B43B4CADF6C984A9394FA56816717 /* react-native-simple-crypto */ = { + isa = PBXGroup; + children = ( + BC531872A8B8408BB22C3143C0E93C2C /* RCTAes.h */, + 8656089DAEFB6028E24A6CAA13C2D7EB /* RCTAes.m */, + 47503253566B817495A9571A4504D672 /* RCTCrypto-Bridging-Header.h */, + 7015AE960245810C05A3F0B7ECB4ED8E /* RCTHmac.h */, + 8354F32A621692F2080E494EF874CA10 /* RCTHmac.m */, + A9EAC6E8CF6D7191C20BC30D81A57E80 /* RCTPbkdf2.h */, + E330670D615FDD6559EFB2776AA38D5F /* RCTPbkdf2.m */, + 8005F846C16DFB53EEF6CC58782031C7 /* RCTRsa.h */, + 1965B5BCAD6EC88C02A402ECF22794FE /* RCTRsa.m */, + 32BF2E6349B1C33C559DEDDEFD29BB99 /* RCTRsaUtils.m */, + 7417AF546946DB3AE84FBD6B4126AAA3 /* RCTRsaUtils.swift */, + 571B85305485907B54ADAEE11543070C /* RCTSha.h */, + E9A028ECD2FAE4A614A311ACCCFB39E1 /* RCTSha.m */, + 78C10C123C50DF2AF25F6C0556E7B78C /* RNRandomBytes.h */, + 66442F9D1BF8284CC8FFF8C87AA720B2 /* RNRandomBytes.m */, + 276F2447B8343326A0BF7E2F502F4024 /* lib */, + 21FF0413E51E5927C20A823885044C26 /* Pod */, + 94D1C8E8CC034BB9679190AB33A2E456 /* Support Files */, ); - name = Resources; + name = "react-native-simple-crypto"; + path = "../../node_modules/react-native-simple-crypto"; sourceTree = "<group>"; }; - D7BB50B092A36558115E67927BEA60A0 /* Pod */ = { + C133E47E676B3B1CB591C8CAD0645E55 /* FlipperKitUserDefaultsPlugin */ = { isa = PBXGroup; children = ( - 55191A8A5AD6909B4F06BF8902C0A36E /* EXFileSystem.podspec */, + 700DF3674D9F091583C21E4C8262814E /* FKUserDefaultsPlugin.h */, + DFC6BF680707D168D18167BE77EBF696 /* FKUserDefaultsPlugin.m */, + 3FC0F8D7995BE7268D778AF5B30212DF /* FKUserDefaultsSwizzleUtility.h */, + F7791AC50382463B28563BA48F532699 /* FKUserDefaultsSwizzleUtility.m */, ); - name = Pod; + name = FlipperKitUserDefaultsPlugin; sourceTree = "<group>"; }; - D8096B7AEC97A59C7C7D5A5E93C22202 /* Hermes */ = { + C27CB126549B473A0A428E1E8B3FD660 /* Reachability */ = { isa = PBXGroup; children = ( - 9BD031E9FB115C1968702E67B4DD73A4 /* executor */, - 99E18A6BC79341D155808C49D93EDFA4 /* inspector */, + B64D20EEA3C8C271224C33D9424FE4BC /* GULReachabilityChecker.h */, + 22AC7B207D004914B4C98BC4AE4ACA25 /* GULReachabilityChecker.m */, + D3C90EEF0D081912A0C00F1B69E4D849 /* GULReachabilityChecker+Internal.h */, + A2442D48231140AD6BCB586CE92C9E66 /* GULReachabilityMessageCode.h */, ); - name = Hermes; + name = Reachability; sourceTree = "<group>"; }; - D81D332C912164717FB625DE697A156D /* Support Files */ = { + C2A0D810A23C33BD458BACDE7CE68732 /* React-Core */ = { isa = PBXGroup; children = ( - 33BC57FD8C3AF3FCF4BE94CC00476321 /* UMConstantsInterface.debug.xcconfig */, - EF66E1865FB77B1C24A04F48399DC43D /* UMConstantsInterface.release.xcconfig */, + 21221D7FFD65102133957F9FF86FB2D8 /* en.lproj */, + 31D7BC5754D2DD97935147720A2B0AFD /* CoreModulesHeaders */, + 79BB6EB11D2C2754D5CFB11DD9DC05AE /* Default */, + 3397B6813AC1F4164525E8BCBC7B2BF1 /* DevSupport */, + 02440701E502651F0D4B592FE52DC73A /* Hermes */, + 5C93FDB83706FC7F219427E3C4A4FCD1 /* Pod */, + C8369CE8B0504E9B8766482E8210DD3C /* RCTAnimationHeaders */, + 63753C612619687E239C2490C27DBBD2 /* RCTBlobHeaders */, + 8FEDB941CABF7AFBD99CC6785DD8469B /* RCTImageHeaders */, + A6C386EFC1B5AE5894992E9CD8839CAE /* RCTLinkingHeaders */, + 9DF4817C85B73EE4BF2FE29056565FA7 /* RCTNetworkHeaders */, + 79B0A3DA4840C812E0386C9E4341F7BE /* RCTSettingsHeaders */, + 0FCC55AC41E618C2997586BC5DEABFC9 /* RCTTextHeaders */, + 3A6B7BCDC6DCECCBDCEB1976F6992E1C /* RCTVibrationHeaders */, + 48394C1AC5EF92D2DF40B0577F5A9FDF /* RCTWebSocket */, + 23CCF046D46285D6C88F9654E8DCA11B /* Support Files */, ); - name = "Support Files"; - path = "../../../ios/Pods/Target Support Files/UMConstantsInterface"; + name = "React-Core"; + path = "../../node_modules/react-native"; sourceTree = "<group>"; }; - D83D43E1AE745172DA695D03C2BE1296 /* Support Files */ = { + C2B92F5E819BA751FF094B5399835B63 /* Support Files */ = { isa = PBXGroup; children = ( - 4D978CC181C344845AC6FDCFAE716AC1 /* ReactCommon-dummy.m */, - C5BA21FE6230E9775ACB8D055FFFB703 /* ReactCommon-prefix.pch */, - 4DA79D93AE2E4975346F958D50E1974B /* ReactCommon.debug.xcconfig */, - 2DC979E4C53D61D48A37D92D822E0464 /* ReactCommon.release.xcconfig */, + 4E2BD0069D4441ED07654FAC3D2C76A8 /* React.debug.xcconfig */, + 721D290B486DC5E3BEDBAE77C782DADD /* React.release.xcconfig */, ); name = "Support Files"; - path = "../../../ios/Pods/Target Support Files/ReactCommon"; + path = "../../ios/Pods/Target Support Files/React"; sourceTree = "<group>"; }; - D89477F20FB1DE18A04690586D7808C4 /* Frameworks */ = { + C2E17396693A9ACD14863718F5EC6E11 /* Pod */ = { isa = PBXGroup; children = ( + F727A6C560A80D6C4340A360F6165D01 /* LICENSE */, + B402B42D229C980F48C778C86ED59C9D /* README.md */, + 2527AD0849780D49F96ED62752F554B5 /* RNGestureHandler.podspec */, ); - name = Frameworks; + name = Pod; sourceTree = "<group>"; }; - D8E8B0BA35328310950576D70F36C2C5 /* YogaKit */ = { + C37537E5DE63D4E8243BE542F90A48A9 /* jsi */ = { isa = PBXGroup; children = ( - EBDAEB955E4ABF88F7711DF389E903E3 /* UIView+Yoga.h */, - 4773ED3ABA888E69EA224359149F325D /* UIView+Yoga.m */, - CC30D68C227093DD75664F5A4F39836F /* YGLayout.h */, - 49D53E5ECAFF69A7D6F6C7CCC60D004A /* YGLayout.m */, - 48703AABCD31CFFBC91011A16BF55EEC /* YGLayout+Private.h */, - 50F4AC2A1A2E84993D0251C762782555 /* YGLayoutExtensions.swift */, - F74544B7568C6FF2B91AC8580D11A820 /* Support Files */, + 197F55797A406CA1FDC933CB23EE8E2C /* decorator.h */, + 17BAC1B3D9840CFB9D3EE84C102C5968 /* instrumentation.h */, + D479C7BF3A8162D27ABCAB7AB12A6B80 /* jsi.cpp */, + 3C91F989F4A5054ED55ABECA0C159C36 /* jsi.h */, + 18A608A84D0F936007B682AD1951D0F9 /* jsi-inl.h */, + 93474E2A32F3F89607C1C64A814178ED /* JSIDynamic.cpp */, + 2E36D770A5670548368752957810ED6D /* JSIDynamic.h */, + 4E79C59E90A3E09FB62059F97F3AE427 /* jsilib.h */, + FC766911E19B3B3A13737CDCDCA2B610 /* jsilib-posix.cpp */, + 08BF95E4BB3E1137A8F20FE77A35F431 /* jsilib-windows.cpp */, + 2C6DA39E33EAAAA7F63EC7CD283876DB /* threadsafe.h */, ); - name = YogaKit; - path = YogaKit; + name = jsi; + path = jsi; sourceTree = "<group>"; }; - DAFDB040B96E734BFBF205CF24CFE6B6 /* FlipperKitUserDefaultsPlugin */ = { + C3D8828D50F30D5205F43B1FB50BD051 /* Pod */ = { isa = PBXGroup; children = ( - 84FCCA45C59E07CDDF03842BAA20E30E /* FKUserDefaultsPlugin.h */, - 637C838337F31ED529BCEA41C0F4A3E4 /* FKUserDefaultsPlugin.m */, - 98C50B476070D8672516720D0DC6473F /* FKUserDefaultsSwizzleUtility.h */, - 269F7282EBA65F5D446AC2E31FB83CF0 /* FKUserDefaultsSwizzleUtility.m */, + 9B6BF5B9ECEB947E6434F80E7556912C /* EXAV.podspec */, ); - name = FlipperKitUserDefaultsPlugin; + name = Pod; sourceTree = "<group>"; }; - DBB7186D066449637082373B969C9EB2 /* FlipperKitReactPlugin */ = { + C47A6949D0F225E354676DE11E62E3FB /* Support Files */ = { isa = PBXGroup; children = ( - 09E75510AF24F314A6051E17B976164F /* FlipperKitReactPlugin.h */, - 8031872DCCE430B11F0E3C6A6E3DC9FC /* FlipperKitReactPlugin.m */, + 75AF0A4FF700CF3A4A491DDD583DF70E /* RNRootView-dummy.m */, + D69C5CC76F15D9125DE7B037BAC658C1 /* RNRootView-prefix.pch */, + 07699F4D62CD6E1C3475F29B38DBC463 /* RNRootView.debug.xcconfig */, + 1B1784AA0603C76CD8EAA1A29BB53F03 /* RNRootView.release.xcconfig */, ); - name = FlipperKitReactPlugin; + name = "Support Files"; + path = "../../ios/Pods/Target Support Files/RNRootView"; sourceTree = "<group>"; }; - DBCB00A3035149DC0C19D83FDDD1B3B1 /* detail */ = { + C6B189E7E4E2519B41287C4F70A6F34B /* Text */ = { isa = PBXGroup; children = ( - 52032420A8153D9845D314223D4F5169 /* CallbackOStream.cpp */, - EF987966C8243A6D7B2997CCB6DEBF19 /* CallbackOStream.h */, - 565C98C0F87D64F187F1425AEA777E05 /* SerialExecutor.cpp */, - CBC7720687E8A53CEA1A579059D11CFD /* SerialExecutor.h */, - 3956A43D3DF53657C5F1C8AB141FCA72 /* Thread.cpp */, - 17FB77BE527E85166F4699810C508556 /* Thread.h */, - ); - name = detail; - path = detail; - sourceTree = "<group>"; - }; - DBE62A767FAC06B7576C596C16323417 /* UMCore */ = { - isa = PBXGroup; - children = ( - B1E53AC7BC87F814F9DFAFF685664566 /* UMAppDelegateWrapper.h */, - F7C40C88F5C3C5FE1938B1CEC0B1179C /* UMAppDelegateWrapper.m */, - 06C5D22E47F15524A4FB15097A215F42 /* UMDefines.h */, - 85EBAEA75FFA7DD5F1973B6C687C2441 /* UMErrorCodes.h */, - E2C20142D7302B9F6BD186560877B9BF /* UMErrorCodes.m */, - 73ECF13767B57DEF145AD8A4E935C77C /* UMExportedModule.h */, - B775B43D0D55C6186D1F81AACAC574A6 /* UMExportedModule.m */, - F4BA021EFDD407D4A27AEF8D47D838CA /* UMSingletonModule.h */, - BF1A76C52BB358B20970029ABBCE6EB5 /* UMSingletonModule.m */, - 7D20DEEC7640A7E26DE4F76A033D9641 /* UMUtilities.h */, - DECCCE09E7F014EABBD87DC1B1B5C2B0 /* UMUtilities.m */, - 8A53EC9FB8607A9EC1BD5F88AE6F883E /* UMViewManager.h */, - EA6CA669DB11D03491E655AF46257689 /* UMViewManager.m */, - 381949ED43D1CDA5910C97837B136DE6 /* Pod */, - 1B31FDA752685D2F5B5D0C1C9D81877D /* Protocols */, - E32492162322518062051E44A13E7529 /* Services */, - FEAEFE596F6C49D66F8ABD8E16AEF529 /* Support Files */, - CDCC2CFFA9150AFCBED6BFF8DF9001C3 /* UMModuleRegistry */, - 192A2D7E57C30857F88797D9326B7047 /* UMModuleRegistryProvider */, + 57007F30B0336E7F7C2AE25790DD87A1 /* NSTextStorage+FontScaling.m */, + 2B8F70455DFC37E55AF0D4CB3D1903A2 /* RCTTextShadowView.m */, + ED8A36714A99A4FB94FE1DE114B4B7FE /* RCTTextView.m */, + 5CAD31A89DA9638789206C0851BC19C8 /* RCTTextViewManager.m */, ); - name = UMCore; - path = "../../node_modules/@unimodules/core/ios"; + name = Text; + path = Text; sourceTree = "<group>"; }; - DBFF449F8FD0105F372819BBCAC1D3F7 /* Pod */ = { + C754A7B52D17F949C00FA080E53A1F71 /* react-native-cookies */ = { isa = PBXGroup; children = ( - DEBBF54F56A219AE3EAD4D0D55B46B95 /* LICENSE */, - 92BF5CC7B1AC56ADD518B6BBE1ECE380 /* react-native-jitsi-meet.podspec */, - 03F06431100E4402DBCBF45CF4BFC6C6 /* README.md */, + E09266813B868F30441EEE5D3FF16FC5 /* RNCookieManagerIOS.h */, + 8430C65609AC44547193B99C840DB700 /* RNCookieManagerIOS.m */, + 4BB835F1A7AA1EADEA154A08940D6C38 /* Pod */, + D7A4CADAC379F3460E79511A8E8F6A7D /* Support Files */, ); - name = Pod; + name = "react-native-cookies"; + path = "../../node_modules/@react-native-cookies/cookies"; sourceTree = "<group>"; }; - DC7BC3BFF6BD1DE54E68E50885C12FE6 /* Interfaces */ = { + C76865D1D6488E859F63D0B8B65A9047 /* Support Files */ = { isa = PBXGroup; children = ( - 3996EDD823280D882ED08A7C542F9AD8 /* UMAppLoaderInterface.h */, - 4C4AB3BD3F116A129775D8C459F218F9 /* UMAppRecordInterface.h */, + DBE866325A36D001D96181A65ABFEE5A /* libwebp-dummy.m */, + C46A8681CA64926B09E43E6EA28AD16F /* libwebp-prefix.pch */, + EE5D7FDE71CDF4A8E89BE9507C683653 /* libwebp.debug.xcconfig */, + F9B1811BDCE0BB5B628B719B86B94774 /* libwebp.release.xcconfig */, ); - name = Interfaces; - path = UMAppLoader/Interfaces; + name = "Support Files"; + path = "../Target Support Files/libwebp"; sourceTree = "<group>"; }; - DCEC7379A961D5631CF2252F29FA5EA6 /* EXLocalAuthentication */ = { + C799D902ECBA8F8EE41980F58BD4C152 /* RNCMaskedView */ = { isa = PBXGroup; children = ( - A4193D9F18881BC00CADFFE156D0A4E8 /* EXLocalAuthentication.h */, - 7C2765C0E9ACB7E4846FB7A43CA21755 /* EXLocalAuthentication.m */, - B7B238CE50E038117537D10FDBB462C7 /* Pod */, - 4E043185C96E22A32248074EBD1E03B8 /* Support Files */, + 3C2D2EF764AD5072A5C661EB748F92DE /* RNCMaskedView.h */, + 03CA7117622B8F8E0F440614EC0EEBBB /* RNCMaskedView.m */, + 4A614561BC9E6C556E9110B4C1192015 /* RNCMaskedViewManager.h */, + 787632263E4D84C9B469FB2201F185BC /* RNCMaskedViewManager.m */, + 688745A3F75D2BAB3B7B0EE15271EE68 /* Pod */, + 33462920D986B8BC6BF7697FA5B14FB1 /* Support Files */, ); - name = EXLocalAuthentication; - path = "../../node_modules/expo-local-authentication/ios"; + name = RNCMaskedView; + path = "../../node_modules/@react-native-community/masked-view"; sourceTree = "<group>"; }; - DD448CFE54899E8214FC0DE261C125B5 /* rn-fetch-blob */ = { + C8369CE8B0504E9B8766482E8210DD3C /* RCTAnimationHeaders */ = { isa = PBXGroup; children = ( - C25717694583716545F087E9F69CADB0 /* IOS7Polyfill.h */, - 17C4A2EBA9F786833C9E659FC731CFD7 /* RNFetchBlobConst.h */, - 542B769074BF2AB509D9DC76111A3546 /* RNFetchBlobConst.m */, - 7BC33DE4C5189CC11594CC9726C5E670 /* RNFetchBlobFS.h */, - F1A2D374367175141CF15B034A500836 /* RNFetchBlobFS.m */, - F2E3027F493B38842E9FDBD22E957D27 /* RNFetchBlobNetwork.h */, - 8B7051532588B84E1D86679E3355DAE6 /* RNFetchBlobNetwork.m */, - 021802B622F23E1BF04496EDA30089F5 /* RNFetchBlobProgress.h */, - 659AF947B8078759249913E120B5CC48 /* RNFetchBlobProgress.m */, - 8AC9189025B8BE1B454FF175813E2356 /* RNFetchBlobReqBuilder.h */, - DF395A5AE875959199CDB011ADB83A79 /* RNFetchBlobReqBuilder.m */, - D73244402DD95F9ACCC241FA741963AD /* RNFetchBlobRequest.h */, - 463EAB7F09AAE5365F3A56A8C90295A1 /* RNFetchBlobRequest.m */, - FB8E1FC8A4EEFA7710F4B5D50CB00F42 /* Pod */, - 2B3A3D161EE9A83388601D1B21185E62 /* RNFetchBlob */, - BD687DC53AA49DA999739481B90EE88C /* Support Files */, + E5358FA0CE94F364385FC3214CEE3E13 /* RCTAnimationPlugins.h */, + 0F35C568C8AED406C879DEC7AD114B60 /* RCTAnimationUtils.h */, + 7E065284101AB5CA9BA253B6F594D886 /* RCTNativeAnimatedModule.h */, + BCFE6834A2D4F7499BA855B563E7283D /* RCTNativeAnimatedNodesManager.h */, + 54DBF8D2200CD59FADB221DBF6D96A39 /* RCTNativeAnimatedTurboModule.h */, + 1EB04418B2093424DB3E69C1D3AE19F8 /* Drivers */, + 2F221F60AFFCC5FF79E45225DAD94BB5 /* Nodes */, ); - name = "rn-fetch-blob"; - path = "../../node_modules/rn-fetch-blob"; + name = RCTAnimationHeaders; sourceTree = "<group>"; }; - DD6AF4948EC7F51B326A53CE0EE46600 /* Support Files */ = { + C8A67228C074E976B032FDDC5C3270D6 /* CxxBridge */ = { isa = PBXGroup; children = ( - DB014116AB6D8DA1BB2E892E70011113 /* React-RCTSettings-dummy.m */, - 0864B6FE4C4AD67DAF5C6DE9C9DCA1EE /* React-RCTSettings-prefix.pch */, - 8F35897AB268E19269869EBC5812DBE8 /* React-RCTSettings.debug.xcconfig */, - 678C3CA52E8662BB138C894265599275 /* React-RCTSettings.release.xcconfig */, + 1960D56E4D19A1C62EB36FDC3EC3071F /* JSCExecutorFactory.h */, + 95F92A612914BDEC7924724EB18891C6 /* JSCExecutorFactory.mm */, + 6716152E381A6A3A879561177E52A93D /* NSDataBigString.h */, + BB6A4BFC1EEDAE5C44DB4423FB8E880C /* NSDataBigString.mm */, + 07BEBBAD948D4A1DEFC269F12E5E80BF /* RCTCxxBridge.mm */, + EBAD5878503D651E76AA75F6F59B5B01 /* RCTCxxBridgeDelegate.h */, + 42506B785CB3FAC1F0F284DDFD2EB379 /* RCTJSIExecutorRuntimeInstaller.h */, + BF2FC6550D674098D111C8FA0FEC0449 /* RCTJSIExecutorRuntimeInstaller.mm */, + 7DE668330E65F4215D8CF43CD76DF469 /* RCTMessageThread.h */, + EF38B10E6F6B60A3311655668D07E61F /* RCTMessageThread.mm */, + 874365B75630330AB4C1AB7AF0F05BA7 /* RCTObjcExecutor.h */, + B38FF39FA74A1AEFB9C17FD5A791AFB5 /* RCTObjcExecutor.mm */, ); - name = "Support Files"; - path = "../../../../ios/Pods/Target Support Files/React-RCTSettings"; + name = CxxBridge; + path = React/CxxBridge; sourceTree = "<group>"; }; - DD78A7C1E8AB03582FCA970B8837ACF7 /* Frameworks */ = { + C8BD7C144BDE559EF0BCFD80EB58C7A0 /* FBDefines */ = { isa = PBXGroup; children = ( - 17328D43CB20BD5A96214AB3CF83680C /* JitsiMeet.framework */, - D188BCD922AC3C4939F431D7B60837B9 /* WebRTC.framework */, - ); - name = Frameworks; - sourceTree = "<group>"; - }; - DE69EEF3E4308F8C93489B04B112E51B /* Flipper-DoubleConversion */ = { - isa = PBXGroup; - children = ( - C6E1B1212C5D216DCE70D3FACC3B83DB /* bignum.cc */, - 7BB74AB265F6AE55D2337D7E434DFC7C /* bignum.h */, - 280005C2D697F4B8EE5FA8D2A16214F8 /* bignum-dtoa.cc */, - 4993498A328BEB89326E75F6E62CD440 /* bignum-dtoa.h */, - 773CD67E1C5C5916902E835142CB8110 /* cached-powers.cc */, - 116B22E616273DE891DEFDE938A5D623 /* cached-powers.h */, - 7E190197A8BCD54D5B863CD1090FC782 /* diy-fp.cc */, - F3489AA7582FB320BAC9935E0E332756 /* diy-fp.h */, - 909FE8760C800877AB48CD3590A9B3E6 /* double-conversion.cc */, - BDA2A69E14FB628DD6843A24D005F18D /* double-conversion.h */, - 0B5AB93A1A9D7CB8293F5DDF39830F9C /* fast-dtoa.cc */, - 33F8B614EDDB6B06EC53096D867D5B46 /* fast-dtoa.h */, - F07D2F18E27AAD4431AA0C119A2B18A2 /* fixed-dtoa.cc */, - 978BA8A0B9691E1FD6D7C40F23C87A4E /* fixed-dtoa.h */, - FD1A4FB0F4464BD1370B5260F737A4F1 /* ieee.h */, - 87D361A17427A801DBF47CD2D9BFCC01 /* strtod.cc */, - 35D047C1E86408DCC29C1953F2CF1AC9 /* strtod.h */, - 4B01481011B177B9ED93006300270E5A /* utils.h */, - 389E6219E25B293E37400BF93542290B /* Support Files */, + 1A63131F460DE07B9433666C5A89E8CA /* FBDefines.h */, ); - name = "Flipper-DoubleConversion"; - path = "Flipper-DoubleConversion"; + name = FBDefines; sourceTree = "<group>"; }; - DEB1871F6BB119B54DE25704596197E0 /* PromisesObjC */ = { - isa = PBXGroup; - children = ( - EC33EB81EAFE738D028161A843133FDA /* FBLPromise.h */, - DA6C6CDB3F61B53988510109BBA0ABDB /* FBLPromise.m */, - 44F48B8158CB28A50A3532A4FA69E365 /* FBLPromise+All.h */, - 3951C11FDC3F933B2738237DE4204F58 /* FBLPromise+All.m */, - 5489F8899DE48A12C9A910B77CFBAACF /* FBLPromise+Always.h */, - EFDCFE3582FA69D9B77B4B503E169BE2 /* FBLPromise+Always.m */, - C3F26F9B4FA2A351DDE03859A88225A7 /* FBLPromise+Any.h */, - FD05E41D3DBD6CEB5FA70823CF4C4329 /* FBLPromise+Any.m */, - 6AD2999A13828C3996ABC48EF58DB9E0 /* FBLPromise+Async.h */, - 7552AC22B045F411D709DEF542496909 /* FBLPromise+Async.m */, - 3E88485AF27879EA1753CBF403408C7A /* FBLPromise+Await.h */, - 66EE8C7854B55B201886046863BC7BF0 /* FBLPromise+Await.m */, - 857B28839350C25A775AB9D97BFFFE9B /* FBLPromise+Catch.h */, - F52F845A189384EC9BBD6B8783511AD3 /* FBLPromise+Catch.m */, - 7C4E364F9508DC861238EE4AB7F3EEE1 /* FBLPromise+Delay.h */, - 1A749AD6FFFE36A24DFDAD2619EB68F7 /* FBLPromise+Delay.m */, - ED81A5EB12FE3E918B3DCFFEBF9AE754 /* FBLPromise+Do.h */, - B0F4A1B84ED63749F8044921E15E45F5 /* FBLPromise+Do.m */, - 335D89C0A9606E132F58F72559506EDF /* FBLPromise+Race.h */, - AB72D0C7A9094E258164E9D11158FC88 /* FBLPromise+Race.m */, - 624B9F811291F5AF60BF66DA62A4BC33 /* FBLPromise+Recover.h */, - 6B283E3E1AF9FE53C336B499AB040D8C /* FBLPromise+Recover.m */, - 4BC6D68855B4DB60DC353DDD7CB64C15 /* FBLPromise+Reduce.h */, - 0271636F098B9253BAF63D59B427D695 /* FBLPromise+Reduce.m */, - 79EB358D44D6C8AF5B7D86450DD1FEAB /* FBLPromise+Retry.h */, - 7C3AE8AB82104DA1D57947D5F350DF05 /* FBLPromise+Retry.m */, - 98B3C00ED1A48B9AFDFA6A37D768C053 /* FBLPromise+Testing.h */, - 80633C5A8B082AA86AFAECD105185D55 /* FBLPromise+Testing.m */, - 75ACAE008DA57AB16A0C12D15D86D5FE /* FBLPromise+Then.h */, - 9F3B0002B8624CBE05928C53384482F2 /* FBLPromise+Then.m */, - B167633F9DF72ADB205A2AECBB9C05A5 /* FBLPromise+Timeout.h */, - 51E0ED49F68A92B12E47D0F02CD1C207 /* FBLPromise+Timeout.m */, - 0DE4DBCF1EF8FB8026A41D493816EC57 /* FBLPromise+Validate.h */, - C8C92828DAAD3DF19095AB319D64147F /* FBLPromise+Validate.m */, - 89E52F7FC20434097820D21A19F7A961 /* FBLPromise+Wrap.h */, - 95D457B73EC18B3EE005F27734E9C2EC /* FBLPromise+Wrap.m */, - A2DD810F8278E0F12D995044E5BF7A15 /* FBLPromiseError.h */, - 13F667B2253495881B8BBB79ED397290 /* FBLPromiseError.m */, - 59ED6F706C9D0F558FED09E373412B9C /* FBLPromisePrivate.h */, - 1C92285652DE1BEBF56EDE5BBC235C1B /* FBLPromises.h */, - 16CEF3BFD35752F2FF9D0834B94F1BF3 /* Support Files */, + CA5F92CBD09185DCEAA537E9A998DA90 /* hermes-engine */ = { + isa = PBXGroup; + children = ( + F67FB9122A26EBBE899BB25396DE5622 /* Buffer.h */, + 4C38DB6263919FBC0AB5BAF4D5C4B9AF /* CompileJS.h */, + 660336868F41A6FF72AC7584F7F63402 /* CrashManager.h */, + 925C52DE1975FCE524344D40A1E394E0 /* CtorConfig.h */, + 823F76666EB7E8D9C243DCD3586E9F21 /* DebuggerAPI.h */, + 954232D5415DE23661DF2D0BDC5D5612 /* DebuggerTypes.h */, + 341C48D42D6B62F48E17C332EF16D084 /* decorator.h */, + E4EF61E074D0AFE177C5A3546D4C1630 /* GCConfig.h */, + 0D68504B28FF1476B168BFE2CA579509 /* GCTripwireContext.h */, + 8F72A24E3ED1D2F94C38CD7ACDCC7B5C /* hermes.h */, + DB7449C4662DD2C53595F6FA4C3885A5 /* hermes_tracing.h */, + 6457EB21854B5E8E43920D9AE9097047 /* instrumentation.h */, + 6BE75BE8EC7D5125E605980AD10C4FC5 /* jsi.h */, + FD6AD5CC1AF9CA60CC2D7A509818482A /* jsi-inl.h */, + 74FF150EE17451946938A884B6DFA909 /* JSIDynamic.h */, + E270D67F3D37A2FBE427DFA23B89A44E /* jsilib.h */, + 46F3F1C851C4F1718F9AE51BB978AA5E /* RuntimeConfig.h */, + 5F8D96B3FE209FD8B1B0300BC5C94DEC /* SynthTrace.h */, + 9DE2265AC2173BD699C025B13295C46B /* SynthTraceParser.h */, + EF92A3D8D66DA08CCF7ED8E86B9725B3 /* threadsafe.h */, + B583ECEC702B41E3EBBF552DA01325CA /* TraceInterpreter.h */, + 0244E96C99A528F3AED210911B6A6FA4 /* TracingRuntime.h */, + B70E10339BD47EE361BBA497E060FB1D /* Frameworks */, + 280A91D2F151B77AAD5E1CEDFAF9CBE9 /* Support Files */, ); - name = PromisesObjC; - path = PromisesObjC; + name = "hermes-engine"; + path = "hermes-engine"; sourceTree = "<group>"; }; - E049964354328A2EA1287F2BEE1CF2D3 /* Pod */ = { + CB128641DAD82FFA70AC453EAA9C572E /* Support Files */ = { isa = PBXGroup; children = ( - 787FE093039C112C0D403D31F56C367B /* React-RCTActionSheet.podspec */, + A8E4E72172851DD14FD9BC19BDA9DBC4 /* RNFBAnalytics-dummy.m */, + DD77D897798B46F8D83F3832E61D9200 /* RNFBAnalytics-prefix.pch */, + 60DDB2D8A7AAAB3AB85F270C830E80EA /* RNFBAnalytics.debug.xcconfig */, + 69F03FFB9ED60B8728AA86A6DA93A514 /* RNFBAnalytics.release.xcconfig */, ); - name = Pod; + name = "Support Files"; + path = "../../../ios/Pods/Target Support Files/RNFBAnalytics"; sourceTree = "<group>"; }; - E082050E5CBF98E49AF14FD88750E6FA /* internal */ = { + CB29A315A3517B6DF934B306C5113CCB /* encode */ = { isa = PBXGroup; children = ( - 14AA7A8B170D786D4D560A3331126720 /* experiments.cpp */, - A72F4F01C82EB2FEF9C866D788AA26ED /* experiments.h */, - 9D14E9A01BCC594A2A85D381466E888B /* experiments-inl.h */, ); - name = internal; - path = yoga/internal; + name = encode; sourceTree = "<group>"; }; - E1D4BF5E99E0AF9736EEFC1DCB8D0688 /* react-native-mmkv-storage */ = { + CC34F03143FD52C9D5C332461A049C01 /* Support Files */ = { isa = PBXGroup; children = ( - A8F437656C3AF0F0D47F9C9E340C3D0B /* IDStore.h */, - 32CA8CF10AFF6284DDC6E0B008D3FF2F /* IDStore.m */, - B558A1DF0DF86EF02FB44FA2DBAE46B7 /* MMKVStorage.h */, - 6C8504725868A39F09E3FFF4D0A5E3DC /* MMKVStorage.m */, - F15808387AB6C7A111FF6C455A1A6FE9 /* SecureStorage.h */, - 0F72487A94BB4E252CC7309942D924D3 /* SecureStorage.m */, - DCF019AC633D3837A65275E1E41BEBD5 /* StorageGetters.h */, - 67C0A615EC5CE05FBDFF23BFEF29B103 /* StorageGetters.m */, - 0AAB951C7E48D6D0976BFBBFE23D2F04 /* StorageIndexer.h */, - E930EFE217233CB3748BF3259CC7C4C4 /* StorageIndexer.m */, - C36FF5D1A5B1A0456D961B26047AFBF3 /* StorageSetters.h */, - 7EE4C717F5E2017DF21EF0ED8ED107E1 /* StorageSetters.m */, - 60A569A3267557CAD6D1AACC49427736 /* Pod */, - 49744E113C4C3F1B442B605185725E55 /* Support Files */, + AF1408D268049C8C4C54B4987BCA1CF6 /* MMKV-dummy.m */, + 7F97AAC7FE010EE12D88EF627EC466AD /* MMKV-prefix.pch */, + 27EAFBA829581BA87FEDE9EB9EB90DE7 /* MMKV.debug.xcconfig */, + 4A43D940C84100D7A6C80184515B906C /* MMKV.release.xcconfig */, ); - name = "react-native-mmkv-storage"; - path = "../../node_modules/react-native-mmkv-storage"; + name = "Support Files"; + path = "../Target Support Files/MMKV"; sourceTree = "<group>"; }; - E22808753F009160E31EDC41DEE07E60 /* FBCxxFollyDynamicConvert */ = { - isa = PBXGroup; - children = ( - 6940E70BC2B82A3348601D7EB06E6568 /* FBCxxFollyDynamicConvert.h */, - B6AC1192986FF4E613E462BDDD84A013 /* FBCxxFollyDynamicConvert.mm */, + CD9BDF96378B9C21D2300B07FB39FBE4 /* Flipper-Folly */ = { + isa = PBXGroup; + children = ( + F7B50BECA858432EF418DD563163CAED /* Access.h */, + 4592053D0C68A602C15997E94C66E667 /* Align.h */, + 5EF5A53339F7C8BA0A6122E4896CBB43 /* Aligned.h */, + 5CD13DA96F9A4C8599A3E027E06EC6CC /* ApplyTuple.h */, + 5E1472FF99D10835581E8AAFCD67475B /* Arena.h */, + 54D6162A681BB47031E3AA3A4213F515 /* Arena-inl.h */, + 882D99F716F206FFC588CDC394578B99 /* Array.h */, + ED6FC95257E7936177CDEC7059C0124E /* Asm.h */, + 5D98C616DE2F65E2FD843F0D29B73EAC /* Assume.cpp */, + C33090DF54A87168F762E93E9BA72418 /* Assume.h */, + 94C2F6F553845BBCD1EA20039EA40845 /* Assume-inl.h */, + 58E9E86FA73FFA3DFB799C0CC0A0551F /* AsymmetricMemoryBarrier.cpp */, + 51FF4293E7C2143586656CC260F20B3D /* AsymmetricMemoryBarrier.h */, + 6B044D147F3944E7CEF9240526EEF54B /* Async.h */, + DB6FF4B04D43DF300C878F0E323293E2 /* AsyncPipe.cpp */, + 211A066A61C5BB6009F0B0D2C9D391D4 /* AsyncPipe.h */, + F1224CF1FAC20781A12765F7749CA93C /* AsyncServerSocket.cpp */, + 494CD3A819FA31DFDF1577C07F29B117 /* AsyncServerSocket.h */, + 2AAAD906B2C1620324141AA9ADDC3FD2 /* AsyncSignalHandler.cpp */, + 925872547B0958B455C57C81FE6697EF /* AsyncSignalHandler.h */, + F796CA545A9F9C266A8DE3AE34F32647 /* AsyncSocket.cpp */, + 2D2AC3C536ABC9FAA50F8255EC14CBDB /* AsyncSocket.h */, + 9C9458BB8630C31C6B23D6C7E4D850AB /* AsyncSocketBase.h */, + CF19331C4BFCF98FDBF977DB471ED58B /* AsyncSocketException.cpp */, + E19B50AA4726F2C347CC9F9427E40319 /* AsyncSocketException.h */, + BE5D11AEE9A2F2EF5094F9163D11D6B9 /* AsyncSSLSocket.cpp */, + 74EFA916AE075E7F8971F2E1F8FE3FA8 /* AsyncSSLSocket.h */, + 3B4A7E734B466E8E695F9FD689294A03 /* AsyncTimeout.cpp */, + 95EA1CB0FDBF910C585689F704B5831B /* AsyncTimeout.h */, + 377A48B2A92799CCD1E91FA5AD338D71 /* AsyncTrace.cpp */, + 87C00BCC33C5E8F2D5446C505FFE2938 /* AsyncTrace.h */, + 5A4976A678D97261099E360B23DF1F77 /* AsyncTransport.h */, + 7A1BE8B05D59431DA36C8C40AC8F1685 /* AsyncTransportCertificate.h */, + 8606F646A8CB95D290ADED17916FB4C9 /* AsyncUDPServerSocket.h */, + 9DAB5C3C0C54EF20AC6A016F81BCB324 /* AsyncUDPSocket.cpp */, + ADCE13A437B51A8E4DE08350213790B2 /* AsyncUDPSocket.h */, + F098BDF23C2AA20DA0214FC0904F20DD /* AtFork.cpp */, + D67ACC2314FA2B658F92E5F068BFEE0F /* AtFork.h */, + A74F17B32C316E760FA01B2658047F4C /* Atomic.h */, + 9BD2DD1221D8C084608F1C491378119E /* AtomicHashArray.h */, + C08F68C436B1B6C297B66E735AE25FE6 /* AtomicHashArray-inl.h */, + DC5368FFBFCF8BA9818088B9DEA7FFFE /* AtomicHashMap.h */, + 22E34145200027E5B302741EFF19531D /* AtomicHashMap-inl.h */, + D0193B9109E9DE832E6E71E8C07C0270 /* AtomicHashUtils.h */, + 1C6A5034BA4A06F978F99765DEF3F3A3 /* AtomicIntrusiveLinkedList.h */, + 7EA5A61005A36E7CBA14332A2841BAEE /* AtomicLinkedList.h */, + 26A693C18C7E2490192E9F27BDF66E38 /* AtomicNotification.cpp */, + 614D97D81279FEAF80BA11EA8B87E525 /* AtomicNotification.h */, + ECBA40CD1101BF2E0730C1C46F1910C3 /* AtomicNotification-inl.h */, + 40B73320ECD2CAB7B88F207E66F46964 /* AtomicReadMostlyMainPtr.h */, + 86D2FEDC6B5F5E3D2B2B115286B8EB8A /* AtomicRef.h */, + 3E1391F5FEB51B90696E18333144BE1B /* AtomicSharedPtr.h */, + 39F0853AEF38A62339D708F14331F8F1 /* AtomicStruct.h */, + FC01F4B39879A2480D4B6028DAE81BF3 /* AtomicUnorderedMap.h */, + 1B4A11AB4E78A45D7A88405AEAB34EDC /* AtomicUnorderedMapUtils.h */, + 760F69725DE0C3F05950188EAA4AB1B7 /* AtomicUtil.h */, + 8102521A01AA4C0C84BCBE66CE2ED01A /* AtomicUtil-inl.h */, + E55193D3600A210F71F9BEB5BEB6BE15 /* AtomicUtils.h */, + D45BCFCFCF1DB25C0A44A81037793A8C /* AutoTimer.h */, + E3473D58F3FD2F725F1CADF0934C85EC /* Barrier.cpp */, + 6CFF0063DEB6B3513822A10A5D2701FB /* Barrier.h */, + C9CADE12C60EAC1E368649669F8D6BC9 /* Base.h */, + 382DCC36D2825C4806820091A9714389 /* Base-inl.h */, + 8361C68194C6E65F993234F30CD0D120 /* BasicTransportCertificate.h */, + D4D6CCBBE78B400B6423476C4419EEDD /* Baton.h */, + B687F62A32AE1A4320D396AB328D17D5 /* Benchmark.cpp */, + 2BF683C0A6F77183447CC8C0FE004089 /* Benchmark.h */, + C234DB5B3DCA472579F8C0C36ADF15C8 /* BitIterator.h */, + EC301A08BE3237E8EBE79C29BA2180C8 /* BitIteratorDetail.h */, + A075277F9D8C3C4B42DF84526EEB3506 /* Bits.h */, + 81CDFC33E538F32F97337D49F4D80D0C /* Bits.h */, + 0EBD1E83852B9EBE8D2EE01EC0A92D8B /* Bits.h */, + CE785EF183FC8FBB7C41FAAE45962088 /* BitVectorCoding.h */, + FD3A0B4E8CF1B34B3A4E43A21FE9BAD7 /* BlockingQueue.h */, + DA80D3B5DA6531D36906B8D9D79BC6B8 /* Builtins.cpp */, + 5753F0CBA2453565481BB17F6716822B /* Builtins.h */, + 3370375642DB3893F9A0FF2C4DA888DD /* CacheLocality.cpp */, + 4C671BB06639AC59084C4EC4A755406A /* CacheLocality.h */, + 191DA0295160C1B6F24AD7022AD09C6B /* CallOnce.h */, + 5A256A045FF3B5160FF99B16411BEAC9 /* CancellationToken.cpp */, + 137CE9966138749DB6E09866AD79541B /* CancellationToken.h */, + FC373A9DC58CB1F490B80E66B9FE52B1 /* CancellationToken-inl.h */, + EFF4FBF68FC07FD11653947BD8A34BD7 /* Cast.h */, + C76D2EF8CBBC06D9CAD7AA5F180D747B /* CheckedMath.h */, + FDDBDE0E313FFFD31702308B3825DA1B /* Checksum.cpp */, + 7D68A83D62AC5EA286C25D57233F524A /* Checksum.h */, + 8289038768AE1F2DF387C5B3A1608B1B /* ChecksumDetail.h */, + 9FC7EE2E473A597CD0C373812B6AB405 /* Chrono.h */, + E559D9067DC554374AEE83E406D966B1 /* ClockGettimeWrappers.cpp */, + 6BC67F1764F31A03B7BB1DE84A5605F3 /* ClockGettimeWrappers.h */, + 66E6376475EDC1D49C093FB33AE95C58 /* Codel.cpp */, + 13FE542E8B4E1C351E47CAB1EDE5D250 /* Codel.h */, + 5FB534B9956DB74ED567203C9FCD9E4D /* CodingDetail.h */, + 357F2C617D5EA562E3B1F7260E66B9DE /* Combine.h */, + EDB7E6AC9EA604F902C8BA66329C6727 /* Combine-inl.h */, + C1E0B3DC529E43C36C8197D5F584CCF1 /* ConcurrentBitSet.h */, + FE1CBD37357CD9E7632A37818BB633A1 /* ConcurrentHashMap.h */, + E9D56396B82765C9C86F9435AABF8ADB /* ConcurrentSkipList.h */, + 91DD6CF3D9386064908C8DF3737E49CF /* ConcurrentSkipList-inl.h */, + E9D69DE3A4C9582AD3FCD7AF84477754 /* Config.h */, + 0694EDDE053361188526595B567D3F78 /* Constexpr.h */, + 71517FF808D8631FF5B5D81F43696874 /* ConstexprMath.h */, + DF4299C534A9167B8BCD112ED4910DFB /* Conv.cpp */, + F98E3134D65976FD9479A6B6092A7F53 /* Conv.h */, + CDE0A0AD204BBDC0BBF8F8CDD50CF5FF /* Conv.h */, + 38B02FD349B5891A324F2AA5DDF558C1 /* Core.h */, + C98F8A6219BAF0591622EA375658E571 /* Core.h */, + 8C06E9E4DBACD6B7AC74F8A408C4C78D /* Core-inl.h */, + 631628EB6538601CF68050AB86DED8C7 /* CoreCachedSharedPtr.h */, + 6C6C02FB8661B432E4557DEB3900F047 /* CPortability.h */, + 7BB137BF7BF5201BDF328D62857222C2 /* CppAttributes.h */, + 31765A528D343C0F64693199139E4A7A /* CpuId.h */, + 7DF1E9E210D354D670D9DEA8E812714B /* CPUThreadPoolExecutor.cpp */, + 120DFDBF4590C4F27F513CA252284B8C /* CPUThreadPoolExecutor.h */, + 7459E86C3FF0ABD96F03069BF653A534 /* CString.cpp */, + 6B522FC5A103FFFA4A4CAD36C0BD8360 /* CString.h */, + 11DF038B3CD26D41991303A4297AFBB8 /* Cursor.cpp */, + FE71AB6ACE29182C54F48975A052D5FA /* Cursor.h */, + F65D143C60A6A95F37D9162CEEBC6D75 /* Cursor-inl.h */, + 4AE9A813378088DD3354A41B88EE8A37 /* CustomizationPoint.h */, + A3F0637DFD5FDE161664BF407B7FC4B3 /* DecoratedAsyncTransportWrapper.h */, + AF3EC9BE7E477CCA5AA4752CB8907463 /* DefaultKeepAliveExecutor.h */, + 8975E292CEEE3C61037D2441278175AB /* DelayedDestruction.h */, + 41C7DF93FE6BBC6A992A84170F904509 /* DelayedDestructionBase.h */, + 9147608CCF3C8761308CE5361DBEFF50 /* Demangle.cpp */, + 0E1BFF425B21CDD748621BE4464F342A /* Demangle.cpp */, + CE091935A1DE9BA3CB8F71FAADE961E3 /* Demangle.h */, + 245B92E7BF4C8649A6BC46C4CBF49272 /* Demangle.h */, + D374BA343D3CF4DC839241C8B3F14C24 /* DestructorCheck.h */, + 5ECA6DC5EBB270FC1F70959F4FC3B83F /* Dirent.cpp */, + 1181BB71B1C6A226360E4FF72650765A /* Dirent.h */, + C84F6A4F3C8674A1931287A3ADC662ED /* DiscriminatedPtr.h */, + 1D7CA54C3CC5E6931E2862151529CC7E /* DiscriminatedPtrDetail.h */, + 41D2649D951EA67D9849956E90AC00A5 /* DistributedMutex.cpp */, + F54EC49EE27595E7E1A857F791CC1C27 /* DistributedMutex.h */, + D5DF871E5541F85348A02BB5A56F8F6D /* DistributedMutex-inl.h */, + 471959F080EB5F6566C9E165FCADA6E7 /* DistributedMutexSpecializations.h */, + 22924EDF803EDB7420D35F4C7D0A48E4 /* DrivableExecutor.h */, + A1CA3D1269334D265DC34656C0E265C0 /* dynamic.cpp */, + DF9128C5BE69B6D2BADFA8FC0035EFD0 /* dynamic.h */, + F7D383BE946449E81482E0C52DEEAA2E /* dynamic-inl.h */, + 58C124214334D215C571233F174C083D /* DynamicBoundedQueue.h */, + 17A3726E8A87693071F75BC68A931302 /* DynamicConverter.h */, + D6B0C7E4DEBDBB2E175176E7E5FD6FAC /* DynamicParser.h */, + C70F4E086F9A06BF9983AE4769ADEACE /* DynamicParser-inl.h */, + B86B10A33F3C3D54F749DF9E17558B5E /* EDFThreadPoolExecutor.cpp */, + 46BBC9B222608E0E230078D3521E37A2 /* EDFThreadPoolExecutor.h */, + 2C3592BE45EBA489DE146D264014AAB4 /* EliasFanoCoding.h */, + 6ACDE8FBC2D45B04D9E83B7E04E66E66 /* EnableSharedFromThis.h */, + 37143F1C896D1FFE32C7DC1480F6F0A7 /* Enumerate.h */, + D076A104DC0E6EFC414C82042DDD1B94 /* EnvUtil.h */, + 0BD13C95C12A0845B251BAEF7C0E30A1 /* Event.h */, + 1CF6E15BE461120372F834677473B4EA /* EventBase.cpp */, + A23A4947A1B36DA2A9D086CE451C65B1 /* EventBase.h */, + 901206FA466E71B8B154836EB931AD2A /* EventBaseBackendBase.cpp */, + 2C5022D3987113C0B01B2E82CD0B910F /* EventBaseBackendBase.h */, + 29CBC3A2E60A8AFE6E309183A1094450 /* EventBaseLocal.cpp */, + C523B1BC29A1768450EB25F94A158E36 /* EventBaseLocal.h */, + 6B9D52116EF29753E11DFFCCCD9A8FD6 /* EventBaseManager.cpp */, + 7500D79607601E54C692678FF301E5D5 /* EventBaseManager.h */, + EEE22705C82A7BD89B0F93A476726B64 /* EventBaseThread.cpp */, + 73FE7CE15D9FFDA6583FFF20364AE989 /* EventBaseThread.h */, + 448EE70C74D8056C9F32589D95374F71 /* EventCount.h */, + 38C183BA2BFB15963EB1545439905DC3 /* EventFDWrapper.h */, + E929425F5DCAA5C70F87531A9D4C0899 /* EventHandler.cpp */, + E2109A456A1AD90F143C45FF3B76ECC7 /* EventHandler.h */, + E925EBA91ACA78CE2B3EB8CFC56CE146 /* EventUtil.h */, + C9D10192873E10EBEFC0FD929A4FDF2A /* EvictingCacheMap.h */, + E058DE8168AA55FCA6654A0779ACB92E /* Exception.h */, + A38B26C9211D7346DB821D290C901A04 /* Exception.h */, + AD3E68E6F82A75FE3EB0FD47443FBD54 /* ExceptionString.h */, + 306A7746A817174FB49080AC18C2D568 /* ExceptionWrapper.cpp */, + 40E4547F4925B916A078D86AF0DE87BD /* ExceptionWrapper.h */, + 6AA394CBC0B7CC55CFF2E907AA8CF676 /* ExceptionWrapper-inl.h */, + 74BCC8607C10CB05E4D0CD3BE3AC4F9E /* ExecutionObserver.h */, + 84BC7F3D2DF062075DCDB5DDFE548AD4 /* Executor.cpp */, + 96C47B2C14F09F0CEEE92D97B1AAA4F4 /* Executor.h */, + 9F7FADD37C3F8AF37C3CC95F95D63C9C /* ExecutorWithPriority.cpp */, + B546841AE02F300AB74A33E2E4B8BF4C /* ExecutorWithPriority.h */, + BB16EC06441BBAD5366188EEF93E012B /* ExecutorWithPriority-inl.h */, + C59D3539338B1EF05CAF60908628092B /* Expected.h */, + 4BBF9AA19AAE13068A6CEA2177ABF545 /* F14Defaults.h */, + A5235993A2CC8CCA3E412EDEE60755AF /* F14IntrinsicsAvailability.h */, + 5CAD86C6BC3B88ADD8266DC70ABF154B /* F14Map.h */, + 41B65593E50D50EE5DA6B750C435C308 /* F14Map-fwd.h */, + 726369BB028B98D11DCF83EA88A6757B /* F14MapFallback.h */, + 50B74FB029CC42CDD6EF08D625FD4079 /* F14Mask.h */, + A4ADC28707C7AE3D5341C32BF03805D7 /* F14Policy.h */, + 9676C3DB7DFE23361D6B1FF98E9CEF18 /* F14Set.h */, + AB9A84570B7996820AFE57ABE338509F /* F14Set-fwd.h */, + C2FF2D65FA94C18434A0AF49D567C8CD /* F14SetFallback.h */, + F9F69C168B48BE3FC825F189D5FF08C8 /* F14Table.cpp */, + BC850027576B40183C5DBB2AA9E3D153 /* F14Table.h */, + 2522FA2658B5FB789B1D3E0BC9F6D20C /* FarmHash.h */, + 9D3329D2E4370FE6072579AC125814E7 /* FBString.h */, + 82265ADB9104D0423AEC16B15C031E15 /* FBVector.h */, + 35C32ECC9FF89242B7948ACB3158C6F3 /* Fcntl.cpp */, + E3CC73C5AF7227BD689ABCDCAC176D38 /* Fcntl.h */, + 5DAFD84672A3711B7F659D30A888C759 /* FiberIOExecutor.h */, + 5908050CC9096362A81C4A76F22235AC /* File.cpp */, + 4B0EAC37628C752F28BA38DE3F437940 /* File.h */, + A85D36FF0E68AA85158F238FF245A5A1 /* File.h */, + FFE3A2934B2A92FDDFFA491390C78526 /* File-inl.h */, + 793834A6F24BC13804CDDC0DF5FD1339 /* FileUtil.cpp */, + 4AA7837D4649A9BCBE7ADCB8738428AE /* FileUtil.h */, + ADCF5534828DB3CD3A9DE9523DC4C1B8 /* FileUtilDetail.h */, + 69ED92C27C57BC7D8C608891AB0C03F7 /* Fingerprint.cpp */, + 3B4330915FBF9E480ABB0763353B6AA8 /* Fingerprint.h */, + 97C85C41CE66F2DB92F38874F06E6344 /* FingerprintPolynomial.h */, + D9AA0E58A17A0123CBB2163F5A4EAAD7 /* FixedString.h */, + 80A40C142654D89B5BD4503733E62435 /* FlatCombiningPriorityQueue.h */, + 76D98B03F725F9FA39EACB0C80231C84 /* Foreach.h */, + A99AE43C0ED933C968518E5C8CCE6085 /* Foreach-inl.h */, + 042590CFF9F29612616F3E0B9C5C5622 /* Format.cpp */, + B01693F81A1CAD93402D7E2E150E6331 /* Format.h */, + 12C6E79026E78E2DBF6C749EAAFA6494 /* Format-inl.h */, + 67B8AA18965A5E0F122C5D0B060DB3C8 /* FormatArg.h */, + F348C17160791B418E4FCA6FE14C7C5F /* FormatTraits.h */, + 053C50443DEEF5963D7872427E38B8D8 /* Function.h */, + 19687C02E09933133EB049BFDBB8BD5D /* FunctionScheduler.h */, + 840CD15E3AF1BBA51C82C1C8F8440D02 /* Futex.cpp */, + 76252819B783B21EA5EBCC15F2027CA3 /* Futex.h */, + 813B160069A2D6A422253431B5B92A23 /* Futex-inl.h */, + 2EBBD655B44823D31A908BA6C3B96697 /* Future.cpp */, + E518A968D204E2B4A079F40115E26296 /* Future.h */, + F37EB6A0766E146E621A1D6868989631 /* Future-inl.h */, + FDFCD3E6441FC713AC2E8D93658F0058 /* Future-pre.h */, + B8FAFFA070B07CA0DB9F87AE324C23EA /* FutureDAG.h */, + 6DBFBD43A91B1A8FA1E5BCD2E75B1630 /* FutureExecutor.h */, + 675A945801C1B7102F5202738222DADA /* FutureSplitter.h */, + 1C97342A3E9D7DEF1AC86F5B99518105 /* GFlags.h */, + 209F98B2A40B8810E62B1FC946410AA9 /* GlobalExecutor.cpp */, + 60466E2EB138806E69B30C748843ACCF /* GlobalExecutor.h */, + 1A0EF8B2BC80C6EC5E6B732596FAA0F4 /* GlobalShutdownSocketSet.cpp */, + 19B62BF389FC5982BB36FAA0D17C0662 /* GlobalShutdownSocketSet.h */, + 7D6E9E3E829A40EEF1A1AAD55F30B222 /* GlobalThreadPoolList.cpp */, + C30636F41EC13C7EB5E5AA7CB7506F7C /* GlobalThreadPoolList.h */, + 48B530767956A8A0A2ADE12FA08286EC /* GLog.h */, + BB6373697896307C1CF75D0F24CEABC4 /* GMock.h */, + F7DECC70BFE17F20696B8FCFB273831D /* GroupVarint.cpp */, + 678E3002589DDA14061695B8B139AAE3 /* GroupVarint.h */, + D68049508BF0E5CC421C7CC5DB78B59A /* GroupVarintDetail.h */, + EFAD5EE7E50BC426E4036746EAF035F0 /* GTest.h */, + 1FA8B920DE7C39C8F61C5628BAA95663 /* Hardware.h */, + C7124A00A370CDCBF3C1270C969985AF /* Hardware.h */, + E3EAF96E3C845AC45913410509630EA6 /* HardwareConcurrency.cpp */, + 0F852748CBF2D7F24EEE4BF4DD0D4B44 /* HardwareConcurrency.h */, + 852FB1A3F85A83904943A8C9F5056B49 /* Hash.h */, + BC876C52B8F5AA5AA56F08028D17C48A /* Hash.h */, + ED1FC1838AC20AA29DBAE02E95FAA743 /* Hazptr.cpp */, + A8F550FC3C93B3A025BC59A59C8DFA40 /* Hazptr.h */, + 87BFE9FCF390938D469B498A36BE6C69 /* Hazptr-fwd.h */, + B39E4C3BF6FBE891D24FB9FB58B1A83A /* HazptrDomain.h */, + B8407499D8B29EE08B4B629AE7F04EBD /* HazptrHolder.h */, + CC78E64FEF64E7E898E5132651878B0A /* HazptrObj.h */, + 827765BE7CB51576FCDF1D3B59CCCC35 /* HazptrObjLinked.h */, + DDA78673345D42E2C2AB52A9ED40D16C /* HazptrRec.h */, + 440C948F725E90FEEDE4736FEB50E0A5 /* HazptrThreadPoolExecutor.cpp */, + 963D100AE3F34EC8E0415BDE41ED843A /* HazptrThreadPoolExecutor.h */, + 6C9FB5380FB1EDDBCDB7457FBAF3B916 /* HazptrThrLocal.h */, + 6A7D0400B2A31BC8268318043C7C83FA /* HazptrUtils.h */, + F5FD9615C9387CDEF7E5BBFC5D2FAEE8 /* HeterogeneousAccess.h */, + 24C7FCC135FC406035CE40FDC263188D /* HeterogeneousAccess-fwd.h */, + 33285BC0B5AD55172387D11630F57543 /* HHWheelTimer.cpp */, + D8B3766BD51485AF86C68E0F8988ADD2 /* HHWheelTimer.h */, + A331DA9E6FED246046610474DFFF9506 /* HHWheelTimer-fwd.h */, + C6A9B7C171935C751C2A5DF89DA9F388 /* Indestructible.h */, + EEE4B84A16F6FDFDD94DE3D376866E57 /* IndexedMemPool.h */, + 0C33AA1BD6A7309D81776A617E4B7EDF /* Init.cpp */, + 7970FA004C5939305C62132D7E5D0166 /* Init.h */, + 7C09D822B4DF504D9A136A56FF99D342 /* Init.h */, + B6CDB36AA30B88F08031095EE0019709 /* InitThreadFactory.h */, + 5A9E72DFF1EE3CE1C146BFDDA71663CE /* InlineExecutor.cpp */, + 3E9A76ACFE187697991B64661B1FC349 /* InlineExecutor.h */, + C56930969E532B06DF7C516F3D45D20F /* InlineFunctionRef.h */, + 6B210EFE9775B601C94CD70CDD1C8F12 /* Instructions.h */, + E4B0D417A284D85E11C0002AB9A27794 /* IntrusiveList.h */, + 1910682A0F88675E924A1B73E0E37BBB /* Invoke.h */, + 710BC8F81F420FD99A02B017A3ADAE0F /* IOBuf.cpp */, + CEDEC16D242D3AB6AC66BC65C614B468 /* IOBuf.h */, + 4F413A04A3B4C83265FDF5F6F3F7FE53 /* IOBufQueue.cpp */, + 531B75F2A324E32931E4288AC13D9DC0 /* IOBufQueue.h */, + 564236AC06A67E7906BE90C1450FA3F2 /* IOExecutor.h */, + 61520A8CC6E222A61F1C7F43272B0F61 /* IOObjectCache.h */, + 1F4DA30E9E47E418AF24A7BCFEA48801 /* IOThreadPoolExecutor.cpp */, + EE8DD79105FD6CD7F21384E0BB0B584F /* IOThreadPoolExecutor.h */, + BFAFF725F0A6788E42AD5BD768D7EC8A /* IOVec.h */, + 2E95ECA446B2B2218286127C64EE4608 /* IPAddress.cpp */, + F9C5E346AB4ED6F02FF894D0747C22DC /* IPAddress.cpp */, + 5625A048FAFF3886B166D7F63E28317B /* IPAddress.h */, + 86B01BC34D95DA92361410E019C8A9A2 /* IPAddress.h */, + 451A4DC3ECA60617ECD97A3513BABDC4 /* IPAddressException.h */, + 833D4F2E95FED6F014CE233AF0AF26A9 /* IPAddressSource.h */, + 8ECD57833AD52E56854CAE6C4AED24D4 /* IPAddressV4.cpp */, + F93717F4C8C2112025E8814378E75D48 /* IPAddressV4.h */, + 54CD2909364338BB6E2A33BD23CF3993 /* IPAddressV6.cpp */, + 57A5EFBDFDD084412B6D2D5F28C9E6F3 /* IPAddressV6.h */, + FD0FDF2E56B08BF4D8E5232371099E8A /* IStream.h */, + 0FAFCA4F6611BEE461E87F168FD164B9 /* Iterator.h */, + 726F23C48C488E1AF98C98786932FDF1 /* Iterators.h */, + F9A13D88A9905A8A572B112E6BCB497F /* JemallocHugePageAllocator.h */, + 5775ADFBB74ED75DEFFE18D8CA627FAD /* JemallocNodumpAllocator.h */, + 94206CF6E7B7962F10AA8B2B1B313F9D /* json.cpp */, + FE42936A36A0F14375B8229211963068 /* json.h */, + 6AC34E7F3A5A712ED59C6A7096763FE5 /* json_patch.cpp */, + 76C44D2EB10A8D6EAD5158565F3B4133 /* json_patch.h */, + D4F83753BDBC8E000744C90B985EE321 /* json_pointer.cpp */, + 9581BCB540B6DE2B8B6715B36CD5D069 /* json_pointer.h */, + 03B9B1E4E5756EB2EC8357BAE37DEB0B /* JSONSchema.h */, + 900768324A4F17DD15851A07B2A18578 /* Launder.h */, + 6FB19E0C817B782B82874230D900D548 /* Lazy.h */, + AD6EC1CE10CEE5E26692EB97319A576F /* Libgen.cpp */, + 54A22B6DED609572B1BE3E94A925754F /* Libgen.h */, + 2C6CD5096556A39C355942B27E200401 /* LifoSem.h */, + 57FFD5B54DBEC11A0471671A073B6D12 /* LifoSemMPMCQueue.h */, + 03CA8ACCFAA3400C254D74BE3BC8FC2C /* Likely.h */, + D85A369EFBA4BBD7BB63FCC9783D4A51 /* LockFreeRingBuffer.h */, + AB8F60078DBFD9815D9D7E54C3F811CB /* LockTraits.h */, + A7231535DFDA30875B03E9FF8662F2E1 /* MacAddress.cpp */, + 006F33D73E48AE2F8240FE1902056A9A /* MacAddress.h */, + 332DB231FEF514DE507C28F81E6E68C0 /* MallctlHelper.cpp */, + EF6A3687A89707FF71DBAC25B3C28AB2 /* MallctlHelper.h */, + 18778C863C7A06733D8CBC31F03817AC /* Malloc.cpp */, + 6E7A6AC098EA7FC4D802E3FD91654402 /* Malloc.h */, + 7A06BEF117B7D676C86D7DE2A046C9DD /* Malloc.h */, + 18534EB342673A74174C38DFF2A88228 /* MallocImpl.cpp */, + B68269625DEDC5C2F2A7174D46F8D226 /* MallocImpl.h */, + 618FA9408310D1F9AC23A222D04FD512 /* ManualExecutor.cpp */, + 3ABE255032543017699AF31C85725309 /* ManualExecutor.h */, + DAC3018CB7636026856C12EC99B1754E /* ManualTimekeeper.cpp */, + 591AE380546519313FCA87162C91463F /* ManualTimekeeper.h */, + FE7517475BAFEC22D43CB0FCFF157263 /* MapUtil.h */, + AAC545D81CFA3EBA6BDC48096E92BE57 /* MasterPtr.h */, + 8D0932134BE08040CE2AF1A84596E95D /* Math.h */, + 0EC254646A73F5365011337CB12D6D0F /* Math.h */, + 2F321148255C10C01F2875BF5C7DB5AD /* Memory.h */, + E0ED632A690028C20D54E6F3A7876D12 /* Memory.h */, + CBF81007BEDC4D0CC875B7F05BB3F250 /* MemoryIdler.cpp */, + 77262912BE00AA027F8A8E95643F00B9 /* MemoryIdler.h */, + 318129C519E42C3796085EBA02B8AE78 /* MemoryMapping.cpp */, + 30518943DE86793C6B9D17C50AAB8622 /* MemoryMapping.h */, + 281152DE90BFBC5E9484FF8CF2828A7A /* MemoryResource.h */, + BE88319027CF3F72369EE2AD402EE208 /* Merge.h */, + BD15CE40B518BC6FFE519660FEFE7ABA /* MicroLock.cpp */, + E98ED8687320DD7F5B1A63F0E263BE94 /* MicroLock.h */, + BA739C03B0E7AE13D575D4822A0E9810 /* MicroSpinLock.h */, + A19B3641972DFDEF6C610329D938A577 /* MicroSpinLock.h */, + 2AC9D7D097D078CA6713ED5CEA156FDC /* MoveWrapper.h */, + BEA197A86A523FC2F0293A232E2ABB08 /* MPMCPipeline.h */, + 565020DA4DB2607E820FD854333813D0 /* MPMCPipelineDetail.h */, + 5DB6D4BFADE9E179B6CE6211B5C9535D /* MPMCQueue.h */, + 08A09F0B00BD8770C1FB2B68A3E816FA /* NamedThreadFactory.h */, + F855D000A6931352CA53740EF0A8A551 /* NestedCommandLineApp.h */, + 34B6397D2A0478171396C115517087AE /* NetOps.cpp */, + 0B33D0495A2346C54731C56B6BC40E95 /* NetOps.h */, + 1AAAC6D32A5E08F0812580035A31496B /* NetworkSocket.h */, + 38EB86AFE8670A463FA6BD943A58F830 /* NotificationQueue.h */, + 3296480C9430B68D8799FCB88CD1C0EA /* OpenSSL.cpp */, + BAC4C285C8767C71E34E42BE3FC409D7 /* OpenSSL.h */, + 5029B7DBFA20537B8F3D299D3365BC07 /* OpenSSLCertUtils.cpp */, + E85DBCFF9F297181E55A74A8EEF65F52 /* OpenSSLCertUtils.h */, + 048A1AD73FA5151FB809025ABF5CAFA5 /* OpenSSLHash.cpp */, + B18D8BFF70F1BFE1FAD743784EB04A32 /* OpenSSLHash.h */, + 6E5C3742D50D6011C12F48A3B842E585 /* OpenSSLLockTypes.h */, + 85F8663181D4BEFD7B47A1D9A9981D4A /* OpenSSLPtrTypes.h */, + 5C16693E94A226699E21DCFEF6C01428 /* OpenSSLThreading.cpp */, + 043BCDACE8EA56CC42EE0C736713015C /* OpenSSLThreading.h */, + 57E1C8E6FFB110822F4AA89BC3B8D2E5 /* OpenSSLUtils.cpp */, + 6632568D1312BA837B2053B99D777AE4 /* OpenSSLUtils.h */, + F7B64BBF9802E85831BA749D87FEFBD1 /* OpenSSLVersionFinder.h */, + 6B6E6F0A8CCB5C16B30A179313728A4B /* Optional.h */, + 0B838D9D6DF88EDC387CDC9D18E62515 /* Ordering.h */, + F056CE86E8BEF0CA9C81C45C0AC39494 /* Overload.h */, + 7B29016295CBD32A39B5FE060D4C5D84 /* PackedSyncPtr.h */, + 82BB956AEDA8DF0B9321C43CCC62EDF0 /* Padded.h */, + D87C636CDA6C03A6EE02D87E582E9826 /* Parallel.h */, + 1316C0CCDE428C84FBD7BE654DBF34F8 /* Parallel-inl.h */, + FCB4E3FE7B23D24CC3159DAFBA8933D4 /* ParallelMap.h */, + E0474F716A1CA75CFAF802B2DE4D95B1 /* ParallelMap-inl.h */, + 92AA7A8871EC7BD75F099AC1FBF339D8 /* ParkingLot.cpp */, + 9A88FD44E8CD2626AE7F2D2681C1696D /* ParkingLot.h */, + B97E15C16CB8C9D848ED71929825BD2A /* Partial.h */, + A80A50525BE9BC48A9652F07AD5F7A61 /* PasswordInFile.cpp */, + 347F47FAE5B2B7AF04BF3A6796417DD8 /* PasswordInFile.h */, + 7CDC2BF2167D30FC3070F13FDA7AD2A5 /* Phase.h */, + 3422B976058623B73B07D29CF203DFFD /* PicoSpinLock.h */, + B8A8FD6E338F770746C2515FF05ED4E3 /* Poly.h */, + 4ABCA1CC303D147BD5C5827FC4E7EAAE /* Poly-inl.h */, + 60D57327D42ADF428835C46A86B42192 /* PolyDetail.h */, + 37AF08B609587CF2F2B7DFE083728C9F /* PolyException.h */, + 711AD9D5299E2DEC433AEFA83C10FEAA /* Portability.h */, + 26B5C42151EC86C5ACAE9945FEA65EEE /* Portability.h */, + EBDCD2C2A1B8831B8C5993F9DA647E96 /* Preprocessor.h */, + 2A5D7AB7198DAE60B2A8928D766760D4 /* Pretty.h */, + 69C4452A150A7ECF1CA79C8435FEA50D /* PriorityLifoSemMPMCQueue.h */, + 3B64DF0B9A39FF28BE6E5A469640DDC9 /* PriorityThreadFactory.h */, + 05FEF18BBE69CEA1E69CCFCDCA99C400 /* PriorityUnboundedBlockingQueue.h */, + BB51EAD13717EEAFF17982B9A4B2D2EC /* PriorityUnboundedQueueSet.h */, + 86E622B354BC8BF6AB06EA1630F4405D /* ProducerConsumerQueue.h */, + 6492EDEF88CA1D527C6BEB10E7440F08 /* ProgramOptions.h */, + A9CB7A325F6C4A8CD958B643A1CA5898 /* Promise.h */, + 4060AAB365A8B4BC247E2712AD2FD877 /* Promise-inl.h */, + D83E5303B275BAFD350DF4571C18EBF2 /* PropagateConst.h */, + 7D88CBD1547D70BDD6CAE506B1D38851 /* ProxyLockable.h */, + AF6354181882A3184F2A8406B0A7F9CD /* ProxyLockable-inl.h */, + C3A4C29F98C2DD45327F6406A9C707B7 /* PThread.cpp */, + 4DD2A697C6CED6FB3094F355F3DED273 /* PThread.h */, + 5221316D2DBD7CAD19A71B180610681E /* QueuedImmediateExecutor.cpp */, + 138C0F6559EA9BA0327EBE7EACDB80B0 /* QueuedImmediateExecutor.h */, + 4B6D85DBCF4A8BF56933AAAC6B61DD88 /* QuotientMultiSet.h */, + 113CD7E4AE12E20259360D62FF5B014B /* QuotientMultiSet-inl.h */, + 684A13CB17F071F18471277B50CA0442 /* Random.cpp */, + 20E4E6251BFD115F6262212735947A04 /* Random.h */, + 848B80631BB2492604EA5772DED5CE53 /* Random-inl.h */, + F31F4D18704D4CF5DDE0B84BA5B40818 /* Range.h */, + 0FBF9B744930F8653A9076072C717F10 /* RangeCommon.cpp */, + 88A324E2CF5D2EA60403FF1941DA90A4 /* RangeCommon.h */, + 4038167DF645ABBE79A04216181C2F39 /* RangeSse42.cpp */, + 27B20B0DAD21A07EDEA17DE882571FA0 /* RangeSse42.h */, + D78C9FED5967ECD5F3492058FC4D879D /* Rcu-inl.h */, + DD26C00ED1F1F50D771825F0D69AECAC /* ReadMostlySharedPtr.h */, + 6AD39D6B4FFC40F5691769E9063987C5 /* RecordIO.cpp */, + D35714F1DE1B673DFFF46E224E8134DB /* RecordIO.h */, + 91B2FC67F492B2114B67A1B2429ADB6D /* RecordIO-inl.h */, + 2F749C15C850BC900B0B79B0CD423FF3 /* ReentrantAllocator.cpp */, + 9BE222E8B158676246FAD50D29C872C7 /* ReentrantAllocator.h */, + D36008AB5F7A1E20D537906402F61D07 /* RelaxedConcurrentPriorityQueue.h */, + 83A335C4538E99CD1C2384D1277EF98A /* Replaceable.h */, + 9F47A09925FF12045E3D2DF13989F980 /* Request.cpp */, + 7CC1DB286F42191D2EAA8C62A3572B26 /* Request.h */, + 57A3DDFBF93551A9D6E44B573799103C /* Retrying.h */, + 5A8C79704538C86E3469598FB7E44944 /* RValueReferenceWrapper.h */, + 70BA592C2BC4B1F94DBE0DBB01B4F293 /* RWSpinLock.h */, + 87413EB62FE0622ED938C3FEC62C3B72 /* RWSpinLock.h */, + E81D6597FD41EC2250920BE7EA8BA98D /* SafeAssert.cpp */, + 4122EFEF1D07D4D60C23EB15CC4596BB /* SafeAssert.h */, + 9F768F04C38BAF84EA1352F285207C37 /* SanitizeLeak.cpp */, + ED545A7415C735944B0CDBA23CCD1C7F /* SanitizeLeak.h */, + 4D7A61F51B5A3C006A8F8AA3FAB893CA /* SanitizeThread.cpp */, + BD86AC1F3317A7CFA77DBFA2CA11CE98 /* SanitizeThread.h */, + 08A59F0DE37F1C78D22058822CF368F8 /* SaturatingSemaphore.h */, + 888E9E85FBD7EDEB00EA983CE35E6C30 /* Sched.cpp */, + D0264B1AA2FEBFDA697D93A28E7A2766 /* Sched.h */, + AA686A002FFDABBC06150D2F2FB3EFEE /* ScheduledExecutor.h */, + E314D4C2C6C65DFF19CCAEA88EF912E3 /* ScopedEventBaseThread.cpp */, + 17CEB2C18AD7BC3A2DA630CFE3519CF7 /* ScopedEventBaseThread.h */, + 4750A4F4690455F89FDBEAB617A89513 /* ScopedTraceSection.h */, + 7F6240C6D4FC977D7D5EAC1F509F9466 /* ScopeGuard.cpp */, + 5FCFAEB741CD44BCBE6FE826FE96A90E /* ScopeGuard.h */, + 22FDC9A6956563AE2CC1CCCE72FE0C17 /* Select64.h */, + 82FC21C6B790C0A4D4F723B59261612D /* Semaphore.cpp */, + 5D89DEB814977A437FD107EF1C5CB55E /* Semaphore.h */, + F5E2B237BFC19F48FDF152EAA9B894DD /* SequencedExecutor.h */, + 14974ACFB8319826184345805AE1BA56 /* SerialExecutor.cpp */, + 577681BE3D01B38591AC114E0D73DE94 /* SerialExecutor.h */, + 3963CCCFD49EB7D7F53CB7B0F98ECB5A /* SharedMutex.cpp */, + 4AE26825253BF5B34B42D1707DA20966 /* SharedMutex.h */, + 21AFBFF58BAA3F1715D6C5905343CEC6 /* SharedPromise.h */, + 8A3CD1724E34DA7DB517E1335B01419F /* SharedPromise-inl.h */, + 5F845C0B61702CD74C70D2F1C766B063 /* Shell.cpp */, + 83E1F52A529547ED2249399456C54875 /* Shell.h */, + 24337C6D6BEC0E513105179D48438335 /* ShutdownSocketSet.cpp */, + CE8E01EDDBCB255B9EE76CCCEC2040FA /* ShutdownSocketSet.h */, + F57554B8798B821B86D33DA39C44C6F7 /* Singleton.cpp */, + E1017FC1A561D5627004E40633BED2A9 /* Singleton.h */, + 3D5A8006CE66052958B098C57B19D164 /* Singleton.h */, + 6A3BC0554BF40ACE6A8748267F84038F /* Singleton-inl.h */, + F074BE2BAC445D8077F083CE97035C93 /* SingletonRelaxedCounter.h */, + CD9EA923835F8F0DC093F10A4C280953 /* SingletonStackTrace.cpp */, + DABDBD196E6571BD342353CF5AA6740F /* SingletonStackTrace.h */, + 380D7607FB8910E25D6677BF663DA183 /* SingletonThreadLocal.h */, + 999A317D20118A96C8F8EA0DA2DA2CF9 /* SingleWriterFixedHashMap.h */, + AC6DCC72636F3B12FA8261D13790492A /* Sleeper.h */, + FD4F74679C5E74C71997193C5A3D3FFC /* SlowFingerprint.h */, + 8D2E471C6C5C2E2936DC0F3469F01C84 /* small_vector.h */, + EC3C8F1E41FBE855E1C2FB179997DDCA /* SmallLocks.h */, + 6C441F046FA88319E6A693637155D6B4 /* SocketAddress.cpp */, + D36806D4A591121A6A341FD898291244 /* SocketAddress.h */, + E3D8666BBACE87E4BE1D6B8FAC65D0C9 /* SocketFastOpen.cpp */, + E7D7E5764E0D01068DAFEF7FE7D871CB /* SocketFastOpen.h */, + F4B8D69415A8D7A469F7EB8AD4E07DB9 /* SocketFileDescriptorMap.h */, + 14AE3D2010971E8953CA13E52B3A3D3E /* SocketOptionMap.cpp */, + 546F60E8025B56327E8A6A5C195B0E7B /* SocketOptionMap.h */, + 8695161EF7E1488C1979CE1D901E53C6 /* Sockets.cpp */, + 5E96393EF5F2E715A2A4FB38477CC360 /* Sockets.h */, + 1EDD7A050541CECA5F6D85542968D756 /* SoftRealTimeExecutor.h */, + 548DF976B1BD813F08E0D2564004319C /* sorted_vector_types.h */, + A60637556B2A0F2278472AD01746E6BF /* SparseByteSet.h */, + 9C4715389C063A644FD9B1177AA7D2AD /* Spin.h */, + CD4BD38B816D63A9E21E04313DF74D02 /* SpinLock.h */, + 8BB9A3156E531E27C6E092ACDCB58F0E /* SpookyHashV1.cpp */, + F790966EA07A4F943FA0BF5E98CF2091 /* SpookyHashV1.h */, + 2746101C4A665ABA35C6E5805E1B69E1 /* SpookyHashV2.cpp */, + F379A2FA213B159CAA445AAFC58A1691 /* SpookyHashV2.h */, + 0ECBA4FA12CEF0520FBC3BBC96067938 /* Sse.cpp */, + E6318B70E54C826E673F6F63003CADF4 /* Sse.h */, + 203BEA05B06B2E1A1534E494846FD7DE /* SSLContext.cpp */, + CBA7F0902B9323448D6EF74B5B5DD7EC /* SSLContext.h */, + 0A10EBFACCD271C893BFF7AFBD61C0AA /* SSLErrors.cpp */, + E9276909B746B950BCE40B6DEE214CF7 /* SSLErrors.h */, + 784FD7583D62A924B663A5FE124B482F /* SSLOptions.cpp */, + D78B65C229F9D0E7291DEFF4B6725894 /* SSLOptions.h */, + BC828387E0BD6C1F14CD1856FC3E6777 /* SSLSession.h */, + 26C21E1F4F4D836C1C4ABBB9DB9F2E87 /* SSLSessionImpl.cpp */, + 52E2B0BEB8C4F7BEEAB90F39920D084B /* SSLSessionImpl.h */, + 7E27EFE4910AE5DC5AFC602ABA55139A /* StampedPtr.h */, + 1194EEDAEB70B9943D93B72CC6101C03 /* StaticConst.h */, + F77B08D31ED678F2A63EFEBF905B9087 /* StaticSingletonManager.cpp */, + 68A8731D055A6B39965B25F0FEE565E4 /* StaticSingletonManager.h */, + 65006B7C8CA2B519FB06B8743C22360F /* StaticTracepoint.h */, + BD5F1B1B639117DA8C0CA2F41DF28EF3 /* StaticTracepoint-ELFx86.h */, + 042C10B5C195B9BC6AC0E3DC756B9850 /* Stdio.cpp */, + F2E56DAB7E0B81A22B49544037C2981C /* Stdio.h */, + 2EE9DE4D51C0162B5FDD2AF1A03ED058 /* Stdlib.cpp */, + 3D6EFC185C3CB20617B05FB791D48475 /* Stdlib.h */, + BAE05B179A4809DD45875E8223B3DCA2 /* stop_watch.h */, + 689A10F21FBF3994B01988A6F23C5187 /* String.cpp */, + 1C95842759956FAA3EDC8B5C4EA37FBE /* String.cpp */, + 17BB60E549F9941AF2A7C51355DD78CB /* String.h */, + A2B5A8E537600162AB8597D49A7BE2FC /* String.h */, + 035AB6FAE7D36DBA8AF03E26168AE1FE /* String.h */, + E0D110C27AE0AB7AC9945656D9E7629E /* String-inl.h */, + E0C4E2F4E4071B1AF88CB0D7BE75AA87 /* String-inl.h */, + B38339CD40565498AB3A0F135F383164 /* StringKeyedCommon.h */, + A727200FB1C30F038E22BDF6D2F7B371 /* StringKeyedMap.h */, + 05F74C60688AE79827C594897973B2A1 /* StringKeyedSet.h */, + 1B64C46BE16567F63E27EF6ADFE47B77 /* StringKeyedUnorderedMap.h */, + 8291E659D186A731AC71E38D30AE632F /* StringKeyedUnorderedSet.h */, + 8FA7CA232C9946B587E471293ACCFC9E /* STTimerFDTimeoutManager.h */, + 99464526434E7417235B1DA89FC8AFBE /* Subprocess.cpp */, + C2741538C85411612EAAA5071D8728ED /* Subprocess.h */, + DB1323C9DA03F365D3974FE452471AC1 /* Synchronized.h */, + 01074E4D4EAC6FBE83AA73B4384722BC /* SynchronizedPtr.h */, + C5A7A1A8C9CD668E521FF94CBB54A013 /* SysFile.cpp */, + BA4DB82DDD53437C4A144B7869223AD5 /* SysFile.h */, + 3D35AA700B04792E39B969CEED0583B2 /* Syslog.h */, + 8C541645B9FAEC795D01A0708BA5633E /* SysMembarrier.cpp */, + 309E0BE21E21A829975F7887ABD3D681 /* SysMembarrier.h */, + E326346C3F6F956C4A7A0CD43686C0C5 /* SysMman.cpp */, + 9AD7CD8B560BA14C5DB429AC9B7BFE39 /* SysMman.h */, + 082D12697560FA62C0B82A82EABDD9AC /* SysResource.cpp */, + 7154D5F1DE0AE77A127CB922196A6E64 /* SysResource.h */, + EF9A525C1847A25D33B4CB692DAB7542 /* SysStat.cpp */, + 1A90FD6091CA22C8568DA6CC406B555B /* SysStat.h */, + 2FD10DDCF7E386F3F6B677536D0D66A5 /* SysSyscall.h */, + 59CDB952F1186C0ADD1A80E021C55B9B /* SysTime.cpp */, + 63D1D1E2E39DBE30100714EBF3ACDFC6 /* SysTime.h */, + DE9EF59EB47BEE522C0C3250922393F0 /* SysTypes.h */, + 72E452610E06C566202FAAE7B5F54BCE /* SysUio.cpp */, + EAAD0A21019BA1C3EBD479F36C002AE3 /* SysUio.h */, + 6C97846A245CFA8A9D1A9066BA1C8D39 /* Tearable.h */, + 3BF8E23B17CD30379B85C26722B37917 /* TestUtil.h */, + 6B56D8B256A08D6F3440335ABEED8ECF /* ThreadCachedArena.cpp */, + C50D2A2BB340B3D8AC276D02DDBAE733 /* ThreadCachedArena.h */, + 3888B2071722F74F671F41E63C402946 /* ThreadCachedInt.h */, + 461DDB2F665137904F28D0745041C260 /* ThreadCachedInts.h */, + 5CB23A641765B5B1373F6D38AEF5164F /* ThreadCachedLists.h */, + EF9F9B40B59884AA918C73FDA84E908F /* ThreadedExecutor.cpp */, + 423DB5428013ECD6CDEB3C4BDD1D2426 /* ThreadedExecutor.h */, + 6C3B86F569EE9242FD5D86D3B6ADC20D /* ThreadedRepeatingFunctionRunner.h */, + 0B20CF913B2D89B778711D5BABFD1C1E /* ThreadFactory.h */, + 053E3A7AAD384AE8FC5937DADE6C0E1B /* ThreadId.h */, + 394A0563D9AB83E34C06264713A58147 /* ThreadLocal.h */, + 0082B8F3D3A8CB52B12C341537D3DFBB /* ThreadLocalDetail.cpp */, + 62B79DF71A222F875FC185094EE63E5B /* ThreadLocalDetail.h */, + B2E4B390C593EC4820C4A6261073B4EA /* ThreadName.cpp */, + AD928CF3372D9798FA1B78C5FD00C83D /* ThreadName.h */, + 838D4CE26A6C6AE7A27D939C780B2D15 /* ThreadPoolExecutor.cpp */, + FC058A64BDCD34CD6DF5447D0622A941 /* ThreadPoolExecutor.h */, + D9B8082407558663E343336FAD81339A /* ThreadWheelTimekeeper.cpp */, + 85E65AC36ED8401F5C93F850A55F9EAA /* ThreadWheelTimekeeper.h */, + 7414F8587276C8A3970ADA33C6D729F3 /* ThreadWheelTimekeeperHighRes.h */, + F24451F359924006BCBDACD83CFC2B00 /* Time.cpp */, + 91EF17B4E96C325051493245CC43FC73 /* Time.h */, + 9336128E4BB130A5809670702420D6C4 /* TimedDrivableExecutor.cpp */, + 8664E5B2718F9802247E1F3B386F19BB /* TimedDrivableExecutor.h */, + 61A4E0543C726B492043B8BB13DFDC37 /* TimekeeperScheduledExecutor.cpp */, + 928A005C389A3F26AA596AE8D032B596 /* TimekeeperScheduledExecutor.h */, + F9A5A788558F16AB89DABAAD5E24AB48 /* TimeoutManager.cpp */, + 70200DDAF468D37008105917565D0236 /* TimeoutManager.h */, + 0DEF232E0A0D4067D1ED22A9871162C0 /* TimeoutQueue.cpp */, + E69CD8888A61ACCF02A99D4050B4D66F /* TimeoutQueue.h */, + 2E0B130F0EDA36A6DC22F6BFF7580C99 /* TimerFD.h */, + D1B16CC3EAAE53003608FE62B2BCCEAF /* TimerFDTimeoutManager.h */, + B043689307E99F13549BE277D43358BE /* TLRefCount.h */, + 7205629B19385396F1D5D42DC013FC0D /* TLSDefinitions.h */, + 0B3BD969A42852F70E4CDFEFFE2DA3F7 /* TokenBucket.h */, + 781F9F16AB50833322CA3BCCCCEE3C2A /* Traits.h */, + 11D11709A02DAC16E66B9177BBA65E73 /* Try.h */, + 27B99204B3477D76CDD6ACB35BA16893 /* Try-inl.h */, + CA0033022F8A9798C812CC343DC76E0D /* TupleOps.h */, + 9F07C8CE434FB8B78BC5450419469744 /* TurnSequencer.h */, + DE7125DE27A7A99E457DA6CC95894E6A /* TypedIOBuf.h */, + BF2BA5624423FD9F222021A05B549B0A /* TypeInfo.h */, + E4E90D9EB96E434849D3D9AE7AE6E2DA /* TypeList.h */, + 54ECCCA6485814F6D3A1A8F2DCE48A16 /* Types.h */, + 315CEFF1822B375723507C6667EAAF73 /* UnboundedBlockingQueue.h */, + 7C8D5E0A3363E573E25512ECC9495F13 /* UnboundedQueue.h */, + 459A1664B57098D65E6B587BEFD0BED1 /* UncaughtExceptions.h */, + A601D5464B05A583EFCE0E2965D83BE8 /* Unicode.cpp */, + E12C71B1F21722242BA20B48FCD80C48 /* Unicode.h */, + 1D44A144ECD9CE9C48C62E589BF46484 /* UninitializedMemoryHacks.h */, + 01DEA41BEDD9B681A64851CCBFB9CAFB /* UniqueInstance.cpp */, + 1E0B646FACFA8D0A694DC4B3C7DFD225 /* UniqueInstance.h */, + D5DCE34AE44ABDAD954DBB33B552D7F0 /* Unistd.cpp */, + 8A686452C19195C621FE11F0824B780C /* Unistd.h */, + AD72F8ABD0DC27C9178229557159F668 /* Unit.h */, + B76DC5ADB1F699F5B7C2F51EC0B9EC28 /* Uri.cpp */, + FF52E63FA1C5D41760062EDCB6AAA418 /* Uri.h */, + 2DC996C5BA817DA5E8B9FCF48FF2A116 /* Uri-inl.h */, + 84BF5BF7E8E5171EAA5A94EB7DEE0FB1 /* UTF8String.h */, + 3705FBCFDBB7F944A902443BDF43ADFD /* Util.h */, + FFD1A511B550CDC9B86240DC9ED622A5 /* Utility.h */, + B99F525FCC76E52098115B9303C55706 /* Utility.h */, + 81BA6E8ADE1C06C1DA521A170683517D /* Varint.h */, + 1223CE63C279563F3B4EA932977B59BC /* VirtualEventBase.cpp */, + 08C4EA17FFABE51D59BC0B56CE01ADA7 /* VirtualEventBase.h */, + 64908B46E12CAF504E5BEC4BAB6F8ED0 /* VirtualExecutor.h */, + D041292F71AB80BB90C4B8687EDD24F6 /* WaitOptions.cpp */, + 734EAD8AA0E6728D259F9A98AD0F4D8E /* WaitOptions.h */, + 2DFD728DF9D1616DDD018BD16AF24D08 /* Windows.h */, + 5791EF7ABEC44147E91573457866AC3C /* WriteChainAsyncTransportWrapper.h */, + 880CC022B3A49C85900B12E8E5D40565 /* WTCallback.h */, + 03EE83CA2E12F4819FCB7A35023B202A /* Support Files */, ); - name = FBCxxFollyDynamicConvert; + name = "Flipper-Folly"; + path = "Flipper-Folly"; sourceTree = "<group>"; }; - E32492162322518062051E44A13E7529 /* Services */ = { + CDF800B08DAA34320191F71A8446C666 /* event */ = { isa = PBXGroup; children = ( - 92E81D540171FAD8E231E1AF4066DB6B /* UMLogManager.h */, - 1FEC121FD23728582B9C1DF5E28A277B /* UMLogManager.m */, + 929288C0C91551931B3A305BF75A7CBE /* event.cpp */, + A0B2E4EEE31D000D9E7BA8D5758417BF /* event.h */, ); - name = Services; - path = UMCore/Services; + name = event; + path = yoga/event; sourceTree = "<group>"; }; - E39145EAD6394D4B8D24AEF743F4F5E9 /* RNScreens */ = { + CE9D901A4C7B7E6EA06E14CDBB85F707 /* Multiline */ = { isa = PBXGroup; children = ( - 478A05532884A912CEC3CE2A3FBFBDAB /* RNSScreen.h */, - AB37EFF737ECCA2E5C39C1BB53DB1638 /* RNSScreen.m */, - 52FA215B0AABD63CF4160AC620BF6AF6 /* RNSScreenContainer.h */, - 885E67E45CB9292D54C7AE825D2CC130 /* RNSScreenContainer.m */, - A157D526C4A9B116FFA877831071C982 /* RNSScreenStack.h */, - A77AADE54BAD99ECC1C2D6DFE43F452A /* RNSScreenStack.m */, - 034507F582A52D986314724EA30140A2 /* RNSScreenStackHeaderConfig.h */, - 5D404758C9F5D8AB79A1DF5B3E7D2E32 /* RNSScreenStackHeaderConfig.m */, - 6250D92290A9FAFD0257B5CC6B025E7D /* Pod */, - 68402E3A17BC67549AEFCE91A61BF371 /* Support Files */, + 99426704230609B4CF885AD3E0E448AC /* RCTMultilineTextInputView.h */, + 859AF4488EA571ABE765C273F5099CED /* RCTMultilineTextInputViewManager.h */, + 2873319379B0B369C230E6002631DCD9 /* RCTUITextView.h */, ); - name = RNScreens; - path = "../../node_modules/react-native-screens"; + name = Multiline; + path = Multiline; sourceTree = "<group>"; }; - E3BAA685845B495FA3B69CF45A0E1B10 /* Pod */ = { + CF05AD48B0362E1C4D744114C2954EEA /* Pod */ = { isa = PBXGroup; children = ( - 2A14879F164852C742D96B8144D456A4 /* UMTaskManagerInterface.podspec */, + 50E77540F8775D66C8CEE42D8A0C73CE /* LICENSE */, + F522621A2D8CEB2DDB646CCEBA7C6CD5 /* README.md */, + 99C2467B06D24DAF9B08DF392B6DCA56 /* RNFBAnalytics.podspec */, ); name = Pod; sourceTree = "<group>"; }; - E59FEF70BFF6740CC25625B0B26D0730 /* react-native-appearance */ = { + CF1408CF629C7361332E53B88F7BD30C = { isa = PBXGroup; children = ( - F081E4DF5CFA79D41D16C87B19AD63DB /* RNCAppearance.h */, - 7E357F7D22698AB72EC4DED0CB3475B8 /* RNCAppearance.m */, - 04804CCF30D5C8B761937C80FB88841A /* RNCAppearanceProvider.h */, - 2B4BC89835F0B426BA24544643826522 /* RNCAppearanceProvider.m */, - 38DE4B91225B3BFBA01EE2221CA2B29E /* RNCAppearanceProviderManager.h */, - 6C038D726C9B5961986DC385A924ED87 /* RNCAppearanceProviderManager.m */, - 438FB989D257A5781B3F2133C4867DF2 /* Pod */, - 400A0006842DBA7536C33ED4D5829FEB /* Support Files */, + 9D940727FF8FB9C785EB98E56350EF41 /* Podfile */, + 16E7F4000344A0D587E2176D60EBEC1E /* Development Pods */, + D89477F20FB1DE18A04690586D7808C4 /* Frameworks */, + A7574D5EEE18CCEF683474ED6A7EA4F9 /* Pods */, + 4F63390788DFA62439205658CA452C71 /* Products */, + 57C9E2EC2DF45CDE277B0C080BA1D71E /* Targets Support Files */, ); - name = "react-native-appearance"; - path = "../../node_modules/react-native-appearance"; sourceTree = "<group>"; }; - E5D00CEC67D46E5680117553520ECE11 /* Support Files */ = { + CF53A53A20801CEDA39635D18DC89D2C /* Support Files */ = { isa = PBXGroup; children = ( - EB11D8980233FB28B3EB591690D4B933 /* boost-for-react-native.debug.xcconfig */, - 65B29ADF9EF6733B27B00153E334C733 /* boost-for-react-native.release.xcconfig */, + 632693FB6042CD50E5895B2125475569 /* RNFBApp-dummy.m */, + 629CE60817266C0075CEA4BF001C5732 /* RNFBApp-prefix.pch */, + 930D97BC88AFEE502D58B06AE880A9E7 /* RNFBApp.debug.xcconfig */, + 3BE7F6333AC045E8F1FD680028D5721C /* RNFBApp.release.xcconfig */, ); name = "Support Files"; - path = "../Target Support Files/boost-for-react-native"; + path = "../../../ios/Pods/Target Support Files/RNFBApp"; sourceTree = "<group>"; }; - E77ACC032464D4DCFBB99639A09F92AD /* CxxBridge */ = { + CFD961710F2BF9DE9B0628B02E64061B /* Pod */ = { isa = PBXGroup; children = ( - 04977148DE9C9EE89321F0AA165BDE05 /* JSCExecutorFactory.h */, - 6D15A2BDD2DD1DDE07F55DA3ED1F6D2A /* JSCExecutorFactory.mm */, - 01F2D0B018A8C0602D50AE13EB355AD0 /* NSDataBigString.h */, - 027210AF12960DA75E0E13687A8B0A07 /* NSDataBigString.mm */, - 8698DF0DE08A137A8C816089106F8DA6 /* RCTCxxBridge.mm */, - 26172BF87BFBC776186999961DEE3E6A /* RCTCxxBridgeDelegate.h */, - E623D939ADE2AE10BEAA3C1B7D16981B /* RCTJSIExecutorRuntimeInstaller.h */, - 233D8B94F298076784E62FDA89226294 /* RCTJSIExecutorRuntimeInstaller.mm */, - 91F4CDD7DFE9FE5BC9DB09A0AF6C5080 /* RCTMessageThread.h */, - 4138CC76BD93E8D27D33B1DC80BFD1A7 /* RCTMessageThread.mm */, - B1F760470CBA775E2C937B689C311319 /* RCTObjcExecutor.h */, - C70B44F70601F2E891612366843D044B /* RCTObjcExecutor.mm */, + D42FA47D8CEE27E2BE4400033B9B7749 /* EXWebBrowser.podspec */, ); - name = CxxBridge; - path = React/CxxBridge; + name = Pod; sourceTree = "<group>"; }; - E934F12F18782FA5B7B698BDE78CDB0F /* RNCPicker */ = { + D0C5FC794B5D7426BC7014486AF0A08C /* ViewManagers */ = { isa = PBXGroup; children = ( - E99CEF4EEC42A2629D3B68DA23D0046B /* RNCPicker.h */, - 08383837DC6D5400661DBAEDFAC174C8 /* RNCPicker.m */, - 319D4C18691771677FE83CCAF8807DBC /* RNCPickerManager.h */, - 7085CC1C2C2A9C58F7099F2ADC7F4AE6 /* RNCPickerManager.m */, - 7C4DBEA389F45BA24C85310F8D437E9A /* Pod */, - EEEBEEFCEAC879E964264A9B2B6A72E5 /* Support Files */, + 940C8C350C1A8444977469EC19E98889 /* ARTGroupManager.h */, + F12632781D16C90A6A7C19F0A5B4CE37 /* ARTGroupManager.m */, + D62A9D54E64E898C18AEC393B07FC575 /* ARTNodeManager.h */, + 6572A5389B75E67DD18B8F051BDE00E6 /* ARTNodeManager.m */, + A5546F85DD45F445015199630CB347A5 /* ARTRenderableManager.h */, + EE0C2DE45F182C1434D3B095679A8C14 /* ARTRenderableManager.m */, + 1F7FF97F65E7627DF562B489EFFD2B03 /* ARTShapeManager.h */, + E2E49DD0C8929E7A7FD37E93CC1E9610 /* ARTShapeManager.m */, + 41BD6D0275BCBDAEB649B23C65559D18 /* ARTSurfaceViewManager.h */, + 63C6A97615FA067C31D1487283EBFFA2 /* ARTSurfaceViewManager.m */, + 57A21B3CEB4C3FDC799A2532C3FC64F9 /* ARTTextManager.h */, + 0B2EC20C1DC93DE0394317053CAD6497 /* ARTTextManager.m */, ); - name = RNCPicker; - path = "../../node_modules/@react-native-community/picker"; + name = ViewManagers; + path = ios/ViewManagers; sourceTree = "<group>"; }; - E94FB031F791D1DED308D8442EA23A97 /* Pod */ = { + D0E93366D7E2948A104118F40D29D92B /* Pod */ = { isa = PBXGroup; children = ( - 2922BDAB21DB02CBEE4EF0EAD5C083B1 /* LICENSE */, - 4B0C7D63BAB6C5746676851CD455CC6C /* react-native-background-timer.podspec */, - 6340CF85ACC147112B0CF70EF2FE49DA /* README.md */, + 36E8A935AC2A9674CE52AF4766B650DC /* LICENSE */, + C667DF70CB34F92432D5D8F744419CCA /* README.md */, + B6A048BF36F865F8521220D52CAD2933 /* RNCAsyncStorage.podspec */, ); name = Pod; sourceTree = "<group>"; }; - E9A4E43ED98092B712DD6E93E04C7C30 /* Sentry */ = { + D10CB45DE28C817DB307E3F01736CA7D /* SKIOSNetworkPlugin */ = { isa = PBXGroup; children = ( - 4F26628CAEF27009D5B48EE73606060B /* BSG_KSCrashSentry.c */, - 4D6D624CF810AD92E2B2562C0562C073 /* BSG_KSCrashSentry.h */, - 0A8FD8A2B5ADA3C0135616C5DB527628 /* BSG_KSCrashSentry_CPPException.h */, - E3BBE7A4CE823D2C68A59F6AA015FA1C /* BSG_KSCrashSentry_CPPException.mm */, - E4B494359C9B23346165C652A401B302 /* BSG_KSCrashSentry_MachException.c */, - 1AF4330BD6DD0F1AAC8EAA362E56F1F4 /* BSG_KSCrashSentry_MachException.h */, - 435AE9BC5C9E3CF7503A8F43DB6123FC /* BSG_KSCrashSentry_NSException.h */, - EA4C94D30D9F5FC1CCCEB7C2FFEA5CEF /* BSG_KSCrashSentry_NSException.m */, - 02EEEB11E2FA732C018BCB28638DAAB8 /* BSG_KSCrashSentry_Private.h */, - 54491F5B3AE4721132EE26759F4E88F4 /* BSG_KSCrashSentry_Signal.c */, - CDF16ECD50D0280EC60B6417A2282ABA /* BSG_KSCrashSentry_Signal.h */, + CD2A64E38F2C7DDE7104C53029CB5899 /* FLEXNetworkObserver.h */, + FEFFD15AD871DAA74E6314076A89F75E /* FLEXNetworkObserver.mm */, + 9A67A8CA4910C21CB87423C954D39115 /* FLEXNetworkRecorder.h */, + 3B0ED4D83E90C4EEB5FDD7D6FC48AB5E /* FLEXNetworkRecorder.mm */, + EEB8E5C9104AD2FD20DA552CDE97997A /* FLEXNetworkTransaction.h */, + A2D8871D252BE47ECD2EAE390C67E065 /* FLEXNetworkTransaction.m */, + 247E4D9323817E69FAB3DB5EDA142122 /* FLEXUtility.h */, + 5E1E4D569A7C56B34DDFAD94B3072738 /* FLEXUtility.mm */, + 47D1C4AC4F29506B214B76E2918AFF10 /* SKIOSNetworkAdapter.h */, + 7095A402B5482B6BE3A9D8FA0C03C65A /* SKIOSNetworkAdapter.mm */, ); - name = Sentry; - path = Sentry; + name = SKIOSNetworkPlugin; sourceTree = "<group>"; }; - E9C7468296CF3D854A6FE3CCDCE8AC5E /* react-native-orientation-locker */ = { + D19AD8738EB09E9E7F6E52F9CE8E208B /* react-native-slider */ = { isa = PBXGroup; children = ( - 94BE9A0B11F10DD46B5AEFD4178E116F /* Orientation.h */, - 00A8005D412C799A8395E4C8BA76C5D6 /* Orientation.m */, - A727D37490E5DBB66524C3364AD892D9 /* Pod */, - 13EC029082B3E3E2E6E3AB5D12656686 /* Support Files */, + 86A048299409FEBFFC7727EBCD3377F0 /* RNCSlider.h */, + DB49284BA60C9CDB17FC0A52E6C52C2F /* RNCSlider.m */, + B6ECD3FBC736FB8C0DDCEAD684BA16E3 /* RNCSliderManager.h */, + 5A0A4FF9FD59597A96466F61C0AD162D /* RNCSliderManager.m */, + 20F9BD3DA7775A2BD2C6BB8D5A2E921B /* Pod */, + FF4FE7AC9A8EC962814811234F50B454 /* Support Files */, ); - name = "react-native-orientation-locker"; - path = "../../node_modules/react-native-orientation-locker"; + name = "react-native-slider"; + path = "../../node_modules/@react-native-community/slider"; sourceTree = "<group>"; }; - EA13FE3EB3903AF08222DB3356F442A7 /* Pod */ = { + D2F75FF7717934896F6061A8F07460A9 /* Pod */ = { isa = PBXGroup; children = ( - AA2A808F6CF64F7216D304333B12D1EA /* React-RCTText.podspec */, + 080367C90F95842DA2BBF4979BDFB28C /* api.md */, + 2D6B1F132E23217D2014C2BBABFE8CE6 /* LICENSE */, + 6A0A65904F30D3384C5D12434ACC4878 /* ReactNativeART.podspec */, + 0919B9D546E6CC2AE651750451966A24 /* README.md */, ); name = Pod; sourceTree = "<group>"; }; - EADB4AC2FAFE74AB2202BC0F01C5868E /* SKIOSNetworkPlugin */ = { + D3E62B7382F021B464DC9C84FCB62839 /* chrome */ = { isa = PBXGroup; children = ( - 5409A05504A9224238190E1A66F61FAD /* FLEXNetworkObserver.h */, - B373A07D6A1D7A65054827E179FE0B52 /* FLEXNetworkObserver.mm */, - 40D346238B3A3AF31BB285B00C29A094 /* FLEXNetworkRecorder.h */, - D73071E48F25255F5B10C19EEF913046 /* FLEXNetworkRecorder.mm */, - 2EE81361339C5E1930DAF6A4CFD01B74 /* FLEXNetworkTransaction.h */, - 8F1AE93585C2CC012BB0818F5C033122 /* FLEXNetworkTransaction.m */, - BD98F0005A10B45C2B6F183D42D31D3C /* FLEXUtility.h */, - 1DF5C4EEFBC2F3A09EB6CB6F3EDA71FD /* FLEXUtility.mm */, - 0004622AC40407B1ADAD515879B469CB /* SKIOSNetworkAdapter.h */, - 657C2BB6771EEDE6789A18E1920992B2 /* SKIOSNetworkAdapter.mm */, + E0D4FE657221BBED4DC51E0EEB808D83 /* AutoAttachUtils.cpp */, + E0482C81ACC1C403CBC884E10E066760 /* AutoAttachUtils.h */, + 31EAE2348931B6712BC22A0BBBE2FEEA /* Connection.cpp */, + E9FD60CE1670E8FFE98BB60B37B90E55 /* Connection.h */, + ACB53D4AFB059ACDB104EB813B5E8A8C /* ConnectionDemux.cpp */, + C8C7E5B7C97E0586A05F011016042666 /* ConnectionDemux.h */, + 60E2B3F7654353A0B185AAD73B77C8F1 /* MessageConverters.cpp */, + B40EC70902CB402A5BF316D6EB99426F /* MessageConverters.h */, + 46CB54232CFB0ED9B228412CFB467B26 /* MessageInterfaces.h */, + D44C0140539A59A18FE89CE33D234A04 /* MessageTypes.cpp */, + 02C06F0AED9141629F70A32B1FFC0898 /* MessageTypes.h */, + 545A99D73B6AF3C5CE7D098FDB345E72 /* MessageTypesInlines.h */, + 0AC7FC3622777EC65F2374A6FEDEB0AE /* Registration.cpp */, + 2373181AEE35D5708C0CB66D27D510E9 /* Registration.h */, + DFCB3AAEEBFD26F496CF62E461317606 /* RemoteObjectsTable.cpp */, + FD461EE59FE4B4B89FF3F7146CEB210A /* RemoteObjectsTable.h */, ); - name = SKIOSNetworkPlugin; + name = chrome; + path = chrome; sourceTree = "<group>"; }; - EB013329492B71E5972D2BFF6598ACE6 /* Support Files */ = { + D66ECEA94DDCDB869E31C4FA3B83A1A7 /* react-native-webview */ = { isa = PBXGroup; children = ( - A79E6B0FA53228F0C22FDAE97E39A414 /* react-native-notifications-dummy.m */, - 12F1146556FC034F2D1F79B76D12016C /* react-native-notifications-prefix.pch */, - B7BBE31EBE16FD2D7953E7902D4D8227 /* react-native-notifications.debug.xcconfig */, - DECD7F61EE2634B152C7B32EF629DCEB /* react-native-notifications.release.xcconfig */, + 83CFBBD815E733BA2565F94754B84658 /* RNCWebView.h */, + 22378466E936E1DC2EA9E11E5479596A /* RNCWebView.m */, + 16439CA5F514D320CF5EA4A3E540358A /* RNCWebViewManager.h */, + 2DBC02AAB6A0CE2BE962F55B26B0FEC3 /* RNCWebViewManager.m */, + E011A6E4FE31252609CE24B6B3C8DAF4 /* RNCWKProcessPoolManager.h */, + 4828A9C2DD4992FE17E2DD6ABF34B4F2 /* RNCWKProcessPoolManager.m */, + 610957C62088A22AC6E85A1AB4749D42 /* Pod */, + 07CF9A0426612D8E6327C5BE5C6EA0F5 /* Support Files */, ); - name = "Support Files"; - path = "../../ios/Pods/Target Support Files/react-native-notifications"; + name = "react-native-webview"; + path = "../../node_modules/react-native-webview"; sourceTree = "<group>"; }; - EC490A32C6CF61E09B0AAC527BA6CE84 /* libwebp */ = { + D6A00E03F55959F32DA291B27C389868 /* KSCrash */ = { isa = PBXGroup; children = ( - 1EA2EBBA07EAB3F2E0170F57BE43726A /* demux */, - 9C8094292F690C3ABB1610D9E52A3976 /* mux */, - 61DB4E0ECF82517EC3C0C5DE7CD543E0 /* Support Files */, - 000784771CA1B21F5D3DE154273F01C6 /* webp */, + B72E276C16D1391BD2C8FFBF971FE23C /* Recording */, + 9DA569C16D4337D799119BDE69C662EE /* Reporting */, ); - name = libwebp; - path = libwebp; + name = KSCrash; + path = KSCrash; sourceTree = "<group>"; }; - ED6F5ECD9E4977BB3242B6DCBAEA7DB2 /* react-native-simple-crypto */ = { - isa = PBXGroup; - children = ( - E361178BFF0F0A5AC12C76B6300B8268 /* RCTAes.h */, - 8EC04E43DE6799F166D0E055BB69C5F7 /* RCTAes.m */, - AC997D5A6CE46D81B2A9839825070905 /* RCTCrypto-Bridging-Header.h */, - 41CD4FE0B9F16B00300218C0DC70ABF9 /* RCTHmac.h */, - 519F01F1D80CFDFC7A49BCA212123ABB /* RCTHmac.m */, - 2AED415BF2CA0F102E482E3B33CF499C /* RCTPbkdf2.h */, - 6E567830E7845629D2196E6C4E1652B9 /* RCTPbkdf2.m */, - 44849A07404CF4A3B58A4DA314A75331 /* RCTRsa.h */, - 9C2FF72F433B5B816D4642C6E2EEAB91 /* RCTRsa.m */, - C70CAFDE76103EF6F4BE78422776CD56 /* RCTRsaUtils.m */, - 712977A45BF435F5FBBB354F1236B801 /* RCTRsaUtils.swift */, - 838CB3AD58AAF778C3820188C89DEAE7 /* RCTSha.h */, - 7547F8E6B74F348AA102F489A03E09D9 /* RCTSha.m */, - 0ABF1EC3358A7E3827364D165457E312 /* RNRandomBytes.h */, - 27871E35046D797BDFC6AB677CBFE34B /* RNRandomBytes.m */, - A9E23F86758D4CF67081D5B50EFFFE5B /* lib */, - BBB3D4826FC68C411A951E9AB063DC5E /* Pod */, - 7F28349F29E87A971A2165D82AF74199 /* Support Files */, + D6A08C9B6A5E2B7798616622B131E47D /* SurfaceHostingView */ = { + isa = PBXGroup; + children = ( + 8AEAF0539C1E2A7D3AB5BDF7EAF0247E /* RCTSurfaceHostingProxyRootView.h */, + 69FCFFFE6BA69F3725A2C6AA8E95CFBC /* RCTSurfaceHostingProxyRootView.mm */, + C839D914356AF655FE842EE39198CC8F /* RCTSurfaceHostingView.h */, + AFD436FF59C479B66D2D812CE0111873 /* RCTSurfaceHostingView.mm */, + EB8B96665FF79081B9EFCA774FB85C18 /* RCTSurfaceSizeMeasureMode.h */, + 3BB55C5545C7FF080A4E5DF2DD35A184 /* RCTSurfaceSizeMeasureMode.mm */, ); - name = "react-native-simple-crypto"; - path = "../../node_modules/react-native-simple-crypto"; + name = SurfaceHostingView; + path = SurfaceHostingView; sourceTree = "<group>"; }; - ED889B6CD4E18E37D68E3AC6D21D9DF3 /* Pod */ = { + D719CF42B24C07C962062EC6D0A4504E /* Storage */ = { isa = PBXGroup; children = ( - EBDC1ACBB829C220D69159D036999F34 /* React-jsiexecutor.podspec */, + 2F4E70E7E6D6AC8E4EF0E3EA2D812CE8 /* BSGFileLocations.h */, + 8A3DECD325F002CC7E736BE7DEFC7AD0 /* BSGFileLocations.m */, + 185EE55983019FB930E6BF2CAEB834EC /* BSGStorageMigratorV0V1.h */, + 174E2ABE9ABBAF40676AC61958A65E8B /* BSGStorageMigratorV0V1.m */, + D38A1786D45DEDF79279416210586D76 /* BugsnagFileStore.h */, + C8312EE3F5AF0073ACE90C79C7BD5A8B /* BugsnagFileStore.m */, + 6348158250BDD61323E00A96E6F8C450 /* BugsnagSessionFileStore.h */, + 35CD78A9470AC3A88A6635AE40C0BCB8 /* BugsnagSessionFileStore.m */, ); - name = Pod; + name = Storage; + path = Storage; sourceTree = "<group>"; }; - EDB227344D35FD0215E5CA6788E10FAD /* Support Files */ = { + D78C9FBACA2EBCBDB08E5B4C26D3824E /* Support Files */ = { isa = PBXGroup; children = ( - 6889C8BC615C521EE2FB3D13B4AAA3A0 /* UMFontInterface.debug.xcconfig */, - 52A81437D376AA16FFEF16706FC8287F /* UMFontInterface.release.xcconfig */, + 3C9B034E0D2FD72A5F38B5750FB667B1 /* RNCPicker-dummy.m */, + 80A564DB4256A06785D12EEB5C14DD9D /* RNCPicker-prefix.pch */, + E4C9A4B31AD0A6250478EA448B4064EC /* RNCPicker.debug.xcconfig */, + F1F27BC5355EB19D783DF12333EAC71E /* RNCPicker.release.xcconfig */, ); name = "Support Files"; - path = "../../../ios/Pods/Target Support Files/UMFontInterface"; + path = "../../../ios/Pods/Target Support Files/RNCPicker"; sourceTree = "<group>"; }; - EDE6635783718043F3AC5D37203B7564 /* Video */ = { + D7A4CADAC379F3460E79511A8E8F6A7D /* Support Files */ = { isa = PBXGroup; children = ( - A439185E722B36F1A8B1BEE7BDC71514 /* EXVideoManager.h */, - 2845AE37505E17E13FB2C18225966C08 /* EXVideoManager.m */, - 563880E140BAE9F0CD6A507B16D921F3 /* EXVideoPlayerViewController.h */, - B0B5D9B71A83EC9F23FB5432F6A776D9 /* EXVideoPlayerViewController.m */, - F5B377F6105317F97F4A000A3DDB28B5 /* EXVideoPlayerViewControllerDelegate.h */, - 1349DA30B40712C2BCB6BB6A3EEFFB69 /* EXVideoView.h */, - ECF30685940A43B4A6F919BCADA28019 /* EXVideoView.m */, + 577905BFD373244428CDDA255A16A0EB /* react-native-cookies-dummy.m */, + 7055A1A1B8B21B18A6A5A6F0207C7941 /* react-native-cookies-prefix.pch */, + 7F5F335AED02AB00E6BA5CD38E351C8C /* react-native-cookies.debug.xcconfig */, + 85D0A74E26F96DFCC1EAA6DE329DCBB0 /* react-native-cookies.release.xcconfig */, ); - name = Video; - path = EXAV/Video; + name = "Support Files"; + path = "../../../ios/Pods/Target Support Files/react-native-cookies"; sourceTree = "<group>"; }; - EE843BA057C1DB41EB47843B96406822 /* Support Files */ = { + D89477F20FB1DE18A04690586D7808C4 /* Frameworks */ = { isa = PBXGroup; children = ( - 40192D0027FE3F73F92FFE2B8AF7A78F /* EXFileSystem-dummy.m */, - 30243E7519676662464862B25AAD7BCC /* EXFileSystem-prefix.pch */, - BCB188AF9D06035BEC1720D50031039E /* EXFileSystem.debug.xcconfig */, - 89E93430F71A71DBFADC0D1285DF7A14 /* EXFileSystem.release.xcconfig */, ); - name = "Support Files"; - path = "../../../ios/Pods/Target Support Files/EXFileSystem"; + name = Frameworks; sourceTree = "<group>"; }; - EEC72927606E0CC1947DF352C60A3014 /* GoogleUtilities */ = { + D904A011B71186194459C6A5D632DFF5 /* Environment */ = { isa = PBXGroup; children = ( - 72FB0D5AEEE2347D17F36456B212A206 /* AppDelegateSwizzler */, - 526400428A066077655519992F2112DE /* Environment */, - 4EF256C4B1CE85BAF08CF47C3F20CA8D /* Logger */, - 86677D26A3179FEF358A0284BC61F3AE /* MethodSwizzler */, - 6A84CB4A517EAA5C9254E881F3AC576C /* Network */, - A4F60CE43829EECCB340AA01D73F151A /* NSData+zlib */, - 6682A2D72E17E81E441765B56C5AD7BF /* Reachability */, - 814E8E7E091098CC83DD495C815F1AF3 /* Support Files */, - 79F53A35899385E73A55FC3AD4210D4A /* UserDefaults */, + DA074481EAB02CBD5264BE664A2FE4DD /* GULAppEnvironmentUtil.h */, + FCB73DFE3703A1630BF94739756D7E43 /* GULAppEnvironmentUtil.m */, + 4A1D04633EA85E2A2E915EEC374E0553 /* GULHeartbeatDateStorage.h */, + C1737AEC22308691BE969F972E941D29 /* GULHeartbeatDateStorage.m */, + AC59B0D20C66F6CC9F8F7946CB6BF210 /* GULKeychainStorage.h */, + E18F26C7E0C16B106C7477F1CE0EA23F /* GULKeychainStorage.m */, + 2C32E38AF037FC5B35C445638749C3CB /* GULKeychainUtils.h */, + 814A043B170DFEADAE30BC8F4B7E8737 /* GULKeychainUtils.m */, + CAAA28D75E616E4A4D2DDDCB631604FF /* GULSecureCoding.h */, + C6E040984100ED986B0756DED66A8C07 /* GULSecureCoding.m */, ); - name = GoogleUtilities; - path = GoogleUtilities; + name = Environment; sourceTree = "<group>"; }; - EED5E57AA1C7DF8F3937866EF0FFBFC7 /* Flipper-RSocket */ = { - isa = PBXGroup; - children = ( - 0A5EB232FEA7CEB1E0F7D4D8788C470F /* Allowance.h */, - 5B42126EAF02047EADFC9E6162C406BC /* AsyncGeneratorShim.h */, - 7F0D2C5FD5821F14AF72DA3AA3FE84F6 /* BaselinesAsyncSocket.cpp */, - 180D1B18482573ABC89BFE48788B6AAC /* BaselinesTcp.cpp */, - AF153272AA59E892E9EAFBABC890E928 /* Benchmarks.cpp */, - 588E2150CDB29AE75B83DC77C9A0D29C /* CancelingSubscriber.h */, - 18BD1B7E92E88CC14EC8DE9514733A18 /* ChannelRequester.cpp */, - E50E37E179D4BCED1B314EEEDDEF6C2E /* ChannelRequester.h */, - 511E9E59D0ED620364C19CBDB853ABE6 /* ChannelResponder.cpp */, - 03627D3C4570EDDCB741491956019B46 /* ChannelResponder.h */, - A5C656C37A50DDE3A50DF9C5554CE5FF /* ClientResumeStatusCallback.h */, - 028F059CB4349635173D9E95BC622538 /* ColdResumeHandler.cpp */, - A30625DAC877C1D1E7E335916E73632A /* ColdResumeHandler.h */, - BA7064702BBDD1BA702AF42B10B58528 /* Common.cpp */, - 80AB0B92F34862EBF7AAE62BCD3BFB2C /* Common.h */, - EB418C913486EA3E3381B3FE24AA0955 /* ConnectionAcceptor.h */, - 5B00BE8F8B05FC8407638AC7886DFA5A /* ConnectionFactory.h */, - 8E2014914A30DCE80206DBE67159FBDD /* ConnectionSet.cpp */, - 37F4A35654D7581640A4041759FD1C2B /* ConnectionSet.h */, - CE8225378D28D5807F1B16BB9BAE9DC8 /* ConsumerBase.cpp */, - 26F915F6B91658E6473DBAF385C33F60 /* ConsumerBase.h */, - 0C399D5AF94FACC5E5C007509E34ABC1 /* DeferFlowable.h */, - BBFF18BC3711F0D248974C74C2D2F962 /* DeferObservable.h */, - D26852D1F256C76D2220095D278152DF /* DuplexConnection.h */, - 3C85908CDB0ACD631B1B1E037E04BD63 /* EmitterFlowable.h */, - 2F0F85D3DB77B73B2A983CB6A7ABF28B /* ErrorCode.cpp */, - A180CF8E7D7BE31D09455978DA60DC12 /* ErrorCode.h */, - 50F2B1496321F64AD7B0998350D4D009 /* FireAndForgetResponder.cpp */, - E2E51B08C8241F5CB9E1911832BB6E5C /* FireAndForgetResponder.h */, - 13B41F4359159EB8EC87945C0C5A7C17 /* FireForgetThroughputTcp.cpp */, - C10EF9F124CA4DE97790AECBE28BBB56 /* Fixture.cpp */, - 05C29C67833AA8536353E274D98D3DF9 /* Fixture.h */, - E0363F552304962F69D4227E89A03FD4 /* Flowable.h */, - 7F4298341DE529438F567BC7B6605C84 /* Flowable_FromObservable.h */, - F87FD82161211A08881DC52942907F6B /* FlowableConcatOperators.h */, - E1F7A0D97DA95FFB171D971F6CDBA8A3 /* FlowableDoOperator.h */, - 7B11CBC013C592CAFFF90DDC74BBBEE3 /* FlowableObserveOnOperator.h */, - 49A802672B0D87070DE29302B001CBCD /* FlowableOperator.h */, - 23FF30501568EB42FA7C87FC4B4E0038 /* Flowables.cpp */, - 77B4AD5BD0867366BCAC679EF4C7DD7F /* Flowables.h */, - 5FF6612843F3346BFEAF10A6DC11B13E /* FlowableTimeoutOperator.h */, - 04518E1251B37EFB9CC7C85F2C6F79BF /* Frame.cpp */, - 37988D45D75D810E145A28997B557A81 /* Frame.h */, - DDC9FC6CAA3FE7456CC806F378220131 /* FramedDuplexConnection.cpp */, - EE7E08EF7B1252B45B70331226DB8144 /* FramedDuplexConnection.h */, - 6DF210C698286DA9A48D500C07B827B0 /* FramedReader.cpp */, - F479CFB21AB01D2A48131512847D204F /* FramedReader.h */, - 99BE2F500519335CDB65E84AFD50FDF5 /* FrameFlags.cpp */, - 950A7E73159E8A8BE072290647F86D8C /* FrameFlags.h */, - 046E65A5FA88EDA7B63523764877B119 /* FrameHeader.cpp */, - 510790E68DCEBCD3A692226FBC4D7816 /* FrameHeader.h */, - 16AB2D3191B6E98E712415EDA749A526 /* FrameProcessor.h */, - 50CAB6141E979DA768868D1CC0D4777B /* Framer.cpp */, - 57B323E86461E56DCA658BB778E3012C /* Framer.h */, - 3530B06F6C9BBE90FDCBF0F5DB4BDD03 /* FrameSerializer.cpp */, - EEC53FB638BA80024B5BEB0C515A1750 /* FrameSerializer.h */, - 52BF20AE590FB1B2AEB17652F1AF704E /* FrameSerializer_v1_0.cpp */, - 0DADF679A872CBFB525E32F6FFD908B9 /* FrameSerializer_v1_0.h */, - F338801AAA68464A8DC5F21FC676D9B0 /* FrameTransport.h */, - 8E6307960B1F6D0785F439482293F689 /* FrameTransportImpl.cpp */, - EECEF8976E9A1DE282356790E4A04086 /* FrameTransportImpl.h */, - CBB9ED84AB9A1E593EF7C4C7413E06F0 /* FrameType.cpp */, - 992BE0FF9C4E7E0A4E2106380FB6AEC1 /* FrameType.h */, - 9B421A26D9964D79519F4A35E88647A2 /* KeepaliveTimer.cpp */, - 281397F1AB9BD21C08DEE8E0501AACA4 /* KeepaliveTimer.h */, - A8452C7C5F850E613A7F3ACCEB22A96A /* Latch.h */, - 2E456B5367A75D26021F4533FD7F0291 /* Observable.h */, - 9622CBA20F72B0317AA01CD58030645E /* ObservableConcatOperators.h */, - 469FC656713290E03642BE6E71A20834 /* ObservableDoOperator.h */, - 06D9659F8777F15807BD0E8F05A9A56A /* ObservableOperator.h */, - AE90C8B5FF1EB890795F8EFBBE3B16F2 /* Observables.cpp */, - 43861F8B5D923063441C6C9B76B000CA /* Observables.h */, - 23EB914976C05BD72A2209E4A5D7B2D3 /* Observer.h */, - CCB7250174E85BADCF71CD4CF0B6F9A1 /* Payload.cpp */, - F85832130A3148FE810602F0E05D38C5 /* Payload.h */, - DEDF0041639EE57E1B34CD0EB872879D /* ProtocolVersion.cpp */, - 2137BD408F80C49698ED16257310376A /* ProtocolVersion.h */, - E72D1BAC77A444AB18BD08E79FF60128 /* PublisherBase.cpp */, - 211FA11436C5447F1240832819907A3B /* PublisherBase.h */, - F09857F1319ADC4E8AA076419B8A0A33 /* PublishProcessor.h */, - 3F8B9DD0F5D0C01D1578E7363E4E1DC9 /* RequestResponseRequester.cpp */, - 3A7FDCF8B52F0218F9B22DA685FFF3FD /* RequestResponseRequester.h */, - E503A206DA16C1284D11C3DA57A0F135 /* RequestResponseResponder.cpp */, - 7878CA8D54C4B07AC9493E905F05E20B /* RequestResponseResponder.h */, - 3F3B13C8319674F7011E2EC4ECF09EA6 /* RequestResponseThroughputTcp.cpp */, - 11E5B920D013929A3A29D9659EF6473D /* ResumeIdentificationToken.cpp */, - FB4559CDF57FC81DD76DA71C08892047 /* ResumeIdentificationToken.h */, - ED9DA0CE1A4AFD77FC0FFB024D143F70 /* ResumeManager.h */, - 552069D1E4D7D8A5F376A2B75A54636F /* RSocket.cpp */, - 004B54212A40E4C7916C9EE6DDD93C63 /* RSocket.h */, - FF00494CCECEB92C703520915AF2DF03 /* RSocketClient.cpp */, - ADB42F84974E7CE03E7F919814FB22A4 /* RSocketClient.h */, - A93E8BB7D84136FC86255E9EA99F0019 /* RSocketConnectionEvents.h */, - B0FCCFB255C5A631079CFB219A9AB261 /* RSocketErrors.h */, - 9029E13E354946400DACF29547B6439D /* RSocketException.h */, - 74CD68F1A3B029127CCDC4D6601C3655 /* RSocketParameters.cpp */, - BE25E45DF047A25091D66D41617ACFD5 /* RSocketParameters.h */, - D967740974DAB66D1FEA4D0A3D483511 /* RSocketRequester.cpp */, - F741A695174331064C6F1F03D184685B /* RSocketRequester.h */, - 45819A60A49C114E82122B36C16F91E0 /* RSocketResponder.cpp */, - 3791BF953E422EA15E7E7944B8F4CA24 /* RSocketResponder.h */, - B98616A239AE9A3B63B404892883D35F /* RSocketServer.cpp */, - FAD7A3F2CAE2409B8C2A9B0EE30BF275 /* RSocketServer.h */, - 3FAAD852C1CA9EF26844E8FA4D7D7229 /* RSocketServerState.h */, - E9379D71B955ED8CE023DC49B56E9AD4 /* RSocketServiceHandler.cpp */, - 9336B954C54F0EF7BD2CC0490E9C3813 /* RSocketServiceHandler.h */, - A0E9033941C3AB907B1B7A92CE61D944 /* RSocketStateMachine.cpp */, - 9B5CC4A2C693BCADBAABAD140462B77B /* RSocketStateMachine.h */, - 5C127F75FA6077FB8DAB2F87EFD5DC08 /* RSocketStats.cpp */, - 63AE044CCFF233460DB6306511A7B7C2 /* RSocketStats.h */, - 997BBF1F370A66F6EAD822AE43E3E6F0 /* RSocketTransport.h */, - 4290579F62D9CCDBE1FEE050E84B7F2C /* ScheduledFrameProcessor.cpp */, - BE9AC67A44540CE72419BBE469231EA5 /* ScheduledFrameProcessor.h */, - 8B44F205BF9B9D8EE635E4D9543EFAF1 /* ScheduledFrameTransport.cpp */, - 2A0DE5C69F4A14E3A590C7453E23FDAD /* ScheduledFrameTransport.h */, - EF77B45DE1171993B31D40830A5CB5B4 /* ScheduledRSocketResponder.cpp */, - 98CA4C533F56EA8774B37B7E5CFD6E7A /* ScheduledRSocketResponder.h */, - D90A516468223E4268E626853F28BA1E /* ScheduledSingleObserver.h */, - 9BC77CD967B59458E50857129DF0EB80 /* ScheduledSingleSubscription.cpp */, - 55DE32077AF24CFA4B8C6153B81CE367 /* ScheduledSingleSubscription.h */, - E081C312DD756143481ED6E7E4B81ACD /* ScheduledSubscriber.h */, - 55768652A0C6C1024B76E44458316F0D /* ScheduledSubscription.cpp */, - DB5DD268804BED7D139485C26E2CEB48 /* ScheduledSubscription.h */, - 3E9C9ECE7547F686B756902C9B85AD0D /* SetupResumeAcceptor.cpp */, - 2ACCE6DDD9D46016A77D2950B591793B /* SetupResumeAcceptor.h */, - 4DADCE70A75208DE25BE7771DD9DF0DE /* StackTraceUtils.h */, - 8412BB89120242D71285FD959BAB4CE2 /* StreamFragmentAccumulator.cpp */, - 0BF02578CD55A4686096FD853394854D /* StreamFragmentAccumulator.h */, - CE1A3BE870187D9779BD588E99A4BA1E /* StreamRequester.cpp */, - 1A70B7A56F68D3486558EAE18A64C6DE /* StreamRequester.h */, - C041368CA726A7C4BA1CF1337AC041DB /* StreamResponder.cpp */, - C6F45D5F31EF86F02D6CEF8DC22D0725 /* StreamResponder.h */, - 7C11E1C5E45CC15821A35863F16FA1B0 /* StreamStateMachineBase.cpp */, - 8497CB456BD2A261AC99B47B49846351 /* StreamStateMachineBase.h */, - E4B12CEC68F65F6CC49C9E3844577875 /* StreamsWriter.cpp */, - B173169CAFCA51717A0990FA0F85CAF4 /* StreamsWriter.h */, - DA377E3CB010F7FAD6550A7731DC2069 /* StreamThroughputMemory.cpp */, - 89F8DA17B84406296466CA0BD7774307 /* StreamThroughputTcp.cpp */, - 46472793B74C28B0DD2EFD7560D4848A /* Subscriber.h */, - 3675C963C782F3ECF1D355995424942C /* Subscription.cpp */, - 30179570988891F43F9A54B32C56A700 /* Subscription.cpp */, - B4A78ECF85E46B193729EC71AE037CAC /* Subscription.h */, - 2D874C0B29A25EF40764F5DBF1F06554 /* Subscription.h */, - 43D561D4EA27F9FF3B798E950D15E161 /* SwappableEventBase.cpp */, - 7036E8E663E35BB5DB6C32198B066FE6 /* SwappableEventBase.h */, - 45194B070A74DA7215769FF55734FF1C /* TcpConnectionAcceptor.cpp */, - F83F91B2D05DD47B50B966F30439E031 /* TcpConnectionAcceptor.h */, - B1CC5F300C379D9AFF7A7F9E68C4BC16 /* TcpConnectionFactory.cpp */, - 8AE6FF8CF2D49101587FD8DFC0377561 /* TcpConnectionFactory.h */, - 1A54E82E346C84E98425FADAF6834BFD /* TcpDuplexConnection.cpp */, - 8450CF4C473130B21E41CB49420EB6B3 /* TcpDuplexConnection.h */, - C259D520D409213364BF1A2188CC03BC /* TestObserver.h */, - EDBCFDE5CEA3ACBEA4B2452C2223DD05 /* TestSubscriber.h */, - B37603DEF7D9FC146306428CF41DA217 /* ThriftStreamShim.h */, - E21871B529EE14E91E52A27A8D1D1F13 /* Throughput.h */, - 96467C509C117597F95EFD14D4F49097 /* WarmResumeManager.cpp */, - F16029932C4F596513746C170634EF45 /* WarmResumeManager.h */, - 1D12C2D07E4439611478BC772F414AD3 /* Support Files */, + D91566042B591DCC296B29B8259A1226 /* Nodes */ = { + isa = PBXGroup; + children = ( + 3AA3AD4D4DB59AE6396FD9BDCFC67ABC /* RCTAdditionAnimatedNode.m */, + 745E5F049E467D7272A9FC9E3A0315CB /* RCTAnimatedNode.m */, + 890DBE2775C6B20E13D2BCB165968CF4 /* RCTDiffClampAnimatedNode.m */, + 40AC5652DD86CBB3A47EC3620B61FF41 /* RCTDivisionAnimatedNode.m */, + 15F87A544179EEEA23D2582D7E11EA29 /* RCTInterpolationAnimatedNode.m */, + 9B72B432D840B5DBE7A9FF102A3D30CB /* RCTModuloAnimatedNode.m */, + 78194703ABB0C2AABBEBA0D955718ECF /* RCTMultiplicationAnimatedNode.m */, + B5A046382DEDFB3065B0D2F9A8AD54FA /* RCTPropsAnimatedNode.m */, + 7C171891BBE7C26B10078C317A927A5D /* RCTStyleAnimatedNode.m */, + 8446E1ECBC8E356830D0AD92EB9A084E /* RCTSubtractionAnimatedNode.m */, + 80FE2C0ABC7BBD02DAB4D79580C7BC03 /* RCTTrackingAnimatedNode.m */, + A4318DB425556BD36065E7BFE615F68F /* RCTTransformAnimatedNode.m */, + 553344DFAAE5322163B1FDF517DE2754 /* RCTValueAnimatedNode.m */, ); - name = "Flipper-RSocket"; - path = "Flipper-RSocket"; + name = Nodes; + path = Nodes; sourceTree = "<group>"; }; - EEEBEEFCEAC879E964264A9B2B6A72E5 /* Support Files */ = { + D93D8C400136425B4A2ADACC4012BFF2 /* SDWebImageWebPCoder */ = { isa = PBXGroup; children = ( - 60D442A392DA9A7A6DD57F6D01D72702 /* RNCPicker-dummy.m */, - D025A744BC6CB86BDC6E7478D67C5018 /* RNCPicker-prefix.pch */, - 3C74F4DCE22AD32551BC8F409F540F4C /* RNCPicker.debug.xcconfig */, - 91E76A46D4AB33E0DEF355E7518F45FE /* RNCPicker.release.xcconfig */, + 8EC8CDA467619A6E8A2024C3EA0D2BFB /* SDImageWebPCoder.h */, + 72704C9FEC7AB0313AB406ADEE70C724 /* SDImageWebPCoder.m */, + D6E9C366366BC0F940F7C5C0FA27DCDC /* SDWebImageWebPCoder.h */, + EB7A6496AAF2B236C87CC456EB447314 /* UIImage+WebP.h */, + EDB60C5D7FEE0147D2378B4D91C6A5F9 /* UIImage+WebP.m */, + 36783EE0FC0A8CA18E540E322F3FCB9C /* Support Files */, ); - name = "Support Files"; - path = "../../../ios/Pods/Target Support Files/RNCPicker"; + name = SDWebImageWebPCoder; + path = SDWebImageWebPCoder; sourceTree = "<group>"; }; - F01DECD75D599D9E0F21175BA00634B7 /* Pod */ = { + DB97AA1A48D6FB430A869E9290893242 /* Pod */ = { isa = PBXGroup; children = ( - F61ACA5C6F1C50F250EAC26D616F95AE /* React-perflogger.podspec */, + 77DC6A7365E6108BF00395CB92069FFE /* EXAppleAuthentication.podspec */, ); name = Pod; sourceTree = "<group>"; }; - F1780DF17F8F254B4E8C6DC421BAE976 /* Futures */ = { - isa = PBXGroup; - children = ( - A6697BFBED15299BCC3A039345ADA674 /* AsymmetricMemoryBarrier.cpp */, - DA0C110A12A0BD5E9A1907F4493D4C96 /* AsymmetricMemoryBarrier.h */, - 3345BB29570C13C9BC107CEF66202103 /* Async.h */, - 02D341EE62165381DC8B938DD706B0F0 /* AsyncTimeout.cpp */, - B21C9729FD9EC0FB30E16883878AF772 /* AsyncTimeout.h */, - 279EF3E4CDD5ED4115C487922F3CCA98 /* AsyncTrace.cpp */, - 56519DD0C7D108E7542EE6CBD4386759 /* AtFork.cpp */, - 386A37173A1941791DC8E94F369E85DF /* AtomicNotification.cpp */, - 78BC83CC850F23118262A47B9213D1B4 /* AtomicNotification.h */, - 614730BC9C015864F40F7F79D3DA1546 /* AtomicNotification-inl.h */, - 486C74AA4878D5F7A4C090DB04C9CE3B /* AtomicRef.h */, - ED47FD185B8AA82F02D6F845DC61469F /* AtomicSharedPtr.h */, - D688BD0666F5655DF0C68C2D97CA9956 /* AtomicStruct.h */, - 47C809345916A8DA682664885653FA91 /* AtomicUtil.h */, - 4D4991C2BF9015361FE42050C678D141 /* AtomicUtil-inl.h */, - F3D4269EDDDB1D35DEE5FFE4C47815A6 /* AtomicUtils.h */, - 3D34BCB9EA9CF11A5F9C06040A886B25 /* Barrier.cpp */, - 58C6E7E33F256B29ECC94140A062E1F8 /* Barrier.h */, - 37BED821BCAC65D707441E38B19A810D /* Baton.h */, - EC1DE8EA926E548E11AF410E548B8716 /* BlockingQueue.h */, - 167F8EE3DCF2AB9B35CD71207B01ED5C /* CacheLocality.cpp */, - 43AEA98D17B75654E59BC31D37C4AE24 /* CacheLocality.h */, - EF0C759B7ECF1822BCBF5D46FEDB41A8 /* CallOnce.h */, - 293C236F257F950E2F2BF615684CE878 /* Codel.cpp */, - 5A4D44FB517A2D94D03CAEC0D755B71A /* Codel.h */, - ACCA7A6E3C142EF4A0ACFF27DA8855EE /* ConcurrentHashMap.h */, - 8C5A833DB4603F418D6E176A275CB16F /* Core.h */, - 6A2ABF0D6496094126D0C76FF799A01F /* CoreCachedSharedPtr.h */, - EDAC98E95F85540E8E1A36A7C48A79E6 /* CPUThreadPoolExecutor.cpp */, - C52CF47231E5F2DD0870D298922E99E8 /* CPUThreadPoolExecutor.h */, - E56CEBB5E690CE30375C80AABF6B4CE1 /* Cursor.cpp */, - AD42BC2ED1D7BE159095952915525A01 /* Cursor.h */, - 4719575195AD664C0B7ABD653A1ABDB6 /* Cursor-inl.h */, - 50D23022535AF7BD0EF89E7177B837EF /* DelayedDestruction.h */, - 3151C13364D2D1FBA4AA7C9D512719D8 /* DelayedDestructionBase.h */, - AC65BF4B9DD13A49749589F7DAC592CE /* DistributedMutex.cpp */, - 2739ED4AC4CA3076A994D92159F6CF55 /* DistributedMutex.h */, - 53BC247758C79B3738AB7B8F4964FCEE /* DistributedMutex-inl.h */, - 4687F8325AF288C107CAFE8BE316EEDD /* DistributedMutexSpecializations.h */, - 7D26E0223B986942AE9A33FFAB0D09D4 /* DrivableExecutor.h */, - 60F35749AE880A93AA3F8B9E8DEF69B0 /* DynamicBoundedQueue.h */, - C25265491BA05D7DA07E73525B2E5ADE /* EDFThreadPoolExecutor.cpp */, - AF1AA0233F4B030FCA8C522FDDCED681 /* EDFThreadPoolExecutor.h */, - 9D175055633CCF57160228809C16FCB1 /* EventBase.cpp */, - 742DFD3C79A95BFA465F215781AFD8CD /* EventBase.h */, - FF6856A70766A3EF1370F83A8EB1690C /* EventBaseBackendBase.cpp */, - 560446E9ECE8A3E9D5852595DDB3F947 /* EventBaseBackendBase.h */, - A18608C4217F3EFA8C0D2A878CF092C2 /* EventBaseManager.cpp */, - 68E5B1003B8DCEFF9213D3CA6C3AA20D /* EventBaseManager.h */, - 50E9B9774D4A3DD88A0582AB9E279476 /* EventHandler.cpp */, - 466E3D289B88C4EDE7CC37D8C9EEC208 /* EventHandler.h */, - 7BEEB143F660792E34A92AA98D4043D4 /* EventUtil.h */, - 8D8867473DC9435ABC10784A09B021FE /* ExceptionWrapper.cpp */, - 3EAD0B3A6057A359919AA91B85A91C4F /* ExecutionObserver.h */, - FC3C2EC41A218DD33B6276EB82F35EF5 /* Executor.cpp */, - 54A5A7C199B2EF8C220DCFD279A36398 /* ExecutorWithPriority.cpp */, - 349578B9758BE83C43BA33926084D1E3 /* ExecutorWithPriority.h */, - 9B7ACB1294CE1C97BF683629EF603AB7 /* ExecutorWithPriority-inl.h */, - 990A00178717052F257E58B288D15A84 /* FiberIOExecutor.h */, - 1F21DE85C6358409AE64C374D0EC91C2 /* Futex.cpp */, - 209301772AC99034EB96B79FE63096F9 /* Future.cpp */, - 08AB72659E4E8BC3FCDF3F0DEB0E6611 /* Future.h */, - F893670BC5A985D6ABFC6BDA419F2EB6 /* Future-inl.h */, - 6BFB4F0358B1ACEFB5E3C7512D6AD07A /* Future-pre.h */, - 5009B368367C8DF2D7EF0B5BE9AE61BE /* FutureExecutor.h */, - E288C521FCC2E603C406F068150CCF85 /* FutureSplitter.h */, - 3552447EDDD2011D9AD21F5EA2B9B7FF /* GlobalExecutor.cpp */, - 4836A09444BBA1E2ED8276289A682230 /* GlobalExecutor.h */, - 86C9BD0FB1C49F89C85AB3AEE0919D46 /* GlobalThreadPoolList.cpp */, - 8987A4D1D0660908F0E583A0A5E1D8EC /* GlobalThreadPoolList.h */, - 681A1AB2EE91831DCFF815571703FE6D /* Hardware.cpp */, - A0E7DE312BB0A7E371784C7A0DDCFEEA /* Hardware.h */, - 37E3F2AB320DD034E64B19E8A465385D /* Hardware.h */, - 1BB261D6EBB0A06A931BB83D097DB32C /* HardwareConcurrency.cpp */, - 92A76AE2B586872B9AE72F08122BB086 /* HardwareConcurrency.h */, - 40B967F7C56A728EEBFFF403E70495A0 /* Hazptr.cpp */, - A3E40312392D7D79909DD9D28107B2D5 /* Hazptr.h */, - F8A293D697BEB0EB90B945383C617400 /* Hazptr-fwd.h */, - 73E41D6E861C487FF12A532066A0920A /* HazptrDomain.h */, - FA45F4A628D2428B77D2FC2F4E4BD03F /* HazptrHolder.h */, - A1EB5F02162EBF607D4F46A727A08B51 /* HazptrObj.h */, - 2F99A0B6BBCF0E40F9EDF94E751A3821 /* HazptrObjLinked.h */, - 4B6B9023DD73576E9A084D6BAB8A8500 /* HazptrRec.h */, - E2C60A3260F71E892868D6AD6AEAF785 /* HazptrThreadPoolExecutor.cpp */, - 03749A1A62575AF10C8C927110589F8D /* HazptrThreadPoolExecutor.h */, - 7BDF2E19961193DD18051E70754886F2 /* HazptrThrLocal.h */, - 6A55C04E01ACF9ECB1600AECCFCBD53C /* HazptrUtils.h */, - 9833E76FD72AA77BD04299DE95E2078A /* HHWheelTimer.cpp */, - BBD00687D106C7D010206329B7785BEC /* HHWheelTimer.h */, - 1F2C767F744E3778FCAA39E128F8FBF0 /* HHWheelTimer-fwd.h */, - E43323A34806A9BD3B6B4CB4A2FB27BD /* InlineExecutor.cpp */, - E6047876F69097A9838EEBDAF3540193 /* InlineExecutor.h */, - BA200C7606484DA619B8C99C0D67660B /* InlineFunctionRef.h */, - 4F58D090ED485B4C0D8704E5502A8CCA /* IOBuf.cpp */, - 07CC778AB6214B8185DC0E6A75BB8F83 /* IOBuf.h */, - E2BB7A4727306FDE5D3F4BFAFD898726 /* IOBufQueue.cpp */, - 0CCD17A67031E9AD6CB5C8FE0052D1EE /* IOBufQueue.h */, - A4A32A4AC472CF79969A87EDAEC04E29 /* IOExecutor.h */, - 75563EAB5D1BADF587F512EF467D9CB1 /* IOObjectCache.h */, - 9AE40EC74114F2FFBD6CF82143D0C4A4 /* IOThreadPoolExecutor.cpp */, - 5C6F10F55828C306F9087EA3BE6FFA76 /* IOThreadPoolExecutor.h */, - F5C47C24A4E9B381B4471B21AF14D50F /* LifoSem.h */, - 3EA9D6AF988840673AF7540C73AF91E8 /* LifoSemMPMCQueue.h */, - C92973A386C0B253E39A7584ED55CFFC /* MallctlHelper.cpp */, - 0F6E45DC830E5CA7848322A1858380CD /* ManualExecutor.cpp */, - 618086732FB8BEF7EB0994CD5B8498CD /* ManualExecutor.h */, - 44D271098B5BCC88549B07E033D7938E /* ManualTimekeeper.cpp */, - 08FA31C50853621E0FBE3852C4C240DC /* ManualTimekeeper.h */, - 2964002BFB205F392D39B2C836B6AE19 /* MemoryIdler.cpp */, - ED213EAFD7F2C5486CCED6F2A9B5A25F /* MicroSpinLock.h */, - B3C6BFB580171BD8CB2AC2C4D3FDE006 /* NamedThreadFactory.h */, - 4E610DED409BEE9089F49167DE8A5A3F /* NotificationQueue.h */, - EA73FDEB663FBC04237C1E36C9FAB412 /* ParkingLot.cpp */, - 7B4997BE75B671F317C2EF73421AF78C /* ParkingLot.h */, - 00F6CAA287AF03669BD8E004E864BFD2 /* PicoSpinLock.h */, - 8F8E66A5F4B94E306A243192C02F093F /* Portability.h */, - 64EC894656BBCA746633441C44840EB0 /* PriorityLifoSemMPMCQueue.h */, - 7FB87EB46998796DCFC2FA8FAB22730B /* PriorityUnboundedBlockingQueue.h */, - 1CE60A3BCA8C0C72394A52F3E828C894 /* PriorityUnboundedQueueSet.h */, - BD083BEA419C7DF1EB778B933C9AEA62 /* Promise.h */, - F850DA2AF3D46F85AD5CA6273D824993 /* Promise-inl.h */, - 46CDBAA05655D7D881FA38D4BD265FF0 /* ProxyLockable.h */, - A94A8FADCF705A06FA759CBDCA969EB6 /* ProxyLockable-inl.h */, - 2FB05ECB092D5342169D9D9695DF77D5 /* QueuedImmediateExecutor.cpp */, - B46883F207ACBB452D6EE32DEAF039EE /* QueuedImmediateExecutor.h */, - 7D6DC76017C081128AF141B447DA147B /* Rcu.cpp */, - F69B4FD77A2ECAB40F80D5B29BFC7385 /* Rcu.h */, - 83A36CA920B64E06B7FE6550C363A78E /* Rcu-inl.h */, - F64742258C6EF3E1F9C88DADBD27295E /* ReadMostlySharedPtr.h */, - 000558890AD12FA455201ABBBD9084C3 /* Request.cpp */, - 707628E00EAB111824A6EB05D32A9831 /* Request.h */, - 8D689EB828C16EC54FA9EE86DC83F4C7 /* Retrying.h */, - 5C54F02D722B48B0AA6F0F2997F6DC92 /* RWSpinLock.h */, - 8200BAC2C1DEC23C001DE5C895A8CC79 /* SanitizeThread.cpp */, - 909324D1FAB7D91BCC27BF30156B1037 /* SanitizeThread.h */, - D8A89591EFBF3724820EDA6841A165CE /* SaturatingSemaphore.h */, - 105C6BEDBE480010F2F7F515B213FBBD /* ScheduledExecutor.h */, - 80B008CA424CDE6C865EAD3147A8E58C /* SequencedExecutor.h */, - 779317CA3A38F38A2E8452DA500B10EB /* SerialExecutor.cpp */, - 11EA49134E74A72B02BED62851EB1823 /* SerialExecutor.h */, - 73EF414ADC9425D54A581AC4EDED9B24 /* SharedMutex.cpp */, - 93346F13A155B02B6626A101E5194AC7 /* SharedPromise.h */, - 14451A0D609106DE62DD81E5F0B87427 /* SharedPromise-inl.h */, - E0D470BF6CA037D3474A1794EE56F3EC /* Singleton.cpp */, - EFC7499F43B3972E69F26C8E148364C0 /* SingletonStackTrace.cpp */, - EAD4FACB9D0471C931F15BC3D70024B9 /* SingleWriterFixedHashMap.h */, - 70675BE4961BC87599BFAD42BBF644C4 /* Sleeper.h */, - 9660208B0CEFAE20C259097910CE9787 /* SmallLocks.h */, - C8755BAEBC83C22B03BD7DB43383D48B /* SoftRealTimeExecutor.h */, - 752F50B33E0456ED5566DDBB00DF1A71 /* Spin.h */, - 33B2EEF5CF6FD114264C2B7489C6CBFA /* StaticSingletonManager.cpp */, - 4A21DCEF09547DEB64B4744FAAD03666 /* StaticTracepoint.h */, - 0B9F4EA75F69F6FBF04FED883FE345FF /* Tearable.h */, - 467EFFCEBA0775F7D87CA343E87134AF /* ThreadCachedInts.h */, - 685C9C5FD5924F761267DFE1A9612E80 /* ThreadCachedLists.h */, - 6791FB3EDD564BD9752FDCCF60CA3EBA /* ThreadedExecutor.cpp */, - E7FA9A7A65259B3BD7831B47502FF765 /* ThreadedExecutor.h */, - 78D4A07F409C5EC209DE0046743FB84C /* ThreadFactory.h */, - 760D8A6ADF87C5E2101909974CE1C931 /* ThreadId.h */, - B017EE09913730740C6957C49A600CCC /* ThreadLocalDetail.cpp */, - 63181DA198763B9B8CAD33951BAC9300 /* ThreadName.cpp */, - E0ACDEC4D4AAA9175FD58CD68F056807 /* ThreadName.h */, - D2D9FC5046BFD665D655F0ECFA346B84 /* ThreadPoolExecutor.cpp */, - 8A8419792B253793EEFA61EE8E0A6E9E /* ThreadPoolExecutor.h */, - 55F82640CBEB65A43180581A1F52B31B /* ThreadWheelTimekeeper.cpp */, - 9EEEEE02F2EDE8821AF6967B644451D7 /* ThreadWheelTimekeeper.h */, - 14A2F9FF0806DF09D8520391D7F71997 /* TimedDrivableExecutor.cpp */, - E5110EEC4FB7CF35A200C38520B5D6C3 /* TimedDrivableExecutor.h */, - 08F7AB15CCBD249EB8343CB69FCE435F /* TimekeeperScheduledExecutor.cpp */, - A09076E9363084BD2F32C9CFAB0F4542 /* TimekeeperScheduledExecutor.h */, - 62AE8B9F5D600E833DBC71FCA6DD3A00 /* TimeoutManager.cpp */, - 9C8354DC313E0CA6CCE6E30B455DCCB4 /* TimeoutManager.h */, - 4E0B0B3CDA631795F2F5D588FCF8AA9E /* TLRefCount.h */, - 86DBDB5227F92345841DF5233237B253 /* Types.h */, - CA7D82AD20F59E7EA3AB0E410CD00BD2 /* UnboundedBlockingQueue.h */, - 90C1BBCC13D38BBBE0B1EF10702BDF8A /* UnboundedQueue.h */, - 6ADEB961DEDA65743BCB157D54689070 /* Utility.h */, - CCBA08FC978D2D5552E2C77919C442BC /* VirtualEventBase.cpp */, - F40F4D13C064134A3B808F152E583CC3 /* VirtualEventBase.h */, - 6FC51C20FB20896CA9591C38F77525E7 /* WaitOptions.cpp */, - DF0B15772E0E0B0756F827B79AD46102 /* WaitOptions.h */, + DBF0D84A98EA2709A680634BD80D21F1 /* PromisesObjC */ = { + isa = PBXGroup; + children = ( + CB7745F211E436DA3D41D94069D34EDF /* FBLPromise.h */, + 6CA22FEDEDE239580881B34C6C38B67C /* FBLPromise.m */, + 8D1F87B8E6D00C440CE575B2E0443E50 /* FBLPromise+All.h */, + 10520864986AC74E006BBF6148DE74DA /* FBLPromise+All.m */, + 1A81DBB43980F9F09031CC29D0F03195 /* FBLPromise+Always.h */, + 671EBB409B6D480819A13A112FAD3776 /* FBLPromise+Always.m */, + 829439B6F9662A89D220F0C0F5D27A14 /* FBLPromise+Any.h */, + 20E8543AA6C1645A215228802D850FD4 /* FBLPromise+Any.m */, + CC997E074FE62510CA0786366A9E1389 /* FBLPromise+Async.h */, + D4E6B10B027589CC0D13904E5652C677 /* FBLPromise+Async.m */, + 5455C0402CFDCE1DF1970166EF7B64BE /* FBLPromise+Await.h */, + 8D2E8775C3542E07D330DA257B143C02 /* FBLPromise+Await.m */, + 41C6B1BB014C97D2BB8355BC6BF3F4C1 /* FBLPromise+Catch.h */, + 6E210C1E6DB22B962D984FAB153D25BC /* FBLPromise+Catch.m */, + 5FF5D6E6965540C165C816BE7E0D3F05 /* FBLPromise+Delay.h */, + CA25F46C0F5D8FD0E0E3722EC50F3AE5 /* FBLPromise+Delay.m */, + 41F359E3D9B9BE9B9AC7515C18F685DF /* FBLPromise+Do.h */, + CBEF697AAB8C9A5121EC4DB2FFFF5D8A /* FBLPromise+Do.m */, + 9F8C65F736FD93DD73B765716F33ED48 /* FBLPromise+Race.h */, + 3409DC708CDB92D27E2192ACB8B25864 /* FBLPromise+Race.m */, + 06EF85DD840F7872D266867149DA3AA7 /* FBLPromise+Recover.h */, + 63EB0BF60D7A3D832010E0B4D7883CA2 /* FBLPromise+Recover.m */, + 17A2515EEC5A739593D4A185E6491270 /* FBLPromise+Reduce.h */, + E7205498D2F3F369D9740496F9922020 /* FBLPromise+Reduce.m */, + F103884550DA9031A3ADEC95E41DD20C /* FBLPromise+Retry.h */, + F5482F3FA62ED2DDA5C9E62A59C92487 /* FBLPromise+Retry.m */, + C9465C6CD1FE3B85A35657A6D579F255 /* FBLPromise+Testing.h */, + D74B7EF944F7B4B6E8616A0630290244 /* FBLPromise+Testing.m */, + E322625505DDB3B36E6E3A865CF9CD6B /* FBLPromise+Then.h */, + C5DD48F46D8B1790D9D67B76581C205F /* FBLPromise+Then.m */, + 46EAC0AC31101B2379FEEB2A22CF1E41 /* FBLPromise+Timeout.h */, + AD9E48B645FD5F52BE09363C823EAA97 /* FBLPromise+Timeout.m */, + C64101AE28CB43EB122B102799DF5D94 /* FBLPromise+Validate.h */, + 55A679876C2AB3BE5151840BEA7F86EA /* FBLPromise+Validate.m */, + B65B9F2A9526E214078BD707BDCC2D26 /* FBLPromise+Wrap.h */, + 9CB4C3582A95DA599575D178F835328A /* FBLPromise+Wrap.m */, + BF8DDAB588A8C634390A3295248FF6AF /* FBLPromiseError.h */, + A490E4633614F23366F2CA288D7711EE /* FBLPromiseError.m */, + 4ED6A9FCCBF7998657CABFCED7B8D0B4 /* FBLPromisePrivate.h */, + 7BCAF8117650A6FD61A74660EBC9ED49 /* FBLPromises.h */, + 6668AB8196A14109F58B7E3427852A96 /* Support Files */, ); - name = Futures; + name = PromisesObjC; + path = PromisesObjC; sourceTree = "<group>"; }; - F26BD41726D721693FD89A61BD4F4304 /* RefreshControl */ = { + DCD3B6E0821B5A6BD379EC8A57DBABAF /* FlipperKitReactPlugin */ = { isa = PBXGroup; children = ( - 1F26C9949B8C13255F0D9E2BF80025C9 /* RCTRefreshableProtocol.h */, - 960B662DBF07CC6F9D678776B42D2D22 /* RCTRefreshControl.h */, - EFBF0F66DD05093A50745A956B265F83 /* RCTRefreshControl.m */, - 304AD9DD746227D7CFF1D49EE52759C2 /* RCTRefreshControlManager.h */, - 534C4979DAEE0F420291383A100BED53 /* RCTRefreshControlManager.m */, + 9191C389ECCEDE514709DB9014B65844 /* FlipperKitReactPlugin.h */, + 5C97A1734BC7663A4E9187904238E2D7 /* FlipperKitReactPlugin.m */, ); - name = RefreshControl; - path = RefreshControl; + name = FlipperKitReactPlugin; sourceTree = "<group>"; }; - F27CE71A7A35E5EDF4829C02CD2D6ADA /* Pod */ = { + DCDC83EACA417CC9734283A73954FED7 /* ReactCommon */ = { isa = PBXGroup; children = ( - F7D554F5ED674572E6525FC97E60D179 /* UMReactNativeAdapter.podspec */, + 17143473E71D82F9CA1B3BD38E870FDA /* Support Files */, + 0FCD8CB8399625D637A48F4F8D718CA5 /* turbomodule */, ); - name = Pod; + name = ReactCommon; + path = "../../node_modules/react-native/ReactCommon"; sourceTree = "<group>"; }; - F2AD59A18562376746A8C194B5A64512 /* Support Files */ = { + DEC3FB23FC7838128C08F7B54D3610A0 /* Support Files */ = { isa = PBXGroup; children = ( - 6F202CC58071BB662983E064EB4D8F0C /* React-RCTActionSheet.debug.xcconfig */, - DED15C1208E208890C8166DEFA7CCCF0 /* React-RCTActionSheet.release.xcconfig */, + 47C1A97C92EC5E34F7FCA9F0E7153EF6 /* EXAppleAuthentication-dummy.m */, + 0F84B3AE10BCA318E489BADF2E0F0201 /* EXAppleAuthentication-prefix.pch */, + BAFD2F4F1D254E646C2A611BAC1E1554 /* EXAppleAuthentication.debug.xcconfig */, + 9A9DA9A0D1F5C69DCEA3815845A3298C /* EXAppleAuthentication.release.xcconfig */, ); name = "Support Files"; - path = "../../../../ios/Pods/Target Support Files/React-RCTActionSheet"; + path = "../../../ios/Pods/Target Support Files/EXAppleAuthentication"; sourceTree = "<group>"; }; - F2D81CCA0762A4A03BCFC78CE0764E76 /* Pod */ = { + DF8CDDFA41D40FD8761164362F20E2DF /* Support Files */ = { isa = PBXGroup; children = ( - B2E0119137ABBA5AA5D171159172945D /* React-RCTSettings.podspec */, + 1C776F25F21E87DDEAA73384920D0403 /* React-RCTText-dummy.m */, + 5C50F7E02C0D7C39EFFCF903F77C21B5 /* React-RCTText-prefix.pch */, + 50DD36A025468F5F02F6AF789FE6D183 /* React-RCTText.debug.xcconfig */, + CF990913EFA65300DDCC620C8E9CA032 /* React-RCTText.release.xcconfig */, ); - name = Pod; + name = "Support Files"; + path = "../../../../ios/Pods/Target Support Files/React-RCTText"; sourceTree = "<group>"; }; - F359CB836A39AD8FA351F634C8FFC0AB /* Multiline */ = { + DFD94A53177D094DB449CB60B1EF3BAF /* Support Files */ = { isa = PBXGroup; children = ( - 0FE5ED29CEF5FAFC8F13E402F3E4412C /* RCTMultilineTextInputView.h */, - 395A42BD9767360C5A6BF5EB5CDB1A2E /* RCTMultilineTextInputViewManager.h */, - C8644BEA899187C9860C8C5A4BCE9404 /* RCTUITextView.h */, + A644314535FE9D782FC2FC48295F0C9B /* React-RCTAnimation-dummy.m */, + 1764D500C81E26344397215CCD33BF3E /* React-RCTAnimation-prefix.pch */, + 2019E9377898634C65FBAC3D6FA29C85 /* React-RCTAnimation.debug.xcconfig */, + 6001A29683C89BE2C4DEE83AE685690B /* React-RCTAnimation.release.xcconfig */, ); - name = Multiline; - path = Multiline; + name = "Support Files"; + path = "../../../../ios/Pods/Target Support Files/React-RCTAnimation"; sourceTree = "<group>"; }; - F44E47364DE167325BBAC8AFB37A73EF /* ios */ = { + E02246DD388CB0F8B60CA665975BE11A /* MethodSwizzler */ = { isa = PBXGroup; children = ( - 02A07C2CF210CB58858459A1FB92D628 /* RCTTurboModule.h */, - EA880D94604F3BDF76B355942BB36599 /* RCTTurboModule.mm */, - 9CA6E8C4E777904A2FD84541C7D45F8D /* RCTTurboModuleManager.h */, - C63DD0A29BA912799F564DF84CD28550 /* RCTTurboModuleManager.mm */, + DD755238A9D677B6E4714C0E46577C33 /* GULOriginalIMPConvenienceMacros.h */, + BECA37A5BFCB63F2C4A1A1E3A36A40F1 /* GULSwizzler.h */, + 9ACF7DE9D0AD4C96FFD0FD7A5965BBC2 /* GULSwizzler.m */, ); - name = ios; - path = ios; + name = MethodSwizzler; sourceTree = "<group>"; }; - F45F99239F8D620BA75E45AC10FCBE50 /* FirebaseAnalytics */ = { + E11B63DA733D2336E9167B317CBD81B6 /* Metadata */ = { isa = PBXGroup; children = ( - 3B0BEE9EB3FAD1BC4E1F3B77ECF664EF /* Frameworks */, - C352AEE6829F5084C03F1E6270581225 /* Support Files */, + 528D81F5282BB37DA67F169008605DF8 /* BugsnagMetadata.m */, + A25D5D45D2D27A0358B1ADB4C871C53A /* BugsnagMetadata+Private.h */, ); - name = FirebaseAnalytics; - path = FirebaseAnalytics; - sourceTree = "<group>"; + name = Metadata; + path = Metadata; + sourceTree = "<group>"; }; - F4832F0C1B0722230AACED41CB08F65F /* Pod */ = { + E2668025D1080A94CFC359101701060E /* UMReactNativeAdapter */ = { isa = PBXGroup; children = ( - 45CBAD2BE825C521ABDEF3571C99DFF1 /* UMImageLoaderInterface.podspec */, + 1FE85751FD04148C40BE6AD60B12D67A /* UMBridgeModule.h */, + AF4B248A872327E091159AD21AE167D7 /* Pod */, + F5FC01CE17D39A63F6E1E147F0F09519 /* Services */, + 688B7192B776720FD841DC1AF098EB38 /* Support Files */, + 4500EE753C21425A88664C035C1736AE /* UMModuleRegistryAdapter */, + E62E32DB0A37617A2D6DEFD579619C23 /* UMNativeModulesProxy */, + F47181BE046BDD5D0C12D7A5D9D6108C /* UMViewManagerAdapter */, ); - name = Pod; + name = UMReactNativeAdapter; + path = "../../node_modules/@unimodules/react-native-adapter/ios"; + sourceTree = "<group>"; + }; + E45F79926B1DEC76A444D347CF989A15 /* RNFBAnalytics */ = { + isa = PBXGroup; + children = ( + E721B6881F3C08E2F491A70FCC2BEF12 /* RNFBAnalyticsModule.h */, + 3D09B252666AE7DD10071F367634BAA4 /* RNFBAnalyticsModule.m */, + CF05AD48B0362E1C4D744114C2954EEA /* Pod */, + CB128641DAD82FFA70AC453EAA9C572E /* Support Files */, + ); + name = RNFBAnalytics; + path = "../../node_modules/@react-native-firebase/analytics"; sourceTree = "<group>"; }; - F518BFDFEDFDC9F567770B50F2224D0F /* Support Files */ = { + E4683B27615D4AAD9C8A559585EEB012 /* Support Files */ = { isa = PBXGroup; children = ( - 5EAE9196962CE4F1B28D093A73FEFB1D /* React-runtimeexecutor.debug.xcconfig */, - 245ECF7B29C53EB3D624AA79946C00A8 /* React-runtimeexecutor.release.xcconfig */, + 05EB8F810BAF57C53BB703D4662738BE /* FirebaseCoreDiagnostics-dummy.m */, + CD89A9F9C536B61983B6660179DE85A1 /* FirebaseCoreDiagnostics.debug.xcconfig */, + 8D6954587DAAC4331F51336675363378 /* FirebaseCoreDiagnostics.release.xcconfig */, ); name = "Support Files"; - path = "../../../../ios/Pods/Target Support Files/React-runtimeexecutor"; + path = "../Target Support Files/FirebaseCoreDiagnostics"; + sourceTree = "<group>"; + }; + E5062990F7C0963D9C751E11904BFE04 /* Services */ = { + isa = PBXGroup; + children = ( + EF3D4BEE22F6CEEFC22E8EAB98F576D9 /* UMLogManager.h */, + 58E549581D375FD7FF06795FADDDAEA0 /* UMLogManager.m */, + ); + name = Services; + path = UMCore/Services; sourceTree = "<group>"; }; - F5C468E2C8EB29A22C73F934983E7DCB /* Pod */ = { + E5C2B36993817DD656E21FDEE5398556 /* Pod */ = { isa = PBXGroup; children = ( - 5F3837B4B558F144062895D604B49077 /* Yoga.podspec */, + 871C5BCD33D1119E788F8747037FECAB /* React-CoreModules.podspec */, ); name = Pod; sourceTree = "<group>"; }; - F641105844363762CA3BBBE07CC08592 /* Support Files */ = { + E62E32DB0A37617A2D6DEFD579619C23 /* UMNativeModulesProxy */ = { + isa = PBXGroup; + children = ( + E34C91358CF624A99CF981CA243796DF /* UMNativeModulesProxy.h */, + FA244FC87045F1DBCFA197A0DD24F855 /* UMNativeModulesProxy.m */, + ); + name = UMNativeModulesProxy; + path = UMReactNativeAdapter/UMNativeModulesProxy; + sourceTree = "<group>"; + }; + E762060329116CF6E7ACDC60D47201D4 /* Support Files */ = { isa = PBXGroup; children = ( - 1B354C853DA1F53692CF84A3B1ABC877 /* React-RCTImage-dummy.m */, - F51458ED217868C4E220100B51E3EFC2 /* React-RCTImage-prefix.pch */, - E38C1AE8DEA5B9BE757563C6DE252B33 /* React-RCTImage.debug.xcconfig */, - 9F9C7917EDBBA65B57AA90AF42B42EFA /* React-RCTImage.release.xcconfig */, + 4CCC840D3A806A7EC55CB844053F80BD /* ReactNativeUiLib-dummy.m */, + BB89A194A05E3FEBDABCDD32E61A2BBC /* ReactNativeUiLib-prefix.pch */, + 30CA77D832694AC1CF14BF2AF1E5D814 /* ReactNativeUiLib.debug.xcconfig */, + 7422083617C1E522AFBF1BAB0FC9C0F3 /* ReactNativeUiLib.release.xcconfig */, ); name = "Support Files"; - path = "../../../../ios/Pods/Target Support Files/React-RCTImage"; + path = "../../../ios/Pods/Target Support Files/ReactNativeUiLib"; sourceTree = "<group>"; }; - F665DD37085CF39892F6815455739FCF /* Pod */ = { + E76E2D664D429BC0F4E8FCF6A352A5D6 /* Pod */ = { isa = PBXGroup; children = ( - 70DFB992E5E5E1CB0CC34C34C8BECFB8 /* api.md */, - 73E578732206D30A3DD14484BEE74608 /* LICENSE */, - 4E060D1DC000ED351BF7F2053F8B242D /* ReactNativeART.podspec */, - F975E93D0FA1578E1A6F12A2B7879ABE /* README.md */, + 956044FF56EACEBCFC038AEE4BD75555 /* UMAppLoader.podspec */, ); name = Pod; sourceTree = "<group>"; }; - F67429E53CEB7D36B9F6BCCB4BEA01BB /* Support Files */ = { + E953694EDC1DEBD7F4BC682ADA71F768 /* React-CoreModules */ = { + isa = PBXGroup; + children = ( + FC135A6F68C0A8FBC3B924A43F41306C /* CoreModulesPlugins.mm */, + FED139A5C947F85FAF85C63E97CF494E /* RCTAccessibilityManager.mm */, + D4C63E5B2D79338D7C4D0A1E7587481F /* RCTActionSheetManager.mm */, + FB11CDFCB970930C223AB157A8D8800A /* RCTAlertController.m */, + 77CE9025DBECFCA19A4EDD0427D6A563 /* RCTAlertManager.mm */, + 6FA58CBA536D9D7DE17B1A12D0597543 /* RCTAppearance.mm */, + 877BECEB1BD5EA2DE13BF5C420F82C7C /* RCTAppState.mm */, + 9EAF4D65E03E37FE5ADDAC62B76870F8 /* RCTAsyncLocalStorage.mm */, + C251FA74397E7B2F935F2108DF468B6E /* RCTClipboard.mm */, + 63FEB9073596EEC82CA93527A3335C35 /* RCTDeviceInfo.mm */, + FD912543F94EC5B502AF5271B7F33F57 /* RCTDevLoadingView.mm */, + F98D6C96EA26524A9155DD361F636BAE /* RCTDevMenu.mm */, + B4400AE4917C2A82AC54DE4C01C7A2C6 /* RCTDevSettings.mm */, + 107FCA2BB300F871ED6D3CBBFD33FEDE /* RCTDevSplitBundleLoader.mm */, + 66790C568554BE8BB1C7F1BCD2271848 /* RCTEventDispatcher.mm */, + AFA986D249892E3FFF0989691CC3B935 /* RCTExceptionsManager.mm */, + D96F6558003383FD9384D345C606AA44 /* RCTFPSGraph.m */, + 4DF7D8E535C31E6003E459C320DD2DC9 /* RCTI18nManager.mm */, + 7982CB5D73E0D2114B268367D808FC2F /* RCTKeyboardObserver.mm */, + 0A014A04182AFA2C3A7575F78FC95DB7 /* RCTLogBox.mm */, + 8E0B565D7C8AEA23DC2FDB23918EC89D /* RCTLogBoxView.mm */, + 55DF40C67AED6A86F5EBD59DFE928F5D /* RCTPerfMonitor.mm */, + D62F9413E9543BF9437FF1A09736306A /* RCTPlatform.mm */, + 33B19ADF73B1A5C1386B8D179722B428 /* RCTRedBox.mm */, + 566E0D113677CF1EF5DE3ECB990C2DE9 /* RCTSourceCode.mm */, + 5C278DB4AB641EB1453E5E4C89D6C1E8 /* RCTStatusBarManager.mm */, + F01CA0A6C121628F76304AE1630DBC03 /* RCTTiming.mm */, + DC8E48ECC645482C7260C86742DC8B6A /* RCTWebSocketExecutor.mm */, + C585558FF762C77A46401E17B9643AEE /* RCTWebSocketModule.mm */, + E5C2B36993817DD656E21FDEE5398556 /* Pod */, + 7EBE103CCEA5B283D29BCEB0CCFCCD16 /* Support Files */, + ); + name = "React-CoreModules"; + path = "../../node_modules/react-native/React/CoreModules"; + sourceTree = "<group>"; + }; + EA46FE6A87C7E34A3EA7EFBEF382AFB5 /* Flipper */ = { + isa = PBXGroup; + children = ( + BDEB977E76B4D94A94A55E8BFEDC72EF /* CallstackHelper.h */, + 00092D8F33AE638AF5550472249AE34F /* CertificateUtils.cpp */, + EE4CA88257AAA729310362DA3CFECB7C /* CertificateUtils.h */, + FB04F3FFD2C843D7565D520D56347E1F /* ConnectionContextStore.cpp */, + 133F2B8DF0A141FC6062F4CC612F6372 /* ConnectionContextStore.h */, + 7161BE6C623D705BEED74F02BBEE27A8 /* FireAndForgetBasedFlipperResponder.h */, + 4807090FD5FCE064FDD184B3B1CA0D10 /* FlipperCertificateExchangeMedium.h */, + EFFA9C330697F1C695ACB214D18D70F9 /* FlipperCertificateProvider.h */, + 89445D944710DD22FFEDB2D88CFD8060 /* FlipperClient.cpp */, + F2A38F04DB883450BE8C18345A3BDDA3 /* FlipperClient.h */, + 3BFEBF2FF76E4E913EDA71BD82F795D9 /* FlipperConnection.h */, + E540DDA1FC9323CD80D9AA672062CC35 /* FlipperConnectionImpl.h */, + BF5409D991F72DFC729CA5C3956D7377 /* FlipperConnectionManager.h */, + 9BD25DA7C72B018B37F585E722698980 /* FlipperConnectionManagerImpl.cpp */, + C5FE5A7E16D6D204C71CF2B1969DF7CC /* FlipperConnectionManagerImpl.h */, + 92B98D79B80A11C241B2C25BEAB7C807 /* FlipperInitConfig.h */, + 179DE4BAD48DE65AB612FD237939782A /* FlipperPlugin.h */, + C9842BA82BF3CC6B47590CA475DA33F7 /* FlipperResponder.h */, + 7AFD54C7506900B0B8E92D9FC738426D /* FlipperResponderImpl.h */, + 8FABD72C9E2EE3995E41F7E7224B66DE /* FlipperRSocketResponder.cpp */, + 2C8B9227524522C4C2CA7E8C31B3BB06 /* FlipperRSocketResponder.h */, + 0897E020451836245A908CBBB9AFCCD2 /* FlipperState.cpp */, + 07C3205E4A1A8E1FE600A520F293F4C4 /* FlipperState.h */, + 503DBF84DF18AFA2E710724C2610BC3E /* FlipperStateUpdateListener.h */, + E85B8F5F5C43BE70699346841EC7680E /* FlipperStep.cpp */, + D76534D1CBA2C034F50357BECE4CC28D /* FlipperStep.h */, + 6508735523027061E297F1F9074E7E8A /* Log.cpp */, + 4A58B56C9403B416F76F52128D627C06 /* Log.h */, + 8F3FE5281E3F3ACAAD24A560027F1E9D /* Support Files */, + ); + name = Flipper; + path = Flipper; + sourceTree = "<group>"; + }; + EC40507A74ACD8B56ADC73F711575193 /* Pod */ = { isa = PBXGroup; children = ( - 7560A5F7BC3A7C879FEFAE363E8D0E43 /* FlipperKit.modulemap */, - 1B6184996055D56D26C8211166775FE1 /* FlipperKit-dummy.m */, - F84EC6F38F363EC3FADF882D35D98126 /* FlipperKit-prefix.pch */, - F0E13337EC10017E2AFDE5434B762C18 /* FlipperKit-umbrella.h */, - 602BD77857A04584FC205689CE88517E /* FlipperKit.debug.xcconfig */, - B156798CE872930251DCFF8958AA59D3 /* FlipperKit.release.xcconfig */, + 6408A3566643BF865964C9DAA58C536B /* LICENSE */, + AF4996137CF6A3B559074D8DB8F85011 /* react-native-orientation-locker.podspec */, + 6A2600F50C4B6B6AD4EC4CD37CE7960B /* README.md */, ); - name = "Support Files"; - path = "../Target Support Files/FlipperKit"; + name = Pod; sourceTree = "<group>"; }; - F71F4191E78D842BDE7853052CE116BA /* Pod */ = { + EC4EB637FE316C6C8F49AA8FFADA0878 /* Pod */ = { isa = PBXGroup; children = ( - 98F5638F8036BD901269E11FB8559946 /* UMSensorsInterface.podspec */, + 8C5B5F5A9B6A9FB2A7121C7EB352C695 /* UMSensorsInterface.podspec */, ); name = Pod; sourceTree = "<group>"; }; - F74544B7568C6FF2B91AC8580D11A820 /* Support Files */ = { + EC54B8A3433E26CBD5FEB837EC7DE77E /* GoogleUtilities */ = { + isa = PBXGroup; + children = ( + 031A407B0F437C4428E3DC6172F1922A /* AppDelegateSwizzler */, + D904A011B71186194459C6A5D632DFF5 /* Environment */, + 2A748CDA2E3F0E08B1E6F9F5AD77059D /* Logger */, + E02246DD388CB0F8B60CA665975BE11A /* MethodSwizzler */, + 29A3B81312447CA2A0225A26D2870CBA /* Network */, + 8B0DE15E16E501DCE0AF5B60A8F94F5E /* NSData+zlib */, + C27CB126549B473A0A428E1E8B3FD660 /* Reachability */, + 74C19D8F1E1604BF889526E11C82CFAE /* Support Files */, + 2A12A928747D151AE0920A140912BDFE /* UserDefaults */, + ); + name = GoogleUtilities; + path = GoogleUtilities; + sourceTree = "<group>"; + }; + EC75C0595DFFF3D7C793D66B440B3CA4 /* Support Files */ = { isa = PBXGroup; children = ( - 355BC3442CE4ABB83B0CFA9680E8D1C1 /* YogaKit.modulemap */, - 4D6055979B22944E1EA738BA0EF95ABB /* YogaKit-dummy.m */, - 90954E16691E854DD0BEA15D429D1F89 /* YogaKit-prefix.pch */, - D4565DF68C06D16A9AA04709FCD92143 /* YogaKit-umbrella.h */, - F73BB6947B4750A2A5E5F61F29384ACE /* YogaKit.debug.xcconfig */, - 1013FA3489B2E599784CC6B11BEB6AD8 /* YogaKit.release.xcconfig */, + 27DBAC4134413869D3B87CFE02E8362B /* SDWebImage-dummy.m */, + FC0651B5DCD007381B23EF3578D73D62 /* SDWebImage-prefix.pch */, + 207E43A58135813EB4EB8267106FCDAD /* SDWebImage.debug.xcconfig */, + 70B457C8B4C24EF5C6CF3A9CD2BABDC3 /* SDWebImage.release.xcconfig */, ); name = "Support Files"; - path = "../Target Support Files/YogaKit"; + path = "../Target Support Files/SDWebImage"; sourceTree = "<group>"; }; - F7CA8A6EC0BBAEED2EF6838FD4356737 /* react-native-safe-area-context */ = { - isa = PBXGroup; - children = ( - B40DF7C2CDE03744D98968D0D2ACF035 /* RCTView+SafeAreaCompat.h */, - EE1629DBC0F2312E94B2E5DA2A46C3D9 /* RCTView+SafeAreaCompat.m */, - 78947469984D2FD1BB8948C883C719B0 /* RNCSafeAreaProvider.h */, - 0FDB50B420BB773426F9F40E91C07B38 /* RNCSafeAreaProvider.m */, - 27CAEC8C4FCBBA856272D59A8F1440A9 /* RNCSafeAreaProviderManager.h */, - F12F35269850391E9FAF0153A7CE2C48 /* RNCSafeAreaProviderManager.m */, - 5B7929894D1887234B31F855496F5AC9 /* RNCSafeAreaShadowView.h */, - FCA58601E5C7F004185388335C86AF23 /* RNCSafeAreaShadowView.m */, - 85F0409B00976E265E97759FCCD27E57 /* RNCSafeAreaView.h */, - DFFB7BE862EB42E833249ED655B2CAC7 /* RNCSafeAreaView.m */, - EE7B1FD6B52A6B8F1A82A3DAA4B1FBA0 /* RNCSafeAreaViewEdges.h */, - A6B53E018BB1410AE17A0898B3DB1F13 /* RNCSafeAreaViewEdges.m */, - B2B1577097A380C5EFC177FF78557FF4 /* RNCSafeAreaViewLocalData.h */, - A8FE5B5DF100160357515A6D5DE374A9 /* RNCSafeAreaViewLocalData.m */, - ED66C4774C8544D1E55121F478A0810D /* RNCSafeAreaViewManager.h */, - 00669D5EABDCDD0B6F93F1605C253F1C /* RNCSafeAreaViewManager.m */, - 50380A13EC2534D9286401EBD03FB7FF /* RNCSafeAreaViewMode.h */, - 9D9709598D5DB757633AC6B35AA28861 /* RNCSafeAreaViewMode.m */, - 0E1EF7FD04745BCA08893FF3D93320FB /* Pod */, - 2EF25E51A7D9B87C4E7E327310CEAACE /* Support Files */, + EC7A025E4019D520CF1710925860F3D6 /* UMFileSystemInterface */ = { + isa = PBXGroup; + children = ( + ABB7BFE95C94832DA8EC00ACA36D765E /* UMFilePermissionModuleInterface.h */, + FA97894334A6A43BE3607D30566772DD /* UMFileSystemInterface.h */, + 1C616AC4BFBC9C9F2235A0E26B0CBF97 /* Pod */, + F49029B1D32ECD220667BF0471C9B315 /* Support Files */, ); - name = "react-native-safe-area-context"; - path = "../../node_modules/react-native-safe-area-context"; + name = UMFileSystemInterface; + path = "../../node_modules/unimodules-file-system-interface/ios"; + sourceTree = "<group>"; + }; + ECA41A4AF5945036B167A0DD3E78969C /* lninterpolation */ = { + isa = PBXGroup; + children = ( + D6B274FFC451DF078D950A38CA3B7134 /* Color+Interpolation.h */, + 7DACE2A66D16CFB3CB12CA2CEF2A5D4C /* Color+Interpolation.m */, + E9C099B8FB69ACE8F5CCB6D0B0963181 /* LNAnimatorTemp.h */, + 53CA3E313CC245F884E66A348CD1939E /* LNAnimatorTemp.m */, + 53542ADB2E7CC2A889DDEB73926A3F49 /* LNInterpolable.h */, + FA7AD3865FCF52F38470178B0BCF4D69 /* LNInterpolable.m */, + 616BD93EDD3C19EC3AEC4FE1676297E7 /* LNInterpolation.h */, + D61E3A2684B2F705B24D04DD0741ECF6 /* NSValue+Interpolation.h */, + ); + name = lninterpolation; + path = lninterpolation; + sourceTree = "<group>"; + }; + ECCE2F9CE4A0CEC77B95EF38ED2A3720 /* UMPermissionsInterface */ = { + isa = PBXGroup; + children = ( + FDD3541856E2E010A9D6F44CF49EDA9E /* UMPermissionsInterface.h */, + 1D154589323A5765686D3EAEED64220C /* UMPermissionsMethodsDelegate.h */, + 4C59D321808B4D4853809E71D9177619 /* UMPermissionsMethodsDelegate.m */, + 995646CCF0E2046980210989B52D01E1 /* UMUserNotificationCenterProxyInterface.h */, + 8A73579ABB4A0C48A4226B9C09B26040 /* Pod */, + AE3D1A1B13B8CD94EFEB6356883FDD7A /* Support Files */, + ); + name = UMPermissionsInterface; + path = "../../node_modules/unimodules-permissions-interface/ios"; sourceTree = "<group>"; }; - F7E4F3702F4A4EBB7AB5AD0518729F1A /* Pod */ = { + EE145B526FD9C500E3EE81FEA9A86E11 /* Pod */ = { isa = PBXGroup; children = ( - 3F65646ECC691E18D39339948A9A1F33 /* LICENSE */, - D3DE53BFB30AD316FAD57081454D1606 /* README.md */, - 0E43C7D6E8A94BC0C9E6999D4CF2CF04 /* RNVectorIcons.podspec */, + 9484D5E5BABAE4DBA96379456A3C18E2 /* LICENSE */, + 9685AD784EAD951E2708D500DB1E46A8 /* README.md */, + D5BAB0F7D0CACDD4F459851168D9D9C5 /* rn-fetch-blob.podspec */, ); name = Pod; sourceTree = "<group>"; }; - F8263D86AEC7E8A3F873201850FC131A /* Support Files */ = { + EFFDB7E400016369BBC2E162311A357D /* RNGestureHandler */ = { + isa = PBXGroup; + children = ( + 4EFB5A68337E6B1673E953CF8E8FE331 /* RNGestureHandler.h */, + 6B0676CBD8A71AE5BD3ECE33CD28BCF2 /* RNGestureHandler.m */, + 1B48A4A18E8D9025FF28CF6C8D8D3214 /* RNGestureHandlerButton.h */, + 042A4CD38C9F18C4103F66713D6AC85D /* RNGestureHandlerButton.m */, + A719A1FE15388E43AFA1D2D2B8F5270B /* RNGestureHandlerDirection.h */, + FA939D9AE922CBBBC7FBEEA4A895C80B /* RNGestureHandlerEvents.h */, + 1D1D09DAD7CC3D29904EA449EA121FBA /* RNGestureHandlerEvents.m */, + 93972940615BA109232EF3C4B4C4FE46 /* RNGestureHandlerManager.h */, + 072312C81694A72402DA2D45C84080FC /* RNGestureHandlerManager.m */, + FB89335A51E5ED3CA6083050F7673144 /* RNGestureHandlerModule.h */, + D26C1318C6930A4F53CE24F7FB16A3F5 /* RNGestureHandlerModule.m */, + 39C23166B3FD9C8FD9DE9B453CC1112E /* RNGestureHandlerRegistry.h */, + E79EC242E65EB52F2828B86D9E7A0D80 /* RNGestureHandlerRegistry.m */, + 831CBF020C42108AC4D99F887A905219 /* RNGestureHandlerState.h */, + 52A59F967C9E8AAF8C5C7C04C94801C3 /* RNRootViewGestureRecognizer.h */, + C9175199DD1119E2B5B1244B05FBA35C /* RNRootViewGestureRecognizer.m */, + F4A4E67CE6F99A44387F79B4C42E5F97 /* Handlers */, + C2E17396693A9ACD14863718F5EC6E11 /* Pod */, + FE54B64DF98641A32FBF623DC2BD2751 /* Support Files */, + ); + name = RNGestureHandler; + path = "../../node_modules/react-native-gesture-handler"; + sourceTree = "<group>"; + }; + F02E8394CA9A1D2A4181EC8A27A87C51 /* Support Files */ = { isa = PBXGroup; children = ( - 1FE7C4C0DA60ED2DAB89FD5B20737950 /* RNLocalize-dummy.m */, - 8ACE9792D970512C40AB945A7A2B9C24 /* RNLocalize-prefix.pch */, - 44122EACFF785CC25F182DF7C765E7E3 /* RNLocalize.debug.xcconfig */, - 454A520F2F73FC2B2E8C35BC65566A9B /* RNLocalize.release.xcconfig */, + 21162AF148163CED33473BF48B69BC19 /* OpenSSL-Universal-xcframeworks.sh */, + 5454397C53B00A0886C67818C7D5C4C6 /* OpenSSL-Universal.debug.xcconfig */, + 6316F196F3F7655EE41C4A58B127B152 /* OpenSSL-Universal.release.xcconfig */, ); name = "Support Files"; - path = "../../ios/Pods/Target Support Files/RNLocalize"; + path = "../Target Support Files/OpenSSL-Universal"; sourceTree = "<group>"; }; - F842F6F89CA701E4254C809E1592B182 /* Support Files */ = { + F0D3D2589460AFE9FF44696FB703A702 /* FirebaseAnalytics */ = { isa = PBXGroup; children = ( - FC882B53AD9232AB35FE1978D55A730F /* SDWebImageWebPCoder-dummy.m */, - 6A096EC171F2532ED7AA64B58D2D2138 /* SDWebImageWebPCoder-prefix.pch */, - DFD4B2798F450F184E7C446D967B164E /* SDWebImageWebPCoder.debug.xcconfig */, - ABD3AC8515A557FDAD3B1D32F8F37F03 /* SDWebImageWebPCoder.release.xcconfig */, + 04D8BAAFF6AE8C429A1D1FC3440F57B4 /* Frameworks */, + 7F9ECDF53641E4DED45CB281F2949A00 /* Support Files */, ); - name = "Support Files"; - path = "../Target Support Files/SDWebImageWebPCoder"; + name = FirebaseAnalytics; + path = FirebaseAnalytics; + sourceTree = "<group>"; + }; + F28BF443712C063DE5CB94D4140AF9D0 /* Resources */ = { + isa = PBXGroup; + children = ( + 7E9EB301924F7F2F85D062091DB9F47C /* ar.lproj */, + 5D37DCC69BBEFCB2217A97B4F202D626 /* Base.lproj */, + 6194DCE370868826A0343A26D07F27F6 /* ca.lproj */, + E67E4622717AF2F4B726295DFD25C04A /* cs.lproj */, + 9B5A8D4CA93B7E6695798AF9B46667CE /* da-DK.lproj */, + 5F1812CF7408473FCCA9C61A9726AF51 /* de.lproj */, + ACF1F4AC32DB4B49B8963B1F798941BA /* en.lproj */, + 2F775D97AC737703F52DD8702264CAB4 /* es.lproj */, + 8F04D99329DD02E83D93EC3D9CF85975 /* fa.lproj */, + A290D9C2C1BC4AB169772A94FD2E226D /* fa-IR.lproj */, + 1DE0410E1582C5B2C5ADC77DAAE957D4 /* fi.lproj */, + 91B5A6D0C65ACE19D0A47A4FB90D4734 /* fr.lproj */, + 88634999BAA1C0342A70D48584930D65 /* hu.lproj */, + A0F8C68EF6165C3215A1E5DB0929AF1D /* id.lproj */, + 8D4F6F8F160C900324E6BBD8F8BD6DC2 /* it.lproj */, + 8377D5B92B1818A3AAE602AE8C18EF12 /* ja.lproj */, + 2E02143A3700FA34F89CE1C664E3231F /* ko.lproj */, + F7A2AF898F78167F67A4A2CA7158BD64 /* ms.lproj */, + B09CBD69C7A804AE3E4219DDD94A3EA4 /* nl.lproj */, + 7744B9FE1F06A2813519D47E760A5C6C /* pl.lproj */, + 392D8A7E2F4366764C7D4CB28AD08701 /* pt.lproj */, + 3FD325DFB52FFF20E1052FACDF20A233 /* pt-BR.lproj */, + 3E83CF8DA80F50B268B4921B82D35430 /* ro.lproj */, + FBAA7D070E6470295A9B6E90BB3291FE /* ru.lproj */, + 9A7D715843BB9AC058F9282B77EF33B7 /* sk.lproj */, + 2A1355CBBD5567E023DD512116787305 /* tr.lproj */, + C3CBBD49FBF8E308B82A5CD2216E44B6 /* vi.lproj */, + BB804F0568669C71B236C99E83947DBF /* zh-Hans.lproj */, + 1841CB4A2479C0353942AC067E46AFF6 /* zh-Hant.lproj */, + ); + name = Resources; sourceTree = "<group>"; }; - F93ECDB377FFD54E677EC59801E4DA9B /* rctcustomInputcontroller */ = { + F4221F5AEB772D27150794A606347C21 /* React */ = { isa = PBXGroup; children = ( - C191067ED21FA9A8C57AE29B73488327 /* RCTCustomInputControllerTemp.h */, - 1BE007A3B2DCB6601D82C16DCA04FC1C /* RCTCustomInputControllerTemp.m */, - 568E4B473F5892180E742DDA535A93AE /* RCTCustomKeyboardViewControllerTemp.h */, - B59BA6E9E92F0A289F145CF2CEF05F1D /* RCTCustomKeyboardViewControllerTemp.m */, + 60F2C2E567B03990E30AC666B8031135 /* Pod */, + C2B92F5E819BA751FF094B5399835B63 /* Support Files */, ); - name = rctcustomInputcontroller; - path = rctcustomInputcontroller; + name = React; + path = "../../node_modules/react-native"; sourceTree = "<group>"; }; - F9B45698BD58555FD6D0225DD72AF051 /* hermes-engine */ = { - isa = PBXGroup; - children = ( - 033274F54F2513C69DDB64025F49C445 /* Buffer.h */, - 44146B6A81E627EDACB9809D2DD4EB2A /* CompileJS.h */, - 41236F51B186E3AD72EC8098158E3633 /* CrashManager.h */, - D073692990B9BF66DA53ABBA5F0547E2 /* CtorConfig.h */, - 6DADA8D716CE4503A3E311B00DC0BB26 /* DebuggerAPI.h */, - E59C76EA0B2F7BDD8545DE03BE13E951 /* DebuggerTypes.h */, - 0314DFFE16CFA2431FDA731356CA2DE1 /* decorator.h */, - 59AE21B3569D28AC69900B2F770A4A0E /* GCConfig.h */, - F2CC85DC5B0E20ACBC7029154A770E99 /* GCTripwireContext.h */, - 3F9EBF0A4C3CC3EDC415626C8E7C4636 /* hermes.h */, - 2660FE5414FB1D00B91C0DB32FD889E1 /* hermes_tracing.h */, - D10E2669C8848E54D113A42302BB19D4 /* instrumentation.h */, - AF137C52FE6DED8BCA627862CACD77AE /* jsi.h */, - A9DD47F0BB4836BFA4ED9A1E2DEDC457 /* jsi-inl.h */, - 6991BE63F2E573C66593317FD6BC4642 /* JSIDynamic.h */, - 75EEF05A44965EBDD6F264E117E56443 /* jsilib.h */, - A6C61E6BE7733E96C385CEEB85A1E332 /* RuntimeConfig.h */, - C9AD1B7ACF67B011EFE62F0C72771D6D /* SynthTrace.h */, - 583C1F06C507008E12FCD264B2ED8555 /* SynthTraceParser.h */, - F7A64D41667778D33A9333B1C9294E2F /* threadsafe.h */, - 10F1FC21FBBE572C7A62B4E5EAB181BE /* TraceInterpreter.h */, - 326ACB88DD712B9EE33D62EA47050950 /* TracingRuntime.h */, - 218B26ABB0386AF0A97FB99AAE154B4C /* Frameworks */, - 11E103C4A6EAB85209C2CB12C4BAB44F /* Support Files */, + F47181BE046BDD5D0C12D7A5D9D6108C /* UMViewManagerAdapter */ = { + isa = PBXGroup; + children = ( + FAFFBB3139BD45FA9CD0F1222555298C /* UMViewManagerAdapter.h */, + 2BB6B186277196265155B80B55ED6C71 /* UMViewManagerAdapter.m */, ); - name = "hermes-engine"; - path = "hermes-engine"; + name = UMViewManagerAdapter; + path = UMReactNativeAdapter/UMViewManagerAdapter; sourceTree = "<group>"; }; - FA03BA6B3DBC87C9DA543B61A41D2B04 /* Support Files */ = { + F49029B1D32ECD220667BF0471C9B315 /* Support Files */ = { isa = PBXGroup; children = ( - BE8085DDE5007490C571E6E464198B33 /* react-native-document-picker-dummy.m */, - 5318214869ED3135FF6216D2E0BBE0A1 /* react-native-document-picker-prefix.pch */, - E6BB15D5AAC1A14C30DCEFA63C6121DC /* react-native-document-picker.debug.xcconfig */, - 3B335D891353EDABF098FC898DC8073B /* react-native-document-picker.release.xcconfig */, + 3F2520861187E53A171112064358DD5D /* UMFileSystemInterface.debug.xcconfig */, + 23AAA7BF7B54F25B59821A0251FAA91A /* UMFileSystemInterface.release.xcconfig */, ); name = "Support Files"; - path = "../../ios/Pods/Target Support Files/react-native-document-picker"; + path = "../../../ios/Pods/Target Support Files/UMFileSystemInterface"; sourceTree = "<group>"; }; - FA160BD1B56736D317D96A56C8D7C8ED /* Text */ = { + F4A4E67CE6F99A44387F79B4C42E5F97 /* Handlers */ = { isa = PBXGroup; children = ( - 15565FCA1BC916623C1F71E4B5EDA377 /* NSTextStorage+FontScaling.m */, - FE11B48849D25AB2247070F9E98D8372 /* RCTTextShadowView.m */, - 1D723EE26569B7CC5274D4FDAAC06E73 /* RCTTextView.m */, - DF281B7C5E8720EB7DC9F94FAA8F7B42 /* RCTTextViewManager.m */, + 82655F50A075F25A1645A0BB688635B1 /* RNFlingHandler.h */, + 90F540860647F95D4E309A4370604FA3 /* RNFlingHandler.m */, + 9FD82F983E0AD0C4D20CD38BB9B275FF /* RNForceTouchHandler.h */, + 30EBFBFA2F08F5ABDF1FFC455ECFEC69 /* RNForceTouchHandler.m */, + 047FBF4C58243D39D4D3FA11C326F2B7 /* RNLongPressHandler.h */, + 2BEBC1A69ED4882FD92FD4958E2610A0 /* RNLongPressHandler.m */, + 32B61E30AFF3C40AE5D8AA81D6BFB060 /* RNNativeViewHandler.h */, + 046A46A4D3012CB489CB79497D95A612 /* RNNativeViewHandler.m */, + 6A0EA24F08EFCF70EB4854F1F5F186DF /* RNPanHandler.h */, + FD57249DC6AFC9BAEFDF3786523C45EE /* RNPanHandler.m */, + 0B1D49B10CD141FE3920FCD3243E60C2 /* RNPinchHandler.h */, + 11F8A4AADD3F955AFF81E71215C2A98E /* RNPinchHandler.m */, + 0D512FF26F5CCDF4BA415C726A100C98 /* RNRotationHandler.h */, + 58519E4FEB91B7580E9B7363FEF12612 /* RNRotationHandler.m */, + 093D1518CAF330513DA2F72FD5219870 /* RNTapHandler.h */, + F2E1A7FA147CABBCF9C7A131CADE6AFC /* RNTapHandler.m */, ); - name = Text; - path = Text; + name = Handlers; + path = ios/Handlers; sourceTree = "<group>"; }; - FA808CFB40F601FBA98ACB56E8260884 /* RCTBlobHeaders */ = { + F4E2319E5893277772D4F272B233E9B8 /* Support Files */ = { isa = PBXGroup; children = ( - CE720B80740482075792A51EC72C64FF /* RCTBlobManager.h */, - 26870246B6A46B10CD4C9299DE8C3D25 /* RCTFileReaderModule.h */, + E3F7EA7EF7F7921678ABA06E6A73D95D /* RNDeviceInfo-dummy.m */, + 989664807ECEE69B4F9008E82B293039 /* RNDeviceInfo-prefix.pch */, + 783C57FC5E602D978EA01AA3688FE8DC /* RNDeviceInfo.debug.xcconfig */, + D02F20BF6E1154C083BD69E44AA4A4EC /* RNDeviceInfo.release.xcconfig */, ); - name = RCTBlobHeaders; + name = "Support Files"; + path = "../../ios/Pods/Target Support Files/RNDeviceInfo"; sourceTree = "<group>"; }; - FB8E1FC8A4EEFA7710F4B5D50CB00F42 /* Pod */ = { + F5FC01CE17D39A63F6E1E147F0F09519 /* Services */ = { isa = PBXGroup; children = ( - 510B5BA406387F705CE66C95EAD96005 /* LICENSE */, - D5076B2B02335290CFEE9635052C0FE6 /* README.md */, - 75CF82490FC7DFB75FE21312B7DBDCA5 /* rn-fetch-blob.podspec */, + C195C15C494B221007C723593670F997 /* UMReactFontManager.h */, + B623E45C1693994714135B7109FB2FDC /* UMReactFontManager.m */, + BF32C23543FA20462B19DE963AD41925 /* UMReactLogHandler.h */, + 8E00F24F9A431B328FFF0FBE6C8D12FE /* UMReactLogHandler.m */, + 11A9510DE133A9F0D171C1943D3E3BBD /* UMReactNativeAdapter.h */, + 7D5F71B498430CFAECC9A99231EB093C /* UMReactNativeAdapter.m */, + 537B1A2D5A531436E67DA7F538C794F8 /* UMReactNativeEventEmitter.h */, + B7B6F4407290E480EAD41439189B1E15 /* UMReactNativeEventEmitter.m */, ); - name = Pod; + name = Services; + path = UMReactNativeAdapter/Services; sourceTree = "<group>"; }; - FC3E1E1924F8AB032732197B8BD6606B /* Support Files */ = { + F63AF7914F663F309F34E4254B1644FA /* Support Files */ = { isa = PBXGroup; children = ( - E495647157E078E4359FE6D76B770AB8 /* RNReanimated-dummy.m */, - 48ABB4CD1CC777F2F66B8C111701D150 /* RNReanimated-prefix.pch */, - F6D284B7576715CC4396B43BE47D1555 /* RNReanimated.debug.xcconfig */, - DC2B8A3D13C3025E4C71AC6D6C299FD7 /* RNReanimated.release.xcconfig */, + BA6AC8EEC7B97FC44312916970496223 /* RCTRequired.debug.xcconfig */, + EE7681EF0BCB9E6154C44E202406602B /* RCTRequired.release.xcconfig */, ); name = "Support Files"; - path = "../../ios/Pods/Target Support Files/RNReanimated"; + path = "../../../../ios/Pods/Target Support Files/RCTRequired"; sourceTree = "<group>"; }; - FC9BAE212206265AB6B079A6022BADA8 /* Pod */ = { + F90D006944306DF911191693C68D34B1 /* Support Files */ = { isa = PBXGroup; children = ( - BCA751A5356A57DB945A6CA6FEC74027 /* LICENSE */, - EFE8405103A0E74725C59DC5C99FDB57 /* README.md */, - DB504C02660FF2C2B4C187F3EAA7E482 /* RNFBCrashlytics.podspec */, + 399F40879EB7B6DD4E1C219C77A1EE6A /* EXAV-dummy.m */, + 55144753DDC5D95053B8318148D3F83C /* EXAV-prefix.pch */, + FA97666CA17482324C214BB3294E7B2E /* EXAV.debug.xcconfig */, + 3E7D9DE5480A25769CB6FD6283AF0206 /* EXAV.release.xcconfig */, ); - name = Pod; + name = "Support Files"; + path = "../../../ios/Pods/Target Support Files/EXAV"; sourceTree = "<group>"; }; - FCCF69CABCDBA2B92EA18F72B31768A2 /* Pod */ = { + F94C9F719C34E1F9DFB66E32FF581087 /* Pod */ = { isa = PBXGroup; children = ( - 7BCED6B3574C45530A644C900F6813F5 /* React-RCTBlob.podspec */, + 0814033B56EE49F64F2BA594ACB95553 /* React-RCTLinking.podspec */, ); name = Pod; sourceTree = "<group>"; }; - FCEED0EE883829DB1F57C7D6F38DB526 /* Pod */ = { + F9FA8CFB76F5DE7BFD3F7CCE602EDFFF /* Source */ = { isa = PBXGroup; children = ( - 25E6733A321E4C2A277571770B8D5A16 /* LICENSE */, - 91B926ACABA2AE33C652F669C9BF2D8E /* README.md */, - ED64319A152E60F820924678CC660D67 /* RNLocalize.podspec */, + D6A00E03F55959F32DA291B27C389868 /* KSCrash */, ); - name = Pod; + name = Source; + path = Source; sourceTree = "<group>"; }; - FD9366726B241C67B09A195B37FDC705 /* Support Files */ = { + FAD02732E02C52426AF72A7FD679A9C6 /* executor */ = { isa = PBXGroup; children = ( - 0510A61DB27979267FAF3006A1A0C607 /* nanopb-dummy.m */, - BE8EE1CD0FADA9E37185A53DE4260E02 /* nanopb-prefix.pch */, - D2C5FC90D2479A209F796DDE8961A2CA /* nanopb.debug.xcconfig */, - FD2A557AEB83B8CC073A1184AB31527D /* nanopb.release.xcconfig */, + 89EFEB908F793F34551438DE8C0039E9 /* HermesExecutorFactory.cpp */, + 2D0FDDDC5D9C5920EDAADBF5B0A01C99 /* HermesExecutorFactory.h */, + 2AC5C3B1B34E86A8D913067DBD164087 /* JSITracing.cpp */, + 6F384B25208EEC617E2CF371DC262F37 /* JSITracing.h */, ); - name = "Support Files"; - path = "../Target Support Files/nanopb"; + name = executor; + path = ReactCommon/hermes/executor; + sourceTree = "<group>"; + }; + FB726BA65B24C2DFD8A40FDF1B3C2805 /* RCT-Folly */ = { + isa = PBXGroup; + children = ( + AC74338314CFFDC45412C73662006009 /* Access.h */, + DC60E88F62613DF045EFC5E7EE59FBC2 /* Align.h */, + 1F30B757D6483351807D2725860DD6B6 /* Aligned.h */, + AC55B0799EE63B29DC2437C51EB50477 /* ApplyTuple.h */, + CA3996A48A9A86870035D6DCD2CC6087 /* Arena.h */, + 959BA46CE2AC241D0364E2195EBF169C /* Arena-inl.h */, + 5854C884DDC424BAC6579BDC6394854C /* Array.h */, + D136BF5DA8A5079F5840F05FE141612C /* Asm.h */, + 194219E1A9BEAF2FEEA1934B5909C073 /* Assume.cpp */, + B483C3BBFE73AFD0FE97410E8CBCE17F /* Assume.h */, + E61799849438E443FA8F89CB1E7DA49D /* AsyncTrace.h */, + EECA4C602AB40654CF18C580823F2E1D /* AtFork.h */, + EE9B29A0DCB0980858423988A3E97C4C /* Atomic.h */, + 367C1203029972C23E13878D72E68E00 /* AtomicHashArray.h */, + 676AA9C2B87B470193388477ED0D5DE2 /* AtomicHashArray-inl.h */, + AD37EAA1168CC304AA093D62E194D2D1 /* AtomicHashMap.h */, + 3FF2A20F6597C36D1257A7BDF71D0437 /* AtomicHashMap-inl.h */, + B5ADB75AB97B0A5C47D0018B45F4202A /* AtomicHashUtils.h */, + 5864D5B667CF319943544AD7A538A00A /* AtomicIntrusiveLinkedList.h */, + FFD63B3614A36E11D4A3B917BF0B2223 /* AtomicLinkedList.h */, + 5995CF9DCF532EEDE852579D56B1BAC2 /* AtomicUnorderedMap.h */, + 1164AE7B2B0C6A63415FF659EE7EDE91 /* AtomicUnorderedMapUtils.h */, + 03FAAF776192C8E274D9579018D31C29 /* Benchmark.h */, + 589423F4956A24AFA2886654B7146DD1 /* BitIterator.h */, + 58905787DC21112A76D3180EC1E94AC5 /* BitIteratorDetail.h */, + F83BC6F24990629827A879FEB9557436 /* Bits.h */, + FA0D821FA03BC48C93913B32C2B3192E /* Bits.h */, + CC074BE074A2DC008C2AA872F35AD84E /* Builtins.h */, + D43565053E48A0F015E2978B5F8D68A2 /* CachelinePadded.h */, + 74C23D7F5EEA624E95EE2680E31C495E /* CancellationToken.h */, + 383A409A66564C64FE913D4CB97EE88B /* CancellationToken-inl.h */, + C6CA12A7D42612E84AD5D864686753EC /* Cast.h */, + E170CB358FA51CCD7F155A2D1C864B82 /* CheckedMath.h */, + 9C2C2C287E99390465AF82ACDCED1D10 /* Checksum.h */, + 4AA22E2D5FA0FBEE53BEB9656626A0FA /* Chrono.h */, + 3DB5088FFF3CF35BFF695132D02D28B2 /* ClockGettimeWrappers.h */, + 002D8E06E0EA583C8547CC130796E45B /* ConcurrentBitSet.h */, + F745E5844EBA717F3FE221B9D9AEB705 /* ConcurrentSkipList.h */, + E51C62E0BA9971F4FEC91528EB53CEE5 /* ConcurrentSkipList-inl.h */, + 0F4E6AECD44AD9B7789C35E28341A3B9 /* Config.h */, + B814C8A657613DFD226DC12F8B9A5DEB /* Constexpr.h */, + D68A584080E8CF76C94BCDFFDDF02C52 /* ConstexprMath.h */, + E1D4345844A51A3143929344413ED7AB /* Conv.cpp */, + 04F74B42605AD4081D49B2EFD520349E /* Conv.h */, + 1320F7AF98FD9273E696E7BE6D91C6E8 /* CPortability.h */, + CC8F8557B9ECBD881EF9387282AD7DDF /* CppAttributes.h */, + 160805D13378C1E997BA10C058ADD34B /* CpuId.h */, + 8696586383D5D0415F1A652D22EBC9C1 /* CString.cpp */, + 70B1A3D921BEE7C7EDA9FA6C4EDCFFE4 /* CString.h */, + 7B2EB461C1280136D015FE6B1C605D6A /* CustomizationPoint.h */, + 65F361A3C4161C514C68C705E024B3B3 /* DefaultKeepAliveExecutor.h */, + FEBBB2E7EFEFC0EB23B93C4B0C023DAA /* Demangle.cpp */, + 508B63A73BC1A57DA47BB257782603C1 /* Demangle.cpp */, + 063AF346E76173BF316BDBADEB6006B3 /* Demangle.h */, + EFBA0E8BF64DCE2AA563A4BD01F2946E /* Demangle.h */, + 1048FF356DAB0F04F25A2308556E8DAD /* Dirent.h */, + A90CA49100A59A5C1F7701DA04C99C1F /* DiscriminatedPtr.h */, + 5415847CF0A60D1C2FD6EDBF1A9684CA /* DiscriminatedPtrDetail.h */, + 7A2FD8546F23D09DEA8138756FE8D1DC /* dynamic.cpp */, + 66A9E39CF28CBE2676B8824193EFED4B /* dynamic.h */, + 654108A5820A9ABD604CFC74958161C4 /* dynamic-inl.h */, + DCAC4087891D28E90586EE4821EA2D67 /* DynamicConverter.h */, + 2F09F15D76F629CB14522980C2E43FA5 /* EnableSharedFromThis.h */, + 8B42A19F67132E1C6AB2FBCA32F5410D /* Enumerate.h */, + 722EB091E1AEEA77792FE41ADF3CDD52 /* Event.h */, + 1A515CEA2A9F3D0D32C3D6245861B119 /* EvictingCacheMap.h */, + 9F69EA0F0BB305B299410EEDF8633580 /* Exception.h */, + 0FD3FC947824CE834932C472A7C177B5 /* Exception.h */, + 5EED4F8FE233A27531DE0D14ABEDE1BD /* ExceptionString.h */, + 84C89852793C8922FF1D6719F61EECDF /* ExceptionWrapper.h */, + D2B5427BED29EAB9A559B33BA7745FDB /* ExceptionWrapper-inl.h */, + 4149D187FBE5120B4A965DA5F457E6E7 /* Executor.h */, + AE70837C612AE7D24CA5BB67408C5255 /* Expected.h */, + 50D4EFBF53C0A6CF329A48DAA8F7795D /* F14Defaults.h */, + AEF0E048470BB3514B56999490E54844 /* F14IntrinsicsAvailability.h */, + BC1D5E6895E2C8CD1B0087DA90AFADC7 /* F14Map.h */, + 46A553DD6A6E77F85A2607C819C345CF /* F14Map-fwd.h */, + 935698F1D84D39E6ADDFB31AC2463B31 /* F14Mask.h */, + DB3C3CFF9D313427B3C2E2C7BBC3A6D4 /* F14Policy.h */, + 74D9344571807628D2FB1AF92A446FFE /* F14Set.h */, + A0E8607987523B8DC4650ADA3DD4954C /* F14Set-fwd.h */, + CBDE4A3F073F40553782AFDA8631AFEF /* F14Table.cpp */, + 893965F8A6D89A6F87F467824F72FAB8 /* F14Table.h */, + FE2CF4FF67D880518972632AA0B80CE8 /* FarmHash.h */, + D50C4EFDCEEF6D65DA96B2B16A3BFCF7 /* FBString.h */, + 6CD1052889D91B98A0D07B276141723B /* FBVector.h */, + E3F0E5A37D0A77F1842D32D82C515000 /* Fcntl.h */, + 43E90B5A1E03778013C7F43219A1F0BF /* File.h */, + F24891A200C44A22D9D76A370CA3F7D4 /* FileUtil.cpp */, + 6076BA8CDF95E98F007EC70F2D40FB86 /* FileUtil.h */, + E29F1B28FB69628C4FC255D6304DD01F /* FileUtilDetail.h */, + 311570029E232743AF9FB615A0355435 /* Fingerprint.h */, + 88AAEC9F99131932B7EC1EAD8F0B0DC0 /* FingerprintPolynomial.h */, + 39B6983CEE0953921275D4300F5F65F7 /* FixedString.h */, + 4A24194A9FD9FD0A9265EC19D085FAAC /* Foreach.h */, + 7C628ECDA0A85F6D2A928B633F08B18D /* Foreach-inl.h */, + 4BD77DCFD7AF2232774CBA3F66A179E5 /* Format.cpp */, + 3B96987760DE83D3138F2EB78149C2F5 /* Format.h */, + E2A7E7AFFF7BD0EFD1EBCFA32ADEBD4E /* Format-inl.h */, + B7EEDC6851A7A7BEE31B4108384C0CC4 /* FormatArg.h */, + BCE8E7A1308177D526F02E3F790A7267 /* FormatTraits.h */, + 8158D2C35FF0281815C8D42F25F433BD /* Function.h */, + 01424B53B7FC838948BBEAA9B4698EF6 /* Futex.h */, + 7934C6BE5A323985ACBA856C37C6DBAC /* Futex-inl.h */, + C44E14BE03F6FFE681870AED03433C0E /* GFlags.h */, + 9ABF5F5E8AA1A3AAE865E95E2E84B143 /* GLog.h */, + EFD4097B80231FC57723D7A7599CF48D /* GMock.h */, + 153B2015317E64DC727B8D54A9D1B225 /* GroupVarint.h */, + 77E733A8C1B0A792B0DFB189CCEA0EE5 /* GroupVarintDetail.h */, + 384C06A2B9A27CF81DC9A1905DE991C0 /* GTest.h */, + 6487D1EEF593CD86E57C4C814142B9AE /* Hash.h */, + EB5BD72842B6A007F1E9CC23CA36DABB /* Hash.h */, + 5C5186B7C67E0B78E6E54EC761EF15D4 /* HeterogeneousAccess.h */, + C98E80671720E82C339727D44F2BBBD6 /* HeterogeneousAccess-fwd.h */, + DC9347580DD46D4613601B5B364CE3E8 /* Indestructible.h */, + 5131685C986E952C022F4813E1ECECFF /* IndexedMemPool.h */, + 28C68A83D0A46C648C481EA963457CB9 /* IntrusiveList.h */, + 1E00FE2FB4F34B818551B9FBCDCCFE4F /* Invoke.h */, + 05CE3277C27232C1B6D3FCC327942A63 /* IOVec.h */, + 288F7359ACD7005F8AA874FE0FA5022D /* IPAddress.h */, + 485F68542A6832FF808DCE943EA92FF1 /* IPAddress.h */, + 04856953888C52B8099F97CC5C1AD907 /* IPAddressException.h */, + B7819A5997833715CD3236A1380FA66B /* IPAddressSource.h */, + 473033DCB389A4E126D78CEC8D1C991C /* IPAddressV4.h */, + DAEA82AFD379F43CF8B4581E22B1C9CB /* IPAddressV6.h */, + 9AAB1F452A5C9549CD4BE20F3FB5CEED /* Iterator.h */, + 34F9127BCE6091F21F68E4A6CA5D2BE6 /* Iterators.h */, + 0FD226AF0745698A007150B90DFE35A0 /* json.cpp */, + 9B7FF8134BA75FBD5E98F96D5C9D32AE /* json.h */, + B23DFB13AC3F5FC16160D2739D8A204C /* json_patch.h */, + 80D20AF86BA07B70D836BC28CBABB53E /* json_pointer.cpp */, + 3934E42C240DA3063BD1AC4EF695CEA4 /* json_pointer.h */, + 0FFED4693A29A850B3D22BC8E48C65F3 /* Launder.h */, + A89F8E8588D3A040D9A2CC55D00CCE76 /* Lazy.h */, + 605E843B25F664012634412A146ACA85 /* Libgen.h */, + F830869A5BA9B0311FE238D8C392EEEC /* Likely.h */, + EB9010DBE79F1BF407373D703255FF5C /* LockTraits.h */, + E877BFD6008956994ADB321921307C48 /* MacAddress.h */, + FBD0EFB0FDFF95518D453A7BFB2EBC0B /* MallctlHelper.h */, + 40D332CAF4B62684CD18066ADA0D482F /* Malloc.h */, + 3E7ED806D1A921852187C6C6A48137D0 /* Malloc.h */, + BCAB5F9355E7B67E72281C118F7E9B44 /* MallocImpl.cpp */, + F8A8F150C65DA05E27B5E645F96D3CA1 /* MallocImpl.h */, + 5096EC4B214144A44F64E49C8BA6CF67 /* MapUtil.h */, + 67423DAEC6E6C03F249B0C8C60D46F89 /* Math.h */, + 04D08E4AB39F12B8216A993C6B175CE7 /* Math.h */, + DB0F68A6996C90EBB0D19A1A478038DC /* Memory.h */, + D97D0D61F193378B1415E9746A9E09D9 /* Memory.h */, + D93CF1F0237213AA754C54DE0EFA5366 /* MemoryIdler.h */, + CAA13C369F7BB0E14043022141EBCEB3 /* MemoryResource.h */, + BBA277E609233F77B06E75864C42C2CE /* Merge.h */, + 216C4F74583B1C5297D93FF5D0830416 /* MicroLock.h */, + 7FF78F0A9E5B4ACEA598CB4F3FB8D8A0 /* MicroSpinLock.h */, + 6600A25D731268212229B946BF930ABB /* MoveWrapper.h */, + 3D8D04B8C04C3419B098250814B12D1E /* MPMCPipeline.h */, + 20250D610646EF8FC603D64E86A09BFF /* MPMCPipelineDetail.h */, + 1C043B4CC815229BDEE63BE4EA8C06C4 /* MPMCQueue.h */, + F3F78A7171BDEEE6A1842EEB7FB87325 /* NetOps.cpp */, + 3DCD644BDA2902B850E63DD97008ECA8 /* NetOps.h */, + A2F4F46BEE9CB108C2568BC67BB843DD /* NetworkSocket.h */, + 23BADA26EC9BE889FE04DFB0F5EFCFAC /* OpenSSL.h */, + 6E4AD2BF04B829C4C16497F35A537B55 /* Optional.h */, + 8226908248D3B863A11C4BD303A18AB1 /* Ordering.h */, + 6CFE14C06A219D454E82E078C9CA35D8 /* Overload.h */, + 0559B220F8B769FB44D5122A56DB397A /* PackedSyncPtr.h */, + 5925C55CF0E20D4248DF023A3B08DAF6 /* Padded.h */, + 6312E2AF415B4DE18707CD2354722F1B /* Partial.h */, + 0C65E06A78DA05CF42AF17F7327766FD /* Poly.h */, + 2F121865458A92DD5EF3BE0A051B555A /* Poly-inl.h */, + 062953F1B67261D26E09D46FAA488F99 /* PolyDetail.h */, + 8839B0BB5CA1C81AA59B3A235D579ADF /* PolyException.h */, + 174AE9F8FFEA896956777A4D5A703D6C /* Portability.h */, + 9014B91BCD5A69C788727A81994C48F0 /* Preprocessor.h */, + 1B54047442319FBE15A81424E73DF7FE /* Pretty.h */, + C4ED9D5AD546A2B65037A818D86E4159 /* ProducerConsumerQueue.h */, + AE48CE0491B4D11FA8A9B4406D7594B9 /* PropagateConst.h */, + 2162F9DA6A26F7A1AF77AB4FF72956DC /* PThread.h */, + 2ACA276C62910C484D48EE60F62D3348 /* Random.h */, + E900F67C8DDDC40135FFCE9958BE486C /* Random-inl.h */, + 6B255EADE5F6CF8584636E95B0D26B66 /* Range.h */, + 0D8871D033546D93298536FDC9EFB36D /* RangeCommon.h */, + C9F56858BC85BFB3E1F009D076FC02AC /* RangeSse42.h */, + B3ADE572FF5E4A6BC753131678DE7389 /* Replaceable.h */, + 979E7FEE22327117DC214AE9CD06679A /* RValueReferenceWrapper.h */, + A3902286D50885212D595DE5B054CDFE /* RWSpinLock.h */, + DC1F22AE25B37DF87B934AFEE2507496 /* SafeAssert.cpp */, + 1C32263A3697A3B8DDB3160296E6522A /* SafeAssert.h */, + BDA1B1D5DB335E4C976544E82311199F /* SanitizeLeak.h */, + 5C8D32374615F6D261DC4ADC7AF965F8 /* Sched.h */, + 43AE178B9B5E4B3E30829F7F68433FB5 /* ScopeGuard.cpp */, + 3E4EC87D4807413BC2C9DA3F10ECFEDE /* ScopeGuard.h */, + 8DE869DD8D81DC88CF80F4B414B76491 /* Semaphore.h */, + B5E1A6E74F8AA555D9E3F9ABB31513BC /* SharedMutex.h */, + 126E56C14084FA8D6350815F9542A432 /* Singleton.h */, + 60FAA3A0D864E902A246DC75DB891122 /* Singleton.h */, + 329DEB85A873E356B2446F9ECB360374 /* Singleton-inl.h */, + 9E70C4CDC4883FAF7985FBA60AC0887C /* SingletonStackTrace.h */, + A05E072DA13B6584CC62221F217075F6 /* SingletonThreadLocal.h */, + E8CD8BDFE2CDD261866203AA17B0D151 /* SlowFingerprint.h */, + 3DADA218BA6F0A0C0A3B44DB70C38BB7 /* small_vector.h */, + 0816E0856823345233F1C84BC225826A /* SocketAddress.h */, + FF51358FDCA889F656C79C2EC31E6028 /* SocketFastOpen.h */, + A4316714ED82B007B05A438ADAB8F83C /* SocketFileDescriptorMap.h */, + 6C686D2F46D547B1A7F7B2C10D29E315 /* Sockets.h */, + 5881A4D7EADFAA121CA078AFB887E861 /* sorted_vector_types.h */, + A3B97CA912041A914E281D953A284D66 /* SparseByteSet.h */, + EAC4E7AB32B7543D14F47D83743EB120 /* SpinLock.h */, + B89BE205EA2CDDE020474282EB87CAB9 /* SpookyHashV1.h */, + B1EFD3176979B895DB18DC7BFB980B17 /* SpookyHashV2.cpp */, + 02FE0B215D1E746856E1910E826333AF /* SpookyHashV2.h */, + CFE3123682E7E5697A86D0FB05A801EF /* Sse.h */, + 280111A76B1C4441C56FBC049D43007C /* StaticConst.h */, + 6F0891D6008317C7713937C7C563AF9F /* StaticSingletonManager.h */, + DEFEF26DB3E2778B721B53A1C9AE98A9 /* Stdio.h */, + B86D5CCFC7E2896E992AC90FC20B1E90 /* Stdlib.h */, + 89C96B793E2ABB5FB08EA692081D8C69 /* stop_watch.h */, + 1D3AF9C1D38A78E41B8C3516ED850625 /* String.cpp */, + 02E0A41BE350CD3DF38E296A41F510DB /* String.h */, + 6E7F86B7B11F6AF6800F6301E582D5B7 /* String.h */, + 692BA1B9DA0015D7FF1E056B83E685A2 /* String-inl.h */, + 71ACC4C1A02149D261222DA23F3686B9 /* Subprocess.h */, + 1DDD80BC35A11E589D93968BA5745284 /* Synchronized.h */, + 469FF7671FEE57BEFA02CBB9FE28E1AD /* SynchronizedPtr.h */, + FAE4BA9A297C48914F2924C957B6FC44 /* SysFile.h */, + C50DD7A9722E94B5BC21245A22CDAFF2 /* Syslog.h */, + F33FCC88A656E718464320FF41707B79 /* SysMembarrier.h */, + 362F9EB68924126BE0D0F262A660BA2A /* SysMman.h */, + 364C2803525F975265D60D53D6CC2953 /* SysResource.h */, + 4B2D912BFEFDC08DFC53E423264FACE7 /* SysStat.h */, + E8F1B8C288CB8F577C1F3C18AAF8DE82 /* SysSyscall.h */, + 17921F43AE5715AC8F9183DE79C84EC9 /* SysTime.h */, + 229BF4DB003EEA81B974BE955D879E5C /* SysTypes.h */, + 70B7BD0D0B421B8006B6EB76290296FC /* SysUio.cpp */, + 41CA4E123F9F9F6E4C41BD82BBC6D783 /* SysUio.h */, + C07D929F467CAAB69D2FFA4E77C393E7 /* ThreadCachedArena.h */, + 8C1883F8A5912FB6F479721503D23DBA /* ThreadCachedInt.h */, + 490F194BB4F495CE504FE3E4396922DD /* ThreadLocal.h */, + 5B8BD7373D246A01D50CF1FCB4510433 /* ThreadLocalDetail.h */, + E5D5F9AB1D06A59BD793A94340EBCCFD /* Time.h */, + CD981957F83A187AFBD9176B4BFE4A60 /* TimeoutQueue.h */, + E2CFCB04C5B5C726E1082EAF0B9E003D /* TokenBucket.h */, + 77A9290A2C292C253EE055401DABDC7A /* Traits.h */, + 68784CD7045FB69555E6B7B2F888FD4D /* Try.h */, + 202A617B5DEE762F05545816C1FEF35F /* Try-inl.h */, + C0ABEB63E7D7AD3EE90F270C36817B76 /* TurnSequencer.h */, + 4461B980BF294265D94A5EEFB7E0810C /* TypeInfo.h */, + 7C9EA402F618FEC515E97FD2452784A4 /* TypeList.h */, + E63ED249D8F7E965097918453011F47C /* UncaughtExceptions.h */, + 483E6694416C54375E0EA371B5DD1552 /* Unicode.cpp */, + DCC31409B0B1BA2E6B09D34100290782 /* Unicode.h */, + 047EB5D9D0F1FB0262FAD62995E308E9 /* UninitializedMemoryHacks.h */, + CADE3B66C3F30EA04D381F4C01914FD7 /* UniqueInstance.cpp */, + F8D488C84A7D59AABCEB805B424A3232 /* UniqueInstance.h */, + F0C9246AE66C375D6D9D7C18C8E7443D /* Unistd.h */, + AB291EFF8B37D47613CB3B7E6190C674 /* Unit.h */, + C028A0DFD42134BB483EB42D8ADA552F /* Uri.h */, + DDF3F3DE44951223CA46296DCF7D8E7F /* Uri-inl.h */, + 78ABC46229F06E66CDABC8B7A9AEF8BE /* UTF8String.h */, + 8A48FF7FA570E1B9E738C674D993E353 /* Util.h */, + 13556548C1D105A985F406FFB2BF3C2E /* Utility.h */, + F06A096379BAFA71C2F1705052E9B92B /* Varint.h */, + 15E54C1FCBDB6D01629B4590A7595A68 /* VirtualExecutor.h */, + F59A6F4DC9C806979A5F9CD7065B6AA5 /* Windows.h */, + 3787109CDF46DA83FE0C17CCD01A997F /* Futures */, + 27E913A581B7FFB1B9585B20F3677002 /* Support Files */, + ); + name = "RCT-Folly"; + path = "RCT-Folly"; + sourceTree = "<group>"; + }; + FCBBBD93D5B2FA9594B7CDF7BE4424CA /* Core */ = { + isa = PBXGroup; + children = ( + E8174C59FD3D3964DAF1DF7BBBDD6FF1 /* FlipperClient.h */, + CE660E219D67034FCC5F1706EF1422DF /* FlipperClient.mm */, + 9FB2ED4E8C205706D7B38E38D9F86BD3 /* FlipperClient+Testing.h */, + 5F4F6CF34D79B494A6AA193FEDE68160 /* FlipperConnection.h */, + 0C2B5C7B89947DABE9B5B1426582AB43 /* FlipperCppBridgingConnection.h */, + 49289D827816FBB4F965723871C61FF4 /* FlipperCppBridgingConnection.mm */, + 2AE78BC7448998B627ECFF14288FD218 /* FlipperCppBridgingResponder.h */, + AE5F014858B40871264FFFCCBE7E2700 /* FlipperCppBridgingResponder.mm */, + 6971DD48EFE585356C9248A1AB57ADFD /* FlipperCppWrapperPlugin.h */, + 27E7A6280E4DB33BFC36C7E7ABA210F0 /* FlipperDiagnosticsViewController.h */, + E91079F658950548BA8A14EAEA577901 /* FlipperDiagnosticsViewController.m */, + 336F27750CC524E9B7F8D86997C524DE /* FlipperKitCertificateProvider.h */, + 5E007EDC6960C6C81329A5D9D1FF2904 /* FlipperPlugin.h */, + B5AFD159BE846B39294374822DB0056A /* FlipperResponder.h */, + DDD71BA9D7956144F78A2BAF9E612B4D /* FlipperStateUpdateListener.h */, + AB05E0B54F9CACFB493BA9F06065E344 /* FlipperUtil.m */, + 16EE35AB7500A0BC5263CE164841F438 /* SKEnvironmentVariables.h */, + 6D2E0D8BFA79DDABB3D14F4747B3AE74 /* SKEnvironmentVariables.m */, + 1B8B1A0878D880B14F6BF7EC5A6AC3A9 /* SKMacros.h */, + 69653E54BD2897D978CFE51D112C6D29 /* SKStateUpdateCPPWrapper.h */, + 2876728F171E4A8E647225C921EBF544 /* SKStateUpdateCPPWrapper.mm */, + ); + name = Core; sourceTree = "<group>"; }; - FDC62708DB0A95B2B84A97F1E0E256EB /* Support Files */ = { + FCE301E45FB6E33FDFC1DAB8A9644A59 /* UMFaceDetectorInterface */ = { isa = PBXGroup; children = ( - C5BAF70E5AB8A74B2B59C84C0A57DF1A /* EXConstants-dummy.m */, - F28B8D6EE6C68BAEA3DE434FE5F84065 /* EXConstants-prefix.pch */, - 62D27314EB70A5DB01D620B3C7B5AE22 /* EXConstants.debug.xcconfig */, - 45ADF538F25776E64060B02AABA07AF4 /* EXConstants.release.xcconfig */, + C42847A363311858658F4553BD12026F /* UMFaceDetectorManager.h */, + 2F5DE766FB60F590FAF3102CEED572C2 /* UMFaceDetectorManagerProvider.h */, + 2C433B0D6F8268CB7D1E19A51310148F /* Pod */, + 6B148E9E8B26A36C6CDEEEE033F80F59 /* Support Files */, ); - name = "Support Files"; - path = "../../../ios/Pods/Target Support Files/EXConstants"; + name = UMFaceDetectorInterface; + path = "../../node_modules/unimodules-face-detector-interface/ios"; sourceTree = "<group>"; }; - FDE47BDEBDED25E8A133F6315ABBFBA0 /* Support Files */ = { + FD5D5C55C343CD419502E55E3CD081E0 /* UMBarCodeScannerInterface */ = { isa = PBXGroup; children = ( - B335892566A9D0203E6E06C4932EBC6B /* Flipper-Glog-dummy.m */, - 1550D8CE86BCF720B49B92E8B081274F /* Flipper-Glog-prefix.pch */, - 5B4439507548AB0D9403B7C0702F9051 /* Flipper-Glog.debug.xcconfig */, - B32DD95FEA09DF1C9AAFDCB797ACD40D /* Flipper-Glog.release.xcconfig */, + EEA93AD538991156E8E9E2FCF34FFC47 /* UMBarCodeScannerInterface.h */, + 816A1586F8C97CF8DFAA026E2F745F9D /* UMBarCodeScannerProviderInterface.h */, + 703E3A2D66C074EB3FE4B1E6B2F5B6F2 /* Pod */, + 74554376B65AAC2BCFDFDBFE7B85D470 /* Support Files */, ); - name = "Support Files"; - path = "../Target Support Files/Flipper-Glog"; + name = UMBarCodeScannerInterface; + path = "../../node_modules/unimodules-barcode-scanner-interface/ios"; sourceTree = "<group>"; }; - FDE591237FAC89F53367CD509516E292 /* Flipper-Glog */ = { + FD696ED57CDB794AA100ABC8BB21A7CD /* Pod */ = { isa = PBXGroup; children = ( - A0A9FF330B926B4379D094F6AE01C7C2 /* demangle.cc */, - 4F95F367C474284471D55C9963F1F6D2 /* log_severity.h */, - 4E73EEF74DB33CC28663FD33E8340D37 /* logging.cc */, - 33765EF0361FC5BD317E8134536E9D59 /* logging.h */, - 644E133CF3831EA6989CE8834B6575E6 /* raw_logging.cc */, - 5A1D49F08EA04CD0332FF2CEDCE38B9E /* raw_logging.h */, - DBB54F45B678B6B1A2F5299F690252AB /* signalhandler.cc */, - 16C56A67498F67A0A0D04C27463CCFCB /* stl_logging.h */, - ABF1B552E10C4896CB1C682734BDDECF /* symbolize.cc */, - 350DD9B6FE8FD8B0CC9BC694C7DF881F /* utilities.cc */, - 64F1C6DC263490A0830F3D93F7AEC22D /* vlog_is_on.cc */, - B45474904DD6995F174BFA84F6F23090 /* vlog_is_on.h */, - FDE47BDEBDED25E8A133F6315ABBFBA0 /* Support Files */, + 77E70D85B1D58DA74BAF1E2330875DC8 /* LICENSE */, + 001F3B4F11CF3FB39275D66A5A666696 /* README.md */, + DFFFC76CADC4FA38E908A2930997B23B /* RNVectorIcons.podspec */, ); - name = "Flipper-Glog"; - path = "Flipper-Glog"; + name = Pod; sourceTree = "<group>"; }; - FDE890A9DD1A908FEA61A28EE5AC18C0 /* UMNativeModulesProxy */ = { + FDB041B6BC3B26E4240A31816AFE80FC /* Drivers */ = { isa = PBXGroup; children = ( - 3D05B428018345AF3E7B23DCC82F3F59 /* UMNativeModulesProxy.h */, - 0AA408A83949F54272C0B48056AB7749 /* UMNativeModulesProxy.m */, + 64E7E67524069560BB6B8664907E4EC5 /* RCTDecayAnimation.m */, + 87284BED37995C2117B9CE0C9079C3B2 /* RCTEventAnimation.m */, + EDC424833BCC9856A557DEA41C0B762C /* RCTFrameAnimation.m */, + 59AA3C22A4FE83B34832756488941D94 /* RCTSpringAnimation.m */, ); - name = UMNativeModulesProxy; - path = UMReactNativeAdapter/UMNativeModulesProxy; + name = Drivers; + path = Drivers; sourceTree = "<group>"; }; - FE3F51365DDF1A171FD76E8F2037DB80 /* Support Files */ = { + FE54B64DF98641A32FBF623DC2BD2751 /* Support Files */ = { isa = PBXGroup; children = ( - 4EF4B6BBDDA951ECBADDA983E7E93BAB /* SDWebImage-dummy.m */, - BA00BA8DBEC8789DE446298CE67B3864 /* SDWebImage-prefix.pch */, - 713226B89EB5E0214720191C9C8FF78C /* SDWebImage.debug.xcconfig */, - 27A5A3B49B8896316CAA20EDB06008AE /* SDWebImage.release.xcconfig */, + A612EE6AF69D3D6CCF0F30D403386C8E /* RNGestureHandler-dummy.m */, + BB650E7F41FDA89431C8B0F460DD6C68 /* RNGestureHandler-prefix.pch */, + 869754DDE959C7E400237B22174C56C9 /* RNGestureHandler.debug.xcconfig */, + F05E23181964B5DB3DA9CAE9B3725C93 /* RNGestureHandler.release.xcconfig */, ); name = "Support Files"; - path = "../Target Support Files/SDWebImage"; + path = "../../ios/Pods/Target Support Files/RNGestureHandler"; + sourceTree = "<group>"; + }; + FE56198B0DD2ACD7718F0F3F4FE85A5E /* Pod */ = { + isa = PBXGroup; + children = ( + 5EB815A033D3C6A75A3A5FE32EEE17B9 /* RCTRequired.podspec */, + ); + name = Pod; sourceTree = "<group>"; }; - FEAEFE596F6C49D66F8ABD8E16AEF529 /* Support Files */ = { + FF4FE7AC9A8EC962814811234F50B454 /* Support Files */ = { isa = PBXGroup; children = ( - 7A7E94FCC43BD2D48FF40007268678CB /* UMCore-dummy.m */, - 576AD448826523267C1B77104A090AF9 /* UMCore-prefix.pch */, - F68BDB89D6BB3EDD1ADD7F9F18B1F9C2 /* UMCore.debug.xcconfig */, - DF5E666704223D49885200E7A2BC8F94 /* UMCore.release.xcconfig */, + 2B18F1EC87BB8F73733D818B6DA098E4 /* react-native-slider-dummy.m */, + 74127BE26140DA21107EC3F05226C4A6 /* react-native-slider-prefix.pch */, + B7BDC75370C589C7BF0E331321D32FAE /* react-native-slider.debug.xcconfig */, + 045513CE70F776BF699D4AA9F7F97F30 /* react-native-slider.release.xcconfig */, ); name = "Support Files"; - path = "../../../../ios/Pods/Target Support Files/UMCore"; + path = "../../../ios/Pods/Target Support Files/react-native-slider"; sourceTree = "<group>"; }; - FEDF0F0255067333E30BE5FA68328373 /* Bugsnag */ = { - isa = PBXGroup; - children = ( - 0539C95CC07C94AB1B181AEADF6BE8F3 /* BSG_KSCrashReportWriter.h */, - D1261855BFFA8311D0C7C5B1019EBC88 /* Bugsnag.h */, - B8B04429ED933128C921E875024E3240 /* BugsnagApp.h */, - BB7A5AF8671A1E7E75DC19F1F6616F9F /* BugsnagAppWithState.h */, - 4670D8DA5D87EEFC41A8D2E7E4631AC8 /* BugsnagBreadcrumb.h */, - F14F1528780DEA27C1649BEE79620E7E /* BugsnagClient.h */, - 74C2665FF0FD8E698863719998648C12 /* BugsnagConfiguration.h */, - E1122B8B9816D5222710898DE93C3090 /* BugsnagDevice.h */, - 4206D953AD1F576B3D25AB9DF3998B7E /* BugsnagDeviceWithState.h */, - 9B513B2654AB7DD415E90B2561132369 /* BugsnagEndpointConfiguration.h */, - A6D61B128EC0F6DFF20B04348BA44CDF /* BugsnagError.h */, - 0293E4585956F99026832F6B4E390EDA /* BugsnagErrorTypes.h */, - D59570E752E35C2A399AE364FF6C7326 /* BugsnagEvent.h */, - B0B15E0495BCA939F82E3999573D2DFB /* BugsnagLastRunInfo.h */, - 416922757DBB94A29AA7BA3BE7FD9908 /* BugsnagMetadata.h */, - 6E29334AD715950C356E291A618D2281 /* BugsnagMetadataStore.h */, - F9AF0CE3E531CB7ECF512BA158A835A9 /* BugsnagPlugin.h */, - 31F582B92EDB6EB3FBA239D9BC06A49B /* BugsnagSession.h */, - 74EF1021D13B81EA41A5928C1E898140 /* BugsnagStackframe.h */, - 86A4D1DD994C66B202FFE6800530D499 /* BugsnagThread.h */, - 37CC656B732014A6AD8CB3244611BEEB /* BugsnagUser.h */, + FF577BFC10B6F33C76908338AF7DB8F0 /* Inspector */ = { + isa = PBXGroup; + children = ( + 9DCAC8DEF32BB328348010B9B668C695 /* RCTInspector.h */, + 7B7836002F21AA5B01ED169B22015880 /* RCTInspector.mm */, + F80E4469818647F9466CAF65D9F2EE98 /* RCTInspectorPackagerConnection.h */, + 963605EF2214948C92F4F2EB87B7F717 /* RCTInspectorPackagerConnection.m */, ); - name = Bugsnag; - path = Bugsnag; + name = Inspector; + path = React/Inspector; sourceTree = "<group>"; }; - FFF7FD7DB0C75102D60D37EDE2106E99 /* Core */ = { - isa = PBXGroup; - children = ( - 4EFA9ED6AB17B41486EAB2148F8C24B5 /* FlipperClient.h */, - EA3D4260045DA638F2FF39E754353EC0 /* FlipperClient.mm */, - EE722C6B5031C8949D777F1EFEFB3201 /* FlipperClient+Testing.h */, - 4BA1950E3338CF90E6291F27458625C5 /* FlipperConnection.h */, - 5347884F300F09F9653A026F17BCD141 /* FlipperCppBridgingConnection.h */, - 26801AEDC8F6E1A70C04F7068509ECA3 /* FlipperCppBridgingConnection.mm */, - AC9BB0D68164184A242BC72EFA1AC562 /* FlipperCppBridgingResponder.h */, - 108C40B5CEAA44D87AFF2EFE6CE2ADFF /* FlipperCppBridgingResponder.mm */, - 8C9EAC92532EB2946D33D8AB3EAAEA74 /* FlipperCppWrapperPlugin.h */, - 1E5C1EF5ACFAEA6C34BD6D5DEDC3FD68 /* FlipperDiagnosticsViewController.h */, - 4A0DE597E4F93AA89C807FF6F46D7B65 /* FlipperDiagnosticsViewController.m */, - D3747BB10FAC0DDEE8A101726C4278CA /* FlipperKitCertificateProvider.h */, - 34489AAB6DBFFF119F52D9D8F28A5A0D /* FlipperPlugin.h */, - 87787F196653CC71282BF0F30B7D5C0A /* FlipperResponder.h */, - CA751CAFBA7E102722EC9DE334A0204A /* FlipperStateUpdateListener.h */, - F5344B45D2A5F2585D79F4084CC0F9EA /* FlipperUtil.m */, - A95BDCA70C13B92DD2B92AAFC48B3CA2 /* SKEnvironmentVariables.h */, - 8123AF2E83A4B7A6DEE967C1E895AAAF /* SKEnvironmentVariables.m */, - 153D793297698FE9116592E393746B99 /* SKMacros.h */, - 493FC93BC275FAAD101E6DE53C3A6E29 /* SKStateUpdateCPPWrapper.h */, - CD9E7EF418A1E7DC076C5815A0AC9131 /* SKStateUpdateCPPWrapper.mm */, + FFF476878A9F9892AF72126F4460BDF4 /* ReactNativeART */ = { + isa = PBXGroup; + children = ( + E7B6328667F2FA8DF55197698F02ED7E /* ARTCGFloatArray.h */, + 317C9714098DF1C7FBF145CB6AE50AFB /* ARTContainer.h */, + 8EC822BD3E8570C5BE901C15801CF4D5 /* ARTGroup.h */, + 2C292E6080435801A35C00F404D6C3BA /* ARTGroup.m */, + DCB9270A28452608FFE50C2F9CC2FEF4 /* ARTNode.h */, + B57660A82B09BE7B288631FEA0BF9292 /* ARTNode.m */, + D68DA410094157A0BA34ABD08B1E5535 /* ARTRenderable.h */, + 18A04233F2426F80A4B0B02A4A7BDA08 /* ARTRenderable.m */, + 815C0D7BEE0A4D30C0D38BB6B938F1A8 /* ARTShadow.h */, + BE6473D5079526E5C6B8062E82E6FFB5 /* ARTShape.h */, + C1D6FE29065E9A121578B8F30FA54DCD /* ARTShape.m */, + 39ECD4C57ED03D5E00EC9938C3BA9138 /* ARTSurfaceView.h */, + 05D9534D56631962FF95E76190B6D47D /* ARTSurfaceView.m */, + 7900570F73C269A409F2F20B49AED1F3 /* ARTText.h */, + 05022649DAA6871B26D0DE0DB3506559 /* ARTText.m */, + 2C75EC0F15F258B3FDD5FEF9C062FBFD /* ARTTextFrame.h */, + D22C18325FC64BD5613A3743881012D5 /* RCTConvert+ART.h */, + 9582915FE4E63A436F37137EFED1A579 /* RCTConvert+ART.m */, + 45B9D47400028318B76EB2F91C739A88 /* Brushes */, + D2F75FF7717934896F6061A8F07460A9 /* Pod */, + 08E55CCD326C30959D08132ACE42810E /* Support Files */, + D0C5FC794B5D7426BC7014486AF0A08C /* ViewManagers */, ); - name = Core; + name = ReactNativeART; + path = "../../node_modules/@react-native-community/art"; sourceTree = "<group>"; }; /* End PBXGroup section */ @@ -23162,53 +23080,6 @@ ); runOnlyForDeploymentPostprocessing = 0; }; - 069574742FF9F45911ACA04BC488AC48 /* Headers */ = { - isa = PBXHeadersBuildPhase; - buildActionMask = 2147483647; - files = ( - C1CEF38AAA3E585D09D4A4A027680D5A /* FIRAppInternal.h in Headers */, - AE16B4E3BDF61432CDEBCC66CCF4F8BA /* FIRComponent.h in Headers */, - AC544C3109A91CDD8920894107B1E23E /* FIRComponentContainer.h in Headers */, - DD2AA1140A7BD95979BE03E8D2686ACA /* FIRComponentType.h in Headers */, - 3A80011D06CE81B3729E6A53F8AEC274 /* FIRCoreDiagnosticsConnector.h in Headers */, - EF6E7BB7625002F41585CBB2162532B8 /* FIRDependency.h in Headers */, - 1DD0AA3319223905443F8D6AC9BA8996 /* FirebaseCoreInternal.h in Headers */, - 40DBCC71D3CB20AF4B6A8D6C4925463A /* FirebaseInstallations.h in Headers */, - E532571B41B3C0C592E16E27057593A0 /* FirebaseInstallationsInternal.h in Headers */, - 5CF0A75C038C22CE06F634627E61E30C /* FIRErrorCode.h in Headers */, - 0CF2B0DB3189A0CC369D43D152544F22 /* FIRErrors.h in Headers */, - 63C76AF781A6666668509F2888403697 /* FIRHeartbeatInfo.h in Headers */, - DCC486E06B438F7952630278E1089691 /* FIRInstallations.h in Headers */, - 73FD7DB1F807452982CA25D94FE3EBFC /* FIRInstallationsAPIService.h in Headers */, - 77FC76296E4C94AF29B95282D0CEB5BD /* FIRInstallationsAuthTokenResult.h in Headers */, - A86B1DA2BDDBBD0C6CD613087B93FB65 /* FIRInstallationsAuthTokenResultInternal.h in Headers */, - DC0803998AE54A4AB8530C7E5B4B513F /* FIRInstallationsErrors.h in Headers */, - 15A8791056730A9BB4BA1A07699A6343 /* FIRInstallationsErrorUtil.h in Headers */, - D9C007F8515910F392AE437FFFB668B7 /* FIRInstallationsHTTPError.h in Headers */, - 6FABF4915BCC69ADE3B3F3F1B82E3FF7 /* FIRInstallationsIDController.h in Headers */, - A5105769B93B9486FA7E8B7EA1A1BADC /* FIRInstallationsIIDStore.h in Headers */, - CD2D9BAD0026BA6D30BFA2A89C346B6C /* FIRInstallationsIIDTokenStore.h in Headers */, - 5D84E4EDC421E22D3E69513DAA0F96FE /* FIRInstallationsItem+RegisterInstallationAPI.h in Headers */, - A15D2CEDFCD3E131001DFF1B971C79A2 /* FIRInstallationsItem.h in Headers */, - 18AA5C3668BDE6115B6B0FBDE761D7AE /* FIRInstallationsLogger.h in Headers */, - 9D5F402198C55E089E900CEED637C489 /* FIRInstallationsSingleOperationPromiseCache.h in Headers */, - B3A9FF3DB1A3DAB8502F509E47036BE4 /* FIRInstallationsStatus.h in Headers */, - E2D6ED674D98986B806DDBEA7B6E5741 /* FIRInstallationsStore.h in Headers */, - B18CCD55A5094A337C7E6F49212AB06F /* FIRInstallationsStoredAuthToken.h in Headers */, - 64A433BECEAE8EE4C0B1E351C2245446 /* FIRInstallationsStoredItem.h in Headers */, - B81DB7CFBD37CAA024A91B555809BF71 /* FIRInstallationsVersion.h in Headers */, - AF9DE104A3F8D40B0B59925CC2F17E8B /* FIRLibrary.h in Headers */, - DC7C5DDFA528B734F5DD2CF9D567E2DB /* FIRLogger.h in Headers */, - 810C9DA3B4AD46B1EFD35806B7599CE9 /* FIROptionsInternal.h in Headers */, - 59DE9E944049E3F8FDF20927F5A182E9 /* GULAppEnvironmentUtil.h in Headers */, - 075085477BB67B9628BCD463435B7425 /* GULHeartbeatDateStorage.h in Headers */, - AFB0357A2827C867FFCA1ED78A9AD5E0 /* GULKeychainStorage.h in Headers */, - DDB186BBB355BAE984A900B3699294F8 /* GULKeychainUtils.h in Headers */, - 93917FF9167C4ADCC440E46FAD552235 /* GULSecureCoding.h in Headers */, - 86B1E7288D9558909F90EB88F53F5916 /* GULUserDefaults.h in Headers */, - ); - runOnlyForDeploymentPostprocessing = 0; - }; 06D311E4C83DBF3A6F8D9A4FD8E4A0A9 /* Headers */ = { isa = PBXHeadersBuildPhase; buildActionMask = 2147483647; @@ -23217,20 +23088,10 @@ ); runOnlyForDeploymentPostprocessing = 0; }; - 11D9999534E0F0C2D0E856D26C2380A8 /* Headers */ = { + 0D8C18E6E39D08B699298AF070D413D0 /* Headers */ = { isa = PBXHeadersBuildPhase; buildActionMask = 2147483647; files = ( - 9E15132D738425623615DAFB0C2D89E1 /* bignum-dtoa.h in Headers */, - 57A9150670042BDF5454DF3A09F0BF20 /* bignum.h in Headers */, - C84A2013A7C8788C1F6EE1194635FD71 /* cached-powers.h in Headers */, - 5A1BAFF7CF411FC918F477C48C53AA63 /* diy-fp.h in Headers */, - EB607671CA68A5497FB3F4992778BCFF /* double-conversion.h in Headers */, - 0829F9FE8178E4FF1669D596D77B0993 /* fast-dtoa.h in Headers */, - 6CAEBFCA4126D6A6EDCEA9C7F27D9300 /* fixed-dtoa.h in Headers */, - A66A6A6EEDE7043322F4D35299D8F086 /* ieee.h in Headers */, - 9C7D6F99CF240719DB4609D8680EF70F /* strtod.h in Headers */, - 2A8A7784018B5DEE7731FFEE1D3A6C62 /* utils.h in Headers */, ); runOnlyForDeploymentPostprocessing = 0; }; @@ -23250,496 +23111,80 @@ ); runOnlyForDeploymentPostprocessing = 0; }; - 19C46365A35E0C2C9C5299D1ECF73E40 /* Headers */ = { + 186A326AC91F2540D875F188AE5AA348 /* Headers */ = { isa = PBXHeadersBuildPhase; buildActionMask = 2147483647; files = ( - BEDC718C7FCEC1777A0E533CBC49F5BA /* UIView+Yoga.h in Headers */, - 61B194DCD91EF21781CF28D27BA9B2FB /* YGLayout+Private.h in Headers */, - 0975C6685CDEE822B3B40F222F717F78 /* YGLayout.h in Headers */, - FBECF2514DF1D74D6F649DB1ABE31225 /* YogaKit-umbrella.h in Headers */, - ); - runOnlyForDeploymentPostprocessing = 0; - }; - 1E9C2DF63F8DD1D2DFE4FD76AC7384E7 /* Headers */ = { + 1A85D5AF13C26DAF79FE20EEB06C11BC /* FIRAnalyticsConfiguration.h in Headers */, + DB19E9946FABB16552DE8F298AEF01B0 /* FIRApp.h in Headers */, + BA49308810F91F390792D0A70F386F14 /* FIRAppAssociationRegistration.h in Headers */, + 42C4E432F5DF9246EC190347046E5C2D /* FIRAppInternal.h in Headers */, + B60122780C344AD502D720DC570F4540 /* FIRBundleUtil.h in Headers */, + 2925BFA37C7DD8504219C79C48BD8AA6 /* FIRComponent.h in Headers */, + 1EF67A42C308DD7022E4CBCB5C4C9B49 /* FIRComponentContainer.h in Headers */, + A088213082C65A21FDB053CB927C6B19 /* FIRComponentContainerInternal.h in Headers */, + 7D17AA51E49957AD7618FB7788553DCA /* FIRComponentType.h in Headers */, + BFE9E69EB5B3847D9F418170FCC02F7B /* FIRConfiguration.h in Headers */, + 15FEA48CE1262EC1BC9FE30DB15E8CEC /* FIRConfigurationInternal.h in Headers */, + 44677B7384171E497510D6874F77702E /* FIRCoreDiagnosticsConnector.h in Headers */, + 3F09B6C7576B1928FD43C6816F14062C /* FIRCoreDiagnosticsData.h in Headers */, + 9A0BE34983160479A86D36C05FD3DA27 /* FIRCoreDiagnosticsInterop.h in Headers */, + 5F5ED17717D2094B8D1CFBA755E6AC25 /* FIRDependency.h in Headers */, + 708B1677A4A90EEBE22FF1EF37FA0E9F /* FIRDiagnosticsData.h in Headers */, + F6E54EDC4A6085C19961943258BCC5ED /* FirebaseCore.h in Headers */, + 2E957BFAF00D217306CF506E1706C7A1 /* FirebaseCoreInternal.h in Headers */, + DDE802AD7EBDD28B3F6DA701F2503F77 /* FIRErrorCode.h in Headers */, + 20874F925A640960D1DE9DED271DE123 /* FIRErrors.h in Headers */, + DB223BA5A36C80B35027E6D61A46FDF0 /* FIRHeartbeatInfo.h in Headers */, + C3C58E9AD063A1C189162E4C7F514F20 /* FIRLibrary.h in Headers */, + FF1EE0FB5994F5585A52D9B5B13DEAFA /* FIRLogger.h in Headers */, + E935245BF94549AA4C94B1344395DE01 /* FIRLoggerLevel.h in Headers */, + CC47EFDBC317C15BD4E0CB8AC48BC1AE /* FIROptions.h in Headers */, + 1686E658AF00D79A5D8EF1F3629B0F3F /* FIROptionsInternal.h in Headers */, + CF2D309383829B72586969ABBE8704A0 /* FIRVersion.h in Headers */, + 74E0DC5132585DDEA939288348BE0297 /* GULAppEnvironmentUtil.h in Headers */, + 03A19F1838D04CA0D990E4FCCCD56ACB /* GULHeartbeatDateStorage.h in Headers */, + AE766944C010B262FB816F4945D6479C /* GULKeychainStorage.h in Headers */, + 3668D1A3BEC9E725B7EBB8FEF7A03F65 /* GULKeychainUtils.h in Headers */, + E545ABA7A89B0C4E9009E80D8C989201 /* GULLogger.h in Headers */, + 9901F1B0EE2B2B56B4BE95C4178C4F92 /* GULSecureCoding.h in Headers */, + ); + runOnlyForDeploymentPostprocessing = 0; + }; + 19BDDB467659D607A37E444CC4BE2D17 /* Headers */ = { isa = PBXHeadersBuildPhase; buildActionMask = 2147483647; files = ( - 8C7AF050002526AD3F6E6BC046F6DB2B /* Access.h in Headers */, - 9BF173CE03826AB08A9316384881F05B /* Align.h in Headers */, - 51A4F8CD4AA7BE9D2E696DCA8AE0F874 /* Aligned.h in Headers */, - 07E12D7FCC5284401B91040F1F61E8FD /* ApplyTuple.h in Headers */, - D601647EED2BA32715513D94C6430635 /* Arena-inl.h in Headers */, - 53C44FE753F00DA8FEA2EFCE693BDF2E /* Arena.h in Headers */, - 1B6D73AC966FDB7E917CF13DDA19E5CA /* Array.h in Headers */, - FA885E83C0A511A39AA042E2E0E02467 /* Asm.h in Headers */, - 4B3B08B714505AF5FB0D877B29D5BFBE /* Assume-inl.h in Headers */, - 070DF6CDF8168079D67DD94D4CEB1D2D /* Assume.h in Headers */, - B40825AF99A25154DD5B39CECF6B91EC /* AsymmetricMemoryBarrier.h in Headers */, - FA85A65FD7213D2D1AF43CB59CFE3B88 /* Async.h in Headers */, - 2AA8E34FE6C5BE7FCB0EE28F3412D592 /* AsyncPipe.h in Headers */, - BB2157B9CBD4FC48ECCCACB047F27180 /* AsyncServerSocket.h in Headers */, - 41FD5923DC509DC4130D7310A6C94840 /* AsyncSignalHandler.h in Headers */, - 7E7C215179C583CC74036539DE29F4F3 /* AsyncSocket.h in Headers */, - 7EAB35268C3CC56C21DB094408FEBD84 /* AsyncSocketBase.h in Headers */, - 146120BDF25A741ACB36FBB3F7D423B7 /* AsyncSocketException.h in Headers */, - 932F771CAD81C4422716974440C09370 /* AsyncSSLSocket.h in Headers */, - 30FE7FBDB66FF4147763FD808FF614D5 /* AsyncTimeout.h in Headers */, - 008E846E81F794C720EABB3FF9C1764C /* AsyncTrace.h in Headers */, - AE8E089B1265ED7BBA669E42AAE2C29B /* AsyncTransport.h in Headers */, - 0CB383EBBE7DE8793C3DAE97B376906D /* AsyncTransportCertificate.h in Headers */, - E3C5C6E11CEE73172271A32F56AF9311 /* AsyncUDPServerSocket.h in Headers */, - 9D846344563C09C82E7CAF7A706A80CC /* AsyncUDPSocket.h in Headers */, - 0D1494C60977D90B4EF701937DCA2D41 /* AtFork.h in Headers */, - 19F8A3E15F562BDB3BE4EB669EC0865B /* Atomic.h in Headers */, - E64AF3AEC1364B323D9F70FE52130B72 /* AtomicHashArray-inl.h in Headers */, - C3D701FECC2A441C37B153E09D524DC0 /* AtomicHashArray.h in Headers */, - 95814D79AAAA24FC9B2AF1E7B033D9ED /* AtomicHashMap-inl.h in Headers */, - DFDB8A745CC983AD5A277564FF3B8372 /* AtomicHashMap.h in Headers */, - A40B29DD535C1AAB0BB8FD290362F887 /* AtomicHashUtils.h in Headers */, - B5E656D8C4B4823CB7C772A212B84E2B /* AtomicIntrusiveLinkedList.h in Headers */, - 27EE22789E26A87B574810CE289A90CB /* AtomicLinkedList.h in Headers */, - 77C35194EA7A1C61CAE18FB5B083818F /* AtomicNotification-inl.h in Headers */, - 82F65CF078D09E8C005421B6EDD67F49 /* AtomicNotification.h in Headers */, - 134C462F5E3E91AB6424CDE8FE25D759 /* AtomicReadMostlyMainPtr.h in Headers */, - C2441B05A32F5CCC1A7DB2CBC81756FF /* AtomicRef.h in Headers */, - 66838508E25D2A74B65A800C2E2550BE /* AtomicSharedPtr.h in Headers */, - 74FEA037C0B559D5A6993E80EB2B01AF /* AtomicStruct.h in Headers */, - 92ECB1EA9F733DB78D57CB37AC97F94C /* AtomicUnorderedMap.h in Headers */, - C79DA87A08D4B20BB5BCE3EEB056EB35 /* AtomicUnorderedMapUtils.h in Headers */, - 570E71BFCB10F0D0CC22FE747564297E /* AtomicUtil-inl.h in Headers */, - 6324CEA058C36C2AB3898277F61AF7CA /* AtomicUtil.h in Headers */, - CE80A7D32D993EC9B26559195F7F4F26 /* AtomicUtils.h in Headers */, - 096047FD8389C5BE0B025F398B679E98 /* AutoTimer.h in Headers */, - A0208F37510AA099AECED2795C67D8FD /* Barrier.h in Headers */, - 3C0A4A66954EE859B051995A3CEE4486 /* Base-inl.h in Headers */, - 4A9EEACD394A2527D52BE9FBCD820482 /* Base.h in Headers */, - DD5D2ABF03FE9935FB11BF0F64FE9638 /* BasicTransportCertificate.h in Headers */, - 6EB3C6157C944D0F14B7CDB932F34940 /* Baton.h in Headers */, - 41442FF1B6E0018786917CCB032C0F54 /* Benchmark.h in Headers */, - 33AB5242D543303153929BD24123AE64 /* BitIterator.h in Headers */, - 1F4C86F457D6C516F3065BCC585C247E /* BitIteratorDetail.h in Headers */, - 95DC1F244036A5706D377BEFCC38DA94 /* Bits.h in Headers */, - 94E22A927F0A3998FC7C087A9F6AF8CF /* Bits.h in Headers */, - C2BA117A9770B59539D70AC8CF0B3919 /* Bits.h in Headers */, - D06DFFD00B69AF3A2D1EFF973DE6E084 /* BitVectorCoding.h in Headers */, - 2473B3A11F2AAFD2AEC14066336220B8 /* BlockingQueue.h in Headers */, - DEC474ED66B696D8408365EAB5156FE3 /* Builtins.h in Headers */, - 097954AC10D18CE8B5141F94DF890D16 /* CacheLocality.h in Headers */, - B4251A5F7467E8E98DD197694FE2A21A /* CallOnce.h in Headers */, - E67EAB639865313CF8223FCAA5C0E439 /* CancellationToken-inl.h in Headers */, - 8DF7DC8310894831D8646315D603E511 /* CancellationToken.h in Headers */, - 0E25FC030131787A144DF21878B8B00E /* Cast.h in Headers */, - A29292B06DA79A3685EBB0F9251FBF23 /* CheckedMath.h in Headers */, - 5C79E726C0A10A77C209336D12E21881 /* Checksum.h in Headers */, - 71E1E65FC95FBE0B472944B5FB54DC42 /* ChecksumDetail.h in Headers */, - CDC8CD8304521025E708103ECA714DBF /* Chrono.h in Headers */, - 6236886412510651B07EACD678AC47E4 /* ClockGettimeWrappers.h in Headers */, - 1D3B480205019899A8751D4AE61687D4 /* Codel.h in Headers */, - C9B3319CB6BB4B73DE7650348A98AA88 /* CodingDetail.h in Headers */, - 532419B8F6C92922633064EB3BF4DD29 /* Combine-inl.h in Headers */, - FD1D10004339566EC97E1BE66A754E99 /* Combine.h in Headers */, - 4DF36527D3A7802F9EA507DB401DCCF3 /* ConcurrentBitSet.h in Headers */, - 7BA075AFCDB27316C30CDA198DA823C3 /* ConcurrentHashMap.h in Headers */, - 668A6606B9BE4082AAE3945FD8B2B2DC /* ConcurrentSkipList-inl.h in Headers */, - 497C3B78847A7BADF517C253BA5E71D1 /* ConcurrentSkipList.h in Headers */, - FA49438D6C0BCCC65FCD9C21D2716BA2 /* Config.h in Headers */, - 44BBFC9CC5DCFF37B39640D6AC26FE9D /* Constexpr.h in Headers */, - ECDED650F177962D4CFA65C9DDF3811F /* ConstexprMath.h in Headers */, - 89CC065E38105426D8C34465243945BB /* Conv.h in Headers */, - 3366E76CA4F7EBBE50E98AAD07B05D76 /* Conv.h in Headers */, - 081D3EF79DD7B27C1031948FA9C72D1E /* Core-inl.h in Headers */, - F07AEF86AC6121F76D4FC73E398D9F4C /* Core.h in Headers */, - 8B8EE6BEDB54E7F2E8211F51AFB1E0D2 /* Core.h in Headers */, - 23FD3872340E08901DFBF08C81D0ED3D /* CoreCachedSharedPtr.h in Headers */, - F9B4C40ED3AE5323869D3417BF7DC7A5 /* CPortability.h in Headers */, - C61571D703CD4F1C642EE0DBB8115596 /* CppAttributes.h in Headers */, - A61F13BCBA8D6AFBE20D1AD144404972 /* CpuId.h in Headers */, - C96C23DD35B35085A98FAA492DD88019 /* CPUThreadPoolExecutor.h in Headers */, - 7C2820D4FF4C112DC90A8B3D7B84274D /* CString.h in Headers */, - E7427A2777ABB574E03689696119599E /* Cursor-inl.h in Headers */, - E3231EC68447E270A1CA6E248D40AED6 /* Cursor.h in Headers */, - 25713931BC02A60B534F4C57EBE12C09 /* CustomizationPoint.h in Headers */, - 89E84F8839C0774350C23C68CE2E37D3 /* DecoratedAsyncTransportWrapper.h in Headers */, - 33265A4F09DB8FB51B801C3BA92AD81B /* DefaultKeepAliveExecutor.h in Headers */, - 6419EA620A4327B1CA9F84D9B2B25B3F /* DelayedDestruction.h in Headers */, - 594C24B46B687D9E3DDC9441F8BA2005 /* DelayedDestructionBase.h in Headers */, - F1657CAD67C98E4364AE50501E714606 /* Demangle.h in Headers */, - 9EEAD4B922E38308A370C93A16E612B9 /* Demangle.h in Headers */, - CEE7978CF238C44FA9EED8927B72164E /* DestructorCheck.h in Headers */, - 7372AE251EDE259D667A76E98DDA8952 /* Dirent.h in Headers */, - CC283DD0AD2A7B28AB323189E63F03E1 /* DiscriminatedPtr.h in Headers */, - 208790D70277C3A907BFE89FD71D90F5 /* DiscriminatedPtrDetail.h in Headers */, - 6C5CA627C6773917F08E39A4CD4BA162 /* DistributedMutex-inl.h in Headers */, - 4F3A2790874ECF685CE39EA7AAE03BA4 /* DistributedMutex.h in Headers */, - 0839370ACB3C1AF71FD30BA8119B5C2B /* DistributedMutexSpecializations.h in Headers */, - 98BD3575D637BF290382049544412C01 /* DrivableExecutor.h in Headers */, - 78EC08F36BDA5D40A3686EAF9CD37F3D /* dynamic-inl.h in Headers */, - C0387547532533C56F624CBF18875631 /* dynamic.h in Headers */, - 6B55B4D2D6C4FA9879371F32CDDCFF88 /* DynamicBoundedQueue.h in Headers */, - 2CC81781632EE1FADEEBBBB01AEB41F2 /* DynamicConverter.h in Headers */, - E23A708DCF25B7E9D64B8E5A35C925E5 /* DynamicParser-inl.h in Headers */, - 7D65E22401B87E8D0DAFEF5834CCA3C5 /* DynamicParser.h in Headers */, - 7896A8FE21EE94860B0E96AAC9B61487 /* EDFThreadPoolExecutor.h in Headers */, - 3BE3507396BCD9046119593DA76BA96B /* EliasFanoCoding.h in Headers */, - CDA2371D774ACA93CE19FF42E7153242 /* EnableSharedFromThis.h in Headers */, - E1EC97CD6A2CFBFBEF3A7C1F95357D0E /* Enumerate.h in Headers */, - A90CFB8A65FC740039748C6F0EA9E385 /* EnvUtil.h in Headers */, - 24922AE63038BF9070EEF1A784504CC4 /* Event.h in Headers */, - DE7817AE8DE28073A58E0980D75417D5 /* EventBase.h in Headers */, - E9A6AB521B793BA618431BFD74AFC3FD /* EventBaseBackendBase.h in Headers */, - 658D96DA70C0C5BE84045B487F632D55 /* EventBaseLocal.h in Headers */, - DDC59E287FF049BB667BB0B791D9BDF7 /* EventBaseManager.h in Headers */, - 2C76438416AEE979405D966F2A12A10F /* EventBaseThread.h in Headers */, - 0948B68B74CC84944BBF2F9B3120F86C /* EventCount.h in Headers */, - 568FA58DBDB7030FDAAD0B6F2B520755 /* EventFDWrapper.h in Headers */, - C6558249403AA8AAAE7A66D934535A3D /* EventHandler.h in Headers */, - F417563AE9F7E963923D828B729120FD /* EventUtil.h in Headers */, - 6AFD9A72E1934955857F6D5E8A63C6C7 /* EvictingCacheMap.h in Headers */, - F1DDE8B1ED3759299992830E7CEE480A /* Exception.h in Headers */, - BC9A6B52422C58DE5EDE6E4CE44BD9A0 /* Exception.h in Headers */, - 0205426B1CB4A12EA5EE5707B0E0B23A /* ExceptionString.h in Headers */, - 640B0BE977DF7D94FCD0A4F172FC7218 /* ExceptionWrapper-inl.h in Headers */, - 540F416C28C21D48FAED8BBBFD21572D /* ExceptionWrapper.h in Headers */, - 1FBC28A70C19505EBE72775A2F9405DD /* ExecutionObserver.h in Headers */, - F700728CE6044893606501F341C4D0AB /* Executor.h in Headers */, - 2ADF441F3E38E8BE45201791A19C96B5 /* ExecutorWithPriority-inl.h in Headers */, - 94DE26BC203CCB24065246DC2F5E5241 /* ExecutorWithPriority.h in Headers */, - 7EC66A8857EA461928FA8D0D6E7D5155 /* Expected.h in Headers */, - FCD017F2EF045002D81B4CE631655D98 /* F14Defaults.h in Headers */, - 9B1DBD98BCC78A9847749E8403E3A747 /* F14IntrinsicsAvailability.h in Headers */, - 56CC7F0B9354791C231BE0A4C795482F /* F14Map-fwd.h in Headers */, - 419258E63004A311A862C221B364BA3E /* F14Map.h in Headers */, - E130BDA5A728FB1624154E19747F60D3 /* F14MapFallback.h in Headers */, - 444058A00D921890F65A1912BD982240 /* F14Mask.h in Headers */, - 1876B071407BDA1BC8DC4A9D72D53653 /* F14Policy.h in Headers */, - 1EED76577B9AC7C813A4F04F990FB9FB /* F14Set-fwd.h in Headers */, - 2CD2DCE747D9CD488EBAC0E80EF8D851 /* F14Set.h in Headers */, - 4C7FF52184D2CD05A127020050065426 /* F14SetFallback.h in Headers */, - F3EC25FB83B45B7741D842E9CEA9B424 /* F14Table.h in Headers */, - E1846F7769E342C8CC122EFCFDFFFF49 /* FarmHash.h in Headers */, - DE1C14D01E85896B387B87D2284F4AB3 /* FBString.h in Headers */, - 44164DCF7E00143ACA29DF5D852853D3 /* FBVector.h in Headers */, - 30E3F8C6D0872E7CB330BB479D714084 /* Fcntl.h in Headers */, - EF751BFB54ACCF62AD691C93A1D636D8 /* FiberIOExecutor.h in Headers */, - CFB71CF502F8556C04CDBD00948319A0 /* File-inl.h in Headers */, - AF8453F7B39B8BCC9901A0E7D52BAFC5 /* File.h in Headers */, - 0E9CBDAECA6866FFD03AD07254334712 /* File.h in Headers */, - 80EBA8DD6148D9BB730B02135BF4BBF3 /* FileUtil.h in Headers */, - 7E51F5112CD885712DFA7EDB05CF47B8 /* FileUtilDetail.h in Headers */, - F5ED92DD00217F5B31E36D164EB8FA4E /* Fingerprint.h in Headers */, - D9979D4C0853054CCA71AB8B13AAE6D2 /* FingerprintPolynomial.h in Headers */, - 90C43B022CDB590EAB13056B0DECE6CD /* FixedString.h in Headers */, - 936DAFC95400C8B430D1360E1D55C6A9 /* FlatCombiningPriorityQueue.h in Headers */, - 84B10907D43DD570150B876D985FB33D /* Foreach-inl.h in Headers */, - 9356626D0B8EFBB1DB26262450B668DF /* Foreach.h in Headers */, - 405B90F1820030D31FBB58861E6F805A /* Format-inl.h in Headers */, - 9BE0A66EE0341AE2031B16A946AE7134 /* Format.h in Headers */, - 17ABEC1193D0F191B283A63F529DD88D /* FormatArg.h in Headers */, - 44E4D135C7785F93B9A74EF56125AF81 /* FormatTraits.h in Headers */, - 2092AAC3D67ECC6390654FB817FE0F37 /* Function.h in Headers */, - EB80238017884F125B9784E8A82770E5 /* FunctionScheduler.h in Headers */, - 0182157BF7C1F8A5D720A72DA9371BD4 /* Futex-inl.h in Headers */, - 21BD907A7C18430BFC99924E646FABB6 /* Futex.h in Headers */, - F8143EDA79D6763906F40D9441E20944 /* Future-inl.h in Headers */, - A55AA887E70C89BE11C87C87982C071A /* Future-pre.h in Headers */, - 089B447701AB39595BD258FD7E389B7E /* Future.h in Headers */, - 104BD56C69E46C92CED55268081D3BCE /* FutureDAG.h in Headers */, - 261D98D32F84567AA07152CDE66ACB76 /* FutureExecutor.h in Headers */, - FBF813ACF4E92E8E24F513B35C3617BD /* FutureSplitter.h in Headers */, - 8A5EBC158E3587759189F90128C1E8AF /* GFlags.h in Headers */, - 8292AD15ACEF94D94BC20F700AD9E23A /* GlobalExecutor.h in Headers */, - 35F31B052EB9880575BAFBE21A0C2328 /* GlobalShutdownSocketSet.h in Headers */, - BFAD310B725A5C5BA13A9CE769B4406B /* GlobalThreadPoolList.h in Headers */, - 36FC9E7DA822EB5CC83DA18A93D11F43 /* GLog.h in Headers */, - 8EFC658A04363FD5F4B3429F47DAE731 /* GMock.h in Headers */, - A3337963E345B87DD57F81879C9A8BCC /* GroupVarint.h in Headers */, - F6DD8C63B7B4C00F5466C6FE217FA62E /* GroupVarintDetail.h in Headers */, - 60C79DBEB10D3C91C7B58759D7D0BBA1 /* GTest.h in Headers */, - 7BAEF8B38FF4642539597FAC97925D62 /* Hardware.h in Headers */, - 06B0565E90F2E675B6119EA4CFD9581A /* Hardware.h in Headers */, - 05956957EEDC4C7CB77438B32F3F2A27 /* HardwareConcurrency.h in Headers */, - 4B775E673D081DA2FF9BF0165C923980 /* Hash.h in Headers */, - 827AF42DCA6F6EA709B194DFB836C856 /* Hash.h in Headers */, - A6588D14E11C8EA60BFD863260803D30 /* Hazptr-fwd.h in Headers */, - F4EA0B1497921A488822DE891ABC0448 /* Hazptr.h in Headers */, - AF94C09ED2B735772D41239FA5FD6574 /* HazptrDomain.h in Headers */, - B56D782E3B1A2A5796BABBE1D71783B1 /* HazptrHolder.h in Headers */, - 4AC8E46FE3E049BAFE138C17E5F2F4DF /* HazptrObj.h in Headers */, - 72863FD64CB37488DFCAA34D2E51FC5C /* HazptrObjLinked.h in Headers */, - 306E69A39FD10D6450030E5C403DBC8E /* HazptrRec.h in Headers */, - AA6A169580691D45F4221AB2CDA4A99A /* HazptrThreadPoolExecutor.h in Headers */, - 65BB939302DE362B80705E458570E2A7 /* HazptrThrLocal.h in Headers */, - 06FC02991FEF45A778E94EEF63F75941 /* HazptrUtils.h in Headers */, - 8D2EBBC706AF49A6626065134CA8E728 /* HeterogeneousAccess-fwd.h in Headers */, - DCCA6EF3D161D03493D6CE42AE0C4725 /* HeterogeneousAccess.h in Headers */, - 7ADEA04EA038281DECB855D4D14A7D88 /* HHWheelTimer-fwd.h in Headers */, - 6C7D2A35CA85C3F5E6003C1A7BD3A13E /* HHWheelTimer.h in Headers */, - 619E0AA7123347A2EA0C5DBE38C599E7 /* Indestructible.h in Headers */, - F9E0D81E416FFB96308516C42F708EEF /* IndexedMemPool.h in Headers */, - 9503F20855D4E3A6AC1EAE8E1417E8E9 /* Init.h in Headers */, - 8EEE2C04C3417139A09910CC35AB10D0 /* Init.h in Headers */, - B2F09CE5B6DEC7861DEB857D857359A6 /* InitThreadFactory.h in Headers */, - 087327627D5E0EC8C8012550EBA962EF /* InlineExecutor.h in Headers */, - C2F7D57AEBD6F80C32C61B4B8808F394 /* InlineFunctionRef.h in Headers */, - B212CEACA4D5887073A5682158E1CADA /* Instructions.h in Headers */, - BEBA37988A07D40FBA4A1EFB2A777324 /* IntrusiveList.h in Headers */, - 3EF354A64BF8E943F74D0F1F8B0A522B /* Invoke.h in Headers */, - 2E00C1BC9902D8526F10483B81C8E6B0 /* IOBuf.h in Headers */, - B59E853C035D262E6A0D83F888AC18E4 /* IOBufQueue.h in Headers */, - 52639A0ECD241362B0BD6FCEEBA881E0 /* IOExecutor.h in Headers */, - 01A939FDFDE549EFCEEC007A543C4CC8 /* IOObjectCache.h in Headers */, - DFCE9FC9D7B2760398E849A1405D3783 /* IOThreadPoolExecutor.h in Headers */, - C8E107F9EA155DCF846D2CC4796ACF23 /* IOVec.h in Headers */, - B95952822BE50446EBB4404EB4C8BD77 /* IPAddress.h in Headers */, - 127B5D7A8E53E23D7AC6676E475E9C65 /* IPAddress.h in Headers */, - FF16F8A70236D799CF6C59260437A9E4 /* IPAddressException.h in Headers */, - 0E48D6CF3A56778E613A4D8FA47E7180 /* IPAddressSource.h in Headers */, - 00048DD9E1C1F01D7AA8052B56E7431E /* IPAddressV4.h in Headers */, - B784264D390418B691C769B9EBF482D2 /* IPAddressV6.h in Headers */, - F6BBB5AB6F0FBE1D39BFB1B2E8542B81 /* IStream.h in Headers */, - 156F1DA1AE62E86B8D961301962F189A /* Iterator.h in Headers */, - 764780972CE5CD95C1823F362A677743 /* Iterators.h in Headers */, - B384EC60C20044A64775F3511E0F8741 /* JemallocHugePageAllocator.h in Headers */, - 1446306986CDEAE5C94C1CFE4C38954B /* JemallocNodumpAllocator.h in Headers */, - 609618B919606D5A3B849C9F352F31E0 /* json.h in Headers */, - 362CFCE2FAB3468B2C45FE890D99ADD1 /* json_patch.h in Headers */, - 13E16B44E63706FF0E5C674809061546 /* json_pointer.h in Headers */, - F02C1AC3BB6EACA478292626B862C6AB /* JSONSchema.h in Headers */, - D94DE5C6E9898C501FA251E8465C01A4 /* Launder.h in Headers */, - 134261A7093D03CEB9C7E7A6C544F6A4 /* Lazy.h in Headers */, - E78878CE7EE4B42C7C4346121F3F117B /* Libgen.h in Headers */, - 10D758BBD9D41BC838C1D52EB7667CE4 /* LifoSem.h in Headers */, - 98D3E4C436C835AF5AB4442A209204E8 /* LifoSemMPMCQueue.h in Headers */, - C656765D42B2A46EEFDFFC5BDE9C3A6F /* Likely.h in Headers */, - CD18D05EC7A3744FB5CB0A864892D1F9 /* LockFreeRingBuffer.h in Headers */, - BE77BF5D3D009AA27EA6E3E6B0863A9C /* LockTraits.h in Headers */, - D1F820E1B9CF092DE1DDB26D3B359259 /* MacAddress.h in Headers */, - E5A22EBC18FF7ED857C3242BA10F97BE /* MallctlHelper.h in Headers */, - 589A0FA2BB8D8D82ABEE5BCB8958B23C /* Malloc.h in Headers */, - ABABE611ED362BDA1542225012D4AD12 /* Malloc.h in Headers */, - E3BBD6400CB4849B935042E456D7754B /* MallocImpl.h in Headers */, - 7C1E5969B5C22F5FA5DF8BDF5EA60FDC /* ManualExecutor.h in Headers */, - 5115FF3AD021AE6BF984D9D06CA1F063 /* ManualTimekeeper.h in Headers */, - 9C4F857EE33490DDAF8F64624CB89334 /* MapUtil.h in Headers */, - EB0D803A2824E1D994956F64A7BC4E81 /* MasterPtr.h in Headers */, - F16076BAB6001BD0FED3950911E50C56 /* Math.h in Headers */, - A38ECAF476A0C28A54DCBCA2A616397C /* Math.h in Headers */, - 4A7EEB5555FB4DFBBB51C1985F5198B5 /* Memory.h in Headers */, - D1E586071A86357590A2A4FBDE39BCEF /* Memory.h in Headers */, - C1F5B6C056D7E7B8A752E8F986E7EF6E /* MemoryIdler.h in Headers */, - BC0975A30F8FEEC9A8E5F8798F052344 /* MemoryMapping.h in Headers */, - 3B118620D13197BEF9C2AE1C32953CED /* MemoryResource.h in Headers */, - 171B547454AA62627C47E6CFADF298B3 /* Merge.h in Headers */, - 57B0B7CAAE8B64CB2AF282C5A17ECCE1 /* MicroLock.h in Headers */, - D35C269AED058F51D41E7E3310A0CC15 /* MicroSpinLock.h in Headers */, - 46569C6E31F484EEB4BF76A96E4C292E /* MicroSpinLock.h in Headers */, - 4E42DCB68654CEED81BEBA0848EC23A1 /* MoveWrapper.h in Headers */, - 62947729CE8EDE21EAD5BCFCBEB05599 /* MPMCPipeline.h in Headers */, - 2A00043AE307D261B553E4FC459642A1 /* MPMCPipelineDetail.h in Headers */, - 8377AADFCADC26F754FE60AAE8EE5683 /* MPMCQueue.h in Headers */, - E0D01F18FBF0E7F1BFE86D87EED1B044 /* NamedThreadFactory.h in Headers */, - 53C8034D5914E864883C58EFAFFCD535 /* NestedCommandLineApp.h in Headers */, - F22BD3E903F69569F8C839A08E3DA61B /* NetOps.h in Headers */, - A2EBC94A29EB94DE285B6B97F6DD140F /* NetworkSocket.h in Headers */, - 790C1CBCF10E10C920AC90949460AA22 /* NotificationQueue.h in Headers */, - FA9BA27127C0DB8995D656B16DBE1606 /* OpenSSL.h in Headers */, - F1D6CAB5D35412D70DB5C6F42EDA2BA9 /* OpenSSLCertUtils.h in Headers */, - 5F1AEC8A4A2038A3A647588151ECB571 /* OpenSSLHash.h in Headers */, - 126B230C97A33619996E23DB8D590DCF /* OpenSSLLockTypes.h in Headers */, - 58F91D19BEC6968923335ABE9AAB2D1C /* OpenSSLPtrTypes.h in Headers */, - DB7670CDFE36D5ABD929F278C60440DA /* OpenSSLThreading.h in Headers */, - FE1E96B4DA373D5CACE1872D7729E99B /* OpenSSLUtils.h in Headers */, - 40FCFC031F3028FFEDDAEC94A6DBF84A /* OpenSSLVersionFinder.h in Headers */, - BF4FF9EB6ADAFF86757F337E0621AB1D /* Optional.h in Headers */, - B6E9F5C3D140751D6EC41E094C64D8ED /* Ordering.h in Headers */, - 782C8658CE0707085AD6F1BD666AC343 /* Overload.h in Headers */, - B1CC8805D8F4BD1D5D0FEE58EB4EF70A /* PackedSyncPtr.h in Headers */, - 3BD336E24043640DDAFE96AF385E7B07 /* Padded.h in Headers */, - 1338A8EA0E032F70A0D1A3C362C91AFC /* Parallel-inl.h in Headers */, - 02C03E39B31B42E2FFBF8245C47771B3 /* Parallel.h in Headers */, - 5DAACE5BEAF998A4F0F81F700E9983A0 /* ParallelMap-inl.h in Headers */, - 1CCC7B9B965662ECD1484CF466F4CB24 /* ParallelMap.h in Headers */, - A87955D2F6EC86549EDA9CEC467A55FE /* ParkingLot.h in Headers */, - EEE36BA373727B18FD3B8DEADC356D57 /* Partial.h in Headers */, - 472F79A9320D3E43024073CD0B263DF6 /* PasswordInFile.h in Headers */, - EF7CDFA2C1805CED24ABDC5E5F281A2E /* Phase.h in Headers */, - 0E1CDAD5AD31BADAD35669CA00758F72 /* PicoSpinLock.h in Headers */, - 3EB26E9B057A8FBB27863EC0A60A088A /* Poly-inl.h in Headers */, - 86454D38412005D85921EEF3D75901B2 /* Poly.h in Headers */, - F73A7E6B081017C3B9444BEC325487FD /* PolyDetail.h in Headers */, - 519481BF2A8FD895AFA82E945A8D141E /* PolyException.h in Headers */, - 6C23F08FC3706DE1C3C6378605625257 /* Portability.h in Headers */, - 3905EDAD6B0D8E00081ECB52A04E0CA3 /* Portability.h in Headers */, - BA0F446E1D8F95413391AFC486FF19AD /* Preprocessor.h in Headers */, - F4F60C96F4B74BC9F42ECE082210F3C9 /* Pretty.h in Headers */, - 27D0E2522841DF2944FED2A3D82EC208 /* PriorityLifoSemMPMCQueue.h in Headers */, - 518A7E73E691F8A7EB9865679279CCF6 /* PriorityThreadFactory.h in Headers */, - CED362515D3FA00D4CF4C576A0029C56 /* PriorityUnboundedBlockingQueue.h in Headers */, - DC4D5E9EB8940AF380BDFD5C67A8C252 /* PriorityUnboundedQueueSet.h in Headers */, - 73F2DE2DFEC35D02AFB0C1A7674EDBED /* ProducerConsumerQueue.h in Headers */, - 9DF605AC1E79FDBBEEF14DC2C0F98422 /* ProgramOptions.h in Headers */, - BBD515D6180E71256A0A9CB0BF778447 /* Promise-inl.h in Headers */, - B0336447FA8DB6BA8E36A9A3F043449D /* Promise.h in Headers */, - D5771A96DEDA22780A943A3205E9911E /* PropagateConst.h in Headers */, - 84ABD0A337B65FBFB553EDB51835D8D6 /* ProxyLockable-inl.h in Headers */, - 6ECC16AACFB6BC5FF0B7EFE9C278BB62 /* ProxyLockable.h in Headers */, - 3F9EA02248DF676A9068E2A34DB95F15 /* PThread.h in Headers */, - C80F54D99C2A289E5258B468883E4ABD /* QueuedImmediateExecutor.h in Headers */, - 78DD24A22EAEE029FC0EF5954F72FF8B /* QuotientMultiSet-inl.h in Headers */, - FEE0256EC5380D6EFD6E1AAEC3874D1C /* QuotientMultiSet.h in Headers */, - A3D5109AF9418C4ED1014068A3857A80 /* Random-inl.h in Headers */, - 02118F981B7C0DD618C919479E33B173 /* Random.h in Headers */, - 7C8CA8992291A9A75E8DB854A4CC73BE /* Range.h in Headers */, - 1065FB0A746A628EAB50F5C2F33DAFDC /* RangeCommon.h in Headers */, - 38C58C53984AD093A58AA3C8C2123743 /* RangeSse42.h in Headers */, - 46ECEE66EBB2AB03E6D9E8FDCEF69082 /* Rcu-inl.h in Headers */, - 6D3EF4948D919B5B149404B2F11CED5E /* ReadMostlySharedPtr.h in Headers */, - 36AC42E0DA8E51DC848F18C6518C0B93 /* RecordIO-inl.h in Headers */, - 0B522BA25D8DA45B1F683E2BD478AA3C /* RecordIO.h in Headers */, - 1154566AF79CF1B06B936239C6E36FD4 /* ReentrantAllocator.h in Headers */, - 24EA3B2522D9DF4FB974E36ADBD39160 /* RelaxedConcurrentPriorityQueue.h in Headers */, - 1233C519B19E5A57FD2DA9ABDEBFB400 /* Replaceable.h in Headers */, - D73B7BC25E0A81E82E9A72BBFB787DDD /* Request.h in Headers */, - ED48F81E61659B7183C6AF81E77DD27B /* Retrying.h in Headers */, - 8CEB7B8EBD88672CF65829C3F587814B /* RValueReferenceWrapper.h in Headers */, - C1835068B045C9D229AD59B8EEE34442 /* RWSpinLock.h in Headers */, - E5699989A56C61DD94A9C6A17C253494 /* RWSpinLock.h in Headers */, - 19BF795BEBEBDD5B3FEF1E20160B7B3D /* SafeAssert.h in Headers */, - D2E714CA017CA0D99284441DB9C445EA /* SanitizeLeak.h in Headers */, - 2F689061F70B495C0E7036234947A4A4 /* SanitizeThread.h in Headers */, - E3482831201B92E1A06A0C22936FF637 /* SaturatingSemaphore.h in Headers */, - 8D6C3F1F79AD9E77B35ADA3F3027D678 /* Sched.h in Headers */, - B4262D0FB26F5109D7A33BF8AE598C48 /* ScheduledExecutor.h in Headers */, - C4578E50CF2B8BDF7FD4D24DB5366E0D /* ScopedEventBaseThread.h in Headers */, - 53310C7E51592F35B731482C04256849 /* ScopedTraceSection.h in Headers */, - 576BFE5A753D35D748B26D692B7D23D3 /* ScopeGuard.h in Headers */, - 8ACE8E6D499B1E6DE4E2918E26526832 /* Select64.h in Headers */, - BBC28273B135F97C57377B610C5BDA19 /* Semaphore.h in Headers */, - BE71D068B4CFDF3DADE649849D6A9BE7 /* SequencedExecutor.h in Headers */, - FC2BD403DE14AEC7344CD795921030D8 /* SerialExecutor.h in Headers */, - 924651FEE2C95494D7F5ADBA69D12031 /* SharedMutex.h in Headers */, - B611B30852DB6AAE303158B5B7A716B9 /* SharedPromise-inl.h in Headers */, - AC5F7A2B2353C1264922FB3A3646492A /* SharedPromise.h in Headers */, - B46E92A9BDF530C40112651D07ECD171 /* Shell.h in Headers */, - 3BECADEE8D5E7673C2E6F02336EBA8AA /* ShutdownSocketSet.h in Headers */, - D997D811B799C6F563F7A549E2622A89 /* Singleton-inl.h in Headers */, - A6655A84B7D43672CF9624EBF16C90A9 /* Singleton.h in Headers */, - 12C835F126FBB52066DD4CADEB804178 /* Singleton.h in Headers */, - 826F3B2FB4ECF5FA48963C64000BDB32 /* SingletonRelaxedCounter.h in Headers */, - 8BBD0D34D3880E1B2867AFE0EE22513C /* SingletonStackTrace.h in Headers */, - 1767480F3E2D5657F718A7C093918179 /* SingletonThreadLocal.h in Headers */, - B57D74184B1605395EF887E546B3192A /* SingleWriterFixedHashMap.h in Headers */, - 93319A17DA7B2F1F5C2DD3C79FDCA9B5 /* Sleeper.h in Headers */, - 1A59BF25E00AC27F34D1FFE86F94DA63 /* SlowFingerprint.h in Headers */, - 025FE47C3B60B30BA35774977653BB78 /* small_vector.h in Headers */, - B9E0F2BB25FE380FB287CB60FE2EACFD /* SmallLocks.h in Headers */, - CAE644D7DC0F3CC3A1A3326AD7F1991A /* SocketAddress.h in Headers */, - 781597CBB7FB055B8047F8F6328564E9 /* SocketFastOpen.h in Headers */, - FFD0E17082D51F889FE4684D72B833A4 /* SocketFileDescriptorMap.h in Headers */, - 010D56C7627B65E6EFD47D9261944763 /* SocketOptionMap.h in Headers */, - 2791D2CCA183E84173CDA03EA5D0B031 /* Sockets.h in Headers */, - 8F63D7B66058468FDD54E8BE68B22A79 /* SoftRealTimeExecutor.h in Headers */, - 608C3844EA3A3504918A7E6FDBDEFD6F /* sorted_vector_types.h in Headers */, - FA796C85756A2D3381F95947B0D5F080 /* SparseByteSet.h in Headers */, - A434867A0A2FF3CAAA587EFED4C718B0 /* Spin.h in Headers */, - 4262D06D3600F874667A475ED027E611 /* SpinLock.h in Headers */, - 2E5BE117A10751BBD2F538BF3C95251F /* SpookyHashV1.h in Headers */, - 88FB00DA4C7C599F38772B29B6B39AA8 /* SpookyHashV2.h in Headers */, - B9C785E004C42A3A7870E839436ADB3E /* Sse.h in Headers */, - F69B725D133A0C17F68F1AE4EA9CD309 /* SSLContext.h in Headers */, - FCA1AF98518897B7CC3CEFDF7CB449FE /* SSLErrors.h in Headers */, - 651674CBC6C7A91D1FFC3C055BE72179 /* SSLOptions.h in Headers */, - A5714B3CE67D965BB55C26E18ADD415C /* SSLSession.h in Headers */, - C2A48E4D38C30AEC19ED20923D2B1310 /* SSLSessionImpl.h in Headers */, - 9369E582C7B7E6AEF32D9043CA0C75FC /* StampedPtr.h in Headers */, - D933C1F78DB716F99CA801EAA8AEC422 /* StaticConst.h in Headers */, - CF0E2747232F5A846554C68D23BA09D6 /* StaticSingletonManager.h in Headers */, - 84EFF21EFDB35A95B7022ED715485541 /* StaticTracepoint-ELFx86.h in Headers */, - 519CEB1CF0632BD4CAEC31A5D86E9DA4 /* StaticTracepoint.h in Headers */, - 88C808AB0898EEF8B94E01F1A7CEA8DC /* Stdio.h in Headers */, - AE92AF417DB6D1DA316995270A8DD46C /* Stdlib.h in Headers */, - 99C9141904EB81B6CF2971AB346B5BD2 /* stop_watch.h in Headers */, - 8A7D91895A1BB38D3CFDBB931E0718E7 /* String-inl.h in Headers */, - 4FDFDFFA69D2E1FA2615D2E4F458E3D4 /* String-inl.h in Headers */, - 37A298F5F8D603F694F6D0BB8324AE3C /* String.h in Headers */, - F277AAD3A9C1DF3D27CD5B747DA1BFE0 /* String.h in Headers */, - A73F59A76E54905051967B30487D7F40 /* String.h in Headers */, - E485454502FCAF5D7458D07251E75ED2 /* StringKeyedCommon.h in Headers */, - 99E0CBC11C689E6886E826D3D19162C2 /* StringKeyedMap.h in Headers */, - 85043B05FEE95C701F50E019113AE2BF /* StringKeyedSet.h in Headers */, - 1702671AD26938F98625960823F9ED77 /* StringKeyedUnorderedMap.h in Headers */, - C56A64527F4D082866908640566D58C6 /* StringKeyedUnorderedSet.h in Headers */, - 046CFA6EA2183A2D8EA5270C76CA64CA /* STTimerFDTimeoutManager.h in Headers */, - 4E7BFB414A91A4DE6836A298E608D04C /* Subprocess.h in Headers */, - 5427EC2709C8F7F4AABA09565DF07D2F /* Synchronized.h in Headers */, - E3AB29EC69ADEBED2A8AD3743CE6E97F /* SynchronizedPtr.h in Headers */, - AB5EEADD611551F76B1652F318B4F2A9 /* SysFile.h in Headers */, - 6CCDCDE388B9F1EEFC52F8C273143825 /* Syslog.h in Headers */, - 75FFF39AF07816160B214CEDC0C83CE9 /* SysMembarrier.h in Headers */, - 723F16A71B0E2F9C992B3CDADBC09B65 /* SysMman.h in Headers */, - ACDF1E6F5B939622CFE95CE1AC11EE8C /* SysResource.h in Headers */, - 644033B56B8B2B6392CE033FE82002EA /* SysStat.h in Headers */, - C03C41AB03FEA74D617CECEDBC2FB5D3 /* SysSyscall.h in Headers */, - 3FA2B6E0EA9DD7075A48A390DD99DE32 /* SysTime.h in Headers */, - B352754E405D47A9A18AAD81551C10D6 /* SysTypes.h in Headers */, - E9F140B18AA5E8078FEA649BE33DF599 /* SysUio.h in Headers */, - 1E8116D71068E350AB2A0B8D74ACFAB7 /* Tearable.h in Headers */, - E76A6CD9B0CAA7A92D2CD5FA84F9EB2F /* TestUtil.h in Headers */, - 98D0580987857A7AF9889D71E9361EA3 /* ThreadCachedArena.h in Headers */, - 75AA13A50D482793A956B5C73E50851D /* ThreadCachedInt.h in Headers */, - F389A8E30178964CE0918520E4C63453 /* ThreadCachedInts.h in Headers */, - A8F48D6FDA7DC4F7CD2D730D80338885 /* ThreadCachedLists.h in Headers */, - 585BA85A9E284A84802094B584F65CC1 /* ThreadedExecutor.h in Headers */, - 19BC35952A4222CBA76BFCC510F8C8B4 /* ThreadedRepeatingFunctionRunner.h in Headers */, - EC56E8D37A1EF91594F4F85BBB6CF794 /* ThreadFactory.h in Headers */, - 4E978A17F20DEB0A27FACDDB01A38339 /* ThreadId.h in Headers */, - 0D85A62F967954499B5879445363004F /* ThreadLocal.h in Headers */, - 0DEAE518FDBB5DD5A873E01195A4462E /* ThreadLocalDetail.h in Headers */, - 699B52AA6BA53B58E1B33843917C01C2 /* ThreadName.h in Headers */, - 5A0171736A5F613B8B569D74BBD43F03 /* ThreadPoolExecutor.h in Headers */, - A7AC1BCEB4AEB7843724AE600B5AA6DE /* ThreadWheelTimekeeper.h in Headers */, - 58AF9CCBEEF7E4BCD4301166C851AA06 /* ThreadWheelTimekeeperHighRes.h in Headers */, - 558DE6ADB371227D79637DA212919A67 /* Time.h in Headers */, - 27FE2C33CEA4B00DC5EC0E3F3512E805 /* TimedDrivableExecutor.h in Headers */, - 7DD7714471F9616142A0A440D6447ECB /* TimekeeperScheduledExecutor.h in Headers */, - 730EDA55060A6B6283950D48CDAC5EAC /* TimeoutManager.h in Headers */, - 5E9341355BDD556BA684BB9608900B92 /* TimeoutQueue.h in Headers */, - BEFBD45A13D450C763FF87FB1D1F70CD /* TimerFD.h in Headers */, - C76CFF4115D2E081E952EE6BF2989503 /* TimerFDTimeoutManager.h in Headers */, - CEC9AA9E45792542573CF4B0282DCC83 /* TLRefCount.h in Headers */, - 6B1A5FE6CBE29C4CDAB495164C349C83 /* TLSDefinitions.h in Headers */, - DF5366DCF4A15500578057AC06F9B0B4 /* TokenBucket.h in Headers */, - 7CBC0B786C74863410DA18D1BE7DD73A /* Traits.h in Headers */, - 2CFAC05B6DBD8BFF2BB800BCE09795B8 /* Try-inl.h in Headers */, - 3F49C05C1F38C287BBDBC20C50942AD9 /* Try.h in Headers */, - A243DA45E5E811575BE6D9C8D5D19B0A /* TupleOps.h in Headers */, - 0F7CF5403ADB08D9D9C0EE0A5CEF0194 /* TurnSequencer.h in Headers */, - D0AB34E28BFD9EB328F9B831521843F3 /* TypedIOBuf.h in Headers */, - 0461C37B5061FC3BFC24BA4EBA892F17 /* TypeInfo.h in Headers */, - 74D73E484F36568492DE9CD998056438 /* TypeList.h in Headers */, - 365D26FAE0517554640DE85CCED99E1E /* Types.h in Headers */, - 74C122F86DEE82000A0B2FD0234A2597 /* UnboundedBlockingQueue.h in Headers */, - 234AE68428A5817BAFE963A80FC365AF /* UnboundedQueue.h in Headers */, - 1FC21E84DC59264D219EB20962EC583D /* UncaughtExceptions.h in Headers */, - 470D84054BE68EBCD10DA1B419F5B392 /* Unicode.h in Headers */, - C9605C8430A5D8564D15A04ADC9566D4 /* UninitializedMemoryHacks.h in Headers */, - 34F0DFD8C37DD65D469E3F42AB15B984 /* UniqueInstance.h in Headers */, - DE7DC2A119709F925CFF7C472006F34D /* Unistd.h in Headers */, - 39E6AC4E276515BDB5C7DFD71C6325E8 /* Unit.h in Headers */, - 6031E0502A6786780985A6CB3EDCC7A8 /* Uri-inl.h in Headers */, - F03855329B4AD75B96659D181EA21531 /* Uri.h in Headers */, - 7BE5B56712FD018392367AC45E7CC119 /* UTF8String.h in Headers */, - BD915EF6F0525B2E12C96CF877C5261C /* Util.h in Headers */, - 697560C208A7E78115A5D95D204BE0B9 /* Utility.h in Headers */, - 835772349195398E0BFCC6F418AAA71D /* Utility.h in Headers */, - EB38E6BE25B7A0A918A282060959C00B /* Varint.h in Headers */, - CDE9592C89D6616496AE868975DAA166 /* VirtualEventBase.h in Headers */, - 8A7CA5DBE530728426BE5AA59945F7CE /* VirtualExecutor.h in Headers */, - D0E0C10F5F95F06BEC438F95275F3312 /* WaitOptions.h in Headers */, - 6AAC5DB5BE77AA22690EA241A578EF35 /* Windows.h in Headers */, - 70B3A3692ABB332F42F8D3271F051AA3 /* WriteChainAsyncTransportWrapper.h in Headers */, - 9CFE04F45DC1F039A11B13448B9DC3BB /* WTCallback.h in Headers */, + 3A6EF28AAB1CEE9548C2645D361C61E2 /* NSTextStorage+FontScaling.h in Headers */, + 31A0B5848DA1A7AC37D65BFFAADE1F45 /* RCTBackedTextInputDelegate.h in Headers */, + D6EA6E73DF6371134D624495846D85A5 /* RCTBackedTextInputDelegateAdapter.h in Headers */, + 68E32BD6FC044C785C783BC5A12CFF56 /* RCTBackedTextInputViewProtocol.h in Headers */, + 40F55C4B4D3116A7C2BAD3B6DD43ACE8 /* RCTBaseTextInputShadowView.h in Headers */, + 45502B5E9EBD03B609CAC807FBF6C64E /* RCTBaseTextInputView.h in Headers */, + EFBAB2B05D0CE1D1C3A4101F3563CE94 /* RCTBaseTextInputViewManager.h in Headers */, + 84818131EC99A4ED0EC61CBEC40A684F /* RCTBaseTextShadowView.h in Headers */, + ED28F6A69A0C171667F5FD4D9889E742 /* RCTBaseTextViewManager.h in Headers */, + 6A6954EFEFA6A88E30A71886E73EDA7E /* RCTConvert+Text.h in Headers */, + 112CC9427321C72575D6006F2CD9457A /* RCTInputAccessoryShadowView.h in Headers */, + C5851698F937D8E58C2C3F74F4E8109D /* RCTInputAccessoryView.h in Headers */, + 4F6782C1A84D9329340E9B8D7E0FCC5A /* RCTInputAccessoryViewContent.h in Headers */, + D656579133542DACB1E311F8803D076E /* RCTInputAccessoryViewManager.h in Headers */, + FB43462D2FFE9BF8B8ED2C26D7EA0C23 /* RCTMultilineTextInputView.h in Headers */, + 5164E64881026C024F9B50EF37E62E25 /* RCTMultilineTextInputViewManager.h in Headers */, + DEC2AADA44758DB8F12C9BE5773D6A2F /* RCTRawTextShadowView.h in Headers */, + 9B375D473CEB4F7EA93C01161C2A0013 /* RCTRawTextViewManager.h in Headers */, + 7415D83E99728821B17D4D3DE4DC8A3F /* RCTSinglelineTextInputView.h in Headers */, + 8EBFDF7D302D6F17EBA7BB7398AFB037 /* RCTSinglelineTextInputViewManager.h in Headers */, + 8841F926DB529F811D294DA5BB32D9F3 /* RCTTextAttributes.h in Headers */, + ECF52E1275D8E9CBB4770BEB79118D53 /* RCTTextSelection.h in Headers */, + AC769760FAEF462CB1AD4C6A6A462F48 /* RCTTextShadowView.h in Headers */, + BBE448534EBD0BBB01FDC75BDF8FF0F5 /* RCTTextTransform.h in Headers */, + 33AF968B9F9F73D7DC506770754FD4C1 /* RCTTextView.h in Headers */, + D33D7C7EF6DECADDB8A1789E2C432321 /* RCTTextViewManager.h in Headers */, + 694BBEF3D267ED286D72B2B011A6DCC8 /* RCTUITextField.h in Headers */, + 5E7937284AD13E1583D4875125FB0E1A /* RCTUITextView.h in Headers */, + A42C8AA9282BCE76A2EEBD4B680BAEE7 /* RCTVirtualTextShadowView.h in Headers */, + F9E3A28828C67EC397BF898C2EBF56C4 /* RCTVirtualTextViewManager.h in Headers */, ); runOnlyForDeploymentPostprocessing = 0; }; @@ -23773,6 +23218,128 @@ ); runOnlyForDeploymentPostprocessing = 0; }; + 24AE747FA3912A8EF442A729F8A0F8F8 /* Headers */ = { + isa = PBXHeadersBuildPhase; + buildActionMask = 2147483647; + files = ( + 56EE5E1E394B16D4BA3AF1742CE1D442 /* crashlytics.nanopb.h in Headers */, + A0DFC68BAE526614F9FF26718A423109 /* dwarf.h in Headers */, + 9E863C9D16C3FFF4D338306CE6D74377 /* FIRAEvent+Internal.h in Headers */, + 975AC226C49171D3D323CCB1319A42E3 /* FIRAEvent.h in Headers */, + 8CAA4EEE2C776E564F2DC6112D64C2E2 /* FIRAnalyticsInterop.h in Headers */, + 9C9CB87BF855599CA004629F8173C52F /* FIRAnalyticsInteropListener.h in Headers */, + 3F2410FDEBFAC627907367258222C0B7 /* FIRAppInternal.h in Headers */, + 744F4B2E157F5A8F59D41BD70AFD852B /* FIRAValue.h in Headers */, + DD418A9B3922FF14EF8857AF0F2DC640 /* FIRCLSAllocate.h in Headers */, + 493EB6FEC8DB25331EEADD6C2CF12943 /* FIRCLSApplication.h in Headers */, + A57309088CC0DCE0FD461DBC611CDE20 /* FIRCLSApplicationIdentifierModel.h in Headers */, + F0B1D061831DACE98CF3D2D24810738D /* FIRCLSAsyncOperation.h in Headers */, + 3A3C3FA9A6D152B00B0A12D231FB0FE3 /* FIRCLSAsyncOperation_Private.h in Headers */, + E8CF70030D5245CF810E003EBB5CCAEE /* FIRCLSBinaryImage.h in Headers */, + B020A3994707F48C9C8378A25EC6DBEA /* FIRCLSByteUtility.h in Headers */, + 639F20ACC1E93D12879273ADC9D72BB1 /* FIRCLSCodeMapping.h in Headers */, + 8B29743F2FBB85A66FD94AA61E1DE829 /* FIRCLSCompactUnwind.h in Headers */, + 12C480A6B7C3A5398BA1EF5F9ED0A2E9 /* FIRCLSCompactUnwind_Private.h in Headers */, + 33C5033223DC6B767D2D9CC028ED1D04 /* FIRCLSCompoundOperation.h in Headers */, + E6F6E0252DF24B0746EAF0019D80EF93 /* FIRCLSConstants.h in Headers */, + EDC1BA91693E491A9801B832ED7F936B /* FIRCLSContext.h in Headers */, + 1B977250A87A932CCDC3A8C5D7926C3A /* FIRCLSCrashedMarkerFile.h in Headers */, + 9D335A0625F75C140E2F7AF3758462FA /* FIRCLSDataCollectionArbiter.h in Headers */, + 482A04CB7973A50771D0DB0033B39C01 /* FIRCLSDataCollectionToken.h in Headers */, + 2BAB6032428EE28B11A37B5DF0D52561 /* FIRCLSDataParsing.h in Headers */, + 597743E3015309A9176AAEC6F273F74B /* FIRCLSDefines.h in Headers */, + 8DEFBFAC1956A4F29175C644F5F2919C /* FIRCLSDemangleOperation.h in Headers */, + 50B7ADCCE85E549BC80E61674D3A8942 /* FIRCLSDownloadAndSaveSettingsOperation.h in Headers */, + 82FCE7990AB949B12E59D22C97E47373 /* FIRCLSdSYM.h in Headers */, + A867266087AC01C930AFF6FAA30B1731 /* FIRCLSDwarfExpressionMachine.h in Headers */, + 803FBC8BD6065F9E745A3C69025620FA /* FIRCLSDwarfUnwind.h in Headers */, + F125737C78ADFB0D170ECE694A77072C /* FIRCLSDwarfUnwindRegisters.h in Headers */, + 352BCB52C36E0DE7C25D6589275B4D1A /* FIRCLSException.h in Headers */, + D22E7C79BE9E52E6F34C3B813EADDA82 /* FIRCLSExecutionIdentifierModel.h in Headers */, + 9F3CDF490D0F837C53F24F1834EDF452 /* FIRCLSFABAsyncOperation.h in Headers */, + C32C7AE271A1E4C1A304C4613823EA8C /* FIRCLSFABAsyncOperation_Private.h in Headers */, + B16B24FC6495F1490A34DB8F445B1802 /* FIRCLSFABHost.h in Headers */, + F1CB4B93848145DEDF69DCE012EBF9A6 /* FIRCLSFABNetworkClient.h in Headers */, + FC4D3C58F89FE27DC8A7387F219D6DD6 /* FIRCLSFCRAnalytics.h in Headers */, + B4F215E44432BE917156E7133AF517EF /* FIRCLSFeatures.h in Headers */, + AACBD3534259ABB830501870CEF539C0 /* FIRCLSFile.h in Headers */, + EE4F4B6E204F1B885F5AB7E2F10F992C /* FIRCLSFileManager.h in Headers */, + C8211A76C0F5DD32D2376FDEDCA55219 /* FIRCLSGlobals.h in Headers */, + D0739AC1493F97419F3DA65F58CB53FF /* FIRCLSHandler.h in Headers */, + B3D4D19E10CEE3EB116407F3A60CBCC4 /* FIRCLSHost.h in Headers */, + 2B8738D906D2CA05D0046B8F698F92DD /* FIRCLSInstallIdentifierModel.h in Headers */, + B45BA15D7EA8C574692F336AF6D22DB8 /* FIRCLSInternalLogging.h in Headers */, + 6F1969232CB01DB5AD4422C4D4B3FD54 /* FIRCLSInternalReport.h in Headers */, + 2C8F4567DBC5AB1023D6F1E202732CA7 /* FIRCLSLogger.h in Headers */, + 2721576CCFF6D38EA7602AFC8D6FD278 /* FIRCLSMachException.h in Headers */, + 111710D2DDA820B176CD26DFC954B1F6 /* FIRCLSMachO.h in Headers */, + 59F4CB2A11654294E3E840DFC86661B6 /* FIRCLSMachOBinary.h in Headers */, + 3F31F700DABD349D0EFD4D496AF38F70 /* FIRCLSMachOSlice.h in Headers */, + 768420CFAC428710F7EDC386F62390BB /* FIRCLSMultipartMimeStreamEncoder.h in Headers */, + 6CCC2EA908E8C2FD89CE8B80E28E5BA8 /* FIRCLSNetworkClient.h in Headers */, + 671BEDC069362456CBF5E565B21D3EAD /* FIRCLSNetworkOperation.h in Headers */, + DE92F0A5560923CA60E1ED3D7691820C /* FIRCLSNetworkResponseHandler.h in Headers */, + 4C11B1460C01530329D9A1633832D026 /* FIRCLSOnboardingOperation.h in Headers */, + 73C66BC6FC7EF2F2177035AC773E11B4 /* FIRCLSOperation.h in Headers */, + 72585FB3DC33DE64DA36F1395AF6D28C /* FIRCLSPackageReportOperation.h in Headers */, + DA8137910C89004BD6788183E44231F6 /* FIRCLSProcess.h in Headers */, + 92C8F2C09EE755D2F57F609ADF1E5C1F /* FIRCLSProcessReportOperation.h in Headers */, + 9EAE0AC66AC8306F119E1AEDA12EC0C2 /* FIRCLSProfiling.h in Headers */, + 60926A35E38148C951F6D8760069D748 /* FIRCLSRecordApplication.h in Headers */, + E3AA941BE64E2F2690C5015F77BDA5BE /* FIRCLSRecordBase.h in Headers */, + 78158C75B93A3B7AA3F0C6E44E9A7C70 /* FIRCLSRecordHost.h in Headers */, + 7108FF19216CEFA91B70E377013F42B8 /* FIRCLSRecordIdentity.h in Headers */, + 9A4E510D7AB40B3DDC8ABDA68501F19E /* FIRCLSReport.h in Headers */, + 4BA21040668A5272321E130E8D9C9371 /* FIRCLSReport_Private.h in Headers */, + 5FA795FA23FF6086FF45385F279B47F6 /* FIRCLSReportAdapter.h in Headers */, + 36B8C10CFAAC747ECB55721D96A81BA6 /* FIRCLSReportAdapter_Private.h in Headers */, + F2AC75B653D0E35B4EA0B85F444C82F9 /* FIRCLSReportManager.h in Headers */, + ADCD1362752886AED8D944601789F460 /* FIRCLSReportManager_Private.h in Headers */, + 27BA241C23682D3DA8E4DE3D04BC6664 /* FIRCLSReportUploader.h in Headers */, + 5D4186D93DD39D572539CC731C90B530 /* FIRCLSReportUploader_Private.h in Headers */, + EBB19D2A830B79BC320B09ADBFB991AD /* FIRCLSSerializeSymbolicatedFramesOperation.h in Headers */, + 356B7F37620EBF37125D94F0D171BAD8 /* FIRCLSSettings.h in Headers */, + 8E2FC4F15A06F036F48700C82D72C87D /* FIRCLSSettingsOnboardingManager.h in Headers */, + DED13A8A1B70CBA78C9B05D288A06F08 /* FIRCLSSignal.h in Headers */, + 692A76D9211A8561B848DDC7F199A72F /* FIRCLSSymbolicationOperation.h in Headers */, + 372BF46B0BBBE22BF9195F5E01DEB4EA /* FIRCLSSymbolResolver.h in Headers */, + 41B610812DA9DA8C39C1C7C6C3ECCBE5 /* FIRCLSThreadArrayOperation.h in Headers */, + 2DFB6E0B0F83A9BEC1689FD7ED0FBC25 /* FIRCLSThreadState.h in Headers */, + B0904E9339EAADB17226F2A7DDD49C9F /* FIRCLSUnwind.h in Headers */, + C6BBE4C34FE544D6DF6E91E929A6B056 /* FIRCLSUnwind_arch.h in Headers */, + 984928263040C2A02F449ADEA75CBA59 /* FIRCLSUnwind_x86.h in Headers */, + 1399EEA6FCAF0336A0FF30FDDFD483AD /* FIRCLSURLBuilder.h in Headers */, + EDCE80AD8AB6C5393C82023802442E2A /* FIRCLSUserDefaults.h in Headers */, + 4115894DB6653BE8FCDF834AED9BE82E /* FIRCLSUserDefaults_private.h in Headers */, + 292B57F0F0680C7C43071665B3BA52F8 /* FIRCLSUserLogging.h in Headers */, + 34E2D16BCB27AE9F60D65DEFA0C0AA9E /* FIRCLSUtility.h in Headers */, + 98D5543B688540BC841C1C1813CE78AE /* FIRCLSUUID.h in Headers */, + E25B083D7A138CAEE0EF41BCDA14705F /* FIRComponent.h in Headers */, + 47A925FF0D8D5FBC9C1BFA9FB0C0DB33 /* FIRComponentContainer.h in Headers */, + 8391D96D07ED2DB35FDBC5CD042CBBB7 /* FIRComponentType.h in Headers */, + 3E33FA21071DE622B8D6CA108DFE8747 /* FIRCoreDiagnosticsConnector.h in Headers */, + 96754E93241310C96209C1C138BE994B /* FIRCrashlytics.h in Headers */, + 50BEB2AE8DAE21E73CA4AA64A6AD83F7 /* FIRDependency.h in Headers */, + D76BC829A89C4D151E87BA2F32F5637E /* FirebaseCoreInternal.h in Headers */, + 4F2C566C7ACCA1CE5518BD14B834372B /* FirebaseCrashlytics.h in Headers */, + 54605FFDD9399B6FEDB35102DACF1899 /* FirebaseInstallationsInternal.h in Headers */, + DA7F055B98C0759CF395F2519C223C94 /* FIRErrorCode.h in Headers */, + 92C74669EA3480547556E1EB6BACAD29 /* FIRErrors.h in Headers */, + B12608FFA803FC22EDF2E7611BBA88DD /* FIRExceptionModel.h in Headers */, + 50DFC5EBF7F3919E2AFB3425E04202A3 /* FIRExceptionModel_Private.h in Headers */, + 77FF633532BB2E1210138FA4C0EE53C7 /* FIRHeartbeatInfo.h in Headers */, + A57815FEBD4E139D9643D762B0C58E61 /* FIRInteropEventNames.h in Headers */, + A954E56865031F1AFDEE0E0E3176CEFA /* FIRInteropParameterNames.h in Headers */, + 96A96BF67B78BDBB807C9DDE2D42C66D /* FIRLibrary.h in Headers */, + AF8FB6F98C8E5B30BB40BA4789984544 /* FIRLogger.h in Headers */, + E45CB656FCE17142610312339392876D /* FIROptionsInternal.h in Headers */, + 873B002CFFF728D8D26627E4698AB4FD /* FIRStackFrame.h in Headers */, + 1A3EAACB065FB96BC720C892A07A87F3 /* FIRStackFrame_Private.h in Headers */, + 09AE18893DC88E6EFC177B6124385A89 /* GDTCORDirectorySizeTracker.h in Headers */, + 7FF7B8E74BA7BD91DB11E345B9A52672 /* GoogleDataTransportInternal.h in Headers */, + ); + runOnlyForDeploymentPostprocessing = 0; + }; 263931860401D582A36FB5B609FFE2ED /* Headers */ = { isa = PBXHeadersBuildPhase; buildActionMask = 2147483647; @@ -23818,40 +23385,6 @@ ); runOnlyForDeploymentPostprocessing = 0; }; - 29BA8B2C7623C5351C1C8EE6152D3634 /* Headers */ = { - isa = PBXHeadersBuildPhase; - buildActionMask = 2147483647; - files = ( - 101F0262D022C0B35AF8F8C7B4A91D8A /* AESCrypt.h in Headers */, - BD77429A83C5A96A341E7EFE5CD6D1CE /* Checksum.h in Headers */, - 59B329A3C21EC40388C438F5978C2BD8 /* CodedInputData.h in Headers */, - 500986BB00B0E28339E9B748BF07B6E9 /* CodedInputDataCrypt.h in Headers */, - C603C2ABD8116FEC72AD491A1E031FB6 /* CodedOutputData.h in Headers */, - C851F91C454485DBA39BA50F76DAE48F /* InterProcessLock.h in Headers */, - B6FEA1C2CE452A46C58EE49FEA9A8E07 /* KeyValueHolder.h in Headers */, - 3F7FFA66E3CB2AE4C2C28000B2504EA3 /* MemoryFile.h in Headers */, - F64F96678B2FACF209B69700EAE9879A /* MiniPBCoder.h in Headers */, - A8757210B189373A8F6800E3D648FDC9 /* MMBuffer.h in Headers */, - 8D7EF30110E8C8440594225B49A8BEB1 /* MMKV.h in Headers */, - E4D42E2CAAE1119F464246ABA3B38A6A /* MMKV_IO.h in Headers */, - 05C2E0DB9C8CC79205ED5446A7BA7D72 /* MMKV_OSX.h in Headers */, - 03C2C9D9DE037EB91239D7C7E88BF9D2 /* MMKVLog.h in Headers */, - D6379F6D470211E5CA23A286FD7DECC4 /* MMKVMetaInfo.hpp in Headers */, - 4B8DC3A62E196B5D326951CCDB056524 /* MMKVPredef.h in Headers */, - 3A24567EAA97CA2C452EEE45118017C3 /* openssl_aes.h in Headers */, - 3E05A4A62C97013F053D32CA64C78998 /* openssl_aes_locl.h in Headers */, - 4948379656F73C54C13A405B38039FBB /* openssl_arm_arch.h in Headers */, - B8AC3BD4F6CF70F207FCFF3C2931599D /* openssl_md32_common.h in Headers */, - B0E8850FC59E770D0425EB8638A64101 /* openssl_md5.h in Headers */, - 874B590FD8C3A1294C494CD5F4EA6C7E /* openssl_md5_locl.h in Headers */, - 3953B7589F73A848B0C6A8C0BBE8EE95 /* openssl_opensslconf.h in Headers */, - 93A08BA6808129C1BDE7A3E06F6AD14E /* PBEncodeItem.hpp in Headers */, - 2712B1F4F2358B9B6EA596621350901D /* PBUtility.h in Headers */, - BC1EAA3E5AE771CFB2E8C2F44E3ABF8A /* ScopedLock.hpp in Headers */, - E3081231821B59ADDD2818523005B20C /* ThreadLock.h in Headers */, - ); - runOnlyForDeploymentPostprocessing = 0; - }; 2A9387DF142BD85B80AE2179E26DFD0B /* Headers */ = { isa = PBXHeadersBuildPhase; buildActionMask = 2147483647; @@ -23861,29 +23394,294 @@ ); runOnlyForDeploymentPostprocessing = 0; }; - 2AB57443CC4E99A143415ECD93076ACD /* Headers */ = { + 2B6F636DB323134E19FE25040E961243 /* Headers */ = { isa = PBXHeadersBuildPhase; buildActionMask = 2147483647; files = ( - 144D114A7DC1DE69000B32118B0A96E6 /* BitUtils.h in Headers */, - 87DF170F86D7B09B7E208D3D667CCE20 /* CompactValue.h in Headers */, - 7527BE9A3C0C5EE41BF46B779B459185 /* event.h in Headers */, - CA240718EEF2AE9F8B429FCD8CB52C0B /* experiments-inl.h in Headers */, - F07D0AE11822588E3F719C7B61A8B80C /* experiments.h in Headers */, - 6A1D8AACE5AC26F3AC7B09CF608BD6D7 /* log.h in Headers */, - 406B29AA1C2DFC085E6C133DAABB7F94 /* Utils.h in Headers */, - CCFA88517B1E1E998517D844FB53B076 /* YGConfig.h in Headers */, - C877547EF57278560C6623670718DC5E /* YGEnums.h in Headers */, - D15946E73D70CB1841EB5B5F5BA8572C /* YGFloatOptional.h in Headers */, - AE8EF360BDF060DE71F36DA2FF79D905 /* YGLayout.h in Headers */, - 87CE2D5341C70A15F3D5CDF03FEB5B8D /* YGMacros.h in Headers */, - 7981C7D4547EC52A33E929A57747F9E0 /* YGNode.h in Headers */, - 184B7378A165D30CF4D897FC088B6A3B /* YGNodePrint.h in Headers */, - 350046EFA57783C5A668ADFB917575FF /* YGStyle.h in Headers */, - 451BFDFAFAE8D8891BD2C57B7F2A03CB /* YGValue.h in Headers */, - 576FAE68D62B75975E61E4306DA51C22 /* Yoga-internal.h in Headers */, - A179F06BD85B96B08B79E6936B455152 /* Yoga-umbrella.h in Headers */, - CC9EE1EA9BEAE99D7BC6F4D5AC0F445D /* Yoga.h in Headers */, + F6F3936AF34AD28E32F45798A890D951 /* AsyncPauseState.h in Headers */, + 8077F86A30980D35AB6E0EB0B5368A70 /* AutoAttachUtils.h in Headers */, + 02502269A52710C6E85B16FD22539419 /* CallbackOStream.h in Headers */, + 5B452BE713C209AEC71863EDDFFAB08A /* Connection.h in Headers */, + 26F7B4FCCECFB7978C970A3AD1A70215 /* ConnectionDemux.h in Headers */, + 3696E123146DCF7F6B68107015DB3E5A /* CoreModulesPlugins.h in Headers */, + 439F03ACA468CD96892AAA20DF976EFF /* DispatchMessageQueueThread.h in Headers */, + 9F365AA0CADAC01E8A3CCF306D6C340B /* Exceptions.h in Headers */, + 680FB41CD8D535F3CBCDE5AA80999018 /* HermesExecutorFactory.h in Headers */, + CC84BA1581CF5739F9EC5251A01269B5 /* Inspector.h in Headers */, + 82024B389A2C322F715D08FB69C7C499 /* InspectorState.h in Headers */, + 1760092F334E32B88EE00A3B80D8BBF2 /* JSCExecutorFactory.h in Headers */, + 7C3896693E8ADE9CC0B15D50E881ABCF /* JSITracing.h in Headers */, + CAE7BB9C57EE75B260D85AA222FD2AF6 /* MessageConverters.h in Headers */, + A4055FEC073087F5C67C1185471430C9 /* MessageInterfaces.h in Headers */, + 088D87F19B884CD533E0B8959C874570 /* MessageTypes.h in Headers */, + 152F3BA25B8B0F950634ABEA209D9520 /* MessageTypesInlines.h in Headers */, + CEE835EF9D34D1582D94260E20F44C0A /* NSDataBigString.h in Headers */, + 0322BF9808212788A46E97AF9ABBEC45 /* NSTextStorage+FontScaling.h in Headers */, + A767ABFBD88B1F457CB4E7573A97DA3E /* RCTAccessibilityManager.h in Headers */, + 88540562668A34017D268C9F8365E64F /* RCTActionSheetManager.h in Headers */, + FC5A46BA8D9591382FE9C9CB0832E213 /* RCTActivityIndicatorView.h in Headers */, + F1626728C68A20B2A8846CD11974AE7C /* RCTActivityIndicatorViewManager.h in Headers */, + 71F0639D4A0105F68A9122A19C53D26E /* RCTAdditionAnimatedNode.h in Headers */, + 7C2033D8B4CD9DCE6C0CB946DA3EE122 /* RCTAlertController.h in Headers */, + D383B869F28B6DEBED364B45593D3B3A /* RCTAlertManager.h in Headers */, + CB933A60439CDD0818BB5F8ED86B6130 /* RCTAnimatedImage.h in Headers */, + 415651B0B04A9675D65D0F6B459C40CF /* RCTAnimatedNode.h in Headers */, + 50475DF9346489E44E71F0EBD04E82FB /* RCTAnimationDriver.h in Headers */, + 7CBEF7548E23C96029868F3B8FE6A5DD /* RCTAnimationPlugins.h in Headers */, + 75B5201E7E740AFF476FD9F71DC7FA0D /* RCTAnimationType.h in Headers */, + A60DDC56ABD2EEFAA053C914405711B5 /* RCTAnimationUtils.h in Headers */, + 9B6008DA8A3FBC48C26C1773B0435DDD /* RCTAppearance.h in Headers */, + 0AA0FBEC139EC1BCCF7A93CDF20B0CF1 /* RCTAppState.h in Headers */, + 1E54675A031D03B9D05AB422036A06F2 /* RCTAssert.h in Headers */, + 549B42BF95B8AFB183322BF34936A76B /* RCTAsyncLocalStorage.h in Headers */, + C2D20DC8BA58BF43FC7911A0147CA2CC /* RCTAutoInsetsProtocol.h in Headers */, + 025EB6EF4D6645131D8EFC7F41E1D0A2 /* RCTBackedTextInputDelegate.h in Headers */, + A108DB2A5D4295266E068538D970CFFE /* RCTBackedTextInputDelegateAdapter.h in Headers */, + 193D6F96A92CA2DFA562A8D98211AF44 /* RCTBackedTextInputViewProtocol.h in Headers */, + 07E0C1C05B9A47CC0F9B05CE86AA69C7 /* RCTBaseTextInputShadowView.h in Headers */, + D385945F1456195B0F8F1CC10A561652 /* RCTBaseTextInputView.h in Headers */, + 4EB3D002989971C16227CCBDF93F59FF /* RCTBaseTextInputViewManager.h in Headers */, + 40AE7D87F298E888058D4684C69793D5 /* RCTBaseTextShadowView.h in Headers */, + 30C79BF542456D3F223154B033FFA1D0 /* RCTBaseTextViewManager.h in Headers */, + 403FC94BD8EB91DDC0D1B65DF84672F4 /* RCTBlobManager.h in Headers */, + FA733BA648EA0D3E1324AECBC9CB753F /* RCTBorderDrawing.h in Headers */, + 14145C265AEB6E2AF8B6BE5468C80C3C /* RCTBorderStyle.h in Headers */, + AE9D760190B73E4F217A0CB479C16797 /* RCTBridge+Private.h in Headers */, + 1ECA45B29146CD433A42C9536BEC65DF /* RCTBridge.h in Headers */, + 5C3C57C52C268830CF3359633FB07833 /* RCTBridgeDelegate.h in Headers */, + F9C00A615E5BAB71BB91C5B3716985D0 /* RCTBridgeMethod.h in Headers */, + 1673051120737E8AFD929B68490C0FBE /* RCTBridgeModule.h in Headers */, + CBD96A6191CA1CF0C7DDABA143EE17B9 /* RCTBundleURLProvider.h in Headers */, + 33F6B55A10272F5DD5CED07C8A251A8D /* RCTClipboard.h in Headers */, + 950B3D54C793A946670DDFB7ADA7ABC5 /* RCTComponent.h in Headers */, + ECA08DDE139712712569A414F1353649 /* RCTComponentData.h in Headers */, + 9FCF21C2055100E63969DF88F94F88A3 /* RCTComponentEvent.h in Headers */, + 339134F01A78B4102373B2A44F54320A /* RCTConstants.h in Headers */, + DFE164B29E57E2A8B57422A147F7489B /* RCTConvert+CoreLocation.h in Headers */, + EDFFA890636FB02FCE07FB9C93344477 /* RCTConvert+Text.h in Headers */, + 0775ADE6EC95C3A12A492BC7E9100215 /* RCTConvert+Transform.h in Headers */, + 15A9EAB9C5536CA0371703D13A7CCB3E /* RCTConvert.h in Headers */, + C33D28D7B542343498B0BCC659B2483D /* RCTCxxBridgeDelegate.h in Headers */, + EEDC57F07A1C084AA58C567FBAA9334B /* RCTCxxConvert.h in Headers */, + A6878683BF205F6DC3EC0B15C285D80E /* RCTCxxMethod.h in Headers */, + C8C4A731CE19338ADF7AE1C15A2C625E /* RCTCxxModule.h in Headers */, + 9EA25801205B7973BEAB504BBAFC724A /* RCTCxxUtils.h in Headers */, + 933689541869A7CB3273B3B693308AFA /* RCTDataRequestHandler.h in Headers */, + 9797462AC360B0C39E250AEE6F3E1073 /* RCTDatePicker.h in Headers */, + 55E0C74D5D6E3FDCEF7445051F13520A /* RCTDatePickerManager.h in Headers */, + C97863F082E12376CB4CCB8B68B6071C /* RCTDecayAnimation.h in Headers */, + 251030875A30A4A1E08F106E0E3E9D7C /* RCTDefines.h in Headers */, + 6D9365DABB216FECF93E1777FB8FAB0D /* RCTDeviceInfo.h in Headers */, + 219B175D27CB40CFB5E3CFC43B990018 /* RCTDevLoadingView.h in Headers */, + F4BBEF1E2A39259D144775F374201C33 /* RCTDevLoadingViewProtocol.h in Headers */, + B331C919D0B6E55A82A5B2F81F246F94 /* RCTDevLoadingViewSetEnabled.h in Headers */, + 6ED7B5D9E453C11F2473015AB6E1D77F /* RCTDevMenu.h in Headers */, + 9D618168298D5CCB36E4875822A364C3 /* RCTDevSettings.h in Headers */, + 5E9B6BAF9D1E687D2ADE3AE2E6B3D1DF /* RCTDevSplitBundleLoader.h in Headers */, + A58C1031172AA1EB17A0C2D85B237C75 /* RCTDiffClampAnimatedNode.h in Headers */, + 34873A667E74A5AAEB8ECB6C020EDB74 /* RCTDisplayLink.h in Headers */, + BFD6A4D0664A4297E0BCD9CEFB0DA21B /* RCTDisplayWeakRefreshable.h in Headers */, + 4E26FE729E196D239F98D431E2B07DAD /* RCTDivisionAnimatedNode.h in Headers */, + 24655BCF08BB7328E02CC2F9E60C8151 /* RCTErrorCustomizer.h in Headers */, + ED3F2E63C6969D937A67A9EA503C3915 /* RCTErrorInfo.h in Headers */, + D1A4E6F692C0EF4B7BFB40B303C7CC11 /* RCTEventAnimation.h in Headers */, + 9EDE8FE0FF67ACEE8353DCE3F7929868 /* RCTEventDispatcher.h in Headers */, + E12233CEBA5103F2EFDF2485E0AA3E41 /* RCTEventDispatcherProtocol.h in Headers */, + 43D1E786B519AE146A705B95810E9ACF /* RCTEventEmitter.h in Headers */, + B819D3495730044EB09D13CF1B014A9B /* RCTExceptionsManager.h in Headers */, + 599196D6A7DB719C9EBAEF11A8F64354 /* RCTFileReaderModule.h in Headers */, + A9E849D5E808D5ECF5F86DDD956F5320 /* RCTFileRequestHandler.h in Headers */, + C496BFB1980090F648B57FFDC9192B55 /* RCTFollyConvert.h in Headers */, + FC998DA0A93D85C7346274D7D2FBEDDE /* RCTFont.h in Headers */, + E48DD207DE16C0A3C47EF4F971D361FC /* RCTFPSGraph.h in Headers */, + 797DFB63A71BD6ADDB36319E4AFBDB77 /* RCTFrameAnimation.h in Headers */, + DF3C546C1CD5C42258EFEA35EC1C77AD /* RCTFrameUpdate.h in Headers */, + 42FFA7672D87777878365C321FC903E7 /* RCTGIFImageDecoder.h in Headers */, + F6BF1E866C1B25101F0C7ADE2EA55E6E /* RCTHTTPRequestHandler.h in Headers */, + 75DA3ADDF1E831A90EA2F5140DDD9277 /* RCTI18nManager.h in Headers */, + 0AC4EFC9AFC76105BC389E0E3A528CF5 /* RCTI18nUtil.h in Headers */, + CB39180E96515256EAC78CC31604C405 /* RCTImageBlurUtils.h in Headers */, + BEB4F843BE9E5CEDA49A441E725BC52A /* RCTImageCache.h in Headers */, + 176C9E315CBF4E6E4042641DC6C8504E /* RCTImageDataDecoder.h in Headers */, + 8B2CFEF161D015AC7C40EBF90D5B59DB /* RCTImageEditingManager.h in Headers */, + 3A28B07C67C16DA68C8968859CAA8F50 /* RCTImageLoader.h in Headers */, + 6135C924CD9DC17900577629B45EB90E /* RCTImageLoaderLoggable.h in Headers */, + 9C256D7A9E4130A838C3085C4288F1EF /* RCTImageLoaderProtocol.h in Headers */, + B6FA100D8EC00564E2490BE86090952F /* RCTImageLoaderWithAttributionProtocol.h in Headers */, + A32C9999378F564FC6F3784798F8524A /* RCTImagePlugins.h in Headers */, + 8B1C10F7F1E8A707C0F2E3242AC10E28 /* RCTImageShadowView.h in Headers */, + 7E9C1D6402CD4ACCF7C9A2718F36B05D /* RCTImageSource.h in Headers */, + 11C63587CB9CFC3F36D750D8F819AC2A /* RCTImageStoreManager.h in Headers */, + 1FB31EDD2DC4A772B300629247602584 /* RCTImageURLLoader.h in Headers */, + 73DA3F2DBADECDA07CAA0A8A7BB6913F /* RCTImageURLLoaderWithAttribution.h in Headers */, + 525B9111B21ADC4CD6604A928ABC3CC7 /* RCTImageUtils.h in Headers */, + B92A528D31F8379369FBC2F2D245E08D /* RCTImageView.h in Headers */, + 700B3DF4465216C693457CA16D58407F /* RCTImageViewManager.h in Headers */, + 1EBFC9B5C0988A385B9A6FBEED59F959 /* RCTInputAccessoryShadowView.h in Headers */, + 35D16B12B6346A9165DCA39944A55F34 /* RCTInputAccessoryView.h in Headers */, + 0C38B737B9D8B1E3E836F17C70929866 /* RCTInputAccessoryViewContent.h in Headers */, + ACF9FE09FA7FE2B76153D62DA06EEFDE /* RCTInputAccessoryViewManager.h in Headers */, + E057B0DE358972F1A47FF7D8AABCE446 /* RCTInspector.h in Headers */, + 04DEE63D94A45644BC353E7E5910CE70 /* RCTInspectorDevServerHelper.h in Headers */, + DF9E79B0D996BE7382D2592FBE151A66 /* RCTInspectorPackagerConnection.h in Headers */, + 9E546FCE804AC8660B9C6C916101037C /* RCTInterpolationAnimatedNode.h in Headers */, + F10EE273159B6011EAF25EBE8B935762 /* RCTInvalidating.h in Headers */, + 76CEC20B1A5CE7D3C056F886E4ECCF87 /* RCTJavaScriptExecutor.h in Headers */, + 6B0BED0D6F09E6BE7FC3723DED144F00 /* RCTJavaScriptLoader.h in Headers */, + BAC1922CF2456E36961F96993FD543C8 /* RCTJSIExecutorRuntimeInstaller.h in Headers */, + 9DA92A5BB90355254F8862229405CE6B /* RCTJSInvokerModule.h in Headers */, + AE616D9491DB123029A08A8ED8808A2D /* RCTJSScriptLoaderModule.h in Headers */, + 375CD1A4B3539EF0BE5CAB7C1A9CD5F7 /* RCTJSStackFrame.h in Headers */, + 21AE3C4E79CC99A8F261E7E4B4E8D8DD /* RCTKeyboardObserver.h in Headers */, + A99ADB787413CC434863187B8AD26F60 /* RCTKeyCommands.h in Headers */, + 182CE1F30A29C405CE09DFDB8082F13D /* RCTLayout.h in Headers */, + 3CACA406226FCF075C83F2DAD7EF5E49 /* RCTLayoutAnimation.h in Headers */, + C9C7CD401BD669E8AB121F9FB140770C /* RCTLayoutAnimationGroup.h in Headers */, + 82568F6164D3F18C30767964C15134B5 /* RCTLinkingManager.h in Headers */, + 9B7F3B7902102C56AE72DAA0C2BD02E5 /* RCTLinkingPlugins.h in Headers */, + CFF4D15E6CB356511BE1CE966A62E925 /* RCTLocalAssetImageLoader.h in Headers */, + 7C6264142A849B20A1061006FF0EEEAF /* RCTLog.h in Headers */, + A66177147207063D1B30C9F49BC33250 /* RCTLogBox.h in Headers */, + 823FEACED54FBDE40614B8C7FC3DD960 /* RCTLogBoxView.h in Headers */, + 953178AE17BF3228DE589A9FC3044E13 /* RCTMacros.h in Headers */, + FA67F5CB355C797E92D42CEF8ECE398B /* RCTManagedPointer.h in Headers */, + 5EDB6AAB9792496FBFB53795D022195B /* RCTMaskedView.h in Headers */, + B438D2532C739A4EC03FAF8A27F85B7C /* RCTMaskedViewManager.h in Headers */, + E57CB055AE15E2644BF0C64BDA799AF4 /* RCTMessageThread.h in Headers */, + A99CA429CE5B6788D3713EF34F8F325A /* RCTModalHostView.h in Headers */, + BDE7E894EDB81C067604D8C2B3F4E86A /* RCTModalHostViewController.h in Headers */, + 40BAF149459192B7C987EE9CF032F769 /* RCTModalHostViewManager.h in Headers */, + DD90262C3472476C82B036E1181D964A /* RCTModalManager.h in Headers */, + E121E33746093AA96B0019743548483E /* RCTModuleData.h in Headers */, + 3FF192F71AD2B4D20C21CA54FC2AA0AE /* RCTModuleMethod.h in Headers */, + 5CDFAB60C278BB6E2085422E62C0CED5 /* RCTModuloAnimatedNode.h in Headers */, + 92EC013C005C25EB51BAE42DB679B699 /* RCTMultilineTextInputView.h in Headers */, + 675AB1B39920AF74ED63A422F93D08CF /* RCTMultilineTextInputViewManager.h in Headers */, + 9F1C652BAFAD4C77CA7E37812D6C4426 /* RCTMultipartDataTask.h in Headers */, + 5ABD2044FA3E482514E674C8C275F72B /* RCTMultipartStreamReader.h in Headers */, + EC5E2DC10F1C1609E74CCE3267E62E87 /* RCTMultiplicationAnimatedNode.h in Headers */, + 58FAB1B01708ECAA52553F6C2EC66F7A /* RCTNativeAnimatedModule.h in Headers */, + F911521A927F6B5ADB671F6FD619BE24 /* RCTNativeAnimatedNodesManager.h in Headers */, + 8E66C2FDFBCEF2AD927F43C347EC2B90 /* RCTNativeAnimatedTurboModule.h in Headers */, + 95448FB1CEE152E8CE853E14B0EFEFD6 /* RCTNativeModule.h in Headers */, + CEB5C74B4D604801B26CAEDC165A631F /* RCTNetworking.h in Headers */, + 54D1EB16FBEC949796BF3527C6A9E105 /* RCTNetworkPlugins.h in Headers */, + 80A679210F0CBE2EFFD34C1EAA3E4429 /* RCTNetworkTask.h in Headers */, + 89F7703964FFD980238DEF88FE77F9B3 /* RCTNullability.h in Headers */, + CC31EE8BC1B8F4702386837C8A2B54CC /* RCTObjcExecutor.h in Headers */, + 1C82FB73B8C6742C569057BC1574BBB5 /* RCTPackagerClient.h in Headers */, + 95267013F70178B9077A5028EE2FFF0A /* RCTPackagerConnection.h in Headers */, + C33A08FC8744057F44B9D316716B4A52 /* RCTParserUtils.h in Headers */, + B1E3AA7B0151B3E960F9C4D1B20C2684 /* RCTPerformanceLogger.h in Headers */, + 5463D8C76CC2954FADD1E0C197062027 /* RCTPicker.h in Headers */, + 6B901EC68C973A5E81BF29D8C65786C1 /* RCTPickerManager.h in Headers */, + 22DD03599EE48DF50CC18B883D194596 /* RCTPlatform.h in Headers */, + 8C5421809D2F81CDDE5870BDD7AD7781 /* RCTPointerEvents.h in Headers */, + E4A3C27D28C0A3B1344B63451DAB2C43 /* RCTProfile.h in Headers */, + CB241F8155C6D66001EA1C1652315A79 /* RCTProgressViewManager.h in Headers */, + 3FAAD91ED8EF39BAC094393CFCBC22CA /* RCTPropsAnimatedNode.h in Headers */, + 4896387F3752F53D830BF3573BCC2DE0 /* RCTRawTextShadowView.h in Headers */, + E7ED23584106A18B23C3A93DC3EAF64C /* RCTRawTextViewManager.h in Headers */, + A99D49FEEFA1CE3F7D20B1CC1A0FA794 /* RCTReconnectingWebSocket.h in Headers */, + 0964E8FE54335EBFEF304D2B98183D47 /* RCTRedBox.h in Headers */, + 796952C1E8ACD9FB8C4D39A609C53C96 /* RCTRedBoxExtraDataViewController.h in Headers */, + 7361CBE2C1184DABB2C820A53B5E1408 /* RCTRedBoxSetEnabled.h in Headers */, + 46156EE87FA159A5A85A658077D18283 /* RCTRefreshableProtocol.h in Headers */, + C31AB3DC995843A695AB4091224B3CA4 /* RCTRefreshControl.h in Headers */, + DEC7176B8E1A9F47B87FA02C6CC13D96 /* RCTRefreshControlManager.h in Headers */, + 71D7BE63E04A7F4B03963A33431139F5 /* RCTReloadCommand.h in Headers */, + 1B66A816A27D551A3723FD8BE43F71F0 /* RCTResizeMode.h in Headers */, + 088BD831000E11C7AD301FC06FDFEDDC /* RCTRootContentView.h in Headers */, + 6759E111017B26225D33C8243A4B4657 /* RCTRootShadowView.h in Headers */, + DC4E63A817B5C8D1ED52CFCB75BD722D /* RCTRootView.h in Headers */, + 44CAB347B71247D918F8960615D4F9FD /* RCTRootViewDelegate.h in Headers */, + 078DB6CDC05034BE78880C7819F9AD52 /* RCTRootViewInternal.h in Headers */, + 8AC9426F08C790F7CB7AE466216DB77B /* RCTSafeAreaShadowView.h in Headers */, + 9F59A1F8F532815E007DEF8DE25522EE /* RCTSafeAreaView.h in Headers */, + BD7B95C25D22D48DECE19CBEBCE20ABB /* RCTSafeAreaViewLocalData.h in Headers */, + B21EF4A086E0DAE621FB8CFDB9BD27A8 /* RCTSafeAreaViewManager.h in Headers */, + DE13BD5DB2637653C3998C7678D21649 /* RCTScrollableProtocol.h in Headers */, + A3EFDB12489B776303E4562DB00BB650 /* RCTScrollContentShadowView.h in Headers */, + 3AEFA8582AF411706F549A015BEC5132 /* RCTScrollContentView.h in Headers */, + 4022F4B904D59593DD9F42C1AA013579 /* RCTScrollContentViewManager.h in Headers */, + 3EE76AF26121FA86E23A87CD206BC2BC /* RCTScrollEvent.h in Headers */, + 9B79B8A36B72B76E55F51FD6597C5F90 /* RCTScrollView.h in Headers */, + 1841491FD5A121F658BC20805C158E98 /* RCTScrollViewManager.h in Headers */, + 74CC6757E05507477C7F378620DEE66C /* RCTSegmentedControl.h in Headers */, + 420BDA242854BB970E037A16885E81EC /* RCTSegmentedControlManager.h in Headers */, + C015FB34DEE21FD651E8EC73BDD30A1C /* RCTSettingsManager.h in Headers */, + 757943E00401D1C2EE2BB062EF2B5E4B /* RCTSettingsPlugins.h in Headers */, + 9AF785D5530926398D5DC600A32C7CFE /* RCTShadowView+Internal.h in Headers */, + 4BFA6EC42522A4EC937649F2B97C0F66 /* RCTShadowView+Layout.h in Headers */, + 1922868E7235F69D994C84C617ABC8C9 /* RCTShadowView.h in Headers */, + 18A790934BBA7FFD42B9CE9386DB1683 /* RCTSinglelineTextInputView.h in Headers */, + 084EA95AF4F0597F643894A35C7E23D9 /* RCTSinglelineTextInputViewManager.h in Headers */, + FE57BD907DA36ADDC63B2282816DC9D9 /* RCTSlider.h in Headers */, + B6874DBCD54097DDCC52F3586A479753 /* RCTSliderManager.h in Headers */, + 21E9793389C66442F2829B66C037F07A /* RCTSourceCode.h in Headers */, + 54AFE0560C274AF1E94A3793FA249320 /* RCTSpringAnimation.h in Headers */, + 88E71FCE46498975F3F68C1A5EF7615B /* RCTSRWebSocket.h in Headers */, + FB5540EB2C44845A649A39FDE54B70F9 /* RCTStatusBarManager.h in Headers */, + 6F451D5E3ED3C209201E05D2C0B08FF6 /* RCTStyleAnimatedNode.h in Headers */, + 3E3438B9F1FF38931FB93DD8B5F37C4B /* RCTSubtractionAnimatedNode.h in Headers */, + 904CCF1DA02ACAABCCD135A4E6E021CC /* RCTSurface.h in Headers */, + 526899373AF76F07633BAA1791E8E671 /* RCTSurfaceDelegate.h in Headers */, + 75E139140D671FBDE88B9D566452FA09 /* RCTSurfaceHostingProxyRootView.h in Headers */, + 6156E1360D18DFD6DDBFFA121C779495 /* RCTSurfaceHostingView.h in Headers */, + CD3D55A02CC2952193F70F94C0E381EF /* RCTSurfacePresenterStub.h in Headers */, + 53E4B72C74DA9C8F4736C4CE3ABCC967 /* RCTSurfaceProtocol.h in Headers */, + AF0D1070CC1B10CAC80377C69271E42E /* RCTSurfaceRootShadowView.h in Headers */, + 496C8AB8DC79AE9A38715A4C73FA2269 /* RCTSurfaceRootShadowViewDelegate.h in Headers */, + 294E6CB9AA816BCD09ABD0D7ED0B025C /* RCTSurfaceRootView.h in Headers */, + 30C1BA843B39BA4D0FA3E536CA174CA7 /* RCTSurfaceSizeMeasureMode.h in Headers */, + 116BBEDDFF59397F37DAD75887421EA9 /* RCTSurfaceStage.h in Headers */, + C426D450DCFB313F9923C95D5A213908 /* RCTSurfaceView+Internal.h in Headers */, + 1A5AD1547FDFC9213BE08C485652B16A /* RCTSurfaceView.h in Headers */, + D6645A7DEA7F7FF38766A56D5720B614 /* RCTSwitch.h in Headers */, + A1A9DA149714A260E72D14FB3E8D7F10 /* RCTSwitchManager.h in Headers */, + 0D4E85109926BBCF06A45C0AB5B53B76 /* RCTTextAttributes.h in Headers */, + F5ECECD6BEC3177B0CB70DE6E6CF82C9 /* RCTTextDecorationLineType.h in Headers */, + B3F5931134C706B98CE1CB98B0B7B9CA /* RCTTextSelection.h in Headers */, + 6BD69F2C5636BA40ABDD357D8B5BBB48 /* RCTTextShadowView.h in Headers */, + 804F4CC4701DC02AFCC00472AFA74893 /* RCTTextTransform.h in Headers */, + ADB9DC657C2699F783F18133F0603B85 /* RCTTextView.h in Headers */, + 5B6E361997A0E8F49B992164FDB84663 /* RCTTextViewManager.h in Headers */, + 69E112A6EDBA392CFED9EA7BA815DB8B /* RCTTiming.h in Headers */, + 6CF7E39008AA98D5027ABFB68C5478FD /* RCTTouchEvent.h in Headers */, + 117156EED437F2EF7ED3A222F7DD7032 /* RCTTouchHandler.h in Headers */, + 3219977D78B4A62023E2368ABE11AB96 /* RCTTrackingAnimatedNode.h in Headers */, + 4333132F10BE8EBB62FEFA56F87BEFC6 /* RCTTransformAnimatedNode.h in Headers */, + 3A4B08BB855E0FD8D2B23FD5D6F10C72 /* RCTUIImageViewAnimated.h in Headers */, + 77C011CE446D25167C6EED2F89204A67 /* RCTUIManager.h in Headers */, + 33CF52CC8EDB0DAF0DBE6493D5D57B30 /* RCTUIManagerObserverCoordinator.h in Headers */, + 440B61228DA306BAA18E131C6673685E /* RCTUIManagerUtils.h in Headers */, + 4ED59E0FD21A714D773388670E864E51 /* RCTUITextField.h in Headers */, + AC66C2F984B1E1AA8DF0EFDCCAB2C828 /* RCTUITextView.h in Headers */, + CF660C8E50A63C8FEF2DFB5735DAF1F7 /* RCTUIUtils.h in Headers */, + 746B6BAA3591C881A47E7B174730FF01 /* RCTURLRequestDelegate.h in Headers */, + 4782355C1E066416D8459353C74BF569 /* RCTURLRequestHandler.h in Headers */, + CFD997F262E8D60E5865F8FEF9B8AF75 /* RCTUtils.h in Headers */, + 55F5E837B561C4E712A38B2332286B35 /* RCTUtilsUIOverride.h in Headers */, + 5EE368AE473461E98F0FA243D031CA97 /* RCTValueAnimatedNode.h in Headers */, + 3C2E265D591A097C72CE82A601A39FBD /* RCTVersion.h in Headers */, + 3BCB08EA696CE116B81947B2118DB815 /* RCTVibration.h in Headers */, + 966663071C89279B8A67E3420B3EA188 /* RCTVibrationPlugins.h in Headers */, + E5307DA848144A2C544E9F62FCBA5A95 /* RCTView.h in Headers */, + F2CB79B195E8317D399137F33860DD7B /* RCTViewManager.h in Headers */, + 41962BCDBC130A8389DB23D93A3B626D /* RCTVirtualTextShadowView.h in Headers */, + 7FCAC6CFC7422F25DA1355270A9EB7D0 /* RCTVirtualTextViewManager.h in Headers */, + 2E1A2DB7D876E6C4F0B94F4CA92F05B7 /* RCTWeakProxy.h in Headers */, + C4E421B0AC7978B08C7C3C841EF85C22 /* RCTWebSocketExecutor.h in Headers */, + 07C08BCAA677A52F8832E05AB38BD353 /* RCTWebSocketModule.h in Headers */, + D1C7C636BFE05A44D04D0BC452DB1F13 /* RCTWrapperViewController.h in Headers */, + 3D5786F3ECF7071F7EE2A6C5F4970478 /* React-Core-umbrella.h in Headers */, + 23DA4722831C03B4FB7DEFC9E64A8DCE /* Registration.h in Headers */, + 0F65A1A60A246043D6BC97F0B955C4F0 /* RemoteObjectsTable.h in Headers */, + BF8A25DB40A76447252CE7E5815FF0BB /* RuntimeAdapter.h in Headers */, + A689CBBA2A2DE316909286759DAAB5E5 /* SerialExecutor.h in Headers */, + A685E18E4876AC8F59C1D643ED3205F9 /* Thread.h in Headers */, + B867AA513B98918F442EA44A21F95EDE /* UIView+Private.h in Headers */, + 9B6D029363E42D7BB231DFE8876F1B4B /* UIView+React.h in Headers */, ); runOnlyForDeploymentPostprocessing = 0; }; @@ -23898,15 +23696,6 @@ ); runOnlyForDeploymentPostprocessing = 0; }; - 2F123C27578F21D69D6E5335E49EE008 /* Headers */ = { - isa = PBXHeadersBuildPhase; - buildActionMask = 2147483647; - files = ( - 6F01B049AB62CE236C245639313F3490 /* BridgeNativeModulePerfLogger.h in Headers */, - D5F415B8677FEAC11CCE89E120FC6E7D /* NativeModulePerfLogger.h in Headers */, - ); - runOnlyForDeploymentPostprocessing = 0; - }; 2F48BCA013379FCFCD4480EF20167512 /* Headers */ = { isa = PBXHeadersBuildPhase; buildActionMask = 2147483647; @@ -23918,75 +23707,79 @@ ); runOnlyForDeploymentPostprocessing = 0; }; - 3059B2C06C0C8DA12016159ABC171B1C /* Headers */ = { + 356634A0E78E86CFFCFDB8E7FE3618E6 /* Headers */ = { isa = PBXHeadersBuildPhase; buildActionMask = 2147483647; files = ( - 0634D6318459F5C1F29408B3FB71DBED /* CxxModule.h in Headers */, - 5A885EA7F6852FC3D4F9A5C4A7A34098 /* CxxNativeModule.h in Headers */, - B8366768FB76A4815B0A90A670780E97 /* ErrorUtils.h in Headers */, - 0C5297F5FF538496FC9F5A4061017320 /* Instance.h in Headers */, - 1BADA32F3E82507B22F7A966F8A4278D /* JsArgumentHelpers-inl.h in Headers */, - 19CE1C2C80280F075781649BA2D1586C /* JsArgumentHelpers.h in Headers */, - 098C6B57113697D5362AFB0B9E7C5834 /* JSBigString.h in Headers */, - 342D1318DCDB772504BB7EACE319F360 /* JSBundleType.h in Headers */, - E64521D3CF0885A1354CC21DFE9C9257 /* JSExecutor.h in Headers */, - 96E23068A9895BEC6FD614D9A55A7C50 /* JSIndexedRAMBundle.h in Headers */, - 35DCAD050BA0BCC1D31C85BC3F5DA2AA /* JSModulesUnbundle.h in Headers */, - DC2C1429201667273E0DDB3D64838FB0 /* MessageQueueThread.h in Headers */, - C15CDAD20752647B75E3142709C89414 /* MethodCall.h in Headers */, - 9648B0E231D355C9D5A583D06D200E8E /* ModuleRegistry.h in Headers */, - CF2226F7606A7188EA83A3592C4B1FAA /* NativeModule.h in Headers */, - AD6B9BBDD9ED6B8402E4100A5A87BA99 /* NativeToJsBridge.h in Headers */, - 2C722B52E7BF530547F3B5F053F2965E /* RAMBundleRegistry.h in Headers */, - 6886805185073E12B2F1C583458CF34D /* ReactMarker.h in Headers */, - A69BB090C0E7390A0A4467F374AC3750 /* ReactNativeVersion.h in Headers */, - E9D9BBF8E856ACD90E0A72F9595434A9 /* RecoverableError.h in Headers */, - EE5F72696C9020B21043E4DB6F811F5A /* SharedProxyCxxModule.h in Headers */, - DDFBC3EFC013D9246025E07C6DACD3E7 /* SystraceSection.h in Headers */, - ); - runOnlyForDeploymentPostprocessing = 0; - }; - 32CA56678550BDEBCB904E02464BB0BF /* Headers */ = { + F3AD960197449156A1D4F7DEAE697974 /* UMAppDelegateWrapper.h in Headers */, + 1F6B3FEEC35ED314C1F8259BCB9C7AB6 /* UMAppLifecycleListener.h in Headers */, + CA5D47EDB5496D698816AF970AEBD0A0 /* UMAppLifecycleService.h in Headers */, + 222B51991EB2AF1CFBE0C938DAA48087 /* UMDefines.h in Headers */, + A342CFE9B91D2EFBA636A4A3146EBEC8 /* UMErrorCodes.h in Headers */, + 61999051980963FF1A4B670DDFAD7312 /* UMEventEmitter.h in Headers */, + 9548AE22504392C8D2F9321985962FD5 /* UMEventEmitterService.h in Headers */, + 4E8E6C8CB03E1462A4D94E9AFAC56113 /* UMExportedModule.h in Headers */, + 0AAC2A8976EDCF7BB9813A41548A792D /* UMInternalModule.h in Headers */, + 748E260A3E737D215CD8CF8E3EE1093E /* UMJavaScriptContextProvider.h in Headers */, + 258098B821AF00403A235A191E2EC2FC /* UMKernelService.h in Headers */, + 571EE874F538CB2D47C1D133286C2E44 /* UMLogHandler.h in Headers */, + 3081F919C2D2A6A08A2EA1A054FD7201 /* UMLogManager.h in Headers */, + E2F16D11524439C92B7DE854F7078C6F /* UMModuleRegistry.h in Headers */, + 0E671896643FED91DF8202D4EF4D0015 /* UMModuleRegistryConsumer.h in Headers */, + 4BE093A591B11BD93D6DFD54D631F8AF /* UMModuleRegistryDelegate.h in Headers */, + E2EAF626B18D95327A2FC4D4446C3A9C /* UMModuleRegistryProvider.h in Headers */, + E17B1050B9BE62998D15A5B7C3FB9218 /* UMSingletonModule.h in Headers */, + B43DA9C9C4B543064B7CC66B5B971273 /* UMUIManager.h in Headers */, + 0DB60B8F544E04426307890BFCE2B019 /* UMUtilities.h in Headers */, + 73363905D036C07F4186B1C85EA29086 /* UMUtilitiesInterface.h in Headers */, + 69D4D1D697488B791D943DD5E1A873A2 /* UMViewManager.h in Headers */, + ); + runOnlyForDeploymentPostprocessing = 0; + }; + 378A7F495AB6702AA19399A7993D189A /* Headers */ = { isa = PBXHeadersBuildPhase; buildActionMask = 2147483647; files = ( + A2F85B816E1FFDF4C115197DCA13669E /* bignum-dtoa.h in Headers */, + 3D7D837676C65BA9EB415136ADEF1C0D /* bignum.h in Headers */, + 956A067DE1783334DB4B56DC0F5B5F75 /* cached-powers.h in Headers */, + 4550EB9B60716D779EF90FB3774FA702 /* diy-fp.h in Headers */, + 451A5CA1F17D605756FDE5898F32A848 /* double-conversion.h in Headers */, + 8B3FCCC14D04E0965CD9EC368F3C3006 /* fast-dtoa.h in Headers */, + 55800A84BBE7962E4CAE1C989EA4A01D /* fixed-dtoa.h in Headers */, + B05881240B8AE8ED03CA68036D17A3C9 /* ieee.h in Headers */, + 78621D2A3690AE54C5928E76F46CDAB9 /* strtod.h in Headers */, + 0C3CE579EE191107A402B6213A80D92C /* utils.h in Headers */, ); runOnlyForDeploymentPostprocessing = 0; }; - 33D4CDB1F7C602C0EF2DE2B86E4E2B88 /* Headers */ = { + 3855A06A9BBB97A575AFEFCEACB3105E /* Headers */ = { isa = PBXHeadersBuildPhase; buildActionMask = 2147483647; files = ( - B9FB9E4F14C22337C2184B19BB95A8E1 /* decorator.h in Headers */, - EE72470E02CA36D0B1EF920FA84B4C8E /* instrumentation.h in Headers */, - 34A6F22C9D2DA470407AF6936B1D1610 /* JSCRuntime.h in Headers */, - C0ECD621AE5138605933B8C0EFD6D52B /* jsi-inl.h in Headers */, - C9DB3F6776E8ED6731FC38B3F8CB8B80 /* jsi.h in Headers */, - 30B8AC2B88FED6107EFCA0F48F1D2F50 /* JSIDynamic.h in Headers */, - 2DFD6067CC6E815EF4EEDC04EE964D93 /* jsilib.h in Headers */, - 570E09B1C702A22295002978F51E87D4 /* threadsafe.h in Headers */, + 5579CABE7E992375141B3DE4427C9B85 /* UIView+Yoga.h in Headers */, + 6BB948494A3D45F4D65E9185662F4BCA /* YGLayout+Private.h in Headers */, + F31589C8E8F7413A56ACB8831BBC5A70 /* YGLayout.h in Headers */, + 55D43776C925BAFDDB1923FD4F02A87A /* YogaKit-umbrella.h in Headers */, ); runOnlyForDeploymentPostprocessing = 0; }; - 3540484166DBCA3A6B65797A68A81CF1 /* Headers */ = { + 39F700DF697B799057FBE3FD092E92BE /* Headers */ = { isa = PBXHeadersBuildPhase; buildActionMask = 2147483647; files = ( - 4DE4C2FB99F649377787BE4C345D8257 /* Pods-defaults-RocketChatRN-umbrella.h in Headers */, + 6C86513F37D94CC1BFAB393B739C3170 /* Pods-NotificationService-umbrella.h in Headers */, ); runOnlyForDeploymentPostprocessing = 0; }; - 3CEA2DF12B20CE68007F12E6148E43D6 /* Headers */ = { + 3E53F806603001413F5414CCED687D9A /* Headers */ = { isa = PBXHeadersBuildPhase; buildActionMask = 2147483647; files = ( - 2F2CE2C3F8A7C0C790BD647255ECF5AD /* cct.nanopb.h in Headers */, - 402A7175D1DA76B1C36BE4E87FEC62F8 /* GDTCCTCompressionHelper.h in Headers */, - 056E754644E170E76B219204CA58C492 /* GDTCCTNanopbHelpers.h in Headers */, - D445613AD4881CC441E92192D9EF211E /* GDTCCTPrioritizer.h in Headers */, - 210F1D30C3DFB035E1A9692D1BED1846 /* GDTCCTUploader.h in Headers */, - 0472E6B2EC2DD1701437FE1EEE67EF7F /* GDTCOREvent+GDTCCTSupport.h in Headers */, + F7E0813A5C549149F30823927124452C /* RCTBlobCollector.h in Headers */, + 0BD8C050D61553F042D7DFDCB215FD96 /* RCTBlobManager.h in Headers */, + 0746AB68FBCB749E63D00CB7B39EDA52 /* RCTBlobPlugins.h in Headers */, + BF26F151A9E8EBEE05FB00A97AADD84B /* RCTFileReaderModule.h in Headers */, ); runOnlyForDeploymentPostprocessing = 0; }; @@ -24173,415 +23966,117 @@ ); runOnlyForDeploymentPostprocessing = 0; }; - 458601195806D041EC881F9499B3A210 /* Headers */ = { + 46550996C1E13D083AEDCE0665011E41 /* Headers */ = { isa = PBXHeadersBuildPhase; buildActionMask = 2147483647; files = ( - AFD8676AAFE8CE4B71DEB1F0383F8F3E /* FIRAnalyticsConfiguration.h in Headers */, - E310D21896D715F3DB403CAB922B0986 /* FIRApp.h in Headers */, - 9828B25D9B287B56BAFC3BFB98771B5D /* FIRAppAssociationRegistration.h in Headers */, - 4ECA8AB87CACA91A8453DEDB024490EE /* FIRAppInternal.h in Headers */, - 33734444F047897F92D31377FE37DBD8 /* FIRBundleUtil.h in Headers */, - 9C805678F5165F588DE03BD1325DD1DD /* FIRComponent.h in Headers */, - 9A3A1F20B890409A02089B1795146204 /* FIRComponentContainer.h in Headers */, - ACA90AD16226D5D51376C4FDC175AD7E /* FIRComponentContainerInternal.h in Headers */, - F4367E4512400BBFF59CB94299823ECC /* FIRComponentType.h in Headers */, - 38C19E1BDBC1EBF019C3D0A8CF1C7B5F /* FIRConfiguration.h in Headers */, - 4BC3232DE85368FA2F2F5CC41067A64F /* FIRConfigurationInternal.h in Headers */, - 707DD45C921F816DD808AC7FEBF32F7F /* FIRCoreDiagnosticsConnector.h in Headers */, - 876A6A5DA33B81786F967190C0671563 /* FIRCoreDiagnosticsData.h in Headers */, - A2E238E6B2EE0E3563AFFF989B1A6C07 /* FIRCoreDiagnosticsInterop.h in Headers */, - 0A2FD3B0870061C168D1DBB7FFF3685E /* FIRDependency.h in Headers */, - 6D4DA454B5C96B4A5E1C91327F02E316 /* FIRDiagnosticsData.h in Headers */, - 3A66F22642029C92543E830D308926C5 /* FirebaseCore.h in Headers */, - C7F308C78C338F122701BB6A918721FE /* FirebaseCoreInternal.h in Headers */, - C9747AC666B1A6CE845FA9468C46617E /* FIRErrorCode.h in Headers */, - 368C0B35C87176A00FD1BB60B421CFBE /* FIRErrors.h in Headers */, - AF436367FEB919A330A61CFDD0E84FB5 /* FIRHeartbeatInfo.h in Headers */, - 1EB1F8D1175E397B97ECAC94849B8BD8 /* FIRLibrary.h in Headers */, - DEE1DE6BAD057DE55A402BAB9EC971C1 /* FIRLogger.h in Headers */, - D3E5CA72D9FBC6571203CAC3C2F50D70 /* FIRLoggerLevel.h in Headers */, - 2AA599D168ED7150F55B27A8DCC59539 /* FIROptions.h in Headers */, - 2B675CC9B444D9F8C03E091D90673A8E /* FIROptionsInternal.h in Headers */, - 6EFEC9EECB474DA7EDEDB78F970B3E49 /* FIRVersion.h in Headers */, - ); - runOnlyForDeploymentPostprocessing = 0; - }; - 4D71CA6F881C95FDC58B3DDE54DBD3BC /* Headers */ = { + 77197D22B64AC0E67FC5F993ABBBBF8B /* log_severity.h in Headers */, + 7BC5533EBE0BE5BCFF4471352FBBB54E /* logging.h in Headers */, + 3F9017768CB61E6121958E6759A8BA8F /* raw_logging.h in Headers */, + 05171B0FD02E062464DC1D292F3072BD /* stl_logging.h in Headers */, + C7C26E0FC38264E0FA92E76202738AC2 /* vlog_is_on.h in Headers */, + ); + runOnlyForDeploymentPostprocessing = 0; + }; + 47AB2CC49F96FBCCF38734535D404809 /* Headers */ = { isa = PBXHeadersBuildPhase; buildActionMask = 2147483647; files = ( - E373BD1E813C120BA7D43D7B324ECA80 /* Pods-NotificationService-umbrella.h in Headers */, + 60F6E029BBD2655E5BEDEDF49CEF2814 /* InspectorInterfaces.h in Headers */, ); runOnlyForDeploymentPostprocessing = 0; }; - 5121B954037E49863E1114ACF316B1E9 /* Headers */ = { + 49E2EBAB25139D68AA815AFBACEF0D28 /* Headers */ = { isa = PBXHeadersBuildPhase; buildActionMask = 2147483647; files = ( - 674273BFACDBC6F2371AFB9E1182AA93 /* LongLivedObject.h in Headers */, - 58368D45926FD1B6881772D7AA2BFFD0 /* RCTTurboModule.h in Headers */, - FAE802F76276D16BC040417FB9D92C6D /* RCTTurboModuleManager.h in Headers */, - CDAFB2F61C2414EB9B05177D1C5983FA /* TurboCxxModule.h in Headers */, - 15FB394A4C9902611160F1F536177CC7 /* TurboModule.h in Headers */, - E94C0A8806DEC18D6873CF569F01FA1A /* TurboModuleBinding.h in Headers */, - 933DEC12775DEC888B3ABA33F7343DB3 /* TurboModulePerfLogger.h in Headers */, - 3307A812F26ED03659E84F5C45F81999 /* TurboModuleUtils.h in Headers */, + 77926167A12FD13BC62872806255D612 /* RCTConvertHelpers.h in Headers */, + A85D5DD626C5F4071CF225EF212BE9C3 /* RCTTypedModuleConstants.h in Headers */, ); runOnlyForDeploymentPostprocessing = 0; }; - 51DE847A2153DEE0E5B91327988B9747 /* Headers */ = { + 4CCF44A15D00DBA49C7D81C3BB915DBF /* Headers */ = { isa = PBXHeadersBuildPhase; buildActionMask = 2147483647; files = ( - BC7E55A776CDFCD7D54EF579B10B8236 /* ReactNativeShareExtension.h in Headers */, + E14631AB774130E38512B80F1CC17841 /* Pods-defaults-RocketChatRN-umbrella.h in Headers */, ); runOnlyForDeploymentPostprocessing = 0; }; - 51F02550DA763E00DDB5989C5514BC21 /* Headers */ = { + 4E309FB4EFED52ACA0DE5FE226E2B689 /* Headers */ = { isa = PBXHeadersBuildPhase; buildActionMask = 2147483647; files = ( - 43FF3F46155BF15CF9CD29503EE1A5F4 /* AsyncPauseState.h in Headers */, - 5FECC9DC73C82BEE2C93F78E5727FAFD /* AutoAttachUtils.h in Headers */, - E58DE23836329FAFADE45085CA848146 /* CallbackOStream.h in Headers */, - 5370CBA4ACBE7AEC5EF7A382F7043145 /* Connection.h in Headers */, - 82940B4A35BBAA49939E09C3493C5409 /* ConnectionDemux.h in Headers */, - 391A55BBBB4A0FDE96C1FA9C62A16DA3 /* CoreModulesPlugins.h in Headers */, - 5E57502CF408A766C5F086B8D85CCC6C /* DispatchMessageQueueThread.h in Headers */, - 52489BC03892984727EF0E18F51CA909 /* Exceptions.h in Headers */, - DD50E4101B1B9D10BE6E079AF19111E5 /* HermesExecutorFactory.h in Headers */, - A1C79D5750AA6CFA04B7291D91E3559E /* Inspector.h in Headers */, - 85C065D11414723018B96EA8E79BB826 /* InspectorState.h in Headers */, - 50B5D01606E7DED4B0206FEBC0A1BA3A /* JSCExecutorFactory.h in Headers */, - AADE3C16B51F368C44AC0105848D5EF1 /* JSITracing.h in Headers */, - D74C449490F2547B3074E72651672C3C /* MessageConverters.h in Headers */, - 2CF0FA338624C03E739AC9F032833D7D /* MessageInterfaces.h in Headers */, - F935DFCE71C759180A282D16D7FB403E /* MessageTypes.h in Headers */, - AED782460FC95297554B397BBF3C259C /* MessageTypesInlines.h in Headers */, - 1EE4CD5E575C6A8AFAD073B6381B945E /* NSDataBigString.h in Headers */, - 7438FB3ADC2462E87AF4F062F02A01F0 /* NSTextStorage+FontScaling.h in Headers */, - 86651F73CFBD505788C532FA87A02464 /* RCTAccessibilityManager.h in Headers */, - 1530C2CF66266CCC6E80FC67BEE8A927 /* RCTActionSheetManager.h in Headers */, - 9897FC31A052A2CA0933518F865E72B4 /* RCTActivityIndicatorView.h in Headers */, - 3074282C68DEE5AC2B02E9FBC1A86839 /* RCTActivityIndicatorViewManager.h in Headers */, - CB14643836801BA417C2F336D66E589C /* RCTAdditionAnimatedNode.h in Headers */, - 102EAE87B33FDA5963921950F00222C8 /* RCTAlertController.h in Headers */, - 443312CA59A6E1457D3B350E18DE8415 /* RCTAlertManager.h in Headers */, - AD438DD0D0E357DFB295D4272D0333F8 /* RCTAnimatedImage.h in Headers */, - EF384063531EC93D811EE18EA798964A /* RCTAnimatedNode.h in Headers */, - E074A92FAFC9BA43A47C45F5F611B6C5 /* RCTAnimationDriver.h in Headers */, - 6E54B68FE612B2BA5D50122DDD6B2B06 /* RCTAnimationPlugins.h in Headers */, - 862D6D73149966399B22478C16E11F8E /* RCTAnimationType.h in Headers */, - 17CD512E8F7DBE4D02B042069421E8BC /* RCTAnimationUtils.h in Headers */, - EFB0E8A9826CE09004DD59FF5F413CD4 /* RCTAppearance.h in Headers */, - 2618A37300CBD575841A44C1378E1600 /* RCTAppState.h in Headers */, - 28AB19E6514735B79E5536ECE2F00D3D /* RCTAssert.h in Headers */, - 60D05C1846C1099AF1F69F19F60CD9A8 /* RCTAsyncLocalStorage.h in Headers */, - 1D445ABA784FEE3D0B7F312B8A8A9C2F /* RCTAutoInsetsProtocol.h in Headers */, - 8F1CFE1C548EBA700E1583A4BB38E91B /* RCTBackedTextInputDelegate.h in Headers */, - E287F3777D57C93AED5AE1838AFF1954 /* RCTBackedTextInputDelegateAdapter.h in Headers */, - 5A7963A2F614AEC47409EE8111A1BF63 /* RCTBackedTextInputViewProtocol.h in Headers */, - 37916BFF37015D489D43ED58CEC40F92 /* RCTBaseTextInputShadowView.h in Headers */, - 0EEA702D30D384D33244ABFEB10689C4 /* RCTBaseTextInputView.h in Headers */, - 6FE0FE4F0977D4552305755C8A250A62 /* RCTBaseTextInputViewManager.h in Headers */, - 93D79DC8C7DB57CEA927802B73C488AD /* RCTBaseTextShadowView.h in Headers */, - 9ED2961FDD61DFAB3A56FBBBB219DB53 /* RCTBaseTextViewManager.h in Headers */, - 546D73DEF4FD408C5791A9BCE5DC92D3 /* RCTBlobManager.h in Headers */, - 47ABC69700EB814528FB6C7D5061012B /* RCTBorderDrawing.h in Headers */, - 5305B3D1845996CAE48B884F62A700AE /* RCTBorderStyle.h in Headers */, - 4F65F5014A66BB1F16FCF93125B34451 /* RCTBridge+Private.h in Headers */, - B65159AA9444F1081BE92C86ADBC253F /* RCTBridge.h in Headers */, - FDAFCF93AA9427D7F785F14E5688B51F /* RCTBridgeDelegate.h in Headers */, - 02F3FAEE0F8AD772ED88F9CC03E0D4FB /* RCTBridgeMethod.h in Headers */, - 72AE353F6459709595E6BE7249EB24A0 /* RCTBridgeModule.h in Headers */, - D4A2368768AF9A79E6798B8B6AC659DD /* RCTBundleURLProvider.h in Headers */, - D53F1CD39BA109B297DB22917B41C7AC /* RCTClipboard.h in Headers */, - 232A0DF7892DC1668AD991D30E045B4D /* RCTComponent.h in Headers */, - 505FA2D0E8D4EB29D480D580953B2FBE /* RCTComponentData.h in Headers */, - 764C99C1046573D77473F83B3732F15B /* RCTComponentEvent.h in Headers */, - A59724AD1F1CE42A2AE041D2E11E6664 /* RCTConstants.h in Headers */, - 896F8CA8A963FD3DA7B78752A73DFDCF /* RCTConvert+CoreLocation.h in Headers */, - 6DA84A603D543734E965829C73DA57EE /* RCTConvert+Text.h in Headers */, - DA3A6D4B91E98084D3B36D771775F171 /* RCTConvert+Transform.h in Headers */, - 77BA0BE783A875FAD30888155C7D8045 /* RCTConvert.h in Headers */, - B428D05EDCA4A93A1CBD29D4B85FE924 /* RCTCxxBridgeDelegate.h in Headers */, - AA79ED9A4703C5F659B3D4D6CB6AA990 /* RCTCxxConvert.h in Headers */, - 7555CBB8C7CE60187519502264C38AFC /* RCTCxxMethod.h in Headers */, - 4E5498D98181B6454712EFE0C893C115 /* RCTCxxModule.h in Headers */, - D8F73E92507A63E4729A5D0D2883C892 /* RCTCxxUtils.h in Headers */, - 42E0430B8DA3229997AEABE19613DDC7 /* RCTDataRequestHandler.h in Headers */, - B3E6599D03A2A32C1FC3DF33F602CF9E /* RCTDatePicker.h in Headers */, - 8FDC14CCA3C4455A80E93218279CE76C /* RCTDatePickerManager.h in Headers */, - 0CD96A4E2677F7983EE8E5193C1AB2BD /* RCTDecayAnimation.h in Headers */, - 07093C761C6CC9644CB5C2EDFD2F00A3 /* RCTDefines.h in Headers */, - EB14C78C69BA17F8F57A3486D8055C53 /* RCTDeviceInfo.h in Headers */, - 3ED41AFA7014EE36BCDE8F7F64AE701F /* RCTDevLoadingView.h in Headers */, - 12EB6C30173AE1FE23E81096A1843A76 /* RCTDevLoadingViewProtocol.h in Headers */, - BD8F8D1E2C7AFD6EDD1E52E3BE2728D8 /* RCTDevLoadingViewSetEnabled.h in Headers */, - AA8786B1E717B7028B8C7A29960B1945 /* RCTDevMenu.h in Headers */, - BD2D7E41781C3994DDE1CA5418311905 /* RCTDevSettings.h in Headers */, - FBD4C87AAF60E0EEB52CDD9FF5C9F9E2 /* RCTDevSplitBundleLoader.h in Headers */, - 136D5A6A4A59F5D8C66443C14D2C1EEA /* RCTDiffClampAnimatedNode.h in Headers */, - 81E1BECFF015AAC4B6740FF761011701 /* RCTDisplayLink.h in Headers */, - 7A761194468A5C4508DF4A4380B0F5EF /* RCTDisplayWeakRefreshable.h in Headers */, - 10A2E9D8B1191C197E191DA127F184AE /* RCTDivisionAnimatedNode.h in Headers */, - CAD4AB3BDE57B4104B82BA05EEDB698A /* RCTErrorCustomizer.h in Headers */, - 8D0784FEB22B291920237AE2737B9120 /* RCTErrorInfo.h in Headers */, - B6DD124EDA34919378A5066C533318B9 /* RCTEventAnimation.h in Headers */, - 0E8135CA2F60E1532E6FD995BCE3A2A6 /* RCTEventDispatcher.h in Headers */, - 9D31D779DCFDF0E99E28FB0970213820 /* RCTEventDispatcherProtocol.h in Headers */, - BC55C7CADBBAE050ED0BB3E32A64E9AF /* RCTEventEmitter.h in Headers */, - 9030807EEA24116BF4444DEE216C7551 /* RCTExceptionsManager.h in Headers */, - 29143025EEB9F61FB4B8A88936490615 /* RCTFileReaderModule.h in Headers */, - 93BD2606CEB0E6BD13D9B58558E0174F /* RCTFileRequestHandler.h in Headers */, - ABBE966D954BB36BDC39ADFBFF1BDE87 /* RCTFollyConvert.h in Headers */, - C2E005149D9E34D4CD8B3898F64A6557 /* RCTFont.h in Headers */, - A74285097C22BDE7C1C9243EB0997C39 /* RCTFPSGraph.h in Headers */, - 8D0D92757235B7EAFEA4E8CAF5EFE0F5 /* RCTFrameAnimation.h in Headers */, - AEF05CDAB81952E555757CD0733C9BD9 /* RCTFrameUpdate.h in Headers */, - B97C4023C89040E46F0B1CFDFDF2C598 /* RCTGIFImageDecoder.h in Headers */, - 8EB9C98AC989799E41909A8834947C72 /* RCTHTTPRequestHandler.h in Headers */, - 53DEA63DF1BB7C514C985DD0BE8ABF91 /* RCTI18nManager.h in Headers */, - 5C6F04DA7B52116C8E87D3BA0039B1BB /* RCTI18nUtil.h in Headers */, - D4897215571C3F50ACC5A323696E6BAC /* RCTImageBlurUtils.h in Headers */, - E866C091A893AAF10C5066C6A8FB9348 /* RCTImageCache.h in Headers */, - B34CA863D04544F9C500C4C0D1DBC1EB /* RCTImageDataDecoder.h in Headers */, - 93647E033464B389D0979DA7305B82E9 /* RCTImageEditingManager.h in Headers */, - 84242CF4A052DB04E88AF99C26F083BC /* RCTImageLoader.h in Headers */, - 38D3B34D08BA7B972A8B94E5DCE52765 /* RCTImageLoaderLoggable.h in Headers */, - F5D3E6ADF8346099642D6B94121F5D00 /* RCTImageLoaderProtocol.h in Headers */, - A76A3B0FD8A7A2B9F3F3DDF6DBCB24A6 /* RCTImageLoaderWithAttributionProtocol.h in Headers */, - 0346C6562507A40267EA3305185E192B /* RCTImagePlugins.h in Headers */, - B7BC620E2F0F296F50DC9DA7BBE977E4 /* RCTImageShadowView.h in Headers */, - D5F05C28E40410B6532F191DCFBCB88D /* RCTImageSource.h in Headers */, - D9E9C329BF597E2E428C2D675E8A86F5 /* RCTImageStoreManager.h in Headers */, - EDE8ADD40B65AF973CED240BB4BC2C11 /* RCTImageURLLoader.h in Headers */, - CE5BBBC50EE983AD02227AA651A7CE08 /* RCTImageURLLoaderWithAttribution.h in Headers */, - 5807F6B080990E0B767B0BE449E8ECFB /* RCTImageUtils.h in Headers */, - 30F4FC699C6CB4F084AD1E1C2A59D27E /* RCTImageView.h in Headers */, - 1DF0C2D60D4845010213E72709AE1F71 /* RCTImageViewManager.h in Headers */, - 6E947B625270EA7AB41F6E216A5009A4 /* RCTInputAccessoryShadowView.h in Headers */, - 0C1C34168DFB6335025F3571DE0990C0 /* RCTInputAccessoryView.h in Headers */, - 00BB8F2C7C8AC2C604A8652297AF5813 /* RCTInputAccessoryViewContent.h in Headers */, - 4A27DE1BB86074198A35CE8AE56AE79F /* RCTInputAccessoryViewManager.h in Headers */, - E2FEB34C99A3FEE2F60E0E5D878D9839 /* RCTInspector.h in Headers */, - 7D20AD84EBC8559AE1142427250549A9 /* RCTInspectorDevServerHelper.h in Headers */, - 9A8AF5825B359550081D18DC8E2BDE40 /* RCTInspectorPackagerConnection.h in Headers */, - C871BAE6DCFE636B9F7FD7C7DF0E43C9 /* RCTInterpolationAnimatedNode.h in Headers */, - 40378A16692F39DCEA32A5DEABB04831 /* RCTInvalidating.h in Headers */, - AD1034B39445041581BDF4D206FA8229 /* RCTJavaScriptExecutor.h in Headers */, - 84DC2EA18DF9E7B97321C9B61F1F4A26 /* RCTJavaScriptLoader.h in Headers */, - E5A4D111A0374E196120025589C610DA /* RCTJSIExecutorRuntimeInstaller.h in Headers */, - 98ABC6BDC82C7CEAA1173731B394035E /* RCTJSInvokerModule.h in Headers */, - 88E117081C5E333018F94699ECC05F16 /* RCTJSScriptLoaderModule.h in Headers */, - 95DB4A98C401CDCA6F7B1EB83439FDB3 /* RCTJSStackFrame.h in Headers */, - D42F1F4E5EBE1986A2CB8A2C3D76706A /* RCTKeyboardObserver.h in Headers */, - 39CD182F2B1EAC51016774AEEBEF7C7B /* RCTKeyCommands.h in Headers */, - 0D8940FEA44203FDE17C495A5A3A04AA /* RCTLayout.h in Headers */, - 849264ECD2A1B188F8221C0D9504E330 /* RCTLayoutAnimation.h in Headers */, - F8410DD99AEA707624CAE2C75F100A07 /* RCTLayoutAnimationGroup.h in Headers */, - 87FAE4A24D333EB4AEA5BF72137525E4 /* RCTLinkingManager.h in Headers */, - 58654A065C7D9BC74483DB9875A1F7EF /* RCTLinkingPlugins.h in Headers */, - 79314B31C855F5FE78CE981BF7A42755 /* RCTLocalAssetImageLoader.h in Headers */, - B1483314748D0FDB00B54C324A0CDE1E /* RCTLog.h in Headers */, - 508F4CA2E6E0F85CCBFA800E312BB1C5 /* RCTLogBox.h in Headers */, - A807D123779294573E8E4B4AEA8A48CC /* RCTLogBoxView.h in Headers */, - 0E7B97ACEBDF484ACAA61916D907A119 /* RCTMacros.h in Headers */, - 4215168C3F040A5EFF86F32F14A845FF /* RCTManagedPointer.h in Headers */, - EB29EA2290C82DFF3A2C141D4867B820 /* RCTMaskedView.h in Headers */, - 288EA9A8AD939D34A4CBEF2EE225AD56 /* RCTMaskedViewManager.h in Headers */, - E48AEFAFDAC08F2EACE5AA4CB98D3944 /* RCTMessageThread.h in Headers */, - 60F1116344968E0A933978501B3FE871 /* RCTModalHostView.h in Headers */, - E5CD926415F1A3789CDD8A16D76A34B4 /* RCTModalHostViewController.h in Headers */, - 6EFACFAD993B3F07E82F8A4F7F028BAD /* RCTModalHostViewManager.h in Headers */, - 4291F719591E6254362677774D6D6FA9 /* RCTModalManager.h in Headers */, - 30AC6FFF5D61AB8AF0C7149DD6865F89 /* RCTModuleData.h in Headers */, - 4C760F61E843795E2C719F947CE10CAE /* RCTModuleMethod.h in Headers */, - 5E55FEF6B1ACB8BDC0276C53FFB57E4E /* RCTModuloAnimatedNode.h in Headers */, - 1C7383BAA47CA9E13132413DF2BAA949 /* RCTMultilineTextInputView.h in Headers */, - 9831470C75FF63850CF99E426ED06C43 /* RCTMultilineTextInputViewManager.h in Headers */, - 9E32DF386C7B6419161C5398DD25C077 /* RCTMultipartDataTask.h in Headers */, - 2604D2DFCF3930C8A726A34DB94510B6 /* RCTMultipartStreamReader.h in Headers */, - 85D704B1FB1B5234CC4748F1634186ED /* RCTMultiplicationAnimatedNode.h in Headers */, - 17155D1A44E60966045927004E729A9D /* RCTNativeAnimatedModule.h in Headers */, - 281D197F89B7CA018E1CD0794593B335 /* RCTNativeAnimatedNodesManager.h in Headers */, - 272F9453B65E11E7B647D37D494D663C /* RCTNativeAnimatedTurboModule.h in Headers */, - EF2FC081E2C1F8E7DC310E222BF43F55 /* RCTNativeModule.h in Headers */, - 452EE77850BF8C1838507E8BFACD50F5 /* RCTNetworking.h in Headers */, - 153A5B732952E7C63365C3CAFFF4F6E5 /* RCTNetworkPlugins.h in Headers */, - 4409FE7A0169053175DBFBCCC833A7EA /* RCTNetworkTask.h in Headers */, - 41BDA24DD77F73EF6DDDD86752B72D4D /* RCTNullability.h in Headers */, - 5F1FF7EDDFF9B4DA7A30D8F812B4F5BA /* RCTObjcExecutor.h in Headers */, - DBF2434A96C2E42D1ACC6988DBB62BA7 /* RCTPackagerClient.h in Headers */, - CC21BDC9851642B380A4486829931AC4 /* RCTPackagerConnection.h in Headers */, - D9E55E55808083151D350DFE70673992 /* RCTParserUtils.h in Headers */, - EE7FE8B47BEAE181FE13934EE9DA0995 /* RCTPerformanceLogger.h in Headers */, - 1EE248615173AB6BB2FCBAA025F46DDA /* RCTPicker.h in Headers */, - 61985204CBD35AE73925533FA35342AE /* RCTPickerManager.h in Headers */, - BC9AA287DB9D1F3C1E2E37BCD07E16EF /* RCTPlatform.h in Headers */, - 49677AEE26CE7521599D4EED43DA48CE /* RCTPointerEvents.h in Headers */, - AEA407EB3009BBA61F44A67E705D2FC5 /* RCTProfile.h in Headers */, - 5B9B4E230AE1E89B389C639026B26FC0 /* RCTProgressViewManager.h in Headers */, - D3231E825E527E678ED877374F3A8D24 /* RCTPropsAnimatedNode.h in Headers */, - 44F0D24470725F6870DCBDDF508E20B2 /* RCTRawTextShadowView.h in Headers */, - 903224E1E03C45F810C7705242CC2B58 /* RCTRawTextViewManager.h in Headers */, - C04E744AF14D144E1D90678E2CCACD1E /* RCTReconnectingWebSocket.h in Headers */, - BB562842ACFA3EAFA7C91E495616B572 /* RCTRedBox.h in Headers */, - AF82D01E703407AD30DD9F0A5F304C2A /* RCTRedBoxExtraDataViewController.h in Headers */, - 38DD59C79FFD46AE751323372548DB62 /* RCTRedBoxSetEnabled.h in Headers */, - 22D8AB1C11924EB111F57471486DEA69 /* RCTRefreshableProtocol.h in Headers */, - 9CC5875E36C76821BB01311FC7311F03 /* RCTRefreshControl.h in Headers */, - 00F8647BB6E8A787410FB25342A5BE20 /* RCTRefreshControlManager.h in Headers */, - E3EC0F97A46B322061908FCE6427EF05 /* RCTReloadCommand.h in Headers */, - BFD3F91EFE71F86F85736FC76F0931E5 /* RCTResizeMode.h in Headers */, - A9A3C721A26D345F49174C2DA3FD1DC3 /* RCTRootContentView.h in Headers */, - EB1C1F81B0144E43EF807D2C8EE59965 /* RCTRootShadowView.h in Headers */, - 2A2EDA847403A97588ACFEF6F3B2E8E6 /* RCTRootView.h in Headers */, - E3F552D538BEDDFDF4624325039278CC /* RCTRootViewDelegate.h in Headers */, - CF089CD590B8378757174BA76641D10C /* RCTRootViewInternal.h in Headers */, - 043891E5F78B305EBB1317A30836A8CC /* RCTSafeAreaShadowView.h in Headers */, - EECD6ABA1686747B7A909816221D84D6 /* RCTSafeAreaView.h in Headers */, - 523F02EA0EF6E9EAF4553423C8E872E9 /* RCTSafeAreaViewLocalData.h in Headers */, - 3B6922D14B23A155308E5D72318FB004 /* RCTSafeAreaViewManager.h in Headers */, - 57DF71855BA890D631892D2A4B2EBF5D /* RCTScrollableProtocol.h in Headers */, - 0E234EE5851EF999F8969F927AD25F6D /* RCTScrollContentShadowView.h in Headers */, - DEB2EB6994835EE62BF927E7D5FFCE42 /* RCTScrollContentView.h in Headers */, - E13D2DBC0C5F739D44100A7E44533913 /* RCTScrollContentViewManager.h in Headers */, - CD13073FA6A65CF6B4E5496AB2E10B27 /* RCTScrollEvent.h in Headers */, - 858A0C6D75E5E564AE0AB1C0499498BE /* RCTScrollView.h in Headers */, - D2C6965AD9CC35C97016CC32EA67D671 /* RCTScrollViewManager.h in Headers */, - DA91581A135FBD08725A415CD0ECDC13 /* RCTSegmentedControl.h in Headers */, - 0D66A6F156E3003BF80656EBF866FB24 /* RCTSegmentedControlManager.h in Headers */, - 7BEAD01E849AC4D7C9506CAB5D7F03E1 /* RCTSettingsManager.h in Headers */, - 5B7A7BFD69A9EFA8D49D60F17DCC69E4 /* RCTSettingsPlugins.h in Headers */, - CE09119F5E89BD9B7BBEAF10739BB37F /* RCTShadowView+Internal.h in Headers */, - 2B11C84CB20A5EE791B7D49F42903DC6 /* RCTShadowView+Layout.h in Headers */, - 65E113916A6D73B2D25154BA86ED7ABD /* RCTShadowView.h in Headers */, - 3F11C61D791254FE82AF5696C3212533 /* RCTSinglelineTextInputView.h in Headers */, - 372BCB0009F5ADC08084781A24633A50 /* RCTSinglelineTextInputViewManager.h in Headers */, - 707D76C987DFAB631D3EA0591433FD93 /* RCTSlider.h in Headers */, - 380CD0B08F298700A7E95946BDF89368 /* RCTSliderManager.h in Headers */, - 091A8294C62AC3AEC7AFD5DBD735EC8B /* RCTSourceCode.h in Headers */, - 0151086FDFF81B6CA8D219F670CAA428 /* RCTSpringAnimation.h in Headers */, - 62F2738719CBF468CDB2F05C46056AEC /* RCTSRWebSocket.h in Headers */, - 9356480FE2C0B1AC4DD2926EC33872F3 /* RCTStatusBarManager.h in Headers */, - 12500EB17F731C4F4AC159C487E79F66 /* RCTStyleAnimatedNode.h in Headers */, - F42ADE5933BC4A89804B49459E74A76D /* RCTSubtractionAnimatedNode.h in Headers */, - 7274E4B1F2A9A0B8015B99A25039148A /* RCTSurface.h in Headers */, - EF8A7AAE140B717E7D4865D7BEC2A810 /* RCTSurfaceDelegate.h in Headers */, - 1A90D841D8FB2CEF9B86EE4730922635 /* RCTSurfaceHostingProxyRootView.h in Headers */, - 3F65FB7F4DAE604C00698B892A461C5F /* RCTSurfaceHostingView.h in Headers */, - AE81BD3229B6B6E342141272C635F1F0 /* RCTSurfacePresenterStub.h in Headers */, - B40E600B226D6BF07D00DF3545C182F6 /* RCTSurfaceProtocol.h in Headers */, - 37D8C92D8800CC042AD2FF1F189A0477 /* RCTSurfaceRootShadowView.h in Headers */, - FC0CCEFD25A9732DC68C9BD03B05B41E /* RCTSurfaceRootShadowViewDelegate.h in Headers */, - 488F61406BEDE6F4616F4CC38E094A58 /* RCTSurfaceRootView.h in Headers */, - E1A0B76EB7A3746A55E41F8DB7C14008 /* RCTSurfaceSizeMeasureMode.h in Headers */, - 24BA1F49C4507CCF322D930F33B14289 /* RCTSurfaceStage.h in Headers */, - 6A5D8B5248F2C089BA82FFBE4FFE9910 /* RCTSurfaceView+Internal.h in Headers */, - C564CA1C948A4164A7FDE6A21A6CE060 /* RCTSurfaceView.h in Headers */, - 6B69D4008B61299672F88009F247EE21 /* RCTSwitch.h in Headers */, - 00F3CECFF5B5C71FCA22A87DC5BA9543 /* RCTSwitchManager.h in Headers */, - 2609BD2E9E0D419FE3947E43911A3CDD /* RCTTextAttributes.h in Headers */, - 431CDB32429010B551BE7322FCF0F7E6 /* RCTTextDecorationLineType.h in Headers */, - 5B1D944060E287AF5B5FF3611112FA51 /* RCTTextSelection.h in Headers */, - D78F88D509A69BC393D2D42308D3FE23 /* RCTTextShadowView.h in Headers */, - C510A95FDA87CDF78A5818FE2557E543 /* RCTTextTransform.h in Headers */, - C9D678DE52EFAFAEA7D75268855D5BC0 /* RCTTextView.h in Headers */, - DD5A91C88C50B6E345164EE16875FCD7 /* RCTTextViewManager.h in Headers */, - 41942A251B51E1E5848D5067C74AF19C /* RCTTiming.h in Headers */, - 010ACD40A3FB0E1CDA8CB693E0C25AC2 /* RCTTouchEvent.h in Headers */, - 02FE15B62E349ED13458EAF358D75B35 /* RCTTouchHandler.h in Headers */, - 16CE118294D346BACF36CDEAB1285509 /* RCTTrackingAnimatedNode.h in Headers */, - F5FEE2C3E452876030ADB3D139C7B3EB /* RCTTransformAnimatedNode.h in Headers */, - C0DD2D64498DD9D944EA6DD68F513E55 /* RCTUIImageViewAnimated.h in Headers */, - 68F2B4B67DA6803F21510623B2AAD127 /* RCTUIManager.h in Headers */, - B2C41EF392D8BEDA63316B36023197EC /* RCTUIManagerObserverCoordinator.h in Headers */, - FF31481AC6A639FC4776B15F11BEDFDB /* RCTUIManagerUtils.h in Headers */, - 2997FEA8C3D0FCF668DC5C47DE4D5AD5 /* RCTUITextField.h in Headers */, - 28085BC66E36F02A849AAAA3C51B6E1F /* RCTUITextView.h in Headers */, - 21F93C0E91338F357D5F63A991EC85A9 /* RCTUIUtils.h in Headers */, - 0598F7186665FCE2EFAADE1F54C739D6 /* RCTURLRequestDelegate.h in Headers */, - 587CF6EC3B6FEB93465F0CD513A9AD09 /* RCTURLRequestHandler.h in Headers */, - 0B01B5A30237F905FAA426B720C73146 /* RCTUtils.h in Headers */, - 7BCECB7A8F72787B3FB4FE1460578329 /* RCTUtilsUIOverride.h in Headers */, - 049F3641ED0F4A2C70A5A6E13D2218E9 /* RCTValueAnimatedNode.h in Headers */, - 1088988558EC0A36DB60F8F23FFF1BB2 /* RCTVersion.h in Headers */, - 0057FBC361C696065C2ABEFB2556A2F4 /* RCTVibration.h in Headers */, - 0C02CF57A76237685AD6A8C3EF701A6F /* RCTVibrationPlugins.h in Headers */, - A2460B0823D5836054A3DA49144854D1 /* RCTView.h in Headers */, - C1AD23EAFCA7808C317A7CB7BF9046D9 /* RCTViewManager.h in Headers */, - FB829381B9950A960832FC619CF30F7B /* RCTVirtualTextShadowView.h in Headers */, - F0A2FE162C0A1632A19056A64FDF9458 /* RCTVirtualTextViewManager.h in Headers */, - 998B3239AD98B6B72E9E1898ADCC248D /* RCTWeakProxy.h in Headers */, - 1FE5B4058F3915EEC84A7A7AEB6FDAC7 /* RCTWebSocketExecutor.h in Headers */, - E1C08D8BB37248117121A8AAD57619B9 /* RCTWebSocketModule.h in Headers */, - D3F2A2007343CB68F1B43CD7359A7FED /* RCTWrapperViewController.h in Headers */, - 5A2849A983BC591DF6CC2F775AF11C57 /* React-Core-umbrella.h in Headers */, - EFBC69F78EC6D96B4C4E4C93B50EC74A /* Registration.h in Headers */, - 7ABD5D017599151524C29FE32BB27F57 /* RemoteObjectsTable.h in Headers */, - 515AB3A02C455B5847ED4B3599923401 /* RuntimeAdapter.h in Headers */, - F59CA967320D9BB376F3A50E43278038 /* SerialExecutor.h in Headers */, - 5F5254B5432CF6141A81648035CD1D10 /* Thread.h in Headers */, - 4228177C22A0E104C931768E9C8BC6A0 /* UIView+Private.h in Headers */, - 59ADFE9353A5AFC51521D50B882605C7 /* UIView+React.h in Headers */, - ); - runOnlyForDeploymentPostprocessing = 0; - }; - 52544AF49BD4CF6119A6BDB68C1440BB /* Headers */ = { + 26B40AA6321331AC9355EBC401C85B60 /* RNFBCrashlyticsInitProvider.h in Headers */, + 4BAE5799A01F3FFED5188F873B459140 /* RNFBCrashlyticsModule.h in Headers */, + ); + runOnlyForDeploymentPostprocessing = 0; + }; + 51DE847A2153DEE0E5B91327988B9747 /* Headers */ = { isa = PBXHeadersBuildPhase; buildActionMask = 2147483647; files = ( - E7DC3A48C27C44F5B0FF9EBB27B4D428 /* log_severity.h in Headers */, - CA40EA20D735E45DBAE1C1563AEF5EC1 /* logging.h in Headers */, - 804C2BF2B5D48E0D4B9D56BFCF064540 /* raw_logging.h in Headers */, - 11CB25300FA0546FC9825C2542B14EB9 /* stl_logging.h in Headers */, - AE020D03524481E7248DE8B85D4747A0 /* vlog_is_on.h in Headers */, + BC7E55A776CDFCD7D54EF579B10B8236 /* ReactNativeShareExtension.h in Headers */, ); runOnlyForDeploymentPostprocessing = 0; }; - 5478F662965269BAE2BA99EDD5EAC7E8 /* Headers */ = { + 5518B09871F5662908C462BDCE8BCFC4 /* Headers */ = { isa = PBXHeadersBuildPhase; buildActionMask = 2147483647; files = ( - A6E495CEEF8FE8631479CF2DACD79B3B /* UMPermissionsInterface.h in Headers */, - E55392C6684C8F1393B2D06412EF1961 /* UMPermissionsMethodsDelegate.h in Headers */, - B754500F6E3CD14107A63C18D06AC057 /* UMUserNotificationCenterProxyInterface.h in Headers */, + 1DB0A8EFC63A895763C687F735A7883E /* decorator.h in Headers */, + 35F54A065C7D8D1D4C845DD391A77E9E /* instrumentation.h in Headers */, + F438DE87165B187386F5ACD46C930E4E /* JSCRuntime.h in Headers */, + 0C1321B2F1B8C6C85A30A05936FE9A3B /* jsi-inl.h in Headers */, + 8AA228EC1F8276FC487C2A78BC1002A4 /* jsi.h in Headers */, + B16C2741B38D752B204C9731A29EFF23 /* JSIDynamic.h in Headers */, + 82AE449A83988CE81EEBC6D430BFC344 /* jsilib.h in Headers */, + 076AC398D90C893055CD6E009E0CC615 /* threadsafe.h in Headers */, ); runOnlyForDeploymentPostprocessing = 0; }; - 57092A702927FA7B3B62B36BEE47203D /* Headers */ = { + 5829E5B43D7B27528482E1E932E7BDD7 /* Headers */ = { + isa = PBXHeadersBuildPhase; + buildActionMask = 2147483647; + files = ( + F56290866306CA680C429E11708267B9 /* BitUtils.h in Headers */, + 21978626423AEB08C373132AC106E87B /* CompactValue.h in Headers */, + D8FAA87D29D8552A6400F06DD4882873 /* event.h in Headers */, + 0270EC6EBCCA762B874296362241F92C /* experiments-inl.h in Headers */, + 23A75EB832AA965C7D28F4BBCC09C757 /* experiments.h in Headers */, + 9029FC3F9BAB94870CAC17152D45579B /* log.h in Headers */, + FE02244C52F3FEFB381FAFD41FD76EE0 /* Utils.h in Headers */, + E4D1834560F09488664A296D26A98678 /* YGConfig.h in Headers */, + FE54D9195CE429E42A090B57681F5710 /* YGEnums.h in Headers */, + AB883A6681BF4620D5BD39070441BB33 /* YGFloatOptional.h in Headers */, + 9F145625E03885AC7503EAAF9C8F0A72 /* YGLayout.h in Headers */, + 2223160C653476CCE0537703F66FA2B3 /* YGMacros.h in Headers */, + FB2CD5972E5709AB419DF179827358B1 /* YGNode.h in Headers */, + F7AF33C26F7C2A83D928FB1C0C5F0368 /* YGNodePrint.h in Headers */, + 39ADF21BB527C1E76BC231F574B0D63A /* YGStyle.h in Headers */, + 016D425B08D0FD6A03819FB6A7F8793C /* YGValue.h in Headers */, + 6E5721A21E2D7940501B7DF8751FFAC0 /* Yoga-internal.h in Headers */, + 59F274984A2087C0AAD14A308BBC788B /* Yoga-umbrella.h in Headers */, + 2BD7FCA8209308DDB0E7BB1B9D848402 /* Yoga.h in Headers */, + ); + runOnlyForDeploymentPostprocessing = 0; + }; + 58F983E77758A283839B3CD7282DF2D9 /* Headers */ = { isa = PBXHeadersBuildPhase; buildActionMask = 2147483647; files = ( - 4DD10EBE04E6E11B7083EF36AE7D8B2C /* GDTCORAssert.h in Headers */, - 34FCF45CC9D0DBB89D51453FC691EDD8 /* GDTCORClock.h in Headers */, - 0E44DFF7A0B30F4FE6A10615FE0FB471 /* GDTCORConsoleLogger.h in Headers */, - E0074BF3D32BEE86A3053A56AA83EF78 /* GDTCORDataFuture.h in Headers */, - 7F466EB6DF3E18B0EC2248B60B6A529B /* GDTCOREvent.h in Headers */, - 1A4832D88543410F232BC959FA8FF50E /* GDTCOREvent_Private.h in Headers */, - 7496FA2D60BA5639F033A049DC8D66AC /* GDTCOREventDataObject.h in Headers */, - 8A0031FD5982F5CC51FD1C1F189F99F3 /* GDTCOREventTransformer.h in Headers */, - DCFA2E2EEE02F9B231D85A8D66D82089 /* GDTCORFlatFileStorage.h in Headers */, - ADA454AA835BAABBB159DB202663ADC5 /* GDTCORLifecycle.h in Headers */, - 00BC87DFA9ECECAA97E66236315A0E42 /* GDTCORPlatform.h in Headers */, - AC8ADECF94911C0429EDC66F7B818E08 /* GDTCORPrioritizer.h in Headers */, - 0B2E0DE809E106E5EA77ADB7FD1B786A /* GDTCORReachability.h in Headers */, - 44D2B8BD2AEF6A1BDD1D6B7EA48DBDAE /* GDTCORReachability_Private.h in Headers */, - 4532FC9B2FF644C5C410C573A94B0721 /* GDTCORRegistrar.h in Headers */, - 4B12799E755CB200D243F333C2512095 /* GDTCORRegistrar_Private.h in Headers */, - ED276E5B54D36A9E60A7C3A7A97C1ADB /* GDTCORStorageProtocol.h in Headers */, - E6F2F6D29BF5EF222846D24FFFA2A518 /* GDTCORTargets.h in Headers */, - 83560D799D66A44B6025A30F0E203297 /* GDTCORTransformer.h in Headers */, - 29A8D2481CD3257C9100A8507DF97B1E /* GDTCORTransformer_Private.h in Headers */, - 29E7CC7F14FE4116D10F914951DD17BA /* GDTCORTransport.h in Headers */, - 9262F8918746D2B8170AB029AC4D0CD8 /* GDTCORTransport_Private.h in Headers */, - 8426B85C97EB7E927A5B60C8F33BDC34 /* GDTCORUploadCoordinator.h in Headers */, - CE6C2C115033C2392F23079D5C9ED359 /* GDTCORUploader.h in Headers */, - 0AD6A7B831E3569F6D7C5B1EE02A1191 /* GDTCORUploadPackage.h in Headers */, - CFC44134A09EF6B00F5A933A61E8EB00 /* GDTCORUploadPackage_Private.h in Headers */, - 22587FCC4C181D57C16E6C1E232D6813 /* GoogleDataTransport.h in Headers */, + 9A229686FD336C62130D455CBBFF1238 /* FIRCoreDiagnistics.h in Headers */, + 21E47E1078D911B8101B24E624809D3B /* FIRCoreDiagnosticsData.h in Headers */, + 216A4655E01B2006F378255AC42EEA7D /* FIRCoreDiagnosticsInterop.h in Headers */, + D36D3DBE803DFE19BF001FC7D15E4389 /* firebasecore.nanopb.h in Headers */, + 18128F781C06ED8E144C508F0DC2AA71 /* GDTCORDirectorySizeTracker.h in Headers */, + 9D0BE7C3C9715AF777248DC1ED94F1FB /* GoogleDataTransportInternal.h in Headers */, + A0633666E577B5724E8F5C3BF274D5F9 /* GULAppEnvironmentUtil.h in Headers */, + 4FA7DDFB58AAB1B4D07282C97B3A8656 /* GULHeartbeatDateStorage.h in Headers */, + A89BA921ABA86472A6A98EF034C613DF /* GULKeychainStorage.h in Headers */, + B58C9426C96245F2C79F5C7E2F922693 /* GULKeychainUtils.h in Headers */, + 1CDA8A5DF725336E3759E1E8462D1240 /* GULLogger.h in Headers */, + FDD1278918317B0F4D905C46C0E6007E /* GULSecureCoding.h in Headers */, ); runOnlyForDeploymentPostprocessing = 0; }; @@ -24595,154 +24090,108 @@ ); runOnlyForDeploymentPostprocessing = 0; }; - 5B2F360B077AD1BDE533C46FCE59D91E /* Headers */ = { - isa = PBXHeadersBuildPhase; - buildActionMask = 2147483647; - files = ( - 7079D2284B5A94EF0486E2A6CE323907 /* Allowance.h in Headers */, - 33482CEF63E6E903662CB9FFA4347F0A /* AsyncGeneratorShim.h in Headers */, - A08031FDC8C48D7DF1EFDA08866F8249 /* CancelingSubscriber.h in Headers */, - 94D5DF55DE38E5D656484E932FDAB8A5 /* ChannelRequester.h in Headers */, - 72B79343BEEF80D9F1F138B20C2489C9 /* ChannelResponder.h in Headers */, - A2CAC7A8053A56639056B47EE21F3AD3 /* ClientResumeStatusCallback.h in Headers */, - 5D1371E42154175C05431D1C51818977 /* ColdResumeHandler.h in Headers */, - CE2B3B182A9C3A9220DC7E1DA756810F /* Common.h in Headers */, - 93B8902F9E4ECDCF100F6D3D75DF2EA0 /* ConnectionAcceptor.h in Headers */, - F9F252C6CB2D90DB3C37E770875DA4C8 /* ConnectionFactory.h in Headers */, - 8200366131B5B6B9EFDCE7A2F71EF9BC /* ConnectionSet.h in Headers */, - 991AD6B91E69CF3A2F8601C97B028027 /* ConsumerBase.h in Headers */, - 9DC35C14F95C46E9374E20B715F57EB6 /* DeferFlowable.h in Headers */, - 50668E56839E8F930095C023C388E1BF /* DeferObservable.h in Headers */, - 0AACF9DA2E1B6C7D74CBFC897EC87F9F /* DuplexConnection.h in Headers */, - 1A7570D57693A5066C8BA5B8334C9665 /* EmitterFlowable.h in Headers */, - 5F873FCC3EB5E0BB8737881DDB0DFCAE /* ErrorCode.h in Headers */, - 721D32ED454E0AC0D85D80EAEA855ED0 /* FireAndForgetResponder.h in Headers */, - 8672C1643AC92F19E0E0DE401FFEA402 /* Fixture.h in Headers */, - BB03B83D12B84257758E03B1E7B338C2 /* Flowable.h in Headers */, - E24E6BB4A43943E203A932C0E62A7E54 /* Flowable_FromObservable.h in Headers */, - 4BC5BBDB0B438C2FE47E9523FE3EBACA /* FlowableConcatOperators.h in Headers */, - 3877D502A13BEF8A8E61D65114013193 /* FlowableDoOperator.h in Headers */, - C82EB4D749EA8DB61D3C0D6715FC06F3 /* FlowableObserveOnOperator.h in Headers */, - B9AA93D67423904B9BD77404229C8CBE /* FlowableOperator.h in Headers */, - 9884E80C7D6E76D1716EE79DCD264E3D /* Flowables.h in Headers */, - D82F397694B952F8BF294D1848C1B499 /* FlowableTimeoutOperator.h in Headers */, - 72DB98A7214AC51B5BB3D4AB42827DD4 /* Frame.h in Headers */, - E4A1E303B799247E1BFE00752CF53B0B /* FramedDuplexConnection.h in Headers */, - 77D0A7B7F096A7B52315BB33327E9432 /* FramedReader.h in Headers */, - 104F9EF0ED66D535CE89BC7F80EB01C1 /* FrameFlags.h in Headers */, - 5BAD5884C31E4DEC20B64EF102A862D0 /* FrameHeader.h in Headers */, - CB520E5F2F0C61DD826B07B0C8279521 /* FrameProcessor.h in Headers */, - 376CCD7ECFADBCEC62644326EA6F8C64 /* Framer.h in Headers */, - 51C1FFC5E15D1AC45B9AAA9CBEB5A955 /* FrameSerializer.h in Headers */, - 960179F05779105EE3A00DB753C8598C /* FrameSerializer_v1_0.h in Headers */, - 145E5C9889C81DC42A6F91C853150B31 /* FrameTransport.h in Headers */, - 368975B32CE2B1A514EEDE0959DC2CAF /* FrameTransportImpl.h in Headers */, - 9A671261BCF03BE822F27247E58DB967 /* FrameType.h in Headers */, - A70E9982A76216219772B033E8581976 /* KeepaliveTimer.h in Headers */, - 51376E94D372BC7B3BAC6EC9175918F0 /* Latch.h in Headers */, - DF16F4DE7431CE790556C323F0863251 /* Observable.h in Headers */, - 2D431B541A56A364975325B640563339 /* ObservableConcatOperators.h in Headers */, - AAFD05B264409A2D51250C69CC85D958 /* ObservableDoOperator.h in Headers */, - 528CD6DB1523A496CBB45E611E2CDD42 /* ObservableOperator.h in Headers */, - FBEFC6BBE6F4A16DBB5336D798FAA110 /* Observables.h in Headers */, - 7A75F9FFE1C65984AA22CBBC6B10AA0D /* Observer.h in Headers */, - 521BFDE9B74DB13FC9C7541CACCB11B1 /* Payload.h in Headers */, - 5FA5414EBE168CEE9BCB28654ACD0F15 /* ProtocolVersion.h in Headers */, - CD906EEB88C36C351AFB0F56A02B1366 /* PublisherBase.h in Headers */, - 395D879EB82946D7564A77E43D2FF02C /* PublishProcessor.h in Headers */, - FD087BC349ECC6A1FA17FD94380851FB /* RequestResponseRequester.h in Headers */, - CCABE8B4469A6526D2B920DFBC343B30 /* RequestResponseResponder.h in Headers */, - E7C668C15E723EEB34BEA9FE018B660B /* ResumeIdentificationToken.h in Headers */, - 58C6339E7789D7039C3B799F993C4221 /* ResumeManager.h in Headers */, - 69FE42AC5122E56178A4CA34C9743273 /* RSocket.h in Headers */, - 9CCEEFB441CA6B23DFE4EA82F82CC299 /* RSocketClient.h in Headers */, - E1721A2CA9E2F8E0A07ACF6F63792BE4 /* RSocketConnectionEvents.h in Headers */, - 0DEA069FF88127C8E375366F7C8177BC /* RSocketErrors.h in Headers */, - 73CDFB033D0E3825627A6893DE2F4AC6 /* RSocketException.h in Headers */, - 8C61FFCE29A8CBBA864BC03EE36A3DE3 /* RSocketParameters.h in Headers */, - 72FCEFFA1DB40434BBF9EBF5B25F92B6 /* RSocketRequester.h in Headers */, - 5ED9D2F2CBE4B16E1EB40C7DEE1FBEA6 /* RSocketResponder.h in Headers */, - CD538293A04683B38F16D55B9CF35F8C /* RSocketServer.h in Headers */, - 411BC398D773361AA1A8BDB49399CCBD /* RSocketServerState.h in Headers */, - 4CA6AA1E6FC5220A868011C67D9F6263 /* RSocketServiceHandler.h in Headers */, - A289DB69283EBE2268B03595065884E8 /* RSocketStateMachine.h in Headers */, - 2923635EE489552AA7C35BE76C087410 /* RSocketStats.h in Headers */, - 7B490EEED30BC49A2E89D5D491F10A54 /* RSocketTransport.h in Headers */, - EDBF1C362EA0C9F90761D9057516CA3B /* ScheduledFrameProcessor.h in Headers */, - 11BB8F5AF8FE15F95E28A4121695BF90 /* ScheduledFrameTransport.h in Headers */, - 315B81DC2BCD2E169C26F9AE7BF89BAE /* ScheduledRSocketResponder.h in Headers */, - DE58086041812271F3833AC3559B3404 /* ScheduledSingleObserver.h in Headers */, - 7A4B12E8B954775145887FBAA5047500 /* ScheduledSingleSubscription.h in Headers */, - 913ACA8018B736349C7F9E1D8A6AAD25 /* ScheduledSubscriber.h in Headers */, - 66055437E69E3F37EA297BB224C19206 /* ScheduledSubscription.h in Headers */, - 37AD0EC05AB90190AA9D1F16A10A480C /* SetupResumeAcceptor.h in Headers */, - 436F3281CCFEFCC21E7C471E42B620B5 /* StackTraceUtils.h in Headers */, - 6E137A29CD533B6DC7CAFF9AE0CC87F6 /* StreamFragmentAccumulator.h in Headers */, - A6FB08F43AC56A72A3E139510B062C60 /* StreamRequester.h in Headers */, - 509480C2D9CF831F8EE3B684EC35A45A /* StreamResponder.h in Headers */, - FE3C3B0B3883246F0682DE32E4403B67 /* StreamStateMachineBase.h in Headers */, - F5B06968D07E0905DC00289C01AABB9D /* StreamsWriter.h in Headers */, - 23E05DB7ADBD88E8C03CC484D1F1099F /* Subscriber.h in Headers */, - ECE7BD204DA630BB4A0AE60A0B54BE92 /* Subscription.h in Headers */, - D2897D08B1DA43E504A3C24516E47151 /* Subscription.h in Headers */, - 6BDCE2AFBD3084C1B1071F967DB9AFB3 /* SwappableEventBase.h in Headers */, - F440ADBAB2236E5C36D7C95AAA11AEDE /* TcpConnectionAcceptor.h in Headers */, - BD8052DA6717CAD254815B690E2DF5AD /* TcpConnectionFactory.h in Headers */, - 926B192DD06AE82CBAF1291DADFF3A7C /* TcpDuplexConnection.h in Headers */, - F34F42EF7B5ADEE10A59D0AFF3E9F4B9 /* TestObserver.h in Headers */, - 656DE1A2781A099BCF527AE265AC9E87 /* TestSubscriber.h in Headers */, - E8256CCC9C51CDB0B77A25C40B45A640 /* ThriftStreamShim.h in Headers */, - 0B2AE46A2D31D608587776AC93C04926 /* Throughput.h in Headers */, - 5265BB288BE7022F66692322DC4A1FA8 /* WarmResumeManager.h in Headers */, - ); - runOnlyForDeploymentPostprocessing = 0; - }; - 60ED3AC0A888A156B7FB3E755AF62BC7 /* Headers */ = { + 63740EE379ACED9ED6671DACEC428C31 /* Headers */ = { isa = PBXHeadersBuildPhase; buildActionMask = 2147483647; files = ( - DE63DE9A38879C344A03A442684C8E4B /* Pods-ShareRocketChatRN-umbrella.h in Headers */, + 5612514BC1843E72BF91B29AFB21F139 /* RNCConnectionState.h in Headers */, + 66EC00C3BA308273BCE7E2C4D52616D2 /* RNCConnectionStateWatcher.h in Headers */, + 17424544A674FD7632997CF393933D47 /* RNCNetInfo.h in Headers */, ); runOnlyForDeploymentPostprocessing = 0; }; - 627AB77CCF28FE754C1EFDB4F4B322DD /* Headers */ = { + 641451FD7E2D9A26D83E5B734F3CB0F8 /* Headers */ = { isa = PBXHeadersBuildPhase; buildActionMask = 2147483647; files = ( - B0911740F21E6BE59A24761E62BB74F7 /* log_severity.h in Headers */, - A9BAF1CE9D7BD16EED813E56330E3DA4 /* logging.h in Headers */, - CB7660AC037B89E2E575D95CB7D3C7EE /* raw_logging.h in Headers */, - 6698BD3FA72C69E840C846E0AA571CDD /* stl_logging.h in Headers */, - 633839A081D24300E24454B213E95B79 /* vlog_is_on.h in Headers */, + 7FEAA9546ABF03904AAF6FF37C703F86 /* RCTKeyCommandConstants.h in Headers */, + B345CC201A352A71FA8F55C2BE56A0C5 /* RCTKeyCommandsManager.h in Headers */, ); runOnlyForDeploymentPostprocessing = 0; }; - 6315E710FE63AC0E5B4AFF9CF253E145 /* Headers */ = { + 65938A5BAE4E844A40E7F7DB059F50DB /* Headers */ = { isa = PBXHeadersBuildPhase; buildActionMask = 2147483647; files = ( - 27EC06980DAE5F1CB3C930E0876C6E7A /* FIRCoreDiagnosticsData.h in Headers */, - A755794A98FEDE5B9A152DC8CD92F051 /* FIRCoreDiagnosticsInterop.h in Headers */, - DD6A7331C782135D32653E0BED52374D /* firebasecore.nanopb.h in Headers */, + 34BE8FB09CCE0F3CFDB755C268A85CF1 /* LongLivedObject.h in Headers */, + 9C17D635E81D45575679A72F728A566B /* RCTTurboModule.h in Headers */, + 62D45D649C2102A83C9EDAF81892F793 /* RCTTurboModuleManager.h in Headers */, + 203BD4496A347D83A68764D21B1D8053 /* TurboCxxModule.h in Headers */, + 6C9547E8E786FF2068E73789FEC4B286 /* TurboModule.h in Headers */, + 1C8CEAB38EB57E52ECF5EE97058DD32C /* TurboModuleBinding.h in Headers */, + 48E45A8DF049F7BDC91252BE8F97C348 /* TurboModulePerfLogger.h in Headers */, + E90F8C13AF6BAFF2E709CA350BCB9FB0 /* TurboModuleUtils.h in Headers */, ); runOnlyForDeploymentPostprocessing = 0; }; - 63740EE379ACED9ED6671DACEC428C31 /* Headers */ = { + 6679046A26699D972E4B52B5967EC4DE /* Headers */ = { isa = PBXHeadersBuildPhase; buildActionMask = 2147483647; files = ( - 5612514BC1843E72BF91B29AFB21F139 /* RNCConnectionState.h in Headers */, - 66EC00C3BA308273BCE7E2C4D52616D2 /* RNCConnectionStateWatcher.h in Headers */, - 17424544A674FD7632997CF393933D47 /* RNCNetInfo.h in Headers */, - ); - runOnlyForDeploymentPostprocessing = 0; - }; - 641451FD7E2D9A26D83E5B734F3CB0F8 /* Headers */ = { + E2E95D6FA7830E33BA3EE9AE9DE3D66B /* FBLPromise+All.h in Headers */, + 21C253FD7F9CC606AA50D589AE612A12 /* FBLPromise+Always.h in Headers */, + 2C38C9750A22C493F4BCBFB79079F6E4 /* FBLPromise+Any.h in Headers */, + 4CCE595A109C28EED9933E5B007C28F7 /* FBLPromise+Async.h in Headers */, + D47EACEF4C491E62CE53F7117E87E3BB /* FBLPromise+Await.h in Headers */, + 69ED3EBBDEB5AA1561A18AE5164E9ED7 /* FBLPromise+Catch.h in Headers */, + 4F339311C1AD18E857D9ED8EFE7F0830 /* FBLPromise+Delay.h in Headers */, + E1983A58129A6A691A4114E9A6F543FB /* FBLPromise+Do.h in Headers */, + A6FF6D2B4A40536D1A6CC85DC334BFE8 /* FBLPromise+Race.h in Headers */, + BC07EA57E89E8667F520E5CE97DAFC30 /* FBLPromise+Recover.h in Headers */, + AA6D303895690231DE1E07C4FA6935F2 /* FBLPromise+Reduce.h in Headers */, + B08CD093089C7F95C9BB7DCF77B5E640 /* FBLPromise+Retry.h in Headers */, + D2218811250512B253E458D69B2D1125 /* FBLPromise+Testing.h in Headers */, + 5CDDC0B216E78A71F512F8E5506EE7BE /* FBLPromise+Then.h in Headers */, + FE100AD957EC56F19C0CEDFA5E5EFF89 /* FBLPromise+Timeout.h in Headers */, + 5982D5FE4D455DBB6E7ADA774834E49C /* FBLPromise+Validate.h in Headers */, + 135E02AE405969EF60EB9ED19EF69179 /* FBLPromise+Wrap.h in Headers */, + 08995D2EE5F4089D30B7B8F013810D4B /* FBLPromise.h in Headers */, + BB93BE52D233A68865324D8945AA9D12 /* FBLPromiseError.h in Headers */, + 93CDF8F76A7D56406EA25212CD0DB110 /* FBLPromisePrivate.h in Headers */, + B49A006FEA8BB8AA19571D15F7311B05 /* FBLPromises.h in Headers */, + ); + runOnlyForDeploymentPostprocessing = 0; + }; + 6770968D59F2033919470A7DDADF7435 /* Headers */ = { isa = PBXHeadersBuildPhase; buildActionMask = 2147483647; files = ( - 7FEAA9546ABF03904AAF6FF37C703F86 /* RCTKeyCommandConstants.h in Headers */, - B345CC201A352A71FA8F55C2BE56A0C5 /* RCTKeyCommandsManager.h in Headers */, + C06FA6CCCAB0FA3C7E2E692E2EBF097D /* bufferevent-internal.h in Headers */, + 96FF134C18A4439B970F03B496F7BB4A /* changelist-internal.h in Headers */, + E8F5C9AEAB6DD09F50ED3E287A6B4426 /* defer-internal.h in Headers */, + 9F2A8554D5C0D9E9E7FE0176598CBC40 /* epolltable-internal.h in Headers */, + C5CE7CA0B18807D89F8B8E0354A7533E /* evbuffer-internal.h in Headers */, + 431993D2416E7AD8AE3E3D29AEC1C342 /* evconfig-private.h in Headers */, + 7CC138C8173EC240EAB3D392F92972C3 /* evdns.h in Headers */, + B229AF8DAA5562E136BD9CE6C3A663D5 /* event-internal.h in Headers */, + D501094931CCD34DFD14E913A93D9FA2 /* event.h in Headers */, + 44323A3518A22BA571F1F7BB40EAA188 /* evhttp.h in Headers */, + DD2851ED0A97EFA74A05CF1926FC70B4 /* evmap-internal.h in Headers */, + B5BA1D2D77674DEF52E7F62E3D16F35E /* evrpc-internal.h in Headers */, + 081ADD96F6A1869FBCFF970045A59329 /* evrpc.h in Headers */, + 339DAEEE1A1C35769BC811DE1435E024 /* evsignal-internal.h in Headers */, + F115A08C8B42F916C57CF71983A4ADF8 /* evthread-internal.h in Headers */, + C806FC34D3A4202EE85D24716AD0EBEF /* evutil.h in Headers */, + 0E392BC202D6404A17BAC4E9DA6ADEA5 /* ht-internal.h in Headers */, + E98E601A3AD7A6EB88B0A02CC493E94C /* http-internal.h in Headers */, + AB5C7F40BF57EC6BD8B005E5EDBFAFB1 /* iocp-internal.h in Headers */, + E2A5CF8EB3A167636CDC1DAEE4E48A03 /* ipv6-internal.h in Headers */, + A458F30BE426AD87DD780FA334F1C172 /* kqueue-internal.h in Headers */, + 398870254561C27547949B7B640F8787 /* log-internal.h in Headers */, + B6E6950D47A4A060C33E601A0AA0066C /* minheap-internal.h in Headers */, + 352DE05E2DBDD12D37C47186E570284B /* mm-internal.h in Headers */, + 8E370E2F7FAA32312C1DC80F059B3A9B /* ratelim-internal.h in Headers */, + 39BA91C02FE47CE43BCDC08C2E5E7A00 /* strlcpy-internal.h in Headers */, + 67D58F41763490192AAD1279243C11D7 /* time-internal.h in Headers */, + 7DDFEFEC58E33F77D00C9ECB556BCB67 /* util-internal.h in Headers */, + ); + runOnlyForDeploymentPostprocessing = 0; + }; + 6AB7C443B0BFD02AC330C3E009FE6B7D /* Headers */ = { + isa = PBXHeadersBuildPhase; + buildActionMask = 2147483647; + files = ( + 45DE61173BCAAD3F4F939C0CC4A2D930 /* RNFBAnalyticsModule.h in Headers */, ); runOnlyForDeploymentPostprocessing = 0; }; @@ -24757,21 +24206,387 @@ ); runOnlyForDeploymentPostprocessing = 0; }; - 6ED5BB983BE2B68121F58CF0130C9D59 /* Headers */ = { + 6FBB12A17748E2D2C81C58C50D798A91 /* Headers */ = { isa = PBXHeadersBuildPhase; buildActionMask = 2147483647; files = ( - 20597B4AA31830D973C0D549DA719033 /* RCTConvertHelpers.h in Headers */, - D5A5E45A6B3AE55F375F492CE662497C /* RCTTypedModuleConstants.h in Headers */, + 42FF2861D381E4E6636B147647E28D03 /* EXConstants.h in Headers */, + 9893816C3E70F236B24AE27C7E8E771D /* EXConstantsService.h in Headers */, ); runOnlyForDeploymentPostprocessing = 0; }; - 6FBB12A17748E2D2C81C58C50D798A91 /* Headers */ = { + 70826F47AE607D404D12F038A0C45B9D /* Headers */ = { isa = PBXHeadersBuildPhase; buildActionMask = 2147483647; files = ( - 42FF2861D381E4E6636B147647E28D03 /* EXConstants.h in Headers */, - 9893816C3E70F236B24AE27C7E8E771D /* EXConstantsService.h in Headers */, + 57E1E207C3AA73C2F1F51DAA6138D691 /* Access.h in Headers */, + 5DD7901645984BF0363D75BF9D57406E /* Align.h in Headers */, + 38B90A03D5ED6B088A18AF457DA2D36A /* Aligned.h in Headers */, + 3757283125FD4BFA326450C67888FE94 /* ApplyTuple.h in Headers */, + EECA1597BBFE2246D428A7B74996395F /* Arena-inl.h in Headers */, + 6330A3C476B9BCAF3B7E74AF4F7F0F52 /* Arena.h in Headers */, + EDF444B58FC325555F98078ECC7DF12B /* Array.h in Headers */, + 0710A355E522F6D9B0552EDF30543409 /* Asm.h in Headers */, + C3A50E06483CF66B0A684158AA6DCE32 /* Assume.h in Headers */, + CD9B7442FBE0AB4A70531A9C2FEAC02A /* AsymmetricMemoryBarrier.h in Headers */, + 22FFF099533551B987BD31888D94EF57 /* Async.h in Headers */, + E8E818FC448EB1997B34EA35A9DE570F /* AsyncTimeout.h in Headers */, + 6F11ED230882BE37F99FB78E9DAE3F47 /* AsyncTrace.h in Headers */, + 1D0CF2FBD8951E68A489FFE9CC4116F3 /* AtFork.h in Headers */, + AD0F71220B985E21D94C29A8B5F706DD /* Atomic.h in Headers */, + 4514E86B3B587A8B117E16A1A94A265E /* AtomicHashArray-inl.h in Headers */, + 4677B4B03447ED10448784B0C158951E /* AtomicHashArray.h in Headers */, + 46167FB48070648AFE43F22E3CA41F3C /* AtomicHashMap-inl.h in Headers */, + 76380737B6CC6FFC6288E1B45DE75B0D /* AtomicHashMap.h in Headers */, + EE1CE920ADECC06276A3BFF8E9807521 /* AtomicHashUtils.h in Headers */, + 03B896328498C56507DD71A99447EBD5 /* AtomicIntrusiveLinkedList.h in Headers */, + 98FDF1D9516D2D0610264B9F82382BE1 /* AtomicLinkedList.h in Headers */, + DB7A96EA50076FAF5C5981D0A44AD264 /* AtomicNotification-inl.h in Headers */, + 76D660277589347BDABE77D125943CFD /* AtomicNotification.h in Headers */, + 208F59F8F4DDFD1F31C4A584F2D2D6A1 /* AtomicRef.h in Headers */, + 6CCF624053F805C74C7E615D658778C1 /* AtomicSharedPtr.h in Headers */, + 94EDB8C1ED885303C9E1B89917DA04BA /* AtomicStruct.h in Headers */, + 92C109218DEBC0B9AC922096A6618A0E /* AtomicUnorderedMap.h in Headers */, + 600F5D2CEEB45FF0D29224EBB96D489C /* AtomicUnorderedMapUtils.h in Headers */, + 96E4157A7B26CE4ED038A26FBEC6EC79 /* AtomicUtil-inl.h in Headers */, + 8D6493647880B4CF9CAF8158579951DD /* AtomicUtil.h in Headers */, + 7ACD7AF8CD225295970598A604A023D4 /* AtomicUtils.h in Headers */, + 6E7D8A95A0B012464E0893071E214D3D /* Barrier.h in Headers */, + B1A58666C01F0F22767697BAB808E499 /* Baton.h in Headers */, + 286E741BE1156A0D49FCDC37E4A71715 /* Benchmark.h in Headers */, + 3E964E671B26681C68DB97CABC124D2E /* BitIterator.h in Headers */, + F80507256C7CBFBE1C02D18C61F59898 /* BitIteratorDetail.h in Headers */, + CB1C851FAD6BA3A099721881347CB488 /* Bits.h in Headers */, + CC98C81B98AAAF83BF1ACAE66E4F8489 /* Bits.h in Headers */, + 836A51775B71B5F0BAFA7B9BA24CFCB6 /* BlockingQueue.h in Headers */, + D1425F30444579F806FC4B1BD409CA49 /* Builtins.h in Headers */, + 4D7556973BE5B3F1662521748D3B9F4D /* CachelinePadded.h in Headers */, + 3FAD1171562AC6B3B94C3ACC89462B93 /* CacheLocality.h in Headers */, + ED79E59832591C930E39B67C290FC884 /* CallOnce.h in Headers */, + C33F6703A3E7A8851BD1428FC5F0FF09 /* CancellationToken-inl.h in Headers */, + 0C3FB7EA2727EFEA7AEB4F767DD2163D /* CancellationToken.h in Headers */, + 87DC91BAC5421645CF68B488E44BFF12 /* Cast.h in Headers */, + 7C2000E0D92D3813E2C2A94D3ECA3CA4 /* CheckedMath.h in Headers */, + 024FBAD949FFCC68C2C288CAC5A20C39 /* Checksum.h in Headers */, + 9CEC37E28C89C5B9FD0A59B5A9045B9E /* Chrono.h in Headers */, + 25B5E246A78A8F10CCC183E033EA6D65 /* ClockGettimeWrappers.h in Headers */, + 64DDDC1006BC3D23CA9D28A4BA0E1816 /* Codel.h in Headers */, + E9E84155104A92D42E9B535784E45D94 /* ConcurrentBitSet.h in Headers */, + 8B8FA3BCFD479CB549D3E0B5D89166A7 /* ConcurrentHashMap.h in Headers */, + BC4409059B1995A1B6CA02D1D1E7459B /* ConcurrentSkipList-inl.h in Headers */, + D189D82E0DC5BDA9D6DDB7A411D89293 /* ConcurrentSkipList.h in Headers */, + 311554A8174B845BC22DA18303E70A04 /* Config.h in Headers */, + C7B985203B04AAB64582FE65EB03B940 /* Constexpr.h in Headers */, + A3FCBBD9499DF2F928B73AA9E73AB960 /* ConstexprMath.h in Headers */, + A040B5D6EA66BB0D2F8C4D6E62DEF71B /* Conv.h in Headers */, + 7A19099D91A4373D37645A2E56479CA0 /* Core.h in Headers */, + 93492D92E7A161A1EB9612212285EACF /* CoreCachedSharedPtr.h in Headers */, + D2FE56AF7C37E3748048B570511C33AB /* CPortability.h in Headers */, + DB79DB99DAB83E85C34384892E1BC8CE /* CppAttributes.h in Headers */, + C481E845585D594A62D28FBF0CA76BB2 /* CpuId.h in Headers */, + 2DBA0F8EF132A08B31930703FE793D57 /* CPUThreadPoolExecutor.h in Headers */, + AAD3DF291B066887AD9D88839C60607B /* CString.h in Headers */, + 1B5214E938F6595C2F3CC2C5206DA765 /* Cursor-inl.h in Headers */, + 89FD11C93513AD72C332859369274F9A /* Cursor.h in Headers */, + A0066F4FFDD97897BBFF47545C706CDD /* CustomizationPoint.h in Headers */, + B00C07CE84DD910B3689D022D256F9D7 /* DefaultKeepAliveExecutor.h in Headers */, + 7CC918116BD4A030FEA5557A6C0BB08B /* DelayedDestruction.h in Headers */, + 38EE37C9B51608646ADC1D05EE79A9B7 /* DelayedDestructionBase.h in Headers */, + AF3C6B75C0E54C99EB6F4C915210F3C2 /* Demangle.h in Headers */, + 618A55190EFA824BD1AD57C09AFF79D5 /* Demangle.h in Headers */, + 236337A18A1F1F5B2669AA0959D78451 /* Dirent.h in Headers */, + CD5AC289FAF00B429307905823AA63E2 /* DiscriminatedPtr.h in Headers */, + 319601F655E055B0BAA4B5B6940CFDF5 /* DiscriminatedPtrDetail.h in Headers */, + 69E0FC1ACC41E0B05C2202BB45C9D58A /* DistributedMutex-inl.h in Headers */, + 401FB01868892C92FB1FA0B4437E11E2 /* DistributedMutex.h in Headers */, + 0AF8457E468A285F8F6CD45B587D41A6 /* DistributedMutexSpecializations.h in Headers */, + 807A4A7A0A4557F86C82FCE5DB7EA52C /* DrivableExecutor.h in Headers */, + 0E7FBEE01CB0B7C1CD117BF6B6961B8D /* dynamic-inl.h in Headers */, + 34022629C642FDCFE49651FF1CBB78A9 /* dynamic.h in Headers */, + A236DBA54982FB352A1B144C0C8CD9DB /* DynamicBoundedQueue.h in Headers */, + 24968C13D7489BCE26941C507EE637EE /* DynamicConverter.h in Headers */, + 523F5350F8CABC24C8BF20222FE99D3D /* EDFThreadPoolExecutor.h in Headers */, + 5A2990F507FB948AD9EA29E382E4AB9C /* EnableSharedFromThis.h in Headers */, + 13AE964355BF3A30F4B769AE55473D0C /* Enumerate.h in Headers */, + B3CCA4AAFECE286A26AACDEECDC48A10 /* Event.h in Headers */, + AC12BC79F1697390DF93AB1494DFC653 /* EventBase.h in Headers */, + 302E6C6C8AC11F575B24769D63047BB9 /* EventBaseBackendBase.h in Headers */, + C519955245AD50173A54F11EC9BFE1DF /* EventBaseManager.h in Headers */, + 8B7C7D5A916F9B6B49B4EA59C59E9ED4 /* EventHandler.h in Headers */, + 959E5619490B4E1DE478AB8E99FB529D /* EventUtil.h in Headers */, + C86A58FF8518861E61562D8CEF6BED74 /* EvictingCacheMap.h in Headers */, + 949C47FF1313A2E5FE1880FD0D03A057 /* Exception.h in Headers */, + 3A2E34FC266A7C71012BCC38B398A394 /* Exception.h in Headers */, + 2DF706914A075A8748310140EB67E793 /* ExceptionString.h in Headers */, + 6157A70ABC3633D6CE1629D02DBEC225 /* ExceptionWrapper-inl.h in Headers */, + E018DEE8B7C25C2488263378FE3DAD85 /* ExceptionWrapper.h in Headers */, + D169258E327AAC9F18AA5C649D168338 /* ExecutionObserver.h in Headers */, + DBC71DA62D9D4914708A33D40A8B4F4E /* Executor.h in Headers */, + 1507CD09ADFB633C1483488855ED5195 /* ExecutorWithPriority-inl.h in Headers */, + 83783EC64E9E5793C4998FA55C630CB1 /* ExecutorWithPriority.h in Headers */, + CCAF517A7DD39D7D335790A74DCCF89A /* Expected.h in Headers */, + 26AC8294F4D2D53A0EAB5E65CBB84BE0 /* F14Defaults.h in Headers */, + 525BA54664C2AF09F7B37D1B22E0ABEC /* F14IntrinsicsAvailability.h in Headers */, + FA21DBCA5B9AE16019AA63F13BE54937 /* F14Map-fwd.h in Headers */, + 1A3988D871F5207C7C14A5F537A270DC /* F14Map.h in Headers */, + BB55E270F826513289F5F604366C5007 /* F14Mask.h in Headers */, + ABFC0514EAE2BD4C52B0103D4F54307A /* F14Policy.h in Headers */, + 732C3E41AB34027F0FA280EACB1D960E /* F14Set-fwd.h in Headers */, + D7289043640454906709E835422F50C2 /* F14Set.h in Headers */, + B4FF0B64499456432323BB1C2CF2126C /* F14Table.h in Headers */, + 9F2054E43060BDCFB7E580C6DE797709 /* FarmHash.h in Headers */, + 3B249E976B7A75EF78D0FAA37103682F /* FBString.h in Headers */, + 2D895E2938EF7EFAB0ABB202F9CAB4D5 /* FBVector.h in Headers */, + 7F425E6EC0E8F9924787CA98A5997563 /* Fcntl.h in Headers */, + 9DB36BDBE279E651F8DAAFF4A176D7D3 /* FiberIOExecutor.h in Headers */, + F42AF0129F0E06394778EC1B79FD17A4 /* File.h in Headers */, + CAFFB02CD8E8D5813B9C61BDE4577699 /* FileUtil.h in Headers */, + 47AB67717D42D6ED52BC94B92C0C8FA9 /* FileUtilDetail.h in Headers */, + F68CF747A0CC472BCDB8B7C36C16188F /* Fingerprint.h in Headers */, + B98B470DF271039376B24110AE97275C /* FingerprintPolynomial.h in Headers */, + F86B1EFB1FD596EAD2C5AF91C929F9A4 /* FixedString.h in Headers */, + FC5820F09EE26E934DDF964EF8703ABD /* Foreach-inl.h in Headers */, + 40726A2D8288C2FF2224D0E00D989654 /* Foreach.h in Headers */, + F2ED7127FC52A47E69ABD112D32ED265 /* Format-inl.h in Headers */, + 9A0E2720619BA134EB724514F5ACAC99 /* Format.h in Headers */, + A8305B70987E317A842F1CCCB2044773 /* FormatArg.h in Headers */, + 7018BF6E51D08F53749EC182A6CCB2FD /* FormatTraits.h in Headers */, + C2C36B5C4B1CF3CF0D20C253172D81F1 /* Function.h in Headers */, + 700D42B4A7AF81A17C26200CAF1A9386 /* Futex-inl.h in Headers */, + F46C9F6FBDC502FFF64A5E16D6745E62 /* Futex.h in Headers */, + D9B92966AAB7317F372819FA21546850 /* Future-inl.h in Headers */, + DEEDFC61EB9BEE19F72BAD858BE52B72 /* Future-pre.h in Headers */, + 44C6A5124C73DBF765C4B1C37479F012 /* Future.h in Headers */, + 518A164797C7638936C7BA6C59E60EC0 /* FutureExecutor.h in Headers */, + F2487591E06F520FA4F25DE2EC5C0844 /* FutureSplitter.h in Headers */, + 367F7744E737A2EE1C5A7A965E004A6F /* GFlags.h in Headers */, + 105F962932C375B95CC8308D0E73ADED /* GlobalExecutor.h in Headers */, + D36CA62D71D994B530264DBB6E1A2BD2 /* GlobalThreadPoolList.h in Headers */, + 3124199D85FFF022B824D2B885BDC318 /* GLog.h in Headers */, + 984926EB982BC571152530A84BA80D04 /* GMock.h in Headers */, + 7CE15141692044F9F9B955CBE7DED56D /* GroupVarint.h in Headers */, + 2967B0EE9F56A7195E72FE42A13A1479 /* GroupVarintDetail.h in Headers */, + 5AA5848E4408C9ED4B43EBBC6FBB7793 /* GTest.h in Headers */, + DD29B3D337FF7B39A5460294D28FA75B /* Hardware.h in Headers */, + BB6B43A4724A9D8D65DEA277F2499EFF /* Hardware.h in Headers */, + E441927F34A6AB688FC41FA527C02995 /* HardwareConcurrency.h in Headers */, + 45071B92EC3E13ECC2ABDC5C1A38EA71 /* Hash.h in Headers */, + 422DDA622ACE6072DACEE88BF34F4BF1 /* Hash.h in Headers */, + 719B2136E608DB4D96E4921A95EBF8C3 /* Hazptr-fwd.h in Headers */, + 220A9C996CD7F9214C4B87CD800F41AC /* Hazptr.h in Headers */, + 379E5555329A6A9F0BEB5ED2D8216392 /* HazptrDomain.h in Headers */, + D2479E83025D3FAA6D7A4847955A8EFD /* HazptrHolder.h in Headers */, + 87D3F9D8FB75BD4558CBF71F2535E33B /* HazptrObj.h in Headers */, + B195EB4DB58D3DDB71BA471920F84BB0 /* HazptrObjLinked.h in Headers */, + C5990191EE0A7476C5D040F5FCB35BB2 /* HazptrRec.h in Headers */, + 63288EE3C17B02150EBB7F16344BBE50 /* HazptrThreadPoolExecutor.h in Headers */, + DA636222DA9E75CF2C38CA8DC92733C4 /* HazptrThrLocal.h in Headers */, + CCF6AB6DA7684AC70B68A931D5DA4A66 /* HazptrUtils.h in Headers */, + ED0D7E113F33D9D227A1BE84CEADA364 /* HeterogeneousAccess-fwd.h in Headers */, + 2675721FA4234216EAC94BCE945B1BD2 /* HeterogeneousAccess.h in Headers */, + 3350775E7C927FDC80CF1CFB4B720A95 /* HHWheelTimer-fwd.h in Headers */, + 272BC9F9E75CD049D1BB806035D4DA4D /* HHWheelTimer.h in Headers */, + 945AC29FAE9335F4C431A6FCE2C1BAD3 /* Indestructible.h in Headers */, + 8EF2064F11511C6D37784988B170EEA9 /* IndexedMemPool.h in Headers */, + CFA4CB8722F057B6ED8AF4A8A288C6AB /* InlineExecutor.h in Headers */, + CE56774D875A3E23D375EFC2A34A29F0 /* InlineFunctionRef.h in Headers */, + 545E685E2CDA721AC7A171A5252B5F32 /* IntrusiveList.h in Headers */, + 382128E0322DD168BD2A06F2643DFE08 /* Invoke.h in Headers */, + 7E57A67B85B4EFE7EE0D28BBD4EA7655 /* IOBuf.h in Headers */, + DAB257F17F01DDB61220FEFC392C0779 /* IOBufQueue.h in Headers */, + 42AF1C93129B26746D69420AABC40E9C /* IOExecutor.h in Headers */, + 4D30044BD67D3A8A975BA8682EC93811 /* IOObjectCache.h in Headers */, + 4EC0906A0A98125ACEA7B7BFBC709EC4 /* IOThreadPoolExecutor.h in Headers */, + FC55DA607FE0D3E26E24D2E2897F1B90 /* IOVec.h in Headers */, + E77A45BEBFC3EB67DD1C35A1186ED2C6 /* IPAddress.h in Headers */, + 55B2F348B92F5A5D975F6F8A34DB0076 /* IPAddress.h in Headers */, + 790C5920CBBBFBCBFAA33491816B3676 /* IPAddressException.h in Headers */, + 56431FB55D2B2119EB21495F94EE4734 /* IPAddressSource.h in Headers */, + 268F67BA110C335FFD332DCCF198C9EC /* IPAddressV4.h in Headers */, + F0CA5ED2CEE279E90CB1D9E9BE328E77 /* IPAddressV6.h in Headers */, + 09C6833F3E7ECB787699922EB7DD9833 /* Iterator.h in Headers */, + D4476CE76C8ECDCA06F0F0B9CBA457E6 /* Iterators.h in Headers */, + 4E1C9A783988796E37DECB8B8B750D66 /* json.h in Headers */, + 630ED9879AAE930AC188219BC0A807AA /* json_patch.h in Headers */, + 16C2806AECF9D3AA6283E295081DF67C /* json_pointer.h in Headers */, + 434E9D60B617E6257BBDB07DC597116C /* Launder.h in Headers */, + 92C58C0EDB296125AFCBA2BE4E598973 /* Lazy.h in Headers */, + F8FF72955ED1B9B0877886768D0AEEE0 /* Libgen.h in Headers */, + B2EAA18BADAA597FD9B4E05C15C5A4DF /* LifoSem.h in Headers */, + E387D9107BB09A41E8BDA496FA81F858 /* LifoSemMPMCQueue.h in Headers */, + 0624ED818D1DA2DFE0F1E8F494360C55 /* Likely.h in Headers */, + 65D70C58E941167C0699B8A56051BD05 /* LockTraits.h in Headers */, + ADCD194977BC549254781B85515B1B20 /* MacAddress.h in Headers */, + 741690BBF551C34EA3401F2D23ADC094 /* MallctlHelper.h in Headers */, + 477C7D8BA4A317BAB719A37FCBE8FE51 /* Malloc.h in Headers */, + B71EBDFBD7CFD95788F8C06C058B2BCF /* Malloc.h in Headers */, + CFF7D74204321A47575654D5B5EE947E /* MallocImpl.h in Headers */, + 12973860A04C8D66CB33D43657920BD7 /* ManualExecutor.h in Headers */, + 3061DA6EB7B3AFDEAC3A9EE7C274EDCE /* ManualTimekeeper.h in Headers */, + 80FEFFE4F05655F1A4CE360FC82C6B55 /* MapUtil.h in Headers */, + EF9DCDBFE2A637CB773B34C0F559789C /* Math.h in Headers */, + E61F391A1D3DC3C1DACEDE431379B169 /* Math.h in Headers */, + 48FA394C94334DB09428BE87EE7B05CC /* Memory.h in Headers */, + D9D0D0FD8A6F012C2C0AFA2859C6E342 /* Memory.h in Headers */, + 3ECA98F320C2F2B88B9355199278B37B /* MemoryIdler.h in Headers */, + 9BC7B68D8579E1BFE761C57D24C8B9AF /* MemoryResource.h in Headers */, + 60087E2482A9EBBE1E82AD9F7BB96D90 /* Merge.h in Headers */, + EA9DDD5FB941931D26486E4DDE96502C /* MicroLock.h in Headers */, + 16F6C413CB5A40D9F012015E3FD4D125 /* MicroSpinLock.h in Headers */, + 445C459D23548C39A8579598F51990DF /* MicroSpinLock.h in Headers */, + D325E0621D44CDD9DF1BCC9357420927 /* MoveWrapper.h in Headers */, + ACD9ED0DD875A30CFD11705BD464CFCC /* MPMCPipeline.h in Headers */, + 50973F0D946B06A5D4FA5775C72E8DA4 /* MPMCPipelineDetail.h in Headers */, + 7A85C92E0CEFE10B8F7ABFFD52AD804B /* MPMCQueue.h in Headers */, + D6CFF803D5CFBB47C2881B0675E96560 /* NamedThreadFactory.h in Headers */, + 3FD0458202BD781415FB40B90C0F3440 /* NetOps.h in Headers */, + 681A3588F0EB3D8EEFB7BE2ED6624D4A /* NetworkSocket.h in Headers */, + EA42B95990D7189F7CC3503A7ABB0523 /* NotificationQueue.h in Headers */, + 0C92C424934794E9115D2C2BD970B28C /* OpenSSL.h in Headers */, + BBDEBF3A01D956071B6114BB2AEEDBA6 /* Optional.h in Headers */, + CCD35739CAD3C8AA145B2A874D1379A4 /* Ordering.h in Headers */, + 5446271D5ACA4950004F29AD6CC74473 /* Overload.h in Headers */, + 9DBE3DDC938534DCCE2B3D4B99F7A5FB /* PackedSyncPtr.h in Headers */, + 9447CCB3925D3C6D55CBE6E394FCEED2 /* Padded.h in Headers */, + 7606EDCC6BBF7F0EA553C6B324CDB6B0 /* ParkingLot.h in Headers */, + AA9DE81D154F15A0E8E5D6A146ABE6E1 /* Partial.h in Headers */, + 16AE6CCC7D6E8B90193A5B409E1DF7A1 /* PicoSpinLock.h in Headers */, + B5F951384C8CA814A071DC0C47D91AAB /* Poly-inl.h in Headers */, + 042CD1B77F9434DA0DCE07B7CFF23F85 /* Poly.h in Headers */, + 790B5CE4AA5E74BE3EA76EC5A688F497 /* PolyDetail.h in Headers */, + 5C5B16C8BE96269E53355F15E2501B78 /* PolyException.h in Headers */, + 95A24AC81C6A0F5A0E4FFEAB2F25CE4F /* Portability.h in Headers */, + DD2A2AE68CE42AD07A29CD9F8946A99A /* Portability.h in Headers */, + 8232E29D7F834AB5186A21BDFA134BCD /* Preprocessor.h in Headers */, + 607A95E0FDAE53A156E20E5C9E6E7B02 /* Pretty.h in Headers */, + 4AE958548F5C64C47213734EFD752C5A /* PriorityLifoSemMPMCQueue.h in Headers */, + 182BB128759D1A9E3F70E1740F07330E /* PriorityUnboundedBlockingQueue.h in Headers */, + 11DE6CA0BAD5412AC7AFE66D7C57A1FD /* PriorityUnboundedQueueSet.h in Headers */, + CE59BB6674B896CA5310390BF09ECB79 /* ProducerConsumerQueue.h in Headers */, + 1A7E669690A3B5BFE8D7A29A6B5EEE53 /* Promise-inl.h in Headers */, + 99D3AF6AA0279EBE5D3AF82E873E945D /* Promise.h in Headers */, + 2F7B5754C8FBAA85A036D509B89076F2 /* PropagateConst.h in Headers */, + 83BA10CEAC0431BF6547DDAD4F1E70C8 /* ProxyLockable-inl.h in Headers */, + E0E42613D848A95A8F2D8801C37A7225 /* ProxyLockable.h in Headers */, + 813A9CF9C4175FD5398A975C668165D3 /* PThread.h in Headers */, + 24579D1F6152E624C671094685FD08D8 /* QueuedImmediateExecutor.h in Headers */, + 1C0828C7ED774A64A5D24639500F9A3E /* Random-inl.h in Headers */, + C0EBF7D6EAE437580D3DFFECA6ABCA08 /* Random.h in Headers */, + 7FAFE4D7C1A540DEEBADB659F62F7F86 /* Range.h in Headers */, + 9400128348D45A0FED132A83699834BC /* RangeCommon.h in Headers */, + 811426BA8FB57EEC116E6FDE2F62A12D /* RangeSse42.h in Headers */, + 1860012B6568D74080F8AC4063756EBE /* Rcu-inl.h in Headers */, + 5C3CD7B7E4EF0D8B4422EFD0BAB2DFB3 /* Rcu.h in Headers */, + D703FA300E176F6B75B132E37E9E6087 /* ReadMostlySharedPtr.h in Headers */, + DC85353AD13F3816EA405E01EB66B867 /* Replaceable.h in Headers */, + AED2DCF68D90B01D7C9032A539168D70 /* Request.h in Headers */, + 7AED70C02481B274DE0DEBAB55A8A656 /* Retrying.h in Headers */, + 97F25565D1C648496CB5ED1C657F5086 /* RValueReferenceWrapper.h in Headers */, + 997CEEC487FF1ABD2D726AD80FB6DE3D /* RWSpinLock.h in Headers */, + 79DF1EB7C3BF47FD2420255F8EB324B1 /* RWSpinLock.h in Headers */, + F488130244160FFE0CD34B1744F1A67E /* SafeAssert.h in Headers */, + E36A9707816C942D8994CB3C6576951E /* SanitizeLeak.h in Headers */, + 9B50245C4A8AB112360D512A5E21983D /* SanitizeThread.h in Headers */, + 19314400D1A74DED7FD7D1C3C90D74C1 /* SaturatingSemaphore.h in Headers */, + 0B9A228FAE63BBBFB0D38338186B4100 /* Sched.h in Headers */, + 19891171D63F6E4B054E5D97A7D8A3A0 /* ScheduledExecutor.h in Headers */, + 645AA02DA2942C12593671B5926BC993 /* ScopeGuard.h in Headers */, + E338F3D6E75E8A95683F60863C75E8BC /* Semaphore.h in Headers */, + 75BCD38B623FA6BD81C8C0C88F55F49A /* SequencedExecutor.h in Headers */, + ABFC4AB95E959C5173CD601E68042C8E /* SerialExecutor.h in Headers */, + 34F9E8304AEAA062D74CCC7F66B1E658 /* SharedMutex.h in Headers */, + 05BA66332B3694407C999AF9FF290D0F /* SharedPromise-inl.h in Headers */, + 6EEBF0CB438BE9AAA9F0BB7F7FEBB3BD /* SharedPromise.h in Headers */, + 043A3C60F5332C73F2F5115F82814323 /* Singleton-inl.h in Headers */, + 47436FBEF715BA72E2A2DDC9A7012F96 /* Singleton.h in Headers */, + F32DC5163756318774F3DB5285D99839 /* Singleton.h in Headers */, + 729336D22B514CF210ED7CA801C32FD0 /* SingletonStackTrace.h in Headers */, + B85B4DA7F7F6FE109B8423F1D5A3E0EB /* SingletonThreadLocal.h in Headers */, + 39BEA7A8A8B3FD346C92A6F3634BC628 /* SingleWriterFixedHashMap.h in Headers */, + A7EC828FEB9656F986B0DD35CC40439A /* Sleeper.h in Headers */, + 84B580CC79E17C65966A8B4F8A5F6E78 /* SlowFingerprint.h in Headers */, + A22F4EE8941D20398A761A2EFBEC1EC2 /* small_vector.h in Headers */, + F65B41A26C537E1A7F2C3288918E0846 /* SmallLocks.h in Headers */, + BDDC39292702FA9E2911E19E05B40B1F /* SocketAddress.h in Headers */, + FC655B2D5DB5C5B900F24435DE899DF1 /* SocketFastOpen.h in Headers */, + B6BBC0CF55E00005CFF88D8F928979AC /* SocketFileDescriptorMap.h in Headers */, + 02A6C324D88E16F0A1702FEA16DBD392 /* Sockets.h in Headers */, + B2648FA9657827BF7E1758B48280B849 /* SoftRealTimeExecutor.h in Headers */, + 476E26DBF97E507380F5864ABE6ADE84 /* sorted_vector_types.h in Headers */, + D585CBB207964E76A58F90F0456AA6D9 /* SparseByteSet.h in Headers */, + A5581EA3A46F46998B3402DF4FD26D56 /* Spin.h in Headers */, + E59F15C62E226A9867CB2D8DF229BAF5 /* SpinLock.h in Headers */, + 7AE6DCA21982F773FD1AA5DBD5AEAFDC /* SpookyHashV1.h in Headers */, + 3B5545B85768C1B05082322D8CCE6047 /* SpookyHashV2.h in Headers */, + F3A4B0E039471A76DC881889F1C01975 /* Sse.h in Headers */, + 88169C2D768B45AED334A3CEA05F6BA1 /* StaticConst.h in Headers */, + 74025AA92E23D9C1BF9A40260E53FB74 /* StaticSingletonManager.h in Headers */, + 0F352681CB362352125563F110EA8004 /* StaticTracepoint.h in Headers */, + 4BD86A792CE46A907C03E15CA7A5843D /* Stdio.h in Headers */, + 2A975BB1A61E4B427CF92C79AE596B61 /* Stdlib.h in Headers */, + 3518578A0867A0CF0035AFB9DAE6E126 /* stop_watch.h in Headers */, + 9E83E078DE2631758759A75ABF4E5FB1 /* String-inl.h in Headers */, + 7DD3AD1B087FD022A9517DDAF3C4A407 /* String.h in Headers */, + A44A9B20EE3B845331EE5B4A67AA9765 /* String.h in Headers */, + D6CDCE0D92C989DA5B1D41D325CA5D43 /* Subprocess.h in Headers */, + 5B8E1A9CCF70ACCFCDC9BCC443BD3ECD /* Synchronized.h in Headers */, + F533E58C130B0DF773CE9CB329655C01 /* SynchronizedPtr.h in Headers */, + 7D38E9F6E2437B9934F20E1E42488520 /* SysFile.h in Headers */, + BC8BF369D5647696EA998318A6122CCE /* Syslog.h in Headers */, + 970BB180F89D45C1D5738B30CD626F4B /* SysMembarrier.h in Headers */, + 28281B792B0815FCA9E02AB4BF44308C /* SysMman.h in Headers */, + F190CE0B90F3D0D6D4A040CE30991E2A /* SysResource.h in Headers */, + C2D7FBB633959656648917E888B7AB2A /* SysStat.h in Headers */, + 31931718900441593F276E931ECF70C6 /* SysSyscall.h in Headers */, + 5A0D76399C3E75346B00C6ADB0E61356 /* SysTime.h in Headers */, + 38F9CAAA19803432D27A0CAA32143EDB /* SysTypes.h in Headers */, + 270BD2C56BB4AC932956A4CD4A67EFE8 /* SysUio.h in Headers */, + 56D4677EA56DB9249D95C85CA9630849 /* Tearable.h in Headers */, + 47797B39A9B3A15DBBB9F97AF4C8311B /* ThreadCachedArena.h in Headers */, + C4E118C01216537A1778633343153F40 /* ThreadCachedInt.h in Headers */, + 906AA563191A2917C74B3930E5A7C5F1 /* ThreadCachedInts.h in Headers */, + C07535B18DE53B06931208E8BBC63F48 /* ThreadCachedLists.h in Headers */, + 036F1B3EB0007ECEA9C05DA526BC55EC /* ThreadedExecutor.h in Headers */, + 4431529E609EBFEFCD9A9F0522622860 /* ThreadFactory.h in Headers */, + 0BB7999E1A365E1FDD92D916C4A62328 /* ThreadId.h in Headers */, + 7851A11228576A90645578D5B2E62E59 /* ThreadLocal.h in Headers */, + 100C21A02143035E1CBE33AC1B76F326 /* ThreadLocalDetail.h in Headers */, + AA68F31532D64A43A6EA754E5DFC8740 /* ThreadName.h in Headers */, + 8796DC2E1B2C24972B6A0F5534461FB9 /* ThreadPoolExecutor.h in Headers */, + 260FD019B03AF9C56B34BAC1EA54881A /* ThreadWheelTimekeeper.h in Headers */, + B0A2052358C3CCEB35B207AABBBDAFEB /* Time.h in Headers */, + 305520E619756675DF9D699007D3E8BE /* TimedDrivableExecutor.h in Headers */, + B992C3CE7E2F2F841B434224A5A7B2A2 /* TimekeeperScheduledExecutor.h in Headers */, + 304CB786717E7B5008BF6E94B27D7DAF /* TimeoutManager.h in Headers */, + 523CCF68F2261FAC0A34914EF58910A0 /* TimeoutQueue.h in Headers */, + 447717119C6B75EFF74006F60AD2A14E /* TLRefCount.h in Headers */, + 32A05DDE22FDA7908D1269F750A05974 /* TokenBucket.h in Headers */, + 86B662617F5CE4B53B09240EBB5B6F69 /* Traits.h in Headers */, + B229A9BB9FD57AA77767FBC8485F8D50 /* Try-inl.h in Headers */, + B7831DFDF0E2C0DA952997F81925A535 /* Try.h in Headers */, + E1059E5C254C39B23A4E5611F0A0F3E9 /* TurnSequencer.h in Headers */, + 2BA85B354BB0620219F27B10C11A0253 /* TypeInfo.h in Headers */, + FD8D2C962D6D5FB9072436C2712FFEA6 /* TypeList.h in Headers */, + B1D0D8A23ECA8895A427E9B890CF3FEB /* Types.h in Headers */, + 443046F952CC4A6DD3C507C48DE91D5A /* UnboundedBlockingQueue.h in Headers */, + 146B04CB7EFBA47B094BA351681FD7D0 /* UnboundedQueue.h in Headers */, + EE080DA5A4A8DA67837957D8CEE46F7B /* UncaughtExceptions.h in Headers */, + 9B9D458C10782FF40AB3EF20873D8AB4 /* Unicode.h in Headers */, + D633152C75209231922CEF10F245FE08 /* UninitializedMemoryHacks.h in Headers */, + 4913764A3B21DD320483111F4D91EDF7 /* UniqueInstance.h in Headers */, + A250AB85B534038728161A3EC3F5ED88 /* Unistd.h in Headers */, + 7D42B9166E33C70302CF5AA60960586C /* Unit.h in Headers */, + 17429748F7E064714C59EC8694727F4E /* Uri-inl.h in Headers */, + 9507342AA71A57DAC74EF3EFDA7641FE /* Uri.h in Headers */, + 86DC07E8D557C4E362D2CB2777263CF9 /* UTF8String.h in Headers */, + 734A5E121F8DBACDB165F22374831EBB /* Util.h in Headers */, + 0C6A328033E16CDCCB194BC370716880 /* Utility.h in Headers */, + 54EE0D8B8ED39EB5DA8D96F066ADB611 /* Utility.h in Headers */, + 8A76C93A9E9019759489819806E937E1 /* Varint.h in Headers */, + 491A6401D3462581FA1107131356EDA9 /* VirtualEventBase.h in Headers */, + 87F5E5D7D5DF362A9473E33C84ACF60C /* VirtualExecutor.h in Headers */, + 57BB836568046003D6019714BEF84F81 /* WaitOptions.h in Headers */, + 8F9AB547181647DF4807ADD29594BC2D /* Windows.h in Headers */, ); runOnlyForDeploymentPostprocessing = 0; }; @@ -24873,386 +24688,10 @@ ); runOnlyForDeploymentPostprocessing = 0; }; - 7FB1440899B31631197424CB3C537FAC /* Headers */ = { - isa = PBXHeadersBuildPhase; - buildActionMask = 2147483647; - files = ( - C96875B5DDBA407587AEE0D39BEFE2C0 /* InspectorInterfaces.h in Headers */, - ); - runOnlyForDeploymentPostprocessing = 0; - }; - 80FB1444113C9E94F05E53D15C6F9A4F /* Headers */ = { + 7C8E991D0E12C4B35DFC868CE4018762 /* Headers */ = { isa = PBXHeadersBuildPhase; buildActionMask = 2147483647; files = ( - 1D8713966308008808AF2CCE29C4120C /* Access.h in Headers */, - D6B1752A123903CB7F7336002C074DB6 /* Align.h in Headers */, - 6E2DEC0CF72D4CCEEA35E88BA4746941 /* Aligned.h in Headers */, - F7C53EEBECE430E1D0E3F10C65584D3B /* ApplyTuple.h in Headers */, - 8803911BE03AAB7FC2FD32E9091C3413 /* Arena-inl.h in Headers */, - 4A296B707F105086AF826C612F14625F /* Arena.h in Headers */, - 485A8FAF133E892419B9A17549688A28 /* Array.h in Headers */, - 26909CC481BBD0A975E13405C296F70D /* Asm.h in Headers */, - 89013A6DFF0630C6D13CF2DEEEA681E7 /* Assume.h in Headers */, - 57A3AD09873EE8EA44F22BBF2FD6571F /* AsymmetricMemoryBarrier.h in Headers */, - 958ED40251156B3487E967A9EE8F6D34 /* Async.h in Headers */, - 595485B6D37BA39E69DFFB6B33FE5D58 /* AsyncTimeout.h in Headers */, - B2827E524051AE5967DDB9E4599BEB18 /* AsyncTrace.h in Headers */, - CEF7EB0FFE0CE09AF8937C1946D2D8CB /* AtFork.h in Headers */, - 0595DABEC9675204C4E322CB29A3E29C /* Atomic.h in Headers */, - 65DD5D1631553E1E96874C8EE0D84395 /* AtomicHashArray-inl.h in Headers */, - B8F4F7753D9026C4E4123F757B812AFA /* AtomicHashArray.h in Headers */, - 939018139DB23E4D0E2E66A95B4D6B0A /* AtomicHashMap-inl.h in Headers */, - 3C57A5998E3C56F45EB85FD136D87A85 /* AtomicHashMap.h in Headers */, - A9880C57EA9B744B76C42C4EF4578501 /* AtomicHashUtils.h in Headers */, - 11F37E96B1F528A8521E2DEAA8F5CFD1 /* AtomicIntrusiveLinkedList.h in Headers */, - C36B9283425F12ECC2050D75E1307C9F /* AtomicLinkedList.h in Headers */, - C4874BB8745D0F5C2CAB6CCD454A21B6 /* AtomicNotification-inl.h in Headers */, - 55E17DB6E0D564BB0F61FADAF54E149A /* AtomicNotification.h in Headers */, - 78E7366A8362328F55824C86CB7F021E /* AtomicRef.h in Headers */, - 134B39C8B0582CDFC9643B5EA6618A35 /* AtomicSharedPtr.h in Headers */, - 3546ED5CE75CAB5E009E202B611C43BF /* AtomicStruct.h in Headers */, - F572861425F80702F338EDE222E82FC2 /* AtomicUnorderedMap.h in Headers */, - 2B3D05273B0E0A9BF4B0761F0A8175B7 /* AtomicUnorderedMapUtils.h in Headers */, - EDF9E2C50AD21BB24559C6D83A519B36 /* AtomicUtil-inl.h in Headers */, - FA7E5B69817F25D0D615E996A920FF71 /* AtomicUtil.h in Headers */, - 60BED3285C35999D6343CEC41FE96B01 /* AtomicUtils.h in Headers */, - CBC0D7D83AC8DC707FC09ACB3A9FA910 /* Barrier.h in Headers */, - C4C03E773E3F2039EDD4608040AE1A16 /* Baton.h in Headers */, - F6546656BBCDA692D8AC0DAF2B22316B /* Benchmark.h in Headers */, - 40B8649E07A8C59F168398FD3E05D4F1 /* BitIterator.h in Headers */, - D697AF9D7C3AA5965359BAF7F01CB8F3 /* BitIteratorDetail.h in Headers */, - 48C9DF8A509B2566D2AFAA469B293A15 /* Bits.h in Headers */, - 9EE41C5E1C26BD0FC27AE776729FC792 /* Bits.h in Headers */, - 402AA162AFEAEC1B6132CB0288A3BFD0 /* BlockingQueue.h in Headers */, - C2E529124A3E05FBCD4753DC5CAC5BDB /* Builtins.h in Headers */, - 7DD0C09C604FE90E8A7194BE8C7DE737 /* CachelinePadded.h in Headers */, - 5F1FFA71A8B407128A8335A014360FEF /* CacheLocality.h in Headers */, - EA18555CD41CC2920EEFCFB2B9EB978B /* CallOnce.h in Headers */, - 85BD31E00EC5C96D4C167856A04AC9E5 /* CancellationToken-inl.h in Headers */, - 3A5D03DE5C0D231A53DD02D0791A134A /* CancellationToken.h in Headers */, - CF59274ACA4E2644E5611797A10AF8FA /* Cast.h in Headers */, - A7B19110F6C50400AC05B9A114F84C7C /* CheckedMath.h in Headers */, - E2103F6E72B586B0B789AB5AF1129ADA /* Checksum.h in Headers */, - 1372E77F2D9C1B6E7E8A31D47D360AA9 /* Chrono.h in Headers */, - 58B5B5F5980F2C3C031C83B27AEF20A0 /* ClockGettimeWrappers.h in Headers */, - A0C2A7A099376750545501AB6AC0A049 /* Codel.h in Headers */, - 9D17F4AEB3B893D699911679E3901887 /* ConcurrentBitSet.h in Headers */, - 530DE462E0FF44DFF2D4097D1F364F55 /* ConcurrentHashMap.h in Headers */, - 927992BEE5DDAF0315DF981C8C2E3080 /* ConcurrentSkipList-inl.h in Headers */, - 005D1B6FD0CAF94B962756F3647CC582 /* ConcurrentSkipList.h in Headers */, - 9DC24FFC0CCB93AB78DF3B1041915EE6 /* Config.h in Headers */, - D906CEAF253DA06916C5F4C4C0072313 /* Constexpr.h in Headers */, - B13BC297B38927E7038C469BACCDED96 /* ConstexprMath.h in Headers */, - 60C3DB96455C78B971AC1E12780020BD /* Conv.h in Headers */, - BC5940202315DE2869ADDF89548E4809 /* Core.h in Headers */, - 3A7BCDE44C29DA26A8AA3EA7B357BEFE /* CoreCachedSharedPtr.h in Headers */, - AEF90FF07FA0142CD1B5EAB04528B497 /* CPortability.h in Headers */, - 064AC196394C411BE28F19DDF9B0C08F /* CppAttributes.h in Headers */, - 7D93618A159EA534B4196ECBD2902DB4 /* CpuId.h in Headers */, - 0C25A34F69506C1703FA93EB30B244FD /* CPUThreadPoolExecutor.h in Headers */, - F894D9BC72932EE71A6908B345618405 /* CString.h in Headers */, - 04CC1236424016C5C170EF8366AAB196 /* Cursor-inl.h in Headers */, - A941D36C5A98A16B4C7D04F59C0B43D8 /* Cursor.h in Headers */, - 3FD15065DD5B71BC510CF615120A4085 /* CustomizationPoint.h in Headers */, - B92D9B88277945504CAADB5CC35CE28C /* DefaultKeepAliveExecutor.h in Headers */, - 70FD0E1BF62707D472539EA510D3CD4D /* DelayedDestruction.h in Headers */, - B53EE05F4F890F2B3C687492B3BF9EBF /* DelayedDestructionBase.h in Headers */, - 3894D991CF7F1D3CD74B7101F3A2FC3D /* Demangle.h in Headers */, - 04545590A52007AF2C55B090579D5DAB /* Demangle.h in Headers */, - 236D0A035C52490418BDFF3A6DADA561 /* Dirent.h in Headers */, - 77379788FAC491A37C432F1932F29BA5 /* DiscriminatedPtr.h in Headers */, - 11BD448B800EFA8D829DFFF520EC4DAD /* DiscriminatedPtrDetail.h in Headers */, - E0E93A84EBA20CDD445AAB056E39D70A /* DistributedMutex-inl.h in Headers */, - DE37170FE1DF4C4A49165D0441232C6D /* DistributedMutex.h in Headers */, - 4CB49DDA06B3214B63E6668E7015A02B /* DistributedMutexSpecializations.h in Headers */, - B2C53D745BBE33BD353EBF8D8092AE1C /* DrivableExecutor.h in Headers */, - B87B8695BDEF0D417CCD9B3B07E3760F /* dynamic-inl.h in Headers */, - 2FCF5F079212CB005E504CF40C4C951B /* dynamic.h in Headers */, - 27FD9762250CD5783825714901D62ECB /* DynamicBoundedQueue.h in Headers */, - 9A552D2A35F377A8BC4E5851CB5D592C /* DynamicConverter.h in Headers */, - 66EC088D09885CACB63A0B1996A7CF99 /* EDFThreadPoolExecutor.h in Headers */, - 0AC1BC9FB4F553C79F4B4B142862308E /* EnableSharedFromThis.h in Headers */, - E2678CB85A787B8F52CFC6D6ED563BFB /* Enumerate.h in Headers */, - C5F1C24380ADC624375A88C28E32A692 /* Event.h in Headers */, - B1792929E4D558B21151EC1BC3701695 /* EventBase.h in Headers */, - 7E739B036E984FDD2D816E2DA1FAFF91 /* EventBaseBackendBase.h in Headers */, - F05FDA8067FD7D1C0E1E67A69560BB9A /* EventBaseManager.h in Headers */, - B373926EB36227F58E78EAE3ECB9B8FA /* EventHandler.h in Headers */, - 49BFDCBF94337915EAD45F19726A4FCF /* EventUtil.h in Headers */, - 9D518DF59F149F1D368C6CD8732D5AAA /* EvictingCacheMap.h in Headers */, - 9660409D716F18F214C56BAAF05E1C6E /* Exception.h in Headers */, - B05662CD367FD21359CC4C8A27AE0083 /* Exception.h in Headers */, - FC63A7720B39BB353C17EC6DBA1B75E2 /* ExceptionString.h in Headers */, - A4EB397137AF42402B719E65C00F4D34 /* ExceptionWrapper-inl.h in Headers */, - 29D468554BB01EE1116FDA0ED3859FE1 /* ExceptionWrapper.h in Headers */, - 3B22D56012AD29B234EEEFC6BEB010B1 /* ExecutionObserver.h in Headers */, - D35ACE0CEEF80562686C638C5DA76039 /* Executor.h in Headers */, - 2A3EC22155B8F0F30F0593D97BF9BFB9 /* ExecutorWithPriority-inl.h in Headers */, - AE803C306F7E05141A38A7EDAC1D7DE0 /* ExecutorWithPriority.h in Headers */, - ACCBC0A492904AC439A5C4845F21599B /* Expected.h in Headers */, - 6501794A2DCC86BF8CAD68E8F519C9C0 /* F14Defaults.h in Headers */, - 5E47BD915BAFE5C0C0FD9434EA5DFBA4 /* F14IntrinsicsAvailability.h in Headers */, - 90B7136DA748BF199BB9AC94575B04AB /* F14Map-fwd.h in Headers */, - 8F18BB721E90597C34F381B4FBDAD1C7 /* F14Map.h in Headers */, - 89F6EC1FCF0F8D600C23E302E580B078 /* F14Mask.h in Headers */, - A80242B51D34FF77020DB9D101761CB5 /* F14Policy.h in Headers */, - D9738A5D5063C4AAD2E2DCA6BBBEA999 /* F14Set-fwd.h in Headers */, - DA5E041BEFF72C59C071D7258A59A8FB /* F14Set.h in Headers */, - 0040F8F0DD9089286364F8385B3299EF /* F14Table.h in Headers */, - 49CFF82F054C02C71EB543D9AD308E3F /* FarmHash.h in Headers */, - 6568AE628DD401BDCBE61AF646E45D2B /* FBString.h in Headers */, - C406FEEF31CF686493465384620506F8 /* FBVector.h in Headers */, - C6BD1291B903A8C016CFE78F28898570 /* Fcntl.h in Headers */, - C123F40DBFEC89D122E463D9E04781A7 /* FiberIOExecutor.h in Headers */, - 29949AABA20DB0E9366F79D24F25911D /* File.h in Headers */, - 8D7A34A51D1BF6496B2B25144BED79BB /* FileUtil.h in Headers */, - 5735964EABD42A40E1A4FB00D74231AC /* FileUtilDetail.h in Headers */, - 04D1BE328D5841C7FDF3E301C5CF2B9D /* Fingerprint.h in Headers */, - B1C32CD1158DB4B3623222010A8DA212 /* FingerprintPolynomial.h in Headers */, - A3FFB0CDF15C9147801E908C9F77B60E /* FixedString.h in Headers */, - 5B292C17A00ED1B61A3B6F8E1E7E3775 /* Foreach-inl.h in Headers */, - 46060379C20C4FAA7FD9337F7AA44DF6 /* Foreach.h in Headers */, - 8587D2228B4EF7D0261FB74DE8EF99F6 /* Format-inl.h in Headers */, - 35AA6CC8D0F97816A9D58A19CEE8B93A /* Format.h in Headers */, - EC2648D49060E72BCCF4EF228A121609 /* FormatArg.h in Headers */, - 4BB2C36DAB83B30496C46064533F9E6D /* FormatTraits.h in Headers */, - 797454970ABFC8DB75DEA80C02AA629B /* Function.h in Headers */, - A7F4991EEF9FEA3AB0660ED6D057E8B7 /* Futex-inl.h in Headers */, - E3D2E67EE693D1735BBA23C5B5F518C9 /* Futex.h in Headers */, - 9C44596AD88361EE037E481F11AFCD46 /* Future-inl.h in Headers */, - 85633AF74F8624D79B9F700CC67696AB /* Future-pre.h in Headers */, - B93E4EEF29EEF84B3C95C07BDCBBC523 /* Future.h in Headers */, - E32FFFE81DB576328C2027DFBFDDD91D /* FutureExecutor.h in Headers */, - E4F80941C373599F876C3F96452058D4 /* FutureSplitter.h in Headers */, - 679047F1F7EB04FD1C9F3BEF43D34E17 /* GFlags.h in Headers */, - C26FB6F2F864B104FF3EE4A1F2E8AEF6 /* GlobalExecutor.h in Headers */, - 976C56B4C53CD7753DDC2FA9A852BE4B /* GlobalThreadPoolList.h in Headers */, - 742F343DC951F6D0943301DED9E57D37 /* GLog.h in Headers */, - 9A235B58B77F5773DEFB23676FE48ACF /* GMock.h in Headers */, - 085C6C6788B855289DCC9D625CCD502D /* GroupVarint.h in Headers */, - 45DAD8A15DB92D3C574536C544059C61 /* GroupVarintDetail.h in Headers */, - 9607920C4F5D89ED64A8627215345206 /* GTest.h in Headers */, - 61A3E12DFD961FCC6A9DA80F6E4FE731 /* Hardware.h in Headers */, - 9C685250F6657B677C9751191D744104 /* Hardware.h in Headers */, - 76EB03CDF432ECDB51026A46AEF9B9F5 /* HardwareConcurrency.h in Headers */, - B23770D5542A4EEC3B0989C9F51FC04F /* Hash.h in Headers */, - D7CA9A41BEE6B7F1F33F91BEC2A2A6A4 /* Hash.h in Headers */, - 7EC9FD40B9B32FE93A86C3612F9B7C73 /* Hazptr-fwd.h in Headers */, - 037AA7D98E4705B36AD6DA948F2C99DF /* Hazptr.h in Headers */, - 84124AE25EBFFE6A589291D9F9F408C9 /* HazptrDomain.h in Headers */, - F55FA4914C9CAC4809FDA00BAF1D17DC /* HazptrHolder.h in Headers */, - B74045F762624D00FCC20B887DA4C3B2 /* HazptrObj.h in Headers */, - 9C923EDE6371EF17239F4F7972ED20FB /* HazptrObjLinked.h in Headers */, - 83ABD9CC69D169904083B7387D9F9262 /* HazptrRec.h in Headers */, - C5E6305E57CB33EF0A786E636755F86E /* HazptrThreadPoolExecutor.h in Headers */, - 17FA4798975CD4D76DFA2CA17240306E /* HazptrThrLocal.h in Headers */, - 2E747A10B8DF8CD114B01FC0F7096084 /* HazptrUtils.h in Headers */, - FCC25C0A4981E4F16C0E3E8AB119B20E /* HeterogeneousAccess-fwd.h in Headers */, - 015E62A1FD23178A45DA6E92823C5F9F /* HeterogeneousAccess.h in Headers */, - 404246BE3A5E04C3F51BA53DA62938CE /* HHWheelTimer-fwd.h in Headers */, - 3BC8A17E25A16AE5B69685FAA02CDF95 /* HHWheelTimer.h in Headers */, - C946491B429ADF2746E9B82FE02E1DA9 /* Indestructible.h in Headers */, - A6171B40A37E1034F69687E3297CD922 /* IndexedMemPool.h in Headers */, - 70592AB014726A5CC92B21CAC66CE575 /* InlineExecutor.h in Headers */, - 72A1D70A96C55BABF56C96E7421A8BB8 /* InlineFunctionRef.h in Headers */, - A1DF2260D770695708A419261895CF05 /* IntrusiveList.h in Headers */, - F40FA2995909681AF26E5DEA3A8E31D3 /* Invoke.h in Headers */, - DE7F31B717C1AFF9AE9855BA794E870C /* IOBuf.h in Headers */, - 9296EABE38970C4C8CBC5ED4C3B76CAF /* IOBufQueue.h in Headers */, - 67913F0B299F0D20A8574EDFBF77D63B /* IOExecutor.h in Headers */, - B30E412545D6605AD071B064F3CEB3C0 /* IOObjectCache.h in Headers */, - 1828B92ABC2D0B980F416A1A705DD84B /* IOThreadPoolExecutor.h in Headers */, - B4A4BB0EAC693F443AE4FF6DCC2E808C /* IOVec.h in Headers */, - 8530672DFE52B69CF52258E3A952DD07 /* IPAddress.h in Headers */, - 42FB6A12F694483E9AA4A9F7F782EF01 /* IPAddress.h in Headers */, - 5ED409C600B403347DB47FF315192F6E /* IPAddressException.h in Headers */, - 8BB6F6A8D5D7B8E662AA9CE480A597CD /* IPAddressSource.h in Headers */, - 93067C332A3635A565BB7B4C29D48B48 /* IPAddressV4.h in Headers */, - DF5E2EA62D02D4D4A1246CBB2ADB8F8E /* IPAddressV6.h in Headers */, - 4B81A8236E613827AE47E57915B19CF6 /* Iterator.h in Headers */, - 689D00BB474B03A13DDA26DF254ABF39 /* Iterators.h in Headers */, - 99606626046C468208E5F53058764E0F /* json.h in Headers */, - 4A81DC32A7AE9A5732018ECFCEDE113B /* json_patch.h in Headers */, - 6666AAD9AB8B935BD8BDFEB40203DD6F /* json_pointer.h in Headers */, - 396586DD3A1B2B90C096DC3C8D2AEE2C /* Launder.h in Headers */, - AE8ED93EFCB2EB5E2F103286196BBAE2 /* Lazy.h in Headers */, - 456CD44FA0F845BF7CD383DF7843F3F3 /* Libgen.h in Headers */, - EE8BC667B237C35A621AA66F6E3B6E3A /* LifoSem.h in Headers */, - 53A36BDEA07F386B37520635B600148D /* LifoSemMPMCQueue.h in Headers */, - BF816AB4447CFFD40BFE770CC740F8B6 /* Likely.h in Headers */, - 1F8133D40BCD1DC1E7E70084ACD1BDF6 /* LockTraits.h in Headers */, - 8110D3253B83576E967CD129392AF7C6 /* MacAddress.h in Headers */, - FD9D2B1391857EB1DA533DA12C11449E /* MallctlHelper.h in Headers */, - 7B336AF6BCA40B15F88D91B65EE144A6 /* Malloc.h in Headers */, - 26C06DF0C138BD4034D77B0C895A5C1C /* Malloc.h in Headers */, - 1B34B01AD09173BBC5538C496B9146B5 /* MallocImpl.h in Headers */, - 6D6839659D9FF6E53BE79D2C7890ED90 /* ManualExecutor.h in Headers */, - 88EA06C0214D08253801EAB5946BFB7B /* ManualTimekeeper.h in Headers */, - 6D9755259A707C938C2CC4638386369E /* MapUtil.h in Headers */, - 2D0F2C45839727BDA71B1E35E5238BBD /* Math.h in Headers */, - F87C8D54DCD81FF760596C59228DF29D /* Math.h in Headers */, - CE9F206E287A434B5255CBDBFD61798F /* Memory.h in Headers */, - 05768EFA810692190DA64DA76EBC0BE8 /* Memory.h in Headers */, - 0BA74AA382F7CC48CE4D2D08C970987A /* MemoryIdler.h in Headers */, - CECAD9C08AC9E06EFB4EFF3228A1D74F /* MemoryResource.h in Headers */, - 9014D8322A35D5B1A0CBBEEB9C9541EC /* Merge.h in Headers */, - 8463995436BC0640AB9003330E55A77A /* MicroLock.h in Headers */, - AD31F71541F4A2B0ABF44F822C2B6362 /* MicroSpinLock.h in Headers */, - 90BFEB6BD2D9B45D07BAF16DDD09BCC0 /* MicroSpinLock.h in Headers */, - B530C7AAE230E317036FEADA50B18058 /* MoveWrapper.h in Headers */, - BAFD461E05A8B4826167309DA792C604 /* MPMCPipeline.h in Headers */, - 560B893D25CFB3CE6099204CC3F920B4 /* MPMCPipelineDetail.h in Headers */, - 6673DDF5345DE77DB170780DBD0DB924 /* MPMCQueue.h in Headers */, - 8A6C3B3B30FDE9299D4B64509B9671C7 /* NamedThreadFactory.h in Headers */, - E6B11ADEAF0C851FED1210EA162F751B /* NetOps.h in Headers */, - 76783968E292A3913D292A873924E543 /* NetworkSocket.h in Headers */, - 060A7EC0A2054D3378BA7ACA6385A33E /* NotificationQueue.h in Headers */, - 9C9159682493E8E331DF45EB0BBF078F /* OpenSSL.h in Headers */, - 611F973C7F5AE3FD0849C3A797420DC8 /* Optional.h in Headers */, - C5FE71B6895178CA7BA0718E5D7A6E2F /* Ordering.h in Headers */, - B516D345CDA82EC5B3371926EFAB0570 /* Overload.h in Headers */, - 85B417A893DC287D0A57F68E501B497A /* PackedSyncPtr.h in Headers */, - 5E2AB8CFCA0F7A6B20B5DC681CA42CEC /* Padded.h in Headers */, - BA8692E70D5290EE1836F18FB4D71134 /* ParkingLot.h in Headers */, - 46ECC4DE6D6ABB55EF63B1A0B0E47670 /* Partial.h in Headers */, - 088006BBBCF81B9958053C61DDB6C3C6 /* PicoSpinLock.h in Headers */, - 9A357B71BD6AD9B5FB78741E775AF56C /* Poly-inl.h in Headers */, - DB8B3B153135F5ECF31EE1AB8F2E6DA7 /* Poly.h in Headers */, - 9520567DFF1E33FDE004255CA2E36006 /* PolyDetail.h in Headers */, - 2F64DC35A9F59D5820F03D3DB86F7C96 /* PolyException.h in Headers */, - 8A8A4A4AEAA9205C8F4C8B12DF5395F2 /* Portability.h in Headers */, - 1E988475BF6DC371658262C5C990D771 /* Portability.h in Headers */, - 8D78EC568FFCF862DCB52A7619379AC5 /* Preprocessor.h in Headers */, - 8F3404F2E966D28AF2C2B29F9AA66BDE /* Pretty.h in Headers */, - 65BB9259C00547753692FEC9237D26A8 /* PriorityLifoSemMPMCQueue.h in Headers */, - B88263CFE9B9337C1AB4D9667DA89EC9 /* PriorityUnboundedBlockingQueue.h in Headers */, - 921A650AECDA9052B65E419FFDDEF356 /* PriorityUnboundedQueueSet.h in Headers */, - 0D57F7DD6E0CB299B21247D3A60391CA /* ProducerConsumerQueue.h in Headers */, - 984FABFD18FC0EE396366BE536CAA0CD /* Promise-inl.h in Headers */, - F3654A6E076904EE3BA4D9EB5E4A5502 /* Promise.h in Headers */, - E7FF87C342CABA9F8DA69B9A88DE6C88 /* PropagateConst.h in Headers */, - BCDDD0F39B08EFCAAD199EBB7569352F /* ProxyLockable-inl.h in Headers */, - 9810B4E23A7B4ED9BD0E96374FE46FD3 /* ProxyLockable.h in Headers */, - EF03AC67826FC3FAA7B815C0F471D0DA /* PThread.h in Headers */, - 970CF579AB845CB452C58353282EB636 /* QueuedImmediateExecutor.h in Headers */, - 5DE9EA3212F1D3EC397C6CAF552A3249 /* Random-inl.h in Headers */, - 9145F5B49C89845D76BE58FD9E1ED346 /* Random.h in Headers */, - 402D6962AD538E6E50E3594A883A7B3A /* Range.h in Headers */, - ECDFD0F589A0A23AAD6BE0D550CC85A0 /* RangeCommon.h in Headers */, - 296C9B0730FC3C327E691F340B194BD9 /* RangeSse42.h in Headers */, - 6899B4222602B51E16B6BC444C70BDE9 /* Rcu-inl.h in Headers */, - CA320FCF97D98AFBA7A1948E8188AE81 /* Rcu.h in Headers */, - 17787FF8AE61CF0DF18B6E6CEE91FA72 /* ReadMostlySharedPtr.h in Headers */, - 6FCA2F372DEBDDCFDCDA656D5A6C4BAE /* Replaceable.h in Headers */, - 635AC8C91A50E2A66FB0174958259F49 /* Request.h in Headers */, - 916BEC475B5C16D4508CE4054AF30CBB /* Retrying.h in Headers */, - DE9EECAEB02E90C521E3EE1E8FA0E1EC /* RValueReferenceWrapper.h in Headers */, - 432E799AB3151AB0F05B632BD5C1A7EE /* RWSpinLock.h in Headers */, - 0988E9C96CEEC77F442AF2B15DAF1E44 /* RWSpinLock.h in Headers */, - DC52B33D5A84CFEA074BFAA9C4B4EE3C /* SafeAssert.h in Headers */, - 12AB36FFDAF2ACC6F5AC654C157335B1 /* SanitizeLeak.h in Headers */, - EE62E14DF77191186F73849ABBD334FE /* SanitizeThread.h in Headers */, - 259003BE28ACB34D29ACA844506C320C /* SaturatingSemaphore.h in Headers */, - 247B18B81BF3699B89335484EA7329B9 /* Sched.h in Headers */, - 316821A6D6464A67A56AB3343DCA87C8 /* ScheduledExecutor.h in Headers */, - F6DA5FFDC62D0B4EE86F28F1704D258C /* ScopeGuard.h in Headers */, - 75B861A4F6C192CA2320A4246AE28CD0 /* Semaphore.h in Headers */, - D7064E936651DB1B199C98919E3DD50F /* SequencedExecutor.h in Headers */, - 4965FAC76BAD5B203BCEB04891631F91 /* SerialExecutor.h in Headers */, - 7CB87F458C00A4EC6D11312E0F019199 /* SharedMutex.h in Headers */, - C9EA62D21D56735F45703DF41D755994 /* SharedPromise-inl.h in Headers */, - 43145B633FF6A614472DE97FF874B5D2 /* SharedPromise.h in Headers */, - C3038ABE6CAFF664E7F866CF64C2981C /* Singleton-inl.h in Headers */, - B26722E1965B1F4916CCBAFA24446D51 /* Singleton.h in Headers */, - 5634D3743245D9A52ACAEA08B3128EEF /* Singleton.h in Headers */, - 68247A1214CCFBDCE83A58A5350FC820 /* SingletonStackTrace.h in Headers */, - 5ABAAC805A0E6516E938929B89E18DFE /* SingletonThreadLocal.h in Headers */, - F3B7F04FA362B8A3AA3B307AA9407029 /* SingleWriterFixedHashMap.h in Headers */, - F9DED28C8F0BF383F184013D5E1D17D8 /* Sleeper.h in Headers */, - A442BD5B32CB4C51316F28EE52A9DF89 /* SlowFingerprint.h in Headers */, - 0B089ED105A2ABBA13BB1CB7BFA957E4 /* small_vector.h in Headers */, - 8036795D9FDBFCED6072CEA8AF77C6DE /* SmallLocks.h in Headers */, - 3A9AFAD65F39A476230BE77CB67A61DC /* SocketAddress.h in Headers */, - D51D97CC1C3D3A0CB163946FC25C5FA4 /* SocketFastOpen.h in Headers */, - 2C4AA4302706540F5D9CFB78B8F4A905 /* SocketFileDescriptorMap.h in Headers */, - 89797E2212FB09B884ACDE399A2B1B06 /* Sockets.h in Headers */, - 373A7ECDE84CE707C755E1958C235731 /* SoftRealTimeExecutor.h in Headers */, - CBD6809F52257DFD2A9A398DC32C1B40 /* sorted_vector_types.h in Headers */, - A8C55227E7345848AE25DF6256D11697 /* SparseByteSet.h in Headers */, - 1DB1A4C1A222094CEE75624D2FA14BF6 /* Spin.h in Headers */, - 9F0FEA0255A36C897A3DE56B17865AB1 /* SpinLock.h in Headers */, - BCD14AAD371AD7DBACD31606BCAF0EA5 /* SpookyHashV1.h in Headers */, - C3512E455DD3243F4A667ED18E596E42 /* SpookyHashV2.h in Headers */, - 179F1B7CF16289D0041B9FD46B6C9A33 /* Sse.h in Headers */, - DBC6FACD2511EA706CC5B0A95F5DAD28 /* StaticConst.h in Headers */, - D500045B4F3FEA85B3CDE453BA7F6AAA /* StaticSingletonManager.h in Headers */, - 7BE06A02899C4D21EE4B2751BFF8C3A2 /* StaticTracepoint.h in Headers */, - BA27A3CBDEF6E0931E13F60F176ED32C /* Stdio.h in Headers */, - C618C6F3031111905EFA16B7DB2507CF /* Stdlib.h in Headers */, - 34C876C26AE9A2DC16B7F2A2904AB89A /* stop_watch.h in Headers */, - DB7B67449561234FC6D01F91A37A14D9 /* String-inl.h in Headers */, - BDF55DAA84EC07ACB12B59E6FD9E58E9 /* String.h in Headers */, - 7B35ED9FDB607FF2BAC61958778E8D25 /* String.h in Headers */, - F53CBB9B5039D55ED5F17513D84F2FBD /* Subprocess.h in Headers */, - 79692A32EA834AB1A73C7CB1FCF0804F /* Synchronized.h in Headers */, - 41346D8AF9BAE91AFBF7D03542B2C00F /* SynchronizedPtr.h in Headers */, - 98AED2FFC0C16A6D054C24C13543D8E1 /* SysFile.h in Headers */, - 8B97D5122D76BF0A49B4A245FF6B161A /* Syslog.h in Headers */, - 6302E3A8C9854E1DD9131E4E68736C86 /* SysMembarrier.h in Headers */, - F14E2E18B4F2DC8E75A988E85DE77DA0 /* SysMman.h in Headers */, - EEB0ED6DDF616D30E5C8260D5E17D9F8 /* SysResource.h in Headers */, - 222557FED1601E4892088088E6C5F3E7 /* SysStat.h in Headers */, - A67FF8C3DE0A185E7F2C09BFECA17607 /* SysSyscall.h in Headers */, - 1AAEA1214FD69F25379A238D485EAD22 /* SysTime.h in Headers */, - 216D3A827A9C05623245832B45292A60 /* SysTypes.h in Headers */, - 673A3C624095CA07ADFDC209BD9482E8 /* SysUio.h in Headers */, - 9EF06D70B0E1CDDEB59C9199483CEA50 /* Tearable.h in Headers */, - 038EC993E3CC0E6730C944D1FD535132 /* ThreadCachedArena.h in Headers */, - FE56B62C2BB29649B78C5311B055B5F0 /* ThreadCachedInt.h in Headers */, - 9A1794F7C3CFD08A0834B1B7BA874C03 /* ThreadCachedInts.h in Headers */, - 2C51EBBB84C3CDE431260663E2DF2793 /* ThreadCachedLists.h in Headers */, - 70E57E5970E580AC7ABE4739A244964F /* ThreadedExecutor.h in Headers */, - 73955004694D9FE3FB39014F8184720B /* ThreadFactory.h in Headers */, - 6B253D1E348E022DBC796B0D05ACEEE8 /* ThreadId.h in Headers */, - A8F329035721A4811B6D08E6D1F9E3A8 /* ThreadLocal.h in Headers */, - 87BC99FFD3F4C09623A5C8D6EA5A8166 /* ThreadLocalDetail.h in Headers */, - 4310A299E74141136C117071DD7189EE /* ThreadName.h in Headers */, - F249DEECE91482636A20524122003F89 /* ThreadPoolExecutor.h in Headers */, - A47BD48D65FC05A97543388F60CCC4B5 /* ThreadWheelTimekeeper.h in Headers */, - EA4C621BAD9D0BDC885592CB2C3A6A79 /* Time.h in Headers */, - FAEFBE0231107508B5B80D629BE11E4E /* TimedDrivableExecutor.h in Headers */, - DD7FDFC771C3584A42A21F45609A0DF1 /* TimekeeperScheduledExecutor.h in Headers */, - 467198D61E341D7309CA386E549C8DA6 /* TimeoutManager.h in Headers */, - 782AE9703673D9E7B6373962D83D21D5 /* TimeoutQueue.h in Headers */, - 966A72D655B9C94BC0A31219C94E0739 /* TLRefCount.h in Headers */, - 1DB48BA6EF4B41FD116488C346A18C33 /* TokenBucket.h in Headers */, - C55EE5DD5BAA32F483004324C2B7671E /* Traits.h in Headers */, - B4133E795AF7C7D3E5B416E3F9A45083 /* Try-inl.h in Headers */, - 8DE47431F6BBBA3BCD7EFF8AB414BB88 /* Try.h in Headers */, - 84179ECCE7AA9C97A327A6401F722F80 /* TurnSequencer.h in Headers */, - 1B5250910A8378105768CC1505F2633E /* TypeInfo.h in Headers */, - 2DCFFD1F366CEFD36684503C59492F2B /* TypeList.h in Headers */, - 0E9D3660817D729B205D8A6BF9F41C63 /* Types.h in Headers */, - 7CC599917A6E93AB56DD25ABBD9272C3 /* UnboundedBlockingQueue.h in Headers */, - 1C6496929ABD278E240091EABBA34A78 /* UnboundedQueue.h in Headers */, - 6438CE3547CB26B43D1B5E98E6F3482D /* UncaughtExceptions.h in Headers */, - 027429AF288C5AF3C5B78ABB422A882F /* Unicode.h in Headers */, - 85B8F33ABCFCEA5D376A43B1DB3AD8FA /* UninitializedMemoryHacks.h in Headers */, - 7D9978DD97658EB943E1EA22B33DAA08 /* UniqueInstance.h in Headers */, - B33B0D66A8DC44143120627EAA48AD19 /* Unistd.h in Headers */, - 16CA9E974ECC97F08D260DFC96D1EB65 /* Unit.h in Headers */, - 0E11052DFA9B41FBC16674C954577139 /* Uri-inl.h in Headers */, - C5180F74035A4324B3B91F835CBD9C4B /* Uri.h in Headers */, - 5A45D5194444588369ECA279EFBEF9EE /* UTF8String.h in Headers */, - FC4849280C2CCF6BA68B6EE0C0D7034B /* Util.h in Headers */, - EECAE7C1CFCFA1C953F0F4FD74697DCD /* Utility.h in Headers */, - AA0BFC9BC59DF4049037E1DD10B705AD /* Utility.h in Headers */, - 91F4D8CB03F3BBCE4923A59D78A728E1 /* Varint.h in Headers */, - E86D442FF5731A59E3C3E938879B3EA5 /* VirtualEventBase.h in Headers */, - 15566368B07C8FF1757B356B83890F50 /* VirtualExecutor.h in Headers */, - F19164904B4C3E07CAF375DE95909F1C /* WaitOptions.h in Headers */, - 93F3E16A0AE33535CD7E648C75BFD070 /* Windows.h in Headers */, ); runOnlyForDeploymentPostprocessing = 0; }; @@ -25274,43 +24713,6 @@ ); runOnlyForDeploymentPostprocessing = 0; }; - 887231A49B759C36385E79455FF2F17A /* Headers */ = { - isa = PBXHeadersBuildPhase; - buildActionMask = 2147483647; - files = ( - 11016D83FDA992323281FA44C39B2C0A /* NSTextStorage+FontScaling.h in Headers */, - 504CEE5F9FF06D29D232A1CA492B5600 /* RCTBackedTextInputDelegate.h in Headers */, - 96B99A41C40A1A3169D98FBD78D534F8 /* RCTBackedTextInputDelegateAdapter.h in Headers */, - 9ABB33AEEE09EBBC624F71BA25EDB4A0 /* RCTBackedTextInputViewProtocol.h in Headers */, - E333596113348FB3D30D794BDE155D03 /* RCTBaseTextInputShadowView.h in Headers */, - 7D9E6443BD24A99D1B173DCA77B5218F /* RCTBaseTextInputView.h in Headers */, - 53CA5D35728E9D0983ABACA0581B5123 /* RCTBaseTextInputViewManager.h in Headers */, - 78899AEE1FE20941C866289A09E406AB /* RCTBaseTextShadowView.h in Headers */, - 8A098B3129C68AA270BDF0E6212E6B8B /* RCTBaseTextViewManager.h in Headers */, - B9B61BFCB52244663AAE509BAD50BC13 /* RCTConvert+Text.h in Headers */, - 333D12D69079F2758E9D420A9DB33103 /* RCTInputAccessoryShadowView.h in Headers */, - 34EB58E99226DB3F518AA6E287587D9F /* RCTInputAccessoryView.h in Headers */, - 178286487A3917A52ADDA30234B596A8 /* RCTInputAccessoryViewContent.h in Headers */, - 3794DEFCE1137CAA39E051791D6F57D7 /* RCTInputAccessoryViewManager.h in Headers */, - 167F60DF201EAB0EC7ECECFB82E1FA09 /* RCTMultilineTextInputView.h in Headers */, - FB85BD84C6D686B07BB2BEC64973CD3C /* RCTMultilineTextInputViewManager.h in Headers */, - F7D92A1BA55DBFAAB8644E21271B2079 /* RCTRawTextShadowView.h in Headers */, - F5501B9BD875517E4B2EC3FBC896C4C7 /* RCTRawTextViewManager.h in Headers */, - 15CFAD48298CA678AEDA3667952DED21 /* RCTSinglelineTextInputView.h in Headers */, - 11C23AEF2F38006EC578194CFBFF805B /* RCTSinglelineTextInputViewManager.h in Headers */, - FCFB43F70DC48824AC9E96CFA0F6553B /* RCTTextAttributes.h in Headers */, - 4F95A6314EEBFB019A803250EABDD951 /* RCTTextSelection.h in Headers */, - 4211D833BE8D2195686F497A99A9DC54 /* RCTTextShadowView.h in Headers */, - 64292AB7F050E845946ED2FFA659A8D3 /* RCTTextTransform.h in Headers */, - AE871159CF90726BE1CFFFF3907799EB /* RCTTextView.h in Headers */, - 3A894C316EDB26C15B5AB26BFC368B9A /* RCTTextViewManager.h in Headers */, - 83275ADA5A6DB026C1CDBE784270C59F /* RCTUITextField.h in Headers */, - D6D72FF37F4A4847471FA94F09191175 /* RCTUITextView.h in Headers */, - 84634F1E1435697C00C422F41292E26D /* RCTVirtualTextShadowView.h in Headers */, - EB85F554E3C07512319B854B78F101F8 /* RCTVirtualTextViewManager.h in Headers */, - ); - runOnlyForDeploymentPostprocessing = 0; - }; 8AA23FDBB4ED1E12D4B722C831D22033 /* Headers */ = { isa = PBXHeadersBuildPhase; buildActionMask = 2147483647; @@ -25348,93 +24750,40 @@ ); runOnlyForDeploymentPostprocessing = 0; }; - 8CD73E24A416482310BBB269007E9E14 /* Headers */ = { + 8DBE14802236EFF0F239F6873C8F072F /* Headers */ = { isa = PBXHeadersBuildPhase; buildActionMask = 2147483647; files = ( - 005FDB5737EFC91525B5B3A06BFAD6A9 /* FBReactNativeSpec.h in Headers */, + E328E8141AF969CC6B6E80958E20061B /* EXHapticsModule.h in Headers */, ); runOnlyForDeploymentPostprocessing = 0; }; - 8CDEA51D5EE9A846984232B49749C1C7 /* Headers */ = { + 8E14420E75F27A7B6A548B0C0A62A0E9 /* Headers */ = { isa = PBXHeadersBuildPhase; buildActionMask = 2147483647; files = ( - 44C30A49FFA6E8FF123B92A83F76D90F /* RCTConvert+FIRApp.h in Headers */, - 15338B99711412BD96A698765E0B1321 /* RCTConvert+FIROptions.h in Headers */, - 296B36145E06FF6D567226927EC8ACEF /* RNFBAppModule.h in Headers */, - 06D66457A9DCD30BC0265FE278C1D00B /* RNFBJSON.h in Headers */, - E30B1A23959255EC0E8B0D2B79865C73 /* RNFBMeta.h in Headers */, - 254B0BF69C96F789ADFB18FA9AF72268 /* RNFBPreferences.h in Headers */, - C36F9D27CCEF65B13958231B7A8507DA /* RNFBRCTEventEmitter.h in Headers */, - 09C38BBB9DF1A26387E7925892790C42 /* RNFBSharedUtils.h in Headers */, - E981E67817B348038BCC8545CE70A25A /* RNFBUtilsModule.h in Headers */, - 8CDCDE18C697839C023F356FE9EDADF3 /* RNFBVersion.h in Headers */, + 9E003E8C0250A351940CD51439FB964E /* BlurEffectWithAmount.h in Headers */, + AE0195E93037B4A541B7C05657A75124 /* BlurView.h in Headers */, + 988D42C8242951CEA30038F87D5F8795 /* BlurViewManager.h in Headers */, + 8317678B229ECCA17A5FB85AD458F037 /* VibrancyView.h in Headers */, + 19318B20CF5DFE527CF77A58B2AB233B /* VibrancyViewManager.h in Headers */, ); runOnlyForDeploymentPostprocessing = 0; }; - 8DBE14802236EFF0F239F6873C8F072F /* Headers */ = { - isa = PBXHeadersBuildPhase; - buildActionMask = 2147483647; - files = ( - E328E8141AF969CC6B6E80958E20061B /* EXHapticsModule.h in Headers */, - ); - runOnlyForDeploymentPostprocessing = 0; - }; - 8E14420E75F27A7B6A548B0C0A62A0E9 /* Headers */ = { - isa = PBXHeadersBuildPhase; - buildActionMask = 2147483647; - files = ( - 9E003E8C0250A351940CD51439FB964E /* BlurEffectWithAmount.h in Headers */, - AE0195E93037B4A541B7C05657A75124 /* BlurView.h in Headers */, - 988D42C8242951CEA30038F87D5F8795 /* BlurViewManager.h in Headers */, - 8317678B229ECCA17A5FB85AD458F037 /* VibrancyView.h in Headers */, - 19318B20CF5DFE527CF77A58B2AB233B /* VibrancyViewManager.h in Headers */, - ); - runOnlyForDeploymentPostprocessing = 0; - }; - 8EF4BA14C36A9A298DD1301C1B152BF8 /* Headers */ = { - isa = PBXHeadersBuildPhase; - buildActionMask = 2147483647; - files = ( - B59F6BBF55F0B4C9AF524FFF1EDD30A0 /* UMAppDelegateWrapper.h in Headers */, - 63C8BF6584365FE5CCAF3F31672FCB1D /* UMAppLifecycleListener.h in Headers */, - E33EB14E3EDA09265E5DE985BBBDD2FE /* UMAppLifecycleService.h in Headers */, - 2C1A730FBE5012A1920AC739E1CD10AC /* UMDefines.h in Headers */, - 328252FB5DC2DF774B6902BE393ADB09 /* UMErrorCodes.h in Headers */, - E1BC0D14ED3A587781CAE3748E5012E8 /* UMEventEmitter.h in Headers */, - 3905638F5D114B5957346FAB5DE79EF9 /* UMEventEmitterService.h in Headers */, - 0D4033D5C3933CE042605CE73AEC6F2A /* UMExportedModule.h in Headers */, - 007D63251D200645B5FADAF36DED156C /* UMInternalModule.h in Headers */, - 9FDCAB9E0D704899E93E71953BCDE16B /* UMJavaScriptContextProvider.h in Headers */, - B44DEBB13C380A2262EEBAB1E9819100 /* UMKernelService.h in Headers */, - EB04398384E73EE07BD888F6792DD980 /* UMLogHandler.h in Headers */, - D6417458F7CBA6609D7995D851BD4FB9 /* UMLogManager.h in Headers */, - 487905310AB081D904E4C522B81EEE63 /* UMModuleRegistry.h in Headers */, - EC61B0BE381C36711C2C87B124C01AE9 /* UMModuleRegistryConsumer.h in Headers */, - 1D4C0FF9FEA112E531027830F20B689E /* UMModuleRegistryDelegate.h in Headers */, - 976E2CF54F0AEDC5BDF05F775B1DD1ED /* UMModuleRegistryProvider.h in Headers */, - 91413F1EF37BD8FA6A1CBC584FFF7644 /* UMSingletonModule.h in Headers */, - 1E70EA50F887C38D2F8DECBBD3BC1EF9 /* UMUIManager.h in Headers */, - 9145E6F9C497F86A5A5696818E016C54 /* UMUtilities.h in Headers */, - DFE59671B86E2E11EC0F3234177CDD9B /* UMUtilitiesInterface.h in Headers */, - 6D65DABCE3BA9864F29473D0B6975BD0 /* UMViewManager.h in Headers */, - ); - runOnlyForDeploymentPostprocessing = 0; - }; - 8F155CCA5E2429F0E2369C269756BF6F /* Headers */ = { - isa = PBXHeadersBuildPhase; - buildActionMask = 2147483647; - files = ( - 99AEF020AD403D33E3547834F98A6BB1 /* RNFBCrashlyticsInitProvider.h in Headers */, - ACDFBDADC0ED6A592142E1E878169D69 /* RNFBCrashlyticsModule.h in Headers */, - ); - runOnlyForDeploymentPostprocessing = 0; - }; - 93B10C85C1E32E3902F2A5C804418F05 /* Headers */ = { + 90351ADF54306D065B6CB36C55B05A24 /* Headers */ = { isa = PBXHeadersBuildPhase; buildActionMask = 2147483647; files = ( + C12EBD27CEDA7EB28A42663A0C712F75 /* bignum-dtoa.h in Headers */, + 69CD6E44A3261FB28EAF5FB87AADE6B9 /* bignum.h in Headers */, + 9EA17023F8B1D48933D9E484377687B4 /* cached-powers.h in Headers */, + 2520B3CCC912056E714A8D8BF6549227 /* diy-fp.h in Headers */, + 1FA01AF745DC60249524BBDE544528B0 /* double-conversion.h in Headers */, + 86772668A5F386BD245A952A0D181E81 /* fast-dtoa.h in Headers */, + C40443EE31E8F338484441F4F0AC1C00 /* fixed-dtoa.h in Headers */, + 654F25C2E808F4B27F5647B0686EF18C /* ieee.h in Headers */, + BFD36E015E73EA2A28F103C721230E9A /* strtod.h in Headers */, + B933B06C04ECC556E0AA821420239CD1 /* utils.h in Headers */, ); runOnlyForDeploymentPostprocessing = 0; }; @@ -25447,19 +24796,14 @@ ); runOnlyForDeploymentPostprocessing = 0; }; - 984C8E2F9CB427774962B5D5A39BFDB4 /* Headers */ = { - isa = PBXHeadersBuildPhase; - buildActionMask = 2147483647; - files = ( - ); - runOnlyForDeploymentPostprocessing = 0; - }; - 9B501F7CA708C4A2E6FE4AC772517F27 /* Headers */ = { + 979DBDEB0D3D2BD0AE7447A6FD578738 /* Headers */ = { isa = PBXHeadersBuildPhase; buildActionMask = 2147483647; files = ( - E69A3E96DC48CAC5F62DB2C99EF60952 /* JSIExecutor.h in Headers */, - 114F4718FDDDBFD9FD544656F5E57C21 /* JSINativeModules.h in Headers */, + ACE73796915661AB777B3AC147E4F2C7 /* pb.h in Headers */, + 327695FE5EE483C9B6F9A06EC48E7A08 /* pb_common.h in Headers */, + 36972585593E61BF8E8488CDC933237E /* pb_decode.h in Headers */, + A9D22FF3E32D91952B7DBB0F3FD88B47 /* pb_encode.h in Headers */, ); runOnlyForDeploymentPostprocessing = 0; }; @@ -25489,149 +24833,22 @@ ); runOnlyForDeploymentPostprocessing = 0; }; - 9FA65EB899FC76169EA92F88F1D76EED /* Headers */ = { - isa = PBXHeadersBuildPhase; - buildActionMask = 2147483647; - files = ( - 64DDB2096FCEB4BA4C16FAAE035409C8 /* RNCSlider.h in Headers */, - 267FBF5FD39D9633691B813B405D0B81 /* RNCSliderManager.h in Headers */, - ); - runOnlyForDeploymentPostprocessing = 0; - }; - 9FEB9B117DAEEF5122BD92A1808CEBCE /* Headers */ = { + 9F083F91C3922D56A24938FC5F936FA5 /* Headers */ = { isa = PBXHeadersBuildPhase; buildActionMask = 2147483647; files = ( + 22811FE91A5BC31B5542F766899F3108 /* SDImageWebPCoder.h in Headers */, + 5ABD6C31971AC73DC15CA39328E86E7B /* SDWebImageWebPCoder.h in Headers */, + 3F065935550D5DF75DBE033D1FD9AFAF /* UIImage+WebP.h in Headers */, ); runOnlyForDeploymentPostprocessing = 0; }; - A067FEE71F7CBF7E7ACE1F844CA3BF56 /* Headers */ = { + 9FA65EB899FC76169EA92F88F1D76EED /* Headers */ = { isa = PBXHeadersBuildPhase; buildActionMask = 2147483647; files = ( - 8B710645EC5AA2DACA3445C51FB82FFF /* crashlytics.nanopb.h in Headers */, - C7C1574B8782249D7BA1D934090957F8 /* dwarf.h in Headers */, - 59F6D34C25A88847AF8335D9E4FF1D5C /* FIRAEvent+Internal.h in Headers */, - 66BCBD15AB1E7055EF4307A53937A2E1 /* FIRAEvent.h in Headers */, - F346B3C863F2759CFDD3C928B7889B25 /* FIRAnalyticsInterop.h in Headers */, - FD129BC6B9313BFA23A0215B7954E1A9 /* FIRAnalyticsInteropListener.h in Headers */, - D5F055E6D09FB50DFC8C8803944C6797 /* FIRAppInternal.h in Headers */, - D13EF0014C8F8FA12C590F99457D9E70 /* FIRAValue.h in Headers */, - 973E219025889250EFE8533DFE8FF0D5 /* FIRCLSAllocate.h in Headers */, - 11D7CFEEC5EE5E2EC2DB4FE9B96FF92F /* FIRCLSApplication.h in Headers */, - DA5B234D2C7447805A850DD2CF2ACD7C /* FIRCLSApplicationIdentifierModel.h in Headers */, - 7D88EE1929DEFE96EF497F85DA08C04E /* FIRCLSAsyncOperation.h in Headers */, - 1D3E4DAA9D20125343E2A9B507B98E45 /* FIRCLSAsyncOperation_Private.h in Headers */, - 255F950E8099EED4CECC91F825B3B86A /* FIRCLSBinaryImage.h in Headers */, - 8E3971C08DB59B15538760096809208F /* FIRCLSByteUtility.h in Headers */, - 1A59ECBBBF291915A95AF29FB03136B3 /* FIRCLSCodeMapping.h in Headers */, - B7FAC62809E437CDEDC06940F32E5E7B /* FIRCLSCompactUnwind.h in Headers */, - 56ED895217017BD48610677C02E2FA85 /* FIRCLSCompactUnwind_Private.h in Headers */, - 676492E9DD248E0948A9709BA125FB98 /* FIRCLSCompoundOperation.h in Headers */, - DA26A62676193E5AE666016857349688 /* FIRCLSConstants.h in Headers */, - 8577C9A386712B9ABF982FE880A1072D /* FIRCLSContext.h in Headers */, - E007E02271F546E9B8D8376023177D50 /* FIRCLSCrashedMarkerFile.h in Headers */, - D39FCD8AD6F41BD4D52BC9BC3069712B /* FIRCLSDataCollectionArbiter.h in Headers */, - F893EEE93FE9E361D5164F9A36039008 /* FIRCLSDataCollectionToken.h in Headers */, - 067E292CEC4E08787006F729EF7D5639 /* FIRCLSDataParsing.h in Headers */, - D92707BDC9E09F40EF5EF92F91137001 /* FIRCLSDefines.h in Headers */, - B0DA64A8BB081A5E63787205F75BB660 /* FIRCLSDemangleOperation.h in Headers */, - 13C7BD20D3113864BABE20B2F99D7BAF /* FIRCLSDownloadAndSaveSettingsOperation.h in Headers */, - 845985CF5A68FF849D17450459946D3F /* FIRCLSdSYM.h in Headers */, - C2F1D652887DB52DA555C2A06DECE80F /* FIRCLSDwarfExpressionMachine.h in Headers */, - 94E8A69947F3D20A3B835B5DA9876061 /* FIRCLSDwarfUnwind.h in Headers */, - C2D371BCDE127B5878F0FF77DFCDDEF3 /* FIRCLSDwarfUnwindRegisters.h in Headers */, - 70BA92339B45B7035005EDC43DA9163C /* FIRCLSException.h in Headers */, - 2DA5B6299698F0399C184E699FA70120 /* FIRCLSExecutionIdentifierModel.h in Headers */, - DF4B52A0F364CE66DE67D667D69DFC2D /* FIRCLSFABAsyncOperation.h in Headers */, - 0046ADBA078ACE2D5DB447D46CCC1899 /* FIRCLSFABAsyncOperation_Private.h in Headers */, - 78199885E36C4A211D13CE556CC88F3A /* FIRCLSFABHost.h in Headers */, - 0E03ED4005DD6655E3DFC600FEF385FA /* FIRCLSFABNetworkClient.h in Headers */, - A0F985796CE79ED953E93EC40DDB214B /* FIRCLSFCRAnalytics.h in Headers */, - DDF6DFA184C997891626C5C3A47C257B /* FIRCLSFeatures.h in Headers */, - 61A5AB33E679B61B2331215BDECC6405 /* FIRCLSFile.h in Headers */, - D8AFFF6B833110971D9FF24ECBE9D53C /* FIRCLSFileManager.h in Headers */, - EF2EAB38780976FD8FB6EC7D76B06051 /* FIRCLSGlobals.h in Headers */, - BF5652FC75DEB65387D6A531F402A0D4 /* FIRCLSHandler.h in Headers */, - 191381381246BD51F53D82A3FAC983BB /* FIRCLSHost.h in Headers */, - CFACDE4788C46861F0CEACE722EC0289 /* FIRCLSInstallIdentifierModel.h in Headers */, - 65DDAAA470834D29BA1275BC6B046830 /* FIRCLSInternalLogging.h in Headers */, - 6103BA579E4EBDA8905021EE51B42818 /* FIRCLSInternalReport.h in Headers */, - 60877E6E89FA799A74973B8A083F844D /* FIRCLSLogger.h in Headers */, - 98D8061FB7CA86CC8EDFA009792BA5F7 /* FIRCLSMachException.h in Headers */, - 297A29978B37E09128C3AB079E82B03F /* FIRCLSMachO.h in Headers */, - 4E9728DDD2540A598B4A2EA1987D3A06 /* FIRCLSMachOBinary.h in Headers */, - 172889FF5706CEC02CCA7B1586449BD3 /* FIRCLSMachOSlice.h in Headers */, - 99F6FE2431580AE74D0EBBE8F19DF850 /* FIRCLSMultipartMimeStreamEncoder.h in Headers */, - 87E01C152DAB64EDBA5630CF2A452E5F /* FIRCLSNetworkClient.h in Headers */, - 36E6AFE617AE7AB8850CC1E6397F4B66 /* FIRCLSNetworkOperation.h in Headers */, - 68D246EA7FA9E1083F1E404E4C4A3970 /* FIRCLSNetworkResponseHandler.h in Headers */, - F337F1DB7A57DD1C80FA03307D48110E /* FIRCLSOnboardingOperation.h in Headers */, - 51D3700FEEFA90864982B1032E26BF9C /* FIRCLSOperation.h in Headers */, - 0D46A258DC75D21C32E1EE87F82A5679 /* FIRCLSPackageReportOperation.h in Headers */, - D0097323F911AA507C33D0394B4A737B /* FIRCLSProcess.h in Headers */, - D2CC01F33EC29210743242BD1913E7F7 /* FIRCLSProcessReportOperation.h in Headers */, - 83000B2E422499D45FBF61BCF36CEB93 /* FIRCLSProfiling.h in Headers */, - 26BC6B57BA643B8EF2D8C2502E412AA7 /* FIRCLSRecordApplication.h in Headers */, - 57EA197249DC5CC52EFE8F17C9427B3A /* FIRCLSRecordBase.h in Headers */, - 568F5CB571EFC06386733DFBA6509666 /* FIRCLSRecordHost.h in Headers */, - 754427C520B00051F07209896D84E2E3 /* FIRCLSRecordIdentity.h in Headers */, - 91C4219B8C33403CBB129D16B3AEB18A /* FIRCLSReport.h in Headers */, - E0D527B58633D3FF8CF9FA991A945A4D /* FIRCLSReport_Private.h in Headers */, - 31A9C0B7972ED646DD42B8AB48EC754C /* FIRCLSReportAdapter.h in Headers */, - 6A7FE58131360F95F295FF2B3FE793EC /* FIRCLSReportAdapter_Private.h in Headers */, - 74EC9FC61381750280381C1CA3FEF94E /* FIRCLSReportManager.h in Headers */, - C9B171CD2F985BB6100973AC2085042D /* FIRCLSReportManager_Private.h in Headers */, - 7A453093A32DF8BF58019348FB62B3C5 /* FIRCLSReportUploader.h in Headers */, - 7DE7D30D7C202F40E14C4D074F1951FE /* FIRCLSReportUploader_Private.h in Headers */, - 0A4CAA92A38F6F359915AF868EDD3F0E /* FIRCLSSerializeSymbolicatedFramesOperation.h in Headers */, - 996F0F0AFA7803AA64EECCD8B63711F2 /* FIRCLSSettings.h in Headers */, - 4820CEA0B8A8891D32B12DD46643F165 /* FIRCLSSettingsOnboardingManager.h in Headers */, - 64CDDA9192CD46BF2A1A5AF02853D51C /* FIRCLSSignal.h in Headers */, - 945CBE8DC5A89E8B2A802782D34C814E /* FIRCLSSymbolicationOperation.h in Headers */, - FF578342D52A8E5DAD10B1FD4CB8AF59 /* FIRCLSSymbolResolver.h in Headers */, - DC23E3E8977BCBD29CEB5F71651AA6E1 /* FIRCLSThreadArrayOperation.h in Headers */, - 9D18B87E5733F74063319AF98E905A83 /* FIRCLSThreadState.h in Headers */, - 2B0A8958E3B687E1A8784203E791D3A3 /* FIRCLSUnwind.h in Headers */, - E24E2880B9541172E92097A2F2A41F8F /* FIRCLSUnwind_arch.h in Headers */, - ECD0C5360E7811C936155AAEF32D7CBD /* FIRCLSUnwind_x86.h in Headers */, - BD6272FAA0121FB7DA4977388E4B983F /* FIRCLSURLBuilder.h in Headers */, - AACAE8B50254D4575DF72C7697FB9844 /* FIRCLSURLSession.h in Headers */, - C8FAE77DBB29DE8CFA5B0E79264BA50F /* FIRCLSURLSession_PrivateMethods.h in Headers */, - 282A04F3A48ECC7D11237EEC32CB6DA7 /* FIRCLSURLSessionAvailability.h in Headers */, - 3B995CA64D0EFAC634D5A07D1607BD05 /* FIRCLSURLSessionConfiguration.h in Headers */, - C013E60B226CFB6918496978B17A0794 /* FIRCLSURLSessionDataTask.h in Headers */, - 96B9900D9BA39ADBED3C0F96B6BF4E94 /* FIRCLSURLSessionDataTask_PrivateMethods.h in Headers */, - 4DDFCEB061C1FE440C3D5D8596BE6AD8 /* FIRCLSURLSessionDownloadTask.h in Headers */, - FE9CD4D3CC9D436B3254E68C2966B64F /* FIRCLSURLSessionDownloadTask_PrivateMethods.h in Headers */, - 8AF95E3907FA15C3A152A802BCAE4032 /* FIRCLSURLSessionTask.h in Headers */, - 9536EFC8A863828718F2E80E09F86040 /* FIRCLSURLSessionTask_PrivateMethods.h in Headers */, - 15A3920A9F1E30B24992816F1CA30068 /* FIRCLSURLSessionUploadTask.h in Headers */, - F925F2DF0DA791631303F1AA46832B0D /* FIRCLSUserDefaults.h in Headers */, - BB95A3870C6FC9F84284FAA4BF733FEA /* FIRCLSUserDefaults_private.h in Headers */, - C89897F473DA6D4E875D2025BDB8FC8F /* FIRCLSUserLogging.h in Headers */, - 3D7FCE55565746109356E2FFB25784BC /* FIRCLSUtility.h in Headers */, - 9BEE00BB7843DECEBCCC9CE448E22BE3 /* FIRCLSUUID.h in Headers */, - 864DF121D43C18629973838F25311351 /* FIRComponent.h in Headers */, - FA2D65F4643529979AE0BB3F019E9075 /* FIRComponentContainer.h in Headers */, - 95682DB918A38BB1030F5C8BAE296186 /* FIRComponentType.h in Headers */, - 765BD0311739F1F0D7FECBE67F69D0A1 /* FIRCoreDiagnosticsConnector.h in Headers */, - F3949D4F8485FC7B07488774BC4777F4 /* FIRCrashlytics.h in Headers */, - D36112C86BBBB1C82A9B4E0B61951F7D /* FIRDependency.h in Headers */, - 474D7FCF15A3B421352E285865B58036 /* FirebaseCoreInternal.h in Headers */, - CA215C84F48DBB4875A89A8BDFC578E7 /* FirebaseCrashlytics.h in Headers */, - D2BA301327CE06F4657E997B1B814C4A /* FIRErrorCode.h in Headers */, - 4B9F133F7F2D32D9FF3DDB53BAEE6898 /* FIRErrors.h in Headers */, - A2B4F839B3333CC8F88A58378DB5F8C4 /* FIRExceptionModel.h in Headers */, - 20975EBC575B2229860269A70A137099 /* FIRExceptionModel_Private.h in Headers */, - 4CABF90A6CC7B3CAE60DC2CE6417E6ED /* FIRHeartbeatInfo.h in Headers */, - 1F0A9700C5762EBB561C0FEE7BA02233 /* FIRInteropEventNames.h in Headers */, - B4BA42922FF158551F2813420C9373F6 /* FIRInteropParameterNames.h in Headers */, - E3C141C47F1B86D503200DDF64F8C321 /* FIRLibrary.h in Headers */, - 97167D777B4DAC9E490D28F0B718C656 /* FIRLogger.h in Headers */, - AA41B8C492E810ED1AD5292AC4AE26CA /* FIROptionsInternal.h in Headers */, - DC7EA3F3EEA542ECA961CDACE2717DF6 /* FIRStackFrame.h in Headers */, - 9E361E89925BB36D99B2C97D0C635C00 /* FIRStackFrame_Private.h in Headers */, + 64DDB2096FCEB4BA4C16FAAE035409C8 /* RNCSlider.h in Headers */, + 267FBF5FD39D9633691B813B405D0B81 /* RNCSliderManager.h in Headers */, ); runOnlyForDeploymentPostprocessing = 0; }; @@ -25668,6 +24885,65 @@ ); runOnlyForDeploymentPostprocessing = 0; }; + A6F7D0E21A6EE437E9E1BACC0C533126 /* Headers */ = { + isa = PBXHeadersBuildPhase; + buildActionMask = 2147483647; + files = ( + C181330033E5941E7EBC1E7334CADFB9 /* FIRAppInternal.h in Headers */, + 8AD2EFE57156521DA71D51BCE28F3107 /* FIRComponent.h in Headers */, + 91297D1CBABCA28C2044DFF00A0078E0 /* FIRComponentContainer.h in Headers */, + 95324ADF801495D99BFE48F2076D2029 /* FIRComponentType.h in Headers */, + 5E03FC253802DF483BCA0EE2454584FF /* FIRCoreDiagnosticsConnector.h in Headers */, + 48B743F6CE3DBAEA23C4680E383F42B0 /* FIRCurrentDateProvider.h in Headers */, + A58976868E6ACB4E95FE74764852E560 /* FIRDependency.h in Headers */, + 3ADC58C4189E6F0AE1603B77A021731D /* FirebaseCoreInternal.h in Headers */, + 8455B15C49E52ADC17FF3D8682F5A708 /* FirebaseInstallations.h in Headers */, + 732F685CB0CD6185E3C58C5B23D111AB /* FirebaseInstallationsInternal.h in Headers */, + B361E6279C1D8888EECF3E194570E6C0 /* FIRErrorCode.h in Headers */, + 11EEF7434F3CB8C5E98B7AC320AE0A99 /* FIRErrors.h in Headers */, + CAD9C0E986371DAE105BA86582F42658 /* FIRHeartbeatInfo.h in Headers */, + 504C2875772F5DE5399293CCA3E64D2A /* FIRInstallations.h in Headers */, + D8C0334DC0EF2D300793F474B6D42DB5 /* FIRInstallationsAPIService.h in Headers */, + B44CE72B58A204F8C1B7E8523AA0627E /* FIRInstallationsAuthTokenResult.h in Headers */, + 77830BAD437AD92388FC0FB34931BEBC /* FIRInstallationsAuthTokenResultInternal.h in Headers */, + 6E101EC1144FD574688F6869DC107AB9 /* FIRInstallationsBackoffController.h in Headers */, + B7E030772A882A23F4B64727515975D9 /* FIRInstallationsErrors.h in Headers */, + C23D167A0A0F684F1F9673E929D0EE8B /* FIRInstallationsErrorUtil.h in Headers */, + F82A113CA69D6A3CBACB0767F39E86E3 /* FIRInstallationsHTTPError.h in Headers */, + 71F13520F142F6CD68844A641EDD1FF1 /* FIRInstallationsIDController.h in Headers */, + 5BC5CF73191BE5A997194ABD16CFB6E5 /* FIRInstallationsIIDStore.h in Headers */, + BD769069BA660F2FC8ACBF39D4460092 /* FIRInstallationsIIDTokenStore.h in Headers */, + 1726B1F1F58C820750C19A8205D39564 /* FIRInstallationsItem+RegisterInstallationAPI.h in Headers */, + 4B8B133743DF27A73AAC856B9D503465 /* FIRInstallationsItem.h in Headers */, + 90E9126F65E57EC19BD57291739E40A5 /* FIRInstallationsLogger.h in Headers */, + C0961A03417DA9251004F8C8733A7405 /* FIRInstallationsSingleOperationPromiseCache.h in Headers */, + 59C35C2B6307E92A1E7C7E3C71C47EC0 /* FIRInstallationsStatus.h in Headers */, + C0AD589F3CDF52D01706D4367333502B /* FIRInstallationsStore.h in Headers */, + F31522A5B0779097738F7722233E360C /* FIRInstallationsStoredAuthToken.h in Headers */, + 5B4BC264AD15AA64D8AE26FCF19F0C15 /* FIRInstallationsStoredItem.h in Headers */, + 2312F6A41DAE9C4E10D5BE1BB3B20748 /* FIRInstallationsVersion.h in Headers */, + 764AAD7D4556AA1D1AB6096BEC77085D /* FIRLibrary.h in Headers */, + 59AE946B096F4C82230A39E2F2DDA825 /* FIRLogger.h in Headers */, + 1C2125023C04FBA187156634E86FAB18 /* FIROptionsInternal.h in Headers */, + 18D04E693C694B26ACA5B104618F7B3A /* GULAppEnvironmentUtil.h in Headers */, + 5FB66CF2EEBEAB9AB6A6E122FBE8E77F /* GULHeartbeatDateStorage.h in Headers */, + 4C2013C25A6D8FD84F7379F77F1549A9 /* GULKeychainStorage.h in Headers */, + 6CB2029D0B2A652B23929D667365C5D4 /* GULKeychainUtils.h in Headers */, + 5014317C66E3B8DF996601EDA058BD49 /* GULSecureCoding.h in Headers */, + 848488FBC659AC83A39F1867650866D2 /* GULUserDefaults.h in Headers */, + ); + runOnlyForDeploymentPostprocessing = 0; + }; + A713D0A985AB9351EADA2CF3E2A92585 /* Headers */ = { + isa = PBXHeadersBuildPhase; + buildActionMask = 2147483647; + files = ( + 8CE01F8E32048708309FA90D508A2C8C /* UMPermissionsInterface.h in Headers */, + D79681ECC1B50ADB3E07401C475C15C1 /* UMPermissionsMethodsDelegate.h in Headers */, + 5F7A076ED9B7BF079246B653B1280772 /* UMUserNotificationCenterProxyInterface.h in Headers */, + ); + runOnlyForDeploymentPostprocessing = 0; + }; A7E2E59BF5E77A3B28217D36B2C29CFA /* Headers */ = { isa = PBXHeadersBuildPhase; buildActionMask = 2147483647; @@ -25688,206 +24964,189 @@ ); runOnlyForDeploymentPostprocessing = 0; }; - AA6CFE5CF07A817EAC6250C517B73F33 /* Headers */ = { + AB9F7767BB09225B7577A120B63B3CFA /* Headers */ = { + isa = PBXHeadersBuildPhase; + buildActionMask = 2147483647; + files = ( + 40B5FD30347255E3BCE18EB7A331BF5B /* EXLocalAuthentication.h in Headers */, + ); + runOnlyForDeploymentPostprocessing = 0; + }; + B0FFF293797D4CAF2FD517AF52F90088 /* Headers */ = { isa = PBXHeadersBuildPhase; buildActionMask = 2147483647; files = ( ); runOnlyForDeploymentPostprocessing = 0; }; - AB9F7767BB09225B7577A120B63B3CFA /* Headers */ = { + B2DC84ADC6BC35A7375BC997EC64AB33 /* Headers */ = { isa = PBXHeadersBuildPhase; buildActionMask = 2147483647; files = ( - 40B5FD30347255E3BCE18EB7A331BF5B /* EXLocalAuthentication.h in Headers */, + 4134589CD5BB0E380C4AB3EC019A5D56 /* JSIExecutor.h in Headers */, + F8CF12CB8A4B339D598B447F86965F52 /* JSINativeModules.h in Headers */, ); runOnlyForDeploymentPostprocessing = 0; }; - B332962D4B98D6565A6C92E826E60CCA /* Headers */ = { + BD32EF00FBCFF4D2ED0870D852ACF21C /* Headers */ = { isa = PBXHeadersBuildPhase; buildActionMask = 2147483647; files = ( - 2AEB67A72FC65473A464B6A75FED5F93 /* pb.h in Headers */, - 1925C8BD802F4AEFD79E05F9B89015CD /* pb_common.h in Headers */, - F395703BBAD9330714B1C1D18106D2E7 /* pb_decode.h in Headers */, - C52C91728A295B9C27A0BE06655C1356 /* pb_encode.h in Headers */, + 9C444D8E2F975A168EE75D33EB2DBDA2 /* log_severity.h in Headers */, + 93191C5978B2F7C4578F5EF4F3196633 /* logging.h in Headers */, + C27403AB9C13D3CFEA18501CE4765ED7 /* raw_logging.h in Headers */, + AB1DD69FF01145BF637B0B9945BC7FE8 /* stl_logging.h in Headers */, + 00D65BC9B1F5CB3F3C4677C6E8B3725E /* vlog_is_on.h in Headers */, ); runOnlyForDeploymentPostprocessing = 0; }; - B51C0489402053ED6DCB530EBBB7F9D7 /* Headers */ = { + BDA6BC738A94256A92E8177962F4BADF /* Headers */ = { isa = PBXHeadersBuildPhase; buildActionMask = 2147483647; files = ( - DAA5228B008C0185D8C176AF7531098D /* NSBezierPath+SDRoundedCorners.h in Headers */, - 51EB6CD6227514158D2DB1C52438BC2C /* NSButton+WebCache.h in Headers */, - 0F14CAC101861D13A1B71E08CB3C109A /* NSData+ImageContentType.h in Headers */, - 43D752B706C184AD577F8786CE3C79CF /* NSImage+Compatibility.h in Headers */, - B96236ABFA0949FD10F5FFF77480787E /* SDAnimatedImage.h in Headers */, - 54574A563AC07DC31E7F70C6E177FAA5 /* SDAnimatedImagePlayer.h in Headers */, - 79B1C578A132B8F64BAF787C2C32C973 /* SDAnimatedImageRep.h in Headers */, - 0BE18DE9E3405BED1A98DCC821F18E1A /* SDAnimatedImageView+WebCache.h in Headers */, - C69D732CBF9BD36348A06DC1B7E219AE /* SDAnimatedImageView.h in Headers */, - D9F50AD2C225F2BAFB37B63EE3342763 /* SDAssociatedObject.h in Headers */, - 896421FEC4C27E1D4527EBA03ECF5037 /* SDAsyncBlockOperation.h in Headers */, - DE9A812C1D07F06E232DAF78B5F275CE /* SDDeviceHelper.h in Headers */, - A4E2278DE2B49437B4CD2FF986432740 /* SDDiskCache.h in Headers */, - 6A039FF84F6CD8D55484C034F66B007D /* SDDisplayLink.h in Headers */, - 3069B47EA58DF457310D8947EF04D3CB /* SDFileAttributeHelper.h in Headers */, - A63D3C9078880427DF2EFE45777C1658 /* SDGraphicsImageRenderer.h in Headers */, - 0B8C12CC05B220BE94F3319EAEAF6083 /* SDImageAPNGCoder.h in Headers */, - 357F2273B939C6DE75EA2B2D4FD21600 /* SDImageAssetManager.h in Headers */, - CADB5A27752BEE26409B9BC2F040DA41 /* SDImageCache.h in Headers */, - 30BD1E879CEDC30627C17464F7DDC23D /* SDImageCacheConfig.h in Headers */, - 23107AD6D4230C7D76762ACF7E2D818E /* SDImageCacheDefine.h in Headers */, - C6EB1C1A102CC2220F0925D864BD6978 /* SDImageCachesManager.h in Headers */, - F8C12BEA8CCBBEB7AD47DD2BBD95A09C /* SDImageCachesManagerOperation.h in Headers */, - 4679089A46139CE98EF4118919A199EA /* SDImageCoder.h in Headers */, - 74224F0B4C7D6FC974A6EA003FB4CCA1 /* SDImageCoderHelper.h in Headers */, - D024F7482C4086F306FA04A9F5B1F3F4 /* SDImageCodersManager.h in Headers */, - B0CFA8308BF23AFE48E7688DD862CF30 /* SDImageFrame.h in Headers */, - 1902AC52CCDA099D0C77B2C822170BF0 /* SDImageGIFCoder.h in Headers */, - 1691F850D2ACDB7C3BADD384F07AA42B /* SDImageGraphics.h in Headers */, - 954FF1A37B9B52498BA929669D4593FF /* SDImageHEICCoder.h in Headers */, - B384D913C27C00381B305B156B2CE235 /* SDImageHEICCoderInternal.h in Headers */, - 98A56F29B85029091394F250DC9C5FDC /* SDImageIOAnimatedCoder.h in Headers */, - CA6FCC4C5E3A724C6AF340E43C604318 /* SDImageIOAnimatedCoderInternal.h in Headers */, - 09877537A9682B55FACFAFD040F97A87 /* SDImageIOCoder.h in Headers */, - 9069E0FA345EC63F1745A5E3E5E9F113 /* SDImageLoader.h in Headers */, - 199D7DAAC28C6E00E2EB1928E4FB7E28 /* SDImageLoadersManager.h in Headers */, - 50D61DE9D7A8590D2821D64451FE1496 /* SDImageTransformer.h in Headers */, - 1C8399EE1429A35628EA1E4D0730D385 /* SDInternalMacros.h in Headers */, - 2917B430E75377F1ADC6752F355FB031 /* SDMemoryCache.h in Headers */, - 2DE40C44B661361407541F327C39F180 /* SDmetamacros.h in Headers */, - 61A4D183366D53341ED86D3A848C19C5 /* SDWeakProxy.h in Headers */, - 01B0032031EA54F2A019BB496A57F963 /* SDWebImage.h in Headers */, - 9D87D311C26340D5D291CFB93D9E9D86 /* SDWebImageCacheKeyFilter.h in Headers */, - 29215116C566B3A606C4C673B7A4104A /* SDWebImageCacheSerializer.h in Headers */, - 95FB1B0523025D27006A9FA0B4202561 /* SDWebImageCompat.h in Headers */, - 6018F1F609977889E1F1EE2B345FACA3 /* SDWebImageDefine.h in Headers */, - DB7262BBB4F834F3A01B925C36904813 /* SDWebImageDownloader.h in Headers */, - 058B10DA26839788148504E6F6E66221 /* SDWebImageDownloaderConfig.h in Headers */, - C626BEBCAB1B039F085164B1E759495B /* SDWebImageDownloaderDecryptor.h in Headers */, - 242B4C9538838E112A2F3ADC2B09907F /* SDWebImageDownloaderOperation.h in Headers */, - 6D02A809D77869DFDF2443FA9A088610 /* SDWebImageDownloaderRequestModifier.h in Headers */, - 2F772B47B5AD2FF4FFF7F24F16190C5A /* SDWebImageDownloaderResponseModifier.h in Headers */, - 81B5731D55B383BBAA088D9AFEA7328A /* SDWebImageError.h in Headers */, - 93B7CC2BC6377B5EEA2C5AA84798F6ED /* SDWebImageIndicator.h in Headers */, - E7A441822611FBF3B41573EC9F8CCE90 /* SDWebImageManager.h in Headers */, - 96A10F915F72DE9920B401F3174FAA01 /* SDWebImageOperation.h in Headers */, - BA07A5475D4C2C9E8E58363EBE4408E2 /* SDWebImageOptionsProcessor.h in Headers */, - 1920FCE36808E9EF6B045689ED3E1F8A /* SDWebImagePrefetcher.h in Headers */, - AEDDDA1CAF95B0D1BF5A6109B5D3AE8C /* SDWebImageTransition.h in Headers */, - 496823F46E4529AB28BC1FAE9348EBA5 /* SDWebImageTransitionInternal.h in Headers */, - 9D9F5487A0E5A8EA62872F1929529624 /* UIButton+WebCache.h in Headers */, - 81CBA279C2D7F9FEDC5F11CE2ECFFB58 /* UIColor+SDHexString.h in Headers */, - B9409907B52C65EE32E83279A15715AB /* UIImage+ExtendedCacheData.h in Headers */, - 7F2AF7F6F21535CB0B16803076D6F010 /* UIImage+ForceDecode.h in Headers */, - 4F9276C1C94759732502CEC0BA944BC3 /* UIImage+GIF.h in Headers */, - 83A90E8B7FDE9818721E8002C5F8D919 /* UIImage+MemoryCacheCost.h in Headers */, - 9A4C22A2AF221410AE0409CE54CF8AA7 /* UIImage+Metadata.h in Headers */, - E302A08DFACD7D2D968BECA274855770 /* UIImage+MultiFormat.h in Headers */, - 40D4AE600C1F8BF22160F87C3A0466CA /* UIImage+Transform.h in Headers */, - E91C35A4C74C464094403DF24CF12329 /* UIImageView+HighlightedWebCache.h in Headers */, - 2E62C4F6E1AC4E5F45A9EE72EADE3760 /* UIImageView+WebCache.h in Headers */, - 358EAD4E2641D9749EBA400F92077D00 /* UIView+WebCache.h in Headers */, - 4C05964EA35463E1FCA4E487E19984DF /* UIView+WebCacheOperation.h in Headers */, - ); - runOnlyForDeploymentPostprocessing = 0; - }; - C898263E32F3F1140ED22AC06685C837 /* Headers */ = { + 60B3AA736BC9C4DB8C0711C7ADD4A882 /* BridgeNativeModulePerfLogger.h in Headers */, + 3C54CD9F6D8C914AA581D26AAE94EB4C /* NativeModulePerfLogger.h in Headers */, + ); + runOnlyForDeploymentPostprocessing = 0; + }; + BE6CDB95BD9D24B8E8C492FB3332CFBF /* Headers */ = { + isa = PBXHeadersBuildPhase; + buildActionMask = 2147483647; + files = ( + ); + runOnlyForDeploymentPostprocessing = 0; + }; + C64F4B30CE149B50622971F38521B970 /* Headers */ = { isa = PBXHeadersBuildPhase; buildActionMask = 2147483647; files = ( - 73BC7980BBD7CF1F54A7FFAA4521D880 /* FBLPromise+All.h in Headers */, - 9634AFC21DDFD8E2C548CB40AB4E5FBF /* FBLPromise+Always.h in Headers */, - A9219290BAFC9320C040414C7C096F8A /* FBLPromise+Any.h in Headers */, - 4E1060D94440D030C75B728F17B4E62E /* FBLPromise+Async.h in Headers */, - DF44B3B16907193F463835D0D8134D16 /* FBLPromise+Await.h in Headers */, - 937086FFC7948E4E3A69D50545826BFF /* FBLPromise+Catch.h in Headers */, - 66F17155BB74D1A25B7BAD95B0912164 /* FBLPromise+Delay.h in Headers */, - 0A2152A57FD363FE1E02BFC9155A2BAE /* FBLPromise+Do.h in Headers */, - E92E23581BA92C98435DC0BD7E016324 /* FBLPromise+Race.h in Headers */, - 40F6ABEFC7D0BC7D3D71C0B885066F85 /* FBLPromise+Recover.h in Headers */, - 58DBC0FAFB21C7C9F841A75D0647F3E9 /* FBLPromise+Reduce.h in Headers */, - B61FD98A4393A3A00DAC223680A918C9 /* FBLPromise+Retry.h in Headers */, - 1673F034CA68F7606F63648763284801 /* FBLPromise+Testing.h in Headers */, - 61BD57CD51211EA0A9DB92D277E082FD /* FBLPromise+Then.h in Headers */, - 0DAD7A8B645904C334FE6DD725DC39EC /* FBLPromise+Timeout.h in Headers */, - 4791AEBD2EF07F700133803644EF238D /* FBLPromise+Validate.h in Headers */, - FCA849F84E72CF56C35BC8B5F5D5F66E /* FBLPromise+Wrap.h in Headers */, - 2FAF4B1D2951B1AE7B14AAF36637057A /* FBLPromise.h in Headers */, - 1EC1D0106DA54AE665470D7BDF0C2A09 /* FBLPromiseError.h in Headers */, - D0DD0C14147CA8C77BA30A1B8F208588 /* FBLPromisePrivate.h in Headers */, - DF63D688EF74C85087F01384D4F70504 /* FBLPromises.h in Headers */, - ); - runOnlyForDeploymentPostprocessing = 0; - }; - CB9B4DC3940A7331D77370D512322969 /* Headers */ = { + DEAC2716EF318CF4B766809A461F9183 /* Allowance.h in Headers */, + 08F54F26E79AD5CE6D95403300F941CC /* AsyncGeneratorShim.h in Headers */, + B4B8E7EF3FF95663B58618A16BC27F34 /* CancelingSubscriber.h in Headers */, + A82A67C8EAD4876997E2B42928B49E84 /* ChannelRequester.h in Headers */, + DEE13E74C98D5C688C25A78A4AD8C3AF /* ChannelResponder.h in Headers */, + 571C9140346B509EC9EB1784C3ADC7A9 /* ClientResumeStatusCallback.h in Headers */, + 86C0DDF7CB72AFD9C536CEB3909453E4 /* ColdResumeHandler.h in Headers */, + 05B30A11139FAA4C296F13732F0CF0FA /* Common.h in Headers */, + D41ABC870A7D0F65CA210C02A4DA2CA1 /* ConnectionAcceptor.h in Headers */, + ADCB321C65F8F92C0EB439E00A510466 /* ConnectionFactory.h in Headers */, + C0E3CC7A9F14882901F4B9A348EB981C /* ConnectionSet.h in Headers */, + 2876AE58BEF67C7CE395147072550520 /* ConsumerBase.h in Headers */, + D2060A7EB155B11941B0F78B1A6FC825 /* DeferFlowable.h in Headers */, + D06951B9A2D0F54A5BCDD714926DCC28 /* DeferObservable.h in Headers */, + 3FFB5B8064FB1AAE2C99A88A708FC13F /* DuplexConnection.h in Headers */, + C05E33248166F8BDA2F8CAF947FE8795 /* EmitterFlowable.h in Headers */, + 8D801E08B5B1D626F6C315E6B8884E50 /* ErrorCode.h in Headers */, + E2CF87D83911173F5B640ABA6CEBA562 /* FireAndForgetResponder.h in Headers */, + CE0C40CD897C0C4F539632D5AD632F49 /* Fixture.h in Headers */, + CB598110F73F4A91ADC31429EF8141E5 /* Flowable.h in Headers */, + 7AB2CA6B1CFED28BAAC966A0E960C24F /* Flowable_FromObservable.h in Headers */, + 69BD619A232A4623B0705D0B4FA91CD2 /* FlowableConcatOperators.h in Headers */, + 61CD85611650ABA123DA28910561F39C /* FlowableDoOperator.h in Headers */, + 93C35148BE29D6B9B075AE89BB2888E1 /* FlowableObserveOnOperator.h in Headers */, + AE2AD22C71F696B91F06A2E341FF2AF2 /* FlowableOperator.h in Headers */, + 992B08438AF92E419E4FDEEA030602CB /* Flowables.h in Headers */, + 368B9A8C61496188BC621D71F6C00BEE /* FlowableTimeoutOperator.h in Headers */, + E8707A35F45C8E8277ECCFBB80ED9E3A /* Frame.h in Headers */, + F53FCAEB957A7C15BA2A77950D0FCCD1 /* FramedDuplexConnection.h in Headers */, + 4B18AE9BC7BE94FC25C40FC06B9D0CC1 /* FramedReader.h in Headers */, + D0AED2A315A2C91A71EA791BBEF805D3 /* FrameFlags.h in Headers */, + 1EB50F32E2AB0DB45F61ABB586DEE335 /* FrameHeader.h in Headers */, + 9C33100B8D84D4A27D9A4B88CF7FB6C5 /* FrameProcessor.h in Headers */, + 2F96C64F61A0B39BE9EB6652B6A280AA /* Framer.h in Headers */, + 4E223449F086273EC497170A81D2E562 /* FrameSerializer.h in Headers */, + 0562FF22475F02DC1FF568AA64E3178D /* FrameSerializer_v1_0.h in Headers */, + 99C6C32ED3C9C83A3AC19B87BB41CD0B /* FrameTransport.h in Headers */, + 32F609CF9E603A14E6B44EEF31397B09 /* FrameTransportImpl.h in Headers */, + 2E36677B5AD047F0FDCF53F13D79065D /* FrameType.h in Headers */, + E4EDCFA7B9D3AF434BDA26AA50B7C982 /* KeepaliveTimer.h in Headers */, + 1E4BD21C6E031521B4C175F502A53699 /* Latch.h in Headers */, + 5DA65FABF819F25E95E8F3BBD7C89AC8 /* Observable.h in Headers */, + 7200ED8D21C769903031B72F03FA5E68 /* ObservableConcatOperators.h in Headers */, + 14EF8BD103E775F17E2375740F395B59 /* ObservableDoOperator.h in Headers */, + 19A410646DF6FAB5345790AD1ED322D2 /* ObservableOperator.h in Headers */, + EE59530EE72C2E4E2A4786FA30FD77F6 /* Observables.h in Headers */, + E60291FD7A204B0ED3D7C6781255E1F1 /* Observer.h in Headers */, + 78CD6986588CBF10FB67067D42C273F3 /* Payload.h in Headers */, + E5F7EDB3E916B295A705F7FEB1850A6B /* ProtocolVersion.h in Headers */, + C6FC64DCF29520D0E017CF9E1B927324 /* PublisherBase.h in Headers */, + EDF941513CBF50DF0F4BE26AB38B294E /* PublishProcessor.h in Headers */, + 763DD6BC01A6C254B2B25C9AD9C24835 /* RequestResponseRequester.h in Headers */, + CEA08D5784FB6AAC545565FDF2CBE168 /* RequestResponseResponder.h in Headers */, + 73488AB62DB09C1441FE4DB5C752616D /* ResumeIdentificationToken.h in Headers */, + A4AE6436A10194BF879A92BE9786452D /* ResumeManager.h in Headers */, + C38269EE842FEDE201FB0A620BA19540 /* RSocket.h in Headers */, + 50E5D8A047658D0EAD402D0AFFAEA726 /* RSocketClient.h in Headers */, + 688723653FE5E5D42760F017F5BDB33D /* RSocketConnectionEvents.h in Headers */, + D530A23FD4ADB25091B7663568543BB2 /* RSocketErrors.h in Headers */, + 49006794D0E9F23D6D2AB23EF628FC0E /* RSocketException.h in Headers */, + 21DE53367B552AB45DBEFBB9964692BA /* RSocketParameters.h in Headers */, + 302087EB6A2F33B77DE680C8FF4D24A4 /* RSocketRequester.h in Headers */, + A691AD0FC8210D80A39EC2312F8D0995 /* RSocketResponder.h in Headers */, + 7FF0067335EABBFE087D139C872D17BC /* RSocketServer.h in Headers */, + 923D4243D761B2D782DEC412F0D07FE4 /* RSocketServerState.h in Headers */, + 26933A5C393A0E1D9A727F5CC6E909BA /* RSocketServiceHandler.h in Headers */, + 409BE5F865C0798AC50CB924D282C824 /* RSocketStateMachine.h in Headers */, + A42833ED19BB0A1B8922CE66D97E5770 /* RSocketStats.h in Headers */, + 26AFDFF2230BD13ED8CF7C38F54AEA09 /* RSocketTransport.h in Headers */, + 1C69A4ADDFE0915C2D192B089CCED4E7 /* ScheduledFrameProcessor.h in Headers */, + F03C7570886A1F208869983FF5D9F5EF /* ScheduledFrameTransport.h in Headers */, + CEEAE4B386757AB55988F462F17843D2 /* ScheduledRSocketResponder.h in Headers */, + FD04928F365972E0D401BE4D0BFF8F14 /* ScheduledSingleObserver.h in Headers */, + 10B3761610629E3B934BB8C1DB8C6CC8 /* ScheduledSingleSubscription.h in Headers */, + A53C9CFA074D4C33A4920B79BEA8EE92 /* ScheduledSubscriber.h in Headers */, + C418B7058A29D268440457BDCC350CB8 /* ScheduledSubscription.h in Headers */, + E0BE5A58ACFB037C0B4065E893E1BD7F /* SetupResumeAcceptor.h in Headers */, + 75DD308CB6A774C21439648598B8DB68 /* StackTraceUtils.h in Headers */, + D905C7C29C838ACDEFFB50DEDFFC83D6 /* StreamFragmentAccumulator.h in Headers */, + F95DFE96FCFACAE24A16207380286C0D /* StreamRequester.h in Headers */, + 1E8A4925E70F080765CFE0FCA2D0799C /* StreamResponder.h in Headers */, + A6A04D9DA8C7871031A980A3DD4C48E5 /* StreamStateMachineBase.h in Headers */, + 89A9AE5C643C896CC007D0B005C968AD /* StreamsWriter.h in Headers */, + 3098EBEF9719137A78260C92558CE65A /* Subscriber.h in Headers */, + 44F22299E6464B476ECC6E382A04D759 /* Subscription.h in Headers */, + 300F7B23593DEF8943B5AAA783616DBC /* Subscription.h in Headers */, + 7C0E2E912F3644CD139BA976AAD1CF58 /* SwappableEventBase.h in Headers */, + 1085003D8B2A4450BE38128F9914EC97 /* TcpConnectionAcceptor.h in Headers */, + B1BDDADCCADFC7FE9353326611F38528 /* TcpConnectionFactory.h in Headers */, + BAD81FBA9C3EE94DAAFC467E2C4FE297 /* TcpDuplexConnection.h in Headers */, + 10C959EBE6C5627B66703C36CAB92827 /* TestObserver.h in Headers */, + C2C077E7D787244CD67831B1E8A856C7 /* TestSubscriber.h in Headers */, + B04776B971D3E95C9BB04B94C6DE999F /* ThriftStreamShim.h in Headers */, + 9E2C18DE7DBAF8EEE08CD95FFE4320D2 /* Throughput.h in Headers */, + 34EEAACA6336D2A717F1934AF87F2C7B /* WarmResumeManager.h in Headers */, + ); + runOnlyForDeploymentPostprocessing = 0; + }; + C7532EA54CCA68E77A1C754CE72B6777 /* Headers */ = { isa = PBXHeadersBuildPhase; buildActionMask = 2147483647; files = ( - 89D4E55B3B9C400960A626ACF043D719 /* bufferevent-internal.h in Headers */, - A1869E7C288CC107421EA50CAB3D7A45 /* changelist-internal.h in Headers */, - 0F9BFE9CF36FA0EF856FBCFD9350F5EE /* defer-internal.h in Headers */, - DC5381B47E4756E84E90722FA138338E /* epolltable-internal.h in Headers */, - DD3E6E1902E40CC6F8AA31C643F4C811 /* evbuffer-internal.h in Headers */, - F56F310CAC7CB10F55EAE8F2E1C6E694 /* evconfig-private.h in Headers */, - EFC03F1EAEC36B032E66084433B4DBAA /* evdns.h in Headers */, - B5997E72FAF27BC4965545B78D6CA9A1 /* event-internal.h in Headers */, - 1BAFAD4E2C8D9BAB9C51AB5EA0ACD873 /* event.h in Headers */, - B314869AB7CEE997246109CF7188AC9D /* evhttp.h in Headers */, - 35EC1CCF497D02207D4E8FD41D54F57E /* evmap-internal.h in Headers */, - 23FA7352988280C2EE623B66427EC13B /* evrpc-internal.h in Headers */, - 0911B0BF6C7F9D3671AAA712CBB7AF1B /* evrpc.h in Headers */, - 523BE73D9C77E2B415B1830145587823 /* evsignal-internal.h in Headers */, - FA6660038CBA76F686ECABE77A152FCC /* evthread-internal.h in Headers */, - C42DC65831F83CAF2411C9871984741D /* evutil.h in Headers */, - 06C9A25AC4DC7A39AB08FCBAE8362B45 /* ht-internal.h in Headers */, - 630CD241C5AA42CE774C9BFA9A696616 /* http-internal.h in Headers */, - 4794617BBCE41B683926DABB9D23F886 /* iocp-internal.h in Headers */, - 899535A2E478C13DA2D193CA3BE28847 /* ipv6-internal.h in Headers */, - C4875AFE3E0E6ADCCD55A92826E4D0E6 /* kqueue-internal.h in Headers */, - 4C8B76E847EC1BF281896A794EDB1B8C /* log-internal.h in Headers */, - 91BAAE27526FBD0127C99B01A007C98C /* minheap-internal.h in Headers */, - A728C27174F569E0771AB95FF01601D7 /* mm-internal.h in Headers */, - AF39B2243320A56D81A8D3362E412803 /* ratelim-internal.h in Headers */, - 2B136DF6010B19CFB7ED6716E7EF3427 /* strlcpy-internal.h in Headers */, - 0CE3278495A8CAFC7A47D2E1CC3376CF /* time-internal.h in Headers */, - BFCE2633AC63D06451B82D15550FE863 /* util-internal.h in Headers */, + 15E91BD536DF213A23E5F7AC6B4C10E8 /* Pods-ShareRocketChatRN-umbrella.h in Headers */, ); runOnlyForDeploymentPostprocessing = 0; }; - CD3AB0A1E026810941762A434DB83C66 /* Headers */ = { + C967CC7DEAC09382407C7344ACA27D92 /* Headers */ = { isa = PBXHeadersBuildPhase; buildActionMask = 2147483647; files = ( - 81A2FFCFB7C5FB3DD14807DDA43C839A /* RNBackgroundTimer.h in Headers */, ); runOnlyForDeploymentPostprocessing = 0; }; - CDDAEABFE7E6F0D2806DBE0FE0B1487B /* Headers */ = { + CD3AB0A1E026810941762A434DB83C66 /* Headers */ = { isa = PBXHeadersBuildPhase; buildActionMask = 2147483647; files = ( - E0C74EBAD5EA1E588C4565B77D8D13F1 /* RNJitsiMeetView.h in Headers */, - 0E2E2C6FF5241928DEBD933F4B74BA08 /* RNJitsiMeetViewManager.h in Headers */, + 81A2FFCFB7C5FB3DD14807DDA43C839A /* RNBackgroundTimer.h in Headers */, ); runOnlyForDeploymentPostprocessing = 0; }; - CDFEB92254204B59215A657C81EDF8EF /* Headers */ = { + CDDAEABFE7E6F0D2806DBE0FE0B1487B /* Headers */ = { isa = PBXHeadersBuildPhase; buildActionMask = 2147483647; files = ( - E6117DD34413A1D86C9FC793933387DA /* TOActivityCroppedImageProvider.h in Headers */, - 5E414935DECD018A79FCD98D5ECFB1B1 /* TOCropOverlayView.h in Headers */, - A4BC6FA20AC696FFB4D868DEA7EDA236 /* TOCroppedImageAttributes.h in Headers */, - B829AC4A201437872BBBFE86C77C3B27 /* TOCropScrollView.h in Headers */, - C3D4AA82F90AD3E88C29B68BB710A6E3 /* TOCropToolbar.h in Headers */, - 1D7DB118618B351899CFA202028AD8E8 /* TOCropView.h in Headers */, - A72D0A3F6AB1CCB1A25B627C50E7A304 /* TOCropViewConstants.h in Headers */, - 9ACF83B889FD019FAB8881F0F08518B1 /* TOCropViewController.h in Headers */, - 0BA710712CA13C1B9D15CC6616C17A18 /* TOCropViewControllerTransitioning.h in Headers */, - 6F26D779C3AB2A1197DB0289B4936A92 /* UIImage+CropRotate.h in Headers */, + E0C74EBAD5EA1E588C4565B77D8D13F1 /* RNJitsiMeetView.h in Headers */, + 0E2E2C6FF5241928DEBD933F4B74BA08 /* RNJitsiMeetViewManager.h in Headers */, ); runOnlyForDeploymentPostprocessing = 0; }; @@ -25904,6 +25163,57 @@ ); runOnlyForDeploymentPostprocessing = 0; }; + D5120C373A3D85DECC1BEA9C0BF6BE8C /* Headers */ = { + isa = PBXHeadersBuildPhase; + buildActionMask = 2147483647; + files = ( + 27A1212FDD9131D67C5E6EA464F0F0C0 /* alphai_dec.h in Headers */, + D797960556ED5EF1F4B84898BDD03A91 /* animi.h in Headers */, + 25E68BCBC83B192573FC930415D10B85 /* backward_references_enc.h in Headers */, + 5B42A7802D51B9443CB50C80A66E85FB /* bit_reader_inl_utils.h in Headers */, + 06446531B156F096A6517433B3B36536 /* bit_reader_utils.h in Headers */, + 6C0AE5D906339E63E392DCB8994305EB /* bit_writer_utils.h in Headers */, + 56EF8DA5A7C04AF974461197F2B45903 /* color_cache_utils.h in Headers */, + 484014C0D5498BED1B9DB230855798C9 /* common_dec.h in Headers */, + 4981416321B820A52EB175D25A8E93F1 /* common_sse2.h in Headers */, + 7D0B8A73EAEC83F835A3265FAC5FBF18 /* common_sse41.h in Headers */, + 100546FA55A6A911F99281D3E4545C47 /* cost_enc.h in Headers */, + A4EA2296CB12CDD706318F5499C27C81 /* decode.h in Headers */, + 5A033A32F9027B0C3C8EB62231EC34FA /* demux.h in Headers */, + 16439D5F2BC17BA5A8F09779B09C76EB /* dsp.h in Headers */, + E0074E89428636960AFCB0F53888933A /* encode.h in Headers */, + C842771990BDD157724306E780CCC8BB /* endian_inl_utils.h in Headers */, + 527B0A16001BA3684FF0B7217F8AEB56 /* filters_utils.h in Headers */, + 4BB30E423EE3E12B8A881FB974AEEFF5 /* format_constants.h in Headers */, + 5B10E04566B9D459AFDA52B34551572A /* histogram_enc.h in Headers */, + F683E4DD123401F22890E9AEEDA1D2CA /* huffman_encode_utils.h in Headers */, + 92C9A1312FC015461DD8B2117EC75697 /* huffman_utils.h in Headers */, + 704E4D97B1E7213A57D916F9D537F958 /* lossless.h in Headers */, + EF83F2C33A5D14A54B7A74466A141C21 /* lossless_common.h in Headers */, + 405E04A99629FC80F4A17AF9BA83A599 /* mips_macro.h in Headers */, + E3B5EE28487F65352259703D853ABA3A /* msa_macro.h in Headers */, + A8344D08B47CA06C8672E6AA324D90AC /* mux.h in Headers */, + CBE7B3D3B9C96BC083AE9703C49B4943 /* mux_types.h in Headers */, + 7850EB019E189B41E60B79126FC521AF /* muxi.h in Headers */, + 2B4BC91E960BE8215E74412B95F9D6C9 /* neon.h in Headers */, + 64C7567236FD8F4CB507F095C61C5925 /* quant.h in Headers */, + E3CE040BCA5F974E8468FD7E15F9BAA5 /* quant_levels_dec_utils.h in Headers */, + 443EFA18E0081EE874C92BDAD3B0D587 /* quant_levels_utils.h in Headers */, + 65A18864E440372817F85F2EBBC2C63E /* random_utils.h in Headers */, + 119CD1193BF1EFEC25FB318D7CC7EE09 /* rescaler_utils.h in Headers */, + 5B6DF29E467D0E8EB9B32DB691480C39 /* thread_utils.h in Headers */, + 24CD16F2B3F23940C16EFD45C85B6F06 /* types.h in Headers */, + C571320AA0198398AEB95F86E59958C9 /* utils.h in Headers */, + AA54A04DAF35D58665B450585B1C2710 /* vp8_dec.h in Headers */, + 3120A800D922D6EE3DFC424F34D89465 /* vp8i_dec.h in Headers */, + CB5C4CE1C4B732A10A31CF954A905F67 /* vp8i_enc.h in Headers */, + C270BC277D58BF2D66FA4D04CE876FFF /* vp8li_dec.h in Headers */, + 023807DA6F7B9AF3C7D5C3C3FD214DC9 /* vp8li_enc.h in Headers */, + 9F2DEF7D411D365F674D7585EC0BBC2B /* webpi_dec.h in Headers */, + 9B12B3D5D98EC163FF6E21AD0BBB5F62 /* yuv.h in Headers */, + ); + runOnlyForDeploymentPostprocessing = 0; + }; D668AE690E131614FA3DE58298639726 /* Headers */ = { isa = PBXHeadersBuildPhase; buildActionMask = 2147483647; @@ -25912,6 +25222,44 @@ ); runOnlyForDeploymentPostprocessing = 0; }; + D676AD47B164074142363AB1757CB97D /* Headers */ = { + isa = PBXHeadersBuildPhase; + buildActionMask = 2147483647; + files = ( + 646C3DE7C0B041A81633F5B6792E9EC3 /* cct.nanopb.h in Headers */, + FAEA8255FCFB1B340D105BF8AB9097B3 /* GDTCCTCompressionHelper.h in Headers */, + 817211F50ED4836F4079B653F5F1191F /* GDTCCTNanopbHelpers.h in Headers */, + A555C2974F4C658292143A8C6AD1586F /* GDTCCTUploader.h in Headers */, + AD5372FED632888277A8732959AA194C /* GDTCORAssert.h in Headers */, + 263A41595D71A567F0143C8F3FB17C1A /* GDTCORClock.h in Headers */, + 13DA04B0F979992769E432DBFF641596 /* GDTCORConsoleLogger.h in Headers */, + C948E0AA89CCB5B4644DB079C78B8829 /* GDTCORDirectorySizeTracker.h in Headers */, + 87EC7F451F61A17E3F4837DAAF8A5F90 /* GDTCOREvent+GDTCCTSupport.h in Headers */, + 90406B9E5D1F1E0A2B4C03E8A24B8099 /* GDTCOREvent.h in Headers */, + 7B99DD45DC9D7CA53B95F5E88E310BDD /* GDTCOREvent_Private.h in Headers */, + 9B72D6962D961769E7109FCF189C36B8 /* GDTCOREventDataObject.h in Headers */, + 5E1713A15AF035975CC7215A56E80B35 /* GDTCOREventTransformer.h in Headers */, + 62863ED91304962D66667F85CCB7E3E4 /* GDTCORFlatFileStorage.h in Headers */, + E4D3A8A7901A4311A9DC9F2A2C242A6E /* GDTCORLifecycle.h in Headers */, + C3105FE985586C3F578404A98A25CD8C /* GDTCORPlatform.h in Headers */, + 3ACEEE971B2EDD26B7B97BFC2D95DBB9 /* GDTCORReachability.h in Headers */, + F75F6533E564F9ECFC8FD18B584B8E77 /* GDTCORReachability_Private.h in Headers */, + DFD25A9CB294B73A341AAA9E4B3477E2 /* GDTCORRegistrar.h in Headers */, + 4B9B44AC07BE7375036630205140044A /* GDTCORRegistrar_Private.h in Headers */, + 8AA1ACBFD25C2F731CC51BBA372BA951 /* GDTCORStorageEventSelector.h in Headers */, + 69DA21EE684C84FDC9E8B42F0D4BEC25 /* GDTCORStorageProtocol.h in Headers */, + C8EDB9C90CC0AFE5C12763C417261992 /* GDTCORTargets.h in Headers */, + 4C225DD430A54E44C4EA6745916C7A2B /* GDTCORTransformer.h in Headers */, + 7C8609D317F10C13E8884672C6501441 /* GDTCORTransformer_Private.h in Headers */, + 5FD68A8294C22DF2A0BA3FDA31E284E4 /* GDTCORTransport.h in Headers */, + E450CCD0A53FDFC6CF6B4739B0BE83CA /* GDTCORTransport_Private.h in Headers */, + BDDD5EA786359DCB4A059ED318FAEE37 /* GDTCORUploadCoordinator.h in Headers */, + 6DB7AFA7D04D78B3DD1A8F51240445EB /* GDTCORUploader.h in Headers */, + 313DC2FBD3E00CFDE9F3C766C29F8D2E /* GoogleDataTransport.h in Headers */, + 9D9A3E464AACB5B8BDCE4377E8F4DB35 /* GoogleDataTransportInternal.h in Headers */, + ); + runOnlyForDeploymentPostprocessing = 0; + }; D6F9FA10A749F2A4B2BAF84840D8AAE9 /* Headers */ = { isa = PBXHeadersBuildPhase; buildActionMask = 2147483647; @@ -25936,22 +25284,32 @@ ); runOnlyForDeploymentPostprocessing = 0; }; - DB41F3E190D38AA30843DAAC5E46E7F8 /* Headers */ = { - isa = PBXHeadersBuildPhase; - buildActionMask = 2147483647; - files = ( - BE43F0800E11F3DDB0951EBCF34A13B5 /* RCTBlobCollector.h in Headers */, - 25CCAEBEBC15EA8E17F271377684FA16 /* RCTBlobManager.h in Headers */, - 8E29E3515A4CEE0ED7F3697351C05B17 /* RCTBlobPlugins.h in Headers */, - C0B76728A1CD3342EB4E66B93E233712 /* RCTFileReaderModule.h in Headers */, - ); - runOnlyForDeploymentPostprocessing = 0; - }; - DE70141E66ACDE79A002F15F926D6056 /* Headers */ = { + DB92C835DA1FD50586C91264D38F1153 /* Headers */ = { isa = PBXHeadersBuildPhase; buildActionMask = 2147483647; files = ( - 651B1E070356E2EF27D6FFD2B836573B /* RNFBAnalyticsModule.h in Headers */, + 8E410D7393E02880C6703D3392B39CA4 /* CxxModule.h in Headers */, + 370255E4741FEC829572A78E8D8F0581 /* CxxNativeModule.h in Headers */, + CCC14B1774B942797C2094FCD3A0B344 /* ErrorUtils.h in Headers */, + 92B1869A3C9D9915E9D3D94FDDF2BBC4 /* Instance.h in Headers */, + 41DE60A216FD49F5CBDC272E08221DB9 /* JsArgumentHelpers-inl.h in Headers */, + 25509654F0BB85513EFF85CC3BEC2ECC /* JsArgumentHelpers.h in Headers */, + 2C698A0AD94670E3F3AD35ABB561EBF6 /* JSBigString.h in Headers */, + 04235E93206B3B87BC82491690432DDA /* JSBundleType.h in Headers */, + 3991329608BD07C36D92E222C7B4524E /* JSExecutor.h in Headers */, + DE0AC9BA697D88A6434E5F952A681DA1 /* JSIndexedRAMBundle.h in Headers */, + CA8EF2F6B156D6EF96D4FE241BF0E2F7 /* JSModulesUnbundle.h in Headers */, + 6E8128CA76023F58456F60B4B98A7A70 /* MessageQueueThread.h in Headers */, + 02FB7BAD63357BEB057E82AA74BEA8AC /* MethodCall.h in Headers */, + 02287497554908DF2E482B6644E04389 /* ModuleRegistry.h in Headers */, + 750213EA7615D4EE364B7A3EB628CD7E /* NativeModule.h in Headers */, + DCD4EDE7331F09B2CEA22A784A8C50DD /* NativeToJsBridge.h in Headers */, + C05DC25A14A3E4C1F2C1B9DC2D8A5667 /* RAMBundleRegistry.h in Headers */, + F205B38237DF1CD52D96CD041CD1032D /* ReactMarker.h in Headers */, + F0ED612350C086D4DBC1C5D811B4A7A7 /* ReactNativeVersion.h in Headers */, + 8DB2BD4DF33B43D6B9A360886043B37C /* RecoverableError.h in Headers */, + 0B8B8928B99FC908A6F602E15DD9BA16 /* SharedProxyCxxModule.h in Headers */, + 69DF212E88FD06B9E35C8A811F371E01 /* SystraceSection.h in Headers */, ); runOnlyForDeploymentPostprocessing = 0; }; @@ -25962,20 +25320,11 @@ ); runOnlyForDeploymentPostprocessing = 0; }; - DF72560A36C076A828625AAC05DDD005 /* Headers */ = { + E281942FEBF4B28965BC62C936E19EB3 /* Headers */ = { isa = PBXHeadersBuildPhase; buildActionMask = 2147483647; files = ( - 47E77AC8AD869ECF994E57F8801A37E5 /* bignum-dtoa.h in Headers */, - 38AFC6746695FC442AB7D8FED57F0083 /* bignum.h in Headers */, - B4AB02391CC37766B2D39816760ACDCA /* cached-powers.h in Headers */, - 1980AA2070B5D05EE9D82CEA0657A228 /* diy-fp.h in Headers */, - BF99C118754DCAC57106804DA2B0F10A /* double-conversion.h in Headers */, - D733A734F0541967B73273D3D8CFBF80 /* fast-dtoa.h in Headers */, - 470C67E65B177A7564DDDB30088B6452 /* fixed-dtoa.h in Headers */, - 6CB56BCBFBCF14734411CAB9B93ABCF7 /* ieee.h in Headers */, - 195934DEE449B865C196D000ED30C1AD /* strtod.h in Headers */, - 17F81717D18C092C2D664D60B5D17FEB /* utils.h in Headers */, + 016B978A443BD882EA7E0EDE183C3424 /* Pods-defaults-Rocket.Chat-umbrella.h in Headers */, ); runOnlyForDeploymentPostprocessing = 0; }; @@ -25997,45 +25346,27 @@ ); runOnlyForDeploymentPostprocessing = 0; }; - E98C3C15791D4116304B6BED0BED1887 /* Headers */ = { + E8F071568F1EF17EB525F005F985B1DE /* Headers */ = { isa = PBXHeadersBuildPhase; buildActionMask = 2147483647; files = ( - 8A736F87F6376165CEF7471B8148F5CE /* GULAppDelegateSwizzler.h in Headers */, - C9C8B73891305304B88FBF37BD8A1463 /* GULAppDelegateSwizzler_Private.h in Headers */, - 6E9781A4E5428881254790D7AD977110 /* GULAppEnvironmentUtil.h in Headers */, - C36F2E30F11858A980A2B0AC4D51176F /* GULApplication.h in Headers */, - 62F571EB3D98817641F22836C9F553FF /* GULHeartbeatDateStorage.h in Headers */, - AEDABA06F80505899270CCD9BDD50ECF /* GULKeychainStorage.h in Headers */, - 2D3C1900D6418690DA2E8E12DB6F280A /* GULKeychainUtils.h in Headers */, - EB1D80A3D49F992E63EE8FCDBA258D0B /* GULLogger.h in Headers */, - BB4F6AF89A15D0B403F5AAAB5360A704 /* GULLoggerCodes.h in Headers */, - F604CDE3522C85E4D2A64D403542A20F /* GULLoggerLevel.h in Headers */, - 6D62CF3B1271710DDDF00C71219BE253 /* GULMutableDictionary.h in Headers */, - 645C8C3EFE78BB2D84881B0B1BEDCA25 /* GULNetwork.h in Headers */, - F6F78D543DAE080607B3A86197FAF7AC /* GULNetworkConstants.h in Headers */, - 8B076718314BF12CC935D17DB55025E0 /* GULNetworkLoggerProtocol.h in Headers */, - 1A52E5F79E28E019DE28EEDEE55E4C3E /* GULNetworkMessageCode.h in Headers */, - FFD594DBA168EACB992388FA54912F5A /* GULNetworkURLSession.h in Headers */, - B1013306F4D903EA4671ED172CEFF591 /* GULNSData+zlib.h in Headers */, - 98674B6F902D96C5C51E908741BC41B7 /* GULNSDataInternal.h in Headers */, - 38079F6978D9A598E473A97D33DD9958 /* GULOriginalIMPConvenienceMacros.h in Headers */, - 0D6B2CE35D231D542AD7E1ADCC961B7C /* GULReachabilityChecker+Internal.h in Headers */, - 6D30282648F1A14F609AF954AA50D51C /* GULReachabilityChecker.h in Headers */, - 869AF1FA3CA8A58E80C69F407728F9C5 /* GULReachabilityMessageCode.h in Headers */, - A5201ED9AAC6F75922AD9ADECE5482F6 /* GULSceneDelegateSwizzler.h in Headers */, - 98D42452DF576790B4A295BC04E94D0F /* GULSceneDelegateSwizzler_Private.h in Headers */, - 45FC837D63E1E7BC1DC7E97E87E7AE40 /* GULSecureCoding.h in Headers */, - DB1270F702F323E608761D625B2F42AC /* GULSwizzler.h in Headers */, - 2B0367EBF5494DD605CCA7F32AFD6759 /* GULUserDefaults.h in Headers */, - ); - runOnlyForDeploymentPostprocessing = 0; - }; - EBDA5DA22E2D50A282A51D7CB9D5413E /* Headers */ = { + 544A809C3B317A48568E6CEE4C18B768 /* RCTConvert+FIRApp.h in Headers */, + 4214E7DF312F7A40002ECB2D30F48262 /* RCTConvert+FIROptions.h in Headers */, + 72CC97B4F403E43D149281930D5CDDD0 /* RNFBAppModule.h in Headers */, + 2AD7DC546E1F05A9AC230096A06840EA /* RNFBJSON.h in Headers */, + 222EAB200E0E64FB909CDD4DDE1CE30F /* RNFBMeta.h in Headers */, + C0B7687CD56CE59E0C08DF6CF3168763 /* RNFBPreferences.h in Headers */, + 5C71BEF9D2DAF983C59970C2A4FCF576 /* RNFBRCTEventEmitter.h in Headers */, + EF2C95C09EC4DB699C5E27BD2A15798E /* RNFBSharedUtils.h in Headers */, + C2AC1A7236CFBF795E8C242EE199DC3C /* RNFBUtilsModule.h in Headers */, + 15F5180613B16824522E75FF3BBD82F8 /* RNFBVersion.h in Headers */, + ); + runOnlyForDeploymentPostprocessing = 0; + }; + EBCADBABC91738A5F2D15E4637CB6297 /* Headers */ = { isa = PBXHeadersBuildPhase; buildActionMask = 2147483647; files = ( - BFE76612EA1566B36EA5E570C88367F0 /* Pods-defaults-Rocket.Chat-umbrella.h in Headers */, ); runOnlyForDeploymentPostprocessing = 0; }; @@ -26071,13 +25402,485 @@ ); runOnlyForDeploymentPostprocessing = 0; }; - EE2E2A56C5206CA5667A5F0F65F5E033 /* Headers */ = { + EE093840BBB0CE0DED32E8A87DECEED4 /* Headers */ = { isa = PBXHeadersBuildPhase; buildActionMask = 2147483647; files = ( - D71ADD949E5B71AA9A76AEC37C234894 /* SDImageWebPCoder.h in Headers */, - 0408D4F196CE6FEF759EB3C4F80CFF03 /* SDWebImageWebPCoder.h in Headers */, - C0F09C80CA920E9A4B8C4B4E52DBE162 /* UIImage+WebP.h in Headers */, + 5CFDCDB5C5D8D14CBB904234D8C04F20 /* Access.h in Headers */, + 6A7115F60C3D13982138158B58CD9876 /* Align.h in Headers */, + 3A638C6910A745D1282F62E74273D6A4 /* Aligned.h in Headers */, + AAF102BFE5846B036C70C4B4E11C7833 /* ApplyTuple.h in Headers */, + 48E5AB4756E69C072E88DB49D6A56A63 /* Arena-inl.h in Headers */, + 4360E78D9036954974E2D1F4F090D2A0 /* Arena.h in Headers */, + D230F8FBDE1E3607C7072C3BB70903C3 /* Array.h in Headers */, + 46FA76FD60DE3EE60B76EDA2785B2305 /* Asm.h in Headers */, + 8DE24FFE9ACEDCAD566487FBFDEA179F /* Assume-inl.h in Headers */, + 248167E4FBE79DCA05F2D639C192ADD2 /* Assume.h in Headers */, + 319931AB20A25852481A3B5FFCAA4664 /* AsymmetricMemoryBarrier.h in Headers */, + 633B1B5961112D8742938B3D106026E1 /* Async.h in Headers */, + 3C0ECD44CA71B46C62BA0CFFC633AEC3 /* AsyncPipe.h in Headers */, + C98FCA9560B7026D36901220416DBEFD /* AsyncServerSocket.h in Headers */, + C8CF2F4EBE2DD9303179640E59A47784 /* AsyncSignalHandler.h in Headers */, + 4C8032B39D6C4CD174A8A9AC9FDAC392 /* AsyncSocket.h in Headers */, + 5E9E587926C9A56B27F9B137AF43EF9E /* AsyncSocketBase.h in Headers */, + 0CA7F92173CDAEB58AAC69CB88FD95A9 /* AsyncSocketException.h in Headers */, + 474F9842F0216AA8E7F06AB16CFC5BD0 /* AsyncSSLSocket.h in Headers */, + 1F6381969CC17A0AE1985824FBD1F6B6 /* AsyncTimeout.h in Headers */, + 1D28678D782CF24654F25934D1BA14FA /* AsyncTrace.h in Headers */, + ACBB712DA16041E534A8CCA7829A8682 /* AsyncTransport.h in Headers */, + 8CB4517B41A5F45BFE5894EB82AB6943 /* AsyncTransportCertificate.h in Headers */, + 0544B429E459BDD2637651E48DFC2FB5 /* AsyncUDPServerSocket.h in Headers */, + 2273984123CCD0C2D4C62CBADD7DABCA /* AsyncUDPSocket.h in Headers */, + 76E27AB61E7EBA73E54128F433878D6C /* AtFork.h in Headers */, + 8E9501DCC8E2A501CB5967ADD1AB7F6A /* Atomic.h in Headers */, + 53310A3B917A40A9806B73551DDD8F44 /* AtomicHashArray-inl.h in Headers */, + D83C602D22593FF1E66C285AC1AB0059 /* AtomicHashArray.h in Headers */, + E427866DB0116EF9E3E2F5AE28694FA1 /* AtomicHashMap-inl.h in Headers */, + AEDE27C7D69B68F3416BEDCA4768B071 /* AtomicHashMap.h in Headers */, + B99EE43F1704809ABC37E838E9E7ED3A /* AtomicHashUtils.h in Headers */, + F43697EA3F1F7B064649CD4D97DD92AC /* AtomicIntrusiveLinkedList.h in Headers */, + 022220C3E0F73384332B0A29E15BDF51 /* AtomicLinkedList.h in Headers */, + C0E1A02FF8E890098A01A8C1F749CF52 /* AtomicNotification-inl.h in Headers */, + 702D4A46D8CDEB63D7B024F7C3980E91 /* AtomicNotification.h in Headers */, + 33C4412357E668C88FAFCAF8BEBC9F0D /* AtomicReadMostlyMainPtr.h in Headers */, + 5A7509BF9721E4A6D3788E2C4AE7B1FF /* AtomicRef.h in Headers */, + 608DF419F0A6DFC5E5E39C487C9D2026 /* AtomicSharedPtr.h in Headers */, + 6521B37465F5BE14D6380434A552DE36 /* AtomicStruct.h in Headers */, + C0CC0C47C14D90F3E256118B49667003 /* AtomicUnorderedMap.h in Headers */, + D6AB2700155C267B3F83E49CD675CB36 /* AtomicUnorderedMapUtils.h in Headers */, + C849D7E6C02C13CCCA872C1EC26EBB6B /* AtomicUtil-inl.h in Headers */, + 2FB98563FD7C4C036BD54CD88398BAE6 /* AtomicUtil.h in Headers */, + 5050D4595E0B099FD13F3997073DE03E /* AtomicUtils.h in Headers */, + CB0275378AB8D1359BDCF4E42B9F3072 /* AutoTimer.h in Headers */, + E5C594A6F13B7ECBCF7716A5C830DDBD /* Barrier.h in Headers */, + D77332625182B270309EFA885BA85CCF /* Base-inl.h in Headers */, + 4425D865C382E5A7F66B2E324A4A8BB3 /* Base.h in Headers */, + 157FCED34BD3B6B7931CFF97A166899B /* BasicTransportCertificate.h in Headers */, + 8FF84446FE7FC8FD19CB934AA37241E9 /* Baton.h in Headers */, + 0670A01365D51964753FDE922077B5CE /* Benchmark.h in Headers */, + 4E81E27B91920F65DBA593A96D7DE6B1 /* BitIterator.h in Headers */, + 0FFD5227B9B90E7A5A3C35B2BF24E36C /* BitIteratorDetail.h in Headers */, + A0269DEB14829A56A9DB81BAC1757EAA /* Bits.h in Headers */, + 94F11D0612AF34B1A6D61B36E679CA20 /* Bits.h in Headers */, + 48A540684E68E0D72E8E63F17FE8CE80 /* Bits.h in Headers */, + B5AD16B337D060F5A476E175CD452D04 /* BitVectorCoding.h in Headers */, + 0E573933358CB624E531943CB81F4D1A /* BlockingQueue.h in Headers */, + 98516E0B87BEF785653392202E19988C /* Builtins.h in Headers */, + 86BEC1042A8C124EBACFC8D0EB3C4B00 /* CacheLocality.h in Headers */, + 241B56E43A5F06E73865D72FB92EA8C2 /* CallOnce.h in Headers */, + 8BF9F19B1242A1FD65C6470CCF6595EA /* CancellationToken-inl.h in Headers */, + 8FCAEC08D4C87B774BE2019207D67F10 /* CancellationToken.h in Headers */, + C621B51A7AC9F7EC5E706B46291D8677 /* Cast.h in Headers */, + 98444517DF716FD08D69EE6A6B90CA0E /* CheckedMath.h in Headers */, + 108AE943FFD960CA6936BDF4864ADA62 /* Checksum.h in Headers */, + 6AD4CAF4B8AB1ECDFEBE99BA64A642EA /* ChecksumDetail.h in Headers */, + 68623220BA16D807A53BE179FD34D21E /* Chrono.h in Headers */, + E0A74342CF72A243449AC2D7342D74C8 /* ClockGettimeWrappers.h in Headers */, + 5E886D934AE49599E7CF9E67BC2815DE /* Codel.h in Headers */, + B15041AB7221D85B5CEFEDA3A90A7EDA /* CodingDetail.h in Headers */, + 4AB3CCE1BD95C8D4B7108C04AB61B28E /* Combine-inl.h in Headers */, + 02159ED38B970675E818684A94F80CBA /* Combine.h in Headers */, + B2DD2BF040CCDB67E47C36CF0AB62068 /* ConcurrentBitSet.h in Headers */, + 26981057B264A6718219718CE3728771 /* ConcurrentHashMap.h in Headers */, + FCD1BFAD1C0B6D77A6B2C22479E6AD0E /* ConcurrentSkipList-inl.h in Headers */, + 1429B9C3708FA347D6C374F63722F3A6 /* ConcurrentSkipList.h in Headers */, + 7446A247FE6186D7EC1500E016CEE6CE /* Config.h in Headers */, + F4B6C72EAD5762D54A572DB5CB3AA680 /* Constexpr.h in Headers */, + 0A82ED97D123269E32199B33A9B7EC18 /* ConstexprMath.h in Headers */, + 81AB39DF85BEC6AA50FA4768B64E0728 /* Conv.h in Headers */, + 5F4D1961447A662DA933FBBBB1924151 /* Conv.h in Headers */, + 59374C793E394994B91634B2D28B0234 /* Core-inl.h in Headers */, + A30F073E9C16B246E52833A81E987E9D /* Core.h in Headers */, + EB4098E91A77D64A294E8276FC1BC58E /* Core.h in Headers */, + F3A704C9853AD3B97DB2A7885E0887BA /* CoreCachedSharedPtr.h in Headers */, + CBAB59D09DDD5A2419D42AFC4E4CC4CC /* CPortability.h in Headers */, + 255FF3AA9E3F8711E098D7193630B6EE /* CppAttributes.h in Headers */, + DFD898B2B1A192FF84402830AD32B64E /* CpuId.h in Headers */, + AE994AC6BCEABF745C25CE04842CDD48 /* CPUThreadPoolExecutor.h in Headers */, + 9C7C9476E98E858B22E8F97B757AD9A7 /* CString.h in Headers */, + 1A8D05CB328FD85F000AA4CEA6E9AF47 /* Cursor-inl.h in Headers */, + C234D3939874DC09772B283AD514A8B8 /* Cursor.h in Headers */, + 04BEDD063CE189F838D41922DFCE707A /* CustomizationPoint.h in Headers */, + D0276361743ECA670ED6CEDB334A8848 /* DecoratedAsyncTransportWrapper.h in Headers */, + 09E0AF842E2488D2085F2EEA94175CFD /* DefaultKeepAliveExecutor.h in Headers */, + A0F07E11CADCCC41893E62A14952C155 /* DelayedDestruction.h in Headers */, + 3A6B7A8818F60528F4CF8615BDF6EBEC /* DelayedDestructionBase.h in Headers */, + A588E1A22D8B73A0123586188973CC2D /* Demangle.h in Headers */, + 871D34F3E8CEE3F303D15B5A565CAAB0 /* Demangle.h in Headers */, + 2E70694A89C8816DC12C41242A9F384E /* DestructorCheck.h in Headers */, + F418A1C823088608CF41768802DACB36 /* Dirent.h in Headers */, + D73C9627EFA65D29F255D7385EA5BE2F /* DiscriminatedPtr.h in Headers */, + 26435812BE5B1D87787E076A194ABDB7 /* DiscriminatedPtrDetail.h in Headers */, + 3DB110E5A1002C35E9839FC3118C89F2 /* DistributedMutex-inl.h in Headers */, + 1095DA2DAEF01B7C3553ED261E431280 /* DistributedMutex.h in Headers */, + 0071807ECB474BC9BF8059B5424612DF /* DistributedMutexSpecializations.h in Headers */, + F30AED6F56A42F63D9C6F9AB1C9C3A88 /* DrivableExecutor.h in Headers */, + 9D57F8BC66FF24A30C93A8B4734F080A /* dynamic-inl.h in Headers */, + 1D904738EB23B143D87CAA7230593F8C /* dynamic.h in Headers */, + 1379B0785830C9D4200C31A2A610459C /* DynamicBoundedQueue.h in Headers */, + DA602C6DF90F29B1572281AF2A1FDE73 /* DynamicConverter.h in Headers */, + D0242C6D35390E27EF999B99AA5A6227 /* DynamicParser-inl.h in Headers */, + 1C88821AB42A60D7EA6DEBE0B2B0F8D9 /* DynamicParser.h in Headers */, + 0FAD0CB172277C8F61217E74BE8904E8 /* EDFThreadPoolExecutor.h in Headers */, + FD96E153749CF1517497E878C9FBB684 /* EliasFanoCoding.h in Headers */, + 9AAA0CDB66D4DD55D224A88CFA834EC8 /* EnableSharedFromThis.h in Headers */, + 813EE8D66A862412E3D5A43562750C95 /* Enumerate.h in Headers */, + 708386D5D7E50DC7AE439A9AF86E10B1 /* EnvUtil.h in Headers */, + 10F9F87FA5267F4D4AF486A99A82080A /* Event.h in Headers */, + 153A35D525E60C8D3F22126121437AAD /* EventBase.h in Headers */, + 528C867675F789C74811EDFD54F02675 /* EventBaseBackendBase.h in Headers */, + 328B2DBBA7A8BA1E3E80EE984216060A /* EventBaseLocal.h in Headers */, + 60815277F70A13408C14D82AE1BC58E8 /* EventBaseManager.h in Headers */, + 03052B41ECEE6D3C7E49F6FEE4CC2B14 /* EventBaseThread.h in Headers */, + 58DFCD0E7C316F7ACFDA80C04406BBFD /* EventCount.h in Headers */, + C0E57583C5B3E08D239FC4A64285577D /* EventFDWrapper.h in Headers */, + 57F5CE7550B3402AABAA993CA3BEA22B /* EventHandler.h in Headers */, + 2EB427AA741B0843E634188D429C128E /* EventUtil.h in Headers */, + 6CCA6863B4DDFB4F65D893B9504C78B8 /* EvictingCacheMap.h in Headers */, + F9AB03F2AA34ECB168B6969CB0E0AD59 /* Exception.h in Headers */, + 75BEC79C63BB1095757F29C25B8D2DF9 /* Exception.h in Headers */, + 17E1D229F87EE984B0BF092600B9E7EE /* ExceptionString.h in Headers */, + CE3963644B1AF83991E55289C01D2C4F /* ExceptionWrapper-inl.h in Headers */, + 373ADEBE544AA4D2263ACC15E9F1B1F9 /* ExceptionWrapper.h in Headers */, + 99DBC104D84C51083EA95CC54CE59DF5 /* ExecutionObserver.h in Headers */, + 951B14CD82FF080965F325EE26A3101D /* Executor.h in Headers */, + E06BE8765C48752E74780E7E8DC5034B /* ExecutorWithPriority-inl.h in Headers */, + 1E65DE1AF2FFCB41CBC450EE7FDB7D1D /* ExecutorWithPriority.h in Headers */, + D4287F114B39BB224427B37307C7DF56 /* Expected.h in Headers */, + 52546D5AED1CE6F1D4D68F498DC60A87 /* F14Defaults.h in Headers */, + B876FD3A31DA2AFDFBB6D59ECEB23196 /* F14IntrinsicsAvailability.h in Headers */, + 845B1BC1FEDDE7961B99B882C6BDE15B /* F14Map-fwd.h in Headers */, + 997BA119C5D0A8728A550C1ECE8C5AD2 /* F14Map.h in Headers */, + 45EF0E506DE17E3713AF75754D2B635B /* F14MapFallback.h in Headers */, + 2BFCD0A656C3B53071CB397D022D9976 /* F14Mask.h in Headers */, + 52D14EE99B0367A9C26301E44AE3EC67 /* F14Policy.h in Headers */, + ED372065C882ACAD500405D3FF49ED43 /* F14Set-fwd.h in Headers */, + 583C40C63153AA0DFC038D02F558709B /* F14Set.h in Headers */, + FA4BDFB93A5AA8072499D36475D499D2 /* F14SetFallback.h in Headers */, + 29FA7674F60292DCDFDF3FDC2F0F3D16 /* F14Table.h in Headers */, + 7E06837009D73DD82C6BB8738B2271A4 /* FarmHash.h in Headers */, + FDB8FC87DDBF0B6B214EDC547ED48654 /* FBString.h in Headers */, + 520CBF8847D1D897D7816BB47BC77CA6 /* FBVector.h in Headers */, + E916A648499FD9D5E8151646F31AB8D2 /* Fcntl.h in Headers */, + EF3C5A26E9DAEEC2133F988F234EA097 /* FiberIOExecutor.h in Headers */, + 787766F435F8357737B6951D6CA54D7A /* File-inl.h in Headers */, + 370AFDEE8CAFA827C325A8C6A0BC520E /* File.h in Headers */, + 8EF75CB4E19E223DFEF94CBAA968831A /* File.h in Headers */, + 9E3E23BE13C323A58C500CE63344BAC6 /* FileUtil.h in Headers */, + 6370EACA061EDA4FD2A2C4DE468F6C5B /* FileUtilDetail.h in Headers */, + 0B126408506C350F2F30E1ABD5C11CAA /* Fingerprint.h in Headers */, + 0EF5CD7DFDF7DB7FCB1490E08F54E6C7 /* FingerprintPolynomial.h in Headers */, + F19B91BBA0DE84FB0D7F5AC0BA2E48F3 /* FixedString.h in Headers */, + FDA7F0D315ED1270A86C302BAA663FBF /* FlatCombiningPriorityQueue.h in Headers */, + 33C6657C10483B1B3F626D6D25680170 /* Foreach-inl.h in Headers */, + 1A07E22C519215A7231FF80645CAC7C7 /* Foreach.h in Headers */, + B538432FD3992CC838E282652F6631FF /* Format-inl.h in Headers */, + 1BD48824A0DECB1EAFCFF61C626BB736 /* Format.h in Headers */, + A927B095175E977D06BC7120530267E3 /* FormatArg.h in Headers */, + D99AE5A21A2CD1DE5AD58B6BC7DBE0F1 /* FormatTraits.h in Headers */, + 09625D9B254D356D886B629E49A85B44 /* Function.h in Headers */, + B603DF66DBFBC6E7344BACA9F78D57CC /* FunctionScheduler.h in Headers */, + 496786D7BCFF7C9B43F19578122E15D2 /* Futex-inl.h in Headers */, + 7C9995159766933709D527557334F079 /* Futex.h in Headers */, + 191BA42F8BC8D313438F769C5ABD9B30 /* Future-inl.h in Headers */, + BD90752A87DF92935D5C8D72C1116D37 /* Future-pre.h in Headers */, + 82E62457DB6DA99CCF29E3829E0ACD82 /* Future.h in Headers */, + 393CACEEEA07756470C5746E4A321D33 /* FutureDAG.h in Headers */, + 23AD49C7DC845EC9002756841E7D6A7E /* FutureExecutor.h in Headers */, + EB53B005DE2290BD3BA9F07C65B66FC4 /* FutureSplitter.h in Headers */, + 0F32FC0B4F3A3581B39543C67ABB9555 /* GFlags.h in Headers */, + A0E76F5002B07AE2B54E137A7C424EF8 /* GlobalExecutor.h in Headers */, + FCB29464D2B28E7958D8152C37F3323F /* GlobalShutdownSocketSet.h in Headers */, + F45ED182844CFF8F126F90025669EE05 /* GlobalThreadPoolList.h in Headers */, + C0033D87799C1958892A05802CD2B8A0 /* GLog.h in Headers */, + 63196657785D91F20874FEDD4898E7A4 /* GMock.h in Headers */, + DE31CEC4EF3254ED6DFB8775BCA7BA60 /* GroupVarint.h in Headers */, + 0CCF6CD925A1487BFF728600F8654C9B /* GroupVarintDetail.h in Headers */, + 0E080F1E747A9D515BE9D22D88AD8F18 /* GTest.h in Headers */, + 5BAA5D06FEA15C10DFDBAC987A42D41E /* Hardware.h in Headers */, + 391AC3B6B5A494EF0613C7C352D4FBBC /* Hardware.h in Headers */, + 253AB4C0503EDF986DEACE0E8744C0FA /* HardwareConcurrency.h in Headers */, + 1CE344E9BCD4519E224A2D98FB72C3A8 /* Hash.h in Headers */, + F678286436DF873098DB482E316D5701 /* Hash.h in Headers */, + 0C5B700AF7E918761233AFD1C923D5D2 /* Hazptr-fwd.h in Headers */, + 36D84F9BCA367058A7F45120F3418D29 /* Hazptr.h in Headers */, + 0C806A8813DAC8593957C7E52650FB76 /* HazptrDomain.h in Headers */, + 09F06A47D6509845FBF2C8008325EF65 /* HazptrHolder.h in Headers */, + 5DE1B082A536EABA29E67BE1A45D9C1D /* HazptrObj.h in Headers */, + 50904C33ABE461DB41AF66CC456337F3 /* HazptrObjLinked.h in Headers */, + 53772BFF7B42097400E1548EB4BE6A91 /* HazptrRec.h in Headers */, + 1855441164B0A38244DE3F632821D34C /* HazptrThreadPoolExecutor.h in Headers */, + 27A7E819AF32F3A5E86B981966AE0482 /* HazptrThrLocal.h in Headers */, + BEE96C5ECB32857DC3D52206F3209ADC /* HazptrUtils.h in Headers */, + 89CCD63A3E0912DE0A93D0034B75F8DF /* HeterogeneousAccess-fwd.h in Headers */, + 8D61EB9942D22928B2593B08182FA24E /* HeterogeneousAccess.h in Headers */, + DF762D589D26616908008D4D40387251 /* HHWheelTimer-fwd.h in Headers */, + 4E281E2B08F7AF7CE7932C4B013869F3 /* HHWheelTimer.h in Headers */, + B66B4CA59EA3AFC856EE3CD84070F2F4 /* Indestructible.h in Headers */, + 2628C174DDD2FC307A13C95A1378C4A3 /* IndexedMemPool.h in Headers */, + 25D2D0E1AC4A8136A2232F4F211A784B /* Init.h in Headers */, + 5D2182FAE90F2CC29EE714004ADA653F /* Init.h in Headers */, + 5A4F8719852ED4A7D67CCC6099B164B8 /* InitThreadFactory.h in Headers */, + 5188BD8020DC6300794725A025214DFF /* InlineExecutor.h in Headers */, + F780C72BF2D82C3C7CABD5B19B712A3F /* InlineFunctionRef.h in Headers */, + 308E79E52E0EE03792C429EF76E7AD06 /* Instructions.h in Headers */, + 16DA3275B74A220727BF2C99C7646884 /* IntrusiveList.h in Headers */, + 7B0E9160CA1354F1BBB6F1C60424FAA3 /* Invoke.h in Headers */, + CAFE5D5687E84988576386FCA6506588 /* IOBuf.h in Headers */, + 1BE7DE9ABDDF2DBD8EDAE8BBD8FD5018 /* IOBufQueue.h in Headers */, + 57447239B8EBF083F478440508047E90 /* IOExecutor.h in Headers */, + 6B0777232E6B4DBDC310B03E35502076 /* IOObjectCache.h in Headers */, + 0C7C197B1D7D237E6D09BDD33FD7C7CD /* IOThreadPoolExecutor.h in Headers */, + 23448D84E26BF80165522BD84BC3849A /* IOVec.h in Headers */, + D1742C87B06A2172D144BB377D635454 /* IPAddress.h in Headers */, + 7BDD90FD6BD07B053F410C697FE43C53 /* IPAddress.h in Headers */, + 99536620398822E3C09FC35A17E98B42 /* IPAddressException.h in Headers */, + AD4A77689C490606F59A3873471B2B52 /* IPAddressSource.h in Headers */, + 10B8AD812C1894D236B3637997F1E06E /* IPAddressV4.h in Headers */, + 07D2DE5824F54F322A419D1459871F61 /* IPAddressV6.h in Headers */, + 9C5822A387767D76C56136622FCD4D55 /* IStream.h in Headers */, + 4080FF47DBA56C9871E99A681953BAA9 /* Iterator.h in Headers */, + 8B683614D4423499A26EE312BE90C0FE /* Iterators.h in Headers */, + A59C08AC8F5CDCA73859D5DEB63EC91D /* JemallocHugePageAllocator.h in Headers */, + 0F856B9E0FD09097F3B8CF888531F34E /* JemallocNodumpAllocator.h in Headers */, + 2304DBD8D44151DCDDC18B98B337B081 /* json.h in Headers */, + 068DEE637CF18C5CA28D8C37AA84BCAA /* json_patch.h in Headers */, + A348FDB758C676AFDB94F4268A7CE310 /* json_pointer.h in Headers */, + 6099113BC93359F3B9FF365759F0DB43 /* JSONSchema.h in Headers */, + 5E1510C5671B82ACD149ECAD81BFF647 /* Launder.h in Headers */, + 0C49F960254DA95A025FABC4C2D84AD1 /* Lazy.h in Headers */, + ABAA2B7EDF49A361E743F807CF6FA4EB /* Libgen.h in Headers */, + DF96B65C7C2933BCDF82969CB62ADAFF /* LifoSem.h in Headers */, + 93C34CD0EF09DB3832A77768774D2AB2 /* LifoSemMPMCQueue.h in Headers */, + E6EB2A51A82C9C0FBB1BD8848288448A /* Likely.h in Headers */, + BD8E1BA4FCD89B3A3900D6585ADAB75D /* LockFreeRingBuffer.h in Headers */, + 44BA0919DCD34C837C62DE281FBE2613 /* LockTraits.h in Headers */, + DD289E5348EC62547A84451EB096442C /* MacAddress.h in Headers */, + 2791516D3139E56FD1F3797A690297C4 /* MallctlHelper.h in Headers */, + DD20E84C34CB119AF87706323005BC02 /* Malloc.h in Headers */, + 9745A838A3553CA80E4578415AC31465 /* Malloc.h in Headers */, + ABD684DEAEB59DFDBA1E619F9FEB2553 /* MallocImpl.h in Headers */, + 2C73B2275ABCA972F6D283E5BA44B239 /* ManualExecutor.h in Headers */, + 5526EE1517CFE2DF3FA2C659E2A535B8 /* ManualTimekeeper.h in Headers */, + FE1D4D11D3CE354358980C68A3C6D70E /* MapUtil.h in Headers */, + 64CCC36808CE10A05568DAC157366021 /* MasterPtr.h in Headers */, + 40B5490D28C62CA30EC1057E958078E0 /* Math.h in Headers */, + 55833ADA71758EA651C5CA15B5C499D9 /* Math.h in Headers */, + 60C407FBF1FA12CB4EF23AD2C207A67F /* Memory.h in Headers */, + 12EB37B14C88AED393B9A783CC525A20 /* Memory.h in Headers */, + 3141F51226BA0E27DAE098311328E9DB /* MemoryIdler.h in Headers */, + E5252B3A9A7D4559BB03F17E013F92D6 /* MemoryMapping.h in Headers */, + 83F78784C38C0B3A38C7CCFA974E0662 /* MemoryResource.h in Headers */, + 3DED6A1D3BFFCF13ED6591597F12501D /* Merge.h in Headers */, + 76B7E5912A4AA973C24467DC9236A3AF /* MicroLock.h in Headers */, + 4AB37DBFB65E3CDFE553A1A876EFD292 /* MicroSpinLock.h in Headers */, + 87E94EAD1407AB3D0A885280CB31DAC3 /* MicroSpinLock.h in Headers */, + 7918936060A2B254F749653AEA81BDD9 /* MoveWrapper.h in Headers */, + 9533850233342569ACFDA2410E569016 /* MPMCPipeline.h in Headers */, + 6B2B51BC5FBB53F94B6A933A7C3DECC7 /* MPMCPipelineDetail.h in Headers */, + 0E449C03873A708ED7C9E7B9863F8F99 /* MPMCQueue.h in Headers */, + AE308D5FD1A68638719566F15634FE3B /* NamedThreadFactory.h in Headers */, + C660186C0C8A7CFDC63A7856C6E80D86 /* NestedCommandLineApp.h in Headers */, + 3E75B287AAE3D91328D7C5CA8FF3E111 /* NetOps.h in Headers */, + ECEDD9E180028FFCA4B8BAE05878B7C1 /* NetworkSocket.h in Headers */, + 9941F75B8B4B9019DF6BF8A6F32A99A4 /* NotificationQueue.h in Headers */, + D4899D87DE84F6203B7790EBF7536129 /* OpenSSL.h in Headers */, + D488AED92D3DEBBA25ADFD4E3981671B /* OpenSSLCertUtils.h in Headers */, + 8C05080070F769B4F3BADF4CE30CD51C /* OpenSSLHash.h in Headers */, + B8B342ECE3D12B2E1C98003F807A6209 /* OpenSSLLockTypes.h in Headers */, + 9425209E3A7E10EB5E59896E7982B174 /* OpenSSLPtrTypes.h in Headers */, + 4E7FD2752F3657D2D03CAFB7AD42A2D9 /* OpenSSLThreading.h in Headers */, + B47AD0B0C384B04A68FBBFE98156FBBB /* OpenSSLUtils.h in Headers */, + C9B571137C8E0B614A6237B7D92F98B7 /* OpenSSLVersionFinder.h in Headers */, + DA54986DE0F799C0A66A87CF9978537A /* Optional.h in Headers */, + A4136F4E4C0E0874AF38CF91F85180E3 /* Ordering.h in Headers */, + 6D769E63EE5623D3450CB6E018822BA0 /* Overload.h in Headers */, + B89AEFF00B02775F062C50204B8296EB /* PackedSyncPtr.h in Headers */, + 16B346C56CCC6B1A57F37F1664CF905F /* Padded.h in Headers */, + 61FDF979424FDF9BE0D2FF1C06433662 /* Parallel-inl.h in Headers */, + F77F8BEC141045F14502B971909354AD /* Parallel.h in Headers */, + A611BE547DF8E8683B1DAFF3E16F9E2D /* ParallelMap-inl.h in Headers */, + F04DBBDA05017D039E35A116610157E9 /* ParallelMap.h in Headers */, + ECCD6E06B6037E35436BA1BD7D43B378 /* ParkingLot.h in Headers */, + CAA6C306EE32FAA7D388F9DB3C8CB3F3 /* Partial.h in Headers */, + 00B32A8A8EFA078756452D6A2F11F8F1 /* PasswordInFile.h in Headers */, + FE8B7F53C917553F510C352FBBB86548 /* Phase.h in Headers */, + 2FD311C2EA42991D89EC699AFECD44AD /* PicoSpinLock.h in Headers */, + EE068A55D88F832606D45F4724AA29DB /* Poly-inl.h in Headers */, + 0DFD179C756592AB01A8841EA1B44299 /* Poly.h in Headers */, + 5D027EC564711DEAD8BD2C58A28B5E5D /* PolyDetail.h in Headers */, + 920A3164258B2EEC5D3209528BDB7FE5 /* PolyException.h in Headers */, + 0AC20C619FF4E98D49AAEDFBAEB07820 /* Portability.h in Headers */, + B32C9D151A30D933DDBD8805D9BF475A /* Portability.h in Headers */, + 4527B02244AE6A00EFFAD063F7F4119B /* Preprocessor.h in Headers */, + 22CB393C25704375E99272389E3BE173 /* Pretty.h in Headers */, + C1FF19BFBF1DDB400B3EF74EE03EF88B /* PriorityLifoSemMPMCQueue.h in Headers */, + 4465C45D4695797C2A3DE9BDC37D711B /* PriorityThreadFactory.h in Headers */, + 8FCA853B138758AC6A96031B1ADC171E /* PriorityUnboundedBlockingQueue.h in Headers */, + 66953AFD4ED0235E0D40A31FC2C40F52 /* PriorityUnboundedQueueSet.h in Headers */, + 4CE430C551E840C1D580C59F626541C6 /* ProducerConsumerQueue.h in Headers */, + 9702D243DFC5ACDE2EB41E751CE277A6 /* ProgramOptions.h in Headers */, + DAAF103C311E3FB40169A98237AB25FA /* Promise-inl.h in Headers */, + 90F204C29CC2CD48B555689635148704 /* Promise.h in Headers */, + 1A2F37C4EF2FB7D704F10824A3074C6C /* PropagateConst.h in Headers */, + BD0E9EC6919B60EA82569E21D4BFEF15 /* ProxyLockable-inl.h in Headers */, + 4AED17B604B26F5979DF844729481D31 /* ProxyLockable.h in Headers */, + AED270A522BF4BDC72EFCE10FBDBFE3F /* PThread.h in Headers */, + 85B2BB1E08DC12377F013B43C169BD9F /* QueuedImmediateExecutor.h in Headers */, + FC46D581609F5B85226E5AFB99790087 /* QuotientMultiSet-inl.h in Headers */, + 6E4C7C49F531440CA5DA9ED0353F454E /* QuotientMultiSet.h in Headers */, + A208005110520765245DD14699FBFAB4 /* Random-inl.h in Headers */, + 542EFF148E2A26D50BC8D5B1EBCA71DE /* Random.h in Headers */, + 62E8BDF8F07B6CC58CE362FD0BFFE97A /* Range.h in Headers */, + AB5FA8986015FD97F591ADF90C97D8B6 /* RangeCommon.h in Headers */, + 797E09F0371E2509B64021BFD7CDBF79 /* RangeSse42.h in Headers */, + EB79C19BE725E41CCB258EA0D8A6717C /* Rcu-inl.h in Headers */, + D58BF2B50064457F47A05442BF56C101 /* ReadMostlySharedPtr.h in Headers */, + EF3BAC92C23F5688F0AC175CB64B7E50 /* RecordIO-inl.h in Headers */, + 8EDC8B43FE550100E98D668C51BE1851 /* RecordIO.h in Headers */, + B22C80CAFC0D92B51A6A7B39E1A0E54D /* ReentrantAllocator.h in Headers */, + BDB85D62C4818367105AE4E7590BFD12 /* RelaxedConcurrentPriorityQueue.h in Headers */, + B82A5863991B785B694515CC3D6B4425 /* Replaceable.h in Headers */, + 62783EDD50F65E26599BE0DA815F0400 /* Request.h in Headers */, + 84B3625C2308C373E9F7B738632C3AAB /* Retrying.h in Headers */, + D732B59AE4F5C8484E6D4003A72A5F1B /* RValueReferenceWrapper.h in Headers */, + 9F2A04708FBD7CE70FEF3885EE9E5DB6 /* RWSpinLock.h in Headers */, + 324324B762A07B2AA62A03B6A95927DA /* RWSpinLock.h in Headers */, + D89006E9BB643D4B36A5860AA79895ED /* SafeAssert.h in Headers */, + FEDD55AE601B5DD7E781F79AD575ACD5 /* SanitizeLeak.h in Headers */, + 534B96AE1889EF5B483C779EDF133CD4 /* SanitizeThread.h in Headers */, + 178702EA528CE0D51563EB77A6475AB8 /* SaturatingSemaphore.h in Headers */, + 842E8766C07802C0383CC24A3A65B0E2 /* Sched.h in Headers */, + EE70D3D4F5956C6D8B0D0108ED9BCD08 /* ScheduledExecutor.h in Headers */, + 27DCB393F1B8E79866B071E4F861D673 /* ScopedEventBaseThread.h in Headers */, + 617D20CF45C189E3D550E23FE4C4827E /* ScopedTraceSection.h in Headers */, + AB6D63B2AD1CF254C8D10B1FF7A62ACF /* ScopeGuard.h in Headers */, + 4F1B6BE5EE1335D85B7CD5F7C9AFE0FC /* Select64.h in Headers */, + 1B2447063A74A5AC1CA17A5D4AABAB8E /* Semaphore.h in Headers */, + 5D663BB4538B3B32129D8AFCCD93B783 /* SequencedExecutor.h in Headers */, + 8C72A3AB2B625631846F1BA4C714D5F6 /* SerialExecutor.h in Headers */, + 30403037E9E91EF0E6628756F2110FD6 /* SharedMutex.h in Headers */, + 328FD10A036EC10F526967BA5ACB1EE5 /* SharedPromise-inl.h in Headers */, + E085F3D67AF22D47E98B576572EC4C34 /* SharedPromise.h in Headers */, + ED1FA4975B3282FA2F3EAC5706645556 /* Shell.h in Headers */, + 19A9BB7310DFB72C4F9D0F1F980A4733 /* ShutdownSocketSet.h in Headers */, + 2D301ABAF708097EE231C5A0DB736A80 /* Singleton-inl.h in Headers */, + EAA3D8C51AF81731B2D30063C68AA78C /* Singleton.h in Headers */, + DF49BD501C436FC43D4AC96692CA1653 /* Singleton.h in Headers */, + 01C591AEA7504EF361D12F3C97A2B6D9 /* SingletonRelaxedCounter.h in Headers */, + 26A345928FBECD9450CF7B16BA53A3AF /* SingletonStackTrace.h in Headers */, + 31EA9985CB7629817894FFDC4E81F184 /* SingletonThreadLocal.h in Headers */, + F7E8E5DB41C4E3BE4092D3906A57DC26 /* SingleWriterFixedHashMap.h in Headers */, + C681F9BF7A08AC155A7843E81CE92E05 /* Sleeper.h in Headers */, + DBB73F9B5BEFADEC0677F81244C7D427 /* SlowFingerprint.h in Headers */, + 89E274065983E4542141DF84D915E518 /* small_vector.h in Headers */, + C155CAB9C34847CEC21DCD018A3C42D3 /* SmallLocks.h in Headers */, + 535660D382F7A6AC31987D3681D0304A /* SocketAddress.h in Headers */, + 1DFED015A98A99D202D27C6F7291D83B /* SocketFastOpen.h in Headers */, + E1FEB0BDF20E773514504199EB6AA5D9 /* SocketFileDescriptorMap.h in Headers */, + 64B05124C6D1FB26D99CC4B0B9CAB32E /* SocketOptionMap.h in Headers */, + 43509EF81CDE6997AACDEE3200946AAB /* Sockets.h in Headers */, + 5F2CC02417F0F09E2ED6C21B79C5F4F1 /* SoftRealTimeExecutor.h in Headers */, + F70C2B76B4A07472106CFDB6AF54286D /* sorted_vector_types.h in Headers */, + 2391C8777B895BEF9708CA2847068F77 /* SparseByteSet.h in Headers */, + 113EB3C685DE5000477ED03FC2FA5155 /* Spin.h in Headers */, + 3B9F64ADB00BE46ED9371817608A08A5 /* SpinLock.h in Headers */, + 7CF1F971EAF06351DED2217E00B1ED36 /* SpookyHashV1.h in Headers */, + 040C63909832D441D83E7382147DA28D /* SpookyHashV2.h in Headers */, + 43FFA32A63BDC96BBE6E40833BF3ACD9 /* Sse.h in Headers */, + 4E58EB50E39873968C9C209F53EF7CF6 /* SSLContext.h in Headers */, + A26BA2232ADE322C3394E5702070CCA0 /* SSLErrors.h in Headers */, + 0E7E92F364517CF87B49722AE529F8B3 /* SSLOptions.h in Headers */, + D463BC1B531667CA35CAEC8FA47E672E /* SSLSession.h in Headers */, + DD39B0BFC0C8361F423318D11636B932 /* SSLSessionImpl.h in Headers */, + 10461CC2BC0164993A7BDA589945D896 /* StampedPtr.h in Headers */, + 40E27231399DB6039A838B412BF59F4E /* StaticConst.h in Headers */, + C5EC29FC7252429453173C6F96B202E5 /* StaticSingletonManager.h in Headers */, + D9DC1B02DFC7947A7092922C93E15C2D /* StaticTracepoint-ELFx86.h in Headers */, + DFA8770080D1BA696CE0E10515F7AD18 /* StaticTracepoint.h in Headers */, + D6ED9DA795AFF8CA4766A52C2F8F0E1A /* Stdio.h in Headers */, + 3C744F12B6358499994D69864AD03C9F /* Stdlib.h in Headers */, + 88E414A008D00918F84D6F708F50348E /* stop_watch.h in Headers */, + 537A1F4064116F293AB62B472CE0953F /* String-inl.h in Headers */, + 4C5263BB5A9183E60831332CD92F45B1 /* String-inl.h in Headers */, + 22CB58F8BDC1C96120ED1EA6A9E45306 /* String.h in Headers */, + 9B48C501E4A442A6935447DED08E2A6A /* String.h in Headers */, + EB755BDB38CB6BB6662367B6D5CA7F0C /* String.h in Headers */, + 0F679AFE541FD3314C176461A5C721B8 /* StringKeyedCommon.h in Headers */, + 45C319E60E1DCAFEFA55B50F91E57E2A /* StringKeyedMap.h in Headers */, + B22832ED81DE0F088FA8DEE3589F53AD /* StringKeyedSet.h in Headers */, + 832A67EE187DF3CA7C03CD78FBA5ACB7 /* StringKeyedUnorderedMap.h in Headers */, + 5FB02072FCED214759349A2B1D2F047D /* StringKeyedUnorderedSet.h in Headers */, + F2D6357D0FFE0A21051D93CF211878EE /* STTimerFDTimeoutManager.h in Headers */, + FC99CFBE0A2590C34127D98BCA9CFDE3 /* Subprocess.h in Headers */, + 1202FC46787FDC5FCE5A4086A65FF161 /* Synchronized.h in Headers */, + 9C8B6CD7657E61135DFE20B696B7EFE5 /* SynchronizedPtr.h in Headers */, + 969A887112974C3E2C077DEB38FF3900 /* SysFile.h in Headers */, + E236AB02F1A0F34A1F64EC20A967BD0C /* Syslog.h in Headers */, + DAD02E149AC71979546B05EC24A7B5C6 /* SysMembarrier.h in Headers */, + 5756D2D7CBB0C28DDCF2B8F34AA6D480 /* SysMman.h in Headers */, + 448A4596C0E27C078EE9ED1B6EB20972 /* SysResource.h in Headers */, + 003E8B90B10FA24F16A307B03D9B06E0 /* SysStat.h in Headers */, + 808AF6B45283C1F01E6B15457FA755E0 /* SysSyscall.h in Headers */, + BC9B790862ECC0BDB9CB6AC6620184EE /* SysTime.h in Headers */, + 831D458CA9B523E3E613FF643A86FD55 /* SysTypes.h in Headers */, + E8617C0FE020F4D7D30E446B160B97C2 /* SysUio.h in Headers */, + F9A608390198DC068181B70E477C1A98 /* Tearable.h in Headers */, + ACC558CF892AAAB05FF600D42361D06A /* TestUtil.h in Headers */, + 53C41A7CE5BEBC2B6C712E2016793254 /* ThreadCachedArena.h in Headers */, + 98E0ADC98971B224BC141542DE4D29DC /* ThreadCachedInt.h in Headers */, + 8C58A700CF435DCE2C5FE686F9379A98 /* ThreadCachedInts.h in Headers */, + 3B890FFC095B8A728F822AA5021D1F83 /* ThreadCachedLists.h in Headers */, + 8BC2D16240DA8DF8D382AB8F564CFC77 /* ThreadedExecutor.h in Headers */, + FB132993BA5053116805060BBD6F64D6 /* ThreadedRepeatingFunctionRunner.h in Headers */, + A6FC335B55745BE993FBC9352436DCFC /* ThreadFactory.h in Headers */, + ACA44CEF1411BABEC6CE05018039EEA4 /* ThreadId.h in Headers */, + E91B3212E6C60C08168D578A6B46F11B /* ThreadLocal.h in Headers */, + 860A9343A2C75081829E75CF76A5D7F8 /* ThreadLocalDetail.h in Headers */, + 8969350335908AD5E341E64B4983D43B /* ThreadName.h in Headers */, + 38CC7C1065C0169DA0F6386E5D50143E /* ThreadPoolExecutor.h in Headers */, + 661AC55F63173916BE38AA6A359900FA /* ThreadWheelTimekeeper.h in Headers */, + 3B13C92CABF829A0C6FAC6DF8E666AA6 /* ThreadWheelTimekeeperHighRes.h in Headers */, + 82CAD2FBACD2DE7144C7B2DDCC9D75DD /* Time.h in Headers */, + 04DD25D88999FC215524E56A4B63C416 /* TimedDrivableExecutor.h in Headers */, + 53722B4A6F9A27A57E5E99427D791FE8 /* TimekeeperScheduledExecutor.h in Headers */, + C12DAE1A7C3D5D3C17F2B20BCC59A233 /* TimeoutManager.h in Headers */, + EBAAB86CC3294FD631235E0B460113F4 /* TimeoutQueue.h in Headers */, + 13E0B8083C77AC197283DBF2E085F77D /* TimerFD.h in Headers */, + 8646F9A47FAE2E278FD6E1547507EC83 /* TimerFDTimeoutManager.h in Headers */, + A94C6D490ED86D8BFA606E168944D60E /* TLRefCount.h in Headers */, + B088502B68B099019231B790F2B53DA0 /* TLSDefinitions.h in Headers */, + 18D1BD17215C5CB6A20AF03CE24857A2 /* TokenBucket.h in Headers */, + D02305B8D806444C1C09FF60E1854A8A /* Traits.h in Headers */, + 1B66BA0F5EB595601C54AB6A7331C57E /* Try-inl.h in Headers */, + 06F0869D9283AB99E6DD859D6316C4D8 /* Try.h in Headers */, + F54C1D32A95A267660B14246E54DEE71 /* TupleOps.h in Headers */, + 768FD678DF0107C1055314B77EE16A3E /* TurnSequencer.h in Headers */, + 2BCC4B43D1A38602A10E5F73F56BAA68 /* TypedIOBuf.h in Headers */, + 2A5D436215DE3DC5A112D6EC5A58D8D7 /* TypeInfo.h in Headers */, + 3A8937477FE3F79EB60994B13983B5B7 /* TypeList.h in Headers */, + 2C23C4AB4FB7C9AFDC7C84785AE11D35 /* Types.h in Headers */, + 9D976511AF1C1AFE42F3B4A53BE2A7B9 /* UnboundedBlockingQueue.h in Headers */, + FE837F4D5092BF58D3D3F9EC59B261C7 /* UnboundedQueue.h in Headers */, + 481B3840FA73493AD1AA4F89ADF86EE1 /* UncaughtExceptions.h in Headers */, + 5BE6D30A76B7F29ED599AFC1E7D3BB87 /* Unicode.h in Headers */, + 9E3F4F9CBD27821BE447C2E0732CBE21 /* UninitializedMemoryHacks.h in Headers */, + 44DBB81112CE284D0DA37BA72F5C78EA /* UniqueInstance.h in Headers */, + 7727D0D04494229A276C517BF3C01386 /* Unistd.h in Headers */, + 86D49CC4AA8C4C7F2D09E6696E47ABE7 /* Unit.h in Headers */, + EDBFDBC971D8E5C312654713CFD462AF /* Uri-inl.h in Headers */, + C4700D1632A29986834334E61AB06B65 /* Uri.h in Headers */, + AEE96BAF0941B368FE4E499707435BDC /* UTF8String.h in Headers */, + E9F5858B8CB2E070CEEF8EB1AB4F93CF /* Util.h in Headers */, + 2FB9E9C3BF97CEB4F65A708378D9BA4E /* Utility.h in Headers */, + 6DD73C0E9BF0D7491DF0B2915830D228 /* Utility.h in Headers */, + F1D89D96431D7BCB038B0E01E5EAC2A6 /* Varint.h in Headers */, + 9CF84294CDC9CE58464770A15FDE0B14 /* VirtualEventBase.h in Headers */, + 357FFC46F7F3E5CA818F8D1A39670C84 /* VirtualExecutor.h in Headers */, + D010ACF83D38D6A31D897B58891451E8 /* WaitOptions.h in Headers */, + 123673DD72A698F0C680B0369FAE04A7 /* Windows.h in Headers */, + 8D7359F60511441CDE78643994F5A8E2 /* WriteChainAsyncTransportWrapper.h in Headers */, + 4030E86271E59BD135B76F4C563F3A44 /* WTCallback.h in Headers */, ); runOnlyForDeploymentPostprocessing = 0; }; @@ -26089,57 +25892,6 @@ ); runOnlyForDeploymentPostprocessing = 0; }; - F199C2AE6E0F8B10F7ACE39957025449 /* Headers */ = { - isa = PBXHeadersBuildPhase; - buildActionMask = 2147483647; - files = ( - AB950B153635AD4C2EB9D4A5291B0E23 /* alphai_dec.h in Headers */, - 963E3001EC1C7B83627A8380DF2542F2 /* animi.h in Headers */, - 1A1C8CC2FE5020E056D6C5B0BFCC0A26 /* backward_references_enc.h in Headers */, - 49DB03F31465778B5A09F19853272DEB /* bit_reader_inl_utils.h in Headers */, - 36485D4AD5ACC4DAAC0A312048B6F34B /* bit_reader_utils.h in Headers */, - DEAB09F0EA0C46D82A7CB5A98B9F93A1 /* bit_writer_utils.h in Headers */, - 63FC4E37220FC7EE188C62CFF861FB85 /* color_cache_utils.h in Headers */, - 13EB0662E44AF9A03E5F5C99C6311263 /* common_dec.h in Headers */, - F920995B05B070A46E6D3FE7E394CAD4 /* common_sse2.h in Headers */, - 98876F1B587BD92DBD0457B3B0584F00 /* common_sse41.h in Headers */, - D7D40BF7CADE1583366937B309F97F1F /* cost_enc.h in Headers */, - 9ACF5CA7A74E330B5145DAF34CCAF6F7 /* decode.h in Headers */, - 58703AB85DDAA7CC1B8525B5CEB0D83F /* demux.h in Headers */, - C333CA1C76B724128394EB60F3035FD4 /* dsp.h in Headers */, - 908DB569499743B13CF4A71098C1597C /* encode.h in Headers */, - EFEDDF3B8F0F41CFE8144762FA8C088B /* endian_inl_utils.h in Headers */, - 9AE1BF2B8C06C9D43AB6D88FA2A5D716 /* filters_utils.h in Headers */, - D36CBFFEDA290CB706D0E0195ECAE5F6 /* format_constants.h in Headers */, - 28688192DE40010DCE7006D4CDFA9920 /* histogram_enc.h in Headers */, - 97747D78210FB0127E34B55647D55E80 /* huffman_encode_utils.h in Headers */, - 7FC583A38AF7701D89913D5C5855A6FB /* huffman_utils.h in Headers */, - 24FEC3570B7CFADEE03E408B9D96ECDD /* lossless.h in Headers */, - E3C599A3EE360F5FC0399D3B9E6489D7 /* lossless_common.h in Headers */, - C9DA35E6875F7CA08B65CE508A400D9B /* mips_macro.h in Headers */, - FBBBA70AA350A601D3F8B8BB338AE08C /* msa_macro.h in Headers */, - B55237054455486BC4B657E185484CF3 /* mux.h in Headers */, - 421E289534216EBA4E6C73FDDF9561C3 /* mux_types.h in Headers */, - C5E7721E5278C44044B620EA795E05AC /* muxi.h in Headers */, - C9E59730EEF2DC8EAF2A569B46A51C29 /* neon.h in Headers */, - 22681799654BC4E6A8D51777712BCCE1 /* quant.h in Headers */, - 6ED79CE9B1C60420A72964EA773FF253 /* quant_levels_dec_utils.h in Headers */, - EB4FFF9C252FD851EA6F308B0FD6E94E /* quant_levels_utils.h in Headers */, - AABE0151CF2AA84D99EFD318653A72C9 /* random_utils.h in Headers */, - 18CAE40387B841447FF92D7A5DE89369 /* rescaler_utils.h in Headers */, - 34CDA8FAD8119952CBD91C7D548C5ED5 /* thread_utils.h in Headers */, - E6F9AB804046A1761C274E1978C9D181 /* types.h in Headers */, - 01278CABBFDB29756042EB6FF836EB74 /* utils.h in Headers */, - 8D8D8F73E9D672FA84FC9E6D137AAB93 /* vp8_dec.h in Headers */, - F07567CCB1BD3727ED17130BAC97D1E8 /* vp8i_dec.h in Headers */, - 5BF1CA6A168AEAC6F9C7040377145467 /* vp8i_enc.h in Headers */, - CBCBD455CD0EB79AF0127230B36FC289 /* vp8li_dec.h in Headers */, - 318D33E151FB74850FED3780E7CC1597 /* vp8li_enc.h in Headers */, - 78A7C63DDB2CEB5F4DD9E510CF6AB585 /* webpi_dec.h in Headers */, - 53E0798A557C9D66C44522A1B37588D6 /* yuv.h in Headers */, - ); - runOnlyForDeploymentPostprocessing = 0; - }; F23BCE2C934B4CF40AA140FFB20AAD7D /* Headers */ = { isa = PBXHeadersBuildPhase; buildActionMask = 2147483647; @@ -26161,10 +25913,134 @@ ); runOnlyForDeploymentPostprocessing = 0; }; - F42BA203501459FAC1D4A7C329D5F463 /* Headers */ = { + F52BD122185CF56FC1C2AC0876E593F5 /* Headers */ = { + isa = PBXHeadersBuildPhase; + buildActionMask = 2147483647; + files = ( + F2920A2653565C59553D7742D5EF13FE /* TOActivityCroppedImageProvider.h in Headers */, + 8B61BA7CDDB2F34C0B96420DD87107D5 /* TOCropOverlayView.h in Headers */, + C0D2922C911086AF1089CC98C78D6D5D /* TOCroppedImageAttributes.h in Headers */, + 6CAEDD91D307223FCAD6FC809A391726 /* TOCropScrollView.h in Headers */, + 2AFA984F591325ECC7D420355EAAAA13 /* TOCropToolbar.h in Headers */, + DC7AB3AFDC563755C3CF3412840E0FFD /* TOCropView.h in Headers */, + 71A2C24513C16EBE4C14054F375BD33C /* TOCropViewConstants.h in Headers */, + 3308411CB19F2675D0B896646C0C51A4 /* TOCropViewController.h in Headers */, + 6557863E3A09017D5CF299AA788F5450 /* TOCropViewControllerTransitioning.h in Headers */, + 75D89E285F32F8AC94B19D0CFB07793F /* UIImage+CropRotate.h in Headers */, + ); + runOnlyForDeploymentPostprocessing = 0; + }; + F5BD01E335F2C1061BAD536D2AA3BFD8 /* Headers */ = { isa = PBXHeadersBuildPhase; buildActionMask = 2147483647; files = ( + 09C1F983DEEA9C7F571482D5B2177CA1 /* NSBezierPath+SDRoundedCorners.h in Headers */, + 80B99D0A70FFF4A8F2149D1257C65518 /* NSButton+WebCache.h in Headers */, + D006701FE02D69821009538F50F6224D /* NSData+ImageContentType.h in Headers */, + 4D220AEEE1E7FFCD72F956083035B081 /* NSImage+Compatibility.h in Headers */, + D0FE3AED8DF0963C1D9228EF5165FB44 /* SDAnimatedImage.h in Headers */, + 20B37962947783D3B62DBE61AD9FFB18 /* SDAnimatedImagePlayer.h in Headers */, + 5584A72969B4338092230267D553752A /* SDAnimatedImageRep.h in Headers */, + B2305061F468F0BE3E420B446E4B7A4D /* SDAnimatedImageView+WebCache.h in Headers */, + 6816E61C06287D7B37E00E1761FD488F /* SDAnimatedImageView.h in Headers */, + 8CA4BAC8A601A0D846626D4214F668B3 /* SDAssociatedObject.h in Headers */, + C807400B4F8E6819976858AFF09DA3A9 /* SDAsyncBlockOperation.h in Headers */, + 47C91FA7C1F8BF9DA46C0DC944B2E1BF /* SDDeviceHelper.h in Headers */, + 3C1691D1D428167217CDFF069343D91A /* SDDiskCache.h in Headers */, + 9E08ED59B433C0996E9DE3A05DF0E3BC /* SDDisplayLink.h in Headers */, + 1505B36824645072D7C0348ABE578B10 /* SDFileAttributeHelper.h in Headers */, + E00C171AEFE9A9D23C3CA15BCFCBE775 /* SDGraphicsImageRenderer.h in Headers */, + 211DF223B97DEC315AB0ABAD84AFB7AC /* SDImageAPNGCoder.h in Headers */, + 5E246B7C1D806404D437C5778716DBEE /* SDImageAssetManager.h in Headers */, + 6EB0B76A4AFE41608F81AEB4797A041B /* SDImageAWebPCoder.h in Headers */, + 0855EBD3046984F53081B889D97C0760 /* SDImageCache.h in Headers */, + D9F28F1227DD0EEE49493C618A691E4C /* SDImageCacheConfig.h in Headers */, + 8428C57F2DF6A4981F18F4D882DC2B58 /* SDImageCacheDefine.h in Headers */, + 9F72585C4D02E9B33600916E95E83252 /* SDImageCachesManager.h in Headers */, + 807744C9315630AA005C40DE3F085137 /* SDImageCachesManagerOperation.h in Headers */, + 67DC20534AD5465C10902DCFBB0D7F0C /* SDImageCoder.h in Headers */, + B050B3CF1E73904AFFCD72BF6F992556 /* SDImageCoderHelper.h in Headers */, + 9D17DF6EB5C472361EE4B25A06196544 /* SDImageCodersManager.h in Headers */, + 0CD772F3CA8AFCDA2C782863F83E34ED /* SDImageFrame.h in Headers */, + 78CF7EB129272BC88DF8FEE6D60A95D1 /* SDImageGIFCoder.h in Headers */, + A35A3AB1D9D1C87C8285B0D9FD05EEA0 /* SDImageGraphics.h in Headers */, + 9F9A921DAE5FB941E63A13ED88DAF1A1 /* SDImageHEICCoder.h in Headers */, + 512F006D86A89F733FFDBE1F8A4CC07C /* SDImageIOAnimatedCoder.h in Headers */, + D278910EB31317D7A5A6D1503557BCFD /* SDImageIOAnimatedCoderInternal.h in Headers */, + 392E1F3EA646CF82A0AA37816787B299 /* SDImageIOCoder.h in Headers */, + 30409C1FCA7716C70C1CCB07EF46DB4E /* SDImageLoader.h in Headers */, + 0EB04EB6370A0097BEDD05E8E45A436E /* SDImageLoadersManager.h in Headers */, + 845A5F8286B91410319682C2119BE8FD /* SDImageTransformer.h in Headers */, + 6081F5AABFC53761EC3D1219E8169A03 /* SDInternalMacros.h in Headers */, + 3039028BC33A465EFD0A75F7FA18D50D /* SDMemoryCache.h in Headers */, + 36339B3801EABE63938E05808B46BB0D /* SDmetamacros.h in Headers */, + 6097EA5D9FDFC85D7C8F0ED8B12F71A7 /* SDWeakProxy.h in Headers */, + 1037EA3982A30AC2C78DAEBE4E6E892E /* SDWebImage.h in Headers */, + 3AF8D2CBC0F98CD8631D0BB460212876 /* SDWebImageCacheKeyFilter.h in Headers */, + FAA94F66C01EDAE45AA3D2D21C7E1778 /* SDWebImageCacheSerializer.h in Headers */, + A7C91F93418E2C95A41DFF3A36DA2145 /* SDWebImageCompat.h in Headers */, + 1C14F2EE582188EA1A23639B4E982814 /* SDWebImageDefine.h in Headers */, + DA378985EA01EA431BE45F8E4B4ACF37 /* SDWebImageDownloader.h in Headers */, + 424C5607C90DC70D170D6F4D7D0CFA2E /* SDWebImageDownloaderConfig.h in Headers */, + 0AF76157B80DC67602C273CA784F4480 /* SDWebImageDownloaderDecryptor.h in Headers */, + 804F7B4FFE36059343291307A758966F /* SDWebImageDownloaderOperation.h in Headers */, + 3C5BF75D2C741B7DE2EAC6F4280F84ED /* SDWebImageDownloaderRequestModifier.h in Headers */, + 5E8A1D3D3C253015A5A00BB0B06F6292 /* SDWebImageDownloaderResponseModifier.h in Headers */, + 9EF8A7C0E2DE77A0135FAF329E828C44 /* SDWebImageError.h in Headers */, + 268C947B142816218E2F58A901BD9EC4 /* SDWebImageIndicator.h in Headers */, + 97954F8AD4A5EB3A53E49624DC3A7899 /* SDWebImageManager.h in Headers */, + F0BDD5CB396971208E14F0C1DC37C51A /* SDWebImageOperation.h in Headers */, + 55B21A8FD0385604B053BE2D8D627D90 /* SDWebImageOptionsProcessor.h in Headers */, + EAD48555351149970538B9EF7DD35B1A /* SDWebImagePrefetcher.h in Headers */, + C139E5676D780BC0F34F78DA2DA2D0B8 /* SDWebImageTransition.h in Headers */, + 143E4A43861EBD1AD358EA4EAEF5DB4C /* SDWebImageTransitionInternal.h in Headers */, + EBA99C3E79756A50B3FFE034D5546F9D /* UIButton+WebCache.h in Headers */, + 32AB4D2353B3D18707FE2E492EB733EB /* UIColor+SDHexString.h in Headers */, + 314CD668EC6B0C16EB498CD8AE5D7AC1 /* UIImage+ExtendedCacheData.h in Headers */, + CAA38C892AE17B98EA1449D3B725A246 /* UIImage+ForceDecode.h in Headers */, + 9189F266DE8073AEED5073F57586147A /* UIImage+GIF.h in Headers */, + 933105A0FD7E85600BF692BBE1525C93 /* UIImage+MemoryCacheCost.h in Headers */, + ADC155593BDDD0A6FEAA1CF1C8023D9D /* UIImage+Metadata.h in Headers */, + 94509AB829FD23AB094465983B042AE5 /* UIImage+MultiFormat.h in Headers */, + 1CB1B0C9F7F3B05B67FAA30DDD03749D /* UIImage+Transform.h in Headers */, + 8D543D7F3520F2532E4A8A54770FA482 /* UIImageView+HighlightedWebCache.h in Headers */, + ACA7933FEE9F001E53B94FB16B008076 /* UIImageView+WebCache.h in Headers */, + 070A0B4A433A4975EB5201CC7026FFBE /* UIView+WebCache.h in Headers */, + 419595CC62A9913FD22DFD52DB55808D /* UIView+WebCacheOperation.h in Headers */, + ); + runOnlyForDeploymentPostprocessing = 0; + }; + FA2E777907BBA73DE6D534B2476CCE0D /* Headers */ = { + isa = PBXHeadersBuildPhase; + buildActionMask = 2147483647; + files = ( + BF0EBB26452A49032CCB6FD8A4C6B6D7 /* GULAppDelegateSwizzler.h in Headers */, + 7FB887785BE21865786F67AE943A326E /* GULAppDelegateSwizzler_Private.h in Headers */, + E4D84703E8276B2E20C352B2D16C7740 /* GULAppEnvironmentUtil.h in Headers */, + D42003C2458ECB513B323CEC5363E8F6 /* GULApplication.h in Headers */, + ACCC1F337696A8472D26DB062FADAFB2 /* GULHeartbeatDateStorage.h in Headers */, + CE50B89F450E0F7880087A3668959ECC /* GULKeychainStorage.h in Headers */, + AA33C1E262D3F5744755F7B010A1428C /* GULKeychainUtils.h in Headers */, + 46177CF62589B4BCBF20FF62ED343B04 /* GULLogger.h in Headers */, + 933ACB46F8E0AC07E9D5B83A4C087D83 /* GULLoggerCodes.h in Headers */, + 0F774309774C438DB355CCD2F5F3B3C9 /* GULLoggerLevel.h in Headers */, + FA6D912F99357915A1C3989545AA214E /* GULMutableDictionary.h in Headers */, + 71261A262CD67EBA7FA084546F5B4E60 /* GULNetwork.h in Headers */, + 7135D0F6E966B9619CC6955C74B18AAB /* GULNetworkConstants.h in Headers */, + F269AD829E04BF950E0AC7688667F4BC /* GULNetworkLoggerProtocol.h in Headers */, + 8CC0D8FA4D37B3A18F006EF9B6C803BD /* GULNetworkMessageCode.h in Headers */, + FB66315DE7448E1703963072F7BF0915 /* GULNetworkURLSession.h in Headers */, + EC46E3E92D3BED933DF5D5071939F394 /* GULNSData+zlib.h in Headers */, + A3553C87812A767A3FA9F1C0DC29F7B9 /* GULNSDataInternal.h in Headers */, + A80CF0EED5CD252B76CFB500FB4E6D3A /* GULOriginalIMPConvenienceMacros.h in Headers */, + AB936CC1238788CB359501A057EC41B4 /* GULReachabilityChecker+Internal.h in Headers */, + 47445AF12E88035A1A6D06F34735ECC6 /* GULReachabilityChecker.h in Headers */, + 752AB2110E825BE0B2A2435A158A63DA /* GULReachabilityMessageCode.h in Headers */, + F37040BD5282468ADCA0DD20C27CBDD6 /* GULSceneDelegateSwizzler.h in Headers */, + 6FCD7520DCBBB2F65108ADD68D8EF005 /* GULSceneDelegateSwizzler_Private.h in Headers */, + B348B714404FD01FD0F9FF0FD0F3E68F /* GULSecureCoding.h in Headers */, + 18C7BF12ECFF6C04D5DC78E7EE5F9017 /* GULSwizzler.h in Headers */, + A96A7A5E636F81761CC621840BA07EBF /* GULUserDefaults.h in Headers */, ); runOnlyForDeploymentPostprocessing = 0; }; @@ -26203,6 +26079,48 @@ ); runOnlyForDeploymentPostprocessing = 0; }; + FDCCFD5A070A7340ECCA06187AF6F01D /* Headers */ = { + isa = PBXHeadersBuildPhase; + buildActionMask = 2147483647; + files = ( + 3711A6F6B64292C85B41AAF2703804F6 /* FBReactNativeSpec.h in Headers */, + ); + runOnlyForDeploymentPostprocessing = 0; + }; + FFFBEB66AB6AE5A9E4B6280F88EB49EB /* Headers */ = { + isa = PBXHeadersBuildPhase; + buildActionMask = 2147483647; + files = ( + 123D708009A1EB9B8963256E2977D8EE /* AESCrypt.h in Headers */, + 39E7730D50854C9BA938A35A0742B335 /* Checksum.h in Headers */, + 947774A72FD0D9A9FF5014743C94F665 /* CodedInputData.h in Headers */, + 659BCF8F0484D2879C01A1D365C9C356 /* CodedInputDataCrypt.h in Headers */, + B5147718598091DDBBC96C6B9E2EB147 /* CodedOutputData.h in Headers */, + 66219DC93FD34E57BEAEF8F276B0DE51 /* InterProcessLock.h in Headers */, + D565172C452B8AA6D040F4B8A784495D /* KeyValueHolder.h in Headers */, + A6B3EDD22992ED8D44D8F5F60EAB091F /* MemoryFile.h in Headers */, + CA125A64D15C731FCAD5E46ECDF7DBBC /* MiniPBCoder.h in Headers */, + 69ADC28400DCAC4F55B66B1902DFA75C /* MMBuffer.h in Headers */, + 1D77599FD25D2562981CD7223E77C244 /* MMKV.h in Headers */, + E9398014BC50F38016F549EF91B06B45 /* MMKV_IO.h in Headers */, + B6A03A322869BE33F44C380526595A5B /* MMKV_OSX.h in Headers */, + 1340CDEB18EB6B55261CFC70F7415357 /* MMKVLog.h in Headers */, + 123C1480D4EA487EA78A750D16868A3E /* MMKVMetaInfo.hpp in Headers */, + 3EF464C5942F6F6A903C7FB746E5466F /* MMKVPredef.h in Headers */, + 61D9F89CF58F983BD17EB5E8DE23E9B1 /* openssl_aes.h in Headers */, + D66B67405E7246FCC4573C8630B490F4 /* openssl_aes_locl.h in Headers */, + 8D7D2C33D80D3848818108C9D0DFEF93 /* openssl_arm_arch.h in Headers */, + A00A04412908225392AD1024B84136D8 /* openssl_md32_common.h in Headers */, + 818A4EDB7071A0EE1CC59E49EDDA5FB2 /* openssl_md5.h in Headers */, + 9536064799893158B8035938B461D1A7 /* openssl_md5_locl.h in Headers */, + 797DC14EE8BDB905470F0108C8D7CF30 /* openssl_opensslconf.h in Headers */, + 115C2B117416BB05279FB9EBA783DD7A /* PBEncodeItem.hpp in Headers */, + 19577EDA2DEFEC0BB940E5F2F283077E /* PBUtility.h in Headers */, + DD2258059F12CF79AE07687841309AE0 /* ScopedLock.hpp in Headers */, + E083AE0A831B82FEED8E937CD648C5BA /* ThreadLock.h in Headers */, + ); + runOnlyForDeploymentPostprocessing = 0; + }; /* End PBXHeadersBuildPhase section */ /* Begin PBXNativeTarget section */ @@ -26217,7 +26135,7 @@ buildRules = ( ); dependencies = ( - 98692C7C8FE2287241EEA035C7631C5C /* PBXTargetDependency */, + FA870AABFE486773EB543609D3FA819A /* PBXTargetDependency */, ); name = ReactNativeUiLib; productName = ReactNativeUiLib; @@ -26226,11 +26144,11 @@ }; 04A30E186743192DFB26B0FD7DB8F250 /* libevent */ = { isa = PBXNativeTarget; - buildConfigurationList = F8CFD42AE7B030242732AB15AE9ECBEE /* Build configuration list for PBXNativeTarget "libevent" */; + buildConfigurationList = F565E564ADF710E806568A0B44BB3CE5 /* Build configuration list for PBXNativeTarget "libevent" */; buildPhases = ( - CB9B4DC3940A7331D77370D512322969 /* Headers */, - EFD82CA40C14CB910797804670D9FE56 /* Sources */, - BEE7F8065C4285BE5056ECAF04472D60 /* Frameworks */, + 6770968D59F2033919470A7DDADF7435 /* Headers */, + 88EF59E291905F0B17806172184C7CBF /* Sources */, + 61657456EF7D835218B233017E2C1AAC /* Frameworks */, ); buildRules = ( ); @@ -26252,7 +26170,7 @@ buildRules = ( ); dependencies = ( - 4357E184AE69844ADAAC269E238E9D76 /* PBXTargetDependency */, + 026D32691B3A384CE2B927EBEE5F5917 /* PBXTargetDependency */, ); name = BugsnagReactNative; productName = BugsnagReactNative; @@ -26270,8 +26188,8 @@ buildRules = ( ); dependencies = ( - 6993071F7A30C2D7699777010A54248D /* PBXTargetDependency */, - 7493163EAD908739624B91B1C8C9CEA8 /* PBXTargetDependency */, + 50D0F0DB19805FB44444C94929E7BB61 /* PBXTargetDependency */, + C96B82F985CD49F8FA7B9420A2FB2413 /* PBXTargetDependency */, ); name = EXPermissions; productName = EXPermissions; @@ -26289,9 +26207,9 @@ buildRules = ( ); dependencies = ( - 65536AEE9D451AFC59232497BD9E3758 /* PBXTargetDependency */, - 701A33CBA059100356C854DE0E947B16 /* PBXTargetDependency */, - 86765640EE4EE6291250C72B96EE7496 /* PBXTargetDependency */, + B5B8A6F00C4DE3B8DA3F4ABCEA2B501A /* PBXTargetDependency */, + 21ECAAEF6151D807E1B61A3056E17BC7 /* PBXTargetDependency */, + 949D453EB07C164F1E34FA0EB23E7C82 /* PBXTargetDependency */, ); name = RNFastImage; productName = RNFastImage; @@ -26309,7 +26227,7 @@ buildRules = ( ); dependencies = ( - 17AAA8CD778A23D4083A60EBD8BA53F4 /* PBXTargetDependency */, + E9851019EE89EC7EAAF5D777F62EBAB9 /* PBXTargetDependency */, ); name = EXKeepAwake; productName = EXKeepAwake; @@ -26327,10 +26245,10 @@ buildRules = ( ); dependencies = ( - CBC530D6F7B27ACBE5A6293E378BECB2 /* PBXTargetDependency */, - 023DC1CB412C0D4BC1F4A95A16259056 /* PBXTargetDependency */, - 3175B3D770C4373F470ECAE3DFE50990 /* PBXTargetDependency */, - 2E4FEC08BE144D5B09521C17A8EBD589 /* PBXTargetDependency */, + E9124336B0D92125A5E72A5ADCA79C9D /* PBXTargetDependency */, + F8698BD6B199DCC09B24CFC7A4BC4EC9 /* PBXTargetDependency */, + 2ADE99F3CA61499A36FFBA26D6CE1CEA /* PBXTargetDependency */, + C23CA3A64A054095513E89B77572E4D2 /* PBXTargetDependency */, ); name = RNImageCropPicker; productName = RNImageCropPicker; @@ -26348,7 +26266,7 @@ buildRules = ( ); dependencies = ( - 64C4F1B280680EB579106C3220E31FAA /* PBXTargetDependency */, + F2EEFDC692C041160D568C5CB2E9C0E1 /* PBXTargetDependency */, ); name = "react-native-orientation-locker"; productName = "react-native-orientation-locker"; @@ -26366,9 +26284,9 @@ buildRules = ( ); dependencies = ( - 0747FF41083DD1A99FADC6EE41CFEE04 /* PBXTargetDependency */, - 7B45DA068601682BDFA0CBDC90C1EC8E /* PBXTargetDependency */, - 2949F4A36A4922742D87277DDD9BDC81 /* PBXTargetDependency */, + 0E6342513CFE10C86E5A9F6803959B81 /* PBXTargetDependency */, + DA65AA1C224ED428F63C0E595F71D64B /* PBXTargetDependency */, + BECA68E5A07217D7C691E5654F3F06AB /* PBXTargetDependency */, ); name = EXAV; productName = EXAV; @@ -26386,7 +26304,7 @@ buildRules = ( ); dependencies = ( - 405628134675E977826D5B55DE8B79F2 /* PBXTargetDependency */, + D1488C4A667BA056C054D6A93063E0F3 /* PBXTargetDependency */, ); name = RNRootView; productName = RNRootView; @@ -26395,17 +26313,17 @@ }; 1953860EA9853AA2BC8022B242F08512 /* SDWebImageWebPCoder */ = { isa = PBXNativeTarget; - buildConfigurationList = 738FA1577E1FBFE5249A004C44942440 /* Build configuration list for PBXNativeTarget "SDWebImageWebPCoder" */; + buildConfigurationList = 5D27AE09F1475A040C253B0D0DA121C0 /* Build configuration list for PBXNativeTarget "SDWebImageWebPCoder" */; buildPhases = ( - EE2E2A56C5206CA5667A5F0F65F5E033 /* Headers */, - EF198BC1489771EDEC3ADECD0EFE1C7A /* Sources */, - B18D6FC4695EE9D488646219D64136DD /* Frameworks */, + 9F083F91C3922D56A24938FC5F936FA5 /* Headers */, + E24E0F9DFF1FB326F7C2245FE9B60BA5 /* Sources */, + 7C36E0229638450457D2F7074A24D643 /* Frameworks */, ); buildRules = ( ); dependencies = ( - 13247A46AA92E6A3D3F5A744F4D58B24 /* PBXTargetDependency */, - D5970FCEC1BE9CF9E7E686F21D352874 /* PBXTargetDependency */, + D06941238338ECA3C8043DB80597EEED /* PBXTargetDependency */, + 1299EDC7813B4B8F8DCE15DEEA31519C /* PBXTargetDependency */, ); name = SDWebImageWebPCoder; productName = SDWebImageWebPCoder; @@ -26423,7 +26341,7 @@ buildRules = ( ); dependencies = ( - A2C205EF932D6CC2C24DB178FEDD7421 /* PBXTargetDependency */, + F2F46464254793FBBD9841FA669E2C8F /* PBXTargetDependency */, ); name = RNCMaskedView; productName = RNCMaskedView; @@ -26432,16 +26350,16 @@ }; 1FAAE067C1BFDEA17DFB657C3379AB56 /* Flipper-RSocket */ = { isa = PBXNativeTarget; - buildConfigurationList = 1F6E12F51F17AC245732BF2B07C5151A /* Build configuration list for PBXNativeTarget "Flipper-RSocket" */; + buildConfigurationList = F16DCEBA5427B9D689B2DF1EDF881F22 /* Build configuration list for PBXNativeTarget "Flipper-RSocket" */; buildPhases = ( - 5B2F360B077AD1BDE533C46FCE59D91E /* Headers */, - C08A6AE727D4D6D3A9FAEA70756BB5EA /* Sources */, - 274DED14DC226F4FFEB0135F04B1EC27 /* Frameworks */, + C64F4B30CE149B50622971F38521B970 /* Headers */, + 1B8156818A3C38EC1FA7C507D02BC519 /* Sources */, + C571BF9FC0779CF41DE07B12827362CD /* Frameworks */, ); buildRules = ( ); dependencies = ( - 5FCDF394FAF1FC06876C773403175334 /* PBXTargetDependency */, + 203E05F7EB374E60F2F78AEC482ACCE8 /* PBXTargetDependency */, ); name = "Flipper-RSocket"; productName = "Flipper-RSocket"; @@ -26459,7 +26377,7 @@ buildRules = ( ); dependencies = ( - F35A58FC7C82309A726EAAF755C4F3CF /* PBXTargetDependency */, + D324CC222258B063EABB22F495123C02 /* PBXTargetDependency */, ); name = RNScreens; productName = RNScreens; @@ -26477,9 +26395,9 @@ buildRules = ( ); dependencies = ( - 916D50F5FE1E54BBD1C8E72B51B53704 /* PBXTargetDependency */, - 676736B56DF49E326D3444ABC5C7E9A5 /* PBXTargetDependency */, - 102EB782CFEE7891EE38DD374F8F4EF0 /* PBXTargetDependency */, + F85FE5C59AA8145CE557B882D34A7E5C /* PBXTargetDependency */, + 9C49F05B1FBE9121C140AB549FB7520F /* PBXTargetDependency */, + E60EA42516517AABD4E4E7EC96B4EFB8 /* PBXTargetDependency */, ); name = EXImageLoader; productName = EXImageLoader; @@ -26488,139 +26406,137 @@ }; 28666AA448F927736F4533C70E448907 /* Pods-defaults-RocketChatRN */ = { isa = PBXNativeTarget; - buildConfigurationList = F4C8A35E3252FCEB473E483F333F09E4 /* Build configuration list for PBXNativeTarget "Pods-defaults-RocketChatRN" */; + buildConfigurationList = E6F73BCECB68393037E5FC903076C813 /* Build configuration list for PBXNativeTarget "Pods-defaults-RocketChatRN" */; buildPhases = ( - 3540484166DBCA3A6B65797A68A81CF1 /* Headers */, - 9B2024FD04B3CDDFF3602231D93163DD /* Sources */, - FCD5440E0834900038464E68F142E969 /* Frameworks */, + 4CCF44A15D00DBA49C7D81C3BB915DBF /* Headers */, + 8253A18C8356FF9C47CCF52CE3F9FAEE /* Sources */, + BE0265773847A9F98C02265892AFA225 /* Frameworks */, ); buildRules = ( ); dependencies = ( - F2B211935424B8CA5ACCC6849FD9E141 /* PBXTargetDependency */, - DEA06A4DF6FE01D0FF1EF48771EFB66F /* PBXTargetDependency */, - 5CA15E2593F18ECBC25B0F05BB514584 /* PBXTargetDependency */, - 21B41452FA2F8F3442B9CC7708BCB06F /* PBXTargetDependency */, - 1222D4127271B30975E49C7FD3C23E40 /* PBXTargetDependency */, - 8CF2441F8BD11960DA4AA94B96460799 /* PBXTargetDependency */, - 4198DBF717060F37ECD20B06242ED852 /* PBXTargetDependency */, - 2661208CCE1F00280F0E01A2C84C829A /* PBXTargetDependency */, - 65C8BA29FE7253CB8B9E1D0D252FC9C5 /* PBXTargetDependency */, - 583AF72861CDF291EAB93BE58CE37279 /* PBXTargetDependency */, - DDC3ACC7530FC66545CCCF4EBECF9F2B /* PBXTargetDependency */, - B3A102A653F8F336B127E80AF17EBB63 /* PBXTargetDependency */, - AC8BD4CEAD023EEE36E2E908923A8ECC /* PBXTargetDependency */, - EE2167E981F015ACD2531DEF5241A9DE /* PBXTargetDependency */, - AC484CAEEE5320A1BC5AC3D4ACD6877B /* PBXTargetDependency */, - 32C340D547B5AB248F6C70A8188A3EDE /* PBXTargetDependency */, - 7E9DFC8CDAB5BE14339B4BF013586709 /* PBXTargetDependency */, - 920563EF6A58C256566C1B63B3406F6B /* PBXTargetDependency */, - 57097B63797E713D7643C6A5E3439E5F /* PBXTargetDependency */, - E5F258B753DF4470EC09F0A0B415DA7F /* PBXTargetDependency */, - 03865736D758155BB037B351B702B7E5 /* PBXTargetDependency */, - 95B0791F6B593EF8C3842D1D2117615B /* PBXTargetDependency */, - 43ACC804C8E0A7A027E86712E67CEDC0 /* PBXTargetDependency */, - B6FB772AFC597DE6B1E5CCF2C629299A /* PBXTargetDependency */, - C428B327F4B1972A9C003E09867A11C2 /* PBXTargetDependency */, - 0840800CD20106D00B2EBFA7708C8206 /* PBXTargetDependency */, - 8EEE597D6F15BBBE8976374C97512BCA /* PBXTargetDependency */, - 497DC10D59E214E595B243244DA1F097 /* PBXTargetDependency */, - 2108D9CAAF5CF92769E06CD365A8C20E /* PBXTargetDependency */, - 2B0F9258D6E03CD35B38BA8F4EFAD8A8 /* PBXTargetDependency */, - 811C0F9F44E41DCFD8C8A91D33F3B418 /* PBXTargetDependency */, - 7102FE14E40BF579704B03EA33DA9B30 /* PBXTargetDependency */, - A84CED7A05332A441075CAC6C058D03C /* PBXTargetDependency */, - 645D79FF62CAC2A54E24162363297934 /* PBXTargetDependency */, - FE932D735560D2FE9F140B5146491503 /* PBXTargetDependency */, - 25E9CDB9B0F0E4600973A238874D3043 /* PBXTargetDependency */, - 9BCCD88B6F1E4251F3C5BBBE59C6E0C3 /* PBXTargetDependency */, - D886B02BB59010A46256B4D360043811 /* PBXTargetDependency */, - F0A855A2393B34C7F850E0B77A59D8D4 /* PBXTargetDependency */, - 81C65564EFF0EC930D10A29285BB32F9 /* PBXTargetDependency */, - F783C0B452654905AB4B0EA92CADFB9A /* PBXTargetDependency */, - 0BDAD72133359C849228AA6F500B4F8C /* PBXTargetDependency */, - EA27FD1BDF1340B10762FA5BCA6897F8 /* PBXTargetDependency */, - FA14E07C57ECC7D7672F14CCDD7C72F6 /* PBXTargetDependency */, - 8C3D6F3780F23C75CEF5EE36A80AC247 /* PBXTargetDependency */, - A75A5CF292DFF36941B8CB88478BD985 /* PBXTargetDependency */, - B870CA6314695CC6FA00A140C37AD7AD /* PBXTargetDependency */, - DCBEED8BB8DA785CC953085B281C524B /* PBXTargetDependency */, - E666B2E35AC66E44685924DFCCCF1F3A /* PBXTargetDependency */, - 034053B23106F483E5AA0A380D03DDF5 /* PBXTargetDependency */, - 8287DCE0A4C67FF9FFA22DBBB8BBE6ED /* PBXTargetDependency */, - 074E4A1E06D215325358F9491EBA62DD /* PBXTargetDependency */, - C044D558D359AF04E60CC12561BDBF86 /* PBXTargetDependency */, - C500FF6F9FD28AA0CDC82C34D09F21A4 /* PBXTargetDependency */, - CF3F0E99D7D9D99EA8F16114EF73C6E0 /* PBXTargetDependency */, - 908AB5A357A27B2B87B523F6CC8CA365 /* PBXTargetDependency */, - 08A1C64265C2F8101FBE98D0FE90E609 /* PBXTargetDependency */, - BA48DD50F927E36DB7B127AAA1D117C8 /* PBXTargetDependency */, - 01B2D8EBF420FD3A9D94FCC7E74FDE02 /* PBXTargetDependency */, - A6E2130A7D24FA5B81949ABE8CD69C80 /* PBXTargetDependency */, - 4B22F750E4C07276D2A655B25A97346A /* PBXTargetDependency */, - 4C33B34B7075C530C2CBAE11C078C834 /* PBXTargetDependency */, - E3F5BE3B036BDE2C64FADCDA8867C2A8 /* PBXTargetDependency */, - 9C27F86BF24266DE36575539849D4693 /* PBXTargetDependency */, - F639A2830B5246E1270913827CC2F3B6 /* PBXTargetDependency */, - CF510660DA0A379441CA54D78B3E9996 /* PBXTargetDependency */, - 1279A41EC69B47E4A1E369C0DC83813D /* PBXTargetDependency */, - 14A6CC6C8BCD2260E0E95AD40F7ED787 /* PBXTargetDependency */, - 2BFE27110C8564961592C6EB49163405 /* PBXTargetDependency */, - 08E46DFA0C77B11BC79425135D63F0DE /* PBXTargetDependency */, - 42130F32E5ACBA11931B8505FBA96DB1 /* PBXTargetDependency */, - E0081F81334E401F9C1A5A022B1619AB /* PBXTargetDependency */, - 6D1A2195BCBC778EF5DD84456C1E5EAB /* PBXTargetDependency */, - CFDBBDAE7ACBC68BA01C04FFD98FA244 /* PBXTargetDependency */, - 49FCAF70EDB0E0CC3A63D4CA082248F1 /* PBXTargetDependency */, - 1EBD4BF0D1B1D5042760457C1E0EAE56 /* PBXTargetDependency */, - A6BE20308DC8C4A9E9B0C7A2694A14FC /* PBXTargetDependency */, - EB6A8B3DC7D661BFB02311F88AD70312 /* PBXTargetDependency */, - 1AFF613E47D143D42406774C30AFE976 /* PBXTargetDependency */, - 7097E1040EB2D3CDD2F5814CE58C0D44 /* PBXTargetDependency */, - 5150D075C8BA6B2EF4AA6C05A3F271F0 /* PBXTargetDependency */, - C69E87FC24543C044754DC841E96CDAC /* PBXTargetDependency */, - 6ABCFBDF5754D43AA1611E365947C3E0 /* PBXTargetDependency */, - 72015D997B70C110A5868EF457E45399 /* PBXTargetDependency */, - 099B02666A9FED3BE202D35B882EC3AC /* PBXTargetDependency */, - A7A92E2A6F1A9CB1A3CFEE65E46D906E /* PBXTargetDependency */, - 172A72C506F04FE3CDE6F0087DC1D067 /* PBXTargetDependency */, - 467FCD9997BF1229D4479AC347766A41 /* PBXTargetDependency */, - 701BD2FAE150DEB0D1CF6D90D9E2A6AF /* PBXTargetDependency */, - 178002977A789D07FFD4D43F25338040 /* PBXTargetDependency */, - A3E83816F91FB6FF8637A270F369AC3C /* PBXTargetDependency */, - DD3DAA8F6CD1E76CA6540183D4C4E406 /* PBXTargetDependency */, - 840D0A62BD19786FB3EE9B25821F01C6 /* PBXTargetDependency */, - 3064E763BF957DC8E9794B2627637A5C /* PBXTargetDependency */, - 53E6E7AB1435109529CB119E993C83CA /* PBXTargetDependency */, - C86AB4E7CF49D96DEB001D5AC052EAE0 /* PBXTargetDependency */, - 1A82BC42D58BC88EEF8A286565649720 /* PBXTargetDependency */, - DD8B13F01399292057CB1A2120262898 /* PBXTargetDependency */, - 2F79BF7954E8D88EA79D3F6E73D470A9 /* PBXTargetDependency */, - 37C38E28B4F83D9D3B47F10A4B8ECD01 /* PBXTargetDependency */, - 6CDDC1372E89814CC5FAD351EC98BDBA /* PBXTargetDependency */, - 0987DFED30CBA12D096400B5E00D080C /* PBXTargetDependency */, - E7C3274244E88B5BDE0B7169B66BCDCA /* PBXTargetDependency */, - C90C5C65C08E296588C20BD840D761C5 /* PBXTargetDependency */, - A2B9CD32F6F0425727F2C55F0C85FE07 /* PBXTargetDependency */, - 4A9ECB304B438785AF0FAD6CB9F1FE69 /* PBXTargetDependency */, - D30DA2F6131F309E8489FCD3F6B28D8D /* PBXTargetDependency */, - 27857BA84FB3E455EFB965D7B9063D89 /* PBXTargetDependency */, - CAD5B8FF90A549E6DBF757D7CAE7BC4F /* PBXTargetDependency */, - 78951F5A14BBC91D71CC9A9C98980436 /* PBXTargetDependency */, - A2F44A5C2BA2EB24DD1708DDEEE059DB /* PBXTargetDependency */, - B7E81AADB9277C770C1A7599D4F5AA40 /* PBXTargetDependency */, - 25647F70B283957AE06620E92FFAAC5C /* PBXTargetDependency */, - 1D4F454A04BD32AEEBC9C1DAD90D7D03 /* PBXTargetDependency */, - 1CAFB183EA9A7371EA71469687B68DEC /* PBXTargetDependency */, - 63F850D1806C6FDADF6BEC88BFD79B0E /* PBXTargetDependency */, - 1E3809456F4C268C50A8F17E3ED97CF3 /* PBXTargetDependency */, - 0A71813E42742064C2A6E1B6A8DFA217 /* PBXTargetDependency */, - 66CF47390ED7BA63ADF88AEE3731C347 /* PBXTargetDependency */, - DE17F7C3F95D7DBEFE469E2AF2AF4DCC /* PBXTargetDependency */, - FFE8A4ECA14FCD3CD5EB7EAC0B33AB4C /* PBXTargetDependency */, - 2B4069E8A2F436A96415D5BECB4EDD2D /* PBXTargetDependency */, - 3FD2C54AF777811EAF0FE410CCE2922D /* PBXTargetDependency */, - 230D18F4E26F49CBC7E952BF79BFF76E /* PBXTargetDependency */, + 2CBD3D8C374949A34C9D7E9B38F6738B /* PBXTargetDependency */, + 6C1A4FEDB142B968E9416FE70ED41A0B /* PBXTargetDependency */, + 0B1BE8D6AD5EAEF57302BE5B721C1EC0 /* PBXTargetDependency */, + 45535BE9CB6BB8AC71EB9EFDEC832F79 /* PBXTargetDependency */, + 64438CE0D9BF3601CAB236CF1A17B763 /* PBXTargetDependency */, + 45DA3324EE98C916E5487C158DB30B2D /* PBXTargetDependency */, + C0761E4F0CEA88F92C59018FC894F201 /* PBXTargetDependency */, + 5B517F477E13C020B01CAE1CF0612A14 /* PBXTargetDependency */, + C9E3166FD61B47B8E3C77344C02107D2 /* PBXTargetDependency */, + ED979A1E63469BEDEDA918645F316F98 /* PBXTargetDependency */, + 3C33CBBA075512E83FAF13054719B757 /* PBXTargetDependency */, + B8BF6C5B5D58DF3497263C4A758FFE16 /* PBXTargetDependency */, + DAAA8C615B6F679FACD55652315C9DC6 /* PBXTargetDependency */, + ADD16E02FD4C3A33EBB161E58676D2EE /* PBXTargetDependency */, + 3CAC392ED2F42EA16E5BFE2A879FC4E4 /* PBXTargetDependency */, + 794CD7E010740AB32F1A6451FCB6925D /* PBXTargetDependency */, + 441579A2C01C1E78BA9B2553C8ABEF97 /* PBXTargetDependency */, + FECFD9D6353B665C7DB45EADE22C7087 /* PBXTargetDependency */, + B0D25B825136BEC9488B7E7DE1483858 /* PBXTargetDependency */, + 81CD2D03F4BAC6EDB970CBA14C4461D4 /* PBXTargetDependency */, + E79361373708109E30DBFB73240BA7F4 /* PBXTargetDependency */, + D08EF9286A3CD6863960150FB7F13915 /* PBXTargetDependency */, + DBD1042826A7ED58078C78AD29C27853 /* PBXTargetDependency */, + 61998F69B1EBBEE7AF1F4597E971AA6B /* PBXTargetDependency */, + 99DAD1D7607B17519B3328912C4E91FF /* PBXTargetDependency */, + 235A51963E1990A97DDD7B3F9B25E9F7 /* PBXTargetDependency */, + 2B5C878AAD28DB4ABCF847AB9D0688FC /* PBXTargetDependency */, + 5BE7BA94E702536C453C260D7A74B8E9 /* PBXTargetDependency */, + 2BCC501C35856C7C10A671ED923078EE /* PBXTargetDependency */, + 5AF32D833B185A62DD683FF408521803 /* PBXTargetDependency */, + 5E9894A5DFCBC68C988F4C80A07C4030 /* PBXTargetDependency */, + 2EA35B36F4848267045120FA5C973D33 /* PBXTargetDependency */, + 37747E90C658158FC2451AEE815FDB88 /* PBXTargetDependency */, + 34C0EF6762385CED061FE3D6D80874B2 /* PBXTargetDependency */, + 9FFA660918952CC28D215E87E042B5C8 /* PBXTargetDependency */, + CF77CF8F14AD8E082B03FDB52B559058 /* PBXTargetDependency */, + FDB1E95F8175581EBA93438237D68DCE /* PBXTargetDependency */, + C0D4F1EF56F9933B19F48CF84D5F0C90 /* PBXTargetDependency */, + 83DE4C277386755F50CCB8364C34A740 /* PBXTargetDependency */, + 7313FC93CA945164B8C2C3E880058E3B /* PBXTargetDependency */, + 34434F5E1E5DE42ECFDFE71C6ED23F30 /* PBXTargetDependency */, + 869D84303FF9F01457518EA43FAC44EE /* PBXTargetDependency */, + C1FA2E1B5DF36F8F1CFB2813714BEAA6 /* PBXTargetDependency */, + 5D2ED10BB310DF898AF0AE8EC397BE83 /* PBXTargetDependency */, + 23926905D7EF135C380B94941AE31B3D /* PBXTargetDependency */, + 4602FA2E19C2E8BEED50BCD45FED4E60 /* PBXTargetDependency */, + 99F54E70963A3973DBFE32A1C21B5DD3 /* PBXTargetDependency */, + F1896D2FAA09DED00F24CAB421400A7D /* PBXTargetDependency */, + 21DA7043230FE9E0DC8F1F355C00C6C0 /* PBXTargetDependency */, + 27FA7D7B8A5A852173DDBB76F487EBC9 /* PBXTargetDependency */, + 5C78CD8DAC6490DCFE2BF6F359CEA2CC /* PBXTargetDependency */, + 7A781AFACCBE4EBFB6300E2A1E068C85 /* PBXTargetDependency */, + 66F6F734F402F0F4F411528357905156 /* PBXTargetDependency */, + 12A8BE5399377A1632E2BA7375BDDF4D /* PBXTargetDependency */, + CB20876D680B551D79982DB92E62F2A4 /* PBXTargetDependency */, + B55EBF10176404C6381117082A09513B /* PBXTargetDependency */, + 2C86B887FDFA39239AC76DC86A1254A6 /* PBXTargetDependency */, + F2A14E15F3536500E5BD7B3DFB3CB021 /* PBXTargetDependency */, + 813AD587299DD21759D8B64CC0412247 /* PBXTargetDependency */, + F2A2C7CE230D9F0F14CF4C963EF51842 /* PBXTargetDependency */, + 2FA3099B557F794FEC4CABFA141D227E /* PBXTargetDependency */, + 7239D33E3749591A82C10B8B1B55DA5F /* PBXTargetDependency */, + 8BBBE324E4AA4A6065D88301C4BADC95 /* PBXTargetDependency */, + 8E996FB8A8CEFE5BC45618F5C362746D /* PBXTargetDependency */, + AB84B027C6326EA8EBC66752508DD6F4 /* PBXTargetDependency */, + 0D08F427D403E4086C2EABCF1ED1F31E /* PBXTargetDependency */, + C8D197AE3110C18B5596EE25D28208CF /* PBXTargetDependency */, + 7094AD1E2F8B79AEB67AAE62CBB85F2F /* PBXTargetDependency */, + 45FCCF0B304B7F57CF49CB6E1641FA1F /* PBXTargetDependency */, + F9F346B944A7C77092C8AC1F188AEF14 /* PBXTargetDependency */, + 359F660B402AD7D61F230A304D3FD42C /* PBXTargetDependency */, + FB053CD2AF6104DA3A1F286D1648F865 /* PBXTargetDependency */, + 5CB1897C025989DE83F9138FC0AA0E8E /* PBXTargetDependency */, + B08294AE888A471E711B7C708C83F973 /* PBXTargetDependency */, + 697B6049ADEB73AF2081F40D16D483E7 /* PBXTargetDependency */, + 75C7684295BF6E62C8C2BFDE81DAD756 /* PBXTargetDependency */, + BD5061D4D28274A219065949DC7DF233 /* PBXTargetDependency */, + 579416EB96762AFE230795C7EFC47291 /* PBXTargetDependency */, + FF49ECE010E96B12243F6EEC8C553C7A /* PBXTargetDependency */, + 73DCC5271E3FA7CD79649B4DFA8C9BD1 /* PBXTargetDependency */, + 84B960F088FF01C3D3C38E6A349F2B6A /* PBXTargetDependency */, + 83496ECBE1CE7749D1EDDDCAD901AF6B /* PBXTargetDependency */, + 24B86D6D5802D5F8B08A03469B50FA91 /* PBXTargetDependency */, + 0FC5443234E252A49FB4E990AA7E92FB /* PBXTargetDependency */, + E7C2A153CE1EF9503D1DEF2FE8AB8A82 /* PBXTargetDependency */, + A8CE6F72221BD14B327717552E82986A /* PBXTargetDependency */, + B791D5F34D2554D40E48590D7D5F4510 /* PBXTargetDependency */, + BC840F5042E28AA5DCE740261E40EF72 /* PBXTargetDependency */, + 2C5DD45EA98628BE08097EDD9DE7BBCB /* PBXTargetDependency */, + D0D68ED7AF0E0236CE71E0F29415F0C4 /* PBXTargetDependency */, + 2BC0B2B6865C78A8E0871E11724A047A /* PBXTargetDependency */, + CBB0C58D4399BA70D4463D805139022E /* PBXTargetDependency */, + C95574E66A09291A297A019FCD2EDB55 /* PBXTargetDependency */, + 11A1481965B02EFF9D157CC6F2375921 /* PBXTargetDependency */, + 59C08816FA4B5CF71E536CC6067B11D6 /* PBXTargetDependency */, + CF7F370C4C97ECF7116F30C037A0D7F5 /* PBXTargetDependency */, + 99F73ED16A560C48240FBEF118B3A4C0 /* PBXTargetDependency */, + 8AA938B9CF2C0D713DAF20F109DC279D /* PBXTargetDependency */, + C9E8D6C1FD2913FF5984D20EB93E4ADD /* PBXTargetDependency */, + 617B058BFDA8F1B2DE05B1AB71849D25 /* PBXTargetDependency */, + 2BD63D008BDFC3D2BF47555FB63675E9 /* PBXTargetDependency */, + A63F6D47FAEC4EA1980630DE639B8833 /* PBXTargetDependency */, + FDF5F7E076EF964E48871C783C2787D2 /* PBXTargetDependency */, + 4B815D8395694438A7A16CD6200180A1 /* PBXTargetDependency */, + CCF5BA90DBBFA22E6D8FE9C0AE47A42C /* PBXTargetDependency */, + 1729BEF4A13BAC4AF6481B42E5A438A4 /* PBXTargetDependency */, + 517FFA3636E27AE0BDB6C3E4E3059326 /* PBXTargetDependency */, + 95FB772950501266AFA1F124377CA1E0 /* PBXTargetDependency */, + 09500CDFBD036AB87B7D7AFED8B7000F /* PBXTargetDependency */, + F15F0CCDC6CD3375E73218A0DB73A99E /* PBXTargetDependency */, + A44ED6522B5E82F6C7F2C9F3AEB8EA61 /* PBXTargetDependency */, + 2F8A77E837E85EFCBD2E7FC864C9D207 /* PBXTargetDependency */, + 05C318CB4FAEACC07040E66B43FF47F2 /* PBXTargetDependency */, + 736BA8CC90C83AACB905F1466A16005D /* PBXTargetDependency */, + 716A9C448D51ED48CABB708258760374 /* PBXTargetDependency */, + 39BDB9475B09CAE160B087C26D2CDECE /* PBXTargetDependency */, + 27A3CA9C3BCBD5D8C5D6C971233E7FE1 /* PBXTargetDependency */, + 4D4972FD2EC1C1FD99F2B4AB0D9A046D /* PBXTargetDependency */, + 876A388A228B1B1D9463FD08D25F2EC7 /* PBXTargetDependency */, + 67364BCB873DE1A190261E58815F1C01 /* PBXTargetDependency */, + 5C9F0D859AA20CE80864A109179542ED /* PBXTargetDependency */, + 241D5E966B15916EF9AA6C8AD76751AD /* PBXTargetDependency */, ); name = "Pods-defaults-RocketChatRN"; productName = "Pods-defaults-RocketChatRN"; @@ -26638,7 +26554,7 @@ buildRules = ( ); dependencies = ( - 4C6C7C7084F1BB63703742B6A2A97C7C /* PBXTargetDependency */, + 412B31B2973343EA689B27DB94F52341 /* PBXTargetDependency */, ); name = EXAppleAuthentication; productName = EXAppleAuthentication; @@ -26647,11 +26563,11 @@ }; 2AB2EF542954AB1C999E03BFEF8DE806 /* DoubleConversion */ = { isa = PBXNativeTarget; - buildConfigurationList = 71A269A6A30314D97285226FED0F1E7E /* Build configuration list for PBXNativeTarget "DoubleConversion" */; + buildConfigurationList = 4DEA3AEC26AD955CEF343249032B402F /* Build configuration list for PBXNativeTarget "DoubleConversion" */; buildPhases = ( - DF72560A36C076A828625AAC05DDD005 /* Headers */, - 98995ED7E2028AF31651990ED98C4112 /* Sources */, - D6A39A77ED1F270CD92DE17EE0AF1656 /* Frameworks */, + 378A7F495AB6702AA19399A7993D189A /* Headers */, + 67EAF390AD1509EFC11DF890B8CE1DB4 /* Sources */, + 9C301E03D913B26B22DB51076BC08D36 /* Frameworks */, ); buildRules = ( ); @@ -26664,11 +26580,11 @@ }; 2B25F90D819B9ADF2AF2D8733A890333 /* Yoga */ = { isa = PBXNativeTarget; - buildConfigurationList = 5DBE2DCB6796B02028ED4C52BAFB7AAD /* Build configuration list for PBXNativeTarget "Yoga" */; + buildConfigurationList = 404939B500D1E4AA52EE17F0B460A8A3 /* Build configuration list for PBXNativeTarget "Yoga" */; buildPhases = ( - 2AB57443CC4E99A143415ECD93076ACD /* Headers */, - EAAA44F6927E6769C213B4E505BE7D75 /* Sources */, - 41BB1927509BDFF50ABBF429C29F99A7 /* Frameworks */, + 5829E5B43D7B27528482E1E932E7BDD7 /* Headers */, + E2DF8288B62C07FD4E87F28746B416B1 /* Sources */, + C09E63A4C2A3DDE053FBB45D8C35226D /* Frameworks */, ); buildRules = ( ); @@ -26681,11 +26597,11 @@ }; 2BBF7206D7FAC92C82A042A99C4A98F8 /* PromisesObjC */ = { isa = PBXNativeTarget; - buildConfigurationList = B061CB847A6B17B4A6853188C57B9A28 /* Build configuration list for PBXNativeTarget "PromisesObjC" */; + buildConfigurationList = 9D0D19C844E45C7660DB87397C4D9F9C /* Build configuration list for PBXNativeTarget "PromisesObjC" */; buildPhases = ( - C898263E32F3F1140ED22AC06685C837 /* Headers */, - 4A45652BC3533F744487E687413FA07C /* Sources */, - 3D6EAB8755CEC7BF11F57D2E2C9531B9 /* Frameworks */, + 6679046A26699D972E4B52B5967EC4DE /* Headers */, + FB6417B2D4120DABC642407804B8F7F6 /* Sources */, + 8081FF05CEE2E2164D18963C9334FE4A /* Frameworks */, ); buildRules = ( ); @@ -26698,11 +26614,11 @@ }; 2D4D3D5AD93ADCCF3DD45A88009E48D6 /* TOCropViewController-TOCropViewControllerBundle */ = { isa = PBXNativeTarget; - buildConfigurationList = FC5AD24E36A3AD83A522C0813F4CE405 /* Build configuration list for PBXNativeTarget "TOCropViewController-TOCropViewControllerBundle" */; + buildConfigurationList = 2F0C8C5F815FBC0AB4DA31232971193D /* Build configuration list for PBXNativeTarget "TOCropViewController-TOCropViewControllerBundle" */; buildPhases = ( - 5C103A2A787BFA1A9C1D4144082DCE47 /* Sources */, - 5BB61348516797F98DB7291477F25B93 /* Frameworks */, - 1CDF264D79F4FF1E8BFA81C7C3CE6617 /* Resources */, + 72741E826DB6035D53FC04FDEA114410 /* Sources */, + E2818D4AC5DB061AE7F8DE52F82D1BF4 /* Frameworks */, + B5D30FEC8F8AE5DF3FFE403C0909B065 /* Resources */, ); buildRules = ( ); @@ -26715,17 +26631,17 @@ }; 32CA4CBD6B28983076BD93DA221AD027 /* YogaKit */ = { isa = PBXNativeTarget; - buildConfigurationList = 1A2C6335995D1BCC2F3C6958499EF751 /* Build configuration list for PBXNativeTarget "YogaKit" */; + buildConfigurationList = FC9237A9AB6D7FF6A552CDE5183144E7 /* Build configuration list for PBXNativeTarget "YogaKit" */; buildPhases = ( - 19C46365A35E0C2C9C5299D1ECF73E40 /* Headers */, - 53B9592D24C6B9A1B59A7588DCDA1094 /* Sources */, - A56E11ADBCC08C7D525CDBB967BFDC18 /* Frameworks */, - 1823C66040CEB06687F1EF0782B7BF34 /* Copy generated compatibility header */, + 3855A06A9BBB97A575AFEFCEACB3105E /* Headers */, + B6FD4C7D26FF5EAE752ADE5EA959023A /* Sources */, + 2BF769C9A303C35F3AF855274C3F9CED /* Frameworks */, + 7EF11B716D2C52F85AD968782B91BD21 /* Copy generated compatibility header */, ); buildRules = ( ); dependencies = ( - 034E5C0209CBECFB809F8130768D9FD1 /* PBXTargetDependency */, + 4CF0C42F033B767A503A7A5A8A367C1E /* PBXTargetDependency */, ); name = YogaKit; productName = YogaKit; @@ -26734,11 +26650,11 @@ }; 3847153A6E5EEFB86565BA840768F429 /* SDWebImage */ = { isa = PBXNativeTarget; - buildConfigurationList = B8C714D33B1F0EF4A5C21EBDD1A9D0C6 /* Build configuration list for PBXNativeTarget "SDWebImage" */; + buildConfigurationList = 11CB0AE17C9F0B400527DF2327F0B7CE /* Build configuration list for PBXNativeTarget "SDWebImage" */; buildPhases = ( - B51C0489402053ED6DCB530EBBB7F9D7 /* Headers */, - 119F6C97B7BCED275EA0A8CD8D1D6249 /* Sources */, - 8D565FA49E6F0EFA98DE5496CD8AD27D /* Frameworks */, + F5BD01E335F2C1061BAD536D2AA3BFD8 /* Headers */, + E271BD64C2A5688B357020ACAD3E6BBA /* Sources */, + 87FCC0154FD7048FA76DE88A15AF33D8 /* Frameworks */, ); buildRules = ( ); @@ -26760,7 +26676,7 @@ buildRules = ( ); dependencies = ( - BA6A973DDD33103C468F46B983DFE285 /* PBXTargetDependency */, + 4D5E187E5132C5A8211C12AAF6185E2C /* PBXTargetDependency */, ); name = "react-native-restart"; productName = "react-native-restart"; @@ -26778,7 +26694,7 @@ buildRules = ( ); dependencies = ( - D161AA9E493683667739B43C8317CFA7 /* PBXTargetDependency */, + D9706D65A519406AEFCAF84E9D1DF1DD /* PBXTargetDependency */, ); name = "react-native-appearance"; productName = "react-native-appearance"; @@ -26796,7 +26712,7 @@ buildRules = ( ); dependencies = ( - CD4B5C1E45E3E8DFD54B011419B2D7DF /* PBXTargetDependency */, + 77D883F4E767E22B8D7BF480B3303972 /* PBXTargetDependency */, ); name = EXHaptics; productName = EXHaptics; @@ -26805,17 +26721,17 @@ }; 4402AFF83DBDC4DD07E198685FDC2DF2 /* FirebaseCore */ = { isa = PBXNativeTarget; - buildConfigurationList = 7B543AE55440CE5A43FCC3D6016EC9E5 /* Build configuration list for PBXNativeTarget "FirebaseCore" */; + buildConfigurationList = 72A9E12FF8CFA95481EA86A55E249BB8 /* Build configuration list for PBXNativeTarget "FirebaseCore" */; buildPhases = ( - 458601195806D041EC881F9499B3A210 /* Headers */, - 4C7B4C2EAF97FA345A877D832CA1E0A6 /* Sources */, - 8BA1BE1AA86046F731A299A90F48F47C /* Frameworks */, + 186A326AC91F2540D875F188AE5AA348 /* Headers */, + 34D6E1D493AB72925AB1154056B762B9 /* Sources */, + D8370AAA7EDC178A007AAB57492E76FC /* Frameworks */, ); buildRules = ( ); dependencies = ( - C232A7FF37C1AE0FFDE74447F62883BF /* PBXTargetDependency */, - 545A4AF9A1D8CB1B153D4B10EE69AA3F /* PBXTargetDependency */, + 4B0767C85C2E8F7E4B333CD85B788A10 /* PBXTargetDependency */, + DE0135B3B16FE997259433D5B3B38D6A /* PBXTargetDependency */, ); name = FirebaseCore; productName = FirebaseCore; @@ -26824,24 +26740,24 @@ }; 463F41A7E8B252F8AC5024DA1F4AF6DA /* React-cxxreact */ = { isa = PBXNativeTarget; - buildConfigurationList = 96381B3900394EFE2BDAAAEA7033B397 /* Build configuration list for PBXNativeTarget "React-cxxreact" */; + buildConfigurationList = 1F6DB080166B752EA5D06993BE0828B0 /* Build configuration list for PBXNativeTarget "React-cxxreact" */; buildPhases = ( - 3059B2C06C0C8DA12016159ABC171B1C /* Headers */, - E468314F3DA7F4FB7C59EEDAB31A45C5 /* Sources */, - 094AC3245FADAF5DBBEA7ECAB638E8D1 /* Frameworks */, + DB92C835DA1FD50586C91264D38F1153 /* Headers */, + 9CBED1CA7C594B1FF81DBF6D23524D0A /* Sources */, + FFD102E81D59ADED42B64CB25853BF79 /* Frameworks */, ); buildRules = ( ); dependencies = ( - 078D974DD97F50B9C6CCBB9918E83A0C /* PBXTargetDependency */, - 83D8B9BA2DBE44821381343040980B6C /* PBXTargetDependency */, - 7EBF7D57EBE020F41B75A6E77D7DE164 /* PBXTargetDependency */, - 7402CB955DDD0637CA5143CB0A3723E8 /* PBXTargetDependency */, - FC8DDF4FF08E1267D2F322F0D0C63BEA /* PBXTargetDependency */, - 5F571588DED8CD6DC32B84A343E0B5F7 /* PBXTargetDependency */, - 812576CF1B14D38CFD4AB410E48CB754 /* PBXTargetDependency */, - FC6DD80EE67019A86FD9AC55BEBB8703 /* PBXTargetDependency */, - 2B175006EEBB4754F0225B7C8BC64255 /* PBXTargetDependency */, + 3495D5FFCFD39734F87DAE02D9D3406A /* PBXTargetDependency */, + 4B336F1FD958DF1A981C3749982230F1 /* PBXTargetDependency */, + A721B65D4C37A55293BCEB9BE9CC10B6 /* PBXTargetDependency */, + C19FC2B54D9720487A93DBA90B13B857 /* PBXTargetDependency */, + D66A9122C05D21673F01DE969A160824 /* PBXTargetDependency */, + A6C47CC08FC863EFD2953DFD1DADB7D8 /* PBXTargetDependency */, + 92CA3951ABAAD3001CA43C5327FFD94F /* PBXTargetDependency */, + 2E59BA7D3F3D4DB992D8CEA2B75196B0 /* PBXTargetDependency */, + F19AB6FDA915A5152F7F8571FA045094 /* PBXTargetDependency */, ); name = "React-cxxreact"; productName = "React-cxxreact"; @@ -26850,11 +26766,11 @@ }; 47D2E85A78C25869BB13521D8561A638 /* libwebp */ = { isa = PBXNativeTarget; - buildConfigurationList = 3770992238CC70E195D95BD65A4CBB0F /* Build configuration list for PBXNativeTarget "libwebp" */; + buildConfigurationList = E724047654453DCDA42C7A55B92BF6C7 /* Build configuration list for PBXNativeTarget "libwebp" */; buildPhases = ( - F199C2AE6E0F8B10F7ACE39957025449 /* Headers */, - 174E1BF540D3AB822C2632DC54CE8780 /* Sources */, - 8FCE07682FCCB59E7A8309D3F9FA6FB5 /* Frameworks */, + D5120C373A3D85DECC1BEA9C0BF6BE8C /* Headers */, + 8B4A86BE3D641D90FAADFE3A9B8BB8BA /* Sources */, + 03D2C677C010FCE89FD5716FD1A9D537 /* Frameworks */, ); buildRules = ( ); @@ -26876,8 +26792,8 @@ buildRules = ( ); dependencies = ( - 3FA6CC37752C495C4DC4BBC825ED126C /* PBXTargetDependency */, - 93E89E422704884B4D0CEDBCFFC4F1F7 /* PBXTargetDependency */, + 5AD517AA51CD87165E41724585FD3AAF /* PBXTargetDependency */, + 7C746CDB89614BC4E3A7BEB7C6AF4ACC /* PBXTargetDependency */, ); name = EXVideoThumbnails; productName = EXVideoThumbnails; @@ -26886,22 +26802,22 @@ }; 4F265533AAB7C8985856EC78A33164BB /* React-RCTImage */ = { isa = PBXNativeTarget; - buildConfigurationList = 8A3817F2D05E60F8690A927B2FECFE32 /* Build configuration list for PBXNativeTarget "React-RCTImage" */; + buildConfigurationList = 4D46BBC164B24132EBA0FE976954C53D /* Build configuration list for PBXNativeTarget "React-RCTImage" */; buildPhases = ( - 32CA56678550BDEBCB904E02464BB0BF /* Headers */, - ADF251BC5EA8DAB367F97065FFE9DB22 /* Sources */, - DDC4D8C0F4080E0C98424DA76891575F /* Frameworks */, + EBCADBABC91738A5F2D15E4637CB6297 /* Headers */, + F4EAEAAEE47D01B3BEE16E1F91ABCDAC /* Sources */, + 2A3CC09211F19158A8311928F6FB2853 /* Frameworks */, ); buildRules = ( ); dependencies = ( - CD0885A802848EF019F70776F0EF6AB3 /* PBXTargetDependency */, - CFAAAFFC68A3A992B971826F0248FCAB /* PBXTargetDependency */, - EBE357417F1D61F9ECA679BB0B0C19AB /* PBXTargetDependency */, - 65D5406984A8C99714CCBE3E3C7087CC /* PBXTargetDependency */, - F951FB0B0ADC207F6C474E9975820E68 /* PBXTargetDependency */, - 11A58981D85B7E911875AD1BC1BF46A1 /* PBXTargetDependency */, - F70740EC13D52B3D116F1D5E7CD68D7D /* PBXTargetDependency */, + 09EFE6B0A7ABFE5F1DFBBB614B1B345B /* PBXTargetDependency */, + 439088F434B6D1838CDCC56DD3FD45B6 /* PBXTargetDependency */, + 2592DE2A0DD52071301D10A9D96CAE26 /* PBXTargetDependency */, + 515615EC99F5998265B115C85E75C085 /* PBXTargetDependency */, + CFDD30E5A143D25B38540A625A1AFF0F /* PBXTargetDependency */, + 594E52BC224FB15ED2A47B15B7AB2347 /* PBXTargetDependency */, + 529B3F02B2BED97B72D19D2C93E154B3 /* PBXTargetDependency */, ); name = "React-RCTImage"; productName = "React-RCTImage"; @@ -26910,21 +26826,20 @@ }; 526C4398D095B3704EB933DADBC30093 /* FirebaseCrashlytics */ = { isa = PBXNativeTarget; - buildConfigurationList = DFE894F34C613273A95DB869737428CD /* Build configuration list for PBXNativeTarget "FirebaseCrashlytics" */; + buildConfigurationList = B7F3DFF0FD50696CA34CBB703F02F81B /* Build configuration list for PBXNativeTarget "FirebaseCrashlytics" */; buildPhases = ( - A067FEE71F7CBF7E7ACE1F844CA3BF56 /* Headers */, - 069C3EC6AB38AF5395FEBEA123AD52DB /* Sources */, - 0CDFE3C2D078FB44B58EF903F4DEAA7F /* Frameworks */, + 24AE747FA3912A8EF442A729F8A0F8F8 /* Headers */, + 266B3C154EDDDE7A69C37DFDDA066710 /* Sources */, + 44E7600D08CB6BBC85BCD5A537CEDC17 /* Frameworks */, ); buildRules = ( ); dependencies = ( - 36C4211413790D6C5AFD8E3FDEF2D5F9 /* PBXTargetDependency */, - D379E9EFA13009E76B11C1CB758362D8 /* PBXTargetDependency */, - 77A926C9ACC5A87888C5ECC7302E6F7F /* PBXTargetDependency */, - 4E399426831F7EB26EE9C24E11DDAB57 /* PBXTargetDependency */, - 45F36F7E5FFC97AB19834B4D0E54217E /* PBXTargetDependency */, - 1FE8CB41B12894B5CEB5D52D3F96E233 /* PBXTargetDependency */, + B5FF2AC64372009110561722B853CB70 /* PBXTargetDependency */, + 567B3A37561FE513B4386D27FE59E5F2 /* PBXTargetDependency */, + F26DC35155439744309E64FEF3072DF2 /* PBXTargetDependency */, + 6AD74A794C7203B48431731135AE0C4C /* PBXTargetDependency */, + AE55CB13C612EF7B2BC14188184BEF5D /* PBXTargetDependency */, ); name = FirebaseCrashlytics; productName = FirebaseCrashlytics; @@ -26933,20 +26848,20 @@ }; 53D121F9F9BB0F8AC1C94A12C5A8572F /* React-RCTVibration */ = { isa = PBXNativeTarget; - buildConfigurationList = 7F611E2A3BEBA446BFEEE2DC10AE6C59 /* Build configuration list for PBXNativeTarget "React-RCTVibration" */; + buildConfigurationList = 8034F10E9027FC1893436A0023C304ED /* Build configuration list for PBXNativeTarget "React-RCTVibration" */; buildPhases = ( - F42BA203501459FAC1D4A7C329D5F463 /* Headers */, - D1A788E06A778C565109E2A44D8F75F0 /* Sources */, - 06C7CFE6615FAB6FFC979FFD210C6D6B /* Frameworks */, + BE6CDB95BD9D24B8E8C492FB3332CFBF /* Headers */, + 1ABBA30C924CF443E82F8938099CAAF7 /* Sources */, + CEDD879702EEF208E25DA9E1CE343974 /* Frameworks */, ); buildRules = ( ); dependencies = ( - C293F750696B6364014EBF60FCDB932D /* PBXTargetDependency */, - 653CE825267220637177BE2583E4112E /* PBXTargetDependency */, - 3779707C73F3DE7A10BCD31E4711FC62 /* PBXTargetDependency */, - 67D8BEABA3F8EBC6CE5CB6BEBA9EBE12 /* PBXTargetDependency */, - D1F87FBFA6D2B08C9C037D9B1388FF4D /* PBXTargetDependency */, + D01A3FAA9F188DAC872BE1FC48DEAD92 /* PBXTargetDependency */, + C31D998A8E5A39E9109CED55EFB7F154 /* PBXTargetDependency */, + F92F353F3830B74E3AFBA2FE485D1A12 /* PBXTargetDependency */, + 1BAAD919EEC8C2147440A5FF5EAD07B3 /* PBXTargetDependency */, + 02B660A6CCDA293508548B3BB58996E7 /* PBXTargetDependency */, ); name = "React-RCTVibration"; productName = "React-RCTVibration"; @@ -26955,15 +26870,16 @@ }; 5C0371EE948D0357B8EE0E34ABB44BF0 /* GoogleDataTransport */ = { isa = PBXNativeTarget; - buildConfigurationList = FB20FE6C26236192FEAE9C7E4F120BFA /* Build configuration list for PBXNativeTarget "GoogleDataTransport" */; + buildConfigurationList = FA2B94C7378AB4155E6BA22806FFB9A4 /* Build configuration list for PBXNativeTarget "GoogleDataTransport" */; buildPhases = ( - 57092A702927FA7B3B62B36BEE47203D /* Headers */, - F4B320F3E91DE4B87DDFE2D0C0CE9001 /* Sources */, - 8F59E186ECE4687B417F87A75B24BAD0 /* Frameworks */, + D676AD47B164074142363AB1757CB97D /* Headers */, + 001102E053BFF893F82301A0294E0071 /* Sources */, + C3E817838C754C9EDECB59367BDBF5A2 /* Frameworks */, ); buildRules = ( ); dependencies = ( + D6661C4A70815DF6F38A72890D504420 /* PBXTargetDependency */, ); name = GoogleDataTransport; productName = GoogleDataTransport; @@ -26989,18 +26905,18 @@ }; 620E05868772C10B4920DC7E324F2C87 /* FirebaseCoreDiagnostics */ = { isa = PBXNativeTarget; - buildConfigurationList = 822465291AE619E4378783952B69FA08 /* Build configuration list for PBXNativeTarget "FirebaseCoreDiagnostics" */; + buildConfigurationList = A847756313CBC172D380281773338418 /* Build configuration list for PBXNativeTarget "FirebaseCoreDiagnostics" */; buildPhases = ( - 6315E710FE63AC0E5B4AFF9CF253E145 /* Headers */, - CE43AC7EA78FCFF268F3EFD6B4C3F832 /* Sources */, - 0E524B4CD3E5901ECA12F9118A571F54 /* Frameworks */, + 58F983E77758A283839B3CD7282DF2D9 /* Headers */, + D786C29644CB469756B7E8EED000ADBA /* Sources */, + 525DCCDA1DF812DF6452698E974EEC29 /* Frameworks */, ); buildRules = ( ); dependencies = ( - 876D68D975072D0B9A21D51F964A4F79 /* PBXTargetDependency */, - E85E05E1B6F2791A88C822DB6D5F8D92 /* PBXTargetDependency */, - 078460A4645A81AE39FAD23D3F825E5B /* PBXTargetDependency */, + 222867E33F1A86DBEF35070D9505A53E /* PBXTargetDependency */, + C2C718F814DE2A74D3687EFB4835B01A /* PBXTargetDependency */, + 3DC7A1490926D4365F4D341758854989 /* PBXTargetDependency */, ); name = FirebaseCoreDiagnostics; productName = FirebaseCoreDiagnostics; @@ -27018,7 +26934,7 @@ buildRules = ( ); dependencies = ( - 448750D1387299A1B3A26BEAD4C7CB0F /* PBXTargetDependency */, + B652CA33DB24807DBCB81E1134A41686 /* PBXTargetDependency */, ); name = "rn-fetch-blob"; productName = "rn-fetch-blob"; @@ -27036,7 +26952,7 @@ buildRules = ( ); dependencies = ( - A57CB5642DC7276FDA316BAD26A63E4B /* PBXTargetDependency */, + FF857FE3F2313C161CD368E20B78CEE6 /* PBXTargetDependency */, ); name = "react-native-background-timer"; productName = "react-native-background-timer"; @@ -27045,21 +26961,21 @@ }; 651511D7DA7F07F9FC9AA40A2E86270D /* React-RCTNetwork */ = { isa = PBXNativeTarget; - buildConfigurationList = 59895EA922DCBE154BBAE4A66CE3FC6F /* Build configuration list for PBXNativeTarget "React-RCTNetwork" */; + buildConfigurationList = 640FACD0903DE6E63DC32B7DE04B18D8 /* Build configuration list for PBXNativeTarget "React-RCTNetwork" */; buildPhases = ( - 984C8E2F9CB427774962B5D5A39BFDB4 /* Headers */, - 066DA302594018DDE82D9C06013CF433 /* Sources */, - F5B4F2569A623305018E44F0E870F184 /* Frameworks */, + B0FFF293797D4CAF2FD517AF52F90088 /* Headers */, + A8105730D0DB3000999F06BE724BA47C /* Sources */, + 006695842DDB3108A8C748E1092F8C0D /* Frameworks */, ); buildRules = ( ); dependencies = ( - 6B3EC17DE68B67E7992CB0D7B262D71E /* PBXTargetDependency */, - 43ECE30E8D4E874AF146B44B4B275D15 /* PBXTargetDependency */, - 26810AE7FE981900F70BD7964FAC5013 /* PBXTargetDependency */, - 968933C047F03FE6D4B0552C53BBA71E /* PBXTargetDependency */, - 62F2F15800E7D3A7938F0460AA150145 /* PBXTargetDependency */, - B743B5977BBB8D0234AD6E3218BC3280 /* PBXTargetDependency */, + 4CE75CC098F4FCAB3EFE964A82807CCA /* PBXTargetDependency */, + 49343C0ABBB84BDD681A6424BA08AF96 /* PBXTargetDependency */, + 4B51FE4A9647911EDCF763916E0AC771 /* PBXTargetDependency */, + DCBABE6BC7126C700E4BD8C8A36BDE91 /* PBXTargetDependency */, + ACA805EFB9251514CF84FB5B775F636A /* PBXTargetDependency */, + F889C4279B293D361C12C4154D3A7265 /* PBXTargetDependency */, ); name = "React-RCTNetwork"; productName = "React-RCTNetwork"; @@ -27077,7 +26993,7 @@ buildRules = ( ); dependencies = ( - 0EF8F91F8248B9EE6B7CFE0746816F4A /* PBXTargetDependency */, + B413729CEA1673B58C6748DC51EADCAA /* PBXTargetDependency */, ); name = RNBootSplash; productName = RNBootSplash; @@ -27086,21 +27002,21 @@ }; 680299219D3A48D42A648AF6706275A9 /* React-RCTSettings */ = { isa = PBXNativeTarget; - buildConfigurationList = DEC693597FD4C7125596D0B86C299A0B /* Build configuration list for PBXNativeTarget "React-RCTSettings" */; + buildConfigurationList = 4B8003F26C5940A7BB5438E0BA46AFA5 /* Build configuration list for PBXNativeTarget "React-RCTSettings" */; buildPhases = ( - 9FEB9B117DAEEF5122BD92A1808CEBCE /* Headers */, - 0FD50EA1E347276D2ABE00A0568C0CAF /* Sources */, - 36A4838F1353C315E6135E06D576B5B3 /* Frameworks */, + C967CC7DEAC09382407C7344ACA27D92 /* Headers */, + 255A810A48F513B06FBFBD32DBB7FC2A /* Sources */, + F0A3C66A2C7EDA029D16C4A4AB68569C /* Frameworks */, ); buildRules = ( ); dependencies = ( - 49BBA1C24F1F3DC42D10CDF3EF1FCF05 /* PBXTargetDependency */, - 228C43EFED492A9CDAE3BAC1A9122F35 /* PBXTargetDependency */, - 4618914ED41B387104F6ECA6AD76E506 /* PBXTargetDependency */, - CF4F16D520F54F4AD4180A4B8995DB01 /* PBXTargetDependency */, - 4F3A78AF0E846B0721CBD23B3A755A33 /* PBXTargetDependency */, - 906A7A53E1CE515CD93208173D84815E /* PBXTargetDependency */, + 25302D4383B434AFF4C786968D983BA8 /* PBXTargetDependency */, + E0EF2C265037660848C066BB7F2F76DA /* PBXTargetDependency */, + 9C0D9EBF7166C89130C52CDD3ED7A164 /* PBXTargetDependency */, + 85E46873FAF2D19E8DD511A0FCCF5EA2 /* PBXTargetDependency */, + AB6D88BAA67E24E27433C4B6BABAAB3C /* PBXTargetDependency */, + 4737B3F749FAEF9544B1A45D5EDDE203 /* PBXTargetDependency */, ); name = "React-RCTSettings"; productName = "React-RCTSettings"; @@ -27109,11 +27025,11 @@ }; 6A9637F1BC8154F777335A6420579C05 /* Flipper-Glog */ = { isa = PBXNativeTarget; - buildConfigurationList = D1CF8345119FD80695F191C0AC44D161 /* Build configuration list for PBXNativeTarget "Flipper-Glog" */; + buildConfigurationList = 2C3B9785949C9A805B95E2D572BD13CE /* Build configuration list for PBXNativeTarget "Flipper-Glog" */; buildPhases = ( - 627AB77CCF28FE754C1EFDB4F4B322DD /* Headers */, - 763F378568628874D9438F483AD8700C /* Sources */, - EF44AAFDF7D1EFE4BD2D0AEC87F54183 /* Frameworks */, + 46550996C1E13D083AEDCE0665011E41 /* Headers */, + 8870D76059204B27F8E900D3E137C8B5 /* Sources */, + 9ED6298079E7CFFF78E00188B7EB1EDB /* Frameworks */, ); buildRules = ( ); @@ -27135,8 +27051,8 @@ buildRules = ( ); dependencies = ( - 233F4B6AF76A4C0B88D44325A753C4E4 /* PBXTargetDependency */, - FF54C724D5DAF823BE3974E3D7184E02 /* PBXTargetDependency */, + 07D7E29A446004512B4352D99B01FDC0 /* PBXTargetDependency */, + CFCA88BC7D963190D9EECA7362DB524F /* PBXTargetDependency */, ); name = EXConstants; productName = EXConstants; @@ -27145,11 +27061,11 @@ }; 6D979AB5FDA2E858850D9903776A30B3 /* RNImageCropPicker-QBImagePicker */ = { isa = PBXNativeTarget; - buildConfigurationList = 2F4C94552F3812029C75BFE5A2952573 /* Build configuration list for PBXNativeTarget "RNImageCropPicker-QBImagePicker" */; + buildConfigurationList = C281795CF687E516AB7FD518D13CE0C0 /* Build configuration list for PBXNativeTarget "RNImageCropPicker-QBImagePicker" */; buildPhases = ( - 5387423A40B18CF901D255B022BC483A /* Sources */, - 5CB9AEADFD9920EE12A7AB31A87E6C9B /* Frameworks */, - CE184DB926BB1665815AA7E15DE3C0CE /* Resources */, + CCDA4088F3A8CF8F74DECA4D6531F9F8 /* Sources */, + 6143D9418B82C41B09B2A4A980F3185D /* Frameworks */, + 9B3E75B881362E2A58FEFB52503BD0C6 /* Resources */, ); buildRules = ( ); @@ -27162,19 +27078,19 @@ }; 6FE9147F8AAA4DE676C190F680F47AE2 /* React-RCTLinking */ = { isa = PBXNativeTarget; - buildConfigurationList = D452D506E296BE33521B74FE2AA33AE0 /* Build configuration list for PBXNativeTarget "React-RCTLinking" */; + buildConfigurationList = 944C797A3A23FB054C13E431228898BC /* Build configuration list for PBXNativeTarget "React-RCTLinking" */; buildPhases = ( - 93B10C85C1E32E3902F2A5C804418F05 /* Headers */, - 8E200C66CC7D7B4EBFFEEFF1D3BFE5CD /* Sources */, - 9C947A33C1672CF907F182ED96F234B7 /* Frameworks */, + 0D8C18E6E39D08B699298AF070D413D0 /* Headers */, + BF1A0EE8AC07196C49EE9F5D9F8270E6 /* Sources */, + BDBF9123E275D79D72830529DDBD0188 /* Frameworks */, ); buildRules = ( ); dependencies = ( - B8D1113F6E3B41B23054D850387FCDA7 /* PBXTargetDependency */, - 8F75994A9B48FF4313EFDDEDFF4DFDC8 /* PBXTargetDependency */, - 7E7493F2C7E60DAA7E404074ADA51E25 /* PBXTargetDependency */, - 7E0952C971CA5C6D9F3DE7941056AEA2 /* PBXTargetDependency */, + 6B06ECC7876149BA3512BA4ACE1CD3DA /* PBXTargetDependency */, + C9FA1D6FF5C4C178FB58FCF68286CAF6 /* PBXTargetDependency */, + 98AD7116A01981612879A1A15439D6BB /* PBXTargetDependency */, + 019562B587B0037CC462463E56B4EA3C /* PBXTargetDependency */, ); name = "React-RCTLinking"; productName = "React-RCTLinking"; @@ -27209,8 +27125,8 @@ buildRules = ( ); dependencies = ( - 1EDD465F1241ABC3EBA5542C93D21E8B /* PBXTargetDependency */, - 025EB00F38CC6565652CD950D98BFF20 /* PBXTargetDependency */, + F19B1755F4FBDE6CC1DE7EDB3FE6DF58 /* PBXTargetDependency */, + 8E103A054133D4BFB47642642C20AA73 /* PBXTargetDependency */, ); name = "react-native-mmkv-storage"; productName = "react-native-mmkv-storage"; @@ -27219,11 +27135,11 @@ }; 7A020DAB6F3F0BA0A6D9946E84B38B7F /* React-Core-AccessibilityResources */ = { isa = PBXNativeTarget; - buildConfigurationList = B71DBA55DEBBF3EB313EF61465FA7876 /* Build configuration list for PBXNativeTarget "React-Core-AccessibilityResources" */; + buildConfigurationList = 346B49483688D09E03256AD8F720026D /* Build configuration list for PBXNativeTarget "React-Core-AccessibilityResources" */; buildPhases = ( - 5307C0CBEB3F5BD0F31A1E948D6ED430 /* Sources */, - C733EB8292891A1E95A574F173849A17 /* Frameworks */, - 00E0BDC305BAB9E57DA2B8EE7636DFDB /* Resources */, + 3529B297AF64640DD804A604FCDB430C /* Sources */, + D9BEE04BFBA956F9D454E2977DE35419 /* Frameworks */, + 967FEA376A7A04FD0BF954B155699393 /* Resources */, ); buildRules = ( ); @@ -27236,25 +27152,25 @@ }; 7ACAA9BE580DD31A5CB9D97C45D9492D /* React-Core */ = { isa = PBXNativeTarget; - buildConfigurationList = 281F52B0B0084101E39C44BCCBF86F4C /* Build configuration list for PBXNativeTarget "React-Core" */; + buildConfigurationList = 7DC0AC97621E3FA152EE5DCE9418E3C7 /* Build configuration list for PBXNativeTarget "React-Core" */; buildPhases = ( - 51F02550DA763E00DDB5989C5514BC21 /* Headers */, - 6FA161C4BC7EA036AD68A9EB649A5CB8 /* Sources */, - 6F4D91982CA29811352BD9AA9D80D801 /* Frameworks */, + 2B6F636DB323134E19FE25040E961243 /* Headers */, + 5DAA7F81D13053D5BB85688189545016 /* Sources */, + E57D487337DEAFB85E2A27E122468E20 /* Frameworks */, ); buildRules = ( ); dependencies = ( - 5C3F8F56DD46C2B45557A8625B80C45F /* PBXTargetDependency */, - 476452B5D3C6A6AB7EDE7CF2794BBD4B /* PBXTargetDependency */, - D97ACAA025D2C5C231BEFE0FC7E9CCB1 /* PBXTargetDependency */, - 3B3B0BDE69FA39CF9263C37434C38712 /* PBXTargetDependency */, - FE1B8308EA7E8F5CDF80BF1A55D79BEB /* PBXTargetDependency */, - BA8813BC421F60B77AF05705A913477A /* PBXTargetDependency */, - 38C7C6B268EA1720386DB673917D25A3 /* PBXTargetDependency */, - B40CFE38A816F2C52C3380F4E4706B6C /* PBXTargetDependency */, - 50F3131390BB5F621FFECF4DF1B1AAD6 /* PBXTargetDependency */, - ACA912C95F37F70FF9AE31C858B4CC3A /* PBXTargetDependency */, + F7A9A868466F2E48C110D8BE757E60EC /* PBXTargetDependency */, + 0D5AB5C231DE1DFC943B539207D4C5CD /* PBXTargetDependency */, + 4F1BE41868A7DB6C85A4EBE7A88DC54E /* PBXTargetDependency */, + 6FE0E8A0AFB9B824C54DD047628900EF /* PBXTargetDependency */, + 86181F0FFA02856D9001E20C06BCFBE4 /* PBXTargetDependency */, + AE0EBEC0883040372C7D48205FD67F3C /* PBXTargetDependency */, + 1147DD07007E0644B91795215956B445 /* PBXTargetDependency */, + FEF7FD52615B1BE35DDB04F5DDECAFC7 /* PBXTargetDependency */, + 72EAA85A995CD1809AB8FE0497CD7C26 /* PBXTargetDependency */, + 52536D2E64A728C8C409E2586BCB58FC /* PBXTargetDependency */, ); name = "React-Core"; productName = "React-Core"; @@ -27272,7 +27188,7 @@ buildRules = ( ); dependencies = ( - 8C4D501247F4B7496B1DAD1225FD640E /* PBXTargetDependency */, + 8EDFADC948AC9F8B992479C7A4080E20 /* PBXTargetDependency */, ); name = KeyCommands; productName = KeyCommands; @@ -27290,7 +27206,7 @@ buildRules = ( ); dependencies = ( - 39D51BFEB1F2CA655F911065EA219ADB /* PBXTargetDependency */, + 053E488E942FE4A59F8BC3820552DC7F /* PBXTargetDependency */, ); name = RNDeviceInfo; productName = RNDeviceInfo; @@ -27308,8 +27224,8 @@ buildRules = ( ); dependencies = ( - 6E17E73F673B3B75DCBA5BDB87322635 /* PBXTargetDependency */, - 8231A090A1C84960D0DE6BC8A362EDF9 /* PBXTargetDependency */, + 269FF221F129C10512BC9EB754B18F91 /* PBXTargetDependency */, + 9D46B07BD91B4D5557444DD2BF9BCB3D /* PBXTargetDependency */, ); name = EXFileSystem; productName = EXFileSystem; @@ -27327,8 +27243,8 @@ buildRules = ( ); dependencies = ( - 62FC2AEE1DD4B02C3FB0860B22EEF5AD /* PBXTargetDependency */, - 9D816FE423E6F3FA46EB8E43C8D17599 /* PBXTargetDependency */, + 26E98605AA96F6CB931657F97799535B /* PBXTargetDependency */, + 1B4A104F9DE8F14E73C061EAD7273284 /* PBXTargetDependency */, ); name = EXLocalAuthentication; productName = EXLocalAuthentication; @@ -27337,18 +27253,18 @@ }; 87803597EB3F20FC46472B85392EC4FD /* FirebaseInstallations */ = { isa = PBXNativeTarget; - buildConfigurationList = E5A33DD391E77918EDE64753B57084F4 /* Build configuration list for PBXNativeTarget "FirebaseInstallations" */; + buildConfigurationList = 859831A47FD296170A6BB43594F9DDB6 /* Build configuration list for PBXNativeTarget "FirebaseInstallations" */; buildPhases = ( - 069574742FF9F45911ACA04BC488AC48 /* Headers */, - 01D752F3625FCDBCE657487CEBFB4116 /* Sources */, - 0615D9ED43AF53DF22ADA10E76905AAF /* Frameworks */, + A6F7D0E21A6EE437E9E1BACC0C533126 /* Headers */, + 75192C2995890A20B9D929626A6517E6 /* Sources */, + C2D8F7262835A02B9952069078694176 /* Frameworks */, ); buildRules = ( ); dependencies = ( - C111484A31AF30756B15B5C1D6E38F47 /* PBXTargetDependency */, - D5585E08A85012426A2ADE6A7F273D59 /* PBXTargetDependency */, - 6C997F4411A1CC5F8A7DD356B106F09C /* PBXTargetDependency */, + DD9A642DC1E6265563C1478BFEDA9F6D /* PBXTargetDependency */, + 2E8110A70A3F0E65C3F88683EFF1F907 /* PBXTargetDependency */, + B2C52B4862A8E95C471C9056D773CDC6 /* PBXTargetDependency */, ); name = FirebaseInstallations; productName = FirebaseInstallations; @@ -27366,9 +27282,9 @@ buildRules = ( ); dependencies = ( - A26B3133C3B5F2C2BCEBD8B4077EE092 /* PBXTargetDependency */, - 849AF2A2313D1CEC3439F96A1A6C46C5 /* PBXTargetDependency */, - C6862F10F277829C8164950C6276A665 /* PBXTargetDependency */, + 4C27202A1800EB9345FD2360E32A85BB /* PBXTargetDependency */, + EDD4FE3898D28B829FBA48F501200EB5 /* PBXTargetDependency */, + BF1DA96AB40AF890337966492C627BBB /* PBXTargetDependency */, ); name = UMReactNativeAdapter; productName = UMReactNativeAdapter; @@ -27386,7 +27302,7 @@ buildRules = ( ); dependencies = ( - 6333A17B6B0F0003395F0131FB5B1A82 /* PBXTargetDependency */, + 62DC3E1DDC86A24226D8CC49D627874D /* PBXTargetDependency */, ); name = RNCAsyncStorage; productName = RNCAsyncStorage; @@ -27404,7 +27320,7 @@ buildRules = ( ); dependencies = ( - E09BFAD98EA4391CBDE56C6843DFDCC9 /* PBXTargetDependency */, + EC75D18C366CC6F8D12889A1AE761EF9 /* PBXTargetDependency */, ); name = "react-native-webview"; productName = "react-native-webview"; @@ -27413,16 +27329,16 @@ }; 8D7F5D5DD528D21A72DC87ADA5B12E2D /* GoogleUtilities */ = { isa = PBXNativeTarget; - buildConfigurationList = 2005FB6EE6F84EB804033F7CB86444C6 /* Build configuration list for PBXNativeTarget "GoogleUtilities" */; + buildConfigurationList = A915A69167C37698452EC5468954CB90 /* Build configuration list for PBXNativeTarget "GoogleUtilities" */; buildPhases = ( - E98C3C15791D4116304B6BED0BED1887 /* Headers */, - C7242F219CF42105F543D0FB645E7367 /* Sources */, - A821EBF7BEF1209B095AFE0F7D01AF9F /* Frameworks */, + FA2E777907BBA73DE6D534B2476CCE0D /* Headers */, + 929007CA0D3BA22C28AB6EBE63F6218F /* Sources */, + BA66C14E60DA9F5EA13DB34D82C7BC18 /* Frameworks */, ); buildRules = ( ); dependencies = ( - 3ADA8FE6DE16281427EFE4C0E3D14BF7 /* PBXTargetDependency */, + 5F3014C553AF089B73305D8C7888E07D /* PBXTargetDependency */, ); name = GoogleUtilities; productName = GoogleUtilities; @@ -27440,7 +27356,7 @@ buildRules = ( ); dependencies = ( - 7885989121D533CD57B1F9C41C59F3A8 /* PBXTargetDependency */, + F67DA06CD86EAF23B6A7C4FC5034F879 /* PBXTargetDependency */, ); name = ReactNativeART; productName = ReactNativeART; @@ -27449,17 +27365,17 @@ }; 90D0DE2F3348233618414728C35311CA /* RNFBApp */ = { isa = PBXNativeTarget; - buildConfigurationList = A0FE4F9D80588E3F4E78B04C6AC11A6C /* Build configuration list for PBXNativeTarget "RNFBApp" */; + buildConfigurationList = AF664AAB6835F1C74B146572127821E1 /* Build configuration list for PBXNativeTarget "RNFBApp" */; buildPhases = ( - 8CDEA51D5EE9A846984232B49749C1C7 /* Headers */, - 14B03CEF51D9346A3693784B0048D10A /* Sources */, - 2697CAACE81DB3F436C2C2696C976C23 /* Frameworks */, + E8F071568F1EF17EB525F005F985B1DE /* Headers */, + 780410FD00867D3258C76D22EFF46C3B /* Sources */, + B60EADEDBBA33813FB9235DA07B6EA98 /* Frameworks */, ); buildRules = ( ); dependencies = ( - 24EF74C9D8E552EB2B6B90A08AC55EE5 /* PBXTargetDependency */, - AE883998BB406E95B0773110F04B4FEC /* PBXTargetDependency */, + F29EFF197A5298CB145014E6D66EFB96 /* PBXTargetDependency */, + FA3AC0C6AC938E248B5720E4487AF355 /* PBXTargetDependency */, ); name = RNFBApp; productName = RNFBApp; @@ -27477,7 +27393,7 @@ buildRules = ( ); dependencies = ( - 9B857544C3B7942F3669F09280978200 /* PBXTargetDependency */, + 2A3DC5BC297192A5B571AF856EFFAE62 /* PBXTargetDependency */, ); name = MMKV; productName = MMKV; @@ -27486,21 +27402,21 @@ }; 938CCE22F6C4094B3FB6CF1478579E4B /* React-RCTAnimation */ = { isa = PBXNativeTarget; - buildConfigurationList = 888653926A5CE70CA33F8C57501BF560 /* Build configuration list for PBXNativeTarget "React-RCTAnimation" */; + buildConfigurationList = 1427F6B677A255CD9DA2730AF32BCC25 /* Build configuration list for PBXNativeTarget "React-RCTAnimation" */; buildPhases = ( - AA6CFE5CF07A817EAC6250C517B73F33 /* Headers */, - AEC588E7FA59437E1592077629529090 /* Sources */, - 9019351B2013DBE70FFC962917EE6E8D /* Frameworks */, + 7C8E991D0E12C4B35DFC868CE4018762 /* Headers */, + 906AAFAA85DCD302DF87087F45134F0C /* Sources */, + C5E8BB4C49A6823A13674CD9E49D3F38 /* Frameworks */, ); buildRules = ( ); dependencies = ( - E7EFDBC0898C890558518B95EE67E0BB /* PBXTargetDependency */, - 62A5E3D98DB331B25E548080FC63B5D3 /* PBXTargetDependency */, - 345E136290B425153C49D906601045E2 /* PBXTargetDependency */, - 178A4402A1BF0155CE79E7E874FB4F23 /* PBXTargetDependency */, - DACB9BCB766A0003CB65AAC6C611480A /* PBXTargetDependency */, - DE4074508043E17EF1763B5E07463CEF /* PBXTargetDependency */, + FDE9BCF1C534C5495EED20C5C04CFCB4 /* PBXTargetDependency */, + 91E800AB37203183403DD22106A4EA5C /* PBXTargetDependency */, + C291DCCA11B204B2E6F333C8D099D631 /* PBXTargetDependency */, + D98A6A1E4FA227CA838A60C32C9E6CD7 /* PBXTargetDependency */, + 02BC437E9E7B80131ABEB23DB455DC47 /* PBXTargetDependency */, + 0D4CEC8D176B024C35D2D449F72F9FC7 /* PBXTargetDependency */, ); name = "React-RCTAnimation"; productName = "React-RCTAnimation"; @@ -27509,21 +27425,21 @@ }; 95D98F901D07557EF7CA38D3F03832C5 /* React-RCTBlob */ = { isa = PBXNativeTarget; - buildConfigurationList = 978D94305E472E7DC1EA220E5F9EC3AD /* Build configuration list for PBXNativeTarget "React-RCTBlob" */; + buildConfigurationList = 390AADB33CCDD8B8BB27C3827914CEA1 /* Build configuration list for PBXNativeTarget "React-RCTBlob" */; buildPhases = ( - DB41F3E190D38AA30843DAAC5E46E7F8 /* Headers */, - 66A76100C73E978C5E5AC9393A7FA0E3 /* Sources */, - 2AC53D729A9E0D2A2AC583B626B028BE /* Frameworks */, + 3E53F806603001413F5414CCED687D9A /* Headers */, + 74DD5E96928592FF5FD6D0628F26ABF0 /* Sources */, + 0FFE85F5E2A752756E2F4DD3B04BC715 /* Frameworks */, ); buildRules = ( ); dependencies = ( - 3605E49C23234E494A0738C42AD0CC92 /* PBXTargetDependency */, - CCD5F3AF1992542961CBBAEB0A4FEC8C /* PBXTargetDependency */, - 06DFE146429667D97A66AD3ED6D41500 /* PBXTargetDependency */, - A4B7F49C2B83FC787F6F4B8D56885280 /* PBXTargetDependency */, - 61AB096F706422DB2BEC5335A3B7A793 /* PBXTargetDependency */, - C9ABBD2F077D54F392C4AAE3CEAA8278 /* PBXTargetDependency */, + F3D1B92D1682D74F6003BDCB39B53AE8 /* PBXTargetDependency */, + EC3D6393805DF5A03D8D0F135BAE4ADA /* PBXTargetDependency */, + 8756B832CB2FD3F8C8A22CEEEB4270AD /* PBXTargetDependency */, + 56B9E3A020A4042DD67E701E152DC862 /* PBXTargetDependency */, + 443481DCF544FD7E6217EBF040258FF9 /* PBXTargetDependency */, + 720D564EA566611A1B02D817F6CD9451 /* PBXTargetDependency */, ); name = "React-RCTBlob"; productName = "React-RCTBlob"; @@ -27541,7 +27457,7 @@ buildRules = ( ); dependencies = ( - 27665402D20F8AF5A90379E3C8695C36 /* PBXTargetDependency */, + 2035793A995DA76DBA7305E00E725494 /* PBXTargetDependency */, ); name = RNVectorIcons; productName = RNVectorIcons; @@ -27559,11 +27475,11 @@ buildRules = ( ); dependencies = ( - C72ACBDFB1B568A775646C152D39BC85 /* PBXTargetDependency */, - A1063D6464E40C5A91C32D7F123CAD49 /* PBXTargetDependency */, - DEBD5B8F7341D5ED0871A8FD2560A83C /* PBXTargetDependency */, - 8CA09154EC7DEEA3770002D19672E966 /* PBXTargetDependency */, - F7E65922D5B01DBBEE6341C64B5CA0D4 /* PBXTargetDependency */, + 708D5443C7D8BBFE730573295ACCDC76 /* PBXTargetDependency */, + 80B0FF5A6B3872028DC4CD407B64C360 /* PBXTargetDependency */, + 030B4457FACCB0EB84AFD4322C24B36D /* PBXTargetDependency */, + BC34C65DFFB8DAE64DF486CAA29B4C04 /* PBXTargetDependency */, + B819E28113FD798FB668F19BF480E3FA /* PBXTargetDependency */, ); name = FlipperKit; productName = FlipperKit; @@ -27572,99 +27488,98 @@ }; 9C801345ED2C78BD1674053E7BE5D6ED /* Pods-ShareRocketChatRN */ = { isa = PBXNativeTarget; - buildConfigurationList = 4471CF8AD961063B9E3E74ABBFA30851 /* Build configuration list for PBXNativeTarget "Pods-ShareRocketChatRN" */; + buildConfigurationList = FAD47D216ABC909713FE579144283829 /* Build configuration list for PBXNativeTarget "Pods-ShareRocketChatRN" */; buildPhases = ( - 60ED3AC0A888A156B7FB3E755AF62BC7 /* Headers */, - 32D839B0EE02CDAB87BDF6A982BD5803 /* Sources */, - 43C372FEA4081584E0F45A7025F2B6DC /* Frameworks */, + C7532EA54CCA68E77A1C754CE72B6777 /* Headers */, + B38747D1EC886DF621109525BB16A023 /* Sources */, + 840FD44EE431DB803C7E23D6896BE192 /* Frameworks */, ); buildRules = ( ); dependencies = ( - 69D555C0A127D00EE886D42D69769298 /* PBXTargetDependency */, - 2B3E38409806B4A02A6CDABF29DAD96A /* PBXTargetDependency */, - FADD56EBD99D4DFD542623085832DCA8 /* PBXTargetDependency */, - 5627AB4EA6F92CA91EB38B4EDC5528C3 /* PBXTargetDependency */, - B7D1097721F57BE6107B7BF11CF18B05 /* PBXTargetDependency */, - F3046CD08CEF51D300934FA4B2672ED8 /* PBXTargetDependency */, - 9905078A85903ED82426CAD5D77177A7 /* PBXTargetDependency */, - A328CFB5DB03E1684E384AC8BED718BA /* PBXTargetDependency */, - 871E0E67DB71EA995D1707AA293CF278 /* PBXTargetDependency */, - 7EB89EA352FE82AAFCA185627F0ABDBF /* PBXTargetDependency */, - 8E0590D8E71DBCC4E2AD36424CD78192 /* PBXTargetDependency */, - 34BBF6BBCEBE044687888829547F0AEF /* PBXTargetDependency */, - 77D2610AE4C17B1805AF2C4DB152132B /* PBXTargetDependency */, - D85BDC6D936CF55841DF5C81B2B60C77 /* PBXTargetDependency */, - 836CF11C0A0E6126D44AD3CC41CEF5D2 /* PBXTargetDependency */, - 21A97AF808D8CEF07539CB56F69061BA /* PBXTargetDependency */, - 0AB4CD5F31E18682F781F04D8EA109EA /* PBXTargetDependency */, - 90FE787CF74C003A7719751184FF8A6E /* PBXTargetDependency */, - 618EFDD51A669D93D418F68C6811E158 /* PBXTargetDependency */, - 984EB99D178FF95511F246C464FC06F3 /* PBXTargetDependency */, - A2F74EA066EAECE59AF64DCAC0257122 /* PBXTargetDependency */, - 4EAA4C5EFF92D824A94BC379FF2ECB95 /* PBXTargetDependency */, - 9B5D2D8B41704238FFE90A8F83B1B5B8 /* PBXTargetDependency */, - D8D4E49F38F55FAEC2BED075D38454B1 /* PBXTargetDependency */, - 58B547A7BBCB0ADFD2926159952724B4 /* PBXTargetDependency */, - E3B67854969828043CDBE1528792B8A8 /* PBXTargetDependency */, - 45F37FA76C505C86479B9A41BFFE9B05 /* PBXTargetDependency */, - F738550C880734F61EB71E7C774CA452 /* PBXTargetDependency */, - B689EBF2FD16E9B47AF97B58786C5FB5 /* PBXTargetDependency */, - C76D29F02DF875CFB121793CD19ADEB0 /* PBXTargetDependency */, - DAA05EC511AB018819F223443C706A26 /* PBXTargetDependency */, - FE3A81D148616726B0E80E9327E07436 /* PBXTargetDependency */, - 88B5EF8E833AAD84F5743F9DE2AA252D /* PBXTargetDependency */, - B4562B65F824AAF64B191A7D6EEC98D7 /* PBXTargetDependency */, - B125589E816529518AFA258FADE94E8B /* PBXTargetDependency */, - 7A9DCE48D7DA8223D43DCEF6E864F113 /* PBXTargetDependency */, - DDEABB0401C04ADB9F2D65B87953DA7B /* PBXTargetDependency */, - D68973BD5746B0FB4EE12F9AF3B82904 /* PBXTargetDependency */, - D1E22351EC7043ABABA3CD6FD0EACC6D /* PBXTargetDependency */, - E315B64275339E371218570FD7059EAD /* PBXTargetDependency */, - 4D2305ABF42C88EF227B676124986BB2 /* PBXTargetDependency */, - D73827645DD9EB11344A582A2EB04349 /* PBXTargetDependency */, - 34C27099ADA4FF9D0636E0F0F84F1BD1 /* PBXTargetDependency */, - 1DE20BE8FFFCFD1167564C06EF92FBA1 /* PBXTargetDependency */, - B5945302AD630CFD3D6D65EAF9579C7B /* PBXTargetDependency */, - 3FEDF2FAF167273B1C4A91B340D00172 /* PBXTargetDependency */, - 0EEF2A11C0F42FCFA9735015F5688E81 /* PBXTargetDependency */, - DF44F0541DEB24228B63E099789AE037 /* PBXTargetDependency */, - 311D484A4AECBE821198A5EE56A1DB3A /* PBXTargetDependency */, - DC0E2745382924E5FB107EF04E38E1EE /* PBXTargetDependency */, - 574DE9429C7187EF0B05ADCD559B20C8 /* PBXTargetDependency */, - BC2430CB17EBA3451AFD31FEE7F54327 /* PBXTargetDependency */, - CB9716E9BE1974D35C0DC919BCF004B7 /* PBXTargetDependency */, - 7FAAC80377136FEDDC22A30937C15A9E /* PBXTargetDependency */, - C2E10A05FBE64171DD847E236B3313ED /* PBXTargetDependency */, - 1545CE8EB74387101CD4C2498D660E74 /* PBXTargetDependency */, - 0C2FC8A83B1D6592072350041DED315C /* PBXTargetDependency */, - C0305B01A5EC73596261BCCA392550B7 /* PBXTargetDependency */, - 783C267F3503EEE42D04E9B7E4C6ADCD /* PBXTargetDependency */, - 0E84FC5A2452B62BD312D050C773CFA2 /* PBXTargetDependency */, - 18126A8AB9C541342708A01E796EE315 /* PBXTargetDependency */, - 2E02841DCBD38C080A303DD0A6BCB1AF /* PBXTargetDependency */, - D7D20D2346C622DD460C218ED1FB3C72 /* PBXTargetDependency */, - 32CBFA38A826E717DA5D5B86EA65052F /* PBXTargetDependency */, - C42636151EB376135BA66ACDB221B9CC /* PBXTargetDependency */, - 3B998AD2EDE6E7C68EACE965C0500BB6 /* PBXTargetDependency */, - D51387CF5FFD54BBBA00A2844E810CAD /* PBXTargetDependency */, - DF8C2B48F6DCBEDF9F5398726FF79A7A /* PBXTargetDependency */, - A114428CAC1D390A88DB0B48E03F7734 /* PBXTargetDependency */, - 836889954C347AE80E4498A74B7CA4AA /* PBXTargetDependency */, - 4CB08761A2E77244704DF82A8A29E6B6 /* PBXTargetDependency */, - 5D3D3552C81FDA0E9BF7C80A1A915AB7 /* PBXTargetDependency */, - B09E659B57C162D3DAF44DCBB75F7D91 /* PBXTargetDependency */, - 1C8F3BE779D977F5810313440428BF73 /* PBXTargetDependency */, - 7D4F4E50A79C45DB7ECB922EAC588D64 /* PBXTargetDependency */, - 2CEA883E2EB8496B8AA5B5EECF6E14C0 /* PBXTargetDependency */, - 325BD19861F15AED8C8FC0F464514631 /* PBXTargetDependency */, - 4A90C854B9445A9AE74F38675184422D /* PBXTargetDependency */, - 9425BBD51483AA1FBE3CC74DC3765D7C /* PBXTargetDependency */, - 8A89E00281EA380A24AC3EFD148A6682 /* PBXTargetDependency */, - 1DA2CFEB1E06DAD9EE002CD691CA6573 /* PBXTargetDependency */, - EC250BC04A27B1A63B94E350CCED12D7 /* PBXTargetDependency */, - 629FE70562527926A5D1A8EDB64B63E0 /* PBXTargetDependency */, - B443D878EC07E5DA13C05A67103822C6 /* PBXTargetDependency */, + 90F87B77D53854D28C62A15FAD9842C1 /* PBXTargetDependency */, + E0DA99C9A8B52AE9334960EC2FFAAA82 /* PBXTargetDependency */, + DE78ECE5B979912F7CA59162399661CC /* PBXTargetDependency */, + F2A676205CD8F59FD1A932E779852C21 /* PBXTargetDependency */, + 343A5BEA2CC6C64D41E8491E5F6E45E7 /* PBXTargetDependency */, + AA689E7ED5560DCA1FF9C6BDBD89C90E /* PBXTargetDependency */, + 56697F34BC36B5BE8FFD23892CCB03CD /* PBXTargetDependency */, + 4BBBC862F86F9726FF87B44423295427 /* PBXTargetDependency */, + C67DEA386F71932F2DFF457EA122E9BD /* PBXTargetDependency */, + 0B0A34721D842E0FBF4E670733A241DC /* PBXTargetDependency */, + 94919F98F58F5A8C2D95B2B630EAA035 /* PBXTargetDependency */, + 04600BC094504AD8E29E92C38F29E820 /* PBXTargetDependency */, + D54A6847423EDF9C6199FBCBF69BAA64 /* PBXTargetDependency */, + 2E03E8BF4F784BA8CA0DD691E5AF7641 /* PBXTargetDependency */, + 0C8DD3A93F5F76D025BF358368C0BF49 /* PBXTargetDependency */, + 6B84C8782FB60373D3D864A629E46FFA /* PBXTargetDependency */, + 2DD76B347189E8CEEE5200FA33775B79 /* PBXTargetDependency */, + FB1C44282D2708A15234E7897CE04F9B /* PBXTargetDependency */, + 8924D497A4ED982ECDE7869622F1C187 /* PBXTargetDependency */, + 446EE3B3B1AEFF4EF16121CF6B0A54F0 /* PBXTargetDependency */, + 967D6DBF34E63D62ECB71CC39152B08A /* PBXTargetDependency */, + AEDA699E93884FF62E64BC21710A422E /* PBXTargetDependency */, + BB0E95216640506D5085A396CBE32DCD /* PBXTargetDependency */, + DDD19FCA77374E6EF7A3357A97874FA4 /* PBXTargetDependency */, + AC49169AF2691DDA4D46181A2D030987 /* PBXTargetDependency */, + B3D4389D570F739C0ED2E293BBE12606 /* PBXTargetDependency */, + 015FCF9666A032458598F3CBDBD10FAB /* PBXTargetDependency */, + 21FC7ABABD9411035FBAC45EAFAC4CAF /* PBXTargetDependency */, + F513E524C7611EAFAE29CF8A81597AE4 /* PBXTargetDependency */, + 4157FE47723A48A921BD4B69D30B57FF /* PBXTargetDependency */, + 6DD2E1E4538722E6E39BA3E8A6E26E83 /* PBXTargetDependency */, + C02576B2C5B028C662A7365C533F14D0 /* PBXTargetDependency */, + 0ED915B2FE7534F3883F60DBF41E6C84 /* PBXTargetDependency */, + 8FDA3D0A87693F0BA1DC3A95140AB210 /* PBXTargetDependency */, + AF3C83C4EB5D4DC3F31C2E7BAA450A59 /* PBXTargetDependency */, + A881757E4DCB15D9AD232864D7D7C4E8 /* PBXTargetDependency */, + DE45069F074B19739AB25CB9B8269AA9 /* PBXTargetDependency */, + 9F3EE561750DD2D2FF53DC13799A10D9 /* PBXTargetDependency */, + 0CDCA0F585054493EAB1F5EE4055ADFD /* PBXTargetDependency */, + D2AFA2B9A59D476769413C44CA6B490C /* PBXTargetDependency */, + 3E5713169562C3CE3A564FD36149E1B6 /* PBXTargetDependency */, + C3CE6EDDE7ECE7F681ADF01BD83E4F9B /* PBXTargetDependency */, + 554BD2F9150C40BCB5EED10C3266DBE6 /* PBXTargetDependency */, + 73603E17910578E3301210004EC8E336 /* PBXTargetDependency */, + 52834150492F5E53C90E8926A5972F64 /* PBXTargetDependency */, + 7978920D018C3003B850AB10AB79333B /* PBXTargetDependency */, + 0A6D84DDA35BFB226AB0B16A4BE4D82E /* PBXTargetDependency */, + EF725B72D06517BA5CCE22FCBDA04635 /* PBXTargetDependency */, + 7F0483D8AD73969BA3B636BF6FBE5050 /* PBXTargetDependency */, + B30D9FF84836A79FDF8D7F424A4D7950 /* PBXTargetDependency */, + B567F9A058F030E5A68E90F9AC21DEC0 /* PBXTargetDependency */, + C606E467223400EE73D1BCE558CC9C6D /* PBXTargetDependency */, + 6D766D00A7476967E3F2C9576B67D27D /* PBXTargetDependency */, + 58895C123B710A059640ACBAD41D9980 /* PBXTargetDependency */, + DCB33EAEA8C33EE63E32C579CEB33842 /* PBXTargetDependency */, + 063CB16DF86E72D96DDCF574F31BE7D6 /* PBXTargetDependency */, + E657A9DEF85DC366E4C3937F7A11C4B5 /* PBXTargetDependency */, + 426D7918331F7DDFE233D4371140C735 /* PBXTargetDependency */, + 13CCA2A18C71EF77E6B203EDA8379EA0 /* PBXTargetDependency */, + A22A59AE61054CBE43FFA73C8B06B622 /* PBXTargetDependency */, + 4C1064148DE0E22E054B0BD383CC8611 /* PBXTargetDependency */, + 96CA6D22FD89EBB50AC3981362DADAC9 /* PBXTargetDependency */, + A1BFB4F8ED733B639FE878129301E133 /* PBXTargetDependency */, + CE4B3A59E23D4AA2F2C351D9D01787E9 /* PBXTargetDependency */, + 0A2AA3864D769AD3605D0B457497E5AB /* PBXTargetDependency */, + A7F65A0B0BB672AA725057E825D73F4D /* PBXTargetDependency */, + F5E71DE38FED035053E9F2578F6363E0 /* PBXTargetDependency */, + B773D4C2DD9CC8A4123FC8E3B2EA0E35 /* PBXTargetDependency */, + 2EA613849364AFA2EF05D5717D0C88D1 /* PBXTargetDependency */, + DC1BE316D88828CD2F624D2340433D99 /* PBXTargetDependency */, + 461139143EFCB7F499EE255982A32E79 /* PBXTargetDependency */, + 9EB066A3CE057715DB7C6E4C033FCA69 /* PBXTargetDependency */, + D060FC3D81778BE2E0D415DB884BC420 /* PBXTargetDependency */, + B60ECB0F2A8BCB1565C295E79AA4F86A /* PBXTargetDependency */, + FC18A9C23C6C53E88C535B5B28DBDFC1 /* PBXTargetDependency */, + 2D27FA5A19D2B433A0325FB31C5079EA /* PBXTargetDependency */, + A8DF580FEE56ACC30717DAF6C4009872 /* PBXTargetDependency */, + 12CCE9581CB423B1B9D2980BD6F6B1C0 /* PBXTargetDependency */, + 3ABA7A2A9F84003BF320420FD34B286E /* PBXTargetDependency */, + CD028F57B0B8E3640B8BA024212936A2 /* PBXTargetDependency */, + 025A4E04E14883DFF79328CAA11928F0 /* PBXTargetDependency */, + 44B047DE58CC2E0DF8D785B65428F051 /* PBXTargetDependency */, + 13C8F8ED9F5E9DDBEF8C5BBCC997FEEE /* PBXTargetDependency */, ); name = "Pods-ShareRocketChatRN"; productName = "Pods-ShareRocketChatRN"; @@ -27682,7 +27597,7 @@ buildRules = ( ); dependencies = ( - 1C0DF950D3CE1F50BEC4222EA2C285AC /* PBXTargetDependency */, + 56979C41D8B6052A900C84A0F9029DDF /* PBXTargetDependency */, ); name = EXWebBrowser; productName = EXWebBrowser; @@ -27700,7 +27615,7 @@ buildRules = ( ); dependencies = ( - 13646960B12AAD847DBAFADF0A468D3C /* PBXTargetDependency */, + 6FBD6CD449D3A6EEC7112AB48FE4FE59 /* PBXTargetDependency */, ); name = "rn-extensions-share"; productName = "rn-extensions-share"; @@ -27718,7 +27633,7 @@ buildRules = ( ); dependencies = ( - 8B21B104C4241BE3592151EE2AFE8CED /* PBXTargetDependency */, + ECBD639EE95544C0AE20660D7D782529 /* PBXTargetDependency */, ); name = "react-native-slider"; productName = "react-native-slider"; @@ -27727,11 +27642,11 @@ }; AC8AE887C706A43711D115E69B9D988A /* MMKVCore */ = { isa = PBXNativeTarget; - buildConfigurationList = F19D740CFF78BFA64B9E4484CA646557 /* Build configuration list for PBXNativeTarget "MMKVCore" */; + buildConfigurationList = DBA562C8714DA8419651A975C955BB6E /* Build configuration list for PBXNativeTarget "MMKVCore" */; buildPhases = ( - 29BA8B2C7623C5351C1C8EE6152D3634 /* Headers */, - 9869AABD974080C448DCE840823976FE /* Sources */, - 76EF700C7CE56E8F5B6D1C077D2FEF53 /* Frameworks */, + FFFBEB66AB6AE5A9E4B6280F88EB49EB /* Headers */, + 729E9556BEEAD28951984A7A5D018A52 /* Sources */, + 952499CC4C498603DA43FC81CB7DFB69 /* Frameworks */, ); buildRules = ( ); @@ -27753,7 +27668,7 @@ buildRules = ( ); dependencies = ( - B235A1628124F37A24887F6E53ABDAE7 /* PBXTargetDependency */, + 8CC857B3B10280649946C864675B4280 /* PBXTargetDependency */, ); name = "react-native-cookies"; productName = "react-native-cookies"; @@ -27771,7 +27686,7 @@ buildRules = ( ); dependencies = ( - 9E6D5EB9736C5FE8529CBDCB6958006A /* PBXTargetDependency */, + EC4DE89FDC624C50E813F5B3E7CED604 /* PBXTargetDependency */, ); name = RNLocalize; productName = RNLocalize; @@ -27780,20 +27695,20 @@ }; B6D39E083AE0FF45BA30D7CDF6198A03 /* Flipper-Folly */ = { isa = PBXNativeTarget; - buildConfigurationList = BC7F8E2AA591C192F73A2754053754BD /* Build configuration list for PBXNativeTarget "Flipper-Folly" */; + buildConfigurationList = DEA57B159A2DF27BB6AE201D959B8243 /* Build configuration list for PBXNativeTarget "Flipper-Folly" */; buildPhases = ( - 1E9C2DF63F8DD1D2DFE4FD76AC7384E7 /* Headers */, - 1862E471DF1A28889EF436357FE52D23 /* Sources */, - 25FE4B6AC8DFEABC185404F013EDF4A9 /* Frameworks */, + EE093840BBB0CE0DED32E8A87DECEED4 /* Headers */, + 30865794B2C32B6C28CD5B86C99272A4 /* Sources */, + 2B6FADC534900245E119443D5BA01E92 /* Frameworks */, ); buildRules = ( ); dependencies = ( - B69E088C9AD2EB9ED0B3B29B22C53E20 /* PBXTargetDependency */, - AB50C33D8845A3227D907A0F8FE0E847 /* PBXTargetDependency */, - E131BEB851C3E2348A5D6834F6B7A9EF /* PBXTargetDependency */, - E4D6AFFCD5BAAA44B1C7F444DE3CB88A /* PBXTargetDependency */, - BFF79C7C45409B15B744ACCD8DE68D7C /* PBXTargetDependency */, + 944D57259018AFD9F0F6AA1EF8C3CFD8 /* PBXTargetDependency */, + BEC6099D2240881EE45557D6EAA2E349 /* PBXTargetDependency */, + 7F46F67554BBEDBB3E6EA08F18207994 /* PBXTargetDependency */, + E93C2B3939CE9266757E0B2810C43583 /* PBXTargetDependency */, + CB376FECDADC0BC88DD975936468E194 /* PBXTargetDependency */, ); name = "Flipper-Folly"; productName = "Flipper-Folly"; @@ -27802,23 +27717,23 @@ }; B6D5DD49633DFF0657B8C3F08EB3ABA9 /* ReactCommon */ = { isa = PBXNativeTarget; - buildConfigurationList = E62AE5E60B73EFCCE2CF8FB52F16D64D /* Build configuration list for PBXNativeTarget "ReactCommon" */; + buildConfigurationList = A0A9EF7F22ABE3F13038D77CCCE9C8FA /* Build configuration list for PBXNativeTarget "ReactCommon" */; buildPhases = ( - 5121B954037E49863E1114ACF316B1E9 /* Headers */, - FE4389CCCC6664F2FF0795F8155778B3 /* Sources */, - C36D034E8BA7B4FF22CE4D6F94D604FC /* Frameworks */, + 65938A5BAE4E844A40E7F7DB059F50DB /* Headers */, + 061871EA97AA58C7114E3BC2D6F5BB7A /* Sources */, + 152B0A941A8CDEDE459680207A6C63B8 /* Frameworks */, ); buildRules = ( ); dependencies = ( - BB34106F59290DD57B273B7594375169 /* PBXTargetDependency */, - BCC42DB22DB9F828E4BCD13535A09546 /* PBXTargetDependency */, - CDF274EBAE3B49A7C14FC1D77B045D69 /* PBXTargetDependency */, - 0A1C848B756BA59CF4940A55BC43D1CD /* PBXTargetDependency */, - 2DDB3CB48851A1CF62C05ED464441CBF /* PBXTargetDependency */, - C50ECA261FDBEABE5E691520174EB43A /* PBXTargetDependency */, - 537E5420319C3BA21E7B75861789C1A4 /* PBXTargetDependency */, - 9FE03DE9F5E3B124AFBAF3CE18067012 /* PBXTargetDependency */, + 30C1BC3937F4201178EC4F21A8D0AADA /* PBXTargetDependency */, + 61CE27890EA2DC08E05FF5DB072FF465 /* PBXTargetDependency */, + F90C2744134E46F5CAA410892F0C34E1 /* PBXTargetDependency */, + A32BA90469D59908B84594174A7E75C2 /* PBXTargetDependency */, + AF4DA7028AFE10F668AAB2EEAC961DD3 /* PBXTargetDependency */, + 0C682DF65EA46B78FB15ACC0BCBC6114 /* PBXTargetDependency */, + 65C983D0C557276371AEF12841B3E146 /* PBXTargetDependency */, + 67FAF439F9D0429EF067876AA2E7D42F /* PBXTargetDependency */, ); name = ReactCommon; productName = ReactCommon; @@ -27836,7 +27751,7 @@ buildRules = ( ); dependencies = ( - 3AFDDE1ED80B0CFCC064C62576F26336 /* PBXTargetDependency */, + 8C340C685395737373B0A963FE77C121 /* PBXTargetDependency */, ); name = RNGestureHandler; productName = RNGestureHandler; @@ -27854,7 +27769,7 @@ buildRules = ( ); dependencies = ( - 9D0200E2B2272EE3D6C2508944090083 /* PBXTargetDependency */, + 04C22BB0AD40A046B8D61C9CD0D1CDAB /* PBXTargetDependency */, ); name = "react-native-cameraroll"; productName = "react-native-cameraroll"; @@ -27872,7 +27787,7 @@ buildRules = ( ); dependencies = ( - E0F0F21ADCAC508DB3916B4DB4D9A3D2 /* PBXTargetDependency */, + 2251C3A4CDF0E93CC3580DED717B9F5A /* PBXTargetDependency */, ); name = "react-native-safe-area-context"; productName = "react-native-safe-area-context"; @@ -27881,18 +27796,18 @@ }; BDD119F8782FABE2707D3D913EC3EDE5 /* RNFBAnalytics */ = { isa = PBXNativeTarget; - buildConfigurationList = F111719BAE4C0547C9E515A490C75B54 /* Build configuration list for PBXNativeTarget "RNFBAnalytics" */; + buildConfigurationList = EAF0E44C93D56471D42CE80D840353F9 /* Build configuration list for PBXNativeTarget "RNFBAnalytics" */; buildPhases = ( - DE70141E66ACDE79A002F15F926D6056 /* Headers */, - 0894B033947CB6AF5339C5E1D60BEC64 /* Sources */, - 18A314E525F481665908AACF3D55FDD0 /* Frameworks */, + 6AB7C443B0BFD02AC330C3E009FE6B7D /* Headers */, + 44097693E9A317E37B0F23EB8F681C46 /* Sources */, + 67F185E879935C088D67E9DC803ED1C1 /* Frameworks */, ); buildRules = ( ); dependencies = ( - D003CBE4F90D0EF3F1F52C349F9D97CF /* PBXTargetDependency */, - 126200BB0A7DB902A5E4583D7FA1C8AF /* PBXTargetDependency */, - D2BE04B275C9A180C5DC373BFF8AEA0E /* PBXTargetDependency */, + E1CCF296F5344E2B8CEC8B645C06A899 /* PBXTargetDependency */, + 30C038AB324AB6E13013416DE9641A8E /* PBXTargetDependency */, + A4056D5C358772C20014BFEE6811530D /* PBXTargetDependency */, ); name = RNFBAnalytics; productName = RNFBAnalytics; @@ -27901,22 +27816,22 @@ }; C3496D0495E700CF08A90C41EA8FA4BB /* FBReactNativeSpec */ = { isa = PBXNativeTarget; - buildConfigurationList = F81785C975EC4B13D41AD12DB0FD45F4 /* Build configuration list for PBXNativeTarget "FBReactNativeSpec" */; + buildConfigurationList = EB1FE341DEFAB479EDE837950E6B7E63 /* Build configuration list for PBXNativeTarget "FBReactNativeSpec" */; buildPhases = ( - 8CD73E24A416482310BBB269007E9E14 /* Headers */, - A42E9530A98E0D506CF859F67001A8D6 /* [CP-User] Generate Specs */, - C8935F11AC9EE2D5F5BB6D52AE2EB925 /* Sources */, - A4475EB91C5C44D2A349A2ECD6B17401 /* Frameworks */, + FDCCFD5A070A7340ECCA06187AF6F01D /* Headers */, + B7895BDE7F6A861397F89DDEA1106859 /* [CP-User] Generate Specs */, + 18B2B37FC50FAA146FA67D28EE194E55 /* Sources */, + C3BC4479247EE51A209DD9FEED7600C2 /* Frameworks */, ); buildRules = ( ); dependencies = ( - 7607AB3C9EC6B3A72C00D50CB3A821CE /* PBXTargetDependency */, - 8D7EE01FA93D2BBA756CAB08A3845403 /* PBXTargetDependency */, - F294E455EBF719EAAB955B19244E25B0 /* PBXTargetDependency */, - 0C5A32F38B6CE8A97EB60D21AE865E1C /* PBXTargetDependency */, - 49C3C7AEE2D1479D1EC24809CCED9687 /* PBXTargetDependency */, - A3380830A9E04BED95BEA0AC33DBDED2 /* PBXTargetDependency */, + 251962661D3772388441C5CBF0CE338A /* PBXTargetDependency */, + 77DB9A7F6CF836AA415A1D115C16C654 /* PBXTargetDependency */, + 58D24B4E51D0FFF286A9ED6D6B7B0468 /* PBXTargetDependency */, + 8A5F8E9B7297B254723A71A395EA4C17 /* PBXTargetDependency */, + 7F1A6AC92ED93CF2AF43A2EA763CE1F3 /* PBXTargetDependency */, + 97F1EA46CA6FD89EF9369A611AD78A19 /* PBXTargetDependency */, ); name = FBReactNativeSpec; productName = FBReactNativeSpec; @@ -27951,7 +27866,7 @@ buildRules = ( ); dependencies = ( - 89BBCAC7B66E9F858377D08C0C3F2D6C /* PBXTargetDependency */, + FF93D12B1783DCF1562C0D69B42A4827 /* PBXTargetDependency */, ); name = "react-native-notifications"; productName = "react-native-notifications"; @@ -27969,7 +27884,7 @@ buildRules = ( ); dependencies = ( - 17ACD7CA5C5454197BEF004B20B06C45 /* PBXTargetDependency */, + 7E717A7C24FF3197BCF402E96729D552 /* PBXTargetDependency */, ); name = RNCPicker; productName = RNCPicker; @@ -27978,11 +27893,11 @@ }; D0EFEFB685D97280256C559792236873 /* glog */ = { isa = PBXNativeTarget; - buildConfigurationList = A2C87C07AF568B319F6753B5DE9C2B83 /* Build configuration list for PBXNativeTarget "glog" */; + buildConfigurationList = A9CE796CCDEF81FEE498CEE1511B8BE9 /* Build configuration list for PBXNativeTarget "glog" */; buildPhases = ( - 52544AF49BD4CF6119A6BDB68C1440BB /* Headers */, - F3D28482F2CED5839FB231BDE0E94C8C /* Sources */, - 772FAED248537EF7AAB5D93B26AC1D88 /* Frameworks */, + BD32EF00FBCFF4D2ED0870D852ACF21C /* Headers */, + C414EF949EEAEBBD62C88CC2F876AB66 /* Sources */, + 2184262B94CAAFAF89B3BAAEC507BC04 /* Frameworks */, ); buildRules = ( ); @@ -28004,7 +27919,7 @@ buildRules = ( ); dependencies = ( - E4F73A52909E705812C5CC0689A0E9B1 /* PBXTargetDependency */, + F429B4467551D1E8C732C3F72FFA592C /* PBXTargetDependency */, ); name = "react-native-document-picker"; productName = "react-native-document-picker"; @@ -28013,19 +27928,19 @@ }; D20469A9A1E5CFB26045EAEBE3F88E5E /* RCTTypeSafety */ = { isa = PBXNativeTarget; - buildConfigurationList = 9C2CA449B96F068665DD62E672E64BED /* Build configuration list for PBXNativeTarget "RCTTypeSafety" */; + buildConfigurationList = 340107BC28DCC1810BF3CBE2863BE440 /* Build configuration list for PBXNativeTarget "RCTTypeSafety" */; buildPhases = ( - 6ED5BB983BE2B68121F58CF0130C9D59 /* Headers */, - E2228FD4AC6E29FB6D8F41180467CB2A /* Sources */, - 36F26C4C734E8588E99C9754140D3669 /* Frameworks */, + 49E2EBAB25139D68AA815AFBACEF0D28 /* Headers */, + 9F3563EDD5E968F12DD6A64FE08A01DA /* Sources */, + E66926C960C9C649CE82B41770F5EA65 /* Frameworks */, ); buildRules = ( ); dependencies = ( - 1BCA757D0AA08E35912F102956D96688 /* PBXTargetDependency */, - 694F56AC29D43B98B04458D541BC0C64 /* PBXTargetDependency */, - 78B2E5AE87E6B268B7BD81B0A7CDF53F /* PBXTargetDependency */, - 0AF313A6EC833C599932A15C6DFCD05D /* PBXTargetDependency */, + 35E371C3C856037FE8FDCC8B85E73826 /* PBXTargetDependency */, + A5F3D4D67BA20A63B8CEAD8DD491DF01 /* PBXTargetDependency */, + 015355B7A792490F6DE6FA0E18F97BFE /* PBXTargetDependency */, + B60F55965FAC3EE2F1ABD3C4BDB1B074 /* PBXTargetDependency */, ); name = RCTTypeSafety; productName = RCTTypeSafety; @@ -28034,11 +27949,11 @@ }; D2B5E7DCCBBFB32341D857D01211A1A3 /* nanopb */ = { isa = PBXNativeTarget; - buildConfigurationList = A8727C6D45B3C78272F861736A333F16 /* Build configuration list for PBXNativeTarget "nanopb" */; + buildConfigurationList = A0F8E22EB29C3034B5080E031987040E /* Build configuration list for PBXNativeTarget "nanopb" */; buildPhases = ( - B332962D4B98D6565A6C92E826E60CCA /* Headers */, - A083F8EF5ABE7519458E8356FD0BC478 /* Sources */, - 16D542A505F9763CF89BAE7EAC972694 /* Frameworks */, + 979DBDEB0D3D2BD0AE7447A6FD578738 /* Headers */, + 38EB2523E7A5ADAFF418003527BBE1E7 /* Sources */, + 339C7ED035D265CF14C5281425F7ECA7 /* Frameworks */, ); buildRules = ( ); @@ -28060,8 +27975,8 @@ buildRules = ( ); dependencies = ( - 7B1E1D0C1C62815667D8003848A1782F /* PBXTargetDependency */, - 872C042FDFDA796DF43FD0060E88CD45 /* PBXTargetDependency */, + 02153C9C3FF92FCD3005806E9649F393 /* PBXTargetDependency */, + D0038E3F65E97D460FDF3B35A8B931BA /* PBXTargetDependency */, ); name = "react-native-jitsi-meet"; productName = "react-native-jitsi-meet"; @@ -28079,7 +27994,7 @@ buildRules = ( ); dependencies = ( - EB2E014AD89BAA33B6F3075F0D9BEA3D /* PBXTargetDependency */, + 86EF5414BF091D3D55C4A89EF5909B39 /* PBXTargetDependency */, ); name = RNDateTimePicker; productName = RNDateTimePicker; @@ -28088,139 +28003,137 @@ }; D83FEDBB2D35218BB7BD3780EF08216C /* Pods-defaults-Rocket.Chat */ = { isa = PBXNativeTarget; - buildConfigurationList = 7C6EA9F0EC66563055CBD979CA173FDD /* Build configuration list for PBXNativeTarget "Pods-defaults-Rocket.Chat" */; + buildConfigurationList = 4F2F57F6C2F475EB38D5DD5DEC9B96C7 /* Build configuration list for PBXNativeTarget "Pods-defaults-Rocket.Chat" */; buildPhases = ( - EBDA5DA22E2D50A282A51D7CB9D5413E /* Headers */, - 8ADFCC1717402B23B97B7EFAD649E3EB /* Sources */, - 8C31BB30375E33D666B7964BAE92F6F5 /* Frameworks */, + E281942FEBF4B28965BC62C936E19EB3 /* Headers */, + EDCCB1B95EA3A83345B62DA861D7FFA1 /* Sources */, + E8E5B2B14E801D7E3235783D82512F6F /* Frameworks */, ); buildRules = ( ); dependencies = ( - E663E0746AF9587E187140088C9A78A1 /* PBXTargetDependency */, - 4C40519348AC841056306D05B3CD57F9 /* PBXTargetDependency */, - 328C25E036DD2059C6C521AC8A7ADAA9 /* PBXTargetDependency */, - 42CF772E2CAE2702952A36487804CFA3 /* PBXTargetDependency */, - 6990DA9422941E6EDFA9F5FF2F7EACB7 /* PBXTargetDependency */, - 03D40E0662C808B82B9A8D4B9533A2F8 /* PBXTargetDependency */, - 629D67B1099A6011DF7C552DE14B49CF /* PBXTargetDependency */, - 41242D1647ADB5D532DD19B3ED2D82DF /* PBXTargetDependency */, - EBD453A1B6979DF3C69F87C620C7AAAE /* PBXTargetDependency */, - 7E249BB832DE8FBB57AA5B659EA65C83 /* PBXTargetDependency */, - 1E9913FA513BEBF6AE70956B1AFE5D32 /* PBXTargetDependency */, - B3028CE87DE05E05D31CB80820A69DFC /* PBXTargetDependency */, - 5231FD2A12D72DB5705C671DAAB0D7F9 /* PBXTargetDependency */, - 047B114CFAB96C8E9FC828083BD2FDD1 /* PBXTargetDependency */, - 350E1BF2FB151C29E80B7B57B810F0F7 /* PBXTargetDependency */, - B528DD4EDFED9FF14A611546C824888B /* PBXTargetDependency */, - 9E426F33134A6FFA66DC6649B1829689 /* PBXTargetDependency */, - 5D9E40B0BB971DDCCC0102DA0F8805C0 /* PBXTargetDependency */, - 151F44BDFC518BBE6E894E2E9750A082 /* PBXTargetDependency */, - BC578291E8C752C915611E1ACDA7A703 /* PBXTargetDependency */, - E474B96A8FFB4DA88BF3962AF3EA2F3E /* PBXTargetDependency */, - 72C3F27A35D127B05EDFBF1AF400150B /* PBXTargetDependency */, - 7669584C5BC540E89EC0F67FA9F4BF9E /* PBXTargetDependency */, - 34691FA1A36ADAE6706806629A78C056 /* PBXTargetDependency */, - EC14546B8305C367EE5ED23568D2F576 /* PBXTargetDependency */, - 08B7AB3C00FAAC06D3E3D0591B84262C /* PBXTargetDependency */, - 318F5C89073F380A0FCEAA7180A5CD98 /* PBXTargetDependency */, - FC5354EE17A31EAF2B6882494B07D22C /* PBXTargetDependency */, - ABB38B51F5A8BC5D6E4CA139461E0911 /* PBXTargetDependency */, - 78615C059CBCC9AD5AA446383BF37BC3 /* PBXTargetDependency */, - 8EC659CCB54C4E8BD5A89D96EE6ABD73 /* PBXTargetDependency */, - 3100524DE1047157AEAB1617D9C82D56 /* PBXTargetDependency */, - 2AA5EAFA1EEA176F1AF7C410163ED11F /* PBXTargetDependency */, - BA2A5F0115F8EA0F1BB92F1396642E4B /* PBXTargetDependency */, - D3B311CD2DEFD819DFE46F255EE02E74 /* PBXTargetDependency */, - 31A76CDDD7A6D147FCC84A21933490A7 /* PBXTargetDependency */, - 119FDFB4BE7D18B2381E3245FE29726D /* PBXTargetDependency */, - 6EE8D2D7F4BF3096ED0B794181D42FC6 /* PBXTargetDependency */, - 24062F53418DEE51F2832C1FCCE58807 /* PBXTargetDependency */, - E98952DD1B78AE4734CB8DCEDEABF4F4 /* PBXTargetDependency */, - E4A94790CC4BB4AE1422985FE8D974DF /* PBXTargetDependency */, - C65D8D3964447301CC6EB34D738C1E04 /* PBXTargetDependency */, - F0C3C40FA6CD6456B010C47CFA649207 /* PBXTargetDependency */, - 830D0DDD1ED7766FDCC9E4B2D19035B6 /* PBXTargetDependency */, - 993D396F38E7691A8B7DD2E339CCF3D0 /* PBXTargetDependency */, - 396354C3F8F7F3A3F7BA013F08A51799 /* PBXTargetDependency */, - 8E31B98BBCD7D7BFE0DB9591D67792E5 /* PBXTargetDependency */, - F37245A494C296BC8E6A6811053DD10D /* PBXTargetDependency */, - 089071F102DA6BC109E6A2695ACE1C7A /* PBXTargetDependency */, - D15B3B0D97C6A345D9F4F610AFC539C9 /* PBXTargetDependency */, - D07515D6E26FC63DA484C9E05CE2FD5A /* PBXTargetDependency */, - 1DF1C9A2345BCC4298A73F5E3126F989 /* PBXTargetDependency */, - 36B46C316A1D5196A53123E13D9B4592 /* PBXTargetDependency */, - 06D4285144A100292AFDCA1D58852D0B /* PBXTargetDependency */, - 163AA5542D65AAA9BB944EE197510840 /* PBXTargetDependency */, - 2D370361D464E9C4956561EBB8DA7F9E /* PBXTargetDependency */, - 027EF64EA4E3408C7AEE8CFB19DE1380 /* PBXTargetDependency */, - 4291BCB513BB1143CE9BA33CA24FA5BE /* PBXTargetDependency */, - 852A93058D3CA3352A3626F4F2AA6BAB /* PBXTargetDependency */, - ABF0ECFDF6971328F366D60A4CC81820 /* PBXTargetDependency */, - 26C05BD48A8B9E01C9357778890FF06F /* PBXTargetDependency */, - 0AD8247BBC433D6F5FB85D1294D42584 /* PBXTargetDependency */, - D8DE82F0DF3F721853BACDFB56EE7764 /* PBXTargetDependency */, - 2F1B957F1A0A4D2D7124E1F8FF005F3C /* PBXTargetDependency */, - 1DACC56C9BEFCFF8040790175FD8DC07 /* PBXTargetDependency */, - C8B554847D661498D93C694CE292ACF9 /* PBXTargetDependency */, - B467BE6B73FEFA4AABDD74FAC3AE4002 /* PBXTargetDependency */, - FE63B51A148341C5FCC033BC5854D9D9 /* PBXTargetDependency */, - 25A15BB584DF1AD1AC6535D29755BBF8 /* PBXTargetDependency */, - 9C3F7A036E96D2D712EC3BD41027D85F /* PBXTargetDependency */, - B1AEDE526BD2211524894775B2F2135B /* PBXTargetDependency */, - 73E3778CF5046F50B245E46249B8A3A1 /* PBXTargetDependency */, - ED9A1D0F419D42BED5FBCDB087B3F0AE /* PBXTargetDependency */, - 912F7723DC302F388B571775F8AD3D67 /* PBXTargetDependency */, - EF67CC0694C727BBFE7DE264E204B8D9 /* PBXTargetDependency */, - 756D66FC7D36EB2AE1DD3D9DDA8A5716 /* PBXTargetDependency */, - E1F239D9D7ACFA74B87C9CEBA02F84B4 /* PBXTargetDependency */, - 28383F21FCF4CC7DED783148AC34FFDC /* PBXTargetDependency */, - DB2E58A92DCFF90E53B3C95EE16EDBA1 /* PBXTargetDependency */, - 6BD216FAE1ADEC54703BB5825C378127 /* PBXTargetDependency */, - E5EDED7A21AE2D5E2B5D649010ADCEB8 /* PBXTargetDependency */, - 0DF0EFEA719F6A4CE1333BF522CB2E90 /* PBXTargetDependency */, - 35D272A655A858621BC248300D9BDC55 /* PBXTargetDependency */, - 2A79286BCCD4640263A2C491CB90C1A9 /* PBXTargetDependency */, - D71B533AC48BA617148D71BB6CA35E59 /* PBXTargetDependency */, - B4D00B7760C3FB0828263C5D8DD72369 /* PBXTargetDependency */, - 59F8129ECA3ABCA858B9461A639774EB /* PBXTargetDependency */, - 6430415BFFE66A38B8BCA85297BC3ADB /* PBXTargetDependency */, - 294BB13EEFE7E474D46C4A7C115C03AD /* PBXTargetDependency */, - 9964CCD69F6A51C5BD50045ED16F6104 /* PBXTargetDependency */, - 734CC2BE7CBA5BBD183F2618924A27EA /* PBXTargetDependency */, - 0B1B7338467B7AA28DD0F843A7F1CEA1 /* PBXTargetDependency */, - 61833198A2228192E41DFB30E491725C /* PBXTargetDependency */, - 01DBE5A23CC9D0BBC91B821776DF660E /* PBXTargetDependency */, - B83DC780E4EF4161377AD35B535FED02 /* PBXTargetDependency */, - 6A3D07447F7B60121AB0CF00C5FA0E0D /* PBXTargetDependency */, - 9DC93C1D6F5EA0E5CAE692445145CB0D /* PBXTargetDependency */, - 832D84E40B4FCD08BFD68EFBE912221B /* PBXTargetDependency */, - 1CD3A11F4AAE64D05E1094AA22888A38 /* PBXTargetDependency */, - 684E541BB09DB70D03416F52F9EC2636 /* PBXTargetDependency */, - E0EACE4355A49D6F4BAF19F72787B61A /* PBXTargetDependency */, - 3DD2BB25E78CFF29333432907DAE2CE5 /* PBXTargetDependency */, - 45184D9F60E265D302870523053E04B3 /* PBXTargetDependency */, - 6AF1A1E396C297515D404EB5B9BDCCBE /* PBXTargetDependency */, - D165BAD22A479804300CF27DCC65F8D0 /* PBXTargetDependency */, - 8D401A4598BB50D0B34669CE8B9F9A27 /* PBXTargetDependency */, - 33E5AA1A990EA43BC1E306B7932AF65F /* PBXTargetDependency */, - D4431ECC0E32ADEEE07B4D8B68B85047 /* PBXTargetDependency */, - 1EC1EE1701812A211E97839EABDD917C /* PBXTargetDependency */, - 3443D01329680AE9C6620387ABDD19E1 /* PBXTargetDependency */, - 16596F20E08FD754A3E7562A786D03A8 /* PBXTargetDependency */, - FEE98C4DFE5A8AC903082490D75C78F7 /* PBXTargetDependency */, - 209F9CAC95D18BDA5E50029C965456FD /* PBXTargetDependency */, - A111437F7EE9EB56A7032A77CF85E626 /* PBXTargetDependency */, - 0654A81AA98E5A9FCA37E4E038B32185 /* PBXTargetDependency */, - 97190226766EE7B191866EEE7133DD98 /* PBXTargetDependency */, - BDB2E275B63CEF8C3B1FAAADF342FD72 /* PBXTargetDependency */, - F22A6C16A990D09ADD1651FE73475406 /* PBXTargetDependency */, - F6DF5C4F280A98925433989B7AEBEE75 /* PBXTargetDependency */, - 521B2483558BC702A7B5C7CBF390B5B2 /* PBXTargetDependency */, - 3C2BB3A1052D82CDDD919A8ABDD2F043 /* PBXTargetDependency */, - F0D55E9BEA4B8E97AF76FA1D54E4ABF6 /* PBXTargetDependency */, - 8F4984529BF991F7323B437FA5714B6A /* PBXTargetDependency */, - C24D39E04D848AE308781FA9B547BAEF /* PBXTargetDependency */, + 3C6C0405132A03B497CEDE35F499B6FE /* PBXTargetDependency */, + B94B083016E5ED31054537F0C41EFDFF /* PBXTargetDependency */, + C377DE4C6A38462AFFFF3540819951BC /* PBXTargetDependency */, + 44E2BEFE7373D5B6604A64F37BAEC984 /* PBXTargetDependency */, + 35EC277FC0A7751789B7842EF113E50A /* PBXTargetDependency */, + 426E9DA8EE34C4D3CE1C241A0D8C326E /* PBXTargetDependency */, + 7C5818E4A1D93392EFFE58686CAAF57C /* PBXTargetDependency */, + F3A04F9DEE4A5DD4EF8211249265C3BF /* PBXTargetDependency */, + B40531760C66F2AABCF260CE36F471ED /* PBXTargetDependency */, + A1E78532B4AE6112E9B947AA89C8F0AC /* PBXTargetDependency */, + CB7FA8F7A864E6F8215C1D13C0AE20D5 /* PBXTargetDependency */, + 21AC42BA6D004097ADFC070E7D427503 /* PBXTargetDependency */, + CE714E18B8E34560E079D79ECCBEE4B3 /* PBXTargetDependency */, + 0847A633D4949EC4D1B0223959862621 /* PBXTargetDependency */, + 8505524FD00B550143E9C06DB12049E5 /* PBXTargetDependency */, + E351BDCD246C1E38A05E2289DFA9A5B7 /* PBXTargetDependency */, + AC67364FE9C8D3C059BC9B28737B66D7 /* PBXTargetDependency */, + CBE9BA109F0691CB7FC6622E0369DA06 /* PBXTargetDependency */, + 8CD0F33F81382DCFCD0A6EB6F8E24AE5 /* PBXTargetDependency */, + F201A30EE2D7F9A5153796470E2C6319 /* PBXTargetDependency */, + 140A350AC032507B9217390A43CEA5F9 /* PBXTargetDependency */, + B488BDA7EE01CF32EFBDE0ED34C0627D /* PBXTargetDependency */, + 799FA9ECEE1D4E4798C4AE0DFDFD8159 /* PBXTargetDependency */, + 725549F4CE436BC1F7BEA6A27F80560B /* PBXTargetDependency */, + 063F3F29F776A371F7F4849681BF4304 /* PBXTargetDependency */, + 7D4A97C9F4211E304190C28B92DDE9C0 /* PBXTargetDependency */, + 248DC8565912B21890D4320A5CE0E6B8 /* PBXTargetDependency */, + 6144782A63AACF0C764A7C00B22CFAB1 /* PBXTargetDependency */, + E7C6CE2D45CD0C3F51A022D85C645BDA /* PBXTargetDependency */, + E75E55A364A25F311C8D77230718AB65 /* PBXTargetDependency */, + 96580AED6DB481AD60B67AEACE5B9ADA /* PBXTargetDependency */, + 66C05ACB9F32B3A9D24CD9CD0044233E /* PBXTargetDependency */, + FFA6C1C6772D6F269CBC6FFF92075594 /* PBXTargetDependency */, + BC1D55F27F42786677ED98C54982A15E /* PBXTargetDependency */, + 715D6933AAAC19DEF881A57624C793EC /* PBXTargetDependency */, + 46E50A60F3AEFDEBDA85B67F1221E36D /* PBXTargetDependency */, + 833FA3FBD837870AB4CEB586CE5AE5EE /* PBXTargetDependency */, + B1A89741E23430A5B923EFA1A6AC1675 /* PBXTargetDependency */, + 393DD708145B579DB68850A4EE42B394 /* PBXTargetDependency */, + A51C2EDB0C2B520665D202E9A7192809 /* PBXTargetDependency */, + 72D444418A95B486A83E80E07475BEC8 /* PBXTargetDependency */, + 632AE0B2FECA4D32570B6EB621190D3F /* PBXTargetDependency */, + D61671A5653EEBE0A50BE8E8158237EA /* PBXTargetDependency */, + CD449CA0A960A304DADFA7A846E225B3 /* PBXTargetDependency */, + FADDE07B880F4540581D6BAA57312DA8 /* PBXTargetDependency */, + 13617BEE86B3CB4FA2B5347F2022BB02 /* PBXTargetDependency */, + 2B3FCB63502EBE88CD4A19B72552A24F /* PBXTargetDependency */, + AEF216A54E39A728B1EC8A9265D27E9B /* PBXTargetDependency */, + 727ADD9A99C0DC0B702EC2D3CAEC7B6C /* PBXTargetDependency */, + DC2BF65E94CE9E326BF6B60CAFA934DB /* PBXTargetDependency */, + E948718245195560147BA550D1F1C308 /* PBXTargetDependency */, + 7B34C908D4D6BDAB8269403ABD0C85BB /* PBXTargetDependency */, + C336DA9637A197CA4A97D28C7C3882AC /* PBXTargetDependency */, + E44CD237270DD2DE4646281BA98CF1A4 /* PBXTargetDependency */, + D59D25C0D7C8DCAE765E5576E1FFFCBD /* PBXTargetDependency */, + 073F61D687BA694271F8AD0B3965B505 /* PBXTargetDependency */, + 148D553210B70F9AB48A6537521EB1D0 /* PBXTargetDependency */, + 32CC061903CE38DC4FCFF6323FDB4EDE /* PBXTargetDependency */, + 3E324B6709573E7512AC6B8C7DB53627 /* PBXTargetDependency */, + 977946D84DCE99B098339DC8FB3D1AEC /* PBXTargetDependency */, + D0B99F9D9C96D2B4A7C2272E254CB114 /* PBXTargetDependency */, + A82DC0092BBF3DA9CF0CB5B4F72B98FE /* PBXTargetDependency */, + A933EFB7D2064F8978265F19B8807038 /* PBXTargetDependency */, + 1B3F93C62A7E0EE8423CBF42D716D241 /* PBXTargetDependency */, + 1D669392C327C71EFD2A7EBD7A1B8C25 /* PBXTargetDependency */, + A360A87317ADA9F6086DF77D94078B01 /* PBXTargetDependency */, + F620EB38587AE61EA73542B8BFB9DBF6 /* PBXTargetDependency */, + B276DFD3007AFDA2E84DDC21E73B95B8 /* PBXTargetDependency */, + BE0F1C16F4CC5AB613BB1E4C5BD847B0 /* PBXTargetDependency */, + FB24DC03EE11FAE7E8E95454B3FCEE9B /* PBXTargetDependency */, + 1785545DDB48F454366162FF54D9EE2D /* PBXTargetDependency */, + 2AA28E260D22A40747BF53BB4FB1E16C /* PBXTargetDependency */, + 31EA0E0D91EFE04DCA8B32DC9132E27F /* PBXTargetDependency */, + 3473BA3FAA71BF7AB016645C9942D477 /* PBXTargetDependency */, + 5DFB938700CCDB8458B5F96A23813F3A /* PBXTargetDependency */, + 756C1DB27D0BB54AE810A8F7A8A73E16 /* PBXTargetDependency */, + 068A8259D0A80DB82EF398F2EBA929A2 /* PBXTargetDependency */, + D1CD1CDFA6E9292A5163EB93725639D1 /* PBXTargetDependency */, + 7D97319CCB2170EE26EEC98485FB859D /* PBXTargetDependency */, + 25353B00D17F4F60A4E5D07A81D3102E /* PBXTargetDependency */, + 949565D31323C56242B53533E6835AF2 /* PBXTargetDependency */, + 8291A43CC4FA3062BC9D70277E09F7A2 /* PBXTargetDependency */, + 8EF6B148A4EA5C0E11ABD529E8AD9174 /* PBXTargetDependency */, + 92856E0CFEC6E7FF6B008717A7FF65C1 /* PBXTargetDependency */, + A21C0176306959B4B898793B8D26D413 /* PBXTargetDependency */, + CEC4127AB4C4D02B269839CC60097541 /* PBXTargetDependency */, + 7E2043A0B972F68822BAB8E447B92DB8 /* PBXTargetDependency */, + 32244BD798DB8E8AD958042EF61AE059 /* PBXTargetDependency */, + 0F8BD2574BD27AF7386380B90BB2EE2F /* PBXTargetDependency */, + 81C71C72C1B93F9BB4141441F5634FCC /* PBXTargetDependency */, + E4AE6443890E55511BFAB8618792FBEF /* PBXTargetDependency */, + 830F0E2437578BDDAEA60305D0EBF7BE /* PBXTargetDependency */, + 1085C6C35C4DBD10D437D42BC2DD9970 /* PBXTargetDependency */, + D1C63AAA087212AF94747CFF12BA16A0 /* PBXTargetDependency */, + DDE9C84B84984CEF0ED83EB6FCDE5566 /* PBXTargetDependency */, + 65E515B05EC34329A61D0D83E1286401 /* PBXTargetDependency */, + 2D48B88B965433FDB4398D3F331912B0 /* PBXTargetDependency */, + 110C9963513AB534593213E334A079CD /* PBXTargetDependency */, + 82E4D5361BFDAE349EEB5A657002D92F /* PBXTargetDependency */, + F679CC51791D30DE8AFCE802D37C0915 /* PBXTargetDependency */, + 1061EC09455A3FDD65E4DD0B0497FF02 /* PBXTargetDependency */, + FB166386FBE2E18725223AEDD435F0C8 /* PBXTargetDependency */, + 981BA6D0E7B67184B38A01C818AB5F11 /* PBXTargetDependency */, + 223FC3D10F9BB7A58C292CC44DEB7CCD /* PBXTargetDependency */, + 37D5A3CB4173E7AE79F91EAE3DE43E31 /* PBXTargetDependency */, + 0C57E4F45BA13BD6AF2A272000045D93 /* PBXTargetDependency */, + D5BC543BBA34896BEA273853BDBE0588 /* PBXTargetDependency */, + A9F9A22C3D69615363A1BE39DE287C32 /* PBXTargetDependency */, + 2ACB94D15EE8B9832CD7C53DFEF4ED9E /* PBXTargetDependency */, + 522F76A3E9DBBF6A466BA9053627FAD2 /* PBXTargetDependency */, + E99261018ACFEE2562F1B2E6F918FC68 /* PBXTargetDependency */, + 71F0E254B76138EF20386104796629C8 /* PBXTargetDependency */, + F565974FBA121CB0955B0D561478CF4D /* PBXTargetDependency */, + F9981FCC48DA34F4329486D0D5667958 /* PBXTargetDependency */, + 52C2F3B9EF1E82AB272413281EDE338F /* PBXTargetDependency */, + ED4C1920F21262D66BCF5AF40E532A3A /* PBXTargetDependency */, + 5B7B3E3CAB655B01F46E0D2A95CED0C1 /* PBXTargetDependency */, + 9CBB9922E27537BE13B2B19D8020CCCC /* PBXTargetDependency */, + 8BD51252A4BA70E9668E4D6F0D828205 /* PBXTargetDependency */, + 28BDEB106872FAEE14C71FE9CE3463D0 /* PBXTargetDependency */, + B9A5A581AC82018F47ED6EC88D9DCD04 /* PBXTargetDependency */, + B9A690702149B202DF2AE1BFEBA0F9DC /* PBXTargetDependency */, ); name = "Pods-defaults-Rocket.Chat"; productName = "Pods-defaults-Rocket.Chat"; @@ -28229,11 +28142,11 @@ }; D9245543B79C09FAC40FC8B9F291536A /* Flipper-DoubleConversion */ = { isa = PBXNativeTarget; - buildConfigurationList = 895CF15E24078E27F2D10A5015747042 /* Build configuration list for PBXNativeTarget "Flipper-DoubleConversion" */; + buildConfigurationList = 51DF585FF710F9A9A2C30FC92C6EA06D /* Build configuration list for PBXNativeTarget "Flipper-DoubleConversion" */; buildPhases = ( - 11D9999534E0F0C2D0E856D26C2380A8 /* Headers */, - 7F3457C2E3E1A04D3D2A5919C7B2D397 /* Sources */, - C496617F801558CE8BE3D307D72565D3 /* Frameworks */, + 90351ADF54306D065B6CB36C55B05A24 /* Headers */, + BC5C5834C05F58D370947041472D7CC4 /* Sources */, + 5B34F21E583007D82FFDECB8B752AEC0 /* Frameworks */, ); buildRules = ( ); @@ -28256,8 +28169,8 @@ buildRules = ( ); dependencies = ( - 1B0CEB4B460BC0DB66DF4D7816E79262 /* PBXTargetDependency */, - 702CDDDED4A1FB819B07CC2F3AB1B2F3 /* PBXTargetDependency */, + 5E3585C1805901F148B1CF09F547FF27 /* PBXTargetDependency */, + 57C8224325BCFEF8EFF07DDC567C7C28 /* PBXTargetDependency */, ); name = "react-native-simple-crypto"; productName = "react-native-simple-crypto"; @@ -28266,21 +28179,21 @@ }; DA0709CAAD589C6E7963495210438021 /* React-jsiexecutor */ = { isa = PBXNativeTarget; - buildConfigurationList = 6BC19C369914219214088AA704D90DDB /* Build configuration list for PBXNativeTarget "React-jsiexecutor" */; + buildConfigurationList = 57D4A9C38DC1FE70B84D4E4C8C6EE87F /* Build configuration list for PBXNativeTarget "React-jsiexecutor" */; buildPhases = ( - 9B501F7CA708C4A2E6FE4AC772517F27 /* Headers */, - 8A77D8B8D92A8EE133B6BBADDB93E574 /* Sources */, - 06A3F9F481ED5BA74F32721A55EC4EED /* Frameworks */, + B2DC84ADC6BC35A7375BC997EC64AB33 /* Headers */, + 85CFE7D835CEB2526E6B3817DCDAD617 /* Sources */, + 740805709C7EC64A77E6BC181ED26D53 /* Frameworks */, ); buildRules = ( ); dependencies = ( - 10C3E41DD5D1E65AE1D108DC9A22B515 /* PBXTargetDependency */, - A04AA6C8A345271CCBE97DD920683301 /* PBXTargetDependency */, - 877930B14A21B2DD3CA569D5013960B7 /* PBXTargetDependency */, - DB8DFC0B0074CD32D8DF89293CA3F6E9 /* PBXTargetDependency */, - 77E761B5F1D6766129F18CABBE5FF8CC /* PBXTargetDependency */, - A51EC2E02846BD88420A5D704F349AB0 /* PBXTargetDependency */, + 7AD55F96A0F87C5B0356F98C1F83771D /* PBXTargetDependency */, + 2F21F738782E12A239E401FDBF39879D /* PBXTargetDependency */, + 525F56253205A8A3BD2093849751B1BF /* PBXTargetDependency */, + 0227C1A852C1B66E3ABA85BF9AFC1E51 /* PBXTargetDependency */, + DF2419A25206E553E3B13CDFFFF7C97E /* PBXTargetDependency */, + 3E154FC6E19D461D765E4CF694991E84 /* PBXTargetDependency */, ); name = "React-jsiexecutor"; productName = "React-jsiexecutor"; @@ -28289,11 +28202,11 @@ }; DBCB1B4965863DDD3B9DED9A0918A526 /* UMCore */ = { isa = PBXNativeTarget; - buildConfigurationList = 1BA8C2D2B578BBF04BD6E5D7EAB9F481 /* Build configuration list for PBXNativeTarget "UMCore" */; + buildConfigurationList = AE817CA9833BB6F9D62C418745425C3C /* Build configuration list for PBXNativeTarget "UMCore" */; buildPhases = ( - 8EF4BA14C36A9A298DD1301C1B152BF8 /* Headers */, - 22AD6F821D6EF956B44DA31ADA09C64B /* Sources */, - D53569BC185C8976331FD2E0EFEEFFC7 /* Frameworks */, + 356634A0E78E86CFFCFDB8E7FE3618E6 /* Headers */, + FB02A46FFCB94A1067EB23A29908F5B7 /* Sources */, + 0BBFC7DAA1E06DFFB83633A914E099F7 /* Frameworks */, ); buildRules = ( ); @@ -28306,16 +28219,16 @@ }; DBD2D83E10F8B7D3F4E0E34E6A9FCFA6 /* React-RCTText */ = { isa = PBXNativeTarget; - buildConfigurationList = 58CDAABA5D527B39D63C6E72BEB30A65 /* Build configuration list for PBXNativeTarget "React-RCTText" */; + buildConfigurationList = 83D7CD4D04C3F815069F23BCC23EFAEE /* Build configuration list for PBXNativeTarget "React-RCTText" */; buildPhases = ( - 887231A49B759C36385E79455FF2F17A /* Headers */, - 3EC4407101D2CE414935D852F85AA221 /* Sources */, - 47DD1A475E3F12C74B93009CC32A35D4 /* Frameworks */, + 19BDDB467659D607A37E444CC4BE2D17 /* Headers */, + 9E6AB28F11FA6AA0C1A4F85BAC9FBF2A /* Sources */, + 8C6ED094982A12F07D40D94F2E45C4E8 /* Frameworks */, ); buildRules = ( ); dependencies = ( - CDEEE02194E117B9BBD5EA21885CF0E2 /* PBXTargetDependency */, + 227BD25C6D2DFF311BC21E383D33640D /* PBXTargetDependency */, ); name = "React-RCTText"; productName = "React-RCTText"; @@ -28333,7 +28246,7 @@ buildRules = ( ); dependencies = ( - C20622F01960C6F9567A44E625308DE8 /* PBXTargetDependency */, + B74C5B85323B68832D59FE91425BA0BC /* PBXTargetDependency */, ); name = RNConfigReader; productName = RNConfigReader; @@ -28351,13 +28264,13 @@ buildRules = ( ); dependencies = ( - 8DE89D6131708EA9CAC3A5888D377DE0 /* PBXTargetDependency */, - 1C7FEF4B4C014B9CF974F44BDC559731 /* PBXTargetDependency */, - D5162B0143962B0E320119E579ED3B2E /* PBXTargetDependency */, - 3B0731AA6168E9E572B96F007CCDD59A /* PBXTargetDependency */, - 81E734B2DCC71BF039F2D3598F9F3365 /* PBXTargetDependency */, - 67161DFCF32EFEB374D6501A4479A451 /* PBXTargetDependency */, - A8F5A0B69DD894612BA6763FFFF5237A /* PBXTargetDependency */, + E55F05AB8D715BA808FBBCB9D9D06D0B /* PBXTargetDependency */, + 294814D8D072E0D1EC634402E6549502 /* PBXTargetDependency */, + 716DC2634958E8F74FFAA312FB604A38 /* PBXTargetDependency */, + D68FA05760770EFA84E7D8A4E815EA69 /* PBXTargetDependency */, + 40366D27C8FE5ABA5CC2D1CD2C74CDE7 /* PBXTargetDependency */, + 0EBC592CCC6E6D46CD2230500F3091FD /* PBXTargetDependency */, + B38469DB809A71A85FFD4E0B5F6C2461 /* PBXTargetDependency */, ); name = "React-CoreModules"; productName = "React-CoreModules"; @@ -28366,139 +28279,137 @@ }; E2816A8094E8D1BCDC0C50D2C832730A /* Pods-NotificationService */ = { isa = PBXNativeTarget; - buildConfigurationList = F8F3AE9F70811C8960D0E88C72765C96 /* Build configuration list for PBXNativeTarget "Pods-NotificationService" */; + buildConfigurationList = 83991F6E2FB0FF81C7C69DDFB5F42508 /* Build configuration list for PBXNativeTarget "Pods-NotificationService" */; buildPhases = ( - 4D71CA6F881C95FDC58B3DDE54DBD3BC /* Headers */, - E303C721D4F58E43DB50888BC3C3AB5B /* Sources */, - 2A324E4746DB80E29874AA089755B1E9 /* Frameworks */, + 39F700DF697B799057FBE3FD092E92BE /* Headers */, + E1822D9A1FA5A9808706A23F067CB61B /* Sources */, + 7541B3BEBB8DC8C5B12F2AAB773635D4 /* Frameworks */, ); buildRules = ( ); dependencies = ( - E2C95EA33978F154389BA327F271171B /* PBXTargetDependency */, - 297B5AF54B76ADD482620945F136987B /* PBXTargetDependency */, - 1237FD14F171360C8F734498BF3795BF /* PBXTargetDependency */, - F543884A4C89E82BC445B4F7CCED3D8D /* PBXTargetDependency */, - 5D406478250DB594E71BBCA1D8CF0D6B /* PBXTargetDependency */, - 3FD79A7F9328F6BDB055B2CEF9F44A3C /* PBXTargetDependency */, - 9794FD70DB79B990A1F0F5485EAE9DF7 /* PBXTargetDependency */, - 6D3871B345CB9E6BB930FB2B4E4B3A11 /* PBXTargetDependency */, - 94FEC8FA2F9E342D0CAC8938C6448F7E /* PBXTargetDependency */, - DAAB08A5B6C7FE989074187B6B6C3E57 /* PBXTargetDependency */, - 262258519ECFC14FCAD17A175F1BDFBB /* PBXTargetDependency */, - 076B002CA4C714DAA6E76238E0F3F324 /* PBXTargetDependency */, - F6858B259E2865400C1993705F4C2D58 /* PBXTargetDependency */, - 20B55C7928E27A5CC135B1FA2F32687F /* PBXTargetDependency */, - CB89BA3D4218F8198A55262265809E72 /* PBXTargetDependency */, - 80814D7AADC9C6ECF17BBA935115E6D2 /* PBXTargetDependency */, - 845D13DF26BF36A56808FBA01E3FF533 /* PBXTargetDependency */, - FE7EF0DE479454FA534C0FE6ED49EAFC /* PBXTargetDependency */, - 254E36F03CCF454726A6772FADD8FF55 /* PBXTargetDependency */, - 3E8914E7CD2AA96320CE3B3CF913C1F9 /* PBXTargetDependency */, - 0F04FD60D463AA752DFCFE7B21066474 /* PBXTargetDependency */, - 42376891C6E3F31A8818DEA27EA39B75 /* PBXTargetDependency */, - 69AB265142DE95BDC64F73A62A228B5D /* PBXTargetDependency */, - D44A7758C19717D2A285188F845251E5 /* PBXTargetDependency */, - 561EC5CDCEAA5D69269D16D19327D42D /* PBXTargetDependency */, - 5CD28739EAA0F0346A5BF8C16558EEB1 /* PBXTargetDependency */, - 999345EA672871E0346A21D3DE4C2DEB /* PBXTargetDependency */, - 8851DA2B9E0A3CC26022E5A18E675EB5 /* PBXTargetDependency */, - CE891AD502E6376B405FF1E912AF073B /* PBXTargetDependency */, - E33E1C030BDF1A1B08FE9DDF60C9C446 /* PBXTargetDependency */, - 3A6CFE314DCC9736342C729F8749014D /* PBXTargetDependency */, - 75BDC0248AD0B22D57D84DFFAFB12A30 /* PBXTargetDependency */, - D21147C1DCFE5673B2147E4B4323C7E1 /* PBXTargetDependency */, - 07F77FE4B63A26D9A31915EDD4061117 /* PBXTargetDependency */, - DF8757C889D3F10EB481E26F95675969 /* PBXTargetDependency */, - 3DBCCCC47C8C277DF858AA295F2B0FE9 /* PBXTargetDependency */, - 6137099DB4660D26E7A36B2F7CD0F8B8 /* PBXTargetDependency */, - 75C1B68EC6D04BD3F4EEBD56DE61A159 /* PBXTargetDependency */, - 9A092D9D215ECC00D3859F6182106BD8 /* PBXTargetDependency */, - 52CFD0E3FEB38D58F30BE7EFE8ADAB1E /* PBXTargetDependency */, - D97D64740DE8D42A7AFF5EEEF2BEE6A3 /* PBXTargetDependency */, - 3FCD0BF1120C70FB75773ADDFE95C11E /* PBXTargetDependency */, - AD3FDD5C105AE069EF49E5597A90B6AD /* PBXTargetDependency */, - 544E1C0FEAC7D85C235CA8563BA586FA /* PBXTargetDependency */, - 7E6BF78DFD5A811067BAB5E73EB6B32A /* PBXTargetDependency */, - 4A81C9E8F5C7D67E9BC52CC4B28B10F2 /* PBXTargetDependency */, - E54E3592E277856DA6C60553B11C9919 /* PBXTargetDependency */, - 8886F81FD7F1147A8B1E29F77BDC0883 /* PBXTargetDependency */, - 8404D18E8B335A5F57D0EA4669244D7F /* PBXTargetDependency */, - 653493BA355466C7B31A79F02C405877 /* PBXTargetDependency */, - 178052B121D110B2DEDE0AC43ABC6A9E /* PBXTargetDependency */, - A6203A14694E22E3AA68236DE869C00E /* PBXTargetDependency */, - C5CB9A570694A6BA89218ED6E8044C70 /* PBXTargetDependency */, - C5F068E57ABF8573BA4A117D0588C7A5 /* PBXTargetDependency */, - 525FDB395FAA58F6B5DFEE943AD49A78 /* PBXTargetDependency */, - 64FCD41D54988D56471C19556FF7D453 /* PBXTargetDependency */, - 0C75F8C2233483178861D5E567712207 /* PBXTargetDependency */, - E63894B7D9C720796FD3222B0176CFB4 /* PBXTargetDependency */, - 3941E5BADBF2ED369B06E029DB923BE8 /* PBXTargetDependency */, - AB790CD7B49C6853CB65720D69B065D3 /* PBXTargetDependency */, - 8627420145DEB3A9D3C381E09B3FEF0C /* PBXTargetDependency */, - DF9719630F0724A545FEFD6C4F0B7982 /* PBXTargetDependency */, - 77F1D20EBC3BADA3351BE400AAEF2F93 /* PBXTargetDependency */, - E21F8B7BDED72A894D88506D607E6756 /* PBXTargetDependency */, - AA9C30C8CE7F517E857FAF7F3C4763B7 /* PBXTargetDependency */, - E4B5C01A9A6CADEBCD3375058848F7D2 /* PBXTargetDependency */, - 1BADF9684F2EB5A35C1E79D5F97C543C /* PBXTargetDependency */, - 4AA55239477577895225169EDCDC1923 /* PBXTargetDependency */, - BA5D109647ADFC6C7ADE43CFF7D3209B /* PBXTargetDependency */, - 5820E5397448F2FA7C9A3A3DD3057D4B /* PBXTargetDependency */, - 20195C0EAF85C2293055D3113665B191 /* PBXTargetDependency */, - 3B7E00B43B33301E00F131E139D8C8F5 /* PBXTargetDependency */, - 1A342871FB2256F901112C9BC461BF93 /* PBXTargetDependency */, - 569856BB0D18FBA78DC60640A274C237 /* PBXTargetDependency */, - 85C5CA300C5BB0252120260E04E695E4 /* PBXTargetDependency */, - D545D2D37814C2505DCE684ED6185FCE /* PBXTargetDependency */, - FBF656F5939B5779D89B0BB70D497B16 /* PBXTargetDependency */, - 27E1CB656A9C37C2702D44722D1972A7 /* PBXTargetDependency */, - 8B593798628ABED86D22FEA6D6C59EBB /* PBXTargetDependency */, - 757ECB1467C1311D345EE1530549AF72 /* PBXTargetDependency */, - 53B567ED4310A11C9F1EC12CE8A462E1 /* PBXTargetDependency */, - FEF38F106B68E68A555B05E2A6970C53 /* PBXTargetDependency */, - 44B5715DFD000752CED272D0ADF4CCA4 /* PBXTargetDependency */, - 93A0513E58C725D2E94A5AA3894594DE /* PBXTargetDependency */, - ACD41C74CDB0B06E53B09B7E9778FB96 /* PBXTargetDependency */, - D7253855FDB8E939BD8A62DC3392481E /* PBXTargetDependency */, - 9A88C1C580F3989943DB16406C1D071F /* PBXTargetDependency */, - 13EA5B35CB99F76C19BC4047443FD281 /* PBXTargetDependency */, - CF08AFF6C8BD0967BDD9B1EF857CC663 /* PBXTargetDependency */, - F5B5380FEFC538A14D5AF602B6617FB4 /* PBXTargetDependency */, - CEC714C799C863556255F7E47D262133 /* PBXTargetDependency */, - 5B0A080870D838A09FD866DA7D74B188 /* PBXTargetDependency */, - CD06F6C61FC03C4A1FEABD8EFA009477 /* PBXTargetDependency */, - 56DDA995365F076F7D389167353DBA30 /* PBXTargetDependency */, - 4C00D4B0499506222AC4335E74B4C0FC /* PBXTargetDependency */, - 00019FE95FDE57DF59DEF6CB6584B979 /* PBXTargetDependency */, - B3330F858C68057D6B96BB9332BF5973 /* PBXTargetDependency */, - 22953203C195D2A14F5D4178F5081EFB /* PBXTargetDependency */, - 73942F1FB70583245C4BF0EDCD0390FD /* PBXTargetDependency */, - 25CB17AD4E0491908129641B7F2CFB47 /* PBXTargetDependency */, - 463C419D9CD036D7C5C7213CCEA53EAD /* PBXTargetDependency */, - C31B79A133754B0DE8A7A9E2F0EF4B84 /* PBXTargetDependency */, - 255AA89D2BB4B43E4AC4E1A59A6C6E91 /* PBXTargetDependency */, - 0400C1600E15C06C0D479951AB87F642 /* PBXTargetDependency */, - FB76D312E47F7F54570A83C53DDC6C93 /* PBXTargetDependency */, - 256B2A2EDF157FC871EDE0F327798D00 /* PBXTargetDependency */, - 4F96F86C76C4F4600F00EBC86ED7CAAD /* PBXTargetDependency */, - 6CCABCC25AC761C763386E151382DA91 /* PBXTargetDependency */, - 0471B3A8FAE2ACF2E44A3D51125EC0CA /* PBXTargetDependency */, - 272B2EB94DD4626CCA3CBA95EECAF0C7 /* PBXTargetDependency */, - 82713BE1E36688073F106C0DCE79A3E1 /* PBXTargetDependency */, - 09CCCB7175E7A4F0C316DEEF6E85A36C /* PBXTargetDependency */, - 458D68136C04A057A871D363D6C3D00F /* PBXTargetDependency */, - 03427078A26C27E2AC59B1FEF2CC7342 /* PBXTargetDependency */, - 0A144D868CDAC35BAF5644E1E78977DB /* PBXTargetDependency */, - CBF7CFA0725D4A6F2E6BE965E86A2959 /* PBXTargetDependency */, - B42325E223B98CDDB0598E704FA784F7 /* PBXTargetDependency */, - C3F2E6DBA5CB883DE2818A378D4227DF /* PBXTargetDependency */, - 95CFBD8CB1EFA82CC90E274BD1F42D8F /* PBXTargetDependency */, - 74B9BAB65A26B16F52C35E6CAABEB207 /* PBXTargetDependency */, - A6A8726D1291B86860C4DB9A5AB1CBA2 /* PBXTargetDependency */, - 8B20FE39F23CDF3EA619E8A46BB85F33 /* PBXTargetDependency */, - 54C54B474FC5C7C8CD9B783B34D06AEE /* PBXTargetDependency */, - 2624D32565768A6DE2219F741287151F /* PBXTargetDependency */, + 7EB1ED9127361EF3A03F27B0AB70C1C8 /* PBXTargetDependency */, + A3E6C3079D44BB63932AFB431F98A2A9 /* PBXTargetDependency */, + 2F50FEEB761C8413B87417A156525F82 /* PBXTargetDependency */, + 6BCF3BA1230E1F375585E94C838D6FBA /* PBXTargetDependency */, + 502DFE72AEACCC19A74D9231DA111F5B /* PBXTargetDependency */, + 32EEAB72BBAC5F9CB92AF756E52D0844 /* PBXTargetDependency */, + 6F5B22E149BD86D224D41BFCAA73224E /* PBXTargetDependency */, + B956517A84C409F58AB6C77E9CB1E9C1 /* PBXTargetDependency */, + 348A07207B670FA71AFC6C2AAB66C590 /* PBXTargetDependency */, + 157F47C3A19482E362E01C0330A205B1 /* PBXTargetDependency */, + A5732050F78081636B10A3A8B0A0766B /* PBXTargetDependency */, + 5EDBBEC07A23598F754577E66579FA1D /* PBXTargetDependency */, + 60712CFD07B4A7E038293D114B0D9A06 /* PBXTargetDependency */, + 388B737B55E5B89E391E824B69D82288 /* PBXTargetDependency */, + 140375B06FC5F9A76C5E9ABB4FE04344 /* PBXTargetDependency */, + 75B2834C77D0DBBFF1B07861E410377F /* PBXTargetDependency */, + 144E4C35617729A86CD4FF44B166E734 /* PBXTargetDependency */, + 23C4A11C33F10C0583AF34A2407AFB25 /* PBXTargetDependency */, + AA3D80D95A98C52E5CD9620DAF320F3E /* PBXTargetDependency */, + 53D7A5F5995E4E2471570CE7801A9728 /* PBXTargetDependency */, + 78C777A886CBDCA34697A92C4C8CC2FA /* PBXTargetDependency */, + DDDA4EB3DA03DE1887340281583DDCC3 /* PBXTargetDependency */, + 770D302F3C474BFD9A37B257E1C50F64 /* PBXTargetDependency */, + CE5DBF416540A0900B9A3E04417C79C1 /* PBXTargetDependency */, + 8A36DC6E70FDC94BD196975187ACD276 /* PBXTargetDependency */, + F6E20F3E335362AD43BEE039B97FDDB3 /* PBXTargetDependency */, + 05DFC68824B46988B0C58CC0CF0B57B4 /* PBXTargetDependency */, + 14ADCBF0A92340515CA2BD6E001C2D81 /* PBXTargetDependency */, + BFB9BC83FC6F9B11358B96C5048CC80D /* PBXTargetDependency */, + 92C5C042AF8AAA861CF2743EADF4E6FF /* PBXTargetDependency */, + 3BD3EE1E5105EAEEAF0D11D19C3C9FD8 /* PBXTargetDependency */, + 5C53E848C76E93AD6BA86FE294F1B595 /* PBXTargetDependency */, + A462F8A52AFE46C1626966A092DDE544 /* PBXTargetDependency */, + 341AF360FAA15447C77C8DB4BFEA30B4 /* PBXTargetDependency */, + 98072C6FE27C2A4274B575042DF10CFC /* PBXTargetDependency */, + DEBF67157E41E671BB103B9ED4A8E6A2 /* PBXTargetDependency */, + 0168EBAFADAE71729DBF39EF31138044 /* PBXTargetDependency */, + 8518B9FE580966A2219411356FA27AEC /* PBXTargetDependency */, + B483FF620315D6136BBBA720BF24E2C0 /* PBXTargetDependency */, + CD8C9BD32F9967D12E2062698D9FEE0C /* PBXTargetDependency */, + 8C1C6605374664DB6889301C22135674 /* PBXTargetDependency */, + 9C128D3C67B747A041EBA3A0A929EE18 /* PBXTargetDependency */, + AEE2842BEBF490C25CC5E59F0C197C73 /* PBXTargetDependency */, + 821EF3A26C7A07959049DC79661519ED /* PBXTargetDependency */, + E647EA9187D61F3B6A3E954856A89EF6 /* PBXTargetDependency */, + 62B079F9EFF6C87182A1B98165EB3A62 /* PBXTargetDependency */, + 1557758883DD71042805D8B78D8B0513 /* PBXTargetDependency */, + 08052F0EB22B7D8C2E525C8F5F339BD8 /* PBXTargetDependency */, + 241316BD3A14BF926E7EE356C8DDBE36 /* PBXTargetDependency */, + 4AAE14732FAA22D9559AD09C8DFF3D60 /* PBXTargetDependency */, + 8F5D768BF4B58D001613850E6E906FF9 /* PBXTargetDependency */, + 46F470A772C978EE7B7C65EC9C5CAE4D /* PBXTargetDependency */, + C1C2F47F9D419FE29082E71BAA4CEDF2 /* PBXTargetDependency */, + 426E1A8A0FC8425B37837F9BB19FCE28 /* PBXTargetDependency */, + 55A6414CE43314A0FF74A4A655D2ACE6 /* PBXTargetDependency */, + F8D087F207884BD67D8419DBFC42DA60 /* PBXTargetDependency */, + 06D2AF652DE4A20FBFFC9A3A7F7CC594 /* PBXTargetDependency */, + 14ABE0B0FABE382EBB16A92289A537EB /* PBXTargetDependency */, + B6687916DC4E793144C5E09A2C902D79 /* PBXTargetDependency */, + 8F82A6375FB5031313D4316199D5A40B /* PBXTargetDependency */, + 49F2EEBD307EAF14FE5BEF1D20B4E4E9 /* PBXTargetDependency */, + 852B399F834130631EFC0AE319E75444 /* PBXTargetDependency */, + 359A85FEE4974774ADAEF2585A2F17FC /* PBXTargetDependency */, + C12489C924650BE43DC83CC2B04EC345 /* PBXTargetDependency */, + 8392DAE3FC893D9507F5742153376683 /* PBXTargetDependency */, + D366AF5AA34EE0364F31AEC4EE0B79CF /* PBXTargetDependency */, + 68A13C16CC62987F2D03B91B4E1AFE98 /* PBXTargetDependency */, + A21C18D2F5B38D352EF7874ECBE902A1 /* PBXTargetDependency */, + 2F628A89D170110F27D8EC6C5F5709A0 /* PBXTargetDependency */, + 14E304E88DF47C3E6BA8ADD7A1F76B82 /* PBXTargetDependency */, + 00C33680BA4CBA709B0943CA1292E906 /* PBXTargetDependency */, + 182D80915C248C4581562B3B3495CBED /* PBXTargetDependency */, + AEF941BFCF117859484BA872F3BD2195 /* PBXTargetDependency */, + BD5326CE55623518EB6D4B9F0FF2E356 /* PBXTargetDependency */, + 546FF109AB8A64A790F6AC6BCE24F333 /* PBXTargetDependency */, + E8F5B5CE62CAACD23D0CA4B6DA0B0312 /* PBXTargetDependency */, + 19D7747E48CF2B7AC31A8BADBBB5B0BC /* PBXTargetDependency */, + 5DEE5D35F2CAD449E0016AC1E37B580C /* PBXTargetDependency */, + 0963C99A8773AB297CF290A6E83CCF33 /* PBXTargetDependency */, + 27AD14A93652207AA406B72E195770D5 /* PBXTargetDependency */, + EEE4A28EEF8F2184E2714A94D5592EB7 /* PBXTargetDependency */, + 9164664D6E5526F941CECCAB1AF99082 /* PBXTargetDependency */, + 7C3A9E0B3A8E4A2082F0E72CB544151F /* PBXTargetDependency */, + 7393D59A2C2894D2B4C0C83C7C6ACB63 /* PBXTargetDependency */, + 3FFFCA5A9BB66AE038122AE6E0F5DA18 /* PBXTargetDependency */, + 70F2D2BEA57A04770D0B7D161A1C1712 /* PBXTargetDependency */, + E31D6209DC0CB354B3316D3B64C8069C /* PBXTargetDependency */, + 3E8A7144C120FB10E89259AD64A5DA60 /* PBXTargetDependency */, + CE1086E0CDA2DC19BEA6768B2A541FBD /* PBXTargetDependency */, + C5D38C42E0A4FA202D1D01C5F8DE5F7E /* PBXTargetDependency */, + C896290E8B7334509E7CA25C6790A37A /* PBXTargetDependency */, + 9BD9DCB3EA80A295A3C317E10739054C /* PBXTargetDependency */, + FAEB7CCA75B6BFE7A91D752FD8FE608C /* PBXTargetDependency */, + 003D965C76BC2EEAD13A169E345CDA25 /* PBXTargetDependency */, + E976F471FD8088D128B3BC524A08BC4E /* PBXTargetDependency */, + FC0FB1EC6B447C8963AC8C3FA16DC922 /* PBXTargetDependency */, + 6C80EC19F4D3537DB112414C64D36EE2 /* PBXTargetDependency */, + A59536C7C6A8ED022C20FD780E721468 /* PBXTargetDependency */, + 32F837E0040B83668F78242CA9ED301B /* PBXTargetDependency */, + A4ED7BD013639E35F6FBE91105B483A0 /* PBXTargetDependency */, + D4C83ACB54F85CF142AC8CB783A577A3 /* PBXTargetDependency */, + 652AC1D6FB911E4621ABFDF21DD13EE2 /* PBXTargetDependency */, + 916A70725AD078F06C954E7ABEF11B59 /* PBXTargetDependency */, + 065471FB7AF24DAE76996332A4D0AF6B /* PBXTargetDependency */, + C63E89CEF98ADB2120BF29C9C86333AD /* PBXTargetDependency */, + 8A0B65F049C0627C56473D4874BFD2F6 /* PBXTargetDependency */, + EF7D5C684E28A26C507980A5D30C9824 /* PBXTargetDependency */, + 0C5534C50F2C4A67C15DB8F6C9BC4C9E /* PBXTargetDependency */, + 624B9D228F9728753146178D52BAE008 /* PBXTargetDependency */, + 26A05EFD224D40AAD192B47943D292EC /* PBXTargetDependency */, + EC1332DC4573FB5ADCF53D9321043F24 /* PBXTargetDependency */, + 0D2750490737A5118361A5CA7C32ED1F /* PBXTargetDependency */, + 7FC2F75E4B465ADF67A7FF79A611FAED /* PBXTargetDependency */, + 8E122AF451DEE6AF1026273409B58A25 /* PBXTargetDependency */, + A1ABD34A0C90F09892F7B35F8B6F81DB /* PBXTargetDependency */, + 12225DBE2492CA8745954600F904746E /* PBXTargetDependency */, + B97C112DEA5E2EFBADEBC29F6ED4EB9E /* PBXTargetDependency */, + 50C71934CF7A737F3341E0362ACF279B /* PBXTargetDependency */, + 0EB4BEBDB3BB50632CDE55F967D49075 /* PBXTargetDependency */, + F4AE9D849E46E86D9CC2B566CFED2A4E /* PBXTargetDependency */, + 3F2F395C8E8F146FE5AA9C70DBC90FB7 /* PBXTargetDependency */, + F274422E7D74DD9E0958853D80D3DC3F /* PBXTargetDependency */, ); name = "Pods-NotificationService"; productName = "Pods-NotificationService"; @@ -28507,18 +28418,18 @@ }; E3573FB7AF659C42B699003C73722241 /* RNFBCrashlytics */ = { isa = PBXNativeTarget; - buildConfigurationList = 5B2A57B655D0C4D73337CAB3CAD9D412 /* Build configuration list for PBXNativeTarget "RNFBCrashlytics" */; + buildConfigurationList = 5D4489577280AF45E2511971E63FD184 /* Build configuration list for PBXNativeTarget "RNFBCrashlytics" */; buildPhases = ( - 8F155CCA5E2429F0E2369C269756BF6F /* Headers */, - 3E0DEF9FC3A26DB1726EB23389D8FB65 /* Sources */, - B9F15CC4E7A790B8CB98BD8F59D38587 /* Frameworks */, + 4E309FB4EFED52ACA0DE5FE226E2B689 /* Headers */, + B236C993A45FE539A14236B2AA79A2ED /* Sources */, + 7C994E2693E4DAD9E2A08EA009E249E8 /* Frameworks */, ); buildRules = ( ); dependencies = ( - 7A2F78619B9DA1DA26C4C2DF17D10040 /* PBXTargetDependency */, - B097C6CC688C0DC611360588B51A3A19 /* PBXTargetDependency */, - 9FC9F16B91C53985F4203E72D7906D9C /* PBXTargetDependency */, + A262058FD2385CD19E34342284FA8262 /* PBXTargetDependency */, + D3A5293D7DFF5308272384C91F6D4F38 /* PBXTargetDependency */, + F7892B3E03D0FA64A268F4B02D4DA26F /* PBXTargetDependency */, ); name = RNFBCrashlytics; productName = RNFBCrashlytics; @@ -28536,8 +28447,8 @@ buildRules = ( ); dependencies = ( - 61950E67A93F97858EDFCE1632BE83C5 /* PBXTargetDependency */, - 5160311C4B3DF8B82A18573769318B2E /* PBXTargetDependency */, + 9E222CD13864A589DA82947E33BE3C58 /* PBXTargetDependency */, + DE1CFA6C58C9DFC21D1140ED992FA283 /* PBXTargetDependency */, ); name = Flipper; productName = Flipper; @@ -28546,19 +28457,19 @@ }; EC55D52694092A9D0E6A78EB01207EB5 /* RCT-Folly */ = { isa = PBXNativeTarget; - buildConfigurationList = A9418F3356E9D639DE3B582A62A0F26E /* Build configuration list for PBXNativeTarget "RCT-Folly" */; + buildConfigurationList = B1A08AA7741768A0CBCBAAFD49388A6C /* Build configuration list for PBXNativeTarget "RCT-Folly" */; buildPhases = ( - 80FB1444113C9E94F05E53D15C6F9A4F /* Headers */, - 05BEC13212AEDEC17ABAA4DE825335CA /* Sources */, - 922C8248D4EBD9723ABBB0E242C6B7D8 /* Frameworks */, + 70826F47AE607D404D12F038A0C45B9D /* Headers */, + B3C84B75D9D32B5DA09393676FBB5BCA /* Sources */, + A1EF0D79437B785899BEA7327393B5A6 /* Frameworks */, ); buildRules = ( ); dependencies = ( - 6CDFF65E190BEC7742DFD0C47B1BAC57 /* PBXTargetDependency */, - 479960C4AA6B3A33AEA092B857CB012F /* PBXTargetDependency */, - CA9798E332A9E07CF824D14FCE414241 /* PBXTargetDependency */, - CA5FD549A66016727AC9192BF15184C9 /* PBXTargetDependency */, + B8D11963AD0DA766A2B5696BC42A5FE7 /* PBXTargetDependency */, + 8B35ABA1DA0BE1D272C1160A72CBFD99 /* PBXTargetDependency */, + A08AAF87EA62CFF19578F0B0191DFAC8 /* PBXTargetDependency */, + CEE1D4EA2CEA35F6C782E150784C91A0 /* PBXTargetDependency */, ); name = "RCT-Folly"; productName = "RCT-Folly"; @@ -28576,7 +28487,7 @@ buildRules = ( ); dependencies = ( - 2D2BC283507A1CDC452274D1184C30B9 /* PBXTargetDependency */, + D0E88E030AF4CE20C3769B99C44EAEC2 /* PBXTargetDependency */, ); name = "react-native-netinfo"; productName = "react-native-netinfo"; @@ -28594,7 +28505,7 @@ buildRules = ( ); dependencies = ( - 928C21EA797C87A395A5946C53F95C49 /* PBXTargetDependency */, + C55A571CEB638EECD3BDA32F3554BFEF /* PBXTargetDependency */, ); name = "react-native-blur"; productName = "react-native-blur"; @@ -28603,11 +28514,11 @@ }; F1E2583679398CB5F4D2B3272E9B198F /* React-perflogger */ = { isa = PBXNativeTarget; - buildConfigurationList = C5BB32007235C20C0E8E3DFE7283D558 /* Build configuration list for PBXNativeTarget "React-perflogger" */; + buildConfigurationList = 5F65FA6882BD47AEE629468595AD0951 /* Build configuration list for PBXNativeTarget "React-perflogger" */; buildPhases = ( - 2F123C27578F21D69D6E5335E49EE008 /* Headers */, - 88DEBFC710596C8B85EDED1F6FBE8F0D /* Sources */, - 0A1622D4B45E86D4BA47153B70CCC6E8 /* Frameworks */, + BDA6BC738A94256A92E8177962F4BADF /* Headers */, + 1635582E1CF3B2CB68CC8DB9C3385231 /* Sources */, + 33773628A1ADE3BCD75642EB4877F697 /* Frameworks */, ); buildRules = ( ); @@ -28620,53 +28531,34 @@ }; F3966F664F3CFAEFAB57C40FB54D3788 /* TOCropViewController */ = { isa = PBXNativeTarget; - buildConfigurationList = D3635C43092350A9658F45219FDD06BB /* Build configuration list for PBXNativeTarget "TOCropViewController" */; + buildConfigurationList = 8BD1D9A0B423BF5547B5718C9E95BD73 /* Build configuration list for PBXNativeTarget "TOCropViewController" */; buildPhases = ( - CDFEB92254204B59215A657C81EDF8EF /* Headers */, - 828495AB72C71455A73BC8E18217A0D9 /* Sources */, - 886C32514753C74BF10F98AD5099DBFB /* Frameworks */, + F52BD122185CF56FC1C2AC0876E593F5 /* Headers */, + 6BE32CA723C12C0E18FD2F85616347DC /* Sources */, + 2A23B11F857A7454B871D819542E44B7 /* Frameworks */, ); buildRules = ( ); dependencies = ( - E0AFAFB364F2415037F442019DDB462A /* PBXTargetDependency */, + 7C9F6B2DBED7307062EE0A2C7F4729AE /* PBXTargetDependency */, ); name = TOCropViewController; productName = TOCropViewController; productReference = 7862C607B7BE0510C2D65193F9B4B4F9 /* libTOCropViewController.a */; productType = "com.apple.product-type.library.static"; }; - F4F25FCAC51B51FD5F986EB939BF1F87 /* GoogleDataTransportCCTSupport */ = { - isa = PBXNativeTarget; - buildConfigurationList = F458FE1B19CFE8F0B657E816011EB44C /* Build configuration list for PBXNativeTarget "GoogleDataTransportCCTSupport" */; - buildPhases = ( - 3CEA2DF12B20CE68007F12E6148E43D6 /* Headers */, - 43A119EF14E22939F23C607A1640763F /* Sources */, - B16361FAE64D27E46BE21FB0DFE5B6CF /* Frameworks */, - ); - buildRules = ( - ); - dependencies = ( - C5374E851E61A1466AF6097849D2E157 /* PBXTargetDependency */, - 3DB878DC35EB343695DFAC78AC7E6C0C /* PBXTargetDependency */, - ); - name = GoogleDataTransportCCTSupport; - productName = GoogleDataTransportCCTSupport; - productReference = 6942351307BC1F54575D9853307EAE0E /* libGoogleDataTransportCCTSupport.a */; - productType = "com.apple.product-type.library.static"; - }; F7845084F0CF03F54107EEF7411760AD /* UMPermissionsInterface */ = { isa = PBXNativeTarget; - buildConfigurationList = E90E1F1D1CA0986675C407B246AA0762 /* Build configuration list for PBXNativeTarget "UMPermissionsInterface" */; + buildConfigurationList = B8471EA43C46B2496A5165308C483B57 /* Build configuration list for PBXNativeTarget "UMPermissionsInterface" */; buildPhases = ( - 5478F662965269BAE2BA99EDD5EAC7E8 /* Headers */, - 7F3B84595DB6781E0A0C8CE1129FFEAD /* Sources */, - C44BB04015DF2257CD7DBA77075BE16F /* Frameworks */, + A713D0A985AB9351EADA2CF3E2A92585 /* Headers */, + 0688AD99ED200F76CDCEC4C3AD8370B4 /* Sources */, + FDF77490ABFD2D1AE6A249E3DCE6B4F1 /* Frameworks */, ); buildRules = ( ); dependencies = ( - 42A98B3B6148F4B205FDBEA7B4226514 /* PBXTargetDependency */, + 1EBAE91F75F208CA7D23DCE5F02883CA /* PBXTargetDependency */, ); name = UMPermissionsInterface; productName = UMPermissionsInterface; @@ -28675,11 +28567,11 @@ }; F7D033C4C128EECAA020990641FA985F /* React-jsinspector */ = { isa = PBXNativeTarget; - buildConfigurationList = 3E9771AB8600DE7494AE5916BEAC47CE /* Build configuration list for PBXNativeTarget "React-jsinspector" */; + buildConfigurationList = ECB5FD8E475689E9E4F952DFD9165BED /* Build configuration list for PBXNativeTarget "React-jsinspector" */; buildPhases = ( - 7FB1440899B31631197424CB3C537FAC /* Headers */, - E8861E1DBD8B874B1A985DE947DDE3BE /* Sources */, - 4927BD1B98A84A2C86C7AB0612955C10 /* Frameworks */, + 47AB2CC49F96FBCCF38734535D404809 /* Headers */, + 0D190A7823CEC8E8E4717E3B54AE6BEC /* Sources */, + 60EF3A54828FCA6B321B5D018A52C2F3 /* Frameworks */, ); buildRules = ( ); @@ -28692,19 +28584,19 @@ }; FA877ADC442CB19CF61793D234C8B131 /* React-jsi */ = { isa = PBXNativeTarget; - buildConfigurationList = D7BAC07A83F765F4B109C68135DE7246 /* Build configuration list for PBXNativeTarget "React-jsi" */; + buildConfigurationList = 0570B039E87B9E024B843A786AAB8BEB /* Build configuration list for PBXNativeTarget "React-jsi" */; buildPhases = ( - 33D4CDB1F7C602C0EF2DE2B86E4E2B88 /* Headers */, - BCC991817AE4F19B3009D52EE4D80827 /* Sources */, - E12E6A6310A53994D5F1643B28B9BCCF /* Frameworks */, + 5518B09871F5662908C462BDCE8BCFC4 /* Headers */, + 5B61EC9754DA3819B296AD0684A20B4F /* Sources */, + F193F515851F02984CBBAB54FE72E57E /* Frameworks */, ); buildRules = ( ); dependencies = ( - 95B9F3BCA83B8222EFBEEE623EC62AB7 /* PBXTargetDependency */, - 48E0C5099E0CB4EBE379D7880E3D5156 /* PBXTargetDependency */, - 2D29D6D3D6B8D209F463606A0C6E8DD7 /* PBXTargetDependency */, - 9FC16006E154CCC6FA16881BC112BEEA /* PBXTargetDependency */, + 3FAEA8DDC8F1E6E39BF3C90EF5466F20 /* PBXTargetDependency */, + EC02357109524B8BF8E396A72D1C8384 /* PBXTargetDependency */, + 1A842A0A9675FF795D5C030B11D57C41 /* PBXTargetDependency */, + FD2314F92341141CFFD13EFA3DD35A4A /* PBXTargetDependency */, ); name = "React-jsi"; productName = "React-jsi"; @@ -28722,7 +28614,7 @@ buildRules = ( ); dependencies = ( - 454D18E4665AA10CD37FD76389ED4004 /* PBXTargetDependency */, + 3022E49F99BCFF614637B9A72C8F1DFF /* PBXTargetDependency */, ); name = RNReanimated; productName = RNReanimated; @@ -28735,8 +28627,8 @@ BFDFE7DC352907FC980B868725387E98 /* Project object */ = { isa = PBXProject; attributes = { - LastSwiftUpdateCheck = 1240; - LastUpgradeCheck = 1240; + LastSwiftUpdateCheck = 1100; + LastUpgradeCheck = 1100; }; buildConfigurationList = 4821239608C13582E20E6DA73FD5F1F9 /* Build configuration list for PBXProject "Pods" */; compatibilityVersion = "Xcode 3.2"; @@ -28747,7 +28639,7 @@ Base, ); mainGroup = CF1408CF629C7361332E53B88F7BD30C; - productRefGroup = 8BCDA242335B32DDD47E0EF491D17437 /* Products */; + productRefGroup = 4F63390788DFA62439205658CA452C71 /* Products */; projectDirPath = ""; projectRoot = ""; targets = ( @@ -28784,7 +28676,6 @@ D0EFEFB685D97280256C559792236873 /* glog */, B53D977A951AFC38B21751B706C1DF83 /* GoogleAppMeasurement */, 5C0371EE948D0357B8EE0E34ABB44BF0 /* GoogleDataTransport */, - F4F25FCAC51B51FD5F986EB939BF1F87 /* GoogleDataTransportCCTSupport */, 8D7F5D5DD528D21A72DC87ADA5B12E2D /* GoogleUtilities */, 985FEA01F314F3C00F0C1E1181E6C4A5 /* hermes-engine */, 5B40FBDAD0AB75D17C4760F4054BFF71 /* JitsiMeetSDK */, @@ -28887,65 +28778,86 @@ /* End PBXProject section */ /* Begin PBXResourcesBuildPhase section */ - 00E0BDC305BAB9E57DA2B8EE7636DFDB /* Resources */ = { + 967FEA376A7A04FD0BF954B155699393 /* Resources */ = { isa = PBXResourcesBuildPhase; buildActionMask = 2147483647; files = ( - 873D5BBC800EC81BA055921080E0AD26 /* en.lproj in Resources */, + 6C67C1E9F1624444EE1567C8A4398E22 /* en.lproj in Resources */, ); runOnlyForDeploymentPostprocessing = 0; }; - 1CDF264D79F4FF1E8BFA81C7C3CE6617 /* Resources */ = { + 9B3E75B881362E2A58FEFB52503BD0C6 /* Resources */ = { isa = PBXResourcesBuildPhase; buildActionMask = 2147483647; files = ( - F3D1277CC08C275020B3DCDDC03630CF /* ar.lproj in Resources */, - 1356281DF6E2E54C8DD966A31CCCC430 /* Base.lproj in Resources */, - CC3B88AB958F404688AE62BDA3A6C3A5 /* da-DK.lproj in Resources */, - 6AD7DAA8CF490793B3134CD081131277 /* de.lproj in Resources */, - 7764F4863A8FA97FD68D7978A7679691 /* en.lproj in Resources */, - 07D433A912EDD1208E6C857BFDAAAA46 /* es.lproj in Resources */, - C36D239092F494BA227E1E009150FA44 /* fa-IR.lproj in Resources */, - D208C88D025D7E970BB9010A96C747C1 /* fa.lproj in Resources */, - C51547B8E83E413BD853C0992A778242 /* fi.lproj in Resources */, - 92470F6719AB3B3AAA122E66ED371ADF /* fr.lproj in Resources */, - 5FEE5BDBDE95EC8E66EA8D23D50D2EF8 /* hu.lproj in Resources */, - 996D279A4E7172BE58B81521E7A164B3 /* id.lproj in Resources */, - 33325583D03F08A5A8004F9B8219253E /* it.lproj in Resources */, - 284D8A228174B9C50C29853A1D48BCD5 /* ja.lproj in Resources */, - 53C524B776B176967BC868CF2F36B40F /* ko.lproj in Resources */, - E51BF3266E364412BE10CFAF038B0327 /* ms.lproj in Resources */, - 4DEE22EEF03836691A02E9D3A4A77664 /* nl.lproj in Resources */, - FC68F89AE74DF9CAEBBECD03626CDAB7 /* pl.lproj in Resources */, - B90BC90D6C772811A4998C72B965F487 /* pt-BR.lproj in Resources */, - 3F5457418BEF647D02B131A6E0470981 /* pt.lproj in Resources */, - F53E3E1E16D23A3C1C612D460BB12515 /* ro.lproj in Resources */, - 4A71F821E54673C99BC36A7E0C8559DD /* ru.lproj in Resources */, - 901A21999171DB399A3D9A5EFE5F3982 /* tr.lproj in Resources */, - 668A490D69CB85D2AFC31BFCACAAD08D /* vi.lproj in Resources */, - 635D49C9DC370EF32ABABED4F2A82DC7 /* zh-Hans.lproj in Resources */, - 6E4370E000F3BCE9094F9EC550AFCE42 /* zh-Hant.lproj in Resources */, - ); - runOnlyForDeploymentPostprocessing = 0; - }; - CE184DB926BB1665815AA7E15DE3C0CE /* Resources */ = { + B08545125769C7F95AF127147486F723 /* de.lproj in Resources */, + 4D77D6E62543FD0D02916498ECC84D27 /* en.lproj in Resources */, + B6534813237F86480BFE498E9C27EF20 /* es.lproj in Resources */, + E570B34E0C367875F0F6F8C1632CFCAB /* fr.lproj in Resources */, + ABF909CD5DB6CF6781E387C6B0C77D73 /* ja.lproj in Resources */, + 326F40F02FABF3A5A19E7503ED2A9E81 /* pl.lproj in Resources */, + E087BC9F8916EC9E088076C26E572A27 /* QBImagePicker.storyboard in Resources */, + 671527222FBCF49129961A432AF9B5F1 /* zh-Hans.lproj in Resources */, + ); + runOnlyForDeploymentPostprocessing = 0; + }; + B5D30FEC8F8AE5DF3FFE403C0909B065 /* Resources */ = { isa = PBXResourcesBuildPhase; buildActionMask = 2147483647; files = ( - 8C02B4C2C15F9CE5B9E2E6093EF8F870 /* de.lproj in Resources */, - 5FD7A5D93B82A94BF6C30EAD75A929CD /* en.lproj in Resources */, - 50F61412775FE7D4FE7BBF73B6AC4B8F /* es.lproj in Resources */, - C6D877AC27DE164D09C71E13AD485D57 /* fr.lproj in Resources */, - 8F655760E09FBC3301FAA0051E37D708 /* ja.lproj in Resources */, - 80A1125795308BA217DCA8B8694A9BD5 /* pl.lproj in Resources */, - ED5D88309179900553D4065574C01DC4 /* QBImagePicker.storyboard in Resources */, - D2307735353F2006466FDE9A67651D61 /* zh-Hans.lproj in Resources */, + 6F2E0B10F1838A145910B03EB5306FBF /* ar.lproj in Resources */, + 959DBC5269F66A4E45307D812CAC8A13 /* Base.lproj in Resources */, + 3E16AE7E47F2B3E0D83160DF17629140 /* ca.lproj in Resources */, + 18C0C6D3BB140055DA991CF3135DAFB7 /* cs.lproj in Resources */, + 5B8AC75584CABD500B3A795998C5B31F /* da-DK.lproj in Resources */, + 80858FBAF26FDF6CCBA2BA39391070E8 /* de.lproj in Resources */, + 4A4BB0231234CF86A712668287C611F0 /* en.lproj in Resources */, + 9F3199B1456F647E1538B361D5AA844A /* es.lproj in Resources */, + 1E017DB7F25D88D4B6350E2EE787F74C /* fa-IR.lproj in Resources */, + B25AC73117F4BB0CAD549D27E2BAE026 /* fa.lproj in Resources */, + 9300E2527B1AAB50A6B6E7D6F27D8241 /* fi.lproj in Resources */, + EFDCEFE1E3D33037E50C51F970677092 /* fr.lproj in Resources */, + 17F0CB39736C0ED3CBA5E45539700047 /* hu.lproj in Resources */, + 7CAB22F58D0D070B4689DF0D935B4578 /* id.lproj in Resources */, + 8F7E13D0584F6D9AD293E09F81EF40F9 /* it.lproj in Resources */, + 92A8797AB1CC29C32C7692A1B523652E /* ja.lproj in Resources */, + 5245E703C2AEC1B3AFE6398B8D02D6AB /* ko.lproj in Resources */, + 71BD3470BD6A15C46487FDF26EBE3C21 /* ms.lproj in Resources */, + 22C161B7A7E21ED0AB7F6260DF99E29A /* nl.lproj in Resources */, + 39F01D2871C164C3E61257660E2D12CE /* pl.lproj in Resources */, + CD4DE4A5F6C60C59A596C81F8E4D2AD5 /* pt-BR.lproj in Resources */, + 234632BFD6A50418CABA478FEC1314C9 /* pt.lproj in Resources */, + AC5FC3CF555EC20E05084E4336405A2E /* ro.lproj in Resources */, + 0038BF5B82BF92721A0B7766B9069885 /* ru.lproj in Resources */, + 9FEB0942791A4EB8D7BB77AB1317E34A /* sk.lproj in Resources */, + F026B31C0BA4DECFDD5F4534C719B9EA /* tr.lproj in Resources */, + FE431D692865CD057CEA9274B82F9B1D /* vi.lproj in Resources */, + 558AF7BF098D702362DA047A90370E80 /* zh-Hans.lproj in Resources */, + 4AA9444E0C79147834BB44858CD9B2A0 /* zh-Hant.lproj in Resources */, ); runOnlyForDeploymentPostprocessing = 0; }; /* End PBXResourcesBuildPhase section */ /* Begin PBXShellScriptBuildPhase section */ + 11D666AB037A0F31CF78B002D8561B73 /* [CP] Copy XCFrameworks */ = { + isa = PBXShellScriptBuildPhase; + buildActionMask = 2147483647; + files = ( + ); + inputPaths = ( + "${PODS_ROOT}/Target Support Files/OpenSSL-Universal/OpenSSL-Universal-xcframeworks.sh", + "${PODS_ROOT}/OpenSSL-Universal/Frameworks/OpenSSL.xcframework", + ); + name = "[CP] Copy XCFrameworks"; + outputPaths = ( + "${PODS_XCFRAMEWORKS_BUILD_DIR}/OpenSSL", + ); + runOnlyForDeploymentPostprocessing = 0; + shellPath = /bin/sh; + shellScript = "\"${PODS_ROOT}/Target Support Files/OpenSSL-Universal/OpenSSL-Universal-xcframeworks.sh\"\n"; + showEnvVarsInLog = 0; + }; 18136A62297395E492773A030744F323 /* Copy generated compatibility header */ = { isa = PBXShellScriptBuildPhase; buildActionMask = 2147483647; @@ -28970,7 +28882,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/react_native_simple_crypto/react-native-simple-crypto.modulemap\" \"${MODULE_MAP_PATH}\"\nditto \"${PODS_ROOT}/Headers/Public/react_native_simple_crypto/react-native-simple-crypto-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"; }; - 1823C66040CEB06687F1EF0782B7BF34 /* Copy generated compatibility header */ = { + 7EF11B716D2C52F85AD968782B91BD21 /* Copy generated compatibility header */ = { isa = PBXShellScriptBuildPhase; buildActionMask = 2147483647; files = ( @@ -28994,43 +28906,25 @@ 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"; }; - 3E210BA784CEBA16D1C0882FF8BA30F7 /* [CP] Copy XCFrameworks */ = { + B7895BDE7F6A861397F89DDEA1106859 /* [CP-User] Generate Specs */ = { isa = PBXShellScriptBuildPhase; buildActionMask = 2147483647; files = ( ); inputPaths = ( - "${PODS_ROOT}/Target Support Files/OpenSSL-Universal/OpenSSL-Universal-xcframeworks.sh", - "${PODS_ROOT}/OpenSSL-Universal/Frameworks/OpenSSL.xcframework", - ); - name = "[CP] Copy XCFrameworks"; - outputPaths = ( - "${PODS_XCFRAMEWORKS_BUILD_DIR}/OpenSSL", - ); - runOnlyForDeploymentPostprocessing = 0; - shellPath = /bin/sh; - shellScript = "\"${PODS_ROOT}/Target Support Files/OpenSSL-Universal/OpenSSL-Universal-xcframeworks.sh\"\n"; - showEnvVarsInLog = 0; - }; - A42E9530A98E0D506CF859F67001A8D6 /* [CP-User] Generate Specs */ = { - isa = PBXShellScriptBuildPhase; - buildActionMask = 2147483647; - files = ( - ); - inputPaths = ( - "/Users/diegomello/Development/Work/Rocket.Chat.ReactNative/node_modules/react-native/scripts/../Libraries", + "/Users/alexalexandre/Documents/rocketchat/Rocket.Chat.ReactNative/node_modules/react-native/scripts/../Libraries", ); name = "[CP-User] Generate Specs"; outputPaths = ( "$(DERIVED_FILE_DIR)/codegen-FBReactNativeSpec.log", - "/Users/diegomello/Development/Work/Rocket.Chat.ReactNative/node_modules/react-native/scripts/../React/FBReactNativeSpec/FBReactNativeSpec/FBReactNativeSpec.h", - "/Users/diegomello/Development/Work/Rocket.Chat.ReactNative/node_modules/react-native/scripts/../React/FBReactNativeSpec/FBReactNativeSpec/FBReactNativeSpec-generated.mm", + "/Users/alexalexandre/Documents/rocketchat/Rocket.Chat.ReactNative/node_modules/react-native/scripts/../React/FBReactNativeSpec/FBReactNativeSpec/FBReactNativeSpec.h", + "/Users/alexalexandre/Documents/rocketchat/Rocket.Chat.ReactNative/node_modules/react-native/scripts/../React/FBReactNativeSpec/FBReactNativeSpec/FBReactNativeSpec-generated.mm", ); runOnlyForDeploymentPostprocessing = 0; shellPath = /bin/sh; - shellScript = "set -o pipefail\n\nbash -l -c 'SRCS_DIR=/Users/diegomello/Development/Work/Rocket.Chat.ReactNative/node_modules/react-native/scripts/../Libraries CODEGEN_MODULES_OUTPUT_DIR=/Users/diegomello/Development/Work/Rocket.Chat.ReactNative/node_modules/react-native/scripts/../React/FBReactNativeSpec/FBReactNativeSpec CODEGEN_MODULES_LIBRARY_NAME=FBReactNativeSpec /Users/diegomello/Development/Work/Rocket.Chat.ReactNative/node_modules/react-native/scripts/generate-specs.sh' 2>&1 | tee \"${SCRIPT_OUTPUT_FILE_0}\""; + shellScript = "set -o pipefail\n\nbash -l -c 'SRCS_DIR=/Users/alexalexandre/Documents/rocketchat/Rocket.Chat.ReactNative/node_modules/react-native/scripts/../Libraries CODEGEN_MODULES_OUTPUT_DIR=/Users/alexalexandre/Documents/rocketchat/Rocket.Chat.ReactNative/node_modules/react-native/scripts/../React/FBReactNativeSpec/FBReactNativeSpec CODEGEN_MODULES_LIBRARY_NAME=FBReactNativeSpec /Users/alexalexandre/Documents/rocketchat/Rocket.Chat.ReactNative/node_modules/react-native/scripts/generate-specs.sh' 2>&1 | tee \"${SCRIPT_OUTPUT_FILE_0}\""; }; - B2DB92034D1C262AA0075292C432E764 /* [CP] Copy dSYMs */ = { + E8E4A920A6B4CECB3A14C60ED6EFCA99 /* [CP] Copy dSYMs */ = { isa = PBXShellScriptBuildPhase; buildActionMask = 2147483647; files = ( @@ -29050,27 +28944,30 @@ /* End PBXShellScriptBuildPhase section */ /* Begin PBXSourcesBuildPhase section */ - 01D752F3625FCDBCE657487CEBFB4116 /* Sources */ = { + 001102E053BFF893F82301A0294E0071 /* Sources */ = { isa = PBXSourcesBuildPhase; buildActionMask = 2147483647; files = ( - 78947210A83984AF9CA92D5382835733 /* FirebaseInstallations-dummy.m in Sources */, - B417219BDCE735A0005816B083301995 /* FIRInstallations.m in Sources */, - 0C9592D63976BC9282601AFCF81F19EF /* FIRInstallationsAPIService.m in Sources */, - 7E6F72747D10C9B7CD78587E9FE6884E /* FIRInstallationsAuthTokenResult.m in Sources */, - B69795678AEC78B288B9535BB47CFA19 /* FIRInstallationsErrorUtil.m in Sources */, - 2D9A653571B1C70BDE32D6C5314F0B6C /* FIRInstallationsHTTPError.m in Sources */, - 6347D3083AA8E9A98638C444C394A08E /* FIRInstallationsIDController.m in Sources */, - 786EAC74EB45E325C2F7139A5BFB2D88 /* FIRInstallationsIIDStore.m in Sources */, - E81E93C14C4A2EF29E40389982ED4E00 /* FIRInstallationsIIDTokenStore.m in Sources */, - 6F82B689E48C467E2CF41A3B6A759380 /* FIRInstallationsItem+RegisterInstallationAPI.m in Sources */, - 3C80B23F1A75FFF0AE88382E90F6110B /* FIRInstallationsItem.m in Sources */, - 27BB0973F6FF125510D96C52B8733B1D /* FIRInstallationsLogger.m in Sources */, - C0494C79337EC8400F085386EFCEC26C /* FIRInstallationsSingleOperationPromiseCache.m in Sources */, - 4B0AA0FF47AF0C550C254EA7E5479004 /* FIRInstallationsStore.m in Sources */, - 12D4E6E233529E574209605F3F1B6187 /* FIRInstallationsStoredAuthToken.m in Sources */, - ECEB3AB42101DDB0A76B27EE16178031 /* FIRInstallationsStoredItem.m in Sources */, - 740BDFD795EEEC91E8A49EF49555734B /* FIRInstallationsVersion.m in Sources */, + B70A8D37322FCF831E37757C19757E6A /* cct.nanopb.c in Sources */, + F3F7C1F66D5E697CF5FFE268EE5BF54A /* GDTCCTCompressionHelper.m in Sources */, + 50CAAF1C6E17D95C23508AE92FA86A05 /* GDTCCTNanopbHelpers.m in Sources */, + ACFFD87D769D09FEC5CBFFF624741B01 /* GDTCCTUploader.m in Sources */, + A9F459A848737A62C577CF588DB290FF /* GDTCORAssert.m in Sources */, + 50FC8A5A7904E6F9466C54F1D7BFAF61 /* GDTCORClock.m in Sources */, + 0CCF7F39735C5EB91000A061C7146D08 /* GDTCORConsoleLogger.m in Sources */, + E5A166266173B6CD031E0EC4B68F1AE2 /* GDTCORDirectorySizeTracker.m in Sources */, + C3AF72BC9CB9500B79F9E1EBD62A257B /* GDTCOREvent+GDTCCTSupport.m in Sources */, + 5DE52A7645C7068167B39396500A6E4C /* GDTCOREvent.m in Sources */, + 1648FD35A33B5EF8C8B58A3C2B697731 /* GDTCORFlatFileStorage.m in Sources */, + 5CC4145BB8D69FAE1DFC5B9D269BCC91 /* GDTCORLifecycle.m in Sources */, + 9097C32A4412DEEEEDACB4D3FC7B99EA /* GDTCORPlatform.m in Sources */, + 76F8D2D60500E7CD242206DB344C88B1 /* GDTCORReachability.m in Sources */, + C15D918A7ED03F67FD9826E73CEF0FB8 /* GDTCORRegistrar.m in Sources */, + AB0ADF421E59DE6725A304F9C8F75D33 /* GDTCORStorageEventSelector.m in Sources */, + E5B3F2E3BA3B4727A0B10D5A4CB7C808 /* GDTCORTransformer.m in Sources */, + BA0248CF8F84C578253187A5EC0AAB76 /* GDTCORTransport.m in Sources */, + CBE210C47A70A9DA8F0551437588E8F4 /* GDTCORUploadCoordinator.m in Sources */, + 27586E38B3FF97D714DC19F2D58728F5 /* GoogleDataTransport-dummy.m in Sources */, ); runOnlyForDeploymentPostprocessing = 0; }; @@ -29101,200 +28998,28 @@ ); runOnlyForDeploymentPostprocessing = 0; }; - 05BEC13212AEDEC17ABAA4DE825335CA /* Sources */ = { - isa = PBXSourcesBuildPhase; - buildActionMask = 2147483647; - files = ( - CCE3AC1E9995394EED23A43954C1756C /* Assume.cpp in Sources */, - DC0EB06A66F21984C2EB2E996098C5DF /* AsymmetricMemoryBarrier.cpp in Sources */, - FE91D4CE8EB1E5645B5EA03FD8AF7A5B /* AsyncTimeout.cpp in Sources */, - C2A9A93881649082F6BC3B439811FD4D /* AsyncTrace.cpp in Sources */, - F480B6E9D345916E799C85E993804112 /* AtFork.cpp in Sources */, - A6E6A61A5926512C598F2D930D4E4454 /* AtomicNotification.cpp in Sources */, - 37113E6861E12CD3E0C84DC1757B96FF /* Barrier.cpp in Sources */, - D157303F63B79D99F4E20DE11AF439B5 /* CacheLocality.cpp in Sources */, - 16007FC7639A9F54CCC0A44512716282 /* Codel.cpp in Sources */, - 3EADD986136F129665CF13F57A204699 /* Conv.cpp in Sources */, - A7023EF767996520E6C1098B4D640123 /* CPUThreadPoolExecutor.cpp in Sources */, - 1D0679D726977001CE033A643C628E85 /* CString.cpp in Sources */, - 234D274F9F5FFD3DA770F18B5B82BFDC /* Cursor.cpp in Sources */, - A47017A92B6E1B7454CAE81AC13B6D51 /* Demangle.cpp in Sources */, - 36E0163696574F8B786D05BA08F3D391 /* Demangle.cpp in Sources */, - D92DF2B418F87CF4D9ED49621C1EAB78 /* DistributedMutex.cpp in Sources */, - 8EF24FBD4186CB3967B9A668798F0EA4 /* dynamic.cpp in Sources */, - 283AFD452334B12F42705D0863AE779D /* EDFThreadPoolExecutor.cpp in Sources */, - 43F303705A6DC66874C32187C20F45CF /* EventBase.cpp in Sources */, - 50631BB3515A42658EE5F6727B379DC2 /* EventBaseBackendBase.cpp in Sources */, - C3CC5C2D318326E54F2BCE9CCC8D7D91 /* EventBaseManager.cpp in Sources */, - 7941AC9AFC2BDE8C9F65E4C1633F1AD8 /* EventHandler.cpp in Sources */, - 238014D7C36D9F7526816B138E188F1A /* ExceptionWrapper.cpp in Sources */, - E220520B33F0E2BB0B58F5DB6E7BE855 /* Executor.cpp in Sources */, - C7BF157D628A84C29ACDC5C41CB2D195 /* ExecutorWithPriority.cpp in Sources */, - A77D6938B7F3D9408D0B3B7EDD44D72F /* F14Table.cpp in Sources */, - CA4BF0650049C0816C537A89740D27E3 /* FileUtil.cpp in Sources */, - 23BE38F41651FCA01863B7A6577A49FC /* Format.cpp in Sources */, - AF2FEA8132BFD8DF55EE2EC0B9A17984 /* Futex.cpp in Sources */, - FA0C73AAE530EE6055621F5CDC948D93 /* Future.cpp in Sources */, - 930062A5A8C222364AD62FB680436D33 /* GlobalExecutor.cpp in Sources */, - 9A0EEA24210537F43E8DA92336DA3F8C /* GlobalThreadPoolList.cpp in Sources */, - BCECA4F80E7AE8459C0C0D8DF87D5DB9 /* Hardware.cpp in Sources */, - FA079F4E038F040BC1393469199594D3 /* HardwareConcurrency.cpp in Sources */, - 0BFA5DDABBF0AFF8F2A011E4BD9CD4B6 /* Hazptr.cpp in Sources */, - 820A37B2380C9A5F617F676F1BD63079 /* HazptrThreadPoolExecutor.cpp in Sources */, - 7D617B334260196169E0FE8AD7D20FCF /* HHWheelTimer.cpp in Sources */, - 044B767FF1D713F3352E021519FD4646 /* InlineExecutor.cpp in Sources */, - C23992AD3B76C2513FC792700ED6576F /* IOBuf.cpp in Sources */, - EF763F9D299027011E7E2D9D77FF645A /* IOBufQueue.cpp in Sources */, - D619026D176024695BC48B605229A5CA /* IOThreadPoolExecutor.cpp in Sources */, - 9CD7A18C212E1348BF32FF6AF5A105C1 /* json.cpp in Sources */, - 82B7894B29F805155E87F73CD2336CEC /* json_pointer.cpp in Sources */, - E4A0F70A4C1573A50E12ADDFCAB1818E /* MallctlHelper.cpp in Sources */, - 6E3A38C95DA5C2389A7AC4E99D7F7A29 /* MallocImpl.cpp in Sources */, - EAA8AEA1DF510379312DCF16E8ED4DA1 /* ManualExecutor.cpp in Sources */, - 327589EC8A6265707CCFE874EA642053 /* ManualTimekeeper.cpp in Sources */, - 303544A415680F1EDFE79AA7B091CEF5 /* MemoryIdler.cpp in Sources */, - 1ED9C70CDE3DDD6999ACAB0AA9FE9BAE /* NetOps.cpp in Sources */, - 7AC001C3E4B80BCF42D9B631D7DADABC /* ParkingLot.cpp in Sources */, - 6D4A26D55E85DEC9A4AACDECE47C81D8 /* QueuedImmediateExecutor.cpp in Sources */, - A6F4F2B55EAD7992311E5DB8727F38E7 /* RCT-Folly-dummy.m in Sources */, - F42FE2DAABBD5FA9F6CD238D8F09EF5D /* Rcu.cpp in Sources */, - 58913D434D1F05CD24A2CDB16D9E6986 /* Request.cpp in Sources */, - 34FEF1A443ACECD48D8BAF56D4E467AF /* SafeAssert.cpp in Sources */, - D8B8414B0EEDB283573099875A60B927 /* SanitizeThread.cpp in Sources */, - 509D010F95001E7A8176186A276EC9E8 /* ScopeGuard.cpp in Sources */, - 5E8C2383E95A9ABDEA362756F0EF1949 /* SerialExecutor.cpp in Sources */, - 1CCA91BC3B96B07AAD25258D201A58E6 /* SharedMutex.cpp in Sources */, - B2459278296D4635FAADE93B461C7330 /* Singleton.cpp in Sources */, - 04310196A7DE34EE6C10BACBB7BA0A07 /* SingletonStackTrace.cpp in Sources */, - 52D293AD9A91867323F5D527B2D6FD2B /* SpookyHashV2.cpp in Sources */, - 3A033B1083DF60512428067B1FAE1217 /* StaticSingletonManager.cpp in Sources */, - 66850B455CF11F763B39531A79717335 /* String.cpp in Sources */, - 9E52D50A55E938F8DDEBFCA82EA88363 /* SysUio.cpp in Sources */, - 3C0325CDBA1A56CDCD0C36F821AA4F3A /* ThreadedExecutor.cpp in Sources */, - CEB6202FE80A2AD4486BCF529B2352A8 /* ThreadLocalDetail.cpp in Sources */, - 4437790AFB5B075D85F7B21FEED15681 /* ThreadName.cpp in Sources */, - 2BB815DC23FADD07BD442AC043C800AE /* ThreadPoolExecutor.cpp in Sources */, - 4E08FBF5C951665935FE86F50D5658AF /* ThreadWheelTimekeeper.cpp in Sources */, - 2BE074B6CB1F2AC2A40231A8A4B80BC4 /* TimedDrivableExecutor.cpp in Sources */, - 8BA94BDFAEBC1986F5E16919F3DFD3CF /* TimekeeperScheduledExecutor.cpp in Sources */, - C9EF7E847E879A6A606BE532188EF26F /* TimeoutManager.cpp in Sources */, - ED95056D908C3FE236BD332F2DA1549D /* Unicode.cpp in Sources */, - EF43B0B2935894B2E28A9745F76C33BB /* UniqueInstance.cpp in Sources */, - FFED6BCFDE9AD6E6887401D22FF5D9C3 /* VirtualEventBase.cpp in Sources */, - 6BCB044CC249C1016C650C7BFD223F52 /* WaitOptions.cpp in Sources */, - ); - runOnlyForDeploymentPostprocessing = 0; - }; - 066DA302594018DDE82D9C06013CF433 /* Sources */ = { + 061871EA97AA58C7114E3BC2D6F5BB7A /* Sources */ = { isa = PBXSourcesBuildPhase; buildActionMask = 2147483647; files = ( - 4ECA09D18B0433F6A20F7DB163F4A44B /* RCTDataRequestHandler.mm in Sources */, - DC41021FE286A094DCAC89B11B6E4B99 /* RCTFileRequestHandler.mm in Sources */, - 19A859C754D9D92295FCE3E2925B68AD /* RCTHTTPRequestHandler.mm in Sources */, - C7AF7002CDF38300F56C322257D16E4E /* RCTNetworking.mm in Sources */, - EB24DBDCAF2863C9CBF16FBA8F968E22 /* RCTNetworkPlugins.mm in Sources */, - 009339B67D32BCE08D732F434B0A34EF /* RCTNetworkTask.mm in Sources */, - 964568B7F177E0B89B43306339455E72 /* React-RCTNetwork-dummy.m in Sources */, + 002B9641F94C2363C6BBC927CB2F5216 /* LongLivedObject.cpp in Sources */, + 6DD983E9F08860EBBAC6E9CD113DFC1A /* RCTTurboModule.mm in Sources */, + D9A648FD9F8B2E837A081A9DD6F8AD74 /* RCTTurboModuleManager.mm in Sources */, + 883E06D686E2C49CF9437371F69CD93E /* ReactCommon-dummy.m in Sources */, + BB12D5876E8B3CED46B3C227A70229B6 /* TurboCxxModule.cpp in Sources */, + 2B89DE112C76E19C8C4E1FBA1C70365A /* TurboModule.cpp in Sources */, + FF41523C9BF83C12DA7C490DCCDBAB1D /* TurboModuleBinding.cpp in Sources */, + 1C4BCA88A4201B458E54EED42A4268C7 /* TurboModulePerfLogger.cpp in Sources */, + 975779A8CE481A97336FC1F6F860D613 /* TurboModuleUtils.cpp in Sources */, ); runOnlyForDeploymentPostprocessing = 0; }; - 069C3EC6AB38AF5395FEBEA123AD52DB /* Sources */ = { + 0688AD99ED200F76CDCEC4C3AD8370B4 /* Sources */ = { isa = PBXSourcesBuildPhase; buildActionMask = 2147483647; files = ( - 4876BA2C3E410BDFB2D33AD5D5FD6246 /* crashlytics.nanopb.c in Sources */, - 58A2CFAAF578864F9A77830CE86EE050 /* FIRAEvent+Internal.m in Sources */, - C087E4ADE4EBFE4CD26F1C47857ADE15 /* FIRCLSAllocate.c in Sources */, - 1650CE838AC29A642C71D87CF42362F5 /* FIRCLSApplication.m in Sources */, - BDA86160C344F123B4DFC750293BAD3B /* FIRCLSApplicationIdentifierModel.m in Sources */, - 1E32F7CE1D3CF957B543C046354F1217 /* FIRCLSAsyncOperation.m in Sources */, - 726550DFA7415A96DF508C5DB3E9D1A6 /* FIRCLSBinaryImage.m in Sources */, - 9344AC8DA1CA95B1279D92A28B9BEF50 /* FIRCLSByteUtility.m in Sources */, - BFBC129906C693DBA91C528843C87CF4 /* FIRCLSCodeMapping.m in Sources */, - EB59014043847D75B55B6F7FE01BF13E /* FIRCLSCompactUnwind.c in Sources */, - 6E663C0E9CDDACF0984A08465FBDD414 /* FIRCLSCompoundOperation.m in Sources */, - 8E2A6C95A1BB81D7E57A02DCCD8A2C2E /* FIRCLSConstants.m in Sources */, - F5BD0E6B6DF3CB46CF3A1BCF73ADDE09 /* FIRCLSContext.m in Sources */, - 58DDE1BB125D4D4F64A9A661E08F1CD3 /* FIRCLSCrashedMarkerFile.c in Sources */, - FE90F7C86A82F529B56E6F539A53D5E7 /* FIRCLSDataCollectionArbiter.m in Sources */, - C448184D7074A255FA942FAABF63BE3E /* FIRCLSDataCollectionToken.m in Sources */, - 847355C63F4362007816EEEC9C478601 /* FIRCLSDataParsing.c in Sources */, - 85125DBD7C968CF0836266E8C810EC87 /* FIRCLSDemangleOperation.mm in Sources */, - BA329500D43B9B6E482F57767412CB67 /* FIRCLSDownloadAndSaveSettingsOperation.m in Sources */, - 507BC7D36F26735B7FAE621BCBEF1F36 /* FIRCLSdSYM.m in Sources */, - DCB591F70D024C7AAC42AA36CCB49F25 /* FIRCLSDwarfExpressionMachine.c in Sources */, - B8B7AAF4D7B596C9248BB611E889DDCB /* FIRCLSDwarfUnwind.c in Sources */, - A15F4392D179EEA136BA24FEBE1BE4BF /* FIRCLSException.mm in Sources */, - 22B0D872A32EB9D92B78C88E5132F47A /* FIRCLSExecutionIdentifierModel.m in Sources */, - E08EF91F51F1271B2BD7F533727AB7BC /* FIRCLSFABAsyncOperation.m in Sources */, - 4193CD12C3490067C1BE06595D7E0E8A /* FIRCLSFABHost.m in Sources */, - 21EC8C03E63160300BFABE8195A35C64 /* FIRCLSFABNetworkClient.m in Sources */, - 55FD51B36E2F32FBC86416608362E437 /* FIRCLSFCRAnalytics.m in Sources */, - 0443589566EC27782B2D8A322A5C48B5 /* FIRCLSFile.m in Sources */, - 182098CB0D0FEC18AF86F463EF9378F0 /* FIRCLSFileManager.m in Sources */, - A1697D24BEFB10575F03B2B164735B84 /* FIRCLSHandler.m in Sources */, - D9816DA79E4A89D012EDC77D599C79CD /* FIRCLSHost.m in Sources */, - 6D256E9CCE5CBB06F9901AA759E569D5 /* FIRCLSInstallIdentifierModel.m in Sources */, - 02ADEABAF9B955E505BA66F7ADCD0667 /* FIRCLSInternalLogging.c in Sources */, - 336AF32DA88EC4C2FF4831C3A7C3D0F3 /* FIRCLSInternalReport.m in Sources */, - E32572B49BE011598A41D34DE5749AA7 /* FIRCLSLogger.m in Sources */, - 76DB1847A3A19D8DB784D90F6148BA56 /* FIRCLSMachException.c in Sources */, - 3E6ECF43672534E568332758BCCB14A3 /* FIRCLSMachO.m in Sources */, - 580AF9B17AF0DC866C596952274164B9 /* FIRCLSMachOBinary.m in Sources */, - 1D5245C3295FF95AECC56EDEAE5E589E /* FIRCLSMachOSlice.m in Sources */, - F496D87AA8C7371E866779C107874687 /* FIRCLSMultipartMimeStreamEncoder.m in Sources */, - 57A2877226035C314F1E3DB50EA716AC /* FIRCLSNetworkClient.m in Sources */, - 400B2D5426EDD7BB687E105A535FFC4F /* FIRCLSNetworkOperation.m in Sources */, - 96C813DD10F6E8310B8CF558F76E9EC0 /* FIRCLSNetworkResponseHandler.m in Sources */, - CF8B47CC905105974FF7ACAE6FA8A302 /* FIRCLSOnboardingOperation.m in Sources */, - EC301CF66B7105F0C3976DECE6A4014D /* FIRCLSPackageReportOperation.m in Sources */, - BBA3BA78EE75EE6BE23A64B27B6B7FFB /* FIRCLSProcess.c in Sources */, - 663E76306372562B3B9FB297D1B691A6 /* FIRCLSProcessReportOperation.m in Sources */, - A561094B2C1666262F94C267FDA7E1F3 /* FIRCLSProfiling.c in Sources */, - D372D81C9F919B230772EFF5A44BAF7B /* FIRCLSRecordApplication.m in Sources */, - 1F9F08A55FB89C661C517E18FFCD4CF3 /* FIRCLSRecordBase.m in Sources */, - 9BC0D67BD4D38C4DA73406E7E3B61A54 /* FIRCLSRecordHost.m in Sources */, - E4D7C5E29BF0B21F741392FDF5BD9615 /* FIRCLSRecordIdentity.m in Sources */, - 0E4F2F8E81779EB7E92527D8A48ACAAE /* FIRCLSReport.m in Sources */, - 8E73B3FEAAB27D443738E8A7E1F37E81 /* FIRCLSReportAdapter.m in Sources */, - 05E1F59E2BB7A27A16D0A159585E953D /* FIRCLSReportManager.m in Sources */, - D436A5EE1529A25F83A9CFE1B803E04D /* FIRCLSReportUploader.m in Sources */, - B33CE41C4988FB62274C9435DC7AC7C4 /* FIRCLSSerializeSymbolicatedFramesOperation.m in Sources */, - 3278DD4E8C945A15F7BD4A4D15A2DB70 /* FIRCLSSettings.m in Sources */, - E4D551EFA6582D7F0F98EE42615DB46C /* FIRCLSSettingsOnboardingManager.m in Sources */, - 4D1594E5EFD6E781FB4620B93DB5881D /* FIRCLSSignal.c in Sources */, - CC36D278983BC52DC73CCEB939A04CB9 /* FIRCLSSymbolicationOperation.m in Sources */, - D924EBBC6FC0EAA7CD07BCA4407045B4 /* FIRCLSSymbolResolver.m in Sources */, - 5669798FA515371E08A7DAF4BDC87760 /* FIRCLSThreadArrayOperation.m in Sources */, - E20F8D73A5558DB8A285D2348303FBB5 /* FIRCLSThreadState.c in Sources */, - 93B9DC0C3F92C778B215E563CC2BFEDD /* FIRCLSUnwind.c in Sources */, - 3068CA0DD0D8EC9304B89DCD5E2711FD /* FIRCLSUnwind_arm.c in Sources */, - 70BAF6CCBA1760F825DB9CAF1FFACE87 /* FIRCLSUnwind_x86.c in Sources */, - 38160C63D11A43E440FF35A7E4DF1233 /* FIRCLSURLBuilder.m in Sources */, - 20B9950C8682BAC51156EA4C7B830D77 /* FIRCLSURLSession.m in Sources */, - B25B6061C19470C58F3C94B4AA16A79E /* FIRCLSURLSessionConfiguration.m in Sources */, - 21D5FFFD0D7BF76BB7A8811DCAF73A7B /* FIRCLSURLSessionDataTask.m in Sources */, - D4DFA298781F60CC6ACB3953617F78C7 /* FIRCLSURLSessionDownloadTask.m in Sources */, - FA84A09F9FCCD5CC3B296E3569081596 /* FIRCLSURLSessionTask.m in Sources */, - 9D5946C6E9DFE4704357CB5F9284E4DE /* FIRCLSURLSessionUploadTask.m in Sources */, - DCB4C62D443119ED8477FC9E8B8D97FC /* FIRCLSUserDefaults.m in Sources */, - DB24AFA9CF5BE1A91B8F5ECE5C2E31C2 /* FIRCLSUserLogging.m in Sources */, - FD54F13C5360061F3D62D4CFF0190D4E /* FIRCLSUtility.m in Sources */, - F7A8CFC115E01C98F9E257A450DB654C /* FIRCLSUUID.m in Sources */, - DADF7CC02FCF98E38F97F37C36E88327 /* FIRCrashlytics.m in Sources */, - 84DF6CCEF557C0A6293198D98F755141 /* FirebaseCrashlytics-dummy.m in Sources */, - 39BAE3ED446B4441CFDD20EF58C47848 /* FIRExceptionModel.m in Sources */, - 21928F97CB8DD68D56445C0FE0A4C01B /* FIRStackFrame.m in Sources */, - ); - runOnlyForDeploymentPostprocessing = 0; - }; - 0894B033947CB6AF5339C5E1D60BEC64 /* Sources */ = { - isa = PBXSourcesBuildPhase; - buildActionMask = 2147483647; - files = ( - 9BA15B9892D3EC5C5388D2E7F3505CF3 /* RNFBAnalytics-dummy.m in Sources */, - 9F8EB12BC10441086E0A5D204EEBC722 /* RNFBAnalyticsModule.m in Sources */, + C1027D82735996A23DBD497DC2799FAA /* UMPermissionsInterface-dummy.m in Sources */, + 4331FBEC455EF64172081FECFC67B005 /* UMPermissionsMethodsDelegate.m in Sources */, ); runOnlyForDeploymentPostprocessing = 0; }; @@ -29316,89 +29041,12 @@ ); runOnlyForDeploymentPostprocessing = 0; }; - 0FD50EA1E347276D2ABE00A0568C0CAF /* Sources */ = { - isa = PBXSourcesBuildPhase; - buildActionMask = 2147483647; - files = ( - 5F18435162F79A70F22EADF7AECE81AD /* RCTSettingsManager.mm in Sources */, - 64528F0D2C0894F24DE6341F006E9940 /* RCTSettingsPlugins.mm in Sources */, - 499C74045DCD37C361CC7956644C6648 /* React-RCTSettings-dummy.m in Sources */, - ); - runOnlyForDeploymentPostprocessing = 0; - }; - 119F6C97B7BCED275EA0A8CD8D1D6249 /* Sources */ = { + 0D190A7823CEC8E8E4717E3B54AE6BEC /* Sources */ = { isa = PBXSourcesBuildPhase; buildActionMask = 2147483647; files = ( - CCBFCD926376358EA3F8C9CE60AD0690 /* NSBezierPath+SDRoundedCorners.m in Sources */, - 89CEE170B3342EB702B3A9B2C1AD7861 /* NSButton+WebCache.m in Sources */, - 8EF11F21E7E5930C0D6029D97BA6ACD4 /* NSData+ImageContentType.m in Sources */, - 07AFE129202F2514C8261BD85F4F9870 /* NSImage+Compatibility.m in Sources */, - 11D675AEE1B6499C38A71F9837ADE553 /* SDAnimatedImage.m in Sources */, - 279A852563A70AD5D906A401684F2160 /* SDAnimatedImagePlayer.m in Sources */, - 3A79003B3C6161DBD186FB8AEE8336D9 /* SDAnimatedImageRep.m in Sources */, - 38F3A9FF95E7EC5B6862FD37BE263AAB /* SDAnimatedImageView+WebCache.m in Sources */, - 1E45AD76507CCAB53A38EEEE1D9C153A /* SDAnimatedImageView.m in Sources */, - 3C3A894C2424566C1BFE2F179BD639B6 /* SDAssociatedObject.m in Sources */, - B040F8366135289459EBCF6D0D6AD2E7 /* SDAsyncBlockOperation.m in Sources */, - 8167843771E3B47476358AFD9885E554 /* SDDeviceHelper.m in Sources */, - 9EBD5A167465C22DF34E58C565104D32 /* SDDiskCache.m in Sources */, - AE2B61A3969F93747B7A340C844157AE /* SDDisplayLink.m in Sources */, - F4A418B2450656A9D2987B969129CF86 /* SDFileAttributeHelper.m in Sources */, - 9E48A1068E67EEC3A9632F1BAA053634 /* SDGraphicsImageRenderer.m in Sources */, - 2EC50908C0DF2E0175B0838A6C05871F /* SDImageAPNGCoder.m in Sources */, - 28098F9A22E786BB01EE05A3138AADE9 /* SDImageAssetManager.m in Sources */, - BE1EC289878D8BA4F3AC01EC2E153E53 /* SDImageCache.m in Sources */, - EE3C85BC78098BB8342507D78A02E897 /* SDImageCacheConfig.m in Sources */, - 11FBC5BAA3BD1ED52108D9962D3AACD9 /* SDImageCacheDefine.m in Sources */, - 4A54C761EC622CBC62B5E12C272849A0 /* SDImageCachesManager.m in Sources */, - 0F7CC1A3FD78376CE863CBFC09ED9F28 /* SDImageCachesManagerOperation.m in Sources */, - 040C2CC1E0708C8B9BA00967505E4020 /* SDImageCoder.m in Sources */, - BD31373787DBDBEBB6B55B5DB5B9FA1B /* SDImageCoderHelper.m in Sources */, - 4619A961B733255DDD743C68A831E543 /* SDImageCodersManager.m in Sources */, - 4A83FF8540FC1E5AC6F8B3D3AB4BFCE1 /* SDImageFrame.m in Sources */, - 02A6D160F23F2906666849BB8CE6C735 /* SDImageGIFCoder.m in Sources */, - 6C0797F3576DA1417BDC75D89B6BCEFD /* SDImageGraphics.m in Sources */, - 76107C17DBE52BD14D380C97394F867A /* SDImageHEICCoder.m in Sources */, - F2DE71C4957C076193C528C12CE4C299 /* SDImageIOAnimatedCoder.m in Sources */, - 5DA4CAD43BDF62B98AEFB3665BA2F268 /* SDImageIOCoder.m in Sources */, - 8A7548CF5CC84894C8EBD3F48A997860 /* SDImageLoader.m in Sources */, - FE048CEB029685ED3CACC21E42F5FEB6 /* SDImageLoadersManager.m in Sources */, - 77AFB32048D3F0BF36FA708D486F5AC2 /* SDImageTransformer.m in Sources */, - AD614F6A78B1F5CDB4EC03DFB6E8A148 /* SDInternalMacros.m in Sources */, - 17F234096E694DD37AE892CFCF12E038 /* SDMemoryCache.m in Sources */, - 0E147C9D63E0EC905C4E458392D377F2 /* SDWeakProxy.m in Sources */, - 9B9514F43EC1D5BEFC4033B1E6E204A6 /* SDWebImage-dummy.m in Sources */, - 813B0A04E9F0D15D00BC41403564F37E /* SDWebImageCacheKeyFilter.m in Sources */, - 976824E60D18ED9C1634C1DEC3770977 /* SDWebImageCacheSerializer.m in Sources */, - CCD630CAA821C053BC16E2FFCF600165 /* SDWebImageCompat.m in Sources */, - 694EC39CF5027061C2DBA2242F788C81 /* SDWebImageDefine.m in Sources */, - 2E88B98AACD8D9D2134933AB6CA36C8A /* SDWebImageDownloader.m in Sources */, - 07F9FC2A0F2CF7D7BF484E7E8C8626AA /* SDWebImageDownloaderConfig.m in Sources */, - 3167828D81549108E01BC503CA5EB814 /* SDWebImageDownloaderDecryptor.m in Sources */, - 5757B9E2D363214326CFF9EB235140B0 /* SDWebImageDownloaderOperation.m in Sources */, - 981C079E747231C729CA0D5E793AA6EC /* SDWebImageDownloaderRequestModifier.m in Sources */, - CFA9E0CDEB5E1E0ACBA68783BFCD46DC /* SDWebImageDownloaderResponseModifier.m in Sources */, - D95040C0CF3CAC10FF5AEA99C35E1E58 /* SDWebImageError.m in Sources */, - EF8EC827EA6C28C10C06AE297C7C4558 /* SDWebImageIndicator.m in Sources */, - AB05625C8EC4E6CA1BB7948F7D17E02C /* SDWebImageManager.m in Sources */, - 41DB830C3D2569D21C9BDA61E0277EFC /* SDWebImageOperation.m in Sources */, - 2D8EE7B807FBD6FDA457C1EAA7D36002 /* SDWebImageOptionsProcessor.m in Sources */, - FB11F5CB79F19A60348E516F49319F5C /* SDWebImagePrefetcher.m in Sources */, - 749D9ED1D5046AA077A8117DCE9060A3 /* SDWebImageTransition.m in Sources */, - B63DE8331AD5905142273EE181380953 /* UIButton+WebCache.m in Sources */, - 35DF1072ADB110CFF3A06D61D16DE76C /* UIColor+SDHexString.m in Sources */, - E52247D7B717F25E749A7C0F6098820D /* UIImage+ExtendedCacheData.m in Sources */, - 20500299F95F8C983CB80993D67BB4CF /* UIImage+ForceDecode.m in Sources */, - AFC5D6776D35A4051489751846E0DCBF /* UIImage+GIF.m in Sources */, - 4507F49E7950BB9955DBAD3428A8AD42 /* UIImage+MemoryCacheCost.m in Sources */, - 93615681DC11EDA378DE5A6DA28FF2C6 /* UIImage+Metadata.m in Sources */, - 07F56F01327AA18E32704E5E53BB55C2 /* UIImage+MultiFormat.m in Sources */, - 8FD0D61258D48BD6FBAD941A36B02F05 /* UIImage+Transform.m in Sources */, - B642186F4E6D94051FBB0F12F04B2A39 /* UIImageView+HighlightedWebCache.m in Sources */, - D3C9B0E55EDFD3B00CDE51CF4FEC5843 /* UIImageView+WebCache.m in Sources */, - 8927E0F08B36EF9815D7A476CE9E753F /* UIView+WebCache.m in Sources */, - 96651362E3E2662033FFC90FF27D3907 /* UIView+WebCacheOperation.m in Sources */, + ABBECE03895E552678501050A200A7B2 /* InspectorInterfaces.cpp in Sources */, + 5DF2853732A30B5E83E39C81F6EF3568 /* React-jsinspector-dummy.m in Sources */, ); runOnlyForDeploymentPostprocessing = 0; }; @@ -29425,21 +29073,12 @@ ); runOnlyForDeploymentPostprocessing = 0; }; - 14B03CEF51D9346A3693784B0048D10A /* Sources */ = { + 1635582E1CF3B2CB68CC8DB9C3385231 /* Sources */ = { isa = PBXSourcesBuildPhase; buildActionMask = 2147483647; files = ( - 667682D83524A8EF4189EF4D71A4980B /* RCTConvert+FIRApp.m in Sources */, - 6B5A31480789AC447C5D5AB82535FC71 /* RCTConvert+FIROptions.m in Sources */, - C694C902CB6B08D83BF780CD3242470A /* RNFBApp-dummy.m in Sources */, - D8DF1DD9A5F06AEFC5CE19ABD243C9AF /* RNFBAppModule.m in Sources */, - F8531266741C25FBB15DC1B26005C9BA /* RNFBJSON.m in Sources */, - C7A4F66306C901380D5E82734D65BFCC /* RNFBMeta.m in Sources */, - 90044CACDD6007A10615C083AB31992C /* RNFBPreferences.m in Sources */, - ACE3F48B3A5120CDE5F4C8DDD67A6F41 /* RNFBRCTEventEmitter.m in Sources */, - 33DC591EFDAA7BD1D9D6B57E95171696 /* RNFBSharedUtils.m in Sources */, - 320B341D246BF6670B88F45ED45F35C8 /* RNFBUtilsModule.m in Sources */, - 6F16CB6B1386F1F35A15E6D88064CF44 /* RNFBVersion.m in Sources */, + 75665C46ED96E3D027AE5AFC169461E5 /* BridgeNativeModulePerfLogger.cpp in Sources */, + 74ED714617CFF9C0CC961B7E0C7EF7D9 /* React-perflogger-dummy.m in Sources */, ); runOnlyForDeploymentPostprocessing = 0; }; @@ -29453,281 +29092,22 @@ ); runOnlyForDeploymentPostprocessing = 0; }; - 174E1BF540D3AB822C2632DC54CE8780 /* Sources */ = { + 18B2B37FC50FAA146FA67D28EE194E55 /* Sources */ = { isa = PBXSourcesBuildPhase; buildActionMask = 2147483647; files = ( - E286B125FB87DD987B73E01676C9DF73 /* alpha_dec.c in Sources */, - 9B9A827789220660BD62DB1C2D0702C4 /* alpha_enc.c in Sources */, - 6EB17A2C35F93B589374CC71B641941A /* alpha_processing.c in Sources */, - 6A6BC7C740587DDFC30448AFC965AD5D /* alpha_processing_mips_dsp_r2.c in Sources */, - 30863A08BF81155B3C301BA2C93883AC /* alpha_processing_neon.c in Sources */, - 006424C155BE0EC47CE00FA3AECED4BF /* alpha_processing_sse2.c in Sources */, - CEDC5C22EEC8745138C80BC61242BDC3 /* alpha_processing_sse41.c in Sources */, - 028D89356A953848F9B55822B92BA1F8 /* analysis_enc.c in Sources */, - 829E92AEC5D3847D88CF8C71C82874B4 /* anim_decode.c in Sources */, - B6C272BCCC4F51420570C8209ADEA2D1 /* anim_encode.c in Sources */, - C7E766F4F82FADDE4BCDE8E6DF6ADB6D /* backward_references_cost_enc.c in Sources */, - 6016B9B2BAC17596F20366A9BDCCBF14 /* backward_references_enc.c in Sources */, - 963C344D6CDE8CC99B00F13A7ABCEAB0 /* bit_reader_utils.c in Sources */, - AAB5C5B03C4B35890CA385F194E30F0D /* bit_writer_utils.c in Sources */, - 46258E4E4DB9DACC7E53B7947578268E /* buffer_dec.c in Sources */, - CA151941369D6E7C1501824B9461475D /* color_cache_utils.c in Sources */, - B1917338B3C536A39D7472DF946BD906 /* config_enc.c in Sources */, - E51EA6F839FA559C21E7EB6626BF236B /* cost.c in Sources */, - 3EA5765463A3C9866CA7D04931BF88DB /* cost_enc.c in Sources */, - DB40E542043D4AC2BFCDC4174D8AE521 /* cost_mips32.c in Sources */, - 7F2C6B04937DE29D98E39DF427E81959 /* cost_mips_dsp_r2.c in Sources */, - 05DDD47A2C554C681F329F08C81CC89E /* cost_neon.c in Sources */, - BD7457227DA7BF85700073928C5DAC6B /* cost_sse2.c in Sources */, - 9D0157C2516C902B0C5668F1D7ECE8B4 /* cpu.c in Sources */, - FED7CB0111233FDDE983BD43A60EAFF1 /* dec.c in Sources */, - 7F545E647D39C256AD2575EC05D96D09 /* dec_clip_tables.c in Sources */, - 4F904BA5741A0BA71D31FEC303F92216 /* dec_mips32.c in Sources */, - A168A5FBE5A246193CE358644F7987B5 /* dec_mips_dsp_r2.c in Sources */, - A1C723DD6E878F903B55C583CA39F0C4 /* dec_msa.c in Sources */, - 095F489B200D86C5BFB9B9ECD73E6B07 /* dec_neon.c in Sources */, - CB508CC193CBEAD7FE7C1FEDF3911E98 /* dec_sse2.c in Sources */, - 9163C28767CEFDD971EF06E1A97CD6A8 /* dec_sse41.c in Sources */, - 21FD0E8961C0BC063CDA41227DE1731A /* demux.c in Sources */, - C95C73195D66781C2965906E821593AF /* enc.c in Sources */, - 7AC267FD6E65A190C5750F40D88B6FD9 /* enc_mips32.c in Sources */, - 84EA0952DF11169AA9927BCA0AD50CAB /* enc_mips_dsp_r2.c in Sources */, - 94770C3B5FCE6EA75207AB1A811C6604 /* enc_msa.c in Sources */, - 6158E244F532062055A91802715E341C /* enc_neon.c in Sources */, - AA1EAFD3C6E9238FEF569EBABC26F334 /* enc_sse2.c in Sources */, - CDA331C833BF7FDEFDED3067EA1790EF /* enc_sse41.c in Sources */, - 949928E6C313A91D09BB1AABDF665E67 /* filter_enc.c in Sources */, - 72AECF8F7F70957CF01216736807D921 /* filters.c in Sources */, - 6F198B6796FC75BF8EB121B170497165 /* filters_mips_dsp_r2.c in Sources */, - 14768B0E04F9D20B36A81C8053DE7593 /* filters_msa.c in Sources */, - 618A90B3C7E52FC0DD62F1283AC35A9E /* filters_neon.c in Sources */, - 18FEE97804D02EBF8548F403287A8E13 /* filters_sse2.c in Sources */, - 382EFB561844FBD4A301E24BB7552F19 /* filters_utils.c in Sources */, - 35F500EAF587605B1E45BA1D934062F4 /* frame_dec.c in Sources */, - 610100047A3B2943C1E775BD951913A4 /* frame_enc.c in Sources */, - F78BDCE200CF17AE1A5CFD0DA4EE3649 /* histogram_enc.c in Sources */, - 3DD324A83D2A3296E4A68434DFD24495 /* huffman_encode_utils.c in Sources */, - AE264A0FE866E63BFC8F65FAA747BBAF /* huffman_utils.c in Sources */, - 673D16F24EC51395DA2AF82A3B2AA8A4 /* idec_dec.c in Sources */, - EEECF7D9260ADCFC3B9947694DE24B59 /* io_dec.c in Sources */, - 5AAE28F93F533CF23C21399546C6AF83 /* iterator_enc.c in Sources */, - FBBBB3541F7462AF3C858EFA9BC186D9 /* libwebp-dummy.m in Sources */, - 0EC8C2ED9AE8572B3AF3E760EB1853F3 /* lossless.c in Sources */, - 0B5A737B18094E1088257B7A1BDA859D /* lossless_enc.c in Sources */, - A700FD1BA7E3BDF2459BCAA513D69E42 /* lossless_enc_mips32.c in Sources */, - DD4F379A9919A17472C3446915D48F66 /* lossless_enc_mips_dsp_r2.c in Sources */, - 878C0A25C824EF3B277CC512A0220D8A /* lossless_enc_msa.c in Sources */, - 7B5E02FC04FA92D42BE4FB2F809E4FC5 /* lossless_enc_neon.c in Sources */, - 1B0A3A52DDBB21A37E4DB0E7E6665289 /* lossless_enc_sse2.c in Sources */, - 81DF7074ADBE7B72728CF21BAD425B47 /* lossless_enc_sse41.c in Sources */, - C0D6679739C9A0F93BCA9B8766246421 /* lossless_mips_dsp_r2.c in Sources */, - CC61627241CDCD59428B70C9024D03E2 /* lossless_msa.c in Sources */, - 2521F9856149979A42BD40EC1A36DC2E /* lossless_neon.c in Sources */, - 8578DDFE959A8B9E849C90273A27334C /* lossless_sse2.c in Sources */, - 0E42668C70E847678AFFBE1C8C9D2860 /* muxedit.c in Sources */, - D78258F296A9A39EBBDAD892C9BEFE1E /* muxinternal.c in Sources */, - 74283D7AF59E59C2A67C57FD1270C185 /* muxread.c in Sources */, - DF6155000965C82531C7D91B846B7BA7 /* near_lossless_enc.c in Sources */, - C82C3F004F3331A254FE01488C0CB011 /* picture_csp_enc.c in Sources */, - 22F714CC10EAB443B6ABDAC10220B7DB /* picture_enc.c in Sources */, - 70525EE2AE0A8EAB9E09D6E5EEC75709 /* picture_psnr_enc.c in Sources */, - 3FCA43963CFBB1D7B26C2ED0E70CF540 /* picture_rescale_enc.c in Sources */, - 7EE009D01AF9BF64E81BE23BEE6F844B /* picture_tools_enc.c in Sources */, - CB21F25297C33C46791DC1D290564FCF /* predictor_enc.c in Sources */, - 99D81E8323CC7858CFB0611AA7A21D02 /* quant_dec.c in Sources */, - 8F7A04661F3A22BE0E2663332D2A6A8D /* quant_enc.c in Sources */, - DCE446F21BA7F3772780ACCD62C28739 /* quant_levels_dec_utils.c in Sources */, - 0BFABFC5DFB416EBB3B2D399F54F6D73 /* quant_levels_utils.c in Sources */, - 2D10CBDE9447CF713F4462E36482F0D8 /* random_utils.c in Sources */, - DA91A5760E369728340BAE8F57D0A9A8 /* rescaler.c in Sources */, - BC8F5A06EB0ED683D5CA55D7E6D84C44 /* rescaler_mips32.c in Sources */, - CBE16D2BBDA9C7A285BD7EB7F33EC804 /* rescaler_mips_dsp_r2.c in Sources */, - 9719CB28665F8595C191B9535932CC5E /* rescaler_msa.c in Sources */, - FBBDEC2BDA59B862344D0590603D6153 /* rescaler_neon.c in Sources */, - 6462F738AC590747E44531D71D470C07 /* rescaler_sse2.c in Sources */, - BD19592FD2EE47C1DF3DBB4264F6BD9B /* rescaler_utils.c in Sources */, - 869311CB33FA7DDC918D26F9477BD90C /* ssim.c in Sources */, - 23ED68709D70B2CEEA2C60ED444BDE7C /* ssim_sse2.c in Sources */, - 953F85698B627AE09C3DD80D5CDDBC0E /* syntax_enc.c in Sources */, - 5A81F2512F2E55549E9044D9D8DF322F /* thread_utils.c in Sources */, - 0F9130F61FA3B645FE44EFAD1A479346 /* token_enc.c in Sources */, - 755886C6600CA19D2131AC31F915C1F8 /* tree_dec.c in Sources */, - 2BA96075480427D00E22DD8824A6F6B0 /* tree_enc.c in Sources */, - 35CDAB6F50715003C03DC9B2DA983D22 /* upsampling.c in Sources */, - 2834EA176ACD637355B57D95609C2F08 /* upsampling_mips_dsp_r2.c in Sources */, - 6F710F7118FC5A2ECFCE14AD2C1A3AB0 /* upsampling_msa.c in Sources */, - B6969C5DD8443C58885144AF099B195A /* upsampling_neon.c in Sources */, - D7A7DAC5E6DDFA5D837FF09AF577F7B9 /* upsampling_sse2.c in Sources */, - E7597C7ED2697CB348881A37BE1F38AC /* upsampling_sse41.c in Sources */, - A3FBFA622F9CB74AEEF3B54D50D134A7 /* utils.c in Sources */, - 6F77535C9D8949A90B14C03B87365550 /* vp8_dec.c in Sources */, - 26DBB145EBAD40456F69AF3485472A66 /* vp8l_dec.c in Sources */, - AF248CBAA17691DB46F5335818C47F44 /* vp8l_enc.c in Sources */, - 955E1266974E8A5514883D7147B2915A /* webp_dec.c in Sources */, - 4C0FB38752F52422B68F00B61096DA81 /* webp_enc.c in Sources */, - 21171CB95AC7DD57CE2BC6091A8C9747 /* yuv.c in Sources */, - A395D179AB5A02E082760F7058AB581B /* yuv_mips32.c in Sources */, - D6CDDF35F148CC13038E00192E23F228 /* yuv_mips_dsp_r2.c in Sources */, - 4F426F9B6B60D20CB43D55A9B2C7CA41 /* yuv_neon.c in Sources */, - 373A62DDF62516AF417A05F1F09DC021 /* yuv_sse2.c in Sources */, - 229A5016DE40AB05A69EE93DE3FD7CD3 /* yuv_sse41.c in Sources */, - ); - runOnlyForDeploymentPostprocessing = 0; - }; - 1862E471DF1A28889EF436357FE52D23 /* Sources */ = { + EEB5C39F7CB45E044BC6633AB28DFE2E /* FBReactNativeSpec-dummy.m in Sources */, + F562037184DDEF15581985B57286135D /* FBReactNativeSpec-generated.mm in Sources */, + ); + runOnlyForDeploymentPostprocessing = 0; + }; + 1ABBA30C924CF443E82F8938099CAAF7 /* Sources */ = { isa = PBXSourcesBuildPhase; buildActionMask = 2147483647; files = ( - 909575A23DA3834C241BB2951C78C9B9 /* Assume.cpp in Sources */, - A2E682F4C51FB0D40F11E29E16B98DAA /* AsymmetricMemoryBarrier.cpp in Sources */, - 0E67453BFB0635F64536D04BEB572DAC /* AsyncPipe.cpp in Sources */, - 4E49985A76A0E9C42B0A7FCAA6FB6963 /* AsyncServerSocket.cpp in Sources */, - 0E20698DEA1CA8991DE22CAB3880CC54 /* AsyncSignalHandler.cpp in Sources */, - CB664A38E158F561D73C35981A9D3413 /* AsyncSocket.cpp in Sources */, - 546CDA51CECAAD8E40A35673B6AF16EC /* AsyncSocketException.cpp in Sources */, - 3C96271835A0B32B50C211AC15AB4203 /* AsyncSSLSocket.cpp in Sources */, - 1CCF39EBFA3B0F687CB1FBD4825BCD3B /* AsyncTimeout.cpp in Sources */, - EBEA8CA3A1E924E17947C277172F2B33 /* AsyncTrace.cpp in Sources */, - 51214DB5A30202B500A2B7D03E56E343 /* AsyncUDPSocket.cpp in Sources */, - 2FF87901C9FB5CF83D1E7452BE807E64 /* AtFork.cpp in Sources */, - 0C2E7DC258AE40F7DCFD9BF97E0CE7BD /* AtomicNotification.cpp in Sources */, - A7EFAF3E7361E6F92B0B20F6F3506DB8 /* Barrier.cpp in Sources */, - B2D3DE2F11BBCE706EB59DB6070B2B58 /* Benchmark.cpp in Sources */, - 9F36780B8C742E37C036EE4F8A2B5370 /* Builtins.cpp in Sources */, - E7C452B9BC1F38B436C532BFDE929F52 /* CacheLocality.cpp in Sources */, - FD8A5A31FCD9651F2760850EA6316217 /* CancellationToken.cpp in Sources */, - 42B7254FC96318A55B9ED899ADCE7753 /* Checksum.cpp in Sources */, - 19EC8AE3BE8DF10A03B36ED6A32716E6 /* ClockGettimeWrappers.cpp in Sources */, - 970F38B31FF7C1E2F02ADE0593EA6557 /* Codel.cpp in Sources */, - 64F562359BABBDFA268CDA6D272F0AE9 /* Conv.cpp in Sources */, - B059169033D13B19976DC2F48C6C3D55 /* CPUThreadPoolExecutor.cpp in Sources */, - DE2671A20D07FD176748B24C52A40828 /* CString.cpp in Sources */, - 6B5E337646B5C75DFA036C6BF3E7802C /* Cursor.cpp in Sources */, - 13E1A2D5F0A75E3420CD568358A24BC5 /* Demangle.cpp in Sources */, - 28A194AC1159FD8D578C2EB3AFBCDA00 /* Demangle.cpp in Sources */, - 0E15DB2C9F2CE2F0E86FC42C7668D03E /* Dirent.cpp in Sources */, - 0D6873742750ADEF4D505AE59C78F02E /* DistributedMutex.cpp in Sources */, - F8AF944A4ED054C3018E552E279D5065 /* dynamic.cpp in Sources */, - 7FA84C7CD5E366109C6B77E2A129C827 /* EDFThreadPoolExecutor.cpp in Sources */, - 3C488B3D05385A680DB1E77F826DEBD7 /* EventBase.cpp in Sources */, - B45A660C46CF428C44680BE932076DC0 /* EventBaseBackendBase.cpp in Sources */, - 6D22D1AD550585E38EE88565B9B3BF11 /* EventBaseLocal.cpp in Sources */, - 6B44DC3251C1E6AB1A5A258E5D9518BA /* EventBaseManager.cpp in Sources */, - 79DD0BAADE65E8C839FF8CEA48FD77AB /* EventBaseThread.cpp in Sources */, - FD57B92590D98B6BEAE8C764B166793B /* EventHandler.cpp in Sources */, - 2EFB459B385D80E031BF573FF6A128C3 /* ExceptionWrapper.cpp in Sources */, - DCC4E9743FB4D744B3F776C28E2CA9BC /* Executor.cpp in Sources */, - F4B02419BA3DFF8783C2541D0104A8CF /* ExecutorWithPriority.cpp in Sources */, - B6118CFF7DE16573F36615E1EE3D51FA /* F14Table.cpp in Sources */, - 2A88D2578399C204312EB28F3D5FB7C2 /* Fcntl.cpp in Sources */, - 8A352045E1BAAC27B90EF7BE3CB24C1B /* File.cpp in Sources */, - 6FCAE02A315A815A3FE09DEB876CC22A /* FileUtil.cpp in Sources */, - C7A8454E5AF2F4AE893EDD450EC30FF0 /* Fingerprint.cpp in Sources */, - 283D05532A3E76E3D39078DF6620984E /* Flipper-Folly-dummy.m in Sources */, - 06D5DBF1E9E955ED20FB07B829C42A34 /* Format.cpp in Sources */, - 3C23CE96F170FF3CAEB7DFB8F6FEE7CA /* Futex.cpp in Sources */, - 12DC73C66B5673AC2354F73B39215E13 /* Future.cpp in Sources */, - B75618877550F3FC1A675F1A92F09E8D /* GlobalExecutor.cpp in Sources */, - 5862194834EAEBC5983B2B6DE7F7D8BC /* GlobalShutdownSocketSet.cpp in Sources */, - 758815415A1F6F013FCEBA1E8506A336 /* GlobalThreadPoolList.cpp in Sources */, - 26FC4635EE2D1635ED3F5F0CDDAD50C9 /* GroupVarint.cpp in Sources */, - 5C58024B37BFE04C0F8CA568438113E8 /* HardwareConcurrency.cpp in Sources */, - 1392EFE34F5351584A0BFC54B6E9B122 /* Hazptr.cpp in Sources */, - 6B62D86C0B32288E0B4C91EDAC0E08BD /* HazptrThreadPoolExecutor.cpp in Sources */, - 6E3875895687D5E24DAEB1F699A93853 /* HHWheelTimer.cpp in Sources */, - A0D84F19DF6A2644B90B33F30528E60D /* Init.cpp in Sources */, - 3B8202F37017BCF36C9E1187A99CF2E6 /* InlineExecutor.cpp in Sources */, - 9A9583FD6786C84B93880BB30FF5C1AF /* IOBuf.cpp in Sources */, - 73F234DE8E462A14D565BD660373F0EB /* IOBufQueue.cpp in Sources */, - 56E7F7A5D57875476E4E42193B33772E /* IOThreadPoolExecutor.cpp in Sources */, - 37F728E6C65C0376778980D627EEEA0B /* IPAddress.cpp in Sources */, - 2BF37E22CAE988ED80A04EC372271304 /* IPAddress.cpp in Sources */, - D9E56CAFC3D3CA6E9278C409750D1D92 /* IPAddressV4.cpp in Sources */, - 4CBED6F5F7B278DF05D1712F2B57F771 /* IPAddressV6.cpp in Sources */, - B456AADA44B434304D44DB6CDED80B31 /* json.cpp in Sources */, - A3F02B5565BA3484B7A7776FD60043D7 /* json_patch.cpp in Sources */, - FB364DE81C0EDF06910F910E3ACA8AE5 /* json_pointer.cpp in Sources */, - 7B103045F2399439212CA76D5FC9F459 /* Libgen.cpp in Sources */, - 55C7553AC2432769683FCFA6743ECDD0 /* MacAddress.cpp in Sources */, - CDF8D44C2F9F90A60B89872332770571 /* MallctlHelper.cpp in Sources */, - AAA732D139B9BE837D80B39EC68181E3 /* Malloc.cpp in Sources */, - 2FB8C5E4C5631954EAD3757441F763C9 /* MallocImpl.cpp in Sources */, - CF3993166467D7999DCB674C42CDADBF /* ManualExecutor.cpp in Sources */, - B36E026BFA975B0E2972DC9E4FD2F913 /* ManualTimekeeper.cpp in Sources */, - BE82ACD42D28685F5C61C944DD7C167F /* MemoryIdler.cpp in Sources */, - 0D1704056A0737B8445048529611C1DA /* MemoryMapping.cpp in Sources */, - C01CF57D26F45814D82273CE3DBDC613 /* MicroLock.cpp in Sources */, - 37F3E3931EE30BFF95688AEE1C609630 /* NetOps.cpp in Sources */, - C48D2F9E3CEBF11D9A51339919A361F7 /* OpenSSL.cpp in Sources */, - 21C46952977D276ECC73AC5161C4249F /* OpenSSLCertUtils.cpp in Sources */, - ADC23879FB31CC882AE2F80096C8AD2A /* OpenSSLHash.cpp in Sources */, - 4028F4A2FA61F7F522E740ACA1631462 /* OpenSSLThreading.cpp in Sources */, - A954EEA377C1E08A74957C57229BF3D0 /* OpenSSLUtils.cpp in Sources */, - 8C72EEB1093407065DF28EFD78615266 /* ParkingLot.cpp in Sources */, - 9E5E374A990E869A862DB188F141597C /* PasswordInFile.cpp in Sources */, - CDBE4F53CF3FD78516D49F0BC0795396 /* PThread.cpp in Sources */, - DAC5C94AF7AB1BA34AF6931A68C5EEA4 /* QueuedImmediateExecutor.cpp in Sources */, - 0B3A750D51632C3862C135538908444C /* Random.cpp in Sources */, - CD99725614EF09BD6C2DE0E7B16332B9 /* RangeCommon.cpp in Sources */, - 854CAD54469506BFE668C1A805B1ECDE /* RangeSse42.cpp in Sources */, - 24F696A8C818E37AD166CEEBF8F06EF8 /* RecordIO.cpp in Sources */, - B294E1F5467A401A4FC3A346B25C5426 /* ReentrantAllocator.cpp in Sources */, - 8E4CD8279B03971C20A8662740220463 /* Request.cpp in Sources */, - B2D0A495E7EEBC80157C48FABCD74630 /* SafeAssert.cpp in Sources */, - 8C611C1AB3CC92E4D9AFCC6B2E3159DB /* SanitizeLeak.cpp in Sources */, - 8952518B702D1DCBAB0EB6FA822A7BBD /* SanitizeThread.cpp in Sources */, - 9228FBB2923CDAF3D6791B69E6835A65 /* Sched.cpp in Sources */, - CD3A30F730893D1F4841FD531134835A /* ScopedEventBaseThread.cpp in Sources */, - 3C28036859ED2DDAFAD9A8446165E5EB /* ScopeGuard.cpp in Sources */, - FDD08C701ED7B16D211FA23D3C53BAF8 /* Semaphore.cpp in Sources */, - D57C62ADF8D8109993292B4D8CF6839D /* SerialExecutor.cpp in Sources */, - 174E670016BD2714AE0B8268DF4E2814 /* SharedMutex.cpp in Sources */, - 1ABBF71F4DFE8FF9E8C6D409691E1FE1 /* Shell.cpp in Sources */, - 75FFA5D4DAF4B30AB4670DB7ABCEB7B2 /* ShutdownSocketSet.cpp in Sources */, - 65A6C5944DBF78D1CB3D02CB39F3B9A4 /* Singleton.cpp in Sources */, - F97495E352CF05902D9B5F5C6A10E2B7 /* SingletonStackTrace.cpp in Sources */, - ACB5C9060E7EFFB2CDC6585D543B1C5D /* SocketAddress.cpp in Sources */, - 9745509726C4E9561C274CF4B498643A /* SocketFastOpen.cpp in Sources */, - 7BD251B6597B6A64B8B3E0E06A70216E /* SocketOptionMap.cpp in Sources */, - 5D9ECFBF9393943065377394556F052B /* Sockets.cpp in Sources */, - C4EC8520030171572ACEBEDC3F411692 /* SpookyHashV1.cpp in Sources */, - ED9A4149E250CE19F6B6ADFF81DBE62F /* SpookyHashV2.cpp in Sources */, - A2E97D51F262F31E91DA87975BB2285B /* Sse.cpp in Sources */, - 61D13734DEF38BF8839408FEF25C758E /* SSLContext.cpp in Sources */, - FB5AF1D223AF92E6A9EC5CA178A5758A /* SSLErrors.cpp in Sources */, - 2D7787C5A1E5784F81E3DFADA0C2F91B /* SSLOptions.cpp in Sources */, - 3CFD6EF64399B69E630C48EBDC973198 /* SSLSessionImpl.cpp in Sources */, - 9107C33AC303B0FDBF48960A1C38A25D /* StaticSingletonManager.cpp in Sources */, - 586AF66AA034395EF22197C56E9C3041 /* Stdio.cpp in Sources */, - B524795FE267A021CBB88BCD94E9ED79 /* Stdlib.cpp in Sources */, - D84CC55B6501F56A726E04E5767D2901 /* String.cpp in Sources */, - 8F4D3FBC5A6E396605A910B085F498A4 /* String.cpp in Sources */, - 428CBF6659DFC01912B8FCD0FCA5F01C /* Subprocess.cpp in Sources */, - 5C0E80E34CD7B0260A5748BDAE50A077 /* SysFile.cpp in Sources */, - 296CD68624835C2269CB492288E28911 /* SysMembarrier.cpp in Sources */, - 7852ECB633DB5C7D5A1B5D95F81FA77B /* SysMman.cpp in Sources */, - 5314F052CBD1660721A471757A6960A2 /* SysResource.cpp in Sources */, - D5B239CA770C23F84A2E2CF134FC8BFF /* SysStat.cpp in Sources */, - 4F3BD3BE852B39C37BC0B057226C3AFD /* SysTime.cpp in Sources */, - A328868CCCC1DA31336386A7BE4ED320 /* SysUio.cpp in Sources */, - A79A31C80EE85DF62E6D0AEDED9919D9 /* ThreadCachedArena.cpp in Sources */, - 19600F12693B457DBCED7262CE692645 /* ThreadedExecutor.cpp in Sources */, - 0B5D6E4F52F253DB4C51AF1BC0C17C78 /* ThreadLocalDetail.cpp in Sources */, - C25EE53FE53FC768EB023382FA5B9F23 /* ThreadName.cpp in Sources */, - C2BA80FAE37E31948F0DF31B11EF0C61 /* ThreadPoolExecutor.cpp in Sources */, - A963EA2AB502E00FF947FDA166E2245B /* ThreadWheelTimekeeper.cpp in Sources */, - 00A7B48C3E8BA90F90E4F1F4E7389C7A /* Time.cpp in Sources */, - 6078026A3F3104A6A5182525FA596CE0 /* TimedDrivableExecutor.cpp in Sources */, - 2C152D0255D34823A94655288092C778 /* TimekeeperScheduledExecutor.cpp in Sources */, - B1FE94297DF545970CC7AF2A9176D4A1 /* TimeoutManager.cpp in Sources */, - A3728DFC1D081CD0D9AE67AB8083DFEC /* TimeoutQueue.cpp in Sources */, - A71A0589A9470E137E62B8499CE12F37 /* Unicode.cpp in Sources */, - A230A636EBAA3FC7C21F16C0CB813B2C /* UniqueInstance.cpp in Sources */, - 014BF8C7B22928C76013CA44AE2DCD41 /* Unistd.cpp in Sources */, - 579403A7E23A3D1B484B09EDFBABF685 /* Uri.cpp in Sources */, - A7EA91E9ED828D185AE4832A3C5C14BD /* VirtualEventBase.cpp in Sources */, - 0D75B9D576357B83D4357CB7250F21C2 /* WaitOptions.cpp in Sources */, + E876D7845F31B34FFA2B0B00B40417EE /* RCTVibration.mm in Sources */, + CEB26B86EF9157DF991228342054EA65 /* RCTVibrationPlugins.mm in Sources */, + 1DFF41F598415D020408E406CB166331 /* React-RCTVibration-dummy.m in Sources */, ); runOnlyForDeploymentPostprocessing = 0; }; @@ -29740,6 +29120,76 @@ ); runOnlyForDeploymentPostprocessing = 0; }; + 1B8156818A3C38EC1FA7C507D02BC519 /* Sources */ = { + isa = PBXSourcesBuildPhase; + buildActionMask = 2147483647; + files = ( + C0C0EF0DF48C442C5D3E0125555F3DB9 /* BaselinesAsyncSocket.cpp in Sources */, + 5815B0C94E2D9D948C6ED96D77712351 /* BaselinesTcp.cpp in Sources */, + 013553D3D8B3EBB2A097ACD5AC6083A6 /* Benchmarks.cpp in Sources */, + 26C4DF08AF448404B40174B44973C71A /* ChannelRequester.cpp in Sources */, + B5B8357A99A1550598A5F52499585E1A /* ChannelResponder.cpp in Sources */, + C3B1B8445224386A9185AE800813B272 /* ColdResumeHandler.cpp in Sources */, + AD8C3E0558DCBDDC3117F29E3B969EC3 /* Common.cpp in Sources */, + 5903A92557084E5ACBDBD8C18F5A34F3 /* ConnectionSet.cpp in Sources */, + 323E819C735C9E8B962812DDA5C1E3F0 /* ConsumerBase.cpp in Sources */, + 8A38653D5A2C296F2BB3C4FF02571095 /* ErrorCode.cpp in Sources */, + 3FE7943C5B720BA82E1D90D34CE206D5 /* FireAndForgetResponder.cpp in Sources */, + 8E49448A98365AA6F2E3A383B03FB856 /* FireForgetThroughputTcp.cpp in Sources */, + B16262D407B0B4C00560054663B2DEFA /* Fixture.cpp in Sources */, + 3799C31A023E9DD55E5AFCBC74A97AE4 /* Flipper-RSocket-dummy.m in Sources */, + 306B4BB0E7A7FC3095C364A0FF2AB5EF /* Flowables.cpp in Sources */, + 60BDB144F67871782672F611680BBDCF /* Frame.cpp in Sources */, + 4D8C78402C33BFD6D602053420A72503 /* FramedDuplexConnection.cpp in Sources */, + 215B3E635975F058839776D098648CCB /* FramedReader.cpp in Sources */, + 47450857A8045428156A14CC5D7C4623 /* FrameFlags.cpp in Sources */, + 2F389B1842DB2788C24CB3C558F1E069 /* FrameHeader.cpp in Sources */, + 52B89D360F26BC9D04B8C51EB9139B8C /* Framer.cpp in Sources */, + E857DE49493CE8846C3C220293CA0DFD /* FrameSerializer.cpp in Sources */, + 69D0472C2AD09C233045096DDECDADBE /* FrameSerializer_v1_0.cpp in Sources */, + 992E8A4AFD984765104DFFD2F7BE3008 /* FrameTransportImpl.cpp in Sources */, + 1FC33F239475C3B0B9B9818FA55EFD48 /* FrameType.cpp in Sources */, + 2ADABC038F91F8180BEB756578300736 /* KeepaliveTimer.cpp in Sources */, + A7030DCDE0E72AC9CB0C7B01F27C835A /* Observables.cpp in Sources */, + ED863025481CEF8C0A30E633ECC73748 /* Payload.cpp in Sources */, + E69CA0AA32685635B969EE0042F2D0DD /* ProtocolVersion.cpp in Sources */, + D4D36A02C1E7E60BBBCA6E46D8A3F526 /* PublisherBase.cpp in Sources */, + 15EBE00030192A312CE041F99C70149F /* RequestResponseRequester.cpp in Sources */, + 7DF0B0551FCE863BE73CEC60B94652DB /* RequestResponseResponder.cpp in Sources */, + E2A37AB389ABF8A76AD38DD61E7457A4 /* RequestResponseThroughputTcp.cpp in Sources */, + 6312BA7D420AA8B80FC1396A7000B044 /* ResumeIdentificationToken.cpp in Sources */, + 87FB67E20260F294117B054CAABDFBCD /* RSocket.cpp in Sources */, + B01209A23FE1CC8385E758AF5C00F6F2 /* RSocketClient.cpp in Sources */, + 290E7365DE006BABA2ACAFF54A9D2C72 /* RSocketParameters.cpp in Sources */, + AE2F1A750ACAEDD30747AC94583C7C27 /* RSocketRequester.cpp in Sources */, + 0A16DE274AFCD1A3C5F5A38E36820DD1 /* RSocketResponder.cpp in Sources */, + 630D705E1E3160B0557ABB50F6C258AA /* RSocketServer.cpp in Sources */, + DBA98B4A0209E0C42E4D56916E6324A1 /* RSocketServiceHandler.cpp in Sources */, + 2FA5972B9E7F6192C06B0F4A642BE6C4 /* RSocketStateMachine.cpp in Sources */, + 022ADD2E6EC4B6A2463449CEFBCF62F9 /* RSocketStats.cpp in Sources */, + A86F74D5AD97E15B7F319DCCD3262AE3 /* ScheduledFrameProcessor.cpp in Sources */, + A0A5188AC322F6C16763A728214C11E1 /* ScheduledFrameTransport.cpp in Sources */, + CBD7AE6A7574D0EFFCAF7F272B15E165 /* ScheduledRSocketResponder.cpp in Sources */, + AAA164F56750A8868EBF535C378FE778 /* ScheduledSingleSubscription.cpp in Sources */, + 5427E78D1BAFD94829D840270046F65E /* ScheduledSubscription.cpp in Sources */, + F1035D0A8900061CC5C5BADBC4D8A318 /* SetupResumeAcceptor.cpp in Sources */, + CD910DCD46D3813B0B9DA927547A3B7A /* StreamFragmentAccumulator.cpp in Sources */, + 7AFB49D317F9ED46079E90148F66D404 /* StreamRequester.cpp in Sources */, + 7826E6F107BBF51B4053095D6438627D /* StreamResponder.cpp in Sources */, + 524BEA37EC655920105A852861809B59 /* StreamStateMachineBase.cpp in Sources */, + 0EAC9730F80AA2D6D5A23EBDA0B4A4E8 /* StreamsWriter.cpp in Sources */, + E4680014C14423A974208E4620A258C1 /* StreamThroughputMemory.cpp in Sources */, + 0C7E639EDDA6AE0CEE2AC7C09EE026CB /* StreamThroughputTcp.cpp in Sources */, + 5946FF5AE953D2124A798B5145547929 /* Subscription.cpp in Sources */, + 011DF98536337AEAEF1ADC85CEF642AA /* Subscription.cpp in Sources */, + EFFF673E6304303D82E399275B2A3213 /* SwappableEventBase.cpp in Sources */, + 59CB0170FB2C64210D3170E2A3EAB76B /* TcpConnectionAcceptor.cpp in Sources */, + C71B0BDA66DF1E03EB31AF659E46C800 /* TcpConnectionFactory.cpp in Sources */, + F8EC8BE7E4ABF16D51C6733AE81FE987 /* TcpDuplexConnection.cpp in Sources */, + 06851EF6600EDF5ED23E0A58E27F1798 /* WarmResumeManager.cpp in Sources */, + ); + runOnlyForDeploymentPostprocessing = 0; + }; 1C8153817F0925DCBBD335B4A8D830EB /* Sources */ = { isa = PBXSourcesBuildPhase; buildActionMask = 2147483647; @@ -29770,29 +29220,22 @@ ); runOnlyForDeploymentPostprocessing = 0; }; - 22AD6F821D6EF956B44DA31ADA09C64B /* Sources */ = { + 23714B87EF4E358934144DF1ADFD019B /* Sources */ = { isa = PBXSourcesBuildPhase; buildActionMask = 2147483647; files = ( - E51E9B99FFBC62320E3D6E7DDA2AB29B /* UMAppDelegateWrapper.m in Sources */, - 74460AAD747CE1FDC52AF07443FC5AE7 /* UMCore-dummy.m in Sources */, - 543FD4FAA346F4E1FC73BD3C0AC0F7CA /* UMErrorCodes.m in Sources */, - 8140514C7C64A055A01F738AF5FE076D /* UMExportedModule.m in Sources */, - 941365C5D1C3695EA97A505E64FF0BDC /* UMLogManager.m in Sources */, - 5F05F5021A2CEDD9E8394C7F1EC08142 /* UMModuleRegistry.m in Sources */, - E4005B3330ADF61EE793B59F23C2C6F2 /* UMModuleRegistryProvider.m in Sources */, - CEA334A548F00533CA7D6C97630A1361 /* UMSingletonModule.m in Sources */, - 7FC128EEA44FBE52AFF124900D4154CF /* UMUtilities.m in Sources */, - 9C9DB4ADD6FC782042C672782FC7F9D4 /* UMViewManager.m in Sources */, + E9CEBB7DBEE768BE09E9129A3DC9A49C /* EXKeepAwake-dummy.m in Sources */, + E673E0352A8B4350E45B7A109D3D4021 /* EXKeepAwake.m in Sources */, ); runOnlyForDeploymentPostprocessing = 0; }; - 23714B87EF4E358934144DF1ADFD019B /* Sources */ = { + 255A810A48F513B06FBFBD32DBB7FC2A /* Sources */ = { isa = PBXSourcesBuildPhase; buildActionMask = 2147483647; files = ( - E9CEBB7DBEE768BE09E9129A3DC9A49C /* EXKeepAwake-dummy.m in Sources */, - E673E0352A8B4350E45B7A109D3D4021 /* EXKeepAwake.m in Sources */, + F6E64138C113CA650C89D013706A3B4C /* RCTSettingsManager.mm in Sources */, + F5F74028EA5A4181D1AA7BDD85450A6C /* RCTSettingsPlugins.mm in Sources */, + 5594F7E8B0012FB85A1BF8234911FDEA /* React-RCTSettings-dummy.m in Sources */, ); runOnlyForDeploymentPostprocessing = 0; }; @@ -29805,11 +29248,274 @@ ); runOnlyForDeploymentPostprocessing = 0; }; - 32D839B0EE02CDAB87BDF6A982BD5803 /* Sources */ = { + 266B3C154EDDDE7A69C37DFDDA066710 /* Sources */ = { + isa = PBXSourcesBuildPhase; + buildActionMask = 2147483647; + files = ( + 52DF97F7A00DEBE421BC95EF9E6DD58F /* crashlytics.nanopb.c in Sources */, + EA72BBF29CCD93193B8C63C13185A3B4 /* FIRAEvent+Internal.m in Sources */, + EDCC3ED30EEECF73F9791802BB70A899 /* FIRCLSAllocate.c in Sources */, + 7F997F3BAD3BC2551FFEE181A555FF86 /* FIRCLSApplication.m in Sources */, + CA2D22EFCE60BC91798908519254B192 /* FIRCLSApplicationIdentifierModel.m in Sources */, + F81F0C79A590E40F407991125F13E0FA /* FIRCLSAsyncOperation.m in Sources */, + D563DAD7416638C30A1E7AE1C4992FDF /* FIRCLSBinaryImage.m in Sources */, + 130C229A798E375398E6C5663F9E3387 /* FIRCLSByteUtility.m in Sources */, + 744ED58845F155A7A6F8522102FEC205 /* FIRCLSCodeMapping.m in Sources */, + 657AC102699A50A7F538B1615C316D5B /* FIRCLSCompactUnwind.c in Sources */, + EBC65BE5D182DBA4C09447896B3E4250 /* FIRCLSCompoundOperation.m in Sources */, + 2A9F6C61FC096C9326A0EEFBB0EF70B1 /* FIRCLSConstants.m in Sources */, + A9312643A2C6C90B4D1A90205399CFC6 /* FIRCLSContext.m in Sources */, + DE829485536559A69F378500960E1A31 /* FIRCLSCrashedMarkerFile.c in Sources */, + 7535A245FC3DA03F4196518A99F90BC2 /* FIRCLSDataCollectionArbiter.m in Sources */, + 49978924CE1584E98DCACF305D3C272D /* FIRCLSDataCollectionToken.m in Sources */, + 01BBCE4DC22320DBD5DEB3EB7AFF8870 /* FIRCLSDataParsing.c in Sources */, + 9E9B6BECE374B463988AAD0D13DD0F0F /* FIRCLSDemangleOperation.mm in Sources */, + 062B136FCBC2166709605B9A9F5AC515 /* FIRCLSDownloadAndSaveSettingsOperation.m in Sources */, + 8DF4790A5F48AC89DE2AA03F9E53442F /* FIRCLSdSYM.m in Sources */, + 5FB9E1D5956FEA4C2DBFCA5000D5B431 /* FIRCLSDwarfExpressionMachine.c in Sources */, + B657A9964D2D5F315626C8F831A4D480 /* FIRCLSDwarfUnwind.c in Sources */, + A39381D8A1E0E6EBC6A91B058D07E6D2 /* FIRCLSException.mm in Sources */, + 09C8003ADEB8200218E5297E85A68C19 /* FIRCLSExecutionIdentifierModel.m in Sources */, + 19E54691DE138F8B0EB41115FC4976F3 /* FIRCLSFABAsyncOperation.m in Sources */, + 8A6BFFA21F3015872B3B5B583655D84A /* FIRCLSFABHost.m in Sources */, + 19CFBDB9CB33DA50D22EE51944F1A54E /* FIRCLSFABNetworkClient.m in Sources */, + 27BDC46DB24AE69B5D9FBA646EA43C26 /* FIRCLSFCRAnalytics.m in Sources */, + 6351EA516F1A196B849C5AD39D6DF888 /* FIRCLSFile.m in Sources */, + 4276794B6F515C099E1B6308790AAA7E /* FIRCLSFileManager.m in Sources */, + 2C118E9BFEDC4217B2772E7BDF3519BD /* FIRCLSHandler.m in Sources */, + A79349E16B741325C3095AD3F0504BB3 /* FIRCLSHost.m in Sources */, + 7F25D78F500CEAB31BEDF03A66EDA0A3 /* FIRCLSInstallIdentifierModel.m in Sources */, + AA510F205456806A3B11C456AA724D17 /* FIRCLSInternalLogging.c in Sources */, + A00D87E308004A9E765658C21EDCBCE3 /* FIRCLSInternalReport.m in Sources */, + E8295D2E62DF2AFD794D9E535359C23F /* FIRCLSLogger.m in Sources */, + C9D331452EE297E1D63CFBA6A1F5FEB8 /* FIRCLSMachException.c in Sources */, + 6457E178B97D52FA134763004CDE1459 /* FIRCLSMachO.m in Sources */, + B27F908A2377050570C70FEDC70E3A21 /* FIRCLSMachOBinary.m in Sources */, + D8E55BE3E919643C7B5B129837170343 /* FIRCLSMachOSlice.m in Sources */, + 2969DDDC231154FB7B58A898C9A9A803 /* FIRCLSMultipartMimeStreamEncoder.m in Sources */, + D567595F33534AC8321756EEE72BF684 /* FIRCLSNetworkClient.m in Sources */, + F3B93802067FEDA63C5F5DD37626BF9F /* FIRCLSNetworkOperation.m in Sources */, + 2289B69EFB04F7CA5DECC57722286CA6 /* FIRCLSNetworkResponseHandler.m in Sources */, + 5253613C4299913B0F23B7CB202FFDC7 /* FIRCLSOnboardingOperation.m in Sources */, + FD0A932405ADE89ED9A97D2E57917082 /* FIRCLSPackageReportOperation.m in Sources */, + 1491D560BEB19894FC1C8CDAF8EA67FE /* FIRCLSProcess.c in Sources */, + E2923AA2F207524C1FB9757310A8810B /* FIRCLSProcessReportOperation.m in Sources */, + A185FCF463054724C7D36C83633499DE /* FIRCLSProfiling.c in Sources */, + 280B6BF6E9B764C87039372012166E39 /* FIRCLSRecordApplication.m in Sources */, + 7442435BD27B83761D123BA7D41245BA /* FIRCLSRecordBase.m in Sources */, + A65D79DA9AE126A0D535202E4682BF67 /* FIRCLSRecordHost.m in Sources */, + E24D22A6D2A70B7FBAF6FA0993631414 /* FIRCLSRecordIdentity.m in Sources */, + 66F45766146594CAEB8594E366D9DEFB /* FIRCLSReport.m in Sources */, + BA967EBBDA71F4D9C8BC453AF9FF4BA3 /* FIRCLSReportAdapter.m in Sources */, + 33358483E6758BBB59BA47C928DF5938 /* FIRCLSReportManager.m in Sources */, + D54306B796BC391945E0AC0259DBBC06 /* FIRCLSReportUploader.m in Sources */, + 24090256342C69A74C33C2D6CDF4A8D7 /* FIRCLSSerializeSymbolicatedFramesOperation.m in Sources */, + 938D6CE3852243FC47DB49C89452DB4C /* FIRCLSSettings.m in Sources */, + F986A7D719455804087D6409FD045A4F /* FIRCLSSettingsOnboardingManager.m in Sources */, + 8942EAB571F4706468006DB21B3589F7 /* FIRCLSSignal.c in Sources */, + 831D9B0890AECE0DA15E7840C8846A2F /* FIRCLSSymbolicationOperation.m in Sources */, + 65EC1B6C817451E539952FA2572076C2 /* FIRCLSSymbolResolver.m in Sources */, + 075B78EED4607267A18948CE1A146EEA /* FIRCLSThreadArrayOperation.m in Sources */, + 98D469AB94796736F7C439489A1E0322 /* FIRCLSThreadState.c in Sources */, + 513858AE5EC3C9B49953082DC2B47905 /* FIRCLSUnwind.c in Sources */, + 123F25470A20B6865EE31DA102D79ADE /* FIRCLSUnwind_arm.c in Sources */, + EE0F2177772A7379A691262F49DAF9AE /* FIRCLSUnwind_x86.c in Sources */, + 6EAAA6FDA4D6207184E086D3D6DAFA55 /* FIRCLSURLBuilder.m in Sources */, + 5ABDB6E7CED86C80428EAFC48F8339F3 /* FIRCLSUserDefaults.m in Sources */, + D5E6947FEBB5C8EB029169E9393F1462 /* FIRCLSUserLogging.m in Sources */, + EF0325AEC87FDF244176038EC51E7968 /* FIRCLSUtility.m in Sources */, + 45BF28D55FD1BC7C5D5BEDF3FBE4280C /* FIRCLSUUID.m in Sources */, + FCFA8BA7736AFF50C6A9E3845084337B /* FIRCrashlytics.m in Sources */, + 8D227473F170A7CF9446342AA76B385D /* FirebaseCrashlytics-dummy.m in Sources */, + 54E8B704E74D1E83230F7990EB820136 /* FIRExceptionModel.m in Sources */, + 9860AAA40F2BBB9D737F6A21DC000911 /* FIRStackFrame.m in Sources */, + ); + runOnlyForDeploymentPostprocessing = 0; + }; + 30865794B2C32B6C28CD5B86C99272A4 /* Sources */ = { + isa = PBXSourcesBuildPhase; + buildActionMask = 2147483647; + files = ( + B1A9C57C36114D3B46233B53A3DA51E0 /* Assume.cpp in Sources */, + 1C05DBEE1744B9E133C2635064D7649D /* AsymmetricMemoryBarrier.cpp in Sources */, + FC0BAB648B7ACB759DBC28EFDF0CF1DF /* AsyncPipe.cpp in Sources */, + 4A07B035E82069D898A4B74A624AB98A /* AsyncServerSocket.cpp in Sources */, + 549C2DF8E8B62F539F79EA714BDAF122 /* AsyncSignalHandler.cpp in Sources */, + 1C82EE8EC42E439BA54A71BA4EC50341 /* AsyncSocket.cpp in Sources */, + 0E4202F4898D47325175B6D4AB7DE623 /* AsyncSocketException.cpp in Sources */, + 62F9C735C6E48EF4E0B7CE3D21FD4E00 /* AsyncSSLSocket.cpp in Sources */, + BEA1249718187ED59FF54BFA284D4713 /* AsyncTimeout.cpp in Sources */, + 7F1BC79BC8902FE5F4518DD037BA4218 /* AsyncTrace.cpp in Sources */, + 8EF1F8DC7B96C87756BA27F276942E99 /* AsyncUDPSocket.cpp in Sources */, + A5CDDC433992106CB7BB1CE5A7245E54 /* AtFork.cpp in Sources */, + 29F58B73220152592DC2EC311A9C945D /* AtomicNotification.cpp in Sources */, + D12EF53E0E90C261BC40A153B8D3F755 /* Barrier.cpp in Sources */, + DB063BB242DE9E1A9AF55CDE3AD6D715 /* Benchmark.cpp in Sources */, + DA4F57E0F093203C10A53E350EAAE95B /* Builtins.cpp in Sources */, + D5D5EC3943D380AA2E85AE7DA92602E0 /* CacheLocality.cpp in Sources */, + B5B67F4C67EC45C77CB55B0084EB5271 /* CancellationToken.cpp in Sources */, + ED7BA179B08D3F82CA38AF84568F1CCF /* Checksum.cpp in Sources */, + D0C9B5D8E7F4D490825ED8A37FF3682A /* ClockGettimeWrappers.cpp in Sources */, + 990871901469F57EA2F2B1F55183A9FC /* Codel.cpp in Sources */, + FCB27EE4F1215958362E4828A1BC1C99 /* Conv.cpp in Sources */, + 423B4FC47ED7D4197B3C337E53E52513 /* CPUThreadPoolExecutor.cpp in Sources */, + 9B92EE777E93E8812BFD8C0E80B8B4F8 /* CString.cpp in Sources */, + 36C600209372720FCA59DDD3FC3C676F /* Cursor.cpp in Sources */, + 5B654D698B44AFA9912BD052873C771D /* Demangle.cpp in Sources */, + 620C068B105DFE5D31C626AC900DF9A5 /* Demangle.cpp in Sources */, + 9C265CFDA9B7F39B03BE2EA806AC3F6F /* Dirent.cpp in Sources */, + F00560CF8052B8C36B350FE9F54489FC /* DistributedMutex.cpp in Sources */, + 625FFCF8B7013D3D3AAF36F9C92A2932 /* dynamic.cpp in Sources */, + DDB5935AB7141AF0DFA2657E9E5FDFC7 /* EDFThreadPoolExecutor.cpp in Sources */, + 4D96B3C2520AE74FCC0F71FC5D20FD09 /* EventBase.cpp in Sources */, + C60AE318027C56C21A7BD115CFDF96C4 /* EventBaseBackendBase.cpp in Sources */, + E0B1D2AF8727104AA232E91900FF8B67 /* EventBaseLocal.cpp in Sources */, + 06E7A3C0A3EC51C15BF0012BBCDA97F4 /* EventBaseManager.cpp in Sources */, + 5B932B0C7D1A019B6EAADE4D31BB6DA9 /* EventBaseThread.cpp in Sources */, + 7021E11D519B2412A1F6933F0E986845 /* EventHandler.cpp in Sources */, + 234F801E8972095E2A54059F65BF331D /* ExceptionWrapper.cpp in Sources */, + 766036991B7A3FE9E88C4C34F627EF0C /* Executor.cpp in Sources */, + 9C36FE526A6C0CAFD4EBCD12FDA7160D /* ExecutorWithPriority.cpp in Sources */, + C1FF792846A7564B520A4A0DEF4DE33E /* F14Table.cpp in Sources */, + 850330CC6E7DC21086AA2E5CE9E7E6E3 /* Fcntl.cpp in Sources */, + F7D339FC6D7016034B1909D0CEF6814D /* File.cpp in Sources */, + 41527CB02685BCFBB3FE5EFCA7988E80 /* FileUtil.cpp in Sources */, + 83A5F5E1A80ABA06391633800A6CB0CD /* Fingerprint.cpp in Sources */, + 5283658AAD0A635BC6E71BFE6E46E72E /* Flipper-Folly-dummy.m in Sources */, + 232DAAA2C3C9F093DFE21A8AF65C2171 /* Format.cpp in Sources */, + 01821AC02B2B3B925F0C47029D5C30B7 /* Futex.cpp in Sources */, + 1F92ECC824FA21B3803A283D014A0084 /* Future.cpp in Sources */, + A93D50F8206983B1F30AAD85D1B564D5 /* GlobalExecutor.cpp in Sources */, + 2EE584792D3CB86EAD71AE972742439A /* GlobalShutdownSocketSet.cpp in Sources */, + 47DCD55611568CF497AFBFA394F01128 /* GlobalThreadPoolList.cpp in Sources */, + 3AF1AA005C56C75810117A34ECC2A794 /* GroupVarint.cpp in Sources */, + B2E7767AC8EF27992ADC0DD30E269110 /* HardwareConcurrency.cpp in Sources */, + 0D9C733C19C269F70510EC6A188DCD2C /* Hazptr.cpp in Sources */, + 7D124D4425180333558E0972D741350A /* HazptrThreadPoolExecutor.cpp in Sources */, + 0264B550231974927DC7D43958A3855A /* HHWheelTimer.cpp in Sources */, + FA06568B514EA9209639154C52126B34 /* Init.cpp in Sources */, + 9DC4BFD3E4FDF976A8DBCF87256E2F83 /* InlineExecutor.cpp in Sources */, + CCC6BE63615F8174E1775FE1BA73166F /* IOBuf.cpp in Sources */, + 0C472DAC5CAD999E16F8473DD261676A /* IOBufQueue.cpp in Sources */, + 22D0950BA53FC4AFD42918B5A984F14E /* IOThreadPoolExecutor.cpp in Sources */, + 27DA54E62A0ABBD387158C23D49D8E6B /* IPAddress.cpp in Sources */, + 9B3DB6BBA2A57AD4F9ACCB8E298FBB28 /* IPAddress.cpp in Sources */, + 96F937A210596A21189D073D31D926C9 /* IPAddressV4.cpp in Sources */, + 5268A428E33B4F3EBB2B4B09116BCAFD /* IPAddressV6.cpp in Sources */, + 1108508861B3E3C7F1417640E6E7BF7F /* json.cpp in Sources */, + 257B2C32FE35A8635FBDDC3C04FD24B9 /* json_patch.cpp in Sources */, + 64ED67A2852AF5F7C735DF25600DBAE7 /* json_pointer.cpp in Sources */, + 7B33D1ADC53795C06499B990BA8DE667 /* Libgen.cpp in Sources */, + 69850740DC23D8F7E828E8BAE60DBF0B /* MacAddress.cpp in Sources */, + 669A85F4029FA6D9DEB6B9A49774FA49 /* MallctlHelper.cpp in Sources */, + B6E9E9BD6F41FCA59071B59A8198EAFF /* Malloc.cpp in Sources */, + C5232A764EC8C532AE19CA6160F88650 /* MallocImpl.cpp in Sources */, + 412EFCE930537845CA8040E9325458AE /* ManualExecutor.cpp in Sources */, + 31C9383F9C068932971F7DE87330E133 /* ManualTimekeeper.cpp in Sources */, + B5F51BE79A16255259D5998B7D488835 /* MemoryIdler.cpp in Sources */, + B10B2CB1B65BB5CCD05DBE914969CA78 /* MemoryMapping.cpp in Sources */, + 4D8317759C43E212AFBAE40C0FB66262 /* MicroLock.cpp in Sources */, + 1DC4F2A5767FD53B1C5F7E7C36FB2652 /* NetOps.cpp in Sources */, + 2420EB8DABC669359EF5BA205DF61DD3 /* OpenSSL.cpp in Sources */, + 596992E0D58A0074B0EC9412F5B4D23D /* OpenSSLCertUtils.cpp in Sources */, + E5F32060ECB5A2A2668D4190D4BDE359 /* OpenSSLHash.cpp in Sources */, + 3DE236DC629F21FB94861689F4BF9F1D /* OpenSSLThreading.cpp in Sources */, + 0B6A2152EA13AD759DCC2F495DF3893C /* OpenSSLUtils.cpp in Sources */, + 85590CC3B2D018F12A59FDDB2AB5F49F /* ParkingLot.cpp in Sources */, + EE3DFE36FE7F99043F9CFA12EA32FADC /* PasswordInFile.cpp in Sources */, + 2683209D9F1E66218DDBE6884C673B58 /* PThread.cpp in Sources */, + C03EB8FEF65C3E3493F5EC55CD60EEE3 /* QueuedImmediateExecutor.cpp in Sources */, + 445FE40A8756625D3BB441AFC8D781F7 /* Random.cpp in Sources */, + 51237210E050E5A3EC6AAEB881A60383 /* RangeCommon.cpp in Sources */, + 329221506B9AA6E06120CEB3A900A6CD /* RangeSse42.cpp in Sources */, + FDF1D98A15972218515BB0BE47707E41 /* RecordIO.cpp in Sources */, + E4E303D0E568A8E8FB634907891D7E2B /* ReentrantAllocator.cpp in Sources */, + A0DA2D4D18B12BEE71A46CC31002E8CF /* Request.cpp in Sources */, + 25EE03E12B1C1866CB753523FF7D55E5 /* SafeAssert.cpp in Sources */, + E33B8CB4B5F6967BD3A5D323A91589AB /* SanitizeLeak.cpp in Sources */, + B67D1583A86230769C2E0B262E2453C5 /* SanitizeThread.cpp in Sources */, + A13659C3C76694E42388009A0CCA7E81 /* Sched.cpp in Sources */, + 66142A1C56A2505AB8B9FD732D2CBDFD /* ScopedEventBaseThread.cpp in Sources */, + 59C13B4ED833B593CD33F59B51A7B5EE /* ScopeGuard.cpp in Sources */, + 3089F67BAC4927931C3B495179149E7F /* Semaphore.cpp in Sources */, + 97C1452002AE119071971C73A6875D2D /* SerialExecutor.cpp in Sources */, + FFA7A712E5A6268C253266113578A27B /* SharedMutex.cpp in Sources */, + 758E5C30C6B6008D30750F9832711DF5 /* Shell.cpp in Sources */, + 9119E48777DCA5DDFBA9407A4C5F3BF4 /* ShutdownSocketSet.cpp in Sources */, + 93BFABB6362025C462715546D9D88E61 /* Singleton.cpp in Sources */, + 485EC6632A13DE4BCA028CA61B0EF5C9 /* SingletonStackTrace.cpp in Sources */, + 62A8E2BF25F0148E4AF46C5E824D0147 /* SocketAddress.cpp in Sources */, + 745D719F8EBC669BFD237E6D5C5D1608 /* SocketFastOpen.cpp in Sources */, + 91120D81D43D3CB2DF83087D7CA76227 /* SocketOptionMap.cpp in Sources */, + F59979DF600BF5CDD3AD4CCA11588F8D /* Sockets.cpp in Sources */, + D4975963569033DC9E2817049EAC96A3 /* SpookyHashV1.cpp in Sources */, + 81C9BDCC2F92DE67DBFF42C8A1B44A8F /* SpookyHashV2.cpp in Sources */, + 9A7373493C29317F78801A5D22126A64 /* Sse.cpp in Sources */, + 2B954D63D976E5FB8B707BC95B75B87A /* SSLContext.cpp in Sources */, + 856A017D864BC114CD55C803190D05BC /* SSLErrors.cpp in Sources */, + A9A73D56F54C5C09AA82505C95BE75E7 /* SSLOptions.cpp in Sources */, + EB57C1BC44052881D1EB3408766675D5 /* SSLSessionImpl.cpp in Sources */, + E1755846F294C7DE6ACC28E4355178A6 /* StaticSingletonManager.cpp in Sources */, + E93257561FC8320F3117B09B7A71109E /* Stdio.cpp in Sources */, + AEFBC00847D9363CCF96D4B55014CD3A /* Stdlib.cpp in Sources */, + 7D3CC16CD9A381322C613650B341F6F3 /* String.cpp in Sources */, + E5C9FC6D7B21BC95A8AB2A7980844805 /* String.cpp in Sources */, + 946AB0F896C0BD2DE88BC05477AAD997 /* Subprocess.cpp in Sources */, + 1F1391A87FA4B9A5786DB3574CB9438D /* SysFile.cpp in Sources */, + 670DD52D8579E7D6C30DA88F5C274AC4 /* SysMembarrier.cpp in Sources */, + 87D5B8A1931558845FCD728218EEFDFF /* SysMman.cpp in Sources */, + 80ED33BA98350BCEC806864EE6E95140 /* SysResource.cpp in Sources */, + D1BDA618249913BD84342F6EFEA96F4F /* SysStat.cpp in Sources */, + E12957A994CEBC0D8AB14C53AC29A635 /* SysTime.cpp in Sources */, + F4E77368E8D9DC57EC83A1D3BE764C59 /* SysUio.cpp in Sources */, + 38997E68B2A849C74D81F52882A304B3 /* ThreadCachedArena.cpp in Sources */, + E689AA2055E750C0116058EC3E2DC96A /* ThreadedExecutor.cpp in Sources */, + 40DD545013213F880342D299E41A760D /* ThreadLocalDetail.cpp in Sources */, + A5EBF143BC5E2273CF5DE9899A0BFFA5 /* ThreadName.cpp in Sources */, + 171896943BBFAA6163ED338C342A16C8 /* ThreadPoolExecutor.cpp in Sources */, + 8D6CE9842BF33E487D467CC944AAA4B6 /* ThreadWheelTimekeeper.cpp in Sources */, + C571235E4F6CD336FAE42D6AE4C1A69F /* Time.cpp in Sources */, + 715A052ED8977DA1CBB4B8381ADCDBE4 /* TimedDrivableExecutor.cpp in Sources */, + C74D2CC1248089F8AF443A2108EB68AB /* TimekeeperScheduledExecutor.cpp in Sources */, + BC94EBA1F89D9B4C85C6572249C6BFB3 /* TimeoutManager.cpp in Sources */, + 813154FEC14449E50D4A67806DB21A75 /* TimeoutQueue.cpp in Sources */, + 0CFE4D342581C8BFC6F7309481DC7F3E /* Unicode.cpp in Sources */, + CE481272B9E50801F81C7F00A02266F6 /* UniqueInstance.cpp in Sources */, + 073DCC695D13DB5ADB1267F6898FD028 /* Unistd.cpp in Sources */, + D79B6B95DDE7802E62C82D8976E3D2BE /* Uri.cpp in Sources */, + 8B5DB7A7B817B2DB94796CECB1A5250B /* VirtualEventBase.cpp in Sources */, + CC60164220C603B6C5F5ED2A2709B756 /* WaitOptions.cpp in Sources */, + ); + runOnlyForDeploymentPostprocessing = 0; + }; + 34D6E1D493AB72925AB1154056B762B9 /* Sources */ = { + isa = PBXSourcesBuildPhase; + buildActionMask = 2147483647; + files = ( + 70FD1459DAF23F402E8475711B50CEFB /* FIRAnalyticsConfiguration.m in Sources */, + B2068BA9372FCB9E5748E050603763E5 /* FIRApp.m in Sources */, + 10D3D8BF0E3CA1E949AF2F839C0321A1 /* FIRAppAssociationRegistration.m in Sources */, + 678021BD48E9B9ED089A8B576B2F8EF5 /* FIRBundleUtil.m in Sources */, + F1E250CEC6ABF8F1D9B20034974BA4AD /* FIRComponent.m in Sources */, + F7F4239F2743738B5158CB0F4A4B004E /* FIRComponentContainer.m in Sources */, + DF91763D40655523783ED4A987EC4B52 /* FIRComponentType.m in Sources */, + B4051E50B00598940A8468A27D628470 /* FIRConfiguration.m in Sources */, + 7A659B374953ABC9F54029CBBFF87B55 /* FIRCoreDiagnosticsConnector.m in Sources */, + 680B0BEDEC247A84E478C079D0E76085 /* FIRDependency.m in Sources */, + 6DDED8A723F98D9C830FCDA99ECF47B5 /* FIRDiagnosticsData.m in Sources */, + 340A8AAAB9F280E6421B56391704ED6C /* FirebaseCore-dummy.m in Sources */, + 761049C6E5852ED1855BF4900DEFE4AC /* FIRErrors.m in Sources */, + 367E95132546EFECE22354A89DB161DA /* FIRHeartbeatInfo.m in Sources */, + 1F64B5BFFC8CA72CDE2F10433DD026A6 /* FIRLogger.m in Sources */, + 14B5715EDD3E500DBC80FBA55D614500 /* FIROptions.m in Sources */, + 68A80C25900451C864DA7014541C800D /* FIRVersion.m in Sources */, + ); + runOnlyForDeploymentPostprocessing = 0; + }; + 3529B297AF64640DD804A604FCDB430C /* Sources */ = { isa = PBXSourcesBuildPhase; buildActionMask = 2147483647; files = ( - 4D4BD957CD7F1CA4AE3C82636B555645 /* Pods-ShareRocketChatRN-dummy.m in Sources */, ); runOnlyForDeploymentPostprocessing = 0; }; @@ -29836,48 +29542,14 @@ ); runOnlyForDeploymentPostprocessing = 0; }; - 3E0DEF9FC3A26DB1726EB23389D8FB65 /* Sources */ = { + 38EB2523E7A5ADAFF418003527BBE1E7 /* Sources */ = { isa = PBXSourcesBuildPhase; buildActionMask = 2147483647; files = ( - 23F880255FD99355C2934B672C938E94 /* RNFBCrashlytics-dummy.m in Sources */, - C029E26863B3C57950073AD8BF04163A /* RNFBCrashlyticsInitProvider.m in Sources */, - 6972EE81FA37E8317A730ADE9136D406 /* RNFBCrashlyticsModule.m in Sources */, - ); - runOnlyForDeploymentPostprocessing = 0; - }; - 3EC4407101D2CE414935D852F85AA221 /* Sources */ = { - isa = PBXSourcesBuildPhase; - buildActionMask = 2147483647; - files = ( - C3662E2AE7983EC94BDF96703E99BC9F /* NSTextStorage+FontScaling.m in Sources */, - A3B5C8FA91E861C82F13D5F1B46D4BE3 /* RCTBackedTextInputDelegateAdapter.m in Sources */, - 6F167C246E753AD7AECF421830191574 /* RCTBaseTextInputShadowView.m in Sources */, - 3D8BB01FBCC4609E0DFCEA30883AA71F /* RCTBaseTextInputView.m in Sources */, - 68D5D6DE29118FE09F709E43DAC3E138 /* RCTBaseTextInputViewManager.m in Sources */, - 4793A678C35D5580DBB3D441A00985E0 /* RCTBaseTextShadowView.m in Sources */, - F542426BD34A99AA4D65072269298C3F /* RCTBaseTextViewManager.m in Sources */, - B42B61CA53608ED500BF6F4844DFF698 /* RCTConvert+Text.m in Sources */, - 77FB0A04BCF38560BCF66548826A35A0 /* RCTInputAccessoryShadowView.m in Sources */, - F58A750DFFCE00A7F8C473C4394C935A /* RCTInputAccessoryView.m in Sources */, - 58CE638F9A39594D5B03261D56EF3679 /* RCTInputAccessoryViewContent.m in Sources */, - BEC08D7CAEEBEA53D39B959B139BADB8 /* RCTInputAccessoryViewManager.m in Sources */, - 8C6DB584B29654F57187DA7D2307DC7F /* RCTMultilineTextInputView.m in Sources */, - 6355F5DDE186A325C9963BBEEE4AD1F3 /* RCTMultilineTextInputViewManager.m in Sources */, - 2D980EA7799AB6230B2E6EBA169EB09A /* RCTRawTextShadowView.m in Sources */, - 65E9FF4CA5F9EED15A6209842F87864F /* RCTRawTextViewManager.m in Sources */, - 72252121A1DE75FC3545164356F2EF7E /* RCTSinglelineTextInputView.m in Sources */, - 3118025E4549BE00C617F4F6ABA09DEB /* RCTSinglelineTextInputViewManager.m in Sources */, - C6FECF61DE6E81971764C4B0ECA900D5 /* RCTTextAttributes.m in Sources */, - 965AE4D5DF4F8752CE18FB9D7A9EC758 /* RCTTextSelection.m in Sources */, - 9D195665137A6FD3B32E5032C6AA28F4 /* RCTTextShadowView.m in Sources */, - 44D6110F384D2495E7F4134D0323B894 /* RCTTextView.m in Sources */, - 3D4EF1FC24ECF3F028C557D2021E8172 /* RCTTextViewManager.m in Sources */, - 3005B9C27D2B3D431E6F151C2ED6D8F7 /* RCTUITextField.m in Sources */, - 6BAFB26E5D55CD25EFC7642EDF1928A1 /* RCTUITextView.m in Sources */, - 414499A93680D2FAF99296FF7CA077C7 /* RCTVirtualTextShadowView.m in Sources */, - 93740B1B6CE3C60E0001A5B562F5E602 /* RCTVirtualTextViewManager.m in Sources */, - 79C100BDA09644B75240324EC18ECF02 /* React-RCTText-dummy.m in Sources */, + 75C7FB9FE4AA499D6145F62036A26A77 /* nanopb-dummy.m in Sources */, + CE2A07132400BA6F5D6708CDB849FA14 /* pb_common.c in Sources */, + D3E5EA68DC7F09B4B6C20923A582F141 /* pb_decode.c in Sources */, + 38223179E1751572E4A94EB19C8E13CA /* pb_encode.c in Sources */, ); runOnlyForDeploymentPostprocessing = 0; }; @@ -29930,17 +29602,12 @@ ); runOnlyForDeploymentPostprocessing = 0; }; - 43A119EF14E22939F23C607A1640763F /* Sources */ = { + 44097693E9A317E37B0F23EB8F681C46 /* Sources */ = { isa = PBXSourcesBuildPhase; buildActionMask = 2147483647; files = ( - C035DD39E1A7B709C3EA4B0B04A4558F /* cct.nanopb.c in Sources */, - E394E8C024891B64EECB0EE9D1E5A0C1 /* GDTCCTCompressionHelper.m in Sources */, - 230DD04E738438C0BB1D05464F2D3A36 /* GDTCCTNanopbHelpers.m in Sources */, - 72718F504B4599F50C6A9FFE7DA6A11D /* GDTCCTPrioritizer.m in Sources */, - E2C0076B7E76F787D079378C56AFB9E4 /* GDTCCTUploader.m in Sources */, - B6B8D90E1D9071ADCB74D1E342D9EF52 /* GDTCOREvent+GDTCCTSupport.m in Sources */, - 45E9F1F4ECA95E205CA5F3BAA5DDD435 /* GoogleDataTransportCCTSupport-dummy.m in Sources */, + BDB5AFFD188675E46B0BF09B4A7135E3 /* RNFBAnalytics-dummy.m in Sources */, + B3A6B4A16330185BCDB99702EEB700A0 /* RNFBAnalyticsModule.m in Sources */, ); runOnlyForDeploymentPostprocessing = 0; }; @@ -29954,82 +29621,6 @@ ); runOnlyForDeploymentPostprocessing = 0; }; - 4A45652BC3533F744487E687413FA07C /* Sources */ = { - isa = PBXSourcesBuildPhase; - buildActionMask = 2147483647; - files = ( - 762BE04B82F75E8D3186DED12EEC1A2E /* FBLPromise+All.m in Sources */, - 853E8B3E4B9502AC2D1B8BA984123FA2 /* FBLPromise+Always.m in Sources */, - C39C5C5F077C288B8E7969B9469E6FDD /* FBLPromise+Any.m in Sources */, - AD4255A67BE6756205F692B2552700E3 /* FBLPromise+Async.m in Sources */, - 31E825642E6F8923F689DCF2BCED6740 /* FBLPromise+Await.m in Sources */, - 868340B25C4BA08F09F7064CEF2C97DB /* FBLPromise+Catch.m in Sources */, - 65C74D2584D6797A3E0D97AF23CAA48B /* FBLPromise+Delay.m in Sources */, - 28B8EFF1F2B56609C0BD6A08F5B0007B /* FBLPromise+Do.m in Sources */, - 21D8D2EB50CDC73DCD4D46F5B2CA9F3E /* FBLPromise+Race.m in Sources */, - 146446DE8FDB7D752B6D05DE8AC1F4FE /* FBLPromise+Recover.m in Sources */, - 8779CE84F6D672DD69A5443A229CB3EC /* FBLPromise+Reduce.m in Sources */, - 78405647A6A7F00C7D6F2517B828F704 /* FBLPromise+Retry.m in Sources */, - 79BD2B37C24FCEA4D340749EB6DBA603 /* FBLPromise+Testing.m in Sources */, - 5C2E8B571A9425AC10B3CA0A964DDDF1 /* FBLPromise+Then.m in Sources */, - 704DE8D9DD360A4DA69CCC3F2833D9DA /* FBLPromise+Timeout.m in Sources */, - DF85E8B7E8DA2537CB6C5868CFAE92A6 /* FBLPromise+Validate.m in Sources */, - D2E12B7DB0913B55C4CF2D24C1AE4B7A /* FBLPromise+Wrap.m in Sources */, - D2C18CE6DA881FC9208B52198C458A61 /* FBLPromise.m in Sources */, - 23BB62BE51D77E2B43E962B7694233AB /* FBLPromiseError.m in Sources */, - F413973DA3F708F736163BDA441E6923 /* PromisesObjC-dummy.m in Sources */, - ); - runOnlyForDeploymentPostprocessing = 0; - }; - 4C7B4C2EAF97FA345A877D832CA1E0A6 /* Sources */ = { - isa = PBXSourcesBuildPhase; - buildActionMask = 2147483647; - files = ( - 89A9FCC7ABF5C38919E8F045224CC8BB /* FIRAnalyticsConfiguration.m in Sources */, - C020B7AA6210B61D38BE6D61E8872D1E /* FIRApp.m in Sources */, - 2AE38FB5DC67BDC738B19935A3748C41 /* FIRAppAssociationRegistration.m in Sources */, - 50A46F9B51069B9DB316D8C0D4FF127B /* FIRBundleUtil.m in Sources */, - B895839B7E06B29CAF736BAA351D01B4 /* FIRComponent.m in Sources */, - 1A452B01BC619B891ADB3D961851437B /* FIRComponentContainer.m in Sources */, - BC7D90C5BB326EA7771348567FB2BF44 /* FIRComponentType.m in Sources */, - 54BD891D56D4AC60DB75C0BDD22BB108 /* FIRConfiguration.m in Sources */, - 9B818382C927F7F0DE02D30CE78C27D5 /* FIRCoreDiagnosticsConnector.m in Sources */, - D32AD22F447180DC0416C806572DD1BC /* FIRDependency.m in Sources */, - EB6336F6D097B9A2678B064AE483EB45 /* FIRDiagnosticsData.m in Sources */, - ABC045BE3432367241A03F4AFC7F7D57 /* FirebaseCore-dummy.m in Sources */, - 963FAD9160F07C085CC97E4732801A76 /* FIRErrors.m in Sources */, - CF9D6BE88091A67009ED603CF200C617 /* FIRHeartbeatInfo.m in Sources */, - 3A773AC8A639262A73ED3F671D3DF883 /* FIRLogger.m in Sources */, - 17A9BA44633DF846494EA2883A19B344 /* FIROptions.m in Sources */, - E1E7F6AE0FA5552149A6DAF46A638E17 /* FIRVersion.m in Sources */, - ); - runOnlyForDeploymentPostprocessing = 0; - }; - 5307C0CBEB3F5BD0F31A1E948D6ED430 /* Sources */ = { - isa = PBXSourcesBuildPhase; - buildActionMask = 2147483647; - files = ( - ); - runOnlyForDeploymentPostprocessing = 0; - }; - 5387423A40B18CF901D255B022BC483A /* Sources */ = { - isa = PBXSourcesBuildPhase; - buildActionMask = 2147483647; - files = ( - ); - runOnlyForDeploymentPostprocessing = 0; - }; - 53B9592D24C6B9A1B59A7588DCDA1094 /* Sources */ = { - isa = PBXSourcesBuildPhase; - buildActionMask = 2147483647; - files = ( - CAB146FAC6468A8D16B74FCEABAE5013 /* UIView+Yoga.m in Sources */, - 55862533AF8EB81C065EBAE19625B899 /* YGLayout.m in Sources */, - 28666E2FF035B67FFC6B707C397B53C4 /* YGLayoutExtensions.swift in Sources */, - 1048ECC158B691331C5D792EB0D90734 /* YogaKit-dummy.m in Sources */, - ); - runOnlyForDeploymentPostprocessing = 0; - }; 571FEAA5E134D005C18956CFC1884C32 /* Sources */ = { isa = PBXSourcesBuildPhase; buildActionMask = 2147483647; @@ -30064,10 +29655,16 @@ ); runOnlyForDeploymentPostprocessing = 0; }; - 5C103A2A787BFA1A9C1D4144082DCE47 /* Sources */ = { + 5B61EC9754DA3819B296AD0684A20B4F /* Sources */ = { isa = PBXSourcesBuildPhase; buildActionMask = 2147483647; files = ( + 7B97CA1D1E31C0DFF6BFE65B172E783D /* JSCRuntime.cpp in Sources */, + BABAEE8FBC5B6327F7E124F8BCA4EAC6 /* jsi.cpp in Sources */, + F85E06106305EE74DB888E75CA399DAC /* JSIDynamic.cpp in Sources */, + 17D1AE379FC85DB8C55D1373881246F6 /* jsilib-posix.cpp in Sources */, + 881982B8FC9FDD1169B1C467D5B6B334 /* jsilib-windows.cpp in Sources */, + 68F7517D883B243C239CC7838CFFEA27 /* React-jsi-dummy.m in Sources */, ); runOnlyForDeploymentPostprocessing = 0; }; @@ -30080,6 +29677,149 @@ ); runOnlyForDeploymentPostprocessing = 0; }; + 5DAA7F81D13053D5BB85688189545016 /* Sources */ = { + isa = PBXSourcesBuildPhase; + buildActionMask = 2147483647; + files = ( + 02438E5F62FE137E005B6BA2ED9444B2 /* AutoAttachUtils.cpp in Sources */, + A62B090EA1F6E28C9017D37F7FBCAEE0 /* CallbackOStream.cpp in Sources */, + 84B47A5B57BCA35B65F927A06DAB409A /* Connection.cpp in Sources */, + 2439111F5952811905ECB301D0E0E690 /* ConnectionDemux.cpp in Sources */, + DFBC2EE3CA51C3C614AF80ECF296338F /* HermesExecutorFactory.cpp in Sources */, + 8F21AA2FA20C54B0097D73D1053F0107 /* Inspector.cpp in Sources */, + 62DCD9D309CDAC8E54F9D4767C7F0D71 /* InspectorState.cpp in Sources */, + 903F1CEA81BED0687F6A5282971C1B94 /* JSCExecutorFactory.mm in Sources */, + 36C0DE16C73ED07AC2DC655C4F8472BD /* JSITracing.cpp in Sources */, + A87C7389E37B8E7C958CA2E4909D9405 /* MessageConverters.cpp in Sources */, + 0FE885E54EB2AD1508542B863534F972 /* MessageTypes.cpp in Sources */, + 4505DF4DD84A599A619DF1DE436F12C5 /* NSDataBigString.mm in Sources */, + A01659A08E09BCB9A4AC12709938CE90 /* RCTActivityIndicatorView.m in Sources */, + 6D3C7A0F11751AC38D5D28EB2856581D /* RCTActivityIndicatorViewManager.m in Sources */, + 85EDDF72D03E2FC1812E176C61DDFFE9 /* RCTAssert.m in Sources */, + DA87F19D017A7A102E537A424DD3D508 /* RCTBorderDrawing.m in Sources */, + 13A86F770355EDB61806747D3CD2A624 /* RCTBridge.m in Sources */, + C050788903C4A652CB72B6AA56D4ADC6 /* RCTBundleURLProvider.mm in Sources */, + 18249DC50B1EB50B25F1B22503661F32 /* RCTComponentData.m in Sources */, + 132725CAA50279DF84E3EA2E6A934050 /* RCTComponentEvent.m in Sources */, + CBF28CD54FAF5BCBDE2C3E8660F86227 /* RCTConstants.m in Sources */, + 005FED848FD97443183F835B4239A800 /* RCTConvert+CoreLocation.m in Sources */, + 6A45542412BD62ACD2B76C26613A866A /* RCTConvert+Transform.m in Sources */, + 6B579D397CC90B8B62BC989BC9FA6E9B /* RCTConvert.m in Sources */, + 2E1F5BC9E1BA0DA4412AD60AF55D750A /* RCTCxxBridge.mm in Sources */, + 7BAA3884D60901A7DDB996C239209AFC /* RCTCxxConvert.m in Sources */, + CA2BE276E498C478220ECC5C8FABF03A /* RCTCxxMethod.mm in Sources */, + 5AEAB9168E46815C20183C9540B65CC1 /* RCTCxxModule.mm in Sources */, + 38A41B1475DB3440DFB2CA4D1DF2A59E /* RCTCxxUtils.mm in Sources */, + F13B3CED48497842176A3761A8479B64 /* RCTDatePicker.m in Sources */, + C6A9078D23518F3295D3DAAD2A51993C /* RCTDatePickerManager.m in Sources */, + F330A21C659C251559CD0ED6DDA4DE24 /* RCTDevLoadingViewSetEnabled.m in Sources */, + 63F3A535626B9BF2ECBC5771555479D2 /* RCTDisplayLink.m in Sources */, + 7F55447D364FB5739A3046A5BDE54989 /* RCTErrorInfo.m in Sources */, + 03035D242FDFF6B03D6A3E9C23024340 /* RCTEventDispatcher.m in Sources */, + 68D868A2E0A6577DB18B1FBA28866474 /* RCTEventEmitter.m in Sources */, + B9B0FDBFFBAB4D2CF2602A3403FD6528 /* RCTFollyConvert.mm in Sources */, + 5B3F37A0A0649596B78C23C15162B133 /* RCTFont.mm in Sources */, + E8902AA792C304BC03A051EC56B9E25F /* RCTFrameUpdate.m in Sources */, + C444092A4AC447323F860FB5F1733ED3 /* RCTI18nUtil.m in Sources */, + 701CB1346973C73C32DFDDFF4C23E6F2 /* RCTImageSource.m in Sources */, + 80F2B96AD06D9127890FC6A8A371FEF1 /* RCTInspector.mm in Sources */, + 3BC7F5B33645B60FCB17D8F964BB2295 /* RCTInspectorDevServerHelper.mm in Sources */, + 9DA6C29F3533ACCC286E18202A8EBB22 /* RCTInspectorPackagerConnection.m in Sources */, + 78DA7CC202FB90F3C58C7856F5549D49 /* RCTJavaScriptLoader.mm in Sources */, + A7B6B74F4C5083E31A314BFADF98B80C /* RCTJSIExecutorRuntimeInstaller.mm in Sources */, + C7262C01B551EBFF45E137E16AC5B8D2 /* RCTJSStackFrame.m in Sources */, + 7AD5D6EA0C9AA6AFD1B8D3B105D8D167 /* RCTKeyCommands.m in Sources */, + DC32DEE681EF3B39282A3D9466190FED /* RCTLayout.m in Sources */, + F94FD8D2AD714D1C6E589B66F960A56F /* RCTLayoutAnimation.m in Sources */, + F632EC2DF3FC81574E44DF4E9D8D3FC6 /* RCTLayoutAnimationGroup.m in Sources */, + 9BC27231F5FD139626BF7FEA27771C4A /* RCTLog.mm in Sources */, + D72397CFE213F6C46F601E3916247A81 /* RCTManagedPointer.mm in Sources */, + A5DBFC700F45C3F2D788482CA99176C0 /* RCTMaskedView.m in Sources */, + 0A5682DB3E39CD226BAE53FC5D3EADCE /* RCTMaskedViewManager.m in Sources */, + 6F4491B286C532DECCB2E479750C8C1F /* RCTMessageThread.mm in Sources */, + 3D2926CEEA2B35D897D1C107FD637D81 /* RCTModalHostView.m in Sources */, + 3AF0395BC51A0FCE98FEE475DFDB8087 /* RCTModalHostViewController.m in Sources */, + 3A7CF3B9BA945F5C9621399AE2865C8A /* RCTModalHostViewManager.m in Sources */, + 118DA3A6C7C79897FC18E852D8D25CEA /* RCTModalManager.m in Sources */, + 2BEC26C9565DF6117005E46EB80BB2AE /* RCTModuleData.mm in Sources */, + 36E919B17D4755B60F55483138E15CFA /* RCTModuleMethod.mm in Sources */, + 51E523C74436C19AC6960BFF693B84C3 /* RCTMultipartDataTask.m in Sources */, + 5377DC87BE3DC0F4290AA7E46C65C109 /* RCTMultipartStreamReader.m in Sources */, + EFC0E6BAA7A73A9F3ABFD9488544E4C1 /* RCTNativeModule.mm in Sources */, + 623E2CCD0A0A282DB5601ED67CBE45DF /* RCTObjcExecutor.mm in Sources */, + EA6F1E515999CDB6A20698D0149F6E4F /* RCTPackagerClient.m in Sources */, + 4BCAE11C13F0876EEE825531B1AC7E04 /* RCTPackagerConnection.mm in Sources */, + 47AB0808E131C78B8BB92F7AEB9DFAC3 /* RCTParserUtils.m in Sources */, + B354AC498C391D1C0A4624A03CC835E9 /* RCTPerformanceLogger.m in Sources */, + D673980E167192204E5CEA50F26CD685 /* RCTPicker.m in Sources */, + 01570B63C754F6DF54937B39CEF596C3 /* RCTPickerManager.m in Sources */, + 102FB979C7A6B117BEFF843D064AB8D4 /* RCTProfile.m in Sources */, + D37E54825AFC54A8A19C9E7FC55392BF /* RCTProfileTrampoline-arm.S in Sources */, + B54B3185A2641D3E10344BC87731AA11 /* RCTProfileTrampoline-arm64.S in Sources */, + 76B5E22B814196ED54FD041392559067 /* RCTProfileTrampoline-i386.S in Sources */, + 68F612877CDED957620ABE874A105BE3 /* RCTProfileTrampoline-x86_64.S in Sources */, + 300F7A682752B99F26394CF98E396364 /* RCTProgressViewManager.m in Sources */, + 423F4AD2B07C2565D5AC0B7BF0EE553A /* RCTReconnectingWebSocket.m in Sources */, + 1437F8AD000D15D1909BF8190485B21F /* RCTRedBoxExtraDataViewController.m in Sources */, + 86B22B1DFF1CF026EE4407A6431E6C0C /* RCTRedBoxSetEnabled.m in Sources */, + CA2AEB18CD64764B8C6CE0CD07A5AE0F /* RCTRefreshControl.m in Sources */, + C00B054C374228AFE2E569F719B054D6 /* RCTRefreshControlManager.m in Sources */, + 2D7BE2254AF879D4CFE02DB49937F434 /* RCTReloadCommand.m in Sources */, + 905929E7AD8817A6FF453EF7331CD402 /* RCTRootContentView.m in Sources */, + E76E89DECBBB65E8F0F376281E7F142D /* RCTRootShadowView.m in Sources */, + 69A1C0321397775D954D8FD3F090BF82 /* RCTRootView.m in Sources */, + 2C070552599A85A8F17ACEDC29271A56 /* RCTSafeAreaShadowView.m in Sources */, + 398A604B619E315082C2DDD6E0EF2B81 /* RCTSafeAreaView.m in Sources */, + B8A3F0D0897C1B12336DE78C010ED989 /* RCTSafeAreaViewLocalData.m in Sources */, + 28360A41E98E9A0CFC88F32E48E0813C /* RCTSafeAreaViewManager.m in Sources */, + 6055BEC10BE9547B3A61E81CBE9950A1 /* RCTScrollContentShadowView.m in Sources */, + A3199908CBE8A372087FB05A0BD2F01C /* RCTScrollContentView.m in Sources */, + E62A76640260A369F0E92976697D6F48 /* RCTScrollContentViewManager.m in Sources */, + 57D7C343AE7C29997AB0C8B4C1B3712F /* RCTScrollEvent.m in Sources */, + 50F52119E3956D663176B47DE5A416A8 /* RCTScrollView.m in Sources */, + 8C8613B66694922864C839A27C72795C /* RCTScrollViewManager.m in Sources */, + F3766497A6906EDD87B99A2AB080E3C2 /* RCTSegmentedControl.m in Sources */, + F729B2608A09F539A6EB8C73FFA72DE6 /* RCTSegmentedControlManager.m in Sources */, + 44A76D245F51967C4D4ABF657BDC16DB /* RCTShadowView+Internal.m in Sources */, + 002489DEBDCB4BBE4F6BC1164D3F7F41 /* RCTShadowView+Layout.m in Sources */, + 91325CDE88E5F71A0490EF56397755ED /* RCTShadowView.m in Sources */, + FE38FCA789A1C326EFF2768E43B9C26C /* RCTSlider.m in Sources */, + 9945EED8AD9DA892D464CF77A3815C7D /* RCTSliderManager.m in Sources */, + AFB38D7A71A8B3FC22E57ABD9BC85271 /* RCTSRWebSocket.m in Sources */, + E96B31C287FC4BE956275C472B263348 /* RCTSurface.mm in Sources */, + D8DC21FC8DA8F5DBCFA64F8645EB2383 /* RCTSurfaceHostingProxyRootView.mm in Sources */, + D763DD696EF6B0BADA49BF23C8A739D5 /* RCTSurfaceHostingView.mm in Sources */, + EF03F29BD0A6BC0D561F28079CED2AE3 /* RCTSurfacePresenterStub.m in Sources */, + 5F3225A17D1956AEC1E23721B8BADC93 /* RCTSurfaceRootShadowView.m in Sources */, + 83AC9830BEB7A2FD14DA3E55971D32B7 /* RCTSurfaceRootView.mm in Sources */, + C5C693C89BF728137837B63679FEA033 /* RCTSurfaceSizeMeasureMode.mm in Sources */, + E30DC41EDAA5272E1E1415531A9309E1 /* RCTSurfaceStage.m in Sources */, + C95EF919D25D189887FF9B3E7C53A594 /* RCTSurfaceView.mm in Sources */, + C3F657A57CEA1988E02478D8CC074495 /* RCTSwitch.m in Sources */, + A961499D0587091D7014D94738DE8D54 /* RCTSwitchManager.m in Sources */, + CD181B6C89100F14B3710D1C8050A76B /* RCTTouchEvent.m in Sources */, + B370442DA3B656B600307AE217535FE1 /* RCTTouchHandler.m in Sources */, + 0C939B629EEAF4A9E39315166187BA8D /* RCTUIManager.m in Sources */, + D4C01C03DA7868C23E2304E207619F0A /* RCTUIManagerObserverCoordinator.mm in Sources */, + 448336F6DF315CC4F5DFB58F9658CBE8 /* RCTUIManagerUtils.m in Sources */, + AC1D9369F3922116BD2807C8B21581DB /* RCTUIUtils.m in Sources */, + 2FE6C6CA9FA949DB7EFB3464C102D168 /* RCTUtils.m in Sources */, + 0565F2BDAC1FDB34DF4F181AD348497C /* RCTUtilsUIOverride.m in Sources */, + B0D0AC355B596015BA89AF7218B69B2D /* RCTVersion.m in Sources */, + 050A4C0AB45141943BD14FE606A1B1D1 /* RCTView.m in Sources */, + 23911B16D5512CB07EA379CB1E338A20 /* RCTViewManager.m in Sources */, + FD097491E4AAC2EA0F8A35F464FECB6A /* RCTWeakProxy.m in Sources */, + 8120B3214378166A5E6F0A742EE5D5C8 /* RCTWrapperViewController.m in Sources */, + 8A2931F97A548AE5071862068EF0C329 /* React-Core-dummy.m in Sources */, + 3D9EB14CCF6AB4F7F7243A12A2764002 /* Registration.cpp in Sources */, + 66923A4B3B11B772FFF850AB64976139 /* RemoteObjectsTable.cpp in Sources */, + A247D09687918DE434710053E9BF578F /* RuntimeAdapter.cpp in Sources */, + E6CF61D4A3A3F2D614B67DF4ADDEC35E /* SerialExecutor.cpp in Sources */, + 87BE97BA22AE666332768F8ABB2AF321 /* Thread.cpp in Sources */, + AA9F769D0057D4602125097D4CECF9C6 /* UIView+React.m in Sources */, + ); + runOnlyForDeploymentPostprocessing = 0; + }; 5ED0681D0B0483EFB813699D6C3CA48F /* Sources */ = { isa = PBXSourcesBuildPhase; buildActionMask = 2147483647; @@ -30125,15 +29865,19 @@ ); runOnlyForDeploymentPostprocessing = 0; }; - 66A76100C73E978C5E5AC9393A7FA0E3 /* Sources */ = { + 67EAF390AD1509EFC11DF890B8CE1DB4 /* Sources */ = { isa = PBXSourcesBuildPhase; buildActionMask = 2147483647; files = ( - 66CE684CFE1E3A9D776867C8DB343E9C /* RCTBlobCollector.mm in Sources */, - 58E2F5D71ADB5020DAF740BCD132F6E7 /* RCTBlobManager.mm in Sources */, - 89566524B54CD995DD46313D083F8E2A /* RCTBlobPlugins.mm in Sources */, - C90063E06BC4D2C17D1A547337D1889D /* RCTFileReaderModule.mm in Sources */, - 872AD763BA18B8492B37B7F874738366 /* React-RCTBlob-dummy.m in Sources */, + FBE26D0902A5036D4B999CF178521D87 /* bignum-dtoa.cc in Sources */, + BD9C4D16916248E1BE88AC857B22F0BB /* bignum.cc in Sources */, + 65FA186C5F8E37084ECC32D4359463E9 /* cached-powers.cc in Sources */, + DE125D62DEBE9848F4A8F2FD6290CB4C /* diy-fp.cc in Sources */, + F17D4D41A0DB85B72CE008419EA759FF /* double-conversion.cc in Sources */, + B3AE255E96F35E12613B4329021F5606 /* DoubleConversion-dummy.m in Sources */, + CFC2893E8CAB6167A8B16EA411505050 /* fast-dtoa.cc in Sources */, + AB61343807A15B8D1E2B305FF2255C3A /* fixed-dtoa.cc in Sources */, + 165B38ADDE0D6A5E86C9A023AD2F7416 /* strtod.cc in Sources */, ); runOnlyForDeploymentPostprocessing = 0; }; @@ -30157,7 +29901,24 @@ ); runOnlyForDeploymentPostprocessing = 0; }; - 6D52977D378DDC5FE8ACB13D3706933B /* Sources */ = { + 6BE32CA723C12C0E18FD2F85616347DC /* Sources */ = { + isa = PBXSourcesBuildPhase; + buildActionMask = 2147483647; + files = ( + D74CBF71354CF84C25B48453B83E8A8E /* TOActivityCroppedImageProvider.m in Sources */, + D7FE28F8B027BD51D31DC905A233C248 /* TOCropOverlayView.m in Sources */, + 81F106C671BE8A5DA4A130F192CD2192 /* TOCroppedImageAttributes.m in Sources */, + 56C1FA21180106745B569F55993E72FE /* TOCropScrollView.m in Sources */, + 08F3255E3A3DD96E8D9735DBB45CFA30 /* TOCropToolbar.m in Sources */, + 0CE810B12665960D1BF99B9DE1F882A9 /* TOCropView.m in Sources */, + 8BB7954E31290C91126DDD4026CECFFD /* TOCropViewController-dummy.m in Sources */, + 2F0971B130BF7115A12E53D124D1E168 /* TOCropViewController.m in Sources */, + E8A7F431C5696251BA57611161F9FBAD /* TOCropViewControllerTransitioning.m in Sources */, + B5563576E6604695E939194BEEB5BB75 /* UIImage+CropRotate.m in Sources */, + ); + runOnlyForDeploymentPostprocessing = 0; + }; + 6D52977D378DDC5FE8ACB13D3706933B /* Sources */ = { isa = PBXSourcesBuildPhase; buildActionMask = 2147483647; files = ( @@ -30182,149 +29943,6 @@ ); runOnlyForDeploymentPostprocessing = 0; }; - 6FA161C4BC7EA036AD68A9EB649A5CB8 /* Sources */ = { - isa = PBXSourcesBuildPhase; - buildActionMask = 2147483647; - files = ( - D2196EA9298C2730B852270880A3D2A3 /* AutoAttachUtils.cpp in Sources */, - 4CB58B352ED63496F6BA9A68A54D0F23 /* CallbackOStream.cpp in Sources */, - 350AE613C31DFA3D74DD3EBABEE7883D /* Connection.cpp in Sources */, - A9F1F8D1A6634F8DF7AAD9A9EC25C55E /* ConnectionDemux.cpp in Sources */, - DBEA75B0AE2F043D833BACC0A562B65A /* HermesExecutorFactory.cpp in Sources */, - F78AD42E06E698509C976499DFF58EE2 /* Inspector.cpp in Sources */, - 14856DAD4A55594243BC23FA9EF84730 /* InspectorState.cpp in Sources */, - 184A2738957445716377307432FFB525 /* JSCExecutorFactory.mm in Sources */, - AA558F7C06E2B933D3E83076DF8F60FE /* JSITracing.cpp in Sources */, - 304AC0416D078BC7F11EE314363C4AD3 /* MessageConverters.cpp in Sources */, - 2BCB8213F928827594F54D71B96F1C30 /* MessageTypes.cpp in Sources */, - 2F6652E46DC338548662367B81915F25 /* NSDataBigString.mm in Sources */, - 63903477E986678EEF4D66961AF6E752 /* RCTActivityIndicatorView.m in Sources */, - 8DE75F8DC93F2864EC9A6B622E944672 /* RCTActivityIndicatorViewManager.m in Sources */, - 7EE4BC1ABEDBA90659B24F141AF2AE91 /* RCTAssert.m in Sources */, - AF51E183E8533478637F6D604F2A4C37 /* RCTBorderDrawing.m in Sources */, - 4333F98005E818C3C8ECF8E67A7446BB /* RCTBridge.m in Sources */, - 1EAF0E603E4703193505672F7C408F88 /* RCTBundleURLProvider.mm in Sources */, - A5D95892398465BC514EE0762F274222 /* RCTComponentData.m in Sources */, - 19A604CDD4BB3615C930FD458FB317C7 /* RCTComponentEvent.m in Sources */, - 0E7ECDC6B6EC7025AE39E85209C03639 /* RCTConstants.m in Sources */, - 1BB9DF24C3C74F8AB123E0C43DC8D3C2 /* RCTConvert+CoreLocation.m in Sources */, - 9D182943C7340DBD8F9573412ED42D84 /* RCTConvert+Transform.m in Sources */, - A2AE641A8D2B83A7B992D6949D1CFEE4 /* RCTConvert.m in Sources */, - 13EE8936994DA886A78F3DDB94CE6158 /* RCTCxxBridge.mm in Sources */, - 6DAC0A5F611F20734DCBF0D37C24D85C /* RCTCxxConvert.m in Sources */, - 298153CBD5834911CF7F5E38F56BF310 /* RCTCxxMethod.mm in Sources */, - 7F8BAADDB284D0971026D330A2F1205A /* RCTCxxModule.mm in Sources */, - 17BEA2B9B80399632CD7633B7F79F475 /* RCTCxxUtils.mm in Sources */, - F717871519E8CD3340D51DE6CAC298E2 /* RCTDatePicker.m in Sources */, - 72C0EDDBB8B83ED74127F63F35B2861E /* RCTDatePickerManager.m in Sources */, - 8CBD6D0CB530855D2D1E3DC8A7034F91 /* RCTDevLoadingViewSetEnabled.m in Sources */, - 72098E2C4C902E4CDD614A1784A1BD33 /* RCTDisplayLink.m in Sources */, - B3332A84D9912EB7F5ED71A1311D3D0A /* RCTErrorInfo.m in Sources */, - 7430009CA2DF5FF39941A4DEEB74F68D /* RCTEventDispatcher.m in Sources */, - 47C3A7F9187D9740C31AB36F6018C7B8 /* RCTEventEmitter.m in Sources */, - C8F768C639AF094247415FAA7DFEEA67 /* RCTFollyConvert.mm in Sources */, - D8D97FEE8590A66A86E60AED24888D48 /* RCTFont.mm in Sources */, - A987BB2EFCFDD16AE5272D1504F2D53E /* RCTFrameUpdate.m in Sources */, - 8D165B355BDB7DE684E2F22405105A8D /* RCTI18nUtil.m in Sources */, - 7A0933F0E3D652CF12F1731560BD8207 /* RCTImageSource.m in Sources */, - 3CDBA62C0981F9265B1854CFB8F28EDF /* RCTInspector.mm in Sources */, - 3FC6FC4AFD6E249471A5B1357DD1DC35 /* RCTInspectorDevServerHelper.mm in Sources */, - C56C88C4EF0ADD5B7799CB8F250F2CBC /* RCTInspectorPackagerConnection.m in Sources */, - D9AA422172FB18F295A44E0E50907FCF /* RCTJavaScriptLoader.mm in Sources */, - 4359488778D841642E8F1A87B9909D9D /* RCTJSIExecutorRuntimeInstaller.mm in Sources */, - 9B502C3D5C2C88FD044031F5629F9620 /* RCTJSStackFrame.m in Sources */, - 27B2383E0B5A555A167FBA7411E909F3 /* RCTKeyCommands.m in Sources */, - EE6B2DF70DF2108CA2E097E4FBBC8A02 /* RCTLayout.m in Sources */, - 22D21580A36305FED693B1D815397CEC /* RCTLayoutAnimation.m in Sources */, - 5DF803DC1FA30F567356E277663E433B /* RCTLayoutAnimationGroup.m in Sources */, - 9BA8009B2521899A38C7CAC400260168 /* RCTLog.mm in Sources */, - 82E7A8035A91E672B4BDCA59E4E21E99 /* RCTManagedPointer.mm in Sources */, - 57BC0C321B24948DE44EB7D7F8B5D7E7 /* RCTMaskedView.m in Sources */, - F726406A8833FEB1EDF44B032CBB3C11 /* RCTMaskedViewManager.m in Sources */, - A82DB05881F02CBAEEBED5C8718D0CA6 /* RCTMessageThread.mm in Sources */, - 3DD38D40F94071D2CED71A2CB4EB6462 /* RCTModalHostView.m in Sources */, - 65C0148ACE376DDC06D427B338BC7650 /* RCTModalHostViewController.m in Sources */, - 87D24C209ED7E58108EBB3064EA2EE45 /* RCTModalHostViewManager.m in Sources */, - 9DBF53CC7EE3CC11DF8C5654E85D1D5A /* RCTModalManager.m in Sources */, - 952C03C87320F5421BFC44147C0754F5 /* RCTModuleData.mm in Sources */, - D73DF66D11E2F433F4565EA01E85C62C /* RCTModuleMethod.mm in Sources */, - 71A9ACF58258BB5E6D877E50E89456B5 /* RCTMultipartDataTask.m in Sources */, - 736593F49220248663C77052CDA35D96 /* RCTMultipartStreamReader.m in Sources */, - 7802283CA511FAB7381AF5F5130ABBB9 /* RCTNativeModule.mm in Sources */, - 8D9011DAC5D088182EA6F8AF8D9416C4 /* RCTObjcExecutor.mm in Sources */, - 1182339CF6F392E970580632952143BC /* RCTPackagerClient.m in Sources */, - 00BDCD58EA8B54F256C20B5BB191BE69 /* RCTPackagerConnection.mm in Sources */, - E91A24F10E4E63BA9511C3AA3B608772 /* RCTParserUtils.m in Sources */, - D9DFBDF32AB87D1C4EB6859F8A76C74B /* RCTPerformanceLogger.m in Sources */, - D92C788B6791E1E36CF211895BB1F275 /* RCTPicker.m in Sources */, - 6DD6E2BDA043C5ED618E8F663927D0A4 /* RCTPickerManager.m in Sources */, - F0005D0971491565CD5110C617DD4E5C /* RCTProfile.m in Sources */, - 7421731FA748A63961375FB27388E154 /* RCTProfileTrampoline-arm.S in Sources */, - 587AFE04A5B41C8A9141EE2635529E04 /* RCTProfileTrampoline-arm64.S in Sources */, - 7B33FB22F1E51564603732E2C0E5CD31 /* RCTProfileTrampoline-i386.S in Sources */, - 51EAD4304BBE7F35D895B0B7CA19B049 /* RCTProfileTrampoline-x86_64.S in Sources */, - E02250DF77C1E2EAA629A4823968E917 /* RCTProgressViewManager.m in Sources */, - EE47B233BA980AE3837F75CC6B7D2CE4 /* RCTReconnectingWebSocket.m in Sources */, - A4F70A8EA65D11D1C2EF962CA3C9D9CA /* RCTRedBoxExtraDataViewController.m in Sources */, - 5D18FE936D740AB24774604FA78258C5 /* RCTRedBoxSetEnabled.m in Sources */, - 4C445E6747B8E94B019FEEF7C21F7DED /* RCTRefreshControl.m in Sources */, - E7650BE94EC3643FD0EDFFB53BF239DF /* RCTRefreshControlManager.m in Sources */, - F8B01FF90F9647EBEC9472A1F0CE3FAE /* RCTReloadCommand.m in Sources */, - 9B91F23E1812387F4DFEF1005D75EE0B /* RCTRootContentView.m in Sources */, - 84ACD61B97AD00786A33F91D32FD4992 /* RCTRootShadowView.m in Sources */, - D0986605E0627CFF3EB4026422617121 /* RCTRootView.m in Sources */, - D6588F6CE574B0985EF73B75894AA779 /* RCTSafeAreaShadowView.m in Sources */, - 38FD81FB7631F917EDD0E9E29097F3A4 /* RCTSafeAreaView.m in Sources */, - 4495C89C7717888F591DEE349A4F6F96 /* RCTSafeAreaViewLocalData.m in Sources */, - 815232FF104ADC5B9E035083E4E29634 /* RCTSafeAreaViewManager.m in Sources */, - 8706AFEFAB22494BE072E1FEA9EAAE3B /* RCTScrollContentShadowView.m in Sources */, - F8581013E9700E95EFB3B792418EE3BD /* RCTScrollContentView.m in Sources */, - B1B20AF0F14E4DD36E6CC45CA1EB7CC7 /* RCTScrollContentViewManager.m in Sources */, - 2B2CF2FBBEE55C4718C13D17AF5ED129 /* RCTScrollEvent.m in Sources */, - 493A139909EC2A35A95110A6B5FD438E /* RCTScrollView.m in Sources */, - C9077969FC06CED405C91255F82B5E47 /* RCTScrollViewManager.m in Sources */, - A5E2BA2B8B10761D4471CB6F249BE824 /* RCTSegmentedControl.m in Sources */, - A7CEAC9EFCB3B1F5252F52B12F7C3F07 /* RCTSegmentedControlManager.m in Sources */, - A743EF1695A5EB316B236F4632BC0C56 /* RCTShadowView+Internal.m in Sources */, - DF7AC9B4F2B180734337D0063EF08A6E /* RCTShadowView+Layout.m in Sources */, - 30EB71AF68C1EBBC1A4D190075FC73B5 /* RCTShadowView.m in Sources */, - B2BDB48F0761D9CE87E8893D3EA0162E /* RCTSlider.m in Sources */, - 43866C275CB5A92A40CB8CD8048E9853 /* RCTSliderManager.m in Sources */, - 2D05F352298AEA840027E18E284108F1 /* RCTSRWebSocket.m in Sources */, - 05EC7EFB420CDEA0D13DA075C985FFDA /* RCTSurface.mm in Sources */, - 39B794E176F65B8F2A766370B31996D7 /* RCTSurfaceHostingProxyRootView.mm in Sources */, - A2E4E857A1D8BFFEE31E4221565D5EA5 /* RCTSurfaceHostingView.mm in Sources */, - F3A5DC70729A04DC781EC89C2BF28DE8 /* RCTSurfacePresenterStub.m in Sources */, - F7B1E491A90F97D1FBB88B009239465A /* RCTSurfaceRootShadowView.m in Sources */, - 3BAB342428D70E0BD373376061AA0D9F /* RCTSurfaceRootView.mm in Sources */, - EC08FBF9D42E49D3830F7EE7F7EDF9CB /* RCTSurfaceSizeMeasureMode.mm in Sources */, - 08DC66360C319586D994B46451C4CFA2 /* RCTSurfaceStage.m in Sources */, - 2C47B3E9B2BE6E9A18EB65E07A4D4CF6 /* RCTSurfaceView.mm in Sources */, - 4D7CEF19C85F6BC5460961BC5485FC18 /* RCTSwitch.m in Sources */, - DD169F5C2F1D754944D10F6145EAD5DC /* RCTSwitchManager.m in Sources */, - 90D4E356DE236811912A53AF5685871C /* RCTTouchEvent.m in Sources */, - 7B0539B2F5676BAC20F7F72B52A3DB81 /* RCTTouchHandler.m in Sources */, - 97E3759E24C3B2EEF1771F0A1320B8AB /* RCTUIManager.m in Sources */, - B3C78FBA541D3F4F79A193E9A54BAF3C /* RCTUIManagerObserverCoordinator.mm in Sources */, - 7CAE789754D569EFA0A1E48EEA8BCDC7 /* RCTUIManagerUtils.m in Sources */, - 0021ADEDCC7BDF2873BCAA2932A94973 /* RCTUIUtils.m in Sources */, - BBBD6E8CB02C498A552D18842EE4D1D9 /* RCTUtils.m in Sources */, - F8450B01C250F8071A2E452265156B8E /* RCTUtilsUIOverride.m in Sources */, - E45C3A5908024632B4833F497CB23688 /* RCTVersion.m in Sources */, - 9EA5F1348EA8C3A44969FF0B1F1F0D19 /* RCTView.m in Sources */, - A7D487DEFB60AB98A44CA314D89B8562 /* RCTViewManager.m in Sources */, - B4159B42027607464FD854F55FCFA0BB /* RCTWeakProxy.m in Sources */, - 6F5F811E0EBD3A9488F59B825FA147CA /* RCTWrapperViewController.m in Sources */, - 8576C2E6FE0D4B9F83AE7BE0B466E1CB /* React-Core-dummy.m in Sources */, - 5F9D5E361C41CF262D91F88F47740F1F /* Registration.cpp in Sources */, - 72549412543114AF2370F5106413C22A /* RemoteObjectsTable.cpp in Sources */, - 62F98BA5412B5FB7570380992EEF3FEC /* RuntimeAdapter.cpp in Sources */, - 49C0B183B4F5FFE194CB004E12946AF0 /* SerialExecutor.cpp in Sources */, - EF070EC98256E60B908537CA9A022E54 /* Thread.cpp in Sources */, - BA39E72B3E5987D3570AB7E33150CDFE /* UIView+React.m in Sources */, - ); - runOnlyForDeploymentPostprocessing = 0; - }; 70640FD248F2E3D0FE08AE2069A9C431 /* Sources */ = { isa = PBXSourcesBuildPhase; buildActionMask = 2147483647; @@ -30347,18 +29965,106 @@ ); runOnlyForDeploymentPostprocessing = 0; }; - 763F378568628874D9438F483AD8700C /* Sources */ = { + 72741E826DB6035D53FC04FDEA114410 /* Sources */ = { + isa = PBXSourcesBuildPhase; + buildActionMask = 2147483647; + files = ( + ); + runOnlyForDeploymentPostprocessing = 0; + }; + 729E9556BEEAD28951984A7A5D018A52 /* Sources */ = { + isa = PBXSourcesBuildPhase; + buildActionMask = 2147483647; + files = ( + E5B38E557EECF38ADB68873C5621F32E /* AESCrypt.cpp in Sources */, + 6D19413913691CC77CD4BC5FDC0D96BA /* CodedInputData.cpp in Sources */, + CB07617DC7E45586EA3A38ECF47B0CE4 /* CodedInputData_OSX.cpp in Sources */, + 4E2CFFC499C7A1935D36785AB1444671 /* CodedInputDataCrypt.cpp in Sources */, + 25178E2E0F2B02200E788782DDB60FCE /* CodedInputDataCrypt_OSX.cpp in Sources */, + 410B5016FB7CC451EB33AE9048386261 /* CodedOutputData.cpp in Sources */, + D1777E34F68B7CE57F9F9F671A5F5743 /* InterProcessLock.cpp in Sources */, + 63691204D3C86E0301C5E5C9197518B0 /* InterProcessLock_Android.cpp in Sources */, + BF58146EBF252037C42694E79E585FA0 /* InterProcessLock_Win32.cpp in Sources */, + 05452A64B4B61941CB4A68E7DA7F6D8F /* KeyValueHolder.cpp in Sources */, + 6F1A1305BF0302457027057CE1EC5745 /* MemoryFile.cpp in Sources */, + E045D13EA0473981ADA5990F91C95303 /* MemoryFile_Android.cpp in Sources */, + ED5B70BAF43FAE184F1E9B58417D1CCF /* MemoryFile_OSX.cpp in Sources */, + 79A5D35512B8A53AC9ADED9D09319197 /* MemoryFile_Win32.cpp in Sources */, + 161EA5331EA7CFB79CE421CF2D34B80E /* MiniPBCoder.cpp in Sources */, + 17B0EABC708A38BE735D617E20E20BF3 /* MiniPBCoder_OSX.cpp in Sources */, + FD7F14BBD710086A67B65F013DE8695D /* MMBuffer.cpp in Sources */, + A7106FBBE57D6138FACA59EDF9B1DFAC /* MMKV.cpp in Sources */, + 50010ED5365ED60D7A47E80352F4D81A /* MMKV_Android.cpp in Sources */, + 71328CD2BD7C185A1DDD7DC315AD303E /* MMKV_IO.cpp in Sources */, + 56F5FA9AAC8EC05E54DD752752FDE4FF /* MMKV_OSX.cpp in Sources */, + 00942B5BA9AC4AE48F03B6BAA2B4DA51 /* MMKVCore-dummy.m in Sources */, + 00EC6D24C98DA8598B10E1C04F7B3160 /* MMKVLog.cpp in Sources */, + 7379678B0C4DC7D0EA8C32E4ED60E466 /* MMKVLog_Android.cpp in Sources */, + 7C3A74A569A2D3249446B44601B02DAD /* openssl_aes-armv4.S in Sources */, + AD4A63670A31A7D159CB3692A2AA89DD /* openssl_aes_core.cpp in Sources */, + 94D76A6F3F26133560078E1EBE7118F4 /* openssl_aesv8-armx.S in Sources */, + ED46C47347615C7E6985B4AB4AEFC482 /* openssl_cfb128.cpp in Sources */, + A1FB8D0A09C7AF370069CE4391FB1E51 /* openssl_md5_dgst.cpp in Sources */, + 350866AAB0538CE7B567446F68AE3495 /* openssl_md5_one.cpp in Sources */, + 8D2979BDD7710B99A1754E3CDBB2D3C1 /* PBUtility.cpp in Sources */, + 26D43AA34D8CF641A69177ADCFE78EAC /* ThreadLock.cpp in Sources */, + 813CA236C9978F8CF68DD1CFA6176FB0 /* ThreadLock_Win32.cpp in Sources */, + ); + runOnlyForDeploymentPostprocessing = 0; + }; + 74DD5E96928592FF5FD6D0628F26ABF0 /* Sources */ = { + isa = PBXSourcesBuildPhase; + buildActionMask = 2147483647; + files = ( + 88061694D4B7A686EC235952F82FA55C /* RCTBlobCollector.mm in Sources */, + 2E717091DF26940F4E479BB6BB4DA208 /* RCTBlobManager.mm in Sources */, + 1A39A40F84C395BA32CA215EAB20B360 /* RCTBlobPlugins.mm in Sources */, + 57FF231DE07EC4984BF6F186C07DA7FD /* RCTFileReaderModule.mm in Sources */, + F2D3B66EB0AC5BADFBB40BEF93B401A9 /* React-RCTBlob-dummy.m in Sources */, + ); + runOnlyForDeploymentPostprocessing = 0; + }; + 75192C2995890A20B9D929626A6517E6 /* Sources */ = { isa = PBXSourcesBuildPhase; buildActionMask = 2147483647; files = ( - E90955012B852D78214EA864F1EB2B9C /* demangle.cc in Sources */, - 83474599635C0AB87BD99C9475E49771 /* Flipper-Glog-dummy.m in Sources */, - 77A67E4E97A48D847F86420983FAC694 /* logging.cc in Sources */, - EE9C7AAB735A46CF2BD44DE9B71A4A6B /* raw_logging.cc in Sources */, - AE6CD51389F55D84C7C2A9F3C6CDCE3B /* signalhandler.cc in Sources */, - FF6E1A5BD1EE2C973778ECB8437F8381 /* symbolize.cc in Sources */, - CAA1D5E69DFF645CDB4B918BC511F924 /* utilities.cc in Sources */, - 17B62C34B0212E5F525DD2DC5CBB4046 /* vlog_is_on.cc in Sources */, + 9CDDB0474E40C63CADE3755BAB142D66 /* FIRCurrentDateProvider.m in Sources */, + 66F871BF6AF85160C8C93CCB275243D3 /* FirebaseInstallations-dummy.m in Sources */, + 6576441102E3C86E669671B47604E84D /* FIRInstallations.m in Sources */, + EF3D2B8783084ADD37DCEDDB5F2A3B0E /* FIRInstallationsAPIService.m in Sources */, + 7EE7AC075C3785B7C508614E6042AE8D /* FIRInstallationsAuthTokenResult.m in Sources */, + 6D08D57265578D5FFAE3BD7D2D22A7EA /* FIRInstallationsBackoffController.m in Sources */, + 11EACFBF7B8A8ADF8B03F0B6AEBB9AB3 /* FIRInstallationsErrorUtil.m in Sources */, + 89D5341F0F42E0F8ECFBA947673891B8 /* FIRInstallationsHTTPError.m in Sources */, + FBD6BD885A13C8DC7993191122BEB7D1 /* FIRInstallationsIDController.m in Sources */, + A233271360C026C98D3291B63915CA88 /* FIRInstallationsIIDStore.m in Sources */, + 0F87F04BF95BFD28A16838EAB6A92E55 /* FIRInstallationsIIDTokenStore.m in Sources */, + 4CE2687C77D3FE7221665AB7B73DBB2B /* FIRInstallationsItem+RegisterInstallationAPI.m in Sources */, + B2F3D5F5EA5D64DF0555C5AA082714AA /* FIRInstallationsItem.m in Sources */, + 1B249829119D112B0420A4265D56FA48 /* FIRInstallationsLogger.m in Sources */, + 5430330A140FD70258DC4E3DDC886B68 /* FIRInstallationsSingleOperationPromiseCache.m in Sources */, + 1083DE8AF0A357ACEF9D9BC74556035C /* FIRInstallationsStore.m in Sources */, + 654A25953DA707FBB99F6857577945CD /* FIRInstallationsStoredAuthToken.m in Sources */, + E3573BA90FBE6375A2E896A8FCEAC133 /* FIRInstallationsStoredItem.m in Sources */, + 24880C4E8BA96EA0EEB025160E4A83C6 /* FIRInstallationsVersion.m in Sources */, + ); + runOnlyForDeploymentPostprocessing = 0; + }; + 780410FD00867D3258C76D22EFF46C3B /* Sources */ = { + isa = PBXSourcesBuildPhase; + buildActionMask = 2147483647; + files = ( + 9C153DC1138A4081041487DB54BB043D /* RCTConvert+FIRApp.m in Sources */, + 49BA8C30979411A79B99D51810EF5205 /* RCTConvert+FIROptions.m in Sources */, + A090D5E341405F4B5A8C629E4C2FE6B6 /* RNFBApp-dummy.m in Sources */, + 6FDF5053FA8AEBD05C09BD8E522B61E9 /* RNFBAppModule.m in Sources */, + 703F1DC06B49148D94B7CA0343E2CA4F /* RNFBJSON.m in Sources */, + 1A8C8F92ED93718A5B363B42DDB1E735 /* RNFBMeta.m in Sources */, + 6BF8456EED78750F85FC2B0609EBEA1B /* RNFBPreferences.m in Sources */, + A53183C67686DE440D5189A8C5882BCF /* RNFBRCTEventEmitter.m in Sources */, + 1EE3652F447C90D26FC34635453A626E /* RNFBSharedUtils.m in Sources */, + 42566F4F9DE42F2E6D41EB3031374442 /* RNFBUtilsModule.m in Sources */, + CD884AE62F2B47568E3020D1D06230C0 /* RNFBVersion.m in Sources */, ); runOnlyForDeploymentPostprocessing = 0; }; @@ -30447,31 +30153,6 @@ ); runOnlyForDeploymentPostprocessing = 0; }; - 7F3457C2E3E1A04D3D2A5919C7B2D397 /* Sources */ = { - isa = PBXSourcesBuildPhase; - buildActionMask = 2147483647; - files = ( - 6CBDD8B277C6EAD6FE2FE166EE895F14 /* bignum-dtoa.cc in Sources */, - FBF7EFB6C67314E259032F2DFC7848A8 /* bignum.cc in Sources */, - C71804C09B6FFDDDB87274633968E06F /* cached-powers.cc in Sources */, - 206FE56E79C9810CE8BB59594B2194DC /* diy-fp.cc in Sources */, - 791B49A6260449B26C147F7ECD101762 /* double-conversion.cc in Sources */, - 55CC116AF16D57CDC38060B2AFE35B50 /* fast-dtoa.cc in Sources */, - 0AA2C42953DBAC4F4F9D86F6F5497720 /* fixed-dtoa.cc in Sources */, - 2CEEF0B606087671DF4FDE83D5D6AC5D /* Flipper-DoubleConversion-dummy.m in Sources */, - 0383250E9997F99EECCC20594F9507B4 /* strtod.cc in Sources */, - ); - runOnlyForDeploymentPostprocessing = 0; - }; - 7F3B84595DB6781E0A0C8CE1129FFEAD /* Sources */ = { - isa = PBXSourcesBuildPhase; - buildActionMask = 2147483647; - files = ( - 06EFE2E466BB6FA26C078AE7F59312F7 /* UMPermissionsInterface-dummy.m in Sources */, - C79D3C861913BECF40F5A4EFCDE0E522 /* UMPermissionsMethodsDelegate.m in Sources */, - ); - runOnlyForDeploymentPostprocessing = 0; - }; 821716E3B1AE515B5F06F83CDE55ECFB /* Sources */ = { isa = PBXSourcesBuildPhase; buildActionMask = 2147483647; @@ -30491,20 +30172,21 @@ ); runOnlyForDeploymentPostprocessing = 0; }; - 828495AB72C71455A73BC8E18217A0D9 /* Sources */ = { + 8253A18C8356FF9C47CCF52CE3F9FAEE /* Sources */ = { + isa = PBXSourcesBuildPhase; + buildActionMask = 2147483647; + files = ( + 9EBAAAACF9FAC1EEDBD9AAE03BBBCB4E /* Pods-defaults-RocketChatRN-dummy.m in Sources */, + ); + runOnlyForDeploymentPostprocessing = 0; + }; + 85CFE7D835CEB2526E6B3817DCDAD617 /* Sources */ = { isa = PBXSourcesBuildPhase; buildActionMask = 2147483647; files = ( - 647B2902910277BA44ECE069B54E33FE /* TOActivityCroppedImageProvider.m in Sources */, - 5313E8917DB2674A66D9B5BD586D9284 /* TOCropOverlayView.m in Sources */, - 178418AB535645E5813031843C43EDB3 /* TOCroppedImageAttributes.m in Sources */, - D57AACE4DA19F9E8ED579B02426AED39 /* TOCropScrollView.m in Sources */, - 0BD0332EF081BC071AC1592D998F8712 /* TOCropToolbar.m in Sources */, - 34A3DED0678C7C9230EEBB6D3516425A /* TOCropView.m in Sources */, - 2360957858DAAB5C4427FBFC56EA02F8 /* TOCropViewController-dummy.m in Sources */, - C8A5CBB006E2DC0331B7AD53115A8B72 /* TOCropViewController.m in Sources */, - FD36059DEE8DB7CAEB95981C66A449B8 /* TOCropViewControllerTransitioning.m in Sources */, - 9599EE47E7D00E7669EF97CE21CE0F82 /* UIImage+CropRotate.m in Sources */, + 6C0217999010AB56C7F4E03573EBFCA3 /* JSIExecutor.cpp in Sources */, + 127E92E08E641E50810D7639DDEAB8EF /* JSINativeModules.cpp in Sources */, + 62118257B17D426A240F3030B3F51BA4 /* React-jsiexecutor-dummy.m in Sources */, ); runOnlyForDeploymentPostprocessing = 0; }; @@ -30604,49 +30286,234 @@ ); runOnlyForDeploymentPostprocessing = 0; }; - 88DEBFC710596C8B85EDED1F6FBE8F0D /* Sources */ = { + 8870D76059204B27F8E900D3E137C8B5 /* Sources */ = { isa = PBXSourcesBuildPhase; buildActionMask = 2147483647; files = ( - D2B3C29CBC3E151E266D33F83C27BDC6 /* BridgeNativeModulePerfLogger.cpp in Sources */, - 58061F438DF6EACD997877BB0B2EBBCA /* React-perflogger-dummy.m in Sources */, + FEB1B9654C15A520743E4B3D7BEBD354 /* demangle.cc in Sources */, + E01FBCDE47B0D03BF7160BD7592E52AF /* Flipper-Glog-dummy.m in Sources */, + 5499B4121A868048D050B93CFFA28035 /* logging.cc in Sources */, + 8486391646A272928D81F3FEAFF7C6F4 /* raw_logging.cc in Sources */, + 4B736CD9AFF47AB990F5C77BEB4C8875 /* signalhandler.cc in Sources */, + A8F8C82D3C930497428AE5A2D53323F8 /* symbolize.cc in Sources */, + 8E74FAAD5F388A0A9EEA0421B80166D4 /* utilities.cc in Sources */, + 917B649F702E3EB0814591BEEC425B25 /* vlog_is_on.cc in Sources */, ); runOnlyForDeploymentPostprocessing = 0; }; - 8A23B2218CD61EE24F594763EA51EC0B /* Sources */ = { + 88EF59E291905F0B17806172184C7CBF /* Sources */ = { isa = PBXSourcesBuildPhase; buildActionMask = 2147483647; files = ( - 498C505AE16C2FB90A1660FF065B9323 /* EXHaptics-dummy.m in Sources */, - B4B661CB6D518A89233618AE326B75F0 /* EXHapticsModule.m in Sources */, + 2126434FD180C45AD98E9DFAE3D7D400 /* buffer.c in Sources */, + 9D4141CAF1F80F27BDDDB79F1D866622 /* bufferevent.c in Sources */, + C6AD09E6A180B604E79A55DBD5D4F86B /* bufferevent_filter.c in Sources */, + 8E726D5FA36434EBD5406730CAC8B03A /* bufferevent_pair.c in Sources */, + 46ADA46C17AF592928429F454298C04F /* bufferevent_ratelim.c in Sources */, + 3F2A79D0D6BC796EA4586CCAC003C36C /* bufferevent_sock.c in Sources */, + 3C45B95EE521FB18E181C7154517DD31 /* evdns.c in Sources */, + 54C90A71459B2E6A9902EFE787F7C1B1 /* event.c in Sources */, + EC0F2E02EF975245B3584FCD049FFAEA /* event_tagging.c in Sources */, + 4F9FB518A0215BFC3ED5904FC93EEE14 /* evmap.c in Sources */, + 9DF9AB8FAA72E96E31769D1FE581DBCB /* evrpc.c in Sources */, + 6E659CB41DFD4CA88587D51D5D516D73 /* evthread.c in Sources */, + 6356ED4693575AA1F48D829DDB083882 /* evutil.c in Sources */, + 34BCDBC930E0110D3CB3F663414D4F54 /* evutil_rand.c in Sources */, + BA47A5A83DA522A7C75B9DFA6C52E9A4 /* evutil_time.c in Sources */, + 0D470498A1E745DD780450741266E903 /* http.c in Sources */, + 475B782BAB8773C68DE75568D4F1A006 /* kqueue.c in Sources */, + D3AD646828BE21420AFEEBDAF31C8822 /* libevent-dummy.m in Sources */, + B922ACBEC573738CBA773E6F06CB7CED /* listener.c in Sources */, + 2EFCABAC8C93ACE4A219D60FDF19D60F /* log.c in Sources */, + CBB24A18271FC0171394C4B2BCAE49A0 /* poll.c in Sources */, + 738372055EA4F15918D616ACA5FB15FB /* select.c in Sources */, + 7371BD09BEE4E15B6D4F07AFB698E0AE /* signal.c in Sources */, + D3B9D945571F6196F906B3E670BC8504 /* strlcpy.c in Sources */, ); runOnlyForDeploymentPostprocessing = 0; }; - 8A77D8B8D92A8EE133B6BBADDB93E574 /* Sources */ = { + 8A23B2218CD61EE24F594763EA51EC0B /* Sources */ = { isa = PBXSourcesBuildPhase; buildActionMask = 2147483647; files = ( - 3AF04B5480C7868A38CFD0AE3E12ED86 /* JSIExecutor.cpp in Sources */, - 35568ABDF4D98AB458321E04288A84BA /* JSINativeModules.cpp in Sources */, - 0E39E30826C84D175DAD1DB562D03E70 /* React-jsiexecutor-dummy.m in Sources */, + 498C505AE16C2FB90A1660FF065B9323 /* EXHaptics-dummy.m in Sources */, + B4B661CB6D518A89233618AE326B75F0 /* EXHapticsModule.m in Sources */, ); runOnlyForDeploymentPostprocessing = 0; }; - 8ADFCC1717402B23B97B7EFAD649E3EB /* Sources */ = { + 8B4A86BE3D641D90FAADFE3A9B8BB8BA /* Sources */ = { isa = PBXSourcesBuildPhase; buildActionMask = 2147483647; files = ( - B99941D9C114E272C7E600F5C789D2CC /* Pods-defaults-Rocket.Chat-dummy.m in Sources */, - ); - runOnlyForDeploymentPostprocessing = 0; - }; - 8E200C66CC7D7B4EBFFEEFF1D3BFE5CD /* Sources */ = { + 6E77078EFBE44E665CA184B511E3DE2D /* alpha_dec.c in Sources */, + 44A1FCD233885EDF566B04881AF877D1 /* alpha_enc.c in Sources */, + 9D6B5A7C1B793D35F8E364AEC1DEA0D6 /* alpha_processing.c in Sources */, + 467E47CBA26C703F318E16182D4DC7EC /* alpha_processing_mips_dsp_r2.c in Sources */, + C7EB2D4E5C1820D0838CC206142AE1CD /* alpha_processing_neon.c in Sources */, + 4760A8C30FB4E4765968D8AEAFD6E3E2 /* alpha_processing_sse2.c in Sources */, + 8A33EFAB7447DD787F9372D6639E53A7 /* alpha_processing_sse41.c in Sources */, + 72358B62A263233A6A76871A8D03B6BB /* analysis_enc.c in Sources */, + C72C876A77D6002ED4660A786EA4C47E /* anim_decode.c in Sources */, + 4B94EE251870274A9E1A0E1667CC481A /* anim_encode.c in Sources */, + 45278774CAED220927197B19F74CB392 /* backward_references_cost_enc.c in Sources */, + 5AE0BF042AC8728112E2A2C828411715 /* backward_references_enc.c in Sources */, + 6FA21518D6BFF360A2A8C8DCF07214C5 /* bit_reader_utils.c in Sources */, + 552C93A127A098EF6FBE32A452058572 /* bit_writer_utils.c in Sources */, + 7ADDBA2B7986329FD6AC7D02BCAA83EB /* buffer_dec.c in Sources */, + D67BD93FFBB048513B7FE5BA51683535 /* color_cache_utils.c in Sources */, + FCCF16420DF0BFD060674DC4CE46B94D /* config_enc.c in Sources */, + 7AFC413F8C18F0701823D97CB75D06DA /* cost.c in Sources */, + 2C70C1B1149ACCF5395F04A6C9116364 /* cost_enc.c in Sources */, + 940CCA51E493DF294E0887FFF2BC1C67 /* cost_mips32.c in Sources */, + FBD859F5D13F6EA5115DE785373A1AA5 /* cost_mips_dsp_r2.c in Sources */, + E356ADE72E822866E3DBFF1FB6460CC2 /* cost_neon.c in Sources */, + 931526BD5D9A93D52E573099DCB7C2E4 /* cost_sse2.c in Sources */, + A4CE0FD4BAB2EE318358BE87C1A1AB42 /* cpu.c in Sources */, + 6C12E8CCBAED1B01D52479EF0857C199 /* dec.c in Sources */, + D3FA26836564EF7E75E19D100696DD92 /* dec_clip_tables.c in Sources */, + FDC7513840EC1907225430A0A0AC4A79 /* dec_mips32.c in Sources */, + AAE35BE76F1E77CBE4232D879CF93DFD /* dec_mips_dsp_r2.c in Sources */, + DC4B7306480A37D91D3C4833E13F13F6 /* dec_msa.c in Sources */, + D4D996CDBD8ED6888B473FC243936069 /* dec_neon.c in Sources */, + EEE9200EC46EBFB4751E71BDBAA22007 /* dec_sse2.c in Sources */, + F38011C09AB370851B043B5B7167CDBE /* dec_sse41.c in Sources */, + A3B0A9D9A88A1B0E5C506BB9634C5E75 /* demux.c in Sources */, + CF493AFA42F93679AB2FC6F41FA812DA /* enc.c in Sources */, + B117610A3870F55A94ADBAA8401211C5 /* enc_mips32.c in Sources */, + 2C4B1F4592E20288807989D3EAF2488A /* enc_mips_dsp_r2.c in Sources */, + E73AFB415C8FE57F68C2E571658FEFDC /* enc_msa.c in Sources */, + 863B6A66C83184A0C303CFBDF53B29BE /* enc_neon.c in Sources */, + 64C5F475199DBC62D9ADC6F900DA9257 /* enc_sse2.c in Sources */, + B4D07A37410DFB8DD42B9C22567D83A9 /* enc_sse41.c in Sources */, + CC852FF1DDBF2072A50B31E84642719D /* filter_enc.c in Sources */, + 892CFFA857BFECF0765A52E38FE54D14 /* filters.c in Sources */, + 09980EDAF830BCF8BA8FE0F5E6C3C743 /* filters_mips_dsp_r2.c in Sources */, + E0961666EDBE87A69A370A4A9E356554 /* filters_msa.c in Sources */, + E64C67F1E68A40ABC180122C810DA1A2 /* filters_neon.c in Sources */, + 82CB0BD0243F3CB4EE8AC1BE2AC644A6 /* filters_sse2.c in Sources */, + 9F5AC7D931BA5171D0D8CEF9E58EB129 /* filters_utils.c in Sources */, + 814C03FCBCD88232173D927CCBEFD156 /* frame_dec.c in Sources */, + E1E24F7426650A214E096CA62EFE4540 /* frame_enc.c in Sources */, + B73FCFBDEB19859BABA6E3DDC65CAF46 /* histogram_enc.c in Sources */, + DAE3C15C1D0A5FFA2E93C88D66739046 /* huffman_encode_utils.c in Sources */, + 2C647155E3C88B8A765E72894C34D9DE /* huffman_utils.c in Sources */, + F410E7D5EC9CA4087FFE2B8B0126E289 /* idec_dec.c in Sources */, + A03E6D16AC5406BC3E772360AEF5B4E5 /* io_dec.c in Sources */, + 0047DBF5E132682AC29E0A9C42DA08F9 /* iterator_enc.c in Sources */, + B1811025F7508F08FEF0AD609A0807A4 /* libwebp-dummy.m in Sources */, + 49A99E1A857A881F767EC4DE72614343 /* lossless.c in Sources */, + 2135A10EC2193AE1690ED5E751F280C3 /* lossless_enc.c in Sources */, + D16188179BFD4C69E6A26E6ECF4018A2 /* lossless_enc_mips32.c in Sources */, + 88D59EE9D9D2E8390594E52C8FE03E45 /* lossless_enc_mips_dsp_r2.c in Sources */, + 86714AC2E3E898D7435B26DDFBF01453 /* lossless_enc_msa.c in Sources */, + E0E73D3E78087C2CA1DA5F9345BB92BC /* lossless_enc_neon.c in Sources */, + 9B88284B6FB8C1577AB3005362C51A8B /* lossless_enc_sse2.c in Sources */, + 0A0CE34CA9179397A330D4722F7FADB8 /* lossless_enc_sse41.c in Sources */, + B097DD0B32204ABDC32EAB2FEC98F6E0 /* lossless_mips_dsp_r2.c in Sources */, + D2E804AEBF7A492E6A1B5239864F1611 /* lossless_msa.c in Sources */, + EAE4632CA52DA1C790C8BC469BAB8D37 /* lossless_neon.c in Sources */, + F9B9D70882006BA0A2FBB4811325A260 /* lossless_sse2.c in Sources */, + AF6FD9F9F3577E1BED6C2151F5D30204 /* muxedit.c in Sources */, + 6D33EC243DDC811E14456E765CC083C7 /* muxinternal.c in Sources */, + 7EF139A84AF3B86BDE433DF8F48B5FE1 /* muxread.c in Sources */, + E9E28AF138CD4D8B66367DB701D3B84D /* near_lossless_enc.c in Sources */, + 73C814550679AE468A1946015D2F0F02 /* picture_csp_enc.c in Sources */, + 41393D56F7AC509F9D211A858E965AED /* picture_enc.c in Sources */, + C0B51FFECB7ABEA20345CC14B0D4B262 /* picture_psnr_enc.c in Sources */, + BA24F937C97C2C5E172E32CBBE8D955E /* picture_rescale_enc.c in Sources */, + 68DBB12E322BD9BCD8D5B666E7159CF7 /* picture_tools_enc.c in Sources */, + 9B23E5670AF0F1BA3634B1579DD4B0E6 /* predictor_enc.c in Sources */, + 48880A092D9145D599A01862AD12202F /* quant_dec.c in Sources */, + 9FD5F17132FDFB808036A8E5991DDE0F /* quant_enc.c in Sources */, + 5405AC4BCD70AD3F57AEAF63126FC4CA /* quant_levels_dec_utils.c in Sources */, + 72882B109E678844A6C46D986FE0008E /* quant_levels_utils.c in Sources */, + 52E55C3BDED3802A3345089D8B275222 /* random_utils.c in Sources */, + FC696892816F9D12775747D1B372F66E /* rescaler.c in Sources */, + 19EB549CD8DE9BFC0BA9F586E6F5F070 /* rescaler_mips32.c in Sources */, + 4E024AFFBF38DEB477F7592A333900D3 /* rescaler_mips_dsp_r2.c in Sources */, + 2B35A2B4E44724A4DC680C761C64948E /* rescaler_msa.c in Sources */, + 666DE5BBD08B543DE99FE79E6F06422C /* rescaler_neon.c in Sources */, + 16B4688CAD8DE1DBDCCF7045D215A213 /* rescaler_sse2.c in Sources */, + B11F5F1AD24AFA38E12C3540AE40C388 /* rescaler_utils.c in Sources */, + 4F7A173A3613672DDE883573710B12D9 /* ssim.c in Sources */, + BA3957D27A04C660B8D13FED3BCE8B3E /* ssim_sse2.c in Sources */, + 533EAEB3462A5DF81E7EDA318250A975 /* syntax_enc.c in Sources */, + B718CDA5CB3CA0366814E96013776D7F /* thread_utils.c in Sources */, + 20EE6F176C27012887289F8538E38D36 /* token_enc.c in Sources */, + 41B55E788AF70D8BC8504A649075E98F /* tree_dec.c in Sources */, + A5959300DACA492D999C70886621C17D /* tree_enc.c in Sources */, + 63AE6126D8D2CE6CF4EC70B01ACBE897 /* upsampling.c in Sources */, + 225E481670E17DDCCCD7C017B2E92CDF /* upsampling_mips_dsp_r2.c in Sources */, + 77BC4F16CCA16F1BEEEE5624A4243842 /* upsampling_msa.c in Sources */, + 01FB821208C03FB94A6C30D7FDFE55C4 /* upsampling_neon.c in Sources */, + E5453F81396B688D00A0147B89F18B51 /* upsampling_sse2.c in Sources */, + 6B23B0797FAC9E14751CCC92CF16E3AC /* upsampling_sse41.c in Sources */, + 93274453DE3AC1D05EAC65254862E6EA /* utils.c in Sources */, + 2C326559EE14F4C0A14F2C834AFE33D8 /* vp8_dec.c in Sources */, + 1C2A1369989F3BCB3BC9ABADF9797A81 /* vp8l_dec.c in Sources */, + 6E2C6A7A7A18B480766B3BCCC2890B34 /* vp8l_enc.c in Sources */, + 9E8531C47E4486A300129112F8046AE5 /* webp_dec.c in Sources */, + 84221376164B04636F0F548C64CBDFCA /* webp_enc.c in Sources */, + ED563CAA449629F54DC1962ADCA67855 /* yuv.c in Sources */, + C5D28CDBFC33A5473E6831FB1E21C3E9 /* yuv_mips32.c in Sources */, + EE744C371FE8D089560C556137B609C2 /* yuv_mips_dsp_r2.c in Sources */, + A556EEBE14FF302378B80F5EAE8B372A /* yuv_neon.c in Sources */, + 80B24FA8A7FD002BB0A95BF990DE6096 /* yuv_sse2.c in Sources */, + 8453FD519DEF6FBA73824E02620E365F /* yuv_sse41.c in Sources */, + ); + runOnlyForDeploymentPostprocessing = 0; + }; + 906AAFAA85DCD302DF87087F45134F0C /* Sources */ = { + isa = PBXSourcesBuildPhase; + buildActionMask = 2147483647; + files = ( + DE2014006CEF647204EEFF054CAF2046 /* RCTAdditionAnimatedNode.m in Sources */, + 536B6C5CBC9855346CE1F2B881993F59 /* RCTAnimatedNode.m in Sources */, + 2476B575292BED46B681A69D39816FBF /* RCTAnimationPlugins.mm in Sources */, + AE6F6C7C0DE83628B23D33BF11347845 /* RCTAnimationUtils.m in Sources */, + 8FC6AF026A0F4324DC912521BFF26DE5 /* RCTDecayAnimation.m in Sources */, + 1EF39F3CAF246AF4A1F3456FD54AE376 /* RCTDiffClampAnimatedNode.m in Sources */, + 45BB49B9CBBEECBAAADF38D7882A6250 /* RCTDivisionAnimatedNode.m in Sources */, + FCB958B8FA17A867C51D8B751AE6D126 /* RCTEventAnimation.m in Sources */, + 6D26320A40A9B861D744AEEEFEBC0BED /* RCTFrameAnimation.m in Sources */, + 564853F7F84BE73EA7A8337BAA5B110D /* RCTInterpolationAnimatedNode.m in Sources */, + 81E85D64B98D8D2447E35D283DF270C1 /* RCTModuloAnimatedNode.m in Sources */, + 066ED332399AA3B4AEE9F9FDDDE056BD /* RCTMultiplicationAnimatedNode.m in Sources */, + 8F2C369554FA1042108E0395D194F45F /* RCTNativeAnimatedModule.mm in Sources */, + 884CDFE18303D7D1123950465FFD6F73 /* RCTNativeAnimatedNodesManager.m in Sources */, + EEA470E2A64C3E7A8B9A07B16E7ABEB3 /* RCTNativeAnimatedTurboModule.mm in Sources */, + BE195FB7C60F2FD0131125C87963DBA7 /* RCTPropsAnimatedNode.m in Sources */, + 0CB3338E3CCA33860940328877817D87 /* RCTSpringAnimation.m in Sources */, + 7B58240D010ED6E7AC861326D1F81055 /* RCTStyleAnimatedNode.m in Sources */, + 3C714B20528FAD3024B8A395B474937F /* RCTSubtractionAnimatedNode.m in Sources */, + FFE7CF0BB8F423FCF6B043B01C066201 /* RCTTrackingAnimatedNode.m in Sources */, + 12848068DAE2A4EDDE56C93A05053998 /* RCTTransformAnimatedNode.m in Sources */, + 21A2CA5452ABFA16FDECB399B79982FE /* RCTValueAnimatedNode.m in Sources */, + 86C456E86F1B53EF4D7AC6A7DB8110F7 /* React-RCTAnimation-dummy.m in Sources */, + ); + runOnlyForDeploymentPostprocessing = 0; + }; + 929007CA0D3BA22C28AB6EBE63F6218F /* Sources */ = { isa = PBXSourcesBuildPhase; buildActionMask = 2147483647; files = ( - 18975E03D53D1621B2A98B40A41F173E /* RCTLinkingManager.mm in Sources */, - 86B534E23C762F4C102C3D057E28B99F /* RCTLinkingPlugins.mm in Sources */, - AEEB4B35435D6890705DB189DE95AAC1 /* React-RCTLinking-dummy.m in Sources */, + 2A55DDAA9A0882F49E99A5EC88FBD4E1 /* GoogleUtilities-dummy.m in Sources */, + 6016F83F6F40710690700526276DA74F /* GULAppDelegateSwizzler.m in Sources */, + E372E0CAED33BA716B905E7A5C272076 /* GULAppEnvironmentUtil.m in Sources */, + 8DF085B558793DA55B037F8AA2481C6B /* GULHeartbeatDateStorage.m in Sources */, + 1A39A0B1EA4CF33DB4E957FD1528F4EF /* GULKeychainStorage.m in Sources */, + B6437DFB1A6DAD7504503F79865CDA98 /* GULKeychainUtils.m in Sources */, + 8E1CA8ECFB0FD28A439A7DC133145555 /* GULLogger.m in Sources */, + 46511E31082FC0B30D70D0B436EF5935 /* GULMutableDictionary.m in Sources */, + C304F61A79B0C90C6AA100145E2DD031 /* GULNetwork.m in Sources */, + B7486326FB175AC9B7763E9D2571466A /* GULNetworkConstants.m in Sources */, + 5332E99F41769AB92650077F00E14B1D /* GULNetworkURLSession.m in Sources */, + B0D0421BD31BD7269900A919E9D2C93B /* GULNSData+zlib.m in Sources */, + 7CE4FDA5AE8E4C62A98AEBF7AEB60172 /* GULReachabilityChecker.m in Sources */, + F2E8A60398D97E4096DA2ED618D848B0 /* GULSceneDelegateSwizzler.m in Sources */, + 1DADAC17C284FCE8EF5E4D0231CA8AE9 /* GULSecureCoding.m in Sources */, + 8CC0BF54FEABE448FC543161F9F30631 /* GULSwizzler.m in Sources */, + 981A47FF9F4A82A0FF199FAB3DF753FF /* GULUserDefaults.m in Sources */, ); runOnlyForDeploymentPostprocessing = 0; }; @@ -30672,79 +30539,67 @@ ); runOnlyForDeploymentPostprocessing = 0; }; - 9869AABD974080C448DCE840823976FE /* Sources */ = { - isa = PBXSourcesBuildPhase; - buildActionMask = 2147483647; - files = ( - FACBA11E2FEAFBCC29029092787EE507 /* AESCrypt.cpp in Sources */, - A13D2953A26A78E54FF5F10BDCC20A73 /* CodedInputData.cpp in Sources */, - DF181CC0649D43E56891EB25905C1BAB /* CodedInputData_OSX.cpp in Sources */, - 9CB817E466F6B428CA0564B061F94D5B /* CodedInputDataCrypt.cpp in Sources */, - 6680CD80FDFCE26A84446A5540610C29 /* CodedInputDataCrypt_OSX.cpp in Sources */, - B248E08537C1D8181641399AAC23D4BE /* CodedOutputData.cpp in Sources */, - C7067CD5CB8611FA35C12D47EF3C85FE /* crc32_armv8.cpp in Sources */, - FE2C22D7DC3B0FD7E2030EA23CA5F8D9 /* InterProcessLock.cpp in Sources */, - B669576911541B17F8E380C2F8125FC5 /* InterProcessLock_Android.cpp in Sources */, - D719FD0D9C43804E35518A8345E76621 /* InterProcessLock_Win32.cpp in Sources */, - 0CADF1F6BBA5D799CEAD99DA2FEAC140 /* KeyValueHolder.cpp in Sources */, - 4BD77697149811C1F407A76DA3E9A104 /* MemoryFile.cpp in Sources */, - 9C1969845430F861B1864B23D09116D1 /* MemoryFile_Android.cpp in Sources */, - 773B10943F29DDC184B12F4C754EC61D /* MemoryFile_OSX.cpp in Sources */, - C579D78A093916EDC93710ECD7155D17 /* MemoryFile_Win32.cpp in Sources */, - 4892B1BDBB7D346D4997009A7DF67E70 /* MiniPBCoder.cpp in Sources */, - 5E5740A839F22A3B1F1E82EEE037ABB1 /* MiniPBCoder_OSX.cpp in Sources */, - FD39BB86380813E98FCFAF982373FCE5 /* MMBuffer.cpp in Sources */, - F25843714AD080F571DFAB9C7B6E4925 /* MMKV.cpp in Sources */, - 4351A141FCB441D627EF3F1FA731FEF0 /* MMKV_Android.cpp in Sources */, - 07F09290FE59F32D9775E507056C06C1 /* MMKV_IO.cpp in Sources */, - 6C07DD3F535691C84DFDF5413E3FC550 /* MMKV_OSX.cpp in Sources */, - FAD9E0CD359A697C70B85ACE2A0AE80C /* MMKVCore-dummy.m in Sources */, - 65EC54AD1DDB7484A796D13D3349B2FF /* MMKVLog.cpp in Sources */, - C17DF4E10EDA251A28D14E0D2595D4F0 /* MMKVLog_Android.cpp in Sources */, - 6B3E6EA5D791F205EA3D76CD13C1D706 /* openssl_aes-armv4.S in Sources */, - C40D96F3F09D91117D896EF643057452 /* openssl_aes_core.cpp in Sources */, - 2648771F3EE08F9A7300249832B31AC6 /* openssl_aesv8-armx.S in Sources */, - 9887978226B50484F4C32672E5A66385 /* openssl_cfb128.cpp in Sources */, - A5E1FF257FB3D23FC44DCF57A2B01DCD /* openssl_md5_dgst.cpp in Sources */, - 7BC05BE6D3004430297C9058BCCF689C /* openssl_md5_one.cpp in Sources */, - 667D90AB55A64D2CD23330A89227CA31 /* PBUtility.cpp in Sources */, - 6070CCA6F9A616F45577C94FBD984F9B /* ThreadLock.cpp in Sources */, - 21338B20D39BB99556A31FAFB41A8902 /* ThreadLock_Win32.cpp in Sources */, - ); - runOnlyForDeploymentPostprocessing = 0; - }; - 98995ED7E2028AF31651990ED98C4112 /* Sources */ = { + 9CBED1CA7C594B1FF81DBF6D23524D0A /* Sources */ = { isa = PBXSourcesBuildPhase; buildActionMask = 2147483647; files = ( - 1EA668840F5AFF314318FFCE80179EDC /* bignum-dtoa.cc in Sources */, - 1672C114754B6CAAC3BC69A31C9525AA /* bignum.cc in Sources */, - A3466D1CD3E5ABD9DC1A6EFC5A4DA647 /* cached-powers.cc in Sources */, - 32EA84EA6DE44E1C762DFD5A7368D1D6 /* diy-fp.cc in Sources */, - CD6AF50A5B8935155294A78A2118C81D /* double-conversion.cc in Sources */, - F42C8BF58D5B89A62977257C8D106EE5 /* DoubleConversion-dummy.m in Sources */, - 3630703BA714A7B643C662E8F4C9B5E6 /* fast-dtoa.cc in Sources */, - 6ED1741AE0930CF58147E317CCD6F91D /* fixed-dtoa.cc in Sources */, - FFF03AE42095BE4F7E20384AD7AA1742 /* strtod.cc in Sources */, + C4A28A807E43542C8BFD573B178B9EE8 /* CxxNativeModule.cpp in Sources */, + DDAB140FA5DC49C908678415AEA454BB /* Instance.cpp in Sources */, + 650880B3A99103B2C8005CD50636E2B5 /* JSBigString.cpp in Sources */, + 52065294B5C167A52403505D6BE397FE /* JSBundleType.cpp in Sources */, + 9B577454A49547B5EF6F1A87113ADC05 /* JSExecutor.cpp in Sources */, + 43AB6E3BEEE0664406F1F2E1F0A1D7D7 /* JSIndexedRAMBundle.cpp in Sources */, + BFB8ECB8B32DC10F11EAD6885319AAB0 /* MethodCall.cpp in Sources */, + 394746DB7D475E37DABB280917788C85 /* ModuleRegistry.cpp in Sources */, + B44718C946357499DC8C965256408E09 /* NativeToJsBridge.cpp in Sources */, + DA3FDECB52AFE0B482C1721436E777CD /* RAMBundleRegistry.cpp in Sources */, + B1BDA42B05D9DD257EAC4EBBBC70D527 /* React-cxxreact-dummy.m in Sources */, + D7CD2264690844BB7E73A8F9A45CEC55 /* ReactMarker.cpp in Sources */, ); runOnlyForDeploymentPostprocessing = 0; }; - 9B2024FD04B3CDDFF3602231D93163DD /* Sources */ = { + 9E6AB28F11FA6AA0C1A4F85BAC9FBF2A /* Sources */ = { isa = PBXSourcesBuildPhase; buildActionMask = 2147483647; files = ( - 5F97A8053DE2FC0B0BFD6A5B96BA40EB /* Pods-defaults-RocketChatRN-dummy.m in Sources */, - ); - runOnlyForDeploymentPostprocessing = 0; - }; - A083F8EF5ABE7519458E8356FD0BC478 /* Sources */ = { + AF730F95063E23ABD78ECF4512C8C1A1 /* NSTextStorage+FontScaling.m in Sources */, + 8DF00B6CC21BD890B41F8625F8E9717A /* RCTBackedTextInputDelegateAdapter.m in Sources */, + 1E54D580CD1D3C1BD801C16BD9B004A7 /* RCTBaseTextInputShadowView.m in Sources */, + 9B948D68511F640610667E3094151278 /* RCTBaseTextInputView.m in Sources */, + 5ADBA79D9285836886123D3C6A7B99D8 /* RCTBaseTextInputViewManager.m in Sources */, + 759CF4CE0D9EA0CF514BDDB43F37826D /* RCTBaseTextShadowView.m in Sources */, + 6AA89B347B79A384A535C0BC4DFA60F8 /* RCTBaseTextViewManager.m in Sources */, + 837F1648F640687283C9F86B86D7FB86 /* RCTConvert+Text.m in Sources */, + BF61D29D6CDDE489BFC64739FF537273 /* RCTInputAccessoryShadowView.m in Sources */, + DD41A379B6C9DEFF3DB46FAD0423B3CB /* RCTInputAccessoryView.m in Sources */, + C2E71ADBCF5F634E1D1BC95202FA0CB9 /* RCTInputAccessoryViewContent.m in Sources */, + 3EFD6677064D19D44766FC9F001EDF2B /* RCTInputAccessoryViewManager.m in Sources */, + 2A1EF3770CD572F40FEC4A2FBA2A78BC /* RCTMultilineTextInputView.m in Sources */, + A6230E21D4A55B6A0CB95602085E85D5 /* RCTMultilineTextInputViewManager.m in Sources */, + 74DEE378AC1043C4FCA5BE4F64B8A237 /* RCTRawTextShadowView.m in Sources */, + 63137D749B740725E252FEC0FC36E637 /* RCTRawTextViewManager.m in Sources */, + 91836EC0820B2341A7C0765D3D0A4CA1 /* RCTSinglelineTextInputView.m in Sources */, + C782CCDC9F577B865FB0D8B459AF2BA6 /* RCTSinglelineTextInputViewManager.m in Sources */, + BB6AF9025229F9C135DB0F891B83DB60 /* RCTTextAttributes.m in Sources */, + 5D9906D9FF68F007F8AF1E6D0E096F62 /* RCTTextSelection.m in Sources */, + 0DEECDFBA4DE00E9FEA4A32904A5C8AD /* RCTTextShadowView.m in Sources */, + 8CA1EA3E091D846D862D77C7D6D17A98 /* RCTTextView.m in Sources */, + 7DE10B53F3723E79C650B2994C63C79B /* RCTTextViewManager.m in Sources */, + E53C5A0AD36B105762561C1F622581D8 /* RCTUITextField.m in Sources */, + 481FAB803128B57572DDDCD55F534D3F /* RCTUITextView.m in Sources */, + CC1E3DE09A053FE4F8625A07F37F687E /* RCTVirtualTextShadowView.m in Sources */, + 5BF7C6976ADFCA35F754EF41A67E653D /* RCTVirtualTextViewManager.m in Sources */, + 93F7C78FEEE9D79D08646514449D4106 /* React-RCTText-dummy.m in Sources */, + ); + runOnlyForDeploymentPostprocessing = 0; + }; + 9F3563EDD5E968F12DD6A64FE08A01DA /* Sources */ = { isa = PBXSourcesBuildPhase; buildActionMask = 2147483647; files = ( - 10984B4E10D608B72B31D7E8925F75E9 /* nanopb-dummy.m in Sources */, - 2878DA8AB79437BE25FD83B8BAC93A39 /* pb_common.c in Sources */, - ECA65EB0676276BB1A6987E7DA9AE058 /* pb_decode.c in Sources */, - 8BD59AB174FB17C09F5A44A5632B9D84 /* pb_encode.c in Sources */, + 6F4060BBEDBF097C01007CC6EFAFA331 /* RCTConvertHelpers.mm in Sources */, + 4FBB27C88BD574385E044C90FD940215 /* RCTTypedModuleConstants.mm in Sources */, + 319333A17B1DF0874DE9B35F0C581B66 /* RCTTypeSafety-dummy.m in Sources */, ); runOnlyForDeploymentPostprocessing = 0; }; @@ -30757,58 +30612,17 @@ ); runOnlyForDeploymentPostprocessing = 0; }; - ADF251BC5EA8DAB367F97065FFE9DB22 /* Sources */ = { - isa = PBXSourcesBuildPhase; - buildActionMask = 2147483647; - files = ( - 09AEC5DEC14AB7D111C1DF36DFD7A1AD /* RCTAnimatedImage.m in Sources */, - E5558D09A1CAA1BF0B765E9A32E030D9 /* RCTDisplayWeakRefreshable.m in Sources */, - DC6E6A1A98E8B24F39EA0D6181805A66 /* RCTGIFImageDecoder.mm in Sources */, - 1E30EEB7D6B9759D49F69E1416E3B440 /* RCTImageBlurUtils.m in Sources */, - 56A21965CF32BA684B8581838BE19F35 /* RCTImageCache.m in Sources */, - AFB718D73456E3985F6A9536B44D463C /* RCTImageEditingManager.mm in Sources */, - 3B2098DABCFE776E94FEE04DF9557CF0 /* RCTImageLoader.mm in Sources */, - 689A03B1331EB2ECAEF60397C3C14027 /* RCTImagePlugins.mm in Sources */, - 3C83A352957F4D0F78D2A55A9EF7D879 /* RCTImageShadowView.m in Sources */, - 2C7498F371D225A59784DD693611FB7D /* RCTImageStoreManager.mm in Sources */, - 9A530787EE154EC14A1E0C2D94DA0B5D /* RCTImageURLLoaderWithAttribution.mm in Sources */, - D1F3694BF15942027B96B7B51C44037E /* RCTImageUtils.m in Sources */, - 115EFCFD35A75A5E936E522290FAAD1A /* RCTImageView.mm in Sources */, - EB33AEF5874FE6570CCB62F87298A82E /* RCTImageViewManager.mm in Sources */, - 30C84494833989A226DDE968247C8173 /* RCTLocalAssetImageLoader.mm in Sources */, - 09F15827B9B30D7FAFB16A3ADF53557B /* RCTResizeMode.m in Sources */, - 3FD1E2BAF8E02708AD77D0CF6ACEDE76 /* RCTUIImageViewAnimated.m in Sources */, - 5B354EA4FB84CF6F18B858676BC0ED74 /* React-RCTImage-dummy.m in Sources */, - ); - runOnlyForDeploymentPostprocessing = 0; - }; - AEC588E7FA59437E1592077629529090 /* Sources */ = { + A8105730D0DB3000999F06BE724BA47C /* Sources */ = { isa = PBXSourcesBuildPhase; buildActionMask = 2147483647; files = ( - 08CC00DC6F526AAF0A9121114A369342 /* RCTAdditionAnimatedNode.m in Sources */, - 708596174C426482EAB10A939EE95A73 /* RCTAnimatedNode.m in Sources */, - 4FE8D98987A6FDD3B1A738A9BC1BD9A1 /* RCTAnimationPlugins.mm in Sources */, - B73A17158667F865B59F6FF3974C9AD7 /* RCTAnimationUtils.m in Sources */, - 2881A409DC377A1F6222AAC4B5A19F0F /* RCTDecayAnimation.m in Sources */, - 1AEAA393B0602568C6A83EFEBD5890DA /* RCTDiffClampAnimatedNode.m in Sources */, - 7B36A14A4EFCA658EDF10D5D5239D94F /* RCTDivisionAnimatedNode.m in Sources */, - E2DB19525BA7F7B8A4FFBD0D59429E8D /* RCTEventAnimation.m in Sources */, - 2649DFD21575F940A3F141DE39D20B6F /* RCTFrameAnimation.m in Sources */, - 620BBD004B46D6532436B369989B8805 /* RCTInterpolationAnimatedNode.m in Sources */, - AE4B01E7A1BAD40332ADE43828CB8170 /* RCTModuloAnimatedNode.m in Sources */, - 748FDF3139F4EEBF346D3E4511BCE23E /* RCTMultiplicationAnimatedNode.m in Sources */, - 8209AB28F2C10DE6E05725D67980B868 /* RCTNativeAnimatedModule.mm in Sources */, - 290D481DD7BD973CB373FF1082807305 /* RCTNativeAnimatedNodesManager.m in Sources */, - 460676F48B947C7C92DE87157A4977C6 /* RCTNativeAnimatedTurboModule.mm in Sources */, - 789AF8DAA29E045F7DAEC605CFE51B6A /* RCTPropsAnimatedNode.m in Sources */, - 121897906ACB87FDAEFB104BC38BC0FE /* RCTSpringAnimation.m in Sources */, - 4CC475EAFA33E11FCEC6CB223DFDF4DB /* RCTStyleAnimatedNode.m in Sources */, - BA2EC5894867731AC833E5117AC88C1D /* RCTSubtractionAnimatedNode.m in Sources */, - C628502E7671AF7DD973E0C886FA4D81 /* RCTTrackingAnimatedNode.m in Sources */, - 3B5D0BC23D913CFC18B4AB92B50CE407 /* RCTTransformAnimatedNode.m in Sources */, - 610E940BDD71169498ECD3AA2234C11A /* RCTValueAnimatedNode.m in Sources */, - 2AB7867E0D3A0245079044891019401A /* React-RCTAnimation-dummy.m in Sources */, + 01517F5CE655F6DC89AFB04EE34BCB4E /* RCTDataRequestHandler.mm in Sources */, + A5079CA7A08647E59502FFB2BC1396AA /* RCTFileRequestHandler.mm in Sources */, + 2863C2CF557A1BC8CAC90DA17CE9D8BD /* RCTHTTPRequestHandler.mm in Sources */, + DF477BB1782CD811326B49113384DFCC /* RCTNetworking.mm in Sources */, + 556401236333C5A3C89239E52D18DFBB /* RCTNetworkPlugins.mm in Sources */, + EFCF4CD54971F298764B6A1911DAEA95 /* RCTNetworkTask.mm in Sources */, + 0846C745AE899192240A2B22A8F75BD2 /* React-RCTNetwork-dummy.m in Sources */, ); runOnlyForDeploymentPostprocessing = 0; }; @@ -30823,6 +30637,16 @@ ); runOnlyForDeploymentPostprocessing = 0; }; + B236C993A45FE539A14236B2AA79A2ED /* Sources */ = { + isa = PBXSourcesBuildPhase; + buildActionMask = 2147483647; + files = ( + 066A4AF44ED446E0F09372AF5FCD846E /* RNFBCrashlytics-dummy.m in Sources */, + B6232A67D508D040AF0FD7D42E67E5A4 /* RNFBCrashlyticsInitProvider.m in Sources */, + 488CFA9669A774D45268F716204DE09F /* RNFBCrashlyticsModule.m in Sources */, + ); + runOnlyForDeploymentPostprocessing = 0; + }; B2B487099728AB25E8DA7DB8CC261807 /* Sources */ = { isa = PBXSourcesBuildPhase; buildActionMask = 2147483647; @@ -30846,6 +30670,109 @@ ); runOnlyForDeploymentPostprocessing = 0; }; + B38747D1EC886DF621109525BB16A023 /* Sources */ = { + isa = PBXSourcesBuildPhase; + buildActionMask = 2147483647; + files = ( + DC98FB096D281DA1CD5EDB4CB34391A2 /* Pods-ShareRocketChatRN-dummy.m in Sources */, + ); + runOnlyForDeploymentPostprocessing = 0; + }; + B3C84B75D9D32B5DA09393676FBB5BCA /* Sources */ = { + isa = PBXSourcesBuildPhase; + buildActionMask = 2147483647; + files = ( + 6F5381B4C48F1D4A75BABBE7A89CF69F /* Assume.cpp in Sources */, + F45C92DE9E5177F9170B17909EEF40A5 /* AsymmetricMemoryBarrier.cpp in Sources */, + 61E5C3A016EB0486D8674A107C08C22C /* AsyncTimeout.cpp in Sources */, + 70650B721D32ED886B668AD2D6A73ED1 /* AsyncTrace.cpp in Sources */, + D88EF4396DF2222F8FD3C05FDE91237A /* AtFork.cpp in Sources */, + A921A2B5953F9757101B9D233FC0B896 /* AtomicNotification.cpp in Sources */, + 6C173CDFA3B765FCB54F9C3145554D26 /* Barrier.cpp in Sources */, + 65D17917A74B5724A13DB1C2E639D8EF /* CacheLocality.cpp in Sources */, + 0F8F42DBAD3056AE007CD216DF74A306 /* Codel.cpp in Sources */, + 20EFF89ACBF5F09A9EC55E9ECDC6C096 /* Conv.cpp in Sources */, + 4D36F8F74849E605387C35EFCB0D5115 /* CPUThreadPoolExecutor.cpp in Sources */, + 1A9C4D6A6B69D46A83BC1E78D771D578 /* CString.cpp in Sources */, + 14A87F60DAF6071C345441662C5A4EDF /* Cursor.cpp in Sources */, + E2633A1A9EC389F413DCF65B56ACFF42 /* Demangle.cpp in Sources */, + A5E0607DFE011051B2439DE0036071E8 /* Demangle.cpp in Sources */, + 3C856FDB6A622104E116AE2E1111E224 /* DistributedMutex.cpp in Sources */, + DDE6F2D2558BC31004E59CA4818E472A /* dynamic.cpp in Sources */, + 0185A152FD11A7BA49EC765C5AC029B8 /* EDFThreadPoolExecutor.cpp in Sources */, + 83AF08961086CD527D94E707137339F3 /* EventBase.cpp in Sources */, + 00B899E652CFE178DC2E53C8C5645DDA /* EventBaseBackendBase.cpp in Sources */, + 1831F1C8A034DFBD9B9A23358C734254 /* EventBaseManager.cpp in Sources */, + 886ED443FB7FFC532743166CBA504E68 /* EventHandler.cpp in Sources */, + 85659015F36795FE0D83D8271C79801B /* ExceptionWrapper.cpp in Sources */, + 3B13C625C1AD587BD6DB806451FB06DC /* Executor.cpp in Sources */, + D9AC5833D84C7760EC10869719072E8C /* ExecutorWithPriority.cpp in Sources */, + 18BE475AA589CA7E412B68666762DB15 /* F14Table.cpp in Sources */, + 0225E048B96DB11B8FFF8B9CB2BF1459 /* FileUtil.cpp in Sources */, + 693054BFA0F010794E6FBD14A08538FF /* Format.cpp in Sources */, + 69A8168CEDEDC0CC037373EDFAA50978 /* Futex.cpp in Sources */, + BA6E186A4F779C291330E43A6E518F71 /* Future.cpp in Sources */, + 3820CFEC7FC9BD898A0570CB844213C4 /* GlobalExecutor.cpp in Sources */, + 34042CE4EBB31CC4A443F027386B8059 /* GlobalThreadPoolList.cpp in Sources */, + 221D68FC4910CA45669F4A8774403903 /* Hardware.cpp in Sources */, + 995BB07ECCC02EB331F7440DEE7B8B2F /* HardwareConcurrency.cpp in Sources */, + E680C7D3B6A8A149043D4217CBB60952 /* Hazptr.cpp in Sources */, + 2CCF23B9AF455D5D96980D148EFB75D2 /* HazptrThreadPoolExecutor.cpp in Sources */, + E9A1608B9F8E862F84DDD47CFAC685CE /* HHWheelTimer.cpp in Sources */, + 8B9066223C7A8C4F93C744938A5DAD7C /* InlineExecutor.cpp in Sources */, + F2E86BD5A44DC438CF794910FA46B853 /* IOBuf.cpp in Sources */, + 83A09F590CAEABCC278F5901399B9BF1 /* IOBufQueue.cpp in Sources */, + 914F22BBABC46FF1601DC228A33E4033 /* IOThreadPoolExecutor.cpp in Sources */, + 25C604E3691E13AB5610BD2A53E6FCBD /* json.cpp in Sources */, + 2F7302CC7E38A125BAD5E0FA5AE64FDB /* json_pointer.cpp in Sources */, + 602E8A5539372EF294086441009F06E5 /* MallctlHelper.cpp in Sources */, + 4B47DD0C6C71E48C8DE8A43958E6E75D /* MallocImpl.cpp in Sources */, + AA654A904B3474483ECDC7B1B80E91A5 /* ManualExecutor.cpp in Sources */, + 66644639845566466080A9B9FEC5246A /* ManualTimekeeper.cpp in Sources */, + C162380E0B6F199E49027D86F2AA32F6 /* MemoryIdler.cpp in Sources */, + EE27E64DB254178F01C6E388FD4E90F5 /* NetOps.cpp in Sources */, + FD220D21594B9C3B4F81ECD12A7DCAE6 /* ParkingLot.cpp in Sources */, + 478AEB096ADD4A6A6E94957F44050528 /* QueuedImmediateExecutor.cpp in Sources */, + E43803D45E6D71D06FE6EACB0A707F27 /* RCT-Folly-dummy.m in Sources */, + 01FE73C0F8783F41D57595A426AA52DA /* Rcu.cpp in Sources */, + F1B4B78A22B43EC7FC2ADB6582EBA798 /* Request.cpp in Sources */, + 3F7E208B3FF5B0605F5E1988F1319DE2 /* SafeAssert.cpp in Sources */, + 303CC7AA9890BAD0B71A510E44533B59 /* SanitizeThread.cpp in Sources */, + 800AA10285F70241D7D971D3AB039624 /* ScopeGuard.cpp in Sources */, + 834AFB1EF62E140C176C1BB684068F75 /* SerialExecutor.cpp in Sources */, + 7313AF4971DAC079790EB24E97D905E7 /* SharedMutex.cpp in Sources */, + 4C626E6608551490376CD1EEF96C3B32 /* Singleton.cpp in Sources */, + 7313E52D62761D11CB2D373A0AFD14C9 /* SingletonStackTrace.cpp in Sources */, + C53453613BEF0DAF2F61A1AFFCAD247D /* SpookyHashV2.cpp in Sources */, + 955E23642F896BEF11301A2068E35AAD /* StaticSingletonManager.cpp in Sources */, + 60F7E6CABF3B3FA65E877989BCC12154 /* String.cpp in Sources */, + 88D0474C1E8AF058203537EEFE35D0F3 /* SysUio.cpp in Sources */, + 287BADBB18089397CF815CA77167690B /* ThreadedExecutor.cpp in Sources */, + A2D2BC6F1F0AE7FABE2A7E85412CE5E1 /* ThreadLocalDetail.cpp in Sources */, + 6C29140CED7A5498FA7156DA5E9F9D2D /* ThreadName.cpp in Sources */, + 1E26A5B2B788EB3C522978018B4FA24C /* ThreadPoolExecutor.cpp in Sources */, + 4A2CE88C7FB5475825DD5FE664C18BD0 /* ThreadWheelTimekeeper.cpp in Sources */, + 179DF8F785D2F361049B3ADCE0326AAB /* TimedDrivableExecutor.cpp in Sources */, + 555D6508F207FDA7B8E05C3DD982FF64 /* TimekeeperScheduledExecutor.cpp in Sources */, + 0C1A8C77F3A11672CA002D3243A515AD /* TimeoutManager.cpp in Sources */, + 1B864980B86F0F6FABD5E99CA77C31EE /* Unicode.cpp in Sources */, + 2DED61DF52F58E54E7798548CFC73A9E /* UniqueInstance.cpp in Sources */, + 459BC86CC13B71D7C83F5ECB9A027272 /* VirtualEventBase.cpp in Sources */, + 0182D149451CFF12647D832BEA0D633E /* WaitOptions.cpp in Sources */, + ); + runOnlyForDeploymentPostprocessing = 0; + }; + B6FD4C7D26FF5EAE752ADE5EA959023A /* Sources */ = { + isa = PBXSourcesBuildPhase; + buildActionMask = 2147483647; + files = ( + 592EBA4201C2A9D6E230B0672D54276A /* UIView+Yoga.m in Sources */, + 4EBF3C27250A5BED162C85CF763BDC0F /* YGLayout.m in Sources */, + 9A7DD869EE027F09C54F49B553D556A6 /* YGLayoutExtensions.swift in Sources */, + 35CFD417D18AF81C28D734AE9BB98C06 /* YogaKit-dummy.m in Sources */, + ); + runOnlyForDeploymentPostprocessing = 0; + }; BB2024E24D71D2142A09DA6E749DBF5B /* Sources */ = { isa = PBXSourcesBuildPhase; buildActionMask = 2147483647; @@ -30869,86 +30796,29 @@ ); runOnlyForDeploymentPostprocessing = 0; }; - BCC991817AE4F19B3009D52EE4D80827 /* Sources */ = { + BC5C5834C05F58D370947041472D7CC4 /* Sources */ = { isa = PBXSourcesBuildPhase; buildActionMask = 2147483647; files = ( - 6A1F7261235C2DD375F9E7FE4EF2F98F /* JSCRuntime.cpp in Sources */, - 3271B61D5311B0A1E22EA540F1C0948D /* jsi.cpp in Sources */, - 038E2DBE07A1E347E75CDCA8AD1D1AB2 /* JSIDynamic.cpp in Sources */, - 7BF8D79B86FDBA7350E8460C878E2DA4 /* jsilib-posix.cpp in Sources */, - F9DB58EDFFBD2FF300718C58DA7CE7EC /* jsilib-windows.cpp in Sources */, - 6251A02DB72390A5C0ECDBAEBFD1E020 /* React-jsi-dummy.m in Sources */, + D060C8768E1EFCCCB608E0741AD6A0DE /* bignum-dtoa.cc in Sources */, + ADC1488750D5EED8269BAFF0C99D0103 /* bignum.cc in Sources */, + 09FC3F4E6F34D7C80A2790A63842A122 /* cached-powers.cc in Sources */, + CF1C5364803C9BD32A74C3AC514B8B1D /* diy-fp.cc in Sources */, + E0B5E9712D2800342FDFD8D6C4C6C4A2 /* double-conversion.cc in Sources */, + 9B99B2679743FA4A26F4850C7A811DEC /* fast-dtoa.cc in Sources */, + 23BDC1380F6DBB645C83CD1D691C7CDF /* fixed-dtoa.cc in Sources */, + F5A69F037EB42B0A6AD53FA35AB2A53D /* Flipper-DoubleConversion-dummy.m in Sources */, + 5D828BE2048C487EC39BE1C07C7F3C2A /* strtod.cc in Sources */, ); runOnlyForDeploymentPostprocessing = 0; }; - C08A6AE727D4D6D3A9FAEA70756BB5EA /* Sources */ = { + BF1A0EE8AC07196C49EE9F5D9F8270E6 /* Sources */ = { isa = PBXSourcesBuildPhase; buildActionMask = 2147483647; files = ( - A6684C723B4BA6FF7F1E3F582A221488 /* BaselinesAsyncSocket.cpp in Sources */, - 41A9798E0250EB919ACBAEE90FC8DA76 /* BaselinesTcp.cpp in Sources */, - 63673DE21DB1F119EC1D939438DB6D92 /* Benchmarks.cpp in Sources */, - F095FDC20B3FDC932972555EA99830D2 /* ChannelRequester.cpp in Sources */, - 1BD74BD6F353B5DF14065F07B357F5F9 /* ChannelResponder.cpp in Sources */, - A579CFA764794FC388DF642548112395 /* ColdResumeHandler.cpp in Sources */, - 6ED0B77BA74C2B218B0EAE9971B70E2C /* Common.cpp in Sources */, - 95D9A4E9C6C22BCD760F0B4F98D75CFC /* ConnectionSet.cpp in Sources */, - 3D63EB42FBA44BC88FAD046B11549673 /* ConsumerBase.cpp in Sources */, - 7EF5228B349A0A9705737D3366EF9FE6 /* ErrorCode.cpp in Sources */, - B53EF4FF2D793FB3C7F88D716621F395 /* FireAndForgetResponder.cpp in Sources */, - 72AFFE897E8DA214C265F5DC15B4AA97 /* FireForgetThroughputTcp.cpp in Sources */, - A3494010791A1B02EDFFFC93611785D1 /* Fixture.cpp in Sources */, - D8A40B9FDC860CC977827E0A51177CBC /* Flipper-RSocket-dummy.m in Sources */, - 41DC8D5C155C60A9D369996F19991671 /* Flowables.cpp in Sources */, - 55D4426FFCD98521C5E8B02841D11556 /* Frame.cpp in Sources */, - D9A4B1CEC3F8F1E58D71FC63B7157A77 /* FramedDuplexConnection.cpp in Sources */, - 4B2B14B11BBAB7061E32994C675ECB52 /* FramedReader.cpp in Sources */, - 3ECA2ACAD23C3C43D52D7E5864567544 /* FrameFlags.cpp in Sources */, - 7DE99E010F718BBD8EA0270E477F2618 /* FrameHeader.cpp in Sources */, - 770623923B88E39E0AC5D3D95AF462A9 /* Framer.cpp in Sources */, - E3C0B7A799C90330E6182830EA35F0B7 /* FrameSerializer.cpp in Sources */, - 8EEF7CD07FA75F69C2C5859CD72C4F17 /* FrameSerializer_v1_0.cpp in Sources */, - 6811D0C627954C82912E0B0FBCD71ED2 /* FrameTransportImpl.cpp in Sources */, - 1F63274583B5A8D8520FBA89792D4368 /* FrameType.cpp in Sources */, - FD1C5DE1C8EA4DD2B3A7C534407DAE22 /* KeepaliveTimer.cpp in Sources */, - 8219A72DF5F0D9ADF8EE6548F22B1012 /* Observables.cpp in Sources */, - 93A006518188D01FA30E1F6365DC975D /* Payload.cpp in Sources */, - A0810DC5994E2B656E998C7B0700374B /* ProtocolVersion.cpp in Sources */, - D7B16A5FCA924A6B5753536F5BA2C70B /* PublisherBase.cpp in Sources */, - DDFF865D8D064E0B6075E1461369807B /* RequestResponseRequester.cpp in Sources */, - BCE6AFFBB228B0AB83252F2EA6716C7F /* RequestResponseResponder.cpp in Sources */, - 6BA48DB67AB9CA5A4192C9D3C9C26AFC /* RequestResponseThroughputTcp.cpp in Sources */, - 6E9F108D7D1F600FA41DD8FD7B34E427 /* ResumeIdentificationToken.cpp in Sources */, - DA0273ED3C6B6C8E35B2179344B3425E /* RSocket.cpp in Sources */, - 2F67DA389E43964EE5271FB02C284A56 /* RSocketClient.cpp in Sources */, - F9D870A3B72CBE475B83E1ACB9A0C764 /* RSocketParameters.cpp in Sources */, - 1A8BE41F96349EE0FF79E0AE076BBF15 /* RSocketRequester.cpp in Sources */, - 037C957FDE25B5F43759C4F0BA107AF8 /* RSocketResponder.cpp in Sources */, - FC1B5FD19FCDCAF216292C28BE46E018 /* RSocketServer.cpp in Sources */, - 61CBD9E97EBD2B6F2F92C3C0EB28BD38 /* RSocketServiceHandler.cpp in Sources */, - 26CE6ADE5C4058BA9884954DC249CDB4 /* RSocketStateMachine.cpp in Sources */, - 33D7E712B6D5A211E267078385732A82 /* RSocketStats.cpp in Sources */, - C0EAB7F81C5DBB752E7A7A6287547EB9 /* ScheduledFrameProcessor.cpp in Sources */, - 219FCD15E8D1202D62E2225EB1CC36F3 /* ScheduledFrameTransport.cpp in Sources */, - 299283C7E20E0AD83A0737430AED1042 /* ScheduledRSocketResponder.cpp in Sources */, - 1D309C64B4D69A23E8630807F8AA238A /* ScheduledSingleSubscription.cpp in Sources */, - 79E9F5A233FE519BCD4C17C56B7CB560 /* ScheduledSubscription.cpp in Sources */, - F71B248075F1936754E6DDDC27E61B0E /* SetupResumeAcceptor.cpp in Sources */, - 99972D38A478C11F945900513A5B25AA /* StreamFragmentAccumulator.cpp in Sources */, - 41F5664F2892AE0931988788DE71F5B8 /* StreamRequester.cpp in Sources */, - 3A0EBA9C20A091090BCC639E8D8BA6DB /* StreamResponder.cpp in Sources */, - 5F1AFE6A2C8A803A0110BAC9966A2E33 /* StreamStateMachineBase.cpp in Sources */, - 8D810A73247D24216F6C059D1B33842C /* StreamsWriter.cpp in Sources */, - CAF3E80D9F68C3ED544BBBF1CD35C3C7 /* StreamThroughputMemory.cpp in Sources */, - 33E2AC6E5506D025DF52F40BA239CC9C /* StreamThroughputTcp.cpp in Sources */, - E87F01115D4BD92EA8565C73AD975317 /* Subscription.cpp in Sources */, - CD85334FA3FB2C48BDDCFD5B7582A33A /* Subscription.cpp in Sources */, - 69C7BE94793C6FDF6F1C67B14956F741 /* SwappableEventBase.cpp in Sources */, - F55D50D48DDECD7537EBA6D3AE0AF38D /* TcpConnectionAcceptor.cpp in Sources */, - 00807FAA7AEECF6ED98F32666568B370 /* TcpConnectionFactory.cpp in Sources */, - 71F37F6A18744FC71A4B25E1C978793B /* TcpDuplexConnection.cpp in Sources */, - B1B15F99542746BAD493CB3FD93D7A70 /* WarmResumeManager.cpp in Sources */, + D8A4A382A5DB6A629DE76D333E1C7695 /* RCTLinkingManager.mm in Sources */, + EC3620FB14D0D6EF31D86B9EA3AE9B99 /* RCTLinkingPlugins.mm in Sources */, + F086EE57655A53EEB2F2C7C3DF357756 /* React-RCTLinking-dummy.m in Sources */, ); runOnlyForDeploymentPostprocessing = 0; }; @@ -30962,45 +30832,27 @@ ); runOnlyForDeploymentPostprocessing = 0; }; - C6F8C9157A210B1E89DACCCE456DAB6E /* Sources */ = { - isa = PBXSourcesBuildPhase; - buildActionMask = 2147483647; - files = ( - 5E8F17796B17F546DBEFF101502550DA /* EXWebBrowser-dummy.m in Sources */, - 76EDAE2B2C19EEBD786B950168002CF4 /* EXWebBrowser.m in Sources */, - ); - runOnlyForDeploymentPostprocessing = 0; - }; - C7242F219CF42105F543D0FB645E7367 /* Sources */ = { + C414EF949EEAEBBD62C88CC2F876AB66 /* Sources */ = { isa = PBXSourcesBuildPhase; buildActionMask = 2147483647; files = ( - ABEEBD0673B548D627CC5B3F80BD92D1 /* GoogleUtilities-dummy.m in Sources */, - FEB65AD9CB5FDC801700767B929391BE /* GULAppDelegateSwizzler.m in Sources */, - 98B07CD7F6BC44CEA3E8579EF59EC375 /* GULAppEnvironmentUtil.m in Sources */, - D043B51DB08FE072B47051B436D37103 /* GULHeartbeatDateStorage.m in Sources */, - 5C62820C2BA76DFE7B38ED75B95B5DBD /* GULKeychainStorage.m in Sources */, - 4A038EE7E83F410033B3E4F908E1A2BD /* GULKeychainUtils.m in Sources */, - 8ED434F65C6CD8B824D294363AF15573 /* GULLogger.m in Sources */, - 54215A72743129B3F6E99C1A98273D4E /* GULMutableDictionary.m in Sources */, - A058862E9D28E12FD2BBED5B2C4639EF /* GULNetwork.m in Sources */, - 064607851859163A371F8B63692DF256 /* GULNetworkConstants.m in Sources */, - BE23A68225DE90277929A9DB9E0EBA18 /* GULNetworkURLSession.m in Sources */, - BD162DFD42C21940FDF960095DEF6686 /* GULNSData+zlib.m in Sources */, - 8918DC8B349ABC5E0F857B3F3A79D075 /* GULReachabilityChecker.m in Sources */, - E248DDA578AB249E354FF39B372C5B20 /* GULSceneDelegateSwizzler.m in Sources */, - EA7C749C114B176E77A7E80384C2B23A /* GULSecureCoding.m in Sources */, - 42F0C73EE19E2178BA4ECC0FD2E9835C /* GULSwizzler.m in Sources */, - 52FC8D37FC21A6A1729B415C479B0A45 /* GULUserDefaults.m in Sources */, + 44B1337C2281CAE971673E2776D0201A /* demangle.cc in Sources */, + 66A80C84B1AAB32F579240F9D6406C3F /* glog-dummy.m in Sources */, + 2A3B65B21B2AC8BA6F41E87CEDAF5B45 /* logging.cc in Sources */, + C3D670D52D3914296B79EF5640A7879E /* raw_logging.cc in Sources */, + B9409064B7867CFC77F7F295D613B68E /* signalhandler.cc in Sources */, + C4F123A8EC143C47F5FEAF0ABC97D5CA /* symbolize.cc in Sources */, + D088694BF913C587EDBFEA13CCE555B1 /* utilities.cc in Sources */, + 996F014FE84BA76FB16F4DF439866935 /* vlog_is_on.cc in Sources */, ); runOnlyForDeploymentPostprocessing = 0; }; - C8935F11AC9EE2D5F5BB6D52AE2EB925 /* Sources */ = { + C6F8C9157A210B1E89DACCCE456DAB6E /* Sources */ = { isa = PBXSourcesBuildPhase; buildActionMask = 2147483647; files = ( - 1FDAF175D4A758961788CBF5F77DB38A /* FBReactNativeSpec-dummy.m in Sources */, - B8EE199139365259464A9A4E63FB031B /* FBReactNativeSpec-generated.mm in Sources */, + 5E8F17796B17F546DBEFF101502550DA /* EXWebBrowser-dummy.m in Sources */, + 76EDAE2B2C19EEBD786B950168002CF4 /* EXWebBrowser.m in Sources */, ); runOnlyForDeploymentPostprocessing = 0; }; @@ -31019,23 +30871,10 @@ ); runOnlyForDeploymentPostprocessing = 0; }; - CE43AC7EA78FCFF268F3EFD6B4C3F832 /* Sources */ = { - isa = PBXSourcesBuildPhase; - buildActionMask = 2147483647; - files = ( - 6EBC739B30CA8FAD48C3951AFCCA66B6 /* FIRCoreDiagnostics.m in Sources */, - 23F8CC4360DEF34ADA9029CC0CAAC322 /* firebasecore.nanopb.c in Sources */, - B496E304F33DC09768D039910FBFEE55 /* FirebaseCoreDiagnostics-dummy.m in Sources */, - ); - runOnlyForDeploymentPostprocessing = 0; - }; - D1A788E06A778C565109E2A44D8F75F0 /* Sources */ = { + CCDA4088F3A8CF8F74DECA4D6531F9F8 /* Sources */ = { isa = PBXSourcesBuildPhase; buildActionMask = 2147483647; files = ( - 37FD29FAC19693BF91BA579CD22F86D3 /* RCTVibration.mm in Sources */, - 65AD94D38D856A41614DFA5415ADC2B8 /* RCTVibrationPlugins.mm in Sources */, - 2858B9CE1458A308A88FBB080973A2BD /* React-RCTVibration-dummy.m in Sources */, ); runOnlyForDeploymentPostprocessing = 0; }; @@ -31087,6 +30926,16 @@ ); runOnlyForDeploymentPostprocessing = 0; }; + D786C29644CB469756B7E8EED000ADBA /* Sources */ = { + isa = PBXSourcesBuildPhase; + buildActionMask = 2147483647; + files = ( + 212CFBEDC14B9FF651E42A73C5EF3B2C /* FIRCoreDiagnostics.m in Sources */, + FAF47CB6AB68051DC14E2AFF5F94A54B /* firebasecore.nanopb.c in Sources */, + 1469297FAC1D481152506BCECFF6E076 /* FirebaseCoreDiagnostics-dummy.m in Sources */, + ); + runOnlyForDeploymentPostprocessing = 0; + }; DF039F9E2801C3241F76BE8CBFB51241 /* Sources */ = { isa = PBXSourcesBuildPhase; buildActionMask = 2147483647; @@ -31113,40 +30962,118 @@ ); runOnlyForDeploymentPostprocessing = 0; }; - E2228FD4AC6E29FB6D8F41180467CB2A /* Sources */ = { + E1822D9A1FA5A9808706A23F067CB61B /* Sources */ = { isa = PBXSourcesBuildPhase; buildActionMask = 2147483647; files = ( - 9C7735F2163F420136DB896DE154101D /* RCTConvertHelpers.mm in Sources */, - CAFFC17E94ACA75D2EECDB6D7BA90684 /* RCTTypedModuleConstants.mm in Sources */, - 4F26EBD2749025287A7A88728765E0DB /* RCTTypeSafety-dummy.m in Sources */, + 364D5AD721393E3F8C4598F4CAE6C1A2 /* Pods-NotificationService-dummy.m in Sources */, ); runOnlyForDeploymentPostprocessing = 0; }; - E303C721D4F58E43DB50888BC3C3AB5B /* Sources */ = { + E24E0F9DFF1FB326F7C2245FE9B60BA5 /* Sources */ = { isa = PBXSourcesBuildPhase; buildActionMask = 2147483647; files = ( - AA0852ACB57A6324AA958B84F2A182B0 /* Pods-NotificationService-dummy.m in Sources */, + AFF85BCBA1D9F866570AC636DEE269B3 /* SDImageWebPCoder.m in Sources */, + 04092E20D9150EA09E155ED63597633E /* SDWebImageWebPCoder-dummy.m in Sources */, + A4A0709229F259B40F30916EFF68BE64 /* UIImage+WebP.m in Sources */, ); runOnlyForDeploymentPostprocessing = 0; }; - E468314F3DA7F4FB7C59EEDAB31A45C5 /* Sources */ = { + E271BD64C2A5688B357020ACAD3E6BBA /* Sources */ = { + isa = PBXSourcesBuildPhase; + buildActionMask = 2147483647; + files = ( + BCC5346AFFE3482C8A48D9F13750B2FE /* NSBezierPath+SDRoundedCorners.m in Sources */, + EBF02E160B55E130FA3B21EF2B3143E3 /* NSButton+WebCache.m in Sources */, + 079CA6AB1D51456697EED613C8F59644 /* NSData+ImageContentType.m in Sources */, + 1CD27887BCA588CCA19A07221D57AAE3 /* NSImage+Compatibility.m in Sources */, + EB30915B1FAC339EC81CE1E1B292CD59 /* SDAnimatedImage.m in Sources */, + CC6B29531FD44D117E367C16D4BD062D /* SDAnimatedImagePlayer.m in Sources */, + CF7E8A7C81C418125C06402AC9BFA316 /* SDAnimatedImageRep.m in Sources */, + C372D4E1FC99DB299BC1845AA9E8ED69 /* SDAnimatedImageView+WebCache.m in Sources */, + CA5FFC06D118A31A98B9A737CECE98B8 /* SDAnimatedImageView.m in Sources */, + 03C6E8E2740435CCF5F8065C790CC53C /* SDAssociatedObject.m in Sources */, + B37FEB4F02256C8E8B11173379CAF09D /* SDAsyncBlockOperation.m in Sources */, + 0C1CAD160E2E8E70AE3CCFEC4B7D8F83 /* SDDeviceHelper.m in Sources */, + 582B9C8885E9C1714EDEC6565AA9DDC5 /* SDDiskCache.m in Sources */, + 6C16D9AF4D89CFADDBC6928AAF90662C /* SDDisplayLink.m in Sources */, + 01A8B5DE2ED13D398DF2F059D6577937 /* SDFileAttributeHelper.m in Sources */, + 5063CF89529776B50316EF113E85BC2F /* SDGraphicsImageRenderer.m in Sources */, + 5058516CFF7208E7465B2ABEBFF90CF9 /* SDImageAPNGCoder.m in Sources */, + AD2EF0C9221A7AA71732722D1A30B67B /* SDImageAssetManager.m in Sources */, + C86A0F6DB9F70BAFD998BF86315993F3 /* SDImageAWebPCoder.m in Sources */, + 958B1E58790A703569F41396A48166D4 /* SDImageCache.m in Sources */, + 0A9B37E24C6342D8B9D74B0234E8882E /* SDImageCacheConfig.m in Sources */, + 20513BAAE51A2EAB3DA4B717D72CE13F /* SDImageCacheDefine.m in Sources */, + 83462DAACFADDCF15C4CDB4466074118 /* SDImageCachesManager.m in Sources */, + 2A6EA62FD0AF0B03BFCA679325A35CE5 /* SDImageCachesManagerOperation.m in Sources */, + 27C599AC2F41B6D92D4B8F5156F5F727 /* SDImageCoder.m in Sources */, + F9D32AF21DCFC3BCD5A3881D431FADA5 /* SDImageCoderHelper.m in Sources */, + 8F969DB524C361C3B037AF162F1E1164 /* SDImageCodersManager.m in Sources */, + 3307BE4EBA2AAC98B41E6BEED1888D57 /* SDImageFrame.m in Sources */, + 83619E1DAA452D4B63050AD03BC64600 /* SDImageGIFCoder.m in Sources */, + 17D4801DE0C4953F756182DC7D65A06E /* SDImageGraphics.m in Sources */, + 8D90CEBD37D1EE5B83615E0D4BD43A50 /* SDImageHEICCoder.m in Sources */, + 6AF6AFA3AEF101D5016C06509BBE554E /* SDImageIOAnimatedCoder.m in Sources */, + A5D8A5DA9B30805E647C98B8E2F16D58 /* SDImageIOCoder.m in Sources */, + A77576423E8BEBA30157A43363DCFDE3 /* SDImageLoader.m in Sources */, + 8E776EE11A98912453BC28816F3F2222 /* SDImageLoadersManager.m in Sources */, + A1BEBC95069C65E14AB08A9A42761B56 /* SDImageTransformer.m in Sources */, + E616D0C255DC060D4EE53E62A4FF20A4 /* SDInternalMacros.m in Sources */, + 070DFC4FF425C3333CDA1B4CF472F37A /* SDMemoryCache.m in Sources */, + 44124D99464BA70F832E4225962F42E9 /* SDWeakProxy.m in Sources */, + AF3279D542EF38AAB10459A9883BCC9C /* SDWebImage-dummy.m in Sources */, + A7178822986C79551EAEDD06365123B5 /* SDWebImageCacheKeyFilter.m in Sources */, + 6086DAC3641BBBD677C953E1831E18B8 /* SDWebImageCacheSerializer.m in Sources */, + 2F4198D9F013C9FE111E61D1259B0DA8 /* SDWebImageCompat.m in Sources */, + 7D203EC3B83C37819F8CA91AC6851E05 /* SDWebImageDefine.m in Sources */, + 265157FEE4999B44E4832C3E37B2105D /* SDWebImageDownloader.m in Sources */, + 8315CA762D6800CBB0FBC7061F5DFC7B /* SDWebImageDownloaderConfig.m in Sources */, + 7AB418BEBA99EBF250CF3868D2FA61F9 /* SDWebImageDownloaderDecryptor.m in Sources */, + 70A6663F36196608669C5809C9750CF7 /* SDWebImageDownloaderOperation.m in Sources */, + 08FE082C5EFAAF8DB4C384DC82A24B61 /* SDWebImageDownloaderRequestModifier.m in Sources */, + AC037B7430F74FBFAEEC35D91B3B0309 /* SDWebImageDownloaderResponseModifier.m in Sources */, + 584C8F04D80EB3B77D6A202A5D739A37 /* SDWebImageError.m in Sources */, + 0224F4EF5069542E8664E41035230E28 /* SDWebImageIndicator.m in Sources */, + 69F27D2305229F7CE93C9F5C1288C1D2 /* SDWebImageManager.m in Sources */, + 775488287A4689B1FD16523B9CEADE9C /* SDWebImageOperation.m in Sources */, + 866C4EDB67920E7EE34DA3DC2B145DC7 /* SDWebImageOptionsProcessor.m in Sources */, + 6360BFAE5D200A8614E5B57665A4F3A6 /* SDWebImagePrefetcher.m in Sources */, + 30E947A0A0DF57A582B795F37E5D358D /* SDWebImageTransition.m in Sources */, + 42A049766F3D26C71C0D0AF97F66892C /* UIButton+WebCache.m in Sources */, + 10D4590EBF35739CF28F26DEE8F91B4E /* UIColor+SDHexString.m in Sources */, + FCCB567A803B760A47E110B6587080FF /* UIImage+ExtendedCacheData.m in Sources */, + 67E340FD8A7BE47ABE0A2397F1A95C72 /* UIImage+ForceDecode.m in Sources */, + 10EEBC3F7BC86C32E9A0DBFEEF6FFA04 /* UIImage+GIF.m in Sources */, + 4D74B0BD2882AA715F2F7CE3D119B7EF /* UIImage+MemoryCacheCost.m in Sources */, + 1D7E7CFBCF6C8AC9BD001F4A821CE86D /* UIImage+Metadata.m in Sources */, + 30763EF1132DCDB7F8CA2AD3CDAB76C0 /* UIImage+MultiFormat.m in Sources */, + D18D3F99DE8D4B4C9DFF7D385EE01CEC /* UIImage+Transform.m in Sources */, + E385D9D9A5C40857B927BA4BDD0ED7D3 /* UIImageView+HighlightedWebCache.m in Sources */, + C74A033926CE6C2B5A9531707B4D113B /* UIImageView+WebCache.m in Sources */, + 25E102E24A4BB025735BA78165F39347 /* UIView+WebCache.m in Sources */, + 9DFCC681619FA5D7F299FDECEBBBD497 /* UIView+WebCacheOperation.m in Sources */, + ); + runOnlyForDeploymentPostprocessing = 0; + }; + E2DF8288B62C07FD4E87F28746B416B1 /* Sources */ = { isa = PBXSourcesBuildPhase; buildActionMask = 2147483647; files = ( - E24306CF618953F06E4CEFE26434420D /* CxxNativeModule.cpp in Sources */, - 9C38EED02588E7C20459E10CDED18D31 /* Instance.cpp in Sources */, - 21E6B0A439E4AC6DF9B18FAB2FD60242 /* JSBigString.cpp in Sources */, - E6B8C0201823B78660AFB9CD89094146 /* JSBundleType.cpp in Sources */, - 1E317E04BF342BB3DAB443FD72BB9F5B /* JSExecutor.cpp in Sources */, - E16B561E1E6DD97CFF1FE312FFAD1FA5 /* JSIndexedRAMBundle.cpp in Sources */, - 045000FCEB1B5F5CB4B35EEA57AF018C /* MethodCall.cpp in Sources */, - 3F1B71A9630F8C25208DD6D8011BB669 /* ModuleRegistry.cpp in Sources */, - 76A2FE9AAF994264132E9FAFB1E9D14D /* NativeToJsBridge.cpp in Sources */, - 0E975B760052C9632F66B2F4DB4388E0 /* RAMBundleRegistry.cpp in Sources */, - B59C06871DCE000F9A508FAD6FB2432D /* React-cxxreact-dummy.m in Sources */, - 31BDFEFC6ED8283237E1FAFD05763978 /* ReactMarker.cpp in Sources */, + 46EBF2C504B9C69BE832B049A833F00C /* event.cpp in Sources */, + E9B68A13CAEAC76EA2E4B82117F6C965 /* experiments.cpp in Sources */, + 17062D6BE0624FEE08C77FBDD2AA695D /* log.cpp in Sources */, + 91F3C5E4B06ECEF109E0E2C77E3E654E /* Utils.cpp in Sources */, + 15841A44E9F38BBB2C5D49350922E10E /* YGConfig.cpp in Sources */, + AFD071C1A85CE9CECB84CA2EC0E79EC0 /* YGEnums.cpp in Sources */, + 9D083F00FE69739E22A8E9C9A7C0CE8F /* YGLayout.cpp in Sources */, + 7358D1E02BF35E11E18A7B64AEDEDD86 /* YGNode.cpp in Sources */, + 8277633CF4218185C31DB89D053D8D3B /* YGNodePrint.cpp in Sources */, + A569D66EE5605538F14783E1633F2E49 /* YGStyle.cpp in Sources */, + B24C9B582AF2582B42A1C0944EE4D5D3 /* YGValue.cpp in Sources */, + 8F1CD5F1194D48E6F908A31237F1E470 /* Yoga-dummy.m in Sources */, + FB7D05BAAE4D4CBE95F9E955881326F2 /* Yoga.cpp in Sources */, ); runOnlyForDeploymentPostprocessing = 0; }; @@ -31169,15 +31096,6 @@ ); runOnlyForDeploymentPostprocessing = 0; }; - E8861E1DBD8B874B1A985DE947DDE3BE /* Sources */ = { - isa = PBXSourcesBuildPhase; - buildActionMask = 2147483647; - files = ( - 69FC648BAC90824D3423DCFC56C2FEEC /* InspectorInterfaces.cpp in Sources */, - 0705C20C343C509BFF1B5CA41BDE05B1 /* React-jsinspector-dummy.m in Sources */, - ); - runOnlyForDeploymentPostprocessing = 0; - }; E99F2F415284E622B0B66CA80C7E4E8F /* Sources */ = { isa = PBXSourcesBuildPhase; buildActionMask = 2147483647; @@ -31187,26 +31105,6 @@ ); runOnlyForDeploymentPostprocessing = 0; }; - EAAA44F6927E6769C213B4E505BE7D75 /* Sources */ = { - isa = PBXSourcesBuildPhase; - buildActionMask = 2147483647; - files = ( - BFECB647E8A5B6D24DF0DD022EFF5C4F /* event.cpp in Sources */, - 5A1801ADF0F9E33B736EECEF44836F82 /* experiments.cpp in Sources */, - 6FA871B54E72B4E9FF0F5F7933D29E7E /* log.cpp in Sources */, - D2C6862CA0D2BE7734CB670D76F5F41D /* Utils.cpp in Sources */, - D972F5EC4D1CE557AB25C327414C72B1 /* YGConfig.cpp in Sources */, - 66C800A732BB3C65E5F12F4933B66993 /* YGEnums.cpp in Sources */, - C6F8F9EE91335E210D1EB79F6CF83C0D /* YGLayout.cpp in Sources */, - 0CC3D1EBC4B98E88BA86BFE488146684 /* YGNode.cpp in Sources */, - 23576D738C9549A2D6CF08392F1968E8 /* YGNodePrint.cpp in Sources */, - 0EB4F2CD7C83F53EE8507A549B82376F /* YGStyle.cpp in Sources */, - 0AD210E18C425316C4AF682A50FFEA56 /* YGValue.cpp in Sources */, - 668839311B0563511CDFFCC224FAA9A4 /* Yoga-dummy.m in Sources */, - 3EB02BA4EE079C232B94963033B65C33 /* Yoga.cpp in Sources */, - ); - runOnlyForDeploymentPostprocessing = 0; - }; EC4FB09447977D6D891704EEFDDFA5CD /* Sources */ = { isa = PBXSourcesBuildPhase; buildActionMask = 2147483647; @@ -31230,69 +31128,21 @@ ); runOnlyForDeploymentPostprocessing = 0; }; - EE677DEB0818C5AF1142B26C6F07EB02 /* Sources */ = { - isa = PBXSourcesBuildPhase; - buildActionMask = 2147483647; - files = ( - 2EF451A980660F39F52CFE588EEC8F68 /* CocoaAsyncSocket-dummy.m in Sources */, - 2CFCB4CF85B49C6B63BB759EA9D76575 /* GCDAsyncSocket.m in Sources */, - 5E2500118A397A383D4018C3DF7F0583 /* GCDAsyncUdpSocket.m in Sources */, - ); - runOnlyForDeploymentPostprocessing = 0; - }; - EF198BC1489771EDEC3ADECD0EFE1C7A /* Sources */ = { + EDCCB1B95EA3A83345B62DA861D7FFA1 /* Sources */ = { isa = PBXSourcesBuildPhase; buildActionMask = 2147483647; files = ( - 96B124D88EDD4869CBC4AA56B706AA1C /* SDImageWebPCoder.m in Sources */, - 14449585CAC8CBF314F07B4D5A137DE3 /* SDWebImageWebPCoder-dummy.m in Sources */, - 9F51C6614E341953C2241386E269CF5B /* UIImage+WebP.m in Sources */, + BF63CFAE0D5691438379A1A74CBBCD95 /* Pods-defaults-Rocket.Chat-dummy.m in Sources */, ); runOnlyForDeploymentPostprocessing = 0; }; - EFD82CA40C14CB910797804670D9FE56 /* Sources */ = { - isa = PBXSourcesBuildPhase; - buildActionMask = 2147483647; - files = ( - 3DEBF433071A69345226315B12A34660 /* buffer.c in Sources */, - E4DFAC5B7C4EFF623E1DA10693B2F1F4 /* bufferevent.c in Sources */, - 09DCC90A46B1FFF80ACBB457F48AE773 /* bufferevent_filter.c in Sources */, - A6EE17CA67549690D6248EC617824D99 /* bufferevent_pair.c in Sources */, - 525681D085B5C73EF380EA0520995BA4 /* bufferevent_ratelim.c in Sources */, - 5CA3E4EA9D89288AB6804CF6C3B5769F /* bufferevent_sock.c in Sources */, - BDC40C36D8665788E5F4C11F8AEB049B /* evdns.c in Sources */, - CF370A828F7AA0767B77ABD35B3EBE37 /* event.c in Sources */, - BBE575A5924112AFBCF759BE914C6D8D /* event_tagging.c in Sources */, - 92DAFF1F4ABDE52F6555C4EA66EBA4EE /* evmap.c in Sources */, - 4F1888340128350A88BF3E489F1627D7 /* evrpc.c in Sources */, - 356B3BFBDE9967FEB7D091B1DD01EFF4 /* evthread.c in Sources */, - 57E4B19F74D99E1B3A27D31AC87A7006 /* evutil.c in Sources */, - 19140B66C17B626ACD9B1344DFC89002 /* evutil_rand.c in Sources */, - DE9E6432F63DE00E6C4E76AA48F5B3EC /* evutil_time.c in Sources */, - F1D9164589C65FCA0D769B432C50F608 /* http.c in Sources */, - 51DF4E7D681852F71D8435935ADF11FB /* kqueue.c in Sources */, - 84EC5DA53066483EC80B2F2110F6AE25 /* libevent-dummy.m in Sources */, - E5A0AB695B3144ECD8E5C17837CAC24B /* listener.c in Sources */, - 250423D40E0CB60B44F882AB8CA2CA16 /* log.c in Sources */, - B898DB08A50FBB4C579539CB1CFEEA72 /* poll.c in Sources */, - 616D9595A59F74EEA8E43E861D352030 /* select.c in Sources */, - CE6F2163B7B0C45E141427CB6E333B82 /* signal.c in Sources */, - 984FC07221CF2331700F4A4A1D041536 /* strlcpy.c in Sources */, - ); - runOnlyForDeploymentPostprocessing = 0; - }; - F3D28482F2CED5839FB231BDE0E94C8C /* Sources */ = { + EE677DEB0818C5AF1142B26C6F07EB02 /* Sources */ = { isa = PBXSourcesBuildPhase; buildActionMask = 2147483647; files = ( - A3E71FBB1483CF35881D3F3F7A5E0853 /* demangle.cc in Sources */, - C70DA51A309ECBB13EBC57C271D30CCF /* glog-dummy.m in Sources */, - 1CE5F2290B7C60867EEE0B5DB19EDC93 /* logging.cc in Sources */, - 29897EEA9E3268B3BDC4BE3A293D7635 /* raw_logging.cc in Sources */, - 6A8165E3426549D612357585B6D337D0 /* signalhandler.cc in Sources */, - 15912E508F345264F8FDFCF99943287C /* symbolize.cc in Sources */, - 9D6CA7E422AC999BD7D683CCF7A99813 /* utilities.cc in Sources */, - 4A516E7A9D04DA71300E3AD0B30785B7 /* vlog_is_on.cc in Sources */, + 2EF451A980660F39F52CFE588EEC8F68 /* CocoaAsyncSocket-dummy.m in Sources */, + 2CFCB4CF85B49C6B63BB759EA9D76575 /* GCDAsyncSocket.m in Sources */, + 5E2500118A397A383D4018C3DF7F0583 /* GCDAsyncUdpSocket.m in Sources */, ); runOnlyForDeploymentPostprocessing = 0; }; @@ -31305,25 +31155,45 @@ ); runOnlyForDeploymentPostprocessing = 0; }; - F4B320F3E91DE4B87DDFE2D0C0CE9001 /* Sources */ = { + F4EAEAAEE47D01B3BEE16E1F91ABCDAC /* Sources */ = { + isa = PBXSourcesBuildPhase; + buildActionMask = 2147483647; + files = ( + 29501A73E0CEE10A8E23667D92E379C6 /* RCTAnimatedImage.m in Sources */, + 502EC8452441104A95D839D7F5F94E54 /* RCTDisplayWeakRefreshable.m in Sources */, + F08C89F1E7E4E945C1FF0A0FDFBB77E6 /* RCTGIFImageDecoder.mm in Sources */, + 4A5EEF5D75684FAD1DBC7FFCA55979E1 /* RCTImageBlurUtils.m in Sources */, + 03BE10B35EF16F43D2B705E6E3475920 /* RCTImageCache.m in Sources */, + 48310B1DCA3899D9E5E6C6C03DB99428 /* RCTImageEditingManager.mm in Sources */, + A402AAD113108AB5859E41FCF1F3BB07 /* RCTImageLoader.mm in Sources */, + AFB4F578233E18CDBF001760E1EF9E06 /* RCTImagePlugins.mm in Sources */, + 4777BE059170C1D17B9A17ADA6796C82 /* RCTImageShadowView.m in Sources */, + F1313FCE06504D1BC0F8839F6C3DB60C /* RCTImageStoreManager.mm in Sources */, + BE5B4A09FF4A54966506E80C92D78972 /* RCTImageURLLoaderWithAttribution.mm in Sources */, + 81041F67F71ADDDA5354E1BF7FC9E251 /* RCTImageUtils.m in Sources */, + 4868C4B5BA284E2F23176ED2A8B41EBF /* RCTImageView.mm in Sources */, + 7FDA70EED310E1FF35808E78A3136E35 /* RCTImageViewManager.mm in Sources */, + 2DCFEB2D47327734DDEC3868C929D5D1 /* RCTLocalAssetImageLoader.mm in Sources */, + C5C08F38D448C602F6D8FF1DC400596E /* RCTResizeMode.m in Sources */, + 7473443313F17F38B5B4BAD1B6F6E21B /* RCTUIImageViewAnimated.m in Sources */, + D936A2558A2F68A746BB79D2DF7EE80F /* React-RCTImage-dummy.m in Sources */, + ); + runOnlyForDeploymentPostprocessing = 0; + }; + FB02A46FFCB94A1067EB23A29908F5B7 /* Sources */ = { isa = PBXSourcesBuildPhase; buildActionMask = 2147483647; files = ( - D5080033449BA3D8EFC1FEEBC05DF097 /* GDTCORAssert.m in Sources */, - C0D3909925CECE8527B23FFFF3CE3D46 /* GDTCORClock.m in Sources */, - D699743FF4AFA471649D7C40F6A197E2 /* GDTCORConsoleLogger.m in Sources */, - E17965B0328E7F8BE6634B28269E67EC /* GDTCORDataFuture.m in Sources */, - 54F2E38408AE876595C7FF75B4F0FCEE /* GDTCOREvent.m in Sources */, - 5BB861E2813B0F0460BA5A26EC894C9B /* GDTCORFlatFileStorage.m in Sources */, - 48A736D9C6BBAADD1CB80E538201A11F /* GDTCORLifecycle.m in Sources */, - 38E21F4BBD3CE55A1F7A6521A400C11E /* GDTCORPlatform.m in Sources */, - 32EB13EEFFE187E1629F0CFE625069A8 /* GDTCORReachability.m in Sources */, - C4D8D303C627D8C88E7EFDED3136DB7B /* GDTCORRegistrar.m in Sources */, - 33A3F9A3EC7C85FF053EA3936284ADCD /* GDTCORTransformer.m in Sources */, - 9720A773DB6EF850CE18B59044EA720F /* GDTCORTransport.m in Sources */, - 9D93D9974E5D46E2B0944764C6CA3D4D /* GDTCORUploadCoordinator.m in Sources */, - FD458728871ACFAB7620555A0E392E2B /* GDTCORUploadPackage.m in Sources */, - FB02388BD13ADEBC2904E3B51791738A /* GoogleDataTransport-dummy.m in Sources */, + A3C183E1977ED0A0803156BBEAF50609 /* UMAppDelegateWrapper.m in Sources */, + 2F7716E1304BA3585532874E4A33E540 /* UMCore-dummy.m in Sources */, + C0E397FCEF4078EF9EC2F18951163778 /* UMErrorCodes.m in Sources */, + 059D54C7900E6C5E7A1656452C19BD19 /* UMExportedModule.m in Sources */, + 60381091C068FE48F9EBA148B3BA87EB /* UMLogManager.m in Sources */, + F1086AC31E6327058D93DBD76D7092D3 /* UMModuleRegistry.m in Sources */, + A814BB64E789DDAB0D32AD81B3C25D8E /* UMModuleRegistryProvider.m in Sources */, + 242AC409EF5C360BE1628BECB99C3FE4 /* UMSingletonModule.m in Sources */, + 541896560751D57037A0FE59D6003062 /* UMUtilities.m in Sources */, + 327563F60D5D8E32FBBC70C12A61E2F4 /* UMViewManager.m in Sources */, ); runOnlyForDeploymentPostprocessing = 0; }; @@ -31336,4552 +31206,4122 @@ ); runOnlyForDeploymentPostprocessing = 0; }; - FE4389CCCC6664F2FF0795F8155778B3 /* Sources */ = { + FB6417B2D4120DABC642407804B8F7F6 /* Sources */ = { isa = PBXSourcesBuildPhase; buildActionMask = 2147483647; files = ( - 7FF2E7325B201D1B10F7F692F86F6A5E /* LongLivedObject.cpp in Sources */, - 511B3FAF54CD973EC918CF37E7F01C95 /* RCTTurboModule.mm in Sources */, - FA6D6A963577403FC707CABAF0AE9FB3 /* RCTTurboModuleManager.mm in Sources */, - B55D409363D06F48469D9A32530E329F /* ReactCommon-dummy.m in Sources */, - AF164A48C2D0FF88D9316CC0F3E8CA69 /* TurboCxxModule.cpp in Sources */, - 1655530CE8102BC2892CABC9A306D4BF /* TurboModule.cpp in Sources */, - 5DE06AF9D79E86D0AA2AD237B4F7E69B /* TurboModuleBinding.cpp in Sources */, - B86868C18467F17EA53E7F0160AB5252 /* TurboModulePerfLogger.cpp in Sources */, - EC4B34E3C4C20F841A8551C05428934C /* TurboModuleUtils.cpp in Sources */, + 14A8E57EC1C343395E78E4FA6FB1B60E /* FBLPromise+All.m in Sources */, + 0802363F1036E9E2EF6517AFA8E5969F /* FBLPromise+Always.m in Sources */, + DCCE5E235A01B4D7042648D6481A4E2C /* FBLPromise+Any.m in Sources */, + C2E2CD12EDD184BBA75DE2FFF37AA643 /* FBLPromise+Async.m in Sources */, + C8F9B1BA2DD98D4574C5AF9D526C7DC1 /* FBLPromise+Await.m in Sources */, + 29B28D1AF94EC5ED0DDA52B7CB7276BA /* FBLPromise+Catch.m in Sources */, + 3B269252249380E89F08507F91532631 /* FBLPromise+Delay.m in Sources */, + 34B0152827D5252EE5AC41A8D2A954A7 /* FBLPromise+Do.m in Sources */, + 89133507027493A55232F14D0FB7BE6B /* FBLPromise+Race.m in Sources */, + 936D5F514F92A90CC1BE7B0A593724D4 /* FBLPromise+Recover.m in Sources */, + 2D868806F89B22F94A2D3C9FE6474A1C /* FBLPromise+Reduce.m in Sources */, + 0F24194DB450B38B3C8399FC9AA75C56 /* FBLPromise+Retry.m in Sources */, + 6E61C518AE8F1CB984643D2DB604CD4F /* FBLPromise+Testing.m in Sources */, + 8D0885A10C465DC1BFB286FC04D82FCA /* FBLPromise+Then.m in Sources */, + 0021AA5B2981B4FD7ACFF842EDA230BF /* FBLPromise+Timeout.m in Sources */, + 1E8995DE09EC955395619144395F7AE0 /* FBLPromise+Validate.m in Sources */, + 3C12CA4424E2B0E1DA44115E6753B360 /* FBLPromise+Wrap.m in Sources */, + 62A513EB39D14B2144AC0566EEC15707 /* FBLPromise.m in Sources */, + 500D24619C979C372E284634F9763B80 /* FBLPromiseError.m in Sources */, + 8F03828CE74A40FE4FFE6D9B3CD33C81 /* PromisesObjC-dummy.m in Sources */, ); runOnlyForDeploymentPostprocessing = 0; }; /* End PBXSourcesBuildPhase section */ /* Begin PBXTargetDependency section */ - 00019FE95FDE57DF59DEF6CB6584B979 /* PBXTargetDependency */ = { + 003D965C76BC2EEAD13A169E345CDA25 /* PBXTargetDependency */ = { isa = PBXTargetDependency; name = UMReactNativeAdapter; target = 897EF6A99176326E24F51E2F2103828C /* UMReactNativeAdapter */; - targetProxy = 2E043B03F7C56F1B47630941C818189A /* PBXContainerItemProxy */; + targetProxy = A5956C2050B0EBAC03356C0C8E47AA66 /* PBXContainerItemProxy */; }; - 001AC04A479D814F4CCE8E3D34034BA8 /* PBXTargetDependency */ = { + 00C33680BA4CBA709B0943CA1292E906 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = FirebaseCrashlytics; - target = 526C4398D095B3704EB933DADBC30093 /* FirebaseCrashlytics */; - targetProxy = BD6662596737D1D7FBD97E6698FAB938 /* PBXContainerItemProxy */; + name = "React-RCTVibration"; + target = 53D121F9F9BB0F8AC1C94A12C5A8572F /* React-RCTVibration */; + targetProxy = C2D842DE9A5B7E9F84B76D7C82CE197F /* PBXContainerItemProxy */; }; - 01B2D8EBF420FD3A9D94FCC7E74FDE02 /* PBXTargetDependency */ = { + 015355B7A792490F6DE6FA0E18F97BFE /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = RNScreens; - target = 214E42634D1E187D876346D36184B655 /* RNScreens */; - targetProxy = 20FEB0430189FAF905E4F13BC24610BD /* PBXContainerItemProxy */; + name = RCTRequired; + target = E7E7CE52C8C68B17224FF8C262D80ABF /* RCTRequired */; + targetProxy = DA8D67FFBE5BF0DB432A286D5FBA6843 /* PBXContainerItemProxy */; }; - 01DBE5A23CC9D0BBC91B821776DF660E /* PBXTargetDependency */ = { + 015FCF9666A032458598F3CBDBD10FAB /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = UMImageLoaderInterface; - target = 97C4DE84FA3CC4EC06AA6D8C249949B7 /* UMImageLoaderInterface */; - targetProxy = 1F6DBAB87AF0707448787C118423C4C3 /* PBXContainerItemProxy */; + name = RNCMaskedView; + target = 1A0445474DA11CA659C4BCC5AB64B1BF /* RNCMaskedView */; + targetProxy = A8EE47AE5562B4C5088570454A145ADA /* PBXContainerItemProxy */; }; - 023DC1CB412C0D4BC1F4A95A16259056 /* PBXTargetDependency */ = { + 0168EBAFADAE71729DBF39EF31138044 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = "React-Core"; - target = 7ACAA9BE580DD31A5CB9D97C45D9492D /* React-Core */; - targetProxy = 1C5F4299A9113B26AD4B104725578625 /* PBXContainerItemProxy */; + name = "OpenSSL-Universal"; + target = B9ED5194E665042005069EF06C82A050 /* OpenSSL-Universal */; + targetProxy = C4064101D0172151A5C62305044CA0ED /* PBXContainerItemProxy */; }; - 025EB00F38CC6565652CD950D98BFF20 /* PBXTargetDependency */ = { + 019562B587B0037CC462463E56B4EA3C /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = React; - target = 1BEE828C124E6416179B904A9F66D794 /* React */; - targetProxy = 086E87C91D4ED3DA98CD13846B9898D0 /* PBXContainerItemProxy */; + name = ReactCommon; + target = B6D5DD49633DFF0657B8C3F08EB3ABA9 /* ReactCommon */; + targetProxy = 38F0CD40143DABEA93B32FABEB34CE16 /* PBXContainerItemProxy */; }; - 027EF64EA4E3408C7AEE8CFB19DE1380 /* PBXTargetDependency */ = { + 02153C9C3FF92FCD3005806E9649F393 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = RNReanimated; - target = FF879E718031128A75E7DE54046E6219 /* RNReanimated */; - targetProxy = 168B11CFDBE6976A8EBD240DE4217B39 /* PBXContainerItemProxy */; + name = JitsiMeetSDK; + target = 5B40FBDAD0AB75D17C4760F4054BFF71 /* JitsiMeetSDK */; + targetProxy = F3A53EE0624E76E22A877411646F7AF8 /* PBXContainerItemProxy */; }; - 034053B23106F483E5AA0A380D03DDF5 /* PBXTargetDependency */ = { + 0227C1A852C1B66E3ABA85BF9AFC1E51 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = RNFBAnalytics; - target = BDD119F8782FABE2707D3D913EC3EDE5 /* RNFBAnalytics */; - targetProxy = 9BB82D5F0A13DFA7ADA9991EA750EB13 /* PBXContainerItemProxy */; + name = "React-jsi"; + target = FA877ADC442CB19CF61793D234C8B131 /* React-jsi */; + targetProxy = DE3E255DAE50B317DE1B3AF20AA81845 /* PBXContainerItemProxy */; }; - 03427078A26C27E2AC59B1FEF2CC7342 /* PBXTargetDependency */ = { + 025A4E04E14883DFF79328CAA11928F0 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = "react-native-mmkv-storage"; - target = 74DAFD196634D10887C9A4E7BA19A5E4 /* react-native-mmkv-storage */; - targetProxy = 38C25A5474F690200CCDCEE668F0DC5E /* PBXContainerItemProxy */; + name = "react-native-simple-crypto"; + target = D985A509BFE270C95EDCBE6B4CBAF189 /* react-native-simple-crypto */; + targetProxy = BC37D19179170626CA6C0B71F5ADE803 /* PBXContainerItemProxy */; }; - 034E5C0209CBECFB809F8130768D9FD1 /* PBXTargetDependency */ = { + 026D32691B3A384CE2B927EBEE5F5917 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = Yoga; - target = 2B25F90D819B9ADF2AF2D8733A890333 /* Yoga */; - targetProxy = 1020B3830CC6A592D06984C8713BD7E3 /* PBXContainerItemProxy */; + name = "React-Core"; + target = 7ACAA9BE580DD31A5CB9D97C45D9492D /* React-Core */; + targetProxy = 7FD18A7C0F3744C57D46371E56CA225A /* PBXContainerItemProxy */; }; - 03865736D758155BB037B351B702B7E5 /* PBXTargetDependency */ = { + 02B660A6CCDA293508548B3BB58996E7 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = FirebaseCrashlytics; - target = 526C4398D095B3704EB933DADBC30093 /* FirebaseCrashlytics */; - targetProxy = 65460C545AE2E274A9E44193100D018E /* PBXContainerItemProxy */; + name = ReactCommon; + target = B6D5DD49633DFF0657B8C3F08EB3ABA9 /* ReactCommon */; + targetProxy = 5E9765BC93A1540EBB313B977277B643 /* PBXContainerItemProxy */; }; - 03D40E0662C808B82B9A8D4B9533A2F8 /* PBXTargetDependency */ = { + 02BC437E9E7B80131ABEB23DB455DC47 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = EXConstants; - target = 6C1893932A69822CBE3502F2E0BCFB6D /* EXConstants */; - targetProxy = E8759F381FE9663A90D5CCC8E56EEFB0 /* PBXContainerItemProxy */; + name = "React-jsi"; + target = FA877ADC442CB19CF61793D234C8B131 /* React-jsi */; + targetProxy = F3FB2829B1D765090C88870A72D151B8 /* PBXContainerItemProxy */; }; - 0400C1600E15C06C0D479951AB87F642 /* PBXTargetDependency */ = { + 030B4457FACCB0EB84AFD4322C24B36D /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = libevent; - target = 04A30E186743192DFB26B0FD7DB8F250 /* libevent */; - targetProxy = D674757C96B7F9BCB60628AAA036C599 /* PBXContainerItemProxy */; + name = "Flipper-Folly"; + target = B6D39E083AE0FF45BA30D7CDF6198A03 /* Flipper-Folly */; + targetProxy = 8A068493E1B3351134BC05483DA8EED5 /* PBXContainerItemProxy */; }; - 0471B3A8FAE2ACF2E44A3D51125EC0CA /* PBXTargetDependency */ = { + 04600BC094504AD8E29E92C38F29E820 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = "react-native-blur"; - target = EEBB8D24F2B3531A5C5DAA668D02331F /* react-native-blur */; - targetProxy = 725A1F3026F44A05B6A9306461E76D33 /* PBXContainerItemProxy */; + name = FirebaseCore; + target = 4402AFF83DBDC4DD07E198685FDC2DF2 /* FirebaseCore */; + targetProxy = 92C24FF56E0F8D4FAA90958D24746AFB /* PBXContainerItemProxy */; }; - 047B114CFAB96C8E9FC828083BD2FDD1 /* PBXTargetDependency */ = { + 04C22BB0AD40A046B8D61C9CD0D1CDAB /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = EXWebBrowser; - target = 9EB556EE511D43F3D5D7AAF51D8D0397 /* EXWebBrowser */; - targetProxy = B0B39F897961BE3E672FAAC32542C656 /* PBXContainerItemProxy */; + name = "React-Core"; + target = 7ACAA9BE580DD31A5CB9D97C45D9492D /* React-Core */; + targetProxy = 922B2C0E0D6CDC60DDBDEA46A978ABBF /* PBXContainerItemProxy */; + }; + 053E488E942FE4A59F8BC3820552DC7F /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = "React-Core"; + target = 7ACAA9BE580DD31A5CB9D97C45D9492D /* React-Core */; + targetProxy = 90A42D8F16A9678DBFC85F3D7F2A8848 /* PBXContainerItemProxy */; }; - 0654A81AA98E5A9FCA37E4E038B32185 /* PBXTargetDependency */ = { + 05C318CB4FAEACC07040E66B43FF47F2 /* PBXTargetDependency */ = { isa = PBXTargetDependency; name = "react-native-netinfo"; target = EC577C5CB1DC59A7464ECEF266A75B42 /* react-native-netinfo */; - targetProxy = D6AE14E3270041403147DE3CD24EF5B7 /* PBXContainerItemProxy */; + targetProxy = D507964E9A7F1C37AC9EAE747681562D /* PBXContainerItemProxy */; }; - 06D4285144A100292AFDCA1D58852D0B /* PBXTargetDependency */ = { + 05DFC68824B46988B0C58CC0CF0B57B4 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = RNGestureHandler; - target = B9E8F4CA2A4A8599389FEB665A9B96FF /* RNGestureHandler */; - targetProxy = 85E77B3B2FD9AB42A72382D093EF2012 /* PBXContainerItemProxy */; + name = "Flipper-PeerTalk"; + target = 718DB7D0A7E90B531AD577B3356C4161 /* Flipper-PeerTalk */; + targetProxy = 4518D351C464E97DC2E8F71780BA9C33 /* PBXContainerItemProxy */; }; - 06DFE146429667D97A66AD3ED6D41500 /* PBXTargetDependency */ = { + 063CB16DF86E72D96DDCF574F31BE7D6 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = "React-Core"; - target = 7ACAA9BE580DD31A5CB9D97C45D9492D /* React-Core */; - targetProxy = B1BBB5FBE315C4CBAA720D4D9B7D4BE4 /* PBXContainerItemProxy */; + name = "React-jsinspector"; + target = F7D033C4C128EECAA020990641FA985F /* React-jsinspector */; + targetProxy = 71990024C483F3A13FF98DCDEEF06B77 /* PBXContainerItemProxy */; }; - 0747FF41083DD1A99FADC6EE41CFEE04 /* PBXTargetDependency */ = { + 063F3F29F776A371F7F4849681BF4304 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = UMCore; - target = DBCB1B4965863DDD3B9DED9A0918A526 /* UMCore */; - targetProxy = C827AD2FB8CCE1B89783E12ACB1DE8A0 /* PBXContainerItemProxy */; + name = "Flipper-Folly"; + target = B6D39E083AE0FF45BA30D7CDF6198A03 /* Flipper-Folly */; + targetProxy = A58F5550C74831F093BD06E827E38188 /* PBXContainerItemProxy */; }; - 074E4A1E06D215325358F9491EBA62DD /* PBXTargetDependency */ = { + 065471FB7AF24DAE76996332A4D0AF6B /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = RNFBCrashlytics; - target = E3573FB7AF659C42B699003C73722241 /* RNFBCrashlytics */; - targetProxy = 3A02EBF72AE042615492C95FEAC16E64 /* PBXContainerItemProxy */; + name = nanopb; + target = D2B5E7DCCBBFB32341D857D01211A1A3 /* nanopb */; + targetProxy = B088D2AE452912760E4F81016A53B659 /* PBXContainerItemProxy */; }; - 076B002CA4C714DAA6E76238E0F3F324 /* PBXTargetDependency */ = { + 068A8259D0A80DB82EF398F2EBA929A2 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = EXPermissions; - target = 0A72FB88825FDC7D301C9DD1F8F96824 /* EXPermissions */; - targetProxy = 4BEEACD5957B461E0BB534D0797A3568 /* PBXContainerItemProxy */; + name = "React-perflogger"; + target = F1E2583679398CB5F4D2B3272E9B198F /* React-perflogger */; + targetProxy = 0BA953E7F9C501AE56C0089A4F0BCEBA /* PBXContainerItemProxy */; }; - 078460A4645A81AE39FAD23D3F825E5B /* PBXTargetDependency */ = { + 06D2AF652DE4A20FBFFC9A3A7F7CC594 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = nanopb; - target = D2B5E7DCCBBFB32341D857D01211A1A3 /* nanopb */; - targetProxy = CF24C0101B6F416BDA3559426B39B8F5 /* PBXContainerItemProxy */; + name = RNRootView; + target = 18B56DB36E1F066C927E49DBAE590128 /* RNRootView */; + targetProxy = 6B119046F5030FE128E486AFD6D804A7 /* PBXContainerItemProxy */; }; - 078D974DD97F50B9C6CCBB9918E83A0C /* PBXTargetDependency */ = { + 073F61D687BA694271F8AD0B3965B505 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = DoubleConversion; - target = 2AB2EF542954AB1C999E03BFEF8DE806 /* DoubleConversion */; - targetProxy = C6F1B2F28EC949A2F23775114B17020B /* PBXContainerItemProxy */; + name = RNReanimated; + target = FF879E718031128A75E7DE54046E6219 /* RNReanimated */; + targetProxy = E756F576EA95CA2BAD1444334C261EDD /* PBXContainerItemProxy */; }; - 07F77FE4B63A26D9A31915EDD4061117 /* PBXTargetDependency */ = { + 07AA2974C11C1A99E390091C30CCD99F /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = JitsiMeetSDK; - target = 5B40FBDAD0AB75D17C4760F4054BFF71 /* JitsiMeetSDK */; - targetProxy = E0C455F7664EDFB3A775D2F8DBFC362E /* PBXContainerItemProxy */; + name = "React-Core"; + target = 7ACAA9BE580DD31A5CB9D97C45D9492D /* React-Core */; + targetProxy = FE5B0EB0FA270EF8A3826FBF8D2C6A05 /* PBXContainerItemProxy */; }; - 0840800CD20106D00B2EBFA7708C8206 /* PBXTargetDependency */ = { + 07D7E29A446004512B4352D99B01FDC0 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = "Flipper-Glog"; - target = 6A9637F1BC8154F777335A6420579C05 /* Flipper-Glog */; - targetProxy = 43732F95FDB3D65845FEEBE2AB2FF164 /* PBXContainerItemProxy */; + name = UMConstantsInterface; + target = 9668C19AA6D8EA320F83875FA286855A /* UMConstantsInterface */; + targetProxy = 138CD1D613521449D3426413CCC9B7F1 /* PBXContainerItemProxy */; }; - 089071F102DA6BC109E6A2695ACE1C7A /* PBXTargetDependency */ = { + 08052F0EB22B7D8C2E525C8F5F339BD8 /* PBXTargetDependency */ = { isa = PBXTargetDependency; name = RNDeviceInfo; target = 807428FE76D80865C9F59F3502600E89 /* RNDeviceInfo */; - targetProxy = 3F973D3589686B607A4620DCC6AAD243 /* PBXContainerItemProxy */; + targetProxy = EEDC83C6592E169F40319A0B5BBD91B3 /* PBXContainerItemProxy */; }; - 08A1C64265C2F8101FBE98D0FE90E609 /* PBXTargetDependency */ = { + 0847A633D4949EC4D1B0223959862621 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = RNReanimated; - target = FF879E718031128A75E7DE54046E6219 /* RNReanimated */; - targetProxy = C348D58A74D11CAF02D67E09C473CDF6 /* PBXContainerItemProxy */; + name = EXWebBrowser; + target = 9EB556EE511D43F3D5D7AAF51D8D0397 /* EXWebBrowser */; + targetProxy = 11A674532FE89468097CE614F7C1BD12 /* PBXContainerItemProxy */; }; - 08B7AB3C00FAAC06D3E3D0591B84262C /* PBXTargetDependency */ = { + 09500CDFBD036AB87B7D7AFED8B7000F /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = "Flipper-Glog"; - target = 6A9637F1BC8154F777335A6420579C05 /* Flipper-Glog */; - targetProxy = 06790524A32AC7900DB6F9427BB698F9 /* PBXContainerItemProxy */; + name = "react-native-cookies"; + target = ADC4ACC657481AD27F9936D08FF7F49A /* react-native-cookies */; + targetProxy = 4CC3B2640237458FB91275DA5BA6A0C7 /* PBXContainerItemProxy */; }; - 08E46DFA0C77B11BC79425135D63F0DE /* PBXTargetDependency */ = { + 0963C99A8773AB297CF290A6E83CCF33 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = "React-RCTSettings"; - target = 680299219D3A48D42A648AF6706275A9 /* React-RCTSettings */; - targetProxy = 4043FF9D59414EFF826B78A1678C03D8 /* PBXContainerItemProxy */; + name = ReactCommon; + target = B6D5DD49633DFF0657B8C3F08EB3ABA9 /* ReactCommon */; + targetProxy = F64942EC98896879D2C643DB78A3DFB2 /* PBXContainerItemProxy */; }; - 0987DFED30CBA12D096400B5E00D080C /* PBXTargetDependency */ = { + 09EFE6B0A7ABFE5F1DFBBB614B1B345B /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = glog; - target = D0EFEFB685D97280256C559792236873 /* glog */; - targetProxy = 7C105FF79E70FF52707B9493BDE8052E /* PBXContainerItemProxy */; + name = FBReactNativeSpec; + target = C3496D0495E700CF08A90C41EA8FA4BB /* FBReactNativeSpec */; + targetProxy = 4431FD774BE1419E08A556CA9F265239 /* PBXContainerItemProxy */; }; - 099B02666A9FED3BE202D35B882EC3AC /* PBXTargetDependency */ = { + 0A2AA3864D769AD3605D0B457497E5AB /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = TOCropViewController; - target = F3966F664F3CFAEFAB57C40FB54D3788 /* TOCropViewController */; - targetProxy = 1456B2FA056DC965181C7F0C6E919AD5 /* PBXContainerItemProxy */; + name = UMFontInterface; + target = 014495932E402CA67C37681988047CA2 /* UMFontInterface */; + targetProxy = 00D3BFD3328FE1842176AB516E370852 /* PBXContainerItemProxy */; }; - 09CCCB7175E7A4F0C316DEEF6E85A36C /* PBXTargetDependency */ = { + 0A6D84DDA35BFB226AB0B16A4BE4D82E /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = "react-native-document-picker"; - target = D11E74324175FE5B0E78DB046527F233 /* react-native-document-picker */; - targetProxy = 52289941F379128439EE463F5DC76BB0 /* PBXContainerItemProxy */; + name = "React-RCTLinking"; + target = 6FE9147F8AAA4DE676C190F680F47AE2 /* React-RCTLinking */; + targetProxy = 2DC31E64F3AEFE2C7927FC09404A1E95 /* PBXContainerItemProxy */; }; - 0A144D868CDAC35BAF5644E1E78977DB /* PBXTargetDependency */ = { + 0AD4EBF3FE8F52012E4EE1F1D0A4A445 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = "react-native-netinfo"; - target = EC577C5CB1DC59A7464ECEF266A75B42 /* react-native-netinfo */; - targetProxy = 8AC6E94F646EDCA6BFE535009D91B8B0 /* PBXContainerItemProxy */; + name = FirebaseCore; + target = 4402AFF83DBDC4DD07E198685FDC2DF2 /* FirebaseCore */; + targetProxy = AB469151859154D6A901D38BA782D6B8 /* PBXContainerItemProxy */; }; - 0A1C848B756BA59CF4940A55BC43D1CD /* PBXTargetDependency */ = { + 0B0A34721D842E0FBF4E670733A241DC /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = "React-callinvoker"; - target = 2681CB7EF647E61F4F9A43029C235607 /* React-callinvoker */; - targetProxy = BE69082F9B4A1B279B7D2DEAE1FA4F65 /* PBXContainerItemProxy */; + name = Firebase; + target = 072CEA044D2EF26F03496D5996BBF59F /* Firebase */; + targetProxy = 2840E8CCF57CD1301EBCEA3BA0DB9EE4 /* PBXContainerItemProxy */; }; - 0A71813E42742064C2A6E1B6A8DFA217 /* PBXTargetDependency */ = { + 0B1BE8D6AD5EAEF57302BE5B721C1EC0 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = "react-native-restart"; - target = 3ED96FB9FE1D18D5F1239C60A109F98C /* react-native-restart */; - targetProxy = 6DBC5E3B31BEC0C90A96EB5A2275E508 /* PBXContainerItemProxy */; + name = DoubleConversion; + target = 2AB2EF542954AB1C999E03BFEF8DE806 /* DoubleConversion */; + targetProxy = D54F5C40D971BFED926EA5B735A0DBA4 /* PBXContainerItemProxy */; }; - 0AB4CD5F31E18682F781F04D8EA109EA /* PBXTargetDependency */ = { + 0C5534C50F2C4A67C15DB8F6C9BC4C9E /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = GoogleDataTransport; - target = 5C0371EE948D0357B8EE0E34ABB44BF0 /* GoogleDataTransport */; - targetProxy = 2CC27349C1D603B639EC75CAA13C4BF9 /* PBXContainerItemProxy */; + name = "react-native-cameraroll"; + target = BA3F5E5AA483B263B69601DE2FA269CB /* react-native-cameraroll */; + targetProxy = 31F511CABE1B614BCAD950E1AA62D00A /* PBXContainerItemProxy */; }; - 0AD8247BBC433D6F5FB85D1294D42584 /* PBXTargetDependency */ = { + 0C57E4F45BA13BD6AF2A272000045D93 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = "React-Core"; - target = 7ACAA9BE580DD31A5CB9D97C45D9492D /* React-Core */; - targetProxy = 4607BC8B7AC1B35B433546A0CA15F20C /* PBXContainerItemProxy */; + name = "react-native-background-timer"; + target = 6514D69CB93B41626AE1A05581F97B07 /* react-native-background-timer */; + targetProxy = 2D4A29BF4B993D6C1538C47202D7C10B /* PBXContainerItemProxy */; }; - 0AF313A6EC833C599932A15C6DFCD05D /* PBXTargetDependency */ = { + 0C682DF65EA46B78FB15ACC0BCBC6114 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = "React-Core"; - target = 7ACAA9BE580DD31A5CB9D97C45D9492D /* React-Core */; - targetProxy = 783E240EE084DDA5A78595BE3B9BF749 /* PBXContainerItemProxy */; + name = "React-jsi"; + target = FA877ADC442CB19CF61793D234C8B131 /* React-jsi */; + targetProxy = D50A0FB45D117E604BB11D24E6DBCCA2 /* PBXContainerItemProxy */; }; - 0B1B7338467B7AA28DD0F843A7F1CEA1 /* PBXTargetDependency */ = { + 0C8DD3A93F5F76D025BF358368C0BF49 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = UMFileSystemInterface; - target = 2644525CCE081E967809A8163D893A93 /* UMFileSystemInterface */; - targetProxy = 9E605D07C9A2C9D2C4BCC6B884AD7049 /* PBXContainerItemProxy */; + name = FirebaseInstallations; + target = 87803597EB3F20FC46472B85392EC4FD /* FirebaseInstallations */; + targetProxy = ABDEE8127DC24E94A0AC972783D2A232 /* PBXContainerItemProxy */; }; - 0BDAD72133359C849228AA6F500B4F8C /* PBXTargetDependency */ = { + 0CDCA0F585054493EAB1F5EE4055ADFD /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = RCTTypeSafety; - target = D20469A9A1E5CFB26045EAEBE3F88E5E /* RCTTypeSafety */; - targetProxy = 2F4879A05BFC5094890FA24FCEAE9D80 /* PBXContainerItemProxy */; + name = RNVectorIcons; + target = 96150F524B245896B800F84F369A9A5A /* RNVectorIcons */; + targetProxy = 40F5B6A121B5C1DB24E54E758228C4CD /* PBXContainerItemProxy */; }; - 0C2FC8A83B1D6592072350041DED315C /* PBXTargetDependency */ = { + 0D08F427D403E4086C2EABCF1ED1F31E /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = "React-jsinspector"; - target = F7D033C4C128EECAA020990641FA985F /* React-jsinspector */; - targetProxy = D8ECF522EA7CA09351AF3546743A2192 /* PBXContainerItemProxy */; + name = "React-RCTImage"; + target = 4F265533AAB7C8985856EC78A33164BB /* React-RCTImage */; + targetProxy = 808031A8F4BFFED56B193B72B2B3FE93 /* PBXContainerItemProxy */; }; - 0C5A32F38B6CE8A97EB60D21AE865E1C /* PBXTargetDependency */ = { + 0D2750490737A5118361A5CA7C32ED1F /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = "React-Core"; - target = 7ACAA9BE580DD31A5CB9D97C45D9492D /* React-Core */; - targetProxy = 618D168BEAACFA3B5A1C875C806E8E78 /* PBXContainerItemProxy */; + name = "react-native-mmkv-storage"; + target = 74DAFD196634D10887C9A4E7BA19A5E4 /* react-native-mmkv-storage */; + targetProxy = 76B36D2CDA33CB90223240B6DA74EFEB /* PBXContainerItemProxy */; }; - 0C75F8C2233483178861D5E567712207 /* PBXTargetDependency */ = { + 0D4CEC8D176B024C35D2D449F72F9FC7 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = RNReanimated; - target = FF879E718031128A75E7DE54046E6219 /* RNReanimated */; - targetProxy = 157C2718AC4A63F53D782B80DDE02152 /* PBXContainerItemProxy */; + name = ReactCommon; + target = B6D5DD49633DFF0657B8C3F08EB3ABA9 /* ReactCommon */; + targetProxy = 5FEE9D2F2FE4EA9F19B546421C68C97A /* PBXContainerItemProxy */; }; - 0D160D84F558E5F16EACA16E408D9300 /* PBXTargetDependency */ = { + 0D5AB5C231DE1DFC943B539207D4C5CD /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = FirebaseCore; - target = 4402AFF83DBDC4DD07E198685FDC2DF2 /* FirebaseCore */; - targetProxy = 616D3AA11D13A7910CA749A077049EEA /* PBXContainerItemProxy */; + name = "React-Core-AccessibilityResources"; + target = 7A020DAB6F3F0BA0A6D9946E84B38B7F /* React-Core-AccessibilityResources */; + targetProxy = E3FCB4BC7846DD1C3BD2DCDEEF6B48EA /* PBXContainerItemProxy */; }; - 0DF0EFEA719F6A4CE1333BF522CB2E90 /* PBXTargetDependency */ = { + 0E6342513CFE10C86E5A9F6803959B81 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = ReactNativeUiLib; - target = 037A1F31C4D99F52EC9FD2008FEC481C /* ReactNativeUiLib */; - targetProxy = BD3DA643E5D4F3629E2F4B94C781071F /* PBXContainerItemProxy */; + name = UMCore; + target = DBCB1B4965863DDD3B9DED9A0918A526 /* UMCore */; + targetProxy = D8A3AA17EB52926C7E22810A934C0381 /* PBXContainerItemProxy */; }; - 0E84FC5A2452B62BD312D050C773CFA2 /* PBXTargetDependency */ = { + 0EB4BEBDB3BB50632CDE55F967D49075 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = ReactCommon; - target = B6D5DD49633DFF0657B8C3F08EB3ABA9 /* ReactCommon */; - targetProxy = B1A01090BFC8E02594DF59131BF2F520 /* PBXContainerItemProxy */; + name = "react-native-slider"; + target = A4EF87F5681665EAE943D9B06BBB17DF /* react-native-slider */; + targetProxy = 5C65FC395BF4FBF543DF7EE76A5DD36D /* PBXContainerItemProxy */; }; - 0EEF2A11C0F42FCFA9735015F5688E81 /* PBXTargetDependency */ = { + 0EBC592CCC6E6D46CD2230500F3091FD /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = "React-RCTImage"; - target = 4F265533AAB7C8985856EC78A33164BB /* React-RCTImage */; - targetProxy = 9DEF6F3863BFB69F2C14433AC1F743AE /* PBXContainerItemProxy */; + name = "React-jsi"; + target = FA877ADC442CB19CF61793D234C8B131 /* React-jsi */; + targetProxy = 7CA0EE469D1C72D92CE9E7642E817236 /* PBXContainerItemProxy */; }; - 0EF8F91F8248B9EE6B7CFE0746816F4A /* PBXTargetDependency */ = { + 0ED915B2FE7534F3883F60DBF41E6C84 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = "React-Core"; - target = 7ACAA9BE580DD31A5CB9D97C45D9492D /* React-Core */; - targetProxy = 450A74806A894097E56E53C467C6071E /* PBXContainerItemProxy */; + name = RNFastImage; + target = 0BB7745637E0758DEA373456197090C6 /* RNFastImage */; + targetProxy = 1506301F87DBA330F0AB8B5EFEDF47BC /* PBXContainerItemProxy */; }; - 0F04FD60D463AA752DFCFE7B21066474 /* PBXTargetDependency */ = { + 0F8BD2574BD27AF7386380B90BB2EE2F /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = FirebaseCrashlytics; - target = 526C4398D095B3704EB933DADBC30093 /* FirebaseCrashlytics */; - targetProxy = CFC2D37D41A779989227A626200ABF9E /* PBXContainerItemProxy */; + name = UMFaceDetectorInterface; + target = 2AD4F40E67E1874A0816F6B34289EB41 /* UMFaceDetectorInterface */; + targetProxy = 14CE44474BF93773C95558FD232B1405 /* PBXContainerItemProxy */; }; - 102EB782CFEE7891EE38DD374F8F4EF0 /* PBXTargetDependency */ = { + 0FC5443234E252A49FB4E990AA7E92FB /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = UMImageLoaderInterface; - target = 97C4DE84FA3CC4EC06AA6D8C249949B7 /* UMImageLoaderInterface */; - targetProxy = 7329F52023168D19C86DE1935125A18C /* PBXContainerItemProxy */; + name = UMAppLoader; + target = C452F579644C83E8D8E36EC24A9BBD46 /* UMAppLoader */; + targetProxy = 2A39375D4FE96D22D7A1402B8A238D91 /* PBXContainerItemProxy */; }; - 10C3E41DD5D1E65AE1D108DC9A22B515 /* PBXTargetDependency */ = { + 1061EC09455A3FDD65E4DD0B0497FF02 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = DoubleConversion; - target = 2AB2EF542954AB1C999E03BFEF8DE806 /* DoubleConversion */; - targetProxy = 3FB19AAC9883D1DF028837AD838AFD66 /* PBXContainerItemProxy */; + name = "hermes-engine"; + target = 985FEA01F314F3C00F0C1E1181E6C4A5 /* hermes-engine */; + targetProxy = A681AEEC44B4718EC50183F3AD8C6D8C /* PBXContainerItemProxy */; }; - 119FDFB4BE7D18B2381E3245FE29726D /* PBXTargetDependency */ = { + 1085C6C35C4DBD10D437D42BC2DD9970 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = MMKVCore; - target = AC8AE887C706A43711D115E69B9D988A /* MMKVCore */; - targetProxy = 86376CA1273408D151342DF5A9B674D9 /* PBXContainerItemProxy */; + name = UMPermissionsInterface; + target = F7845084F0CF03F54107EEF7411760AD /* UMPermissionsInterface */; + targetProxy = 784FEA4C6429472E0E6348B128C9243A /* PBXContainerItemProxy */; }; - 11A58981D85B7E911875AD1BC1BF46A1 /* PBXTargetDependency */ = { + 10CFAECD9A775EB2DB340D27356E26EB /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = "React-jsi"; - target = FA877ADC442CB19CF61793D234C8B131 /* React-jsi */; - targetProxy = E4ACA2EB08ECAB1655407129AC4B3A23 /* PBXContainerItemProxy */; + name = nanopb; + target = D2B5E7DCCBBFB32341D857D01211A1A3 /* nanopb */; + targetProxy = 96D7329B6E83A50E333009DC0B1AB7BB /* PBXContainerItemProxy */; }; - 1222D4127271B30975E49C7FD3C23E40 /* PBXTargetDependency */ = { + 110C9963513AB534593213E334A079CD /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = EXAppleAuthentication; - target = 28A005E00FB77DDB2543047A07ED99A5 /* EXAppleAuthentication */; - targetProxy = 2AA39714F678F715EBDCBA967B312027 /* PBXContainerItemProxy */; + name = YogaKit; + target = 32CA4CBD6B28983076BD93DA221AD027 /* YogaKit */; + targetProxy = FF521D079D2007D80602100B5115C0A2 /* PBXContainerItemProxy */; }; - 1237FD14F171360C8F734498BF3795BF /* PBXTargetDependency */ = { + 1147DD07007E0644B91795215956B445 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = DoubleConversion; - target = 2AB2EF542954AB1C999E03BFEF8DE806 /* DoubleConversion */; - targetProxy = 763F029EEA3593626EB912D4DB52FFEB /* PBXContainerItemProxy */; + name = "React-perflogger"; + target = F1E2583679398CB5F4D2B3272E9B198F /* React-perflogger */; + targetProxy = A54357A6428A3F8BCE0C389272D48858 /* PBXContainerItemProxy */; }; - 126200BB0A7DB902A5E4583D7FA1C8AF /* PBXTargetDependency */ = { + 11A1481965B02EFF9D157CC6F2375921 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = RNFBApp; - target = 90D0DE2F3348233618414728C35311CA /* RNFBApp */; - targetProxy = 527143A654B69B7A706F5D0CF42BFF14 /* PBXContainerItemProxy */; + name = UMReactNativeAdapter; + target = 897EF6A99176326E24F51E2F2103828C /* UMReactNativeAdapter */; + targetProxy = EF7154372FF18B122F5171BA9079EF79 /* PBXContainerItemProxy */; }; - 1279A41EC69B47E4A1E369C0DC83813D /* PBXTargetDependency */ = { + 12225DBE2492CA8745954600F904746E /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = "React-RCTImage"; - target = 4F265533AAB7C8985856EC78A33164BB /* React-RCTImage */; - targetProxy = 89B28730D4FA80B4DB5CE7D2E7EF54E0 /* PBXContainerItemProxy */; + name = "react-native-restart"; + target = 3ED96FB9FE1D18D5F1239C60A109F98C /* react-native-restart */; + targetProxy = 6F955792A63ADE1735A7484366A6EA92 /* PBXContainerItemProxy */; }; - 129652D306D189128AF6BC637F73E631 /* PBXTargetDependency */ = { + 1299EDC7813B4B8F8DCE15DEEA31519C /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = "React-RCTNetwork"; - target = 651511D7DA7F07F9FC9AA40A2E86270D /* React-RCTNetwork */; - targetProxy = 0D0AE483C6A7D26E60A3E5836F3E9935 /* PBXContainerItemProxy */; + name = libwebp; + target = 47D2E85A78C25869BB13521D8561A638 /* libwebp */; + targetProxy = 6CBE731A42C259C7DB78D903BB270F8A /* PBXContainerItemProxy */; }; - 1317CE4B1006CB56E7934B0214C8EC66 /* PBXTargetDependency */ = { + 12A8BE5399377A1632E2BA7375BDDF4D /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = "React-RCTVibration"; - target = 53D121F9F9BB0F8AC1C94A12C5A8572F /* React-RCTVibration */; - targetProxy = 9799B7A56B0DFBD51B4C6598AAB2A8F5 /* PBXContainerItemProxy */; + name = RNImageCropPicker; + target = 0D82774D2A533D3FFAE27CAB4A6E9CB2 /* RNImageCropPicker */; + targetProxy = 2232B017E81709268EF63B0EFEF354EC /* PBXContainerItemProxy */; }; - 13247A46AA92E6A3D3F5A744F4D58B24 /* PBXTargetDependency */ = { + 12CCE9581CB423B1B9D2980BD6F6B1C0 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = SDWebImage; - target = 3847153A6E5EEFB86565BA840768F429 /* SDWebImage */; - targetProxy = 8ABA38D0FA17CAE94D1D5914C9E7E0C7 /* PBXContainerItemProxy */; + name = "react-native-mmkv-storage"; + target = 74DAFD196634D10887C9A4E7BA19A5E4 /* react-native-mmkv-storage */; + targetProxy = A0E6399BB5D521E8511DEDB5A22EC847 /* PBXContainerItemProxy */; }; - 13646960B12AAD847DBAFADF0A468D3C /* PBXTargetDependency */ = { + 13617BEE86B3CB4FA2B5347F2022BB02 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = React; - target = 1BEE828C124E6416179B904A9F66D794 /* React */; - targetProxy = 5B3D2BBD2FB85E098BAD2132F8F32286 /* PBXContainerItemProxy */; + name = RNConfigReader; + target = DC0D417AC8ABB7AA10C20A5E0F065812 /* RNConfigReader */; + targetProxy = E18447A6C624258A1CE7115D618762F6 /* PBXContainerItemProxy */; }; - 13EA5B35CB99F76C19BC4047443FD281 /* PBXTargetDependency */ = { + 13C8F8ED9F5E9DDBEF8C5BBCC997FEEE /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = UMCameraInterface; - target = 0A915EE9D35CA5636731F8763E774951 /* UMCameraInterface */; - targetProxy = 9776232542587D622E87B2CFCE21AB2B /* PBXContainerItemProxy */; + name = "rn-fetch-blob"; + target = 64F427905796B33B78A704063422979D /* rn-fetch-blob */; + targetProxy = C57C762980834C7492B28BCF9C65860B /* PBXContainerItemProxy */; }; - 14A6CC6C8BCD2260E0E95AD40F7ED787 /* PBXTargetDependency */ = { + 13CCA2A18C71EF77E6B203EDA8379EA0 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = "React-RCTLinking"; - target = 6FE9147F8AAA4DE676C190F680F47AE2 /* React-RCTLinking */; - targetProxy = 75B6C953C09AA70B51B016BEC1330C3D /* PBXContainerItemProxy */; + name = ReactCommon; + target = B6D5DD49633DFF0657B8C3F08EB3ABA9 /* ReactCommon */; + targetProxy = 2923E9D3310F2B9901BD38070F31E4AA /* PBXContainerItemProxy */; }; - 151F44BDFC518BBE6E894E2E9750A082 /* PBXTargetDependency */ = { + 140375B06FC5F9A76C5E9ABB4FE04344 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = FirebaseCore; - target = 4402AFF83DBDC4DD07E198685FDC2DF2 /* FirebaseCore */; - targetProxy = E9BD6DE24A25F7E905E7360E496B512D /* PBXContainerItemProxy */; + name = FBLazyVector; + target = 8CC4EAA817AA86310D1900F1DAB3580F /* FBLazyVector */; + targetProxy = DEDB8BC1594742281F759422B7894B8E /* PBXContainerItemProxy */; }; - 1545CE8EB74387101CD4C2498D660E74 /* PBXTargetDependency */ = { + 140A350AC032507B9217390A43CEA5F9 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = "React-jsiexecutor"; - target = DA0709CAAD589C6E7963495210438021 /* React-jsiexecutor */; - targetProxy = A812C9CC80E8B2DEA4F935D6DCCD865A /* PBXContainerItemProxy */; + name = FirebaseCrashlytics; + target = 526C4398D095B3704EB933DADBC30093 /* FirebaseCrashlytics */; + targetProxy = 1EAFFFD4482BD28ACFDFCC4122F9558C /* PBXContainerItemProxy */; }; - 163AA5542D65AAA9BB944EE197510840 /* PBXTargetDependency */ = { + 144E4C35617729A86CD4FF44B166E734 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = RNImageCropPicker; - target = 0D82774D2A533D3FFAE27CAB4A6E9CB2 /* RNImageCropPicker */; - targetProxy = 3B9B24730AAD3DAC01ACFB01865543A9 /* PBXContainerItemProxy */; + name = Firebase; + target = 072CEA044D2EF26F03496D5996BBF59F /* Firebase */; + targetProxy = 8A6D1939DF8235A6B5F1100315B76031 /* PBXContainerItemProxy */; }; - 16596F20E08FD754A3E7562A786D03A8 /* PBXTargetDependency */ = { + 148D553210B70F9AB48A6537521EB1D0 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = "react-native-cookies"; - target = ADC4ACC657481AD27F9936D08FF7F49A /* react-native-cookies */; - targetProxy = EF7B80107AAAA15EFBDA53EC3C870668 /* PBXContainerItemProxy */; + name = RNRootView; + target = 18B56DB36E1F066C927E49DBAE590128 /* RNRootView */; + targetProxy = 99918366C586FBC6ED35DCFCC3940AD7 /* PBXContainerItemProxy */; }; - 172A72C506F04FE3CDE6F0087DC1D067 /* PBXTargetDependency */ = { + 14ABE0B0FABE382EBB16A92289A537EB /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = UMBarCodeScannerInterface; - target = 49821C2B9E764AEDF2B35DFE9AA7022F /* UMBarCodeScannerInterface */; - targetProxy = A5A81A1DD73D834714EA4B337BDFA227 /* PBXContainerItemProxy */; + name = RNScreens; + target = 214E42634D1E187D876346D36184B655 /* RNScreens */; + targetProxy = CC2D9CA4E89E3E20095197AFC8B10CFF /* PBXContainerItemProxy */; }; - 178002977A789D07FFD4D43F25338040 /* PBXTargetDependency */ = { + 14ADCBF0A92340515CA2BD6E001C2D81 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = UMCore; - target = DBCB1B4965863DDD3B9DED9A0918A526 /* UMCore */; - targetProxy = ADF92BD3CB4D4109A6D3DF81BB76C847 /* PBXContainerItemProxy */; + name = "Flipper-RSocket"; + target = 1FAAE067C1BFDEA17DFB657C3379AB56 /* Flipper-RSocket */; + targetProxy = 17BAF1EC72840DA553C23C9C54868149 /* PBXContainerItemProxy */; }; - 178052B121D110B2DEDE0AC43ABC6A9E /* PBXTargetDependency */ = { + 14E304E88DF47C3E6BA8ADD7A1F76B82 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = RNFBApp; - target = 90D0DE2F3348233618414728C35311CA /* RNFBApp */; - targetProxy = C0671F3227F7D404A8AF0853E8078CB0 /* PBXContainerItemProxy */; + name = "React-RCTText"; + target = DBD2D83E10F8B7D3F4E0E34E6A9FCFA6 /* React-RCTText */; + targetProxy = 66E603097218B6B92F872B747460E2E1 /* PBXContainerItemProxy */; }; - 178A4402A1BF0155CE79E7E874FB4F23 /* PBXTargetDependency */ = { + 1557758883DD71042805D8B78D8B0513 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = "React-Core"; - target = 7ACAA9BE580DD31A5CB9D97C45D9492D /* React-Core */; - targetProxy = CEEF311050BECDB18E83AEEF9651A0EF /* PBXContainerItemProxy */; + name = RNDateTimePicker; + target = D760AF58E12ABBB51F84160FB02B5F39 /* RNDateTimePicker */; + targetProxy = 5E7E8A6F71E73C552BA02564AC7A495C /* PBXContainerItemProxy */; }; - 17AAA8CD778A23D4083A60EBD8BA53F4 /* PBXTargetDependency */ = { + 157F47C3A19482E362E01C0330A205B1 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = UMCore; - target = DBCB1B4965863DDD3B9DED9A0918A526 /* UMCore */; - targetProxy = D4912FE6B05B3B1F98C16E90D81FA9DC /* PBXContainerItemProxy */; + name = EXKeepAwake; + target = 0CF4D9052577C85B6B8C4E957332626B /* EXKeepAwake */; + targetProxy = 56A1F73A7F7598CF92FC0A468808AEF2 /* PBXContainerItemProxy */; }; - 17ACD7CA5C5454197BEF004B20B06C45 /* PBXTargetDependency */ = { + 1729BEF4A13BAC4AF6481B42E5A438A4 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = "React-Core"; - target = 7ACAA9BE580DD31A5CB9D97C45D9492D /* React-Core */; - targetProxy = F0A7CF52332BAD6902942DD81A2E0DBC /* PBXContainerItemProxy */; + name = "react-native-background-timer"; + target = 6514D69CB93B41626AE1A05581F97B07 /* react-native-background-timer */; + targetProxy = 0F2C97D68C9ABFE734817B6075E1FF1A /* PBXContainerItemProxy */; }; - 18126A8AB9C541342708A01E796EE315 /* PBXTargetDependency */ = { + 1785545DDB48F454366162FF54D9EE2D /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = ReactNativeUiLib; - target = 037A1F31C4D99F52EC9FD2008FEC481C /* ReactNativeUiLib */; - targetProxy = 5F7D10701E8B65E8D112EC495E5F38AA /* PBXContainerItemProxy */; + name = "React-RCTVibration"; + target = 53D121F9F9BB0F8AC1C94A12C5A8572F /* React-RCTVibration */; + targetProxy = 99389C27AF2E2D928AF232E1484A97BA /* PBXContainerItemProxy */; }; - 1A342871FB2256F901112C9BC461BF93 /* PBXTargetDependency */ = { + 182D80915C248C4581562B3B3495CBED /* PBXTargetDependency */ = { isa = PBXTargetDependency; name = "React-callinvoker"; target = 2681CB7EF647E61F4F9A43029C235607 /* React-callinvoker */; - targetProxy = 518BF2582DADD066C3644BAEEF4BA136 /* PBXContainerItemProxy */; + targetProxy = B578B75A7D970FF496E4476A5FDA4026 /* PBXContainerItemProxy */; }; - 1A82BC42D58BC88EEF8A286565649720 /* PBXTargetDependency */ = { + 19D7747E48CF2B7AC31A8BADBBB5B0BC /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = UMSensorsInterface; - target = 2038C6F97563AAD6162C284B3EDD5B3B /* UMSensorsInterface */; - targetProxy = 58A8053A3AF1DB1BEF477C23CC12B29E /* PBXContainerItemProxy */; + name = "React-perflogger"; + target = F1E2583679398CB5F4D2B3272E9B198F /* React-perflogger */; + targetProxy = 2BE9087B119C80EE54FC64F7A8BB0B00 /* PBXContainerItemProxy */; }; - 1AFF613E47D143D42406774C30AFE976 /* PBXTargetDependency */ = { + 1A842A0A9675FF795D5C030B11D57C41 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = "React-runtimeexecutor"; - target = 54EB12219122432FA744088BC5A680D2 /* React-runtimeexecutor */; - targetProxy = 465B48563448B30560ED5332D0F15C5C /* PBXContainerItemProxy */; + name = "boost-for-react-native"; + target = ED2506AE7DE35D654F61254441EA7155 /* boost-for-react-native */; + targetProxy = D6EED7DC19DEAD17DEAA0B3D79FDD113 /* PBXContainerItemProxy */; }; - 1B0CEB4B460BC0DB66DF4D7816E79262 /* PBXTargetDependency */ = { + 1B3F93C62A7E0EE8423CBF42D716D241 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = "OpenSSL-Universal"; - target = B9ED5194E665042005069EF06C82A050 /* OpenSSL-Universal */; - targetProxy = DA00115FE032C1EDBCFDC1EC11B8336F /* PBXContainerItemProxy */; + name = "React-RCTAnimation"; + target = 938CCE22F6C4094B3FB6CF1478579E4B /* React-RCTAnimation */; + targetProxy = 11C5E7D270081BB187FD60A01879EF15 /* PBXContainerItemProxy */; }; - 1BADF9684F2EB5A35C1E79D5F97C543C /* PBXTargetDependency */ = { + 1B4A104F9DE8F14E73C061EAD7273284 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = "React-RCTImage"; - target = 4F265533AAB7C8985856EC78A33164BB /* React-RCTImage */; - targetProxy = A833FF4F8A7EE4E5F34065CBC2119ED3 /* PBXContainerItemProxy */; + name = UMCore; + target = DBCB1B4965863DDD3B9DED9A0918A526 /* UMCore */; + targetProxy = C8A3F309924E6F6F52A73CFFE3C2A77D /* PBXContainerItemProxy */; }; - 1BCA757D0AA08E35912F102956D96688 /* PBXTargetDependency */ = { + 1BAAD919EEC8C2147440A5FF5EAD07B3 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = FBLazyVector; - target = 8CC4EAA817AA86310D1900F1DAB3580F /* FBLazyVector */; - targetProxy = D3D53A7E39E98AE31E9A715792969B28 /* PBXContainerItemProxy */; + name = "React-jsi"; + target = FA877ADC442CB19CF61793D234C8B131 /* React-jsi */; + targetProxy = A2E0347D9230AD9CA4554F3F1D0255FA /* PBXContainerItemProxy */; + }; + 1D669392C327C71EFD2A7EBD7A1B8C25 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = "React-RCTBlob"; + target = 95D98F901D07557EF7CA38D3F03832C5 /* React-RCTBlob */; + targetProxy = 36B026D61F0A15C2EA4B64A111E71B0B /* PBXContainerItemProxy */; }; - 1C0DF950D3CE1F50BEC4222EA2C285AC /* PBXTargetDependency */ = { + 1EBAE91F75F208CA7D23DCE5F02883CA /* PBXTargetDependency */ = { isa = PBXTargetDependency; name = UMCore; target = DBCB1B4965863DDD3B9DED9A0918A526 /* UMCore */; - targetProxy = E309B8A570AA76FCEFC1D38DB167CA95 /* PBXContainerItemProxy */; + targetProxy = 7237B8AA0971540695CB9261448E3028 /* PBXContainerItemProxy */; }; - 1C7FEF4B4C014B9CF974F44BDC559731 /* PBXTargetDependency */ = { + 2035793A995DA76DBA7305E00E725494 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = "RCT-Folly"; - target = EC55D52694092A9D0E6A78EB01207EB5 /* RCT-Folly */; - targetProxy = B99F0B1EEE09E9ECB29263020538386D /* PBXContainerItemProxy */; + name = "React-Core"; + target = 7ACAA9BE580DD31A5CB9D97C45D9492D /* React-Core */; + targetProxy = 0EC8E856CBD2B403CAE289323A13A438 /* PBXContainerItemProxy */; }; - 1C8F3BE779D977F5810313440428BF73 /* PBXTargetDependency */ = { + 203E05F7EB374E60F2F78AEC482ACCE8 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = libevent; - target = 04A30E186743192DFB26B0FD7DB8F250 /* libevent */; - targetProxy = B640C2A6E7E36B8A64EC9162BA4BD969 /* PBXContainerItemProxy */; + name = "Flipper-Folly"; + target = B6D39E083AE0FF45BA30D7CDF6198A03 /* Flipper-Folly */; + targetProxy = CC52089AA58C6D4FBC4EA744E0124035 /* PBXContainerItemProxy */; }; - 1CAFB183EA9A7371EA71469687B68DEC /* PBXTargetDependency */ = { + 21AC42BA6D004097ADFC070E7D427503 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = "react-native-netinfo"; - target = EC577C5CB1DC59A7464ECEF266A75B42 /* react-native-netinfo */; - targetProxy = 326B9FFA568BA9B2B9A96F439CF7FBC1 /* PBXContainerItemProxy */; + name = EXPermissions; + target = 0A72FB88825FDC7D301C9DD1F8F96824 /* EXPermissions */; + targetProxy = 327F2E0955017D983C2E3F22DE1B1D32 /* PBXContainerItemProxy */; }; - 1CD3A11F4AAE64D05E1094AA22888A38 /* PBXTargetDependency */ = { + 21DA7043230FE9E0DC8F1F355C00C6C0 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = Yoga; - target = 2B25F90D819B9ADF2AF2D8733A890333 /* Yoga */; - targetProxy = 604A57080D43C4AFF098925033AA96B3 /* PBXContainerItemProxy */; + name = RNFBAnalytics; + target = BDD119F8782FABE2707D3D913EC3EDE5 /* RNFBAnalytics */; + targetProxy = B9DD3EFFB0525E48AABFC2F7B9D3723D /* PBXContainerItemProxy */; }; - 1D4F454A04BD32AEEBC9C1DAD90D7D03 /* PBXTargetDependency */ = { + 21ECAAEF6151D807E1B61A3056E17BC7 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = "react-native-mmkv-storage"; - target = 74DAFD196634D10887C9A4E7BA19A5E4 /* react-native-mmkv-storage */; - targetProxy = 5274FC48A786B0786D5038F983F462D6 /* PBXContainerItemProxy */; + name = SDWebImage; + target = 3847153A6E5EEFB86565BA840768F429 /* SDWebImage */; + targetProxy = 2A6A19C837F54F3C3ABF3358982A5683 /* PBXContainerItemProxy */; }; - 1DA2CFEB1E06DAD9EE002CD691CA6573 /* PBXTargetDependency */ = { + 21FC7ABABD9411035FBAC45EAFAC4CAF /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = "react-native-safe-area-context"; - target = BD9A27D8398DEB3205D3F8937B0672A0 /* react-native-safe-area-context */; - targetProxy = 9ED67E572C11D37057C24876E9B19D0F /* PBXContainerItemProxy */; + name = RNConfigReader; + target = DC0D417AC8ABB7AA10C20A5E0F065812 /* RNConfigReader */; + targetProxy = B7B10FBE42B60D540974F2B9F7C9E157 /* PBXContainerItemProxy */; }; - 1DACC56C9BEFCFF8040790175FD8DC07 /* PBXTargetDependency */ = { + 222867E33F1A86DBEF35070D9505A53E /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = "React-RCTAnimation"; - target = 938CCE22F6C4094B3FB6CF1478579E4B /* React-RCTAnimation */; - targetProxy = 15D2286598E95FE31FCFF5735D5C5B36 /* PBXContainerItemProxy */; + name = GoogleDataTransport; + target = 5C0371EE948D0357B8EE0E34ABB44BF0 /* GoogleDataTransport */; + targetProxy = FDB0B8B6B747861BB4C730C1DCBE9E83 /* PBXContainerItemProxy */; }; - 1DE20BE8FFFCFD1167564C06EF92FBA1 /* PBXTargetDependency */ = { + 223FC3D10F9BB7A58C292CC44DEB7CCD /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = "React-RCTActionSheet"; - target = 11989A5E568B3B69655EE0C13DCDA3F9 /* React-RCTActionSheet */; - targetProxy = EE7BAF425B65A3697B49F329FD325300 /* PBXContainerItemProxy */; + name = nanopb; + target = D2B5E7DCCBBFB32341D857D01211A1A3 /* nanopb */; + targetProxy = 841A7327F8FBEC69C28D8880BDF3A883 /* PBXContainerItemProxy */; }; - 1DF1C9A2345BCC4298A73F5E3126F989 /* PBXTargetDependency */ = { + 2251C3A4CDF0E93CC3580DED717B9F5A /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = RNFBCrashlytics; - target = E3573FB7AF659C42B699003C73722241 /* RNFBCrashlytics */; - targetProxy = 42653E96AB1DAB598D8C32E761F7917C /* PBXContainerItemProxy */; + name = "React-Core"; + target = 7ACAA9BE580DD31A5CB9D97C45D9492D /* React-Core */; + targetProxy = 0387EC72280453ADEF405EE81E722AEB /* PBXContainerItemProxy */; }; - 1E3809456F4C268C50A8F17E3ED97CF3 /* PBXTargetDependency */ = { + 227BD25C6D2DFF311BC21E383D33640D /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = "react-native-orientation-locker"; - target = 1092C13E1E1172209537C28D0C8D4D3C /* react-native-orientation-locker */; - targetProxy = 37168C35C4D1A9431FD2EC541D2894A2 /* PBXContainerItemProxy */; + name = "React-Core"; + target = 7ACAA9BE580DD31A5CB9D97C45D9492D /* React-Core */; + targetProxy = A23FCA1FC82571F81DC367EBEDB2FB3A /* PBXContainerItemProxy */; }; - 1E9913FA513BEBF6AE70956B1AFE5D32 /* PBXTargetDependency */ = { + 235A51963E1990A97DDD7B3F9B25E9F7 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = EXLocalAuthentication; - target = 869CED37B4B77AAE35DF8B6E70788BBC /* EXLocalAuthentication */; - targetProxy = 068550664FA2530EDFB295FCEDA940C9 /* PBXContainerItemProxy */; + name = "Flipper-Glog"; + target = 6A9637F1BC8154F777335A6420579C05 /* Flipper-Glog */; + targetProxy = B3FC969EAC874BD6BA9852D82EF45D28 /* PBXContainerItemProxy */; }; - 1EBD4BF0D1B1D5042760457C1E0EAE56 /* PBXTargetDependency */ = { + 23926905D7EF135C380B94941AE31B3D /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = "React-jsiexecutor"; - target = DA0709CAAD589C6E7963495210438021 /* React-jsiexecutor */; - targetProxy = 68DF654651E2E480EAC07733E4ADE995 /* PBXContainerItemProxy */; + name = RNCPicker; + target = D00F24222F074B31C56DC6D05E806A35 /* RNCPicker */; + targetProxy = EF56C89CAEA8C7A7A95738EAB96AC394 /* PBXContainerItemProxy */; }; - 1EC1EE1701812A211E97839EABDD917C /* PBXTargetDependency */ = { + 23C4A11C33F10C0583AF34A2407AFB25 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = "react-native-blur"; - target = EEBB8D24F2B3531A5C5DAA668D02331F /* react-native-blur */; - targetProxy = 32F2FC8331902F5BFCB8D6BAE12EF526 /* PBXContainerItemProxy */; + name = FirebaseAnalytics; + target = C49E7A4D59E5C8BE8DE9FB1EFB150185 /* FirebaseAnalytics */; + targetProxy = 23A8F551E5CA6EAE4B7DE859095139B4 /* PBXContainerItemProxy */; }; - 1EDD465F1241ABC3EBA5542C93D21E8B /* PBXTargetDependency */ = { + 241316BD3A14BF926E7EE356C8DDBE36 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = MMKV; - target = 91A6826828CB9FCD0169A7547E8A79EA /* MMKV */; - targetProxy = BEFCA4B68875F2FF3150A31FB1F5E996 /* PBXContainerItemProxy */; + name = RNFBAnalytics; + target = BDD119F8782FABE2707D3D913EC3EDE5 /* RNFBAnalytics */; + targetProxy = A52FB460825C5CE12C4CD0D6A1D05AC0 /* PBXContainerItemProxy */; }; - 1FE8CB41B12894B5CEB5D52D3F96E233 /* PBXTargetDependency */ = { + 241D5E966B15916EF9AA6C8AD76751AD /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = nanopb; - target = D2B5E7DCCBBFB32341D857D01211A1A3 /* nanopb */; - targetProxy = A2251ED0D3A0A772CEE6A21E860E3DFA /* PBXContainerItemProxy */; + name = "rn-fetch-blob"; + target = 64F427905796B33B78A704063422979D /* rn-fetch-blob */; + targetProxy = 44D0EBD489C8DB6D24051C876C783BA4 /* PBXContainerItemProxy */; }; - 20195C0EAF85C2293055D3113665B191 /* PBXTargetDependency */ = { + 248DC8565912B21890D4320A5CE0E6B8 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = "React-RCTText"; - target = DBD2D83E10F8B7D3F4E0E34E6A9FCFA6 /* React-RCTText */; - targetProxy = 56548FA7A094528CDB9ED90DE3CD9C3A /* PBXContainerItemProxy */; + name = "Flipper-PeerTalk"; + target = 718DB7D0A7E90B531AD577B3356C4161 /* Flipper-PeerTalk */; + targetProxy = 69418A748FD7EA8FC5DF517A1736BA5E /* PBXContainerItemProxy */; }; - 209F9CAC95D18BDA5E50029C965456FD /* PBXTargetDependency */ = { + 24B86D6D5802D5F8B08A03469B50FA91 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = "react-native-jitsi-meet"; - target = D39AB631E8050865DE01F6D5678797D2 /* react-native-jitsi-meet */; - targetProxy = 9C50A63DC6E83170731C2BA79B3CF18D /* PBXContainerItemProxy */; + name = TOCropViewController; + target = F3966F664F3CFAEFAB57C40FB54D3788 /* TOCropViewController */; + targetProxy = 2EFAE6EAE3FD4226F327EC01490B4D71 /* PBXContainerItemProxy */; }; - 20B55C7928E27A5CC135B1FA2F32687F /* PBXTargetDependency */ = { + 251962661D3772388441C5CBF0CE338A /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = EXWebBrowser; - target = 9EB556EE511D43F3D5D7AAF51D8D0397 /* EXWebBrowser */; - targetProxy = 9E75967B213758480A8F44D3FCF536E2 /* PBXContainerItemProxy */; + name = "RCT-Folly"; + target = EC55D52694092A9D0E6A78EB01207EB5 /* RCT-Folly */; + targetProxy = 1B3AAE9284A7C84B6567C55B639EFDB1 /* PBXContainerItemProxy */; }; - 2108D9CAAF5CF92769E06CD365A8C20E /* PBXTargetDependency */ = { + 25302D4383B434AFF4C786968D983BA8 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = FlipperKit; - target = 982644B5B647690B2E4F5B3F54EB5717 /* FlipperKit */; - targetProxy = 91F8907B03E01D4195AC45713195E1C0 /* PBXContainerItemProxy */; + name = FBReactNativeSpec; + target = C3496D0495E700CF08A90C41EA8FA4BB /* FBReactNativeSpec */; + targetProxy = D091B60D9C56AF21D24282265053372F /* PBXContainerItemProxy */; }; - 21A97AF808D8CEF07539CB56F69061BA /* PBXTargetDependency */ = { + 25353B00D17F4F60A4E5D07A81D3102E /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = GoogleAppMeasurement; - target = B53D977A951AFC38B21751B706C1DF83 /* GoogleAppMeasurement */; - targetProxy = A6FAB53B12FD515908B1B671402073DC /* PBXContainerItemProxy */; + name = ReactNativeART; + target = 90148E8FD1C445D7A019D504FA8CBC53 /* ReactNativeART */; + targetProxy = 6A732530AFC5B3792C5A5863D086CCE9 /* PBXContainerItemProxy */; }; - 21B41452FA2F8F3442B9CC7708BCB06F /* PBXTargetDependency */ = { + 2592DE2A0DD52071301D10A9D96CAE26 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = EXAV; - target = 13D7009C3736FB694854D88BAD4742B6 /* EXAV */; - targetProxy = 8D16A6C6B87E8EF60DD3200F8B8A2A08 /* PBXContainerItemProxy */; + name = RCTTypeSafety; + target = D20469A9A1E5CFB26045EAEBE3F88E5E /* RCTTypeSafety */; + targetProxy = CD836471C70928819BB73963B777BC0A /* PBXContainerItemProxy */; }; - 2246D412BFC6EB0B857907F1CEAD64F4 /* PBXTargetDependency */ = { + 269FF221F129C10512BC9EB754B18F91 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = FirebaseAnalytics; - target = C49E7A4D59E5C8BE8DE9FB1EFB150185 /* FirebaseAnalytics */; - targetProxy = AA473B00E72F76B87713813177934497 /* PBXContainerItemProxy */; + name = UMCore; + target = DBCB1B4965863DDD3B9DED9A0918A526 /* UMCore */; + targetProxy = 9A9A98383864C91276C4B0CCB3F46AAD /* PBXContainerItemProxy */; }; - 228C43EFED492A9CDAE3BAC1A9122F35 /* PBXTargetDependency */ = { + 26A05EFD224D40AAD192B47943D292EC /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = "RCT-Folly"; - target = EC55D52694092A9D0E6A78EB01207EB5 /* RCT-Folly */; - targetProxy = E84CBCA8EB454DDA0BF8218E5041F049 /* PBXContainerItemProxy */; + name = "react-native-document-picker"; + target = D11E74324175FE5B0E78DB046527F233 /* react-native-document-picker */; + targetProxy = 17661FB66F461A44D74152AD94B2DCA8 /* PBXContainerItemProxy */; }; - 22953203C195D2A14F5D4178F5081EFB /* PBXTargetDependency */ = { + 26E98605AA96F6CB931657F97799535B /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = UMTaskManagerInterface; - target = 50188AAB5FAECCA9583327DBA2B0AF2B /* UMTaskManagerInterface */; - targetProxy = FED023E4F8E5C88561B22484867C7077 /* PBXContainerItemProxy */; + name = UMConstantsInterface; + target = 9668C19AA6D8EA320F83875FA286855A /* UMConstantsInterface */; + targetProxy = C5B3E46F6AD88ACAC2267F07EDBD30A0 /* PBXContainerItemProxy */; }; - 230D18F4E26F49CBC7E952BF79BFF76E /* PBXTargetDependency */ = { + 27A3CA9C3BCBD5D8C5D6C971233E7FE1 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = "rn-fetch-blob"; - target = 64F427905796B33B78A704063422979D /* rn-fetch-blob */; - targetProxy = 062ABEC57934138CFE0ED2476821D432 /* PBXContainerItemProxy */; + name = "react-native-safe-area-context"; + target = BD9A27D8398DEB3205D3F8937B0672A0 /* react-native-safe-area-context */; + targetProxy = BB67A47CE831BF26E1669DEFF02522FF /* PBXContainerItemProxy */; }; - 233F4B6AF76A4C0B88D44325A753C4E4 /* PBXTargetDependency */ = { + 27AD14A93652207AA406B72E195770D5 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = UMConstantsInterface; - target = 9668C19AA6D8EA320F83875FA286855A /* UMConstantsInterface */; - targetProxy = 9B15231B429207756EDBB8208EA92796 /* PBXContainerItemProxy */; + name = ReactNativeART; + target = 90148E8FD1C445D7A019D504FA8CBC53 /* ReactNativeART */; + targetProxy = 44FFA945D8B35229A6B258E9B31FE37F /* PBXContainerItemProxy */; }; - 24062F53418DEE51F2832C1FCCE58807 /* PBXTargetDependency */ = { + 27FA7D7B8A5A852173DDBB76F487EBC9 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = PromisesObjC; - target = 2BBF7206D7FAC92C82A042A99C4A98F8 /* PromisesObjC */; - targetProxy = 638C22689F31DD16A085BB7364E0EF57 /* PBXContainerItemProxy */; + name = RNFBApp; + target = 90D0DE2F3348233618414728C35311CA /* RNFBApp */; + targetProxy = D08C38E57265BA8963601B19ED998FAF /* PBXContainerItemProxy */; }; - 24EF74C9D8E552EB2B6B90A08AC55EE5 /* PBXTargetDependency */ = { + 2836CF73F0853B063AE1292CEE45862F /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = Firebase; - target = 072CEA044D2EF26F03496D5996BBF59F /* Firebase */; - targetProxy = B6D1146F82E3376A596B2BE0778E906F /* PBXContainerItemProxy */; + name = FirebaseInstallations; + target = 87803597EB3F20FC46472B85392EC4FD /* FirebaseInstallations */; + targetProxy = 362B1828D7515D6BFD7EF27809294C38 /* PBXContainerItemProxy */; }; - 254E36F03CCF454726A6772FADD8FF55 /* PBXTargetDependency */ = { + 28BDEB106872FAEE14C71FE9CE3463D0 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = FirebaseCore; - target = 4402AFF83DBDC4DD07E198685FDC2DF2 /* FirebaseCore */; - targetProxy = 688625807C0975024C9D62CA623BAB5E /* PBXContainerItemProxy */; + name = "react-native-webview"; + target = 8D18C49071FC5370C25F5758A85BA5F6 /* react-native-webview */; + targetProxy = 64A013E53E7A0796ECFEB9D537F49412 /* PBXContainerItemProxy */; }; - 255AA89D2BB4B43E4AC4E1A59A6C6E91 /* PBXTargetDependency */ = { + 294814D8D072E0D1EC634402E6549502 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = "hermes-engine"; - target = 985FEA01F314F3C00F0C1E1181E6C4A5 /* hermes-engine */; - targetProxy = BD7244A028B65F1ED056140C5601FC21 /* PBXContainerItemProxy */; + name = "RCT-Folly"; + target = EC55D52694092A9D0E6A78EB01207EB5 /* RCT-Folly */; + targetProxy = 4AACDC925209308A5FEAAD6FFB1DBF89 /* PBXContainerItemProxy */; }; - 25647F70B283957AE06620E92FFAAC5C /* PBXTargetDependency */ = { + 2970507FDD7F023215AF2EA3E443B637 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = "react-native-jitsi-meet"; - target = D39AB631E8050865DE01F6D5678797D2 /* react-native-jitsi-meet */; - targetProxy = 88D8D3EEAC30E400D73911DA7118DA4F /* PBXContainerItemProxy */; + name = "React-RCTLinking"; + target = 6FE9147F8AAA4DE676C190F680F47AE2 /* React-RCTLinking */; + targetProxy = 795EEE7A325026E7922C2E8D2E743B9E /* PBXContainerItemProxy */; }; - 256B2A2EDF157FC871EDE0F327798D00 /* PBXTargetDependency */ = { + 2A3DC5BC297192A5B571AF856EFFAE62 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = nanopb; - target = D2B5E7DCCBBFB32341D857D01211A1A3 /* nanopb */; - targetProxy = 5CDB7363BA06796933291B98A02D80A6 /* PBXContainerItemProxy */; + name = MMKVCore; + target = AC8AE887C706A43711D115E69B9D988A /* MMKVCore */; + targetProxy = 2FDBD7DE8F19B0A545698E9E50BCF97A /* PBXContainerItemProxy */; }; - 25A15BB584DF1AD1AC6535D29755BBF8 /* PBXTargetDependency */ = { + 2AA28E260D22A40747BF53BB4FB1E16C /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = "React-RCTNetwork"; - target = 651511D7DA7F07F9FC9AA40A2E86270D /* React-RCTNetwork */; - targetProxy = 448C98C45846E7E106F1E52942DA206F /* PBXContainerItemProxy */; + name = "React-callinvoker"; + target = 2681CB7EF647E61F4F9A43029C235607 /* React-callinvoker */; + targetProxy = 380A1FC85FE87B5C24EDCCDDC0529B12 /* PBXContainerItemProxy */; }; - 25CB17AD4E0491908129641B7F2CFB47 /* PBXTargetDependency */ = { + 2ACB94D15EE8B9832CD7C53DFEF4ED9E /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = YogaKit; - target = 32CA4CBD6B28983076BD93DA221AD027 /* YogaKit */; - targetProxy = FA0DF57E6A78847AF4AC56C2E81F789C /* PBXContainerItemProxy */; + name = "react-native-cookies"; + target = ADC4ACC657481AD27F9936D08FF7F49A /* react-native-cookies */; + targetProxy = C71A81E732BA67800E043F0743F6548D /* PBXContainerItemProxy */; }; - 25E9CDB9B0F0E4600973A238874D3043 /* PBXTargetDependency */ = { + 2ADE99F3CA61499A36FFBA26D6CE1CEA /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = MMKV; - target = 91A6826828CB9FCD0169A7547E8A79EA /* MMKV */; - targetProxy = 320F6183337581B1E023B07AF6274FB7 /* PBXContainerItemProxy */; + name = "React-RCTImage"; + target = 4F265533AAB7C8985856EC78A33164BB /* React-RCTImage */; + targetProxy = 1A31EAECDC12C14F3C088C41511FB3EB /* PBXContainerItemProxy */; }; - 262258519ECFC14FCAD17A175F1BDFBB /* PBXTargetDependency */ = { + 2B3FCB63502EBE88CD4A19B72552A24F /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = EXLocalAuthentication; - target = 869CED37B4B77AAE35DF8B6E70788BBC /* EXLocalAuthentication */; - targetProxy = 4BD5E43E8A144B218CBB5C9B76134763 /* PBXContainerItemProxy */; + name = RNDateTimePicker; + target = D760AF58E12ABBB51F84160FB02B5F39 /* RNDateTimePicker */; + targetProxy = 46395158E253BC51D5D39963890F3651 /* PBXContainerItemProxy */; }; - 2624D32565768A6DE2219F741287151F /* PBXTargetDependency */ = { + 2B5C878AAD28DB4ABCF847AB9D0688FC /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = "rn-fetch-blob"; - target = 64F427905796B33B78A704063422979D /* rn-fetch-blob */; - targetProxy = 72DAEFB9C4BBECC448C138A798F75ED8 /* PBXContainerItemProxy */; + name = "Flipper-PeerTalk"; + target = 718DB7D0A7E90B531AD577B3356C4161 /* Flipper-PeerTalk */; + targetProxy = 726A0DD24331C95C66D5A05375A2DBC2 /* PBXContainerItemProxy */; }; - 2661208CCE1F00280F0E01A2C84C829A /* PBXTargetDependency */ = { + 2BC0B2B6865C78A8E0871E11724A047A /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = EXHaptics; - target = 409F3A0DB395F53FFB6AB30E5CD8ACD1 /* EXHaptics */; - targetProxy = E356AD98EB1252E7C7944F6A143EAFE0 /* PBXContainerItemProxy */; + name = UMFontInterface; + target = 014495932E402CA67C37681988047CA2 /* UMFontInterface */; + targetProxy = D8E817F8A48E377B7A5D17A27CCBEF5E /* PBXContainerItemProxy */; }; - 26810AE7FE981900F70BD7964FAC5013 /* PBXTargetDependency */ = { + 2BCC501C35856C7C10A671ED923078EE /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = RCTTypeSafety; - target = D20469A9A1E5CFB26045EAEBE3F88E5E /* RCTTypeSafety */; - targetProxy = E51A1BF0C6847F99684CF93BA1B9C7CA /* PBXContainerItemProxy */; + name = FlipperKit; + target = 982644B5B647690B2E4F5B3F54EB5717 /* FlipperKit */; + targetProxy = D1FF4A64AFF3A5B440159162286678D7 /* PBXContainerItemProxy */; }; - 26C05BD48A8B9E01C9357778890FF06F /* PBXTargetDependency */ = { + 2BD63D008BDFC3D2BF47555FB63675E9 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = React; - target = 1BEE828C124E6416179B904A9F66D794 /* React */; - targetProxy = 8E13F436EA9B78CFC19DD089A665016E /* PBXContainerItemProxy */; + name = "hermes-engine"; + target = 985FEA01F314F3C00F0C1E1181E6C4A5 /* hermes-engine */; + targetProxy = 28399BE2227AF1FF623FBE19CF94940E /* PBXContainerItemProxy */; }; - 272B2EB94DD4626CCA3CBA95EECAF0C7 /* PBXTargetDependency */ = { + 2C5DD45EA98628BE08097EDD9DE7BBCB /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = "react-native-cameraroll"; - target = BA3F5E5AA483B263B69601DE2FA269CB /* react-native-cameraroll */; - targetProxy = 73ACAEC53220CB443337B2FBB5FFB805 /* PBXContainerItemProxy */; + name = UMFaceDetectorInterface; + target = 2AD4F40E67E1874A0816F6B34289EB41 /* UMFaceDetectorInterface */; + targetProxy = 5E3E704B0905069ACD37958158F16CB4 /* PBXContainerItemProxy */; }; - 27665402D20F8AF5A90379E3C8695C36 /* PBXTargetDependency */ = { + 2C86B887FDFA39239AC76DC86A1254A6 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = "React-Core"; - target = 7ACAA9BE580DD31A5CB9D97C45D9492D /* React-Core */; - targetProxy = 580D69B9F7E7F081BC1C85F14CF37CE9 /* PBXContainerItemProxy */; + name = RNRootView; + target = 18B56DB36E1F066C927E49DBAE590128 /* RNRootView */; + targetProxy = 36F78DCEFE5D524DA7C67D87701EA70B /* PBXContainerItemProxy */; }; - 27857BA84FB3E455EFB965D7B9063D89 /* PBXTargetDependency */ = { + 2CBD3D8C374949A34C9D7E9B38F6738B /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = "react-native-background-timer"; - target = 6514D69CB93B41626AE1A05581F97B07 /* react-native-background-timer */; - targetProxy = CF8A28BF937855E32415119994D87CF2 /* PBXContainerItemProxy */; + name = BugsnagReactNative; + target = 0745200E60DC80C9A0A48B7E6C1518D7 /* BugsnagReactNative */; + targetProxy = 8AD764C2F4D30FB8907E681DF005776D /* PBXContainerItemProxy */; }; - 27E1CB656A9C37C2702D44722D1972A7 /* PBXTargetDependency */ = { + 2D27FA5A19D2B433A0325FB31C5079EA /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = "React-perflogger"; - target = F1E2583679398CB5F4D2B3272E9B198F /* React-perflogger */; - targetProxy = 1E1BF45FE169A8F5EBD73C673F0882F0 /* PBXContainerItemProxy */; + name = "react-native-appearance"; + target = 3FF2E78BB54ED67CA7FAD8DA2590DBEE /* react-native-appearance */; + targetProxy = 5522129A0C7D898C4F6D5EE7103627DC /* PBXContainerItemProxy */; }; - 28383F21FCF4CC7DED783148AC34FFDC /* PBXTargetDependency */ = { + 2D48B88B965433FDB4398D3F331912B0 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = "React-perflogger"; - target = F1E2583679398CB5F4D2B3272E9B198F /* React-perflogger */; - targetProxy = 295BED05F71E5A6200E8E1DE7F668FCB /* PBXContainerItemProxy */; + name = Yoga; + target = 2B25F90D819B9ADF2AF2D8733A890333 /* Yoga */; + targetProxy = 52D1BF9E6A8FD24083D91C67CCDE0AA7 /* PBXContainerItemProxy */; }; - 2949F4A36A4922742D87277DDD9BDC81 /* PBXTargetDependency */ = { + 2DD76B347189E8CEEE5200FA33775B79 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = UMPermissionsInterface; - target = F7845084F0CF03F54107EEF7411760AD /* UMPermissionsInterface */; - targetProxy = E8CBD10A9DA9DA759BFB131005C3C704 /* PBXContainerItemProxy */; + name = GoogleDataTransport; + target = 5C0371EE948D0357B8EE0E34ABB44BF0 /* GoogleDataTransport */; + targetProxy = A16458F976F0AA9577A7511CFBC79DFB /* PBXContainerItemProxy */; }; - 294BB13EEFE7E474D46C4A7C115C03AD /* PBXTargetDependency */ = { + 2E03E8BF4F784BA8CA0DD691E5AF7641 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = UMConstantsInterface; - target = 9668C19AA6D8EA320F83875FA286855A /* UMConstantsInterface */; - targetProxy = DF4FB7B6B68C3C305041A4D094011010 /* PBXContainerItemProxy */; + name = FirebaseCrashlytics; + target = 526C4398D095B3704EB933DADBC30093 /* FirebaseCrashlytics */; + targetProxy = 8B1BDF237B8DB46C234E9920BDE330D0 /* PBXContainerItemProxy */; }; - 297B5AF54B76ADD482620945F136987B /* PBXTargetDependency */ = { + 2E59BA7D3F3D4DB992D8CEA2B75196B0 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = CocoaAsyncSocket; - target = 6083682834ABE0AE7BD1CBF06CADD036 /* CocoaAsyncSocket */; - targetProxy = 608CF4E95AA4EB76E291C9AECE773B27 /* PBXContainerItemProxy */; + name = "boost-for-react-native"; + target = ED2506AE7DE35D654F61254441EA7155 /* boost-for-react-native */; + targetProxy = 4610264EC690C7B2D7064EF61E0F0B55 /* PBXContainerItemProxy */; }; - 2A79286BCCD4640263A2C491CB90C1A9 /* PBXTargetDependency */ = { + 2E8110A70A3F0E65C3F88683EFF1F907 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = SDWebImageWebPCoder; - target = 1953860EA9853AA2BC8022B242F08512 /* SDWebImageWebPCoder */; - targetProxy = 7CB07AC75B8B2580B14BEC5EFF6B7466 /* PBXContainerItemProxy */; + name = GoogleUtilities; + target = 8D7F5D5DD528D21A72DC87ADA5B12E2D /* GoogleUtilities */; + targetProxy = A7310835BB82E7A1D1405A65F74F3603 /* PBXContainerItemProxy */; }; - 2AA5EAFA1EEA176F1AF7C410163ED11F /* PBXTargetDependency */ = { + 2EA35B36F4848267045120FA5C973D33 /* PBXTargetDependency */ = { isa = PBXTargetDependency; name = GoogleUtilities; target = 8D7F5D5DD528D21A72DC87ADA5B12E2D /* GoogleUtilities */; - targetProxy = 04C57239C5B4FEE67E83BEC8B48480C4 /* PBXContainerItemProxy */; + targetProxy = 8204223EB70AB71ABD152AB7270A3322 /* PBXContainerItemProxy */; }; - 2B0F9258D6E03CD35B38BA8F4EFAD8A8 /* PBXTargetDependency */ = { + 2EA613849364AFA2EF05D5717D0C88D1 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = GoogleAppMeasurement; - target = B53D977A951AFC38B21751B706C1DF83 /* GoogleAppMeasurement */; - targetProxy = F95D128F194960AB4FB9D2A7B09CE9EC /* PBXContainerItemProxy */; + name = Yoga; + target = 2B25F90D819B9ADF2AF2D8733A890333 /* Yoga */; + targetProxy = C152B669DBF291280643AE3DD28B0F8E /* PBXContainerItemProxy */; }; - 2B175006EEBB4754F0225B7C8BC64255 /* PBXTargetDependency */ = { + 2F21F738782E12A239E401FDBF39879D /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = glog; - target = D0EFEFB685D97280256C559792236873 /* glog */; - targetProxy = 6162F3A41AFFB0D95D05E58A42E945D1 /* PBXContainerItemProxy */; + name = "RCT-Folly"; + target = EC55D52694092A9D0E6A78EB01207EB5 /* RCT-Folly */; + targetProxy = 63D1EEA66F4CD7F4E8872A97D9AC99DC /* PBXContainerItemProxy */; }; - 2B3E38409806B4A02A6CDABF29DAD96A /* PBXTargetDependency */ = { + 2F50FEEB761C8413B87417A156525F82 /* PBXTargetDependency */ = { isa = PBXTargetDependency; name = DoubleConversion; target = 2AB2EF542954AB1C999E03BFEF8DE806 /* DoubleConversion */; - targetProxy = AE77B0E391774ADDEF2686434105807B /* PBXContainerItemProxy */; + targetProxy = 19B7B9BE96ED8A8A3434002EB353AAE3 /* PBXContainerItemProxy */; }; - 2B4069E8A2F436A96415D5BECB4EDD2D /* PBXTargetDependency */ = { + 2F628A89D170110F27D8EC6C5F5709A0 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = "react-native-webview"; - target = 8D18C49071FC5370C25F5758A85BA5F6 /* react-native-webview */; - targetProxy = D654D7831CD0507F266BB3DC3BD1D789 /* PBXContainerItemProxy */; + name = "React-RCTSettings"; + target = 680299219D3A48D42A648AF6706275A9 /* React-RCTSettings */; + targetProxy = B888D397764453860329417AA6371999 /* PBXContainerItemProxy */; }; - 2BFE27110C8564961592C6EB49163405 /* PBXTargetDependency */ = { + 2F8A77E837E85EFCBD2E7FC864C9D207 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = "React-RCTNetwork"; - target = 651511D7DA7F07F9FC9AA40A2E86270D /* React-RCTNetwork */; - targetProxy = BB84FBD52C5373B47742BC470B46A9C4 /* PBXContainerItemProxy */; + name = "react-native-mmkv-storage"; + target = 74DAFD196634D10887C9A4E7BA19A5E4 /* react-native-mmkv-storage */; + targetProxy = E4DDD74DDE626409CE20192C4CF0C6C9 /* PBXContainerItemProxy */; }; - 2C44119EBBF4AB542F25C7101E3C5DAF /* PBXTargetDependency */ = { + 2FA3099B557F794FEC4CABFA141D227E /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = "React-RCTActionSheet"; - target = 11989A5E568B3B69655EE0C13DCDA3F9 /* React-RCTActionSheet */; - targetProxy = 7061AE322B05184FC5401EA3B62C6073 /* PBXContainerItemProxy */; + name = "React-Core"; + target = 7ACAA9BE580DD31A5CB9D97C45D9492D /* React-Core */; + targetProxy = DB8C7A4FE19BAC2C242E82FA70C38C6F /* PBXContainerItemProxy */; }; - 2CEA883E2EB8496B8AA5B5EECF6E14C0 /* PBXTargetDependency */ = { + 3022E49F99BCFF614637B9A72C8F1DFF /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = nanopb; - target = D2B5E7DCCBBFB32341D857D01211A1A3 /* nanopb */; - targetProxy = 88A2FC5EB2EF86CE3F4BFDB128DBC38C /* PBXContainerItemProxy */; + name = React; + target = 1BEE828C124E6416179B904A9F66D794 /* React */; + targetProxy = DB6D62A0D6EC2A8746FF902936020B02 /* PBXContainerItemProxy */; }; - 2D29D6D3D6B8D209F463606A0C6E8DD7 /* PBXTargetDependency */ = { + 30C038AB324AB6E13013416DE9641A8E /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = "boost-for-react-native"; - target = ED2506AE7DE35D654F61254441EA7155 /* boost-for-react-native */; - targetProxy = 372629E1571263E65072CAE6503C46D1 /* PBXContainerItemProxy */; + name = RNFBApp; + target = 90D0DE2F3348233618414728C35311CA /* RNFBApp */; + targetProxy = 7C97CC46551CD27BC0C1009FEE85456F /* PBXContainerItemProxy */; }; - 2D2BC283507A1CDC452274D1184C30B9 /* PBXTargetDependency */ = { + 30C1BC3937F4201178EC4F21A8D0AADA /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = "React-Core"; - target = 7ACAA9BE580DD31A5CB9D97C45D9492D /* React-Core */; - targetProxy = DE1F5E6E7DEE65A4B2CE0447C306D3C5 /* PBXContainerItemProxy */; + name = DoubleConversion; + target = 2AB2EF542954AB1C999E03BFEF8DE806 /* DoubleConversion */; + targetProxy = 210AEB2D3A641DB5F65CF276FEE7B635 /* PBXContainerItemProxy */; }; - 2D370361D464E9C4956561EBB8DA7F9E /* PBXTargetDependency */ = { + 31945383CD7F63F2E135F765236B3335 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = RNLocalize; - target = B51433D546A38C51AA781F192E8836F8 /* RNLocalize */; - targetProxy = 1EFE1C7C4C58A60B27F78D77A26AC73A /* PBXContainerItemProxy */; + name = "React-RCTVibration"; + target = 53D121F9F9BB0F8AC1C94A12C5A8572F /* React-RCTVibration */; + targetProxy = 4C66AC7B33E06D87E26A7A224AE46058 /* PBXContainerItemProxy */; }; - 2DDB3CB48851A1CF62C05ED464441CBF /* PBXTargetDependency */ = { + 31EA0E0D91EFE04DCA8B32DC9132E27F /* PBXTargetDependency */ = { isa = PBXTargetDependency; name = "React-cxxreact"; target = 463F41A7E8B252F8AC5024DA1F4AF6DA /* React-cxxreact */; - targetProxy = 56EB10C15B080BAE819AB4C01C30D572 /* PBXContainerItemProxy */; + targetProxy = C9D97E4D0F4903A1FDCAB7E440BDAF0B /* PBXContainerItemProxy */; }; - 2E02841DCBD38C080A303DD0A6BCB1AF /* PBXTargetDependency */ = { + 32244BD798DB8E8AD958042EF61AE059 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = SDWebImage; - target = 3847153A6E5EEFB86565BA840768F429 /* SDWebImage */; - targetProxy = 7E6C80779E961A4CAB1215ABA3CB7D52 /* PBXContainerItemProxy */; + name = UMCore; + target = DBCB1B4965863DDD3B9DED9A0918A526 /* UMCore */; + targetProxy = CB551DAD8967963A7D977217690B92FF /* PBXContainerItemProxy */; }; - 2E4FEC08BE144D5B09521C17A8EBD589 /* PBXTargetDependency */ = { + 32CC061903CE38DC4FCFF6323FDB4EDE /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = TOCropViewController; - target = F3966F664F3CFAEFAB57C40FB54D3788 /* TOCropViewController */; - targetProxy = A1BB7C17311D23CCC76F615EF173C30D /* PBXContainerItemProxy */; + name = RNScreens; + target = 214E42634D1E187D876346D36184B655 /* RNScreens */; + targetProxy = 20697C34779788F8C4499FF433B886C5 /* PBXContainerItemProxy */; }; - 2F1B957F1A0A4D2D7124E1F8FF005F3C /* PBXTargetDependency */ = { + 32EEAB72BBAC5F9CB92AF756E52D0844 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = "React-RCTActionSheet"; - target = 11989A5E568B3B69655EE0C13DCDA3F9 /* React-RCTActionSheet */; - targetProxy = 5C124631297FE08AF639F95D2465990A /* PBXContainerItemProxy */; + name = EXConstants; + target = 6C1893932A69822CBE3502F2E0BCFB6D /* EXConstants */; + targetProxy = 285F0BBA999282E60D2B3615D0A77895 /* PBXContainerItemProxy */; }; - 2F79BF7954E8D88EA79D3F6E73D470A9 /* PBXTargetDependency */ = { + 32F837E0040B83668F78242CA9ED301B /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = Yoga; - target = 2B25F90D819B9ADF2AF2D8733A890333 /* Yoga */; - targetProxy = 4689C744D7DB05DD12F749009F0A7331 /* PBXContainerItemProxy */; + name = "boost-for-react-native"; + target = ED2506AE7DE35D654F61254441EA7155 /* boost-for-react-native */; + targetProxy = 5B894D84DEECA69B4FBE5324B6F5D2D9 /* PBXContainerItemProxy */; }; - 3064E763BF957DC8E9794B2627637A5C /* PBXTargetDependency */ = { + 341AF360FAA15447C77C8DB4BFEA30B4 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = UMImageLoaderInterface; - target = 97C4DE84FA3CC4EC06AA6D8C249949B7 /* UMImageLoaderInterface */; - targetProxy = 2C17861F290721BE0678A228961C3237 /* PBXContainerItemProxy */; + name = KeyCommands; + target = 7F591BD8674041AAAA4F37DC699B5518 /* KeyCommands */; + targetProxy = FD685AE61ABC4D20BCCB441442BB86AB /* PBXContainerItemProxy */; }; - 3100524DE1047157AEAB1617D9C82D56 /* PBXTargetDependency */ = { + 343A5BEA2CC6C64D41E8491E5F6E45E7 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = GoogleDataTransportCCTSupport; - target = F4F25FCAC51B51FD5F986EB939BF1F87 /* GoogleDataTransportCCTSupport */; - targetProxy = 4D9A3D4B75EFEFFF9B32F527C084C57F /* PBXContainerItemProxy */; + name = EXFileSystem; + target = 868B90C74770285449C60DBA82181479 /* EXFileSystem */; + targetProxy = 33FBC17BDCBF5091B52F99E9E75A4302 /* PBXContainerItemProxy */; }; - 311D484A4AECBE821198A5EE56A1DB3A /* PBXTargetDependency */ = { + 34434F5E1E5DE42ECFDFE71C6ED23F30 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = "React-RCTNetwork"; - target = 651511D7DA7F07F9FC9AA40A2E86270D /* React-RCTNetwork */; - targetProxy = 9C523A637128B8909D022128D2182686 /* PBXContainerItemProxy */; + name = RCTTypeSafety; + target = D20469A9A1E5CFB26045EAEBE3F88E5E /* RCTTypeSafety */; + targetProxy = 0856600F35CB137BAFECABDA4B90A9D7 /* PBXContainerItemProxy */; }; - 312C7FC6C8F84F5206ED075DB5AF6740 /* PBXTargetDependency */ = { + 3473BA3FAA71BF7AB016645C9942D477 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = FirebaseInstallations; - target = 87803597EB3F20FC46472B85392EC4FD /* FirebaseInstallations */; - targetProxy = 7231C9B7B946D73B0B59B0815F3C2048 /* PBXContainerItemProxy */; + name = "React-jsi"; + target = FA877ADC442CB19CF61793D234C8B131 /* React-jsi */; + targetProxy = A371283527FC96DF160899CBD7BA5D2D /* PBXContainerItemProxy */; }; - 3175B3D770C4373F470ECAE3DFE50990 /* PBXTargetDependency */ = { + 348A07207B670FA71AFC6C2AAB66C590 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = "React-RCTImage"; - target = 4F265533AAB7C8985856EC78A33164BB /* React-RCTImage */; - targetProxy = B4B2050690061825D4500FE3B5EB46EF /* PBXContainerItemProxy */; + name = EXImageLoader; + target = 263266A9E29FFF0E9C8CA0E4582BFCF4 /* EXImageLoader */; + targetProxy = 504E234F57F0A972FAE847A65C4E627E /* PBXContainerItemProxy */; }; - 318F5C89073F380A0FCEAA7180A5CD98 /* PBXTargetDependency */ = { + 3495D5FFCFD39734F87DAE02D9D3406A /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = "Flipper-PeerTalk"; - target = 718DB7D0A7E90B531AD577B3356C4161 /* Flipper-PeerTalk */; - targetProxy = EA7083A642211C54DDE2FABC467EF8DF /* PBXContainerItemProxy */; + name = DoubleConversion; + target = 2AB2EF542954AB1C999E03BFEF8DE806 /* DoubleConversion */; + targetProxy = 37A021B3581197A00E56A3F2D20DA553 /* PBXContainerItemProxy */; }; - 31A76CDDD7A6D147FCC84A21933490A7 /* PBXTargetDependency */ = { + 34C0EF6762385CED061FE3D6D80874B2 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = MMKV; - target = 91A6826828CB9FCD0169A7547E8A79EA /* MMKV */; - targetProxy = FD5416A45B8CE82A606731AD246EB5E4 /* PBXContainerItemProxy */; + name = KeyCommands; + target = 7F591BD8674041AAAA4F37DC699B5518 /* KeyCommands */; + targetProxy = 7409AD43D53E670F6C98F6A0BBDB26FE /* PBXContainerItemProxy */; }; - 325BD19861F15AED8C8FC0F464514631 /* PBXTargetDependency */ = { + 359A85FEE4974774ADAEF2585A2F17FC /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = "react-native-appearance"; - target = 3FF2E78BB54ED67CA7FAD8DA2590DBEE /* react-native-appearance */; - targetProxy = EC40A5A1685E3B147B29D46C11EC3769 /* PBXContainerItemProxy */; + name = "React-RCTActionSheet"; + target = 11989A5E568B3B69655EE0C13DCDA3F9 /* React-RCTActionSheet */; + targetProxy = 2084FB702800E6E50975FB6868C126F4 /* PBXContainerItemProxy */; }; - 328C25E036DD2059C6C521AC8A7ADAA9 /* PBXTargetDependency */ = { + 359F660B402AD7D61F230A304D3FD42C /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = DoubleConversion; - target = 2AB2EF542954AB1C999E03BFEF8DE806 /* DoubleConversion */; - targetProxy = 4811E34A2B61603E4865CBC3207ADFDE /* PBXContainerItemProxy */; + name = "React-RCTVibration"; + target = 53D121F9F9BB0F8AC1C94A12C5A8572F /* React-RCTVibration */; + targetProxy = 37E45C08B7A379CC0BE0CE0DD0B6B40B /* PBXContainerItemProxy */; }; - 32C340D547B5AB248F6C70A8188A3EDE /* PBXTargetDependency */ = { + 35D97F58D8966E3F3A19BB69D902F969 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = FBReactNativeSpec; - target = C3496D0495E700CF08A90C41EA8FA4BB /* FBReactNativeSpec */; - targetProxy = 6C31E5A6DD2ADD6C08CEB424EFB8BFF0 /* PBXContainerItemProxy */; + name = "React-jsi"; + target = FA877ADC442CB19CF61793D234C8B131 /* React-jsi */; + targetProxy = 042D7E1DF6B2CA47F50279CB3811E32D /* PBXContainerItemProxy */; }; - 32CBFA38A826E717DA5D5B86EA65052F /* PBXTargetDependency */ = { + 35E371C3C856037FE8FDCC8B85E73826 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = UMCore; - target = DBCB1B4965863DDD3B9DED9A0918A526 /* UMCore */; - targetProxy = EDCF14407E7298BAB7C4F86F7095908A /* PBXContainerItemProxy */; + name = FBLazyVector; + target = 8CC4EAA817AA86310D1900F1DAB3580F /* FBLazyVector */; + targetProxy = 86D030E81BD8F54D247CCAAD4DA24CB7 /* PBXContainerItemProxy */; }; - 33E5AA1A990EA43BC1E306B7932AF65F /* PBXTargetDependency */ = { + 35EC277FC0A7751789B7842EF113E50A /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = "react-native-appearance"; - target = 3FF2E78BB54ED67CA7FAD8DA2590DBEE /* react-native-appearance */; - targetProxy = FFA47BB80FCB4059556E83BC9748A6AD /* PBXContainerItemProxy */; + name = EXAppleAuthentication; + target = 28A005E00FB77DDB2543047A07ED99A5 /* EXAppleAuthentication */; + targetProxy = 6A244651D3CB5472D5ADA80005BEA051 /* PBXContainerItemProxy */; }; - 3443D01329680AE9C6620387ABDD19E1 /* PBXTargetDependency */ = { + 37747E90C658158FC2451AEE815FDB88 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = "react-native-cameraroll"; - target = BA3F5E5AA483B263B69601DE2FA269CB /* react-native-cameraroll */; - targetProxy = 49B14E507599C1C93A1E5D1F8C8F25A3 /* PBXContainerItemProxy */; + name = JitsiMeetSDK; + target = 5B40FBDAD0AB75D17C4760F4054BFF71 /* JitsiMeetSDK */; + targetProxy = 1A08F62C5B8089C89FE064CC0B1191E0 /* PBXContainerItemProxy */; }; - 345E136290B425153C49D906601045E2 /* PBXTargetDependency */ = { + 37D5A3CB4173E7AE79F91EAE3DE43E31 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = RCTTypeSafety; - target = D20469A9A1E5CFB26045EAEBE3F88E5E /* RCTTypeSafety */; - targetProxy = D353FD39A678927629C9353A53442F2A /* PBXContainerItemProxy */; + name = "react-native-appearance"; + target = 3FF2E78BB54ED67CA7FAD8DA2590DBEE /* react-native-appearance */; + targetProxy = DDF209A8A78187D10531F6FCBD67B009 /* PBXContainerItemProxy */; }; - 34691FA1A36ADAE6706806629A78C056 /* PBXTargetDependency */ = { + 388B737B55E5B89E391E824B69D82288 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = "Flipper-DoubleConversion"; - target = D9245543B79C09FAC40FC8B9F291536A /* Flipper-DoubleConversion */; - targetProxy = EFFB8DD3C28494B9A3B47CAC73D05093 /* PBXContainerItemProxy */; + name = EXWebBrowser; + target = 9EB556EE511D43F3D5D7AAF51D8D0397 /* EXWebBrowser */; + targetProxy = 875395A5EF8D6DF420575323E3AEE370 /* PBXContainerItemProxy */; }; - 34BBF6BBCEBE044687888829547F0AEF /* PBXTargetDependency */ = { + 393DD708145B579DB68850A4EE42B394 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = FirebaseCore; - target = 4402AFF83DBDC4DD07E198685FDC2DF2 /* FirebaseCore */; - targetProxy = F696C9AD854D4E3CA60BD018A0B1E1C6 /* PBXContainerItemProxy */; - }; - 34C27099ADA4FF9D0636E0F0F84F1BD1 /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = "React-CoreModules"; - target = E16E206437995280D349D4B67695C894 /* React-CoreModules */; - targetProxy = 8A9E777DFC1AEE77E5857F450C85ABCE /* PBXContainerItemProxy */; - }; - 350E1BF2FB151C29E80B7B57B810F0F7 /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = FBLazyVector; - target = 8CC4EAA817AA86310D1900F1DAB3580F /* FBLazyVector */; - targetProxy = EBED719236BD60940845A6908B06CBB7 /* PBXContainerItemProxy */; + name = "RCT-Folly"; + target = EC55D52694092A9D0E6A78EB01207EB5 /* RCT-Folly */; + targetProxy = 51BBFCA92D391571BC9FB1E754436E6A /* PBXContainerItemProxy */; }; - 35D272A655A858621BC248300D9BDC55 /* PBXTargetDependency */ = { + 39BDB9475B09CAE160B087C26D2CDECE /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = SDWebImage; - target = 3847153A6E5EEFB86565BA840768F429 /* SDWebImage */; - targetProxy = 0ECEC766040A1DD6CA59005ACB30FF75 /* PBXContainerItemProxy */; + name = "react-native-restart"; + target = 3ED96FB9FE1D18D5F1239C60A109F98C /* react-native-restart */; + targetProxy = 4590BB5CCFB0088830F775679BA27796 /* PBXContainerItemProxy */; }; - 3605E49C23234E494A0738C42AD0CC92 /* PBXTargetDependency */ = { + 3ABA7A2A9F84003BF320420FD34B286E /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = FBReactNativeSpec; - target = C3496D0495E700CF08A90C41EA8FA4BB /* FBReactNativeSpec */; - targetProxy = 9649A7FC7E970017A79195F58B13C685 /* PBXContainerItemProxy */; + name = "react-native-orientation-locker"; + target = 1092C13E1E1172209537C28D0C8D4D3C /* react-native-orientation-locker */; + targetProxy = 260A2F08A45E897A85F9E16190F8CE2E /* PBXContainerItemProxy */; }; - 36B46C316A1D5196A53123E13D9B4592 /* PBXTargetDependency */ = { + 3BD3EE1E5105EAEEAF0D11D19C3C9FD8 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = RNFastImage; - target = 0BB7745637E0758DEA373456197090C6 /* RNFastImage */; - targetProxy = 377B3B012AC53DA540230AF9896A0376 /* PBXContainerItemProxy */; + name = GoogleDataTransport; + target = 5C0371EE948D0357B8EE0E34ABB44BF0 /* GoogleDataTransport */; + targetProxy = B7A52541C5DF262944F3EEF7B4835C54 /* PBXContainerItemProxy */; }; - 36C4211413790D6C5AFD8E3FDEF2D5F9 /* PBXTargetDependency */ = { + 3C33CBBA075512E83FAF13054719B757 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = FirebaseCore; - target = 4402AFF83DBDC4DD07E198685FDC2DF2 /* FirebaseCore */; - targetProxy = F24FA7171ECE539B5A20E38CB7A772D6 /* PBXContainerItemProxy */; + name = EXLocalAuthentication; + target = 869CED37B4B77AAE35DF8B6E70788BBC /* EXLocalAuthentication */; + targetProxy = F47A235C260557EE667EBD5472A693F9 /* PBXContainerItemProxy */; }; - 3779707C73F3DE7A10BCD31E4711FC62 /* PBXTargetDependency */ = { + 3C6C0405132A03B497CEDE35F499B6FE /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = "React-Core"; - target = 7ACAA9BE580DD31A5CB9D97C45D9492D /* React-Core */; - targetProxy = 907C9D4EA5A30CDDD5148501278814D7 /* PBXContainerItemProxy */; + name = BugsnagReactNative; + target = 0745200E60DC80C9A0A48B7E6C1518D7 /* BugsnagReactNative */; + targetProxy = 2DB50EFF1B1BEC04F6549AA310E1C8C8 /* PBXContainerItemProxy */; }; - 37C38E28B4F83D9D3B47F10A4B8ECD01 /* PBXTargetDependency */ = { + 3CAC392ED2F42EA16E5BFE2A879FC4E4 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = YogaKit; - target = 32CA4CBD6B28983076BD93DA221AD027 /* YogaKit */; - targetProxy = 59E220379E7E47B861BC7E127FE2035A /* PBXContainerItemProxy */; + name = FBLazyVector; + target = 8CC4EAA817AA86310D1900F1DAB3580F /* FBLazyVector */; + targetProxy = 333752DD617EBB0A21BE73A3D311CC4E /* PBXContainerItemProxy */; }; - 38C7C6B268EA1720386DB673917D25A3 /* PBXTargetDependency */ = { + 3DC7A1490926D4365F4D341758854989 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = "React-perflogger"; - target = F1E2583679398CB5F4D2B3272E9B198F /* React-perflogger */; - targetProxy = F90F201EE8B82B6F32C7829DBCB5A5B7 /* PBXContainerItemProxy */; + name = nanopb; + target = D2B5E7DCCBBFB32341D857D01211A1A3 /* nanopb */; + targetProxy = 09B1209ACEB31C586B011BC40CDDD268 /* PBXContainerItemProxy */; }; - 3941E5BADBF2ED369B06E029DB923BE8 /* PBXTargetDependency */ = { + 3E154FC6E19D461D765E4CF694991E84 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = RNScreens; - target = 214E42634D1E187D876346D36184B655 /* RNScreens */; - targetProxy = F4C3854F96D2DC391D7B80DACF135FD2 /* PBXContainerItemProxy */; + name = glog; + target = D0EFEFB685D97280256C559792236873 /* glog */; + targetProxy = 7C469DE54AC5FCE99F424ED965DCB828 /* PBXContainerItemProxy */; }; - 396354C3F8F7F3A3F7BA013F08A51799 /* PBXTargetDependency */ = { + 3E324B6709573E7512AC6B8C7DB53627 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = RNCPicker; - target = D00F24222F074B31C56DC6D05E806A35 /* RNCPicker */; - targetProxy = 576E23C19AB2BF6F63975A1429A869B4 /* PBXContainerItemProxy */; + name = RNVectorIcons; + target = 96150F524B245896B800F84F369A9A5A /* RNVectorIcons */; + targetProxy = 16DDC881BA229CF5E842AB1DE6C69BCB /* PBXContainerItemProxy */; }; - 39D51BFEB1F2CA655F911065EA219ADB /* PBXTargetDependency */ = { + 3E5713169562C3CE3A564FD36149E1B6 /* PBXTargetDependency */ = { isa = PBXTargetDependency; name = "React-Core"; target = 7ACAA9BE580DD31A5CB9D97C45D9492D /* React-Core */; - targetProxy = EA51BC73ACC8C693B1C2FDB68C6F6282 /* PBXContainerItemProxy */; + targetProxy = EC63CF72FC894E5EC0DD64D26C2061A8 /* PBXContainerItemProxy */; }; - 3A6CFE314DCC9736342C729F8749014D /* PBXTargetDependency */ = { + 3E8A7144C120FB10E89259AD64A5DA60 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = GoogleDataTransport; - target = 5C0371EE948D0357B8EE0E34ABB44BF0 /* GoogleDataTransport */; - targetProxy = DAD9BC70A7F2FDFEF61A72A3315C6383 /* PBXContainerItemProxy */; + name = UMCore; + target = DBCB1B4965863DDD3B9DED9A0918A526 /* UMCore */; + targetProxy = B58BABBBC209BA4B38531F573E348DFA /* PBXContainerItemProxy */; }; - 3ADA8FE6DE16281427EFE4C0E3D14BF7 /* PBXTargetDependency */ = { + 3F2F395C8E8F146FE5AA9C70DBC90FB7 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = PromisesObjC; - target = 2BBF7206D7FAC92C82A042A99C4A98F8 /* PromisesObjC */; - targetProxy = EAA06CE5531E394FCA9CDE654137D740 /* PBXContainerItemProxy */; + name = "rn-extensions-share"; + target = A238B7CE3865946D1F214E1FE0023AAE /* rn-extensions-share */; + targetProxy = 684AE92B8B71291EB493B85F23689AE3 /* PBXContainerItemProxy */; }; - 3AFDDE1ED80B0CFCC064C62576F26336 /* PBXTargetDependency */ = { + 3FAEA8DDC8F1E6E39BF3C90EF5466F20 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = "React-Core"; - target = 7ACAA9BE580DD31A5CB9D97C45D9492D /* React-Core */; - targetProxy = 92E18EC8888E856EB3FD889E7EA9F2DD /* PBXContainerItemProxy */; + name = DoubleConversion; + target = 2AB2EF542954AB1C999E03BFEF8DE806 /* DoubleConversion */; + targetProxy = 4493C315BDEE52A4C56E2A86476AAFB0 /* PBXContainerItemProxy */; }; - 3B0731AA6168E9E572B96F007CCDD59A /* PBXTargetDependency */ = { + 3FFFCA5A9BB66AE038122AE6E0F5DA18 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = "React-Core"; - target = 7ACAA9BE580DD31A5CB9D97C45D9492D /* React-Core */; - targetProxy = B108E95169C006A64AB9D475B0E1F1CB /* PBXContainerItemProxy */; + name = UMBarCodeScannerInterface; + target = 49821C2B9E764AEDF2B35DFE9AA7022F /* UMBarCodeScannerInterface */; + targetProxy = 206FB65D1C23AEB250BB668CC4E0D91C /* PBXContainerItemProxy */; }; - 3B3B0BDE69FA39CF9263C37434C38712 /* PBXTargetDependency */ = { + 40366D27C8FE5ABA5CC2D1CD2C74CDE7 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = "React-jsi"; - target = FA877ADC442CB19CF61793D234C8B131 /* React-jsi */; - targetProxy = 2DD7E0CF7F57C77F6508CD88EBA26D67 /* PBXContainerItemProxy */; + name = "React-RCTImage"; + target = 4F265533AAB7C8985856EC78A33164BB /* React-RCTImage */; + targetProxy = F2D13784505E6BC5ADA833F32EB8EAA8 /* PBXContainerItemProxy */; }; - 3B7E00B43B33301E00F131E139D8C8F5 /* PBXTargetDependency */ = { + 412B31B2973343EA689B27DB94F52341 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = "React-RCTVibration"; - target = 53D121F9F9BB0F8AC1C94A12C5A8572F /* React-RCTVibration */; - targetProxy = 478D0D49BCAADC057CA7DF0DB002EB41 /* PBXContainerItemProxy */; + name = UMCore; + target = DBCB1B4965863DDD3B9DED9A0918A526 /* UMCore */; + targetProxy = F092B0CF6A055B19737C19A2755394F1 /* PBXContainerItemProxy */; }; - 3B998AD2EDE6E7C68EACE965C0500BB6 /* PBXTargetDependency */ = { + 4157FE47723A48A921BD4B69D30B57FF /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = UMFontInterface; - target = 014495932E402CA67C37681988047CA2 /* UMFontInterface */; - targetProxy = C2CB58CEC3A53AF4F154AC424F8B0F5A /* PBXContainerItemProxy */; + name = RNFBAnalytics; + target = BDD119F8782FABE2707D3D913EC3EDE5 /* RNFBAnalytics */; + targetProxy = 1D0EA599CFABFCEF9856159C9E5121F9 /* PBXContainerItemProxy */; }; - 3C2BB3A1052D82CDDD919A8ABDD2F043 /* PBXTargetDependency */ = { + 426D7918331F7DDFE233D4371140C735 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = "react-native-slider"; - target = A4EF87F5681665EAE943D9B06BBB17DF /* react-native-slider */; - targetProxy = 83A326D7E7735451290F57E714C9CBC3 /* PBXContainerItemProxy */; + name = "React-runtimeexecutor"; + target = 54EB12219122432FA744088BC5A680D2 /* React-runtimeexecutor */; + targetProxy = 9E8220B2149D13BAEFA6D9AB73667311 /* PBXContainerItemProxy */; }; - 3DB878DC35EB343695DFAC78AC7E6C0C /* PBXTargetDependency */ = { + 426E1A8A0FC8425B37837F9BB19FCE28 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = nanopb; - target = D2B5E7DCCBBFB32341D857D01211A1A3 /* nanopb */; - targetProxy = 4621D42E6672BBF8AB1316BE61BFD493 /* PBXContainerItemProxy */; + name = RNImageCropPicker; + target = 0D82774D2A533D3FFAE27CAB4A6E9CB2 /* RNImageCropPicker */; + targetProxy = 5B2239199ABB4AC8A3C87A01A377F483 /* PBXContainerItemProxy */; }; - 3DBCCCC47C8C277DF858AA295F2B0FE9 /* PBXTargetDependency */ = { + 426E9DA8EE34C4D3CE1C241A0D8C326E /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = MMKV; - target = 91A6826828CB9FCD0169A7547E8A79EA /* MMKV */; - targetProxy = 11613A794A9C293C36950401A3388D61 /* PBXContainerItemProxy */; + name = EXConstants; + target = 6C1893932A69822CBE3502F2E0BCFB6D /* EXConstants */; + targetProxy = 39A48F0C3797DF0D6E02568F0D6DC85B /* PBXContainerItemProxy */; }; - 3DD2BB25E78CFF29333432907DAE2CE5 /* PBXTargetDependency */ = { + 439088F434B6D1838CDCC56DD3FD45B6 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = glog; - target = D0EFEFB685D97280256C559792236873 /* glog */; - targetProxy = C33D9CFABBDCAEB1E7D02F98983E0661 /* PBXContainerItemProxy */; + name = "RCT-Folly"; + target = EC55D52694092A9D0E6A78EB01207EB5 /* RCT-Folly */; + targetProxy = 02463D61623F30ADA366E264F54D8373 /* PBXContainerItemProxy */; }; - 3E8914E7CD2AA96320CE3B3CF913C1F9 /* PBXTargetDependency */ = { + 441579A2C01C1E78BA9B2553C8ABEF97 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = FirebaseCoreDiagnostics; - target = 620E05868772C10B4920DC7E324F2C87 /* FirebaseCoreDiagnostics */; - targetProxy = 569252C407BCAD943D6BDD348931E252 /* PBXContainerItemProxy */; + name = Firebase; + target = 072CEA044D2EF26F03496D5996BBF59F /* Firebase */; + targetProxy = BEB5DE1A9E1AB880B59D16D52F4E6F97 /* PBXContainerItemProxy */; }; - 3FA6CC37752C495C4DC4BBC825ED126C /* PBXTargetDependency */ = { + 443481DCF544FD7E6217EBF040258FF9 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = UMCore; - target = DBCB1B4965863DDD3B9DED9A0918A526 /* UMCore */; - targetProxy = C9528A787B49D5C1EF3604B79FF26173 /* PBXContainerItemProxy */; + name = "React-jsi"; + target = FA877ADC442CB19CF61793D234C8B131 /* React-jsi */; + targetProxy = 6AE0C21CDD5134B6FE1BD12B36A364DC /* PBXContainerItemProxy */; }; - 3FCD0BF1120C70FB75773ADDFE95C11E /* PBXTargetDependency */ = { + 446EE3B3B1AEFF4EF16121CF6B0A54F0 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = RCTTypeSafety; - target = D20469A9A1E5CFB26045EAEBE3F88E5E /* RCTTypeSafety */; - targetProxy = 892AD86F4A0F4C102B509776727DA53F /* PBXContainerItemProxy */; + name = MMKVCore; + target = AC8AE887C706A43711D115E69B9D988A /* MMKVCore */; + targetProxy = FBE6CFB7A627C4C5EA3015FCCFBED997 /* PBXContainerItemProxy */; }; - 3FD2C54AF777811EAF0FE410CCE2922D /* PBXTargetDependency */ = { + 44B047DE58CC2E0DF8D785B65428F051 /* PBXTargetDependency */ = { isa = PBXTargetDependency; name = "rn-extensions-share"; target = A238B7CE3865946D1F214E1FE0023AAE /* rn-extensions-share */; - targetProxy = 6BEECFE940EE57446010093679E6B7A9 /* PBXContainerItemProxy */; + targetProxy = 974E17A6885DD7F43107D27F18AB289E /* PBXContainerItemProxy */; }; - 3FD79A7F9328F6BDB055B2CEF9F44A3C /* PBXTargetDependency */ = { + 44E2BEFE7373D5B6604A64F37BAEC984 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = EXConstants; - target = 6C1893932A69822CBE3502F2E0BCFB6D /* EXConstants */; - targetProxy = 4621FDA576BF2B472869E7CB1260B76B /* PBXContainerItemProxy */; - }; - 3FEDF2FAF167273B1C4A91B340D00172 /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = "React-RCTBlob"; - target = 95D98F901D07557EF7CA38D3F03832C5 /* React-RCTBlob */; - targetProxy = 44E1E495CCA73C2274F80B0088313C7C /* PBXContainerItemProxy */; + name = EXAV; + target = 13D7009C3736FB694854D88BAD4742B6 /* EXAV */; + targetProxy = 310CC4FA717221B905091E112A652D95 /* PBXContainerItemProxy */; }; - 405628134675E977826D5B55DE8B79F2 /* PBXTargetDependency */ = { + 45535BE9CB6BB8AC71EB9EFDEC832F79 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = React; - target = 1BEE828C124E6416179B904A9F66D794 /* React */; - targetProxy = 8A0B00CFF1353226D35D54AE02D03116 /* PBXContainerItemProxy */; + name = EXAV; + target = 13D7009C3736FB694854D88BAD4742B6 /* EXAV */; + targetProxy = 8A8C925116AD0498EE4D8F9C13F3C116 /* PBXContainerItemProxy */; }; - 41242D1647ADB5D532DD19B3ED2D82DF /* PBXTargetDependency */ = { + 45DA3324EE98C916E5487C158DB30B2D /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = EXHaptics; - target = 409F3A0DB395F53FFB6AB30E5CD8ACD1 /* EXHaptics */; - targetProxy = 85BDF133B295BC6D64969F4CE288633B /* PBXContainerItemProxy */; + name = EXConstants; + target = 6C1893932A69822CBE3502F2E0BCFB6D /* EXConstants */; + targetProxy = 73734210D8EC2A61D81463E822580737 /* PBXContainerItemProxy */; }; - 4140BEEF702F1C5D47AA4757117E7258 /* PBXTargetDependency */ = { + 45FCCF0B304B7F57CF49CB6E1641FA1F /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = "React-RCTImage"; - target = 4F265533AAB7C8985856EC78A33164BB /* React-RCTImage */; - targetProxy = B41E3F3657F47DF04714B73450C924B7 /* PBXContainerItemProxy */; + name = "React-RCTSettings"; + target = 680299219D3A48D42A648AF6706275A9 /* React-RCTSettings */; + targetProxy = 4EFBA50D264293BBBF7C9708265B8136 /* PBXContainerItemProxy */; }; - 4198DBF717060F37ECD20B06242ED852 /* PBXTargetDependency */ = { + 4602FA2E19C2E8BEED50BCD45FED4E60 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = EXFileSystem; - target = 868B90C74770285449C60DBA82181479 /* EXFileSystem */; - targetProxy = 01DDCD1A86DE38D395F5932F9260EC43 /* PBXContainerItemProxy */; + name = RNConfigReader; + target = DC0D417AC8ABB7AA10C20A5E0F065812 /* RNConfigReader */; + targetProxy = 4CC20F6B4C46F124BD52B6CB4848091C /* PBXContainerItemProxy */; }; - 42130F32E5ACBA11931B8505FBA96DB1 /* PBXTargetDependency */ = { + 461139143EFCB7F499EE255982A32E79 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = "React-RCTText"; - target = DBD2D83E10F8B7D3F4E0E34E6A9FCFA6 /* React-RCTText */; - targetProxy = 4C4BE413FB50613860EB7B1786D87397 /* PBXContainerItemProxy */; + name = glog; + target = D0EFEFB685D97280256C559792236873 /* glog */; + targetProxy = 0BBDE93517353604555E5BD84582BF09 /* PBXContainerItemProxy */; }; - 42376891C6E3F31A8818DEA27EA39B75 /* PBXTargetDependency */ = { + 46E50A60F3AEFDEBDA85B67F1221E36D /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = FirebaseInstallations; - target = 87803597EB3F20FC46472B85392EC4FD /* FirebaseInstallations */; - targetProxy = E7587C8C3625769A6920C7C5A9E88039 /* PBXContainerItemProxy */; + name = MMKVCore; + target = AC8AE887C706A43711D115E69B9D988A /* MMKVCore */; + targetProxy = 235896ABB4FAB49FB545E8BDEFA915D8 /* PBXContainerItemProxy */; }; - 4291BCB513BB1143CE9BA33CA24FA5BE /* PBXTargetDependency */ = { + 46F470A772C978EE7B7C65EC9C5CAE4D /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = RNRootView; - target = 18B56DB36E1F066C927E49DBAE590128 /* RNRootView */; - targetProxy = 4FEAC5275490F9F0C589B5E1E727C1F7 /* PBXContainerItemProxy */; + name = RNFastImage; + target = 0BB7745637E0758DEA373456197090C6 /* RNFastImage */; + targetProxy = 160742AAA5B4A52BF364B022F3855525 /* PBXContainerItemProxy */; }; - 42A98B3B6148F4B205FDBEA7B4226514 /* PBXTargetDependency */ = { + 4737B3F749FAEF9544B1A45D5EDDE203 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = UMCore; - target = DBCB1B4965863DDD3B9DED9A0918A526 /* UMCore */; - targetProxy = 50C73AB274B6F4D5E88C1EC31A7E737F /* PBXContainerItemProxy */; + name = ReactCommon; + target = B6D5DD49633DFF0657B8C3F08EB3ABA9 /* ReactCommon */; + targetProxy = 1FB18BD0AF1F5B0936722711E7F24457 /* PBXContainerItemProxy */; }; - 42CF772E2CAE2702952A36487804CFA3 /* PBXTargetDependency */ = { + 49343C0ABBB84BDD681A6424BA08AF96 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = EXAV; - target = 13D7009C3736FB694854D88BAD4742B6 /* EXAV */; - targetProxy = 61C5AD83051A6BF988E860492C9C4E91 /* PBXContainerItemProxy */; + name = "RCT-Folly"; + target = EC55D52694092A9D0E6A78EB01207EB5 /* RCT-Folly */; + targetProxy = 5EDD417B6A79E8B84318231715FE7F0F /* PBXContainerItemProxy */; }; - 4357E184AE69844ADAAC269E238E9D76 /* PBXTargetDependency */ = { + 49F2EEBD307EAF14FE5BEF1D20B4E4E9 /* PBXTargetDependency */ = { isa = PBXTargetDependency; name = "React-Core"; target = 7ACAA9BE580DD31A5CB9D97C45D9492D /* React-Core */; - targetProxy = AF7493A2C79D0ED7BFDDA27295F323CF /* PBXContainerItemProxy */; + targetProxy = 08E25011C6C6267DE3F22AC874040AD7 /* PBXContainerItemProxy */; }; - 43ACC804C8E0A7A027E86712E67CEDC0 /* PBXTargetDependency */ = { + 4AAE14732FAA22D9559AD09C8DFF3D60 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = Flipper; - target = E63939AA6EFD3D6A8C09E45929F11DBD /* Flipper */; - targetProxy = 8A60A62A40131405910850D4FE89734A /* PBXContainerItemProxy */; + name = RNFBApp; + target = 90D0DE2F3348233618414728C35311CA /* RNFBApp */; + targetProxy = E51421B36B426FE684E9D90356B4FA9D /* PBXContainerItemProxy */; }; - 43ECE30E8D4E874AF146B44B4B275D15 /* PBXTargetDependency */ = { + 4B0767C85C2E8F7E4B333CD85B788A10 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = FirebaseCoreDiagnostics; + target = 620E05868772C10B4920DC7E324F2C87 /* FirebaseCoreDiagnostics */; + targetProxy = 780B3BE9270809D852F121E0A2FB47CD /* PBXContainerItemProxy */; + }; + 4B336F1FD958DF1A981C3749982230F1 /* PBXTargetDependency */ = { isa = PBXTargetDependency; name = "RCT-Folly"; target = EC55D52694092A9D0E6A78EB01207EB5 /* RCT-Folly */; - targetProxy = 6A4F6E8189639BE11C070C6B2C17D163 /* PBXContainerItemProxy */; + targetProxy = 33EE6C52FF662D0963453003C92DF5F0 /* PBXContainerItemProxy */; }; - 448750D1387299A1B3A26BEAD4C7CB0F /* PBXTargetDependency */ = { + 4B51FE4A9647911EDCF763916E0AC771 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = "React-Core"; - target = 7ACAA9BE580DD31A5CB9D97C45D9492D /* React-Core */; - targetProxy = B063359200A909D66F90C809B36DDE45 /* PBXContainerItemProxy */; + name = RCTTypeSafety; + target = D20469A9A1E5CFB26045EAEBE3F88E5E /* RCTTypeSafety */; + targetProxy = 6392693E2CA61F1B9A56B734EAF9D431 /* PBXContainerItemProxy */; }; - 44B5715DFD000752CED272D0ADF4CCA4 /* PBXTargetDependency */ = { + 4B815D8395694438A7A16CD6200180A1 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = SDWebImage; - target = 3847153A6E5EEFB86565BA840768F429 /* SDWebImage */; - targetProxy = 7D53C9C4318E1EA1729F3027FBA7B746 /* PBXContainerItemProxy */; + name = nanopb; + target = D2B5E7DCCBBFB32341D857D01211A1A3 /* nanopb */; + targetProxy = 4903262CAF2C1DF75E143EFB35657BC2 /* PBXContainerItemProxy */; }; - 45184D9F60E265D302870523053E04B3 /* PBXTargetDependency */ = { + 4BBBC862F86F9726FF87B44423295427 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = "hermes-engine"; - target = 985FEA01F314F3C00F0C1E1181E6C4A5 /* hermes-engine */; - targetProxy = A9D977FC9634D760F716CBF55AEA2375 /* PBXContainerItemProxy */; + name = FBLazyVector; + target = 8CC4EAA817AA86310D1900F1DAB3580F /* FBLazyVector */; + targetProxy = F6D1926DF54A5AD99525E6569519AFF0 /* PBXContainerItemProxy */; }; - 454D18E4665AA10CD37FD76389ED4004 /* PBXTargetDependency */ = { + 4C1064148DE0E22E054B0BD383CC8611 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = React; - target = 1BEE828C124E6416179B904A9F66D794 /* React */; - targetProxy = 56B08E369EF25875B67F3DBDF67BF35F /* PBXContainerItemProxy */; + name = SDWebImage; + target = 3847153A6E5EEFB86565BA840768F429 /* SDWebImage */; + targetProxy = CFE2014BC2CC541DD04EA412FAC4CAB8 /* PBXContainerItemProxy */; }; - 458D68136C04A057A871D363D6C3D00F /* PBXTargetDependency */ = { + 4C27202A1800EB9345FD2360E32A85BB /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = "react-native-jitsi-meet"; - target = D39AB631E8050865DE01F6D5678797D2 /* react-native-jitsi-meet */; - targetProxy = 686621BCA13D7BDEAF77E40F9A066702 /* PBXContainerItemProxy */; + name = "React-Core"; + target = 7ACAA9BE580DD31A5CB9D97C45D9492D /* React-Core */; + targetProxy = 63838E65DE7EBC94117B72FC7462F0C0 /* PBXContainerItemProxy */; }; - 45F36F7E5FFC97AB19834B4D0E54217E /* PBXTargetDependency */ = { + 4CE75CC098F4FCAB3EFE964A82807CCA /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = PromisesObjC; - target = 2BBF7206D7FAC92C82A042A99C4A98F8 /* PromisesObjC */; - targetProxy = A2DE261CBA623A2CD1007C7CB5554EEE /* PBXContainerItemProxy */; + name = FBReactNativeSpec; + target = C3496D0495E700CF08A90C41EA8FA4BB /* FBReactNativeSpec */; + targetProxy = 86958CA324957D8C84CF9EBEF27CC77F /* PBXContainerItemProxy */; }; - 45F37FA76C505C86479B9A41BFFE9B05 /* PBXTargetDependency */ = { + 4CF0C42F033B767A503A7A5A8A367C1E /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = RNCAsyncStorage; - target = 89F573A6B1292B3B2296B2206BFDC3D7 /* RNCAsyncStorage */; - targetProxy = C882B8D9A38A935E23460C4939E0326C /* PBXContainerItemProxy */; + name = Yoga; + target = 2B25F90D819B9ADF2AF2D8733A890333 /* Yoga */; + targetProxy = 9E96B709E629B5E44D526ABF366BA4CF /* PBXContainerItemProxy */; }; - 4618914ED41B387104F6ECA6AD76E506 /* PBXTargetDependency */ = { + 4D4972FD2EC1C1FD99F2B4AB0D9A046D /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = RCTTypeSafety; - target = D20469A9A1E5CFB26045EAEBE3F88E5E /* RCTTypeSafety */; - targetProxy = 11363DFCDEC63C986A2C50FAF40CD1C9 /* PBXContainerItemProxy */; + name = "react-native-simple-crypto"; + target = D985A509BFE270C95EDCBE6B4CBAF189 /* react-native-simple-crypto */; + targetProxy = DDD621D5CC0E905054AB7F425F42002E /* PBXContainerItemProxy */; }; - 463C419D9CD036D7C5C7213CCEA53EAD /* PBXTargetDependency */ = { + 4D5E187E5132C5A8211C12AAF6185E2C /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = "boost-for-react-native"; - target = ED2506AE7DE35D654F61254441EA7155 /* boost-for-react-native */; - targetProxy = E9DAD30CD3B069456BB48F7F1240D096 /* PBXContainerItemProxy */; + name = "React-Core"; + target = 7ACAA9BE580DD31A5CB9D97C45D9492D /* React-Core */; + targetProxy = 3E110B29187D50729234F7CCAC875A64 /* PBXContainerItemProxy */; }; - 467FCD9997BF1229D4479AC347766A41 /* PBXTargetDependency */ = { + 4F1BE41868A7DB6C85A4EBE7A88DC54E /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = UMCameraInterface; - target = 0A915EE9D35CA5636731F8763E774951 /* UMCameraInterface */; - targetProxy = A9772F8FEF70B9517EB8CCB9142B82C1 /* PBXContainerItemProxy */; + name = "React-cxxreact"; + target = 463F41A7E8B252F8AC5024DA1F4AF6DA /* React-cxxreact */; + targetProxy = 11B2FC65FB640E80310C28DB87714F45 /* PBXContainerItemProxy */; }; - 476452B5D3C6A6AB7EDE7CF2794BBD4B /* PBXTargetDependency */ = { + 502DFE72AEACCC19A74D9231DA111F5B /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = "React-Core-AccessibilityResources"; - target = 7A020DAB6F3F0BA0A6D9946E84B38B7F /* React-Core-AccessibilityResources */; - targetProxy = B04C7C6DF48708B5C0A3B83EB1ADDE13 /* PBXContainerItemProxy */; + name = EXAppleAuthentication; + target = 28A005E00FB77DDB2543047A07ED99A5 /* EXAppleAuthentication */; + targetProxy = 3F4CB6E8271900A60A72E4A7BD924F78 /* PBXContainerItemProxy */; }; - 479960C4AA6B3A33AEA092B857CB012F /* PBXTargetDependency */ = { + 50C71934CF7A737F3341E0362ACF279B /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = "boost-for-react-native"; - target = ED2506AE7DE35D654F61254441EA7155 /* boost-for-react-native */; - targetProxy = 076AB81269762466458570D439E8A6CD /* PBXContainerItemProxy */; + name = "react-native-simple-crypto"; + target = D985A509BFE270C95EDCBE6B4CBAF189 /* react-native-simple-crypto */; + targetProxy = AC0B77CB10F2690FDE9A16D00F531BED /* PBXContainerItemProxy */; }; - 48E0C5099E0CB4EBE379D7880E3D5156 /* PBXTargetDependency */ = { + 50D0F0DB19805FB44444C94929E7BB61 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = "RCT-Folly"; - target = EC55D52694092A9D0E6A78EB01207EB5 /* RCT-Folly */; - targetProxy = F766CC08FD80654BB489B1E09BA608C0 /* PBXContainerItemProxy */; + name = UMCore; + target = DBCB1B4965863DDD3B9DED9A0918A526 /* UMCore */; + targetProxy = 3550A33949254D5C8440A0FB1D264841 /* PBXContainerItemProxy */; }; - 497DC10D59E214E595B243244DA1F097 /* PBXTargetDependency */ = { + 515615EC99F5998265B115C85E75C085 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = "Flipper-RSocket"; - target = 1FAAE067C1BFDEA17DFB657C3379AB56 /* Flipper-RSocket */; - targetProxy = 0C3F38878C8E5F314186CCB0CF6BED57 /* PBXContainerItemProxy */; + name = "React-Core"; + target = 7ACAA9BE580DD31A5CB9D97C45D9492D /* React-Core */; + targetProxy = A804023D553DC9AC3FCC58EF65F8799D /* PBXContainerItemProxy */; }; - 49BBA1C24F1F3DC42D10CDF3EF1FCF05 /* PBXTargetDependency */ = { + 517FFA3636E27AE0BDB6C3E4E3059326 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = FBReactNativeSpec; - target = C3496D0495E700CF08A90C41EA8FA4BB /* FBReactNativeSpec */; - targetProxy = 885D5302CB85F454FC739897C98443C6 /* PBXContainerItemProxy */; + name = "react-native-blur"; + target = EEBB8D24F2B3531A5C5DAA668D02331F /* react-native-blur */; + targetProxy = D7F5FFDF58D66D2528658F548A80A849 /* PBXContainerItemProxy */; }; - 49C3C7AEE2D1479D1EC24809CCED9687 /* PBXTargetDependency */ = { + 522F76A3E9DBBF6A466BA9053627FAD2 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = "React-jsi"; - target = FA877ADC442CB19CF61793D234C8B131 /* React-jsi */; - targetProxy = 0CD8FBF5C843EC4264FE8CB9C75402AC /* PBXContainerItemProxy */; + name = "react-native-document-picker"; + target = D11E74324175FE5B0E78DB046527F233 /* react-native-document-picker */; + targetProxy = B6E849EF9D1C9AE305336F7216155295 /* PBXContainerItemProxy */; }; - 49FCAF70EDB0E0CC3A63D4CA082248F1 /* PBXTargetDependency */ = { + 52536D2E64A728C8C409E2586BCB58FC /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = "React-jsi"; - target = FA877ADC442CB19CF61793D234C8B131 /* React-jsi */; - targetProxy = 75490B4E851772D5FE6CE8608A2B12CD /* PBXContainerItemProxy */; + name = "hermes-engine"; + target = 985FEA01F314F3C00F0C1E1181E6C4A5 /* hermes-engine */; + targetProxy = 1ED9D4D7FC1B88E4D3A93F7D61165BB3 /* PBXContainerItemProxy */; }; - 4A81C9E8F5C7D67E9BC52CC4B28B10F2 /* PBXTargetDependency */ = { + 525F56253205A8A3BD2093849751B1BF /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = RNCPicker; - target = D00F24222F074B31C56DC6D05E806A35 /* RNCPicker */; - targetProxy = F2DB1E10BB18B6C01FF8C19D2BA6EEEA /* PBXContainerItemProxy */; + name = "React-cxxreact"; + target = 463F41A7E8B252F8AC5024DA1F4AF6DA /* React-cxxreact */; + targetProxy = E2A7E63395C1754EC6612184F4204A4B /* PBXContainerItemProxy */; }; - 4A90C854B9445A9AE74F38675184422D /* PBXTargetDependency */ = { + 52834150492F5E53C90E8926A5972F64 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = "react-native-document-picker"; - target = D11E74324175FE5B0E78DB046527F233 /* react-native-document-picker */; - targetProxy = D42DC7FC3A18A4DADE40843C12369E83 /* PBXContainerItemProxy */; + name = "React-RCTBlob"; + target = 95D98F901D07557EF7CA38D3F03832C5 /* React-RCTBlob */; + targetProxy = B99FA612E32E6DDB8DD3F0F4B007260D /* PBXContainerItemProxy */; }; - 4A9ECB304B438785AF0FAD6CB9F1FE69 /* PBXTargetDependency */ = { + 529B3F02B2BED97B72D19D2C93E154B3 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = nanopb; - target = D2B5E7DCCBBFB32341D857D01211A1A3 /* nanopb */; - targetProxy = AB3A4CE36B0F895BA64A48F9DC3D1545 /* PBXContainerItemProxy */; + name = ReactCommon; + target = B6D5DD49633DFF0657B8C3F08EB3ABA9 /* ReactCommon */; + targetProxy = 406D337587A95C74EA151AE9930CEFB7 /* PBXContainerItemProxy */; }; - 4AA55239477577895225169EDCDC1923 /* PBXTargetDependency */ = { + 52C2F3B9EF1E82AB272413281EDE338F /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = "React-RCTLinking"; - target = 6FE9147F8AAA4DE676C190F680F47AE2 /* React-RCTLinking */; - targetProxy = 84CD172C47BD97717943DAC8844763EC /* PBXContainerItemProxy */; + name = "react-native-orientation-locker"; + target = 1092C13E1E1172209537C28D0C8D4D3C /* react-native-orientation-locker */; + targetProxy = 56DD114D59C4A38193497B5C7391CD5E /* PBXContainerItemProxy */; }; - 4B22F750E4C07276D2A655B25A97346A /* PBXTargetDependency */ = { + 53D7A5F5995E4E2471570CE7801A9728 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = React; - target = 1BEE828C124E6416179B904A9F66D794 /* React */; - targetProxy = 9F2B87D20F4F849678B0C343AB046669 /* PBXContainerItemProxy */; + name = FirebaseCoreDiagnostics; + target = 620E05868772C10B4920DC7E324F2C87 /* FirebaseCoreDiagnostics */; + targetProxy = 870E4CE31CA44BF92A1DF702DD9E1477 /* PBXContainerItemProxy */; }; - 4C00D4B0499506222AC4335E74B4C0FC /* PBXTargetDependency */ = { + 546FF109AB8A64A790F6AC6BCE24F333 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = UMPermissionsInterface; - target = F7845084F0CF03F54107EEF7411760AD /* UMPermissionsInterface */; - targetProxy = 50935636121438038C8A0CF875E08FC1 /* PBXContainerItemProxy */; + name = "React-jsiexecutor"; + target = DA0709CAAD589C6E7963495210438021 /* React-jsiexecutor */; + targetProxy = EEDB3D2DFCCE54013EEC5D3E22BCF527 /* PBXContainerItemProxy */; }; - 4C33B34B7075C530C2CBAE11C078C834 /* PBXTargetDependency */ = { + 551A03644613E2BAEB20EFEF2707FE5F /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = "React-Core"; - target = 7ACAA9BE580DD31A5CB9D97C45D9492D /* React-Core */; - targetProxy = 4FF2B304A62C3F3BBA2A496E856BEC34 /* PBXContainerItemProxy */; + name = FirebaseAnalytics; + target = C49E7A4D59E5C8BE8DE9FB1EFB150185 /* FirebaseAnalytics */; + targetProxy = 99EC578A11D65E8FA278E7C2BD835460 /* PBXContainerItemProxy */; }; - 4C40519348AC841056306D05B3CD57F9 /* PBXTargetDependency */ = { + 554BD2F9150C40BCB5EED10C3266DBE6 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = CocoaAsyncSocket; - target = 6083682834ABE0AE7BD1CBF06CADD036 /* CocoaAsyncSocket */; - targetProxy = 0215B01325232D7A2B2DAE2E60B07C68 /* PBXContainerItemProxy */; + name = "React-RCTActionSheet"; + target = 11989A5E568B3B69655EE0C13DCDA3F9 /* React-RCTActionSheet */; + targetProxy = B6611244667D4A897092F7490053FD1E /* PBXContainerItemProxy */; }; - 4C6C7C7084F1BB63703742B6A2A97C7C /* PBXTargetDependency */ = { + 55A6414CE43314A0FF74A4A655D2ACE6 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = UMCore; - target = DBCB1B4965863DDD3B9DED9A0918A526 /* UMCore */; - targetProxy = 1A4E266BA5AFFBE203AB35577630D4C4 /* PBXContainerItemProxy */; - }; - 4CB08761A2E77244704DF82A8A29E6B6 /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = "boost-for-react-native"; - target = ED2506AE7DE35D654F61254441EA7155 /* boost-for-react-native */; - targetProxy = 5A88345FAF41187CC2F47ABFAB6C902C /* PBXContainerItemProxy */; - }; - 4D2305ABF42C88EF227B676124986BB2 /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = React; - target = 1BEE828C124E6416179B904A9F66D794 /* React */; - targetProxy = 279C02DB7F3C80A08B8750194E3D6AE7 /* PBXContainerItemProxy */; + name = RNLocalize; + target = B51433D546A38C51AA781F192E8836F8 /* RNLocalize */; + targetProxy = EBF9C4891B8CE22BE44DBF54AA907C64 /* PBXContainerItemProxy */; }; - 4E399426831F7EB26EE9C24E11DDAB57 /* PBXTargetDependency */ = { + 56697F34BC36B5BE8FFD23892CCB03CD /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = GoogleDataTransportCCTSupport; - target = F4F25FCAC51B51FD5F986EB939BF1F87 /* GoogleDataTransportCCTSupport */; - targetProxy = CFDAA064A932053E96666F4AB236B54A /* PBXContainerItemProxy */; + name = EXImageLoader; + target = 263266A9E29FFF0E9C8CA0E4582BFCF4 /* EXImageLoader */; + targetProxy = B8B7839169A6CFA4D6B4192C3D2ECEB5 /* PBXContainerItemProxy */; }; - 4EAA4C5EFF92D824A94BC379FF2ECB95 /* PBXTargetDependency */ = { + 567B3A37561FE513B4386D27FE59E5F2 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = "OpenSSL-Universal"; - target = B9ED5194E665042005069EF06C82A050 /* OpenSSL-Universal */; - targetProxy = C501FCEB03D9678168C24393F9219658 /* PBXContainerItemProxy */; + name = FirebaseInstallations; + target = 87803597EB3F20FC46472B85392EC4FD /* FirebaseInstallations */; + targetProxy = DFBFED82281CEBBF7AE6B81ABC5A7D8D /* PBXContainerItemProxy */; }; - 4F3A78AF0E846B0721CBD23B3A755A33 /* PBXTargetDependency */ = { + 56979C41D8B6052A900C84A0F9029DDF /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = "React-jsi"; - target = FA877ADC442CB19CF61793D234C8B131 /* React-jsi */; - targetProxy = CA42AD20622A91093285F3FB21A772C4 /* PBXContainerItemProxy */; + name = UMCore; + target = DBCB1B4965863DDD3B9DED9A0918A526 /* UMCore */; + targetProxy = 629F6DC71086720B06BDECE41E7EA0A9 /* PBXContainerItemProxy */; }; - 4F96F86C76C4F4600F00EBC86ED7CAAD /* PBXTargetDependency */ = { + 56B9E3A020A4042DD67E701E152DC862 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = "react-native-appearance"; - target = 3FF2E78BB54ED67CA7FAD8DA2590DBEE /* react-native-appearance */; - targetProxy = 1B4813C2FC788332F25B8FA4345599DF /* PBXContainerItemProxy */; + name = "React-RCTNetwork"; + target = 651511D7DA7F07F9FC9AA40A2E86270D /* React-RCTNetwork */; + targetProxy = 44F6CFAC459B5DCE1044F030D8A85D04 /* PBXContainerItemProxy */; }; - 50F3131390BB5F621FFECF4DF1B1AAD6 /* PBXTargetDependency */ = { + 579416EB96762AFE230795C7EFC47291 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = glog; - target = D0EFEFB685D97280256C559792236873 /* glog */; - targetProxy = 81C5969009BEC4DC662E5949901D5AE0 /* PBXContainerItemProxy */; + name = "React-runtimeexecutor"; + target = 54EB12219122432FA744088BC5A680D2 /* React-runtimeexecutor */; + targetProxy = 7D6ABB44F849FF7710C43C38BEFB70FF /* PBXContainerItemProxy */; }; - 5150D075C8BA6B2EF4AA6C05A3F271F0 /* PBXTargetDependency */ = { + 57C8224325BCFEF8EFF07DDC567C7C28 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = ReactNativeART; - target = 90148E8FD1C445D7A019D504FA8CBC53 /* ReactNativeART */; - targetProxy = 52BC0FD32310DC90777AFCE85B5CD073 /* PBXContainerItemProxy */; + name = React; + target = 1BEE828C124E6416179B904A9F66D794 /* React */; + targetProxy = 6332E763E7F4CF7102EBE7A5076FCFD4 /* PBXContainerItemProxy */; }; - 5160311C4B3DF8B82A18573769318B2E /* PBXTargetDependency */ = { + 58895C123B710A059640ACBAD41D9980 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = "Flipper-RSocket"; - target = 1FAAE067C1BFDEA17DFB657C3379AB56 /* Flipper-RSocket */; - targetProxy = 454D6D81E6F834EF9B96BE25F8479900 /* PBXContainerItemProxy */; + name = "React-jsi"; + target = FA877ADC442CB19CF61793D234C8B131 /* React-jsi */; + targetProxy = D394F230ACFE315F87AFE088C016289A /* PBXContainerItemProxy */; }; - 521B2483558BC702A7B5C7CBF390B5B2 /* PBXTargetDependency */ = { + 58D24B4E51D0FFF286A9ED6D6B7B0468 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = "react-native-simple-crypto"; - target = D985A509BFE270C95EDCBE6B4CBAF189 /* react-native-simple-crypto */; - targetProxy = 10C8C0FD90944AE3B74ED76BE7A803D4 /* PBXContainerItemProxy */; + name = RCTTypeSafety; + target = D20469A9A1E5CFB26045EAEBE3F88E5E /* RCTTypeSafety */; + targetProxy = 8F9EF5122490A5DD42E80A0B7494DBB5 /* PBXContainerItemProxy */; }; - 5231FD2A12D72DB5705C671DAAB0D7F9 /* PBXTargetDependency */ = { + 594E52BC224FB15ED2A47B15B7AB2347 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = EXVideoThumbnails; - target = 4A95B7CD1D5F80C5E8CD9CDA00D41F70 /* EXVideoThumbnails */; - targetProxy = 61915254BD5BB8B37E9426BCA441587C /* PBXContainerItemProxy */; + name = "React-jsi"; + target = FA877ADC442CB19CF61793D234C8B131 /* React-jsi */; + targetProxy = 9D84BD63B3A3F5338808ACC21B3B900A /* PBXContainerItemProxy */; }; - 525FDB395FAA58F6B5DFEE943AD49A78 /* PBXTargetDependency */ = { + 59C08816FA4B5CF71E536CC6067B11D6 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = RNImageCropPicker; - target = 0D82774D2A533D3FFAE27CAB4A6E9CB2 /* RNImageCropPicker */; - targetProxy = B1939998EA45EC76E0954AC54747E322 /* PBXContainerItemProxy */; + name = UMSensorsInterface; + target = 2038C6F97563AAD6162C284B3EDD5B3B /* UMSensorsInterface */; + targetProxy = 92DAEB57565EAACF997AF82B27D7C8C0 /* PBXContainerItemProxy */; }; - 52CFD0E3FEB38D58F30BE7EFE8ADAB1E /* PBXTargetDependency */ = { + 5AD517AA51CD87165E41724585FD3AAF /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = "RCT-Folly"; - target = EC55D52694092A9D0E6A78EB01207EB5 /* RCT-Folly */; - targetProxy = A9C61C311041EAB3E6EB81ECF1E3DCE1 /* PBXContainerItemProxy */; + name = UMCore; + target = DBCB1B4965863DDD3B9DED9A0918A526 /* UMCore */; + targetProxy = A2397D5C895CBA2AF70EE8C7ADCAA4CA /* PBXContainerItemProxy */; }; - 537E5420319C3BA21E7B75861789C1A4 /* PBXTargetDependency */ = { + 5AF32D833B185A62DD683FF408521803 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = "React-perflogger"; - target = F1E2583679398CB5F4D2B3272E9B198F /* React-perflogger */; - targetProxy = 7DD7D4C4DD834B34F5D0FBD8F217710E /* PBXContainerItemProxy */; + name = GoogleAppMeasurement; + target = B53D977A951AFC38B21751B706C1DF83 /* GoogleAppMeasurement */; + targetProxy = 81973EBB8FF7C0A694264133D574F85B /* PBXContainerItemProxy */; }; - 53B567ED4310A11C9F1EC12CE8A462E1 /* PBXTargetDependency */ = { + 5B517F477E13C020B01CAE1CF0612A14 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = ReactNativeART; - target = 90148E8FD1C445D7A019D504FA8CBC53 /* ReactNativeART */; - targetProxy = 277D2F067F34FDC2E7E21CCE33B25F23 /* PBXContainerItemProxy */; + name = EXHaptics; + target = 409F3A0DB395F53FFB6AB30E5CD8ACD1 /* EXHaptics */; + targetProxy = 4AAA30FA60941F0F4C119128377A9B96 /* PBXContainerItemProxy */; }; - 53E6E7AB1435109529CB119E993C83CA /* PBXTargetDependency */ = { + 5B7B3E3CAB655B01F46E0D2A95CED0C1 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = UMPermissionsInterface; - target = F7845084F0CF03F54107EEF7411760AD /* UMPermissionsInterface */; - targetProxy = DF694CF75C15DF1A50318767A474FB8E /* PBXContainerItemProxy */; + name = "react-native-safe-area-context"; + target = BD9A27D8398DEB3205D3F8937B0672A0 /* react-native-safe-area-context */; + targetProxy = 9639887EF854EDA854482EE53ECB4750 /* PBXContainerItemProxy */; }; - 544E1C0FEAC7D85C235CA8563BA586FA /* PBXTargetDependency */ = { + 5BE7BA94E702536C453C260D7A74B8E9 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = RNCAsyncStorage; - target = 89F573A6B1292B3B2296B2206BFDC3D7 /* RNCAsyncStorage */; - targetProxy = C2500CBE34D0D19CCAF8270AE7CDC438 /* PBXContainerItemProxy */; + name = "Flipper-RSocket"; + target = 1FAAE067C1BFDEA17DFB657C3379AB56 /* Flipper-RSocket */; + targetProxy = 4627288C3C60CC282917D62A05DF448F /* PBXContainerItemProxy */; }; - 545A4AF9A1D8CB1B153D4B10EE69AA3F /* PBXTargetDependency */ = { + 5C53E848C76E93AD6BA86FE294F1B595 /* PBXTargetDependency */ = { isa = PBXTargetDependency; name = GoogleUtilities; target = 8D7F5D5DD528D21A72DC87ADA5B12E2D /* GoogleUtilities */; - targetProxy = 57433F28D15E9041CE8E3C09FDE7CD41 /* PBXContainerItemProxy */; + targetProxy = 53E03B66754D8CBB280E396DC3B94ABE /* PBXContainerItemProxy */; + }; + 5C78CD8DAC6490DCFE2BF6F359CEA2CC /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = RNFBCrashlytics; + target = E3573FB7AF659C42B699003C73722241 /* RNFBCrashlytics */; + targetProxy = 4638A9B08C598B6CA8C33B70111EF053 /* PBXContainerItemProxy */; }; - 54C54B474FC5C7C8CD9B783B34D06AEE /* PBXTargetDependency */ = { + 5C9F0D859AA20CE80864A109179542ED /* PBXTargetDependency */ = { isa = PBXTargetDependency; name = "rn-extensions-share"; target = A238B7CE3865946D1F214E1FE0023AAE /* rn-extensions-share */; - targetProxy = 292019F7EB814975516FDC83D14BF1C5 /* PBXContainerItemProxy */; + targetProxy = 87842835A5F8F3B513C0217F7AD9F2E9 /* PBXContainerItemProxy */; }; - 561EC5CDCEAA5D69269D16D19327D42D /* PBXTargetDependency */ = { + 5CB1897C025989DE83F9138FC0AA0E8E /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = "Flipper-Folly"; - target = B6D39E083AE0FF45BA30D7CDF6198A03 /* Flipper-Folly */; - targetProxy = A64ED1E2B214FAB6D8630AB5D37AE7FF /* PBXContainerItemProxy */; + name = "React-cxxreact"; + target = 463F41A7E8B252F8AC5024DA1F4AF6DA /* React-cxxreact */; + targetProxy = 7B2C0E123CF66050C2F11A56C24BA281 /* PBXContainerItemProxy */; }; - 5627AB4EA6F92CA91EB38B4EDC5528C3 /* PBXTargetDependency */ = { + 5D2ED10BB310DF898AF0AE8EC397BE83 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = EXAppleAuthentication; - target = 28A005E00FB77DDB2543047A07ED99A5 /* EXAppleAuthentication */; - targetProxy = 1EAEB2F6FB660F09F116111CC17516BF /* PBXContainerItemProxy */; + name = RNCMaskedView; + target = 1A0445474DA11CA659C4BCC5AB64B1BF /* RNCMaskedView */; + targetProxy = 1511B62DC745FC329035214747B8E425 /* PBXContainerItemProxy */; }; - 569856BB0D18FBA78DC60640A274C237 /* PBXTargetDependency */ = { + 5DEE5D35F2CAD449E0016AC1E37B580C /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = "React-cxxreact"; - target = 463F41A7E8B252F8AC5024DA1F4AF6DA /* React-cxxreact */; - targetProxy = EDEBB2CCDE899D55B6CBF4506F4792FF /* PBXContainerItemProxy */; + name = "React-runtimeexecutor"; + target = 54EB12219122432FA744088BC5A680D2 /* React-runtimeexecutor */; + targetProxy = 8B07AF98368D6D90E2EDAFEF087A8004 /* PBXContainerItemProxy */; }; - 56DDA995365F076F7D389167353DBA30 /* PBXTargetDependency */ = { + 5DFB938700CCDB8458B5F96A23813F3A /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = UMImageLoaderInterface; - target = 97C4DE84FA3CC4EC06AA6D8C249949B7 /* UMImageLoaderInterface */; - targetProxy = A0537CDF4FC9C0FF05C9108590B40E71 /* PBXContainerItemProxy */; + name = "React-jsiexecutor"; + target = DA0709CAAD589C6E7963495210438021 /* React-jsiexecutor */; + targetProxy = 69D7187539A0A356BD0A0F44A2C3B8DB /* PBXContainerItemProxy */; }; - 57097B63797E713D7643C6A5E3439E5F /* PBXTargetDependency */ = { + 5E3585C1805901F148B1CF09F547FF27 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = FirebaseCore; - target = 4402AFF83DBDC4DD07E198685FDC2DF2 /* FirebaseCore */; - targetProxy = EDE881A95C0959CE34D4B6960DD9BAED /* PBXContainerItemProxy */; + name = "OpenSSL-Universal"; + target = B9ED5194E665042005069EF06C82A050 /* OpenSSL-Universal */; + targetProxy = 3A12D936AA0DE53F1953D6889A0A0034 /* PBXContainerItemProxy */; }; - 574DE9429C7187EF0B05ADCD559B20C8 /* PBXTargetDependency */ = { + 5E9894A5DFCBC68C988F4C80A07C4030 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = "React-RCTText"; - target = DBD2D83E10F8B7D3F4E0E34E6A9FCFA6 /* React-RCTText */; - targetProxy = 29331713BB79CA4F09D6877A88AEEE16 /* PBXContainerItemProxy */; + name = GoogleDataTransport; + target = 5C0371EE948D0357B8EE0E34ABB44BF0 /* GoogleDataTransport */; + targetProxy = E9FFAE2235F0B2B7E0AEDD3117B35882 /* PBXContainerItemProxy */; }; - 5820E5397448F2FA7C9A3A3DD3057D4B /* PBXTargetDependency */ = { + 5EDBBEC07A23598F754577E66579FA1D /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = "React-RCTSettings"; - target = 680299219D3A48D42A648AF6706275A9 /* React-RCTSettings */; - targetProxy = 4EFD62DE1CC7CA29ADC3F210E0B8D3AD /* PBXContainerItemProxy */; + name = EXPermissions; + target = 0A72FB88825FDC7D301C9DD1F8F96824 /* EXPermissions */; + targetProxy = 62AB1A48A47FC4F0BADE1E6D06A6AE72 /* PBXContainerItemProxy */; }; - 583AF72861CDF291EAB93BE58CE37279 /* PBXTargetDependency */ = { + 5F3014C553AF089B73305D8C7888E07D /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = EXKeepAwake; - target = 0CF4D9052577C85B6B8C4E957332626B /* EXKeepAwake */; - targetProxy = 578226052999AC58B77081D467E47D82 /* PBXContainerItemProxy */; + name = PromisesObjC; + target = 2BBF7206D7FAC92C82A042A99C4A98F8 /* PromisesObjC */; + targetProxy = 78A2833AE1AF44AB4036466B4A59D37E /* PBXContainerItemProxy */; }; - 58B547A7BBCB0ADFD2926159952724B4 /* PBXTargetDependency */ = { + 60712CFD07B4A7E038293D114B0D9A06 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = RCTRequired; - target = E7E7CE52C8C68B17224FF8C262D80ABF /* RCTRequired */; - targetProxy = 2608C311CF0EEAD8A095F6B7681EC6A6 /* PBXContainerItemProxy */; + name = EXVideoThumbnails; + target = 4A95B7CD1D5F80C5E8CD9CDA00D41F70 /* EXVideoThumbnails */; + targetProxy = D0D3B3D6284B34480C8B03DB1E924E5A /* PBXContainerItemProxy */; }; - 59F8129ECA3ABCA858B9461A639774EB /* PBXTargetDependency */ = { + 6144782A63AACF0C764A7C00B22CFAB1 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = UMBarCodeScannerInterface; - target = 49821C2B9E764AEDF2B35DFE9AA7022F /* UMBarCodeScannerInterface */; - targetProxy = C338639441EB00830A149DFBEA77D1B5 /* PBXContainerItemProxy */; + name = "Flipper-RSocket"; + target = 1FAAE067C1BFDEA17DFB657C3379AB56 /* Flipper-RSocket */; + targetProxy = 1F9FCB1C34BD0F861043B83AAF64E627 /* PBXContainerItemProxy */; }; - 5B0A080870D838A09FD866DA7D74B188 /* PBXTargetDependency */ = { + 617B058BFDA8F1B2DE05B1AB71849D25 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = UMFileSystemInterface; - target = 2644525CCE081E967809A8163D893A93 /* UMFileSystemInterface */; - targetProxy = 25BD70B714B19DBCC71020891CD2F0A1 /* PBXContainerItemProxy */; + name = glog; + target = D0EFEFB685D97280256C559792236873 /* glog */; + targetProxy = 821846DC0142383F1952181D5997620B /* PBXContainerItemProxy */; + }; + 61998F69B1EBBEE7AF1F4597E971AA6B /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = "Flipper-DoubleConversion"; + target = D9245543B79C09FAC40FC8B9F291536A /* Flipper-DoubleConversion */; + targetProxy = 3735EAC69F7EE988AE4D360B31C47704 /* PBXContainerItemProxy */; }; - 5C3F8F56DD46C2B45557A8625B80C45F /* PBXTargetDependency */ = { + 61CE27890EA2DC08E05FF5DB072FF465 /* PBXTargetDependency */ = { isa = PBXTargetDependency; name = "RCT-Folly"; target = EC55D52694092A9D0E6A78EB01207EB5 /* RCT-Folly */; - targetProxy = 92A9D8CD9E5F1116142508DCE5E8A643 /* PBXContainerItemProxy */; + targetProxy = 3AAEA94F9DE5B4F5CA1F8E2EF5253F7A /* PBXContainerItemProxy */; }; - 5C5EB908DA10E04B3099DDCCF58DEA2F /* PBXTargetDependency */ = { + 624B9D228F9728753146178D52BAE008 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = GoogleUtilities; - target = 8D7F5D5DD528D21A72DC87ADA5B12E2D /* GoogleUtilities */; - targetProxy = 2C500E18FA222B6BFB5F5F322160AF50 /* PBXContainerItemProxy */; + name = "react-native-cookies"; + target = ADC4ACC657481AD27F9936D08FF7F49A /* react-native-cookies */; + targetProxy = 72397F26DC4863CF287D39438A0C1130 /* PBXContainerItemProxy */; }; - 5CA15E2593F18ECBC25B0F05BB514584 /* PBXTargetDependency */ = { + 62B079F9EFF6C87182A1B98165EB3A62 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = DoubleConversion; - target = 2AB2EF542954AB1C999E03BFEF8DE806 /* DoubleConversion */; - targetProxy = 75DCAE63969055377DEDD692445B7117 /* PBXContainerItemProxy */; + name = RNConfigReader; + target = DC0D417AC8ABB7AA10C20A5E0F065812 /* RNConfigReader */; + targetProxy = D175F52312C93576BFFEDB14340BE076 /* PBXContainerItemProxy */; }; - 5CD28739EAA0F0346A5BF8C16558EEB1 /* PBXTargetDependency */ = { + 62DC3E1DDC86A24226D8CC49D627874D /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = "Flipper-Glog"; - target = 6A9637F1BC8154F777335A6420579C05 /* Flipper-Glog */; - targetProxy = B6FC306D1ABB4FC04F647F68A23BC2F5 /* PBXContainerItemProxy */; + name = "React-Core"; + target = 7ACAA9BE580DD31A5CB9D97C45D9492D /* React-Core */; + targetProxy = C5A85D053E28ACC9C10D36A4630F01CB /* PBXContainerItemProxy */; }; - 5D3D3552C81FDA0E9BF7C80A1A915AB7 /* PBXTargetDependency */ = { + 632AE0B2FECA4D32570B6EB621190D3F /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = glog; - target = D0EFEFB685D97280256C559792236873 /* glog */; - targetProxy = 08940EBF3FBAFEF55A12A9C4CE900D3A /* PBXContainerItemProxy */; + name = RNBootSplash; + target = 6677891AC2F7AB93E04BFF30B293A46B /* RNBootSplash */; + targetProxy = 44667EFCCE24F1A9FA574EF4B897A446 /* PBXContainerItemProxy */; + }; + 64316D36D0BDB5BC62137C47FDD096B1 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = "React-RCTNetwork"; + target = 651511D7DA7F07F9FC9AA40A2E86270D /* React-RCTNetwork */; + targetProxy = 08093F211F9D46A50D617B01E4F04489 /* PBXContainerItemProxy */; }; - 5D406478250DB594E71BBCA1D8CF0D6B /* PBXTargetDependency */ = { + 64438CE0D9BF3601CAB236CF1A17B763 /* PBXTargetDependency */ = { isa = PBXTargetDependency; name = EXAppleAuthentication; target = 28A005E00FB77DDB2543047A07ED99A5 /* EXAppleAuthentication */; - targetProxy = 299C29BB72E6329A925ACB176A83860C /* PBXContainerItemProxy */; + targetProxy = 55B92FD34AA73EDE825A27A6E0918501 /* PBXContainerItemProxy */; }; - 5D9E40B0BB971DDCCC0102DA0F8805C0 /* PBXTargetDependency */ = { + 652AC1D6FB911E4621ABFDF21DD13EE2 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = FirebaseAnalytics; - target = C49E7A4D59E5C8BE8DE9FB1EFB150185 /* FirebaseAnalytics */; - targetProxy = 261A72A3E9913DA2CD98E693D979301A /* PBXContainerItemProxy */; + name = libevent; + target = 04A30E186743192DFB26B0FD7DB8F250 /* libevent */; + targetProxy = A27EF49F5CF1B743868075BF89B53C3F /* PBXContainerItemProxy */; }; - 5F571588DED8CD6DC32B84A343E0B5F7 /* PBXTargetDependency */ = { + 65C983D0C557276371AEF12841B3E146 /* PBXTargetDependency */ = { isa = PBXTargetDependency; name = "React-perflogger"; target = F1E2583679398CB5F4D2B3272E9B198F /* React-perflogger */; - targetProxy = D5859FE3938A5406C81DDCC62ED70C92 /* PBXContainerItemProxy */; - }; - 5FCDF394FAF1FC06876C773403175334 /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = "Flipper-Folly"; - target = B6D39E083AE0FF45BA30D7CDF6198A03 /* Flipper-Folly */; - targetProxy = F3EEDB943F6A2D2DF5DE138B9D5B0B59 /* PBXContainerItemProxy */; - }; - 6137099DB4660D26E7A36B2F7CD0F8B8 /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = MMKVCore; - target = AC8AE887C706A43711D115E69B9D988A /* MMKVCore */; - targetProxy = 9AFDF0DC9836541520A7380F14BBC2AD /* PBXContainerItemProxy */; + targetProxy = F88BCDE178A38067C8D339AC256D87F8 /* PBXContainerItemProxy */; }; - 61833198A2228192E41DFB30E491725C /* PBXTargetDependency */ = { + 65E515B05EC34329A61D0D83E1286401 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = UMFontInterface; - target = 014495932E402CA67C37681988047CA2 /* UMFontInterface */; - targetProxy = 03D29FEA0744826FD32502024EBFB540 /* PBXContainerItemProxy */; + name = UMTaskManagerInterface; + target = 50188AAB5FAECCA9583327DBA2B0AF2B /* UMTaskManagerInterface */; + targetProxy = 94EF1DAEBBDDCBD5F8A9767282ECE82B /* PBXContainerItemProxy */; }; - 618EFDD51A669D93D418F68C6811E158 /* PBXTargetDependency */ = { + 66C05ACB9F32B3A9D24CD9CD0044233E /* PBXTargetDependency */ = { isa = PBXTargetDependency; name = GoogleUtilities; target = 8D7F5D5DD528D21A72DC87ADA5B12E2D /* GoogleUtilities */; - targetProxy = DB62BFA7230496558DE56E8BC3D4FF0F /* PBXContainerItemProxy */; + targetProxy = D6B1B152C8A783C6BBEB44505E1EC271 /* PBXContainerItemProxy */; }; - 61950E67A93F97858EDFCE1632BE83C5 /* PBXTargetDependency */ = { + 66F6F734F402F0F4F411528357905156 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = "Flipper-Folly"; - target = B6D39E083AE0FF45BA30D7CDF6198A03 /* Flipper-Folly */; - targetProxy = 43CB847F276EAAC20EB0986FE6C40906 /* PBXContainerItemProxy */; + name = RNGestureHandler; + target = B9E8F4CA2A4A8599389FEB665A9B96FF /* RNGestureHandler */; + targetProxy = 874CE7722082C35ACB7987FAE09EA105 /* PBXContainerItemProxy */; }; - 61AB096F706422DB2BEC5335A3B7A793 /* PBXTargetDependency */ = { + 67364BCB873DE1A190261E58815F1C01 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = "React-jsi"; - target = FA877ADC442CB19CF61793D234C8B131 /* React-jsi */; - targetProxy = 1DA4241F5A4CDE93750300CEE65AA8E9 /* PBXContainerItemProxy */; + name = "react-native-webview"; + target = 8D18C49071FC5370C25F5758A85BA5F6 /* react-native-webview */; + targetProxy = 953B8545DE504AEE85AB32C374319546 /* PBXContainerItemProxy */; }; - 629D67B1099A6011DF7C552DE14B49CF /* PBXTargetDependency */ = { + 67FAF439F9D0429EF067876AA2E7D42F /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = EXFileSystem; - target = 868B90C74770285449C60DBA82181479 /* EXFileSystem */; - targetProxy = 2867305CE29521BC8EE2F9EB0A25BC2E /* PBXContainerItemProxy */; + name = glog; + target = D0EFEFB685D97280256C559792236873 /* glog */; + targetProxy = 40E18A7434CBB72569E96A3BFE09637B /* PBXContainerItemProxy */; }; - 629FE70562527926A5D1A8EDB64B63E0 /* PBXTargetDependency */ = { + 68A13C16CC62987F2D03B91B4E1AFE98 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = "rn-extensions-share"; - target = A238B7CE3865946D1F214E1FE0023AAE /* rn-extensions-share */; - targetProxy = B2955087BE5F1C7ED6CFF1D1CB39D953 /* PBXContainerItemProxy */; + name = "React-RCTLinking"; + target = 6FE9147F8AAA4DE676C190F680F47AE2 /* React-RCTLinking */; + targetProxy = 0508A9CB54F304BF6A421D401200DC95 /* PBXContainerItemProxy */; }; - 62A5E3D98DB331B25E548080FC63B5D3 /* PBXTargetDependency */ = { + 697B6049ADEB73AF2081F40D16D483E7 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = "RCT-Folly"; - target = EC55D52694092A9D0E6A78EB01207EB5 /* RCT-Folly */; - targetProxy = BDD87B1D93DE918F054B9CCDA100F75F /* PBXContainerItemProxy */; + name = "React-jsiexecutor"; + target = DA0709CAAD589C6E7963495210438021 /* React-jsiexecutor */; + targetProxy = 5313D012E657F5BB7BCB16A97543C649 /* PBXContainerItemProxy */; }; - 62F2F15800E7D3A7938F0460AA150145 /* PBXTargetDependency */ = { + 6AD74A794C7203B48431731135AE0C4C /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = "React-jsi"; - target = FA877ADC442CB19CF61793D234C8B131 /* React-jsi */; - targetProxy = 12B7A30D883DC26C1A75E970277EF502 /* PBXContainerItemProxy */; + name = PromisesObjC; + target = 2BBF7206D7FAC92C82A042A99C4A98F8 /* PromisesObjC */; + targetProxy = DDEC0DE569A4D2011E4552695EACE9DB /* PBXContainerItemProxy */; }; - 62FC2AEE1DD4B02C3FB0860B22EEF5AD /* PBXTargetDependency */ = { + 6B06ECC7876149BA3512BA4ACE1CD3DA /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = UMConstantsInterface; - target = 9668C19AA6D8EA320F83875FA286855A /* UMConstantsInterface */; - targetProxy = 5AF93AF43A64C1D10B49956F82E66101 /* PBXContainerItemProxy */; + name = FBReactNativeSpec; + target = C3496D0495E700CF08A90C41EA8FA4BB /* FBReactNativeSpec */; + targetProxy = F08F0175DC46E1D604C05AE978B481BC /* PBXContainerItemProxy */; }; - 6333A17B6B0F0003395F0131FB5B1A82 /* PBXTargetDependency */ = { + 6B84C8782FB60373D3D864A629E46FFA /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = "React-Core"; - target = 7ACAA9BE580DD31A5CB9D97C45D9492D /* React-Core */; - targetProxy = 26D2E223505352580BC7CDDD0E3FE8E7 /* PBXContainerItemProxy */; + name = GoogleAppMeasurement; + target = B53D977A951AFC38B21751B706C1DF83 /* GoogleAppMeasurement */; + targetProxy = 86BAFC567C1C742635DD22E79FB337F4 /* PBXContainerItemProxy */; }; - 63F850D1806C6FDADF6BEC88BFD79B0E /* PBXTargetDependency */ = { + 6BCF3BA1230E1F375585E94C838D6FBA /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = "react-native-notifications"; - target = CA400829100F0628EC209FBB08347D42 /* react-native-notifications */; - targetProxy = BA0FD5A20CA32632A77809124A8E86D8 /* PBXContainerItemProxy */; + name = EXAV; + target = 13D7009C3736FB694854D88BAD4742B6 /* EXAV */; + targetProxy = 60B244F3CD1598D25EA288C7E4B15B19 /* PBXContainerItemProxy */; }; - 6430415BFFE66A38B8BCA85297BC3ADB /* PBXTargetDependency */ = { + 6C1A4FEDB142B968E9416FE70ED41A0B /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = UMCameraInterface; - target = 0A915EE9D35CA5636731F8763E774951 /* UMCameraInterface */; - targetProxy = 0BA92ECE475D06FA68952F6135A080CB /* PBXContainerItemProxy */; + name = CocoaAsyncSocket; + target = 6083682834ABE0AE7BD1CBF06CADD036 /* CocoaAsyncSocket */; + targetProxy = F240C733BBEA0DFF156F1252C87FC4A3 /* PBXContainerItemProxy */; }; - 645D79FF62CAC2A54E24162363297934 /* PBXTargetDependency */ = { + 6C588B419561602920A38F0A575284E8 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = JitsiMeetSDK; - target = 5B40FBDAD0AB75D17C4760F4054BFF71 /* JitsiMeetSDK */; - targetProxy = CF99EF36E9FBC8A53D73E754590CB531 /* PBXContainerItemProxy */; + name = "React-RCTText"; + target = DBD2D83E10F8B7D3F4E0E34E6A9FCFA6 /* React-RCTText */; + targetProxy = 0316A2B10C713B13B9183F8DB69BE607 /* PBXContainerItemProxy */; }; - 64C4F1B280680EB579106C3220E31FAA /* PBXTargetDependency */ = { + 6C80EC19F4D3537DB112414C64D36EE2 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = "React-Core"; - target = 7ACAA9BE580DD31A5CB9D97C45D9492D /* React-Core */; - targetProxy = D563180D2B686039EB7059A2EC71328D /* PBXContainerItemProxy */; + name = Yoga; + target = 2B25F90D819B9ADF2AF2D8733A890333 /* Yoga */; + targetProxy = 5A0723A4B5A1D18B7535DA9BD02B3A06 /* PBXContainerItemProxy */; }; - 64FCD41D54988D56471C19556FF7D453 /* PBXTargetDependency */ = { + 6D766D00A7476967E3F2C9576B67D27D /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = RNLocalize; - target = B51433D546A38C51AA781F192E8836F8 /* RNLocalize */; - targetProxy = 05AFB3574009BC0F2FC60EF065661F1F /* PBXContainerItemProxy */; + name = "React-cxxreact"; + target = 463F41A7E8B252F8AC5024DA1F4AF6DA /* React-cxxreact */; + targetProxy = B1C1852A4D3DC89EB2F52F45E755A8AA /* PBXContainerItemProxy */; }; - 653493BA355466C7B31A79F02C405877 /* PBXTargetDependency */ = { + 6DD2E1E4538722E6E39BA3E8A6E26E83 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = RNFBAnalytics; - target = BDD119F8782FABE2707D3D913EC3EDE5 /* RNFBAnalytics */; - targetProxy = A868578EDD81C6BE53BF4DFE79EC61CC /* PBXContainerItemProxy */; + name = RNFBApp; + target = 90D0DE2F3348233618414728C35311CA /* RNFBApp */; + targetProxy = 23A6050B7B112D21A5AB11ED8C960AF7 /* PBXContainerItemProxy */; }; - 653CE825267220637177BE2583E4112E /* PBXTargetDependency */ = { + 6F5B22E149BD86D224D41BFCAA73224E /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = "RCT-Folly"; - target = EC55D52694092A9D0E6A78EB01207EB5 /* RCT-Folly */; - targetProxy = 5E9B56398AFED5DAA87AB668621A0B74 /* PBXContainerItemProxy */; + name = EXFileSystem; + target = 868B90C74770285449C60DBA82181479 /* EXFileSystem */; + targetProxy = 54967528DBDEA03A2FC47FBADB54A55A /* PBXContainerItemProxy */; }; - 65536AEE9D451AFC59232497BD9E3758 /* PBXTargetDependency */ = { + 6FBD6CD449D3A6EEC7112AB48FE4FE59 /* PBXTargetDependency */ = { isa = PBXTargetDependency; name = React; target = 1BEE828C124E6416179B904A9F66D794 /* React */; - targetProxy = C78B7FCE3EE553D9044A00D289010285 /* PBXContainerItemProxy */; + targetProxy = E8C28A47D88AE811C93989837916A0F0 /* PBXContainerItemProxy */; }; - 65C8BA29FE7253CB8B9E1D0D252FC9C5 /* PBXTargetDependency */ = { + 6FE0E8A0AFB9B824C54DD047628900EF /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = EXImageLoader; - target = 263266A9E29FFF0E9C8CA0E4582BFCF4 /* EXImageLoader */; - targetProxy = 374D87CB5E893745E48A5DB5B02530D4 /* PBXContainerItemProxy */; + name = "React-jsi"; + target = FA877ADC442CB19CF61793D234C8B131 /* React-jsi */; + targetProxy = 50FF56713292312788C0B94C270C46AF /* PBXContainerItemProxy */; }; - 65D5406984A8C99714CCBE3E3C7087CC /* PBXTargetDependency */ = { + 708D5443C7D8BBFE730573295ACCDC76 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = "React-Core"; - target = 7ACAA9BE580DD31A5CB9D97C45D9492D /* React-Core */; - targetProxy = F605C8ABFB7C4EE3F70ABA11E3311B3B /* PBXContainerItemProxy */; + name = CocoaAsyncSocket; + target = 6083682834ABE0AE7BD1CBF06CADD036 /* CocoaAsyncSocket */; + targetProxy = C3443C2FCA25FB3BE331D910B7A1FEF9 /* PBXContainerItemProxy */; }; - 66CF47390ED7BA63ADF88AEE3731C347 /* PBXTargetDependency */ = { + 7094AD1E2F8B79AEB67AAE62CBB85F2F /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = "react-native-safe-area-context"; - target = BD9A27D8398DEB3205D3F8937B0672A0 /* react-native-safe-area-context */; - targetProxy = 870FBDE556FA18BF516EAAAB7E6842C3 /* PBXContainerItemProxy */; + name = "React-RCTNetwork"; + target = 651511D7DA7F07F9FC9AA40A2E86270D /* React-RCTNetwork */; + targetProxy = 1F5BC7C142957312E841B92B6C8BEF24 /* PBXContainerItemProxy */; }; - 67161DFCF32EFEB374D6501A4479A451 /* PBXTargetDependency */ = { + 70F2D2BEA57A04770D0B7D161A1C1712 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = "React-jsi"; - target = FA877ADC442CB19CF61793D234C8B131 /* React-jsi */; - targetProxy = 7B96D4DAB5B4D969F3D720D6A3C2873D /* PBXContainerItemProxy */; + name = UMCameraInterface; + target = 0A915EE9D35CA5636731F8763E774951 /* UMCameraInterface */; + targetProxy = 2F18B0B2E3B0C84CB66A5577AC615020 /* PBXContainerItemProxy */; }; - 676736B56DF49E326D3444ABC5C7E9A5 /* PBXTargetDependency */ = { + 715D6933AAAC19DEF881A57624C793EC /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = UMCore; - target = DBCB1B4965863DDD3B9DED9A0918A526 /* UMCore */; - targetProxy = B290E592CFE6C84DF8B5D41885D9DB35 /* PBXContainerItemProxy */; + name = MMKV; + target = 91A6826828CB9FCD0169A7547E8A79EA /* MMKV */; + targetProxy = BEBD5A91F8E4B4FBC5A7797FA42D0D77 /* PBXContainerItemProxy */; }; - 67D8BEABA3F8EBC6CE5CB6BEBA9EBE12 /* PBXTargetDependency */ = { + 716A9C448D51ED48CABB708258760374 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = "React-jsi"; - target = FA877ADC442CB19CF61793D234C8B131 /* React-jsi */; - targetProxy = E6EFDE83EB6528D5DCB74968CBDD1C86 /* PBXContainerItemProxy */; + name = "react-native-orientation-locker"; + target = 1092C13E1E1172209537C28D0C8D4D3C /* react-native-orientation-locker */; + targetProxy = 0C1C7219E65F411266AB8064DC56643F /* PBXContainerItemProxy */; }; - 68332619AD3B10B577470306479C1DDB /* PBXTargetDependency */ = { + 716DC2634958E8F74FFAA312FB604A38 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = "React-Core"; - target = 7ACAA9BE580DD31A5CB9D97C45D9492D /* React-Core */; - targetProxy = 4B6CBFBEF4C512B4AE5500ECD5906714 /* PBXContainerItemProxy */; + name = RCTTypeSafety; + target = D20469A9A1E5CFB26045EAEBE3F88E5E /* RCTTypeSafety */; + targetProxy = 3BE12AD473CCB5B90E012F23A4600067 /* PBXContainerItemProxy */; }; - 684E541BB09DB70D03416F52F9EC2636 /* PBXTargetDependency */ = { + 71F0E254B76138EF20386104796629C8 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = YogaKit; - target = 32CA4CBD6B28983076BD93DA221AD027 /* YogaKit */; - targetProxy = 03D7825AC45BFF1392F2ED83A124701E /* PBXContainerItemProxy */; + name = "react-native-mmkv-storage"; + target = 74DAFD196634D10887C9A4E7BA19A5E4 /* react-native-mmkv-storage */; + targetProxy = F74D282E55983BACFFFABEE035452665 /* PBXContainerItemProxy */; }; - 694BC02A956ABD1A22E5ADD40FC5C69C /* PBXTargetDependency */ = { + 720D564EA566611A1B02D817F6CD9451 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = GoogleUtilities; - target = 8D7F5D5DD528D21A72DC87ADA5B12E2D /* GoogleUtilities */; - targetProxy = 0A5EF1BB8E56BF18B1D4A5215AB0153B /* PBXContainerItemProxy */; + name = ReactCommon; + target = B6D5DD49633DFF0657B8C3F08EB3ABA9 /* ReactCommon */; + targetProxy = 8AAA8C0845473F71977EA663B0BC2B15 /* PBXContainerItemProxy */; }; - 694F56AC29D43B98B04458D541BC0C64 /* PBXTargetDependency */ = { + 7239D33E3749591A82C10B8B1B55DA5F /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = "RCT-Folly"; - target = EC55D52694092A9D0E6A78EB01207EB5 /* RCT-Folly */; - targetProxy = E44E0C84DDC5714BFBFDB37835A87771 /* PBXContainerItemProxy */; - }; - 695424830158DE3C35802A391DF2AA47 /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = "React-RCTLinking"; - target = 6FE9147F8AAA4DE676C190F680F47AE2 /* React-RCTLinking */; - targetProxy = 6D0C54C8FA5AAD31B221B6ACDEFE33F8 /* PBXContainerItemProxy */; - }; - 6990DA9422941E6EDFA9F5FF2F7EACB7 /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = EXAppleAuthentication; - target = 28A005E00FB77DDB2543047A07ED99A5 /* EXAppleAuthentication */; - targetProxy = 743E77544AB16D9F45C7454313A6B4DD /* PBXContainerItemProxy */; + name = "React-CoreModules"; + target = E16E206437995280D349D4B67695C894 /* React-CoreModules */; + targetProxy = 35F71506032AA6005146BD90BB659C0B /* PBXContainerItemProxy */; }; - 6993071F7A30C2D7699777010A54248D /* PBXTargetDependency */ = { + 725549F4CE436BC1F7BEA6A27F80560B /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = UMCore; - target = DBCB1B4965863DDD3B9DED9A0918A526 /* UMCore */; - targetProxy = FF8CBC11B46C17080179A7758C28E374 /* PBXContainerItemProxy */; + name = "Flipper-DoubleConversion"; + target = D9245543B79C09FAC40FC8B9F291536A /* Flipper-DoubleConversion */; + targetProxy = 58007AC42D48CD5F2EBCCC8D243F3763 /* PBXContainerItemProxy */; }; - 69AB265142DE95BDC64F73A62A228B5D /* PBXTargetDependency */ = { + 727ADD9A99C0DC0B702EC2D3CAEC7B6C /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = Flipper; - target = E63939AA6EFD3D6A8C09E45929F11DBD /* Flipper */; - targetProxy = 75BDEE1C722AFA24145BA719D7BBCFBB /* PBXContainerItemProxy */; + name = RNFBAnalytics; + target = BDD119F8782FABE2707D3D913EC3EDE5 /* RNFBAnalytics */; + targetProxy = 4674B95E01319E9C55637B8F8DC0C8FB /* PBXContainerItemProxy */; }; - 69D555C0A127D00EE886D42D69769298 /* PBXTargetDependency */ = { + 72D444418A95B486A83E80E07475BEC8 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = BugsnagReactNative; - target = 0745200E60DC80C9A0A48B7E6C1518D7 /* BugsnagReactNative */; - targetProxy = 333B59AA8017F930E061A89AC4F55EF7 /* PBXContainerItemProxy */; + name = RCTTypeSafety; + target = D20469A9A1E5CFB26045EAEBE3F88E5E /* RCTTypeSafety */; + targetProxy = 24EC64601DC7DD8EC37BD56B88DF02BB /* PBXContainerItemProxy */; }; - 6A3D07447F7B60121AB0CF00C5FA0E0D /* PBXTargetDependency */ = { + 72EAA85A995CD1809AB8FE0497CD7C26 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = UMReactNativeAdapter; - target = 897EF6A99176326E24F51E2F2103828C /* UMReactNativeAdapter */; - targetProxy = CDA9EE325AC3F55B7D03784EA7BE03A3 /* PBXContainerItemProxy */; + name = glog; + target = D0EFEFB685D97280256C559792236873 /* glog */; + targetProxy = 65C7C484B1DA071D39261B1EB23668B4 /* PBXContainerItemProxy */; }; - 6ABCFBDF5754D43AA1611E365947C3E0 /* PBXTargetDependency */ = { + 7313FC93CA945164B8C2C3E880058E3B /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = SDWebImage; - target = 3847153A6E5EEFB86565BA840768F429 /* SDWebImage */; - targetProxy = 85F896D8BEC8F1D035C789D222B9DDE0 /* PBXContainerItemProxy */; + name = RCTRequired; + target = E7E7CE52C8C68B17224FF8C262D80ABF /* RCTRequired */; + targetProxy = 6CABC9DED9311801E8BAB8FDFEBA3DAC /* PBXContainerItemProxy */; }; - 6AF1A1E396C297515D404EB5B9BDCCBE /* PBXTargetDependency */ = { + 73603E17910578E3301210004EC8E336 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = libevent; - target = 04A30E186743192DFB26B0FD7DB8F250 /* libevent */; - targetProxy = 91F95714EAFEAA231AB65705AAF4EB89 /* PBXContainerItemProxy */; + name = "React-RCTAnimation"; + target = 938CCE22F6C4094B3FB6CF1478579E4B /* React-RCTAnimation */; + targetProxy = 736C9AF6ABF208C09DD3C8FF8BD789CF /* PBXContainerItemProxy */; }; - 6B3EC17DE68B67E7992CB0D7B262D71E /* PBXTargetDependency */ = { + 736BA8CC90C83AACB905F1466A16005D /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = FBReactNativeSpec; - target = C3496D0495E700CF08A90C41EA8FA4BB /* FBReactNativeSpec */; - targetProxy = 2C1A4D179F333A6B86CCFE1991724AA0 /* PBXContainerItemProxy */; + name = "react-native-notifications"; + target = CA400829100F0628EC209FBB08347D42 /* react-native-notifications */; + targetProxy = 4A942D9F98BA99CCA80F54FE9C05CCFE /* PBXContainerItemProxy */; }; - 6BA0035CBC2B320BBBB15C5DA34DD454 /* PBXTargetDependency */ = { + 7393D59A2C2894D2B4C0C83C7C6ACB63 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = FirebaseCore; - target = 4402AFF83DBDC4DD07E198685FDC2DF2 /* FirebaseCore */; - targetProxy = 5E8F59849520F8E58324C72E77979051 /* PBXContainerItemProxy */; + name = UMAppLoader; + target = C452F579644C83E8D8E36EC24A9BBD46 /* UMAppLoader */; + targetProxy = D6E3857D00E09DFEC6CC663F1D8C4DEB /* PBXContainerItemProxy */; }; - 6BD216FAE1ADEC54703BB5825C378127 /* PBXTargetDependency */ = { + 73DCC5271E3FA7CD79649B4DFA8C9BD1 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = ReactCommon; - target = B6D5DD49633DFF0657B8C3F08EB3ABA9 /* ReactCommon */; - targetProxy = 7DB2DADB16B041C2BBCA1D67315427BE /* PBXContainerItemProxy */; + name = ReactNativeART; + target = 90148E8FD1C445D7A019D504FA8CBC53 /* ReactNativeART */; + targetProxy = 428AA5A09239DA78F15204B5A3981CCD /* PBXContainerItemProxy */; }; - 6C997F4411A1CC5F8A7DD356B106F09C /* PBXTargetDependency */ = { + 756C1DB27D0BB54AE810A8F7A8A73E16 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = PromisesObjC; - target = 2BBF7206D7FAC92C82A042A99C4A98F8 /* PromisesObjC */; - targetProxy = 50466E742D9F32965A430247549F9312 /* PBXContainerItemProxy */; + name = "React-jsinspector"; + target = F7D033C4C128EECAA020990641FA985F /* React-jsinspector */; + targetProxy = 98864A76C38A228B5CF371435587BB50 /* PBXContainerItemProxy */; }; - 6CCABCC25AC761C763386E151382DA91 /* PBXTargetDependency */ = { + 75B2834C77D0DBBFF1B07861E410377F /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = "react-native-background-timer"; - target = 6514D69CB93B41626AE1A05581F97B07 /* react-native-background-timer */; - targetProxy = A2CD847F704D25858FA1422D3209CD6F /* PBXContainerItemProxy */; + name = FBReactNativeSpec; + target = C3496D0495E700CF08A90C41EA8FA4BB /* FBReactNativeSpec */; + targetProxy = E247B7B2B4489ED825BF14EB28B52F41 /* PBXContainerItemProxy */; }; - 6CDDC1372E89814CC5FAD351EC98BDBA /* PBXTargetDependency */ = { + 75C7684295BF6E62C8C2BFDE81DAD756 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = "boost-for-react-native"; - target = ED2506AE7DE35D654F61254441EA7155 /* boost-for-react-native */; - targetProxy = F2779434729AB947629DFB51257ACFD9 /* PBXContainerItemProxy */; + name = "React-jsinspector"; + target = F7D033C4C128EECAA020990641FA985F /* React-jsinspector */; + targetProxy = B0750777D3FF0621C4F1D199EA15CC89 /* PBXContainerItemProxy */; }; - 6CDFF65E190BEC7742DFD0C47B1BAC57 /* PBXTargetDependency */ = { + 770D302F3C474BFD9A37B257E1C50F64 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = DoubleConversion; - target = 2AB2EF542954AB1C999E03BFEF8DE806 /* DoubleConversion */; - targetProxy = 910DF82220E534547C3ECC40FCD6D8F2 /* PBXContainerItemProxy */; + name = Flipper; + target = E63939AA6EFD3D6A8C09E45929F11DBD /* Flipper */; + targetProxy = 424F3B0F24F5F866EF29439FA76A1D02 /* PBXContainerItemProxy */; }; - 6D1A2195BCBC778EF5DD84456C1E5EAB /* PBXTargetDependency */ = { + 77D883F4E767E22B8D7BF480B3303972 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = "React-callinvoker"; - target = 2681CB7EF647E61F4F9A43029C235607 /* React-callinvoker */; - targetProxy = 68E8C147AC389AED1597739E606CEC08 /* PBXContainerItemProxy */; + name = UMCore; + target = DBCB1B4965863DDD3B9DED9A0918A526 /* UMCore */; + targetProxy = 5F70EDACEBCC1AC06D35177A04761425 /* PBXContainerItemProxy */; }; - 6D3871B345CB9E6BB930FB2B4E4B3A11 /* PBXTargetDependency */ = { + 77DB9A7F6CF836AA415A1D115C16C654 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = EXHaptics; - target = 409F3A0DB395F53FFB6AB30E5CD8ACD1 /* EXHaptics */; - targetProxy = 2D15492360534B20EE7817812BBB48DD /* PBXContainerItemProxy */; + name = RCTRequired; + target = E7E7CE52C8C68B17224FF8C262D80ABF /* RCTRequired */; + targetProxy = E623C96C1C66E560B692C8985D6542AA /* PBXContainerItemProxy */; }; - 6E17E73F673B3B75DCBA5BDB87322635 /* PBXTargetDependency */ = { + 78C777A886CBDCA34697A92C4C8CC2FA /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = UMCore; - target = DBCB1B4965863DDD3B9DED9A0918A526 /* UMCore */; - targetProxy = 53246BD24D8455F774F8D6BCB9651698 /* PBXContainerItemProxy */; + name = FirebaseCrashlytics; + target = 526C4398D095B3704EB933DADBC30093 /* FirebaseCrashlytics */; + targetProxy = CB9057328DD93140E7E51D4F17C8AA1B /* PBXContainerItemProxy */; }; - 6EE8D2D7F4BF3096ED0B794181D42FC6 /* PBXTargetDependency */ = { + 794CD7E010740AB32F1A6451FCB6925D /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = "OpenSSL-Universal"; - target = B9ED5194E665042005069EF06C82A050 /* OpenSSL-Universal */; - targetProxy = 851D6020491EF4D4B7A44F5882379B71 /* PBXContainerItemProxy */; + name = FBReactNativeSpec; + target = C3496D0495E700CF08A90C41EA8FA4BB /* FBReactNativeSpec */; + targetProxy = 1594CA71965A7F3895B87254031664B9 /* PBXContainerItemProxy */; }; - 701A33CBA059100356C854DE0E947B16 /* PBXTargetDependency */ = { + 7978920D018C3003B850AB10AB79333B /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = SDWebImage; - target = 3847153A6E5EEFB86565BA840768F429 /* SDWebImage */; - targetProxy = 5B46F0291F03F7C6291A82898B21367D /* PBXContainerItemProxy */; + name = "React-RCTImage"; + target = 4F265533AAB7C8985856EC78A33164BB /* React-RCTImage */; + targetProxy = 3DCE74173D0268DF04FC230C795B0807 /* PBXContainerItemProxy */; }; - 701BD2FAE150DEB0D1CF6D90D9E2A6AF /* PBXTargetDependency */ = { + 799FA9ECEE1D4E4798C4AE0DFDFD8159 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = UMConstantsInterface; - target = 9668C19AA6D8EA320F83875FA286855A /* UMConstantsInterface */; - targetProxy = 3814E33F90FAA7A58884A68CF9BA6265 /* PBXContainerItemProxy */; + name = Flipper; + target = E63939AA6EFD3D6A8C09E45929F11DBD /* Flipper */; + targetProxy = 5B38948DD2E86DBA81D3EB233CA58ECB /* PBXContainerItemProxy */; }; - 702CDDDED4A1FB819B07CC2F3AB1B2F3 /* PBXTargetDependency */ = { + 7A781AFACCBE4EBFB6300E2A1E068C85 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = React; - target = 1BEE828C124E6416179B904A9F66D794 /* React */; - targetProxy = 1F570E6F3998C13CDBFCA10D2A77BACE /* PBXContainerItemProxy */; + name = RNFastImage; + target = 0BB7745637E0758DEA373456197090C6 /* RNFastImage */; + targetProxy = B75B27ADED5141116F34DC4D10F71E84 /* PBXContainerItemProxy */; }; - 7097E1040EB2D3CDD2F5814CE58C0D44 /* PBXTargetDependency */ = { + 7AD55F96A0F87C5B0356F98C1F83771D /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = ReactCommon; - target = B6D5DD49633DFF0657B8C3F08EB3ABA9 /* ReactCommon */; - targetProxy = 76807A0F1F4F6C75CE517435DED9D5CD /* PBXContainerItemProxy */; + name = DoubleConversion; + target = 2AB2EF542954AB1C999E03BFEF8DE806 /* DoubleConversion */; + targetProxy = F3D1A5C0F4E7E529AE59734BBECDC477 /* PBXContainerItemProxy */; }; - 7102FE14E40BF579704B03EA33DA9B30 /* PBXTargetDependency */ = { + 7B34C908D4D6BDAB8269403ABD0C85BB /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = GoogleDataTransportCCTSupport; - target = F4F25FCAC51B51FD5F986EB939BF1F87 /* GoogleDataTransportCCTSupport */; - targetProxy = 35D29D203ACE1A3642FB097162D19DEB /* PBXContainerItemProxy */; + name = RNFastImage; + target = 0BB7745637E0758DEA373456197090C6 /* RNFastImage */; + targetProxy = C6E7067FC3517473886D460EB4B32C1E /* PBXContainerItemProxy */; }; - 72015D997B70C110A5868EF457E45399 /* PBXTargetDependency */ = { + 7C3A9E0B3A8E4A2082F0E72CB544151F /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = SDWebImageWebPCoder; - target = 1953860EA9853AA2BC8022B242F08512 /* SDWebImageWebPCoder */; - targetProxy = 0C331F3288FC96E2B9C015D9E45F789D /* PBXContainerItemProxy */; + name = TOCropViewController; + target = F3966F664F3CFAEFAB57C40FB54D3788 /* TOCropViewController */; + targetProxy = 84B03E28DB0632D0C98BC99A46A5E38A /* PBXContainerItemProxy */; }; - 72C3F27A35D127B05EDFBF1AF400150B /* PBXTargetDependency */ = { + 7C5818E4A1D93392EFFE58686CAAF57C /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = FirebaseInstallations; - target = 87803597EB3F20FC46472B85392EC4FD /* FirebaseInstallations */; - targetProxy = FE98514E436F91BA4E111B692BCAB5DF /* PBXContainerItemProxy */; + name = EXFileSystem; + target = 868B90C74770285449C60DBA82181479 /* EXFileSystem */; + targetProxy = 5C2AF295FE40203F01778E36430CFF65 /* PBXContainerItemProxy */; }; - 734CC2BE7CBA5BBD183F2618924A27EA /* PBXTargetDependency */ = { + 7C746CDB89614BC4E3A7BEB7C6AF4ACC /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = UMFaceDetectorInterface; - target = 2AD4F40E67E1874A0816F6B34289EB41 /* UMFaceDetectorInterface */; - targetProxy = A8D6A6DF0FB2B98DFACE2DE587CFD426 /* PBXContainerItemProxy */; + name = UMFileSystemInterface; + target = 2644525CCE081E967809A8163D893A93 /* UMFileSystemInterface */; + targetProxy = 41ECED978508293DF02ED8A0A51FAE4F /* PBXContainerItemProxy */; }; - 73942F1FB70583245C4BF0EDCD0390FD /* PBXTargetDependency */ = { + 7C9F6B2DBED7307062EE0A2C7F4729AE /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = Yoga; - target = 2B25F90D819B9ADF2AF2D8733A890333 /* Yoga */; - targetProxy = EA37BFDD0115341808C54303ADCAABC2 /* PBXContainerItemProxy */; + name = "TOCropViewController-TOCropViewControllerBundle"; + target = 2D4D3D5AD93ADCCF3DD45A88009E48D6 /* TOCropViewController-TOCropViewControllerBundle */; + targetProxy = E7C6DFBB6F5D8D79B196B540304E8C59 /* PBXContainerItemProxy */; }; - 73E3778CF5046F50B245E46249B8A3A1 /* PBXTargetDependency */ = { + 7D4A97C9F4211E304190C28B92DDE9C0 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = "React-RCTVibration"; - target = 53D121F9F9BB0F8AC1C94A12C5A8572F /* React-RCTVibration */; - targetProxy = 9FB27866A9E45D8CAE9C297618233474 /* PBXContainerItemProxy */; + name = "Flipper-Glog"; + target = 6A9637F1BC8154F777335A6420579C05 /* Flipper-Glog */; + targetProxy = 6D3F1C825C2CBD71CDEC2C034405AE5A /* PBXContainerItemProxy */; }; - 7402CB955DDD0637CA5143CB0A3723E8 /* PBXTargetDependency */ = { + 7D97319CCB2170EE26EEC98485FB859D /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = "React-jsi"; - target = FA877ADC442CB19CF61793D234C8B131 /* React-jsi */; - targetProxy = 497EF6E30B6BA56995E78DE32981AB2E /* PBXContainerItemProxy */; + name = ReactCommon; + target = B6D5DD49633DFF0657B8C3F08EB3ABA9 /* ReactCommon */; + targetProxy = 9E5BCB6BF9749DEF68D5841E5389CFFD /* PBXContainerItemProxy */; }; - 7493163EAD908739624B91B1C8C9CEA8 /* PBXTargetDependency */ = { + 7E2043A0B972F68822BAB8E447B92DB8 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = UMPermissionsInterface; - target = F7845084F0CF03F54107EEF7411760AD /* UMPermissionsInterface */; - targetProxy = CA191B8AA7656280A2E746574DDA1AA2 /* PBXContainerItemProxy */; + name = UMConstantsInterface; + target = 9668C19AA6D8EA320F83875FA286855A /* UMConstantsInterface */; + targetProxy = 3D6EDEE1794270D059FE7269C8849803 /* PBXContainerItemProxy */; }; - 74B9BAB65A26B16F52C35E6CAABEB207 /* PBXTargetDependency */ = { + 7E717A7C24FF3197BCF402E96729D552 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = "react-native-simple-crypto"; - target = D985A509BFE270C95EDCBE6B4CBAF189 /* react-native-simple-crypto */; - targetProxy = 7C45AF8934BDFC00292B536F97BD0823 /* PBXContainerItemProxy */; + name = "React-Core"; + target = 7ACAA9BE580DD31A5CB9D97C45D9492D /* React-Core */; + targetProxy = A0E1B774C800D1D8A81F6FB90648462C /* PBXContainerItemProxy */; }; - 756D66FC7D36EB2AE1DD3D9DDA8A5716 /* PBXTargetDependency */ = { + 7EB1ED9127361EF3A03F27B0AB70C1C8 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = "React-jsiexecutor"; - target = DA0709CAAD589C6E7963495210438021 /* React-jsiexecutor */; - targetProxy = 2FEA2C94E0E7934D146B4421C21353AC /* PBXContainerItemProxy */; + name = BugsnagReactNative; + target = 0745200E60DC80C9A0A48B7E6C1518D7 /* BugsnagReactNative */; + targetProxy = F2B53130032BA20274C1F93BFD049160 /* PBXContainerItemProxy */; }; - 757ECB1467C1311D345EE1530549AF72 /* PBXTargetDependency */ = { + 7F0483D8AD73969BA3B636BF6FBE5050 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = ReactCommon; - target = B6D5DD49633DFF0657B8C3F08EB3ABA9 /* ReactCommon */; - targetProxy = 26B9D41EC4FC50EEBC8809FACDA1028A /* PBXContainerItemProxy */; + name = "React-RCTSettings"; + target = 680299219D3A48D42A648AF6706275A9 /* React-RCTSettings */; + targetProxy = BDDD7F93EE45A3A4808C9067B22066DC /* PBXContainerItemProxy */; }; - 75BDC0248AD0B22D57D84DFFAFB12A30 /* PBXTargetDependency */ = { + 7F1A6AC92ED93CF2AF43A2EA763CE1F3 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = GoogleDataTransportCCTSupport; - target = F4F25FCAC51B51FD5F986EB939BF1F87 /* GoogleDataTransportCCTSupport */; - targetProxy = FEA11EE4785F29E272B2FFBA4EE2D7CE /* PBXContainerItemProxy */; + name = "React-jsi"; + target = FA877ADC442CB19CF61793D234C8B131 /* React-jsi */; + targetProxy = 9C9A15D876FA5200261737BC48204752 /* PBXContainerItemProxy */; }; - 75C1B68EC6D04BD3F4EEBD56DE61A159 /* PBXTargetDependency */ = { + 7F46F67554BBEDBB3E6EA08F18207994 /* PBXTargetDependency */ = { isa = PBXTargetDependency; name = "OpenSSL-Universal"; target = B9ED5194E665042005069EF06C82A050 /* OpenSSL-Universal */; - targetProxy = ECE7275CC98B0E662D7F3F1519CB5CE7 /* PBXContainerItemProxy */; + targetProxy = 303E4559A3766B78B2EC5F069B80FCE7 /* PBXContainerItemProxy */; }; - 7607AB3C9EC6B3A72C00D50CB3A821CE /* PBXTargetDependency */ = { + 7FC2F75E4B465ADF67A7FF79A611FAED /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = "RCT-Folly"; - target = EC55D52694092A9D0E6A78EB01207EB5 /* RCT-Folly */; - targetProxy = 25D731C8B8322F6109319FC1C29DBC12 /* PBXContainerItemProxy */; + name = "react-native-netinfo"; + target = EC577C5CB1DC59A7464ECEF266A75B42 /* react-native-netinfo */; + targetProxy = EFD48647AD8DB515ED3F7162201EAEED /* PBXContainerItemProxy */; }; - 7669584C5BC540E89EC0F67FA9F4BF9E /* PBXTargetDependency */ = { + 80B0FF5A6B3872028DC4CD407B64C360 /* PBXTargetDependency */ = { isa = PBXTargetDependency; name = Flipper; target = E63939AA6EFD3D6A8C09E45929F11DBD /* Flipper */; - targetProxy = 464C670BE9A85762B084067B7292AE19 /* PBXContainerItemProxy */; + targetProxy = 5DA835FDDA08DADDC3E1DCCC3485801C /* PBXContainerItemProxy */; }; - 77A926C9ACC5A87888C5ECC7302E6F7F /* PBXTargetDependency */ = { + 813AD587299DD21759D8B64CC0412247 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = GoogleDataTransport; - target = 5C0371EE948D0357B8EE0E34ABB44BF0 /* GoogleDataTransport */; - targetProxy = 7F419458D4EB95BC37CEDA24E6A87FBA /* PBXContainerItemProxy */; + name = RNVectorIcons; + target = 96150F524B245896B800F84F369A9A5A /* RNVectorIcons */; + targetProxy = 342D59D7250F414716D957FD8972A3F9 /* PBXContainerItemProxy */; + }; + 81C71C72C1B93F9BB4141441F5634FCC /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = UMFileSystemInterface; + target = 2644525CCE081E967809A8163D893A93 /* UMFileSystemInterface */; + targetProxy = B3FE623DD0B361C471D8087E529F5D9E /* PBXContainerItemProxy */; }; - 77D2610AE4C17B1805AF2C4DB152132B /* PBXTargetDependency */ = { + 81CD2D03F4BAC6EDB970CBA14C4461D4 /* PBXTargetDependency */ = { isa = PBXTargetDependency; name = FirebaseCoreDiagnostics; target = 620E05868772C10B4920DC7E324F2C87 /* FirebaseCoreDiagnostics */; - targetProxy = 58DB40669A528054F8B14B0EC60BEC66 /* PBXContainerItemProxy */; + targetProxy = 35EDA4FA330DF1DC694DD9051394E69E /* PBXContainerItemProxy */; }; - 77E761B5F1D6766129F18CABBE5FF8CC /* PBXTargetDependency */ = { + 821EF3A26C7A07959049DC79661519ED /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = "React-perflogger"; - target = F1E2583679398CB5F4D2B3272E9B198F /* React-perflogger */; - targetProxy = 497EB06B31993907ECD490A6CF7F22DA /* PBXContainerItemProxy */; + name = RNCMaskedView; + target = 1A0445474DA11CA659C4BCC5AB64B1BF /* RNCMaskedView */; + targetProxy = 4E07030CFBD443E75216553777BA21B3 /* PBXContainerItemProxy */; }; - 77F1D20EBC3BADA3351BE400AAEF2F93 /* PBXTargetDependency */ = { + 8291A43CC4FA3062BC9D70277E09F7A2 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = "React-CoreModules"; - target = E16E206437995280D349D4B67695C894 /* React-CoreModules */; - targetProxy = 8134E7E6E32967FAC4CB7ED1516DDF7A /* PBXContainerItemProxy */; + name = SDWebImageWebPCoder; + target = 1953860EA9853AA2BC8022B242F08512 /* SDWebImageWebPCoder */; + targetProxy = A4F555AFEB1ACCBB68688071B5166178 /* PBXContainerItemProxy */; }; - 783C267F3503EEE42D04E9B7E4C6ADCD /* PBXTargetDependency */ = { + 82E4D5361BFDAE349EEB5A657002D92F /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = "React-runtimeexecutor"; - target = 54EB12219122432FA744088BC5A680D2 /* React-runtimeexecutor */; - targetProxy = F99AF4C151CA6CC158268F5C7C7F834B /* PBXContainerItemProxy */; + name = "boost-for-react-native"; + target = ED2506AE7DE35D654F61254441EA7155 /* boost-for-react-native */; + targetProxy = 601DB8E8364560E986FE641592E4E8C6 /* PBXContainerItemProxy */; }; - 78615C059CBCC9AD5AA446383BF37BC3 /* PBXTargetDependency */ = { + 830F0E2437578BDDAEA60305D0EBF7BE /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = GoogleAppMeasurement; - target = B53D977A951AFC38B21751B706C1DF83 /* GoogleAppMeasurement */; - targetProxy = 42135B42EB3752EEEFE9E5A4ACBCB8AB /* PBXContainerItemProxy */; + name = UMImageLoaderInterface; + target = 97C4DE84FA3CC4EC06AA6D8C249949B7 /* UMImageLoaderInterface */; + targetProxy = C887E4B69FF1D21574DE39B58EF51A70 /* PBXContainerItemProxy */; }; - 7885989121D533CD57B1F9C41C59F3A8 /* PBXTargetDependency */ = { + 833FA3FBD837870AB4CEB586CE5AE5EE /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = React; - target = 1BEE828C124E6416179B904A9F66D794 /* React */; - targetProxy = C02403368B42E747A0C9885EB5156230 /* PBXContainerItemProxy */; + name = "OpenSSL-Universal"; + target = B9ED5194E665042005069EF06C82A050 /* OpenSSL-Universal */; + targetProxy = FA94766FAF7831D5815D398EE5879828 /* PBXContainerItemProxy */; }; - 78951F5A14BBC91D71CC9A9C98980436 /* PBXTargetDependency */ = { + 83496ECBE1CE7749D1EDDDCAD901AF6B /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = "react-native-cameraroll"; - target = BA3F5E5AA483B263B69601DE2FA269CB /* react-native-cameraroll */; - targetProxy = B1C5D8CAFD680931F2B2906CDDB4B220 /* PBXContainerItemProxy */; + name = SDWebImageWebPCoder; + target = 1953860EA9853AA2BC8022B242F08512 /* SDWebImageWebPCoder */; + targetProxy = 74D68664DF9BB117E6D00A3CC630BB7A /* PBXContainerItemProxy */; }; - 78B2E5AE87E6B268B7BD81B0A7CDF53F /* PBXTargetDependency */ = { + 8392DAE3FC893D9507F5742153376683 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = RCTRequired; - target = E7E7CE52C8C68B17224FF8C262D80ABF /* RCTRequired */; - targetProxy = 2019DD04814708C23A3D8233A67484FE /* PBXContainerItemProxy */; + name = "React-RCTBlob"; + target = 95D98F901D07557EF7CA38D3F03832C5 /* React-RCTBlob */; + targetProxy = 6BBE040F10103BBC50E8BF3111DBAAA8 /* PBXContainerItemProxy */; }; - 7A2F78619B9DA1DA26C4C2DF17D10040 /* PBXTargetDependency */ = { + 83D9802FAC2FFC89F466552BCEA2660E /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = Firebase; - target = 072CEA044D2EF26F03496D5996BBF59F /* Firebase */; - targetProxy = 1CFB073BD465178A6A62B86921039222 /* PBXContainerItemProxy */; + name = GoogleUtilities; + target = 8D7F5D5DD528D21A72DC87ADA5B12E2D /* GoogleUtilities */; + targetProxy = 95AF18DE3016320384647AA5A722586C /* PBXContainerItemProxy */; }; - 7A9DCE48D7DA8223D43DCEF6E864F113 /* PBXTargetDependency */ = { + 83DE4C277386755F50CCB8364C34A740 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = RNLocalize; - target = B51433D546A38C51AA781F192E8836F8 /* RNLocalize */; - targetProxy = 6FB5CFC462E5F15430524803915DF94E /* PBXContainerItemProxy */; + name = "RCT-Folly"; + target = EC55D52694092A9D0E6A78EB01207EB5 /* RCT-Folly */; + targetProxy = 532BD76A7637DD336D69E911B90FF03E /* PBXContainerItemProxy */; }; - 7B1E1D0C1C62815667D8003848A1782F /* PBXTargetDependency */ = { + 84B960F088FF01C3D3C38E6A349F2B6A /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = JitsiMeetSDK; - target = 5B40FBDAD0AB75D17C4760F4054BFF71 /* JitsiMeetSDK */; - targetProxy = C1B7D8B6AF7182787CC079B8D124F56E /* PBXContainerItemProxy */; + name = SDWebImage; + target = 3847153A6E5EEFB86565BA840768F429 /* SDWebImage */; + targetProxy = DE71253AABB559AA03AB573EFC9CE748 /* PBXContainerItemProxy */; }; - 7B45DA068601682BDFA0CBDC90C1EC8E /* PBXTargetDependency */ = { + 8505524FD00B550143E9C06DB12049E5 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = UMFileSystemInterface; - target = 2644525CCE081E967809A8163D893A93 /* UMFileSystemInterface */; - targetProxy = 897170CDD7C0FFE5ADA4870789B041A8 /* PBXContainerItemProxy */; + name = FBLazyVector; + target = 8CC4EAA817AA86310D1900F1DAB3580F /* FBLazyVector */; + targetProxy = 6190108F9BC9F17086A76468EB447405 /* PBXContainerItemProxy */; }; - 7D4F4E50A79C45DB7ECB922EAC588D64 /* PBXTargetDependency */ = { + 8518B9FE580966A2219411356FA27AEC /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = libwebp; - target = 47D2E85A78C25869BB13521D8561A638 /* libwebp */; - targetProxy = 00FBA2C4D546A02342C81C70FE53C8B0 /* PBXContainerItemProxy */; + name = PromisesObjC; + target = 2BBF7206D7FAC92C82A042A99C4A98F8 /* PromisesObjC */; + targetProxy = 89F8678C4B2C7ED72EAE907BB773C7D9 /* PBXContainerItemProxy */; }; - 7E0952C971CA5C6D9F3DE7941056AEA2 /* PBXTargetDependency */ = { + 852B399F834130631EFC0AE319E75444 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = ReactCommon; - target = B6D5DD49633DFF0657B8C3F08EB3ABA9 /* ReactCommon */; - targetProxy = C15C3FA91360A3381B62DCD446CC4D12 /* PBXContainerItemProxy */; + name = "React-CoreModules"; + target = E16E206437995280D349D4B67695C894 /* React-CoreModules */; + targetProxy = 8884F5E4E8C0342C455FAF79A3181732 /* PBXContainerItemProxy */; }; - 7E249BB832DE8FBB57AA5B659EA65C83 /* PBXTargetDependency */ = { + 85334ADEC967867AE4E98CF57B7C9090 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = EXKeepAwake; - target = 0CF4D9052577C85B6B8C4E957332626B /* EXKeepAwake */; - targetProxy = D7A5AC85EC194EA0733F01E38D7861B0 /* PBXContainerItemProxy */; + name = FirebaseCrashlytics; + target = 526C4398D095B3704EB933DADBC30093 /* FirebaseCrashlytics */; + targetProxy = 7CE217E36AF8FDBBE3706321899BA856 /* PBXContainerItemProxy */; }; - 7E6BF78DFD5A811067BAB5E73EB6B32A /* PBXTargetDependency */ = { + 85E46873FAF2D19E8DD511A0FCCF5EA2 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = RNCMaskedView; - target = 1A0445474DA11CA659C4BCC5AB64B1BF /* RNCMaskedView */; - targetProxy = 555540C761642F465F54BFAD9A6984BA /* PBXContainerItemProxy */; + name = "React-Core"; + target = 7ACAA9BE580DD31A5CB9D97C45D9492D /* React-Core */; + targetProxy = AE6E13145DD6C66959AD6417B8B22660 /* PBXContainerItemProxy */; }; - 7E7493F2C7E60DAA7E404074ADA51E25 /* PBXTargetDependency */ = { + 86181F0FFA02856D9001E20C06BCFBE4 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = "React-jsi"; - target = FA877ADC442CB19CF61793D234C8B131 /* React-jsi */; - targetProxy = 18CDD9BCAA26B0047475F2F7BBA386AA /* PBXContainerItemProxy */; + name = "React-jsiexecutor"; + target = DA0709CAAD589C6E7963495210438021 /* React-jsiexecutor */; + targetProxy = E88769E75ED80E01BFEB48A400BF0FC8 /* PBXContainerItemProxy */; }; - 7E9DFC8CDAB5BE14339B4BF013586709 /* PBXTargetDependency */ = { + 869D84303FF9F01457518EA43FAC44EE /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = Firebase; - target = 072CEA044D2EF26F03496D5996BBF59F /* Firebase */; - targetProxy = 53617FB4A674EDAEC3FD5ECD2977A528 /* PBXContainerItemProxy */; + name = RNBootSplash; + target = 6677891AC2F7AB93E04BFF30B293A46B /* RNBootSplash */; + targetProxy = 2CE040E43E51563408A78413CBD6809D /* PBXContainerItemProxy */; }; - 7EB89EA352FE82AAFCA185627F0ABDBF /* PBXTargetDependency */ = { + 86EF5414BF091D3D55C4A89EF5909B39 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = Firebase; - target = 072CEA044D2EF26F03496D5996BBF59F /* Firebase */; - targetProxy = 0FC1CAFF86DF2F2E18BF830CF281DEA3 /* PBXContainerItemProxy */; + name = "React-Core"; + target = 7ACAA9BE580DD31A5CB9D97C45D9492D /* React-Core */; + targetProxy = 34EDA8BEC948AD64ED4EB417F24CF02F /* PBXContainerItemProxy */; }; - 7EBF7D57EBE020F41B75A6E77D7DE164 /* PBXTargetDependency */ = { + 8756B832CB2FD3F8C8A22CEEEB4270AD /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = "React-callinvoker"; - target = 2681CB7EF647E61F4F9A43029C235607 /* React-callinvoker */; - targetProxy = 9B5B625653D16C12A4F0F782FDFA1E7F /* PBXContainerItemProxy */; + name = "React-Core"; + target = 7ACAA9BE580DD31A5CB9D97C45D9492D /* React-Core */; + targetProxy = 5356DDD2C08DDFD3866151AFC1FE9408 /* PBXContainerItemProxy */; }; - 7FAAC80377136FEDDC22A30937C15A9E /* PBXTargetDependency */ = { + 876A388A228B1B1D9463FD08D25F2EC7 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = "React-cxxreact"; - target = 463F41A7E8B252F8AC5024DA1F4AF6DA /* React-cxxreact */; - targetProxy = 010D0B31585D1EB5D82247A6ADA3D90D /* PBXContainerItemProxy */; + name = "react-native-slider"; + target = A4EF87F5681665EAE943D9B06BBB17DF /* react-native-slider */; + targetProxy = 266059A79145D44C1828C281721C86E2 /* PBXContainerItemProxy */; }; - 80814D7AADC9C6ECF17BBA935115E6D2 /* PBXTargetDependency */ = { + 883FC4622F1A262E92A338717254FA6B /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = FBReactNativeSpec; - target = C3496D0495E700CF08A90C41EA8FA4BB /* FBReactNativeSpec */; - targetProxy = 4870E90069664BCC39D7088EA352D668 /* PBXContainerItemProxy */; + name = "React-RCTAnimation"; + target = 938CCE22F6C4094B3FB6CF1478579E4B /* React-RCTAnimation */; + targetProxy = 3CE6C0199D635E9DE0ECA51097F6134B /* PBXContainerItemProxy */; }; - 811C0F9F44E41DCFD8C8A91D33F3B418 /* PBXTargetDependency */ = { + 8924D497A4ED982ECDE7869622F1C187 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = GoogleDataTransport; - target = 5C0371EE948D0357B8EE0E34ABB44BF0 /* GoogleDataTransport */; - targetProxy = 83D0B0C09E0A0335D9E0D112F7A03FD4 /* PBXContainerItemProxy */; + name = MMKV; + target = 91A6826828CB9FCD0169A7547E8A79EA /* MMKV */; + targetProxy = CCCE4A1EECB2EDC8A751CB2DF06D26E6 /* PBXContainerItemProxy */; }; - 812576CF1B14D38CFD4AB410E48CB754 /* PBXTargetDependency */ = { + 8A0B65F049C0627C56473D4874BFD2F6 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = "React-runtimeexecutor"; - target = 54EB12219122432FA744088BC5A680D2 /* React-runtimeexecutor */; - targetProxy = 6699DA762C1C3FAB74015C0C2893DDEC /* PBXContainerItemProxy */; + name = "react-native-background-timer"; + target = 6514D69CB93B41626AE1A05581F97B07 /* react-native-background-timer */; + targetProxy = 0B41B609CC7DDB77C81CCA462EF027F6 /* PBXContainerItemProxy */; }; - 81C65564EFF0EC930D10A29285BB32F9 /* PBXTargetDependency */ = { + 8A36DC6E70FDC94BD196975187ACD276 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = "RCT-Folly"; - target = EC55D52694092A9D0E6A78EB01207EB5 /* RCT-Folly */; - targetProxy = 2DCE2B61F352988671ED7EAA985F4BFD /* PBXContainerItemProxy */; + name = "Flipper-Folly"; + target = B6D39E083AE0FF45BA30D7CDF6198A03 /* Flipper-Folly */; + targetProxy = 7E9F30DB161E19E6BDBD2C4AEDBC6CCD /* PBXContainerItemProxy */; }; - 81E734B2DCC71BF039F2D3598F9F3365 /* PBXTargetDependency */ = { + 8A5F8E9B7297B254723A71A395EA4C17 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = "React-RCTImage"; - target = 4F265533AAB7C8985856EC78A33164BB /* React-RCTImage */; - targetProxy = FA37256919DA40CCFDA1540F724B2D43 /* PBXContainerItemProxy */; + name = "React-Core"; + target = 7ACAA9BE580DD31A5CB9D97C45D9492D /* React-Core */; + targetProxy = 89F0979FC9F8BE92F35C4A0E2F9D60DA /* PBXContainerItemProxy */; }; - 8231A090A1C84960D0DE6BC8A362EDF9 /* PBXTargetDependency */ = { + 8AA938B9CF2C0D713DAF20F109DC279D /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = UMFileSystemInterface; - target = 2644525CCE081E967809A8163D893A93 /* UMFileSystemInterface */; - targetProxy = 177FC80D8DA02E9F9C363EC9D796189B /* PBXContainerItemProxy */; + name = YogaKit; + target = 32CA4CBD6B28983076BD93DA221AD027 /* YogaKit */; + targetProxy = 0CCEDA2E0A4EFD3690D6786D25C73CF3 /* PBXContainerItemProxy */; }; - 82713BE1E36688073F106C0DCE79A3E1 /* PBXTargetDependency */ = { + 8B35ABA1DA0BE1D272C1160A72CBFD99 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = "react-native-cookies"; - target = ADC4ACC657481AD27F9936D08FF7F49A /* react-native-cookies */; - targetProxy = 859171C7A1952B931BF3392772F1336C /* PBXContainerItemProxy */; - }; - 8287DCE0A4C67FF9FFA22DBBB8BBE6ED /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = RNFBApp; - target = 90D0DE2F3348233618414728C35311CA /* RNFBApp */; - targetProxy = 85F69F0D83AED0AD3A1DEE216D3903A0 /* PBXContainerItemProxy */; - }; - 830D0DDD1ED7766FDCC9E4B2D19035B6 /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = RNCAsyncStorage; - target = 89F573A6B1292B3B2296B2206BFDC3D7 /* RNCAsyncStorage */; - targetProxy = 631341BE9143FC0B1864D0AC25521689 /* PBXContainerItemProxy */; - }; - 832D84E40B4FCD08BFD68EFBE912221B /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = UMTaskManagerInterface; - target = 50188AAB5FAECCA9583327DBA2B0AF2B /* UMTaskManagerInterface */; - targetProxy = F3A1FCA30159A868A35741A0CFAE5AC2 /* PBXContainerItemProxy */; - }; - 836889954C347AE80E4498A74B7CA4AA /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = Yoga; - target = 2B25F90D819B9ADF2AF2D8733A890333 /* Yoga */; - targetProxy = 8DAC13FECAC4C9E1C3A8160D71BDA239 /* PBXContainerItemProxy */; - }; - 836CF11C0A0E6126D44AD3CC41CEF5D2 /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = FirebaseInstallations; - target = 87803597EB3F20FC46472B85392EC4FD /* FirebaseInstallations */; - targetProxy = 66B6D11533A8FBAFF46B22D6A7534A0A /* PBXContainerItemProxy */; - }; - 83D8B9BA2DBE44821381343040980B6C /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = "RCT-Folly"; - target = EC55D52694092A9D0E6A78EB01207EB5 /* RCT-Folly */; - targetProxy = D5D15D2F22B51E19F208AAA0944663D3 /* PBXContainerItemProxy */; + name = "boost-for-react-native"; + target = ED2506AE7DE35D654F61254441EA7155 /* boost-for-react-native */; + targetProxy = 9E53C833C9ECAF80ADA68CA979284BF5 /* PBXContainerItemProxy */; }; - 8404D18E8B335A5F57D0EA4669244D7F /* PBXTargetDependency */ = { + 8BBBE324E4AA4A6065D88301C4BADC95 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = RNDeviceInfo; - target = 807428FE76D80865C9F59F3502600E89 /* RNDeviceInfo */; - targetProxy = 8FD65DCDE40ED346A89F711D8D4154FC /* PBXContainerItemProxy */; + name = "React-RCTActionSheet"; + target = 11989A5E568B3B69655EE0C13DCDA3F9 /* React-RCTActionSheet */; + targetProxy = 1069F99B00629368818A4E6CD43C00B4 /* PBXContainerItemProxy */; }; - 840D0A62BD19786FB3EE9B25821F01C6 /* PBXTargetDependency */ = { + 8BD51252A4BA70E9668E4D6F0D828205 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = UMFontInterface; - target = 014495932E402CA67C37681988047CA2 /* UMFontInterface */; - targetProxy = 810FDFE4C799F23532046534D076DED7 /* PBXContainerItemProxy */; + name = "react-native-slider"; + target = A4EF87F5681665EAE943D9B06BBB17DF /* react-native-slider */; + targetProxy = 47B48D44209F7E76BC10BFD4E68E0CC7 /* PBXContainerItemProxy */; }; - 845D13DF26BF36A56808FBA01E3FF533 /* PBXTargetDependency */ = { + 8C1C6605374664DB6889301C22135674 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = Firebase; - target = 072CEA044D2EF26F03496D5996BBF59F /* Firebase */; - targetProxy = 891CAEC0FD201C9817D63B3CBD7BE9E1 /* PBXContainerItemProxy */; + name = RCTTypeSafety; + target = D20469A9A1E5CFB26045EAEBE3F88E5E /* RCTTypeSafety */; + targetProxy = 53906E9A98FADC2A22D60C989022AC13 /* PBXContainerItemProxy */; }; - 849AF2A2313D1CEC3439F96A1A6C46C5 /* PBXTargetDependency */ = { + 8C340C685395737373B0A963FE77C121 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = UMCore; - target = DBCB1B4965863DDD3B9DED9A0918A526 /* UMCore */; - targetProxy = D3BC23E0A45A25F9A47A1A9C65904727 /* PBXContainerItemProxy */; + name = "React-Core"; + target = 7ACAA9BE580DD31A5CB9D97C45D9492D /* React-Core */; + targetProxy = 883FDCABE1E9C57061B044912C469E61 /* PBXContainerItemProxy */; }; - 852A93058D3CA3352A3626F4F2AA6BAB /* PBXTargetDependency */ = { + 8CC857B3B10280649946C864675B4280 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = RNScreens; - target = 214E42634D1E187D876346D36184B655 /* RNScreens */; - targetProxy = 0FAE794FCEC8DC726095DCA424136FA9 /* PBXContainerItemProxy */; + name = "React-Core"; + target = 7ACAA9BE580DD31A5CB9D97C45D9492D /* React-Core */; + targetProxy = 7C41680667220B2351F93E93FE9EF530 /* PBXContainerItemProxy */; }; - 85C5CA300C5BB0252120260E04E695E4 /* PBXTargetDependency */ = { + 8CD0F33F81382DCFCD0A6EB6F8E24AE5 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = "React-jsi"; - target = FA877ADC442CB19CF61793D234C8B131 /* React-jsi */; - targetProxy = C290017ADCF0F1372C8BE69BE44A4D21 /* PBXContainerItemProxy */; + name = FirebaseCore; + target = 4402AFF83DBDC4DD07E198685FDC2DF2 /* FirebaseCore */; + targetProxy = 6B480479BF01E0378DA3192CA75B6D7D /* PBXContainerItemProxy */; }; - 8627420145DEB3A9D3C381E09B3FEF0C /* PBXTargetDependency */ = { + 8E103A054133D4BFB47642642C20AA73 /* PBXTargetDependency */ = { isa = PBXTargetDependency; name = React; target = 1BEE828C124E6416179B904A9F66D794 /* React */; - targetProxy = E34199B42E03CBA82D52A75B4DAF9249 /* PBXContainerItemProxy */; + targetProxy = DD24CB1A2D63E2CF4F6E431B3F0487D6 /* PBXContainerItemProxy */; }; - 86765640EE4EE6291250C72B96EE7496 /* PBXTargetDependency */ = { + 8E122AF451DEE6AF1026273409B58A25 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = SDWebImageWebPCoder; - target = 1953860EA9853AA2BC8022B242F08512 /* SDWebImageWebPCoder */; - targetProxy = 2895C89D7BB10E5DE159A7BA0C8A9D63 /* PBXContainerItemProxy */; + name = "react-native-notifications"; + target = CA400829100F0628EC209FBB08347D42 /* react-native-notifications */; + targetProxy = BCEB94D0FBED8B6FF956962B3C983293 /* PBXContainerItemProxy */; }; - 871E0E67DB71EA995D1707AA293CF278 /* PBXTargetDependency */ = { + 8E996FB8A8CEFE5BC45618F5C362746D /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = FBReactNativeSpec; - target = C3496D0495E700CF08A90C41EA8FA4BB /* FBReactNativeSpec */; - targetProxy = 4DCA6943D90A82D4A4849D9B5E5BC851 /* PBXContainerItemProxy */; + name = "React-RCTAnimation"; + target = 938CCE22F6C4094B3FB6CF1478579E4B /* React-RCTAnimation */; + targetProxy = FC9AF4F9CB03583C7CA28AFB7BB89BF1 /* PBXContainerItemProxy */; }; - 872C042FDFDA796DF43FD0060E88CD45 /* PBXTargetDependency */ = { + 8EDFADC948AC9F8B992479C7A4080E20 /* PBXTargetDependency */ = { isa = PBXTargetDependency; name = React; target = 1BEE828C124E6416179B904A9F66D794 /* React */; - targetProxy = 4803AB7B3643D4969AC4087AC4C79360 /* PBXContainerItemProxy */; - }; - 876D68D975072D0B9A21D51F964A4F79 /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = GoogleDataTransportCCTSupport; - target = F4F25FCAC51B51FD5F986EB939BF1F87 /* GoogleDataTransportCCTSupport */; - targetProxy = A49E2A5357A8B70FF8CB008146380DB5 /* PBXContainerItemProxy */; - }; - 877930B14A21B2DD3CA569D5013960B7 /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = "React-cxxreact"; - target = 463F41A7E8B252F8AC5024DA1F4AF6DA /* React-cxxreact */; - targetProxy = 81CFA94D98625937545C95F24EA4B318 /* PBXContainerItemProxy */; + targetProxy = 62A9FCA66EA1267851246A23C6494C10 /* PBXContainerItemProxy */; }; - 8851DA2B9E0A3CC26022E5A18E675EB5 /* PBXTargetDependency */ = { + 8EF6B148A4EA5C0E11ABD529E8AD9174 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = "Flipper-RSocket"; - target = 1FAAE067C1BFDEA17DFB657C3379AB56 /* Flipper-RSocket */; - targetProxy = 8E59A79A878D5900FEA7BA04E54F0BCB /* PBXContainerItemProxy */; - }; - 8886F81FD7F1147A8B1E29F77BDC0883 /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = RNDateTimePicker; - target = D760AF58E12ABBB51F84160FB02B5F39 /* RNDateTimePicker */; - targetProxy = F67196EA1045DF605438D65FB686CB98 /* PBXContainerItemProxy */; + name = TOCropViewController; + target = F3966F664F3CFAEFAB57C40FB54D3788 /* TOCropViewController */; + targetProxy = 2BE3D020F29F4B1BFE25EDA862544344 /* PBXContainerItemProxy */; }; - 88B5EF8E833AAD84F5743F9DE2AA252D /* PBXTargetDependency */ = { + 8F5D768BF4B58D001613850E6E906FF9 /* PBXTargetDependency */ = { isa = PBXTargetDependency; name = RNFBCrashlytics; target = E3573FB7AF659C42B699003C73722241 /* RNFBCrashlytics */; - targetProxy = 6D6634B65AB897CC50769657EC33A6F7 /* PBXContainerItemProxy */; + targetProxy = 32F686EAF70D6C2A1F06CF15BC8E3430 /* PBXContainerItemProxy */; }; - 89BBCAC7B66E9F858377D08C0C3F2D6C /* PBXTargetDependency */ = { + 8F82A6375FB5031313D4316199D5A40B /* PBXTargetDependency */ = { isa = PBXTargetDependency; name = React; target = 1BEE828C124E6416179B904A9F66D794 /* React */; - targetProxy = 013091E48ED486D2E0A27CF03CE4489F /* PBXContainerItemProxy */; - }; - 8A31414293B6B202C7388DF679DB86EF /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = "React-RCTBlob"; - target = 95D98F901D07557EF7CA38D3F03832C5 /* React-RCTBlob */; - targetProxy = 920DB7C04761108C4785570930335519 /* PBXContainerItemProxy */; - }; - 8A89E00281EA380A24AC3EFD148A6682 /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = "react-native-orientation-locker"; - target = 1092C13E1E1172209537C28D0C8D4D3C /* react-native-orientation-locker */; - targetProxy = 47C801280DB42627E01CD42B36FA5227 /* PBXContainerItemProxy */; + targetProxy = 9C0DB8D783589B615005562866351031 /* PBXContainerItemProxy */; }; - 8B20FE39F23CDF3EA619E8A46BB85F33 /* PBXTargetDependency */ = { + 8FDA3D0A87693F0BA1DC3A95140AB210 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = "react-native-webview"; - target = 8D18C49071FC5370C25F5758A85BA5F6 /* react-native-webview */; - targetProxy = CA874D7E52C48A8F1AB6FA47A65EF107 /* PBXContainerItemProxy */; + name = RNGestureHandler; + target = B9E8F4CA2A4A8599389FEB665A9B96FF /* RNGestureHandler */; + targetProxy = 080F6314EE3D5FB59CD58C74D1047714 /* PBXContainerItemProxy */; }; - 8B21B104C4241BE3592151EE2AFE8CED /* PBXTargetDependency */ = { + 90F87B77D53854D28C62A15FAD9842C1 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = React; - target = 1BEE828C124E6416179B904A9F66D794 /* React */; - targetProxy = 70609736CA4CFD114CE5EFE50DCE88A6 /* PBXContainerItemProxy */; + name = BugsnagReactNative; + target = 0745200E60DC80C9A0A48B7E6C1518D7 /* BugsnagReactNative */; + targetProxy = 1B53FA1CE85238A4A1AAED61F5710469 /* PBXContainerItemProxy */; }; - 8B593798628ABED86D22FEA6D6C59EBB /* PBXTargetDependency */ = { + 9164664D6E5526F941CECCAB1AF99082 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = "React-runtimeexecutor"; - target = 54EB12219122432FA744088BC5A680D2 /* React-runtimeexecutor */; - targetProxy = 9D96860AF0D46D389A4DF87308DA67E1 /* PBXContainerItemProxy */; + name = SDWebImageWebPCoder; + target = 1953860EA9853AA2BC8022B242F08512 /* SDWebImageWebPCoder */; + targetProxy = F0FCB959869E44C04AE509EEE83F67AE /* PBXContainerItemProxy */; }; - 8C3D6F3780F23C75CEF5EE36A80AC247 /* PBXTargetDependency */ = { + 916A70725AD078F06C954E7ABEF11B59 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = RNCMaskedView; - target = 1A0445474DA11CA659C4BCC5AB64B1BF /* RNCMaskedView */; - targetProxy = CF1E4F62D5034B7E50F06CB96ECB8938 /* PBXContainerItemProxy */; + name = libwebp; + target = 47D2E85A78C25869BB13521D8561A638 /* libwebp */; + targetProxy = F4167EC0B02741C416412D2F29BF89D7 /* PBXContainerItemProxy */; }; - 8C4D501247F4B7496B1DAD1225FD640E /* PBXTargetDependency */ = { + 91E800AB37203183403DD22106A4EA5C /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = React; - target = 1BEE828C124E6416179B904A9F66D794 /* React */; - targetProxy = 9CBF77A27568AB4E3E05D39647C581D8 /* PBXContainerItemProxy */; + name = "RCT-Folly"; + target = EC55D52694092A9D0E6A78EB01207EB5 /* RCT-Folly */; + targetProxy = DEDA961F5378987B7F9928609B9CE46E /* PBXContainerItemProxy */; }; - 8CA09154EC7DEEA3770002D19672E966 /* PBXTargetDependency */ = { + 92856E0CFEC6E7FF6B008717A7FF65C1 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = "Flipper-PeerTalk"; - target = 718DB7D0A7E90B531AD577B3356C4161 /* Flipper-PeerTalk */; - targetProxy = 0E3523AE5241A8E88AC47CEFB9277B00 /* PBXContainerItemProxy */; + name = UMAppLoader; + target = C452F579644C83E8D8E36EC24A9BBD46 /* UMAppLoader */; + targetProxy = 2B7DF7BE05A69696657BA8D9D9287EF0 /* PBXContainerItemProxy */; }; - 8CF2441F8BD11960DA4AA94B96460799 /* PBXTargetDependency */ = { + 92C5C042AF8AAA861CF2743EADF4E6FF /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = EXConstants; - target = 6C1893932A69822CBE3502F2E0BCFB6D /* EXConstants */; - targetProxy = 4E8C2D1817F3ECE5F333AC385DD762F4 /* PBXContainerItemProxy */; + name = GoogleAppMeasurement; + target = B53D977A951AFC38B21751B706C1DF83 /* GoogleAppMeasurement */; + targetProxy = 09D828806684E123534BD880B317B2DE /* PBXContainerItemProxy */; }; - 8D401A4598BB50D0B34669CE8B9F9A27 /* PBXTargetDependency */ = { + 92CA3951ABAAD3001CA43C5327FFD94F /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = nanopb; - target = D2B5E7DCCBBFB32341D857D01211A1A3 /* nanopb */; - targetProxy = 632DA945F4A946CF1CDC32425016CAF3 /* PBXContainerItemProxy */; + name = "React-runtimeexecutor"; + target = 54EB12219122432FA744088BC5A680D2 /* React-runtimeexecutor */; + targetProxy = BBD30B6A3FFAAF1272A0CD4D8F4C03BE /* PBXContainerItemProxy */; }; - 8D7EE01FA93D2BBA756CAB08A3845403 /* PBXTargetDependency */ = { + 944D57259018AFD9F0F6AA1EF8C3CFD8 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = RCTRequired; - target = E7E7CE52C8C68B17224FF8C262D80ABF /* RCTRequired */; - targetProxy = 331F386E85E953818B591C6997486C19 /* PBXContainerItemProxy */; + name = "Flipper-DoubleConversion"; + target = D9245543B79C09FAC40FC8B9F291536A /* Flipper-DoubleConversion */; + targetProxy = 2FD162273322FFFE043C7188A38910A7 /* PBXContainerItemProxy */; }; - 8DE89D6131708EA9CAC3A5888D377DE0 /* PBXTargetDependency */ = { + 94919F98F58F5A8C2D95B2B630EAA035 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = FBReactNativeSpec; - target = C3496D0495E700CF08A90C41EA8FA4BB /* FBReactNativeSpec */; - targetProxy = 58D6C04CC829A78BEE24413D12CF650D /* PBXContainerItemProxy */; + name = FirebaseAnalytics; + target = C49E7A4D59E5C8BE8DE9FB1EFB150185 /* FirebaseAnalytics */; + targetProxy = A6FEF0A8AF78244724266C8ACD8E6A89 /* PBXContainerItemProxy */; }; - 8DF63E30C8A336EE49EC922DB675AC18 /* PBXTargetDependency */ = { + 949565D31323C56242B53533E6835AF2 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = nanopb; - target = D2B5E7DCCBBFB32341D857D01211A1A3 /* nanopb */; - targetProxy = 29A9C14575153E72B8F68CEB6470D28E /* PBXContainerItemProxy */; + name = SDWebImage; + target = 3847153A6E5EEFB86565BA840768F429 /* SDWebImage */; + targetProxy = 2A991E91A62B8CCA42DBDB028D1D9E3C /* PBXContainerItemProxy */; }; - 8E0590D8E71DBCC4E2AD36424CD78192 /* PBXTargetDependency */ = { + 949D453EB07C164F1E34FA0EB23E7C82 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = FirebaseAnalytics; - target = C49E7A4D59E5C8BE8DE9FB1EFB150185 /* FirebaseAnalytics */; - targetProxy = 8AE21511849BA75471C12EBC3FBD107C /* PBXContainerItemProxy */; + name = SDWebImageWebPCoder; + target = 1953860EA9853AA2BC8022B242F08512 /* SDWebImageWebPCoder */; + targetProxy = 32AE8701EC774DFBF956BB947524BA30 /* PBXContainerItemProxy */; }; - 8E31B98BBCD7D7BFE0DB9591D67792E5 /* PBXTargetDependency */ = { + 95FB772950501266AFA1F124377CA1E0 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = RNConfigReader; - target = DC0D417AC8ABB7AA10C20A5E0F065812 /* RNConfigReader */; - targetProxy = 46018F94CABDEFE9B2580943B39F0363 /* PBXContainerItemProxy */; + name = "react-native-cameraroll"; + target = BA3F5E5AA483B263B69601DE2FA269CB /* react-native-cameraroll */; + targetProxy = 43EE9CAFD12B08923B503259CA0CE6CA /* PBXContainerItemProxy */; }; - 8EC659CCB54C4E8BD5A89D96EE6ABD73 /* PBXTargetDependency */ = { + 96580AED6DB481AD60B67AEACE5B9ADA /* PBXTargetDependency */ = { isa = PBXTargetDependency; name = GoogleDataTransport; target = 5C0371EE948D0357B8EE0E34ABB44BF0 /* GoogleDataTransport */; - targetProxy = A058043B3506B7A06540B08D4BA9D97D /* PBXContainerItemProxy */; + targetProxy = 5BD55AB4B8FDB53BF784976D5A2A641A /* PBXContainerItemProxy */; }; - 8EEE597D6F15BBBE8976374C97512BCA /* PBXTargetDependency */ = { + 967D6DBF34E63D62ECB71CC39152B08A /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = "Flipper-PeerTalk"; - target = 718DB7D0A7E90B531AD577B3356C4161 /* Flipper-PeerTalk */; - targetProxy = 13FC3ED200281D9E6B890D5163268AE2 /* PBXContainerItemProxy */; + name = "OpenSSL-Universal"; + target = B9ED5194E665042005069EF06C82A050 /* OpenSSL-Universal */; + targetProxy = 8A7B7E0638E8C5288E92598A3554B86B /* PBXContainerItemProxy */; }; - 8F4984529BF991F7323B437FA5714B6A /* PBXTargetDependency */ = { + 96CA6D22FD89EBB50AC3981362DADAC9 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = "rn-extensions-share"; - target = A238B7CE3865946D1F214E1FE0023AAE /* rn-extensions-share */; - targetProxy = C63FA8E20B37F4DC2579DC3DDC18DECB /* PBXContainerItemProxy */; + name = SDWebImageWebPCoder; + target = 1953860EA9853AA2BC8022B242F08512 /* SDWebImageWebPCoder */; + targetProxy = F9995C46BB3B7374068D7B83C48805F6 /* PBXContainerItemProxy */; }; - 8F75994A9B48FF4313EFDDEDFF4DFDC8 /* PBXTargetDependency */ = { + 977946D84DCE99B098339DC8FB3D1AEC /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = "React-Core"; - target = 7ACAA9BE580DD31A5CB9D97C45D9492D /* React-Core */; - targetProxy = A7E89FBA8009C6F9C6916C857168C2BE /* PBXContainerItemProxy */; + name = React; + target = 1BEE828C124E6416179B904A9F66D794 /* React */; + targetProxy = 8A1A8FCAB0FAA046395E0C7EE5C8D800 /* PBXContainerItemProxy */; }; - 906A7A53E1CE515CD93208173D84815E /* PBXTargetDependency */ = { + 97F1EA46CA6FD89EF9369A611AD78A19 /* PBXTargetDependency */ = { isa = PBXTargetDependency; name = ReactCommon; target = B6D5DD49633DFF0657B8C3F08EB3ABA9 /* ReactCommon */; - targetProxy = F2BA47439F9714C5C807D9F0D7D274A7 /* PBXContainerItemProxy */; + targetProxy = 6E3E190C5F916C582779FB4CFB0D1F32 /* PBXContainerItemProxy */; }; - 908AB5A357A27B2B87B523F6CC8CA365 /* PBXTargetDependency */ = { + 98072C6FE27C2A4274B575042DF10CFC /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = RNLocalize; - target = B51433D546A38C51AA781F192E8836F8 /* RNLocalize */; - targetProxy = 46C53AF067A15343D583C7F71A893B84 /* PBXContainerItemProxy */; - }; - 90FE787CF74C003A7719751184FF8A6E /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = GoogleDataTransportCCTSupport; - target = F4F25FCAC51B51FD5F986EB939BF1F87 /* GoogleDataTransportCCTSupport */; - targetProxy = 5E56FDA49F54391D38580AB385191074 /* PBXContainerItemProxy */; + name = MMKV; + target = 91A6826828CB9FCD0169A7547E8A79EA /* MMKV */; + targetProxy = 38CA0710AB97E61137EBF4CFC6A1BE91 /* PBXContainerItemProxy */; }; - 912F7723DC302F388B571775F8AD3D67 /* PBXTargetDependency */ = { + 981BA6D0E7B67184B38A01C818AB5F11 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = "React-cxxreact"; - target = 463F41A7E8B252F8AC5024DA1F4AF6DA /* React-cxxreact */; - targetProxy = B9DC815EE0205F2415D3FE91C84DEF2E /* PBXContainerItemProxy */; + name = libwebp; + target = 47D2E85A78C25869BB13521D8561A638 /* libwebp */; + targetProxy = 58C12931B2E85F77BCD779AA06E97A3E /* PBXContainerItemProxy */; }; - 916D50F5FE1E54BBD1C8E72B51B53704 /* PBXTargetDependency */ = { + 98AD7116A01981612879A1A15439D6BB /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = "React-Core"; - target = 7ACAA9BE580DD31A5CB9D97C45D9492D /* React-Core */; - targetProxy = D66BECE531DF6C5E64050F3FF65EB93D /* PBXContainerItemProxy */; + name = "React-jsi"; + target = FA877ADC442CB19CF61793D234C8B131 /* React-jsi */; + targetProxy = F9ADAB4AF7E850BD859F16AFF9082F18 /* PBXContainerItemProxy */; }; - 920563EF6A58C256566C1B63B3406F6B /* PBXTargetDependency */ = { + 99DAD1D7607B17519B3328912C4E91FF /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = FirebaseAnalytics; - target = C49E7A4D59E5C8BE8DE9FB1EFB150185 /* FirebaseAnalytics */; - targetProxy = 42CE88158B97229520B321E4443AD1FA /* PBXContainerItemProxy */; + name = "Flipper-Folly"; + target = B6D39E083AE0FF45BA30D7CDF6198A03 /* Flipper-Folly */; + targetProxy = 9218FAF8DA0D15FC90EDE4E3F0E8E322 /* PBXContainerItemProxy */; }; - 928C21EA797C87A395A5946C53F95C49 /* PBXTargetDependency */ = { + 99F54E70963A3973DBFE32A1C21B5DD3 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = React; - target = 1BEE828C124E6416179B904A9F66D794 /* React */; - targetProxy = 2B9BC239A33199F1135BE33EFA7E2E3B /* PBXContainerItemProxy */; + name = RNDateTimePicker; + target = D760AF58E12ABBB51F84160FB02B5F39 /* RNDateTimePicker */; + targetProxy = A3F737DBAC64CB9F93294D6B30C9A183 /* PBXContainerItemProxy */; }; - 93A0513E58C725D2E94A5AA3894594DE /* PBXTargetDependency */ = { + 99F73ED16A560C48240FBEF118B3A4C0 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = SDWebImageWebPCoder; - target = 1953860EA9853AA2BC8022B242F08512 /* SDWebImageWebPCoder */; - targetProxy = 10462C237B9F6C8F2ECEF26F65338315 /* PBXContainerItemProxy */; + name = Yoga; + target = 2B25F90D819B9ADF2AF2D8733A890333 /* Yoga */; + targetProxy = 3B79934064D955ECE79DDE4A8F9983FF /* PBXContainerItemProxy */; }; - 93E89E422704884B4D0CEDBCFFC4F1F7 /* PBXTargetDependency */ = { + 9BD9DCB3EA80A295A3C317E10739054C /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = UMFileSystemInterface; - target = 2644525CCE081E967809A8163D893A93 /* UMFileSystemInterface */; - targetProxy = 9032E9EC68ED42A8E97DBC678DC59271 /* PBXContainerItemProxy */; + name = UMImageLoaderInterface; + target = 97C4DE84FA3CC4EC06AA6D8C249949B7 /* UMImageLoaderInterface */; + targetProxy = E3E04C57D03FF16BE0D7C5B34DFEDECA /* PBXContainerItemProxy */; }; - 9425BBD51483AA1FBE3CC74DC3765D7C /* PBXTargetDependency */ = { + 9C0D9EBF7166C89130C52CDD3ED7A164 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = "react-native-mmkv-storage"; - target = 74DAFD196634D10887C9A4E7BA19A5E4 /* react-native-mmkv-storage */; - targetProxy = 868101A1C99CECFEF4F971C99AAAFD34 /* PBXContainerItemProxy */; + name = RCTTypeSafety; + target = D20469A9A1E5CFB26045EAEBE3F88E5E /* RCTTypeSafety */; + targetProxy = 4968B4B8CE95C55EF5C6DCB369735AB2 /* PBXContainerItemProxy */; }; - 94FEC8FA2F9E342D0CAC8938C6448F7E /* PBXTargetDependency */ = { + 9C128D3C67B747A041EBA3A0A929EE18 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = EXImageLoader; - target = 263266A9E29FFF0E9C8CA0E4582BFCF4 /* EXImageLoader */; - targetProxy = 660D7A178848A2FB793E031B2D6475E8 /* PBXContainerItemProxy */; + name = RNBootSplash; + target = 6677891AC2F7AB93E04BFF30B293A46B /* RNBootSplash */; + targetProxy = DEE44EC3A1FD54EEBB3AA0017D5D3439 /* PBXContainerItemProxy */; }; - 95B0791F6B593EF8C3842D1D2117615B /* PBXTargetDependency */ = { + 9C49F05B1FBE9121C140AB549FB7520F /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = FirebaseInstallations; - target = 87803597EB3F20FC46472B85392EC4FD /* FirebaseInstallations */; - targetProxy = E3642347949F56CB2448C84DB03ED331 /* PBXContainerItemProxy */; + name = UMCore; + target = DBCB1B4965863DDD3B9DED9A0918A526 /* UMCore */; + targetProxy = 23CC6754E0A374FD2A767ED22637BEB0 /* PBXContainerItemProxy */; }; - 95B9F3BCA83B8222EFBEEE623EC62AB7 /* PBXTargetDependency */ = { + 9CBB9922E27537BE13B2B19D8020CCCC /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = DoubleConversion; - target = 2AB2EF542954AB1C999E03BFEF8DE806 /* DoubleConversion */; - targetProxy = 40BD78E7F0BA2DB65B35E29ACB0548F4 /* PBXContainerItemProxy */; + name = "react-native-simple-crypto"; + target = D985A509BFE270C95EDCBE6B4CBAF189 /* react-native-simple-crypto */; + targetProxy = 317425314BF71ED201D2CA443D35ECF7 /* PBXContainerItemProxy */; }; - 95CFBD8CB1EFA82CC90E274BD1F42D8F /* PBXTargetDependency */ = { + 9D46B07BD91B4D5557444DD2BF9BCB3D /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = "react-native-safe-area-context"; - target = BD9A27D8398DEB3205D3F8937B0672A0 /* react-native-safe-area-context */; - targetProxy = 9278EE79124BAA12AD7FF0C23D85C082 /* PBXContainerItemProxy */; + name = UMFileSystemInterface; + target = 2644525CCE081E967809A8163D893A93 /* UMFileSystemInterface */; + targetProxy = 30064E9B0E98486226F8047C982A72CF /* PBXContainerItemProxy */; }; - 968933C047F03FE6D4B0552C53BBA71E /* PBXTargetDependency */ = { + 9E222CD13864A589DA82947E33BE3C58 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = "React-Core"; - target = 7ACAA9BE580DD31A5CB9D97C45D9492D /* React-Core */; - targetProxy = 4FE0D7292C95BD1A3F3CD951E22C2770 /* PBXContainerItemProxy */; + name = "Flipper-Folly"; + target = B6D39E083AE0FF45BA30D7CDF6198A03 /* Flipper-Folly */; + targetProxy = 5313504DC2587A6FDF5D556C702D82DB /* PBXContainerItemProxy */; }; - 97190226766EE7B191866EEE7133DD98 /* PBXTargetDependency */ = { + 9EB066A3CE057715DB7C6E4C033FCA69 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = "react-native-notifications"; - target = CA400829100F0628EC209FBB08347D42 /* react-native-notifications */; - targetProxy = 6236B0E829BFA77ED7E0381BBC4793AD /* PBXContainerItemProxy */; + name = "hermes-engine"; + target = 985FEA01F314F3C00F0C1E1181E6C4A5 /* hermes-engine */; + targetProxy = 42DD50A4BF745F71F12164C2047EB30A /* PBXContainerItemProxy */; }; - 9794FD70DB79B990A1F0F5485EAE9DF7 /* PBXTargetDependency */ = { + 9F3EE561750DD2D2FF53DC13799A10D9 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = EXFileSystem; - target = 868B90C74770285449C60DBA82181479 /* EXFileSystem */; - targetProxy = A2D4EF6F1B53B0AB9E6E8B4AF81077F9 /* PBXContainerItemProxy */; + name = RNScreens; + target = 214E42634D1E187D876346D36184B655 /* RNScreens */; + targetProxy = 3B5FA7DB3BAC69DC77F16699376AAF17 /* PBXContainerItemProxy */; }; - 984EB99D178FF95511F246C464FC06F3 /* PBXTargetDependency */ = { + 9FFA660918952CC28D215E87E042B5C8 /* PBXTargetDependency */ = { isa = PBXTargetDependency; name = MMKV; target = 91A6826828CB9FCD0169A7547E8A79EA /* MMKV */; - targetProxy = 7843E243157C310D6DEC5D96F9D96F41 /* PBXContainerItemProxy */; - }; - 98692C7C8FE2287241EEA035C7631C5C /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = React; - target = 1BEE828C124E6416179B904A9F66D794 /* React */; - targetProxy = 555171B29ADA7FFC5810355DAC962B7F /* PBXContainerItemProxy */; + targetProxy = 9C4790F8AE5DEF463207CB1EC85F1FF9 /* PBXContainerItemProxy */; }; - 9905078A85903ED82426CAD5D77177A7 /* PBXTargetDependency */ = { + A08AAF87EA62CFF19578F0B0191DFAC8 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = EXImageLoader; - target = 263266A9E29FFF0E9C8CA0E4582BFCF4 /* EXImageLoader */; - targetProxy = B278D5AFD3F898794B7452160FDAED3F /* PBXContainerItemProxy */; + name = glog; + target = D0EFEFB685D97280256C559792236873 /* glog */; + targetProxy = BB582721F9FF1042C829E195DDDF54A1 /* PBXContainerItemProxy */; }; - 993D396F38E7691A8B7DD2E339CCF3D0 /* PBXTargetDependency */ = { + A1ABD34A0C90F09892F7B35F8B6F81DB /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = RNCMaskedView; - target = 1A0445474DA11CA659C4BCC5AB64B1BF /* RNCMaskedView */; - targetProxy = 7EE2AD69BF9E7C6FBEB92D6ACC61A2B4 /* PBXContainerItemProxy */; + name = "react-native-orientation-locker"; + target = 1092C13E1E1172209537C28D0C8D4D3C /* react-native-orientation-locker */; + targetProxy = E73A3F3A88AFD0485D0E425F0DEF4669 /* PBXContainerItemProxy */; }; - 9964CCD69F6A51C5BD50045ED16F6104 /* PBXTargetDependency */ = { + A1BFB4F8ED733B639FE878129301E133 /* PBXTargetDependency */ = { isa = PBXTargetDependency; name = UMCore; target = DBCB1B4965863DDD3B9DED9A0918A526 /* UMCore */; - targetProxy = 60D322FF766C8D61CA8ED87B9000A668 /* PBXContainerItemProxy */; - }; - 999345EA672871E0346A21D3DE4C2DEB /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = "Flipper-PeerTalk"; - target = 718DB7D0A7E90B531AD577B3356C4161 /* Flipper-PeerTalk */; - targetProxy = 1FAB6A417869C597FB92AC4C6640D180 /* PBXContainerItemProxy */; - }; - 9A05CE0E659953558AEBA7E4A2E35071 /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = GoogleAppMeasurement; - target = B53D977A951AFC38B21751B706C1DF83 /* GoogleAppMeasurement */; - targetProxy = 4CAA75395129FD55349D85DF38063591 /* PBXContainerItemProxy */; + targetProxy = FB408F57E46599CE3164C188A78310CE /* PBXContainerItemProxy */; }; - 9A092D9D215ECC00D3859F6182106BD8 /* PBXTargetDependency */ = { + A1E78532B4AE6112E9B947AA89C8F0AC /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = PromisesObjC; - target = 2BBF7206D7FAC92C82A042A99C4A98F8 /* PromisesObjC */; - targetProxy = 5B319F515B5ACDF4339F14979172021B /* PBXContainerItemProxy */; + name = EXKeepAwake; + target = 0CF4D9052577C85B6B8C4E957332626B /* EXKeepAwake */; + targetProxy = 067CD4C26143E2117854B2772FB3275C /* PBXContainerItemProxy */; }; - 9A88C1C580F3989943DB16406C1D071F /* PBXTargetDependency */ = { + A21C0176306959B4B898793B8D26D413 /* PBXTargetDependency */ = { isa = PBXTargetDependency; name = UMBarCodeScannerInterface; target = 49821C2B9E764AEDF2B35DFE9AA7022F /* UMBarCodeScannerInterface */; - targetProxy = C032CAF5490A39996A9AA92FAF23DA58 /* PBXContainerItemProxy */; + targetProxy = 3A2971ABE3AD32C46CF437F0574E8AB3 /* PBXContainerItemProxy */; }; - 9B5D2D8B41704238FFE90A8F83B1B5B8 /* PBXTargetDependency */ = { + A21C18D2F5B38D352EF7874ECBE902A1 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = PromisesObjC; - target = 2BBF7206D7FAC92C82A042A99C4A98F8 /* PromisesObjC */; - targetProxy = 44D80541E9215EC364AE28ADAE855D7B /* PBXContainerItemProxy */; + name = "React-RCTNetwork"; + target = 651511D7DA7F07F9FC9AA40A2E86270D /* React-RCTNetwork */; + targetProxy = 3713AD57BF43C9120AD57F58A8C71088 /* PBXContainerItemProxy */; }; - 9B857544C3B7942F3669F09280978200 /* PBXTargetDependency */ = { + A22A59AE61054CBE43FFA73C8B06B622 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = MMKVCore; - target = AC8AE887C706A43711D115E69B9D988A /* MMKVCore */; - targetProxy = 25BBD187E54CDFAC57A6BA84E50B8155 /* PBXContainerItemProxy */; + name = ReactNativeUiLib; + target = 037A1F31C4D99F52EC9FD2008FEC481C /* ReactNativeUiLib */; + targetProxy = D2F5F395819B191BDA32D1222DA014DE /* PBXContainerItemProxy */; }; - 9BCCD88B6F1E4251F3C5BBBE59C6E0C3 /* PBXTargetDependency */ = { + A262058FD2385CD19E34342284FA8262 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = MMKVCore; - target = AC8AE887C706A43711D115E69B9D988A /* MMKVCore */; - targetProxy = CAC1320E6DA61ED52F013627E73C1B34 /* PBXContainerItemProxy */; + name = Firebase; + target = 072CEA044D2EF26F03496D5996BBF59F /* Firebase */; + targetProxy = 0440BFAA63BDAD46E4DE9DEB329D7FB3 /* PBXContainerItemProxy */; }; - 9C27F86BF24266DE36575539849D4693 /* PBXTargetDependency */ = { + A32BA90469D59908B84594174A7E75C2 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = "React-RCTActionSheet"; - target = 11989A5E568B3B69655EE0C13DCDA3F9 /* React-RCTActionSheet */; - targetProxy = E7F0ADFCD6A72AEBA6784F657563E240 /* PBXContainerItemProxy */; + name = "React-callinvoker"; + target = 2681CB7EF647E61F4F9A43029C235607 /* React-callinvoker */; + targetProxy = 5D4245917E4382FDE72243FDCD826D42 /* PBXContainerItemProxy */; + }; + A360A87317ADA9F6086DF77D94078B01 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = "React-RCTImage"; + target = 4F265533AAB7C8985856EC78A33164BB /* React-RCTImage */; + targetProxy = 239D8CB6F28000F080E36BAAD0DFB895 /* PBXContainerItemProxy */; }; - 9C3F7A036E96D2D712EC3BD41027D85F /* PBXTargetDependency */ = { + A37B63310039E3791F6C6F7AFC07E264 /* PBXTargetDependency */ = { isa = PBXTargetDependency; name = "React-RCTSettings"; target = 680299219D3A48D42A648AF6706275A9 /* React-RCTSettings */; - targetProxy = BA1A8E6A7D41CDA8062C56C69E771FE0 /* PBXContainerItemProxy */; + targetProxy = D1A5C4173CC1F56A786D59D54FE3A21D /* PBXContainerItemProxy */; + }; + A3E6C3079D44BB63932AFB431F98A2A9 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = CocoaAsyncSocket; + target = 6083682834ABE0AE7BD1CBF06CADD036 /* CocoaAsyncSocket */; + targetProxy = 3038491BE57FD79E28D7D793BC9919C2 /* PBXContainerItemProxy */; }; - 9D0200E2B2272EE3D6C2508944090083 /* PBXTargetDependency */ = { + A4056D5C358772C20014BFEE6811530D /* PBXTargetDependency */ = { isa = PBXTargetDependency; name = "React-Core"; target = 7ACAA9BE580DD31A5CB9D97C45D9492D /* React-Core */; - targetProxy = D13C0D4BA9DA741BC9A1945F6CEEF702 /* PBXContainerItemProxy */; + targetProxy = 81EAAF8A5D10C464023298081BAB20BF /* PBXContainerItemProxy */; }; - 9D816FE423E6F3FA46EB8E43C8D17599 /* PBXTargetDependency */ = { + A44ED6522B5E82F6C7F2C9F3AEB8EA61 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = UMCore; - target = DBCB1B4965863DDD3B9DED9A0918A526 /* UMCore */; - targetProxy = 3268E9B58B16AC4BF0109C1643C7224A /* PBXContainerItemProxy */; - }; - 9DC93C1D6F5EA0E5CAE692445145CB0D /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = UMSensorsInterface; - target = 2038C6F97563AAD6162C284B3EDD5B3B /* UMSensorsInterface */; - targetProxy = C8184BA735878CA7ECD82130FD1BA5FD /* PBXContainerItemProxy */; - }; - 9E426F33134A6FFA66DC6649B1829689 /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = Firebase; - target = 072CEA044D2EF26F03496D5996BBF59F /* Firebase */; - targetProxy = 169768D84C3FA56A813550568C4ED880 /* PBXContainerItemProxy */; + name = "react-native-jitsi-meet"; + target = D39AB631E8050865DE01F6D5678797D2 /* react-native-jitsi-meet */; + targetProxy = C895F2179C5BD0E712F7117475F2AA68 /* PBXContainerItemProxy */; }; - 9E6D5EB9736C5FE8529CBDCB6958006A /* PBXTargetDependency */ = { + A462F8A52AFE46C1626966A092DDE544 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = "React-Core"; - target = 7ACAA9BE580DD31A5CB9D97C45D9492D /* React-Core */; - targetProxy = 2474CD9A20FA79BFF80DADD3180C3B9F /* PBXContainerItemProxy */; + name = JitsiMeetSDK; + target = 5B40FBDAD0AB75D17C4760F4054BFF71 /* JitsiMeetSDK */; + targetProxy = 5A910571141E1475788075941C86E603 /* PBXContainerItemProxy */; }; - 9FC16006E154CCC6FA16881BC112BEEA /* PBXTargetDependency */ = { + A4ED7BD013639E35F6FBE91105B483A0 /* PBXTargetDependency */ = { isa = PBXTargetDependency; name = glog; target = D0EFEFB685D97280256C559792236873 /* glog */; - targetProxy = 6BF35E248DEC7B1CA4FF8109AD5DE73C /* PBXContainerItemProxy */; + targetProxy = C49E3C17AC92F36E2F66AD84B560D8C0 /* PBXContainerItemProxy */; }; - 9FC9F16B91C53985F4203E72D7906D9C /* PBXTargetDependency */ = { + A51C2EDB0C2B520665D202E9A7192809 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = React; - target = 1BEE828C124E6416179B904A9F66D794 /* React */; - targetProxy = 710AFA78DB930DDB1A0AF654064B964B /* PBXContainerItemProxy */; + name = RCTRequired; + target = E7E7CE52C8C68B17224FF8C262D80ABF /* RCTRequired */; + targetProxy = 9CE447BE150FB63EC396AFDB5778D332 /* PBXContainerItemProxy */; }; - 9FE03DE9F5E3B124AFBAF3CE18067012 /* PBXTargetDependency */ = { + A5732050F78081636B10A3A8B0A0766B /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = glog; - target = D0EFEFB685D97280256C559792236873 /* glog */; - targetProxy = 309B67A53527D73A2D42EB256B0B895F /* PBXContainerItemProxy */; + name = EXLocalAuthentication; + target = 869CED37B4B77AAE35DF8B6E70788BBC /* EXLocalAuthentication */; + targetProxy = F7850F22766A2CD2244F22F2149B65FB /* PBXContainerItemProxy */; + }; + A59536C7C6A8ED022C20FD780E721468 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = YogaKit; + target = 32CA4CBD6B28983076BD93DA221AD027 /* YogaKit */; + targetProxy = 03510CE93375C31F1123483F6ACF46F1 /* PBXContainerItemProxy */; }; - A04AA6C8A345271CCBE97DD920683301 /* PBXTargetDependency */ = { + A5F3D4D67BA20A63B8CEAD8DD491DF01 /* PBXTargetDependency */ = { isa = PBXTargetDependency; name = "RCT-Folly"; target = EC55D52694092A9D0E6A78EB01207EB5 /* RCT-Folly */; - targetProxy = 9DB544F9F59F053BCBB42F4398A21AB9 /* PBXContainerItemProxy */; + targetProxy = 2F38D7EF272E1927EB4BF6C85CA740A2 /* PBXContainerItemProxy */; }; - A1063D6464E40C5A91C32D7F123CAD49 /* PBXTargetDependency */ = { + A63F6D47FAEC4EA1980630DE639B8833 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = Flipper; - target = E63939AA6EFD3D6A8C09E45929F11DBD /* Flipper */; - targetProxy = 374A3655E4FBF96ADA70AC0EFBB2384D /* PBXContainerItemProxy */; + name = libevent; + target = 04A30E186743192DFB26B0FD7DB8F250 /* libevent */; + targetProxy = 9FDD08F967FCC9AFAAF672204967D81F /* PBXContainerItemProxy */; }; - A111437F7EE9EB56A7032A77CF85E626 /* PBXTargetDependency */ = { + A6C47CC08FC863EFD2953DFD1DADB7D8 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = "react-native-mmkv-storage"; - target = 74DAFD196634D10887C9A4E7BA19A5E4 /* react-native-mmkv-storage */; - targetProxy = 34C614E6FA7294F59F13C89618BF3A7D /* PBXContainerItemProxy */; + name = "React-perflogger"; + target = F1E2583679398CB5F4D2B3272E9B198F /* React-perflogger */; + targetProxy = E16B954EFCFC28D7941903E2B0342FCA /* PBXContainerItemProxy */; }; - A114428CAC1D390A88DB0B48E03F7734 /* PBXTargetDependency */ = { + A721B65D4C37A55293BCEB9BE9CC10B6 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = UMReactNativeAdapter; - target = 897EF6A99176326E24F51E2F2103828C /* UMReactNativeAdapter */; - targetProxy = 194A5CC4DF2DA7326070B95C37CE40E8 /* PBXContainerItemProxy */; + name = "React-callinvoker"; + target = 2681CB7EF647E61F4F9A43029C235607 /* React-callinvoker */; + targetProxy = 7B5FF147C97F1C82B57785A7E28562D3 /* PBXContainerItemProxy */; }; - A26B3133C3B5F2C2BCEBD8B4077EE092 /* PBXTargetDependency */ = { + A7F65A0B0BB672AA725057E825D73F4D /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = "React-Core"; - target = 7ACAA9BE580DD31A5CB9D97C45D9492D /* React-Core */; - targetProxy = B2037FE0D3589F33E67FC737F3418312 /* PBXContainerItemProxy */; + name = UMImageLoaderInterface; + target = 97C4DE84FA3CC4EC06AA6D8C249949B7 /* UMImageLoaderInterface */; + targetProxy = 3B2F88382F1D3FFE17166A9712265678 /* PBXContainerItemProxy */; }; - A2B9CD32F6F0425727F2C55F0C85FE07 /* PBXTargetDependency */ = { + A82DC0092BBF3DA9CF0CB5B4F72B98FE /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = libwebp; - target = 47D2E85A78C25869BB13521D8561A638 /* libwebp */; - targetProxy = 9AEADB9716B79043EEC0777F76BF5759 /* PBXContainerItemProxy */; + name = "React-CoreModules"; + target = E16E206437995280D349D4B67695C894 /* React-CoreModules */; + targetProxy = C3A9FF8382E34054104387CFCA9AA519 /* PBXContainerItemProxy */; }; - A2C205EF932D6CC2C24DB178FEDD7421 /* PBXTargetDependency */ = { + A881757E4DCB15D9AD232864D7D7C4E8 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = React; - target = 1BEE828C124E6416179B904A9F66D794 /* React */; - targetProxy = D2DE47110A1C9873D8A923A83B7605C7 /* PBXContainerItemProxy */; + name = RNReanimated; + target = FF879E718031128A75E7DE54046E6219 /* RNReanimated */; + targetProxy = 1F496B70968EC6096F50E1B09B0932E1 /* PBXContainerItemProxy */; }; - A2F44A5C2BA2EB24DD1708DDEEE059DB /* PBXTargetDependency */ = { + A8CE6F72221BD14B327717552E82986A /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = "react-native-cookies"; - target = ADC4ACC657481AD27F9936D08FF7F49A /* react-native-cookies */; - targetProxy = 17C00AD0D44AFB50F360E19F80886B41 /* PBXContainerItemProxy */; + name = UMCameraInterface; + target = 0A915EE9D35CA5636731F8763E774951 /* UMCameraInterface */; + targetProxy = 0C04E246F6F161CA7C95BEEA54D989F3 /* PBXContainerItemProxy */; }; - A2F74EA066EAECE59AF64DCAC0257122 /* PBXTargetDependency */ = { + A8DF580FEE56ACC30717DAF6C4009872 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = MMKVCore; - target = AC8AE887C706A43711D115E69B9D988A /* MMKVCore */; - targetProxy = A3CFCF3447DCF377040C02AA14980B74 /* PBXContainerItemProxy */; + name = "react-native-document-picker"; + target = D11E74324175FE5B0E78DB046527F233 /* react-native-document-picker */; + targetProxy = CE668DFD349D070D1212AB3141F6F3F1 /* PBXContainerItemProxy */; }; - A328CFB5DB03E1684E384AC8BED718BA /* PBXTargetDependency */ = { + A933EFB7D2064F8978265F19B8807038 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = FBLazyVector; - target = 8CC4EAA817AA86310D1900F1DAB3580F /* FBLazyVector */; - targetProxy = 63C08E5F8D2AEADD422054F35008354A /* PBXContainerItemProxy */; + name = "React-RCTActionSheet"; + target = 11989A5E568B3B69655EE0C13DCDA3F9 /* React-RCTActionSheet */; + targetProxy = D744292E54D8A3E5F7BE50EF52270268 /* PBXContainerItemProxy */; }; - A3380830A9E04BED95BEA0AC33DBDED2 /* PBXTargetDependency */ = { + A9F9A22C3D69615363A1BE39DE287C32 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = ReactCommon; - target = B6D5DD49633DFF0657B8C3F08EB3ABA9 /* ReactCommon */; - targetProxy = 1DB3F05A69423E8AADC62A5A82FBADF1 /* PBXContainerItemProxy */; + name = "react-native-cameraroll"; + target = BA3F5E5AA483B263B69601DE2FA269CB /* react-native-cameraroll */; + targetProxy = 6444D49D20E51EA417E899762AC492D3 /* PBXContainerItemProxy */; }; - A3E83816F91FB6FF8637A270F369AC3C /* PBXTargetDependency */ = { + AA3D80D95A98C52E5CD9620DAF320F3E /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = UMFaceDetectorInterface; - target = 2AD4F40E67E1874A0816F6B34289EB41 /* UMFaceDetectorInterface */; - targetProxy = 1FAB7A8AC22642B022AF23C6E5434234 /* PBXContainerItemProxy */; + name = FirebaseCore; + target = 4402AFF83DBDC4DD07E198685FDC2DF2 /* FirebaseCore */; + targetProxy = C5544B6CC1407E8A99F4EB766473EF2A /* PBXContainerItemProxy */; }; - A4B7F49C2B83FC787F6F4B8D56885280 /* PBXTargetDependency */ = { + AA689E7ED5560DCA1FF9C6BDBD89C90E /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = "React-RCTNetwork"; - target = 651511D7DA7F07F9FC9AA40A2E86270D /* React-RCTNetwork */; - targetProxy = D3A79498CFB68AEB7500D9192A478F00 /* PBXContainerItemProxy */; + name = EXHaptics; + target = 409F3A0DB395F53FFB6AB30E5CD8ACD1 /* EXHaptics */; + targetProxy = 333FE4E1E83550F24CDB80FE38559B04 /* PBXContainerItemProxy */; }; - A51EC2E02846BD88420A5D704F349AB0 /* PBXTargetDependency */ = { + AB6D88BAA67E24E27433C4B6BABAAB3C /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = glog; - target = D0EFEFB685D97280256C559792236873 /* glog */; - targetProxy = EEDD76B810282537AB6DF06A71FF2A78 /* PBXContainerItemProxy */; + name = "React-jsi"; + target = FA877ADC442CB19CF61793D234C8B131 /* React-jsi */; + targetProxy = 93BE80EA7DC15F38156C161EEDBEAF70 /* PBXContainerItemProxy */; }; - A57CB5642DC7276FDA316BAD26A63E4B /* PBXTargetDependency */ = { + AB84B027C6326EA8EBC66752508DD6F4 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = "React-Core"; - target = 7ACAA9BE580DD31A5CB9D97C45D9492D /* React-Core */; - targetProxy = F62182C9212E13FD7948FD12E735046C /* PBXContainerItemProxy */; + name = "React-RCTBlob"; + target = 95D98F901D07557EF7CA38D3F03832C5 /* React-RCTBlob */; + targetProxy = 603C777EA49D1010895E1291F97FE7BE /* PBXContainerItemProxy */; }; - A6203A14694E22E3AA68236DE869C00E /* PBXTargetDependency */ = { + ABD5551CC95971C5EBA844393C748DC1 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = RNFBCrashlytics; - target = E3573FB7AF659C42B699003C73722241 /* RNFBCrashlytics */; - targetProxy = 808002E3B1AF5727558607EE6E064A26 /* PBXContainerItemProxy */; + name = "React-RCTImage"; + target = 4F265533AAB7C8985856EC78A33164BB /* React-RCTImage */; + targetProxy = 90FDBF14DEF62A5CE75BB9AE06A25C5F /* PBXContainerItemProxy */; }; - A6A8726D1291B86860C4DB9A5AB1CBA2 /* PBXTargetDependency */ = { + AC49169AF2691DDA4D46181A2D030987 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = "react-native-slider"; - target = A4EF87F5681665EAE943D9B06BBB17DF /* react-native-slider */; - targetProxy = AB0AD9D1BCBDDFDBDC94F69043A0CE91 /* PBXContainerItemProxy */; + name = RCTTypeSafety; + target = D20469A9A1E5CFB26045EAEBE3F88E5E /* RCTTypeSafety */; + targetProxy = 71A79285F20FB4E2B754A36628BEF8E9 /* PBXContainerItemProxy */; }; - A6BE20308DC8C4A9E9B0C7A2694A14FC /* PBXTargetDependency */ = { + AC67364FE9C8D3C059BC9B28737B66D7 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = "React-jsinspector"; - target = F7D033C4C128EECAA020990641FA985F /* React-jsinspector */; - targetProxy = 64340757F801CD4D68903C3967D08A6D /* PBXContainerItemProxy */; + name = Firebase; + target = 072CEA044D2EF26F03496D5996BBF59F /* Firebase */; + targetProxy = BAF747B130ED15387909C29A214549F7 /* PBXContainerItemProxy */; }; - A6E2130A7D24FA5B81949ABE8CD69C80 /* PBXTargetDependency */ = { + ACA805EFB9251514CF84FB5B775F636A /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = RNVectorIcons; - target = 96150F524B245896B800F84F369A9A5A /* RNVectorIcons */; - targetProxy = C478D3B9E7A40B82AD64FD410452AEB5 /* PBXContainerItemProxy */; + name = "React-jsi"; + target = FA877ADC442CB19CF61793D234C8B131 /* React-jsi */; + targetProxy = 9863FDD86EE1F317E9F297C9185A7DB2 /* PBXContainerItemProxy */; }; - A75A5CF292DFF36941B8CB88478BD985 /* PBXTargetDependency */ = { + ADD16E02FD4C3A33EBB161E58676D2EE /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = RNCPicker; - target = D00F24222F074B31C56DC6D05E806A35 /* RNCPicker */; - targetProxy = B6D78B8CAFF1D33C17942DA6991A7B2C /* PBXContainerItemProxy */; + name = EXWebBrowser; + target = 9EB556EE511D43F3D5D7AAF51D8D0397 /* EXWebBrowser */; + targetProxy = A948C4B5A3A8B53E7C94F4CDDD83D365 /* PBXContainerItemProxy */; }; - A7A92E2A6F1A9CB1A3CFEE65E46D906E /* PBXTargetDependency */ = { + AE0EBEC0883040372C7D48205FD67F3C /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = UMAppLoader; - target = C452F579644C83E8D8E36EC24A9BBD46 /* UMAppLoader */; - targetProxy = 0E9BD0F7D761CA1806F9C5F313F428E8 /* PBXContainerItemProxy */; + name = "React-jsinspector"; + target = F7D033C4C128EECAA020990641FA985F /* React-jsinspector */; + targetProxy = BA50510FD2A9C0054168353313411FA4 /* PBXContainerItemProxy */; }; - A84CED7A05332A441075CAC6C058D03C /* PBXTargetDependency */ = { + AE55CB13C612EF7B2BC14188184BEF5D /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = GoogleUtilities; - target = 8D7F5D5DD528D21A72DC87ADA5B12E2D /* GoogleUtilities */; - targetProxy = 184E68B5A570802A48898C83B8D4E587 /* PBXContainerItemProxy */; + name = nanopb; + target = D2B5E7DCCBBFB32341D857D01211A1A3 /* nanopb */; + targetProxy = 44831513DC91EB0D77F79F0C09918C2D /* PBXContainerItemProxy */; }; - A8F5A0B69DD894612BA6763FFFF5237A /* PBXTargetDependency */ = { + AEDA699E93884FF62E64BC21710A422E /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = ReactCommon; - target = B6D5DD49633DFF0657B8C3F08EB3ABA9 /* ReactCommon */; - targetProxy = 2AC08832E9EBC1B7A3A2369AFAA62B4B /* PBXContainerItemProxy */; + name = PromisesObjC; + target = 2BBF7206D7FAC92C82A042A99C4A98F8 /* PromisesObjC */; + targetProxy = CC53517A42730407B943E20B8A60E25B /* PBXContainerItemProxy */; }; - AA9C30C8CE7F517E857FAF7F3C4763B7 /* PBXTargetDependency */ = { + AEE2842BEBF490C25CC5E59F0C197C73 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = "React-RCTAnimation"; - target = 938CCE22F6C4094B3FB6CF1478579E4B /* React-RCTAnimation */; - targetProxy = 8593B15F7E7D43B617028BADD9C67327 /* PBXContainerItemProxy */; + name = RNCAsyncStorage; + target = 89F573A6B1292B3B2296B2206BFDC3D7 /* RNCAsyncStorage */; + targetProxy = D72FC18B6AB8D6147DAB0D0B532CB8E3 /* PBXContainerItemProxy */; }; - AB50C33D8845A3227D907A0F8FE0E847 /* PBXTargetDependency */ = { + AEF216A54E39A728B1EC8A9265D27E9B /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = "Flipper-Glog"; - target = 6A9637F1BC8154F777335A6420579C05 /* Flipper-Glog */; - targetProxy = F8BA1D93514327F9D7F6658BCFD50C21 /* PBXContainerItemProxy */; + name = RNDeviceInfo; + target = 807428FE76D80865C9F59F3502600E89 /* RNDeviceInfo */; + targetProxy = 0E9C8A6949F7412834A81A594B08BD24 /* PBXContainerItemProxy */; }; - AB790CD7B49C6853CB65720D69B065D3 /* PBXTargetDependency */ = { + AEF941BFCF117859484BA872F3BD2195 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = RNVectorIcons; - target = 96150F524B245896B800F84F369A9A5A /* RNVectorIcons */; - targetProxy = 95A2B365DBB36545D782835253A5BB5E /* PBXContainerItemProxy */; + name = "React-cxxreact"; + target = 463F41A7E8B252F8AC5024DA1F4AF6DA /* React-cxxreact */; + targetProxy = C39D834017115879055795AF71F40241 /* PBXContainerItemProxy */; }; - ABB38B51F5A8BC5D6E4CA139461E0911 /* PBXTargetDependency */ = { + AF3C83C4EB5D4DC3F31C2E7BAA450A59 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = FlipperKit; - target = 982644B5B647690B2E4F5B3F54EB5717 /* FlipperKit */; - targetProxy = B001B6E7CC99579C9FBF820A9FD5E4B6 /* PBXContainerItemProxy */; + name = RNLocalize; + target = B51433D546A38C51AA781F192E8836F8 /* RNLocalize */; + targetProxy = DD7A48FE9CC14496688C0AB606B54F74 /* PBXContainerItemProxy */; }; - ABF0ECFDF6971328F366D60A4CC81820 /* PBXTargetDependency */ = { + AF4DA7028AFE10F668AAB2EEAC961DD3 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = RNVectorIcons; - target = 96150F524B245896B800F84F369A9A5A /* RNVectorIcons */; - targetProxy = 50239268B90E4A0C1B4C10E3CB38487B /* PBXContainerItemProxy */; + name = "React-cxxreact"; + target = 463F41A7E8B252F8AC5024DA1F4AF6DA /* React-cxxreact */; + targetProxy = 7684BB68943AB2D7143FE39A0803378C /* PBXContainerItemProxy */; }; - AC484CAEEE5320A1BC5AC3D4ACD6877B /* PBXTargetDependency */ = { + B08294AE888A471E711B7C708C83F973 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = FBLazyVector; - target = 8CC4EAA817AA86310D1900F1DAB3580F /* FBLazyVector */; - targetProxy = 4133E2244A67F93BDE49F64A8B9BBF64 /* PBXContainerItemProxy */; + name = "React-jsi"; + target = FA877ADC442CB19CF61793D234C8B131 /* React-jsi */; + targetProxy = 6F9452A965CB230A232FCCCF53FB41D4 /* PBXContainerItemProxy */; }; - AC8BD4CEAD023EEE36E2E908923A8ECC /* PBXTargetDependency */ = { + B0D25B825136BEC9488B7E7DE1483858 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = EXVideoThumbnails; - target = 4A95B7CD1D5F80C5E8CD9CDA00D41F70 /* EXVideoThumbnails */; - targetProxy = 0085E62DD6E1BBE8C59695ECEE8E7773 /* PBXContainerItemProxy */; + name = FirebaseCore; + target = 4402AFF83DBDC4DD07E198685FDC2DF2 /* FirebaseCore */; + targetProxy = CA3C94321ABB99E0345D6FDAFDB18E91 /* PBXContainerItemProxy */; }; - ACA912C95F37F70FF9AE31C858B4CC3A /* PBXTargetDependency */ = { + B1A89741E23430A5B923EFA1A6AC1675 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = "hermes-engine"; - target = 985FEA01F314F3C00F0C1E1181E6C4A5 /* hermes-engine */; - targetProxy = 586149B72877694B4DA40AE703D7336E /* PBXContainerItemProxy */; + name = PromisesObjC; + target = 2BBF7206D7FAC92C82A042A99C4A98F8 /* PromisesObjC */; + targetProxy = 659E9EE77D5279E418FD446C252B4DC6 /* PBXContainerItemProxy */; }; - ACD41C74CDB0B06E53B09B7E9778FB96 /* PBXTargetDependency */ = { + B276DFD3007AFDA2E84DDC21E73B95B8 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = TOCropViewController; - target = F3966F664F3CFAEFAB57C40FB54D3788 /* TOCropViewController */; - targetProxy = 2C407133A7440070C703FECDDF43F198 /* PBXContainerItemProxy */; + name = "React-RCTNetwork"; + target = 651511D7DA7F07F9FC9AA40A2E86270D /* React-RCTNetwork */; + targetProxy = AE68D08C8FD3872C5CB39BB695754E3D /* PBXContainerItemProxy */; }; - AD3FDD5C105AE069EF49E5597A90B6AD /* PBXTargetDependency */ = { + B2C52B4862A8E95C471C9056D773CDC6 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = RNBootSplash; - target = 6677891AC2F7AB93E04BFF30B293A46B /* RNBootSplash */; - targetProxy = 0D0D3CF751E9B439829B7D5F44BEA4E5 /* PBXContainerItemProxy */; + name = PromisesObjC; + target = 2BBF7206D7FAC92C82A042A99C4A98F8 /* PromisesObjC */; + targetProxy = 8E1D26E3AFBC3BCC227204039FA0D6A9 /* PBXContainerItemProxy */; }; - AE40D65B456FBF41DACA3C8B1E7D7BE5 /* PBXTargetDependency */ = { + B30D9FF84836A79FDF8D7F424A4D7950 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = "React-RCTAnimation"; - target = 938CCE22F6C4094B3FB6CF1478579E4B /* React-RCTAnimation */; - targetProxy = 3BD704AF06626C5C23A471EE5F0E8ECA /* PBXContainerItemProxy */; + name = "React-RCTText"; + target = DBD2D83E10F8B7D3F4E0E34E6A9FCFA6 /* React-RCTText */; + targetProxy = F401D891AD4F9152E9CB5A388EBB6B31 /* PBXContainerItemProxy */; }; - AE883998BB406E95B0773110F04B4FEC /* PBXTargetDependency */ = { + B38469DB809A71A85FFD4E0B5F6C2461 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = React; - target = 1BEE828C124E6416179B904A9F66D794 /* React */; - targetProxy = E643896E0982490B9846E34E81013838 /* PBXContainerItemProxy */; + name = ReactCommon; + target = B6D5DD49633DFF0657B8C3F08EB3ABA9 /* ReactCommon */; + targetProxy = F675783EA55DA7C5FEFDD4F5D792324A /* PBXContainerItemProxy */; }; - AFDAC57A40B074A1717CCBF48DB490F4 /* PBXTargetDependency */ = { + B3D4389D570F739C0ED2E293BBE12606 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = nanopb; - target = D2B5E7DCCBBFB32341D857D01211A1A3 /* nanopb */; - targetProxy = 7B05314E0BD1ACFE405A74A0BF38B226 /* PBXContainerItemProxy */; + name = RNCAsyncStorage; + target = 89F573A6B1292B3B2296B2206BFDC3D7 /* RNCAsyncStorage */; + targetProxy = CF0810B0FEE83BE7A609648106142347 /* PBXContainerItemProxy */; }; - B097C6CC688C0DC611360588B51A3A19 /* PBXTargetDependency */ = { + B40531760C66F2AABCF260CE36F471ED /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = RNFBApp; - target = 90D0DE2F3348233618414728C35311CA /* RNFBApp */; - targetProxy = EC820AD54348208555F08D43CCBA4DBF /* PBXContainerItemProxy */; + name = EXImageLoader; + target = 263266A9E29FFF0E9C8CA0E4582BFCF4 /* EXImageLoader */; + targetProxy = 3AADCE4EBAECD6211A8BC5D099627A2A /* PBXContainerItemProxy */; }; - B09E659B57C162D3DAF44DCBB75F7D91 /* PBXTargetDependency */ = { + B413729CEA1673B58C6748DC51EADCAA /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = "hermes-engine"; - target = 985FEA01F314F3C00F0C1E1181E6C4A5 /* hermes-engine */; - targetProxy = 372E2EE85578EDFF28A72DEC9D4D0A8A /* PBXContainerItemProxy */; + name = "React-Core"; + target = 7ACAA9BE580DD31A5CB9D97C45D9492D /* React-Core */; + targetProxy = 37D0E70D1BA90C85D6DBEE5DBB49AC54 /* PBXContainerItemProxy */; }; - B125589E816529518AFA258FADE94E8B /* PBXTargetDependency */ = { + B483FF620315D6136BBBA720BF24E2C0 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = RNGestureHandler; - target = B9E8F4CA2A4A8599389FEB665A9B96FF /* RNGestureHandler */; - targetProxy = C28D2658175FCEB3934BD0CCE48C5667 /* PBXContainerItemProxy */; + name = "RCT-Folly"; + target = EC55D52694092A9D0E6A78EB01207EB5 /* RCT-Folly */; + targetProxy = FA57EEB762AF3207B9E5CD4A80CFD579 /* PBXContainerItemProxy */; }; - B1AEDE526BD2211524894775B2F2135B /* PBXTargetDependency */ = { + B488BDA7EE01CF32EFBDE0ED34C0627D /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = "React-RCTText"; - target = DBD2D83E10F8B7D3F4E0E34E6A9FCFA6 /* React-RCTText */; - targetProxy = 672ED383E40E18B777B47957FAF83FB3 /* PBXContainerItemProxy */; + name = FirebaseInstallations; + target = 87803597EB3F20FC46472B85392EC4FD /* FirebaseInstallations */; + targetProxy = 19A9ADD677996957784F8FA0E822A31B /* PBXContainerItemProxy */; }; - B235A1628124F37A24887F6E53ABDAE7 /* PBXTargetDependency */ = { + B55EBF10176404C6381117082A09513B /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = "React-Core"; - target = 7ACAA9BE580DD31A5CB9D97C45D9492D /* React-Core */; - targetProxy = D38E43E9162C08846DB16DEA0578767B /* PBXContainerItemProxy */; + name = RNReanimated; + target = FF879E718031128A75E7DE54046E6219 /* RNReanimated */; + targetProxy = 9FDD323E8EE20296B0A72C915773A2BA /* PBXContainerItemProxy */; }; - B3028CE87DE05E05D31CB80820A69DFC /* PBXTargetDependency */ = { + B567F9A058F030E5A68E90F9AC21DEC0 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = EXPermissions; - target = 0A72FB88825FDC7D301C9DD1F8F96824 /* EXPermissions */; - targetProxy = 9A05077A3445CCD5904E4443B4C3A232 /* PBXContainerItemProxy */; + name = "React-RCTVibration"; + target = 53D121F9F9BB0F8AC1C94A12C5A8572F /* React-RCTVibration */; + targetProxy = 3240781D0E3907C33B1DDF42FF66E5CF /* PBXContainerItemProxy */; }; - B3330F858C68057D6B96BB9332BF5973 /* PBXTargetDependency */ = { + B58633C0783B2D098E40EF599E19FE3D /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = UMSensorsInterface; - target = 2038C6F97563AAD6162C284B3EDD5B3B /* UMSensorsInterface */; - targetProxy = 066735CD10CADDE781B27797A6764065 /* PBXContainerItemProxy */; + name = "React-RCTBlob"; + target = 95D98F901D07557EF7CA38D3F03832C5 /* React-RCTBlob */; + targetProxy = CB0DF62EB745F9D4E5BE61A414208277 /* PBXContainerItemProxy */; }; - B3A102A653F8F336B127E80AF17EBB63 /* PBXTargetDependency */ = { + B5B8A6F00C4DE3B8DA3F4ABCEA2B501A /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = EXPermissions; - target = 0A72FB88825FDC7D301C9DD1F8F96824 /* EXPermissions */; - targetProxy = 033B598AEAA69D2889E1CDB1CD650B19 /* PBXContainerItemProxy */; + name = React; + target = 1BEE828C124E6416179B904A9F66D794 /* React */; + targetProxy = 0D48713A04B5284FDD8E227EC3FA8A0D /* PBXContainerItemProxy */; }; - B40CFE38A816F2C52C3380F4E4706B6C /* PBXTargetDependency */ = { + B5FF2AC64372009110561722B853CB70 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = Yoga; - target = 2B25F90D819B9ADF2AF2D8733A890333 /* Yoga */; - targetProxy = 6ADA9866B60F41F8D66EB5650C2592AA /* PBXContainerItemProxy */; + name = FirebaseCore; + target = 4402AFF83DBDC4DD07E198685FDC2DF2 /* FirebaseCore */; + targetProxy = 3E9D8450774777871794492B1E8CB0A7 /* PBXContainerItemProxy */; }; - B42325E223B98CDDB0598E704FA784F7 /* PBXTargetDependency */ = { + B60ECB0F2A8BCB1565C295E79AA4F86A /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = "react-native-orientation-locker"; - target = 1092C13E1E1172209537C28D0C8D4D3C /* react-native-orientation-locker */; - targetProxy = 6732A8C03EFC5AC7ECAF8211A8DF254E /* PBXContainerItemProxy */; + name = libwebp; + target = 47D2E85A78C25869BB13521D8561A638 /* libwebp */; + targetProxy = 2D2D646AA887670D58F65D6CEF7279E9 /* PBXContainerItemProxy */; }; - B443D878EC07E5DA13C05A67103822C6 /* PBXTargetDependency */ = { + B60F55965FAC3EE2F1ABD3C4BDB1B074 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = "rn-fetch-blob"; - target = 64F427905796B33B78A704063422979D /* rn-fetch-blob */; - targetProxy = 4B79EFEFA228A6135BA895A145340765 /* PBXContainerItemProxy */; + name = "React-Core"; + target = 7ACAA9BE580DD31A5CB9D97C45D9492D /* React-Core */; + targetProxy = E95005F1B7DA1331389F922DF3F28D25 /* PBXContainerItemProxy */; }; - B4562B65F824AAF64B191A7D6EEC98D7 /* PBXTargetDependency */ = { + B652CA33DB24807DBCB81E1134A41686 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = RNFastImage; - target = 0BB7745637E0758DEA373456197090C6 /* RNFastImage */; - targetProxy = 9668D7E48B1A63986D23C18E28E7BC1B /* PBXContainerItemProxy */; + name = "React-Core"; + target = 7ACAA9BE580DD31A5CB9D97C45D9492D /* React-Core */; + targetProxy = C85A9919EF5DA6ADA7B0C9D595F0956A /* PBXContainerItemProxy */; }; - B467BE6B73FEFA4AABDD74FAC3AE4002 /* PBXTargetDependency */ = { + B6687916DC4E793144C5E09A2C902D79 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = "React-RCTImage"; - target = 4F265533AAB7C8985856EC78A33164BB /* React-RCTImage */; - targetProxy = 1BA59BED620719A9300579D4E1ECB07C /* PBXContainerItemProxy */; + name = RNVectorIcons; + target = 96150F524B245896B800F84F369A9A5A /* RNVectorIcons */; + targetProxy = 9C857270BB06EA6321C9FB8474EDF210 /* PBXContainerItemProxy */; }; - B4D00B7760C3FB0828263C5D8DD72369 /* PBXTargetDependency */ = { + B74C5B85323B68832D59FE91425BA0BC /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = UMAppLoader; - target = C452F579644C83E8D8E36EC24A9BBD46 /* UMAppLoader */; - targetProxy = 30725B14D8562E875CFC0ABA597A1DBA /* PBXContainerItemProxy */; + name = React; + target = 1BEE828C124E6416179B904A9F66D794 /* React */; + targetProxy = 769281E58EEDC35FED4BC8C6943EA981 /* PBXContainerItemProxy */; }; - B528DD4EDFED9FF14A611546C824888B /* PBXTargetDependency */ = { + B773D4C2DD9CC8A4123FC8E3B2EA0E35 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = FBReactNativeSpec; - target = C3496D0495E700CF08A90C41EA8FA4BB /* FBReactNativeSpec */; - targetProxy = 05AC54CD20CFD15EBDF6F3ACEEFE7558 /* PBXContainerItemProxy */; + name = UMReactNativeAdapter; + target = 897EF6A99176326E24F51E2F2103828C /* UMReactNativeAdapter */; + targetProxy = A77D237EFDA02600CBE0C6E5D066064F /* PBXContainerItemProxy */; }; - B5945302AD630CFD3D6D65EAF9579C7B /* PBXTargetDependency */ = { + B791D5F34D2554D40E48590D7D5F4510 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = "React-RCTAnimation"; - target = 938CCE22F6C4094B3FB6CF1478579E4B /* React-RCTAnimation */; - targetProxy = DDFAC5596B74D40860A517B04388D8C7 /* PBXContainerItemProxy */; + name = UMConstantsInterface; + target = 9668C19AA6D8EA320F83875FA286855A /* UMConstantsInterface */; + targetProxy = D2662832C9C78D633A5D920FF8FBE4CC /* PBXContainerItemProxy */; }; - B689EBF2FD16E9B47AF97B58786C5FB5 /* PBXTargetDependency */ = { + B819E28113FD798FB668F19BF480E3FA /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = RNConfigReader; - target = DC0D417AC8ABB7AA10C20A5E0F065812 /* RNConfigReader */; - targetProxy = AE1D8D132D834705D0695514874F194B /* PBXContainerItemProxy */; + name = YogaKit; + target = 32CA4CBD6B28983076BD93DA221AD027 /* YogaKit */; + targetProxy = 86F4D5214856CD375A0A7B9CE649E215 /* PBXContainerItemProxy */; }; - B69E088C9AD2EB9ED0B3B29B22C53E20 /* PBXTargetDependency */ = { + B8BF6C5B5D58DF3497263C4A758FFE16 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = "Flipper-DoubleConversion"; - target = D9245543B79C09FAC40FC8B9F291536A /* Flipper-DoubleConversion */; - targetProxy = 14838B2E8FB70BF59840D2AE9A76F23C /* PBXContainerItemProxy */; + name = EXPermissions; + target = 0A72FB88825FDC7D301C9DD1F8F96824 /* EXPermissions */; + targetProxy = 4976897C3E24298394807B9C209C3755 /* PBXContainerItemProxy */; }; - B6FB772AFC597DE6B1E5CCF2C629299A /* PBXTargetDependency */ = { + B8D11963AD0DA766A2B5696BC42A5FE7 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = "Flipper-DoubleConversion"; - target = D9245543B79C09FAC40FC8B9F291536A /* Flipper-DoubleConversion */; - targetProxy = 7E6E9612FAA666BFD7351EDD72ACA4BE /* PBXContainerItemProxy */; + name = DoubleConversion; + target = 2AB2EF542954AB1C999E03BFEF8DE806 /* DoubleConversion */; + targetProxy = 88BE6EDEE9BCE89ECE62484E68825E5C /* PBXContainerItemProxy */; }; - B743B5977BBB8D0234AD6E3218BC3280 /* PBXTargetDependency */ = { + B94B083016E5ED31054537F0C41EFDFF /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = ReactCommon; - target = B6D5DD49633DFF0657B8C3F08EB3ABA9 /* ReactCommon */; - targetProxy = 969880DA4537E54B3C5BDF8EEA55C013 /* PBXContainerItemProxy */; + name = CocoaAsyncSocket; + target = 6083682834ABE0AE7BD1CBF06CADD036 /* CocoaAsyncSocket */; + targetProxy = E2530250B68605DAE8ECD2A16B206639 /* PBXContainerItemProxy */; }; - B7D1097721F57BE6107B7BF11CF18B05 /* PBXTargetDependency */ = { + B956517A84C409F58AB6C77E9CB1E9C1 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = EXFileSystem; - target = 868B90C74770285449C60DBA82181479 /* EXFileSystem */; - targetProxy = 4E70CCCE85AF50C904B200DE940D87E6 /* PBXContainerItemProxy */; + name = EXHaptics; + target = 409F3A0DB395F53FFB6AB30E5CD8ACD1 /* EXHaptics */; + targetProxy = 77B59514ABEE62CA7D9A357F8409B2C0 /* PBXContainerItemProxy */; }; - B7E81AADB9277C770C1A7599D4F5AA40 /* PBXTargetDependency */ = { + B97C112DEA5E2EFBADEBC29F6ED4EB9E /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = "react-native-document-picker"; - target = D11E74324175FE5B0E78DB046527F233 /* react-native-document-picker */; - targetProxy = A0685B4D4246279A2192DFD8458A4266 /* PBXContainerItemProxy */; + name = "react-native-safe-area-context"; + target = BD9A27D8398DEB3205D3F8937B0672A0 /* react-native-safe-area-context */; + targetProxy = 7CE9B79C1AD4BDFFC7C7F7F875D859A7 /* PBXContainerItemProxy */; }; - B82726A83F1CCF7C0BCEA7D3AC1E9664 /* PBXTargetDependency */ = { + B9A5A581AC82018F47ED6EC88D9DCD04 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = "React-Core"; - target = 7ACAA9BE580DD31A5CB9D97C45D9492D /* React-Core */; - targetProxy = C386698B9796F829A9E8F3F32407491A /* PBXContainerItemProxy */; + name = "rn-extensions-share"; + target = A238B7CE3865946D1F214E1FE0023AAE /* rn-extensions-share */; + targetProxy = B7EB1C41B8A16D78529EE7C61C338E8D /* PBXContainerItemProxy */; }; - B83DC780E4EF4161377AD35B535FED02 /* PBXTargetDependency */ = { + B9A690702149B202DF2AE1BFEBA0F9DC /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = UMPermissionsInterface; - target = F7845084F0CF03F54107EEF7411760AD /* UMPermissionsInterface */; - targetProxy = 3E265914EE1C1AA375AE84CFEC37F803 /* PBXContainerItemProxy */; + name = "rn-fetch-blob"; + target = 64F427905796B33B78A704063422979D /* rn-fetch-blob */; + targetProxy = A9343C99128A2174FC094EDC1866C3C5 /* PBXContainerItemProxy */; }; - B870CA6314695CC6FA00A140C37AD7AD /* PBXTargetDependency */ = { + BA5D4ADE8F55DBCBBDCA27BF9F40E09F /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = RNConfigReader; - target = DC0D417AC8ABB7AA10C20A5E0F065812 /* RNConfigReader */; - targetProxy = 3E6DA42228BE2D0B47B449B06095916C /* PBXContainerItemProxy */; + name = GoogleAppMeasurement; + target = B53D977A951AFC38B21751B706C1DF83 /* GoogleAppMeasurement */; + targetProxy = 7C88C6B0FA5F496182E74531FAA56A22 /* PBXContainerItemProxy */; }; - B8D1113F6E3B41B23054D850387FCDA7 /* PBXTargetDependency */ = { + BB0E95216640506D5085A396CBE32DCD /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = FBReactNativeSpec; - target = C3496D0495E700CF08A90C41EA8FA4BB /* FBReactNativeSpec */; - targetProxy = AC9752E64FDBC9E04072B487532F590E /* PBXContainerItemProxy */; + name = "RCT-Folly"; + target = EC55D52694092A9D0E6A78EB01207EB5 /* RCT-Folly */; + targetProxy = 3BC5A9CC4AC78694101D1296B851AD1D /* PBXContainerItemProxy */; }; - BA2A5F0115F8EA0F1BB92F1396642E4B /* PBXTargetDependency */ = { + BC1D55F27F42786677ED98C54982A15E /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = JitsiMeetSDK; - target = 5B40FBDAD0AB75D17C4760F4054BFF71 /* JitsiMeetSDK */; - targetProxy = 5F9E71884D5A17819A4679A58BF9F20C /* PBXContainerItemProxy */; + name = KeyCommands; + target = 7F591BD8674041AAAA4F37DC699B5518 /* KeyCommands */; + targetProxy = 08844C391E66B92A52842D1C1704559C /* PBXContainerItemProxy */; }; - BA48DD50F927E36DB7B127AAA1D117C8 /* PBXTargetDependency */ = { + BC34C65DFFB8DAE64DF486CAA29B4C04 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = RNRootView; - target = 18B56DB36E1F066C927E49DBAE590128 /* RNRootView */; - targetProxy = 13C0795B47770D8B6EF9E7DB65849417 /* PBXContainerItemProxy */; + name = "Flipper-PeerTalk"; + target = 718DB7D0A7E90B531AD577B3356C4161 /* Flipper-PeerTalk */; + targetProxy = 286B6101E36B0C1DEFC14E92D083992E /* PBXContainerItemProxy */; }; - BA5D109647ADFC6C7ADE43CFF7D3209B /* PBXTargetDependency */ = { + BC840F5042E28AA5DCE740261E40EF72 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = "React-RCTNetwork"; - target = 651511D7DA7F07F9FC9AA40A2E86270D /* React-RCTNetwork */; - targetProxy = 29960C33FAB2D0F0C8908940C945C638 /* PBXContainerItemProxy */; + name = UMCore; + target = DBCB1B4965863DDD3B9DED9A0918A526 /* UMCore */; + targetProxy = 98E8A791597205A00E17A4FC5875ECDB /* PBXContainerItemProxy */; }; - BA6A973DDD33103C468F46B983DFE285 /* PBXTargetDependency */ = { + BD5061D4D28274A219065949DC7DF233 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = "React-Core"; - target = 7ACAA9BE580DD31A5CB9D97C45D9492D /* React-Core */; - targetProxy = C267885FC50CC9756033D21051462D34 /* PBXContainerItemProxy */; + name = "React-perflogger"; + target = F1E2583679398CB5F4D2B3272E9B198F /* React-perflogger */; + targetProxy = A19C9FEB52082701A3E9F90270B55D08 /* PBXContainerItemProxy */; }; - BA8813BC421F60B77AF05705A913477A /* PBXTargetDependency */ = { + BD5326CE55623518EB6D4B9F0FF2E356 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = "React-jsinspector"; - target = F7D033C4C128EECAA020990641FA985F /* React-jsinspector */; - targetProxy = C93B8C920109BA5954405BF3549FA06F /* PBXContainerItemProxy */; + name = "React-jsi"; + target = FA877ADC442CB19CF61793D234C8B131 /* React-jsi */; + targetProxy = C813D80D0B25D1F056856EA24E69D152 /* PBXContainerItemProxy */; }; - BB34106F59290DD57B273B7594375169 /* PBXTargetDependency */ = { + BE0F1C16F4CC5AB613BB1E4C5BD847B0 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = DoubleConversion; - target = 2AB2EF542954AB1C999E03BFEF8DE806 /* DoubleConversion */; - targetProxy = 2EFA9736E1F808275C57AA2013F94FD8 /* PBXContainerItemProxy */; + name = "React-RCTSettings"; + target = 680299219D3A48D42A648AF6706275A9 /* React-RCTSettings */; + targetProxy = 7D69695506C98818459D841DDD20B7DB /* PBXContainerItemProxy */; }; - BC2430CB17EBA3451AFD31FEE7F54327 /* PBXTargetDependency */ = { + BEC6099D2240881EE45557D6EAA2E349 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = "React-RCTVibration"; - target = 53D121F9F9BB0F8AC1C94A12C5A8572F /* React-RCTVibration */; - targetProxy = 931CF9682E49F50A881541603A47AABF /* PBXContainerItemProxy */; + name = "Flipper-Glog"; + target = 6A9637F1BC8154F777335A6420579C05 /* Flipper-Glog */; + targetProxy = B6DF16AF0165CBC1823C51DB0E7BCC5C /* PBXContainerItemProxy */; }; - BC578291E8C752C915611E1ACDA7A703 /* PBXTargetDependency */ = { + BECA68E5A07217D7C691E5654F3F06AB /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = FirebaseCoreDiagnostics; - target = 620E05868772C10B4920DC7E324F2C87 /* FirebaseCoreDiagnostics */; - targetProxy = F42D6BAF47B180DB0CF530F853A63A82 /* PBXContainerItemProxy */; + name = UMPermissionsInterface; + target = F7845084F0CF03F54107EEF7411760AD /* UMPermissionsInterface */; + targetProxy = 4CD5C6B82CC0D8AC22751E254CB9F995 /* PBXContainerItemProxy */; }; - BCC42DB22DB9F828E4BCD13535A09546 /* PBXTargetDependency */ = { + BF1DA96AB40AF890337966492C627BBB /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = "RCT-Folly"; - target = EC55D52694092A9D0E6A78EB01207EB5 /* RCT-Folly */; - targetProxy = 343A0CD58A77DF9B25CD0144355A604D /* PBXContainerItemProxy */; + name = UMFontInterface; + target = 014495932E402CA67C37681988047CA2 /* UMFontInterface */; + targetProxy = 15BA7AB6B36E11D68A1E908D7482CE31 /* PBXContainerItemProxy */; }; - BDB2E275B63CEF8C3B1FAAADF342FD72 /* PBXTargetDependency */ = { + BFB9BC83FC6F9B11358B96C5048CC80D /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = "react-native-orientation-locker"; - target = 1092C13E1E1172209537C28D0C8D4D3C /* react-native-orientation-locker */; - targetProxy = A552484F86299BB4D69B33E68A252C55 /* PBXContainerItemProxy */; + name = FlipperKit; + target = 982644B5B647690B2E4F5B3F54EB5717 /* FlipperKit */; + targetProxy = ECDE1D7C8AE294DF6C5D31B712EF7C0A /* PBXContainerItemProxy */; }; - BFF79C7C45409B15B744ACCD8DE68D7C /* PBXTargetDependency */ = { + C02576B2C5B028C662A7365C533F14D0 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = libevent; - target = 04A30E186743192DFB26B0FD7DB8F250 /* libevent */; - targetProxy = D29AE1032C3EF25A9D6CBA2DD78811B3 /* PBXContainerItemProxy */; + name = RNFBCrashlytics; + target = E3573FB7AF659C42B699003C73722241 /* RNFBCrashlytics */; + targetProxy = CDCA078480F895C8A94938B8CDD1D176 /* PBXContainerItemProxy */; }; - C0305B01A5EC73596261BCCA392550B7 /* PBXTargetDependency */ = { + C0761E4F0CEA88F92C59018FC894F201 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = "React-perflogger"; - target = F1E2583679398CB5F4D2B3272E9B198F /* React-perflogger */; - targetProxy = 5BE8DA56D3A7977364548E2935DE0DB1 /* PBXContainerItemProxy */; + name = EXFileSystem; + target = 868B90C74770285449C60DBA82181479 /* EXFileSystem */; + targetProxy = 49FA50FFA411A4FFE1EE58CCEF2AEB76 /* PBXContainerItemProxy */; }; - C044D558D359AF04E60CC12561BDBF86 /* PBXTargetDependency */ = { + C0D4F1EF56F9933B19F48CF84D5F0C90 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = RNFastImage; - target = 0BB7745637E0758DEA373456197090C6 /* RNFastImage */; - targetProxy = 9841678D444BF822165C94588FF2A622 /* PBXContainerItemProxy */; + name = PromisesObjC; + target = 2BBF7206D7FAC92C82A042A99C4A98F8 /* PromisesObjC */; + targetProxy = D320EBDC9627D431C6D704A95B85B0A6 /* PBXContainerItemProxy */; }; - C111484A31AF30756B15B5C1D6E38F47 /* PBXTargetDependency */ = { + C12489C924650BE43DC83CC2B04EC345 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = FirebaseCore; - target = 4402AFF83DBDC4DD07E198685FDC2DF2 /* FirebaseCore */; - targetProxy = A1E5BFDE9CBC54C5FE842230E9FE64D5 /* PBXContainerItemProxy */; + name = "React-RCTAnimation"; + target = 938CCE22F6C4094B3FB6CF1478579E4B /* React-RCTAnimation */; + targetProxy = 7E9AE1F740E96694B1FAD244F59C11AE /* PBXContainerItemProxy */; }; - C20622F01960C6F9567A44E625308DE8 /* PBXTargetDependency */ = { + C19FC2B54D9720487A93DBA90B13B857 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = React; - target = 1BEE828C124E6416179B904A9F66D794 /* React */; - targetProxy = EA07A81169A598EAE84FDBA88BC1298F /* PBXContainerItemProxy */; + name = "React-jsi"; + target = FA877ADC442CB19CF61793D234C8B131 /* React-jsi */; + targetProxy = ED92FA35A9C8C4F56BDB0282F37FC520 /* PBXContainerItemProxy */; }; - C232A7FF37C1AE0FFDE74447F62883BF /* PBXTargetDependency */ = { + C1C2F47F9D419FE29082E71BAA4CEDF2 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = FirebaseCoreDiagnostics; - target = 620E05868772C10B4920DC7E324F2C87 /* FirebaseCoreDiagnostics */; - targetProxy = 44D981A786C366A2CACA1938C76BCF8D /* PBXContainerItemProxy */; + name = RNGestureHandler; + target = B9E8F4CA2A4A8599389FEB665A9B96FF /* RNGestureHandler */; + targetProxy = D7C9820E59F37DD800CB74A1D65C3880 /* PBXContainerItemProxy */; }; - C24D39E04D848AE308781FA9B547BAEF /* PBXTargetDependency */ = { + C1FA2E1B5DF36F8F1CFB2813714BEAA6 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = "rn-fetch-blob"; - target = 64F427905796B33B78A704063422979D /* rn-fetch-blob */; - targetProxy = 80CFA2910011DAE5463CDD132918267A /* PBXContainerItemProxy */; + name = RNCAsyncStorage; + target = 89F573A6B1292B3B2296B2206BFDC3D7 /* RNCAsyncStorage */; + targetProxy = 1B1AB1065E5D17B042A87503D7063793 /* PBXContainerItemProxy */; }; - C293F750696B6364014EBF60FCDB932D /* PBXTargetDependency */ = { + C23CA3A64A054095513E89B77572E4D2 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = FBReactNativeSpec; - target = C3496D0495E700CF08A90C41EA8FA4BB /* FBReactNativeSpec */; - targetProxy = 871CE80C75F684D9C47E9B7CFBBC9DBB /* PBXContainerItemProxy */; + name = TOCropViewController; + target = F3966F664F3CFAEFAB57C40FB54D3788 /* TOCropViewController */; + targetProxy = DDE5599C5356D7629856F12BD652CFC8 /* PBXContainerItemProxy */; }; - C2E10A05FBE64171DD847E236B3313ED /* PBXTargetDependency */ = { + C291DCCA11B204B2E6F333C8D099D631 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = "React-jsi"; - target = FA877ADC442CB19CF61793D234C8B131 /* React-jsi */; - targetProxy = 5228BE188D49ABABE57B52B3C9F12626 /* PBXContainerItemProxy */; + name = RCTTypeSafety; + target = D20469A9A1E5CFB26045EAEBE3F88E5E /* RCTTypeSafety */; + targetProxy = 4B10213FAD02E746E1D218669F27E181 /* PBXContainerItemProxy */; }; - C31B79A133754B0DE8A7A9E2F0EF4B84 /* PBXTargetDependency */ = { + C2C718F814DE2A74D3687EFB4835B01A /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = glog; - target = D0EFEFB685D97280256C559792236873 /* glog */; - targetProxy = E071C7585544489F8DA30D3E577FAA28 /* PBXContainerItemProxy */; + name = GoogleUtilities; + target = 8D7F5D5DD528D21A72DC87ADA5B12E2D /* GoogleUtilities */; + targetProxy = 2E194D0FD7F5453335A4D7E08E055BAA /* PBXContainerItemProxy */; }; - C3F2E6DBA5CB883DE2818A378D4227DF /* PBXTargetDependency */ = { + C31D998A8E5A39E9109CED55EFB7F154 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = "react-native-restart"; - target = 3ED96FB9FE1D18D5F1239C60A109F98C /* react-native-restart */; - targetProxy = 8A525AE1258B688F08EE739488781906 /* PBXContainerItemProxy */; + name = "RCT-Folly"; + target = EC55D52694092A9D0E6A78EB01207EB5 /* RCT-Folly */; + targetProxy = FCFB887A7DBA3066B6FE949AD9B03AAC /* PBXContainerItemProxy */; }; - C42636151EB376135BA66ACDB221B9CC /* PBXTargetDependency */ = { + C336DA9637A197CA4A97D28C7C3882AC /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = UMFileSystemInterface; - target = 2644525CCE081E967809A8163D893A93 /* UMFileSystemInterface */; - targetProxy = 2054582D030203FB4CB1BE640BFD8861 /* PBXContainerItemProxy */; + name = RNGestureHandler; + target = B9E8F4CA2A4A8599389FEB665A9B96FF /* RNGestureHandler */; + targetProxy = DABF643458A490821AEDE43553AE64E7 /* PBXContainerItemProxy */; }; - C428B327F4B1972A9C003E09867A11C2 /* PBXTargetDependency */ = { + C377DE4C6A38462AFFFF3540819951BC /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = "Flipper-Folly"; - target = B6D39E083AE0FF45BA30D7CDF6198A03 /* Flipper-Folly */; - targetProxy = 47C0604704A8BC3DCBF0666CAFF42C31 /* PBXContainerItemProxy */; + name = DoubleConversion; + target = 2AB2EF542954AB1C999E03BFEF8DE806 /* DoubleConversion */; + targetProxy = 010A9CC3979AD343E97C750A5C92B045 /* PBXContainerItemProxy */; }; - C500FF6F9FD28AA0CDC82C34D09F21A4 /* PBXTargetDependency */ = { + C3CE6EDDE7ECE7F681ADF01BD83E4F9B /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = RNGestureHandler; - target = B9E8F4CA2A4A8599389FEB665A9B96FF /* RNGestureHandler */; - targetProxy = 2B33A343A46C12D96DB5A49CBD66E097 /* PBXContainerItemProxy */; + name = "React-CoreModules"; + target = E16E206437995280D349D4B67695C894 /* React-CoreModules */; + targetProxy = 566BD5380B6A1E8D25AEB3B4063B3874 /* PBXContainerItemProxy */; }; - C50ECA261FDBEABE5E691520174EB43A /* PBXTargetDependency */ = { + C55A571CEB638EECD3BDA32F3554BFEF /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = "React-jsi"; - target = FA877ADC442CB19CF61793D234C8B131 /* React-jsi */; - targetProxy = 33ED27400A97DE65DE2B9DC11A7A3DCF /* PBXContainerItemProxy */; + name = React; + target = 1BEE828C124E6416179B904A9F66D794 /* React */; + targetProxy = C28C4D37AD446FC97DAFBD83F4B40588 /* PBXContainerItemProxy */; }; - C5374E851E61A1466AF6097849D2E157 /* PBXTargetDependency */ = { + C5D38C42E0A4FA202D1D01C5F8DE5F7E /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = GoogleDataTransport; - target = 5C0371EE948D0357B8EE0E34ABB44BF0 /* GoogleDataTransport */; - targetProxy = 872E5C0235B283DD5087E3EB28AB9C08 /* PBXContainerItemProxy */; + name = UMFileSystemInterface; + target = 2644525CCE081E967809A8163D893A93 /* UMFileSystemInterface */; + targetProxy = 35A63603010488405238CADA8F34E5DC /* PBXContainerItemProxy */; }; - C5CB9A570694A6BA89218ED6E8044C70 /* PBXTargetDependency */ = { + C606E467223400EE73D1BCE558CC9C6D /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = RNFastImage; - target = 0BB7745637E0758DEA373456197090C6 /* RNFastImage */; - targetProxy = 90EFD8C1F17B8DD04969B7B06912BAAA /* PBXContainerItemProxy */; + name = "React-callinvoker"; + target = 2681CB7EF647E61F4F9A43029C235607 /* React-callinvoker */; + targetProxy = 3A22FB63E74004A176312488391C7BA5 /* PBXContainerItemProxy */; }; - C5F068E57ABF8573BA4A117D0588C7A5 /* PBXTargetDependency */ = { + C63E89CEF98ADB2120BF29C9C86333AD /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = RNGestureHandler; - target = B9E8F4CA2A4A8599389FEB665A9B96FF /* RNGestureHandler */; - targetProxy = 64CD3F61C1A6D5996EA1BE3407988B18 /* PBXContainerItemProxy */; + name = "react-native-appearance"; + target = 3FF2E78BB54ED67CA7FAD8DA2590DBEE /* react-native-appearance */; + targetProxy = A040CBCB0DD3369CFB3FD464EF4FB440 /* PBXContainerItemProxy */; }; - C65D8D3964447301CC6EB34D738C1E04 /* PBXTargetDependency */ = { + C67DEA386F71932F2DFF457EA122E9BD /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = RCTTypeSafety; - target = D20469A9A1E5CFB26045EAEBE3F88E5E /* RCTTypeSafety */; - targetProxy = FD09C5F707281C7EF5924ADE226EA60A /* PBXContainerItemProxy */; + name = FBReactNativeSpec; + target = C3496D0495E700CF08A90C41EA8FA4BB /* FBReactNativeSpec */; + targetProxy = FDB5051DEF6BFA8F4F3350D1BC4792F3 /* PBXContainerItemProxy */; }; - C6862F10F277829C8164950C6276A665 /* PBXTargetDependency */ = { + C896290E8B7334509E7CA25C6790A37A /* PBXTargetDependency */ = { isa = PBXTargetDependency; name = UMFontInterface; target = 014495932E402CA67C37681988047CA2 /* UMFontInterface */; - targetProxy = 620B83BA58E6500BECBBB0262BB7A1DB /* PBXContainerItemProxy */; + targetProxy = 9557E05C6AEAAF6439EBD21B77511CDF /* PBXContainerItemProxy */; }; - C69E87FC24543C044754DC841E96CDAC /* PBXTargetDependency */ = { + C8D197AE3110C18B5596EE25D28208CF /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = ReactNativeUiLib; - target = 037A1F31C4D99F52EC9FD2008FEC481C /* ReactNativeUiLib */; - targetProxy = 4871AAA76574AE5A9E23B57659E4B055 /* PBXContainerItemProxy */; + name = "React-RCTLinking"; + target = 6FE9147F8AAA4DE676C190F680F47AE2 /* React-RCTLinking */; + targetProxy = E668CC71805604384A60D9D2FF055A00 /* PBXContainerItemProxy */; }; - C72ACBDFB1B568A775646C152D39BC85 /* PBXTargetDependency */ = { + C95574E66A09291A297A019FCD2EDB55 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = CocoaAsyncSocket; - target = 6083682834ABE0AE7BD1CBF06CADD036 /* CocoaAsyncSocket */; - targetProxy = FAC8D33B660311E1C3ADC61ACF6AF3E0 /* PBXContainerItemProxy */; + name = UMPermissionsInterface; + target = F7845084F0CF03F54107EEF7411760AD /* UMPermissionsInterface */; + targetProxy = EAE2DD7D4344106776680E0908879BD4 /* PBXContainerItemProxy */; }; - C76D29F02DF875CFB121793CD19ADEB0 /* PBXTargetDependency */ = { + C96B82F985CD49F8FA7B9420A2FB2413 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = RNDeviceInfo; - target = 807428FE76D80865C9F59F3502600E89 /* RNDeviceInfo */; - targetProxy = B9792C340898226B6ED5D6F6738DBCD9 /* PBXContainerItemProxy */; + name = UMPermissionsInterface; + target = F7845084F0CF03F54107EEF7411760AD /* UMPermissionsInterface */; + targetProxy = 3F65F07DAE5EED96C74A74F606038A24 /* PBXContainerItemProxy */; }; - C86AB4E7CF49D96DEB001D5AC052EAE0 /* PBXTargetDependency */ = { + C9E3166FD61B47B8E3C77344C02107D2 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = UMReactNativeAdapter; - target = 897EF6A99176326E24F51E2F2103828C /* UMReactNativeAdapter */; - targetProxy = 2FA2B10763019D37AA479AA9A21F6BFB /* PBXContainerItemProxy */; + name = EXImageLoader; + target = 263266A9E29FFF0E9C8CA0E4582BFCF4 /* EXImageLoader */; + targetProxy = CE2CA9F59B4433D6F0D05A05F97DAEFB /* PBXContainerItemProxy */; }; - C8B554847D661498D93C694CE292ACF9 /* PBXTargetDependency */ = { + C9E8D6C1FD2913FF5984D20EB93E4ADD /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = "React-RCTBlob"; - target = 95D98F901D07557EF7CA38D3F03832C5 /* React-RCTBlob */; - targetProxy = 2F1C693448E778E51B155760696294D2 /* PBXContainerItemProxy */; + name = "boost-for-react-native"; + target = ED2506AE7DE35D654F61254441EA7155 /* boost-for-react-native */; + targetProxy = 0C45BE802340071B7C78EE54EEAC5CCD /* PBXContainerItemProxy */; }; - C90C5C65C08E296588C20BD840D761C5 /* PBXTargetDependency */ = { + C9FA1D6FF5C4C178FB58FCF68286CAF6 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = libevent; - target = 04A30E186743192DFB26B0FD7DB8F250 /* libevent */; - targetProxy = 4053616235C6EF0A028453379F52D298 /* PBXContainerItemProxy */; + name = "React-Core"; + target = 7ACAA9BE580DD31A5CB9D97C45D9492D /* React-Core */; + targetProxy = EC8139A0A71D6EDD16DCDD57C9E54055 /* PBXContainerItemProxy */; }; - C9ABBD2F077D54F392C4AAE3CEAA8278 /* PBXTargetDependency */ = { + CB20876D680B551D79982DB92E62F2A4 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = ReactCommon; - target = B6D5DD49633DFF0657B8C3F08EB3ABA9 /* ReactCommon */; - targetProxy = 7C70AB9B74681F9C0D888ED44C6C9A49 /* PBXContainerItemProxy */; + name = RNLocalize; + target = B51433D546A38C51AA781F192E8836F8 /* RNLocalize */; + targetProxy = 08CF5BF5B812D6AD2FF5497512DD6B2D /* PBXContainerItemProxy */; }; - CA5FD549A66016727AC9192BF15184C9 /* PBXTargetDependency */ = { + CB376FECDADC0BC88DD975936468E194 /* PBXTargetDependency */ = { isa = PBXTargetDependency; name = libevent; target = 04A30E186743192DFB26B0FD7DB8F250 /* libevent */; - targetProxy = 2CE27467B8E5A7BA8271C6E5327015FB /* PBXContainerItemProxy */; + targetProxy = BA1B882D3FCF84431DE07EFDBF8873D3 /* PBXContainerItemProxy */; }; - CA9798E332A9E07CF824D14FCE414241 /* PBXTargetDependency */ = { + CB7FA8F7A864E6F8215C1D13C0AE20D5 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = glog; - target = D0EFEFB685D97280256C559792236873 /* glog */; - targetProxy = 2A7F7E74BED068ED0E44B14D80CAFBBF /* PBXContainerItemProxy */; + name = EXLocalAuthentication; + target = 869CED37B4B77AAE35DF8B6E70788BBC /* EXLocalAuthentication */; + targetProxy = 516671CE586CC347A56F82D3A77B5D48 /* PBXContainerItemProxy */; }; - CAD5B8FF90A549E6DBF757D7CAE7BC4F /* PBXTargetDependency */ = { + CBB0C58D4399BA70D4463D805139022E /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = "react-native-blur"; - target = EEBB8D24F2B3531A5C5DAA668D02331F /* react-native-blur */; - targetProxy = 5D9C0DC2D812B010822D16DDB9AEA6E2 /* PBXContainerItemProxy */; + name = UMImageLoaderInterface; + target = 97C4DE84FA3CC4EC06AA6D8C249949B7 /* UMImageLoaderInterface */; + targetProxy = 8489A92C42DAFC7AE2E3BC4C6D7D1162 /* PBXContainerItemProxy */; }; - CB89BA3D4218F8198A55262265809E72 /* PBXTargetDependency */ = { + CBE9BA109F0691CB7FC6622E0369DA06 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = FBLazyVector; - target = 8CC4EAA817AA86310D1900F1DAB3580F /* FBLazyVector */; - targetProxy = 43D60FBAFF8529A47CCE8D035994F33F /* PBXContainerItemProxy */; + name = FirebaseAnalytics; + target = C49E7A4D59E5C8BE8DE9FB1EFB150185 /* FirebaseAnalytics */; + targetProxy = D0CB0A8BFC87BC33506E2CECE5E56CAB /* PBXContainerItemProxy */; }; - CB9716E9BE1974D35C0DC919BCF004B7 /* PBXTargetDependency */ = { + CCF5BA90DBBFA22E6D8FE9C0AE47A42C /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = "React-callinvoker"; - target = 2681CB7EF647E61F4F9A43029C235607 /* React-callinvoker */; - targetProxy = 04FE719D121A1ACAB8A4BBB50B8F78DA /* PBXContainerItemProxy */; + name = "react-native-appearance"; + target = 3FF2E78BB54ED67CA7FAD8DA2590DBEE /* react-native-appearance */; + targetProxy = C09786D03C57216564F13AF8DBAA75CC /* PBXContainerItemProxy */; }; - CBC530D6F7B27ACBE5A6293E378BECB2 /* PBXTargetDependency */ = { + CD028F57B0B8E3640B8BA024212936A2 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = "RNImageCropPicker-QBImagePicker"; - target = 6D979AB5FDA2E858850D9903776A30B3 /* RNImageCropPicker-QBImagePicker */; - targetProxy = 3CA896893E08C792F9883EA979C7EBD6 /* PBXContainerItemProxy */; + name = "react-native-safe-area-context"; + target = BD9A27D8398DEB3205D3F8937B0672A0 /* react-native-safe-area-context */; + targetProxy = 5166844DC53AA4212915E61DC5688C6D /* PBXContainerItemProxy */; }; - CBF7CFA0725D4A6F2E6BE965E86A2959 /* PBXTargetDependency */ = { + CD449CA0A960A304DADFA7A846E225B3 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = "react-native-notifications"; - target = CA400829100F0628EC209FBB08347D42 /* react-native-notifications */; - targetProxy = 84B69E270811C414A064EE9D6600AF93 /* PBXContainerItemProxy */; + name = RNCMaskedView; + target = 1A0445474DA11CA659C4BCC5AB64B1BF /* RNCMaskedView */; + targetProxy = 2D629A1DA34FA8E46FF7D2B5A18F94F8 /* PBXContainerItemProxy */; }; - CCD5F3AF1992542961CBBAEB0A4FEC8C /* PBXTargetDependency */ = { + CD8C9BD32F9967D12E2062698D9FEE0C /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = "RCT-Folly"; - target = EC55D52694092A9D0E6A78EB01207EB5 /* RCT-Folly */; - targetProxy = CFC4CD9A8A7C974CE199BE153443999B /* PBXContainerItemProxy */; + name = RCTRequired; + target = E7E7CE52C8C68B17224FF8C262D80ABF /* RCTRequired */; + targetProxy = AC260BAAA5BAEA7E011D86951ED2F86A /* PBXContainerItemProxy */; }; - CD06F6C61FC03C4A1FEABD8EFA009477 /* PBXTargetDependency */ = { + CE1086E0CDA2DC19BEA6768B2A541FBD /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = UMFontInterface; - target = 014495932E402CA67C37681988047CA2 /* UMFontInterface */; - targetProxy = CB039AD9995241BAF4FD92927A137DAB /* PBXContainerItemProxy */; + name = UMFaceDetectorInterface; + target = 2AD4F40E67E1874A0816F6B34289EB41 /* UMFaceDetectorInterface */; + targetProxy = A322A20F4155CB0A97D2E1309D14FD36 /* PBXContainerItemProxy */; }; - CD0885A802848EF019F70776F0EF6AB3 /* PBXTargetDependency */ = { + CE4B3A59E23D4AA2F2C351D9D01787E9 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = FBReactNativeSpec; - target = C3496D0495E700CF08A90C41EA8FA4BB /* FBReactNativeSpec */; - targetProxy = AB5BB545384D9A415AEF5078876075C8 /* PBXContainerItemProxy */; + name = UMFileSystemInterface; + target = 2644525CCE081E967809A8163D893A93 /* UMFileSystemInterface */; + targetProxy = 10FF2101B1BDD12901441DDD2AC69A6F /* PBXContainerItemProxy */; }; - CD4B5C1E45E3E8DFD54B011419B2D7DF /* PBXTargetDependency */ = { + CE5DBF416540A0900B9A3E04417C79C1 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = UMCore; - target = DBCB1B4965863DDD3B9DED9A0918A526 /* UMCore */; - targetProxy = D67858BC2CB37323F9281E60D382F298 /* PBXContainerItemProxy */; + name = "Flipper-DoubleConversion"; + target = D9245543B79C09FAC40FC8B9F291536A /* Flipper-DoubleConversion */; + targetProxy = 817CB164FCD6BA8A31A29F004388BD5F /* PBXContainerItemProxy */; }; - CDEEE02194E117B9BBD5EA21885CF0E2 /* PBXTargetDependency */ = { + CE714E18B8E34560E079D79ECCBEE4B3 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = "React-Core"; - target = 7ACAA9BE580DD31A5CB9D97C45D9492D /* React-Core */; - targetProxy = 2891A1A9D460D914F46FF6127A9BF735 /* PBXContainerItemProxy */; + name = EXVideoThumbnails; + target = 4A95B7CD1D5F80C5E8CD9CDA00D41F70 /* EXVideoThumbnails */; + targetProxy = 2AE32E03015B4918CC7EB5648F1D7F46 /* PBXContainerItemProxy */; }; - CDF274EBAE3B49A7C14FC1D77B045D69 /* PBXTargetDependency */ = { + CEC4127AB4C4D02B269839CC60097541 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = "React-Core"; - target = 7ACAA9BE580DD31A5CB9D97C45D9492D /* React-Core */; - targetProxy = B86A6C9551C7EF3863B9CCA33CF9D307 /* PBXContainerItemProxy */; + name = UMCameraInterface; + target = 0A915EE9D35CA5636731F8763E774951 /* UMCameraInterface */; + targetProxy = 8DE8E10765EF79BA7FEB7DE0FD7AEE39 /* PBXContainerItemProxy */; }; - CE891AD502E6376B405FF1E912AF073B /* PBXTargetDependency */ = { + CEE1D4EA2CEA35F6C782E150784C91A0 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = FlipperKit; - target = 982644B5B647690B2E4F5B3F54EB5717 /* FlipperKit */; - targetProxy = 0F2F889AC074C480A0B522F8E095834A /* PBXContainerItemProxy */; + name = libevent; + target = 04A30E186743192DFB26B0FD7DB8F250 /* libevent */; + targetProxy = 40BC5C5447B1268F085DF95EE8DA5ACC /* PBXContainerItemProxy */; }; - CEC714C799C863556255F7E47D262133 /* PBXTargetDependency */ = { + CF77CF8F14AD8E082B03FDB52B559058 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = UMFaceDetectorInterface; - target = 2AD4F40E67E1874A0816F6B34289EB41 /* UMFaceDetectorInterface */; - targetProxy = B6D298B335BC0A5E5B033A39BE759DDE /* PBXContainerItemProxy */; + name = MMKVCore; + target = AC8AE887C706A43711D115E69B9D988A /* MMKVCore */; + targetProxy = C7E5F2BB1BD37D5AF82B74F9D06C4978 /* PBXContainerItemProxy */; }; - CF08AFF6C8BD0967BDD9B1EF857CC663 /* PBXTargetDependency */ = { + CF7F370C4C97ECF7116F30C037A0D7F5 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = UMConstantsInterface; - target = 9668C19AA6D8EA320F83875FA286855A /* UMConstantsInterface */; - targetProxy = C2375F31E33F556D76E866665323447B /* PBXContainerItemProxy */; + name = UMTaskManagerInterface; + target = 50188AAB5FAECCA9583327DBA2B0AF2B /* UMTaskManagerInterface */; + targetProxy = 5708A871015012F2DE27E2F45AD45B8E /* PBXContainerItemProxy */; }; - CF3F0E99D7D9D99EA8F16114EF73C6E0 /* PBXTargetDependency */ = { + CFCA88BC7D963190D9EECA7362DB524F /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = RNImageCropPicker; - target = 0D82774D2A533D3FFAE27CAB4A6E9CB2 /* RNImageCropPicker */; - targetProxy = 21E2069AC52B51AD1D8B36C7A50ED931 /* PBXContainerItemProxy */; + name = UMCore; + target = DBCB1B4965863DDD3B9DED9A0918A526 /* UMCore */; + targetProxy = 5CD8BD0DFFE9D7670CCD55F2EDAC9232 /* PBXContainerItemProxy */; }; - CF4F16D520F54F4AD4180A4B8995DB01 /* PBXTargetDependency */ = { + CFDD30E5A143D25B38540A625A1AFF0F /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = "React-Core"; - target = 7ACAA9BE580DD31A5CB9D97C45D9492D /* React-Core */; - targetProxy = F018C2824900003497D8D0F378D31E3A /* PBXContainerItemProxy */; + name = "React-RCTNetwork"; + target = 651511D7DA7F07F9FC9AA40A2E86270D /* React-RCTNetwork */; + targetProxy = 825AA4F892F07EB43AB7079F5EE4A5FA /* PBXContainerItemProxy */; }; - CF510660DA0A379441CA54D78B3E9996 /* PBXTargetDependency */ = { + D0038E3F65E97D460FDF3B35A8B931BA /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = "React-RCTBlob"; - target = 95D98F901D07557EF7CA38D3F03832C5 /* React-RCTBlob */; - targetProxy = 78365B3D959DB3F6981CD93AE0050656 /* PBXContainerItemProxy */; + name = React; + target = 1BEE828C124E6416179B904A9F66D794 /* React */; + targetProxy = 7ADA575B30E474E67065A4CEB72C6EB3 /* PBXContainerItemProxy */; }; - CFAAAFFC68A3A992B971826F0248FCAB /* PBXTargetDependency */ = { + D01A3FAA9F188DAC872BE1FC48DEAD92 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = "RCT-Folly"; - target = EC55D52694092A9D0E6A78EB01207EB5 /* RCT-Folly */; - targetProxy = CD830AB1BA97F0CBBDFA77A7865D2444 /* PBXContainerItemProxy */; + name = FBReactNativeSpec; + target = C3496D0495E700CF08A90C41EA8FA4BB /* FBReactNativeSpec */; + targetProxy = 3CBD676FEBCA77502E7C8A27A789A629 /* PBXContainerItemProxy */; }; - CFDBBDAE7ACBC68BA01C04FFD98FA244 /* PBXTargetDependency */ = { + D060FC3D81778BE2E0D415DB884BC420 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = "React-cxxreact"; - target = 463F41A7E8B252F8AC5024DA1F4AF6DA /* React-cxxreact */; - targetProxy = EA54FFFDD7DA42893AAF172565AE0186 /* PBXContainerItemProxy */; + name = libevent; + target = 04A30E186743192DFB26B0FD7DB8F250 /* libevent */; + targetProxy = D0F539046274113E2EEDB2C0C182630F /* PBXContainerItemProxy */; }; - D003CBE4F90D0EF3F1F52C349F9D97CF /* PBXTargetDependency */ = { + D06941238338ECA3C8043DB80597EEED /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = Firebase; - target = 072CEA044D2EF26F03496D5996BBF59F /* Firebase */; - targetProxy = BDD1B19AFA52F3C634CE82EC1400368C /* PBXContainerItemProxy */; + name = SDWebImage; + target = 3847153A6E5EEFB86565BA840768F429 /* SDWebImage */; + targetProxy = A7346A4409476761280605F8B0328921 /* PBXContainerItemProxy */; }; - D07515D6E26FC63DA484C9E05CE2FD5A /* PBXTargetDependency */ = { + D08EF9286A3CD6863960150FB7F13915 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = RNFBApp; - target = 90D0DE2F3348233618414728C35311CA /* RNFBApp */; - targetProxy = 3E7A0A19FB4E59D391794D3DE08AD827 /* PBXContainerItemProxy */; + name = FirebaseInstallations; + target = 87803597EB3F20FC46472B85392EC4FD /* FirebaseInstallations */; + targetProxy = 31122DE8C2DA6107C3342C6B5B65BD1E /* PBXContainerItemProxy */; }; - D15B3B0D97C6A345D9F4F610AFC539C9 /* PBXTargetDependency */ = { + D0B99F9D9C96D2B4A7C2272E254CB114 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = RNFBAnalytics; - target = BDD119F8782FABE2707D3D913EC3EDE5 /* RNFBAnalytics */; - targetProxy = BE08C6604E31305BDFD73B83731E3DEE /* PBXContainerItemProxy */; + name = "React-Core"; + target = 7ACAA9BE580DD31A5CB9D97C45D9492D /* React-Core */; + targetProxy = 9ADF1934D0A1EE29C675B3AC9A25E5AE /* PBXContainerItemProxy */; }; - D161AA9E493683667739B43C8317CFA7 /* PBXTargetDependency */ = { + D0D68ED7AF0E0236CE71E0F29415F0C4 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = React; - target = 1BEE828C124E6416179B904A9F66D794 /* React */; - targetProxy = 0614B7A8F3968DC6EEB0291D2AB6A59F /* PBXContainerItemProxy */; + name = UMFileSystemInterface; + target = 2644525CCE081E967809A8163D893A93 /* UMFileSystemInterface */; + targetProxy = 986F690350DD55001EB5FE9B5718ACB2 /* PBXContainerItemProxy */; }; - D165BAD22A479804300CF27DCC65F8D0 /* PBXTargetDependency */ = { + D0E88E030AF4CE20C3769B99C44EAEC2 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = libwebp; - target = 47D2E85A78C25869BB13521D8561A638 /* libwebp */; - targetProxy = E056A34DBCD7B31E97EAD1DD2DC5C8A3 /* PBXContainerItemProxy */; + name = "React-Core"; + target = 7ACAA9BE580DD31A5CB9D97C45D9492D /* React-Core */; + targetProxy = E48B466A8157BD89A684502B056F7A8C /* PBXContainerItemProxy */; }; - D1E22351EC7043ABABA3CD6FD0EACC6D /* PBXTargetDependency */ = { + D1488C4A667BA056C054D6A93063E0F3 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = RNScreens; - target = 214E42634D1E187D876346D36184B655 /* RNScreens */; - targetProxy = F2FFFAD9042F76B5263B9E7151A2579F /* PBXContainerItemProxy */; + name = React; + target = 1BEE828C124E6416179B904A9F66D794 /* React */; + targetProxy = BA0B536C6056F1530618A435B591438E /* PBXContainerItemProxy */; }; - D1F87FBFA6D2B08C9C037D9B1388FF4D /* PBXTargetDependency */ = { + D1C63AAA087212AF94747CFF12BA16A0 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = ReactCommon; - target = B6D5DD49633DFF0657B8C3F08EB3ABA9 /* ReactCommon */; - targetProxy = 291139AA1C672E25D5A21EE44EF51003 /* PBXContainerItemProxy */; + name = UMReactNativeAdapter; + target = 897EF6A99176326E24F51E2F2103828C /* UMReactNativeAdapter */; + targetProxy = C2C9E03960959E9877A145D02586FA31 /* PBXContainerItemProxy */; }; - D21147C1DCFE5673B2147E4B4323C7E1 /* PBXTargetDependency */ = { + D1CD1CDFA6E9292A5163EB93725639D1 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = GoogleUtilities; - target = 8D7F5D5DD528D21A72DC87ADA5B12E2D /* GoogleUtilities */; - targetProxy = FE08F2936155789DF2C705734B237D7F /* PBXContainerItemProxy */; + name = "React-runtimeexecutor"; + target = 54EB12219122432FA744088BC5A680D2 /* React-runtimeexecutor */; + targetProxy = 5CDAEA5A338F49C1FAEDCC89433AA984 /* PBXContainerItemProxy */; }; - D2BE04B275C9A180C5DC373BFF8AEA0E /* PBXTargetDependency */ = { + D2AFA2B9A59D476769413C44CA6B490C /* PBXTargetDependency */ = { isa = PBXTargetDependency; name = React; target = 1BEE828C124E6416179B904A9F66D794 /* React */; - targetProxy = 064D8D808648F360B79BDCB04564B18C /* PBXContainerItemProxy */; + targetProxy = 799048825ED74337D1BE6874F60A059F /* PBXContainerItemProxy */; }; - D2D86912571D9FDEF7A8550C5202ED68 /* PBXTargetDependency */ = { + D324CC222258B063EABB22F495123C02 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = "React-RCTSettings"; - target = 680299219D3A48D42A648AF6706275A9 /* React-RCTSettings */; - targetProxy = BAC176B94457A1BD48840F966CD5BBF5 /* PBXContainerItemProxy */; + name = React; + target = 1BEE828C124E6416179B904A9F66D794 /* React */; + targetProxy = 1C401F7260BB42813141D11C7D220D9F /* PBXContainerItemProxy */; }; - D30DA2F6131F309E8489FCD3F6B28D8D /* PBXTargetDependency */ = { + D366AF5AA34EE0364F31AEC4EE0B79CF /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = "react-native-appearance"; - target = 3FF2E78BB54ED67CA7FAD8DA2590DBEE /* react-native-appearance */; - targetProxy = 0DA498A81F99CAFF3E2DF39747838B08 /* PBXContainerItemProxy */; + name = "React-RCTImage"; + target = 4F265533AAB7C8985856EC78A33164BB /* React-RCTImage */; + targetProxy = CA52175E5A57B8447AB8885328AAA106 /* PBXContainerItemProxy */; }; - D379E9EFA13009E76B11C1CB758362D8 /* PBXTargetDependency */ = { + D3A5293D7DFF5308272384C91F6D4F38 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = FirebaseInstallations; - target = 87803597EB3F20FC46472B85392EC4FD /* FirebaseInstallations */; - targetProxy = F83826E13C2031E87D405E9D82866E9E /* PBXContainerItemProxy */; + name = RNFBApp; + target = 90D0DE2F3348233618414728C35311CA /* RNFBApp */; + targetProxy = 4566A91E58A08EDAFB5574E794EBB508 /* PBXContainerItemProxy */; }; - D3B311CD2DEFD819DFE46F255EE02E74 /* PBXTargetDependency */ = { + D4C83ACB54F85CF142AC8CB783A577A3 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = KeyCommands; - target = 7F591BD8674041AAAA4F37DC699B5518 /* KeyCommands */; - targetProxy = 6684F4363389C0D8E03366528419D2A7 /* PBXContainerItemProxy */; + name = "hermes-engine"; + target = 985FEA01F314F3C00F0C1E1181E6C4A5 /* hermes-engine */; + targetProxy = EA0FE64E501BD3A02300DFDF62F040A9 /* PBXContainerItemProxy */; }; - D4431ECC0E32ADEEE07B4D8B68B85047 /* PBXTargetDependency */ = { + D54A6847423EDF9C6199FBCBF69BAA64 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = "react-native-background-timer"; - target = 6514D69CB93B41626AE1A05581F97B07 /* react-native-background-timer */; - targetProxy = 4E9B1A0C929F15972973F8C9DAA4AB3A /* PBXContainerItemProxy */; + name = FirebaseCoreDiagnostics; + target = 620E05868772C10B4920DC7E324F2C87 /* FirebaseCoreDiagnostics */; + targetProxy = 2FB7C12E66F7925012AF10148C8BB0A7 /* PBXContainerItemProxy */; }; - D44A7758C19717D2A285188F845251E5 /* PBXTargetDependency */ = { + D59D25C0D7C8DCAE765E5576E1FFFCBD /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = "Flipper-DoubleConversion"; - target = D9245543B79C09FAC40FC8B9F291536A /* Flipper-DoubleConversion */; - targetProxy = F85597B3515EC91BD8ED011FF5B70316 /* PBXContainerItemProxy */; + name = RNLocalize; + target = B51433D546A38C51AA781F192E8836F8 /* RNLocalize */; + targetProxy = 2F9D89D217B007912242B6BAAF0F01D2 /* PBXContainerItemProxy */; }; - D51387CF5FFD54BBBA00A2844E810CAD /* PBXTargetDependency */ = { + D5BC543BBA34896BEA273853BDBE0588 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = UMImageLoaderInterface; - target = 97C4DE84FA3CC4EC06AA6D8C249949B7 /* UMImageLoaderInterface */; - targetProxy = DDCF06DFCCE78D6E01728E5498A8293D /* PBXContainerItemProxy */; + name = "react-native-blur"; + target = EEBB8D24F2B3531A5C5DAA668D02331F /* react-native-blur */; + targetProxy = 1D9DBC31B8DB235D270EC76B034EF667 /* PBXContainerItemProxy */; }; - D5162B0143962B0E320119E579ED3B2E /* PBXTargetDependency */ = { + D61671A5653EEBE0A50BE8E8158237EA /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = RCTTypeSafety; - target = D20469A9A1E5CFB26045EAEBE3F88E5E /* RCTTypeSafety */; - targetProxy = 33218BCAFCC2A39CB997299383DC67FA /* PBXContainerItemProxy */; + name = RNCAsyncStorage; + target = 89F573A6B1292B3B2296B2206BFDC3D7 /* RNCAsyncStorage */; + targetProxy = ACC88A4A932D88126751163191568069 /* PBXContainerItemProxy */; }; - D545D2D37814C2505DCE684ED6185FCE /* PBXTargetDependency */ = { + D6661C4A70815DF6F38A72890D504420 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = "React-jsiexecutor"; - target = DA0709CAAD589C6E7963495210438021 /* React-jsiexecutor */; - targetProxy = B5020226D8CF8C596F9AF507EE1A741C /* PBXContainerItemProxy */; + name = nanopb; + target = D2B5E7DCCBBFB32341D857D01211A1A3 /* nanopb */; + targetProxy = 4D705BB971343ECC2ACF028D09C36586 /* PBXContainerItemProxy */; }; - D5585E08A85012426A2ADE6A7F273D59 /* PBXTargetDependency */ = { + D66A9122C05D21673F01DE969A160824 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = GoogleUtilities; - target = 8D7F5D5DD528D21A72DC87ADA5B12E2D /* GoogleUtilities */; - targetProxy = CD79A69D4B08B025D996B74950A3DF83 /* PBXContainerItemProxy */; + name = "React-jsinspector"; + target = F7D033C4C128EECAA020990641FA985F /* React-jsinspector */; + targetProxy = EA5A2DA9DDFE1B3DDF0D37E6367FD8B9 /* PBXContainerItemProxy */; }; - D5970FCEC1BE9CF9E7E686F21D352874 /* PBXTargetDependency */ = { + D68FA05760770EFA84E7D8A4E815EA69 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = libwebp; - target = 47D2E85A78C25869BB13521D8561A638 /* libwebp */; - targetProxy = 84D82B5C5339F8C8C4920350E7CEB3ED /* PBXContainerItemProxy */; + name = "React-Core"; + target = 7ACAA9BE580DD31A5CB9D97C45D9492D /* React-Core */; + targetProxy = CA78DB0676B5965B4CBD4F704EB34A84 /* PBXContainerItemProxy */; }; - D68973BD5746B0FB4EE12F9AF3B82904 /* PBXTargetDependency */ = { + D9706D65A519406AEFCAF84E9D1DF1DD /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = RNRootView; - target = 18B56DB36E1F066C927E49DBAE590128 /* RNRootView */; - targetProxy = D04B21C1FC36025308691FBACB99FC8C /* PBXContainerItemProxy */; + name = React; + target = 1BEE828C124E6416179B904A9F66D794 /* React */; + targetProxy = DA5BC39CBBEEB3E4B74FA6F5F1DE0183 /* PBXContainerItemProxy */; }; - D71B533AC48BA617148D71BB6CA35E59 /* PBXTargetDependency */ = { + D98A6A1E4FA227CA838A60C32C9E6CD7 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = TOCropViewController; - target = F3966F664F3CFAEFAB57C40FB54D3788 /* TOCropViewController */; - targetProxy = 0E344FBEA506D4EFF72A8D8B98E13933 /* PBXContainerItemProxy */; + name = "React-Core"; + target = 7ACAA9BE580DD31A5CB9D97C45D9492D /* React-Core */; + targetProxy = 2CAB32165CCF9E80AFCE579748FD8210 /* PBXContainerItemProxy */; }; - D7253855FDB8E939BD8A62DC3392481E /* PBXTargetDependency */ = { + DA65AA1C224ED428F63C0E595F71D64B /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = UMAppLoader; - target = C452F579644C83E8D8E36EC24A9BBD46 /* UMAppLoader */; - targetProxy = 8A09AC86B92344F864CB6712CDBB0E3A /* PBXContainerItemProxy */; + name = UMFileSystemInterface; + target = 2644525CCE081E967809A8163D893A93 /* UMFileSystemInterface */; + targetProxy = 936ABE1301FD76B37A18C337360B6367 /* PBXContainerItemProxy */; }; - D73827645DD9EB11344A582A2EB04349 /* PBXTargetDependency */ = { + DAAA8C615B6F679FACD55652315C9DC6 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = "React-Core"; - target = 7ACAA9BE580DD31A5CB9D97C45D9492D /* React-Core */; - targetProxy = 7ECD4A135F5204E4FA974F4513FADB5F /* PBXContainerItemProxy */; + name = EXVideoThumbnails; + target = 4A95B7CD1D5F80C5E8CD9CDA00D41F70 /* EXVideoThumbnails */; + targetProxy = 02842CB8390FBD307634D084FCA3D6EB /* PBXContainerItemProxy */; }; - D7D20D2346C622DD460C218ED1FB3C72 /* PBXTargetDependency */ = { + DBC6147590D6E08B79BAA7F773413279 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = SDWebImageWebPCoder; - target = 1953860EA9853AA2BC8022B242F08512 /* SDWebImageWebPCoder */; - targetProxy = ED0921AF4DEF7ACC3417F28DE27B00EF /* PBXContainerItemProxy */; + name = "React-Core"; + target = 7ACAA9BE580DD31A5CB9D97C45D9492D /* React-Core */; + targetProxy = 7A777492808974B1CB85A4B931B943AC /* PBXContainerItemProxy */; }; - D85BDC6D936CF55841DF5C81B2B60C77 /* PBXTargetDependency */ = { + DBD1042826A7ED58078C78AD29C27853 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = FirebaseCrashlytics; - target = 526C4398D095B3704EB933DADBC30093 /* FirebaseCrashlytics */; - targetProxy = 608C5DE033794BCECB7298D334B5E201 /* PBXContainerItemProxy */; + name = Flipper; + target = E63939AA6EFD3D6A8C09E45929F11DBD /* Flipper */; + targetProxy = 32F0EFA8E931B8EB5042D594B4C20554 /* PBXContainerItemProxy */; }; - D87EA1472409EDFED2143495D441AB9B /* PBXTargetDependency */ = { + DC1BE316D88828CD2F624D2340433D99 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = "React-RCTText"; - target = DBD2D83E10F8B7D3F4E0E34E6A9FCFA6 /* React-RCTText */; - targetProxy = 46D3DE815B95431C1FBD77A3E87CDDF9 /* PBXContainerItemProxy */; + name = "boost-for-react-native"; + target = ED2506AE7DE35D654F61254441EA7155 /* boost-for-react-native */; + targetProxy = 63D1FC844EEE4376CE597B43F4559F1F /* PBXContainerItemProxy */; }; - D886B02BB59010A46256B4D360043811 /* PBXTargetDependency */ = { + DC2BF65E94CE9E326BF6B60CAFA934DB /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = "OpenSSL-Universal"; - target = B9ED5194E665042005069EF06C82A050 /* OpenSSL-Universal */; - targetProxy = 11E6B0F5A374A71CBB92CB7A9503FE90 /* PBXContainerItemProxy */; + name = RNFBApp; + target = 90D0DE2F3348233618414728C35311CA /* RNFBApp */; + targetProxy = 431C13BFC90DFA625C79A75920595F3B /* PBXContainerItemProxy */; }; - D8D4E49F38F55FAEC2BED075D38454B1 /* PBXTargetDependency */ = { + DCB33EAEA8C33EE63E32C579CEB33842 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = "RCT-Folly"; - target = EC55D52694092A9D0E6A78EB01207EB5 /* RCT-Folly */; - targetProxy = 23BACFEA8C1C825E3FF7A20F10CA01B6 /* PBXContainerItemProxy */; + name = "React-jsiexecutor"; + target = DA0709CAAD589C6E7963495210438021 /* React-jsiexecutor */; + targetProxy = AACD0E8F4FE30DB6751B882B9C8F6400 /* PBXContainerItemProxy */; }; - D8DE82F0DF3F721853BACDFB56EE7764 /* PBXTargetDependency */ = { + DCBABE6BC7126C700E4BD8C8A36BDE91 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = "React-CoreModules"; - target = E16E206437995280D349D4B67695C894 /* React-CoreModules */; - targetProxy = 22EC80B5F6F52173531AE372A985E80E /* PBXContainerItemProxy */; + name = "React-Core"; + target = 7ACAA9BE580DD31A5CB9D97C45D9492D /* React-Core */; + targetProxy = A59C48EB110888B8C150B8EEF7DD5546 /* PBXContainerItemProxy */; }; - D97ACAA025D2C5C231BEFE0FC7E9CCB1 /* PBXTargetDependency */ = { + DD9A642DC1E6265563C1478BFEDA9F6D /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = "React-cxxreact"; - target = 463F41A7E8B252F8AC5024DA1F4AF6DA /* React-cxxreact */; - targetProxy = AEF55A3ABF7745C73832340D0F26E187 /* PBXContainerItemProxy */; + name = FirebaseCore; + target = 4402AFF83DBDC4DD07E198685FDC2DF2 /* FirebaseCore */; + targetProxy = 8C52DA5661B656BD465584D284411F8E /* PBXContainerItemProxy */; }; - D97D64740DE8D42A7AFF5EEEF2BEE6A3 /* PBXTargetDependency */ = { + DDD19FCA77374E6EF7A3357A97874FA4 /* PBXTargetDependency */ = { isa = PBXTargetDependency; name = RCTRequired; target = E7E7CE52C8C68B17224FF8C262D80ABF /* RCTRequired */; - targetProxy = BB0918533CFC27468A4DCA516AC6F1D5 /* PBXContainerItemProxy */; + targetProxy = 3E9FE85869C896A68ADC0CA17D9DEB61 /* PBXContainerItemProxy */; }; - DAA05EC511AB018819F223443C706A26 /* PBXTargetDependency */ = { + DDDA4EB3DA03DE1887340281583DDCC3 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = RNFBAnalytics; - target = BDD119F8782FABE2707D3D913EC3EDE5 /* RNFBAnalytics */; - targetProxy = C0CCF22ABD6728CC24E44F6C0E4F16F7 /* PBXContainerItemProxy */; + name = FirebaseInstallations; + target = 87803597EB3F20FC46472B85392EC4FD /* FirebaseInstallations */; + targetProxy = 73A58A9EB1ACD5BF29463BC951EAECEE /* PBXContainerItemProxy */; }; - DAAB08A5B6C7FE989074187B6B6C3E57 /* PBXTargetDependency */ = { + DDE9C84B84984CEF0ED83EB6FCDE5566 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = EXKeepAwake; - target = 0CF4D9052577C85B6B8C4E957332626B /* EXKeepAwake */; - targetProxy = F01CFAFDA4F1B392F0C8C8E1CEE0A728 /* PBXContainerItemProxy */; + name = UMSensorsInterface; + target = 2038C6F97563AAD6162C284B3EDD5B3B /* UMSensorsInterface */; + targetProxy = B29E3460567C601445EC5C45332B655A /* PBXContainerItemProxy */; }; - DACB9BCB766A0003CB65AAC6C611480A /* PBXTargetDependency */ = { + DE0135B3B16FE997259433D5B3B38D6A /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = "React-jsi"; - target = FA877ADC442CB19CF61793D234C8B131 /* React-jsi */; - targetProxy = C57DE5B2C6E3F097F6E8971714DA972B /* PBXContainerItemProxy */; + name = GoogleUtilities; + target = 8D7F5D5DD528D21A72DC87ADA5B12E2D /* GoogleUtilities */; + targetProxy = 4AEC0B1782FC28B57920BAFEA65C1886 /* PBXContainerItemProxy */; }; - DB2E58A92DCFF90E53B3C95EE16EDBA1 /* PBXTargetDependency */ = { + DE1CFA6C58C9DFC21D1140ED992FA283 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = "React-runtimeexecutor"; - target = 54EB12219122432FA744088BC5A680D2 /* React-runtimeexecutor */; - targetProxy = B56277016AB6D6552AA17390A8EE5019 /* PBXContainerItemProxy */; + name = "Flipper-RSocket"; + target = 1FAAE067C1BFDEA17DFB657C3379AB56 /* Flipper-RSocket */; + targetProxy = 97619171E4BCC52156F87DF1B58E8E3E /* PBXContainerItemProxy */; }; - DB8DFC0B0074CD32D8DF89293CA3F6E9 /* PBXTargetDependency */ = { + DE45069F074B19739AB25CB9B8269AA9 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = "React-jsi"; - target = FA877ADC442CB19CF61793D234C8B131 /* React-jsi */; - targetProxy = CAA00F4A4823AE7159CA350101600196 /* PBXContainerItemProxy */; + name = RNRootView; + target = 18B56DB36E1F066C927E49DBAE590128 /* RNRootView */; + targetProxy = 0CB4FC604083BD956166FF84189BA372 /* PBXContainerItemProxy */; }; - DC0E2745382924E5FB107EF04E38E1EE /* PBXTargetDependency */ = { + DE555C4B3CAEABCC2BABC55E0B789C5B /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = "React-RCTSettings"; - target = 680299219D3A48D42A648AF6706275A9 /* React-RCTSettings */; - targetProxy = EE7B3E27294DF1A9467C89120C20CF4B /* PBXContainerItemProxy */; + name = GoogleUtilities; + target = 8D7F5D5DD528D21A72DC87ADA5B12E2D /* GoogleUtilities */; + targetProxy = D24B5BC388EB7017ACAC327369B88518 /* PBXContainerItemProxy */; }; - DCBEED8BB8DA785CC953085B281C524B /* PBXTargetDependency */ = { + DE78ECE5B979912F7CA59162399661CC /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = RNDateTimePicker; - target = D760AF58E12ABBB51F84160FB02B5F39 /* RNDateTimePicker */; - targetProxy = A7CB02EA9D821A2F8927275C59ECE88F /* PBXContainerItemProxy */; + name = EXAV; + target = 13D7009C3736FB694854D88BAD4742B6 /* EXAV */; + targetProxy = F9219DA0FF66E0C31179C1C23DC8507A /* PBXContainerItemProxy */; }; - DD3DAA8F6CD1E76CA6540183D4C4E406 /* PBXTargetDependency */ = { + DEBF67157E41E671BB103B9ED4A8E6A2 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = UMFileSystemInterface; - target = 2644525CCE081E967809A8163D893A93 /* UMFileSystemInterface */; - targetProxy = 7D598AF8C7AAF47DA95B87BC66BECB6C /* PBXContainerItemProxy */; + name = MMKVCore; + target = AC8AE887C706A43711D115E69B9D988A /* MMKVCore */; + targetProxy = A7CBAB4590C0377EBADF039C8A4D142D /* PBXContainerItemProxy */; }; - DD8B13F01399292057CB1A2120262898 /* PBXTargetDependency */ = { + DF2419A25206E553E3B13CDFFFF7C97E /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = UMTaskManagerInterface; - target = 50188AAB5FAECCA9583327DBA2B0AF2B /* UMTaskManagerInterface */; - targetProxy = 967CABE5DFDF053BD91FFC332F03F672 /* PBXContainerItemProxy */; + name = "React-perflogger"; + target = F1E2583679398CB5F4D2B3272E9B198F /* React-perflogger */; + targetProxy = 524D3729BEB245F54BDDB909C41198AE /* PBXContainerItemProxy */; }; - DDC3ACC7530FC66545CCCF4EBECF9F2B /* PBXTargetDependency */ = { + E0A5A8763556325BFADCD66774D771C6 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = EXLocalAuthentication; - target = 869CED37B4B77AAE35DF8B6E70788BBC /* EXLocalAuthentication */; - targetProxy = 2409B653999325C77FF9404502735AEC /* PBXContainerItemProxy */; + name = "React-RCTActionSheet"; + target = 11989A5E568B3B69655EE0C13DCDA3F9 /* React-RCTActionSheet */; + targetProxy = 7145BDB2B206A83619566AC1C92B8CEC /* PBXContainerItemProxy */; }; - DDEABB0401C04ADB9F2D65B87953DA7B /* PBXTargetDependency */ = { + E0DA99C9A8B52AE9334960EC2FFAAA82 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = RNReanimated; - target = FF879E718031128A75E7DE54046E6219 /* RNReanimated */; - targetProxy = 720D6F36713F2A7EFD0F6039E1465A16 /* PBXContainerItemProxy */; + name = DoubleConversion; + target = 2AB2EF542954AB1C999E03BFEF8DE806 /* DoubleConversion */; + targetProxy = 5D534B81B5989347FAAD86CC479F9FCC /* PBXContainerItemProxy */; }; - DE17F7C3F95D7DBEFE469E2AF2AF4DCC /* PBXTargetDependency */ = { + E0EF2C265037660848C066BB7F2F76DA /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = "react-native-simple-crypto"; - target = D985A509BFE270C95EDCBE6B4CBAF189 /* react-native-simple-crypto */; - targetProxy = 52930AD8F7529C00DBF65D8885178645 /* PBXContainerItemProxy */; + name = "RCT-Folly"; + target = EC55D52694092A9D0E6A78EB01207EB5 /* RCT-Folly */; + targetProxy = 71FC99B5612A6BDE4184912BD3DACB29 /* PBXContainerItemProxy */; }; - DE4074508043E17EF1763B5E07463CEF /* PBXTargetDependency */ = { + E1C813450C93AB98BAF1AD0018A31DC1 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = ReactCommon; - target = B6D5DD49633DFF0657B8C3F08EB3ABA9 /* ReactCommon */; - targetProxy = F6E2F0D826873FE858A14B235C7A24FE /* PBXContainerItemProxy */; + name = nanopb; + target = D2B5E7DCCBBFB32341D857D01211A1A3 /* nanopb */; + targetProxy = E7A37833AF6E675E3587E8ED2F30BFBB /* PBXContainerItemProxy */; }; - DEA06A4DF6FE01D0FF1EF48771EFB66F /* PBXTargetDependency */ = { + E1CCF296F5344E2B8CEC8B645C06A899 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = CocoaAsyncSocket; - target = 6083682834ABE0AE7BD1CBF06CADD036 /* CocoaAsyncSocket */; - targetProxy = 786C4EF4FEECE22A8A59F0D013E2636F /* PBXContainerItemProxy */; + name = Firebase; + target = 072CEA044D2EF26F03496D5996BBF59F /* Firebase */; + targetProxy = 6F9AF8189420FE157125AEDA86530CFC /* PBXContainerItemProxy */; }; - DEBD5B8F7341D5ED0871A8FD2560A83C /* PBXTargetDependency */ = { + E31D6209DC0CB354B3316D3B64C8069C /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = "Flipper-Folly"; - target = B6D39E083AE0FF45BA30D7CDF6198A03 /* Flipper-Folly */; - targetProxy = 590D4369441D7B8C47D1FB5FDC5BDC16 /* PBXContainerItemProxy */; + name = UMConstantsInterface; + target = 9668C19AA6D8EA320F83875FA286855A /* UMConstantsInterface */; + targetProxy = 1D3EB81BF1ED1A57E8C19410CB9A2592 /* PBXContainerItemProxy */; }; - DF44F0541DEB24228B63E099789AE037 /* PBXTargetDependency */ = { + E342511312F8BAB6ACC2135E46579A98 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = "React-RCTLinking"; - target = 6FE9147F8AAA4DE676C190F680F47AE2 /* React-RCTLinking */; - targetProxy = 67853A4F5F3148D98DC959BC4A971A11 /* PBXContainerItemProxy */; + name = FirebaseCore; + target = 4402AFF83DBDC4DD07E198685FDC2DF2 /* FirebaseCore */; + targetProxy = 65CE3B5711E8042A1CA8B8A4AD310C79 /* PBXContainerItemProxy */; }; - DF8757C889D3F10EB481E26F95675969 /* PBXTargetDependency */ = { + E351BDCD246C1E38A05E2289DFA9A5B7 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = KeyCommands; - target = 7F591BD8674041AAAA4F37DC699B5518 /* KeyCommands */; - targetProxy = 47D76C612CA82C72ABE493A74312ED8C /* PBXContainerItemProxy */; + name = FBReactNativeSpec; + target = C3496D0495E700CF08A90C41EA8FA4BB /* FBReactNativeSpec */; + targetProxy = F0875253F90CC3E1D4042DD57E52E66C /* PBXContainerItemProxy */; }; - DF8C2B48F6DCBEDF9F5398726FF79A7A /* PBXTargetDependency */ = { + E44CD237270DD2DE4646281BA98CF1A4 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = UMPermissionsInterface; - target = F7845084F0CF03F54107EEF7411760AD /* UMPermissionsInterface */; - targetProxy = E8B4EE5BD2AC03FCE7154F684035C4E6 /* PBXContainerItemProxy */; + name = RNImageCropPicker; + target = 0D82774D2A533D3FFAE27CAB4A6E9CB2 /* RNImageCropPicker */; + targetProxy = 220E9687D91E82F06566144FFA2EE25E /* PBXContainerItemProxy */; }; - DF9719630F0724A545FEFD6C4F0B7982 /* PBXTargetDependency */ = { + E4AE6443890E55511BFAB8618792FBEF /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = "React-Core"; - target = 7ACAA9BE580DD31A5CB9D97C45D9492D /* React-Core */; - targetProxy = E540A14D89767CD86D33D378A7F00771 /* PBXContainerItemProxy */; + name = UMFontInterface; + target = 014495932E402CA67C37681988047CA2 /* UMFontInterface */; + targetProxy = 97DB0CF4979D058B0B401617BF0307B2 /* PBXContainerItemProxy */; }; - E0081F81334E401F9C1A5A022B1619AB /* PBXTargetDependency */ = { + E55F05AB8D715BA808FBBCB9D9D06D0B /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = "React-RCTVibration"; - target = 53D121F9F9BB0F8AC1C94A12C5A8572F /* React-RCTVibration */; - targetProxy = 0EAACFEAD1664050F5C6B150F81687D4 /* PBXContainerItemProxy */; + name = FBReactNativeSpec; + target = C3496D0495E700CF08A90C41EA8FA4BB /* FBReactNativeSpec */; + targetProxy = B9AE356D8D0D666C504C1B0A2E728BE2 /* PBXContainerItemProxy */; }; - E09BFAD98EA4391CBDE56C6843DFDCC9 /* PBXTargetDependency */ = { + E60EA42516517AABD4E4E7EC96B4EFB8 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = React; - target = 1BEE828C124E6416179B904A9F66D794 /* React */; - targetProxy = D97E8B1A5B6F78D9F43514EF79F830B3 /* PBXContainerItemProxy */; + name = UMImageLoaderInterface; + target = 97C4DE84FA3CC4EC06AA6D8C249949B7 /* UMImageLoaderInterface */; + targetProxy = 2D5216C6C0A604D8A41CA5FDFBD4FE6A /* PBXContainerItemProxy */; }; - E0AFAFB364F2415037F442019DDB462A /* PBXTargetDependency */ = { + E647EA9187D61F3B6A3E954856A89EF6 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = "TOCropViewController-TOCropViewControllerBundle"; - target = 2D4D3D5AD93ADCCF3DD45A88009E48D6 /* TOCropViewController-TOCropViewControllerBundle */; - targetProxy = 92346F2C9AB9B16FF34C17E737C27888 /* PBXContainerItemProxy */; + name = RNCPicker; + target = D00F24222F074B31C56DC6D05E806A35 /* RNCPicker */; + targetProxy = 04A254575E2EDF7510E5D78F6D16F3CA /* PBXContainerItemProxy */; }; - E0EACE4355A49D6F4BAF19F72787B61A /* PBXTargetDependency */ = { + E657A9DEF85DC366E4C3937F7A11C4B5 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = "boost-for-react-native"; - target = ED2506AE7DE35D654F61254441EA7155 /* boost-for-react-native */; - targetProxy = D889F265F50787A0DC7E5F67E54AFAE9 /* PBXContainerItemProxy */; + name = "React-perflogger"; + target = F1E2583679398CB5F4D2B3272E9B198F /* React-perflogger */; + targetProxy = 6E17C8CFF1A9E18F73D2647C1C717915 /* PBXContainerItemProxy */; }; - E0F0F21ADCAC508DB3916B4DB4D9A3D2 /* PBXTargetDependency */ = { + E75E55A364A25F311C8D77230718AB65 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = "React-Core"; - target = 7ACAA9BE580DD31A5CB9D97C45D9492D /* React-Core */; - targetProxy = B0C62270E17819C8DB6D065A1945A0F6 /* PBXContainerItemProxy */; + name = GoogleAppMeasurement; + target = B53D977A951AFC38B21751B706C1DF83 /* GoogleAppMeasurement */; + targetProxy = A4FD9B22CD758C93C4D4B5DDB638778B /* PBXContainerItemProxy */; }; - E131BEB851C3E2348A5D6834F6B7A9EF /* PBXTargetDependency */ = { + E79361373708109E30DBFB73240BA7F4 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = "OpenSSL-Universal"; - target = B9ED5194E665042005069EF06C82A050 /* OpenSSL-Universal */; - targetProxy = DA6B6185BFE45116B2697D286E0F1E4A /* PBXContainerItemProxy */; + name = FirebaseCrashlytics; + target = 526C4398D095B3704EB933DADBC30093 /* FirebaseCrashlytics */; + targetProxy = A23DACA76F52BE5F6A9A88C235E3E482 /* PBXContainerItemProxy */; }; - E1F239D9D7ACFA74B87C9CEBA02F84B4 /* PBXTargetDependency */ = { + E7C2A153CE1EF9503D1DEF2FE8AB8A82 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = "React-jsinspector"; - target = F7D033C4C128EECAA020990641FA985F /* React-jsinspector */; - targetProxy = 726537D085A6AAE596BA2B05B5F6C773 /* PBXContainerItemProxy */; + name = UMBarCodeScannerInterface; + target = 49821C2B9E764AEDF2B35DFE9AA7022F /* UMBarCodeScannerInterface */; + targetProxy = 8485DA4C4B7486A73FA445BBEE5B5859 /* PBXContainerItemProxy */; }; - E21F8B7BDED72A894D88506D607E6756 /* PBXTargetDependency */ = { + E7C6CE2D45CD0C3F51A022D85C645BDA /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = "React-RCTActionSheet"; - target = 11989A5E568B3B69655EE0C13DCDA3F9 /* React-RCTActionSheet */; - targetProxy = 3103187B09DB1119A9DD295FD8F59DB8 /* PBXContainerItemProxy */; + name = FlipperKit; + target = 982644B5B647690B2E4F5B3F54EB5717 /* FlipperKit */; + targetProxy = 20EF07637F99AC55FDE97BD7AFDC6D7A /* PBXContainerItemProxy */; }; - E2C95EA33978F154389BA327F271171B /* PBXTargetDependency */ = { + E8F5B5CE62CAACD23D0CA4B6DA0B0312 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = BugsnagReactNative; - target = 0745200E60DC80C9A0A48B7E6C1518D7 /* BugsnagReactNative */; - targetProxy = BC6E3AC0694191F0BF2D61EA3C1C4D6E /* PBXContainerItemProxy */; + name = "React-jsinspector"; + target = F7D033C4C128EECAA020990641FA985F /* React-jsinspector */; + targetProxy = 260681D9EB3A4F3F3F9B89A1DEDC4BE5 /* PBXContainerItemProxy */; }; - E315B64275339E371218570FD7059EAD /* PBXTargetDependency */ = { + E9124336B0D92125A5E72A5ADCA79C9D /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = RNVectorIcons; - target = 96150F524B245896B800F84F369A9A5A /* RNVectorIcons */; - targetProxy = 71DBD6F69FB0A3E667A39B53EDA268F0 /* PBXContainerItemProxy */; + name = "RNImageCropPicker-QBImagePicker"; + target = 6D979AB5FDA2E858850D9903776A30B3 /* RNImageCropPicker-QBImagePicker */; + targetProxy = 7D5C1264D261C1097D614FA54B9265BE /* PBXContainerItemProxy */; }; - E33E1C030BDF1A1B08FE9DDF60C9C446 /* PBXTargetDependency */ = { + E93C2B3939CE9266757E0B2810C43583 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = GoogleAppMeasurement; - target = B53D977A951AFC38B21751B706C1DF83 /* GoogleAppMeasurement */; - targetProxy = 6436E251B213A17559C5A007126860E2 /* PBXContainerItemProxy */; + name = "boost-for-react-native"; + target = ED2506AE7DE35D654F61254441EA7155 /* boost-for-react-native */; + targetProxy = B31A4AEA8BE46545AD35F20A2B69B17D /* PBXContainerItemProxy */; }; - E3B67854969828043CDBE1528792B8A8 /* PBXTargetDependency */ = { + E948718245195560147BA550D1F1C308 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = RCTTypeSafety; - target = D20469A9A1E5CFB26045EAEBE3F88E5E /* RCTTypeSafety */; - targetProxy = 5DE44274FC42792D02B19B8358D80D0B /* PBXContainerItemProxy */; + name = RNFBCrashlytics; + target = E3573FB7AF659C42B699003C73722241 /* RNFBCrashlytics */; + targetProxy = CE3DB5DA51E352BF7CDCA1AC8B784878 /* PBXContainerItemProxy */; }; - E3F5BE3B036BDE2C64FADCDA8867C2A8 /* PBXTargetDependency */ = { + E976F471FD8088D128B3BC524A08BC4E /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = "React-CoreModules"; - target = E16E206437995280D349D4B67695C894 /* React-CoreModules */; - targetProxy = 1B6A9F925F4D4F01F6A13DD353A9E87B /* PBXContainerItemProxy */; + name = UMSensorsInterface; + target = 2038C6F97563AAD6162C284B3EDD5B3B /* UMSensorsInterface */; + targetProxy = 423FED86DA5CF1101621308E97F6CF75 /* PBXContainerItemProxy */; }; - E474B96A8FFB4DA88BF3962AF3EA2F3E /* PBXTargetDependency */ = { + E9851019EE89EC7EAAF5D777F62EBAB9 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = FirebaseCrashlytics; - target = 526C4398D095B3704EB933DADBC30093 /* FirebaseCrashlytics */; - targetProxy = 156017FB89EF453FC3322467854BD4DF /* PBXContainerItemProxy */; + name = UMCore; + target = DBCB1B4965863DDD3B9DED9A0918A526 /* UMCore */; + targetProxy = 436DA5DB35F97D14EBD4960BEFAFBFBE /* PBXContainerItemProxy */; }; - E4A94790CC4BB4AE1422985FE8D974DF /* PBXTargetDependency */ = { + E99261018ACFEE2562F1B2E6F918FC68 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = RCTRequired; - target = E7E7CE52C8C68B17224FF8C262D80ABF /* RCTRequired */; - targetProxy = EB5FEC194FC451D91386AB5A818D2F7D /* PBXContainerItemProxy */; + name = "react-native-jitsi-meet"; + target = D39AB631E8050865DE01F6D5678797D2 /* react-native-jitsi-meet */; + targetProxy = 7DDE786A9EECE0A8D53A2CEC9B1BB2AD /* PBXContainerItemProxy */; }; - E4B5C01A9A6CADEBCD3375058848F7D2 /* PBXTargetDependency */ = { + EC02357109524B8BF8E396A72D1C8384 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = "React-RCTBlob"; - target = 95D98F901D07557EF7CA38D3F03832C5 /* React-RCTBlob */; - targetProxy = 73CD322EDC89082FF68B9535D06AE940 /* PBXContainerItemProxy */; + name = "RCT-Folly"; + target = EC55D52694092A9D0E6A78EB01207EB5 /* RCT-Folly */; + targetProxy = D363D2E52E586770768115013F9EB750 /* PBXContainerItemProxy */; }; - E4D6AFFCD5BAAA44B1C7F444DE3CB88A /* PBXTargetDependency */ = { + EC1332DC4573FB5ADCF53D9321043F24 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = "boost-for-react-native"; - target = ED2506AE7DE35D654F61254441EA7155 /* boost-for-react-native */; - targetProxy = 22EB82D97CAC329152F628A05D5805D5 /* PBXContainerItemProxy */; + name = "react-native-jitsi-meet"; + target = D39AB631E8050865DE01F6D5678797D2 /* react-native-jitsi-meet */; + targetProxy = D609A9C69B9180CE3BA17C4625F6A2B2 /* PBXContainerItemProxy */; + }; + EC3D6393805DF5A03D8D0F135BAE4ADA /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = "RCT-Folly"; + target = EC55D52694092A9D0E6A78EB01207EB5 /* RCT-Folly */; + targetProxy = 463494775E1AC67F859BA55FC613390C /* PBXContainerItemProxy */; }; - E4F73A52909E705812C5CC0689A0E9B1 /* PBXTargetDependency */ = { + EC4DE89FDC624C50E813F5B3E7CED604 /* PBXTargetDependency */ = { isa = PBXTargetDependency; name = "React-Core"; target = 7ACAA9BE580DD31A5CB9D97C45D9492D /* React-Core */; - targetProxy = 07985DA45BDAD42E2F483609ACBCA588 /* PBXContainerItemProxy */; + targetProxy = EAAB7FFA64B949DC5355D6C902452372 /* PBXContainerItemProxy */; }; - E54E3592E277856DA6C60553B11C9919 /* PBXTargetDependency */ = { + EC75D18C366CC6F8D12889A1AE761EF9 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = RNConfigReader; - target = DC0D417AC8ABB7AA10C20A5E0F065812 /* RNConfigReader */; - targetProxy = 59388E57F965539219CDE3E790E1E349 /* PBXContainerItemProxy */; + name = React; + target = 1BEE828C124E6416179B904A9F66D794 /* React */; + targetProxy = F594516EA622E8A0E451526C9625B359 /* PBXContainerItemProxy */; }; - E5EDED7A21AE2D5E2B5D649010ADCEB8 /* PBXTargetDependency */ = { + ECBD639EE95544C0AE20660D7D782529 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = ReactNativeART; - target = 90148E8FD1C445D7A019D504FA8CBC53 /* ReactNativeART */; - targetProxy = 4C93F8CFD550C70F6E3CAB9E24B2394B /* PBXContainerItemProxy */; + name = React; + target = 1BEE828C124E6416179B904A9F66D794 /* React */; + targetProxy = 2F12E619469B37171385D31E885F633D /* PBXContainerItemProxy */; }; - E5F258B753DF4470EC09F0A0B415DA7F /* PBXTargetDependency */ = { + ED4C1920F21262D66BCF5AF40E532A3A /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = FirebaseCoreDiagnostics; - target = 620E05868772C10B4920DC7E324F2C87 /* FirebaseCoreDiagnostics */; - targetProxy = 5569090EC3C3F2F0CF2BAEF82929EAEF /* PBXContainerItemProxy */; + name = "react-native-restart"; + target = 3ED96FB9FE1D18D5F1239C60A109F98C /* react-native-restart */; + targetProxy = 2CF2259CABA031ED590B55FB1527D968 /* PBXContainerItemProxy */; }; - E63894B7D9C720796FD3222B0176CFB4 /* PBXTargetDependency */ = { + ED979A1E63469BEDEDA918645F316F98 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = RNRootView; - target = 18B56DB36E1F066C927E49DBAE590128 /* RNRootView */; - targetProxy = 8978A3E9D6F89F654EEB2D9CFC867FA8 /* PBXContainerItemProxy */; + name = EXKeepAwake; + target = 0CF4D9052577C85B6B8C4E957332626B /* EXKeepAwake */; + targetProxy = 9F4B289D2F4C0897DBE840E5B543BE26 /* PBXContainerItemProxy */; }; - E663E0746AF9587E187140088C9A78A1 /* PBXTargetDependency */ = { + EDD4FE3898D28B829FBA48F501200EB5 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = BugsnagReactNative; - target = 0745200E60DC80C9A0A48B7E6C1518D7 /* BugsnagReactNative */; - targetProxy = CB8F0CEE6D4A4EFE1EC6CB1E9D2857FC /* PBXContainerItemProxy */; + name = UMCore; + target = DBCB1B4965863DDD3B9DED9A0918A526 /* UMCore */; + targetProxy = 1BDCCF161C6F367310DE943D24D61A50 /* PBXContainerItemProxy */; }; - E666B2E35AC66E44685924DFCCCF1F3A /* PBXTargetDependency */ = { + EEE4A28EEF8F2184E2714A94D5592EB7 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = RNDeviceInfo; - target = 807428FE76D80865C9F59F3502600E89 /* RNDeviceInfo */; - targetProxy = 9291EC52EE67BB3FD70E9F2B9BE2C203 /* PBXContainerItemProxy */; + name = SDWebImage; + target = 3847153A6E5EEFB86565BA840768F429 /* SDWebImage */; + targetProxy = 0B5202B877F6CDA6ECFF46040032EE07 /* PBXContainerItemProxy */; }; - E7C3274244E88B5BDE0B7169B66BCDCA /* PBXTargetDependency */ = { + EF725B72D06517BA5CCE22FCBDA04635 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = "hermes-engine"; - target = 985FEA01F314F3C00F0C1E1181E6C4A5 /* hermes-engine */; - targetProxy = 8EA26C6DCF74AAF41DE8B90F354C46E7 /* PBXContainerItemProxy */; + name = "React-RCTNetwork"; + target = 651511D7DA7F07F9FC9AA40A2E86270D /* React-RCTNetwork */; + targetProxy = 76A0F18EFC7EAA06DB4DCB8D63FC3A5E /* PBXContainerItemProxy */; }; - E7EFDBC0898C890558518B95EE67E0BB /* PBXTargetDependency */ = { + EF7D5C684E28A26C507980A5D30C9824 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = FBReactNativeSpec; - target = C3496D0495E700CF08A90C41EA8FA4BB /* FBReactNativeSpec */; - targetProxy = 5C88E946B311BCCD1D2CB4A3CEF41913 /* PBXContainerItemProxy */; + name = "react-native-blur"; + target = EEBB8D24F2B3531A5C5DAA668D02331F /* react-native-blur */; + targetProxy = 1728313302EE5615095EB575EA99E89E /* PBXContainerItemProxy */; }; - E85E05E1B6F2791A88C822DB6D5F8D92 /* PBXTargetDependency */ = { + F15F0CCDC6CD3375E73218A0DB73A99E /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = GoogleUtilities; - target = 8D7F5D5DD528D21A72DC87ADA5B12E2D /* GoogleUtilities */; - targetProxy = 7B4553286C8582DC620CF51CBC5051F4 /* PBXContainerItemProxy */; + name = "react-native-document-picker"; + target = D11E74324175FE5B0E78DB046527F233 /* react-native-document-picker */; + targetProxy = 127EAEF5FA051717FCD7991713B2F789 /* PBXContainerItemProxy */; }; - E98952DD1B78AE4734CB8DCEDEABF4F4 /* PBXTargetDependency */ = { + F1896D2FAA09DED00F24CAB421400A7D /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = "RCT-Folly"; - target = EC55D52694092A9D0E6A78EB01207EB5 /* RCT-Folly */; - targetProxy = B86AD38808E3F999AC89346B4F449759 /* PBXContainerItemProxy */; + name = RNDeviceInfo; + target = 807428FE76D80865C9F59F3502600E89 /* RNDeviceInfo */; + targetProxy = C0366D28168FB72EEDE28F0F7B375893 /* PBXContainerItemProxy */; }; - EA27FD1BDF1340B10762FA5BCA6897F8 /* PBXTargetDependency */ = { + F19AB6FDA915A5152F7F8571FA045094 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = RNBootSplash; - target = 6677891AC2F7AB93E04BFF30B293A46B /* RNBootSplash */; - targetProxy = D3D2A9E1BBCB70F920A63123212B689E /* PBXContainerItemProxy */; + name = glog; + target = D0EFEFB685D97280256C559792236873 /* glog */; + targetProxy = E9A686FC3DD3251147DB7518A6548F6B /* PBXContainerItemProxy */; }; - EB2E014AD89BAA33B6F3075F0D9BEA3D /* PBXTargetDependency */ = { + F19B1755F4FBDE6CC1DE7EDB3FE6DF58 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = "React-Core"; - target = 7ACAA9BE580DD31A5CB9D97C45D9492D /* React-Core */; - targetProxy = E2E2C4114AEBFFCB85766233F762178B /* PBXContainerItemProxy */; + name = MMKV; + target = 91A6826828CB9FCD0169A7547E8A79EA /* MMKV */; + targetProxy = D8AC7871229B5651F435B98118804C6C /* PBXContainerItemProxy */; }; - EB6A8B3DC7D661BFB02311F88AD70312 /* PBXTargetDependency */ = { + F201A30EE2D7F9A5153796470E2C6319 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = "React-perflogger"; - target = F1E2583679398CB5F4D2B3272E9B198F /* React-perflogger */; - targetProxy = 2AE5A1014DB6B7EDC9E20991D4C99193 /* PBXContainerItemProxy */; + name = FirebaseCoreDiagnostics; + target = 620E05868772C10B4920DC7E324F2C87 /* FirebaseCoreDiagnostics */; + targetProxy = 8472B8840D82CD4C6700FE124F49DD12 /* PBXContainerItemProxy */; }; - EBD453A1B6979DF3C69F87C620C7AAAE /* PBXTargetDependency */ = { + F26DC35155439744309E64FEF3072DF2 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = EXImageLoader; - target = 263266A9E29FFF0E9C8CA0E4582BFCF4 /* EXImageLoader */; - targetProxy = 27F1657C0A1CF9D3E178D11AA89C6608 /* PBXContainerItemProxy */; + name = GoogleDataTransport; + target = 5C0371EE948D0357B8EE0E34ABB44BF0 /* GoogleDataTransport */; + targetProxy = 24E410AF00AC2B8762BCB6948921C27E /* PBXContainerItemProxy */; }; - EBE357417F1D61F9ECA679BB0B0C19AB /* PBXTargetDependency */ = { + F274422E7D74DD9E0958853D80D3DC3F /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = RCTTypeSafety; - target = D20469A9A1E5CFB26045EAEBE3F88E5E /* RCTTypeSafety */; - targetProxy = 7F86036D468EF759A9944001C3086198 /* PBXContainerItemProxy */; + name = "rn-fetch-blob"; + target = 64F427905796B33B78A704063422979D /* rn-fetch-blob */; + targetProxy = AA035B5173763A89AD6EF9653A639C05 /* PBXContainerItemProxy */; }; - EC14546B8305C367EE5ED23568D2F576 /* PBXTargetDependency */ = { + F29EFF197A5298CB145014E6D66EFB96 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = "Flipper-Folly"; - target = B6D39E083AE0FF45BA30D7CDF6198A03 /* Flipper-Folly */; - targetProxy = E0C816EF86ED2156A80D2F51F80BC90B /* PBXContainerItemProxy */; + name = Firebase; + target = 072CEA044D2EF26F03496D5996BBF59F /* Firebase */; + targetProxy = 3543E5BF48821ACC3687ADA6415639A8 /* PBXContainerItemProxy */; }; - EC250BC04A27B1A63B94E350CCED12D7 /* PBXTargetDependency */ = { + F2A14E15F3536500E5BD7B3DFB3CB021 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = "react-native-simple-crypto"; - target = D985A509BFE270C95EDCBE6B4CBAF189 /* react-native-simple-crypto */; - targetProxy = 5A1A264C62BE65EF029F9BF45D86D757 /* PBXContainerItemProxy */; + name = RNScreens; + target = 214E42634D1E187D876346D36184B655 /* RNScreens */; + targetProxy = 421CEEFC91C9E8669FD955C8B2E2364C /* PBXContainerItemProxy */; }; - ED9A1D0F419D42BED5FBCDB087B3F0AE /* PBXTargetDependency */ = { + F2A2C7CE230D9F0F14CF4C963EF51842 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = "React-callinvoker"; - target = 2681CB7EF647E61F4F9A43029C235607 /* React-callinvoker */; - targetProxy = AD7B2B20D71A3C91C9CC8B60B1FDB542 /* PBXContainerItemProxy */; + name = React; + target = 1BEE828C124E6416179B904A9F66D794 /* React */; + targetProxy = 395556DEE21EDFC21BC4121D9A98313B /* PBXContainerItemProxy */; }; - EE2167E981F015ACD2531DEF5241A9DE /* PBXTargetDependency */ = { + F2A676205CD8F59FD1A932E779852C21 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = EXWebBrowser; - target = 9EB556EE511D43F3D5D7AAF51D8D0397 /* EXWebBrowser */; - targetProxy = 4CD0C8FE9D059588BD39FA3FB1D8BD2B /* PBXContainerItemProxy */; + name = EXAppleAuthentication; + target = 28A005E00FB77DDB2543047A07ED99A5 /* EXAppleAuthentication */; + targetProxy = 42AB541F152FC17D1BA49B735DA149FE /* PBXContainerItemProxy */; }; - EF67CC0694C727BBFE7DE264E204B8D9 /* PBXTargetDependency */ = { + F2EEFDC692C041160D568C5CB2E9C0E1 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = "React-jsi"; - target = FA877ADC442CB19CF61793D234C8B131 /* React-jsi */; - targetProxy = C477FF1EBB2802C1B27E1C3C13281E62 /* PBXContainerItemProxy */; + name = "React-Core"; + target = 7ACAA9BE580DD31A5CB9D97C45D9492D /* React-Core */; + targetProxy = E5CED035BF81F1BBBE894EAC02BD872E /* PBXContainerItemProxy */; }; - F0A855A2393B34C7F850E0B77A59D8D4 /* PBXTargetDependency */ = { + F2F46464254793FBBD9841FA669E2C8F /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = PromisesObjC; - target = 2BBF7206D7FAC92C82A042A99C4A98F8 /* PromisesObjC */; - targetProxy = 6359F94F5060859B2E9C4134C1869B29 /* PBXContainerItemProxy */; + name = React; + target = 1BEE828C124E6416179B904A9F66D794 /* React */; + targetProxy = 7C6CA7AC44F370FBEC27879796431759 /* PBXContainerItemProxy */; }; - F0C3C40FA6CD6456B010C47CFA649207 /* PBXTargetDependency */ = { + F3A04F9DEE4A5DD4EF8211249265C3BF /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = RNBootSplash; - target = 6677891AC2F7AB93E04BFF30B293A46B /* RNBootSplash */; - targetProxy = F578A07B3CEEAC12B884304E6A7C664E /* PBXContainerItemProxy */; + name = EXHaptics; + target = 409F3A0DB395F53FFB6AB30E5CD8ACD1 /* EXHaptics */; + targetProxy = 5F811B30F7BA3387C3398E9022974156 /* PBXContainerItemProxy */; + }; + F3D1B92D1682D74F6003BDCB39B53AE8 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = FBReactNativeSpec; + target = C3496D0495E700CF08A90C41EA8FA4BB /* FBReactNativeSpec */; + targetProxy = C4426B3B30476A0B41F921638D24D0D4 /* PBXContainerItemProxy */; + }; + F429B4467551D1E8C732C3F72FFA592C /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = "React-Core"; + target = 7ACAA9BE580DD31A5CB9D97C45D9492D /* React-Core */; + targetProxy = C5F2B7F1564ED425B350D399569CDC5E /* PBXContainerItemProxy */; }; - F0D55E9BEA4B8E97AF76FA1D54E4ABF6 /* PBXTargetDependency */ = { + F4AE9D849E46E86D9CC2B566CFED2A4E /* PBXTargetDependency */ = { isa = PBXTargetDependency; name = "react-native-webview"; target = 8D18C49071FC5370C25F5758A85BA5F6 /* react-native-webview */; - targetProxy = 73C03BC47D09631D4DFA4ADC8E6B51CD /* PBXContainerItemProxy */; + targetProxy = 21587908F89482C3A5B0448D58C6DBCB /* PBXContainerItemProxy */; }; - F22A6C16A990D09ADD1651FE73475406 /* PBXTargetDependency */ = { + F513E524C7611EAFAE29CF8A81597AE4 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = "react-native-restart"; - target = 3ED96FB9FE1D18D5F1239C60A109F98C /* react-native-restart */; - targetProxy = F654250BB7FA675FDF5CB750B3DEA4B9 /* PBXContainerItemProxy */; + name = RNDeviceInfo; + target = 807428FE76D80865C9F59F3502600E89 /* RNDeviceInfo */; + targetProxy = 0227F09D12A30CBD5CD5A1748B0F9B07 /* PBXContainerItemProxy */; }; - F294E455EBF719EAAB955B19244E25B0 /* PBXTargetDependency */ = { + F565974FBA121CB0955B0D561478CF4D /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = RCTTypeSafety; - target = D20469A9A1E5CFB26045EAEBE3F88E5E /* RCTTypeSafety */; - targetProxy = 8EAE92A4FD01D0E165251D4540A1CAF0 /* PBXContainerItemProxy */; + name = "react-native-netinfo"; + target = EC577C5CB1DC59A7464ECEF266A75B42 /* react-native-netinfo */; + targetProxy = D80BD1A89F7019095C9530BD21FEE9BC /* PBXContainerItemProxy */; }; - F2B211935424B8CA5ACCC6849FD9E141 /* PBXTargetDependency */ = { + F5E71DE38FED035053E9F2578F6363E0 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = BugsnagReactNative; - target = 0745200E60DC80C9A0A48B7E6C1518D7 /* BugsnagReactNative */; - targetProxy = 69BF5557AF1FEF6C555F67A1C1C56432 /* PBXContainerItemProxy */; + name = UMPermissionsInterface; + target = F7845084F0CF03F54107EEF7411760AD /* UMPermissionsInterface */; + targetProxy = 69BB3E53F609B9E5F4F716495A14C2B4 /* PBXContainerItemProxy */; }; - F3046CD08CEF51D300934FA4B2672ED8 /* PBXTargetDependency */ = { + F620EB38587AE61EA73542B8BFB9DBF6 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = EXHaptics; - target = 409F3A0DB395F53FFB6AB30E5CD8ACD1 /* EXHaptics */; - targetProxy = 6A574423B76DF9CB47DD812F88829918 /* PBXContainerItemProxy */; + name = "React-RCTLinking"; + target = 6FE9147F8AAA4DE676C190F680F47AE2 /* React-RCTLinking */; + targetProxy = 66707D625F708325F1131EAC0FEA6D28 /* PBXContainerItemProxy */; + }; + F679CC51791D30DE8AFCE802D37C0915 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = glog; + target = D0EFEFB685D97280256C559792236873 /* glog */; + targetProxy = FFB42EF751A7413F02906F353783132B /* PBXContainerItemProxy */; }; - F35A58FC7C82309A726EAAF755C4F3CF /* PBXTargetDependency */ = { + F67DA06CD86EAF23B6A7C4FC5034F879 /* PBXTargetDependency */ = { isa = PBXTargetDependency; name = React; target = 1BEE828C124E6416179B904A9F66D794 /* React */; - targetProxy = 6EE905DCAFF6D9757B7D78DEB143467E /* PBXContainerItemProxy */; + targetProxy = EBC351A15AB2EC6E19FA975C638C4793 /* PBXContainerItemProxy */; }; - F35B2988DC12A724442BAF127E55D025 /* PBXTargetDependency */ = { + F6E20F3E335362AD43BEE039B97FDDB3 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = "React-jsi"; - target = FA877ADC442CB19CF61793D234C8B131 /* React-jsi */; - targetProxy = 8F01F103563F28F3EF56D19EF131483C /* PBXContainerItemProxy */; + name = "Flipper-Glog"; + target = 6A9637F1BC8154F777335A6420579C05 /* Flipper-Glog */; + targetProxy = BAE9B7D2FDC58DE5740D88EBCAE6B1BC /* PBXContainerItemProxy */; }; - F37245A494C296BC8E6A6811053DD10D /* PBXTargetDependency */ = { + F7892B3E03D0FA64A268F4B02D4DA26F /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = RNDateTimePicker; - target = D760AF58E12ABBB51F84160FB02B5F39 /* RNDateTimePicker */; - targetProxy = 4BCCFE9A86DAE3F3CEC1744819C4E9DF /* PBXContainerItemProxy */; + name = "React-Core"; + target = 7ACAA9BE580DD31A5CB9D97C45D9492D /* React-Core */; + targetProxy = 7F1B6504AAFCF4C247009A575FA103D4 /* PBXContainerItemProxy */; }; - F543884A4C89E82BC445B4F7CCED3D8D /* PBXTargetDependency */ = { + F7A9A868466F2E48C110D8BE757E60EC /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = EXAV; - target = 13D7009C3736FB694854D88BAD4742B6 /* EXAV */; - targetProxy = 60808F2C1A54DC82F301CC0A3FF586B1 /* PBXContainerItemProxy */; + name = "RCT-Folly"; + target = EC55D52694092A9D0E6A78EB01207EB5 /* RCT-Folly */; + targetProxy = 939409B886317E854BE18159DC4CC122 /* PBXContainerItemProxy */; }; - F5B5380FEFC538A14D5AF602B6617FB4 /* PBXTargetDependency */ = { + F85FE5C59AA8145CE557B882D34A7E5C /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = UMCore; - target = DBCB1B4965863DDD3B9DED9A0918A526 /* UMCore */; - targetProxy = D63640E6F7B586A079ACBE4EDC310B8E /* PBXContainerItemProxy */; + name = "React-Core"; + target = 7ACAA9BE580DD31A5CB9D97C45D9492D /* React-Core */; + targetProxy = 433D578614C1BC7FF77C18415B99FF4F /* PBXContainerItemProxy */; }; - F639A2830B5246E1270913827CC2F3B6 /* PBXTargetDependency */ = { + F8698BD6B199DCC09B24CFC7A4BC4EC9 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = "React-RCTAnimation"; - target = 938CCE22F6C4094B3FB6CF1478579E4B /* React-RCTAnimation */; - targetProxy = 2C15806F41D2B1604F20DC3E50E37F95 /* PBXContainerItemProxy */; + name = "React-Core"; + target = 7ACAA9BE580DD31A5CB9D97C45D9492D /* React-Core */; + targetProxy = 2926D3B25AF38EEE82FFDD59B5E44661 /* PBXContainerItemProxy */; }; - F6858B259E2865400C1993705F4C2D58 /* PBXTargetDependency */ = { + F889C4279B293D361C12C4154D3A7265 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = EXVideoThumbnails; - target = 4A95B7CD1D5F80C5E8CD9CDA00D41F70 /* EXVideoThumbnails */; - targetProxy = D7EB71649AC236CDEE8AE0035EA1740E /* PBXContainerItemProxy */; + name = ReactCommon; + target = B6D5DD49633DFF0657B8C3F08EB3ABA9 /* ReactCommon */; + targetProxy = 79A560F50834E7827F82FC5191ADA07A /* PBXContainerItemProxy */; }; - F6DF5C4F280A98925433989B7AEBEE75 /* PBXTargetDependency */ = { + F8D087F207884BD67D8419DBFC42DA60 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = "react-native-safe-area-context"; - target = BD9A27D8398DEB3205D3F8937B0672A0 /* react-native-safe-area-context */; - targetProxy = 882D825E0D1D36A4869EC297D36EF2F1 /* PBXContainerItemProxy */; + name = RNReanimated; + target = FF879E718031128A75E7DE54046E6219 /* RNReanimated */; + targetProxy = F35435CA65C44C3868CA3A0D84A76683 /* PBXContainerItemProxy */; }; - F70740EC13D52B3D116F1D5E7CD68D7D /* PBXTargetDependency */ = { + F90C2744134E46F5CAA410892F0C34E1 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = ReactCommon; - target = B6D5DD49633DFF0657B8C3F08EB3ABA9 /* ReactCommon */; - targetProxy = 2EB4FD46718A435E68A5BD824E6E865B /* PBXContainerItemProxy */; + name = "React-Core"; + target = 7ACAA9BE580DD31A5CB9D97C45D9492D /* React-Core */; + targetProxy = DF45A8F307D7DA49D97D138617DD9EF2 /* PBXContainerItemProxy */; }; - F738550C880734F61EB71E7C774CA452 /* PBXTargetDependency */ = { + F92F353F3830B74E3AFBA2FE485D1A12 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = RNCMaskedView; - target = 1A0445474DA11CA659C4BCC5AB64B1BF /* RNCMaskedView */; - targetProxy = 9B41D8431865F43DDE2E5604434308A7 /* PBXContainerItemProxy */; + name = "React-Core"; + target = 7ACAA9BE580DD31A5CB9D97C45D9492D /* React-Core */; + targetProxy = D3300691EFACFBD7225BE97912E85410 /* PBXContainerItemProxy */; }; - F783C0B452654905AB4B0EA92CADFB9A /* PBXTargetDependency */ = { + F9981FCC48DA34F4329486D0D5667958 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = RCTRequired; - target = E7E7CE52C8C68B17224FF8C262D80ABF /* RCTRequired */; - targetProxy = 45C8A9B694B6551F7D1F87A998D95B81 /* PBXContainerItemProxy */; + name = "react-native-notifications"; + target = CA400829100F0628EC209FBB08347D42 /* react-native-notifications */; + targetProxy = 8610A30FAEBF374057B156203EC97FEF /* PBXContainerItemProxy */; }; - F7E65922D5B01DBBEE6341C64B5CA0D4 /* PBXTargetDependency */ = { + F9F346B944A7C77092C8AC1F188AEF14 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = YogaKit; - target = 32CA4CBD6B28983076BD93DA221AD027 /* YogaKit */; - targetProxy = 8BDBD6F615C0C96355FA24B37EA8FAEE /* PBXContainerItemProxy */; + name = "React-RCTText"; + target = DBD2D83E10F8B7D3F4E0E34E6A9FCFA6 /* React-RCTText */; + targetProxy = 26D53641A18DD51A1CF3EC7F046055C1 /* PBXContainerItemProxy */; }; - F951FB0B0ADC207F6C474E9975820E68 /* PBXTargetDependency */ = { + FA3AC0C6AC938E248B5720E4487AF355 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = "React-RCTNetwork"; - target = 651511D7DA7F07F9FC9AA40A2E86270D /* React-RCTNetwork */; - targetProxy = 84137C7CBC8926F5AB9EF9B11A06045B /* PBXContainerItemProxy */; + name = "React-Core"; + target = 7ACAA9BE580DD31A5CB9D97C45D9492D /* React-Core */; + targetProxy = A9A6E5DAFCD2F18696192F9440AB39B9 /* PBXContainerItemProxy */; }; - FA14E07C57ECC7D7672F14CCDD7C72F6 /* PBXTargetDependency */ = { + FA870AABFE486773EB543609D3FA819A /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = RNCAsyncStorage; - target = 89F573A6B1292B3B2296B2206BFDC3D7 /* RNCAsyncStorage */; - targetProxy = 04540C82182E42016D89700452DA16A7 /* PBXContainerItemProxy */; + name = React; + target = 1BEE828C124E6416179B904A9F66D794 /* React */; + targetProxy = 9425823CF259CFDE02DF8218D4670C65 /* PBXContainerItemProxy */; }; - FADD56EBD99D4DFD542623085832DCA8 /* PBXTargetDependency */ = { + FADDE07B880F4540581D6BAA57312DA8 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = EXAV; - target = 13D7009C3736FB694854D88BAD4742B6 /* EXAV */; - targetProxy = C93D85F3414905708545B255E4E0269F /* PBXContainerItemProxy */; + name = RNCPicker; + target = D00F24222F074B31C56DC6D05E806A35 /* RNCPicker */; + targetProxy = 5F61BE46DC84985A668FB8E069C645E9 /* PBXContainerItemProxy */; }; - FB76D312E47F7F54570A83C53DDC6C93 /* PBXTargetDependency */ = { + FAEB7CCA75B6BFE7A91D752FD8FE608C /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = libwebp; - target = 47D2E85A78C25869BB13521D8561A638 /* libwebp */; - targetProxy = 2CC243C6DD6494C9EBA4B4C38327F003 /* PBXContainerItemProxy */; + name = UMPermissionsInterface; + target = F7845084F0CF03F54107EEF7411760AD /* UMPermissionsInterface */; + targetProxy = 3B75F470D0FFF08C08C9E850086DC84D /* PBXContainerItemProxy */; }; - FBF656F5939B5779D89B0BB70D497B16 /* PBXTargetDependency */ = { + FB053CD2AF6104DA3A1F286D1648F865 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = "React-jsinspector"; - target = F7D033C4C128EECAA020990641FA985F /* React-jsinspector */; - targetProxy = 2C14BAEA8A2DBB8886AB2BA21FD0B110 /* PBXContainerItemProxy */; + name = "React-callinvoker"; + target = 2681CB7EF647E61F4F9A43029C235607 /* React-callinvoker */; + targetProxy = AB7A16CAD4F6417BF1F3DEA767498553 /* PBXContainerItemProxy */; }; - FC5354EE17A31EAF2B6882494B07D22C /* PBXTargetDependency */ = { + FB166386FBE2E18725223AEDD435F0C8 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = "Flipper-RSocket"; - target = 1FAAE067C1BFDEA17DFB657C3379AB56 /* Flipper-RSocket */; - targetProxy = 7612F29B04AB588E203466104125D8B3 /* PBXContainerItemProxy */; + name = libevent; + target = 04A30E186743192DFB26B0FD7DB8F250 /* libevent */; + targetProxy = E0BF8D33F57F16539C03B24BF1C1EE57 /* PBXContainerItemProxy */; }; - FC6DD80EE67019A86FD9AC55BEBB8703 /* PBXTargetDependency */ = { + FB1C44282D2708A15234E7897CE04F9B /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = "boost-for-react-native"; - target = ED2506AE7DE35D654F61254441EA7155 /* boost-for-react-native */; - targetProxy = BAB31239E2661516B464768B335A7240 /* PBXContainerItemProxy */; + name = GoogleUtilities; + target = 8D7F5D5DD528D21A72DC87ADA5B12E2D /* GoogleUtilities */; + targetProxy = 79632E039B67D28FB6F2DD0B5046F663 /* PBXContainerItemProxy */; }; - FC8DDF4FF08E1267D2F322F0D0C63BEA /* PBXTargetDependency */ = { + FB24DC03EE11FAE7E8E95454B3FCEE9B /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = "React-jsinspector"; - target = F7D033C4C128EECAA020990641FA985F /* React-jsinspector */; - targetProxy = 5AD9824DA15B989D5D0F776237081BC4 /* PBXContainerItemProxy */; + name = "React-RCTText"; + target = DBD2D83E10F8B7D3F4E0E34E6A9FCFA6 /* React-RCTText */; + targetProxy = FD8A93006C8C8B3B7B15F384DEF52541 /* PBXContainerItemProxy */; }; - FE1B8308EA7E8F5CDF80BF1A55D79BEB /* PBXTargetDependency */ = { + FC0FB1EC6B447C8963AC8C3FA16DC922 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = "React-jsiexecutor"; - target = DA0709CAAD589C6E7963495210438021 /* React-jsiexecutor */; - targetProxy = F7572D23C0F2BDAC77932F1FA30AD796 /* PBXContainerItemProxy */; + name = UMTaskManagerInterface; + target = 50188AAB5FAECCA9583327DBA2B0AF2B /* UMTaskManagerInterface */; + targetProxy = F265BCAA4F8E2D52B91034D7DD644CA2 /* PBXContainerItemProxy */; }; - FE3A81D148616726B0E80E9327E07436 /* PBXTargetDependency */ = { + FC18A9C23C6C53E88C535B5B28DBDFC1 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = RNFBApp; - target = 90D0DE2F3348233618414728C35311CA /* RNFBApp */; - targetProxy = B49C6359E88570953C14F93523D93591 /* PBXContainerItemProxy */; + name = nanopb; + target = D2B5E7DCCBBFB32341D857D01211A1A3 /* nanopb */; + targetProxy = 44632846404574C18D50D9B01794FB36 /* PBXContainerItemProxy */; }; - FE63B51A148341C5FCC033BC5854D9D9 /* PBXTargetDependency */ = { + FD2314F92341141CFFD13EFA3DD35A4A /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = "React-RCTLinking"; - target = 6FE9147F8AAA4DE676C190F680F47AE2 /* React-RCTLinking */; - targetProxy = D2162390495214490D2AEA85DDC61A04 /* PBXContainerItemProxy */; + name = glog; + target = D0EFEFB685D97280256C559792236873 /* glog */; + targetProxy = 0C059AFC7B3ED7A16F34A112794B301E /* PBXContainerItemProxy */; }; - FE7EF0DE479454FA534C0FE6ED49EAFC /* PBXTargetDependency */ = { + FDB1E95F8175581EBA93438237D68DCE /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = FirebaseAnalytics; - target = C49E7A4D59E5C8BE8DE9FB1EFB150185 /* FirebaseAnalytics */; - targetProxy = 227E9E0B372044B581A4CE58ADA3D7D4 /* PBXContainerItemProxy */; + name = "OpenSSL-Universal"; + target = B9ED5194E665042005069EF06C82A050 /* OpenSSL-Universal */; + targetProxy = 0F1705A8CE0231509B2F75870BDC4494 /* PBXContainerItemProxy */; }; - FE932D735560D2FE9F140B5146491503 /* PBXTargetDependency */ = { + FDE9BCF1C534C5495EED20C5C04CFCB4 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = KeyCommands; - target = 7F591BD8674041AAAA4F37DC699B5518 /* KeyCommands */; - targetProxy = 5DD225A5BF429A260374E0F90D5F7E7A /* PBXContainerItemProxy */; + name = FBReactNativeSpec; + target = C3496D0495E700CF08A90C41EA8FA4BB /* FBReactNativeSpec */; + targetProxy = 1D8D45024853A5EF82DBC9B2D9A93D55 /* PBXContainerItemProxy */; }; - FEE98C4DFE5A8AC903082490D75C78F7 /* PBXTargetDependency */ = { + FDF5F7E076EF964E48871C783C2787D2 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = "react-native-document-picker"; - target = D11E74324175FE5B0E78DB046527F233 /* react-native-document-picker */; - targetProxy = CD7C59C4C4F94979D738F7960A28190F /* PBXContainerItemProxy */; + name = libwebp; + target = 47D2E85A78C25869BB13521D8561A638 /* libwebp */; + targetProxy = 038BEAD43BBE8BDFD603E92FA9091164 /* PBXContainerItemProxy */; }; - FEF38F106B68E68A555B05E2A6970C53 /* PBXTargetDependency */ = { + FECFD9D6353B665C7DB45EADE22C7087 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = ReactNativeUiLib; - target = 037A1F31C4D99F52EC9FD2008FEC481C /* ReactNativeUiLib */; - targetProxy = 946FEF3E173934FF7C426E9FEFD15D79 /* PBXContainerItemProxy */; + name = FirebaseAnalytics; + target = C49E7A4D59E5C8BE8DE9FB1EFB150185 /* FirebaseAnalytics */; + targetProxy = B4885EE86956EE75636CC8D9357FB309 /* PBXContainerItemProxy */; }; - FF54C724D5DAF823BE3974E3D7184E02 /* PBXTargetDependency */ = { + FEF7FD52615B1BE35DDB04F5DDECAFC7 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = UMCore; - target = DBCB1B4965863DDD3B9DED9A0918A526 /* UMCore */; - targetProxy = DC7DC0214F958FB54356271BB61E6DAF /* PBXContainerItemProxy */; + name = Yoga; + target = 2B25F90D819B9ADF2AF2D8733A890333 /* Yoga */; + targetProxy = 7BE4A916751EAB59C7CB8834CF686A26 /* PBXContainerItemProxy */; }; - FFE8A4ECA14FCD3CD5EB7EAC0B33AB4C /* PBXTargetDependency */ = { + FF49ECE010E96B12243F6EEC8C553C7A /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = "react-native-slider"; - target = A4EF87F5681665EAE943D9B06BBB17DF /* react-native-slider */; - targetProxy = 67D8B961DDE63B654E8D29EF8DD0EC06 /* PBXContainerItemProxy */; + name = ReactCommon; + target = B6D5DD49633DFF0657B8C3F08EB3ABA9 /* ReactCommon */; + targetProxy = 9967661FDE637DEF961EF21553579A33 /* PBXContainerItemProxy */; }; -/* End PBXTargetDependency section */ - -/* Begin XCBuildConfiguration section */ - 006FA452760FC313E71F8E3C3A60D4EE /* Release */ = { - isa = XCBuildConfiguration; - baseConfigurationReference = DF5E666704223D49885200E7A2BC8F94 /* UMCore.release.xcconfig */; - buildSettings = { - APPLICATION_EXTENSION_API_ONLY = NO; - ARCHS = "$(ARCHS_STANDARD_64_BIT)"; - CLANG_ENABLE_OBJC_WEAK = NO; - "CODE_SIGN_IDENTITY[sdk=appletvos*]" = ""; - "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = ""; - "CODE_SIGN_IDENTITY[sdk=watchos*]" = ""; - GCC_PREFIX_HEADER = "Target Support Files/UMCore/UMCore-prefix.pch"; - IPHONEOS_DEPLOYMENT_TARGET = 11.0; - OTHER_LDFLAGS = ""; - OTHER_LIBTOOLFLAGS = ""; - PRIVATE_HEADERS_FOLDER_PATH = ""; - PRODUCT_MODULE_NAME = UMCore; - PRODUCT_NAME = UMCore; - 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; + FF857FE3F2313C161CD368E20B78CEE6 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = "React-Core"; + target = 7ACAA9BE580DD31A5CB9D97C45D9492D /* React-Core */; + targetProxy = 8D045F09FBDE091ABDAB68425BDBF57D /* PBXContainerItemProxy */; }; - 0108C466213A842904DE4745A5461B23 /* Debug */ = { - isa = XCBuildConfiguration; - baseConfigurationReference = 95A1C64F658C55F9743F8E5CECFBC7CF /* EXAppleAuthentication.debug.xcconfig */; - buildSettings = { - APPLICATION_EXTENSION_API_ONLY = NO; - ARCHS = "$(ARCHS_STANDARD_64_BIT)"; - CLANG_ENABLE_OBJC_WEAK = NO; - "CODE_SIGN_IDENTITY[sdk=appletvos*]" = ""; - "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = ""; - "CODE_SIGN_IDENTITY[sdk=watchos*]" = ""; - GCC_PREFIX_HEADER = "Target Support Files/EXAppleAuthentication/EXAppleAuthentication-prefix.pch"; - IPHONEOS_DEPLOYMENT_TARGET = 11.0; - OTHER_LDFLAGS = ""; - OTHER_LIBTOOLFLAGS = ""; - PRIVATE_HEADERS_FOLDER_PATH = ""; - PRODUCT_MODULE_NAME = EXAppleAuthentication; - PRODUCT_NAME = EXAppleAuthentication; - 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; - }; - 01D14AB23FAA5F98813B68B15F47A97E /* Release */ = { - isa = XCBuildConfiguration; - baseConfigurationReference = 454A520F2F73FC2B2E8C35BC65566A9B /* RNLocalize.release.xcconfig */; - buildSettings = { - APPLICATION_EXTENSION_API_ONLY = NO; - 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/RNLocalize/RNLocalize-prefix.pch"; - IPHONEOS_DEPLOYMENT_TARGET = 11.0; - OTHER_LDFLAGS = ""; - OTHER_LIBTOOLFLAGS = ""; - PRIVATE_HEADERS_FOLDER_PATH = ""; - PRODUCT_MODULE_NAME = RNLocalize; - PRODUCT_NAME = RNLocalize; - 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; - }; - 0347D3E292B97FE46B9749A84BC11588 /* Release */ = { - isa = XCBuildConfiguration; - baseConfigurationReference = CAF267891123E2841781DC5673196785 /* react-native-webview.release.xcconfig */; - buildSettings = { - APPLICATION_EXTENSION_API_ONLY = NO; - 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; - }; - 048149BB3053D1441ECCDCA684C5DD8B /* Debug */ = { - isa = XCBuildConfiguration; - baseConfigurationReference = 0A467EA9EDF19944AF6E37B46B9583FC /* FirebaseInstallations.debug.xcconfig */; - buildSettings = { - APPLICATION_EXTENSION_API_ONLY = NO; - ARCHS = "$(ARCHS_STANDARD_64_BIT)"; - "CODE_SIGN_IDENTITY[sdk=appletvos*]" = ""; - "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = ""; - "CODE_SIGN_IDENTITY[sdk=watchos*]" = ""; - IPHONEOS_DEPLOYMENT_TARGET = 11.0; - OTHER_LDFLAGS = ""; - OTHER_LIBTOOLFLAGS = ""; - PRIVATE_HEADERS_FOLDER_PATH = ""; - PRODUCT_MODULE_NAME = FirebaseInstallations; - PRODUCT_NAME = FirebaseInstallations; - 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; - }; - 06E3FC3781AD0BB2F27B3E710583A37E /* Debug */ = { - isa = XCBuildConfiguration; - baseConfigurationReference = EBFF5BC3C4AEDDCB346F620E28EF4774 /* RCTRequired.debug.xcconfig */; - buildSettings = { - APPLICATION_EXTENSION_API_ONLY = NO; - ARCHS = "$(ARCHS_STANDARD_64_BIT)"; - ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon; - ASSETCATALOG_COMPILER_GLOBAL_ACCENT_COLOR_NAME = AccentColor; - CLANG_ENABLE_OBJC_WEAK = NO; - IPHONEOS_DEPLOYMENT_TARGET = 11.0; - LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks"; - SDKROOT = iphoneos; - TARGETED_DEVICE_FAMILY = "1,2"; - }; - name = Debug; - }; - 070E18AD68C8ABDB1AA39FE9D3270DB9 /* Debug */ = { - isa = XCBuildConfiguration; - baseConfigurationReference = 1A5D76D484B71B551E3699390AAF7DE1 /* BugsnagReactNative.debug.xcconfig */; - buildSettings = { - APPLICATION_EXTENSION_API_ONLY = NO; - 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/BugsnagReactNative/BugsnagReactNative-prefix.pch"; - IPHONEOS_DEPLOYMENT_TARGET = 11.0; - OTHER_LDFLAGS = ""; - OTHER_LIBTOOLFLAGS = ""; - PRIVATE_HEADERS_FOLDER_PATH = ""; - PRODUCT_MODULE_NAME = Bugsnag; - PRODUCT_NAME = BugsnagReactNative; - 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; - }; - 085EDE8532AF45E3B73429C47189A3E8 /* Release */ = { - isa = XCBuildConfiguration; - baseConfigurationReference = DC2B8A3D13C3025E4C71AC6D6C299FD7 /* RNReanimated.release.xcconfig */; - buildSettings = { - APPLICATION_EXTENSION_API_ONLY = NO; - 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/RNReanimated/RNReanimated-prefix.pch"; - IPHONEOS_DEPLOYMENT_TARGET = 11.0; - OTHER_LDFLAGS = ""; - OTHER_LIBTOOLFLAGS = ""; - PRIVATE_HEADERS_FOLDER_PATH = ""; - PRODUCT_MODULE_NAME = RNReanimated; - PRODUCT_NAME = RNReanimated; - 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; - }; - 08D71AEFCC86DB114EDF659B02FEBEA4 /* Debug */ = { - isa = XCBuildConfiguration; - baseConfigurationReference = 520842FBB570439D5E9C9C0F1D1828C5 /* OpenSSL-Universal.debug.xcconfig */; - buildSettings = { - APPLICATION_EXTENSION_API_ONLY = NO; - ARCHS = "$(ARCHS_STANDARD_64_BIT)"; - ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon; - ASSETCATALOG_COMPILER_GLOBAL_ACCENT_COLOR_NAME = AccentColor; - IPHONEOS_DEPLOYMENT_TARGET = 11.0; - LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks"; - SDKROOT = iphoneos; - TARGETED_DEVICE_FAMILY = "1,2"; - }; - name = Debug; - }; - 08E2461374E02C28A465B15A10DD303E /* Debug */ = { - isa = XCBuildConfiguration; - baseConfigurationReference = DEE3203D0A7AFEFAD6E8D45299F7C77B /* MMKV.debug.xcconfig */; - buildSettings = { - APPLICATION_EXTENSION_API_ONLY = NO; - 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/MMKV/MMKV-prefix.pch"; - IPHONEOS_DEPLOYMENT_TARGET = 11.0; - OTHER_LDFLAGS = ""; - OTHER_LIBTOOLFLAGS = ""; - PRIVATE_HEADERS_FOLDER_PATH = ""; - PRODUCT_MODULE_NAME = MMKV; - PRODUCT_NAME = MMKV; - 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; - }; - 0A5303CCE9C92B75A6D222F8EAE95096 /* Release */ = { - isa = XCBuildConfiguration; - baseConfigurationReference = 29A522F564C45BAC1C908C4FA821DD3F /* Pods-ShareRocketChatRN.release.xcconfig */; - buildSettings = { - ALWAYS_EMBED_SWIFT_STANDARD_LIBRARIES = NO; - APPLICATION_EXTENSION_API_ONLY = NO; - ARCHS = "$(ARCHS_STANDARD_64_BIT)"; - CLANG_ENABLE_OBJC_WEAK = NO; - "CODE_SIGN_IDENTITY[sdk=appletvos*]" = ""; - "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = ""; - "CODE_SIGN_IDENTITY[sdk=watchos*]" = ""; - IPHONEOS_DEPLOYMENT_TARGET = 11.0; - MACH_O_TYPE = staticlib; - MODULEMAP_FILE = "Target Support Files/Pods-ShareRocketChatRN/Pods-ShareRocketChatRN.modulemap"; - OTHER_LDFLAGS = ""; - OTHER_LIBTOOLFLAGS = ""; - PODS_ROOT = "$(SRCROOT)"; - PRODUCT_BUNDLE_IDENTIFIER = "org.cocoapods.${PRODUCT_NAME:rfc1034identifier}"; - SDKROOT = iphoneos; - SKIP_INSTALL = YES; - TARGETED_DEVICE_FAMILY = "1,2"; - VALIDATE_PRODUCT = YES; - }; - name = Release; - }; - 0AD8D67C1E55D2D5407E0C92B2157A74 /* Release */ = { - isa = XCBuildConfiguration; - baseConfigurationReference = 3D3089FB9A74DB9C995A4671B1944823 /* OpenSSL-Universal.release.xcconfig */; - buildSettings = { - APPLICATION_EXTENSION_API_ONLY = NO; - ARCHS = "$(ARCHS_STANDARD_64_BIT)"; - ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon; - ASSETCATALOG_COMPILER_GLOBAL_ACCENT_COLOR_NAME = AccentColor; - IPHONEOS_DEPLOYMENT_TARGET = 11.0; - LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks"; - SDKROOT = iphoneos; - TARGETED_DEVICE_FAMILY = "1,2"; - VALIDATE_PRODUCT = YES; - }; - name = Release; - }; - 0B42755D4DB1F814A30755F6846F9FFB /* Release */ = { - isa = XCBuildConfiguration; - baseConfigurationReference = 121B1E4C86111FD774FABC537B3F82D9 /* ReactNativeART.release.xcconfig */; - buildSettings = { - APPLICATION_EXTENSION_API_ONLY = NO; - 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/ReactNativeART/ReactNativeART-prefix.pch"; - IPHONEOS_DEPLOYMENT_TARGET = 11.0; - OTHER_LDFLAGS = ""; - OTHER_LIBTOOLFLAGS = ""; - PRIVATE_HEADERS_FOLDER_PATH = ""; - PRODUCT_MODULE_NAME = ReactNativeART; - PRODUCT_NAME = ReactNativeART; - 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; - }; - 0B968FA00CC1DA576D4DAF254683D949 /* Debug */ = { - isa = XCBuildConfiguration; - baseConfigurationReference = 537D942E7F8CDD34D9798800DFD7B3E1 /* React-perflogger.debug.xcconfig */; - buildSettings = { - APPLICATION_EXTENSION_API_ONLY = NO; - ARCHS = "$(ARCHS_STANDARD_64_BIT)"; - CLANG_ENABLE_OBJC_WEAK = NO; - "CODE_SIGN_IDENTITY[sdk=appletvos*]" = ""; - "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = ""; - "CODE_SIGN_IDENTITY[sdk=watchos*]" = ""; - GCC_PREFIX_HEADER = "Target Support Files/React-perflogger/React-perflogger-prefix.pch"; - IPHONEOS_DEPLOYMENT_TARGET = 11.0; - OTHER_LDFLAGS = ""; - OTHER_LIBTOOLFLAGS = ""; - PRIVATE_HEADERS_FOLDER_PATH = ""; - PRODUCT_MODULE_NAME = reactperflogger; - PRODUCT_NAME = "React-perflogger"; - 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; - }; - 0BA14761DA8A69162BF3989FB0094D75 /* Release */ = { - isa = XCBuildConfiguration; - baseConfigurationReference = 97E794BA33DA6947E9A38E96DC57959A /* UMImageLoaderInterface.release.xcconfig */; - buildSettings = { - APPLICATION_EXTENSION_API_ONLY = NO; - ARCHS = "$(ARCHS_STANDARD_64_BIT)"; - ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon; - ASSETCATALOG_COMPILER_GLOBAL_ACCENT_COLOR_NAME = AccentColor; - CLANG_ENABLE_OBJC_WEAK = NO; - IPHONEOS_DEPLOYMENT_TARGET = 11.0; - LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks"; - SDKROOT = iphoneos; - TARGETED_DEVICE_FAMILY = "1,2"; - VALIDATE_PRODUCT = YES; - }; - name = Release; - }; - 11ECF29815B46C1489441995945FCB8B /* Debug */ = { - isa = XCBuildConfiguration; - baseConfigurationReference = CC72D21238CDBFB46D8CFCC77CCABD69 /* TOCropViewController.debug.xcconfig */; - buildSettings = { - APPLICATION_EXTENSION_API_ONLY = NO; - 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/TOCropViewController/TOCropViewController-prefix.pch"; - IPHONEOS_DEPLOYMENT_TARGET = 11.0; - OTHER_LDFLAGS = ""; - OTHER_LIBTOOLFLAGS = ""; - PRIVATE_HEADERS_FOLDER_PATH = ""; - PRODUCT_MODULE_NAME = TOCropViewController; - PRODUCT_NAME = TOCropViewController; - 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; + FF93D12B1783DCF1562C0D69B42A4827 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = React; + target = 1BEE828C124E6416179B904A9F66D794 /* React */; + targetProxy = 54612D82822F52025B69EA5BEF101FC8 /* PBXContainerItemProxy */; }; - 1210FFEF8F686D43D45CF58066955852 /* Debug */ = { - isa = XCBuildConfiguration; - baseConfigurationReference = 33BC57FD8C3AF3FCF4BE94CC00476321 /* UMConstantsInterface.debug.xcconfig */; - buildSettings = { - APPLICATION_EXTENSION_API_ONLY = NO; - ARCHS = "$(ARCHS_STANDARD_64_BIT)"; - ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon; - ASSETCATALOG_COMPILER_GLOBAL_ACCENT_COLOR_NAME = AccentColor; - CLANG_ENABLE_OBJC_WEAK = NO; - IPHONEOS_DEPLOYMENT_TARGET = 11.0; - LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks"; - SDKROOT = iphoneos; - TARGETED_DEVICE_FAMILY = "1,2"; - }; - name = Debug; + FFA6C1C6772D6F269CBC6FFF92075594 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = JitsiMeetSDK; + target = 5B40FBDAD0AB75D17C4760F4054BFF71 /* JitsiMeetSDK */; + targetProxy = 552733F8DA1857B07B790C9CFC70C7AA /* PBXContainerItemProxy */; }; - 125D363900A81EC1CFE173B625BC9A2A /* Release */ = { +/* End PBXTargetDependency section */ + +/* Begin XCBuildConfiguration section */ + 0108C466213A842904DE4745A5461B23 /* Debug */ = { isa = XCBuildConfiguration; - baseConfigurationReference = D18A2940596CFCC7B0DD063E40A88D66 /* UMPermissionsInterface.release.xcconfig */; + baseConfigurationReference = BAFD2F4F1D254E646C2A611BAC1E1554 /* EXAppleAuthentication.debug.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; ARCHS = "$(ARCHS_STANDARD_64_BIT)"; @@ -35889,39 +35329,38 @@ "CODE_SIGN_IDENTITY[sdk=appletvos*]" = ""; "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = ""; "CODE_SIGN_IDENTITY[sdk=watchos*]" = ""; - GCC_PREFIX_HEADER = "Target Support Files/UMPermissionsInterface/UMPermissionsInterface-prefix.pch"; + GCC_PREFIX_HEADER = "Target Support Files/EXAppleAuthentication/EXAppleAuthentication-prefix.pch"; IPHONEOS_DEPLOYMENT_TARGET = 11.0; OTHER_LDFLAGS = ""; OTHER_LIBTOOLFLAGS = ""; PRIVATE_HEADERS_FOLDER_PATH = ""; - PRODUCT_MODULE_NAME = UMPermissionsInterface; - PRODUCT_NAME = UMPermissionsInterface; + PRODUCT_MODULE_NAME = EXAppleAuthentication; + PRODUCT_NAME = EXAppleAuthentication; 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; + name = Debug; }; - 135C691B9CBC76093532F63552917B4B /* Release */ = { + 01D14AB23FAA5F98813B68B15F47A97E /* Release */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 0559FF4F31D9F39593DA553690AC4BBF /* react-native-orientation-locker.release.xcconfig */; + baseConfigurationReference = 3EE147C11A0E50351D1A5884CE21846E /* RNLocalize.release.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; 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-orientation-locker/react-native-orientation-locker-prefix.pch"; + GCC_PREFIX_HEADER = "Target Support Files/RNLocalize/RNLocalize-prefix.pch"; IPHONEOS_DEPLOYMENT_TARGET = 11.0; OTHER_LDFLAGS = ""; OTHER_LIBTOOLFLAGS = ""; PRIVATE_HEADERS_FOLDER_PATH = ""; - PRODUCT_MODULE_NAME = react_native_orientation_locker; - PRODUCT_NAME = "react-native-orientation-locker"; + PRODUCT_MODULE_NAME = RNLocalize; + PRODUCT_NAME = RNLocalize; PUBLIC_HEADERS_FOLDER_PATH = ""; SDKROOT = iphoneos; SKIP_INSTALL = YES; @@ -35932,24 +35371,22 @@ }; name = Release; }; - 13AF8ADD9852CBD310EEB9B681023455 /* Release */ = { + 0347D3E292B97FE46B9749A84BC11588 /* Release */ = { isa = XCBuildConfiguration; - baseConfigurationReference = E46F50A7B06925F63C961B555F8D2501 /* Yoga.release.xcconfig */; + baseConfigurationReference = A3D9FFEE9CDAC88F236831ED1C8F83C1 /* react-native-webview.release.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; ARCHS = "$(ARCHS_STANDARD_64_BIT)"; - CLANG_ENABLE_OBJC_WEAK = NO; "CODE_SIGN_IDENTITY[sdk=appletvos*]" = ""; "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = ""; "CODE_SIGN_IDENTITY[sdk=watchos*]" = ""; - GCC_PREFIX_HEADER = "Target Support Files/Yoga/Yoga-prefix.pch"; + GCC_PREFIX_HEADER = "Target Support Files/react-native-webview/react-native-webview-prefix.pch"; IPHONEOS_DEPLOYMENT_TARGET = 11.0; - MODULEMAP_FILE = Headers/Public/yoga/Yoga.modulemap; OTHER_LDFLAGS = ""; OTHER_LIBTOOLFLAGS = ""; PRIVATE_HEADERS_FOLDER_PATH = ""; - PRODUCT_MODULE_NAME = yoga; - PRODUCT_NAME = Yoga; + PRODUCT_MODULE_NAME = react_native_webview; + PRODUCT_NAME = "react-native-webview"; PUBLIC_HEADERS_FOLDER_PATH = ""; SDKROOT = iphoneos; SKIP_INSTALL = YES; @@ -35960,47 +35397,23 @@ }; name = Release; }; - 13DFCE7755ED25EAF6B9361684EF9492 /* Debug */ = { - isa = XCBuildConfiguration; - baseConfigurationReference = E9521D4F883C544DE47CDF5C2FDF5C87 /* libwebp.debug.xcconfig */; - buildSettings = { - APPLICATION_EXTENSION_API_ONLY = NO; - 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/libwebp/libwebp-prefix.pch"; - IPHONEOS_DEPLOYMENT_TARGET = 11.0; - OTHER_LDFLAGS = ""; - OTHER_LIBTOOLFLAGS = ""; - PRIVATE_HEADERS_FOLDER_PATH = ""; - PRODUCT_MODULE_NAME = libwebp; - PRODUCT_NAME = libwebp; - 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; - }; - 16AA0154D3837FC4C44F6909CAF079E4 /* Release */ = { + 0428A5AF7970952939687C1B97651930 /* Release */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 33C451B5E70DB04A4D69D8018EFC491A /* RNImageCropPicker.release.xcconfig */; + baseConfigurationReference = BA451C7A7BAB81792094596D55EC16C2 /* Flipper-RSocket.release.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; ARCHS = "$(ARCHS_STANDARD_64_BIT)"; + CLANG_ENABLE_OBJC_WEAK = NO; "CODE_SIGN_IDENTITY[sdk=appletvos*]" = ""; "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = ""; "CODE_SIGN_IDENTITY[sdk=watchos*]" = ""; - GCC_PREFIX_HEADER = "Target Support Files/RNImageCropPicker/RNImageCropPicker-prefix.pch"; + GCC_PREFIX_HEADER = "Target Support Files/Flipper-RSocket/Flipper-RSocket-prefix.pch"; IPHONEOS_DEPLOYMENT_TARGET = 11.0; OTHER_LDFLAGS = ""; OTHER_LIBTOOLFLAGS = ""; PRIVATE_HEADERS_FOLDER_PATH = ""; - PRODUCT_MODULE_NAME = RNImageCropPicker; - PRODUCT_NAME = RNImageCropPicker; + PRODUCT_MODULE_NAME = RSocket; + PRODUCT_NAME = "Flipper-RSocket"; PUBLIC_HEADERS_FOLDER_PATH = ""; SDKROOT = iphoneos; SKIP_INSTALL = YES; @@ -36011,21 +35424,22 @@ }; name = Release; }; - 16C617D6AB3D7FB21E9B83A81E3E80BD /* Debug */ = { + 070E18AD68C8ABDB1AA39FE9D3270DB9 /* Debug */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 6ABC70D8E3CD1011B90A77C789F11198 /* GoogleUtilities.debug.xcconfig */; + baseConfigurationReference = 01570026119213B57D22D400450D94ED /* BugsnagReactNative.debug.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; 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/BugsnagReactNative/BugsnagReactNative-prefix.pch"; IPHONEOS_DEPLOYMENT_TARGET = 11.0; OTHER_LDFLAGS = ""; OTHER_LIBTOOLFLAGS = ""; PRIVATE_HEADERS_FOLDER_PATH = ""; - PRODUCT_MODULE_NAME = GoogleUtilities; - PRODUCT_NAME = GoogleUtilities; + PRODUCT_MODULE_NAME = Bugsnag; + PRODUCT_NAME = BugsnagReactNative; PUBLIC_HEADERS_FOLDER_PATH = ""; SDKROOT = iphoneos; SKIP_INSTALL = YES; @@ -36035,23 +35449,22 @@ }; name = Debug; }; - 175A21B880B3914B871F41C5ADD7970A /* Release */ = { + 085EDE8532AF45E3B73429C47189A3E8 /* Release */ = { isa = XCBuildConfiguration; - baseConfigurationReference = B9ADA132BEE432456C1FEB59C840BF3D /* React-jsinspector.release.xcconfig */; + baseConfigurationReference = A0FA0B3D20272164B9C92EA04B85AECD /* RNReanimated.release.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; ARCHS = "$(ARCHS_STANDARD_64_BIT)"; - CLANG_ENABLE_OBJC_WEAK = NO; "CODE_SIGN_IDENTITY[sdk=appletvos*]" = ""; "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = ""; "CODE_SIGN_IDENTITY[sdk=watchos*]" = ""; - GCC_PREFIX_HEADER = "Target Support Files/React-jsinspector/React-jsinspector-prefix.pch"; + GCC_PREFIX_HEADER = "Target Support Files/RNReanimated/RNReanimated-prefix.pch"; IPHONEOS_DEPLOYMENT_TARGET = 11.0; OTHER_LDFLAGS = ""; OTHER_LIBTOOLFLAGS = ""; PRIVATE_HEADERS_FOLDER_PATH = ""; - PRODUCT_MODULE_NAME = jsinspector; - PRODUCT_NAME = "React-jsinspector"; + PRODUCT_MODULE_NAME = RNReanimated; + PRODUCT_NAME = RNReanimated; PUBLIC_HEADERS_FOLDER_PATH = ""; SDKROOT = iphoneos; SKIP_INSTALL = YES; @@ -36062,48 +35475,22 @@ }; name = Release; }; - 18455F94807839346D486C6F99F75DD5 /* Debug */ = { - isa = XCBuildConfiguration; - baseConfigurationReference = C2716E1FCC4CC046E067D51DA07E0760 /* libevent.debug.xcconfig */; - buildSettings = { - APPLICATION_EXTENSION_API_ONLY = NO; - ARCHS = "$(ARCHS_STANDARD_64_BIT)"; - CLANG_ENABLE_OBJC_WEAK = NO; - "CODE_SIGN_IDENTITY[sdk=appletvos*]" = ""; - "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = ""; - "CODE_SIGN_IDENTITY[sdk=watchos*]" = ""; - GCC_PREFIX_HEADER = "Target Support Files/libevent/libevent-prefix.pch"; - IPHONEOS_DEPLOYMENT_TARGET = 11.0; - OTHER_LDFLAGS = ""; - OTHER_LIBTOOLFLAGS = ""; - PRIVATE_HEADERS_FOLDER_PATH = ""; - PRODUCT_MODULE_NAME = libevent; - PRODUCT_NAME = libevent; - 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; - }; - 1A2D2B8780D72D2E7930B048F99C7AEF /* Debug */ = { + 08E2461374E02C28A465B15A10DD303E /* Debug */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 8AA2A7AA72B24124B829115293D735E6 /* react-native-restart.debug.xcconfig */; + baseConfigurationReference = 27EAFBA829581BA87FEDE9EB9EB90DE7 /* MMKV.debug.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; 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-restart/react-native-restart-prefix.pch"; + GCC_PREFIX_HEADER = "Target Support Files/MMKV/MMKV-prefix.pch"; IPHONEOS_DEPLOYMENT_TARGET = 11.0; OTHER_LDFLAGS = ""; OTHER_LIBTOOLFLAGS = ""; PRIVATE_HEADERS_FOLDER_PATH = ""; - PRODUCT_MODULE_NAME = react_native_restart; - PRODUCT_NAME = "react-native-restart"; + PRODUCT_MODULE_NAME = MMKV; + PRODUCT_NAME = MMKV; PUBLIC_HEADERS_FOLDER_PATH = ""; SDKROOT = iphoneos; SKIP_INSTALL = YES; @@ -36113,39 +35500,22 @@ }; name = Debug; }; - 1A8AC6BD524C6BC798924603B66A8044 /* Debug */ = { - isa = XCBuildConfiguration; - baseConfigurationReference = 77807DD48D1773606AF513C2B92338F5 /* UMFaceDetectorInterface.debug.xcconfig */; - buildSettings = { - APPLICATION_EXTENSION_API_ONLY = NO; - ARCHS = "$(ARCHS_STANDARD_64_BIT)"; - ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon; - ASSETCATALOG_COMPILER_GLOBAL_ACCENT_COLOR_NAME = AccentColor; - CLANG_ENABLE_OBJC_WEAK = NO; - IPHONEOS_DEPLOYMENT_TARGET = 11.0; - LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks"; - SDKROOT = iphoneos; - TARGETED_DEVICE_FAMILY = "1,2"; - }; - name = Debug; - }; - 1ABE1D128B3F0307F9D20E20083FABAA /* Release */ = { + 08EED2267D733414EF7544368FAC4327 /* Release */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 56C209F75E540ED4D8203CDE11F2E1B8 /* EXWebBrowser.release.xcconfig */; + baseConfigurationReference = 69F03FFB9ED60B8728AA86A6DA93A514 /* RNFBAnalytics.release.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; ARCHS = "$(ARCHS_STANDARD_64_BIT)"; - CLANG_ENABLE_OBJC_WEAK = NO; "CODE_SIGN_IDENTITY[sdk=appletvos*]" = ""; "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = ""; "CODE_SIGN_IDENTITY[sdk=watchos*]" = ""; - GCC_PREFIX_HEADER = "Target Support Files/EXWebBrowser/EXWebBrowser-prefix.pch"; + GCC_PREFIX_HEADER = "Target Support Files/RNFBAnalytics/RNFBAnalytics-prefix.pch"; IPHONEOS_DEPLOYMENT_TARGET = 11.0; OTHER_LDFLAGS = ""; OTHER_LIBTOOLFLAGS = ""; PRIVATE_HEADERS_FOLDER_PATH = ""; - PRODUCT_MODULE_NAME = EXWebBrowser; - PRODUCT_NAME = EXWebBrowser; + PRODUCT_MODULE_NAME = RNFBAnalytics; + PRODUCT_NAME = RNFBAnalytics; PUBLIC_HEADERS_FOLDER_PATH = ""; SDKROOT = iphoneos; SKIP_INSTALL = YES; @@ -36156,72 +35526,22 @@ }; name = Release; }; - 1AC857E63B0E250410829AE6FE65025A /* Debug */ = { - isa = XCBuildConfiguration; - baseConfigurationReference = EEA4CC9B97D8B1DF863F7448D02747DE /* Pods-ShareRocketChatRN.debug.xcconfig */; - buildSettings = { - ALWAYS_EMBED_SWIFT_STANDARD_LIBRARIES = NO; - APPLICATION_EXTENSION_API_ONLY = NO; - ARCHS = "$(ARCHS_STANDARD_64_BIT)"; - CLANG_ENABLE_OBJC_WEAK = NO; - "CODE_SIGN_IDENTITY[sdk=appletvos*]" = ""; - "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = ""; - "CODE_SIGN_IDENTITY[sdk=watchos*]" = ""; - IPHONEOS_DEPLOYMENT_TARGET = 11.0; - MACH_O_TYPE = staticlib; - MODULEMAP_FILE = "Target Support Files/Pods-ShareRocketChatRN/Pods-ShareRocketChatRN.modulemap"; - OTHER_LDFLAGS = ""; - OTHER_LIBTOOLFLAGS = ""; - PODS_ROOT = "$(SRCROOT)"; - PRODUCT_BUNDLE_IDENTIFIER = "org.cocoapods.${PRODUCT_NAME:rfc1034identifier}"; - SDKROOT = iphoneos; - SKIP_INSTALL = YES; - TARGETED_DEVICE_FAMILY = "1,2"; - }; - name = Debug; - }; - 1CFE88A76538D02382248941B2C0067F /* Debug */ = { - isa = XCBuildConfiguration; - baseConfigurationReference = B3F477DAC2CCDDEF7E1FA593B313DA60 /* UMAppLoader.debug.xcconfig */; - buildSettings = { - APPLICATION_EXTENSION_API_ONLY = NO; - ARCHS = "$(ARCHS_STANDARD_64_BIT)"; - CLANG_ENABLE_OBJC_WEAK = NO; - "CODE_SIGN_IDENTITY[sdk=appletvos*]" = ""; - "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = ""; - "CODE_SIGN_IDENTITY[sdk=watchos*]" = ""; - GCC_PREFIX_HEADER = "Target Support Files/UMAppLoader/UMAppLoader-prefix.pch"; - IPHONEOS_DEPLOYMENT_TARGET = 11.0; - OTHER_LDFLAGS = ""; - OTHER_LIBTOOLFLAGS = ""; - PRIVATE_HEADERS_FOLDER_PATH = ""; - PRODUCT_MODULE_NAME = UMAppLoader; - PRODUCT_NAME = UMAppLoader; - 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; - }; - 1D8009FE5FE9224B8E68B737FA84EDBD /* Debug */ = { + 09D0B2F1EE996412189232147E8B4792 /* Debug */ = { isa = XCBuildConfiguration; - baseConfigurationReference = ACC0F4349D58D335B27F1282C6714108 /* CocoaAsyncSocket.debug.xcconfig */; + baseConfigurationReference = 55230E1B418258A029FDE8B6BE0AC394 /* RNFBCrashlytics.debug.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; 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/CocoaAsyncSocket/CocoaAsyncSocket-prefix.pch"; + GCC_PREFIX_HEADER = "Target Support Files/RNFBCrashlytics/RNFBCrashlytics-prefix.pch"; IPHONEOS_DEPLOYMENT_TARGET = 11.0; OTHER_LDFLAGS = ""; OTHER_LIBTOOLFLAGS = ""; PRIVATE_HEADERS_FOLDER_PATH = ""; - PRODUCT_MODULE_NAME = CocoaAsyncSocket; - PRODUCT_NAME = CocoaAsyncSocket; + PRODUCT_MODULE_NAME = RNFBCrashlytics; + PRODUCT_NAME = RNFBCrashlytics; PUBLIC_HEADERS_FOLDER_PATH = ""; SDKROOT = iphoneos; SKIP_INSTALL = YES; @@ -36231,22 +35551,22 @@ }; name = Debug; }; - 1F0B8F748E208E6325E7B6C2065E3587 /* Release */ = { + 0B42755D4DB1F814A30755F6846F9FFB /* Release */ = { isa = XCBuildConfiguration; - baseConfigurationReference = FFA8920602E194F719FDBCD36097B350 /* TOCropViewController.release.xcconfig */; + baseConfigurationReference = D90A7FB3CD7B561322A29DE92F22B920 /* ReactNativeART.release.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; 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/TOCropViewController/TOCropViewController-prefix.pch"; + GCC_PREFIX_HEADER = "Target Support Files/ReactNativeART/ReactNativeART-prefix.pch"; IPHONEOS_DEPLOYMENT_TARGET = 11.0; OTHER_LDFLAGS = ""; OTHER_LIBTOOLFLAGS = ""; PRIVATE_HEADERS_FOLDER_PATH = ""; - PRODUCT_MODULE_NAME = TOCropViewController; - PRODUCT_NAME = TOCropViewController; + PRODUCT_MODULE_NAME = ReactNativeART; + PRODUCT_NAME = ReactNativeART; PUBLIC_HEADERS_FOLDER_PATH = ""; SDKROOT = iphoneos; SKIP_INSTALL = YES; @@ -36257,35 +35577,36 @@ }; name = Release; }; - 1F90A2C5A78F00D900E1DCA48FD307B6 /* Release */ = { + 10CAB50ABA22EEAB884A14046EDC0321 /* Debug */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 939D19E9FA261043EA8E6CF511D9E404 /* RNCMaskedView.release.xcconfig */; + baseConfigurationReference = 82D2D03980550B0636B74BD263D0EDFD /* Yoga.debug.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; ARCHS = "$(ARCHS_STANDARD_64_BIT)"; + CLANG_ENABLE_OBJC_WEAK = NO; "CODE_SIGN_IDENTITY[sdk=appletvos*]" = ""; "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = ""; "CODE_SIGN_IDENTITY[sdk=watchos*]" = ""; - GCC_PREFIX_HEADER = "Target Support Files/RNCMaskedView/RNCMaskedView-prefix.pch"; + GCC_PREFIX_HEADER = "Target Support Files/Yoga/Yoga-prefix.pch"; IPHONEOS_DEPLOYMENT_TARGET = 11.0; + MODULEMAP_FILE = Headers/Public/yoga/Yoga.modulemap; OTHER_LDFLAGS = ""; OTHER_LIBTOOLFLAGS = ""; PRIVATE_HEADERS_FOLDER_PATH = ""; - PRODUCT_MODULE_NAME = RNCMaskedView; - PRODUCT_NAME = RNCMaskedView; + PRODUCT_MODULE_NAME = yoga; + PRODUCT_NAME = Yoga; 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; + name = Debug; }; - 2149583740EF0935BD6424BC48DCF992 /* Release */ = { + 118C6003CCD0F8B80919C547E65A55BC /* Release */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 306E981283C96604480F569449C71241 /* React-Core.release.xcconfig */; + baseConfigurationReference = D734C3BFED52867A5EF766D67D2FE2CD /* React-cxxreact.release.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; ARCHS = "$(ARCHS_STANDARD_64_BIT)"; @@ -36293,14 +35614,13 @@ "CODE_SIGN_IDENTITY[sdk=appletvos*]" = ""; "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = ""; "CODE_SIGN_IDENTITY[sdk=watchos*]" = ""; - GCC_PREFIX_HEADER = "Target Support Files/React-Core/React-Core-prefix.pch"; + GCC_PREFIX_HEADER = "Target Support Files/React-cxxreact/React-cxxreact-prefix.pch"; IPHONEOS_DEPLOYMENT_TARGET = 11.0; - MODULEMAP_FILE = "Headers/Public/React/React-Core.modulemap"; OTHER_LDFLAGS = ""; OTHER_LIBTOOLFLAGS = ""; PRIVATE_HEADERS_FOLDER_PATH = ""; - PRODUCT_MODULE_NAME = React; - PRODUCT_NAME = "React-Core"; + PRODUCT_MODULE_NAME = cxxreact; + PRODUCT_NAME = "React-cxxreact"; PUBLIC_HEADERS_FOLDER_PATH = ""; SDKROOT = iphoneos; SKIP_INSTALL = YES; @@ -36311,65 +35631,48 @@ }; name = Release; }; - 22484930B6D46E07F261091E83A95EEE /* Debug */ = { + 135C691B9CBC76093532F63552917B4B /* Release */ = { isa = XCBuildConfiguration; - baseConfigurationReference = BDE5F0AC59BC5BAB36BA4C7B8245D641 /* rn-extensions-share.debug.xcconfig */; + baseConfigurationReference = 04D284FE3432B8715AC627BF4DEBCE70 /* react-native-orientation-locker.release.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; 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/rn-extensions-share/rn-extensions-share-prefix.pch"; + GCC_PREFIX_HEADER = "Target Support Files/react-native-orientation-locker/react-native-orientation-locker-prefix.pch"; IPHONEOS_DEPLOYMENT_TARGET = 11.0; OTHER_LDFLAGS = ""; OTHER_LIBTOOLFLAGS = ""; PRIVATE_HEADERS_FOLDER_PATH = ""; - PRODUCT_MODULE_NAME = rn_extensions_share; - PRODUCT_NAME = "rn-extensions-share"; + PRODUCT_MODULE_NAME = react_native_orientation_locker; + PRODUCT_NAME = "react-native-orientation-locker"; 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; - }; - 22A12E3F2FF9A7F5DCFACE3E8F47FEE1 /* Release */ = { - isa = XCBuildConfiguration; - baseConfigurationReference = 306E981283C96604480F569449C71241 /* React-Core.release.xcconfig */; - buildSettings = { - APPLICATION_EXTENSION_API_ONLY = NO; - CONFIGURATION_BUILD_DIR = "$(BUILD_DIR)/$(CONFIGURATION)$(EFFECTIVE_PLATFORM_NAME)/React-Core"; - IBSC_MODULE = React; - INFOPLIST_FILE = "Target Support Files/React-Core/ResourceBundle-AccessibilityResources-React-Core-Info.plist"; - IPHONEOS_DEPLOYMENT_TARGET = 11.0; - PRODUCT_NAME = AccessibilityResources; - SDKROOT = iphoneos; - SKIP_INSTALL = YES; - TARGETED_DEVICE_FAMILY = "1,2"; - WRAPPER_EXTENSION = bundle; + VALIDATE_PRODUCT = YES; }; name = Release; }; - 22CE9B61A984752DBD351C8013B1564E /* Release */ = { + 16AA0154D3837FC4C44F6909CAF079E4 /* Release */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 0E24F4B867825B723C02E2C2EDF698D8 /* React-jsiexecutor.release.xcconfig */; + baseConfigurationReference = 25AF37C756E35E2CD04A51728B71893D /* RNImageCropPicker.release.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; ARCHS = "$(ARCHS_STANDARD_64_BIT)"; - CLANG_ENABLE_OBJC_WEAK = NO; "CODE_SIGN_IDENTITY[sdk=appletvos*]" = ""; "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = ""; "CODE_SIGN_IDENTITY[sdk=watchos*]" = ""; - GCC_PREFIX_HEADER = "Target Support Files/React-jsiexecutor/React-jsiexecutor-prefix.pch"; + GCC_PREFIX_HEADER = "Target Support Files/RNImageCropPicker/RNImageCropPicker-prefix.pch"; IPHONEOS_DEPLOYMENT_TARGET = 11.0; OTHER_LDFLAGS = ""; OTHER_LIBTOOLFLAGS = ""; PRIVATE_HEADERS_FOLDER_PATH = ""; - PRODUCT_MODULE_NAME = jsireact; - PRODUCT_NAME = "React-jsiexecutor"; + PRODUCT_MODULE_NAME = RNImageCropPicker; + PRODUCT_NAME = RNImageCropPicker; PUBLIC_HEADERS_FOLDER_PATH = ""; SDKROOT = iphoneos; SKIP_INSTALL = YES; @@ -36380,22 +35683,38 @@ }; name = Release; }; - 2496DFBAA294BB49D90637669DD67732 /* Debug */ = { + 17A83645378650A66459200E7D07F16D /* Debug */ = { + isa = XCBuildConfiguration; + baseConfigurationReference = 5985A7456A5B59AB64CBBCB991CB7E8F /* boost-for-react-native.debug.xcconfig */; + buildSettings = { + APPLICATION_EXTENSION_API_ONLY = NO; + ARCHS = "$(ARCHS_STANDARD_64_BIT)"; + ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon; + ASSETCATALOG_COMPILER_GLOBAL_ACCENT_COLOR_NAME = AccentColor; + IPHONEOS_DEPLOYMENT_TARGET = 11.0; + LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks"; + SDKROOT = iphoneos; + TARGETED_DEVICE_FAMILY = "1,2"; + }; + name = Debug; + }; + 195C786859FDF7769E1BDF55D9E2A2FB /* Debug */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 03E4DE6F65D0B3008B5D8D3E4A27F8A2 /* RNBootSplash.debug.xcconfig */; + baseConfigurationReference = 84DD071B8E7F1F7C15941B897A4B8037 /* React-RCTNetwork.debug.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; ARCHS = "$(ARCHS_STANDARD_64_BIT)"; + CLANG_ENABLE_OBJC_WEAK = NO; "CODE_SIGN_IDENTITY[sdk=appletvos*]" = ""; "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = ""; "CODE_SIGN_IDENTITY[sdk=watchos*]" = ""; - GCC_PREFIX_HEADER = "Target Support Files/RNBootSplash/RNBootSplash-prefix.pch"; + GCC_PREFIX_HEADER = "Target Support Files/React-RCTNetwork/React-RCTNetwork-prefix.pch"; IPHONEOS_DEPLOYMENT_TARGET = 11.0; OTHER_LDFLAGS = ""; OTHER_LIBTOOLFLAGS = ""; PRIVATE_HEADERS_FOLDER_PATH = ""; - PRODUCT_MODULE_NAME = RNBootSplash; - PRODUCT_NAME = RNBootSplash; + PRODUCT_MODULE_NAME = RCTNetwork; + PRODUCT_NAME = "React-RCTNetwork"; PUBLIC_HEADERS_FOLDER_PATH = ""; SDKROOT = iphoneos; SKIP_INSTALL = YES; @@ -36405,22 +35724,22 @@ }; name = Debug; }; - 257D2762CC305B1CA0E8BA95EF20434A /* Debug */ = { + 1A2D2B8780D72D2E7930B048F99C7AEF /* Debug */ = { isa = XCBuildConfiguration; - baseConfigurationReference = ABD3A2C3ABA0E1DFC3CA633DDDDE1135 /* react-native-safe-area-context.debug.xcconfig */; + baseConfigurationReference = D82E6DE977BA24F6B59DC331128C89DF /* react-native-restart.debug.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; 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-safe-area-context/react-native-safe-area-context-prefix.pch"; + GCC_PREFIX_HEADER = "Target Support Files/react-native-restart/react-native-restart-prefix.pch"; IPHONEOS_DEPLOYMENT_TARGET = 11.0; OTHER_LDFLAGS = ""; OTHER_LIBTOOLFLAGS = ""; PRIVATE_HEADERS_FOLDER_PATH = ""; - PRODUCT_MODULE_NAME = react_native_safe_area_context; - PRODUCT_NAME = "react-native-safe-area-context"; + PRODUCT_MODULE_NAME = react_native_restart; + PRODUCT_NAME = "react-native-restart"; PUBLIC_HEADERS_FOLDER_PATH = ""; SDKROOT = iphoneos; SKIP_INSTALL = YES; @@ -36430,63 +35749,66 @@ }; name = Debug; }; - 26EC306500273E3061D7F84644C1C135 /* Release */ = { + 1A8AC6BD524C6BC798924603B66A8044 /* Debug */ = { isa = XCBuildConfiguration; - baseConfigurationReference = DF0CCC4ED5EA093604440EBDE947BC63 /* GoogleAppMeasurement.release.xcconfig */; + baseConfigurationReference = 21D105099C4673A692A372F21B62A9BF /* UMFaceDetectorInterface.debug.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; ARCHS = "$(ARCHS_STANDARD_64_BIT)"; ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon; ASSETCATALOG_COMPILER_GLOBAL_ACCENT_COLOR_NAME = AccentColor; + CLANG_ENABLE_OBJC_WEAK = NO; IPHONEOS_DEPLOYMENT_TARGET = 11.0; LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks"; SDKROOT = iphoneos; TARGETED_DEVICE_FAMILY = "1,2"; - VALIDATE_PRODUCT = YES; }; - name = Release; + name = Debug; }; - 2841D76E9BA26627EB9DB4008398643A /* Debug */ = { + 1ABE1D128B3F0307F9D20E20083FABAA /* Release */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 5B4439507548AB0D9403B7C0702F9051 /* Flipper-Glog.debug.xcconfig */; + baseConfigurationReference = 0BFE29C1897C5044A8A9E72DB815F30C /* EXWebBrowser.release.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; ARCHS = "$(ARCHS_STANDARD_64_BIT)"; + CLANG_ENABLE_OBJC_WEAK = NO; "CODE_SIGN_IDENTITY[sdk=appletvos*]" = ""; "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = ""; "CODE_SIGN_IDENTITY[sdk=watchos*]" = ""; - GCC_PREFIX_HEADER = "Target Support Files/Flipper-Glog/Flipper-Glog-prefix.pch"; + GCC_PREFIX_HEADER = "Target Support Files/EXWebBrowser/EXWebBrowser-prefix.pch"; IPHONEOS_DEPLOYMENT_TARGET = 11.0; OTHER_LDFLAGS = ""; OTHER_LIBTOOLFLAGS = ""; PRIVATE_HEADERS_FOLDER_PATH = ""; - PRODUCT_MODULE_NAME = glog; - PRODUCT_NAME = "Flipper-Glog"; + PRODUCT_MODULE_NAME = EXWebBrowser; + PRODUCT_NAME = EXWebBrowser; PUBLIC_HEADERS_FOLDER_PATH = ""; SDKROOT = iphoneos; SKIP_INSTALL = YES; SWIFT_ACTIVE_COMPILATION_CONDITIONS = "$(inherited) "; SWIFT_VERSION = 5.0; TARGETED_DEVICE_FAMILY = "1,2"; + VALIDATE_PRODUCT = YES; }; - name = Debug; + name = Release; }; - 2A57F02F073C8EE682B34DE95CEFC2CE /* Release */ = { + 1C68225BEA1086F4DF4091C518E5210B /* Release */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 61A4BB49B9D906AC2985AD80CF88A646 /* RNVectorIcons.release.xcconfig */; + baseConfigurationReference = D9970A06F0EABEE1CDA5A676817FC4EC /* React-RCTBlob.release.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; ARCHS = "$(ARCHS_STANDARD_64_BIT)"; + CLANG_ENABLE_OBJC_WEAK = NO; "CODE_SIGN_IDENTITY[sdk=appletvos*]" = ""; "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = ""; "CODE_SIGN_IDENTITY[sdk=watchos*]" = ""; - GCC_PREFIX_HEADER = "Target Support Files/RNVectorIcons/RNVectorIcons-prefix.pch"; + GCC_PREFIX_HEADER = "Target Support Files/React-RCTBlob/React-RCTBlob-prefix.pch"; IPHONEOS_DEPLOYMENT_TARGET = 11.0; OTHER_LDFLAGS = ""; OTHER_LIBTOOLFLAGS = ""; PRIVATE_HEADERS_FOLDER_PATH = ""; - PRODUCT_MODULE_NAME = RNVectorIcons; - PRODUCT_NAME = RNVectorIcons; + PRODUCT_MODULE_NAME = RCTBlob; + PRODUCT_NAME = "React-RCTBlob"; PUBLIC_HEADERS_FOLDER_PATH = ""; SDKROOT = iphoneos; SKIP_INSTALL = YES; @@ -36497,9 +35819,9 @@ }; name = Release; }; - 2A7B9923A025C9FD5DA7D60F3BED10CF /* Debug */ = { + 1CFE88A76538D02382248941B2C0067F /* Debug */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 3A01F89A0B9A22D8CBF6CF6A3DB222EB /* UMReactNativeAdapter.debug.xcconfig */; + baseConfigurationReference = 48F70B53C832715C518D8865142EA37D /* UMAppLoader.debug.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; ARCHS = "$(ARCHS_STANDARD_64_BIT)"; @@ -36507,13 +35829,13 @@ "CODE_SIGN_IDENTITY[sdk=appletvos*]" = ""; "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = ""; "CODE_SIGN_IDENTITY[sdk=watchos*]" = ""; - GCC_PREFIX_HEADER = "Target Support Files/UMReactNativeAdapter/UMReactNativeAdapter-prefix.pch"; + GCC_PREFIX_HEADER = "Target Support Files/UMAppLoader/UMAppLoader-prefix.pch"; IPHONEOS_DEPLOYMENT_TARGET = 11.0; OTHER_LDFLAGS = ""; OTHER_LIBTOOLFLAGS = ""; PRIVATE_HEADERS_FOLDER_PATH = ""; - PRODUCT_MODULE_NAME = UMReactNativeAdapter; - PRODUCT_NAME = UMReactNativeAdapter; + PRODUCT_MODULE_NAME = UMAppLoader; + PRODUCT_NAME = UMAppLoader; PUBLIC_HEADERS_FOLDER_PATH = ""; SDKROOT = iphoneos; SKIP_INSTALL = YES; @@ -36523,49 +35845,47 @@ }; name = Debug; }; - 2A814AD419EFEFB028BA5AA9087304A0 /* Release */ = { + 1D8009FE5FE9224B8E68B737FA84EDBD /* Debug */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 26808343AB28092E0DAB9877D31D6617 /* react-native-cookies.release.xcconfig */; + baseConfigurationReference = ECAC80887180311A52124B1B1F656A3D /* CocoaAsyncSocket.debug.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; 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-cookies/react-native-cookies-prefix.pch"; + GCC_PREFIX_HEADER = "Target Support Files/CocoaAsyncSocket/CocoaAsyncSocket-prefix.pch"; IPHONEOS_DEPLOYMENT_TARGET = 11.0; OTHER_LDFLAGS = ""; OTHER_LIBTOOLFLAGS = ""; PRIVATE_HEADERS_FOLDER_PATH = ""; - PRODUCT_MODULE_NAME = react_native_cookies; - PRODUCT_NAME = "react-native-cookies"; + PRODUCT_MODULE_NAME = CocoaAsyncSocket; + PRODUCT_NAME = CocoaAsyncSocket; 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; + name = Debug; }; - 2B1D1CF3E19848CE2F0FFD9650031F5F /* Debug */ = { + 1E8D88989601F81F6C64CEC5BE24DD6C /* Debug */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 33AC82FB3AC41D5507F9362E56EF96D8 /* EXWebBrowser.debug.xcconfig */; + baseConfigurationReference = 336739DA7EA480F64F375E08C886BC99 /* MMKVCore.debug.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; ARCHS = "$(ARCHS_STANDARD_64_BIT)"; - CLANG_ENABLE_OBJC_WEAK = NO; "CODE_SIGN_IDENTITY[sdk=appletvos*]" = ""; "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = ""; "CODE_SIGN_IDENTITY[sdk=watchos*]" = ""; - GCC_PREFIX_HEADER = "Target Support Files/EXWebBrowser/EXWebBrowser-prefix.pch"; + GCC_PREFIX_HEADER = "Target Support Files/MMKVCore/MMKVCore-prefix.pch"; IPHONEOS_DEPLOYMENT_TARGET = 11.0; OTHER_LDFLAGS = ""; OTHER_LIBTOOLFLAGS = ""; PRIVATE_HEADERS_FOLDER_PATH = ""; - PRODUCT_MODULE_NAME = EXWebBrowser; - PRODUCT_NAME = EXWebBrowser; + PRODUCT_MODULE_NAME = MMKVCore; + PRODUCT_NAME = MMKVCore; PUBLIC_HEADERS_FOLDER_PATH = ""; SDKROOT = iphoneos; SKIP_INSTALL = YES; @@ -36575,94 +35895,86 @@ }; name = Debug; }; - 2B9B962C71F01503AEBDAEF94B6E1CCA /* Release */ = { + 1F7CC6DA1F34F81B5AB6C907F95E8A92 /* Debug */ = { isa = XCBuildConfiguration; - baseConfigurationReference = B4E063DE07DC46F94A32EAAEA472888D /* Flipper-DoubleConversion.release.xcconfig */; + baseConfigurationReference = C65231695825D0A6C58171D316C2C02F /* React-RCTBlob.debug.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; ARCHS = "$(ARCHS_STANDARD_64_BIT)"; + CLANG_ENABLE_OBJC_WEAK = NO; "CODE_SIGN_IDENTITY[sdk=appletvos*]" = ""; "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = ""; "CODE_SIGN_IDENTITY[sdk=watchos*]" = ""; - GCC_PREFIX_HEADER = "Target Support Files/Flipper-DoubleConversion/Flipper-DoubleConversion-prefix.pch"; + GCC_PREFIX_HEADER = "Target Support Files/React-RCTBlob/React-RCTBlob-prefix.pch"; IPHONEOS_DEPLOYMENT_TARGET = 11.0; OTHER_LDFLAGS = ""; OTHER_LIBTOOLFLAGS = ""; PRIVATE_HEADERS_FOLDER_PATH = ""; - PRODUCT_MODULE_NAME = DoubleConversion; - PRODUCT_NAME = "Flipper-DoubleConversion"; + PRODUCT_MODULE_NAME = RCTBlob; + PRODUCT_NAME = "React-RCTBlob"; 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; - }; - 2C00276F50FFFE033C38D47B9D9CA740 /* Debug */ = { - isa = XCBuildConfiguration; - baseConfigurationReference = 5EAE9196962CE4F1B28D093A73FEFB1D /* React-runtimeexecutor.debug.xcconfig */; - buildSettings = { - APPLICATION_EXTENSION_API_ONLY = NO; - ARCHS = "$(ARCHS_STANDARD_64_BIT)"; - ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon; - ASSETCATALOG_COMPILER_GLOBAL_ACCENT_COLOR_NAME = AccentColor; - CLANG_ENABLE_OBJC_WEAK = NO; - IPHONEOS_DEPLOYMENT_TARGET = 11.0; - LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks"; - SDKROOT = iphoneos; - TARGETED_DEVICE_FAMILY = "1,2"; }; name = Debug; }; - 2C3A636D7C929015A1366062D3AD9285 /* Release */ = { + 1F90A2C5A78F00D900E1DCA48FD307B6 /* Release */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 65B29ADF9EF6733B27B00153E334C733 /* boost-for-react-native.release.xcconfig */; + baseConfigurationReference = F95C9E4B25916C939ACD2E44B12E6DA9 /* RNCMaskedView.release.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; ARCHS = "$(ARCHS_STANDARD_64_BIT)"; - ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon; - ASSETCATALOG_COMPILER_GLOBAL_ACCENT_COLOR_NAME = AccentColor; + "CODE_SIGN_IDENTITY[sdk=appletvos*]" = ""; + "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = ""; + "CODE_SIGN_IDENTITY[sdk=watchos*]" = ""; + GCC_PREFIX_HEADER = "Target Support Files/RNCMaskedView/RNCMaskedView-prefix.pch"; IPHONEOS_DEPLOYMENT_TARGET = 11.0; - LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks"; + OTHER_LDFLAGS = ""; + OTHER_LIBTOOLFLAGS = ""; + PRIVATE_HEADERS_FOLDER_PATH = ""; + PRODUCT_MODULE_NAME = RNCMaskedView; + PRODUCT_NAME = RNCMaskedView; + 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; }; - 2D24641D233502019004F2446CBCCE87 /* Release */ = { + 22484930B6D46E07F261091E83A95EEE /* Debug */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 9E2713CA157638DEAFAC794B8097287C /* React-RCTLinking.release.xcconfig */; + baseConfigurationReference = E767EDE510B2A5DA1EFBC660848C0CF0 /* rn-extensions-share.debug.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; ARCHS = "$(ARCHS_STANDARD_64_BIT)"; - CLANG_ENABLE_OBJC_WEAK = NO; "CODE_SIGN_IDENTITY[sdk=appletvos*]" = ""; "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = ""; "CODE_SIGN_IDENTITY[sdk=watchos*]" = ""; - GCC_PREFIX_HEADER = "Target Support Files/React-RCTLinking/React-RCTLinking-prefix.pch"; + GCC_PREFIX_HEADER = "Target Support Files/rn-extensions-share/rn-extensions-share-prefix.pch"; IPHONEOS_DEPLOYMENT_TARGET = 11.0; OTHER_LDFLAGS = ""; OTHER_LIBTOOLFLAGS = ""; PRIVATE_HEADERS_FOLDER_PATH = ""; - PRODUCT_MODULE_NAME = RCTLinking; - PRODUCT_NAME = "React-RCTLinking"; + PRODUCT_MODULE_NAME = rn_extensions_share; + PRODUCT_NAME = "rn-extensions-share"; 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; + name = Debug; }; - 2E668FD82924ADD261A80560DC113419 /* Release */ = { + 23307E5F2946FE85414D73DE87208107 /* Release */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 4B8E3BCF06F973E8F0D678D9DD3178ED /* React.release.xcconfig */; + baseConfigurationReference = BD3FAD946280A369B7E7C125D630B8F2 /* UMConstantsInterface.release.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; ARCHS = "$(ARCHS_STANDARD_64_BIT)"; @@ -36677,47 +35989,39 @@ }; name = Release; }; - 2EB9236200699761C9079A3682CDFB07 /* Release */ = { + 2396D513693F8A11CED77A98758B2998 /* Release */ = { isa = XCBuildConfiguration; - baseConfigurationReference = A6EB796E6E9E63CB8E30B650EF1BB98B /* Pods-NotificationService.release.xcconfig */; + baseConfigurationReference = 53A25457AA2F5E11930B3BBD24AAAE87 /* UMImageLoaderInterface.release.xcconfig */; buildSettings = { - ALWAYS_EMBED_SWIFT_STANDARD_LIBRARIES = NO; APPLICATION_EXTENSION_API_ONLY = NO; ARCHS = "$(ARCHS_STANDARD_64_BIT)"; + ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon; + ASSETCATALOG_COMPILER_GLOBAL_ACCENT_COLOR_NAME = AccentColor; CLANG_ENABLE_OBJC_WEAK = NO; - "CODE_SIGN_IDENTITY[sdk=appletvos*]" = ""; - "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = ""; - "CODE_SIGN_IDENTITY[sdk=watchos*]" = ""; IPHONEOS_DEPLOYMENT_TARGET = 11.0; - MACH_O_TYPE = staticlib; - MODULEMAP_FILE = "Target Support Files/Pods-NotificationService/Pods-NotificationService.modulemap"; - OTHER_LDFLAGS = ""; - OTHER_LIBTOOLFLAGS = ""; - PODS_ROOT = "$(SRCROOT)"; - PRODUCT_BUNDLE_IDENTIFIER = "org.cocoapods.${PRODUCT_NAME:rfc1034identifier}"; + LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks"; SDKROOT = iphoneos; - SKIP_INSTALL = YES; TARGETED_DEVICE_FAMILY = "1,2"; VALIDATE_PRODUCT = YES; }; name = Release; }; - 2EE7477CED0EF45A9B85F8884BE22919 /* Debug */ = { + 2496DFBAA294BB49D90637669DD67732 /* Debug */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 6DF61E1E4E09C55C34D232E606DAEC35 /* RNImageCropPicker.debug.xcconfig */; + baseConfigurationReference = 9E5B369692DD49A1207756CB546F2873 /* RNBootSplash.debug.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; 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/RNImageCropPicker/RNImageCropPicker-prefix.pch"; + GCC_PREFIX_HEADER = "Target Support Files/RNBootSplash/RNBootSplash-prefix.pch"; IPHONEOS_DEPLOYMENT_TARGET = 11.0; OTHER_LDFLAGS = ""; OTHER_LIBTOOLFLAGS = ""; PRIVATE_HEADERS_FOLDER_PATH = ""; - PRODUCT_MODULE_NAME = RNImageCropPicker; - PRODUCT_NAME = RNImageCropPicker; + PRODUCT_MODULE_NAME = RNBootSplash; + PRODUCT_NAME = RNBootSplash; PUBLIC_HEADERS_FOLDER_PATH = ""; SDKROOT = iphoneos; SKIP_INSTALL = YES; @@ -36727,22 +36031,23 @@ }; name = Debug; }; - 306B30B972532C61B933FD6D83DC5284 /* Debug */ = { + 254DF64C579366D64434142A3563DE60 /* Debug */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 96241B9F1CFBD84D1ACCFE24CA7634CF /* RNConfigReader.debug.xcconfig */; + baseConfigurationReference = F29E291A5148CF2D38BAD33733CFE9BF /* React-jsi.debug.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; ARCHS = "$(ARCHS_STANDARD_64_BIT)"; + CLANG_ENABLE_OBJC_WEAK = NO; "CODE_SIGN_IDENTITY[sdk=appletvos*]" = ""; "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = ""; "CODE_SIGN_IDENTITY[sdk=watchos*]" = ""; - GCC_PREFIX_HEADER = "Target Support Files/RNConfigReader/RNConfigReader-prefix.pch"; + GCC_PREFIX_HEADER = "Target Support Files/React-jsi/React-jsi-prefix.pch"; IPHONEOS_DEPLOYMENT_TARGET = 11.0; OTHER_LDFLAGS = ""; OTHER_LIBTOOLFLAGS = ""; PRIVATE_HEADERS_FOLDER_PATH = ""; - PRODUCT_MODULE_NAME = RNConfigReader; - PRODUCT_NAME = RNConfigReader; + PRODUCT_MODULE_NAME = jsi; + PRODUCT_NAME = "React-jsi"; PUBLIC_HEADERS_FOLDER_PATH = ""; SDKROOT = iphoneos; SKIP_INSTALL = YES; @@ -36752,21 +36057,22 @@ }; name = Debug; }; - 314A5528E4BC35B5101488754B05EEFE /* Debug */ = { + 257D2762CC305B1CA0E8BA95EF20434A /* Debug */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 20FC4995E75BF49DB27DB50D147EE508 /* PromisesObjC.debug.xcconfig */; + baseConfigurationReference = D3C193A820700A9A3C5A490A4C0B0692 /* react-native-safe-area-context.debug.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; 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-safe-area-context/react-native-safe-area-context-prefix.pch"; IPHONEOS_DEPLOYMENT_TARGET = 11.0; OTHER_LDFLAGS = ""; OTHER_LIBTOOLFLAGS = ""; PRIVATE_HEADERS_FOLDER_PATH = ""; - PRODUCT_MODULE_NAME = FBLPromises; - PRODUCT_NAME = PromisesObjC; + PRODUCT_MODULE_NAME = react_native_safe_area_context; + PRODUCT_NAME = "react-native-safe-area-context"; PUBLIC_HEADERS_FOLDER_PATH = ""; SDKROOT = iphoneos; SKIP_INSTALL = YES; @@ -36776,38 +36082,49 @@ }; name = Debug; }; - 319D93C25C4B6C3E0AA156CBF7D7300E /* Release */ = { + 290649C45570AB3DFFB321EA2019FCA5 /* Release */ = { isa = XCBuildConfiguration; - baseConfigurationReference = ACFA40E85AC8F98E11C92BEEF692E7D1 /* Firebase.release.xcconfig */; + baseConfigurationReference = CF990913EFA65300DDCC620C8E9CA032 /* React-RCTText.release.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; ARCHS = "$(ARCHS_STANDARD_64_BIT)"; - ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon; - ASSETCATALOG_COMPILER_GLOBAL_ACCENT_COLOR_NAME = AccentColor; + CLANG_ENABLE_OBJC_WEAK = NO; + "CODE_SIGN_IDENTITY[sdk=appletvos*]" = ""; + "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = ""; + "CODE_SIGN_IDENTITY[sdk=watchos*]" = ""; + GCC_PREFIX_HEADER = "Target Support Files/React-RCTText/React-RCTText-prefix.pch"; IPHONEOS_DEPLOYMENT_TARGET = 11.0; - LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks"; + OTHER_LDFLAGS = ""; + OTHER_LIBTOOLFLAGS = ""; + PRIVATE_HEADERS_FOLDER_PATH = ""; + PRODUCT_MODULE_NAME = RCTText; + PRODUCT_NAME = "React-RCTText"; + 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; }; - 31E84E0F2370347830137DC5F187B48B /* Release */ = { + 2A57F02F073C8EE682B34DE95CEFC2CE /* Release */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 2F91A48D4257E40AAA818AB8B7100A38 /* RNScreens.release.xcconfig */; + baseConfigurationReference = C757E685B784FC1257DA5BB2CCC3C276 /* RNVectorIcons.release.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; 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/RNScreens/RNScreens-prefix.pch"; + GCC_PREFIX_HEADER = "Target Support Files/RNVectorIcons/RNVectorIcons-prefix.pch"; IPHONEOS_DEPLOYMENT_TARGET = 11.0; OTHER_LDFLAGS = ""; OTHER_LIBTOOLFLAGS = ""; PRIVATE_HEADERS_FOLDER_PATH = ""; - PRODUCT_MODULE_NAME = RNScreens; - PRODUCT_NAME = RNScreens; + PRODUCT_MODULE_NAME = RNVectorIcons; + PRODUCT_NAME = RNVectorIcons; PUBLIC_HEADERS_FOLDER_PATH = ""; SDKROOT = iphoneos; SKIP_INSTALL = YES; @@ -36818,46 +36135,48 @@ }; name = Release; }; - 325BD6FEEEAA4ACD3040DCDC0C3439F4 /* Release */ = { + 2A7B9923A025C9FD5DA7D60F3BED10CF /* Debug */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 8F5190191CC94B36436BAC17951E36FC /* FirebaseCore.release.xcconfig */; + baseConfigurationReference = 2D378B6353231BCF643682C809A2179A /* UMReactNativeAdapter.debug.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; ARCHS = "$(ARCHS_STANDARD_64_BIT)"; + CLANG_ENABLE_OBJC_WEAK = NO; "CODE_SIGN_IDENTITY[sdk=appletvos*]" = ""; "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = ""; "CODE_SIGN_IDENTITY[sdk=watchos*]" = ""; + GCC_PREFIX_HEADER = "Target Support Files/UMReactNativeAdapter/UMReactNativeAdapter-prefix.pch"; IPHONEOS_DEPLOYMENT_TARGET = 11.0; OTHER_LDFLAGS = ""; OTHER_LIBTOOLFLAGS = ""; PRIVATE_HEADERS_FOLDER_PATH = ""; - PRODUCT_MODULE_NAME = FirebaseCore; - PRODUCT_NAME = FirebaseCore; + PRODUCT_MODULE_NAME = UMReactNativeAdapter; + PRODUCT_NAME = UMReactNativeAdapter; 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; + name = Debug; }; - 32B401285E3EE2E6ADAA279C85A39679 /* Release */ = { + 2A814AD419EFEFB028BA5AA9087304A0 /* Release */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 377BE4B8159107B85112FCCFD2D2BB97 /* FirebaseCoreDiagnostics.release.xcconfig */; + baseConfigurationReference = 85D0A74E26F96DFCC1EAA6DE329DCBB0 /* react-native-cookies.release.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; 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-cookies/react-native-cookies-prefix.pch"; IPHONEOS_DEPLOYMENT_TARGET = 11.0; OTHER_LDFLAGS = ""; OTHER_LIBTOOLFLAGS = ""; PRIVATE_HEADERS_FOLDER_PATH = ""; - PRODUCT_MODULE_NAME = FirebaseCoreDiagnostics; - PRODUCT_NAME = FirebaseCoreDiagnostics; + PRODUCT_MODULE_NAME = react_native_cookies; + PRODUCT_NAME = "react-native-cookies"; PUBLIC_HEADERS_FOLDER_PATH = ""; SDKROOT = iphoneos; SKIP_INSTALL = YES; @@ -36868,22 +36187,23 @@ }; name = Release; }; - 350E549B9D9AFA7C44AB9D907104BC96 /* Debug */ = { + 2B1D1CF3E19848CE2F0FFD9650031F5F /* Debug */ = { isa = XCBuildConfiguration; - baseConfigurationReference = EEDEF25F4BD51250B333F8487ADCABD1 /* RNFastImage.debug.xcconfig */; + baseConfigurationReference = 92474C5083F1FF717AB740685222FB9F /* EXWebBrowser.debug.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; ARCHS = "$(ARCHS_STANDARD_64_BIT)"; + CLANG_ENABLE_OBJC_WEAK = NO; "CODE_SIGN_IDENTITY[sdk=appletvos*]" = ""; "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = ""; "CODE_SIGN_IDENTITY[sdk=watchos*]" = ""; - GCC_PREFIX_HEADER = "Target Support Files/RNFastImage/RNFastImage-prefix.pch"; + GCC_PREFIX_HEADER = "Target Support Files/EXWebBrowser/EXWebBrowser-prefix.pch"; IPHONEOS_DEPLOYMENT_TARGET = 11.0; OTHER_LDFLAGS = ""; OTHER_LIBTOOLFLAGS = ""; PRIVATE_HEADERS_FOLDER_PATH = ""; - PRODUCT_MODULE_NAME = RNFastImage; - PRODUCT_NAME = RNFastImage; + PRODUCT_MODULE_NAME = EXWebBrowser; + PRODUCT_NAME = EXWebBrowser; PUBLIC_HEADERS_FOLDER_PATH = ""; SDKROOT = iphoneos; SKIP_INSTALL = YES; @@ -36893,22 +36213,22 @@ }; name = Debug; }; - 351669C9D9B6E760A1FFDA38509E07C3 /* Debug */ = { + 2EE7477CED0EF45A9B85F8884BE22919 /* Debug */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 44122EACFF785CC25F182DF7C765E7E3 /* RNLocalize.debug.xcconfig */; + baseConfigurationReference = 4595C87584F3E8A399866B5CD8A8EC2C /* RNImageCropPicker.debug.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; 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/RNLocalize/RNLocalize-prefix.pch"; + GCC_PREFIX_HEADER = "Target Support Files/RNImageCropPicker/RNImageCropPicker-prefix.pch"; IPHONEOS_DEPLOYMENT_TARGET = 11.0; OTHER_LDFLAGS = ""; OTHER_LIBTOOLFLAGS = ""; PRIVATE_HEADERS_FOLDER_PATH = ""; - PRODUCT_MODULE_NAME = RNLocalize; - PRODUCT_NAME = RNLocalize; + PRODUCT_MODULE_NAME = RNImageCropPicker; + PRODUCT_NAME = RNImageCropPicker; PUBLIC_HEADERS_FOLDER_PATH = ""; SDKROOT = iphoneos; SKIP_INSTALL = YES; @@ -36918,9 +36238,26 @@ }; name = Debug; }; - 35BB07AFAF2489D6E6B1371C8B6FC80C /* Debug */ = { + 2F7782197CE5F0E6D1B95DD629023820 /* Debug */ = { + isa = XCBuildConfiguration; + baseConfigurationReference = C5E949B46D8B3289F5A68BA65DDBE074 /* React-Core.debug.xcconfig */; + buildSettings = { + APPLICATION_EXTENSION_API_ONLY = NO; + CONFIGURATION_BUILD_DIR = "$(BUILD_DIR)/$(CONFIGURATION)$(EFFECTIVE_PLATFORM_NAME)/React-Core"; + IBSC_MODULE = React; + INFOPLIST_FILE = "Target Support Files/React-Core/ResourceBundle-AccessibilityResources-React-Core-Info.plist"; + IPHONEOS_DEPLOYMENT_TARGET = 11.0; + PRODUCT_NAME = AccessibilityResources; + SDKROOT = iphoneos; + SKIP_INSTALL = YES; + TARGETED_DEVICE_FAMILY = "1,2"; + WRAPPER_EXTENSION = bundle; + }; + name = Debug; + }; + 2FE0829C8F93A03798ECF214D3F5D77C /* Release */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 654A312852DD07D4EC6DC4D1DF016102 /* EXAV.debug.xcconfig */; + baseConfigurationReference = 1E07EC44C0EB1007A7C369086E1849C1 /* React-RCTImage.release.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; ARCHS = "$(ARCHS_STANDARD_64_BIT)"; @@ -36928,38 +36265,39 @@ "CODE_SIGN_IDENTITY[sdk=appletvos*]" = ""; "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = ""; "CODE_SIGN_IDENTITY[sdk=watchos*]" = ""; - GCC_PREFIX_HEADER = "Target Support Files/EXAV/EXAV-prefix.pch"; + GCC_PREFIX_HEADER = "Target Support Files/React-RCTImage/React-RCTImage-prefix.pch"; IPHONEOS_DEPLOYMENT_TARGET = 11.0; OTHER_LDFLAGS = ""; OTHER_LIBTOOLFLAGS = ""; PRIVATE_HEADERS_FOLDER_PATH = ""; - PRODUCT_MODULE_NAME = EXAV; - PRODUCT_NAME = EXAV; + PRODUCT_MODULE_NAME = RCTImage; + PRODUCT_NAME = "React-RCTImage"; PUBLIC_HEADERS_FOLDER_PATH = ""; SDKROOT = iphoneos; SKIP_INSTALL = YES; SWIFT_ACTIVE_COMPILATION_CONDITIONS = "$(inherited) "; SWIFT_VERSION = 5.0; TARGETED_DEVICE_FAMILY = "1,2"; + VALIDATE_PRODUCT = YES; }; - name = Debug; + name = Release; }; - 365354509D9C21A6A99C16F71A69B955 /* Debug */ = { + 306B30B972532C61B933FD6D83DC5284 /* Debug */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 18EBC9E9AA518CA89C3B0494781387BA /* react-native-background-timer.debug.xcconfig */; + baseConfigurationReference = E60E6DCBBC4B36C4E43EC611EA3D2700 /* RNConfigReader.debug.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; 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-background-timer/react-native-background-timer-prefix.pch"; + GCC_PREFIX_HEADER = "Target Support Files/RNConfigReader/RNConfigReader-prefix.pch"; IPHONEOS_DEPLOYMENT_TARGET = 11.0; OTHER_LDFLAGS = ""; OTHER_LIBTOOLFLAGS = ""; PRIVATE_HEADERS_FOLDER_PATH = ""; - PRODUCT_MODULE_NAME = react_native_background_timer; - PRODUCT_NAME = "react-native-background-timer"; + PRODUCT_MODULE_NAME = RNConfigReader; + PRODUCT_NAME = RNConfigReader; PUBLIC_HEADERS_FOLDER_PATH = ""; SDKROOT = iphoneos; SKIP_INSTALL = YES; @@ -36969,41 +36307,40 @@ }; name = Debug; }; - 36CA3F6384B27F727E746AA6F3DD6AD4 /* Debug */ = { + 30F959E0D5A9DB6CF72D1B08B171D23F /* Release */ = { isa = XCBuildConfiguration; - baseConfigurationReference = F73BB6947B4750A2A5E5F61F29384ACE /* YogaKit.debug.xcconfig */; + baseConfigurationReference = E7A328D28422E92147AD1F7451D341BB /* Flipper-DoubleConversion.release.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; 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/YogaKit/YogaKit-prefix.pch"; + GCC_PREFIX_HEADER = "Target Support Files/Flipper-DoubleConversion/Flipper-DoubleConversion-prefix.pch"; IPHONEOS_DEPLOYMENT_TARGET = 11.0; - MODULEMAP_FILE = Headers/Public/YogaKit/YogaKit.modulemap; OTHER_LDFLAGS = ""; OTHER_LIBTOOLFLAGS = ""; PRIVATE_HEADERS_FOLDER_PATH = ""; - PRODUCT_MODULE_NAME = YogaKit; - PRODUCT_NAME = YogaKit; + PRODUCT_MODULE_NAME = DoubleConversion; + PRODUCT_NAME = "Flipper-DoubleConversion"; PUBLIC_HEADERS_FOLDER_PATH = ""; SDKROOT = iphoneos; SKIP_INSTALL = YES; SWIFT_ACTIVE_COMPILATION_CONDITIONS = "$(inherited) "; - SWIFT_VERSION = 4.1; + SWIFT_VERSION = 5.0; TARGETED_DEVICE_FAMILY = "1,2"; + VALIDATE_PRODUCT = YES; }; - name = Debug; + name = Release; }; - 375A948405052A6DF1471DD213BAA08A /* Release */ = { + 319D93C25C4B6C3E0AA156CBF7D7300E /* Release */ = { isa = XCBuildConfiguration; - baseConfigurationReference = EF66E1865FB77B1C24A04F48399DC43D /* UMConstantsInterface.release.xcconfig */; + baseConfigurationReference = 6FE956191D63ABA57E17E1513E9D1875 /* Firebase.release.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; ARCHS = "$(ARCHS_STANDARD_64_BIT)"; ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon; ASSETCATALOG_COMPILER_GLOBAL_ACCENT_COLOR_NAME = AccentColor; - CLANG_ENABLE_OBJC_WEAK = NO; IPHONEOS_DEPLOYMENT_TARGET = 11.0; LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks"; SDKROOT = iphoneos; @@ -37012,34 +36349,35 @@ }; name = Release; }; - 375F9858DB0F30528DD94F5CBF9F7497 /* Debug */ = { + 31E84E0F2370347830137DC5F187B48B /* Release */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 45DF22CFEC6C88AEF4D15C665F595E8A /* RNFBApp.debug.xcconfig */; + baseConfigurationReference = DD5BDA18C71452B05C20511A75E2CF40 /* RNScreens.release.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; 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/RNFBApp/RNFBApp-prefix.pch"; + GCC_PREFIX_HEADER = "Target Support Files/RNScreens/RNScreens-prefix.pch"; IPHONEOS_DEPLOYMENT_TARGET = 11.0; OTHER_LDFLAGS = ""; OTHER_LIBTOOLFLAGS = ""; PRIVATE_HEADERS_FOLDER_PATH = ""; - PRODUCT_MODULE_NAME = RNFBApp; - PRODUCT_NAME = RNFBApp; + PRODUCT_MODULE_NAME = RNScreens; + PRODUCT_NAME = RNScreens; PUBLIC_HEADERS_FOLDER_PATH = ""; SDKROOT = iphoneos; SKIP_INSTALL = YES; SWIFT_ACTIVE_COMPILATION_CONDITIONS = "$(inherited) "; SWIFT_VERSION = 5.0; TARGETED_DEVICE_FAMILY = "1,2"; + VALIDATE_PRODUCT = YES; }; - name = Debug; + name = Release; }; - 3990BA4C89DB70F52463872B34A96808 /* Debug */ = { + 34667908A8FB9DCF883DEC58270032AB /* Debug */ = { isa = XCBuildConfiguration; - baseConfigurationReference = FB71298544C4A579C35EA82025B38F9A /* React-jsi.debug.xcconfig */; + baseConfigurationReference = FD42AC801A0BDE146CA859C569E48C87 /* glog.debug.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; ARCHS = "$(ARCHS_STANDARD_64_BIT)"; @@ -37047,13 +36385,13 @@ "CODE_SIGN_IDENTITY[sdk=appletvos*]" = ""; "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = ""; "CODE_SIGN_IDENTITY[sdk=watchos*]" = ""; - GCC_PREFIX_HEADER = "Target Support Files/React-jsi/React-jsi-prefix.pch"; + GCC_PREFIX_HEADER = "Target Support Files/glog/glog-prefix.pch"; IPHONEOS_DEPLOYMENT_TARGET = 11.0; OTHER_LDFLAGS = ""; OTHER_LIBTOOLFLAGS = ""; PRIVATE_HEADERS_FOLDER_PATH = ""; - PRODUCT_MODULE_NAME = jsi; - PRODUCT_NAME = "React-jsi"; + PRODUCT_MODULE_NAME = glog; + PRODUCT_NAME = glog; PUBLIC_HEADERS_FOLDER_PATH = ""; SDKROOT = iphoneos; SKIP_INSTALL = YES; @@ -37063,23 +36401,22 @@ }; name = Debug; }; - 39E658BFB6AA16170AC332C84B7A8FD2 /* Debug */ = { + 350E549B9D9AFA7C44AB9D907104BC96 /* Debug */ = { isa = XCBuildConfiguration; - baseConfigurationReference = F9368D22615B059953CDCF32754A57A7 /* EXLocalAuthentication.debug.xcconfig */; + baseConfigurationReference = 105C50EBA54934CA79953DE0C8DE1EF4 /* RNFastImage.debug.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; ARCHS = "$(ARCHS_STANDARD_64_BIT)"; - CLANG_ENABLE_OBJC_WEAK = NO; "CODE_SIGN_IDENTITY[sdk=appletvos*]" = ""; "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = ""; "CODE_SIGN_IDENTITY[sdk=watchos*]" = ""; - GCC_PREFIX_HEADER = "Target Support Files/EXLocalAuthentication/EXLocalAuthentication-prefix.pch"; + GCC_PREFIX_HEADER = "Target Support Files/RNFastImage/RNFastImage-prefix.pch"; IPHONEOS_DEPLOYMENT_TARGET = 11.0; OTHER_LDFLAGS = ""; OTHER_LIBTOOLFLAGS = ""; PRIVATE_HEADERS_FOLDER_PATH = ""; - PRODUCT_MODULE_NAME = EXLocalAuthentication; - PRODUCT_NAME = EXLocalAuthentication; + PRODUCT_MODULE_NAME = RNFastImage; + PRODUCT_NAME = RNFastImage; PUBLIC_HEADERS_FOLDER_PATH = ""; SDKROOT = iphoneos; SKIP_INSTALL = YES; @@ -37089,21 +36426,22 @@ }; name = Debug; }; - 3A61250C5602A1806CCCD75ADAE8B959 /* Debug */ = { + 351669C9D9B6E760A1FFDA38509E07C3 /* Debug */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 3CB957F7D5240280A57EEDFC6B03ADDF /* GoogleDataTransport.debug.xcconfig */; + baseConfigurationReference = 735A5EE6D6B8774CDEB5EC3D446CCE22 /* RNLocalize.debug.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; 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/RNLocalize/RNLocalize-prefix.pch"; IPHONEOS_DEPLOYMENT_TARGET = 11.0; OTHER_LDFLAGS = ""; OTHER_LIBTOOLFLAGS = ""; PRIVATE_HEADERS_FOLDER_PATH = ""; - PRODUCT_MODULE_NAME = GoogleDataTransport; - PRODUCT_NAME = GoogleDataTransport; + PRODUCT_MODULE_NAME = RNLocalize; + PRODUCT_NAME = RNLocalize; PUBLIC_HEADERS_FOLDER_PATH = ""; SDKROOT = iphoneos; SKIP_INSTALL = YES; @@ -37113,39 +36451,49 @@ }; name = Debug; }; - 3BACDA59E9DDF97C8F1577E699B106E9 /* Release */ = { + 352C03B009D45BCAC43FE9E30EA1537A /* Release */ = { isa = XCBuildConfiguration; - baseConfigurationReference = FFA8920602E194F719FDBCD36097B350 /* TOCropViewController.release.xcconfig */; + baseConfigurationReference = 2B17C4EA6610DD0C8BAFD168886FF158 /* SDWebImageWebPCoder.release.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; - CONFIGURATION_BUILD_DIR = "$(BUILD_DIR)/$(CONFIGURATION)$(EFFECTIVE_PLATFORM_NAME)/TOCropViewController"; - IBSC_MODULE = TOCropViewController; - INFOPLIST_FILE = "Target Support Files/TOCropViewController/ResourceBundle-TOCropViewControllerBundle-TOCropViewController-Info.plist"; + 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/SDWebImageWebPCoder/SDWebImageWebPCoder-prefix.pch"; IPHONEOS_DEPLOYMENT_TARGET = 11.0; - PRODUCT_NAME = TOCropViewControllerBundle; + OTHER_LDFLAGS = ""; + OTHER_LIBTOOLFLAGS = ""; + PRIVATE_HEADERS_FOLDER_PATH = ""; + PRODUCT_MODULE_NAME = SDWebImageWebPCoder; + PRODUCT_NAME = SDWebImageWebPCoder; + PUBLIC_HEADERS_FOLDER_PATH = ""; SDKROOT = iphoneos; SKIP_INSTALL = YES; + SWIFT_ACTIVE_COMPILATION_CONDITIONS = "$(inherited) "; + SWIFT_VERSION = 5.0; TARGETED_DEVICE_FAMILY = "1,2"; - WRAPPER_EXTENSION = bundle; + VALIDATE_PRODUCT = YES; }; name = Release; }; - 3C6A7FD1AF51719FB9B42E949E74FD49 /* Debug */ = { + 35BB07AFAF2489D6E6B1371C8B6FC80C /* Debug */ = { isa = XCBuildConfiguration; - baseConfigurationReference = A87434E572253A7172B76006412A08CB /* RNScreens.debug.xcconfig */; + baseConfigurationReference = FA97666CA17482324C214BB3294E7B2E /* EXAV.debug.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; ARCHS = "$(ARCHS_STANDARD_64_BIT)"; + CLANG_ENABLE_OBJC_WEAK = NO; "CODE_SIGN_IDENTITY[sdk=appletvos*]" = ""; "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = ""; "CODE_SIGN_IDENTITY[sdk=watchos*]" = ""; - GCC_PREFIX_HEADER = "Target Support Files/RNScreens/RNScreens-prefix.pch"; + GCC_PREFIX_HEADER = "Target Support Files/EXAV/EXAV-prefix.pch"; IPHONEOS_DEPLOYMENT_TARGET = 11.0; OTHER_LDFLAGS = ""; OTHER_LIBTOOLFLAGS = ""; PRIVATE_HEADERS_FOLDER_PATH = ""; - PRODUCT_MODULE_NAME = RNScreens; - PRODUCT_NAME = RNScreens; + PRODUCT_MODULE_NAME = EXAV; + PRODUCT_NAME = EXAV; PUBLIC_HEADERS_FOLDER_PATH = ""; SDKROOT = iphoneos; SKIP_INSTALL = YES; @@ -37155,38 +36503,46 @@ }; name = Debug; }; - 3C6C400C2D5AE4C140D1CE46C3ED3F9C /* Debug */ = { + 35E7CA2E5AA43A6F40B7D7BB43659636 /* Debug */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 9D49C2015EC82F52D2FDB558E03A1801 /* UMTaskManagerInterface.debug.xcconfig */; + baseConfigurationReference = EEA4CC9B97D8B1DF863F7448D02747DE /* Pods-ShareRocketChatRN.debug.xcconfig */; buildSettings = { + ALWAYS_EMBED_SWIFT_STANDARD_LIBRARIES = NO; APPLICATION_EXTENSION_API_ONLY = NO; ARCHS = "$(ARCHS_STANDARD_64_BIT)"; - ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon; - ASSETCATALOG_COMPILER_GLOBAL_ACCENT_COLOR_NAME = AccentColor; CLANG_ENABLE_OBJC_WEAK = NO; + "CODE_SIGN_IDENTITY[sdk=appletvos*]" = ""; + "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = ""; + "CODE_SIGN_IDENTITY[sdk=watchos*]" = ""; IPHONEOS_DEPLOYMENT_TARGET = 11.0; - LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks"; + MACH_O_TYPE = staticlib; + MODULEMAP_FILE = "Target Support Files/Pods-ShareRocketChatRN/Pods-ShareRocketChatRN.modulemap"; + OTHER_LDFLAGS = ""; + OTHER_LIBTOOLFLAGS = ""; + PODS_ROOT = "$(SRCROOT)"; + PRODUCT_BUNDLE_IDENTIFIER = "org.cocoapods.${PRODUCT_NAME:rfc1034identifier}"; SDKROOT = iphoneos; + SKIP_INSTALL = YES; TARGETED_DEVICE_FAMILY = "1,2"; }; name = Debug; }; - 3C75C521C18106455172257F4A2396B8 /* Debug */ = { + 365354509D9C21A6A99C16F71A69B955 /* Debug */ = { isa = XCBuildConfiguration; - baseConfigurationReference = CB2403880F88F5DA093CE37CD971C654 /* RNFBCrashlytics.debug.xcconfig */; + baseConfigurationReference = C520FD4C6233AB926C0AC071ABEC1A46 /* react-native-background-timer.debug.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; 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/RNFBCrashlytics/RNFBCrashlytics-prefix.pch"; + GCC_PREFIX_HEADER = "Target Support Files/react-native-background-timer/react-native-background-timer-prefix.pch"; IPHONEOS_DEPLOYMENT_TARGET = 11.0; OTHER_LDFLAGS = ""; OTHER_LIBTOOLFLAGS = ""; PRIVATE_HEADERS_FOLDER_PATH = ""; - PRODUCT_MODULE_NAME = RNFBCrashlytics; - PRODUCT_NAME = RNFBCrashlytics; + PRODUCT_MODULE_NAME = react_native_background_timer; + PRODUCT_NAME = "react-native-background-timer"; PUBLIC_HEADERS_FOLDER_PATH = ""; SDKROOT = iphoneos; SKIP_INSTALL = YES; @@ -37196,9 +36552,9 @@ }; name = Debug; }; - 3D7173F3CC4AE583BDF8CB8F7F11339C /* Debug */ = { + 36B9F8EDC0053ADC45BAF866D5B1E3B4 /* Release */ = { isa = XCBuildConfiguration; - baseConfigurationReference = C06B1CFDE7B4DF08E03F2CC199843255 /* React-RCTText.debug.xcconfig */; + baseConfigurationReference = 62A7B6AF718A4CD5946C7CC9764C6A21 /* React-jsinspector.release.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; ARCHS = "$(ARCHS_STANDARD_64_BIT)"; @@ -37206,38 +36562,57 @@ "CODE_SIGN_IDENTITY[sdk=appletvos*]" = ""; "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = ""; "CODE_SIGN_IDENTITY[sdk=watchos*]" = ""; - GCC_PREFIX_HEADER = "Target Support Files/React-RCTText/React-RCTText-prefix.pch"; + GCC_PREFIX_HEADER = "Target Support Files/React-jsinspector/React-jsinspector-prefix.pch"; IPHONEOS_DEPLOYMENT_TARGET = 11.0; OTHER_LDFLAGS = ""; OTHER_LIBTOOLFLAGS = ""; PRIVATE_HEADERS_FOLDER_PATH = ""; - PRODUCT_MODULE_NAME = RCTText; - PRODUCT_NAME = "React-RCTText"; + PRODUCT_MODULE_NAME = jsinspector; + PRODUCT_NAME = "React-jsinspector"; PUBLIC_HEADERS_FOLDER_PATH = ""; SDKROOT = iphoneos; SKIP_INSTALL = YES; SWIFT_ACTIVE_COMPILATION_CONDITIONS = "$(inherited) "; SWIFT_VERSION = 5.0; TARGETED_DEVICE_FAMILY = "1,2"; + VALIDATE_PRODUCT = YES; }; - name = Debug; + name = Release; }; - 3DD506842A625431AD29113DA971F4B1 /* Debug */ = { + 374FC692BE80B502811483582A061B02 /* Release */ = { + isa = XCBuildConfiguration; + baseConfigurationReference = D74682771CDC57AD1A454E56564F1CEC /* hermes-engine.release.xcconfig */; + buildSettings = { + APPLICATION_EXTENSION_API_ONLY = NO; + ARCHS = "$(ARCHS_STANDARD_64_BIT)"; + ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon; + ASSETCATALOG_COMPILER_GLOBAL_ACCENT_COLOR_NAME = AccentColor; + CLANG_ENABLE_OBJC_WEAK = NO; + IPHONEOS_DEPLOYMENT_TARGET = 11.0; + LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks"; + SDKROOT = iphoneos; + TARGETED_DEVICE_FAMILY = "1,2"; + VALIDATE_PRODUCT = YES; + }; + name = Release; + }; + 39E658BFB6AA16170AC332C84B7A8FD2 /* Debug */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 5552D7AE40E5A50731F0F4C046F682DC /* Flipper-PeerTalk.debug.xcconfig */; + baseConfigurationReference = 1ED49CEEF643935D9F795E5F4C4B250B /* EXLocalAuthentication.debug.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; ARCHS = "$(ARCHS_STANDARD_64_BIT)"; + CLANG_ENABLE_OBJC_WEAK = NO; "CODE_SIGN_IDENTITY[sdk=appletvos*]" = ""; "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = ""; "CODE_SIGN_IDENTITY[sdk=watchos*]" = ""; - GCC_PREFIX_HEADER = "Target Support Files/Flipper-PeerTalk/Flipper-PeerTalk-prefix.pch"; + GCC_PREFIX_HEADER = "Target Support Files/EXLocalAuthentication/EXLocalAuthentication-prefix.pch"; IPHONEOS_DEPLOYMENT_TARGET = 11.0; OTHER_LDFLAGS = ""; OTHER_LIBTOOLFLAGS = ""; PRIVATE_HEADERS_FOLDER_PATH = ""; - PRODUCT_MODULE_NAME = peertalk; - PRODUCT_NAME = "Flipper-PeerTalk"; + PRODUCT_MODULE_NAME = EXLocalAuthentication; + PRODUCT_NAME = EXLocalAuthentication; PUBLIC_HEADERS_FOLDER_PATH = ""; SDKROOT = iphoneos; SKIP_INSTALL = YES; @@ -37247,23 +36622,38 @@ }; name = Debug; }; - 3EF4F733E0263A0A5C9664CDF8852B62 /* Debug */ = { + 3A79CBE5125A6F0C068376608ED9D880 /* Debug */ = { isa = XCBuildConfiguration; - baseConfigurationReference = E1483CD8DB8D1F9F325FC40E006F8437 /* EXImageLoader.debug.xcconfig */; + baseConfigurationReference = BA6AC8EEC7B97FC44312916970496223 /* RCTRequired.debug.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; ARCHS = "$(ARCHS_STANDARD_64_BIT)"; + ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon; + ASSETCATALOG_COMPILER_GLOBAL_ACCENT_COLOR_NAME = AccentColor; CLANG_ENABLE_OBJC_WEAK = NO; + IPHONEOS_DEPLOYMENT_TARGET = 11.0; + LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks"; + SDKROOT = iphoneos; + TARGETED_DEVICE_FAMILY = "1,2"; + }; + name = Debug; + }; + 3C6A7FD1AF51719FB9B42E949E74FD49 /* Debug */ = { + isa = XCBuildConfiguration; + baseConfigurationReference = 751B6C8C89AEC272372D8EB4A3ED7662 /* RNScreens.debug.xcconfig */; + buildSettings = { + APPLICATION_EXTENSION_API_ONLY = NO; + 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/EXImageLoader/EXImageLoader-prefix.pch"; + GCC_PREFIX_HEADER = "Target Support Files/RNScreens/RNScreens-prefix.pch"; IPHONEOS_DEPLOYMENT_TARGET = 11.0; OTHER_LDFLAGS = ""; OTHER_LIBTOOLFLAGS = ""; PRIVATE_HEADERS_FOLDER_PATH = ""; - PRODUCT_MODULE_NAME = EXImageLoader; - PRODUCT_NAME = EXImageLoader; + PRODUCT_MODULE_NAME = RNScreens; + PRODUCT_NAME = RNScreens; PUBLIC_HEADERS_FOLDER_PATH = ""; SDKROOT = iphoneos; SKIP_INSTALL = YES; @@ -37273,9 +36663,9 @@ }; name = Debug; }; - 403D23E6C3B5A3AAA84846ADCFA5215C /* Release */ = { + 3C6C400C2D5AE4C140D1CE46C3ED3F9C /* Debug */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 81AF47282A6DA97839BF24F1A5FA42E7 /* React-callinvoker.release.xcconfig */; + baseConfigurationReference = B57FF3B52257A1FD93CAFF861156C813 /* UMTaskManagerInterface.debug.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; ARCHS = "$(ARCHS_STANDARD_64_BIT)"; @@ -37286,26 +36676,26 @@ LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks"; SDKROOT = iphoneos; TARGETED_DEVICE_FAMILY = "1,2"; - VALIDATE_PRODUCT = YES; }; - name = Release; + name = Debug; }; - 4196DE35CAD463258426CDBC8A8080B4 /* Debug */ = { + 3C9ECF08D2D7D129C895070F945B2B10 /* Debug */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 534DB8EDC3186CDE3523F27EA5582D99 /* react-native-jitsi-meet.debug.xcconfig */; + baseConfigurationReference = 2019E9377898634C65FBAC3D6FA29C85 /* React-RCTAnimation.debug.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; ARCHS = "$(ARCHS_STANDARD_64_BIT)"; + CLANG_ENABLE_OBJC_WEAK = NO; "CODE_SIGN_IDENTITY[sdk=appletvos*]" = ""; "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = ""; "CODE_SIGN_IDENTITY[sdk=watchos*]" = ""; - GCC_PREFIX_HEADER = "Target Support Files/react-native-jitsi-meet/react-native-jitsi-meet-prefix.pch"; + GCC_PREFIX_HEADER = "Target Support Files/React-RCTAnimation/React-RCTAnimation-prefix.pch"; IPHONEOS_DEPLOYMENT_TARGET = 11.0; OTHER_LDFLAGS = ""; OTHER_LIBTOOLFLAGS = ""; PRIVATE_HEADERS_FOLDER_PATH = ""; - PRODUCT_MODULE_NAME = react_native_jitsi_meet; - PRODUCT_NAME = "react-native-jitsi-meet"; + PRODUCT_MODULE_NAME = RCTAnimation; + PRODUCT_NAME = "React-RCTAnimation"; PUBLIC_HEADERS_FOLDER_PATH = ""; SDKROOT = iphoneos; SKIP_INSTALL = YES; @@ -37315,50 +36705,46 @@ }; name = Debug; }; - 43006AD3CA2B3CDC0ED6122642692885 /* Release */ = { + 3D7B74C5BCAFBE46730BDF71B45D667E /* Debug */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 236AF881401FAE128FAAC3B0FA3F256F /* EXVideoThumbnails.release.xcconfig */; + baseConfigurationReference = CD89A9F9C536B61983B6660179DE85A1 /* FirebaseCoreDiagnostics.debug.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; ARCHS = "$(ARCHS_STANDARD_64_BIT)"; - CLANG_ENABLE_OBJC_WEAK = NO; "CODE_SIGN_IDENTITY[sdk=appletvos*]" = ""; "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = ""; "CODE_SIGN_IDENTITY[sdk=watchos*]" = ""; - GCC_PREFIX_HEADER = "Target Support Files/EXVideoThumbnails/EXVideoThumbnails-prefix.pch"; IPHONEOS_DEPLOYMENT_TARGET = 11.0; OTHER_LDFLAGS = ""; OTHER_LIBTOOLFLAGS = ""; PRIVATE_HEADERS_FOLDER_PATH = ""; - PRODUCT_MODULE_NAME = EXVideoThumbnails; - PRODUCT_NAME = EXVideoThumbnails; + PRODUCT_MODULE_NAME = FirebaseCoreDiagnostics; + PRODUCT_NAME = FirebaseCoreDiagnostics; 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; + name = Debug; }; - 447C4B03A82A53ECAB60F0C64D38D1EF /* Debug */ = { + 3DD506842A625431AD29113DA971F4B1 /* Debug */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 4AECC08C02DCA1B2C649AB26AAE1461E /* RCTTypeSafety.debug.xcconfig */; + baseConfigurationReference = 2AF1C3DA0EA9BFA496EE8D24D7FF1031 /* Flipper-PeerTalk.debug.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; ARCHS = "$(ARCHS_STANDARD_64_BIT)"; - CLANG_ENABLE_OBJC_WEAK = NO; "CODE_SIGN_IDENTITY[sdk=appletvos*]" = ""; "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = ""; "CODE_SIGN_IDENTITY[sdk=watchos*]" = ""; - GCC_PREFIX_HEADER = "Target Support Files/RCTTypeSafety/RCTTypeSafety-prefix.pch"; + GCC_PREFIX_HEADER = "Target Support Files/Flipper-PeerTalk/Flipper-PeerTalk-prefix.pch"; IPHONEOS_DEPLOYMENT_TARGET = 11.0; OTHER_LDFLAGS = ""; OTHER_LIBTOOLFLAGS = ""; PRIVATE_HEADERS_FOLDER_PATH = ""; - PRODUCT_MODULE_NAME = RCTTypeSafety; - PRODUCT_NAME = RCTTypeSafety; + PRODUCT_MODULE_NAME = peertalk; + PRODUCT_NAME = "Flipper-PeerTalk"; PUBLIC_HEADERS_FOLDER_PATH = ""; SDKROOT = iphoneos; SKIP_INSTALL = YES; @@ -37368,99 +36754,115 @@ }; name = Debug; }; - 452A6A33E111B1718D3C3EA700068412 /* Release */ = { + 3EE3613974748FC8910E92AE1495EEB6 /* Release */ = { + isa = XCBuildConfiguration; + baseConfigurationReference = 33D58C8349C67788E1DB40B2E56C9C5B /* React-callinvoker.release.xcconfig */; + buildSettings = { + APPLICATION_EXTENSION_API_ONLY = NO; + ARCHS = "$(ARCHS_STANDARD_64_BIT)"; + ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon; + ASSETCATALOG_COMPILER_GLOBAL_ACCENT_COLOR_NAME = AccentColor; + CLANG_ENABLE_OBJC_WEAK = NO; + IPHONEOS_DEPLOYMENT_TARGET = 11.0; + LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks"; + SDKROOT = iphoneos; + TARGETED_DEVICE_FAMILY = "1,2"; + VALIDATE_PRODUCT = YES; + }; + name = Release; + }; + 3EF4F733E0263A0A5C9664CDF8852B62 /* Debug */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 91E76A46D4AB33E0DEF355E7518F45FE /* RNCPicker.release.xcconfig */; + baseConfigurationReference = E84581F67CA2CE086EEADB1C1AAEE161 /* EXImageLoader.debug.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; ARCHS = "$(ARCHS_STANDARD_64_BIT)"; + CLANG_ENABLE_OBJC_WEAK = NO; "CODE_SIGN_IDENTITY[sdk=appletvos*]" = ""; "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = ""; "CODE_SIGN_IDENTITY[sdk=watchos*]" = ""; - GCC_PREFIX_HEADER = "Target Support Files/RNCPicker/RNCPicker-prefix.pch"; + GCC_PREFIX_HEADER = "Target Support Files/EXImageLoader/EXImageLoader-prefix.pch"; IPHONEOS_DEPLOYMENT_TARGET = 11.0; OTHER_LDFLAGS = ""; OTHER_LIBTOOLFLAGS = ""; PRIVATE_HEADERS_FOLDER_PATH = ""; - PRODUCT_MODULE_NAME = RNCPicker; - PRODUCT_NAME = RNCPicker; + PRODUCT_MODULE_NAME = EXImageLoader; + PRODUCT_NAME = EXImageLoader; 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; + name = Debug; }; - 45E3D1FA7972F019B4F22F452AF2333C /* Debug */ = { + 4060190F1F66621796A0E52B7BFA46CE /* Release */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 088D72C0DB7BE89FA9B04E9896A589D5 /* React-RCTVibration.debug.xcconfig */; + baseConfigurationReference = 7A9833FF71C31016A4E2A5EA1C9771BE /* RCT-Folly.release.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; ARCHS = "$(ARCHS_STANDARD_64_BIT)"; - CLANG_ENABLE_OBJC_WEAK = NO; "CODE_SIGN_IDENTITY[sdk=appletvos*]" = ""; "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = ""; "CODE_SIGN_IDENTITY[sdk=watchos*]" = ""; - GCC_PREFIX_HEADER = "Target Support Files/React-RCTVibration/React-RCTVibration-prefix.pch"; + GCC_PREFIX_HEADER = "Target Support Files/RCT-Folly/RCT-Folly-prefix.pch"; IPHONEOS_DEPLOYMENT_TARGET = 11.0; OTHER_LDFLAGS = ""; OTHER_LIBTOOLFLAGS = ""; PRIVATE_HEADERS_FOLDER_PATH = ""; - PRODUCT_MODULE_NAME = RCTVibration; - PRODUCT_NAME = "React-RCTVibration"; + PRODUCT_MODULE_NAME = folly; + PRODUCT_NAME = "RCT-Folly"; PUBLIC_HEADERS_FOLDER_PATH = ""; SDKROOT = iphoneos; SKIP_INSTALL = YES; SWIFT_ACTIVE_COMPILATION_CONDITIONS = "$(inherited) "; SWIFT_VERSION = 5.0; TARGETED_DEVICE_FAMILY = "1,2"; + VALIDATE_PRODUCT = YES; }; - name = Debug; + name = Release; }; - 46B30C33BF229B795F1901873B64A1C5 /* Debug */ = { + 4193DF6DE053075CEA0E2D949C6F9143 /* Debug */ = { isa = XCBuildConfiguration; - baseConfigurationReference = B7BBE31EBE16FD2D7953E7902D4D8227 /* react-native-notifications.debug.xcconfig */; + baseConfigurationReference = 3176AB3C86C5700B205948C24DBD3022 /* Pods-defaults-Rocket.Chat.debug.xcconfig */; buildSettings = { + ALWAYS_EMBED_SWIFT_STANDARD_LIBRARIES = NO; APPLICATION_EXTENSION_API_ONLY = NO; ARCHS = "$(ARCHS_STANDARD_64_BIT)"; + CLANG_ENABLE_OBJC_WEAK = NO; "CODE_SIGN_IDENTITY[sdk=appletvos*]" = ""; "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = ""; "CODE_SIGN_IDENTITY[sdk=watchos*]" = ""; - GCC_PREFIX_HEADER = "Target Support Files/react-native-notifications/react-native-notifications-prefix.pch"; IPHONEOS_DEPLOYMENT_TARGET = 11.0; + MACH_O_TYPE = staticlib; + MODULEMAP_FILE = "Target Support Files/Pods-defaults-Rocket.Chat/Pods-defaults-Rocket.Chat.modulemap"; OTHER_LDFLAGS = ""; OTHER_LIBTOOLFLAGS = ""; - PRIVATE_HEADERS_FOLDER_PATH = ""; - PRODUCT_MODULE_NAME = react_native_notifications; - PRODUCT_NAME = "react-native-notifications"; - PUBLIC_HEADERS_FOLDER_PATH = ""; + PODS_ROOT = "$(SRCROOT)"; + PRODUCT_BUNDLE_IDENTIFIER = "org.cocoapods.${PRODUCT_NAME:rfc1034identifier}"; SDKROOT = iphoneos; SKIP_INSTALL = YES; - SWIFT_ACTIVE_COMPILATION_CONDITIONS = "$(inherited) "; - SWIFT_VERSION = 5.0; TARGETED_DEVICE_FAMILY = "1,2"; }; name = Debug; }; - 496CE5CB645BE6032E5C5D35E7868A96 /* Debug */ = { + 4196DE35CAD463258426CDBC8A8080B4 /* Debug */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 2D34C1E13A0B82E82411A8B80CF5E46E /* react-native-blur.debug.xcconfig */; + baseConfigurationReference = EDA7F183AB9627613CBA33BB54C3CE2B /* react-native-jitsi-meet.debug.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; 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-blur/react-native-blur-prefix.pch"; + GCC_PREFIX_HEADER = "Target Support Files/react-native-jitsi-meet/react-native-jitsi-meet-prefix.pch"; IPHONEOS_DEPLOYMENT_TARGET = 11.0; OTHER_LDFLAGS = ""; OTHER_LIBTOOLFLAGS = ""; PRIVATE_HEADERS_FOLDER_PATH = ""; - PRODUCT_MODULE_NAME = react_native_blur; - PRODUCT_NAME = "react-native-blur"; + PRODUCT_MODULE_NAME = react_native_jitsi_meet; + PRODUCT_NAME = "react-native-jitsi-meet"; PUBLIC_HEADERS_FOLDER_PATH = ""; SDKROOT = iphoneos; SKIP_INSTALL = YES; @@ -37470,22 +36872,23 @@ }; name = Debug; }; - 49AF3D2AC5032C0B463A1DAA676A6871 /* Release */ = { + 43006AD3CA2B3CDC0ED6122642692885 /* Release */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 03949BD4B944E1B14997B7B0B5D7F1F2 /* MMKVCore.release.xcconfig */; + baseConfigurationReference = 79625021B0DFD25538F8E31951109A1F /* EXVideoThumbnails.release.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; ARCHS = "$(ARCHS_STANDARD_64_BIT)"; + CLANG_ENABLE_OBJC_WEAK = NO; "CODE_SIGN_IDENTITY[sdk=appletvos*]" = ""; "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = ""; "CODE_SIGN_IDENTITY[sdk=watchos*]" = ""; - GCC_PREFIX_HEADER = "Target Support Files/MMKVCore/MMKVCore-prefix.pch"; + GCC_PREFIX_HEADER = "Target Support Files/EXVideoThumbnails/EXVideoThumbnails-prefix.pch"; IPHONEOS_DEPLOYMENT_TARGET = 11.0; OTHER_LDFLAGS = ""; OTHER_LIBTOOLFLAGS = ""; PRIVATE_HEADERS_FOLDER_PATH = ""; - PRODUCT_MODULE_NAME = MMKVCore; - PRODUCT_NAME = MMKVCore; + PRODUCT_MODULE_NAME = EXVideoThumbnails; + PRODUCT_NAME = EXVideoThumbnails; PUBLIC_HEADERS_FOLDER_PATH = ""; SDKROOT = iphoneos; SKIP_INSTALL = YES; @@ -37496,21 +36899,22 @@ }; name = Release; }; - 4A205BA346EFFD8B46CF5BDCA7AD0D00 /* Release */ = { + 452A6A33E111B1718D3C3EA700068412 /* Release */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 1AB2709DA658997009EE4C33507AAC44 /* FirebaseCrashlytics.release.xcconfig */; + baseConfigurationReference = F1F27BC5355EB19D783DF12333EAC71E /* RNCPicker.release.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; 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/RNCPicker/RNCPicker-prefix.pch"; IPHONEOS_DEPLOYMENT_TARGET = 11.0; OTHER_LDFLAGS = ""; OTHER_LIBTOOLFLAGS = ""; PRIVATE_HEADERS_FOLDER_PATH = ""; - PRODUCT_MODULE_NAME = FirebaseCrashlytics; - PRODUCT_NAME = FirebaseCrashlytics; + PRODUCT_MODULE_NAME = RNCPicker; + PRODUCT_NAME = RNCPicker; PUBLIC_HEADERS_FOLDER_PATH = ""; SDKROOT = iphoneos; SKIP_INSTALL = YES; @@ -37521,105 +36925,83 @@ }; name = Release; }; - 4B80C0B6B88DC847BD605C9572BAB5DE /* Release */ = { + 463D28A37760D1096C818B244DD73341 /* Debug */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 1BD2D2A94E724B03DE3F8DF09C6C406D /* RNBootSplash.release.xcconfig */; + baseConfigurationReference = 60DDB2D8A7AAAB3AB85F270C830E80EA /* RNFBAnalytics.debug.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; 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/RNBootSplash/RNBootSplash-prefix.pch"; + GCC_PREFIX_HEADER = "Target Support Files/RNFBAnalytics/RNFBAnalytics-prefix.pch"; IPHONEOS_DEPLOYMENT_TARGET = 11.0; OTHER_LDFLAGS = ""; OTHER_LIBTOOLFLAGS = ""; PRIVATE_HEADERS_FOLDER_PATH = ""; - PRODUCT_MODULE_NAME = RNBootSplash; - PRODUCT_NAME = RNBootSplash; + PRODUCT_MODULE_NAME = RNFBAnalytics; + PRODUCT_NAME = RNFBAnalytics; 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; + name = Debug; }; - 4BA7314297F52E6540B1DD6B034FA0B6 /* Release */ = { + 46B30C33BF229B795F1901873B64A1C5 /* Debug */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 220F7A02C50FD642BCE587FFBF9649EF /* react-native-simple-crypto.release.xcconfig */; + baseConfigurationReference = 8C3469C7C09277648D821CE8A98E3D1C /* react-native-notifications.debug.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; 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-simple-crypto/react-native-simple-crypto-prefix.pch"; + GCC_PREFIX_HEADER = "Target Support Files/react-native-notifications/react-native-notifications-prefix.pch"; IPHONEOS_DEPLOYMENT_TARGET = 11.0; - MODULEMAP_FILE = "Headers/Public/react_native_simple_crypto/react-native-simple-crypto.modulemap"; OTHER_LDFLAGS = ""; OTHER_LIBTOOLFLAGS = ""; PRIVATE_HEADERS_FOLDER_PATH = ""; - PRODUCT_MODULE_NAME = react_native_simple_crypto; - PRODUCT_NAME = "react-native-simple-crypto"; + PRODUCT_MODULE_NAME = react_native_notifications; + PRODUCT_NAME = "react-native-notifications"; 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; + name = Debug; }; - 4BAEBE893907B42B49B98DA02130D9EC /* Release */ = { + 47EB90E046D01069CC0567EE78271B0F /* Debug */ = { isa = XCBuildConfiguration; - baseConfigurationReference = F61AC29A434D8AD3AA33C42765183FBD /* Flipper-RSocket.release.xcconfig */; + baseConfigurationReference = 51409E6C143CBD10A7022D181AD05C97 /* FirebaseInstallations.debug.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; ARCHS = "$(ARCHS_STANDARD_64_BIT)"; - CLANG_ENABLE_OBJC_WEAK = NO; "CODE_SIGN_IDENTITY[sdk=appletvos*]" = ""; "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = ""; "CODE_SIGN_IDENTITY[sdk=watchos*]" = ""; - GCC_PREFIX_HEADER = "Target Support Files/Flipper-RSocket/Flipper-RSocket-prefix.pch"; IPHONEOS_DEPLOYMENT_TARGET = 11.0; OTHER_LDFLAGS = ""; OTHER_LIBTOOLFLAGS = ""; PRIVATE_HEADERS_FOLDER_PATH = ""; - PRODUCT_MODULE_NAME = RSocket; - PRODUCT_NAME = "Flipper-RSocket"; + PRODUCT_MODULE_NAME = FirebaseInstallations; + PRODUCT_NAME = FirebaseInstallations; 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; - }; - 4CE310FACCB164E1FB338129A9078F9C /* Debug */ = { - isa = XCBuildConfiguration; - baseConfigurationReference = 9F857244E538483C660C5D21E4A4E1C4 /* UMSensorsInterface.debug.xcconfig */; - buildSettings = { - APPLICATION_EXTENSION_API_ONLY = NO; - ARCHS = "$(ARCHS_STANDARD_64_BIT)"; - ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon; - ASSETCATALOG_COMPILER_GLOBAL_ACCENT_COLOR_NAME = AccentColor; - CLANG_ENABLE_OBJC_WEAK = NO; - IPHONEOS_DEPLOYMENT_TARGET = 11.0; - LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks"; - SDKROOT = iphoneos; - TARGETED_DEVICE_FAMILY = "1,2"; }; name = Debug; }; - 4D9FFA4CA17A3D542C4A55A820DD6B47 /* Debug */ = { + 486CE38634F44FFDF2879D0FB2722A03 /* Debug */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 5EDE4B6188274A04D1D48E9D069863FC /* UMCameraInterface.debug.xcconfig */; + baseConfigurationReference = 03F1B16F5C52E58157189895CFC877AE /* React-RCTActionSheet.debug.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; ARCHS = "$(ARCHS_STANDARD_64_BIT)"; @@ -37633,49 +37015,48 @@ }; name = Debug; }; - 4DBCE360C534E754DD9273611AF0920E /* Release */ = { + 488B36AF7B7D2B0F02B526BEA6C9AB4F /* Debug */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 4A94AB5BC9695876728A55E9BC8E5E72 /* RNConfigReader.release.xcconfig */; + baseConfigurationReference = 4387D421C90A12EC6C311817E26C3F08 /* RCTTypeSafety.debug.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; ARCHS = "$(ARCHS_STANDARD_64_BIT)"; + CLANG_ENABLE_OBJC_WEAK = NO; "CODE_SIGN_IDENTITY[sdk=appletvos*]" = ""; "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = ""; "CODE_SIGN_IDENTITY[sdk=watchos*]" = ""; - GCC_PREFIX_HEADER = "Target Support Files/RNConfigReader/RNConfigReader-prefix.pch"; + GCC_PREFIX_HEADER = "Target Support Files/RCTTypeSafety/RCTTypeSafety-prefix.pch"; IPHONEOS_DEPLOYMENT_TARGET = 11.0; OTHER_LDFLAGS = ""; OTHER_LIBTOOLFLAGS = ""; PRIVATE_HEADERS_FOLDER_PATH = ""; - PRODUCT_MODULE_NAME = RNConfigReader; - PRODUCT_NAME = RNConfigReader; + PRODUCT_MODULE_NAME = RCTTypeSafety; + PRODUCT_NAME = RCTTypeSafety; 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; + name = Debug; }; - 4E226DA299DFF04F575B2D296E871211 /* Debug */ = { + 496CE5CB645BE6032E5C5D35E7868A96 /* Debug */ = { isa = XCBuildConfiguration; - baseConfigurationReference = E38C1AE8DEA5B9BE757563C6DE252B33 /* React-RCTImage.debug.xcconfig */; + baseConfigurationReference = 5EF18B72048676534829D2B5295CEF97 /* react-native-blur.debug.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; ARCHS = "$(ARCHS_STANDARD_64_BIT)"; - CLANG_ENABLE_OBJC_WEAK = NO; "CODE_SIGN_IDENTITY[sdk=appletvos*]" = ""; "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = ""; "CODE_SIGN_IDENTITY[sdk=watchos*]" = ""; - GCC_PREFIX_HEADER = "Target Support Files/React-RCTImage/React-RCTImage-prefix.pch"; + GCC_PREFIX_HEADER = "Target Support Files/react-native-blur/react-native-blur-prefix.pch"; IPHONEOS_DEPLOYMENT_TARGET = 11.0; OTHER_LDFLAGS = ""; OTHER_LIBTOOLFLAGS = ""; PRIVATE_HEADERS_FOLDER_PATH = ""; - PRODUCT_MODULE_NAME = RCTImage; - PRODUCT_NAME = "React-RCTImage"; + PRODUCT_MODULE_NAME = react_native_blur; + PRODUCT_NAME = "react-native-blur"; PUBLIC_HEADERS_FOLDER_PATH = ""; SDKROOT = iphoneos; SKIP_INSTALL = YES; @@ -37685,47 +37066,38 @@ }; name = Debug; }; - 4E54B3FAAE249652B3A60E4A21D8A3C6 /* Debug */ = { + 4A0B31ED115E59BCB173ECFA4032A524 /* Release */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 6B51ED28BE9F80874D2FED1984B9BD21 /* RNFBAnalytics.debug.xcconfig */; + baseConfigurationReference = 6316F196F3F7655EE41C4A58B127B152 /* OpenSSL-Universal.release.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; 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/RNFBAnalytics/RNFBAnalytics-prefix.pch"; + ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon; + ASSETCATALOG_COMPILER_GLOBAL_ACCENT_COLOR_NAME = AccentColor; IPHONEOS_DEPLOYMENT_TARGET = 11.0; - OTHER_LDFLAGS = ""; - OTHER_LIBTOOLFLAGS = ""; - PRIVATE_HEADERS_FOLDER_PATH = ""; - PRODUCT_MODULE_NAME = RNFBAnalytics; - PRODUCT_NAME = RNFBAnalytics; - PUBLIC_HEADERS_FOLDER_PATH = ""; + LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks"; SDKROOT = iphoneos; - SKIP_INSTALL = YES; - SWIFT_ACTIVE_COMPILATION_CONDITIONS = "$(inherited) "; - SWIFT_VERSION = 5.0; TARGETED_DEVICE_FAMILY = "1,2"; + VALIDATE_PRODUCT = YES; }; - name = Debug; + name = Release; }; - 4FEF1549FF187DEBD3B75F0CD911E86F /* Release */ = { + 4B80C0B6B88DC847BD605C9572BAB5DE /* Release */ = { isa = XCBuildConfiguration; - baseConfigurationReference = DECD7F61EE2634B152C7B32EF629DCEB /* react-native-notifications.release.xcconfig */; + baseConfigurationReference = 00DA78C61B87958A350C03ABF4BF8A97 /* RNBootSplash.release.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; 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-notifications/react-native-notifications-prefix.pch"; + GCC_PREFIX_HEADER = "Target Support Files/RNBootSplash/RNBootSplash-prefix.pch"; IPHONEOS_DEPLOYMENT_TARGET = 11.0; OTHER_LDFLAGS = ""; OTHER_LIBTOOLFLAGS = ""; PRIVATE_HEADERS_FOLDER_PATH = ""; - PRODUCT_MODULE_NAME = react_native_notifications; - PRODUCT_NAME = "react-native-notifications"; + PRODUCT_MODULE_NAME = RNBootSplash; + PRODUCT_NAME = RNBootSplash; PUBLIC_HEADERS_FOLDER_PATH = ""; SDKROOT = iphoneos; SKIP_INSTALL = YES; @@ -37736,23 +37108,23 @@ }; name = Release; }; - 5063E44E6EAC2B0DE076A3046365F203 /* Release */ = { + 4BA7314297F52E6540B1DD6B034FA0B6 /* Release */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 678C3CA52E8662BB138C894265599275 /* React-RCTSettings.release.xcconfig */; + baseConfigurationReference = 56846E9A604F2FE785A9DAB2C4ECB80B /* react-native-simple-crypto.release.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; ARCHS = "$(ARCHS_STANDARD_64_BIT)"; - CLANG_ENABLE_OBJC_WEAK = NO; "CODE_SIGN_IDENTITY[sdk=appletvos*]" = ""; "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = ""; "CODE_SIGN_IDENTITY[sdk=watchos*]" = ""; - GCC_PREFIX_HEADER = "Target Support Files/React-RCTSettings/React-RCTSettings-prefix.pch"; + GCC_PREFIX_HEADER = "Target Support Files/react-native-simple-crypto/react-native-simple-crypto-prefix.pch"; IPHONEOS_DEPLOYMENT_TARGET = 11.0; + MODULEMAP_FILE = "Headers/Public/react_native_simple_crypto/react-native-simple-crypto.modulemap"; OTHER_LDFLAGS = ""; OTHER_LIBTOOLFLAGS = ""; PRIVATE_HEADERS_FOLDER_PATH = ""; - PRODUCT_MODULE_NAME = RCTSettings; - PRODUCT_NAME = "React-RCTSettings"; + PRODUCT_MODULE_NAME = react_native_simple_crypto; + PRODUCT_NAME = "react-native-simple-crypto"; PUBLIC_HEADERS_FOLDER_PATH = ""; SDKROOT = iphoneos; SKIP_INSTALL = YES; @@ -37763,66 +37135,98 @@ }; name = Release; }; - 51CE9219F7798137B4490C849B67BBD3 /* Debug */ = { + 4CE310FACCB164E1FB338129A9078F9C /* Debug */ = { + isa = XCBuildConfiguration; + baseConfigurationReference = 509F97C80AD0476E4185EEB1FC37518D /* UMSensorsInterface.debug.xcconfig */; + buildSettings = { + APPLICATION_EXTENSION_API_ONLY = NO; + ARCHS = "$(ARCHS_STANDARD_64_BIT)"; + ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon; + ASSETCATALOG_COMPILER_GLOBAL_ACCENT_COLOR_NAME = AccentColor; + CLANG_ENABLE_OBJC_WEAK = NO; + IPHONEOS_DEPLOYMENT_TARGET = 11.0; + LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks"; + SDKROOT = iphoneos; + TARGETED_DEVICE_FAMILY = "1,2"; + }; + name = Debug; + }; + 4D9FFA4CA17A3D542C4A55A820DD6B47 /* Debug */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 8615DB1436F8371A8275C4ACBDA47BFC /* React-RCTNetwork.debug.xcconfig */; + baseConfigurationReference = 3DD774C93B66738489E43B1BB2607D8C /* UMCameraInterface.debug.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; ARCHS = "$(ARCHS_STANDARD_64_BIT)"; + ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon; + ASSETCATALOG_COMPILER_GLOBAL_ACCENT_COLOR_NAME = AccentColor; CLANG_ENABLE_OBJC_WEAK = NO; + IPHONEOS_DEPLOYMENT_TARGET = 11.0; + LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks"; + SDKROOT = iphoneos; + TARGETED_DEVICE_FAMILY = "1,2"; + }; + name = Debug; + }; + 4DBCE360C534E754DD9273611AF0920E /* Release */ = { + isa = XCBuildConfiguration; + baseConfigurationReference = D9E95C9FB67C54EC47F46C3719C4981F /* RNConfigReader.release.xcconfig */; + buildSettings = { + APPLICATION_EXTENSION_API_ONLY = NO; + 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-RCTNetwork/React-RCTNetwork-prefix.pch"; + GCC_PREFIX_HEADER = "Target Support Files/RNConfigReader/RNConfigReader-prefix.pch"; IPHONEOS_DEPLOYMENT_TARGET = 11.0; OTHER_LDFLAGS = ""; OTHER_LIBTOOLFLAGS = ""; PRIVATE_HEADERS_FOLDER_PATH = ""; - PRODUCT_MODULE_NAME = RCTNetwork; - PRODUCT_NAME = "React-RCTNetwork"; + PRODUCT_MODULE_NAME = RNConfigReader; + PRODUCT_NAME = RNConfigReader; PUBLIC_HEADERS_FOLDER_PATH = ""; SDKROOT = iphoneos; SKIP_INSTALL = YES; SWIFT_ACTIVE_COMPILATION_CONDITIONS = "$(inherited) "; SWIFT_VERSION = 5.0; TARGETED_DEVICE_FAMILY = "1,2"; + VALIDATE_PRODUCT = YES; }; - name = Debug; + name = Release; }; - 54DA5EA8201F8CE46653A2027CE70573 /* Debug */ = { + 4FEF1549FF187DEBD3B75F0CD911E86F /* Release */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 82746B65ADB874980B643F7D6A9EACA4 /* react-native-mmkv-storage.debug.xcconfig */; + baseConfigurationReference = C4946950FF904051FEE051239C0735EB /* react-native-notifications.release.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; 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-mmkv-storage/react-native-mmkv-storage-prefix.pch"; + GCC_PREFIX_HEADER = "Target Support Files/react-native-notifications/react-native-notifications-prefix.pch"; IPHONEOS_DEPLOYMENT_TARGET = 11.0; OTHER_LDFLAGS = ""; OTHER_LIBTOOLFLAGS = ""; PRIVATE_HEADERS_FOLDER_PATH = ""; - PRODUCT_MODULE_NAME = react_native_mmkv_storage; - PRODUCT_NAME = "react-native-mmkv-storage"; + PRODUCT_MODULE_NAME = react_native_notifications; + PRODUCT_NAME = "react-native-notifications"; PUBLIC_HEADERS_FOLDER_PATH = ""; SDKROOT = iphoneos; SKIP_INSTALL = YES; SWIFT_ACTIVE_COMPILATION_CONDITIONS = "$(inherited) "; SWIFT_VERSION = 5.0; TARGETED_DEVICE_FAMILY = "1,2"; + VALIDATE_PRODUCT = YES; }; - name = Debug; + name = Release; }; - 5525D3CCFD88208DDB4EE909DB568F46 /* Debug */ = { + 51248C4B2F86593D232416FDEC545F72 /* Debug */ = { isa = XCBuildConfiguration; - baseConfigurationReference = E0017F1443C3D35518E942C0337D1FDD /* UMFileSystemInterface.debug.xcconfig */; + baseConfigurationReference = 3F5C0F96BF99FF667B0CD900AB12B4F5 /* FirebaseAnalytics.debug.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; ARCHS = "$(ARCHS_STANDARD_64_BIT)"; ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon; ASSETCATALOG_COMPILER_GLOBAL_ACCENT_COLOR_NAME = AccentColor; - CLANG_ENABLE_OBJC_WEAK = NO; IPHONEOS_DEPLOYMENT_TARGET = 11.0; LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks"; SDKROOT = iphoneos; @@ -37830,9 +37234,9 @@ }; name = Debug; }; - 5553503DC436EDF232694A283C1C19E4 /* Debug */ = { + 51978940914B69932F8BE09646F0B364 /* Debug */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 828CB40D123F17957991467978968C8E /* glog.debug.xcconfig */; + baseConfigurationReference = 12D0CAC905F86FBBA072F2413D3853DB /* React-RCTVibration.debug.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; ARCHS = "$(ARCHS_STANDARD_64_BIT)"; @@ -37840,13 +37244,13 @@ "CODE_SIGN_IDENTITY[sdk=appletvos*]" = ""; "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = ""; "CODE_SIGN_IDENTITY[sdk=watchos*]" = ""; - GCC_PREFIX_HEADER = "Target Support Files/glog/glog-prefix.pch"; + GCC_PREFIX_HEADER = "Target Support Files/React-RCTVibration/React-RCTVibration-prefix.pch"; IPHONEOS_DEPLOYMENT_TARGET = 11.0; OTHER_LDFLAGS = ""; OTHER_LIBTOOLFLAGS = ""; PRIVATE_HEADERS_FOLDER_PATH = ""; - PRODUCT_MODULE_NAME = glog; - PRODUCT_NAME = glog; + PRODUCT_MODULE_NAME = RCTVibration; + PRODUCT_NAME = "React-RCTVibration"; PUBLIC_HEADERS_FOLDER_PATH = ""; SDKROOT = iphoneos; SKIP_INSTALL = YES; @@ -37856,9 +37260,9 @@ }; name = Debug; }; - 577050D7FC9A99E17F5319793586264B /* Debug */ = { + 5332DD392F916314C40EA98B9878C951 /* Debug */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 4DA79D93AE2E4975346F958D50E1974B /* ReactCommon.debug.xcconfig */; + baseConfigurationReference = 04FE1C48C270E5E94A361C0453358D2A /* Flipper-Folly.debug.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; ARCHS = "$(ARCHS_STANDARD_64_BIT)"; @@ -37866,13 +37270,13 @@ "CODE_SIGN_IDENTITY[sdk=appletvos*]" = ""; "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = ""; "CODE_SIGN_IDENTITY[sdk=watchos*]" = ""; - GCC_PREFIX_HEADER = "Target Support Files/ReactCommon/ReactCommon-prefix.pch"; + GCC_PREFIX_HEADER = "Target Support Files/Flipper-Folly/Flipper-Folly-prefix.pch"; IPHONEOS_DEPLOYMENT_TARGET = 11.0; OTHER_LDFLAGS = ""; OTHER_LIBTOOLFLAGS = ""; PRIVATE_HEADERS_FOLDER_PATH = ""; - PRODUCT_MODULE_NAME = ReactCommon; - PRODUCT_NAME = ReactCommon; + PRODUCT_MODULE_NAME = folly; + PRODUCT_NAME = "Flipper-Folly"; PUBLIC_HEADERS_FOLDER_PATH = ""; SDKROOT = iphoneos; SKIP_INSTALL = YES; @@ -37882,36 +37286,34 @@ }; name = Debug; }; - 57B656256E59CE6A3B384FD16049A754 /* Release */ = { + 54DA5EA8201F8CE46653A2027CE70573 /* Debug */ = { isa = XCBuildConfiguration; - baseConfigurationReference = E311AF75C55D8D925493BFE2F1C09138 /* EXImageLoader.release.xcconfig */; + baseConfigurationReference = F2B3121FD47DE568876878DCEC983EA6 /* react-native-mmkv-storage.debug.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; ARCHS = "$(ARCHS_STANDARD_64_BIT)"; - CLANG_ENABLE_OBJC_WEAK = NO; "CODE_SIGN_IDENTITY[sdk=appletvos*]" = ""; "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = ""; "CODE_SIGN_IDENTITY[sdk=watchos*]" = ""; - GCC_PREFIX_HEADER = "Target Support Files/EXImageLoader/EXImageLoader-prefix.pch"; + GCC_PREFIX_HEADER = "Target Support Files/react-native-mmkv-storage/react-native-mmkv-storage-prefix.pch"; IPHONEOS_DEPLOYMENT_TARGET = 11.0; OTHER_LDFLAGS = ""; OTHER_LIBTOOLFLAGS = ""; PRIVATE_HEADERS_FOLDER_PATH = ""; - PRODUCT_MODULE_NAME = EXImageLoader; - PRODUCT_NAME = EXImageLoader; + PRODUCT_MODULE_NAME = react_native_mmkv_storage; + PRODUCT_NAME = "react-native-mmkv-storage"; 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; + name = Debug; }; - 59B3B11861976E122ACB260DD6540727 /* Debug */ = { + 571D6095462C761D861F4C6D5D0178EE /* Release */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 00FB9E7D2F9A485D27C21E89AFFBDDDD /* Yoga.debug.xcconfig */; + baseConfigurationReference = 872622AD9816DC9AA672A56FE3022EA4 /* React-jsi.release.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; ARCHS = "$(ARCHS_STANDARD_64_BIT)"; @@ -37919,39 +37321,40 @@ "CODE_SIGN_IDENTITY[sdk=appletvos*]" = ""; "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = ""; "CODE_SIGN_IDENTITY[sdk=watchos*]" = ""; - GCC_PREFIX_HEADER = "Target Support Files/Yoga/Yoga-prefix.pch"; + GCC_PREFIX_HEADER = "Target Support Files/React-jsi/React-jsi-prefix.pch"; IPHONEOS_DEPLOYMENT_TARGET = 11.0; - MODULEMAP_FILE = Headers/Public/yoga/Yoga.modulemap; OTHER_LDFLAGS = ""; OTHER_LIBTOOLFLAGS = ""; PRIVATE_HEADERS_FOLDER_PATH = ""; - PRODUCT_MODULE_NAME = yoga; - PRODUCT_NAME = Yoga; + PRODUCT_MODULE_NAME = jsi; + PRODUCT_NAME = "React-jsi"; PUBLIC_HEADERS_FOLDER_PATH = ""; SDKROOT = iphoneos; SKIP_INSTALL = YES; SWIFT_ACTIVE_COMPILATION_CONDITIONS = "$(inherited) "; SWIFT_VERSION = 5.0; TARGETED_DEVICE_FAMILY = "1,2"; + VALIDATE_PRODUCT = YES; }; - name = Debug; + name = Release; }; - 59C351BC0241061C2F886AA3809DC8E3 /* Debug */ = { + 579459AD8545A6E96C4F1D58724917F6 /* Debug */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 3D6A39C11AB41732F04B5DCBC4C192D1 /* react-native-cookies.debug.xcconfig */; + baseConfigurationReference = 9E90C46615F70ECF98722F3F47553119 /* Flipper-RSocket.debug.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; ARCHS = "$(ARCHS_STANDARD_64_BIT)"; + CLANG_ENABLE_OBJC_WEAK = NO; "CODE_SIGN_IDENTITY[sdk=appletvos*]" = ""; "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = ""; "CODE_SIGN_IDENTITY[sdk=watchos*]" = ""; - GCC_PREFIX_HEADER = "Target Support Files/react-native-cookies/react-native-cookies-prefix.pch"; + GCC_PREFIX_HEADER = "Target Support Files/Flipper-RSocket/Flipper-RSocket-prefix.pch"; IPHONEOS_DEPLOYMENT_TARGET = 11.0; OTHER_LDFLAGS = ""; OTHER_LIBTOOLFLAGS = ""; PRIVATE_HEADERS_FOLDER_PATH = ""; - PRODUCT_MODULE_NAME = react_native_cookies; - PRODUCT_NAME = "react-native-cookies"; + PRODUCT_MODULE_NAME = RSocket; + PRODUCT_NAME = "Flipper-RSocket"; PUBLIC_HEADERS_FOLDER_PATH = ""; SDKROOT = iphoneos; SKIP_INSTALL = YES; @@ -37961,42 +37364,9 @@ }; name = Debug; }; - 5B5773DDB035D2B5B24C7C4AC38E9D15 /* Release */ = { - isa = XCBuildConfiguration; - baseConfigurationReference = 7882F64290BD38F9E125BF84409F74A5 /* UMBarCodeScannerInterface.release.xcconfig */; - buildSettings = { - APPLICATION_EXTENSION_API_ONLY = NO; - ARCHS = "$(ARCHS_STANDARD_64_BIT)"; - ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon; - ASSETCATALOG_COMPILER_GLOBAL_ACCENT_COLOR_NAME = AccentColor; - CLANG_ENABLE_OBJC_WEAK = NO; - IPHONEOS_DEPLOYMENT_TARGET = 11.0; - LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks"; - SDKROOT = iphoneos; - TARGETED_DEVICE_FAMILY = "1,2"; - VALIDATE_PRODUCT = YES; - }; - name = Release; - }; - 5BC025368D39779C584C5D371E177434 /* Debug */ = { - isa = XCBuildConfiguration; - baseConfigurationReference = 6F202CC58071BB662983E064EB4D8F0C /* React-RCTActionSheet.debug.xcconfig */; - buildSettings = { - APPLICATION_EXTENSION_API_ONLY = NO; - ARCHS = "$(ARCHS_STANDARD_64_BIT)"; - ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon; - ASSETCATALOG_COMPILER_GLOBAL_ACCENT_COLOR_NAME = AccentColor; - CLANG_ENABLE_OBJC_WEAK = NO; - IPHONEOS_DEPLOYMENT_TARGET = 11.0; - LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks"; - SDKROOT = iphoneos; - TARGETED_DEVICE_FAMILY = "1,2"; - }; - name = Debug; - }; - 5C9DCA5986F165F85B9C73EEE9393D01 /* Debug */ = { + 57B656256E59CE6A3B384FD16049A754 /* Release */ = { isa = XCBuildConfiguration; - baseConfigurationReference = F5771F51BE8367D62CF31BCD2A4FEB67 /* UMPermissionsInterface.debug.xcconfig */; + baseConfigurationReference = 4BF3B420A604629A007FB24188AE3F73 /* EXImageLoader.release.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; ARCHS = "$(ARCHS_STANDARD_64_BIT)"; @@ -38004,51 +37374,51 @@ "CODE_SIGN_IDENTITY[sdk=appletvos*]" = ""; "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = ""; "CODE_SIGN_IDENTITY[sdk=watchos*]" = ""; - GCC_PREFIX_HEADER = "Target Support Files/UMPermissionsInterface/UMPermissionsInterface-prefix.pch"; + GCC_PREFIX_HEADER = "Target Support Files/EXImageLoader/EXImageLoader-prefix.pch"; IPHONEOS_DEPLOYMENT_TARGET = 11.0; OTHER_LDFLAGS = ""; OTHER_LIBTOOLFLAGS = ""; PRIVATE_HEADERS_FOLDER_PATH = ""; - PRODUCT_MODULE_NAME = UMPermissionsInterface; - PRODUCT_NAME = UMPermissionsInterface; + PRODUCT_MODULE_NAME = EXImageLoader; + PRODUCT_NAME = EXImageLoader; PUBLIC_HEADERS_FOLDER_PATH = ""; SDKROOT = iphoneos; SKIP_INSTALL = YES; SWIFT_ACTIVE_COMPILATION_CONDITIONS = "$(inherited) "; SWIFT_VERSION = 5.0; TARGETED_DEVICE_FAMILY = "1,2"; + VALIDATE_PRODUCT = YES; }; - name = Debug; + name = Release; }; - 5E123D63F0A8C1049F25CF752156D71E /* Debug */ = { + 582BDE4032E8CE0464207FC218DC39AF /* Release */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 86D9281E1BAC373B598A7CD54FB33844 /* Flipper-RSocket.debug.xcconfig */; + baseConfigurationReference = 43D7B64570C40DF6E8433A263BC61A23 /* FirebaseInstallations.release.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; ARCHS = "$(ARCHS_STANDARD_64_BIT)"; - CLANG_ENABLE_OBJC_WEAK = NO; "CODE_SIGN_IDENTITY[sdk=appletvos*]" = ""; "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = ""; "CODE_SIGN_IDENTITY[sdk=watchos*]" = ""; - GCC_PREFIX_HEADER = "Target Support Files/Flipper-RSocket/Flipper-RSocket-prefix.pch"; IPHONEOS_DEPLOYMENT_TARGET = 11.0; OTHER_LDFLAGS = ""; OTHER_LIBTOOLFLAGS = ""; PRIVATE_HEADERS_FOLDER_PATH = ""; - PRODUCT_MODULE_NAME = RSocket; - PRODUCT_NAME = "Flipper-RSocket"; + PRODUCT_MODULE_NAME = FirebaseInstallations; + PRODUCT_NAME = FirebaseInstallations; PUBLIC_HEADERS_FOLDER_PATH = ""; SDKROOT = iphoneos; SKIP_INSTALL = YES; SWIFT_ACTIVE_COMPILATION_CONDITIONS = "$(inherited) "; SWIFT_VERSION = 5.0; TARGETED_DEVICE_FAMILY = "1,2"; + VALIDATE_PRODUCT = YES; }; - name = Debug; + name = Release; }; - 5FFD4C9ED9B3D24971238570771D92E8 /* Release */ = { + 591E98E8C2CF846C1C17818A55BD6CF2 /* Debug */ = { isa = XCBuildConfiguration; - baseConfigurationReference = FD2A557AEB83B8CC073A1184AB31527D /* nanopb.release.xcconfig */; + baseConfigurationReference = 36101CE4DF5445830E80F949F70A8DAF /* libevent.debug.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; ARCHS = "$(ARCHS_STANDARD_64_BIT)"; @@ -38056,40 +37426,38 @@ "CODE_SIGN_IDENTITY[sdk=appletvos*]" = ""; "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = ""; "CODE_SIGN_IDENTITY[sdk=watchos*]" = ""; - GCC_PREFIX_HEADER = "Target Support Files/nanopb/nanopb-prefix.pch"; + GCC_PREFIX_HEADER = "Target Support Files/libevent/libevent-prefix.pch"; IPHONEOS_DEPLOYMENT_TARGET = 11.0; OTHER_LDFLAGS = ""; OTHER_LIBTOOLFLAGS = ""; PRIVATE_HEADERS_FOLDER_PATH = ""; - PRODUCT_MODULE_NAME = nanopb; - PRODUCT_NAME = nanopb; + PRODUCT_MODULE_NAME = libevent; + PRODUCT_NAME = libevent; 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; + name = Debug; }; - 600D94FEDDAEF18C363F863141AF9093 /* Debug */ = { + 59C351BC0241061C2F886AA3809DC8E3 /* Debug */ = { isa = XCBuildConfiguration; - baseConfigurationReference = B7D3AEE78A9732BA1D67DD3282B58E05 /* Flipper-Folly.debug.xcconfig */; + baseConfigurationReference = 7F5F335AED02AB00E6BA5CD38E351C8C /* react-native-cookies.debug.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; ARCHS = "$(ARCHS_STANDARD_64_BIT)"; - CLANG_ENABLE_OBJC_WEAK = NO; "CODE_SIGN_IDENTITY[sdk=appletvos*]" = ""; "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = ""; "CODE_SIGN_IDENTITY[sdk=watchos*]" = ""; - GCC_PREFIX_HEADER = "Target Support Files/Flipper-Folly/Flipper-Folly-prefix.pch"; + GCC_PREFIX_HEADER = "Target Support Files/react-native-cookies/react-native-cookies-prefix.pch"; IPHONEOS_DEPLOYMENT_TARGET = 11.0; OTHER_LDFLAGS = ""; OTHER_LIBTOOLFLAGS = ""; PRIVATE_HEADERS_FOLDER_PATH = ""; - PRODUCT_MODULE_NAME = folly; - PRODUCT_NAME = "Flipper-Folly"; + PRODUCT_MODULE_NAME = react_native_cookies; + PRODUCT_NAME = "react-native-cookies"; PUBLIC_HEADERS_FOLDER_PATH = ""; SDKROOT = iphoneos; SKIP_INSTALL = YES; @@ -38099,14 +37467,15 @@ }; name = Debug; }; - 62DE9103869B552445834F7265CA147C /* Release */ = { + 5B5773DDB035D2B5B24C7C4AC38E9D15 /* Release */ = { isa = XCBuildConfiguration; - baseConfigurationReference = E5164A0041888D02D9F6B0521C7C8880 /* FirebaseAnalytics.release.xcconfig */; + baseConfigurationReference = 436D5E66CE980710C42CC88D6709A5C8 /* UMBarCodeScannerInterface.release.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; ARCHS = "$(ARCHS_STANDARD_64_BIT)"; ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon; ASSETCATALOG_COMPILER_GLOBAL_ACCENT_COLOR_NAME = AccentColor; + CLANG_ENABLE_OBJC_WEAK = NO; IPHONEOS_DEPLOYMENT_TARGET = 11.0; LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks"; SDKROOT = iphoneos; @@ -38115,22 +37484,38 @@ }; name = Release; }; - 63505259D5787D1AA34EDD533C0C5268 /* Release */ = { + 5BC0D493A8190EF09C7D99266AE8C535 /* Release */ = { + isa = XCBuildConfiguration; + baseConfigurationReference = 25AF37C756E35E2CD04A51728B71893D /* RNImageCropPicker.release.xcconfig */; + buildSettings = { + APPLICATION_EXTENSION_API_ONLY = NO; + CONFIGURATION_BUILD_DIR = "$(BUILD_DIR)/$(CONFIGURATION)$(EFFECTIVE_PLATFORM_NAME)/RNImageCropPicker"; + IBSC_MODULE = RNImageCropPicker; + INFOPLIST_FILE = "Target Support Files/RNImageCropPicker/ResourceBundle-QBImagePicker-RNImageCropPicker-Info.plist"; + IPHONEOS_DEPLOYMENT_TARGET = 11.0; + PRODUCT_NAME = QBImagePicker; + SDKROOT = iphoneos; + SKIP_INSTALL = YES; + TARGETED_DEVICE_FAMILY = "1,2"; + WRAPPER_EXTENSION = bundle; + }; + name = Release; + }; + 5EEAD030589D5B27676DC37C108711C8 /* Release */ = { isa = XCBuildConfiguration; - baseConfigurationReference = ABD3AC8515A557FDAD3B1D32F8F37F03 /* SDWebImageWebPCoder.release.xcconfig */; + baseConfigurationReference = 1CA40677AD993A6339DDD66C2E5F0124 /* GoogleDataTransport.release.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; 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/SDWebImageWebPCoder/SDWebImageWebPCoder-prefix.pch"; IPHONEOS_DEPLOYMENT_TARGET = 11.0; OTHER_LDFLAGS = ""; OTHER_LIBTOOLFLAGS = ""; PRIVATE_HEADERS_FOLDER_PATH = ""; - PRODUCT_MODULE_NAME = SDWebImageWebPCoder; - PRODUCT_NAME = SDWebImageWebPCoder; + PRODUCT_MODULE_NAME = GoogleDataTransport; + PRODUCT_NAME = GoogleDataTransport; PUBLIC_HEADERS_FOLDER_PATH = ""; SDKROOT = iphoneos; SKIP_INSTALL = YES; @@ -38141,22 +37526,40 @@ }; name = Release; }; - 63C09986E14FD76FD0B7D874D589A0AC /* Release */ = { + 5EF6CC037ACDC1E1E35991376F9DD144 /* Release */ = { isa = XCBuildConfiguration; - baseConfigurationReference = B180A30621C18D083C4C04ABBBD78726 /* libwebp.release.xcconfig */; + baseConfigurationReference = 07774C1286725FE266209BEA16EC979C /* React-Core.release.xcconfig */; + buildSettings = { + APPLICATION_EXTENSION_API_ONLY = NO; + CONFIGURATION_BUILD_DIR = "$(BUILD_DIR)/$(CONFIGURATION)$(EFFECTIVE_PLATFORM_NAME)/React-Core"; + IBSC_MODULE = React; + INFOPLIST_FILE = "Target Support Files/React-Core/ResourceBundle-AccessibilityResources-React-Core-Info.plist"; + IPHONEOS_DEPLOYMENT_TARGET = 11.0; + PRODUCT_NAME = AccessibilityResources; + SDKROOT = iphoneos; + SKIP_INSTALL = YES; + TARGETED_DEVICE_FAMILY = "1,2"; + WRAPPER_EXTENSION = bundle; + }; + name = Release; + }; + 6626E0DDF75356B939BB71211EC59DF0 /* Release */ = { + isa = XCBuildConfiguration; + baseConfigurationReference = 0CDFAA03E32CE9D6147ADCBA56E4876A /* EXKeepAwake.release.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; ARCHS = "$(ARCHS_STANDARD_64_BIT)"; + CLANG_ENABLE_OBJC_WEAK = NO; "CODE_SIGN_IDENTITY[sdk=appletvos*]" = ""; "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = ""; "CODE_SIGN_IDENTITY[sdk=watchos*]" = ""; - GCC_PREFIX_HEADER = "Target Support Files/libwebp/libwebp-prefix.pch"; + GCC_PREFIX_HEADER = "Target Support Files/EXKeepAwake/EXKeepAwake-prefix.pch"; IPHONEOS_DEPLOYMENT_TARGET = 11.0; OTHER_LDFLAGS = ""; OTHER_LIBTOOLFLAGS = ""; PRIVATE_HEADERS_FOLDER_PATH = ""; - PRODUCT_MODULE_NAME = libwebp; - PRODUCT_NAME = libwebp; + PRODUCT_MODULE_NAME = EXKeepAwake; + PRODUCT_NAME = EXKeepAwake; PUBLIC_HEADERS_FOLDER_PATH = ""; SDKROOT = iphoneos; SKIP_INSTALL = YES; @@ -38167,36 +37570,53 @@ }; name = Release; }; - 6456C7C94840F8F15C27F2F7FA4A7637 /* Release */ = { + 683CC73263523E33073FDDE04A8323D6 /* Release */ = { isa = XCBuildConfiguration; - baseConfigurationReference = C2D9F45693D8E29A6B33D948513BB8DE /* React-RCTVibration.release.xcconfig */; + baseConfigurationReference = 2ED5DDDAC4BBAAA67FE466A1082C95F5 /* YogaKit.release.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; ARCHS = "$(ARCHS_STANDARD_64_BIT)"; - CLANG_ENABLE_OBJC_WEAK = NO; "CODE_SIGN_IDENTITY[sdk=appletvos*]" = ""; "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = ""; "CODE_SIGN_IDENTITY[sdk=watchos*]" = ""; - GCC_PREFIX_HEADER = "Target Support Files/React-RCTVibration/React-RCTVibration-prefix.pch"; + GCC_PREFIX_HEADER = "Target Support Files/YogaKit/YogaKit-prefix.pch"; IPHONEOS_DEPLOYMENT_TARGET = 11.0; + MODULEMAP_FILE = Headers/Public/YogaKit/YogaKit.modulemap; OTHER_LDFLAGS = ""; OTHER_LIBTOOLFLAGS = ""; PRIVATE_HEADERS_FOLDER_PATH = ""; - PRODUCT_MODULE_NAME = RCTVibration; - PRODUCT_NAME = "React-RCTVibration"; + PRODUCT_MODULE_NAME = YogaKit; + PRODUCT_NAME = YogaKit; PUBLIC_HEADERS_FOLDER_PATH = ""; SDKROOT = iphoneos; SKIP_INSTALL = YES; SWIFT_ACTIVE_COMPILATION_CONDITIONS = "$(inherited) "; - SWIFT_VERSION = 5.0; + SWIFT_VERSION = 4.1; TARGETED_DEVICE_FAMILY = "1,2"; VALIDATE_PRODUCT = YES; }; name = Release; }; - 651BF003D59600D10F4B0704DB49BAD6 /* Debug */ = { + 685E7183A8913DFBBFBB3A14E307768A /* Debug */ = { + isa = XCBuildConfiguration; + baseConfigurationReference = 4595C87584F3E8A399866B5CD8A8EC2C /* RNImageCropPicker.debug.xcconfig */; + buildSettings = { + APPLICATION_EXTENSION_API_ONLY = NO; + CONFIGURATION_BUILD_DIR = "$(BUILD_DIR)/$(CONFIGURATION)$(EFFECTIVE_PLATFORM_NAME)/RNImageCropPicker"; + IBSC_MODULE = RNImageCropPicker; + INFOPLIST_FILE = "Target Support Files/RNImageCropPicker/ResourceBundle-QBImagePicker-RNImageCropPicker-Info.plist"; + IPHONEOS_DEPLOYMENT_TARGET = 11.0; + PRODUCT_NAME = QBImagePicker; + SDKROOT = iphoneos; + SKIP_INSTALL = YES; + TARGETED_DEVICE_FAMILY = "1,2"; + WRAPPER_EXTENSION = bundle; + }; + name = Debug; + }; + 6A93327916D73381712667A45BC513E2 /* Debug */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 8F35897AB268E19269869EBC5812DBE8 /* React-RCTSettings.debug.xcconfig */; + baseConfigurationReference = C8F7F7F7E5E13629D7E1BB3CD2BF108C /* FBReactNativeSpec.debug.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; ARCHS = "$(ARCHS_STANDARD_64_BIT)"; @@ -38204,13 +37624,13 @@ "CODE_SIGN_IDENTITY[sdk=appletvos*]" = ""; "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = ""; "CODE_SIGN_IDENTITY[sdk=watchos*]" = ""; - GCC_PREFIX_HEADER = "Target Support Files/React-RCTSettings/React-RCTSettings-prefix.pch"; + GCC_PREFIX_HEADER = "Target Support Files/FBReactNativeSpec/FBReactNativeSpec-prefix.pch"; IPHONEOS_DEPLOYMENT_TARGET = 11.0; OTHER_LDFLAGS = ""; OTHER_LIBTOOLFLAGS = ""; PRIVATE_HEADERS_FOLDER_PATH = ""; - PRODUCT_MODULE_NAME = RCTSettings; - PRODUCT_NAME = "React-RCTSettings"; + PRODUCT_MODULE_NAME = FBReactNativeSpec; + PRODUCT_NAME = FBReactNativeSpec; PUBLIC_HEADERS_FOLDER_PATH = ""; SDKROOT = iphoneos; SKIP_INSTALL = YES; @@ -38220,23 +37640,22 @@ }; name = Debug; }; - 6626E0DDF75356B939BB71211EC59DF0 /* Release */ = { + 6B94BA27ACC1EAC4AD317AA67E84A1EC /* Release */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 4F3DBDE414164598AA85AF34D969F89D /* EXKeepAwake.release.xcconfig */; + baseConfigurationReference = 5496512ACA34AB0CE45FFA9D693EAFC4 /* react-native-safe-area-context.release.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; ARCHS = "$(ARCHS_STANDARD_64_BIT)"; - CLANG_ENABLE_OBJC_WEAK = NO; "CODE_SIGN_IDENTITY[sdk=appletvos*]" = ""; "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = ""; "CODE_SIGN_IDENTITY[sdk=watchos*]" = ""; - GCC_PREFIX_HEADER = "Target Support Files/EXKeepAwake/EXKeepAwake-prefix.pch"; + GCC_PREFIX_HEADER = "Target Support Files/react-native-safe-area-context/react-native-safe-area-context-prefix.pch"; IPHONEOS_DEPLOYMENT_TARGET = 11.0; OTHER_LDFLAGS = ""; OTHER_LIBTOOLFLAGS = ""; PRIVATE_HEADERS_FOLDER_PATH = ""; - PRODUCT_MODULE_NAME = EXKeepAwake; - PRODUCT_NAME = EXKeepAwake; + PRODUCT_MODULE_NAME = react_native_safe_area_context; + PRODUCT_NAME = "react-native-safe-area-context"; PUBLIC_HEADERS_FOLDER_PATH = ""; SDKROOT = iphoneos; SKIP_INSTALL = YES; @@ -38247,23 +37666,37 @@ }; name = Release; }; - 6732D46B735905B3485384DFDB30FC70 /* Debug */ = { + 6BAC9A87290775DFB35C52BF5240280C /* Debug */ = { isa = XCBuildConfiguration; - baseConfigurationReference = D2C5FC90D2479A209F796DDE8961A2CA /* nanopb.debug.xcconfig */; + baseConfigurationReference = 5454397C53B00A0886C67818C7D5C4C6 /* OpenSSL-Universal.debug.xcconfig */; + buildSettings = { + APPLICATION_EXTENSION_API_ONLY = NO; + ARCHS = "$(ARCHS_STANDARD_64_BIT)"; + ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon; + ASSETCATALOG_COMPILER_GLOBAL_ACCENT_COLOR_NAME = AccentColor; + IPHONEOS_DEPLOYMENT_TARGET = 11.0; + LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks"; + SDKROOT = iphoneos; + TARGETED_DEVICE_FAMILY = "1,2"; + }; + name = Debug; + }; + 6D4A190682DC23C0259B3828452D0D8C /* Debug */ = { + isa = XCBuildConfiguration; + baseConfigurationReference = 30CA77D832694AC1CF14BF2AF1E5D814 /* ReactNativeUiLib.debug.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; ARCHS = "$(ARCHS_STANDARD_64_BIT)"; - CLANG_ENABLE_OBJC_WEAK = NO; "CODE_SIGN_IDENTITY[sdk=appletvos*]" = ""; "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = ""; "CODE_SIGN_IDENTITY[sdk=watchos*]" = ""; - GCC_PREFIX_HEADER = "Target Support Files/nanopb/nanopb-prefix.pch"; + GCC_PREFIX_HEADER = "Target Support Files/ReactNativeUiLib/ReactNativeUiLib-prefix.pch"; IPHONEOS_DEPLOYMENT_TARGET = 11.0; OTHER_LDFLAGS = ""; OTHER_LIBTOOLFLAGS = ""; PRIVATE_HEADERS_FOLDER_PATH = ""; - PRODUCT_MODULE_NAME = nanopb; - PRODUCT_NAME = nanopb; + PRODUCT_MODULE_NAME = ReactNativeUiLib; + PRODUCT_NAME = ReactNativeUiLib; PUBLIC_HEADERS_FOLDER_PATH = ""; SDKROOT = iphoneos; SKIP_INSTALL = YES; @@ -38273,9 +37706,9 @@ }; name = Debug; }; - 683EDEDFC5B24B3B5830B0675D0B8396 /* Debug */ = { + 6F095E0BD96C9FB85F3E6D95B0FB4D4C /* Debug */ = { isa = XCBuildConfiguration; - baseConfigurationReference = D85BA8C9AB92AE4535FB92658398E81D /* React-callinvoker.debug.xcconfig */; + baseConfigurationReference = E5A94C202F92FAC83424F6ACDCC5CD83 /* hermes-engine.debug.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; ARCHS = "$(ARCHS_STANDARD_64_BIT)"; @@ -38289,100 +37722,100 @@ }; name = Debug; }; - 6B4C52F1AFE0E00483D4A30B4A7E02CA /* Release */ = { + 6F42FB0D2EB57D5A619C910401520C9F /* Debug */ = { isa = XCBuildConfiguration; - baseConfigurationReference = C7CA2A8556A16B3C49FF1B41CC0AE811 /* GoogleDataTransportCCTSupport.release.xcconfig */; + baseConfigurationReference = D59C2BB4EEDA2307FB27DE5D3C646762 /* React-perflogger.debug.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; ARCHS = "$(ARCHS_STANDARD_64_BIT)"; + CLANG_ENABLE_OBJC_WEAK = NO; "CODE_SIGN_IDENTITY[sdk=appletvos*]" = ""; "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = ""; "CODE_SIGN_IDENTITY[sdk=watchos*]" = ""; + GCC_PREFIX_HEADER = "Target Support Files/React-perflogger/React-perflogger-prefix.pch"; IPHONEOS_DEPLOYMENT_TARGET = 11.0; OTHER_LDFLAGS = ""; OTHER_LIBTOOLFLAGS = ""; PRIVATE_HEADERS_FOLDER_PATH = ""; - PRODUCT_MODULE_NAME = GoogleDataTransportCCTSupport; - PRODUCT_NAME = GoogleDataTransportCCTSupport; + PRODUCT_MODULE_NAME = reactperflogger; + PRODUCT_NAME = "React-perflogger"; 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; + name = Debug; }; - 6B94BA27ACC1EAC4AD317AA67E84A1EC /* Release */ = { + 70D7C826A438DFF0D518F3538297D657 /* Debug */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 3C500AB3A394159D74E166DE57D0C06D /* react-native-safe-area-context.release.xcconfig */; + baseConfigurationReference = E4C9A4B31AD0A6250478EA448B4064EC /* RNCPicker.debug.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; 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-safe-area-context/react-native-safe-area-context-prefix.pch"; + GCC_PREFIX_HEADER = "Target Support Files/RNCPicker/RNCPicker-prefix.pch"; IPHONEOS_DEPLOYMENT_TARGET = 11.0; OTHER_LDFLAGS = ""; OTHER_LIBTOOLFLAGS = ""; PRIVATE_HEADERS_FOLDER_PATH = ""; - PRODUCT_MODULE_NAME = react_native_safe_area_context; - PRODUCT_NAME = "react-native-safe-area-context"; + PRODUCT_MODULE_NAME = RNCPicker; + PRODUCT_NAME = RNCPicker; 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; + name = Debug; }; - 6C1F05846AB751F13D5570C52CD141D0 /* Release */ = { + 711124276934A48C61CF80232B1C533A /* Debug */ = { isa = XCBuildConfiguration; - baseConfigurationReference = DE5A7C8C6EAD47E655B33CFF04F6CCFE /* RCTTypeSafety.release.xcconfig */; + baseConfigurationReference = D362E4EC506FE9B68127CA4845F1C89E /* react-native-orientation-locker.debug.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; ARCHS = "$(ARCHS_STANDARD_64_BIT)"; - CLANG_ENABLE_OBJC_WEAK = NO; "CODE_SIGN_IDENTITY[sdk=appletvos*]" = ""; "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = ""; "CODE_SIGN_IDENTITY[sdk=watchos*]" = ""; - GCC_PREFIX_HEADER = "Target Support Files/RCTTypeSafety/RCTTypeSafety-prefix.pch"; + GCC_PREFIX_HEADER = "Target Support Files/react-native-orientation-locker/react-native-orientation-locker-prefix.pch"; IPHONEOS_DEPLOYMENT_TARGET = 11.0; OTHER_LDFLAGS = ""; OTHER_LIBTOOLFLAGS = ""; PRIVATE_HEADERS_FOLDER_PATH = ""; - PRODUCT_MODULE_NAME = RCTTypeSafety; - PRODUCT_NAME = RCTTypeSafety; + PRODUCT_MODULE_NAME = react_native_orientation_locker; + PRODUCT_NAME = "react-native-orientation-locker"; 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; + name = Debug; }; - 6D4A190682DC23C0259B3828452D0D8C /* Debug */ = { + 7393985EE08314D862636421353FD7F7 /* Debug */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 859B9C5CC2B046D642D6E37D5EC38A39 /* ReactNativeUiLib.debug.xcconfig */; + baseConfigurationReference = C5E949B46D8B3289F5A68BA65DDBE074 /* React-Core.debug.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; ARCHS = "$(ARCHS_STANDARD_64_BIT)"; + CLANG_ENABLE_OBJC_WEAK = NO; "CODE_SIGN_IDENTITY[sdk=appletvos*]" = ""; "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = ""; "CODE_SIGN_IDENTITY[sdk=watchos*]" = ""; - GCC_PREFIX_HEADER = "Target Support Files/ReactNativeUiLib/ReactNativeUiLib-prefix.pch"; + GCC_PREFIX_HEADER = "Target Support Files/React-Core/React-Core-prefix.pch"; IPHONEOS_DEPLOYMENT_TARGET = 11.0; + MODULEMAP_FILE = "Headers/Public/React/React-Core.modulemap"; OTHER_LDFLAGS = ""; OTHER_LIBTOOLFLAGS = ""; PRIVATE_HEADERS_FOLDER_PATH = ""; - PRODUCT_MODULE_NAME = ReactNativeUiLib; - PRODUCT_NAME = ReactNativeUiLib; + PRODUCT_MODULE_NAME = React; + PRODUCT_NAME = "React-Core"; PUBLIC_HEADERS_FOLDER_PATH = ""; SDKROOT = iphoneos; SKIP_INSTALL = YES; @@ -38392,22 +37825,22 @@ }; name = Debug; }; - 70D7C826A438DFF0D518F3538297D657 /* Debug */ = { + 742312CDFE8344A008648B6D790D7F39 /* Debug */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 3C74F4DCE22AD32551BC8F409F540F4C /* RNCPicker.debug.xcconfig */; + baseConfigurationReference = A5F4D12F5974C98D275970FC61C62409 /* rn-fetch-blob.debug.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; 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/RNCPicker/RNCPicker-prefix.pch"; + GCC_PREFIX_HEADER = "Target Support Files/rn-fetch-blob/rn-fetch-blob-prefix.pch"; IPHONEOS_DEPLOYMENT_TARGET = 11.0; OTHER_LDFLAGS = ""; OTHER_LIBTOOLFLAGS = ""; PRIVATE_HEADERS_FOLDER_PATH = ""; - PRODUCT_MODULE_NAME = RNCPicker; - PRODUCT_NAME = RNCPicker; + PRODUCT_MODULE_NAME = rn_fetch_blob; + PRODUCT_NAME = "rn-fetch-blob"; PUBLIC_HEADERS_FOLDER_PATH = ""; SDKROOT = iphoneos; SKIP_INSTALL = YES; @@ -38417,34 +37850,26 @@ }; name = Debug; }; - 711124276934A48C61CF80232B1C533A /* Debug */ = { + 743AA5183E665CF813734C12A89B1D58 /* Debug */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 7B2B988372B94744CFCB043C04181A2F /* react-native-orientation-locker.debug.xcconfig */; + baseConfigurationReference = 2E0D66364E3C4E81BCA4CBCF60208FFF /* TOCropViewController.debug.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; - 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-orientation-locker/react-native-orientation-locker-prefix.pch"; + CONFIGURATION_BUILD_DIR = "$(BUILD_DIR)/$(CONFIGURATION)$(EFFECTIVE_PLATFORM_NAME)/TOCropViewController"; + IBSC_MODULE = TOCropViewController; + INFOPLIST_FILE = "Target Support Files/TOCropViewController/ResourceBundle-TOCropViewControllerBundle-TOCropViewController-Info.plist"; IPHONEOS_DEPLOYMENT_TARGET = 11.0; - OTHER_LDFLAGS = ""; - OTHER_LIBTOOLFLAGS = ""; - PRIVATE_HEADERS_FOLDER_PATH = ""; - PRODUCT_MODULE_NAME = react_native_orientation_locker; - PRODUCT_NAME = "react-native-orientation-locker"; - PUBLIC_HEADERS_FOLDER_PATH = ""; + PRODUCT_NAME = TOCropViewControllerBundle; SDKROOT = iphoneos; SKIP_INSTALL = YES; - SWIFT_ACTIVE_COMPILATION_CONDITIONS = "$(inherited) "; - SWIFT_VERSION = 5.0; TARGETED_DEVICE_FAMILY = "1,2"; + WRAPPER_EXTENSION = bundle; }; name = Debug; }; - 723A078D181FB6BBF2D9B6165F2BF675 /* Release */ = { + 74819EE4D29858CD58F4911A49E115BE /* Release */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 9F9C7917EDBBA65B57AA90AF42B42EFA /* React-RCTImage.release.xcconfig */; + baseConfigurationReference = 3045E058279AE6D3C20DC67840145F8D /* Flipper-Folly.release.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; ARCHS = "$(ARCHS_STANDARD_64_BIT)"; @@ -38452,13 +37877,13 @@ "CODE_SIGN_IDENTITY[sdk=appletvos*]" = ""; "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = ""; "CODE_SIGN_IDENTITY[sdk=watchos*]" = ""; - GCC_PREFIX_HEADER = "Target Support Files/React-RCTImage/React-RCTImage-prefix.pch"; + GCC_PREFIX_HEADER = "Target Support Files/Flipper-Folly/Flipper-Folly-prefix.pch"; IPHONEOS_DEPLOYMENT_TARGET = 11.0; OTHER_LDFLAGS = ""; OTHER_LIBTOOLFLAGS = ""; PRIVATE_HEADERS_FOLDER_PATH = ""; - PRODUCT_MODULE_NAME = RCTImage; - PRODUCT_NAME = "React-RCTImage"; + PRODUCT_MODULE_NAME = folly; + PRODUCT_NAME = "Flipper-Folly"; PUBLIC_HEADERS_FOLDER_PATH = ""; SDKROOT = iphoneos; SKIP_INSTALL = YES; @@ -38469,51 +37894,51 @@ }; name = Release; }; - 7389F32D44E1DC420DC05471B3EC77C3 /* Debug */ = { - isa = XCBuildConfiguration; - baseConfigurationReference = 6DF61E1E4E09C55C34D232E606DAEC35 /* RNImageCropPicker.debug.xcconfig */; - buildSettings = { - APPLICATION_EXTENSION_API_ONLY = NO; - CONFIGURATION_BUILD_DIR = "$(BUILD_DIR)/$(CONFIGURATION)$(EFFECTIVE_PLATFORM_NAME)/RNImageCropPicker"; - IBSC_MODULE = RNImageCropPicker; - INFOPLIST_FILE = "Target Support Files/RNImageCropPicker/ResourceBundle-QBImagePicker-RNImageCropPicker-Info.plist"; - IPHONEOS_DEPLOYMENT_TARGET = 11.0; - PRODUCT_NAME = QBImagePicker; - SDKROOT = iphoneos; - SKIP_INSTALL = YES; - TARGETED_DEVICE_FAMILY = "1,2"; - WRAPPER_EXTENSION = bundle; - }; - name = Debug; - }; - 742312CDFE8344A008648B6D790D7F39 /* Debug */ = { + 74B10AACD4265BEF2FAA6FE3497DEE81 /* Release */ = { isa = XCBuildConfiguration; - baseConfigurationReference = A6F768252ED54153A55922B20E00C66D /* rn-fetch-blob.debug.xcconfig */; + baseConfigurationReference = 2DB078B4CD103C372972A011E7CC79C4 /* FirebaseCore.release.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; 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/rn-fetch-blob/rn-fetch-blob-prefix.pch"; IPHONEOS_DEPLOYMENT_TARGET = 11.0; OTHER_LDFLAGS = ""; OTHER_LIBTOOLFLAGS = ""; PRIVATE_HEADERS_FOLDER_PATH = ""; - PRODUCT_MODULE_NAME = rn_fetch_blob; - PRODUCT_NAME = "rn-fetch-blob"; + PRODUCT_MODULE_NAME = FirebaseCore; + PRODUCT_NAME = FirebaseCore; PUBLIC_HEADERS_FOLDER_PATH = ""; SDKROOT = iphoneos; SKIP_INSTALL = YES; SWIFT_ACTIVE_COMPILATION_CONDITIONS = "$(inherited) "; SWIFT_VERSION = 5.0; TARGETED_DEVICE_FAMILY = "1,2"; + VALIDATE_PRODUCT = YES; }; - name = Debug; + name = Release; }; 750A8AF251538FFC328C63B9042035F3 /* Release */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 15C06E8BC22CE33F1AC579FF3EED5F01 /* UMFaceDetectorInterface.release.xcconfig */; + baseConfigurationReference = 140A58745163FD40C6736690EA71078A /* UMFaceDetectorInterface.release.xcconfig */; + buildSettings = { + APPLICATION_EXTENSION_API_ONLY = NO; + ARCHS = "$(ARCHS_STANDARD_64_BIT)"; + ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon; + ASSETCATALOG_COMPILER_GLOBAL_ACCENT_COLOR_NAME = AccentColor; + CLANG_ENABLE_OBJC_WEAK = NO; + IPHONEOS_DEPLOYMENT_TARGET = 11.0; + LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks"; + SDKROOT = iphoneos; + TARGETED_DEVICE_FAMILY = "1,2"; + VALIDATE_PRODUCT = YES; + }; + name = Release; + }; + 757BA03BFDDB4566382EE5275DC4656F /* Release */ = { + isa = XCBuildConfiguration; + baseConfigurationReference = 571E1D14F57017E8C40C842AA049BDCC /* React-RCTActionSheet.release.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; ARCHS = "$(ARCHS_STANDARD_64_BIT)"; @@ -38530,7 +37955,7 @@ }; 75F07EC0626EBC846B90C595F7B0B7BC /* Release */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 3244965E9202F6697911B38410249411 /* EXLocalAuthentication.release.xcconfig */; + baseConfigurationReference = 0581B46ACFAAE812B3732D7DDACB87B3 /* EXLocalAuthentication.release.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; ARCHS = "$(ARCHS_STANDARD_64_BIT)"; @@ -38557,7 +37982,7 @@ }; 7692F34AE1B1B8DEE6436089896B7197 /* Debug */ = { isa = XCBuildConfiguration; - baseConfigurationReference = E3A23A2CAFD9B49866258805E564EE65 /* EXKeepAwake.debug.xcconfig */; + baseConfigurationReference = 247BCB0F5906C807AA33308FB12ABADE /* EXKeepAwake.debug.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; ARCHS = "$(ARCHS_STANDARD_64_BIT)"; @@ -38583,7 +38008,7 @@ }; 76E69552E7BCE37484B6C94193FF4D25 /* Debug */ = { isa = XCBuildConfiguration; - baseConfigurationReference = C8D74669E35EE408A4DE3CEE1FEF52A8 /* RNGestureHandler.debug.xcconfig */; + baseConfigurationReference = 869754DDE959C7E400237B22174C56C9 /* RNGestureHandler.debug.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; ARCHS = "$(ARCHS_STANDARD_64_BIT)"; @@ -38608,7 +38033,7 @@ }; 7A6B8476ADDFBEC9909DAA54AA271CA4 /* Debug */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 9CF7B065AE2F454C92B112DA7734C782 /* UMBarCodeScannerInterface.debug.xcconfig */; + baseConfigurationReference = 81BE5C5FC940166005A5A95CCFA29123 /* UMBarCodeScannerInterface.debug.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; ARCHS = "$(ARCHS_STANDARD_64_BIT)"; @@ -38624,7 +38049,7 @@ }; 7A6EB9C6CE44347C72D09313D7332837 /* Release */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 0696B943EDC4A311B847984997C71865 /* react-native-mmkv-storage.release.xcconfig */; + baseConfigurationReference = DCD831ABC23B3D5C9971C822E49110B4 /* react-native-mmkv-storage.release.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; ARCHS = "$(ARCHS_STANDARD_64_BIT)"; @@ -38648,23 +38073,22 @@ }; name = Release; }; - 7AC7CA0A67AEAB84A111686F06F4EAAA /* Debug */ = { + 7B07B2F3C154D325FB8033C76B1629BB /* Debug */ = { isa = XCBuildConfiguration; - baseConfigurationReference = B5FC7F17ABCDE32FBB838064E95987E3 /* React-jsiexecutor.debug.xcconfig */; + baseConfigurationReference = 9FD276F819B7C16BDF04D389D2341CCB /* Flipper-Glog.debug.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; ARCHS = "$(ARCHS_STANDARD_64_BIT)"; - CLANG_ENABLE_OBJC_WEAK = NO; "CODE_SIGN_IDENTITY[sdk=appletvos*]" = ""; "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = ""; "CODE_SIGN_IDENTITY[sdk=watchos*]" = ""; - GCC_PREFIX_HEADER = "Target Support Files/React-jsiexecutor/React-jsiexecutor-prefix.pch"; + GCC_PREFIX_HEADER = "Target Support Files/Flipper-Glog/Flipper-Glog-prefix.pch"; IPHONEOS_DEPLOYMENT_TARGET = 11.0; OTHER_LDFLAGS = ""; OTHER_LIBTOOLFLAGS = ""; PRIVATE_HEADERS_FOLDER_PATH = ""; - PRODUCT_MODULE_NAME = jsireact; - PRODUCT_NAME = "React-jsiexecutor"; + PRODUCT_MODULE_NAME = glog; + PRODUCT_NAME = "Flipper-Glog"; PUBLIC_HEADERS_FOLDER_PATH = ""; SDKROOT = iphoneos; SKIP_INSTALL = YES; @@ -38674,101 +38098,88 @@ }; name = Debug; }; - 7B158DC20588C3FD47C4DD81B5F3AFFB /* Debug */ = { + 7D83B3F256FB260C2B2F245B3AD75A63 /* Release */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 777C2BBE7EEA5B56B30C1A83D6FED868 /* hermes-engine.debug.xcconfig */; + baseConfigurationReference = 7DCBF3C0593054D1A21091980D85866A /* Yoga.release.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; ARCHS = "$(ARCHS_STANDARD_64_BIT)"; - ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon; - ASSETCATALOG_COMPILER_GLOBAL_ACCENT_COLOR_NAME = AccentColor; CLANG_ENABLE_OBJC_WEAK = NO; - IPHONEOS_DEPLOYMENT_TARGET = 11.0; - LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks"; - SDKROOT = iphoneos; - TARGETED_DEVICE_FAMILY = "1,2"; - }; - name = Debug; - }; - 7C2FEDE138DB34C96794A6D64D82A56E /* Debug */ = { - isa = XCBuildConfiguration; - baseConfigurationReference = 3E6E94B693FE00876871B854A67A2A1C /* FirebaseCrashlytics.debug.xcconfig */; - buildSettings = { - APPLICATION_EXTENSION_API_ONLY = NO; - 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/Yoga/Yoga-prefix.pch"; IPHONEOS_DEPLOYMENT_TARGET = 11.0; + MODULEMAP_FILE = Headers/Public/yoga/Yoga.modulemap; OTHER_LDFLAGS = ""; OTHER_LIBTOOLFLAGS = ""; PRIVATE_HEADERS_FOLDER_PATH = ""; - PRODUCT_MODULE_NAME = FirebaseCrashlytics; - PRODUCT_NAME = FirebaseCrashlytics; + PRODUCT_MODULE_NAME = yoga; + PRODUCT_NAME = Yoga; PUBLIC_HEADERS_FOLDER_PATH = ""; SDKROOT = iphoneos; SKIP_INSTALL = YES; SWIFT_ACTIVE_COMPILATION_CONDITIONS = "$(inherited) "; SWIFT_VERSION = 5.0; TARGETED_DEVICE_FAMILY = "1,2"; + VALIDATE_PRODUCT = YES; }; - name = Debug; + name = Release; }; - 7DC9963EDA5319FB6AC6DF6367BB86F6 /* Release */ = { + 7F7559A0F1335AE0B112CE8919D23F2B /* Debug */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 01277E6EA0D313D5068182BBB84B9E98 /* RNFBAnalytics.release.xcconfig */; + baseConfigurationReference = 8B80ACD405639A2127DD26743CE94C96 /* react-native-simple-crypto.debug.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; 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/RNFBAnalytics/RNFBAnalytics-prefix.pch"; + GCC_PREFIX_HEADER = "Target Support Files/react-native-simple-crypto/react-native-simple-crypto-prefix.pch"; IPHONEOS_DEPLOYMENT_TARGET = 11.0; + MODULEMAP_FILE = "Headers/Public/react_native_simple_crypto/react-native-simple-crypto.modulemap"; OTHER_LDFLAGS = ""; OTHER_LIBTOOLFLAGS = ""; PRIVATE_HEADERS_FOLDER_PATH = ""; - PRODUCT_MODULE_NAME = RNFBAnalytics; - PRODUCT_NAME = RNFBAnalytics; + PRODUCT_MODULE_NAME = react_native_simple_crypto; + PRODUCT_NAME = "react-native-simple-crypto"; 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; + name = Debug; }; - 7F7559A0F1335AE0B112CE8919D23F2B /* Debug */ = { + 802A429AEB55340A4EC262A961892D6C /* Release */ = { isa = XCBuildConfiguration; - baseConfigurationReference = A193D813D8C5A0B8CF41715AD34A8F01 /* react-native-simple-crypto.debug.xcconfig */; + baseConfigurationReference = 1440C979E2AE0BA095EE73AB76241BD7 /* GoogleUtilities.release.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; 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-simple-crypto/react-native-simple-crypto-prefix.pch"; IPHONEOS_DEPLOYMENT_TARGET = 11.0; - MODULEMAP_FILE = "Headers/Public/react_native_simple_crypto/react-native-simple-crypto.modulemap"; OTHER_LDFLAGS = ""; OTHER_LIBTOOLFLAGS = ""; PRIVATE_HEADERS_FOLDER_PATH = ""; - PRODUCT_MODULE_NAME = react_native_simple_crypto; - PRODUCT_NAME = "react-native-simple-crypto"; + PRODUCT_MODULE_NAME = GoogleUtilities; + PRODUCT_NAME = GoogleUtilities; PUBLIC_HEADERS_FOLDER_PATH = ""; SDKROOT = iphoneos; SKIP_INSTALL = YES; SWIFT_ACTIVE_COMPILATION_CONDITIONS = "$(inherited) "; SWIFT_VERSION = 5.0; TARGETED_DEVICE_FAMILY = "1,2"; + VALIDATE_PRODUCT = YES; }; - name = Debug; + name = Release; }; 802C8D0063BA11FCC41073939417E89C /* Debug */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 6889C8BC615C521EE2FB3D13B4AAA3A0 /* UMFontInterface.debug.xcconfig */; + baseConfigurationReference = F22C8F6F10A4A28CE597599D878568E9 /* UMFontInterface.debug.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; ARCHS = "$(ARCHS_STANDARD_64_BIT)"; @@ -38782,101 +38193,117 @@ }; name = Debug; }; - 80CD4D97BC50977AAD69D493D8B41FEA /* Release */ = { + 80822DB1B852F1056FB668785CD8C544 /* Release */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 1013FA3489B2E599784CC6B11BEB6AD8 /* YogaKit.release.xcconfig */; + baseConfigurationReference = 6001A29683C89BE2C4DEE83AE685690B /* React-RCTAnimation.release.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; ARCHS = "$(ARCHS_STANDARD_64_BIT)"; + CLANG_ENABLE_OBJC_WEAK = NO; "CODE_SIGN_IDENTITY[sdk=appletvos*]" = ""; "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = ""; "CODE_SIGN_IDENTITY[sdk=watchos*]" = ""; - GCC_PREFIX_HEADER = "Target Support Files/YogaKit/YogaKit-prefix.pch"; + GCC_PREFIX_HEADER = "Target Support Files/React-RCTAnimation/React-RCTAnimation-prefix.pch"; IPHONEOS_DEPLOYMENT_TARGET = 11.0; - MODULEMAP_FILE = Headers/Public/YogaKit/YogaKit.modulemap; OTHER_LDFLAGS = ""; OTHER_LIBTOOLFLAGS = ""; PRIVATE_HEADERS_FOLDER_PATH = ""; - PRODUCT_MODULE_NAME = YogaKit; - PRODUCT_NAME = YogaKit; + PRODUCT_MODULE_NAME = RCTAnimation; + PRODUCT_NAME = "React-RCTAnimation"; PUBLIC_HEADERS_FOLDER_PATH = ""; SDKROOT = iphoneos; SKIP_INSTALL = YES; SWIFT_ACTIVE_COMPILATION_CONDITIONS = "$(inherited) "; - SWIFT_VERSION = 4.1; + SWIFT_VERSION = 5.0; TARGETED_DEVICE_FAMILY = "1,2"; VALIDATE_PRODUCT = YES; }; name = Release; }; - 81612E878CEC159EB76D047BBDE71C36 /* Release */ = { + 80A23E262526C689AE79769DC9E4775C /* Debug */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 27A5A3B49B8896316CAA20EDB06008AE /* SDWebImage.release.xcconfig */; + baseConfigurationReference = 324ED92993327E75D24EBE7F53716AA4 /* React-jsiexecutor.debug.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; ARCHS = "$(ARCHS_STANDARD_64_BIT)"; + CLANG_ENABLE_OBJC_WEAK = NO; "CODE_SIGN_IDENTITY[sdk=appletvos*]" = ""; "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = ""; "CODE_SIGN_IDENTITY[sdk=watchos*]" = ""; - GCC_PREFIX_HEADER = "Target Support Files/SDWebImage/SDWebImage-prefix.pch"; + GCC_PREFIX_HEADER = "Target Support Files/React-jsiexecutor/React-jsiexecutor-prefix.pch"; IPHONEOS_DEPLOYMENT_TARGET = 11.0; OTHER_LDFLAGS = ""; OTHER_LIBTOOLFLAGS = ""; PRIVATE_HEADERS_FOLDER_PATH = ""; - PRODUCT_MODULE_NAME = SDWebImage; - PRODUCT_NAME = SDWebImage; + PRODUCT_MODULE_NAME = jsireact; + PRODUCT_NAME = "React-jsiexecutor"; 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; + name = Debug; }; - 82F1C59AB9A34F0B34BAF294C7245226 /* Release */ = { + 81FFCB55DFCE6027C9FC73F91F397E13 /* Debug */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 0434113888E997B21B28150CC3620C44 /* React-CoreModules.release.xcconfig */; + baseConfigurationReference = 33CE3A123A50C02157F9260308A228EE /* Pods-defaults-RocketChatRN.debug.xcconfig */; buildSettings = { + ALWAYS_EMBED_SWIFT_STANDARD_LIBRARIES = NO; APPLICATION_EXTENSION_API_ONLY = NO; ARCHS = "$(ARCHS_STANDARD_64_BIT)"; CLANG_ENABLE_OBJC_WEAK = NO; "CODE_SIGN_IDENTITY[sdk=appletvos*]" = ""; "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = ""; "CODE_SIGN_IDENTITY[sdk=watchos*]" = ""; - GCC_PREFIX_HEADER = "Target Support Files/React-CoreModules/React-CoreModules-prefix.pch"; IPHONEOS_DEPLOYMENT_TARGET = 11.0; + MACH_O_TYPE = staticlib; + MODULEMAP_FILE = "Target Support Files/Pods-defaults-RocketChatRN/Pods-defaults-RocketChatRN.modulemap"; OTHER_LDFLAGS = ""; OTHER_LIBTOOLFLAGS = ""; - PRIVATE_HEADERS_FOLDER_PATH = ""; - PRODUCT_MODULE_NAME = CoreModules; - PRODUCT_NAME = "React-CoreModules"; - PUBLIC_HEADERS_FOLDER_PATH = ""; + PODS_ROOT = "$(SRCROOT)"; + PRODUCT_BUNDLE_IDENTIFIER = "org.cocoapods.${PRODUCT_NAME:rfc1034identifier}"; SDKROOT = iphoneos; SKIP_INSTALL = YES; - SWIFT_ACTIVE_COMPILATION_CONDITIONS = "$(inherited) "; - SWIFT_VERSION = 5.0; TARGETED_DEVICE_FAMILY = "1,2"; - VALIDATE_PRODUCT = YES; + }; + name = Debug; + }; + 82A6567078A1F7D99710868D7E62D58C /* Release */ = { + isa = XCBuildConfiguration; + baseConfigurationReference = D769384A5426A2E4EF2F1B1EBE235883 /* TOCropViewController.release.xcconfig */; + buildSettings = { + APPLICATION_EXTENSION_API_ONLY = NO; + CONFIGURATION_BUILD_DIR = "$(BUILD_DIR)/$(CONFIGURATION)$(EFFECTIVE_PLATFORM_NAME)/TOCropViewController"; + IBSC_MODULE = TOCropViewController; + INFOPLIST_FILE = "Target Support Files/TOCropViewController/ResourceBundle-TOCropViewControllerBundle-TOCropViewController-Info.plist"; + IPHONEOS_DEPLOYMENT_TARGET = 11.0; + PRODUCT_NAME = TOCropViewControllerBundle; + SDKROOT = iphoneos; + SKIP_INSTALL = YES; + TARGETED_DEVICE_FAMILY = "1,2"; + WRAPPER_EXTENSION = bundle; }; name = Release; }; - 844A0734DAAEE23B7C9AABDF7199D719 /* Release */ = { + 82F1C59AB9A34F0B34BAF294C7245226 /* Release */ = { isa = XCBuildConfiguration; - baseConfigurationReference = F37CF827ECF3CB523CFB5303EAEAC16A /* FirebaseInstallations.release.xcconfig */; + baseConfigurationReference = 7A644715508BA643C11C1772E3BAC25C /* React-CoreModules.release.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; ARCHS = "$(ARCHS_STANDARD_64_BIT)"; + CLANG_ENABLE_OBJC_WEAK = NO; "CODE_SIGN_IDENTITY[sdk=appletvos*]" = ""; "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = ""; "CODE_SIGN_IDENTITY[sdk=watchos*]" = ""; + GCC_PREFIX_HEADER = "Target Support Files/React-CoreModules/React-CoreModules-prefix.pch"; IPHONEOS_DEPLOYMENT_TARGET = 11.0; OTHER_LDFLAGS = ""; OTHER_LIBTOOLFLAGS = ""; PRIVATE_HEADERS_FOLDER_PATH = ""; - PRODUCT_MODULE_NAME = FirebaseInstallations; - PRODUCT_NAME = FirebaseInstallations; + PRODUCT_MODULE_NAME = CoreModules; + PRODUCT_NAME = "React-CoreModules"; PUBLIC_HEADERS_FOLDER_PATH = ""; SDKROOT = iphoneos; SKIP_INSTALL = YES; @@ -38889,7 +38316,7 @@ }; 856F5D1DE9373D7F014D1325CDB5986A /* Debug */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 1076C197124588FD6485535FFF0916BD /* RNDateTimePicker.debug.xcconfig */; + baseConfigurationReference = C908638D5A76002CB9B80147DC186B84 /* RNDateTimePicker.debug.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; ARCHS = "$(ARCHS_STANDARD_64_BIT)"; @@ -38913,9 +38340,9 @@ }; name = Debug; }; - 8626ADC413624368969F69B8D46737B5 /* Release */ = { + 86D704FC4DBC00A97F725EBD0F56BF90 /* Release */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 00D4C04F9C078B723204D9E3500F2881 /* React-RCTNetwork.release.xcconfig */; + baseConfigurationReference = 86D87D5369397F87F8CA5DBEC4A1A801 /* EXFileSystem.release.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; ARCHS = "$(ARCHS_STANDARD_64_BIT)"; @@ -38923,13 +38350,13 @@ "CODE_SIGN_IDENTITY[sdk=appletvos*]" = ""; "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = ""; "CODE_SIGN_IDENTITY[sdk=watchos*]" = ""; - GCC_PREFIX_HEADER = "Target Support Files/React-RCTNetwork/React-RCTNetwork-prefix.pch"; + GCC_PREFIX_HEADER = "Target Support Files/EXFileSystem/EXFileSystem-prefix.pch"; IPHONEOS_DEPLOYMENT_TARGET = 11.0; OTHER_LDFLAGS = ""; OTHER_LIBTOOLFLAGS = ""; PRIVATE_HEADERS_FOLDER_PATH = ""; - PRODUCT_MODULE_NAME = RCTNetwork; - PRODUCT_NAME = "React-RCTNetwork"; + PRODUCT_MODULE_NAME = EXFileSystem; + PRODUCT_NAME = EXFileSystem; PUBLIC_HEADERS_FOLDER_PATH = ""; SDKROOT = iphoneos; SKIP_INSTALL = YES; @@ -38940,28 +38367,26 @@ }; name = Release; }; - 86D704FC4DBC00A97F725EBD0F56BF90 /* Release */ = { + 879CB95853CB9B100D8AD8A9C83F5610 /* Release */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 89E93430F71A71DBFADC0D1285DF7A14 /* EXFileSystem.release.xcconfig */; + baseConfigurationReference = 0C404EDA3875132C8D70CCF5BD2B3946 /* Pods-defaults-RocketChatRN.release.xcconfig */; buildSettings = { + ALWAYS_EMBED_SWIFT_STANDARD_LIBRARIES = NO; APPLICATION_EXTENSION_API_ONLY = NO; ARCHS = "$(ARCHS_STANDARD_64_BIT)"; CLANG_ENABLE_OBJC_WEAK = NO; "CODE_SIGN_IDENTITY[sdk=appletvos*]" = ""; "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = ""; "CODE_SIGN_IDENTITY[sdk=watchos*]" = ""; - GCC_PREFIX_HEADER = "Target Support Files/EXFileSystem/EXFileSystem-prefix.pch"; IPHONEOS_DEPLOYMENT_TARGET = 11.0; + MACH_O_TYPE = staticlib; + MODULEMAP_FILE = "Target Support Files/Pods-defaults-RocketChatRN/Pods-defaults-RocketChatRN.modulemap"; OTHER_LDFLAGS = ""; OTHER_LIBTOOLFLAGS = ""; - PRIVATE_HEADERS_FOLDER_PATH = ""; - PRODUCT_MODULE_NAME = EXFileSystem; - PRODUCT_NAME = EXFileSystem; - PUBLIC_HEADERS_FOLDER_PATH = ""; + PODS_ROOT = "$(SRCROOT)"; + PRODUCT_BUNDLE_IDENTIFIER = "org.cocoapods.${PRODUCT_NAME:rfc1034identifier}"; SDKROOT = iphoneos; SKIP_INSTALL = YES; - SWIFT_ACTIVE_COMPILATION_CONDITIONS = "$(inherited) "; - SWIFT_VERSION = 5.0; TARGETED_DEVICE_FAMILY = "1,2"; VALIDATE_PRODUCT = YES; }; @@ -38969,7 +38394,7 @@ }; 87C4B8BC048F40119CF450A38B64C9EC /* Release */ = { isa = XCBuildConfiguration; - baseConfigurationReference = AE81EB40D8855381204EDA2A1E90003E /* UMAppLoader.release.xcconfig */; + baseConfigurationReference = 6BDB83DE4FF6D60B4A33255771EDF9BA /* UMAppLoader.release.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; ARCHS = "$(ARCHS_STANDARD_64_BIT)"; @@ -38994,9 +38419,34 @@ }; name = Release; }; + 8813719B9103C96962D4BDC79F380ED9 /* Debug */ = { + isa = XCBuildConfiguration; + baseConfigurationReference = E6C55CDB3C7EEB76F1BDEC8B84C08B70 /* Flipper-DoubleConversion.debug.xcconfig */; + buildSettings = { + APPLICATION_EXTENSION_API_ONLY = NO; + 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/Flipper-DoubleConversion/Flipper-DoubleConversion-prefix.pch"; + IPHONEOS_DEPLOYMENT_TARGET = 11.0; + OTHER_LDFLAGS = ""; + OTHER_LIBTOOLFLAGS = ""; + PRIVATE_HEADERS_FOLDER_PATH = ""; + PRODUCT_MODULE_NAME = DoubleConversion; + PRODUCT_NAME = "Flipper-DoubleConversion"; + 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; + }; 88B180B6FDB37C9A632CA95AA80DF593 /* Debug */ = { isa = XCBuildConfiguration; - baseConfigurationReference = BAB84396E1439CFE9B9D46D2E892FB4F /* RNCAsyncStorage.debug.xcconfig */; + baseConfigurationReference = FBD7EC5C4E9BF5E79948261B286C57ED /* RNCAsyncStorage.debug.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; ARCHS = "$(ARCHS_STANDARD_64_BIT)"; @@ -39019,22 +38469,23 @@ }; name = Debug; }; - 8979F518F31EE6B9AA3C5B6BD3A7C7DB /* Debug */ = { + 89EF4439BDF39C665C924AC65ECB8271 /* Debug */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 7168429E95F77F02B8E48355B4F86802 /* RCT-Folly.debug.xcconfig */; + baseConfigurationReference = EEFDD3D1CDB51E78F30A78E695583DAD /* EXVideoThumbnails.debug.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; ARCHS = "$(ARCHS_STANDARD_64_BIT)"; + CLANG_ENABLE_OBJC_WEAK = NO; "CODE_SIGN_IDENTITY[sdk=appletvos*]" = ""; "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = ""; "CODE_SIGN_IDENTITY[sdk=watchos*]" = ""; - GCC_PREFIX_HEADER = "Target Support Files/RCT-Folly/RCT-Folly-prefix.pch"; + GCC_PREFIX_HEADER = "Target Support Files/EXVideoThumbnails/EXVideoThumbnails-prefix.pch"; IPHONEOS_DEPLOYMENT_TARGET = 11.0; OTHER_LDFLAGS = ""; OTHER_LIBTOOLFLAGS = ""; PRIVATE_HEADERS_FOLDER_PATH = ""; - PRODUCT_MODULE_NAME = folly; - PRODUCT_NAME = "RCT-Folly"; + PRODUCT_MODULE_NAME = EXVideoThumbnails; + PRODUCT_NAME = EXVideoThumbnails; PUBLIC_HEADERS_FOLDER_PATH = ""; SDKROOT = iphoneos; SKIP_INSTALL = YES; @@ -39044,73 +38495,74 @@ }; name = Debug; }; - 89BDA7237595C197C7B5FE79F3C37755 /* Debug */ = { + 8A6C967434ED5981B3FF2FD9EFFB408E /* Release */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 711A800CF56C88C5CA3487D9A12B0336 /* MMKVCore.debug.xcconfig */; + baseConfigurationReference = B056643EEAA87C1FF8FF181C98E8A5A3 /* Flipper-PeerTalk.release.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; 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/MMKVCore/MMKVCore-prefix.pch"; + GCC_PREFIX_HEADER = "Target Support Files/Flipper-PeerTalk/Flipper-PeerTalk-prefix.pch"; IPHONEOS_DEPLOYMENT_TARGET = 11.0; OTHER_LDFLAGS = ""; OTHER_LIBTOOLFLAGS = ""; PRIVATE_HEADERS_FOLDER_PATH = ""; - PRODUCT_MODULE_NAME = MMKVCore; - PRODUCT_NAME = MMKVCore; + PRODUCT_MODULE_NAME = peertalk; + PRODUCT_NAME = "Flipper-PeerTalk"; PUBLIC_HEADERS_FOLDER_PATH = ""; SDKROOT = iphoneos; SKIP_INSTALL = YES; SWIFT_ACTIVE_COMPILATION_CONDITIONS = "$(inherited) "; SWIFT_VERSION = 5.0; TARGETED_DEVICE_FAMILY = "1,2"; + VALIDATE_PRODUCT = YES; }; - name = Debug; + name = Release; }; - 89EF4439BDF39C665C924AC65ECB8271 /* Debug */ = { + 8A9F81DF29FBBC590FBD62EB3FFABB9C /* Release */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 1407654FC107F76BB7A3E5B2DD9081B5 /* EXVideoThumbnails.debug.xcconfig */; + baseConfigurationReference = DC88A0066DA2D56B8BDD2F35EA19F97C /* PromisesObjC.release.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; ARCHS = "$(ARCHS_STANDARD_64_BIT)"; - CLANG_ENABLE_OBJC_WEAK = NO; "CODE_SIGN_IDENTITY[sdk=appletvos*]" = ""; "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = ""; "CODE_SIGN_IDENTITY[sdk=watchos*]" = ""; - GCC_PREFIX_HEADER = "Target Support Files/EXVideoThumbnails/EXVideoThumbnails-prefix.pch"; IPHONEOS_DEPLOYMENT_TARGET = 11.0; OTHER_LDFLAGS = ""; OTHER_LIBTOOLFLAGS = ""; PRIVATE_HEADERS_FOLDER_PATH = ""; - PRODUCT_MODULE_NAME = EXVideoThumbnails; - PRODUCT_NAME = EXVideoThumbnails; + PRODUCT_MODULE_NAME = FBLPromises; + PRODUCT_NAME = PromisesObjC; PUBLIC_HEADERS_FOLDER_PATH = ""; SDKROOT = iphoneos; SKIP_INSTALL = YES; SWIFT_ACTIVE_COMPILATION_CONDITIONS = "$(inherited) "; SWIFT_VERSION = 5.0; TARGETED_DEVICE_FAMILY = "1,2"; + VALIDATE_PRODUCT = YES; }; - name = Debug; + name = Release; }; - 8A6C967434ED5981B3FF2FD9EFFB408E /* Release */ = { + 8B0AC0ED2880BE5AE6FAA19B0EC00512 /* Release */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 23CBD9A37682B465F6CB75E650F8675D /* Flipper-PeerTalk.release.xcconfig */; + baseConfigurationReference = 1B451D2C333340E5C61C9D464B249D28 /* libevent.release.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; ARCHS = "$(ARCHS_STANDARD_64_BIT)"; + CLANG_ENABLE_OBJC_WEAK = NO; "CODE_SIGN_IDENTITY[sdk=appletvos*]" = ""; "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = ""; "CODE_SIGN_IDENTITY[sdk=watchos*]" = ""; - GCC_PREFIX_HEADER = "Target Support Files/Flipper-PeerTalk/Flipper-PeerTalk-prefix.pch"; + GCC_PREFIX_HEADER = "Target Support Files/libevent/libevent-prefix.pch"; IPHONEOS_DEPLOYMENT_TARGET = 11.0; OTHER_LDFLAGS = ""; OTHER_LIBTOOLFLAGS = ""; PRIVATE_HEADERS_FOLDER_PATH = ""; - PRODUCT_MODULE_NAME = peertalk; - PRODUCT_NAME = "Flipper-PeerTalk"; + PRODUCT_MODULE_NAME = libevent; + PRODUCT_NAME = libevent; PUBLIC_HEADERS_FOLDER_PATH = ""; SDKROOT = iphoneos; SKIP_INSTALL = YES; @@ -39121,9 +38573,26 @@ }; name = Release; }; + 8BF57CEAC9609A28F8AB62DE067F709E /* Release */ = { + isa = XCBuildConfiguration; + baseConfigurationReference = 164CF990B6AC6234874C2E2172DF3099 /* React-runtimeexecutor.release.xcconfig */; + buildSettings = { + APPLICATION_EXTENSION_API_ONLY = NO; + ARCHS = "$(ARCHS_STANDARD_64_BIT)"; + ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon; + ASSETCATALOG_COMPILER_GLOBAL_ACCENT_COLOR_NAME = AccentColor; + CLANG_ENABLE_OBJC_WEAK = NO; + IPHONEOS_DEPLOYMENT_TARGET = 11.0; + LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks"; + SDKROOT = iphoneos; + TARGETED_DEVICE_FAMILY = "1,2"; + VALIDATE_PRODUCT = YES; + }; + name = Release; + }; 8C029D4C10A8BFBC3C31D56237F7A017 /* Release */ = { isa = XCBuildConfiguration; - baseConfigurationReference = AAAD5A87BBE65DD6BFF0976C7031A52C /* BugsnagReactNative.release.xcconfig */; + baseConfigurationReference = 315831ACFBEFB820DCC00BD89DBA328D /* BugsnagReactNative.release.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; ARCHS = "$(ARCHS_STANDARD_64_BIT)"; @@ -39147,9 +38616,25 @@ }; name = Release; }; - 8C041440129A4F3B898C794341EE4653 /* Release */ = { + 8CC9ECD1E0FBAA4CC4E2C6D1714C0D39 /* Release */ = { + isa = XCBuildConfiguration; + baseConfigurationReference = AF116B0C9DF3973E4D1C89D74AF2BEF2 /* boost-for-react-native.release.xcconfig */; + buildSettings = { + APPLICATION_EXTENSION_API_ONLY = NO; + ARCHS = "$(ARCHS_STANDARD_64_BIT)"; + ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon; + ASSETCATALOG_COMPILER_GLOBAL_ACCENT_COLOR_NAME = AccentColor; + IPHONEOS_DEPLOYMENT_TARGET = 11.0; + LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks"; + SDKROOT = iphoneos; + TARGETED_DEVICE_FAMILY = "1,2"; + VALIDATE_PRODUCT = YES; + }; + name = Release; + }; + 8E0FD6F4C53F1D48C5DA37D6282DBE41 /* Release */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 2DC979E4C53D61D48A37D92D822E0464 /* ReactCommon.release.xcconfig */; + baseConfigurationReference = 483DE237053E6501C418813E704C1737 /* UMCore.release.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; ARCHS = "$(ARCHS_STANDARD_64_BIT)"; @@ -39157,13 +38642,13 @@ "CODE_SIGN_IDENTITY[sdk=appletvos*]" = ""; "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = ""; "CODE_SIGN_IDENTITY[sdk=watchos*]" = ""; - GCC_PREFIX_HEADER = "Target Support Files/ReactCommon/ReactCommon-prefix.pch"; + GCC_PREFIX_HEADER = "Target Support Files/UMCore/UMCore-prefix.pch"; IPHONEOS_DEPLOYMENT_TARGET = 11.0; OTHER_LDFLAGS = ""; OTHER_LIBTOOLFLAGS = ""; PRIVATE_HEADERS_FOLDER_PATH = ""; - PRODUCT_MODULE_NAME = ReactCommon; - PRODUCT_NAME = ReactCommon; + PRODUCT_MODULE_NAME = UMCore; + PRODUCT_NAME = UMCore; PUBLIC_HEADERS_FOLDER_PATH = ""; SDKROOT = iphoneos; SKIP_INSTALL = YES; @@ -39174,9 +38659,9 @@ }; name = Release; }; - 8DBA8377BB5292064B97CFEB108E4F44 /* Release */ = { + 8EA3BBFFF07DD22039AC89222387DD4A /* Debug */ = { isa = XCBuildConfiguration; - baseConfigurationReference = BE506F4325CA171F9BC83739E72F4075 /* DoubleConversion.release.xcconfig */; + baseConfigurationReference = D5CBF2336F4095BC29EB6E32B6EDAED5 /* DoubleConversion.debug.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; ARCHS = "$(ARCHS_STANDARD_64_BIT)"; @@ -39197,38 +38682,37 @@ SWIFT_ACTIVE_COMPILATION_CONDITIONS = "$(inherited) "; SWIFT_VERSION = 5.0; TARGETED_DEVICE_FAMILY = "1,2"; - VALIDATE_PRODUCT = YES; }; - name = Release; + name = Debug; }; - 8DCB063F34ECFDADD030CDFE33C61A50 /* Release */ = { + 8EDC6A1141F0E81C219D643A213A625C /* Debug */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 03376185B2F0AEF87CE3705E3A6407C2 /* GoogleDataTransport.release.xcconfig */; + baseConfigurationReference = 930D97BC88AFEE502D58B06AE880A9E7 /* RNFBApp.debug.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; 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/RNFBApp/RNFBApp-prefix.pch"; IPHONEOS_DEPLOYMENT_TARGET = 11.0; OTHER_LDFLAGS = ""; OTHER_LIBTOOLFLAGS = ""; PRIVATE_HEADERS_FOLDER_PATH = ""; - PRODUCT_MODULE_NAME = GoogleDataTransport; - PRODUCT_NAME = GoogleDataTransport; + PRODUCT_MODULE_NAME = RNFBApp; + PRODUCT_NAME = RNFBApp; 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; + name = Debug; }; - 8EF5F1521A207A635C0BCCDEB7F9789B /* Release */ = { + 8F10C49606FA594BECAB5250F35485D9 /* Release */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 85EC70A6AA577F3618C422F6509F6B57 /* FBReactNativeSpec.release.xcconfig */; + baseConfigurationReference = 9A9DA9A0D1F5C69DCEA3815845A3298C /* EXAppleAuthentication.release.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; ARCHS = "$(ARCHS_STANDARD_64_BIT)"; @@ -39236,13 +38720,13 @@ "CODE_SIGN_IDENTITY[sdk=appletvos*]" = ""; "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = ""; "CODE_SIGN_IDENTITY[sdk=watchos*]" = ""; - GCC_PREFIX_HEADER = "Target Support Files/FBReactNativeSpec/FBReactNativeSpec-prefix.pch"; + GCC_PREFIX_HEADER = "Target Support Files/EXAppleAuthentication/EXAppleAuthentication-prefix.pch"; IPHONEOS_DEPLOYMENT_TARGET = 11.0; OTHER_LDFLAGS = ""; OTHER_LIBTOOLFLAGS = ""; PRIVATE_HEADERS_FOLDER_PATH = ""; - PRODUCT_MODULE_NAME = FBReactNativeSpec; - PRODUCT_NAME = FBReactNativeSpec; + PRODUCT_MODULE_NAME = EXAppleAuthentication; + PRODUCT_NAME = EXAppleAuthentication; PUBLIC_HEADERS_FOLDER_PATH = ""; SDKROOT = iphoneos; SKIP_INSTALL = YES; @@ -39253,9 +38737,9 @@ }; name = Release; }; - 8F10C49606FA594BECAB5250F35485D9 /* Release */ = { + 8F82C7592D501BE95050AC1F1083DC02 /* Debug */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 5FAA21C6C0C9980EEE59850DC56F4710 /* EXAppleAuthentication.release.xcconfig */; + baseConfigurationReference = 50DD36A025468F5F02F6AF789FE6D183 /* React-RCTText.debug.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; ARCHS = "$(ARCHS_STANDARD_64_BIT)"; @@ -39263,22 +38747,21 @@ "CODE_SIGN_IDENTITY[sdk=appletvos*]" = ""; "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = ""; "CODE_SIGN_IDENTITY[sdk=watchos*]" = ""; - GCC_PREFIX_HEADER = "Target Support Files/EXAppleAuthentication/EXAppleAuthentication-prefix.pch"; + GCC_PREFIX_HEADER = "Target Support Files/React-RCTText/React-RCTText-prefix.pch"; IPHONEOS_DEPLOYMENT_TARGET = 11.0; OTHER_LDFLAGS = ""; OTHER_LIBTOOLFLAGS = ""; PRIVATE_HEADERS_FOLDER_PATH = ""; - PRODUCT_MODULE_NAME = EXAppleAuthentication; - PRODUCT_NAME = EXAppleAuthentication; + PRODUCT_MODULE_NAME = RCTText; + PRODUCT_NAME = "React-RCTText"; 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; + name = Debug; }; 903A0004D3E6651EFD5D2E16214D101B /* Release */ = { isa = XCBuildConfiguration; @@ -39345,7 +38828,7 @@ }; 909DDA39D5B83E93426D408B37888AB8 /* Debug */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 7752D2A9B047C5C829174949116FD9D8 /* RNDeviceInfo.debug.xcconfig */; + baseConfigurationReference = 783C57FC5E602D978EA01AA3688FE8DC /* RNDeviceInfo.debug.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; ARCHS = "$(ARCHS_STANDARD_64_BIT)"; @@ -39370,7 +38853,7 @@ }; 916382E6528A50D71E3AF4BB4F713975 /* Debug */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 2C4C8B8A91B2C7212F97BAF2DAE6A97B /* Firebase.debug.xcconfig */; + baseConfigurationReference = A1826A51E5A3B71B55BC8ED2946E146D /* Firebase.debug.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; ARCHS = "$(ARCHS_STANDARD_64_BIT)"; @@ -39383,67 +38866,61 @@ }; name = Debug; }; - 917FA8A337F7AE5AA7F2C7E72B5EC3B7 /* Release */ = { + 91CFF37DC72E4E52FC903249E78EC3E6 /* Debug */ = { isa = XCBuildConfiguration; - baseConfigurationReference = D6CA99BC0704966CBE320E4264148590 /* UMFileSystemInterface.release.xcconfig */; + baseConfigurationReference = 1B80F1E298C7BE951402589FADECE3E6 /* ReactCommon.debug.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; ARCHS = "$(ARCHS_STANDARD_64_BIT)"; - ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon; - ASSETCATALOG_COMPILER_GLOBAL_ACCENT_COLOR_NAME = AccentColor; CLANG_ENABLE_OBJC_WEAK = NO; - IPHONEOS_DEPLOYMENT_TARGET = 11.0; - LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks"; - SDKROOT = iphoneos; - TARGETED_DEVICE_FAMILY = "1,2"; - VALIDATE_PRODUCT = YES; - }; - name = Release; - }; - 9252CB0A71F0690FB20E718A1C797988 /* Release */ = { - isa = XCBuildConfiguration; - baseConfigurationReference = 8AA93F829781BB82572A2B7D14A93599 /* ReactNativeUiLib.release.xcconfig */; - buildSettings = { - APPLICATION_EXTENSION_API_ONLY = NO; - 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/ReactNativeUiLib/ReactNativeUiLib-prefix.pch"; + GCC_PREFIX_HEADER = "Target Support Files/ReactCommon/ReactCommon-prefix.pch"; IPHONEOS_DEPLOYMENT_TARGET = 11.0; OTHER_LDFLAGS = ""; OTHER_LIBTOOLFLAGS = ""; PRIVATE_HEADERS_FOLDER_PATH = ""; - PRODUCT_MODULE_NAME = ReactNativeUiLib; - PRODUCT_NAME = ReactNativeUiLib; + PRODUCT_MODULE_NAME = ReactCommon; + PRODUCT_NAME = ReactCommon; 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; + name = Debug; }; - 93377661CC8494FAB502425E432145E3 /* Debug */ = { + 9252CB0A71F0690FB20E718A1C797988 /* Release */ = { isa = XCBuildConfiguration; - baseConfigurationReference = F8CD14050C72D23D91D42E504CB876EF /* GoogleAppMeasurement.debug.xcconfig */; + baseConfigurationReference = 7422083617C1E522AFBF1BAB0FC9C0F3 /* ReactNativeUiLib.release.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; ARCHS = "$(ARCHS_STANDARD_64_BIT)"; - ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon; - ASSETCATALOG_COMPILER_GLOBAL_ACCENT_COLOR_NAME = AccentColor; + "CODE_SIGN_IDENTITY[sdk=appletvos*]" = ""; + "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = ""; + "CODE_SIGN_IDENTITY[sdk=watchos*]" = ""; + GCC_PREFIX_HEADER = "Target Support Files/ReactNativeUiLib/ReactNativeUiLib-prefix.pch"; IPHONEOS_DEPLOYMENT_TARGET = 11.0; - LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks"; + OTHER_LDFLAGS = ""; + OTHER_LIBTOOLFLAGS = ""; + PRIVATE_HEADERS_FOLDER_PATH = ""; + PRODUCT_MODULE_NAME = ReactNativeUiLib; + PRODUCT_NAME = ReactNativeUiLib; + PUBLIC_HEADERS_FOLDER_PATH = ""; SDKROOT = iphoneos; + SKIP_INSTALL = YES; + SWIFT_ACTIVE_COMPILATION_CONDITIONS = "$(inherited) "; + SWIFT_VERSION = 5.0; TARGETED_DEVICE_FAMILY = "1,2"; + VALIDATE_PRODUCT = YES; }; - name = Debug; + name = Release; }; 9376D68D65FD8921FB576F9CADCF7468 /* Debug */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 5358A11D087A13F0F9BAADB9C6044558 /* EXHaptics.debug.xcconfig */; + baseConfigurationReference = 2D8EE039B4423CFA9CD0F721D152E617 /* EXHaptics.debug.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; ARCHS = "$(ARCHS_STANDARD_64_BIT)"; @@ -39469,7 +38946,7 @@ }; 938A0DBE22AFAC483AB84CD8F08F625B /* Release */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 67FC132B2BFBA61E75482AE535AD2BCB /* react-native-cameraroll.release.xcconfig */; + baseConfigurationReference = 51F68D11476DD57F758D24A7380631DF /* react-native-cameraroll.release.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; ARCHS = "$(ARCHS_STANDARD_64_BIT)"; @@ -39493,47 +38970,48 @@ }; name = Release; }; - 9610165DCE768DA3F3DCE06E6E32848D /* Debug */ = { + 93F961499557D74AD5BF35B71A43656C /* Debug */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 33CE3A123A50C02157F9260308A228EE /* Pods-defaults-RocketChatRN.debug.xcconfig */; + baseConfigurationReference = ED2378544EDCF5D2CDCAD6A2A635BC8E /* React-RCTSettings.debug.xcconfig */; buildSettings = { - ALWAYS_EMBED_SWIFT_STANDARD_LIBRARIES = NO; APPLICATION_EXTENSION_API_ONLY = NO; ARCHS = "$(ARCHS_STANDARD_64_BIT)"; CLANG_ENABLE_OBJC_WEAK = NO; "CODE_SIGN_IDENTITY[sdk=appletvos*]" = ""; "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = ""; "CODE_SIGN_IDENTITY[sdk=watchos*]" = ""; + GCC_PREFIX_HEADER = "Target Support Files/React-RCTSettings/React-RCTSettings-prefix.pch"; IPHONEOS_DEPLOYMENT_TARGET = 11.0; - MACH_O_TYPE = staticlib; - MODULEMAP_FILE = "Target Support Files/Pods-defaults-RocketChatRN/Pods-defaults-RocketChatRN.modulemap"; OTHER_LDFLAGS = ""; OTHER_LIBTOOLFLAGS = ""; - PODS_ROOT = "$(SRCROOT)"; - PRODUCT_BUNDLE_IDENTIFIER = "org.cocoapods.${PRODUCT_NAME:rfc1034identifier}"; + PRIVATE_HEADERS_FOLDER_PATH = ""; + PRODUCT_MODULE_NAME = RCTSettings; + PRODUCT_NAME = "React-RCTSettings"; + 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; }; - 969FBF0DF939F0D1B061AFF26BA7FDBA /* Debug */ = { + 94DC33CB0C603BD1506DFC434F9D5315 /* Debug */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 443779677599696911099703F1E27B42 /* React-cxxreact.debug.xcconfig */; + baseConfigurationReference = EE5D7FDE71CDF4A8E89BE9507C683653 /* libwebp.debug.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; ARCHS = "$(ARCHS_STANDARD_64_BIT)"; - CLANG_ENABLE_OBJC_WEAK = NO; "CODE_SIGN_IDENTITY[sdk=appletvos*]" = ""; "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = ""; "CODE_SIGN_IDENTITY[sdk=watchos*]" = ""; - GCC_PREFIX_HEADER = "Target Support Files/React-cxxreact/React-cxxreact-prefix.pch"; + GCC_PREFIX_HEADER = "Target Support Files/libwebp/libwebp-prefix.pch"; IPHONEOS_DEPLOYMENT_TARGET = 11.0; OTHER_LDFLAGS = ""; OTHER_LIBTOOLFLAGS = ""; PRIVATE_HEADERS_FOLDER_PATH = ""; - PRODUCT_MODULE_NAME = cxxreact; - PRODUCT_NAME = "React-cxxreact"; + PRODUCT_MODULE_NAME = libwebp; + PRODUCT_NAME = libwebp; PUBLIC_HEADERS_FOLDER_PATH = ""; SDKROOT = iphoneos; SKIP_INSTALL = YES; @@ -39543,9 +39021,9 @@ }; name = Debug; }; - 96BFC21273E9354276B3DF8DF3CD7C17 /* Debug */ = { + 97271A9574DE16AB94DBCA340E986D90 /* Debug */ = { isa = XCBuildConfiguration; - baseConfigurationReference = F68BDB89D6BB3EDD1ADD7F9F18B1F9C2 /* UMCore.debug.xcconfig */; + baseConfigurationReference = 4449FDDF4708DFF964DACA95B2ED2E07 /* FlipperKit.debug.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; ARCHS = "$(ARCHS_STANDARD_64_BIT)"; @@ -39553,13 +39031,14 @@ "CODE_SIGN_IDENTITY[sdk=appletvos*]" = ""; "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = ""; "CODE_SIGN_IDENTITY[sdk=watchos*]" = ""; - GCC_PREFIX_HEADER = "Target Support Files/UMCore/UMCore-prefix.pch"; + GCC_PREFIX_HEADER = "Target Support Files/FlipperKit/FlipperKit-prefix.pch"; IPHONEOS_DEPLOYMENT_TARGET = 11.0; + MODULEMAP_FILE = Headers/Public/FlipperKit/FlipperKit.modulemap; OTHER_LDFLAGS = ""; OTHER_LIBTOOLFLAGS = ""; PRIVATE_HEADERS_FOLDER_PATH = ""; - PRODUCT_MODULE_NAME = UMCore; - PRODUCT_NAME = UMCore; + PRODUCT_MODULE_NAME = FlipperKit; + PRODUCT_NAME = FlipperKit; PUBLIC_HEADERS_FOLDER_PATH = ""; SDKROOT = iphoneos; SKIP_INSTALL = YES; @@ -39569,9 +39048,9 @@ }; name = Debug; }; - 97271A9574DE16AB94DBCA340E986D90 /* Debug */ = { + 9753F5A33937A57B9E83B97216F845B9 /* Debug */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 602BD77857A04584FC205689CE88517E /* FlipperKit.debug.xcconfig */; + baseConfigurationReference = 25919C3E9F7D856708388E79F4E1406F /* EXConstants.debug.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; ARCHS = "$(ARCHS_STANDARD_64_BIT)"; @@ -39579,14 +39058,13 @@ "CODE_SIGN_IDENTITY[sdk=appletvos*]" = ""; "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = ""; "CODE_SIGN_IDENTITY[sdk=watchos*]" = ""; - GCC_PREFIX_HEADER = "Target Support Files/FlipperKit/FlipperKit-prefix.pch"; + GCC_PREFIX_HEADER = "Target Support Files/EXConstants/EXConstants-prefix.pch"; IPHONEOS_DEPLOYMENT_TARGET = 11.0; - MODULEMAP_FILE = Headers/Public/FlipperKit/FlipperKit.modulemap; OTHER_LDFLAGS = ""; OTHER_LIBTOOLFLAGS = ""; PRIVATE_HEADERS_FOLDER_PATH = ""; - PRODUCT_MODULE_NAME = FlipperKit; - PRODUCT_NAME = FlipperKit; + PRODUCT_MODULE_NAME = EXConstants; + PRODUCT_NAME = EXConstants; PUBLIC_HEADERS_FOLDER_PATH = ""; SDKROOT = iphoneos; SKIP_INSTALL = YES; @@ -39596,9 +39074,9 @@ }; name = Debug; }; - 9753F5A33937A57B9E83B97216F845B9 /* Debug */ = { + 99411588D432F0555587DF235BF13EC2 /* Release */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 62D27314EB70A5DB01D620B3C7B5AE22 /* EXConstants.debug.xcconfig */; + baseConfigurationReference = 63AE1B5A4BBCE6A5A6F03038206B99FF /* FBReactNativeSpec.release.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; ARCHS = "$(ARCHS_STANDARD_64_BIT)"; @@ -39606,50 +39084,68 @@ "CODE_SIGN_IDENTITY[sdk=appletvos*]" = ""; "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = ""; "CODE_SIGN_IDENTITY[sdk=watchos*]" = ""; - GCC_PREFIX_HEADER = "Target Support Files/EXConstants/EXConstants-prefix.pch"; + GCC_PREFIX_HEADER = "Target Support Files/FBReactNativeSpec/FBReactNativeSpec-prefix.pch"; IPHONEOS_DEPLOYMENT_TARGET = 11.0; OTHER_LDFLAGS = ""; OTHER_LIBTOOLFLAGS = ""; PRIVATE_HEADERS_FOLDER_PATH = ""; - PRODUCT_MODULE_NAME = EXConstants; - PRODUCT_NAME = EXConstants; + PRODUCT_MODULE_NAME = FBReactNativeSpec; + PRODUCT_NAME = FBReactNativeSpec; PUBLIC_HEADERS_FOLDER_PATH = ""; SDKROOT = iphoneos; SKIP_INSTALL = YES; SWIFT_ACTIVE_COMPILATION_CONDITIONS = "$(inherited) "; SWIFT_VERSION = 5.0; TARGETED_DEVICE_FAMILY = "1,2"; + VALIDATE_PRODUCT = YES; }; - name = Debug; + name = Release; + }; + 99AC8DD0033665D7ED5EAA23B6B1A7BE /* Release */ = { + isa = XCBuildConfiguration; + baseConfigurationReference = 6FD502FBDE9ADE2537AD23B5F0C89814 /* FirebaseAnalytics.release.xcconfig */; + buildSettings = { + APPLICATION_EXTENSION_API_ONLY = NO; + ARCHS = "$(ARCHS_STANDARD_64_BIT)"; + ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon; + ASSETCATALOG_COMPILER_GLOBAL_ACCENT_COLOR_NAME = AccentColor; + IPHONEOS_DEPLOYMENT_TARGET = 11.0; + LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks"; + SDKROOT = iphoneos; + TARGETED_DEVICE_FAMILY = "1,2"; + VALIDATE_PRODUCT = YES; + }; + name = Release; }; - 9A8C6476434986F0FF606E2E91804CCD /* Debug */ = { + 9B0A474AE5942E5B75BF81012D765EE0 /* Release */ = { isa = XCBuildConfiguration; - baseConfigurationReference = DFD4B2798F450F184E7C446D967B164E /* SDWebImageWebPCoder.debug.xcconfig */; + baseConfigurationReference = D769384A5426A2E4EF2F1B1EBE235883 /* TOCropViewController.release.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; 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/SDWebImageWebPCoder/SDWebImageWebPCoder-prefix.pch"; + GCC_PREFIX_HEADER = "Target Support Files/TOCropViewController/TOCropViewController-prefix.pch"; IPHONEOS_DEPLOYMENT_TARGET = 11.0; OTHER_LDFLAGS = ""; OTHER_LIBTOOLFLAGS = ""; PRIVATE_HEADERS_FOLDER_PATH = ""; - PRODUCT_MODULE_NAME = SDWebImageWebPCoder; - PRODUCT_NAME = SDWebImageWebPCoder; + PRODUCT_MODULE_NAME = TOCropViewController; + PRODUCT_NAME = TOCropViewController; PUBLIC_HEADERS_FOLDER_PATH = ""; SDKROOT = iphoneos; SKIP_INSTALL = YES; SWIFT_ACTIVE_COMPILATION_CONDITIONS = "$(inherited) "; SWIFT_VERSION = 5.0; TARGETED_DEVICE_FAMILY = "1,2"; + VALIDATE_PRODUCT = YES; }; - name = Debug; + name = Release; }; 9B5BF48577E71ABD8A1652767C41E3B4 /* Release */ = { isa = XCBuildConfiguration; - baseConfigurationReference = EB549B703A202BC1F8F18BA6CA72C26B /* EXPermissions.release.xcconfig */; + baseConfigurationReference = 37D8C5D5EA643CB40090F93E9DDA784C /* EXPermissions.release.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; ARCHS = "$(ARCHS_STANDARD_64_BIT)"; @@ -39674,9 +39170,78 @@ }; name = Release; }; + 9BAACC79BC1AC574070AE5C8207C8AA8 /* Release */ = { + isa = XCBuildConfiguration; + baseConfigurationReference = 6AE6A8AC394688CEBF50D5D7E59F9E0C /* RCTTypeSafety.release.xcconfig */; + buildSettings = { + APPLICATION_EXTENSION_API_ONLY = NO; + ARCHS = "$(ARCHS_STANDARD_64_BIT)"; + CLANG_ENABLE_OBJC_WEAK = NO; + "CODE_SIGN_IDENTITY[sdk=appletvos*]" = ""; + "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = ""; + "CODE_SIGN_IDENTITY[sdk=watchos*]" = ""; + GCC_PREFIX_HEADER = "Target Support Files/RCTTypeSafety/RCTTypeSafety-prefix.pch"; + IPHONEOS_DEPLOYMENT_TARGET = 11.0; + OTHER_LDFLAGS = ""; + OTHER_LIBTOOLFLAGS = ""; + PRIVATE_HEADERS_FOLDER_PATH = ""; + PRODUCT_MODULE_NAME = RCTTypeSafety; + PRODUCT_NAME = RCTTypeSafety; + 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; + }; + 9C22F548D1EB7E9B4F43CB9404B2CBA5 /* Debug */ = { + isa = XCBuildConfiguration; + baseConfigurationReference = 93BE2A7258570215888E5E1DBC0D20DA /* YogaKit.debug.xcconfig */; + buildSettings = { + APPLICATION_EXTENSION_API_ONLY = NO; + 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/YogaKit/YogaKit-prefix.pch"; + IPHONEOS_DEPLOYMENT_TARGET = 11.0; + MODULEMAP_FILE = Headers/Public/YogaKit/YogaKit.modulemap; + OTHER_LDFLAGS = ""; + OTHER_LIBTOOLFLAGS = ""; + PRIVATE_HEADERS_FOLDER_PATH = ""; + PRODUCT_MODULE_NAME = YogaKit; + PRODUCT_NAME = YogaKit; + PUBLIC_HEADERS_FOLDER_PATH = ""; + SDKROOT = iphoneos; + SKIP_INSTALL = YES; + SWIFT_ACTIVE_COMPILATION_CONDITIONS = "$(inherited) "; + SWIFT_VERSION = 4.1; + TARGETED_DEVICE_FAMILY = "1,2"; + }; + name = Debug; + }; + 9CCCF11306D6B6C2ECE056A5CFC6C1E0 /* Debug */ = { + isa = XCBuildConfiguration; + baseConfigurationReference = D6E7E5C984A7CE02FD4AD0154690A7A0 /* React-runtimeexecutor.debug.xcconfig */; + buildSettings = { + APPLICATION_EXTENSION_API_ONLY = NO; + ARCHS = "$(ARCHS_STANDARD_64_BIT)"; + ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon; + ASSETCATALOG_COMPILER_GLOBAL_ACCENT_COLOR_NAME = AccentColor; + CLANG_ENABLE_OBJC_WEAK = NO; + IPHONEOS_DEPLOYMENT_TARGET = 11.0; + LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks"; + SDKROOT = iphoneos; + TARGETED_DEVICE_FAMILY = "1,2"; + }; + name = Debug; + }; 9D23DAFB91B66D16068F000F5EBC72DF /* Debug */ = { isa = XCBuildConfiguration; - baseConfigurationReference = E6BB15D5AAC1A14C30DCEFA63C6121DC /* react-native-document-picker.debug.xcconfig */; + baseConfigurationReference = 8FFF7AC74A2B4F478C5F2AD660D630E0 /* react-native-document-picker.debug.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; ARCHS = "$(ARCHS_STANDARD_64_BIT)"; @@ -39702,7 +39267,7 @@ }; 9D3B5E8C5C36D3D34B6E77F7F8655A55 /* Release */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 8563B2FC4FB842CB858FC49BF425377E /* react-native-background-timer.release.xcconfig */; + baseConfigurationReference = 3911516156577DF9C5F5A3685066EC74 /* react-native-background-timer.release.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; ARCHS = "$(ARCHS_STANDARD_64_BIT)"; @@ -39728,7 +39293,7 @@ }; 9D421D4D6B43C832B960A98DCDC512EB /* Debug */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 7F391CE3D6B0FE9ACF4401557839803D /* RNRootView.debug.xcconfig */; + baseConfigurationReference = 07699F4D62CD6E1C3475F29B38DBC463 /* RNRootView.debug.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; ARCHS = "$(ARCHS_STANDARD_64_BIT)"; @@ -39753,7 +39318,7 @@ }; 9F51FD9B08CB405EBED8FAAC9B5B95AE /* Release */ = { isa = XCBuildConfiguration; - baseConfigurationReference = B156798CE872930251DCFF8958AA59D3 /* FlipperKit.release.xcconfig */; + baseConfigurationReference = 04A9208A06438BA8697BB0565738EFED /* FlipperKit.release.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; ARCHS = "$(ARCHS_STANDARD_64_BIT)"; @@ -39779,61 +39344,76 @@ }; name = Release; }; - A1D1AFE9631A6B0C42C1F69C0F05BDA7 /* Release */ = { + 9F83EA8537728CCDB28E382A7CBD65B0 /* Release */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 0C404EDA3875132C8D70CCF5BD2B3946 /* Pods-defaults-RocketChatRN.release.xcconfig */; + baseConfigurationReference = F28995EDCAA081DEFAA755562D6D3896 /* React-RCTLinking.release.xcconfig */; buildSettings = { - ALWAYS_EMBED_SWIFT_STANDARD_LIBRARIES = NO; APPLICATION_EXTENSION_API_ONLY = NO; ARCHS = "$(ARCHS_STANDARD_64_BIT)"; CLANG_ENABLE_OBJC_WEAK = NO; "CODE_SIGN_IDENTITY[sdk=appletvos*]" = ""; "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = ""; "CODE_SIGN_IDENTITY[sdk=watchos*]" = ""; + GCC_PREFIX_HEADER = "Target Support Files/React-RCTLinking/React-RCTLinking-prefix.pch"; IPHONEOS_DEPLOYMENT_TARGET = 11.0; - MACH_O_TYPE = staticlib; - MODULEMAP_FILE = "Target Support Files/Pods-defaults-RocketChatRN/Pods-defaults-RocketChatRN.modulemap"; OTHER_LDFLAGS = ""; OTHER_LIBTOOLFLAGS = ""; - PODS_ROOT = "$(SRCROOT)"; - PRODUCT_BUNDLE_IDENTIFIER = "org.cocoapods.${PRODUCT_NAME:rfc1034identifier}"; + PRIVATE_HEADERS_FOLDER_PATH = ""; + PRODUCT_MODULE_NAME = RCTLinking; + PRODUCT_NAME = "React-RCTLinking"; + 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; }; - A270FD9F164FE1DF4DE8F4BB7518F4A0 /* Release */ = { + A114DAA0E3F0416D4CA5ABA7D57C0564 /* Debug */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 310FC110EFDE34CDB679F28F1FCA2920 /* libevent.release.xcconfig */; + baseConfigurationReference = 1F490230F54F9D4FE6BE9E7B3D7BE4C6 /* FirebaseCrashlytics.debug.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; ARCHS = "$(ARCHS_STANDARD_64_BIT)"; - CLANG_ENABLE_OBJC_WEAK = NO; "CODE_SIGN_IDENTITY[sdk=appletvos*]" = ""; "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = ""; "CODE_SIGN_IDENTITY[sdk=watchos*]" = ""; - GCC_PREFIX_HEADER = "Target Support Files/libevent/libevent-prefix.pch"; IPHONEOS_DEPLOYMENT_TARGET = 11.0; OTHER_LDFLAGS = ""; OTHER_LIBTOOLFLAGS = ""; PRIVATE_HEADERS_FOLDER_PATH = ""; - PRODUCT_MODULE_NAME = libevent; - PRODUCT_NAME = libevent; + PRODUCT_MODULE_NAME = FirebaseCrashlytics; + PRODUCT_NAME = FirebaseCrashlytics; 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; + name = Debug; + }; + A161B1C18145766F96E7E0D2FFAE4E50 /* Debug */ = { + isa = XCBuildConfiguration; + baseConfigurationReference = 8DBB4D83A9EF15F3C643036B7BD46BE0 /* React-callinvoker.debug.xcconfig */; + buildSettings = { + APPLICATION_EXTENSION_API_ONLY = NO; + ARCHS = "$(ARCHS_STANDARD_64_BIT)"; + ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon; + ASSETCATALOG_COMPILER_GLOBAL_ACCENT_COLOR_NAME = AccentColor; + CLANG_ENABLE_OBJC_WEAK = NO; + IPHONEOS_DEPLOYMENT_TARGET = 11.0; + LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks"; + SDKROOT = iphoneos; + TARGETED_DEVICE_FAMILY = "1,2"; + }; + name = Debug; }; A3954D608A3250B31D27ACB3F81D6EA3 /* Release */ = { isa = XCBuildConfiguration; - baseConfigurationReference = E201E516C29C03E985F33F4B984DC851 /* EXAV.release.xcconfig */; + baseConfigurationReference = 3E7D9DE5480A25769CB6FD6283AF0206 /* EXAV.release.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; ARCHS = "$(ARCHS_STANDARD_64_BIT)"; @@ -39858,36 +39438,33 @@ }; name = Release; }; - A45B4046181753CDE32D7653F8266908 /* Release */ = { + A68448A40C64066C67C35AA2E0609C25 /* Debug */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 83FC195C5C31491E3BCB9BAD956650FE /* React-RCTText.release.xcconfig */; + baseConfigurationReference = 0A9ABE163B711F9BB4A60628DCA7F037 /* GoogleUtilities.debug.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; ARCHS = "$(ARCHS_STANDARD_64_BIT)"; - CLANG_ENABLE_OBJC_WEAK = NO; "CODE_SIGN_IDENTITY[sdk=appletvos*]" = ""; "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = ""; "CODE_SIGN_IDENTITY[sdk=watchos*]" = ""; - GCC_PREFIX_HEADER = "Target Support Files/React-RCTText/React-RCTText-prefix.pch"; IPHONEOS_DEPLOYMENT_TARGET = 11.0; OTHER_LDFLAGS = ""; OTHER_LIBTOOLFLAGS = ""; PRIVATE_HEADERS_FOLDER_PATH = ""; - PRODUCT_MODULE_NAME = RCTText; - PRODUCT_NAME = "React-RCTText"; + PRODUCT_MODULE_NAME = GoogleUtilities; + PRODUCT_NAME = GoogleUtilities; 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; + name = Debug; }; - A4FA84CB0B49DCBE32F45CD28F313F2C /* Debug */ = { + A6C3EB18351B34CC04925F7802299EAF /* Release */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 03902662E196BE0FB6D7C3BBAD0738EA /* React-RCTAnimation.debug.xcconfig */; + baseConfigurationReference = 48B51B86DAF54784EBC1CBCF0CB636FF /* UMPermissionsInterface.release.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; ARCHS = "$(ARCHS_STANDARD_64_BIT)"; @@ -39895,25 +39472,26 @@ "CODE_SIGN_IDENTITY[sdk=appletvos*]" = ""; "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = ""; "CODE_SIGN_IDENTITY[sdk=watchos*]" = ""; - GCC_PREFIX_HEADER = "Target Support Files/React-RCTAnimation/React-RCTAnimation-prefix.pch"; + GCC_PREFIX_HEADER = "Target Support Files/UMPermissionsInterface/UMPermissionsInterface-prefix.pch"; IPHONEOS_DEPLOYMENT_TARGET = 11.0; OTHER_LDFLAGS = ""; OTHER_LIBTOOLFLAGS = ""; PRIVATE_HEADERS_FOLDER_PATH = ""; - PRODUCT_MODULE_NAME = RCTAnimation; - PRODUCT_NAME = "React-RCTAnimation"; + PRODUCT_MODULE_NAME = UMPermissionsInterface; + PRODUCT_NAME = UMPermissionsInterface; PUBLIC_HEADERS_FOLDER_PATH = ""; SDKROOT = iphoneos; SKIP_INSTALL = YES; SWIFT_ACTIVE_COMPILATION_CONDITIONS = "$(inherited) "; SWIFT_VERSION = 5.0; TARGETED_DEVICE_FAMILY = "1,2"; + VALIDATE_PRODUCT = YES; }; - name = Debug; + name = Release; }; A828AE6C2020D397E9898AB29D8A6318 /* Release */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 9591C5298AF54D3E53DC9613C0E2ED57 /* UMReactNativeAdapter.release.xcconfig */; + baseConfigurationReference = D6918D770542844C8CDEABAEE8FE34CE /* UMReactNativeAdapter.release.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; ARCHS = "$(ARCHS_STANDARD_64_BIT)"; @@ -39940,7 +39518,7 @@ }; A88863909A597EDDC64341B93F5A7A2A /* Release */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 8909D94BC2491628F567748899BADD31 /* rn-extensions-share.release.xcconfig */; + baseConfigurationReference = 6062B79C88F3E5F2BACD9C98C12ED378 /* rn-extensions-share.release.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; ARCHS = "$(ARCHS_STANDARD_64_BIT)"; @@ -39966,7 +39544,7 @@ }; A8FD13E434E0A9CA98385E274F1D58C4 /* Release */ = { isa = XCBuildConfiguration; - baseConfigurationReference = D209C4FA27308DF998A5A82B02E763F2 /* RNFastImage.release.xcconfig */; + baseConfigurationReference = 2210CC4400D0694D51F6080A7B00B606 /* RNFastImage.release.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; ARCHS = "$(ARCHS_STANDARD_64_BIT)"; @@ -39992,7 +39570,7 @@ }; A967EF33D2C9B4DB921FFF1ED930E0BB /* Debug */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 120C448D23A1D2880C0A29639A4D28E3 /* EXPermissions.debug.xcconfig */; + baseConfigurationReference = E3DAD9C92A1A82542F125C1530FC634B /* EXPermissions.debug.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; ARCHS = "$(ARCHS_STANDARD_64_BIT)"; @@ -40018,7 +39596,7 @@ }; A9704006361D9EF34EE5A3BEAF8BF978 /* Release */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 0E9D744742CD8F87F0ACEF7E6DC60ADD /* react-native-slider.release.xcconfig */; + baseConfigurationReference = 045513CE70F776BF699D4AA9F7F97F30 /* react-native-slider.release.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; ARCHS = "$(ARCHS_STANDARD_64_BIT)"; @@ -40042,38 +39620,72 @@ }; name = Release; }; - A9E031BC3F0341CD11C586ED9CADBBD0 /* Debug */ = { + AA2946505734D2F70B933A1F9A380543 /* Debug */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 17D005E8CCCDFF81E0DEBB9090DEFCDC /* FirebaseAnalytics.debug.xcconfig */; + baseConfigurationReference = 207E43A58135813EB4EB8267106FCDAD /* SDWebImage.debug.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; ARCHS = "$(ARCHS_STANDARD_64_BIT)"; - ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon; - ASSETCATALOG_COMPILER_GLOBAL_ACCENT_COLOR_NAME = AccentColor; + "CODE_SIGN_IDENTITY[sdk=appletvos*]" = ""; + "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = ""; + "CODE_SIGN_IDENTITY[sdk=watchos*]" = ""; + GCC_PREFIX_HEADER = "Target Support Files/SDWebImage/SDWebImage-prefix.pch"; IPHONEOS_DEPLOYMENT_TARGET = 11.0; - LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks"; + OTHER_LDFLAGS = ""; + OTHER_LIBTOOLFLAGS = ""; + PRIVATE_HEADERS_FOLDER_PATH = ""; + PRODUCT_MODULE_NAME = SDWebImage; + PRODUCT_NAME = SDWebImage; + 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; }; - AAA620D360F15E19D529F307CCEF65AF /* Release */ = { + AB9EE40241F157288F27CFDB2512CBAA /* Debug */ = { isa = XCBuildConfiguration; - baseConfigurationReference = EA80C6CC551744CB4EE5BF2A056CF5B1 /* glog.release.xcconfig */; + baseConfigurationReference = AE988DA3D13C903E9532F8EE8736A5B9 /* react-native-webview.debug.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; ARCHS = "$(ARCHS_STANDARD_64_BIT)"; - CLANG_ENABLE_OBJC_WEAK = NO; "CODE_SIGN_IDENTITY[sdk=appletvos*]" = ""; "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = ""; "CODE_SIGN_IDENTITY[sdk=watchos*]" = ""; - GCC_PREFIX_HEADER = "Target Support Files/glog/glog-prefix.pch"; + 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 = glog; - PRODUCT_NAME = glog; + 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; + }; + ABB27A12F638A2BAA41A61BD20FC686B /* Release */ = { + isa = XCBuildConfiguration; + baseConfigurationReference = 1B1784AA0603C76CD8EAA1A29BB53F03 /* RNRootView.release.xcconfig */; + buildSettings = { + APPLICATION_EXTENSION_API_ONLY = NO; + 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/RNRootView/RNRootView-prefix.pch"; + IPHONEOS_DEPLOYMENT_TARGET = 11.0; + OTHER_LDFLAGS = ""; + OTHER_LIBTOOLFLAGS = ""; + PRIVATE_HEADERS_FOLDER_PATH = ""; + PRODUCT_MODULE_NAME = RNRootView; + PRODUCT_NAME = RNRootView; PUBLIC_HEADERS_FOLDER_PATH = ""; SDKROOT = iphoneos; SKIP_INSTALL = YES; @@ -40084,22 +39696,22 @@ }; name = Release; }; - AB9EE40241F157288F27CFDB2512CBAA /* Debug */ = { + AC2157D9D0D3CE5D1ED326889588B336 /* Debug */ = { isa = XCBuildConfiguration; - baseConfigurationReference = CD8B8724B348C3772D9565D61F8A3846 /* react-native-webview.debug.xcconfig */; + baseConfigurationReference = E2A41D3659BDDF2344E851C3C0E2516B /* RCT-Folly.debug.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; 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"; + GCC_PREFIX_HEADER = "Target Support Files/RCT-Folly/RCT-Folly-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"; + PRODUCT_MODULE_NAME = folly; + PRODUCT_NAME = "RCT-Folly"; PUBLIC_HEADERS_FOLDER_PATH = ""; SDKROOT = iphoneos; SKIP_INSTALL = YES; @@ -40109,22 +39721,22 @@ }; name = Debug; }; - ABB27A12F638A2BAA41A61BD20FC686B /* Release */ = { + AC86A93E55F489027EEB6DFC5C762A4A /* Release */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 52051000F9BC6625B82A6F74204791A8 /* RNRootView.release.xcconfig */; + baseConfigurationReference = 6F68D16045CC60438ED6D125C1CA2A95 /* rn-fetch-blob.release.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; 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/RNRootView/RNRootView-prefix.pch"; + GCC_PREFIX_HEADER = "Target Support Files/rn-fetch-blob/rn-fetch-blob-prefix.pch"; IPHONEOS_DEPLOYMENT_TARGET = 11.0; OTHER_LDFLAGS = ""; OTHER_LIBTOOLFLAGS = ""; PRIVATE_HEADERS_FOLDER_PATH = ""; - PRODUCT_MODULE_NAME = RNRootView; - PRODUCT_NAME = RNRootView; + PRODUCT_MODULE_NAME = rn_fetch_blob; + PRODUCT_NAME = "rn-fetch-blob"; PUBLIC_HEADERS_FOLDER_PATH = ""; SDKROOT = iphoneos; SKIP_INSTALL = YES; @@ -40135,49 +39747,47 @@ }; name = Release; }; - ABDC481EA6A1DEF125B909DB40586F0C /* Release */ = { + AD6EEF5E1DB227D2F19537A821CEAD67 /* Release */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 92A5874C878DFADCA0810C116E060219 /* Flipper-Folly.release.xcconfig */; + baseConfigurationReference = 22179B26EFA123B0FB129665B0D3749A /* Pods-defaults-Rocket.Chat.release.xcconfig */; buildSettings = { + ALWAYS_EMBED_SWIFT_STANDARD_LIBRARIES = NO; APPLICATION_EXTENSION_API_ONLY = NO; ARCHS = "$(ARCHS_STANDARD_64_BIT)"; CLANG_ENABLE_OBJC_WEAK = NO; "CODE_SIGN_IDENTITY[sdk=appletvos*]" = ""; "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = ""; "CODE_SIGN_IDENTITY[sdk=watchos*]" = ""; - GCC_PREFIX_HEADER = "Target Support Files/Flipper-Folly/Flipper-Folly-prefix.pch"; IPHONEOS_DEPLOYMENT_TARGET = 11.0; + MACH_O_TYPE = staticlib; + MODULEMAP_FILE = "Target Support Files/Pods-defaults-Rocket.Chat/Pods-defaults-Rocket.Chat.modulemap"; OTHER_LDFLAGS = ""; OTHER_LIBTOOLFLAGS = ""; - PRIVATE_HEADERS_FOLDER_PATH = ""; - PRODUCT_MODULE_NAME = folly; - PRODUCT_NAME = "Flipper-Folly"; - PUBLIC_HEADERS_FOLDER_PATH = ""; + PODS_ROOT = "$(SRCROOT)"; + PRODUCT_BUNDLE_IDENTIFIER = "org.cocoapods.${PRODUCT_NAME:rfc1034identifier}"; SDKROOT = iphoneos; SKIP_INSTALL = YES; - SWIFT_ACTIVE_COMPILATION_CONDITIONS = "$(inherited) "; - SWIFT_VERSION = 5.0; TARGETED_DEVICE_FAMILY = "1,2"; VALIDATE_PRODUCT = YES; }; name = Release; }; - AC86A93E55F489027EEB6DFC5C762A4A /* Release */ = { + ADF94A0015284D9A700FEEF33A5F0E49 /* Release */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 0CA6A8600BC7313FDE798B2FEB55E2D6 /* rn-fetch-blob.release.xcconfig */; + baseConfigurationReference = 33F4C3AC574989647622392F60B874C5 /* RNCAsyncStorage.release.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; 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/rn-fetch-blob/rn-fetch-blob-prefix.pch"; + GCC_PREFIX_HEADER = "Target Support Files/RNCAsyncStorage/RNCAsyncStorage-prefix.pch"; IPHONEOS_DEPLOYMENT_TARGET = 11.0; OTHER_LDFLAGS = ""; OTHER_LIBTOOLFLAGS = ""; PRIVATE_HEADERS_FOLDER_PATH = ""; - PRODUCT_MODULE_NAME = rn_fetch_blob; - PRODUCT_NAME = "rn-fetch-blob"; + PRODUCT_MODULE_NAME = RNCAsyncStorage; + PRODUCT_NAME = RNCAsyncStorage; PUBLIC_HEADERS_FOLDER_PATH = ""; SDKROOT = iphoneos; SKIP_INSTALL = YES; @@ -40188,22 +39798,21 @@ }; name = Release; }; - ADF94A0015284D9A700FEEF33A5F0E49 /* Release */ = { + AFAB7110DF03E36AA937C1A027E4F803 /* Release */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 4A764BEE14BC35267D9FD25C78F6BB89 /* RNCAsyncStorage.release.xcconfig */; + baseConfigurationReference = 8D6954587DAAC4331F51336675363378 /* FirebaseCoreDiagnostics.release.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; 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/RNCAsyncStorage/RNCAsyncStorage-prefix.pch"; IPHONEOS_DEPLOYMENT_TARGET = 11.0; OTHER_LDFLAGS = ""; OTHER_LIBTOOLFLAGS = ""; PRIVATE_HEADERS_FOLDER_PATH = ""; - PRODUCT_MODULE_NAME = RNCAsyncStorage; - PRODUCT_NAME = RNCAsyncStorage; + PRODUCT_MODULE_NAME = FirebaseCoreDiagnostics; + PRODUCT_NAME = FirebaseCoreDiagnostics; PUBLIC_HEADERS_FOLDER_PATH = ""; SDKROOT = iphoneos; SKIP_INSTALL = YES; @@ -40216,7 +39825,7 @@ }; AFFC4B8B500F3F30AA01625986696B5A /* Release */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 7E91599FA3BC0029A923484575892EE9 /* UMCameraInterface.release.xcconfig */; + baseConfigurationReference = 51FA8CDDD40B965481C0EC0F2AF22AB5 /* UMCameraInterface.release.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; ARCHS = "$(ARCHS_STANDARD_64_BIT)"; @@ -40231,48 +39840,47 @@ }; name = Release; }; - B36AB15C5E16F3D7C814B930E2DFB827 /* Release */ = { + B14CD0F96345EC7A7DD6113E24BC1C50 /* Release */ = { isa = XCBuildConfiguration; - baseConfigurationReference = E6B31D47FEA12DF3F7029345AFBA4B35 /* RNFBCrashlytics.release.xcconfig */; + baseConfigurationReference = A6EB796E6E9E63CB8E30B650EF1BB98B /* Pods-NotificationService.release.xcconfig */; buildSettings = { + ALWAYS_EMBED_SWIFT_STANDARD_LIBRARIES = NO; APPLICATION_EXTENSION_API_ONLY = NO; ARCHS = "$(ARCHS_STANDARD_64_BIT)"; + CLANG_ENABLE_OBJC_WEAK = NO; "CODE_SIGN_IDENTITY[sdk=appletvos*]" = ""; "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = ""; "CODE_SIGN_IDENTITY[sdk=watchos*]" = ""; - GCC_PREFIX_HEADER = "Target Support Files/RNFBCrashlytics/RNFBCrashlytics-prefix.pch"; IPHONEOS_DEPLOYMENT_TARGET = 11.0; + MACH_O_TYPE = staticlib; + MODULEMAP_FILE = "Target Support Files/Pods-NotificationService/Pods-NotificationService.modulemap"; OTHER_LDFLAGS = ""; OTHER_LIBTOOLFLAGS = ""; - PRIVATE_HEADERS_FOLDER_PATH = ""; - PRODUCT_MODULE_NAME = RNFBCrashlytics; - PRODUCT_NAME = RNFBCrashlytics; - PUBLIC_HEADERS_FOLDER_PATH = ""; + PODS_ROOT = "$(SRCROOT)"; + PRODUCT_BUNDLE_IDENTIFIER = "org.cocoapods.${PRODUCT_NAME:rfc1034identifier}"; SDKROOT = iphoneos; SKIP_INSTALL = YES; - SWIFT_ACTIVE_COMPILATION_CONDITIONS = "$(inherited) "; - SWIFT_VERSION = 5.0; TARGETED_DEVICE_FAMILY = "1,2"; VALIDATE_PRODUCT = YES; }; name = Release; }; - B36F0DF38C1AE8BCEC7B97F346BB639B /* Release */ = { + B38855943AD4AD1D197E7CDC1E0F51B4 /* Release */ = { isa = XCBuildConfiguration; - baseConfigurationReference = FECF06704C4BCA91C6A43790DEB6D35C /* RNFBApp.release.xcconfig */; + baseConfigurationReference = A05BE5B211AF4004673B3A6C9A6CE2F8 /* RNFBCrashlytics.release.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; 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/RNFBApp/RNFBApp-prefix.pch"; + GCC_PREFIX_HEADER = "Target Support Files/RNFBCrashlytics/RNFBCrashlytics-prefix.pch"; IPHONEOS_DEPLOYMENT_TARGET = 11.0; OTHER_LDFLAGS = ""; OTHER_LIBTOOLFLAGS = ""; PRIVATE_HEADERS_FOLDER_PATH = ""; - PRODUCT_MODULE_NAME = RNFBApp; - PRODUCT_NAME = RNFBApp; + PRODUCT_MODULE_NAME = RNFBCrashlytics; + PRODUCT_NAME = RNFBCrashlytics; PUBLIC_HEADERS_FOLDER_PATH = ""; SDKROOT = iphoneos; SKIP_INSTALL = YES; @@ -40283,6 +39891,22 @@ }; name = Release; }; + B3BC9F19B3C65CE3CFD4D9D44E606C65 /* Debug */ = { + isa = XCBuildConfiguration; + baseConfigurationReference = 4E2BD0069D4441ED07654FAC3D2C76A8 /* React.debug.xcconfig */; + buildSettings = { + APPLICATION_EXTENSION_API_ONLY = NO; + ARCHS = "$(ARCHS_STANDARD_64_BIT)"; + ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon; + ASSETCATALOG_COMPILER_GLOBAL_ACCENT_COLOR_NAME = AccentColor; + CLANG_ENABLE_OBJC_WEAK = NO; + IPHONEOS_DEPLOYMENT_TARGET = 11.0; + LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks"; + SDKROOT = iphoneos; + TARGETED_DEVICE_FAMILY = "1,2"; + }; + name = Debug; + }; B4EFE046ACF8F37157F6E322C7FCFC28 /* Debug */ = { isa = XCBuildConfiguration; buildSettings = { @@ -40350,23 +39974,22 @@ }; name = Debug; }; - B5076D6C028AA0DA6E6960A157D4674E /* Release */ = { + B5CE058F8DFB838E466A1568B4DC340A /* Release */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 31A1445D31D37F28425B528799C43F1F /* React-cxxreact.release.xcconfig */; + baseConfigurationReference = 2A40B641776019737D2F6716DF2785DC /* react-native-blur.release.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; ARCHS = "$(ARCHS_STANDARD_64_BIT)"; - CLANG_ENABLE_OBJC_WEAK = NO; "CODE_SIGN_IDENTITY[sdk=appletvos*]" = ""; "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = ""; "CODE_SIGN_IDENTITY[sdk=watchos*]" = ""; - GCC_PREFIX_HEADER = "Target Support Files/React-cxxreact/React-cxxreact-prefix.pch"; + GCC_PREFIX_HEADER = "Target Support Files/react-native-blur/react-native-blur-prefix.pch"; IPHONEOS_DEPLOYMENT_TARGET = 11.0; OTHER_LDFLAGS = ""; OTHER_LIBTOOLFLAGS = ""; PRIVATE_HEADERS_FOLDER_PATH = ""; - PRODUCT_MODULE_NAME = cxxreact; - PRODUCT_NAME = "React-cxxreact"; + PRODUCT_MODULE_NAME = react_native_blur; + PRODUCT_NAME = "react-native-blur"; PUBLIC_HEADERS_FOLDER_PATH = ""; SDKROOT = iphoneos; SKIP_INSTALL = YES; @@ -40377,9 +40000,34 @@ }; name = Release; }; - B5881BE4602BEEA7398D3D40480341E0 /* Release */ = { + B5E282A2A22F19370FA7EA1B6DA85DFE /* Debug */ = { + isa = XCBuildConfiguration; + baseConfigurationReference = EFCFED14B57978221E8267BE2937FC7E /* react-native-netinfo.debug.xcconfig */; + buildSettings = { + APPLICATION_EXTENSION_API_ONLY = NO; + 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-netinfo/react-native-netinfo-prefix.pch"; + IPHONEOS_DEPLOYMENT_TARGET = 11.0; + OTHER_LDFLAGS = ""; + OTHER_LIBTOOLFLAGS = ""; + PRIVATE_HEADERS_FOLDER_PATH = ""; + PRODUCT_MODULE_NAME = react_native_netinfo; + PRODUCT_NAME = "react-native-netinfo"; + 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; + }; + B6CE15DF28389FD80FDBF7A573B39D15 /* Release */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 3B44AFCCB749BD05EB75EF3F8E1DE2E5 /* React-perflogger.release.xcconfig */; + baseConfigurationReference = 417426C714E7EDEE92C076113FA90A03 /* glog.release.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; ARCHS = "$(ARCHS_STANDARD_64_BIT)"; @@ -40387,13 +40035,13 @@ "CODE_SIGN_IDENTITY[sdk=appletvos*]" = ""; "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = ""; "CODE_SIGN_IDENTITY[sdk=watchos*]" = ""; - GCC_PREFIX_HEADER = "Target Support Files/React-perflogger/React-perflogger-prefix.pch"; + GCC_PREFIX_HEADER = "Target Support Files/glog/glog-prefix.pch"; IPHONEOS_DEPLOYMENT_TARGET = 11.0; OTHER_LDFLAGS = ""; OTHER_LIBTOOLFLAGS = ""; PRIVATE_HEADERS_FOLDER_PATH = ""; - PRODUCT_MODULE_NAME = reactperflogger; - PRODUCT_NAME = "React-perflogger"; + PRODUCT_MODULE_NAME = glog; + PRODUCT_NAME = glog; PUBLIC_HEADERS_FOLDER_PATH = ""; SDKROOT = iphoneos; SKIP_INSTALL = YES; @@ -40404,22 +40052,47 @@ }; name = Release; }; - B5CE058F8DFB838E466A1568B4DC340A /* Release */ = { + B7CCF664AABA87549DAD4BE20161BCD0 /* Debug */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 589EFF994DF8E0A93512C85DE371D6DD /* react-native-blur.release.xcconfig */; + baseConfigurationReference = 4C7756C6CDF52E752A2C7D304C9E42B5 /* ReactNativeART.debug.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; 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-blur/react-native-blur-prefix.pch"; + GCC_PREFIX_HEADER = "Target Support Files/ReactNativeART/ReactNativeART-prefix.pch"; IPHONEOS_DEPLOYMENT_TARGET = 11.0; OTHER_LDFLAGS = ""; OTHER_LIBTOOLFLAGS = ""; PRIVATE_HEADERS_FOLDER_PATH = ""; - PRODUCT_MODULE_NAME = react_native_blur; - PRODUCT_NAME = "react-native-blur"; + PRODUCT_MODULE_NAME = ReactNativeART; + PRODUCT_NAME = ReactNativeART; + 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; + }; + B8A7075959D9548F4BF3260C3EBF927B /* Release */ = { + isa = XCBuildConfiguration; + baseConfigurationReference = F9B1811BDCE0BB5B628B719B86B94774 /* libwebp.release.xcconfig */; + buildSettings = { + APPLICATION_EXTENSION_API_ONLY = NO; + 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/libwebp/libwebp-prefix.pch"; + IPHONEOS_DEPLOYMENT_TARGET = 11.0; + OTHER_LDFLAGS = ""; + OTHER_LIBTOOLFLAGS = ""; + PRIVATE_HEADERS_FOLDER_PATH = ""; + PRODUCT_MODULE_NAME = libwebp; + PRODUCT_NAME = libwebp; PUBLIC_HEADERS_FOLDER_PATH = ""; SDKROOT = iphoneos; SKIP_INSTALL = YES; @@ -40430,47 +40103,48 @@ }; name = Release; }; - B5E282A2A22F19370FA7EA1B6DA85DFE /* Debug */ = { + B97B12D92595A7A1EC862CF39D6F0E6E /* Release */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 726E49399B5063C9D4B8A919C8DC332A /* react-native-netinfo.debug.xcconfig */; + baseConfigurationReference = 37D1DA9BD315177B54A3275E67C48CA5 /* Flipper-Glog.release.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; 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-netinfo/react-native-netinfo-prefix.pch"; + GCC_PREFIX_HEADER = "Target Support Files/Flipper-Glog/Flipper-Glog-prefix.pch"; IPHONEOS_DEPLOYMENT_TARGET = 11.0; OTHER_LDFLAGS = ""; OTHER_LIBTOOLFLAGS = ""; PRIVATE_HEADERS_FOLDER_PATH = ""; - PRODUCT_MODULE_NAME = react_native_netinfo; - PRODUCT_NAME = "react-native-netinfo"; + PRODUCT_MODULE_NAME = glog; + PRODUCT_NAME = "Flipper-Glog"; PUBLIC_HEADERS_FOLDER_PATH = ""; SDKROOT = iphoneos; SKIP_INSTALL = YES; SWIFT_ACTIVE_COMPILATION_CONDITIONS = "$(inherited) "; SWIFT_VERSION = 5.0; TARGETED_DEVICE_FAMILY = "1,2"; + VALIDATE_PRODUCT = YES; }; - name = Debug; + name = Release; }; - B7CCF664AABA87549DAD4BE20161BCD0 /* Debug */ = { + BB0E5C271982F23A203FFC3ED17452B2 /* Debug */ = { isa = XCBuildConfiguration; - baseConfigurationReference = FA187242EBEDD3399949F29771D88BC5 /* ReactNativeART.debug.xcconfig */; + baseConfigurationReference = 2E0D66364E3C4E81BCA4CBCF60208FFF /* TOCropViewController.debug.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; 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/ReactNativeART/ReactNativeART-prefix.pch"; + GCC_PREFIX_HEADER = "Target Support Files/TOCropViewController/TOCropViewController-prefix.pch"; IPHONEOS_DEPLOYMENT_TARGET = 11.0; OTHER_LDFLAGS = ""; OTHER_LIBTOOLFLAGS = ""; PRIVATE_HEADERS_FOLDER_PATH = ""; - PRODUCT_MODULE_NAME = ReactNativeART; - PRODUCT_NAME = ReactNativeART; + PRODUCT_MODULE_NAME = TOCropViewController; + PRODUCT_NAME = TOCropViewController; PUBLIC_HEADERS_FOLDER_PATH = ""; SDKROOT = iphoneos; SKIP_INSTALL = YES; @@ -40480,24 +40154,77 @@ }; name = Debug; }; - B894EF837C738B2DFBBEC5E741FAB7F3 /* Debug */ = { + BD50F4C8CA986F98442CB3A2E0943643 /* Release */ = { + isa = XCBuildConfiguration; + baseConfigurationReference = 0476F6EB62026F8945FCFB7A071961A9 /* FirebaseCrashlytics.release.xcconfig */; + buildSettings = { + APPLICATION_EXTENSION_API_ONLY = NO; + ARCHS = "$(ARCHS_STANDARD_64_BIT)"; + "CODE_SIGN_IDENTITY[sdk=appletvos*]" = ""; + "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = ""; + "CODE_SIGN_IDENTITY[sdk=watchos*]" = ""; + IPHONEOS_DEPLOYMENT_TARGET = 11.0; + OTHER_LDFLAGS = ""; + OTHER_LIBTOOLFLAGS = ""; + PRIVATE_HEADERS_FOLDER_PATH = ""; + PRODUCT_MODULE_NAME = FirebaseCrashlytics; + PRODUCT_NAME = FirebaseCrashlytics; + 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; + }; + BD6E31C909B4DFE311A1DC28A76A4927 /* Release */ = { isa = XCBuildConfiguration; - baseConfigurationReference = EB11D8980233FB28B3EB591690D4B933 /* boost-for-react-native.debug.xcconfig */; + baseConfigurationReference = 12CB1EDCC92C4ED61D5BECDAE443FA24 /* UMSensorsInterface.release.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; ARCHS = "$(ARCHS_STANDARD_64_BIT)"; ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon; ASSETCATALOG_COMPILER_GLOBAL_ACCENT_COLOR_NAME = AccentColor; + CLANG_ENABLE_OBJC_WEAK = NO; IPHONEOS_DEPLOYMENT_TARGET = 11.0; LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks"; SDKROOT = iphoneos; TARGETED_DEVICE_FAMILY = "1,2"; + VALIDATE_PRODUCT = YES; + }; + name = Release; + }; + BD745573C6626ACDAE15BA6F32AA7608 /* Debug */ = { + isa = XCBuildConfiguration; + baseConfigurationReference = 8C449A90B85CFA57689DCD7524C8C627 /* EXFileSystem.debug.xcconfig */; + buildSettings = { + APPLICATION_EXTENSION_API_ONLY = NO; + ARCHS = "$(ARCHS_STANDARD_64_BIT)"; + CLANG_ENABLE_OBJC_WEAK = NO; + "CODE_SIGN_IDENTITY[sdk=appletvos*]" = ""; + "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = ""; + "CODE_SIGN_IDENTITY[sdk=watchos*]" = ""; + GCC_PREFIX_HEADER = "Target Support Files/EXFileSystem/EXFileSystem-prefix.pch"; + IPHONEOS_DEPLOYMENT_TARGET = 11.0; + OTHER_LDFLAGS = ""; + OTHER_LIBTOOLFLAGS = ""; + PRIVATE_HEADERS_FOLDER_PATH = ""; + PRODUCT_MODULE_NAME = EXFileSystem; + PRODUCT_NAME = EXFileSystem; + 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; }; - B8D4BAE1AC114A2A683B1E09C904EA19 /* Release */ = { + BE4E6EDE9AF028C01E50111F948786BB /* Release */ = { isa = XCBuildConfiguration; - baseConfigurationReference = C81BC27172EA0CE5C80194C0D70A45D3 /* RCTRequired.release.xcconfig */; + baseConfigurationReference = 56DF29480F800CBF2C64F9E17530DB92 /* UMFontInterface.release.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; ARCHS = "$(ARCHS_STANDARD_64_BIT)"; @@ -40512,23 +40239,21 @@ }; name = Release; }; - B91A208A52FE94302116072EF37FE04E /* Debug */ = { + BF41AD0F2BAD1590399CDE95ADC97F58 /* Debug */ = { isa = XCBuildConfiguration; - baseConfigurationReference = B0165A96BF4E5166DAC954DD7CC76CC1 /* React-RCTBlob.debug.xcconfig */; + baseConfigurationReference = 589AF35B1D7F29EC150D0F3C1B2AB572 /* FirebaseCore.debug.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; ARCHS = "$(ARCHS_STANDARD_64_BIT)"; - CLANG_ENABLE_OBJC_WEAK = NO; "CODE_SIGN_IDENTITY[sdk=appletvos*]" = ""; "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = ""; "CODE_SIGN_IDENTITY[sdk=watchos*]" = ""; - GCC_PREFIX_HEADER = "Target Support Files/React-RCTBlob/React-RCTBlob-prefix.pch"; IPHONEOS_DEPLOYMENT_TARGET = 11.0; OTHER_LDFLAGS = ""; OTHER_LIBTOOLFLAGS = ""; PRIVATE_HEADERS_FOLDER_PATH = ""; - PRODUCT_MODULE_NAME = RCTBlob; - PRODUCT_NAME = "React-RCTBlob"; + PRODUCT_MODULE_NAME = FirebaseCore; + PRODUCT_NAME = FirebaseCore; PUBLIC_HEADERS_FOLDER_PATH = ""; SDKROOT = iphoneos; SKIP_INSTALL = YES; @@ -40538,9 +40263,9 @@ }; name = Debug; }; - BA3D23A9A1F296A833FFD976EB58D6E6 /* Debug */ = { + BF71468514767154EB98F25655B089A4 /* Debug */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 88397D67F1AC5325B9C5CDF7112BF6CF /* DoubleConversion.debug.xcconfig */; + baseConfigurationReference = 3C62467E0F77892F2DAD1D929DCADBAA /* React-RCTLinking.debug.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; ARCHS = "$(ARCHS_STANDARD_64_BIT)"; @@ -40548,13 +40273,13 @@ "CODE_SIGN_IDENTITY[sdk=appletvos*]" = ""; "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = ""; "CODE_SIGN_IDENTITY[sdk=watchos*]" = ""; - GCC_PREFIX_HEADER = "Target Support Files/DoubleConversion/DoubleConversion-prefix.pch"; + GCC_PREFIX_HEADER = "Target Support Files/React-RCTLinking/React-RCTLinking-prefix.pch"; IPHONEOS_DEPLOYMENT_TARGET = 11.0; OTHER_LDFLAGS = ""; OTHER_LIBTOOLFLAGS = ""; PRIVATE_HEADERS_FOLDER_PATH = ""; - PRODUCT_MODULE_NAME = DoubleConversion; - PRODUCT_NAME = DoubleConversion; + PRODUCT_MODULE_NAME = RCTLinking; + PRODUCT_NAME = "React-RCTLinking"; PUBLIC_HEADERS_FOLDER_PATH = ""; SDKROOT = iphoneos; SKIP_INSTALL = YES; @@ -40564,79 +40289,113 @@ }; name = Debug; }; - BD6E31C909B4DFE311A1DC28A76A4927 /* Release */ = { + C1464EFDAEE34F9DB6CBD79380B4CAE1 /* Release */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 25D1F282AA2642EE4323F894908D4CC4 /* UMSensorsInterface.release.xcconfig */; + baseConfigurationReference = 21BADC692D5F7B9ECF57058D26FD8E8A /* MMKVCore.release.xcconfig */; + buildSettings = { + APPLICATION_EXTENSION_API_ONLY = NO; + 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/MMKVCore/MMKVCore-prefix.pch"; + IPHONEOS_DEPLOYMENT_TARGET = 11.0; + OTHER_LDFLAGS = ""; + OTHER_LIBTOOLFLAGS = ""; + PRIVATE_HEADERS_FOLDER_PATH = ""; + PRODUCT_MODULE_NAME = MMKVCore; + PRODUCT_NAME = MMKVCore; + 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; + }; + C1BC59D93A41BC05F9B63E3F2300A827 /* Release */ = { + isa = XCBuildConfiguration; + baseConfigurationReference = B6A1EF804E42CE1429AB5A0BE5971E9D /* DoubleConversion.release.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; ARCHS = "$(ARCHS_STANDARD_64_BIT)"; - ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon; - ASSETCATALOG_COMPILER_GLOBAL_ACCENT_COLOR_NAME = AccentColor; CLANG_ENABLE_OBJC_WEAK = NO; + "CODE_SIGN_IDENTITY[sdk=appletvos*]" = ""; + "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = ""; + "CODE_SIGN_IDENTITY[sdk=watchos*]" = ""; + GCC_PREFIX_HEADER = "Target Support Files/DoubleConversion/DoubleConversion-prefix.pch"; IPHONEOS_DEPLOYMENT_TARGET = 11.0; - LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks"; + OTHER_LDFLAGS = ""; + OTHER_LIBTOOLFLAGS = ""; + PRIVATE_HEADERS_FOLDER_PATH = ""; + PRODUCT_MODULE_NAME = DoubleConversion; + PRODUCT_NAME = DoubleConversion; + 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; }; - BD745573C6626ACDAE15BA6F32AA7608 /* Debug */ = { + C48A318E5C60C903376EA3418BDFF0E2 /* Release */ = { isa = XCBuildConfiguration; - baseConfigurationReference = BCB188AF9D06035BEC1720D50031039E /* EXFileSystem.debug.xcconfig */; + baseConfigurationReference = F05E23181964B5DB3DA9CAE9B3725C93 /* RNGestureHandler.release.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; ARCHS = "$(ARCHS_STANDARD_64_BIT)"; - CLANG_ENABLE_OBJC_WEAK = NO; "CODE_SIGN_IDENTITY[sdk=appletvos*]" = ""; "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = ""; "CODE_SIGN_IDENTITY[sdk=watchos*]" = ""; - GCC_PREFIX_HEADER = "Target Support Files/EXFileSystem/EXFileSystem-prefix.pch"; + GCC_PREFIX_HEADER = "Target Support Files/RNGestureHandler/RNGestureHandler-prefix.pch"; IPHONEOS_DEPLOYMENT_TARGET = 11.0; OTHER_LDFLAGS = ""; OTHER_LIBTOOLFLAGS = ""; PRIVATE_HEADERS_FOLDER_PATH = ""; - PRODUCT_MODULE_NAME = EXFileSystem; - PRODUCT_NAME = EXFileSystem; + PRODUCT_MODULE_NAME = RNGestureHandler; + PRODUCT_NAME = RNGestureHandler; PUBLIC_HEADERS_FOLDER_PATH = ""; SDKROOT = iphoneos; SKIP_INSTALL = YES; SWIFT_ACTIVE_COMPILATION_CONDITIONS = "$(inherited) "; SWIFT_VERSION = 5.0; TARGETED_DEVICE_FAMILY = "1,2"; + VALIDATE_PRODUCT = YES; }; - name = Debug; + name = Release; }; - BE4680A1E2E96D4F37970B6F11C0EF70 /* Release */ = { + C4AC01671ACF2941952FC335503ABF31 /* Debug */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 6E4512E71DEA6EB132DB9A11EE925080 /* React-RCTAnimation.release.xcconfig */; + baseConfigurationReference = B91FA07DDC1F357726D2A27933E5CC69 /* RNCMaskedView.debug.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; ARCHS = "$(ARCHS_STANDARD_64_BIT)"; - CLANG_ENABLE_OBJC_WEAK = NO; "CODE_SIGN_IDENTITY[sdk=appletvos*]" = ""; "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = ""; "CODE_SIGN_IDENTITY[sdk=watchos*]" = ""; - GCC_PREFIX_HEADER = "Target Support Files/React-RCTAnimation/React-RCTAnimation-prefix.pch"; + GCC_PREFIX_HEADER = "Target Support Files/RNCMaskedView/RNCMaskedView-prefix.pch"; IPHONEOS_DEPLOYMENT_TARGET = 11.0; OTHER_LDFLAGS = ""; OTHER_LIBTOOLFLAGS = ""; PRIVATE_HEADERS_FOLDER_PATH = ""; - PRODUCT_MODULE_NAME = RCTAnimation; - PRODUCT_NAME = "React-RCTAnimation"; + PRODUCT_MODULE_NAME = RNCMaskedView; + PRODUCT_NAME = RNCMaskedView; 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; + name = Debug; }; - BE4E6EDE9AF028C01E50111F948786BB /* Release */ = { + C798FF17E0D65F6126851ED36BB99837 /* Release */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 52A81437D376AA16FFEF16706FC8287F /* UMFontInterface.release.xcconfig */; + baseConfigurationReference = 92059877E726376AD26B932833F991DA /* FBLazyVector.release.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; ARCHS = "$(ARCHS_STANDARD_64_BIT)"; @@ -40651,9 +40410,9 @@ }; name = Release; }; - C227E1E96EB83506121BE958AAFDBE32 /* Debug */ = { + C9007713181D2F3F415AB22EAE383F84 /* Debug */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 10357CA40184FA064FBB734CE3ECABC8 /* React-jsinspector.debug.xcconfig */; + baseConfigurationReference = 6B3100C7D7414083E5FDF2D55534EB6A /* React-RCTImage.debug.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; ARCHS = "$(ARCHS_STANDARD_64_BIT)"; @@ -40661,13 +40420,13 @@ "CODE_SIGN_IDENTITY[sdk=appletvos*]" = ""; "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = ""; "CODE_SIGN_IDENTITY[sdk=watchos*]" = ""; - GCC_PREFIX_HEADER = "Target Support Files/React-jsinspector/React-jsinspector-prefix.pch"; + GCC_PREFIX_HEADER = "Target Support Files/React-RCTImage/React-RCTImage-prefix.pch"; IPHONEOS_DEPLOYMENT_TARGET = 11.0; OTHER_LDFLAGS = ""; OTHER_LIBTOOLFLAGS = ""; PRIVATE_HEADERS_FOLDER_PATH = ""; - PRODUCT_MODULE_NAME = jsinspector; - PRODUCT_NAME = "React-jsinspector"; + PRODUCT_MODULE_NAME = RCTImage; + PRODUCT_NAME = "React-RCTImage"; PUBLIC_HEADERS_FOLDER_PATH = ""; SDKROOT = iphoneos; SKIP_INSTALL = YES; @@ -40677,72 +40436,76 @@ }; name = Debug; }; - C48A318E5C60C903376EA3418BDFF0E2 /* Release */ = { + C9C7FC0B77563366AC8A70D24EAD824D /* Debug */ = { isa = XCBuildConfiguration; - baseConfigurationReference = A013671F5CF9AF26EE93AA8DB5192186 /* RNGestureHandler.release.xcconfig */; + baseConfigurationReference = D75B3D83DFE90E4D889F8DEE8C4CE40F /* SDWebImageWebPCoder.debug.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; 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/RNGestureHandler/RNGestureHandler-prefix.pch"; + GCC_PREFIX_HEADER = "Target Support Files/SDWebImageWebPCoder/SDWebImageWebPCoder-prefix.pch"; IPHONEOS_DEPLOYMENT_TARGET = 11.0; OTHER_LDFLAGS = ""; OTHER_LIBTOOLFLAGS = ""; PRIVATE_HEADERS_FOLDER_PATH = ""; - PRODUCT_MODULE_NAME = RNGestureHandler; - PRODUCT_NAME = RNGestureHandler; + PRODUCT_MODULE_NAME = SDWebImageWebPCoder; + PRODUCT_NAME = SDWebImageWebPCoder; 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; + name = Debug; }; - C4AC01671ACF2941952FC335503ABF31 /* Debug */ = { + CA4572FBE06AA4002A14B2B129A8C066 /* Release */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 34E97ED2E8B3D9030E0FEFDF1E0F0EA0 /* RNCMaskedView.debug.xcconfig */; + baseConfigurationReference = 118866EE1ECCAD2E28C4A2E746435DE5 /* React-jsiexecutor.release.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; ARCHS = "$(ARCHS_STANDARD_64_BIT)"; + CLANG_ENABLE_OBJC_WEAK = NO; "CODE_SIGN_IDENTITY[sdk=appletvos*]" = ""; "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = ""; "CODE_SIGN_IDENTITY[sdk=watchos*]" = ""; - GCC_PREFIX_HEADER = "Target Support Files/RNCMaskedView/RNCMaskedView-prefix.pch"; + GCC_PREFIX_HEADER = "Target Support Files/React-jsiexecutor/React-jsiexecutor-prefix.pch"; IPHONEOS_DEPLOYMENT_TARGET = 11.0; OTHER_LDFLAGS = ""; OTHER_LIBTOOLFLAGS = ""; PRIVATE_HEADERS_FOLDER_PATH = ""; - PRODUCT_MODULE_NAME = RNCMaskedView; - PRODUCT_NAME = RNCMaskedView; + PRODUCT_MODULE_NAME = jsireact; + PRODUCT_NAME = "React-jsiexecutor"; PUBLIC_HEADERS_FOLDER_PATH = ""; SDKROOT = iphoneos; SKIP_INSTALL = YES; SWIFT_ACTIVE_COMPILATION_CONDITIONS = "$(inherited) "; SWIFT_VERSION = 5.0; TARGETED_DEVICE_FAMILY = "1,2"; + VALIDATE_PRODUCT = YES; }; - name = Debug; + name = Release; }; - C62C9255558B248F93803F9EDA51C98D /* Release */ = { + CA4AF37DDD62B6586CBC975D33CBAE93 /* Release */ = { isa = XCBuildConfiguration; - baseConfigurationReference = E34AB18BAA4A47BB7C41BBCFCB2261F2 /* GoogleUtilities.release.xcconfig */; + baseConfigurationReference = 07774C1286725FE266209BEA16EC979C /* React-Core.release.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; ARCHS = "$(ARCHS_STANDARD_64_BIT)"; + CLANG_ENABLE_OBJC_WEAK = NO; "CODE_SIGN_IDENTITY[sdk=appletvos*]" = ""; "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = ""; "CODE_SIGN_IDENTITY[sdk=watchos*]" = ""; + GCC_PREFIX_HEADER = "Target Support Files/React-Core/React-Core-prefix.pch"; IPHONEOS_DEPLOYMENT_TARGET = 11.0; + MODULEMAP_FILE = "Headers/Public/React/React-Core.modulemap"; OTHER_LDFLAGS = ""; OTHER_LIBTOOLFLAGS = ""; PRIVATE_HEADERS_FOLDER_PATH = ""; - PRODUCT_MODULE_NAME = GoogleUtilities; - PRODUCT_NAME = GoogleUtilities; + PRODUCT_MODULE_NAME = React; + PRODUCT_NAME = "React-Core"; PUBLIC_HEADERS_FOLDER_PATH = ""; SDKROOT = iphoneos; SKIP_INSTALL = YES; @@ -40753,33 +40516,36 @@ }; name = Release; }; - C6C5876EF1B7E3F485B1F1880003ADF5 /* Debug */ = { + CAA06EB96F7D3BEBF5B1896F9467A282 /* Release */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 845095425A65B403ED01C9E0327CEB2B /* FirebaseCoreDiagnostics.debug.xcconfig */; + baseConfigurationReference = C9482309C441C31984AB24DE22790B24 /* React-RCTVibration.release.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; ARCHS = "$(ARCHS_STANDARD_64_BIT)"; + CLANG_ENABLE_OBJC_WEAK = NO; "CODE_SIGN_IDENTITY[sdk=appletvos*]" = ""; "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = ""; "CODE_SIGN_IDENTITY[sdk=watchos*]" = ""; + GCC_PREFIX_HEADER = "Target Support Files/React-RCTVibration/React-RCTVibration-prefix.pch"; IPHONEOS_DEPLOYMENT_TARGET = 11.0; OTHER_LDFLAGS = ""; OTHER_LIBTOOLFLAGS = ""; PRIVATE_HEADERS_FOLDER_PATH = ""; - PRODUCT_MODULE_NAME = FirebaseCoreDiagnostics; - PRODUCT_NAME = FirebaseCoreDiagnostics; + PRODUCT_MODULE_NAME = RCTVibration; + PRODUCT_NAME = "React-RCTVibration"; PUBLIC_HEADERS_FOLDER_PATH = ""; SDKROOT = iphoneos; SKIP_INSTALL = YES; SWIFT_ACTIVE_COMPILATION_CONDITIONS = "$(inherited) "; SWIFT_VERSION = 5.0; TARGETED_DEVICE_FAMILY = "1,2"; + VALIDATE_PRODUCT = YES; }; - name = Debug; + name = Release; }; - C798FF17E0D65F6126851ED36BB99837 /* Release */ = { + CB8E4B98A4541FC1A858501C39D2A92D /* Debug */ = { isa = XCBuildConfiguration; - baseConfigurationReference = D31F5C04F4B11BAF9893FCEEBF4FCAF5 /* FBLazyVector.release.xcconfig */; + baseConfigurationReference = 192709148C6C37D9585AD5551089661E /* UMConstantsInterface.debug.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; ARCHS = "$(ARCHS_STANDARD_64_BIT)"; @@ -40790,63 +40556,64 @@ LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks"; SDKROOT = iphoneos; TARGETED_DEVICE_FAMILY = "1,2"; - VALIDATE_PRODUCT = YES; }; - name = Release; + name = Debug; }; - C98D0B1FB6305C765F0557145EFCA09C /* Debug */ = { + CD6B0B81BD17C385BC79BD68BF90BCDB /* Release */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 868B8F033FCD7483A5C51ED38B9A065C /* FBReactNativeSpec.debug.xcconfig */; + baseConfigurationReference = 4A43D940C84100D7A6C80184515B906C /* MMKV.release.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; ARCHS = "$(ARCHS_STANDARD_64_BIT)"; - CLANG_ENABLE_OBJC_WEAK = NO; "CODE_SIGN_IDENTITY[sdk=appletvos*]" = ""; "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = ""; "CODE_SIGN_IDENTITY[sdk=watchos*]" = ""; - GCC_PREFIX_HEADER = "Target Support Files/FBReactNativeSpec/FBReactNativeSpec-prefix.pch"; + GCC_PREFIX_HEADER = "Target Support Files/MMKV/MMKV-prefix.pch"; IPHONEOS_DEPLOYMENT_TARGET = 11.0; OTHER_LDFLAGS = ""; OTHER_LIBTOOLFLAGS = ""; PRIVATE_HEADERS_FOLDER_PATH = ""; - PRODUCT_MODULE_NAME = FBReactNativeSpec; - PRODUCT_NAME = FBReactNativeSpec; + PRODUCT_MODULE_NAME = MMKV; + PRODUCT_NAME = MMKV; PUBLIC_HEADERS_FOLDER_PATH = ""; SDKROOT = iphoneos; SKIP_INSTALL = YES; SWIFT_ACTIVE_COMPILATION_CONDITIONS = "$(inherited) "; SWIFT_VERSION = 5.0; TARGETED_DEVICE_FAMILY = "1,2"; + VALIDATE_PRODUCT = YES; }; - name = Debug; + name = Release; }; - C9C5B724A639418EEAAE09470090DDE9 /* Debug */ = { + CFC7207014229822E8B3391C13EDDD31 /* Release */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 016F790BB3FCBF679484B8AA059CD576 /* GoogleDataTransportCCTSupport.debug.xcconfig */; + baseConfigurationReference = 89BB2EDFC0267D4F5FCBD819ACA56339 /* CocoaAsyncSocket.release.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; 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/CocoaAsyncSocket/CocoaAsyncSocket-prefix.pch"; IPHONEOS_DEPLOYMENT_TARGET = 11.0; OTHER_LDFLAGS = ""; OTHER_LIBTOOLFLAGS = ""; PRIVATE_HEADERS_FOLDER_PATH = ""; - PRODUCT_MODULE_NAME = GoogleDataTransportCCTSupport; - PRODUCT_NAME = GoogleDataTransportCCTSupport; + PRODUCT_MODULE_NAME = CocoaAsyncSocket; + PRODUCT_NAME = CocoaAsyncSocket; PUBLIC_HEADERS_FOLDER_PATH = ""; SDKROOT = iphoneos; SKIP_INSTALL = YES; SWIFT_ACTIVE_COMPILATION_CONDITIONS = "$(inherited) "; SWIFT_VERSION = 5.0; TARGETED_DEVICE_FAMILY = "1,2"; + VALIDATE_PRODUCT = YES; }; - name = Debug; + name = Release; }; - CA191A775939DB05BF896B3BC5FBAA43 /* Release */ = { + D079BBE43112387D9CE0F66813A21B69 /* Debug */ = { isa = XCBuildConfiguration; - baseConfigurationReference = C75C6B8A5C0B8A7BE9CF9D1D54519831 /* hermes-engine.release.xcconfig */; + baseConfigurationReference = 3F2520861187E53A171112064358DD5D /* UMFileSystemInterface.debug.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; ARCHS = "$(ARCHS_STANDARD_64_BIT)"; @@ -40857,26 +40624,25 @@ LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks"; SDKROOT = iphoneos; TARGETED_DEVICE_FAMILY = "1,2"; - VALIDATE_PRODUCT = YES; }; - name = Release; + name = Debug; }; - CD6B0B81BD17C385BC79BD68BF90BCDB /* Release */ = { + D0FDE8CBCEEA78218E7F9B36A3679E2A /* Release */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 19BB8FE3084DED2BBFFA385ECA29B2E6 /* MMKV.release.xcconfig */; + baseConfigurationReference = B7140A77D7771430635D02EE033088B2 /* react-native-appearance.release.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; 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/MMKV/MMKV-prefix.pch"; + GCC_PREFIX_HEADER = "Target Support Files/react-native-appearance/react-native-appearance-prefix.pch"; IPHONEOS_DEPLOYMENT_TARGET = 11.0; OTHER_LDFLAGS = ""; OTHER_LIBTOOLFLAGS = ""; PRIVATE_HEADERS_FOLDER_PATH = ""; - PRODUCT_MODULE_NAME = MMKV; - PRODUCT_NAME = MMKV; + PRODUCT_MODULE_NAME = react_native_appearance; + PRODUCT_NAME = "react-native-appearance"; PUBLIC_HEADERS_FOLDER_PATH = ""; SDKROOT = iphoneos; SKIP_INSTALL = YES; @@ -40887,38 +40653,23 @@ }; name = Release; }; - CEFDFEDB6B978C3AB39B88A6C84C5090 /* Debug */ = { + D124A7732EA3602924AFD9A7E066FF3C /* Release */ = { isa = XCBuildConfiguration; - baseConfigurationReference = D6140EAA04937CCDC62246EB577E04F8 /* React.debug.xcconfig */; + baseConfigurationReference = 4C58A1A4422757A5A73BE5AC450D914D /* RNDateTimePicker.release.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; ARCHS = "$(ARCHS_STANDARD_64_BIT)"; - ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon; - ASSETCATALOG_COMPILER_GLOBAL_ACCENT_COLOR_NAME = AccentColor; CLANG_ENABLE_OBJC_WEAK = NO; - IPHONEOS_DEPLOYMENT_TARGET = 11.0; - LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks"; - SDKROOT = iphoneos; - TARGETED_DEVICE_FAMILY = "1,2"; - }; - name = Debug; - }; - CFC7207014229822E8B3391C13EDDD31 /* Release */ = { - isa = XCBuildConfiguration; - baseConfigurationReference = 5882B802CF53A5BD9EDA6D07631B851F /* CocoaAsyncSocket.release.xcconfig */; - buildSettings = { - APPLICATION_EXTENSION_API_ONLY = NO; - 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/CocoaAsyncSocket/CocoaAsyncSocket-prefix.pch"; + GCC_PREFIX_HEADER = "Target Support Files/RNDateTimePicker/RNDateTimePicker-prefix.pch"; IPHONEOS_DEPLOYMENT_TARGET = 11.0; OTHER_LDFLAGS = ""; OTHER_LIBTOOLFLAGS = ""; PRIVATE_HEADERS_FOLDER_PATH = ""; - PRODUCT_MODULE_NAME = CocoaAsyncSocket; - PRODUCT_NAME = CocoaAsyncSocket; + PRODUCT_MODULE_NAME = RNDateTimePicker; + PRODUCT_NAME = RNDateTimePicker; PUBLIC_HEADERS_FOLDER_PATH = ""; SDKROOT = iphoneos; SKIP_INSTALL = YES; @@ -40929,22 +40680,22 @@ }; name = Release; }; - D0FDE8CBCEEA78218E7F9B36A3679E2A /* Release */ = { + D159FCCBEEFE3964F5AEF6F91B98F4B1 /* Release */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 6BC844546A49F881F76425F68A1F936E /* react-native-appearance.release.xcconfig */; + baseConfigurationReference = 70B457C8B4C24EF5C6CF3A9CD2BABDC3 /* SDWebImage.release.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; 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-appearance/react-native-appearance-prefix.pch"; + GCC_PREFIX_HEADER = "Target Support Files/SDWebImage/SDWebImage-prefix.pch"; IPHONEOS_DEPLOYMENT_TARGET = 11.0; OTHER_LDFLAGS = ""; OTHER_LIBTOOLFLAGS = ""; PRIVATE_HEADERS_FOLDER_PATH = ""; - PRODUCT_MODULE_NAME = react_native_appearance; - PRODUCT_NAME = "react-native-appearance"; + PRODUCT_MODULE_NAME = SDWebImage; + PRODUCT_NAME = SDWebImage; PUBLIC_HEADERS_FOLDER_PATH = ""; SDKROOT = iphoneos; SKIP_INSTALL = YES; @@ -40955,23 +40706,22 @@ }; name = Release; }; - D124A7732EA3602924AFD9A7E066FF3C /* Release */ = { + D1CD6EFE0E7E9A5EC728BCB8435E4330 /* Release */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 1B5F6CEE5D7CFF670C9C2F1FC8621A17 /* RNDateTimePicker.release.xcconfig */; + baseConfigurationReference = 3BE7F6333AC045E8F1FD680028D5721C /* RNFBApp.release.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; ARCHS = "$(ARCHS_STANDARD_64_BIT)"; - CLANG_ENABLE_OBJC_WEAK = NO; "CODE_SIGN_IDENTITY[sdk=appletvos*]" = ""; "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = ""; "CODE_SIGN_IDENTITY[sdk=watchos*]" = ""; - GCC_PREFIX_HEADER = "Target Support Files/RNDateTimePicker/RNDateTimePicker-prefix.pch"; + GCC_PREFIX_HEADER = "Target Support Files/RNFBApp/RNFBApp-prefix.pch"; IPHONEOS_DEPLOYMENT_TARGET = 11.0; OTHER_LDFLAGS = ""; OTHER_LIBTOOLFLAGS = ""; PRIVATE_HEADERS_FOLDER_PATH = ""; - PRODUCT_MODULE_NAME = RNDateTimePicker; - PRODUCT_NAME = RNDateTimePicker; + PRODUCT_MODULE_NAME = RNFBApp; + PRODUCT_NAME = RNFBApp; PUBLIC_HEADERS_FOLDER_PATH = ""; SDKROOT = iphoneos; SKIP_INSTALL = YES; @@ -40982,9 +40732,9 @@ }; name = Release; }; - D45E3EED924AB5138532D95273DF9364 /* Release */ = { + D65AE35C376110D89C04B10E230223A9 /* Debug */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 22179B26EFA123B0FB129665B0D3749A /* Pods-defaults-Rocket.Chat.release.xcconfig */; + baseConfigurationReference = 04C9072E8E73E49E527671FED550BBA8 /* Pods-NotificationService.debug.xcconfig */; buildSettings = { ALWAYS_EMBED_SWIFT_STANDARD_LIBRARIES = NO; APPLICATION_EXTENSION_API_ONLY = NO; @@ -40995,7 +40745,7 @@ "CODE_SIGN_IDENTITY[sdk=watchos*]" = ""; IPHONEOS_DEPLOYMENT_TARGET = 11.0; MACH_O_TYPE = staticlib; - MODULEMAP_FILE = "Target Support Files/Pods-defaults-Rocket.Chat/Pods-defaults-Rocket.Chat.modulemap"; + MODULEMAP_FILE = "Target Support Files/Pods-NotificationService/Pods-NotificationService.modulemap"; OTHER_LDFLAGS = ""; OTHER_LIBTOOLFLAGS = ""; PODS_ROOT = "$(SRCROOT)"; @@ -41003,13 +40753,12 @@ SDKROOT = iphoneos; SKIP_INSTALL = YES; TARGETED_DEVICE_FAMILY = "1,2"; - VALIDATE_PRODUCT = YES; }; - name = Release; + name = Debug; }; - D56B4530EED9A2C237B9E71330E63B44 /* Release */ = { + D679DA3653EA9F2D9C4564889CB0C9AB /* Release */ = { isa = XCBuildConfiguration; - baseConfigurationReference = DED15C1208E208890C8166DEFA7CCCF0 /* React-RCTActionSheet.release.xcconfig */; + baseConfigurationReference = 641C0E83AFEBA877F036FC9524DEF7E7 /* JitsiMeetSDK.release.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; ARCHS = "$(ARCHS_STANDARD_64_BIT)"; @@ -41024,9 +40773,9 @@ }; name = Release; }; - D58A4A5E9C48E481E1D2E0764B9A3106 /* Release */ = { + D71510F76DCF7CE58547EB4918DF4984 /* Release */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 245ECF7B29C53EB3D624AA79946C00A8 /* React-runtimeexecutor.release.xcconfig */; + baseConfigurationReference = DF0EBE8F42C9993C9C93029480BBF012 /* UMTaskManagerInterface.release.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; ARCHS = "$(ARCHS_STANDARD_64_BIT)"; @@ -41041,76 +40790,87 @@ }; name = Release; }; - D5E5100E75BF415B7B2B1C62137C5649 /* Debug */ = { - isa = XCBuildConfiguration; - baseConfigurationReference = CC72D21238CDBFB46D8CFCC77CCABD69 /* TOCropViewController.debug.xcconfig */; - buildSettings = { - APPLICATION_EXTENSION_API_ONLY = NO; - CONFIGURATION_BUILD_DIR = "$(BUILD_DIR)/$(CONFIGURATION)$(EFFECTIVE_PLATFORM_NAME)/TOCropViewController"; - IBSC_MODULE = TOCropViewController; - INFOPLIST_FILE = "Target Support Files/TOCropViewController/ResourceBundle-TOCropViewControllerBundle-TOCropViewController-Info.plist"; - IPHONEOS_DEPLOYMENT_TARGET = 11.0; - PRODUCT_NAME = TOCropViewControllerBundle; - SDKROOT = iphoneos; - SKIP_INSTALL = YES; - TARGETED_DEVICE_FAMILY = "1,2"; - WRAPPER_EXTENSION = bundle; - }; - name = Debug; - }; - D679DA3653EA9F2D9C4564889CB0C9AB /* Release */ = { + D88CCAB6C18B29F59AE685B8220E600F /* Debug */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 6AB4C38354B40701BDF1A1954B9961DA /* JitsiMeetSDK.release.xcconfig */; + baseConfigurationReference = 369A28EC323090477F1FBA5CFEA5C82F /* React-cxxreact.debug.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; ARCHS = "$(ARCHS_STANDARD_64_BIT)"; - ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon; - ASSETCATALOG_COMPILER_GLOBAL_ACCENT_COLOR_NAME = AccentColor; CLANG_ENABLE_OBJC_WEAK = NO; + "CODE_SIGN_IDENTITY[sdk=appletvos*]" = ""; + "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = ""; + "CODE_SIGN_IDENTITY[sdk=watchos*]" = ""; + GCC_PREFIX_HEADER = "Target Support Files/React-cxxreact/React-cxxreact-prefix.pch"; IPHONEOS_DEPLOYMENT_TARGET = 11.0; - LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks"; + OTHER_LDFLAGS = ""; + OTHER_LIBTOOLFLAGS = ""; + PRIVATE_HEADERS_FOLDER_PATH = ""; + PRODUCT_MODULE_NAME = cxxreact; + PRODUCT_NAME = "React-cxxreact"; + 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; + name = Debug; }; - D6C61EE28C942578F06892DBD3C9A6ED /* Debug */ = { + D9F2392DE5AE220E046DC13F4BEDCE36 /* Debug */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 2644F2579B6A8617B5235C3BF091B1D3 /* UMImageLoaderInterface.debug.xcconfig */; + baseConfigurationReference = A50292957C3E70705B878E8D24C8FFC2 /* UMCore.debug.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; ARCHS = "$(ARCHS_STANDARD_64_BIT)"; - ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon; - ASSETCATALOG_COMPILER_GLOBAL_ACCENT_COLOR_NAME = AccentColor; CLANG_ENABLE_OBJC_WEAK = NO; + "CODE_SIGN_IDENTITY[sdk=appletvos*]" = ""; + "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = ""; + "CODE_SIGN_IDENTITY[sdk=watchos*]" = ""; + GCC_PREFIX_HEADER = "Target Support Files/UMCore/UMCore-prefix.pch"; IPHONEOS_DEPLOYMENT_TARGET = 11.0; - LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks"; + OTHER_LDFLAGS = ""; + OTHER_LIBTOOLFLAGS = ""; + PRIVATE_HEADERS_FOLDER_PATH = ""; + PRODUCT_MODULE_NAME = UMCore; + PRODUCT_NAME = UMCore; + 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; }; - D71510F76DCF7CE58547EB4918DF4984 /* Release */ = { + DADA741D133EBE2EC5B585AE8F03350D /* Debug */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 911B3EC5FE59FFBB5939024ADE0D328B /* UMTaskManagerInterface.release.xcconfig */; + baseConfigurationReference = A980271696F165C031EB427644D5FDFE /* nanopb.debug.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; ARCHS = "$(ARCHS_STANDARD_64_BIT)"; - ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon; - ASSETCATALOG_COMPILER_GLOBAL_ACCENT_COLOR_NAME = AccentColor; CLANG_ENABLE_OBJC_WEAK = NO; + "CODE_SIGN_IDENTITY[sdk=appletvos*]" = ""; + "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = ""; + "CODE_SIGN_IDENTITY[sdk=watchos*]" = ""; + GCC_PREFIX_HEADER = "Target Support Files/nanopb/nanopb-prefix.pch"; IPHONEOS_DEPLOYMENT_TARGET = 11.0; - LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks"; + OTHER_LDFLAGS = ""; + OTHER_LIBTOOLFLAGS = ""; + PRIVATE_HEADERS_FOLDER_PATH = ""; + PRODUCT_MODULE_NAME = nanopb; + PRODUCT_NAME = nanopb; + 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; + name = Debug; }; DB2005A0531F44543BA413716CCC3FDC /* Debug */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 558D3F7ACAF31C18087EB60CBBEF6338 /* KeyCommands.debug.xcconfig */; + baseConfigurationReference = E4CBBB2A0213C343B58B13DD110F317A /* KeyCommands.debug.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; ARCHS = "$(ARCHS_STANDARD_64_BIT)"; @@ -41133,34 +40893,36 @@ }; name = Debug; }; - E098105273203D0DACE3549D2C1102FE /* Debug */ = { + E407564D654385FA6B69C4650C39B295 /* Release */ = { isa = XCBuildConfiguration; - baseConfigurationReference = F6C380CA7A33FA313D82D9CB909D3CE4 /* Flipper-DoubleConversion.debug.xcconfig */; + baseConfigurationReference = A12C5E61F87AF0DF23C1C85A7CC261B1 /* React-RCTSettings.release.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; ARCHS = "$(ARCHS_STANDARD_64_BIT)"; + CLANG_ENABLE_OBJC_WEAK = NO; "CODE_SIGN_IDENTITY[sdk=appletvos*]" = ""; "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = ""; "CODE_SIGN_IDENTITY[sdk=watchos*]" = ""; - GCC_PREFIX_HEADER = "Target Support Files/Flipper-DoubleConversion/Flipper-DoubleConversion-prefix.pch"; + GCC_PREFIX_HEADER = "Target Support Files/React-RCTSettings/React-RCTSettings-prefix.pch"; IPHONEOS_DEPLOYMENT_TARGET = 11.0; OTHER_LDFLAGS = ""; OTHER_LIBTOOLFLAGS = ""; PRIVATE_HEADERS_FOLDER_PATH = ""; - PRODUCT_MODULE_NAME = DoubleConversion; - PRODUCT_NAME = "Flipper-DoubleConversion"; + PRODUCT_MODULE_NAME = RCTSettings; + PRODUCT_NAME = "React-RCTSettings"; PUBLIC_HEADERS_FOLDER_PATH = ""; SDKROOT = iphoneos; SKIP_INSTALL = YES; SWIFT_ACTIVE_COMPILATION_CONDITIONS = "$(inherited) "; SWIFT_VERSION = 5.0; TARGETED_DEVICE_FAMILY = "1,2"; + VALIDATE_PRODUCT = YES; }; - name = Debug; + name = Release; }; E459A1D9F0B488199727A77BAC16AD65 /* Debug */ = { isa = XCBuildConfiguration; - baseConfigurationReference = F6D284B7576715CC4396B43BE47D1555 /* RNReanimated.debug.xcconfig */; + baseConfigurationReference = 7EFA6F51DFE94641963FADC371A45CDD /* RNReanimated.debug.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; ARCHS = "$(ARCHS_STANDARD_64_BIT)"; @@ -41183,85 +40945,104 @@ }; name = Debug; }; - E4BD380E366DC7269640D2EFB8A914BF /* Debug */ = { + E45FCD2F8EA59CD1609A43CCF1ADB552 /* Release */ = { isa = XCBuildConfiguration; - baseConfigurationReference = B622CF7B7190C737864DAF48DBAD79FD /* react-native-slider.debug.xcconfig */; + baseConfigurationReference = 2E1B2426818A7ADF3D4A444798C51B11 /* ReactCommon.release.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; ARCHS = "$(ARCHS_STANDARD_64_BIT)"; + CLANG_ENABLE_OBJC_WEAK = NO; "CODE_SIGN_IDENTITY[sdk=appletvos*]" = ""; "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = ""; "CODE_SIGN_IDENTITY[sdk=watchos*]" = ""; - GCC_PREFIX_HEADER = "Target Support Files/react-native-slider/react-native-slider-prefix.pch"; + GCC_PREFIX_HEADER = "Target Support Files/ReactCommon/ReactCommon-prefix.pch"; IPHONEOS_DEPLOYMENT_TARGET = 11.0; OTHER_LDFLAGS = ""; OTHER_LIBTOOLFLAGS = ""; PRIVATE_HEADERS_FOLDER_PATH = ""; - PRODUCT_MODULE_NAME = react_native_slider; - PRODUCT_NAME = "react-native-slider"; + PRODUCT_MODULE_NAME = ReactCommon; + PRODUCT_NAME = ReactCommon; PUBLIC_HEADERS_FOLDER_PATH = ""; SDKROOT = iphoneos; SKIP_INSTALL = YES; SWIFT_ACTIVE_COMPILATION_CONDITIONS = "$(inherited) "; SWIFT_VERSION = 5.0; TARGETED_DEVICE_FAMILY = "1,2"; + VALIDATE_PRODUCT = YES; }; - name = Debug; + name = Release; }; - E6E001CA0857B974D8C862B0CA95C154 /* Release */ = { + E4BD380E366DC7269640D2EFB8A914BF /* Debug */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 4B61C20E4E6ED1ADB8280B01F982A3F1 /* KeyCommands.release.xcconfig */; + baseConfigurationReference = B7BDC75370C589C7BF0E331321D32FAE /* react-native-slider.debug.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; 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/KeyCommands/KeyCommands-prefix.pch"; + GCC_PREFIX_HEADER = "Target Support Files/react-native-slider/react-native-slider-prefix.pch"; IPHONEOS_DEPLOYMENT_TARGET = 11.0; OTHER_LDFLAGS = ""; OTHER_LIBTOOLFLAGS = ""; PRIVATE_HEADERS_FOLDER_PATH = ""; - PRODUCT_MODULE_NAME = KeyCommands; - PRODUCT_NAME = KeyCommands; + PRODUCT_MODULE_NAME = react_native_slider; + PRODUCT_NAME = "react-native-slider"; PUBLIC_HEADERS_FOLDER_PATH = ""; SDKROOT = iphoneos; - SKIP_INSTALL = YES; - SWIFT_ACTIVE_COMPILATION_CONDITIONS = "$(inherited) "; - SWIFT_VERSION = 5.0; + SKIP_INSTALL = YES; + SWIFT_ACTIVE_COMPILATION_CONDITIONS = "$(inherited) "; + SWIFT_VERSION = 5.0; + TARGETED_DEVICE_FAMILY = "1,2"; + }; + name = Debug; + }; + E608A0195AF4F5372F469E89CAA79A1D /* Release */ = { + isa = XCBuildConfiguration; + baseConfigurationReference = 23AAA7BF7B54F25B59821A0251FAA91A /* UMFileSystemInterface.release.xcconfig */; + buildSettings = { + APPLICATION_EXTENSION_API_ONLY = NO; + ARCHS = "$(ARCHS_STANDARD_64_BIT)"; + ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon; + ASSETCATALOG_COMPILER_GLOBAL_ACCENT_COLOR_NAME = AccentColor; + CLANG_ENABLE_OBJC_WEAK = NO; + IPHONEOS_DEPLOYMENT_TARGET = 11.0; + LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks"; + SDKROOT = iphoneos; TARGETED_DEVICE_FAMILY = "1,2"; VALIDATE_PRODUCT = YES; }; name = Release; }; - E77561557F596C05B0F94CFE3368AC62 /* Debug */ = { + E6E001CA0857B974D8C862B0CA95C154 /* Release */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 713226B89EB5E0214720191C9C8FF78C /* SDWebImage.debug.xcconfig */; + baseConfigurationReference = 575371CAA8C68BBA0098624C8BBD0811 /* KeyCommands.release.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; 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/SDWebImage/SDWebImage-prefix.pch"; + GCC_PREFIX_HEADER = "Target Support Files/KeyCommands/KeyCommands-prefix.pch"; IPHONEOS_DEPLOYMENT_TARGET = 11.0; OTHER_LDFLAGS = ""; OTHER_LIBTOOLFLAGS = ""; PRIVATE_HEADERS_FOLDER_PATH = ""; - PRODUCT_MODULE_NAME = SDWebImage; - PRODUCT_NAME = SDWebImage; + PRODUCT_MODULE_NAME = KeyCommands; + PRODUCT_NAME = KeyCommands; PUBLIC_HEADERS_FOLDER_PATH = ""; SDKROOT = iphoneos; SKIP_INSTALL = YES; SWIFT_ACTIVE_COMPILATION_CONDITIONS = "$(inherited) "; SWIFT_VERSION = 5.0; TARGETED_DEVICE_FAMILY = "1,2"; + VALIDATE_PRODUCT = YES; }; - name = Debug; + name = Release; }; E79554B3BBBAD59DD13FE4326E02D109 /* Debug */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 27E48D41D14E4E75865F8FD09A45346B /* react-native-appearance.debug.xcconfig */; + baseConfigurationReference = 792E20EE8DF01586F424E2A12C2309ED /* react-native-appearance.debug.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; ARCHS = "$(ARCHS_STANDARD_64_BIT)"; @@ -41284,35 +41065,24 @@ }; name = Debug; }; - E8629500EC18665C29B3B6EFA4500B01 /* Release */ = { + E9D8066BA2BF0FB6985B018E9EFA6EA1 /* Debug */ = { isa = XCBuildConfiguration; - baseConfigurationReference = FFCE347A1CEBBD0FA95EFF4E15B38328 /* RCT-Folly.release.xcconfig */; + baseConfigurationReference = 32130A5CD0076E9A8430421436D315B0 /* GoogleAppMeasurement.debug.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; 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/RCT-Folly/RCT-Folly-prefix.pch"; + ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon; + ASSETCATALOG_COMPILER_GLOBAL_ACCENT_COLOR_NAME = AccentColor; IPHONEOS_DEPLOYMENT_TARGET = 11.0; - OTHER_LDFLAGS = ""; - OTHER_LIBTOOLFLAGS = ""; - PRIVATE_HEADERS_FOLDER_PATH = ""; - PRODUCT_MODULE_NAME = folly; - PRODUCT_NAME = "RCT-Folly"; - PUBLIC_HEADERS_FOLDER_PATH = ""; + LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks"; SDKROOT = iphoneos; - SKIP_INSTALL = YES; - SWIFT_ACTIVE_COMPILATION_CONDITIONS = "$(inherited) "; - SWIFT_VERSION = 5.0; TARGETED_DEVICE_FAMILY = "1,2"; - VALIDATE_PRODUCT = YES; }; - name = Release; + name = Debug; }; EA153B9EA17E108C573D62F0F600AFB9 /* Release */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 6DCC0C7F66B675D989796CA6C01D6D6D /* RNDeviceInfo.release.xcconfig */; + baseConfigurationReference = D02F20BF6E1154C083BD69E44AA4A4EC /* RNDeviceInfo.release.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; ARCHS = "$(ARCHS_STANDARD_64_BIT)"; @@ -41338,7 +41108,7 @@ }; EA63371836855F183EB482F6D7439350 /* Release */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 3B335D891353EDABF098FC898DC8073B /* react-native-document-picker.release.xcconfig */; + baseConfigurationReference = 41AE131494EC50667A17FD1C382326FB /* react-native-document-picker.release.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; ARCHS = "$(ARCHS_STANDARD_64_BIT)"; @@ -41363,57 +41133,60 @@ }; name = Release; }; - EA8EE5E67E43E1FC52E2A7E05BCB3CA8 /* Debug */ = { + EA6BED013CE89400012C568F0EAD7AC6 /* Release */ = { isa = XCBuildConfiguration; - baseConfigurationReference = DBC3D997AF120FFB33BFD96167D936A0 /* FirebaseCore.debug.xcconfig */; + baseConfigurationReference = 252571F225CA5B44A8928B4F7B89D814 /* React-RCTNetwork.release.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; ARCHS = "$(ARCHS_STANDARD_64_BIT)"; + CLANG_ENABLE_OBJC_WEAK = NO; "CODE_SIGN_IDENTITY[sdk=appletvos*]" = ""; "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = ""; "CODE_SIGN_IDENTITY[sdk=watchos*]" = ""; + GCC_PREFIX_HEADER = "Target Support Files/React-RCTNetwork/React-RCTNetwork-prefix.pch"; IPHONEOS_DEPLOYMENT_TARGET = 11.0; OTHER_LDFLAGS = ""; OTHER_LIBTOOLFLAGS = ""; PRIVATE_HEADERS_FOLDER_PATH = ""; - PRODUCT_MODULE_NAME = FirebaseCore; - PRODUCT_NAME = FirebaseCore; + PRODUCT_MODULE_NAME = RCTNetwork; + PRODUCT_NAME = "React-RCTNetwork"; PUBLIC_HEADERS_FOLDER_PATH = ""; SDKROOT = iphoneos; SKIP_INSTALL = YES; SWIFT_ACTIVE_COMPILATION_CONDITIONS = "$(inherited) "; SWIFT_VERSION = 5.0; TARGETED_DEVICE_FAMILY = "1,2"; + VALIDATE_PRODUCT = YES; }; - name = Debug; + name = Release; }; - EDB4F4FD8CAA27B09680BC8447768A26 /* Debug */ = { + EB04372C2048114591DD70102453A83B /* Debug */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 04C9072E8E73E49E527671FED550BBA8 /* Pods-NotificationService.debug.xcconfig */; + baseConfigurationReference = 08BC4F14D8C21AD5493AE3AAD10AFB48 /* PromisesObjC.debug.xcconfig */; buildSettings = { - ALWAYS_EMBED_SWIFT_STANDARD_LIBRARIES = NO; APPLICATION_EXTENSION_API_ONLY = NO; ARCHS = "$(ARCHS_STANDARD_64_BIT)"; - CLANG_ENABLE_OBJC_WEAK = NO; "CODE_SIGN_IDENTITY[sdk=appletvos*]" = ""; "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = ""; "CODE_SIGN_IDENTITY[sdk=watchos*]" = ""; IPHONEOS_DEPLOYMENT_TARGET = 11.0; - MACH_O_TYPE = staticlib; - MODULEMAP_FILE = "Target Support Files/Pods-NotificationService/Pods-NotificationService.modulemap"; OTHER_LDFLAGS = ""; OTHER_LIBTOOLFLAGS = ""; - PODS_ROOT = "$(SRCROOT)"; - PRODUCT_BUNDLE_IDENTIFIER = "org.cocoapods.${PRODUCT_NAME:rfc1034identifier}"; + PRIVATE_HEADERS_FOLDER_PATH = ""; + PRODUCT_MODULE_NAME = FBLPromises; + PRODUCT_NAME = PromisesObjC; + 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; }; - EE7273F74A5DAB28BBF9730CA491CCCF /* Debug */ = { + EB2BECCB1CD5D2659C74800FC579E0A4 /* Release */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 3176AB3C86C5700B205948C24DBD3022 /* Pods-defaults-Rocket.Chat.debug.xcconfig */; + baseConfigurationReference = 29A522F564C45BAC1C908C4FA821DD3F /* Pods-ShareRocketChatRN.release.xcconfig */; buildSettings = { ALWAYS_EMBED_SWIFT_STANDARD_LIBRARIES = NO; APPLICATION_EXTENSION_API_ONLY = NO; @@ -41424,7 +41197,7 @@ "CODE_SIGN_IDENTITY[sdk=watchos*]" = ""; IPHONEOS_DEPLOYMENT_TARGET = 11.0; MACH_O_TYPE = staticlib; - MODULEMAP_FILE = "Target Support Files/Pods-defaults-Rocket.Chat/Pods-defaults-Rocket.Chat.modulemap"; + MODULEMAP_FILE = "Target Support Files/Pods-ShareRocketChatRN/Pods-ShareRocketChatRN.modulemap"; OTHER_LDFLAGS = ""; OTHER_LIBTOOLFLAGS = ""; PODS_ROOT = "$(SRCROOT)"; @@ -41432,65 +41205,37 @@ SDKROOT = iphoneos; SKIP_INSTALL = YES; TARGETED_DEVICE_FAMILY = "1,2"; - }; - name = Debug; - }; - EF7125D5B7A9E0805D68C26DD9E42A35 /* Release */ = { - isa = XCBuildConfiguration; - baseConfigurationReference = B32DD95FEA09DF1C9AAFDCB797ACD40D /* Flipper-Glog.release.xcconfig */; - buildSettings = { - APPLICATION_EXTENSION_API_ONLY = NO; - 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/Flipper-Glog/Flipper-Glog-prefix.pch"; - IPHONEOS_DEPLOYMENT_TARGET = 11.0; - OTHER_LDFLAGS = ""; - OTHER_LIBTOOLFLAGS = ""; - PRIVATE_HEADERS_FOLDER_PATH = ""; - PRODUCT_MODULE_NAME = glog; - PRODUCT_NAME = "Flipper-Glog"; - 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; }; - EFA4F633CF780D6126FF99CF870855EE /* Release */ = { + EC74D0B51D32705BF51AA9E276361841 /* Debug */ = { isa = XCBuildConfiguration; - baseConfigurationReference = CE75A73372A46C20D81FFA32E2B7FF33 /* React-jsi.release.xcconfig */; + baseConfigurationReference = D6EDE6F5C49C2FF4A67647D6BE2F1A41 /* GoogleDataTransport.debug.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; ARCHS = "$(ARCHS_STANDARD_64_BIT)"; - CLANG_ENABLE_OBJC_WEAK = NO; "CODE_SIGN_IDENTITY[sdk=appletvos*]" = ""; "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = ""; "CODE_SIGN_IDENTITY[sdk=watchos*]" = ""; - GCC_PREFIX_HEADER = "Target Support Files/React-jsi/React-jsi-prefix.pch"; IPHONEOS_DEPLOYMENT_TARGET = 11.0; OTHER_LDFLAGS = ""; OTHER_LIBTOOLFLAGS = ""; PRIVATE_HEADERS_FOLDER_PATH = ""; - PRODUCT_MODULE_NAME = jsi; - PRODUCT_NAME = "React-jsi"; + PRODUCT_MODULE_NAME = GoogleDataTransport; + PRODUCT_NAME = GoogleDataTransport; 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; + name = Debug; }; F0506B029B9E71EEE11506B8BCCA1457 /* Debug */ = { isa = XCBuildConfiguration; - baseConfigurationReference = E9F8ED4171EE1BF4C32DAD3F2AC794BF /* react-native-cameraroll.debug.xcconfig */; + baseConfigurationReference = E8036EBC20C3DAD44D097899CDDEB694 /* react-native-cameraroll.debug.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; ARCHS = "$(ARCHS_STANDARD_64_BIT)"; @@ -41513,34 +41258,25 @@ }; name = Debug; }; - F0B79C694C6D0B6FE54C426A49E4E986 /* Release */ = { + F1206CBBC18CF92AA237CEFE4577FE0F /* Debug */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 3EBB8DE63D81A58A5C248488CF5C0F61 /* PromisesObjC.release.xcconfig */; + baseConfigurationReference = A26D68BF2D8F8FC9A6C574EF12B4B437 /* UMImageLoaderInterface.debug.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; ARCHS = "$(ARCHS_STANDARD_64_BIT)"; - "CODE_SIGN_IDENTITY[sdk=appletvos*]" = ""; - "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = ""; - "CODE_SIGN_IDENTITY[sdk=watchos*]" = ""; + ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon; + ASSETCATALOG_COMPILER_GLOBAL_ACCENT_COLOR_NAME = AccentColor; + CLANG_ENABLE_OBJC_WEAK = NO; IPHONEOS_DEPLOYMENT_TARGET = 11.0; - OTHER_LDFLAGS = ""; - OTHER_LIBTOOLFLAGS = ""; - PRIVATE_HEADERS_FOLDER_PATH = ""; - PRODUCT_MODULE_NAME = FBLPromises; - PRODUCT_NAME = PromisesObjC; - PUBLIC_HEADERS_FOLDER_PATH = ""; + LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks"; SDKROOT = iphoneos; - SKIP_INSTALL = YES; - SWIFT_ACTIVE_COMPILATION_CONDITIONS = "$(inherited) "; - SWIFT_VERSION = 5.0; TARGETED_DEVICE_FAMILY = "1,2"; - VALIDATE_PRODUCT = YES; }; - name = Release; + name = Debug; }; F183E3C54449FC9E3FF35E64A93162D6 /* Debug */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 9661B1C4A2B56C984ADF56018468F19E /* Flipper.debug.xcconfig */; + baseConfigurationReference = C46EFDBD3BCD8DFF87C413FD97C9147C /* Flipper.debug.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; ARCHS = "$(ARCHS_STANDARD_64_BIT)"; @@ -41564,26 +41300,26 @@ }; name = Debug; }; - F3EE27B0C756A8266CCDF2B12606FA17 /* Debug */ = { + F2851BB4B25040C1975014181B356986 /* Release */ = { isa = XCBuildConfiguration; - baseConfigurationReference = B8F9958D28A43B51CE55A9E673B47073 /* React-Core.debug.xcconfig */; + baseConfigurationReference = 721D290B486DC5E3BEDBAE77C782DADD /* React.release.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; - CONFIGURATION_BUILD_DIR = "$(BUILD_DIR)/$(CONFIGURATION)$(EFFECTIVE_PLATFORM_NAME)/React-Core"; - IBSC_MODULE = React; - INFOPLIST_FILE = "Target Support Files/React-Core/ResourceBundle-AccessibilityResources-React-Core-Info.plist"; + ARCHS = "$(ARCHS_STANDARD_64_BIT)"; + ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon; + ASSETCATALOG_COMPILER_GLOBAL_ACCENT_COLOR_NAME = AccentColor; + CLANG_ENABLE_OBJC_WEAK = NO; IPHONEOS_DEPLOYMENT_TARGET = 11.0; - PRODUCT_NAME = AccessibilityResources; + LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks"; SDKROOT = iphoneos; - SKIP_INSTALL = YES; TARGETED_DEVICE_FAMILY = "1,2"; - WRAPPER_EXTENSION = bundle; + VALIDATE_PRODUCT = YES; }; - name = Debug; + name = Release; }; F4021723BC60346B934B57D211E377CF /* Release */ = { isa = XCBuildConfiguration; - baseConfigurationReference = AAEB5F0A5261B6D7B056ED1D75CC3CCF /* react-native-netinfo.release.xcconfig */; + baseConfigurationReference = AAC5104AD30B669A817C007D7D25661B /* react-native-netinfo.release.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; ARCHS = "$(ARCHS_STANDARD_64_BIT)"; @@ -41607,9 +41343,52 @@ }; name = Release; }; + F41B854F808F0A50B4E9E00AA56E76BF /* Debug */ = { + isa = XCBuildConfiguration; + baseConfigurationReference = 93BC5623D929B9D1C5B87AE509F7BB03 /* React-jsinspector.debug.xcconfig */; + buildSettings = { + APPLICATION_EXTENSION_API_ONLY = NO; + ARCHS = "$(ARCHS_STANDARD_64_BIT)"; + CLANG_ENABLE_OBJC_WEAK = NO; + "CODE_SIGN_IDENTITY[sdk=appletvos*]" = ""; + "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = ""; + "CODE_SIGN_IDENTITY[sdk=watchos*]" = ""; + GCC_PREFIX_HEADER = "Target Support Files/React-jsinspector/React-jsinspector-prefix.pch"; + IPHONEOS_DEPLOYMENT_TARGET = 11.0; + OTHER_LDFLAGS = ""; + OTHER_LIBTOOLFLAGS = ""; + PRIVATE_HEADERS_FOLDER_PATH = ""; + PRODUCT_MODULE_NAME = jsinspector; + PRODUCT_NAME = "React-jsinspector"; + 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; + }; + F5625087FAC487F93346B23B1796AAAD /* Release */ = { + isa = XCBuildConfiguration; + baseConfigurationReference = EE7681EF0BCB9E6154C44E202406602B /* RCTRequired.release.xcconfig */; + buildSettings = { + APPLICATION_EXTENSION_API_ONLY = NO; + ARCHS = "$(ARCHS_STANDARD_64_BIT)"; + ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon; + ASSETCATALOG_COMPILER_GLOBAL_ACCENT_COLOR_NAME = AccentColor; + CLANG_ENABLE_OBJC_WEAK = NO; + IPHONEOS_DEPLOYMENT_TARGET = 11.0; + LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks"; + SDKROOT = iphoneos; + TARGETED_DEVICE_FAMILY = "1,2"; + VALIDATE_PRODUCT = YES; + }; + name = Release; + }; F5741BF254B759E7C65C9EC19A11B1D8 /* Debug */ = { isa = XCBuildConfiguration; - baseConfigurationReference = B63229FD73062316E617CD530F989313 /* RNVectorIcons.debug.xcconfig */; + baseConfigurationReference = F6BDB030D490C6730F2CBA19D1722AD6 /* RNVectorIcons.debug.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; ARCHS = "$(ARCHS_STANDARD_64_BIT)"; @@ -41634,7 +41413,7 @@ }; F70AD1A19AB564FC34E6C552DA2C4AD1 /* Release */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 27119F2A6238A2FC86DAFDE84A691EB4 /* EXHaptics.release.xcconfig */; + baseConfigurationReference = 680822EACD88D7EA569C8C0538032DE3 /* EXHaptics.release.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; ARCHS = "$(ARCHS_STANDARD_64_BIT)"; @@ -41659,9 +41438,25 @@ }; name = Release; }; + F7BC6B98108C8A5EBCC0568298A7C713 /* Release */ = { + isa = XCBuildConfiguration; + baseConfigurationReference = 6C814091ED8C9A65EF28A32FBE9EC883 /* GoogleAppMeasurement.release.xcconfig */; + buildSettings = { + APPLICATION_EXTENSION_API_ONLY = NO; + ARCHS = "$(ARCHS_STANDARD_64_BIT)"; + ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon; + ASSETCATALOG_COMPILER_GLOBAL_ACCENT_COLOR_NAME = AccentColor; + IPHONEOS_DEPLOYMENT_TARGET = 11.0; + LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks"; + SDKROOT = iphoneos; + TARGETED_DEVICE_FAMILY = "1,2"; + VALIDATE_PRODUCT = YES; + }; + name = Release; + }; F7E7E7407EB003DA266CD8BB5ED8021E /* Release */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 1F6519389DFA260CF2086318A834088C /* Flipper.release.xcconfig */; + baseConfigurationReference = A6E95B20F1E1E3E8D4A9BDF2B9EC761F /* Flipper.release.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; ARCHS = "$(ARCHS_STANDARD_64_BIT)"; @@ -41688,7 +41483,7 @@ }; F80139D222CD8D411E62E5C7A9A572D0 /* Debug */ = { isa = XCBuildConfiguration; - baseConfigurationReference = D2943406FA1878F07097E101AE75878A /* React-CoreModules.debug.xcconfig */; + baseConfigurationReference = 44625E798DB2E675CC7B1FA051978473 /* React-CoreModules.debug.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; ARCHS = "$(ARCHS_STANDARD_64_BIT)"; @@ -41712,39 +41507,23 @@ }; name = Debug; }; - F977BD0B99BFED939F9A9BC461C8C112 /* Release */ = { - isa = XCBuildConfiguration; - baseConfigurationReference = 33C451B5E70DB04A4D69D8018EFC491A /* RNImageCropPicker.release.xcconfig */; - buildSettings = { - APPLICATION_EXTENSION_API_ONLY = NO; - CONFIGURATION_BUILD_DIR = "$(BUILD_DIR)/$(CONFIGURATION)$(EFFECTIVE_PLATFORM_NAME)/RNImageCropPicker"; - IBSC_MODULE = RNImageCropPicker; - INFOPLIST_FILE = "Target Support Files/RNImageCropPicker/ResourceBundle-QBImagePicker-RNImageCropPicker-Info.plist"; - IPHONEOS_DEPLOYMENT_TARGET = 11.0; - PRODUCT_NAME = QBImagePicker; - SDKROOT = iphoneos; - SKIP_INSTALL = YES; - TARGETED_DEVICE_FAMILY = "1,2"; - WRAPPER_EXTENSION = bundle; - }; - name = Release; - }; - F9ABBEEDD1A828D78D88DE53937DCC91 /* Release */ = { + F858BB053ADF3580F7C418B66EAA1D30 /* Release */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 5717BE80A558DC52BD945542F682495A /* react-native-jitsi-meet.release.xcconfig */; + baseConfigurationReference = 044038628B089B5FA05D66B2AFD157EF /* nanopb.release.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; ARCHS = "$(ARCHS_STANDARD_64_BIT)"; + CLANG_ENABLE_OBJC_WEAK = NO; "CODE_SIGN_IDENTITY[sdk=appletvos*]" = ""; "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = ""; "CODE_SIGN_IDENTITY[sdk=watchos*]" = ""; - GCC_PREFIX_HEADER = "Target Support Files/react-native-jitsi-meet/react-native-jitsi-meet-prefix.pch"; + GCC_PREFIX_HEADER = "Target Support Files/nanopb/nanopb-prefix.pch"; IPHONEOS_DEPLOYMENT_TARGET = 11.0; OTHER_LDFLAGS = ""; OTHER_LIBTOOLFLAGS = ""; PRIVATE_HEADERS_FOLDER_PATH = ""; - PRODUCT_MODULE_NAME = react_native_jitsi_meet; - PRODUCT_NAME = "react-native-jitsi-meet"; + PRODUCT_MODULE_NAME = nanopb; + PRODUCT_NAME = nanopb; PUBLIC_HEADERS_FOLDER_PATH = ""; SDKROOT = iphoneos; SKIP_INSTALL = YES; @@ -41755,35 +41534,35 @@ }; name = Release; }; - F9FA7A73B41D25987F6E304AB230A289 /* Debug */ = { + F9ABBEEDD1A828D78D88DE53937DCC91 /* Release */ = { isa = XCBuildConfiguration; - baseConfigurationReference = B3D315E54667C3E03E9D6864813B0E38 /* React-RCTLinking.debug.xcconfig */; + baseConfigurationReference = 4A25B203EB3A6BB4B7E0E273F0C17B7C /* react-native-jitsi-meet.release.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; ARCHS = "$(ARCHS_STANDARD_64_BIT)"; - CLANG_ENABLE_OBJC_WEAK = NO; "CODE_SIGN_IDENTITY[sdk=appletvos*]" = ""; "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = ""; "CODE_SIGN_IDENTITY[sdk=watchos*]" = ""; - GCC_PREFIX_HEADER = "Target Support Files/React-RCTLinking/React-RCTLinking-prefix.pch"; + GCC_PREFIX_HEADER = "Target Support Files/react-native-jitsi-meet/react-native-jitsi-meet-prefix.pch"; IPHONEOS_DEPLOYMENT_TARGET = 11.0; OTHER_LDFLAGS = ""; OTHER_LIBTOOLFLAGS = ""; PRIVATE_HEADERS_FOLDER_PATH = ""; - PRODUCT_MODULE_NAME = RCTLinking; - PRODUCT_NAME = "React-RCTLinking"; + PRODUCT_MODULE_NAME = react_native_jitsi_meet; + PRODUCT_NAME = "react-native-jitsi-meet"; PUBLIC_HEADERS_FOLDER_PATH = ""; SDKROOT = iphoneos; SKIP_INSTALL = YES; SWIFT_ACTIVE_COMPILATION_CONDITIONS = "$(inherited) "; SWIFT_VERSION = 5.0; TARGETED_DEVICE_FAMILY = "1,2"; + VALIDATE_PRODUCT = YES; }; - name = Debug; + name = Release; }; FA63C9CF0D9C486B3BA4337A160BA74C /* Release */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 45ADF538F25776E64060B02AABA07AF4 /* EXConstants.release.xcconfig */; + baseConfigurationReference = 00F0ECD141FAD483969D87744195B84A /* EXConstants.release.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; ARCHS = "$(ARCHS_STANDARD_64_BIT)"; @@ -41808,22 +41587,23 @@ }; name = Release; }; - FB4ABA246927508A6406B2AD139AB213 /* Release */ = { + FAC8BB357635726CBF1505C567F8CD52 /* Release */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 78B4B36C13100D30E53040F5DBA07C93 /* react-native-restart.release.xcconfig */; + baseConfigurationReference = 47DB520D98397A3D722723735A2DFF93 /* React-perflogger.release.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; ARCHS = "$(ARCHS_STANDARD_64_BIT)"; + CLANG_ENABLE_OBJC_WEAK = NO; "CODE_SIGN_IDENTITY[sdk=appletvos*]" = ""; "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = ""; "CODE_SIGN_IDENTITY[sdk=watchos*]" = ""; - GCC_PREFIX_HEADER = "Target Support Files/react-native-restart/react-native-restart-prefix.pch"; + GCC_PREFIX_HEADER = "Target Support Files/React-perflogger/React-perflogger-prefix.pch"; IPHONEOS_DEPLOYMENT_TARGET = 11.0; OTHER_LDFLAGS = ""; OTHER_LIBTOOLFLAGS = ""; PRIVATE_HEADERS_FOLDER_PATH = ""; - PRODUCT_MODULE_NAME = react_native_restart; - PRODUCT_NAME = "react-native-restart"; + PRODUCT_MODULE_NAME = reactperflogger; + PRODUCT_NAME = "React-perflogger"; PUBLIC_HEADERS_FOLDER_PATH = ""; SDKROOT = iphoneos; SKIP_INSTALL = YES; @@ -41834,36 +41614,35 @@ }; name = Release; }; - FBD31888CB837C5D550F1BD0DE015396 /* Debug */ = { + FB4ABA246927508A6406B2AD139AB213 /* Release */ = { isa = XCBuildConfiguration; - baseConfigurationReference = B8F9958D28A43B51CE55A9E673B47073 /* React-Core.debug.xcconfig */; + baseConfigurationReference = C1C4AB165361C79E9CEB10B849DD0B99 /* react-native-restart.release.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; ARCHS = "$(ARCHS_STANDARD_64_BIT)"; - CLANG_ENABLE_OBJC_WEAK = NO; "CODE_SIGN_IDENTITY[sdk=appletvos*]" = ""; "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = ""; "CODE_SIGN_IDENTITY[sdk=watchos*]" = ""; - GCC_PREFIX_HEADER = "Target Support Files/React-Core/React-Core-prefix.pch"; + GCC_PREFIX_HEADER = "Target Support Files/react-native-restart/react-native-restart-prefix.pch"; IPHONEOS_DEPLOYMENT_TARGET = 11.0; - MODULEMAP_FILE = "Headers/Public/React/React-Core.modulemap"; OTHER_LDFLAGS = ""; OTHER_LIBTOOLFLAGS = ""; PRIVATE_HEADERS_FOLDER_PATH = ""; - PRODUCT_MODULE_NAME = React; - PRODUCT_NAME = "React-Core"; + PRODUCT_MODULE_NAME = react_native_restart; + PRODUCT_NAME = "react-native-restart"; PUBLIC_HEADERS_FOLDER_PATH = ""; SDKROOT = iphoneos; SKIP_INSTALL = YES; SWIFT_ACTIVE_COMPILATION_CONDITIONS = "$(inherited) "; SWIFT_VERSION = 5.0; TARGETED_DEVICE_FAMILY = "1,2"; + VALIDATE_PRODUCT = YES; }; - name = Debug; + name = Release; }; FC432EE333F2540FC0B0C86D7AF1E975 /* Debug */ = { isa = XCBuildConfiguration; - baseConfigurationReference = D725CF596A4AFE33281DA292DE582717 /* FBLazyVector.debug.xcconfig */; + baseConfigurationReference = 5F7F98B3B6339240DCBE2E827C0DD546 /* FBLazyVector.debug.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; ARCHS = "$(ARCHS_STANDARD_64_BIT)"; @@ -41877,45 +41656,44 @@ }; name = Debug; }; - FCDE3A2AB0B7242F2D667CB1C686DE2F /* Release */ = { + FED4091850B98DEE852E1FFC263B0AA5 /* Debug */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 7E61F8A63FBA407A952062E0F522055D /* React-RCTBlob.release.xcconfig */; + baseConfigurationReference = 45413EFE81C6EE013732FA63E6BD552F /* JitsiMeetSDK.debug.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; ARCHS = "$(ARCHS_STANDARD_64_BIT)"; + ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon; + ASSETCATALOG_COMPILER_GLOBAL_ACCENT_COLOR_NAME = AccentColor; CLANG_ENABLE_OBJC_WEAK = NO; - "CODE_SIGN_IDENTITY[sdk=appletvos*]" = ""; - "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = ""; - "CODE_SIGN_IDENTITY[sdk=watchos*]" = ""; - GCC_PREFIX_HEADER = "Target Support Files/React-RCTBlob/React-RCTBlob-prefix.pch"; IPHONEOS_DEPLOYMENT_TARGET = 11.0; - OTHER_LDFLAGS = ""; - OTHER_LIBTOOLFLAGS = ""; - PRIVATE_HEADERS_FOLDER_PATH = ""; - PRODUCT_MODULE_NAME = RCTBlob; - PRODUCT_NAME = "React-RCTBlob"; - PUBLIC_HEADERS_FOLDER_PATH = ""; + LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks"; SDKROOT = iphoneos; - SKIP_INSTALL = YES; - SWIFT_ACTIVE_COMPILATION_CONDITIONS = "$(inherited) "; - SWIFT_VERSION = 5.0; TARGETED_DEVICE_FAMILY = "1,2"; - VALIDATE_PRODUCT = YES; }; - name = Release; + name = Debug; }; - FED4091850B98DEE852E1FFC263B0AA5 /* Debug */ = { + FF2E19A4165D35321091A7C6D9D6DF4C /* Debug */ = { isa = XCBuildConfiguration; - baseConfigurationReference = A20B8C264F43DCE74DED1C6902DCD7F2 /* JitsiMeetSDK.debug.xcconfig */; + baseConfigurationReference = 26A63B442D5B01F8BEDEC991E83915BA /* UMPermissionsInterface.debug.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; ARCHS = "$(ARCHS_STANDARD_64_BIT)"; - ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon; - ASSETCATALOG_COMPILER_GLOBAL_ACCENT_COLOR_NAME = AccentColor; CLANG_ENABLE_OBJC_WEAK = NO; + "CODE_SIGN_IDENTITY[sdk=appletvos*]" = ""; + "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = ""; + "CODE_SIGN_IDENTITY[sdk=watchos*]" = ""; + GCC_PREFIX_HEADER = "Target Support Files/UMPermissionsInterface/UMPermissionsInterface-prefix.pch"; IPHONEOS_DEPLOYMENT_TARGET = 11.0; - LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks"; + OTHER_LDFLAGS = ""; + OTHER_LIBTOOLFLAGS = ""; + PRIVATE_HEADERS_FOLDER_PATH = ""; + PRODUCT_MODULE_NAME = UMPermissionsInterface; + PRODUCT_NAME = UMPermissionsInterface; + 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; @@ -41923,29 +41701,29 @@ /* End XCBuildConfiguration section */ /* Begin XCConfigurationList section */ - 030D368A423358C520F7DDA2C5015898 /* Build configuration list for PBXAggregateTarget "OpenSSL-Universal" */ = { + 03C33DEC2CE7E37B24E201797963E05D /* Build configuration list for PBXAggregateTarget "React-callinvoker" */ = { isa = XCConfigurationList; buildConfigurations = ( - 08D71AEFCC86DB114EDF659B02FEBEA4 /* Debug */, - 0AD8D67C1E55D2D5407E0C92B2157A74 /* Release */, + A161B1C18145766F96E7E0D2FFAE4E50 /* Debug */, + 3EE3613974748FC8910E92AE1495EEB6 /* Release */, ); defaultConfigurationIsVisible = 0; defaultConfigurationName = Release; }; - 0926020C4A45568BD0102CB648FDC10B /* Build configuration list for PBXNativeTarget "RNCPicker" */ = { + 0570B039E87B9E024B843A786AAB8BEB /* Build configuration list for PBXNativeTarget "React-jsi" */ = { isa = XCConfigurationList; buildConfigurations = ( - 70D7C826A438DFF0D518F3538297D657 /* Debug */, - 452A6A33E111B1718D3C3EA700068412 /* Release */, + 254DF64C579366D64434142A3563DE60 /* Debug */, + 571D6095462C761D861F4C6D5D0178EE /* Release */, ); defaultConfigurationIsVisible = 0; defaultConfigurationName = Release; }; - 0AABDF923994A94E2CCCDF04227D1FC1 /* Build configuration list for PBXAggregateTarget "UMImageLoaderInterface" */ = { + 0926020C4A45568BD0102CB648FDC10B /* Build configuration list for PBXNativeTarget "RNCPicker" */ = { isa = XCConfigurationList; buildConfigurations = ( - D6C61EE28C942578F06892DBD3C9A6ED /* Debug */, - 0BA14761DA8A69162BF3989FB0094D75 /* Release */, + 70D7C826A438DFF0D518F3538297D657 /* Debug */, + 452A6A33E111B1718D3C3EA700068412 /* Release */, ); defaultConfigurationIsVisible = 0; defaultConfigurationName = Release; @@ -41959,6 +41737,24 @@ defaultConfigurationIsVisible = 0; defaultConfigurationName = Release; }; + 0F89E7C1106DF7AE2AD450C7A820F803 /* Build configuration list for PBXAggregateTarget "GoogleAppMeasurement" */ = { + isa = XCConfigurationList; + buildConfigurations = ( + E9D8066BA2BF0FB6985B018E9EFA6EA1 /* Debug */, + F7BC6B98108C8A5EBCC0568298A7C713 /* Release */, + ); + defaultConfigurationIsVisible = 0; + defaultConfigurationName = Release; + }; + 11CB0AE17C9F0B400527DF2327F0B7CE /* Build configuration list for PBXNativeTarget "SDWebImage" */ = { + isa = XCConfigurationList; + buildConfigurations = ( + AA2946505734D2F70B933A1F9A380543 /* Debug */, + D159FCCBEEFE3964F5AEF6F91B98F4B1 /* Release */, + ); + defaultConfigurationIsVisible = 0; + defaultConfigurationName = Release; + }; 13415A5232D59FD50FC05169C8463FD9 /* Build configuration list for PBXNativeTarget "EXWebBrowser" */ = { isa = XCConfigurationList; buildConfigurations = ( @@ -41968,11 +41764,11 @@ defaultConfigurationIsVisible = 0; defaultConfigurationName = Release; }; - 15212B07F35C5F6654E6F0BDF16B637A /* Build configuration list for PBXAggregateTarget "GoogleAppMeasurement" */ = { + 1427F6B677A255CD9DA2730AF32BCC25 /* Build configuration list for PBXNativeTarget "React-RCTAnimation" */ = { isa = XCConfigurationList; buildConfigurations = ( - 93377661CC8494FAB502425E432145E3 /* Debug */, - 26EC306500273E3061D7F84644C1C135 /* Release */, + 3C9ECF08D2D7D129C895070F945B2B10 /* Debug */, + 80822DB1B852F1056FB668785CD8C544 /* Release */, ); defaultConfigurationIsVisible = 0; defaultConfigurationName = Release; @@ -41995,15 +41791,6 @@ defaultConfigurationIsVisible = 0; defaultConfigurationName = Release; }; - 1A2C6335995D1BCC2F3C6958499EF751 /* Build configuration list for PBXNativeTarget "YogaKit" */ = { - isa = XCConfigurationList; - buildConfigurations = ( - 36CA3F6384B27F727E746AA6F3DD6AD4 /* Debug */, - 80CD4D97BC50977AAD69D493D8B41FEA /* Release */, - ); - defaultConfigurationIsVisible = 0; - defaultConfigurationName = Release; - }; 1A53195F2A49E064D1E9C88E5C7C3806 /* Build configuration list for PBXNativeTarget "RNVectorIcons" */ = { isa = XCConfigurationList; buildConfigurations = ( @@ -42022,29 +41809,20 @@ defaultConfigurationIsVisible = 0; defaultConfigurationName = Release; }; - 1BA8C2D2B578BBF04BD6E5D7EAB9F481 /* Build configuration list for PBXNativeTarget "UMCore" */ = { + 1C732F9204DDCFCC3F4286E2EBDDCE2B /* Build configuration list for PBXAggregateTarget "hermes-engine" */ = { isa = XCConfigurationList; buildConfigurations = ( - 96BFC21273E9354276B3DF8DF3CD7C17 /* Debug */, - 006FA452760FC313E71F8E3C3A60D4EE /* Release */, + 6F095E0BD96C9FB85F3E6D95B0FB4D4C /* Debug */, + 374FC692BE80B502811483582A061B02 /* Release */, ); defaultConfigurationIsVisible = 0; defaultConfigurationName = Release; }; - 1F6E12F51F17AC245732BF2B07C5151A /* Build configuration list for PBXNativeTarget "Flipper-RSocket" */ = { + 1F6DB080166B752EA5D06993BE0828B0 /* Build configuration list for PBXNativeTarget "React-cxxreact" */ = { isa = XCConfigurationList; buildConfigurations = ( - 5E123D63F0A8C1049F25CF752156D71E /* Debug */, - 4BAEBE893907B42B49B98DA02130D9EC /* Release */, - ); - defaultConfigurationIsVisible = 0; - defaultConfigurationName = Release; - }; - 2005FB6EE6F84EB804033F7CB86444C6 /* Build configuration list for PBXNativeTarget "GoogleUtilities" */ = { - isa = XCConfigurationList; - buildConfigurations = ( - 16C617D6AB3D7FB21E9B83A81E3E80BD /* Debug */, - C62C9255558B248F93803F9EDA51C98D /* Release */, + D88CCAB6C18B29F59AE685B8220E600F /* Debug */, + 118C6003CCD0F8B80919C547E65A55BC /* Release */, ); defaultConfigurationIsVisible = 0; defaultConfigurationName = Release; @@ -42076,15 +41854,6 @@ defaultConfigurationIsVisible = 0; defaultConfigurationName = Release; }; - 281F52B0B0084101E39C44BCCBF86F4C /* Build configuration list for PBXNativeTarget "React-Core" */ = { - isa = XCConfigurationList; - buildConfigurations = ( - FBD31888CB837C5D550F1BD0DE015396 /* Debug */, - 2149583740EF0935BD6424BC48DCF992 /* Release */, - ); - defaultConfigurationIsVisible = 0; - defaultConfigurationName = Release; - }; 293FEFC746861E38DDC7D3B32FA8653C /* Build configuration list for PBXNativeTarget "rn-fetch-blob" */ = { isa = XCConfigurationList; buildConfigurations = ( @@ -42112,11 +41881,20 @@ defaultConfigurationIsVisible = 0; defaultConfigurationName = Release; }; - 2F4C94552F3812029C75BFE5A2952573 /* Build configuration list for PBXNativeTarget "RNImageCropPicker-QBImagePicker" */ = { + 2C3B9785949C9A805B95E2D572BD13CE /* Build configuration list for PBXNativeTarget "Flipper-Glog" */ = { + isa = XCConfigurationList; + buildConfigurations = ( + 7B07B2F3C154D325FB8033C76B1629BB /* Debug */, + B97B12D92595A7A1EC862CF39D6F0E6E /* Release */, + ); + defaultConfigurationIsVisible = 0; + defaultConfigurationName = Release; + }; + 2F0C8C5F815FBC0AB4DA31232971193D /* Build configuration list for PBXNativeTarget "TOCropViewController-TOCropViewControllerBundle" */ = { isa = XCConfigurationList; buildConfigurations = ( - 7389F32D44E1DC420DC05471B3EC77C3 /* Debug */, - F977BD0B99BFED939F9A9BC461C8C112 /* Release */, + 743AA5183E665CF813734C12A89B1D58 /* Debug */, + 82A6567078A1F7D99710868D7E62D58C /* Release */, ); defaultConfigurationIsVisible = 0; defaultConfigurationName = Release; @@ -42139,56 +41917,56 @@ defaultConfigurationIsVisible = 0; defaultConfigurationName = Release; }; - 3770992238CC70E195D95BD65A4CBB0F /* Build configuration list for PBXNativeTarget "libwebp" */ = { + 340107BC28DCC1810BF3CBE2863BE440 /* Build configuration list for PBXNativeTarget "RCTTypeSafety" */ = { isa = XCConfigurationList; buildConfigurations = ( - 13DFCE7755ED25EAF6B9361684EF9492 /* Debug */, - 63C09986E14FD76FD0B7D874D589A0AC /* Release */, + 488B36AF7B7D2B0F02B526BEA6C9AB4F /* Debug */, + 9BAACC79BC1AC574070AE5C8207C8AA8 /* Release */, ); defaultConfigurationIsVisible = 0; defaultConfigurationName = Release; }; - 3940DE503717146C344D49DFBBC2E324 /* Build configuration list for PBXAggregateTarget "React-runtimeexecutor" */ = { + 346B49483688D09E03256AD8F720026D /* Build configuration list for PBXNativeTarget "React-Core-AccessibilityResources" */ = { isa = XCConfigurationList; buildConfigurations = ( - 2C00276F50FFFE033C38D47B9D9CA740 /* Debug */, - D58A4A5E9C48E481E1D2E0764B9A3106 /* Release */, + 2F7782197CE5F0E6D1B95DD629023820 /* Debug */, + 5EF6CC037ACDC1E1E35991376F9DD144 /* Release */, ); defaultConfigurationIsVisible = 0; defaultConfigurationName = Release; }; - 3B5A7215916F6274B3AB831DC7F0EC00 /* Build configuration list for PBXNativeTarget "react-native-blur" */ = { + 390AADB33CCDD8B8BB27C3827914CEA1 /* Build configuration list for PBXNativeTarget "React-RCTBlob" */ = { isa = XCConfigurationList; buildConfigurations = ( - 496CE5CB645BE6032E5C5D35E7868A96 /* Debug */, - B5CE058F8DFB838E466A1568B4DC340A /* Release */, + 1F7CC6DA1F34F81B5AB6C907F95E8A92 /* Debug */, + 1C68225BEA1086F4DF4091C518E5210B /* Release */, ); defaultConfigurationIsVisible = 0; defaultConfigurationName = Release; }; - 3BDDD5C61FF3CF2251F6BA1F0F661D13 /* Build configuration list for PBXNativeTarget "RNCAsyncStorage" */ = { + 3B5A7215916F6274B3AB831DC7F0EC00 /* Build configuration list for PBXNativeTarget "react-native-blur" */ = { isa = XCConfigurationList; buildConfigurations = ( - 88B180B6FDB37C9A632CA95AA80DF593 /* Debug */, - ADF94A0015284D9A700FEEF33A5F0E49 /* Release */, + 496CE5CB645BE6032E5C5D35E7868A96 /* Debug */, + B5CE058F8DFB838E466A1568B4DC340A /* Release */, ); defaultConfigurationIsVisible = 0; defaultConfigurationName = Release; }; - 3E9771AB8600DE7494AE5916BEAC47CE /* Build configuration list for PBXNativeTarget "React-jsinspector" */ = { + 3BDDD5C61FF3CF2251F6BA1F0F661D13 /* Build configuration list for PBXNativeTarget "RNCAsyncStorage" */ = { isa = XCConfigurationList; buildConfigurations = ( - C227E1E96EB83506121BE958AAFDBE32 /* Debug */, - 175A21B880B3914B871F41C5ADD7970A /* Release */, + 88B180B6FDB37C9A632CA95AA80DF593 /* Debug */, + ADF94A0015284D9A700FEEF33A5F0E49 /* Release */, ); defaultConfigurationIsVisible = 0; defaultConfigurationName = Release; }; - 4471CF8AD961063B9E3E74ABBFA30851 /* Build configuration list for PBXNativeTarget "Pods-ShareRocketChatRN" */ = { + 404939B500D1E4AA52EE17F0B460A8A3 /* Build configuration list for PBXNativeTarget "Yoga" */ = { isa = XCConfigurationList; buildConfigurations = ( - 1AC857E63B0E250410829AE6FE65025A /* Debug */, - 0A5303CCE9C92B75A6D222F8EAE95096 /* Release */, + 10CAB50ABA22EEAB884A14046EDC0321 /* Debug */, + 7D83B3F256FB260C2B2F245B3AD75A63 /* Release */, ); defaultConfigurationIsVisible = 0; defaultConfigurationName = Release; @@ -42211,29 +41989,65 @@ defaultConfigurationIsVisible = 0; defaultConfigurationName = Release; }; - 58CDAABA5D527B39D63C6E72BEB30A65 /* Build configuration list for PBXNativeTarget "React-RCTText" */ = { + 4B8003F26C5940A7BB5438E0BA46AFA5 /* Build configuration list for PBXNativeTarget "React-RCTSettings" */ = { + isa = XCConfigurationList; + buildConfigurations = ( + 93F961499557D74AD5BF35B71A43656C /* Debug */, + E407564D654385FA6B69C4650C39B295 /* Release */, + ); + defaultConfigurationIsVisible = 0; + defaultConfigurationName = Release; + }; + 4D46BBC164B24132EBA0FE976954C53D /* Build configuration list for PBXNativeTarget "React-RCTImage" */ = { + isa = XCConfigurationList; + buildConfigurations = ( + C9007713181D2F3F415AB22EAE383F84 /* Debug */, + 2FE0829C8F93A03798ECF214D3F5D77C /* Release */, + ); + defaultConfigurationIsVisible = 0; + defaultConfigurationName = Release; + }; + 4DEA3AEC26AD955CEF343249032B402F /* Build configuration list for PBXNativeTarget "DoubleConversion" */ = { + isa = XCConfigurationList; + buildConfigurations = ( + 8EA3BBFFF07DD22039AC89222387DD4A /* Debug */, + C1BC59D93A41BC05F9B63E3F2300A827 /* Release */, + ); + defaultConfigurationIsVisible = 0; + defaultConfigurationName = Release; + }; + 4F2F57F6C2F475EB38D5DD5DEC9B96C7 /* Build configuration list for PBXNativeTarget "Pods-defaults-Rocket.Chat" */ = { isa = XCConfigurationList; buildConfigurations = ( - 3D7173F3CC4AE583BDF8CB8F7F11339C /* Debug */, - A45B4046181753CDE32D7653F8266908 /* Release */, + 4193DF6DE053075CEA0E2D949C6F9143 /* Debug */, + AD6EEF5E1DB227D2F19537A821CEAD67 /* Release */, ); defaultConfigurationIsVisible = 0; defaultConfigurationName = Release; }; - 59895EA922DCBE154BBAE4A66CE3FC6F /* Build configuration list for PBXNativeTarget "React-RCTNetwork" */ = { + 51DF585FF710F9A9A2C30FC92C6EA06D /* Build configuration list for PBXNativeTarget "Flipper-DoubleConversion" */ = { isa = XCConfigurationList; buildConfigurations = ( - 51CE9219F7798137B4490C849B67BBD3 /* Debug */, - 8626ADC413624368969F69B8D46737B5 /* Release */, + 8813719B9103C96962D4BDC79F380ED9 /* Debug */, + 30F959E0D5A9DB6CF72D1B08B171D23F /* Release */, ); defaultConfigurationIsVisible = 0; defaultConfigurationName = Release; }; - 5B2A57B655D0C4D73337CAB3CAD9D412 /* Build configuration list for PBXNativeTarget "RNFBCrashlytics" */ = { + 5342FA69479BCC562FAB12FF0EC03886 /* Build configuration list for PBXAggregateTarget "React-runtimeexecutor" */ = { isa = XCConfigurationList; buildConfigurations = ( - 3C75C521C18106455172257F4A2396B8 /* Debug */, - B36AB15C5E16F3D7C814B930E2DFB827 /* Release */, + 9CCCF11306D6B6C2ECE056A5CFC6C1E0 /* Debug */, + 8BF57CEAC9609A28F8AB62DE067F709E /* Release */, + ); + defaultConfigurationIsVisible = 0; + defaultConfigurationName = Release; + }; + 57D4A9C38DC1FE70B84D4E4C8C6EE87F /* Build configuration list for PBXNativeTarget "React-jsiexecutor" */ = { + isa = XCConfigurationList; + buildConfigurations = ( + 80A23E262526C689AE79769DC9E4775C /* Debug */, + CA4572FBE06AA4002A14B2B129A8C066 /* Release */, ); defaultConfigurationIsVisible = 0; defaultConfigurationName = Release; @@ -42247,6 +42061,24 @@ defaultConfigurationIsVisible = 0; defaultConfigurationName = Release; }; + 5BCF9C794F134FA18EBB58A7B9217B81 /* Build configuration list for PBXAggregateTarget "FirebaseAnalytics" */ = { + isa = XCConfigurationList; + buildConfigurations = ( + 51248C4B2F86593D232416FDEC545F72 /* Debug */, + 99AC8DD0033665D7ED5EAA23B6B1A7BE /* Release */, + ); + defaultConfigurationIsVisible = 0; + defaultConfigurationName = Release; + }; + 5D27AE09F1475A040C253B0D0DA121C0 /* Build configuration list for PBXNativeTarget "SDWebImageWebPCoder" */ = { + isa = XCConfigurationList; + buildConfigurations = ( + C9C7FC0B77563366AC8A70D24EAD824D /* Debug */, + 352C03B009D45BCAC43FE9E30EA1537A /* Release */, + ); + defaultConfigurationIsVisible = 0; + defaultConfigurationName = Release; + }; 5D29B9A477732684F0FCCF9A9F1B62BD /* Build configuration list for PBXNativeTarget "ReactNativeART" */ = { isa = XCConfigurationList; buildConfigurations = ( @@ -42256,11 +42088,11 @@ defaultConfigurationIsVisible = 0; defaultConfigurationName = Release; }; - 5DBE2DCB6796B02028ED4C52BAFB7AAD /* Build configuration list for PBXNativeTarget "Yoga" */ = { + 5D4489577280AF45E2511971E63FD184 /* Build configuration list for PBXNativeTarget "RNFBCrashlytics" */ = { isa = XCConfigurationList; buildConfigurations = ( - 59B3B11861976E122ACB260DD6540727 /* Debug */, - 13AF8ADD9852CBD310EEB9B681023455 /* Release */, + 09D0B2F1EE996412189232147E8B4792 /* Debug */, + B38855943AD4AD1D197E7CDC1E0F51B4 /* Release */, ); defaultConfigurationIsVisible = 0; defaultConfigurationName = Release; @@ -42292,6 +42124,15 @@ defaultConfigurationIsVisible = 0; defaultConfigurationName = Release; }; + 5F65FA6882BD47AEE629468595AD0951 /* Build configuration list for PBXNativeTarget "React-perflogger" */ = { + isa = XCConfigurationList; + buildConfigurations = ( + 6F42FB0D2EB57D5A619C910401520C9F /* Debug */, + FAC8BB357635726CBF1505C567F8CD52 /* Release */, + ); + defaultConfigurationIsVisible = 0; + defaultConfigurationName = Release; + }; 605CC29D7156D752543602490EE76CE4 /* Build configuration list for PBXNativeTarget "react-native-slider" */ = { isa = XCConfigurationList; buildConfigurations = ( @@ -42310,29 +42151,29 @@ defaultConfigurationIsVisible = 0; defaultConfigurationName = Release; }; - 64DE8BBF2E149B50B066EB1C1046523C /* Build configuration list for PBXNativeTarget "MMKV" */ = { + 640FACD0903DE6E63DC32B7DE04B18D8 /* Build configuration list for PBXNativeTarget "React-RCTNetwork" */ = { isa = XCConfigurationList; buildConfigurations = ( - 08E2461374E02C28A465B15A10DD303E /* Debug */, - CD6B0B81BD17C385BC79BD68BF90BCDB /* Release */, + 195C786859FDF7769E1BDF55D9E2A2FB /* Debug */, + EA6BED013CE89400012C568F0EAD7AC6 /* Release */, ); defaultConfigurationIsVisible = 0; defaultConfigurationName = Release; }; - 699EEC181B5ABAC70976EAC0EE5824A6 /* Build configuration list for PBXAggregateTarget "hermes-engine" */ = { + 64DE8BBF2E149B50B066EB1C1046523C /* Build configuration list for PBXNativeTarget "MMKV" */ = { isa = XCConfigurationList; buildConfigurations = ( - 7B158DC20588C3FD47C4DD81B5F3AFFB /* Debug */, - CA191A775939DB05BF896B3BC5FBAA43 /* Release */, + 08E2461374E02C28A465B15A10DD303E /* Debug */, + CD6B0B81BD17C385BC79BD68BF90BCDB /* Release */, ); defaultConfigurationIsVisible = 0; defaultConfigurationName = Release; }; - 6A869BE11760AA6BD7778AF7BB9CF550 /* Build configuration list for PBXAggregateTarget "React-callinvoker" */ = { + 698A93962796CA50566929F22F6B31C7 /* Build configuration list for PBXAggregateTarget "UMConstantsInterface" */ = { isa = XCConfigurationList; buildConfigurations = ( - 683EDEDFC5B24B3B5830B0675D0B8396 /* Debug */, - 403D23E6C3B5A3AAA84846ADCFA5215C /* Release */, + CB8E4B98A4541FC1A858501C39D2A92D /* Debug */, + 23307E5F2946FE85414D73DE87208107 /* Release */, ); defaultConfigurationIsVisible = 0; defaultConfigurationName = Release; @@ -42346,29 +42187,11 @@ defaultConfigurationIsVisible = 0; defaultConfigurationName = Release; }; - 6BC19C369914219214088AA704D90DDB /* Build configuration list for PBXNativeTarget "React-jsiexecutor" */ = { - isa = XCConfigurationList; - buildConfigurations = ( - 7AC7CA0A67AEAB84A111686F06F4EAAA /* Debug */, - 22CE9B61A984752DBD351C8013B1564E /* Release */, - ); - defaultConfigurationIsVisible = 0; - defaultConfigurationName = Release; - }; - 6D884301DED0299AE60DDAF0DD950B7E /* Build configuration list for PBXAggregateTarget "FirebaseAnalytics" */ = { - isa = XCConfigurationList; - buildConfigurations = ( - A9E031BC3F0341CD11C586ED9CADBBD0 /* Debug */, - 62DE9103869B552445834F7265CA147C /* Release */, - ); - defaultConfigurationIsVisible = 0; - defaultConfigurationName = Release; - }; - 71A269A6A30314D97285226FED0F1E7E /* Build configuration list for PBXNativeTarget "DoubleConversion" */ = { + 72A9E12FF8CFA95481EA86A55E249BB8 /* Build configuration list for PBXNativeTarget "FirebaseCore" */ = { isa = XCConfigurationList; buildConfigurations = ( - BA3D23A9A1F296A833FFD976EB58D6E6 /* Debug */, - 8DBA8377BB5292064B97CFEB108E4F44 /* Release */, + BF41AD0F2BAD1590399CDE95ADC97F58 /* Debug */, + 74B10AACD4265BEF2FAA6FE3497DEE81 /* Release */, ); defaultConfigurationIsVisible = 0; defaultConfigurationName = Release; @@ -42382,11 +42205,11 @@ defaultConfigurationIsVisible = 0; defaultConfigurationName = Release; }; - 738FA1577E1FBFE5249A004C44942440 /* Build configuration list for PBXNativeTarget "SDWebImageWebPCoder" */ = { + 76E0929672D901169C3CF623A1D65BE7 /* Build configuration list for PBXAggregateTarget "RCTRequired" */ = { isa = XCConfigurationList; buildConfigurations = ( - 9A8C6476434986F0FF606E2E91804CCD /* Debug */, - 63505259D5787D1AA34EDD533C0C5268 /* Release */, + 3A79CBE5125A6F0C068376608ED9D880 /* Debug */, + F5625087FAC487F93346B23B1796AAAD /* Release */, ); defaultConfigurationIsVisible = 0; defaultConfigurationName = Release; @@ -42418,15 +42241,6 @@ defaultConfigurationIsVisible = 0; defaultConfigurationName = Release; }; - 7B543AE55440CE5A43FCC3D6016EC9E5 /* Build configuration list for PBXNativeTarget "FirebaseCore" */ = { - isa = XCConfigurationList; - buildConfigurations = ( - EA8EE5E67E43E1FC52E2A7E05BCB3CA8 /* Debug */, - 325BD6FEEEAA4ACD3040DCDC0C3439F4 /* Release */, - ); - defaultConfigurationIsVisible = 0; - defaultConfigurationName = Release; - }; 7B8B9FF06DE46BC17D81EF6C4BD6ADC2 /* Build configuration list for PBXNativeTarget "FlipperKit" */ = { isa = XCConfigurationList; buildConfigurations = ( @@ -42436,11 +42250,11 @@ defaultConfigurationIsVisible = 0; defaultConfigurationName = Release; }; - 7C6EA9F0EC66563055CBD979CA173FDD /* Build configuration list for PBXNativeTarget "Pods-defaults-Rocket.Chat" */ = { + 7DC0AC97621E3FA152EE5DCE9418E3C7 /* Build configuration list for PBXNativeTarget "React-Core" */ = { isa = XCConfigurationList; buildConfigurations = ( - EE7273F74A5DAB28BBF9730CA491CCCF /* Debug */, - D45E3EED924AB5138532D95273DF9364 /* Release */, + 7393985EE08314D862636421353FD7F7 /* Debug */, + CA4AF37DDD62B6586CBC975D33CBAE93 /* Release */, ); defaultConfigurationIsVisible = 0; defaultConfigurationName = Release; @@ -42454,74 +42268,83 @@ defaultConfigurationIsVisible = 0; defaultConfigurationName = Release; }; - 7F611E2A3BEBA446BFEEE2DC10AE6C59 /* Build configuration list for PBXNativeTarget "React-RCTVibration" */ = { + 8034F10E9027FC1893436A0023C304ED /* Build configuration list for PBXNativeTarget "React-RCTVibration" */ = { isa = XCConfigurationList; buildConfigurations = ( - 45E3D1FA7972F019B4F22F452AF2333C /* Debug */, - 6456C7C94840F8F15C27F2F7FA4A7637 /* Release */, + 51978940914B69932F8BE09646F0B364 /* Debug */, + CAA06EB96F7D3BEBF5B1896F9467A282 /* Release */, ); defaultConfigurationIsVisible = 0; defaultConfigurationName = Release; }; - 81B64538349FC5A3C516F0D5F664C2AF /* Build configuration list for PBXAggregateTarget "UMConstantsInterface" */ = { + 81CEF1F6B54596B5F509060E1220EB10 /* Build configuration list for PBXNativeTarget "EXAV" */ = { isa = XCConfigurationList; buildConfigurations = ( - 1210FFEF8F686D43D45CF58066955852 /* Debug */, - 375A948405052A6DF1471DD213BAA08A /* Release */, + 35BB07AFAF2489D6E6B1371C8B6FC80C /* Debug */, + A3954D608A3250B31D27ACB3F81D6EA3 /* Release */, ); defaultConfigurationIsVisible = 0; defaultConfigurationName = Release; }; - 81CEF1F6B54596B5F509060E1220EB10 /* Build configuration list for PBXNativeTarget "EXAV" */ = { + 82E018FCF2B7BF3013B0E1702EECBC27 /* Build configuration list for PBXNativeTarget "RNRootView" */ = { isa = XCConfigurationList; buildConfigurations = ( - 35BB07AFAF2489D6E6B1371C8B6FC80C /* Debug */, - A3954D608A3250B31D27ACB3F81D6EA3 /* Release */, + 9D421D4D6B43C832B960A98DCDC512EB /* Debug */, + ABB27A12F638A2BAA41A61BD20FC686B /* Release */, ); defaultConfigurationIsVisible = 0; defaultConfigurationName = Release; }; - 822465291AE619E4378783952B69FA08 /* Build configuration list for PBXNativeTarget "FirebaseCoreDiagnostics" */ = { + 83991F6E2FB0FF81C7C69DDFB5F42508 /* Build configuration list for PBXNativeTarget "Pods-NotificationService" */ = { isa = XCConfigurationList; buildConfigurations = ( - C6C5876EF1B7E3F485B1F1880003ADF5 /* Debug */, - 32B401285E3EE2E6ADAA279C85A39679 /* Release */, + D65AE35C376110D89C04B10E230223A9 /* Debug */, + B14CD0F96345EC7A7DD6113E24BC1C50 /* Release */, ); defaultConfigurationIsVisible = 0; defaultConfigurationName = Release; }; - 82E018FCF2B7BF3013B0E1702EECBC27 /* Build configuration list for PBXNativeTarget "RNRootView" */ = { + 83D7CD4D04C3F815069F23BCC23EFAEE /* Build configuration list for PBXNativeTarget "React-RCTText" */ = { isa = XCConfigurationList; buildConfigurations = ( - 9D421D4D6B43C832B960A98DCDC512EB /* Debug */, - ABB27A12F638A2BAA41A61BD20FC686B /* Release */, + 8F82C7592D501BE95050AC1F1083DC02 /* Debug */, + 290649C45570AB3DFFB321EA2019FCA5 /* Release */, + ); + defaultConfigurationIsVisible = 0; + defaultConfigurationName = Release; + }; + 859831A47FD296170A6BB43594F9DDB6 /* Build configuration list for PBXNativeTarget "FirebaseInstallations" */ = { + isa = XCConfigurationList; + buildConfigurations = ( + 47EB90E046D01069CC0567EE78271B0F /* Debug */, + 582BDE4032E8CE0464207FC218DC39AF /* Release */, ); defaultConfigurationIsVisible = 0; defaultConfigurationName = Release; }; - 888653926A5CE70CA33F8C57501BF560 /* Build configuration list for PBXNativeTarget "React-RCTAnimation" */ = { + 8BD1D9A0B423BF5547B5718C9E95BD73 /* Build configuration list for PBXNativeTarget "TOCropViewController" */ = { isa = XCConfigurationList; buildConfigurations = ( - A4FA84CB0B49DCBE32F45CD28F313F2C /* Debug */, - BE4680A1E2E96D4F37970B6F11C0EF70 /* Release */, + BB0E5C271982F23A203FFC3ED17452B2 /* Debug */, + 9B0A474AE5942E5B75BF81012D765EE0 /* Release */, ); defaultConfigurationIsVisible = 0; defaultConfigurationName = Release; }; - 895CF15E24078E27F2D10A5015747042 /* Build configuration list for PBXNativeTarget "Flipper-DoubleConversion" */ = { + 90641D9916E24F2A315344659B5329E1 /* Build configuration list for PBXAggregateTarget "OpenSSL-Universal" */ = { isa = XCConfigurationList; buildConfigurations = ( - E098105273203D0DACE3549D2C1102FE /* Debug */, - 2B9B962C71F01503AEBDAEF94B6E1CCA /* Release */, + 6BAC9A87290775DFB35C52BF5240280C /* Debug */, + 4A0B31ED115E59BCB173ECFA4032A524 /* Release */, ); defaultConfigurationIsVisible = 0; defaultConfigurationName = Release; }; - 8A3817F2D05E60F8690A927B2FECFE32 /* Build configuration list for PBXNativeTarget "React-RCTImage" */ = { + 91DDCC1A946E6F68F6DBDF23A529E24E /* Build configuration list for PBXAggregateTarget "React-RCTActionSheet" */ = { isa = XCConfigurationList; buildConfigurations = ( - 4E226DA299DFF04F575B2D296E871211 /* Debug */, - 723A078D181FB6BBF2D9B6165F2BF675 /* Release */, + 486CE38634F44FFDF2879D0FB2722A03 /* Debug */, + 757BA03BFDDB4566382EE5275DC4656F /* Release */, ); defaultConfigurationIsVisible = 0; defaultConfigurationName = Release; @@ -42535,20 +42358,20 @@ defaultConfigurationIsVisible = 0; defaultConfigurationName = Release; }; - 96381B3900394EFE2BDAAAEA7033B397 /* Build configuration list for PBXNativeTarget "React-cxxreact" */ = { + 944C797A3A23FB054C13E431228898BC /* Build configuration list for PBXNativeTarget "React-RCTLinking" */ = { isa = XCConfigurationList; buildConfigurations = ( - 969FBF0DF939F0D1B061AFF26BA7FDBA /* Debug */, - B5076D6C028AA0DA6E6960A157D4674E /* Release */, + BF71468514767154EB98F25655B089A4 /* Debug */, + 9F83EA8537728CCDB28E382A7CBD65B0 /* Release */, ); defaultConfigurationIsVisible = 0; defaultConfigurationName = Release; }; - 978D94305E472E7DC1EA220E5F9EC3AD /* Build configuration list for PBXNativeTarget "React-RCTBlob" */ = { + 9B30B16A42B7E1C097A30A34E23110B5 /* Build configuration list for PBXAggregateTarget "React" */ = { isa = XCConfigurationList; buildConfigurations = ( - B91A208A52FE94302116072EF37FE04E /* Debug */, - FCDE3A2AB0B7242F2D667CB1C686DE2F /* Release */, + B3BC9F19B3C65CE3CFD4D9D44E606C65 /* Debug */, + F2851BB4B25040C1975014181B356986 /* Release */, ); defaultConfigurationIsVisible = 0; defaultConfigurationName = Release; @@ -42562,11 +42385,11 @@ defaultConfigurationIsVisible = 0; defaultConfigurationName = Release; }; - 9C2CA449B96F068665DD62E672E64BED /* Build configuration list for PBXNativeTarget "RCTTypeSafety" */ = { + 9D0D19C844E45C7660DB87397C4D9F9C /* Build configuration list for PBXNativeTarget "PromisesObjC" */ = { isa = XCConfigurationList; buildConfigurations = ( - 447C4B03A82A53ECAB60F0C64D38D1EF /* Debug */, - 6C1F05846AB751F13D5570C52CD141D0 /* Release */, + EB04372C2048114591DD70102453A83B /* Debug */, + 8A9F81DF29FBBC590FBD62EB3FFABB9C /* Release */, ); defaultConfigurationIsVisible = 0; defaultConfigurationName = Release; @@ -42589,20 +42412,20 @@ defaultConfigurationIsVisible = 0; defaultConfigurationName = Release; }; - A0BBF36949B72ED82119D118CF74BFFE /* Build configuration list for PBXAggregateTarget "UMFileSystemInterface" */ = { + A0A9EF7F22ABE3F13038D77CCCE9C8FA /* Build configuration list for PBXNativeTarget "ReactCommon" */ = { isa = XCConfigurationList; buildConfigurations = ( - 5525D3CCFD88208DDB4EE909DB568F46 /* Debug */, - 917FA8A337F7AE5AA7F2C7E72B5EC3B7 /* Release */, + 91CFF37DC72E4E52FC903249E78EC3E6 /* Debug */, + E45FCD2F8EA59CD1609A43CCF1ADB552 /* Release */, ); defaultConfigurationIsVisible = 0; defaultConfigurationName = Release; }; - A0FE4F9D80588E3F4E78B04C6AC11A6C /* Build configuration list for PBXNativeTarget "RNFBApp" */ = { + A0F8E22EB29C3034B5080E031987040E /* Build configuration list for PBXNativeTarget "nanopb" */ = { isa = XCConfigurationList; buildConfigurations = ( - 375F9858DB0F30528DD94F5CBF9F7497 /* Debug */, - B36F0DF38C1AE8BCEC7B97F346BB639B /* Release */, + DADA741D133EBE2EC5B585AE8F03350D /* Debug */, + F858BB053ADF3580F7C418B66EAA1D30 /* Release */, ); defaultConfigurationIsVisible = 0; defaultConfigurationName = Release; @@ -42616,74 +42439,74 @@ defaultConfigurationIsVisible = 0; defaultConfigurationName = Release; }; - A1E19287E281B95FD3C66F2D35581831 /* Build configuration list for PBXAggregateTarget "React-RCTActionSheet" */ = { + A2C43825E2188DA7921550E300BE749F /* Build configuration list for PBXNativeTarget "RNBootSplash" */ = { isa = XCConfigurationList; buildConfigurations = ( - 5BC025368D39779C584C5D371E177434 /* Debug */, - D56B4530EED9A2C237B9E71330E63B44 /* Release */, + 2496DFBAA294BB49D90637669DD67732 /* Debug */, + 4B80C0B6B88DC847BD605C9572BAB5DE /* Release */, ); defaultConfigurationIsVisible = 0; defaultConfigurationName = Release; }; - A2C43825E2188DA7921550E300BE749F /* Build configuration list for PBXNativeTarget "RNBootSplash" */ = { + A32C9B46A5C80174852E883C4E0D9727 /* Build configuration list for PBXNativeTarget "BugsnagReactNative" */ = { isa = XCConfigurationList; buildConfigurations = ( - 2496DFBAA294BB49D90637669DD67732 /* Debug */, - 4B80C0B6B88DC847BD605C9572BAB5DE /* Release */, + 070E18AD68C8ABDB1AA39FE9D3270DB9 /* Debug */, + 8C029D4C10A8BFBC3C31D56237F7A017 /* Release */, ); defaultConfigurationIsVisible = 0; defaultConfigurationName = Release; }; - A2C87C07AF568B319F6753B5DE9C2B83 /* Build configuration list for PBXNativeTarget "glog" */ = { + A39F08165CE91502893CD8128E9B7B5D /* Build configuration list for PBXNativeTarget "Flipper" */ = { isa = XCConfigurationList; buildConfigurations = ( - 5553503DC436EDF232694A283C1C19E4 /* Debug */, - AAA620D360F15E19D529F307CCEF65AF /* Release */, + F183E3C54449FC9E3FF35E64A93162D6 /* Debug */, + F7E7E7407EB003DA266CD8BB5ED8021E /* Release */, ); defaultConfigurationIsVisible = 0; defaultConfigurationName = Release; }; - A32C9B46A5C80174852E883C4E0D9727 /* Build configuration list for PBXNativeTarget "BugsnagReactNative" */ = { + A5D7CAE522201CE0337CA76AE56F4AD9 /* Build configuration list for PBXAggregateTarget "UMImageLoaderInterface" */ = { isa = XCConfigurationList; buildConfigurations = ( - 070E18AD68C8ABDB1AA39FE9D3270DB9 /* Debug */, - 8C029D4C10A8BFBC3C31D56237F7A017 /* Release */, + F1206CBBC18CF92AA237CEFE4577FE0F /* Debug */, + 2396D513693F8A11CED77A98758B2998 /* Release */, ); defaultConfigurationIsVisible = 0; defaultConfigurationName = Release; }; - A39F08165CE91502893CD8128E9B7B5D /* Build configuration list for PBXNativeTarget "Flipper" */ = { + A71A8C9C1D6414BB76A004FC8E568C3E /* Build configuration list for PBXAggregateTarget "UMFileSystemInterface" */ = { isa = XCConfigurationList; buildConfigurations = ( - F183E3C54449FC9E3FF35E64A93162D6 /* Debug */, - F7E7E7407EB003DA266CD8BB5ED8021E /* Release */, + D079BBE43112387D9CE0F66813A21B69 /* Debug */, + E608A0195AF4F5372F469E89CAA79A1D /* Release */, ); defaultConfigurationIsVisible = 0; defaultConfigurationName = Release; }; - A6BBC7A61E7747180BD7A53B1047BBD2 /* Build configuration list for PBXAggregateTarget "React" */ = { + A847756313CBC172D380281773338418 /* Build configuration list for PBXNativeTarget "FirebaseCoreDiagnostics" */ = { isa = XCConfigurationList; buildConfigurations = ( - CEFDFEDB6B978C3AB39B88A6C84C5090 /* Debug */, - 2E668FD82924ADD261A80560DC113419 /* Release */, + 3D7B74C5BCAFBE46730BDF71B45D667E /* Debug */, + AFAB7110DF03E36AA937C1A027E4F803 /* Release */, ); defaultConfigurationIsVisible = 0; defaultConfigurationName = Release; }; - A8727C6D45B3C78272F861736A333F16 /* Build configuration list for PBXNativeTarget "nanopb" */ = { + A915A69167C37698452EC5468954CB90 /* Build configuration list for PBXNativeTarget "GoogleUtilities" */ = { isa = XCConfigurationList; buildConfigurations = ( - 6732D46B735905B3485384DFDB30FC70 /* Debug */, - 5FFD4C9ED9B3D24971238570771D92E8 /* Release */, + A68448A40C64066C67C35AA2E0609C25 /* Debug */, + 802A429AEB55340A4EC262A961892D6C /* Release */, ); defaultConfigurationIsVisible = 0; defaultConfigurationName = Release; }; - A9418F3356E9D639DE3B582A62A0F26E /* Build configuration list for PBXNativeTarget "RCT-Folly" */ = { + A9CE796CCDEF81FEE498CEE1511B8BE9 /* Build configuration list for PBXNativeTarget "glog" */ = { isa = XCConfigurationList; buildConfigurations = ( - 8979F518F31EE6B9AA3C5B6BD3A7C7DB /* Debug */, - E8629500EC18665C29B3B6EFA4500B01 /* Release */, + 34667908A8FB9DCF883DEC58270032AB /* Debug */, + B6CE15DF28389FD80FDBF7A573B39D15 /* Release */, ); defaultConfigurationIsVisible = 0; defaultConfigurationName = Release; @@ -42706,74 +42529,74 @@ defaultConfigurationIsVisible = 0; defaultConfigurationName = Release; }; - B061CB847A6B17B4A6853188C57B9A28 /* Build configuration list for PBXNativeTarget "PromisesObjC" */ = { + AE817CA9833BB6F9D62C418745425C3C /* Build configuration list for PBXNativeTarget "UMCore" */ = { isa = XCConfigurationList; buildConfigurations = ( - 314A5528E4BC35B5101488754B05EEFE /* Debug */, - F0B79C694C6D0B6FE54C426A49E4E986 /* Release */, + D9F2392DE5AE220E046DC13F4BEDCE36 /* Debug */, + 8E0FD6F4C53F1D48C5DA37D6282DBE41 /* Release */, ); defaultConfigurationIsVisible = 0; defaultConfigurationName = Release; }; - B1F0E6BA258A9287C5C2BFF8CD214FDF /* Build configuration list for PBXNativeTarget "UMReactNativeAdapter" */ = { + AF664AAB6835F1C74B146572127821E1 /* Build configuration list for PBXNativeTarget "RNFBApp" */ = { isa = XCConfigurationList; buildConfigurations = ( - 2A7B9923A025C9FD5DA7D60F3BED10CF /* Debug */, - A828AE6C2020D397E9898AB29D8A6318 /* Release */, + 8EDC6A1141F0E81C219D643A213A625C /* Debug */, + D1CD6EFE0E7E9A5EC728BCB8435E4330 /* Release */, ); defaultConfigurationIsVisible = 0; defaultConfigurationName = Release; }; - B60AB0B639EBC86B735201971D6DB210 /* Build configuration list for PBXNativeTarget "RNCMaskedView" */ = { + B1A08AA7741768A0CBCBAAFD49388A6C /* Build configuration list for PBXNativeTarget "RCT-Folly" */ = { isa = XCConfigurationList; buildConfigurations = ( - C4AC01671ACF2941952FC335503ABF31 /* Debug */, - 1F90A2C5A78F00D900E1DCA48FD307B6 /* Release */, + AC2157D9D0D3CE5D1ED326889588B336 /* Debug */, + 4060190F1F66621796A0E52B7BFA46CE /* Release */, ); defaultConfigurationIsVisible = 0; defaultConfigurationName = Release; }; - B6C6F9EC13A16CC1312D410ADE27FA7E /* Build configuration list for PBXAggregateTarget "RCTRequired" */ = { + B1F0E6BA258A9287C5C2BFF8CD214FDF /* Build configuration list for PBXNativeTarget "UMReactNativeAdapter" */ = { isa = XCConfigurationList; buildConfigurations = ( - 06E3FC3781AD0BB2F27B3E710583A37E /* Debug */, - B8D4BAE1AC114A2A683B1E09C904EA19 /* Release */, + 2A7B9923A025C9FD5DA7D60F3BED10CF /* Debug */, + A828AE6C2020D397E9898AB29D8A6318 /* Release */, ); defaultConfigurationIsVisible = 0; defaultConfigurationName = Release; }; - B71DBA55DEBBF3EB313EF61465FA7876 /* Build configuration list for PBXNativeTarget "React-Core-AccessibilityResources" */ = { + B60AB0B639EBC86B735201971D6DB210 /* Build configuration list for PBXNativeTarget "RNCMaskedView" */ = { isa = XCConfigurationList; buildConfigurations = ( - F3EE27B0C756A8266CCDF2B12606FA17 /* Debug */, - 22A12E3F2FF9A7F5DCFACE3E8F47FEE1 /* Release */, + C4AC01671ACF2941952FC335503ABF31 /* Debug */, + 1F90A2C5A78F00D900E1DCA48FD307B6 /* Release */, ); defaultConfigurationIsVisible = 0; defaultConfigurationName = Release; }; - B8C714D33B1F0EF4A5C21EBDD1A9D0C6 /* Build configuration list for PBXNativeTarget "SDWebImage" */ = { + B7F3DFF0FD50696CA34CBB703F02F81B /* Build configuration list for PBXNativeTarget "FirebaseCrashlytics" */ = { isa = XCConfigurationList; buildConfigurations = ( - E77561557F596C05B0F94CFE3368AC62 /* Debug */, - 81612E878CEC159EB76D047BBDE71C36 /* Release */, + A114DAA0E3F0416D4CA5ABA7D57C0564 /* Debug */, + BD50F4C8CA986F98442CB3A2E0943643 /* Release */, ); defaultConfigurationIsVisible = 0; defaultConfigurationName = Release; }; - B8E044861FC075BB715B51361725E7F7 /* Build configuration list for PBXNativeTarget "RNImageCropPicker" */ = { + B8471EA43C46B2496A5165308C483B57 /* Build configuration list for PBXNativeTarget "UMPermissionsInterface" */ = { isa = XCConfigurationList; buildConfigurations = ( - 2EE7477CED0EF45A9B85F8884BE22919 /* Debug */, - 16AA0154D3837FC4C44F6909CAF079E4 /* Release */, + FF2E19A4165D35321091A7C6D9D6DF4C /* Debug */, + A6C3EB18351B34CC04925F7802299EAF /* Release */, ); defaultConfigurationIsVisible = 0; defaultConfigurationName = Release; }; - BC7F8E2AA591C192F73A2754053754BD /* Build configuration list for PBXNativeTarget "Flipper-Folly" */ = { + B8E044861FC075BB715B51361725E7F7 /* Build configuration list for PBXNativeTarget "RNImageCropPicker" */ = { isa = XCConfigurationList; buildConfigurations = ( - 600D94FEDDAEF18C363F863141AF9093 /* Debug */, - ABDC481EA6A1DEF125B909DB40586F0C /* Release */, + 2EE7477CED0EF45A9B85F8884BE22919 /* Debug */, + 16AA0154D3837FC4C44F6909CAF079E4 /* Release */, ); defaultConfigurationIsVisible = 0; defaultConfigurationName = Release; @@ -42796,11 +42619,20 @@ defaultConfigurationIsVisible = 0; defaultConfigurationName = Release; }; - C5BB32007235C20C0E8E3DFE7283D558 /* Build configuration list for PBXNativeTarget "React-perflogger" */ = { + C281795CF687E516AB7FD518D13CE0C0 /* Build configuration list for PBXNativeTarget "RNImageCropPicker-QBImagePicker" */ = { + isa = XCConfigurationList; + buildConfigurations = ( + 685E7183A8913DFBBFBB3A14E307768A /* Debug */, + 5BC0D493A8190EF09C7D99266AE8C535 /* Release */, + ); + defaultConfigurationIsVisible = 0; + defaultConfigurationName = Release; + }; + C4C6523185F51CD6BD6524A78C994EFA /* Build configuration list for PBXAggregateTarget "boost-for-react-native" */ = { isa = XCConfigurationList; buildConfigurations = ( - 0B968FA00CC1DA576D4DAF254683D949 /* Debug */, - B5881BE4602BEEA7398D3D40480341E0 /* Release */, + 17A83645378650A66459200E7D07F16D /* Debug */, + 8CC9ECD1E0FBAA4CC4E2C6D1714C0D39 /* Release */, ); defaultConfigurationIsVisible = 0; defaultConfigurationName = Release; @@ -42832,15 +42664,6 @@ defaultConfigurationIsVisible = 0; defaultConfigurationName = Release; }; - CE8EBC2CD2134951C91930F7FA1AC270 /* Build configuration list for PBXAggregateTarget "boost-for-react-native" */ = { - isa = XCConfigurationList; - buildConfigurations = ( - B894EF837C738B2DFBBEC5E741FAB7F3 /* Debug */, - 2C3A636D7C929015A1366062D3AD9285 /* Release */, - ); - defaultConfigurationIsVisible = 0; - defaultConfigurationName = Release; - }; D024F943D0F41D34A844CEE64C1CA7AD /* Build configuration list for PBXNativeTarget "RNScreens" */ = { isa = XCConfigurationList; buildConfigurations = ( @@ -42868,47 +42691,20 @@ defaultConfigurationIsVisible = 0; defaultConfigurationName = Release; }; - D1CF8345119FD80695F191C0AC44D161 /* Build configuration list for PBXNativeTarget "Flipper-Glog" */ = { - isa = XCConfigurationList; - buildConfigurations = ( - 2841D76E9BA26627EB9DB4008398643A /* Debug */, - EF7125D5B7A9E0805D68C26DD9E42A35 /* Release */, - ); - defaultConfigurationIsVisible = 0; - defaultConfigurationName = Release; - }; - D3635C43092350A9658F45219FDD06BB /* Build configuration list for PBXNativeTarget "TOCropViewController" */ = { - isa = XCConfigurationList; - buildConfigurations = ( - 11ECF29815B46C1489441995945FCB8B /* Debug */, - 1F0B8F748E208E6325E7B6C2065E3587 /* Release */, - ); - defaultConfigurationIsVisible = 0; - defaultConfigurationName = Release; - }; - D452D506E296BE33521B74FE2AA33AE0 /* Build configuration list for PBXNativeTarget "React-RCTLinking" */ = { - isa = XCConfigurationList; - buildConfigurations = ( - F9FA7A73B41D25987F6E304AB230A289 /* Debug */, - 2D24641D233502019004F2446CBCCE87 /* Release */, - ); - defaultConfigurationIsVisible = 0; - defaultConfigurationName = Release; - }; - D7BAC07A83F765F4B109C68135DE7246 /* Build configuration list for PBXNativeTarget "React-jsi" */ = { + D9A2380A865EA8C3CFAC7DFE9517C89F /* Build configuration list for PBXNativeTarget "EXImageLoader" */ = { isa = XCConfigurationList; buildConfigurations = ( - 3990BA4C89DB70F52463872B34A96808 /* Debug */, - EFA4F633CF780D6126FF99CF870855EE /* Release */, + 3EF4F733E0263A0A5C9664CDF8852B62 /* Debug */, + 57B656256E59CE6A3B384FD16049A754 /* Release */, ); defaultConfigurationIsVisible = 0; defaultConfigurationName = Release; }; - D9A2380A865EA8C3CFAC7DFE9517C89F /* Build configuration list for PBXNativeTarget "EXImageLoader" */ = { + DBA562C8714DA8419651A975C955BB6E /* Build configuration list for PBXNativeTarget "MMKVCore" */ = { isa = XCConfigurationList; buildConfigurations = ( - 3EF4F733E0263A0A5C9664CDF8852B62 /* Debug */, - 57B656256E59CE6A3B384FD16049A754 /* Release */, + 1E8D88989601F81F6C64CEC5BE24DD6C /* Debug */, + C1464EFDAEE34F9DB6CBD79380B4CAE1 /* Release */, ); defaultConfigurationIsVisible = 0; defaultConfigurationName = Release; @@ -42931,20 +42727,11 @@ defaultConfigurationIsVisible = 0; defaultConfigurationName = Release; }; - DEC693597FD4C7125596D0B86C299A0B /* Build configuration list for PBXNativeTarget "React-RCTSettings" */ = { - isa = XCConfigurationList; - buildConfigurations = ( - 651BF003D59600D10F4B0704DB49BAD6 /* Debug */, - 5063E44E6EAC2B0DE076A3046365F203 /* Release */, - ); - defaultConfigurationIsVisible = 0; - defaultConfigurationName = Release; - }; - DFE894F34C613273A95DB869737428CD /* Build configuration list for PBXNativeTarget "FirebaseCrashlytics" */ = { + DEA57B159A2DF27BB6AE201D959B8243 /* Build configuration list for PBXNativeTarget "Flipper-Folly" */ = { isa = XCConfigurationList; buildConfigurations = ( - 7C2FEDE138DB34C96794A6D64D82A56E /* Debug */, - 4A205BA346EFFD8B46CF5BDCA7AD0D00 /* Release */, + 5332DD392F916314C40EA98B9878C951 /* Debug */, + 74819EE4D29858CD58F4911A49E115BE /* Release */, ); defaultConfigurationIsVisible = 0; defaultConfigurationName = Release; @@ -42958,20 +42745,20 @@ defaultConfigurationIsVisible = 0; defaultConfigurationName = Release; }; - E5A33DD391E77918EDE64753B57084F4 /* Build configuration list for PBXNativeTarget "FirebaseInstallations" */ = { + E6F73BCECB68393037E5FC903076C813 /* Build configuration list for PBXNativeTarget "Pods-defaults-RocketChatRN" */ = { isa = XCConfigurationList; buildConfigurations = ( - 048149BB3053D1441ECCDCA684C5DD8B /* Debug */, - 844A0734DAAEE23B7C9AABDF7199D719 /* Release */, + 81FFCB55DFCE6027C9FC73F91F397E13 /* Debug */, + 879CB95853CB9B100D8AD8A9C83F5610 /* Release */, ); defaultConfigurationIsVisible = 0; defaultConfigurationName = Release; }; - E62AE5E60B73EFCCE2CF8FB52F16D64D /* Build configuration list for PBXNativeTarget "ReactCommon" */ = { + E724047654453DCDA42C7A55B92BF6C7 /* Build configuration list for PBXNativeTarget "libwebp" */ = { isa = XCConfigurationList; buildConfigurations = ( - 577050D7FC9A99E17F5319793586264B /* Debug */, - 8C041440129A4F3B898C794341EE4653 /* Release */, + 94DC33CB0C603BD1506DFC434F9D5315 /* Debug */, + B8A7075959D9548F4BF3260C3EBF927B /* Release */, ); defaultConfigurationIsVisible = 0; defaultConfigurationName = Release; @@ -42985,15 +42772,6 @@ defaultConfigurationIsVisible = 0; defaultConfigurationName = Release; }; - E90E1F1D1CA0986675C407B246AA0762 /* Build configuration list for PBXNativeTarget "UMPermissionsInterface" */ = { - isa = XCConfigurationList; - buildConfigurations = ( - 5C9DCA5986F165F85B9C73EEE9393D01 /* Debug */, - 125D363900A81EC1CFE173B625BC9A2A /* Release */, - ); - defaultConfigurationIsVisible = 0; - defaultConfigurationName = Release; - }; E9270BC373B2DAD6CC72B79271AB3E6B /* Build configuration list for PBXNativeTarget "Flipper-PeerTalk" */ = { isa = XCConfigurationList; buildConfigurations = ( @@ -43003,101 +42781,92 @@ defaultConfigurationIsVisible = 0; defaultConfigurationName = Release; }; - F111719BAE4C0547C9E515A490C75B54 /* Build configuration list for PBXNativeTarget "RNFBAnalytics" */ = { - isa = XCConfigurationList; - buildConfigurations = ( - 4E54B3FAAE249652B3A60E4A21D8A3C6 /* Debug */, - 7DC9963EDA5319FB6AC6DF6367BB86F6 /* Release */, - ); - defaultConfigurationIsVisible = 0; - defaultConfigurationName = Release; - }; - F19D740CFF78BFA64B9E4484CA646557 /* Build configuration list for PBXNativeTarget "MMKVCore" */ = { + EAF0E44C93D56471D42CE80D840353F9 /* Build configuration list for PBXNativeTarget "RNFBAnalytics" */ = { isa = XCConfigurationList; buildConfigurations = ( - 89BDA7237595C197C7B5FE79F3C37755 /* Debug */, - 49AF3D2AC5032C0B463A1DAA676A6871 /* Release */, + 463D28A37760D1096C818B244DD73341 /* Debug */, + 08EED2267D733414EF7544368FAC4327 /* Release */, ); defaultConfigurationIsVisible = 0; defaultConfigurationName = Release; }; - F458FE1B19CFE8F0B657E816011EB44C /* Build configuration list for PBXNativeTarget "GoogleDataTransportCCTSupport" */ = { + EB1FE341DEFAB479EDE837950E6B7E63 /* Build configuration list for PBXNativeTarget "FBReactNativeSpec" */ = { isa = XCConfigurationList; buildConfigurations = ( - C9C5B724A639418EEAAE09470090DDE9 /* Debug */, - 6B4C52F1AFE0E00483D4A30B4A7E02CA /* Release */, + 6A93327916D73381712667A45BC513E2 /* Debug */, + 99411588D432F0555587DF235BF13EC2 /* Release */, ); defaultConfigurationIsVisible = 0; defaultConfigurationName = Release; }; - F4C8A35E3252FCEB473E483F333F09E4 /* Build configuration list for PBXNativeTarget "Pods-defaults-RocketChatRN" */ = { + ECB5FD8E475689E9E4F952DFD9165BED /* Build configuration list for PBXNativeTarget "React-jsinspector" */ = { isa = XCConfigurationList; buildConfigurations = ( - 9610165DCE768DA3F3DCE06E6E32848D /* Debug */, - A1D1AFE9631A6B0C42C1F69C0F05BDA7 /* Release */, + F41B854F808F0A50B4E9E00AA56E76BF /* Debug */, + 36B9F8EDC0053ADC45BAF866D5B1E3B4 /* Release */, ); defaultConfigurationIsVisible = 0; defaultConfigurationName = Release; }; - F617CE4545CE4E4DED6DEC4F2D3F8F38 /* Build configuration list for PBXAggregateTarget "JitsiMeetSDK" */ = { + F16DCEBA5427B9D689B2DF1EDF881F22 /* Build configuration list for PBXNativeTarget "Flipper-RSocket" */ = { isa = XCConfigurationList; buildConfigurations = ( - FED4091850B98DEE852E1FFC263B0AA5 /* Debug */, - D679DA3653EA9F2D9C4564889CB0C9AB /* Release */, + 579459AD8545A6E96C4F1D58724917F6 /* Debug */, + 0428A5AF7970952939687C1B97651930 /* Release */, ); defaultConfigurationIsVisible = 0; defaultConfigurationName = Release; }; - F81785C975EC4B13D41AD12DB0FD45F4 /* Build configuration list for PBXNativeTarget "FBReactNativeSpec" */ = { + F565E564ADF710E806568A0B44BB3CE5 /* Build configuration list for PBXNativeTarget "libevent" */ = { isa = XCConfigurationList; buildConfigurations = ( - C98D0B1FB6305C765F0557145EFCA09C /* Debug */, - 8EF5F1521A207A635C0BCCDEB7F9789B /* Release */, + 591E98E8C2CF846C1C17818A55BD6CF2 /* Debug */, + 8B0AC0ED2880BE5AE6FAA19B0EC00512 /* Release */, ); defaultConfigurationIsVisible = 0; defaultConfigurationName = Release; }; - F8CFD42AE7B030242732AB15AE9ECBEE /* Build configuration list for PBXNativeTarget "libevent" */ = { + F617CE4545CE4E4DED6DEC4F2D3F8F38 /* Build configuration list for PBXAggregateTarget "JitsiMeetSDK" */ = { isa = XCConfigurationList; buildConfigurations = ( - 18455F94807839346D486C6F99F75DD5 /* Debug */, - A270FD9F164FE1DF4DE8F4BB7518F4A0 /* Release */, + FED4091850B98DEE852E1FFC263B0AA5 /* Debug */, + D679DA3653EA9F2D9C4564889CB0C9AB /* Release */, ); defaultConfigurationIsVisible = 0; defaultConfigurationName = Release; }; - F8F3AE9F70811C8960D0E88C72765C96 /* Build configuration list for PBXNativeTarget "Pods-NotificationService" */ = { + FA2A74D09995384A218EF4556212EE28 /* Build configuration list for PBXNativeTarget "EXLocalAuthentication" */ = { isa = XCConfigurationList; buildConfigurations = ( - EDB4F4FD8CAA27B09680BC8447768A26 /* Debug */, - 2EB9236200699761C9079A3682CDFB07 /* Release */, + 39E658BFB6AA16170AC332C84B7A8FD2 /* Debug */, + 75F07EC0626EBC846B90C595F7B0B7BC /* Release */, ); defaultConfigurationIsVisible = 0; defaultConfigurationName = Release; }; - FA2A74D09995384A218EF4556212EE28 /* Build configuration list for PBXNativeTarget "EXLocalAuthentication" */ = { + FA2B94C7378AB4155E6BA22806FFB9A4 /* Build configuration list for PBXNativeTarget "GoogleDataTransport" */ = { isa = XCConfigurationList; buildConfigurations = ( - 39E658BFB6AA16170AC332C84B7A8FD2 /* Debug */, - 75F07EC0626EBC846B90C595F7B0B7BC /* Release */, + EC74D0B51D32705BF51AA9E276361841 /* Debug */, + 5EEAD030589D5B27676DC37C108711C8 /* Release */, ); defaultConfigurationIsVisible = 0; defaultConfigurationName = Release; }; - FB20FE6C26236192FEAE9C7E4F120BFA /* Build configuration list for PBXNativeTarget "GoogleDataTransport" */ = { + FAD47D216ABC909713FE579144283829 /* Build configuration list for PBXNativeTarget "Pods-ShareRocketChatRN" */ = { isa = XCConfigurationList; buildConfigurations = ( - 3A61250C5602A1806CCCD75ADAE8B959 /* Debug */, - 8DCB063F34ECFDADD030CDFE33C61A50 /* Release */, + 35E7CA2E5AA43A6F40B7D7BB43659636 /* Debug */, + EB2BECCB1CD5D2659C74800FC579E0A4 /* Release */, ); defaultConfigurationIsVisible = 0; defaultConfigurationName = Release; }; - FC5AD24E36A3AD83A522C0813F4CE405 /* Build configuration list for PBXNativeTarget "TOCropViewController-TOCropViewControllerBundle" */ = { + FC9237A9AB6D7FF6A552CDE5183144E7 /* Build configuration list for PBXNativeTarget "YogaKit" */ = { isa = XCConfigurationList; buildConfigurations = ( - D5E5100E75BF415B7B2B1C62137C5649 /* Debug */, - 3BACDA59E9DDF97C8F1577E699B106E9 /* Release */, + 9C22F548D1EB7E9B4F43CB9404B2CBA5 /* Debug */, + 683CC73263523E33073FDDE04A8323D6 /* Release */, ); defaultConfigurationIsVisible = 0; defaultConfigurationName = Release; diff --git a/ios/Pods/Target Support Files/Firebase/Firebase.debug.xcconfig b/ios/Pods/Target Support Files/Firebase/Firebase.debug.xcconfig index 68562cfa71..6b9343ecd3 100644 --- a/ios/Pods/Target Support Files/Firebase/Firebase.debug.xcconfig +++ b/ios/Pods/Target Support Files/Firebase/Firebase.debug.xcconfig @@ -3,7 +3,7 @@ CLANG_WARN_QUOTED_INCLUDE_IN_FRAMEWORK_HEADER = NO CONFIGURATION_BUILD_DIR = ${PODS_CONFIGURATION_BUILD_DIR}/Firebase FRAMEWORK_SEARCH_PATHS = $(inherited) "${PODS_ROOT}/FirebaseAnalytics/Frameworks" "${PODS_ROOT}/GoogleAppMeasurement/Frameworks" GCC_PREPROCESSOR_DEFINITIONS = $(inherited) COCOAPODS=1 -HEADER_SEARCH_PATHS = $(inherited) "${PODS_ROOT}/Headers/Private" "${PODS_ROOT}/Headers/Private/Firebase" "${PODS_ROOT}/Headers/Public" "${PODS_ROOT}/Headers/Public/Firebase" "${PODS_ROOT}/Headers/Public/FirebaseCore" "${PODS_ROOT}/Headers/Public/FirebaseCoreDiagnostics" "${PODS_ROOT}/Headers/Public/FirebaseCrashlytics" "${PODS_ROOT}/Headers/Public/FirebaseInstallations" "${PODS_ROOT}/Headers/Public/GoogleDataTransport" "${PODS_ROOT}/Headers/Public/GoogleDataTransportCCTSupport" "${PODS_ROOT}/Headers/Public/GoogleUtilities" "${PODS_ROOT}/Headers/Public/PromisesObjC" "${PODS_ROOT}/Headers/Public/nanopb" +HEADER_SEARCH_PATHS = $(inherited) "${PODS_ROOT}/Headers/Private" "${PODS_ROOT}/Headers/Private/Firebase" "${PODS_ROOT}/Headers/Public" "${PODS_ROOT}/Headers/Public/Firebase" "${PODS_ROOT}/Headers/Public/FirebaseCore" "${PODS_ROOT}/Headers/Public/FirebaseCoreDiagnostics" "${PODS_ROOT}/Headers/Public/FirebaseCrashlytics" "${PODS_ROOT}/Headers/Public/FirebaseInstallations" "${PODS_ROOT}/Headers/Public/GoogleDataTransport" "${PODS_ROOT}/Headers/Public/GoogleUtilities" "${PODS_ROOT}/Headers/Public/PromisesObjC" "${PODS_ROOT}/Headers/Public/nanopb" PODS_BUILD_DIR = ${BUILD_DIR} PODS_CONFIGURATION_BUILD_DIR = ${PODS_BUILD_DIR}/$(CONFIGURATION)$(EFFECTIVE_PLATFORM_NAME) PODS_ROOT = ${SRCROOT} diff --git a/ios/Pods/Target Support Files/Firebase/Firebase.release.xcconfig b/ios/Pods/Target Support Files/Firebase/Firebase.release.xcconfig index 68562cfa71..6b9343ecd3 100644 --- a/ios/Pods/Target Support Files/Firebase/Firebase.release.xcconfig +++ b/ios/Pods/Target Support Files/Firebase/Firebase.release.xcconfig @@ -3,7 +3,7 @@ CLANG_WARN_QUOTED_INCLUDE_IN_FRAMEWORK_HEADER = NO CONFIGURATION_BUILD_DIR = ${PODS_CONFIGURATION_BUILD_DIR}/Firebase FRAMEWORK_SEARCH_PATHS = $(inherited) "${PODS_ROOT}/FirebaseAnalytics/Frameworks" "${PODS_ROOT}/GoogleAppMeasurement/Frameworks" GCC_PREPROCESSOR_DEFINITIONS = $(inherited) COCOAPODS=1 -HEADER_SEARCH_PATHS = $(inherited) "${PODS_ROOT}/Headers/Private" "${PODS_ROOT}/Headers/Private/Firebase" "${PODS_ROOT}/Headers/Public" "${PODS_ROOT}/Headers/Public/Firebase" "${PODS_ROOT}/Headers/Public/FirebaseCore" "${PODS_ROOT}/Headers/Public/FirebaseCoreDiagnostics" "${PODS_ROOT}/Headers/Public/FirebaseCrashlytics" "${PODS_ROOT}/Headers/Public/FirebaseInstallations" "${PODS_ROOT}/Headers/Public/GoogleDataTransport" "${PODS_ROOT}/Headers/Public/GoogleDataTransportCCTSupport" "${PODS_ROOT}/Headers/Public/GoogleUtilities" "${PODS_ROOT}/Headers/Public/PromisesObjC" "${PODS_ROOT}/Headers/Public/nanopb" +HEADER_SEARCH_PATHS = $(inherited) "${PODS_ROOT}/Headers/Private" "${PODS_ROOT}/Headers/Private/Firebase" "${PODS_ROOT}/Headers/Public" "${PODS_ROOT}/Headers/Public/Firebase" "${PODS_ROOT}/Headers/Public/FirebaseCore" "${PODS_ROOT}/Headers/Public/FirebaseCoreDiagnostics" "${PODS_ROOT}/Headers/Public/FirebaseCrashlytics" "${PODS_ROOT}/Headers/Public/FirebaseInstallations" "${PODS_ROOT}/Headers/Public/GoogleDataTransport" "${PODS_ROOT}/Headers/Public/GoogleUtilities" "${PODS_ROOT}/Headers/Public/PromisesObjC" "${PODS_ROOT}/Headers/Public/nanopb" PODS_BUILD_DIR = ${BUILD_DIR} PODS_CONFIGURATION_BUILD_DIR = ${PODS_BUILD_DIR}/$(CONFIGURATION)$(EFFECTIVE_PLATFORM_NAME) PODS_ROOT = ${SRCROOT} diff --git a/ios/Pods/Target Support Files/FirebaseAnalytics/FirebaseAnalytics.debug.xcconfig b/ios/Pods/Target Support Files/FirebaseAnalytics/FirebaseAnalytics.debug.xcconfig index 48ef4752f7..66f4a2cf7c 100644 --- a/ios/Pods/Target Support Files/FirebaseAnalytics/FirebaseAnalytics.debug.xcconfig +++ b/ios/Pods/Target Support Files/FirebaseAnalytics/FirebaseAnalytics.debug.xcconfig @@ -3,7 +3,7 @@ CLANG_WARN_QUOTED_INCLUDE_IN_FRAMEWORK_HEADER = NO CONFIGURATION_BUILD_DIR = ${PODS_CONFIGURATION_BUILD_DIR}/FirebaseAnalytics FRAMEWORK_SEARCH_PATHS = $(inherited) "${PODS_ROOT}/FirebaseAnalytics/Frameworks" "${PODS_ROOT}/GoogleAppMeasurement/Frameworks" GCC_PREPROCESSOR_DEFINITIONS = $(inherited) COCOAPODS=1 -HEADER_SEARCH_PATHS = $(inherited) "${PODS_ROOT}/Headers/Public" "${PODS_ROOT}/Headers/Public/FirebaseCore" "${PODS_ROOT}/Headers/Public/FirebaseCoreDiagnostics" "${PODS_ROOT}/Headers/Public/FirebaseInstallations" "${PODS_ROOT}/Headers/Public/GoogleDataTransport" "${PODS_ROOT}/Headers/Public/GoogleDataTransportCCTSupport" "${PODS_ROOT}/Headers/Public/GoogleUtilities" "${PODS_ROOT}/Headers/Public/PromisesObjC" "${PODS_ROOT}/Headers/Public/nanopb" +HEADER_SEARCH_PATHS = $(inherited) "${PODS_ROOT}/Headers/Public" "${PODS_ROOT}/Headers/Public/FirebaseCore" "${PODS_ROOT}/Headers/Public/FirebaseCoreDiagnostics" "${PODS_ROOT}/Headers/Public/FirebaseInstallations" "${PODS_ROOT}/Headers/Public/GoogleDataTransport" "${PODS_ROOT}/Headers/Public/GoogleUtilities" "${PODS_ROOT}/Headers/Public/PromisesObjC" "${PODS_ROOT}/Headers/Public/nanopb" PODS_BUILD_DIR = ${BUILD_DIR} PODS_CONFIGURATION_BUILD_DIR = ${PODS_BUILD_DIR}/$(CONFIGURATION)$(EFFECTIVE_PLATFORM_NAME) PODS_ROOT = ${SRCROOT} diff --git a/ios/Pods/Target Support Files/FirebaseAnalytics/FirebaseAnalytics.release.xcconfig b/ios/Pods/Target Support Files/FirebaseAnalytics/FirebaseAnalytics.release.xcconfig index 48ef4752f7..66f4a2cf7c 100644 --- a/ios/Pods/Target Support Files/FirebaseAnalytics/FirebaseAnalytics.release.xcconfig +++ b/ios/Pods/Target Support Files/FirebaseAnalytics/FirebaseAnalytics.release.xcconfig @@ -3,7 +3,7 @@ CLANG_WARN_QUOTED_INCLUDE_IN_FRAMEWORK_HEADER = NO CONFIGURATION_BUILD_DIR = ${PODS_CONFIGURATION_BUILD_DIR}/FirebaseAnalytics FRAMEWORK_SEARCH_PATHS = $(inherited) "${PODS_ROOT}/FirebaseAnalytics/Frameworks" "${PODS_ROOT}/GoogleAppMeasurement/Frameworks" GCC_PREPROCESSOR_DEFINITIONS = $(inherited) COCOAPODS=1 -HEADER_SEARCH_PATHS = $(inherited) "${PODS_ROOT}/Headers/Public" "${PODS_ROOT}/Headers/Public/FirebaseCore" "${PODS_ROOT}/Headers/Public/FirebaseCoreDiagnostics" "${PODS_ROOT}/Headers/Public/FirebaseInstallations" "${PODS_ROOT}/Headers/Public/GoogleDataTransport" "${PODS_ROOT}/Headers/Public/GoogleDataTransportCCTSupport" "${PODS_ROOT}/Headers/Public/GoogleUtilities" "${PODS_ROOT}/Headers/Public/PromisesObjC" "${PODS_ROOT}/Headers/Public/nanopb" +HEADER_SEARCH_PATHS = $(inherited) "${PODS_ROOT}/Headers/Public" "${PODS_ROOT}/Headers/Public/FirebaseCore" "${PODS_ROOT}/Headers/Public/FirebaseCoreDiagnostics" "${PODS_ROOT}/Headers/Public/FirebaseInstallations" "${PODS_ROOT}/Headers/Public/GoogleDataTransport" "${PODS_ROOT}/Headers/Public/GoogleUtilities" "${PODS_ROOT}/Headers/Public/PromisesObjC" "${PODS_ROOT}/Headers/Public/nanopb" PODS_BUILD_DIR = ${BUILD_DIR} PODS_CONFIGURATION_BUILD_DIR = ${PODS_BUILD_DIR}/$(CONFIGURATION)$(EFFECTIVE_PLATFORM_NAME) PODS_ROOT = ${SRCROOT} diff --git a/ios/Pods/Target Support Files/FirebaseCore/FirebaseCore.debug.xcconfig b/ios/Pods/Target Support Files/FirebaseCore/FirebaseCore.debug.xcconfig index 2c7c3275f5..20b7997e4a 100644 --- a/ios/Pods/Target Support Files/FirebaseCore/FirebaseCore.debug.xcconfig +++ b/ios/Pods/Target Support Files/FirebaseCore/FirebaseCore.debug.xcconfig @@ -2,8 +2,8 @@ APPLICATION_EXTENSION_API_ONLY = YES CLANG_WARN_QUOTED_INCLUDE_IN_FRAMEWORK_HEADER = NO CONFIGURATION_BUILD_DIR = ${PODS_CONFIGURATION_BUILD_DIR}/FirebaseCore GCC_C_LANGUAGE_STANDARD = c99 -GCC_PREPROCESSOR_DEFINITIONS = $(inherited) COCOAPODS=1 FIRCore_VERSION=6.8.1 Firebase_VERSION=6.27.1 -HEADER_SEARCH_PATHS = $(inherited) "${PODS_ROOT}/Headers/Private" "${PODS_ROOT}/Headers/Private/FirebaseCore" "${PODS_ROOT}/Headers/Public" "${PODS_ROOT}/Headers/Public/FirebaseCore" "${PODS_ROOT}/Headers/Public/FirebaseCoreDiagnostics" "${PODS_ROOT}/Headers/Public/GoogleDataTransport" "${PODS_ROOT}/Headers/Public/GoogleDataTransportCCTSupport" "${PODS_ROOT}/Headers/Public/GoogleUtilities" "${PODS_ROOT}/Headers/Public/PromisesObjC" "${PODS_ROOT}/Headers/Public/nanopb" "${PODS_TARGET_SRCROOT}" +GCC_PREPROCESSOR_DEFINITIONS = $(inherited) COCOAPODS=1 FIRCore_VERSION=6.10.4 Firebase_VERSION=6.34.0 +HEADER_SEARCH_PATHS = $(inherited) "${PODS_ROOT}/Headers/Private" "${PODS_ROOT}/Headers/Private/FirebaseCore" "${PODS_ROOT}/Headers/Public" "${PODS_ROOT}/Headers/Public/FirebaseCore" "${PODS_ROOT}/Headers/Public/FirebaseCoreDiagnostics" "${PODS_ROOT}/Headers/Public/GoogleDataTransport" "${PODS_ROOT}/Headers/Public/GoogleUtilities" "${PODS_ROOT}/Headers/Public/PromisesObjC" "${PODS_ROOT}/Headers/Public/nanopb" "${PODS_TARGET_SRCROOT}" OTHER_CFLAGS = $(inherited) -fno-autolink PODS_BUILD_DIR = ${BUILD_DIR} PODS_CONFIGURATION_BUILD_DIR = ${PODS_BUILD_DIR}/$(CONFIGURATION)$(EFFECTIVE_PLATFORM_NAME) diff --git a/ios/Pods/Target Support Files/FirebaseCore/FirebaseCore.release.xcconfig b/ios/Pods/Target Support Files/FirebaseCore/FirebaseCore.release.xcconfig index 2c7c3275f5..20b7997e4a 100644 --- a/ios/Pods/Target Support Files/FirebaseCore/FirebaseCore.release.xcconfig +++ b/ios/Pods/Target Support Files/FirebaseCore/FirebaseCore.release.xcconfig @@ -2,8 +2,8 @@ APPLICATION_EXTENSION_API_ONLY = YES CLANG_WARN_QUOTED_INCLUDE_IN_FRAMEWORK_HEADER = NO CONFIGURATION_BUILD_DIR = ${PODS_CONFIGURATION_BUILD_DIR}/FirebaseCore GCC_C_LANGUAGE_STANDARD = c99 -GCC_PREPROCESSOR_DEFINITIONS = $(inherited) COCOAPODS=1 FIRCore_VERSION=6.8.1 Firebase_VERSION=6.27.1 -HEADER_SEARCH_PATHS = $(inherited) "${PODS_ROOT}/Headers/Private" "${PODS_ROOT}/Headers/Private/FirebaseCore" "${PODS_ROOT}/Headers/Public" "${PODS_ROOT}/Headers/Public/FirebaseCore" "${PODS_ROOT}/Headers/Public/FirebaseCoreDiagnostics" "${PODS_ROOT}/Headers/Public/GoogleDataTransport" "${PODS_ROOT}/Headers/Public/GoogleDataTransportCCTSupport" "${PODS_ROOT}/Headers/Public/GoogleUtilities" "${PODS_ROOT}/Headers/Public/PromisesObjC" "${PODS_ROOT}/Headers/Public/nanopb" "${PODS_TARGET_SRCROOT}" +GCC_PREPROCESSOR_DEFINITIONS = $(inherited) COCOAPODS=1 FIRCore_VERSION=6.10.4 Firebase_VERSION=6.34.0 +HEADER_SEARCH_PATHS = $(inherited) "${PODS_ROOT}/Headers/Private" "${PODS_ROOT}/Headers/Private/FirebaseCore" "${PODS_ROOT}/Headers/Public" "${PODS_ROOT}/Headers/Public/FirebaseCore" "${PODS_ROOT}/Headers/Public/FirebaseCoreDiagnostics" "${PODS_ROOT}/Headers/Public/GoogleDataTransport" "${PODS_ROOT}/Headers/Public/GoogleUtilities" "${PODS_ROOT}/Headers/Public/PromisesObjC" "${PODS_ROOT}/Headers/Public/nanopb" "${PODS_TARGET_SRCROOT}" OTHER_CFLAGS = $(inherited) -fno-autolink PODS_BUILD_DIR = ${BUILD_DIR} PODS_CONFIGURATION_BUILD_DIR = ${PODS_BUILD_DIR}/$(CONFIGURATION)$(EFFECTIVE_PLATFORM_NAME) diff --git a/ios/Pods/Target Support Files/FirebaseCoreDiagnostics/FirebaseCoreDiagnostics.debug.xcconfig b/ios/Pods/Target Support Files/FirebaseCoreDiagnostics/FirebaseCoreDiagnostics.debug.xcconfig index 6014c9e99b..ab79b8706c 100644 --- a/ios/Pods/Target Support Files/FirebaseCoreDiagnostics/FirebaseCoreDiagnostics.debug.xcconfig +++ b/ios/Pods/Target Support Files/FirebaseCoreDiagnostics/FirebaseCoreDiagnostics.debug.xcconfig @@ -5,7 +5,7 @@ CONFIGURATION_BUILD_DIR = ${PODS_CONFIGURATION_BUILD_DIR}/FirebaseCoreDiagnostic GCC_C_LANGUAGE_STANDARD = c99 GCC_PREPROCESSOR_DEFINITIONS = $(inherited) COCOAPODS=1 PB_FIELD_32BIT=1 PB_NO_PACKED_STRUCTS=1 PB_ENABLE_MALLOC=1 GCC_TREAT_WARNINGS_AS_ERRORS = YES -HEADER_SEARCH_PATHS = $(inherited) "${PODS_ROOT}/Headers/Private" "${PODS_ROOT}/Headers/Private/FirebaseCoreDiagnostics" "${PODS_ROOT}/Headers/Public" "${PODS_ROOT}/Headers/Public/FirebaseCoreDiagnostics" "${PODS_ROOT}/Headers/Public/GoogleDataTransport" "${PODS_ROOT}/Headers/Public/GoogleDataTransportCCTSupport" "${PODS_ROOT}/Headers/Public/GoogleUtilities" "${PODS_ROOT}/Headers/Public/PromisesObjC" "${PODS_ROOT}/Headers/Public/nanopb" "${PODS_TARGET_SRCROOT}" "${PODS_TARGET_SRCROOT}/Firebase/CoreDiagnostics/" +HEADER_SEARCH_PATHS = $(inherited) "${PODS_ROOT}/Headers/Private" "${PODS_ROOT}/Headers/Private/FirebaseCoreDiagnostics" "${PODS_ROOT}/Headers/Public" "${PODS_ROOT}/Headers/Public/FirebaseCoreDiagnostics" "${PODS_ROOT}/Headers/Public/GoogleDataTransport" "${PODS_ROOT}/Headers/Public/GoogleUtilities" "${PODS_ROOT}/Headers/Public/PromisesObjC" "${PODS_ROOT}/Headers/Public/nanopb" "${PODS_TARGET_SRCROOT}" PODS_BUILD_DIR = ${BUILD_DIR} PODS_CONFIGURATION_BUILD_DIR = ${PODS_BUILD_DIR}/$(CONFIGURATION)$(EFFECTIVE_PLATFORM_NAME) PODS_ROOT = ${SRCROOT} diff --git a/ios/Pods/Target Support Files/FirebaseCoreDiagnostics/FirebaseCoreDiagnostics.release.xcconfig b/ios/Pods/Target Support Files/FirebaseCoreDiagnostics/FirebaseCoreDiagnostics.release.xcconfig index 6014c9e99b..ab79b8706c 100644 --- a/ios/Pods/Target Support Files/FirebaseCoreDiagnostics/FirebaseCoreDiagnostics.release.xcconfig +++ b/ios/Pods/Target Support Files/FirebaseCoreDiagnostics/FirebaseCoreDiagnostics.release.xcconfig @@ -5,7 +5,7 @@ CONFIGURATION_BUILD_DIR = ${PODS_CONFIGURATION_BUILD_DIR}/FirebaseCoreDiagnostic GCC_C_LANGUAGE_STANDARD = c99 GCC_PREPROCESSOR_DEFINITIONS = $(inherited) COCOAPODS=1 PB_FIELD_32BIT=1 PB_NO_PACKED_STRUCTS=1 PB_ENABLE_MALLOC=1 GCC_TREAT_WARNINGS_AS_ERRORS = YES -HEADER_SEARCH_PATHS = $(inherited) "${PODS_ROOT}/Headers/Private" "${PODS_ROOT}/Headers/Private/FirebaseCoreDiagnostics" "${PODS_ROOT}/Headers/Public" "${PODS_ROOT}/Headers/Public/FirebaseCoreDiagnostics" "${PODS_ROOT}/Headers/Public/GoogleDataTransport" "${PODS_ROOT}/Headers/Public/GoogleDataTransportCCTSupport" "${PODS_ROOT}/Headers/Public/GoogleUtilities" "${PODS_ROOT}/Headers/Public/PromisesObjC" "${PODS_ROOT}/Headers/Public/nanopb" "${PODS_TARGET_SRCROOT}" "${PODS_TARGET_SRCROOT}/Firebase/CoreDiagnostics/" +HEADER_SEARCH_PATHS = $(inherited) "${PODS_ROOT}/Headers/Private" "${PODS_ROOT}/Headers/Private/FirebaseCoreDiagnostics" "${PODS_ROOT}/Headers/Public" "${PODS_ROOT}/Headers/Public/FirebaseCoreDiagnostics" "${PODS_ROOT}/Headers/Public/GoogleDataTransport" "${PODS_ROOT}/Headers/Public/GoogleUtilities" "${PODS_ROOT}/Headers/Public/PromisesObjC" "${PODS_ROOT}/Headers/Public/nanopb" "${PODS_TARGET_SRCROOT}" PODS_BUILD_DIR = ${BUILD_DIR} PODS_CONFIGURATION_BUILD_DIR = ${PODS_BUILD_DIR}/$(CONFIGURATION)$(EFFECTIVE_PLATFORM_NAME) PODS_ROOT = ${SRCROOT} diff --git a/ios/Pods/Target Support Files/FirebaseCrashlytics/FirebaseCrashlytics.debug.xcconfig b/ios/Pods/Target Support Files/FirebaseCrashlytics/FirebaseCrashlytics.debug.xcconfig index da75023e62..21c3efc2d0 100644 --- a/ios/Pods/Target Support Files/FirebaseCrashlytics/FirebaseCrashlytics.debug.xcconfig +++ b/ios/Pods/Target Support Files/FirebaseCrashlytics/FirebaseCrashlytics.debug.xcconfig @@ -2,9 +2,8 @@ APPLICATION_EXTENSION_API_ONLY = YES CLANG_WARN_QUOTED_INCLUDE_IN_FRAMEWORK_HEADER = NO CONFIGURATION_BUILD_DIR = ${PODS_CONFIGURATION_BUILD_DIR}/FirebaseCrashlytics GCC_C_LANGUAGE_STANDARD = c99 -GCC_PREPROCESSOR_DEFINITIONS = $(inherited) COCOAPODS=1 DISPLAY_VERSION=4.2.0 CLS_SDK_NAME="Crashlytics iOS SDK" PB_FIELD_32BIT=1 PB_NO_PACKED_STRUCTS=1 PB_ENABLE_MALLOC=1 -HEADER_SEARCH_PATHS = $(inherited) "${PODS_ROOT}/Headers/Private" "${PODS_ROOT}/Headers/Private/FirebaseCrashlytics" "${PODS_ROOT}/Headers/Public" "${PODS_ROOT}/Headers/Public/FirebaseCore" "${PODS_ROOT}/Headers/Public/FirebaseCoreDiagnostics" "${PODS_ROOT}/Headers/Public/FirebaseCrashlytics" "${PODS_ROOT}/Headers/Public/FirebaseInstallations" "${PODS_ROOT}/Headers/Public/GoogleDataTransport" "${PODS_ROOT}/Headers/Public/GoogleDataTransportCCTSupport" "${PODS_ROOT}/Headers/Public/GoogleUtilities" "${PODS_ROOT}/Headers/Public/PromisesObjC" "${PODS_ROOT}/Headers/Public/nanopb" "${PODS_TARGET_SRCROOT}" -OTHER_LD_FLAGS = $(inherited) -sectcreate __TEXT __info_plist +GCC_PREPROCESSOR_DEFINITIONS = $(inherited) COCOAPODS=1 DISPLAY_VERSION=4.6.2 CLS_SDK_NAME="Crashlytics iOS SDK" PB_FIELD_32BIT=1 PB_NO_PACKED_STRUCTS=1 PB_ENABLE_MALLOC=1 +HEADER_SEARCH_PATHS = $(inherited) "${PODS_ROOT}/Headers/Private" "${PODS_ROOT}/Headers/Private/FirebaseCrashlytics" "${PODS_ROOT}/Headers/Public" "${PODS_ROOT}/Headers/Public/FirebaseCore" "${PODS_ROOT}/Headers/Public/FirebaseCoreDiagnostics" "${PODS_ROOT}/Headers/Public/FirebaseCrashlytics" "${PODS_ROOT}/Headers/Public/FirebaseInstallations" "${PODS_ROOT}/Headers/Public/GoogleDataTransport" "${PODS_ROOT}/Headers/Public/GoogleUtilities" "${PODS_ROOT}/Headers/Public/PromisesObjC" "${PODS_ROOT}/Headers/Public/nanopb" "${PODS_TARGET_SRCROOT}" PODS_BUILD_DIR = ${BUILD_DIR} PODS_CONFIGURATION_BUILD_DIR = ${PODS_BUILD_DIR}/$(CONFIGURATION)$(EFFECTIVE_PLATFORM_NAME) PODS_ROOT = ${SRCROOT} diff --git a/ios/Pods/Target Support Files/FirebaseCrashlytics/FirebaseCrashlytics.release.xcconfig b/ios/Pods/Target Support Files/FirebaseCrashlytics/FirebaseCrashlytics.release.xcconfig index da75023e62..21c3efc2d0 100644 --- a/ios/Pods/Target Support Files/FirebaseCrashlytics/FirebaseCrashlytics.release.xcconfig +++ b/ios/Pods/Target Support Files/FirebaseCrashlytics/FirebaseCrashlytics.release.xcconfig @@ -2,9 +2,8 @@ APPLICATION_EXTENSION_API_ONLY = YES CLANG_WARN_QUOTED_INCLUDE_IN_FRAMEWORK_HEADER = NO CONFIGURATION_BUILD_DIR = ${PODS_CONFIGURATION_BUILD_DIR}/FirebaseCrashlytics GCC_C_LANGUAGE_STANDARD = c99 -GCC_PREPROCESSOR_DEFINITIONS = $(inherited) COCOAPODS=1 DISPLAY_VERSION=4.2.0 CLS_SDK_NAME="Crashlytics iOS SDK" PB_FIELD_32BIT=1 PB_NO_PACKED_STRUCTS=1 PB_ENABLE_MALLOC=1 -HEADER_SEARCH_PATHS = $(inherited) "${PODS_ROOT}/Headers/Private" "${PODS_ROOT}/Headers/Private/FirebaseCrashlytics" "${PODS_ROOT}/Headers/Public" "${PODS_ROOT}/Headers/Public/FirebaseCore" "${PODS_ROOT}/Headers/Public/FirebaseCoreDiagnostics" "${PODS_ROOT}/Headers/Public/FirebaseCrashlytics" "${PODS_ROOT}/Headers/Public/FirebaseInstallations" "${PODS_ROOT}/Headers/Public/GoogleDataTransport" "${PODS_ROOT}/Headers/Public/GoogleDataTransportCCTSupport" "${PODS_ROOT}/Headers/Public/GoogleUtilities" "${PODS_ROOT}/Headers/Public/PromisesObjC" "${PODS_ROOT}/Headers/Public/nanopb" "${PODS_TARGET_SRCROOT}" -OTHER_LD_FLAGS = $(inherited) -sectcreate __TEXT __info_plist +GCC_PREPROCESSOR_DEFINITIONS = $(inherited) COCOAPODS=1 DISPLAY_VERSION=4.6.2 CLS_SDK_NAME="Crashlytics iOS SDK" PB_FIELD_32BIT=1 PB_NO_PACKED_STRUCTS=1 PB_ENABLE_MALLOC=1 +HEADER_SEARCH_PATHS = $(inherited) "${PODS_ROOT}/Headers/Private" "${PODS_ROOT}/Headers/Private/FirebaseCrashlytics" "${PODS_ROOT}/Headers/Public" "${PODS_ROOT}/Headers/Public/FirebaseCore" "${PODS_ROOT}/Headers/Public/FirebaseCoreDiagnostics" "${PODS_ROOT}/Headers/Public/FirebaseCrashlytics" "${PODS_ROOT}/Headers/Public/FirebaseInstallations" "${PODS_ROOT}/Headers/Public/GoogleDataTransport" "${PODS_ROOT}/Headers/Public/GoogleUtilities" "${PODS_ROOT}/Headers/Public/PromisesObjC" "${PODS_ROOT}/Headers/Public/nanopb" "${PODS_TARGET_SRCROOT}" PODS_BUILD_DIR = ${BUILD_DIR} PODS_CONFIGURATION_BUILD_DIR = ${PODS_BUILD_DIR}/$(CONFIGURATION)$(EFFECTIVE_PLATFORM_NAME) PODS_ROOT = ${SRCROOT} diff --git a/ios/Pods/Target Support Files/FirebaseInstallations/FirebaseInstallations.debug.xcconfig b/ios/Pods/Target Support Files/FirebaseInstallations/FirebaseInstallations.debug.xcconfig index b6caa5bfbc..7f8b46ccfd 100644 --- a/ios/Pods/Target Support Files/FirebaseInstallations/FirebaseInstallations.debug.xcconfig +++ b/ios/Pods/Target Support Files/FirebaseInstallations/FirebaseInstallations.debug.xcconfig @@ -2,8 +2,8 @@ APPLICATION_EXTENSION_API_ONLY = YES CLANG_WARN_QUOTED_INCLUDE_IN_FRAMEWORK_HEADER = NO CONFIGURATION_BUILD_DIR = ${PODS_CONFIGURATION_BUILD_DIR}/FirebaseInstallations GCC_C_LANGUAGE_STANDARD = c99 -GCC_PREPROCESSOR_DEFINITIONS = $(inherited) COCOAPODS=1 FIRInstallations_LIB_VERSION=1.5.0 -HEADER_SEARCH_PATHS = $(inherited) "${PODS_ROOT}/Headers/Private" "${PODS_ROOT}/Headers/Private/FirebaseInstallations" "${PODS_ROOT}/Headers/Public" "${PODS_ROOT}/Headers/Public/FirebaseCore" "${PODS_ROOT}/Headers/Public/FirebaseCoreDiagnostics" "${PODS_ROOT}/Headers/Public/FirebaseInstallations" "${PODS_ROOT}/Headers/Public/GoogleDataTransport" "${PODS_ROOT}/Headers/Public/GoogleDataTransportCCTSupport" "${PODS_ROOT}/Headers/Public/GoogleUtilities" "${PODS_ROOT}/Headers/Public/PromisesObjC" "${PODS_ROOT}/Headers/Public/nanopb" "${PODS_TARGET_SRCROOT}" +GCC_PREPROCESSOR_DEFINITIONS = $(inherited) COCOAPODS=1 FIRInstallations_LIB_VERSION=1.7.0 +HEADER_SEARCH_PATHS = $(inherited) "${PODS_ROOT}/Headers/Private" "${PODS_ROOT}/Headers/Private/FirebaseInstallations" "${PODS_ROOT}/Headers/Public" "${PODS_ROOT}/Headers/Public/FirebaseCore" "${PODS_ROOT}/Headers/Public/FirebaseCoreDiagnostics" "${PODS_ROOT}/Headers/Public/FirebaseInstallations" "${PODS_ROOT}/Headers/Public/GoogleDataTransport" "${PODS_ROOT}/Headers/Public/GoogleUtilities" "${PODS_ROOT}/Headers/Public/PromisesObjC" "${PODS_ROOT}/Headers/Public/nanopb" "${PODS_TARGET_SRCROOT}" PODS_BUILD_DIR = ${BUILD_DIR} PODS_CONFIGURATION_BUILD_DIR = ${PODS_BUILD_DIR}/$(CONFIGURATION)$(EFFECTIVE_PLATFORM_NAME) PODS_ROOT = ${SRCROOT} diff --git a/ios/Pods/Target Support Files/FirebaseInstallations/FirebaseInstallations.release.xcconfig b/ios/Pods/Target Support Files/FirebaseInstallations/FirebaseInstallations.release.xcconfig index b6caa5bfbc..7f8b46ccfd 100644 --- a/ios/Pods/Target Support Files/FirebaseInstallations/FirebaseInstallations.release.xcconfig +++ b/ios/Pods/Target Support Files/FirebaseInstallations/FirebaseInstallations.release.xcconfig @@ -2,8 +2,8 @@ APPLICATION_EXTENSION_API_ONLY = YES CLANG_WARN_QUOTED_INCLUDE_IN_FRAMEWORK_HEADER = NO CONFIGURATION_BUILD_DIR = ${PODS_CONFIGURATION_BUILD_DIR}/FirebaseInstallations GCC_C_LANGUAGE_STANDARD = c99 -GCC_PREPROCESSOR_DEFINITIONS = $(inherited) COCOAPODS=1 FIRInstallations_LIB_VERSION=1.5.0 -HEADER_SEARCH_PATHS = $(inherited) "${PODS_ROOT}/Headers/Private" "${PODS_ROOT}/Headers/Private/FirebaseInstallations" "${PODS_ROOT}/Headers/Public" "${PODS_ROOT}/Headers/Public/FirebaseCore" "${PODS_ROOT}/Headers/Public/FirebaseCoreDiagnostics" "${PODS_ROOT}/Headers/Public/FirebaseInstallations" "${PODS_ROOT}/Headers/Public/GoogleDataTransport" "${PODS_ROOT}/Headers/Public/GoogleDataTransportCCTSupport" "${PODS_ROOT}/Headers/Public/GoogleUtilities" "${PODS_ROOT}/Headers/Public/PromisesObjC" "${PODS_ROOT}/Headers/Public/nanopb" "${PODS_TARGET_SRCROOT}" +GCC_PREPROCESSOR_DEFINITIONS = $(inherited) COCOAPODS=1 FIRInstallations_LIB_VERSION=1.7.0 +HEADER_SEARCH_PATHS = $(inherited) "${PODS_ROOT}/Headers/Private" "${PODS_ROOT}/Headers/Private/FirebaseInstallations" "${PODS_ROOT}/Headers/Public" "${PODS_ROOT}/Headers/Public/FirebaseCore" "${PODS_ROOT}/Headers/Public/FirebaseCoreDiagnostics" "${PODS_ROOT}/Headers/Public/FirebaseInstallations" "${PODS_ROOT}/Headers/Public/GoogleDataTransport" "${PODS_ROOT}/Headers/Public/GoogleUtilities" "${PODS_ROOT}/Headers/Public/PromisesObjC" "${PODS_ROOT}/Headers/Public/nanopb" "${PODS_TARGET_SRCROOT}" PODS_BUILD_DIR = ${BUILD_DIR} PODS_CONFIGURATION_BUILD_DIR = ${PODS_BUILD_DIR}/$(CONFIGURATION)$(EFFECTIVE_PLATFORM_NAME) PODS_ROOT = ${SRCROOT} diff --git a/ios/Pods/Target Support Files/GoogleDataTransport/GoogleDataTransport.debug.xcconfig b/ios/Pods/Target Support Files/GoogleDataTransport/GoogleDataTransport.debug.xcconfig index 227a05ae06..c424df3bfb 100644 --- a/ios/Pods/Target Support Files/GoogleDataTransport/GoogleDataTransport.debug.xcconfig +++ b/ios/Pods/Target Support Files/GoogleDataTransport/GoogleDataTransport.debug.xcconfig @@ -3,9 +3,9 @@ CLANG_UNDEFINED_BEHAVIOR_SANITIZER_NULLABILITY = YES CLANG_WARN_QUOTED_INCLUDE_IN_FRAMEWORK_HEADER = NO CONFIGURATION_BUILD_DIR = ${PODS_CONFIGURATION_BUILD_DIR}/GoogleDataTransport GCC_C_LANGUAGE_STANDARD = c99 -GCC_PREPROCESSOR_DEFINITIONS = $(inherited) COCOAPODS=1 GDTCOR_VERSION=6.2.1 +GCC_PREPROCESSOR_DEFINITIONS = $(inherited) COCOAPODS=1 PB_FIELD_32BIT=1 PB_NO_PACKED_STRUCTS=1 PB_ENABLE_MALLOC=1 GDTCOR_VERSION=7.5.1 GCC_TREAT_WARNINGS_AS_ERRORS = YES -HEADER_SEARCH_PATHS = $(inherited) "${PODS_ROOT}/Headers/Private" "${PODS_ROOT}/Headers/Private/GoogleDataTransport" "${PODS_ROOT}/Headers/Public" "${PODS_ROOT}/Headers/Public/GoogleDataTransport" "${PODS_TARGET_SRCROOT}/GoogleDataTransport/" +HEADER_SEARCH_PATHS = $(inherited) "${PODS_ROOT}/Headers/Private" "${PODS_ROOT}/Headers/Private/GoogleDataTransport" "${PODS_ROOT}/Headers/Public" "${PODS_ROOT}/Headers/Public/GoogleDataTransport" "${PODS_ROOT}/Headers/Public/nanopb" "${PODS_TARGET_SRCROOT}/" PODS_BUILD_DIR = ${BUILD_DIR} PODS_CONFIGURATION_BUILD_DIR = ${PODS_BUILD_DIR}/$(CONFIGURATION)$(EFFECTIVE_PLATFORM_NAME) PODS_ROOT = ${SRCROOT} diff --git a/ios/Pods/Target Support Files/GoogleDataTransport/GoogleDataTransport.release.xcconfig b/ios/Pods/Target Support Files/GoogleDataTransport/GoogleDataTransport.release.xcconfig index 227a05ae06..c424df3bfb 100644 --- a/ios/Pods/Target Support Files/GoogleDataTransport/GoogleDataTransport.release.xcconfig +++ b/ios/Pods/Target Support Files/GoogleDataTransport/GoogleDataTransport.release.xcconfig @@ -3,9 +3,9 @@ CLANG_UNDEFINED_BEHAVIOR_SANITIZER_NULLABILITY = YES CLANG_WARN_QUOTED_INCLUDE_IN_FRAMEWORK_HEADER = NO CONFIGURATION_BUILD_DIR = ${PODS_CONFIGURATION_BUILD_DIR}/GoogleDataTransport GCC_C_LANGUAGE_STANDARD = c99 -GCC_PREPROCESSOR_DEFINITIONS = $(inherited) COCOAPODS=1 GDTCOR_VERSION=6.2.1 +GCC_PREPROCESSOR_DEFINITIONS = $(inherited) COCOAPODS=1 PB_FIELD_32BIT=1 PB_NO_PACKED_STRUCTS=1 PB_ENABLE_MALLOC=1 GDTCOR_VERSION=7.5.1 GCC_TREAT_WARNINGS_AS_ERRORS = YES -HEADER_SEARCH_PATHS = $(inherited) "${PODS_ROOT}/Headers/Private" "${PODS_ROOT}/Headers/Private/GoogleDataTransport" "${PODS_ROOT}/Headers/Public" "${PODS_ROOT}/Headers/Public/GoogleDataTransport" "${PODS_TARGET_SRCROOT}/GoogleDataTransport/" +HEADER_SEARCH_PATHS = $(inherited) "${PODS_ROOT}/Headers/Private" "${PODS_ROOT}/Headers/Private/GoogleDataTransport" "${PODS_ROOT}/Headers/Public" "${PODS_ROOT}/Headers/Public/GoogleDataTransport" "${PODS_ROOT}/Headers/Public/nanopb" "${PODS_TARGET_SRCROOT}/" PODS_BUILD_DIR = ${BUILD_DIR} PODS_CONFIGURATION_BUILD_DIR = ${PODS_BUILD_DIR}/$(CONFIGURATION)$(EFFECTIVE_PLATFORM_NAME) PODS_ROOT = ${SRCROOT} diff --git a/ios/Pods/Target Support Files/GoogleDataTransportCCTSupport/GoogleDataTransportCCTSupport.debug.xcconfig b/ios/Pods/Target Support Files/GoogleDataTransportCCTSupport/GoogleDataTransportCCTSupport.debug.xcconfig deleted file mode 100644 index 25b1f4ddfe..0000000000 --- a/ios/Pods/Target Support Files/GoogleDataTransportCCTSupport/GoogleDataTransportCCTSupport.debug.xcconfig +++ /dev/null @@ -1,16 +0,0 @@ -APPLICATION_EXTENSION_API_ONLY = YES -CLANG_UNDEFINED_BEHAVIOR_SANITIZER_NULLABILITY = YES -CLANG_WARN_QUOTED_INCLUDE_IN_FRAMEWORK_HEADER = NO -CONFIGURATION_BUILD_DIR = ${PODS_CONFIGURATION_BUILD_DIR}/GoogleDataTransportCCTSupport -GCC_C_LANGUAGE_STANDARD = c99 -GCC_PREPROCESSOR_DEFINITIONS = $(inherited) COCOAPODS=1 PB_FIELD_32BIT=1 PB_NO_PACKED_STRUCTS=1 PB_ENABLE_MALLOC=1 GDTCCTSUPPORT_VERSION=3.2.0 -GCC_TREAT_WARNINGS_AS_ERRORS = YES -HEADER_SEARCH_PATHS = $(inherited) "${PODS_ROOT}/Headers/Private" "${PODS_ROOT}/Headers/Private/GoogleDataTransportCCTSupport" "${PODS_ROOT}/Headers/Public" "${PODS_ROOT}/Headers/Public/GoogleDataTransport" "${PODS_ROOT}/Headers/Public/GoogleDataTransportCCTSupport" "${PODS_ROOT}/Headers/Public/nanopb" "${PODS_TARGET_SRCROOT}/GoogleDataTransportCCTSupport/" -PODS_BUILD_DIR = ${BUILD_DIR} -PODS_CONFIGURATION_BUILD_DIR = ${PODS_BUILD_DIR}/$(CONFIGURATION)$(EFFECTIVE_PLATFORM_NAME) -PODS_ROOT = ${SRCROOT} -PODS_TARGET_SRCROOT = ${PODS_ROOT}/GoogleDataTransportCCTSupport -PODS_XCFRAMEWORKS_BUILD_DIR = $(PODS_CONFIGURATION_BUILD_DIR)/XCFrameworkIntermediates -PRODUCT_BUNDLE_IDENTIFIER = org.cocoapods.${PRODUCT_NAME:rfc1034identifier} -SKIP_INSTALL = YES -USE_RECURSIVE_SCRIPT_INPUTS_IN_SCRIPT_PHASES = YES diff --git a/ios/Pods/Target Support Files/GoogleDataTransportCCTSupport/GoogleDataTransportCCTSupport.release.xcconfig b/ios/Pods/Target Support Files/GoogleDataTransportCCTSupport/GoogleDataTransportCCTSupport.release.xcconfig deleted file mode 100644 index 25b1f4ddfe..0000000000 --- a/ios/Pods/Target Support Files/GoogleDataTransportCCTSupport/GoogleDataTransportCCTSupport.release.xcconfig +++ /dev/null @@ -1,16 +0,0 @@ -APPLICATION_EXTENSION_API_ONLY = YES -CLANG_UNDEFINED_BEHAVIOR_SANITIZER_NULLABILITY = YES -CLANG_WARN_QUOTED_INCLUDE_IN_FRAMEWORK_HEADER = NO -CONFIGURATION_BUILD_DIR = ${PODS_CONFIGURATION_BUILD_DIR}/GoogleDataTransportCCTSupport -GCC_C_LANGUAGE_STANDARD = c99 -GCC_PREPROCESSOR_DEFINITIONS = $(inherited) COCOAPODS=1 PB_FIELD_32BIT=1 PB_NO_PACKED_STRUCTS=1 PB_ENABLE_MALLOC=1 GDTCCTSUPPORT_VERSION=3.2.0 -GCC_TREAT_WARNINGS_AS_ERRORS = YES -HEADER_SEARCH_PATHS = $(inherited) "${PODS_ROOT}/Headers/Private" "${PODS_ROOT}/Headers/Private/GoogleDataTransportCCTSupport" "${PODS_ROOT}/Headers/Public" "${PODS_ROOT}/Headers/Public/GoogleDataTransport" "${PODS_ROOT}/Headers/Public/GoogleDataTransportCCTSupport" "${PODS_ROOT}/Headers/Public/nanopb" "${PODS_TARGET_SRCROOT}/GoogleDataTransportCCTSupport/" -PODS_BUILD_DIR = ${BUILD_DIR} -PODS_CONFIGURATION_BUILD_DIR = ${PODS_BUILD_DIR}/$(CONFIGURATION)$(EFFECTIVE_PLATFORM_NAME) -PODS_ROOT = ${SRCROOT} -PODS_TARGET_SRCROOT = ${PODS_ROOT}/GoogleDataTransportCCTSupport -PODS_XCFRAMEWORKS_BUILD_DIR = $(PODS_CONFIGURATION_BUILD_DIR)/XCFrameworkIntermediates -PRODUCT_BUNDLE_IDENTIFIER = org.cocoapods.${PRODUCT_NAME:rfc1034identifier} -SKIP_INSTALL = YES -USE_RECURSIVE_SCRIPT_INPUTS_IN_SCRIPT_PHASES = YES diff --git a/ios/Pods/Target Support Files/Pods-NotificationService/Pods-NotificationService-acknowledgements.markdown b/ios/Pods/Target Support Files/Pods-NotificationService/Pods-NotificationService-acknowledgements.markdown index e6fbf305d0..208bf69857 100644 --- a/ios/Pods/Target Support Files/Pods-NotificationService/Pods-NotificationService-acknowledgements.markdown +++ b/ios/Pods/Target Support Files/Pods-NotificationService/Pods-NotificationService-acknowledgements.markdown @@ -255,7 +255,7 @@ OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. same "printed page" as the copyright notice for easier identification within third-party archives. - Copyright [yyyy] [name of copyright owner] + Copyright 2020 Firebase, Inc. Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. @@ -465,7 +465,7 @@ Copyright 2020 Google same "printed page" as the copyright notice for easier identification within third-party archives. - Copyright [yyyy] [name of copyright owner] + Copyright 2020 Firebase, Inc. Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. @@ -671,7 +671,7 @@ Copyright 2020 Google same "printed page" as the copyright notice for easier identification within third-party archives. - Copyright [yyyy] [name of copyright owner] + Copyright 2020 Firebase, Inc. Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. @@ -1111,7 +1111,7 @@ WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. same "printed page" as the copyright notice for easier identification within third-party archives. - Copyright [yyyy] [name of copyright owner] + Copyright 2020 Firebase, Inc. Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. @@ -1900,213 +1900,7 @@ Copyright 2020 Google 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. - - -## GoogleDataTransportCCTSupport - - - 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] + Copyright 2020 Firebase, Inc. Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. @@ -2762,6 +2556,10 @@ freely, subject to the following restrictions: 3. This notice may not be removed or altered from any source distribution. +Open Source Software Licensed Under the BSD 3-Clause License: +---------------------------------------------------------------------------------------- +1. pybind11 v2.5.0 +Copyright (c) 2016 Wenzel Jakob <wenzel.jakob@epfl.ch>, All rights reserved. Terms of the BSD 3-Clause License: -------------------------------------------------------------------- @@ -3825,7 +3623,7 @@ SOFTWARE. ## SDWebImage -Copyright (c) 2009-2018 Olivier Poitrey rs@dailymotion.com +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 diff --git a/ios/Pods/Target Support Files/Pods-NotificationService/Pods-NotificationService-acknowledgements.plist b/ios/Pods/Target Support Files/Pods-NotificationService/Pods-NotificationService-acknowledgements.plist index 66ae992be2..8aadeed0ec 100644 --- a/ios/Pods/Target Support Files/Pods-NotificationService/Pods-NotificationService-acknowledgements.plist +++ b/ios/Pods/Target Support Files/Pods-NotificationService/Pods-NotificationService-acknowledgements.plist @@ -284,7 +284,7 @@ OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. same "printed page" as the copyright notice for easier identification within third-party archives. - Copyright [yyyy] [name of copyright owner] + Copyright 2020 Firebase, Inc. Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. @@ -506,7 +506,7 @@ OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. same "printed page" as the copyright notice for easier identification within third-party archives. - Copyright [yyyy] [name of copyright owner] + Copyright 2020 Firebase, Inc. Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. @@ -718,7 +718,7 @@ OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. same "printed page" as the copyright notice for easier identification within third-party archives. - Copyright [yyyy] [name of copyright owner] + Copyright 2020 Firebase, Inc. Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. @@ -1170,7 +1170,7 @@ WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. same "printed page" as the copyright notice for easier identification within third-party archives. - Copyright [yyyy] [name of copyright owner] + Copyright 2020 Firebase, Inc. Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. @@ -2013,7 +2013,7 @@ SOFTWARE. same "printed page" as the copyright notice for easier identification within third-party archives. - Copyright [yyyy] [name of copyright owner] + Copyright 2020 Firebase, Inc. Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. @@ -2227,218 +2227,6 @@ SOFTWARE. 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. -</string> - <key>License</key> - <string>Apache</string> - <key>Title</key> - <string>GoogleDataTransportCCTSupport</string> - <key>Type</key> - <string>PSGroupSpecifier</string> - </dict> - <dict> - <key>FooterText</key> - <string> - 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 @@ -2905,6 +2693,10 @@ freely, subject to the following restrictions: 3. This notice may not be removed or altered from any source distribution. +Open Source Software Licensed Under the BSD 3-Clause License: +---------------------------------------------------------------------------------------- +1. pybind11 v2.5.0 +Copyright (c) 2016 Wenzel Jakob <wenzel.jakob@epfl.ch>, All rights reserved. Terms of the BSD 3-Clause License: -------------------------------------------------------------------- @@ -4106,7 +3898,7 @@ SOFTWARE.</string> </dict> <dict> <key>FooterText</key> - <string>Copyright (c) 2009-2018 Olivier Poitrey rs@dailymotion.com + <string>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 diff --git a/ios/Pods/Target Support Files/Pods-NotificationService/Pods-NotificationService.debug.xcconfig b/ios/Pods/Target Support Files/Pods-NotificationService/Pods-NotificationService.debug.xcconfig index 572574dbf5..13870858b6 100644 --- a/ios/Pods/Target Support Files/Pods-NotificationService/Pods-NotificationService.debug.xcconfig +++ b/ios/Pods/Target Support Files/Pods-NotificationService/Pods-NotificationService.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}/GoogleAppMeasurement/Frameworks" "${PODS_ROOT}/JitsiMeetSDK/Frameworks" "${PODS_ROOT}/OpenSSL-Universal/Frameworks" "${PODS_ROOT}/hermes-engine/destroot/Library/Frameworks/iphoneos" "${PODS_XCFRAMEWORKS_BUILD_DIR}/OpenSSL" 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/BugsnagReactNative" "${PODS_ROOT}/Headers/Public/CocoaAsyncSocket" "${PODS_ROOT}/Headers/Public/DoubleConversion" "${PODS_ROOT}/Headers/Public/EXAV" "${PODS_ROOT}/Headers/Public/EXAppleAuthentication" "${PODS_ROOT}/Headers/Public/EXConstants" "${PODS_ROOT}/Headers/Public/EXFileSystem" "${PODS_ROOT}/Headers/Public/EXHaptics" "${PODS_ROOT}/Headers/Public/EXImageLoader" "${PODS_ROOT}/Headers/Public/EXKeepAwake" "${PODS_ROOT}/Headers/Public/EXLocalAuthentication" "${PODS_ROOT}/Headers/Public/EXPermissions" "${PODS_ROOT}/Headers/Public/EXVideoThumbnails" "${PODS_ROOT}/Headers/Public/EXWebBrowser" "${PODS_ROOT}/Headers/Public/FBLazyVector" "${PODS_ROOT}/Headers/Public/FBReactNativeSpec" "${PODS_ROOT}/Headers/Public/Firebase" "${PODS_ROOT}/Headers/Public/FirebaseCore" "${PODS_ROOT}/Headers/Public/FirebaseCoreDiagnostics" "${PODS_ROOT}/Headers/Public/FirebaseCrashlytics" "${PODS_ROOT}/Headers/Public/FirebaseInstallations" "${PODS_ROOT}/Headers/Public/Flipper" "${PODS_ROOT}/Headers/Public/Flipper-DoubleConversion" "${PODS_ROOT}/Headers/Public/Flipper-Folly" "${PODS_ROOT}/Headers/Public/Flipper-Glog" "${PODS_ROOT}/Headers/Public/Flipper-PeerTalk" "${PODS_ROOT}/Headers/Public/Flipper-RSocket" "${PODS_ROOT}/Headers/Public/FlipperKit" "${PODS_ROOT}/Headers/Public/GoogleDataTransport" "${PODS_ROOT}/Headers/Public/GoogleDataTransportCCTSupport" "${PODS_ROOT}/Headers/Public/GoogleUtilities" "${PODS_ROOT}/Headers/Public/KeyCommands" "${PODS_ROOT}/Headers/Public/MMKV" "${PODS_ROOT}/Headers/Public/MMKVCore" "${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/RNBootSplash" "${PODS_ROOT}/Headers/Public/RNCAsyncStorage" "${PODS_ROOT}/Headers/Public/RNCMaskedView" "${PODS_ROOT}/Headers/Public/RNCPicker" "${PODS_ROOT}/Headers/Public/RNConfigReader" "${PODS_ROOT}/Headers/Public/RNDateTimePicker" "${PODS_ROOT}/Headers/Public/RNDeviceInfo" "${PODS_ROOT}/Headers/Public/RNFBAnalytics" "${PODS_ROOT}/Headers/Public/RNFBApp" "${PODS_ROOT}/Headers/Public/RNFBCrashlytics" "${PODS_ROOT}/Headers/Public/RNFastImage" "${PODS_ROOT}/Headers/Public/RNGestureHandler" "${PODS_ROOT}/Headers/Public/RNImageCropPicker" "${PODS_ROOT}/Headers/Public/RNLocalize" "${PODS_ROOT}/Headers/Public/RNReanimated" "${PODS_ROOT}/Headers/Public/RNRootView" "${PODS_ROOT}/Headers/Public/RNScreens" "${PODS_ROOT}/Headers/Public/RNVectorIcons" "${PODS_ROOT}/Headers/Public/React-Core" "${PODS_ROOT}/Headers/Public/React-RCTBlob" "${PODS_ROOT}/Headers/Public/React-RCTText" "${PODS_ROOT}/Headers/Public/React-callinvoker" "${PODS_ROOT}/Headers/Public/React-cxxreact" "${PODS_ROOT}/Headers/Public/React-jsi" "${PODS_ROOT}/Headers/Public/React-jsiexecutor" "${PODS_ROOT}/Headers/Public/React-jsinspector" "${PODS_ROOT}/Headers/Public/React-perflogger" "${PODS_ROOT}/Headers/Public/React-runtimeexecutor" "${PODS_ROOT}/Headers/Public/ReactCommon" "${PODS_ROOT}/Headers/Public/ReactNativeART" "${PODS_ROOT}/Headers/Public/ReactNativeUiLib" "${PODS_ROOT}/Headers/Public/SDWebImage" "${PODS_ROOT}/Headers/Public/SDWebImageWebPCoder" "${PODS_ROOT}/Headers/Public/TOCropViewController" "${PODS_ROOT}/Headers/Public/UMAppLoader" "${PODS_ROOT}/Headers/Public/UMBarCodeScannerInterface" "${PODS_ROOT}/Headers/Public/UMCameraInterface" "${PODS_ROOT}/Headers/Public/UMConstantsInterface" "${PODS_ROOT}/Headers/Public/UMCore" "${PODS_ROOT}/Headers/Public/UMFaceDetectorInterface" "${PODS_ROOT}/Headers/Public/UMFileSystemInterface" "${PODS_ROOT}/Headers/Public/UMFontInterface" "${PODS_ROOT}/Headers/Public/UMImageLoaderInterface" "${PODS_ROOT}/Headers/Public/UMPermissionsInterface" "${PODS_ROOT}/Headers/Public/UMReactNativeAdapter" "${PODS_ROOT}/Headers/Public/UMSensorsInterface" "${PODS_ROOT}/Headers/Public/UMTaskManagerInterface" "${PODS_ROOT}/Headers/Public/Yoga" "${PODS_ROOT}/Headers/Public/YogaKit" "${PODS_ROOT}/Headers/Public/glog" "${PODS_ROOT}/Headers/Public/hermes-engine" "${PODS_ROOT}/Headers/Public/libevent" "${PODS_ROOT}/Headers/Public/libwebp" "${PODS_ROOT}/Headers/Public/nanopb" "${PODS_ROOT}/Headers/Public/react-native-appearance" "${PODS_ROOT}/Headers/Public/react-native-background-timer" "${PODS_ROOT}/Headers/Public/react-native-blur" "${PODS_ROOT}/Headers/Public/react-native-cameraroll" "${PODS_ROOT}/Headers/Public/react-native-cookies" "${PODS_ROOT}/Headers/Public/react-native-document-picker" "${PODS_ROOT}/Headers/Public/react-native-jitsi-meet" "${PODS_ROOT}/Headers/Public/react-native-mmkv-storage" "${PODS_ROOT}/Headers/Public/react-native-netinfo" "${PODS_ROOT}/Headers/Public/react-native-notifications" "${PODS_ROOT}/Headers/Public/react-native-orientation-locker" "${PODS_ROOT}/Headers/Public/react-native-restart" "${PODS_ROOT}/Headers/Public/react-native-safe-area-context" "${PODS_ROOT}/Headers/Public/react-native-simple-crypto" "${PODS_ROOT}/Headers/Public/react-native-slider" "${PODS_ROOT}/Headers/Public/react-native-webview" "${PODS_ROOT}/Headers/Public/rn-extensions-share" "${PODS_ROOT}/Headers/Public/rn-fetch-blob" $(inherited) ${PODS_ROOT}/Firebase/CoreOnly/Sources "${PODS_TARGET_SRCROOT}/Sources/FBLPromises/include" "$(PODS_ROOT)/boost-for-react-native" "$(PODS_ROOT)/Headers/Private/React-Core" "$(PODS_TARGET_SRCROOT)/include/" +HEADER_SEARCH_PATHS = $(inherited) "${PODS_ROOT}/Headers/Public" "${PODS_ROOT}/Headers/Public/BugsnagReactNative" "${PODS_ROOT}/Headers/Public/CocoaAsyncSocket" "${PODS_ROOT}/Headers/Public/DoubleConversion" "${PODS_ROOT}/Headers/Public/EXAV" "${PODS_ROOT}/Headers/Public/EXAppleAuthentication" "${PODS_ROOT}/Headers/Public/EXConstants" "${PODS_ROOT}/Headers/Public/EXFileSystem" "${PODS_ROOT}/Headers/Public/EXHaptics" "${PODS_ROOT}/Headers/Public/EXImageLoader" "${PODS_ROOT}/Headers/Public/EXKeepAwake" "${PODS_ROOT}/Headers/Public/EXLocalAuthentication" "${PODS_ROOT}/Headers/Public/EXPermissions" "${PODS_ROOT}/Headers/Public/EXVideoThumbnails" "${PODS_ROOT}/Headers/Public/EXWebBrowser" "${PODS_ROOT}/Headers/Public/FBLazyVector" "${PODS_ROOT}/Headers/Public/FBReactNativeSpec" "${PODS_ROOT}/Headers/Public/Firebase" "${PODS_ROOT}/Headers/Public/FirebaseCore" "${PODS_ROOT}/Headers/Public/FirebaseCoreDiagnostics" "${PODS_ROOT}/Headers/Public/FirebaseCrashlytics" "${PODS_ROOT}/Headers/Public/FirebaseInstallations" "${PODS_ROOT}/Headers/Public/Flipper" "${PODS_ROOT}/Headers/Public/Flipper-DoubleConversion" "${PODS_ROOT}/Headers/Public/Flipper-Folly" "${PODS_ROOT}/Headers/Public/Flipper-Glog" "${PODS_ROOT}/Headers/Public/Flipper-PeerTalk" "${PODS_ROOT}/Headers/Public/Flipper-RSocket" "${PODS_ROOT}/Headers/Public/FlipperKit" "${PODS_ROOT}/Headers/Public/GoogleDataTransport" "${PODS_ROOT}/Headers/Public/GoogleUtilities" "${PODS_ROOT}/Headers/Public/KeyCommands" "${PODS_ROOT}/Headers/Public/MMKV" "${PODS_ROOT}/Headers/Public/MMKVCore" "${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/RNBootSplash" "${PODS_ROOT}/Headers/Public/RNCAsyncStorage" "${PODS_ROOT}/Headers/Public/RNCMaskedView" "${PODS_ROOT}/Headers/Public/RNCPicker" "${PODS_ROOT}/Headers/Public/RNConfigReader" "${PODS_ROOT}/Headers/Public/RNDateTimePicker" "${PODS_ROOT}/Headers/Public/RNDeviceInfo" "${PODS_ROOT}/Headers/Public/RNFBAnalytics" "${PODS_ROOT}/Headers/Public/RNFBApp" "${PODS_ROOT}/Headers/Public/RNFBCrashlytics" "${PODS_ROOT}/Headers/Public/RNFastImage" "${PODS_ROOT}/Headers/Public/RNGestureHandler" "${PODS_ROOT}/Headers/Public/RNImageCropPicker" "${PODS_ROOT}/Headers/Public/RNLocalize" "${PODS_ROOT}/Headers/Public/RNReanimated" "${PODS_ROOT}/Headers/Public/RNRootView" "${PODS_ROOT}/Headers/Public/RNScreens" "${PODS_ROOT}/Headers/Public/RNVectorIcons" "${PODS_ROOT}/Headers/Public/React-Core" "${PODS_ROOT}/Headers/Public/React-RCTBlob" "${PODS_ROOT}/Headers/Public/React-RCTText" "${PODS_ROOT}/Headers/Public/React-callinvoker" "${PODS_ROOT}/Headers/Public/React-cxxreact" "${PODS_ROOT}/Headers/Public/React-jsi" "${PODS_ROOT}/Headers/Public/React-jsiexecutor" "${PODS_ROOT}/Headers/Public/React-jsinspector" "${PODS_ROOT}/Headers/Public/React-perflogger" "${PODS_ROOT}/Headers/Public/React-runtimeexecutor" "${PODS_ROOT}/Headers/Public/ReactCommon" "${PODS_ROOT}/Headers/Public/ReactNativeART" "${PODS_ROOT}/Headers/Public/ReactNativeUiLib" "${PODS_ROOT}/Headers/Public/SDWebImage" "${PODS_ROOT}/Headers/Public/SDWebImageWebPCoder" "${PODS_ROOT}/Headers/Public/TOCropViewController" "${PODS_ROOT}/Headers/Public/UMAppLoader" "${PODS_ROOT}/Headers/Public/UMBarCodeScannerInterface" "${PODS_ROOT}/Headers/Public/UMCameraInterface" "${PODS_ROOT}/Headers/Public/UMConstantsInterface" "${PODS_ROOT}/Headers/Public/UMCore" "${PODS_ROOT}/Headers/Public/UMFaceDetectorInterface" "${PODS_ROOT}/Headers/Public/UMFileSystemInterface" "${PODS_ROOT}/Headers/Public/UMFontInterface" "${PODS_ROOT}/Headers/Public/UMImageLoaderInterface" "${PODS_ROOT}/Headers/Public/UMPermissionsInterface" "${PODS_ROOT}/Headers/Public/UMReactNativeAdapter" "${PODS_ROOT}/Headers/Public/UMSensorsInterface" "${PODS_ROOT}/Headers/Public/UMTaskManagerInterface" "${PODS_ROOT}/Headers/Public/Yoga" "${PODS_ROOT}/Headers/Public/YogaKit" "${PODS_ROOT}/Headers/Public/glog" "${PODS_ROOT}/Headers/Public/hermes-engine" "${PODS_ROOT}/Headers/Public/libevent" "${PODS_ROOT}/Headers/Public/libwebp" "${PODS_ROOT}/Headers/Public/nanopb" "${PODS_ROOT}/Headers/Public/react-native-appearance" "${PODS_ROOT}/Headers/Public/react-native-background-timer" "${PODS_ROOT}/Headers/Public/react-native-blur" "${PODS_ROOT}/Headers/Public/react-native-cameraroll" "${PODS_ROOT}/Headers/Public/react-native-cookies" "${PODS_ROOT}/Headers/Public/react-native-document-picker" "${PODS_ROOT}/Headers/Public/react-native-jitsi-meet" "${PODS_ROOT}/Headers/Public/react-native-mmkv-storage" "${PODS_ROOT}/Headers/Public/react-native-netinfo" "${PODS_ROOT}/Headers/Public/react-native-notifications" "${PODS_ROOT}/Headers/Public/react-native-orientation-locker" "${PODS_ROOT}/Headers/Public/react-native-restart" "${PODS_ROOT}/Headers/Public/react-native-safe-area-context" "${PODS_ROOT}/Headers/Public/react-native-simple-crypto" "${PODS_ROOT}/Headers/Public/react-native-slider" "${PODS_ROOT}/Headers/Public/react-native-webview" "${PODS_ROOT}/Headers/Public/rn-extensions-share" "${PODS_ROOT}/Headers/Public/rn-fetch-blob" $(inherited) ${PODS_ROOT}/Firebase/CoreOnly/Sources "${PODS_TARGET_SRCROOT}/Sources/FBLPromises/include" "$(PODS_ROOT)/boost-for-react-native" "$(PODS_ROOT)/Headers/Private/React-Core" "$(PODS_TARGET_SRCROOT)/include/" LD_RUNPATH_SEARCH_PATHS = $(inherited) '@executable_path/Frameworks' '@loader_path/Frameworks' '@executable_path/../../Frameworks' -LIBRARY_SEARCH_PATHS = $(inherited) "${PODS_CONFIGURATION_BUILD_DIR}/BugsnagReactNative" "${PODS_CONFIGURATION_BUILD_DIR}/CocoaAsyncSocket" "${PODS_CONFIGURATION_BUILD_DIR}/DoubleConversion" "${PODS_CONFIGURATION_BUILD_DIR}/EXAV" "${PODS_CONFIGURATION_BUILD_DIR}/EXAppleAuthentication" "${PODS_CONFIGURATION_BUILD_DIR}/EXConstants" "${PODS_CONFIGURATION_BUILD_DIR}/EXFileSystem" "${PODS_CONFIGURATION_BUILD_DIR}/EXHaptics" "${PODS_CONFIGURATION_BUILD_DIR}/EXImageLoader" "${PODS_CONFIGURATION_BUILD_DIR}/EXKeepAwake" "${PODS_CONFIGURATION_BUILD_DIR}/EXLocalAuthentication" "${PODS_CONFIGURATION_BUILD_DIR}/EXPermissions" "${PODS_CONFIGURATION_BUILD_DIR}/EXVideoThumbnails" "${PODS_CONFIGURATION_BUILD_DIR}/EXWebBrowser" "${PODS_CONFIGURATION_BUILD_DIR}/FBReactNativeSpec" "${PODS_CONFIGURATION_BUILD_DIR}/FirebaseCore" "${PODS_CONFIGURATION_BUILD_DIR}/FirebaseCoreDiagnostics" "${PODS_CONFIGURATION_BUILD_DIR}/FirebaseCrashlytics" "${PODS_CONFIGURATION_BUILD_DIR}/FirebaseInstallations" "${PODS_CONFIGURATION_BUILD_DIR}/Flipper" "${PODS_CONFIGURATION_BUILD_DIR}/Flipper-DoubleConversion" "${PODS_CONFIGURATION_BUILD_DIR}/Flipper-Folly" "${PODS_CONFIGURATION_BUILD_DIR}/Flipper-Glog" "${PODS_CONFIGURATION_BUILD_DIR}/Flipper-PeerTalk" "${PODS_CONFIGURATION_BUILD_DIR}/Flipper-RSocket" "${PODS_CONFIGURATION_BUILD_DIR}/FlipperKit" "${PODS_CONFIGURATION_BUILD_DIR}/GoogleDataTransport" "${PODS_CONFIGURATION_BUILD_DIR}/GoogleDataTransportCCTSupport" "${PODS_CONFIGURATION_BUILD_DIR}/GoogleUtilities" "${PODS_CONFIGURATION_BUILD_DIR}/KeyCommands" "${PODS_CONFIGURATION_BUILD_DIR}/MMKV" "${PODS_CONFIGURATION_BUILD_DIR}/MMKVCore" "${PODS_CONFIGURATION_BUILD_DIR}/PromisesObjC" "${PODS_CONFIGURATION_BUILD_DIR}/RCT-Folly" "${PODS_CONFIGURATION_BUILD_DIR}/RCTTypeSafety" "${PODS_CONFIGURATION_BUILD_DIR}/RNBootSplash" "${PODS_CONFIGURATION_BUILD_DIR}/RNCAsyncStorage" "${PODS_CONFIGURATION_BUILD_DIR}/RNCMaskedView" "${PODS_CONFIGURATION_BUILD_DIR}/RNCPicker" "${PODS_CONFIGURATION_BUILD_DIR}/RNConfigReader" "${PODS_CONFIGURATION_BUILD_DIR}/RNDateTimePicker" "${PODS_CONFIGURATION_BUILD_DIR}/RNDeviceInfo" "${PODS_CONFIGURATION_BUILD_DIR}/RNFBAnalytics" "${PODS_CONFIGURATION_BUILD_DIR}/RNFBApp" "${PODS_CONFIGURATION_BUILD_DIR}/RNFBCrashlytics" "${PODS_CONFIGURATION_BUILD_DIR}/RNFastImage" "${PODS_CONFIGURATION_BUILD_DIR}/RNGestureHandler" "${PODS_CONFIGURATION_BUILD_DIR}/RNImageCropPicker" "${PODS_CONFIGURATION_BUILD_DIR}/RNLocalize" "${PODS_CONFIGURATION_BUILD_DIR}/RNReanimated" "${PODS_CONFIGURATION_BUILD_DIR}/RNRootView" "${PODS_CONFIGURATION_BUILD_DIR}/RNScreens" "${PODS_CONFIGURATION_BUILD_DIR}/RNVectorIcons" "${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-cxxreact" "${PODS_CONFIGURATION_BUILD_DIR}/React-jsi" "${PODS_CONFIGURATION_BUILD_DIR}/React-jsiexecutor" "${PODS_CONFIGURATION_BUILD_DIR}/React-jsinspector" "${PODS_CONFIGURATION_BUILD_DIR}/React-perflogger" "${PODS_CONFIGURATION_BUILD_DIR}/ReactCommon" "${PODS_CONFIGURATION_BUILD_DIR}/ReactNativeART" "${PODS_CONFIGURATION_BUILD_DIR}/ReactNativeUiLib" "${PODS_CONFIGURATION_BUILD_DIR}/SDWebImage" "${PODS_CONFIGURATION_BUILD_DIR}/SDWebImageWebPCoder" "${PODS_CONFIGURATION_BUILD_DIR}/TOCropViewController" "${PODS_CONFIGURATION_BUILD_DIR}/UMAppLoader" "${PODS_CONFIGURATION_BUILD_DIR}/UMCore" "${PODS_CONFIGURATION_BUILD_DIR}/UMPermissionsInterface" "${PODS_CONFIGURATION_BUILD_DIR}/UMReactNativeAdapter" "${PODS_CONFIGURATION_BUILD_DIR}/Yoga" "${PODS_CONFIGURATION_BUILD_DIR}/YogaKit" "${PODS_CONFIGURATION_BUILD_DIR}/glog" "${PODS_CONFIGURATION_BUILD_DIR}/libevent" "${PODS_CONFIGURATION_BUILD_DIR}/libwebp" "${PODS_CONFIGURATION_BUILD_DIR}/nanopb" "${PODS_CONFIGURATION_BUILD_DIR}/react-native-appearance" "${PODS_CONFIGURATION_BUILD_DIR}/react-native-background-timer" "${PODS_CONFIGURATION_BUILD_DIR}/react-native-blur" "${PODS_CONFIGURATION_BUILD_DIR}/react-native-cameraroll" "${PODS_CONFIGURATION_BUILD_DIR}/react-native-cookies" "${PODS_CONFIGURATION_BUILD_DIR}/react-native-document-picker" "${PODS_CONFIGURATION_BUILD_DIR}/react-native-jitsi-meet" "${PODS_CONFIGURATION_BUILD_DIR}/react-native-mmkv-storage" "${PODS_CONFIGURATION_BUILD_DIR}/react-native-netinfo" "${PODS_CONFIGURATION_BUILD_DIR}/react-native-notifications" "${PODS_CONFIGURATION_BUILD_DIR}/react-native-orientation-locker" "${PODS_CONFIGURATION_BUILD_DIR}/react-native-restart" "${PODS_CONFIGURATION_BUILD_DIR}/react-native-safe-area-context" "${PODS_CONFIGURATION_BUILD_DIR}/react-native-simple-crypto" "${PODS_CONFIGURATION_BUILD_DIR}/react-native-slider" "${PODS_CONFIGURATION_BUILD_DIR}/react-native-webview" "${PODS_CONFIGURATION_BUILD_DIR}/rn-extensions-share" "${PODS_CONFIGURATION_BUILD_DIR}/rn-fetch-blob" +LIBRARY_SEARCH_PATHS = $(inherited) "${PODS_CONFIGURATION_BUILD_DIR}/BugsnagReactNative" "${PODS_CONFIGURATION_BUILD_DIR}/CocoaAsyncSocket" "${PODS_CONFIGURATION_BUILD_DIR}/DoubleConversion" "${PODS_CONFIGURATION_BUILD_DIR}/EXAV" "${PODS_CONFIGURATION_BUILD_DIR}/EXAppleAuthentication" "${PODS_CONFIGURATION_BUILD_DIR}/EXConstants" "${PODS_CONFIGURATION_BUILD_DIR}/EXFileSystem" "${PODS_CONFIGURATION_BUILD_DIR}/EXHaptics" "${PODS_CONFIGURATION_BUILD_DIR}/EXImageLoader" "${PODS_CONFIGURATION_BUILD_DIR}/EXKeepAwake" "${PODS_CONFIGURATION_BUILD_DIR}/EXLocalAuthentication" "${PODS_CONFIGURATION_BUILD_DIR}/EXPermissions" "${PODS_CONFIGURATION_BUILD_DIR}/EXVideoThumbnails" "${PODS_CONFIGURATION_BUILD_DIR}/EXWebBrowser" "${PODS_CONFIGURATION_BUILD_DIR}/FBReactNativeSpec" "${PODS_CONFIGURATION_BUILD_DIR}/FirebaseCore" "${PODS_CONFIGURATION_BUILD_DIR}/FirebaseCoreDiagnostics" "${PODS_CONFIGURATION_BUILD_DIR}/FirebaseCrashlytics" "${PODS_CONFIGURATION_BUILD_DIR}/FirebaseInstallations" "${PODS_CONFIGURATION_BUILD_DIR}/Flipper" "${PODS_CONFIGURATION_BUILD_DIR}/Flipper-DoubleConversion" "${PODS_CONFIGURATION_BUILD_DIR}/Flipper-Folly" "${PODS_CONFIGURATION_BUILD_DIR}/Flipper-Glog" "${PODS_CONFIGURATION_BUILD_DIR}/Flipper-PeerTalk" "${PODS_CONFIGURATION_BUILD_DIR}/Flipper-RSocket" "${PODS_CONFIGURATION_BUILD_DIR}/FlipperKit" "${PODS_CONFIGURATION_BUILD_DIR}/GoogleDataTransport" "${PODS_CONFIGURATION_BUILD_DIR}/GoogleUtilities" "${PODS_CONFIGURATION_BUILD_DIR}/KeyCommands" "${PODS_CONFIGURATION_BUILD_DIR}/MMKV" "${PODS_CONFIGURATION_BUILD_DIR}/MMKVCore" "${PODS_CONFIGURATION_BUILD_DIR}/PromisesObjC" "${PODS_CONFIGURATION_BUILD_DIR}/RCT-Folly" "${PODS_CONFIGURATION_BUILD_DIR}/RCTTypeSafety" "${PODS_CONFIGURATION_BUILD_DIR}/RNBootSplash" "${PODS_CONFIGURATION_BUILD_DIR}/RNCAsyncStorage" "${PODS_CONFIGURATION_BUILD_DIR}/RNCMaskedView" "${PODS_CONFIGURATION_BUILD_DIR}/RNCPicker" "${PODS_CONFIGURATION_BUILD_DIR}/RNConfigReader" "${PODS_CONFIGURATION_BUILD_DIR}/RNDateTimePicker" "${PODS_CONFIGURATION_BUILD_DIR}/RNDeviceInfo" "${PODS_CONFIGURATION_BUILD_DIR}/RNFBAnalytics" "${PODS_CONFIGURATION_BUILD_DIR}/RNFBApp" "${PODS_CONFIGURATION_BUILD_DIR}/RNFBCrashlytics" "${PODS_CONFIGURATION_BUILD_DIR}/RNFastImage" "${PODS_CONFIGURATION_BUILD_DIR}/RNGestureHandler" "${PODS_CONFIGURATION_BUILD_DIR}/RNImageCropPicker" "${PODS_CONFIGURATION_BUILD_DIR}/RNLocalize" "${PODS_CONFIGURATION_BUILD_DIR}/RNReanimated" "${PODS_CONFIGURATION_BUILD_DIR}/RNRootView" "${PODS_CONFIGURATION_BUILD_DIR}/RNScreens" "${PODS_CONFIGURATION_BUILD_DIR}/RNVectorIcons" "${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-cxxreact" "${PODS_CONFIGURATION_BUILD_DIR}/React-jsi" "${PODS_CONFIGURATION_BUILD_DIR}/React-jsiexecutor" "${PODS_CONFIGURATION_BUILD_DIR}/React-jsinspector" "${PODS_CONFIGURATION_BUILD_DIR}/React-perflogger" "${PODS_CONFIGURATION_BUILD_DIR}/ReactCommon" "${PODS_CONFIGURATION_BUILD_DIR}/ReactNativeART" "${PODS_CONFIGURATION_BUILD_DIR}/SDWebImage" "${PODS_CONFIGURATION_BUILD_DIR}/SDWebImageWebPCoder" "${PODS_CONFIGURATION_BUILD_DIR}/TOCropViewController" "${PODS_CONFIGURATION_BUILD_DIR}/UMAppLoader" "${PODS_CONFIGURATION_BUILD_DIR}/UMCore" "${PODS_CONFIGURATION_BUILD_DIR}/UMPermissionsInterface" "${PODS_CONFIGURATION_BUILD_DIR}/UMReactNativeAdapter" "${PODS_CONFIGURATION_BUILD_DIR}/Yoga" "${PODS_CONFIGURATION_BUILD_DIR}/YogaKit" "${PODS_CONFIGURATION_BUILD_DIR}/glog" "${PODS_CONFIGURATION_BUILD_DIR}/libevent" "${PODS_CONFIGURATION_BUILD_DIR}/libwebp" "${PODS_CONFIGURATION_BUILD_DIR}/nanopb" "${PODS_CONFIGURATION_BUILD_DIR}/react-native-appearance" "${PODS_CONFIGURATION_BUILD_DIR}/react-native-background-timer" "${PODS_CONFIGURATION_BUILD_DIR}/react-native-blur" "${PODS_CONFIGURATION_BUILD_DIR}/react-native-cameraroll" "${PODS_CONFIGURATION_BUILD_DIR}/react-native-cookies" "${PODS_CONFIGURATION_BUILD_DIR}/react-native-document-picker" "${PODS_CONFIGURATION_BUILD_DIR}/react-native-jitsi-meet" "${PODS_CONFIGURATION_BUILD_DIR}/react-native-mmkv-storage" "${PODS_CONFIGURATION_BUILD_DIR}/react-native-netinfo" "${PODS_CONFIGURATION_BUILD_DIR}/react-native-notifications" "${PODS_CONFIGURATION_BUILD_DIR}/react-native-orientation-locker" "${PODS_CONFIGURATION_BUILD_DIR}/react-native-restart" "${PODS_CONFIGURATION_BUILD_DIR}/react-native-safe-area-context" "${PODS_CONFIGURATION_BUILD_DIR}/react-native-simple-crypto" "${PODS_CONFIGURATION_BUILD_DIR}/react-native-slider" "${PODS_CONFIGURATION_BUILD_DIR}/react-native-webview" "${PODS_CONFIGURATION_BUILD_DIR}/rn-extensions-share" "${PODS_CONFIGURATION_BUILD_DIR}/rn-fetch-blob" OTHER_CFLAGS = $(inherited) -fmodule-map-file="${PODS_CONFIGURATION_BUILD_DIR}/YogaKit/YogaKit.modulemap" -fmodule-map-file="${PODS_CONFIGURATION_BUILD_DIR}/react-native-simple-crypto/react_native_simple_crypto.modulemap" -fmodule-map-file="${PODS_ROOT}/Headers/Public/FlipperKit/FlipperKit.modulemap" -fmodule-map-file="${PODS_ROOT}/Headers/Public/React/React-Core.modulemap" -fmodule-map-file="${PODS_ROOT}/Headers/Public/yoga/Yoga.modulemap" -OTHER_LDFLAGS = $(inherited) -ObjC -l"BugsnagReactNative" -l"CocoaAsyncSocket" -l"DoubleConversion" -l"EXAV" -l"EXAppleAuthentication" -l"EXConstants" -l"EXFileSystem" -l"EXHaptics" -l"EXImageLoader" -l"EXKeepAwake" -l"EXLocalAuthentication" -l"EXPermissions" -l"EXVideoThumbnails" -l"EXWebBrowser" -l"FBReactNativeSpec" -l"FirebaseCore" -l"FirebaseCoreDiagnostics" -l"FirebaseCrashlytics" -l"FirebaseInstallations" -l"Flipper" -l"Flipper-DoubleConversion" -l"Flipper-Folly" -l"Flipper-Glog" -l"Flipper-PeerTalk" -l"Flipper-RSocket" -l"FlipperKit" -l"GoogleDataTransport" -l"GoogleDataTransportCCTSupport" -l"GoogleUtilities" -l"KeyCommands" -l"MMKV" -l"MMKVCore" -l"PromisesObjC" -l"RCT-Folly" -l"RCTTypeSafety" -l"RNBootSplash" -l"RNCAsyncStorage" -l"RNCMaskedView" -l"RNCPicker" -l"RNConfigReader" -l"RNDateTimePicker" -l"RNDeviceInfo" -l"RNFBAnalytics" -l"RNFBApp" -l"RNFBCrashlytics" -l"RNFastImage" -l"RNGestureHandler" -l"RNImageCropPicker" -l"RNLocalize" -l"RNReanimated" -l"RNRootView" -l"RNScreens" -l"RNVectorIcons" -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-cxxreact" -l"React-jsi" -l"React-jsiexecutor" -l"React-jsinspector" -l"React-perflogger" -l"ReactCommon" -l"ReactNativeART" -l"ReactNativeUiLib" -l"SDWebImage" -l"SDWebImageWebPCoder" -l"TOCropViewController" -l"UMAppLoader" -l"UMCore" -l"UMPermissionsInterface" -l"UMReactNativeAdapter" -l"Yoga" -l"YogaKit" -l"c++" -l"glog" -l"libevent" -l"libwebp" -l"nanopb" -l"react-native-appearance" -l"react-native-background-timer" -l"react-native-blur" -l"react-native-cameraroll" -l"react-native-cookies" -l"react-native-document-picker" -l"react-native-jitsi-meet" -l"react-native-mmkv-storage" -l"react-native-netinfo" -l"react-native-notifications" -l"react-native-orientation-locker" -l"react-native-restart" -l"react-native-safe-area-context" -l"react-native-simple-crypto" -l"react-native-slider" -l"react-native-webview" -l"rn-extensions-share" -l"rn-fetch-blob" -l"sqlite3" -l"stdc++" -l"z" -framework "AudioToolbox" -framework "CFNetwork" -framework "CoreFoundation" -framework "CoreTelephony" -framework "FIRAnalyticsConnector" -framework "FirebaseAnalytics" -framework "Foundation" -framework "GoogleAppMeasurement" -framework "ImageIO" -framework "JavaScriptCore" -framework "JitsiMeet" -framework "MobileCoreServices" -framework "OpenSSL" -framework "Photos" -framework "Security" -framework "StoreKit" -framework "SystemConfiguration" -framework "UIKit" -framework "WebRTC" -framework "hermes" +OTHER_LDFLAGS = $(inherited) -ObjC -l"BugsnagReactNative" -l"CocoaAsyncSocket" -l"DoubleConversion" -l"EXAV" -l"EXAppleAuthentication" -l"EXConstants" -l"EXFileSystem" -l"EXHaptics" -l"EXImageLoader" -l"EXKeepAwake" -l"EXLocalAuthentication" -l"EXPermissions" -l"EXVideoThumbnails" -l"EXWebBrowser" -l"FBReactNativeSpec" -l"FirebaseCore" -l"FirebaseCoreDiagnostics" -l"FirebaseCrashlytics" -l"FirebaseInstallations" -l"Flipper" -l"Flipper-DoubleConversion" -l"Flipper-Folly" -l"Flipper-Glog" -l"Flipper-PeerTalk" -l"Flipper-RSocket" -l"FlipperKit" -l"GoogleDataTransport" -l"GoogleUtilities" -l"KeyCommands" -l"MMKV" -l"MMKVCore" -l"PromisesObjC" -l"RCT-Folly" -l"RCTTypeSafety" -l"RNBootSplash" -l"RNCAsyncStorage" -l"RNCMaskedView" -l"RNCPicker" -l"RNConfigReader" -l"RNDateTimePicker" -l"RNDeviceInfo" -l"RNFBAnalytics" -l"RNFBApp" -l"RNFBCrashlytics" -l"RNFastImage" -l"RNGestureHandler" -l"RNImageCropPicker" -l"RNLocalize" -l"RNReanimated" -l"RNRootView" -l"RNScreens" -l"RNVectorIcons" -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-cxxreact" -l"React-jsi" -l"React-jsiexecutor" -l"React-jsinspector" -l"React-perflogger" -l"ReactCommon" -l"ReactNativeART" -l"SDWebImage" -l"SDWebImageWebPCoder" -l"TOCropViewController" -l"UMAppLoader" -l"UMCore" -l"UMPermissionsInterface" -l"UMReactNativeAdapter" -l"Yoga" -l"YogaKit" -l"c++" -l"glog" -l"libevent" -l"libwebp" -l"nanopb" -l"react-native-appearance" -l"react-native-background-timer" -l"react-native-blur" -l"react-native-cameraroll" -l"react-native-cookies" -l"react-native-document-picker" -l"react-native-jitsi-meet" -l"react-native-mmkv-storage" -l"react-native-netinfo" -l"react-native-notifications" -l"react-native-orientation-locker" -l"react-native-restart" -l"react-native-safe-area-context" -l"react-native-simple-crypto" -l"react-native-slider" -l"react-native-webview" -l"rn-extensions-share" -l"rn-fetch-blob" -l"sqlite3" -l"stdc++" -l"z" -framework "AudioToolbox" -framework "CFNetwork" -framework "CoreFoundation" -framework "CoreTelephony" -framework "FIRAnalyticsConnector" -framework "FirebaseAnalytics" -framework "Foundation" -framework "GoogleAppMeasurement" -framework "ImageIO" -framework "JavaScriptCore" -framework "JitsiMeet" -framework "MobileCoreServices" -framework "OpenSSL" -framework "Photos" -framework "Security" -framework "StoreKit" -framework "SystemConfiguration" -framework "UIKit" -framework "WebRTC" -framework "hermes" OTHER_SWIFT_FLAGS = $(inherited) -D COCOAPODS -Xcc -fmodule-map-file="${PODS_CONFIGURATION_BUILD_DIR}/YogaKit/YogaKit.modulemap" -Xcc -fmodule-map-file="${PODS_CONFIGURATION_BUILD_DIR}/react-native-simple-crypto/react_native_simple_crypto.modulemap" -Xcc -fmodule-map-file="${PODS_ROOT}/Headers/Public/FlipperKit/FlipperKit.modulemap" -Xcc -fmodule-map-file="${PODS_ROOT}/Headers/Public/React/React-Core.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-NotificationService/Pods-NotificationService.release.xcconfig b/ios/Pods/Target Support Files/Pods-NotificationService/Pods-NotificationService.release.xcconfig index 53fbf15010..0a93f907a0 100644 --- a/ios/Pods/Target Support Files/Pods-NotificationService/Pods-NotificationService.release.xcconfig +++ b/ios/Pods/Target Support Files/Pods-NotificationService/Pods-NotificationService.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}/JitsiMeetSDK/Frameworks" "${PODS_ROOT}/OpenSSL-Universal/Frameworks" "${PODS_ROOT}/hermes-engine/destroot/Library/Frameworks/iphoneos" "${PODS_XCFRAMEWORKS_BUILD_DIR}/OpenSSL" 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/BugsnagReactNative" "${PODS_ROOT}/Headers/Public/CocoaAsyncSocket" "${PODS_ROOT}/Headers/Public/DoubleConversion" "${PODS_ROOT}/Headers/Public/EXAV" "${PODS_ROOT}/Headers/Public/EXAppleAuthentication" "${PODS_ROOT}/Headers/Public/EXConstants" "${PODS_ROOT}/Headers/Public/EXFileSystem" "${PODS_ROOT}/Headers/Public/EXHaptics" "${PODS_ROOT}/Headers/Public/EXImageLoader" "${PODS_ROOT}/Headers/Public/EXKeepAwake" "${PODS_ROOT}/Headers/Public/EXLocalAuthentication" "${PODS_ROOT}/Headers/Public/EXPermissions" "${PODS_ROOT}/Headers/Public/EXVideoThumbnails" "${PODS_ROOT}/Headers/Public/EXWebBrowser" "${PODS_ROOT}/Headers/Public/FBLazyVector" "${PODS_ROOT}/Headers/Public/FBReactNativeSpec" "${PODS_ROOT}/Headers/Public/Firebase" "${PODS_ROOT}/Headers/Public/FirebaseCore" "${PODS_ROOT}/Headers/Public/FirebaseCoreDiagnostics" "${PODS_ROOT}/Headers/Public/FirebaseCrashlytics" "${PODS_ROOT}/Headers/Public/FirebaseInstallations" "${PODS_ROOT}/Headers/Public/Flipper" "${PODS_ROOT}/Headers/Public/Flipper-DoubleConversion" "${PODS_ROOT}/Headers/Public/Flipper-Folly" "${PODS_ROOT}/Headers/Public/Flipper-Glog" "${PODS_ROOT}/Headers/Public/Flipper-PeerTalk" "${PODS_ROOT}/Headers/Public/Flipper-RSocket" "${PODS_ROOT}/Headers/Public/FlipperKit" "${PODS_ROOT}/Headers/Public/GoogleDataTransport" "${PODS_ROOT}/Headers/Public/GoogleDataTransportCCTSupport" "${PODS_ROOT}/Headers/Public/GoogleUtilities" "${PODS_ROOT}/Headers/Public/KeyCommands" "${PODS_ROOT}/Headers/Public/MMKV" "${PODS_ROOT}/Headers/Public/MMKVCore" "${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/RNBootSplash" "${PODS_ROOT}/Headers/Public/RNCAsyncStorage" "${PODS_ROOT}/Headers/Public/RNCMaskedView" "${PODS_ROOT}/Headers/Public/RNCPicker" "${PODS_ROOT}/Headers/Public/RNConfigReader" "${PODS_ROOT}/Headers/Public/RNDateTimePicker" "${PODS_ROOT}/Headers/Public/RNDeviceInfo" "${PODS_ROOT}/Headers/Public/RNFBAnalytics" "${PODS_ROOT}/Headers/Public/RNFBApp" "${PODS_ROOT}/Headers/Public/RNFBCrashlytics" "${PODS_ROOT}/Headers/Public/RNFastImage" "${PODS_ROOT}/Headers/Public/RNGestureHandler" "${PODS_ROOT}/Headers/Public/RNImageCropPicker" "${PODS_ROOT}/Headers/Public/RNLocalize" "${PODS_ROOT}/Headers/Public/RNReanimated" "${PODS_ROOT}/Headers/Public/RNRootView" "${PODS_ROOT}/Headers/Public/RNScreens" "${PODS_ROOT}/Headers/Public/RNVectorIcons" "${PODS_ROOT}/Headers/Public/React-Core" "${PODS_ROOT}/Headers/Public/React-RCTBlob" "${PODS_ROOT}/Headers/Public/React-RCTText" "${PODS_ROOT}/Headers/Public/React-callinvoker" "${PODS_ROOT}/Headers/Public/React-cxxreact" "${PODS_ROOT}/Headers/Public/React-jsi" "${PODS_ROOT}/Headers/Public/React-jsiexecutor" "${PODS_ROOT}/Headers/Public/React-jsinspector" "${PODS_ROOT}/Headers/Public/React-perflogger" "${PODS_ROOT}/Headers/Public/React-runtimeexecutor" "${PODS_ROOT}/Headers/Public/ReactCommon" "${PODS_ROOT}/Headers/Public/ReactNativeART" "${PODS_ROOT}/Headers/Public/ReactNativeUiLib" "${PODS_ROOT}/Headers/Public/SDWebImage" "${PODS_ROOT}/Headers/Public/SDWebImageWebPCoder" "${PODS_ROOT}/Headers/Public/TOCropViewController" "${PODS_ROOT}/Headers/Public/UMAppLoader" "${PODS_ROOT}/Headers/Public/UMBarCodeScannerInterface" "${PODS_ROOT}/Headers/Public/UMCameraInterface" "${PODS_ROOT}/Headers/Public/UMConstantsInterface" "${PODS_ROOT}/Headers/Public/UMCore" "${PODS_ROOT}/Headers/Public/UMFaceDetectorInterface" "${PODS_ROOT}/Headers/Public/UMFileSystemInterface" "${PODS_ROOT}/Headers/Public/UMFontInterface" "${PODS_ROOT}/Headers/Public/UMImageLoaderInterface" "${PODS_ROOT}/Headers/Public/UMPermissionsInterface" "${PODS_ROOT}/Headers/Public/UMReactNativeAdapter" "${PODS_ROOT}/Headers/Public/UMSensorsInterface" "${PODS_ROOT}/Headers/Public/UMTaskManagerInterface" "${PODS_ROOT}/Headers/Public/Yoga" "${PODS_ROOT}/Headers/Public/YogaKit" "${PODS_ROOT}/Headers/Public/glog" "${PODS_ROOT}/Headers/Public/hermes-engine" "${PODS_ROOT}/Headers/Public/libevent" "${PODS_ROOT}/Headers/Public/libwebp" "${PODS_ROOT}/Headers/Public/nanopb" "${PODS_ROOT}/Headers/Public/react-native-appearance" "${PODS_ROOT}/Headers/Public/react-native-background-timer" "${PODS_ROOT}/Headers/Public/react-native-blur" "${PODS_ROOT}/Headers/Public/react-native-cameraroll" "${PODS_ROOT}/Headers/Public/react-native-cookies" "${PODS_ROOT}/Headers/Public/react-native-document-picker" "${PODS_ROOT}/Headers/Public/react-native-jitsi-meet" "${PODS_ROOT}/Headers/Public/react-native-mmkv-storage" "${PODS_ROOT}/Headers/Public/react-native-netinfo" "${PODS_ROOT}/Headers/Public/react-native-notifications" "${PODS_ROOT}/Headers/Public/react-native-orientation-locker" "${PODS_ROOT}/Headers/Public/react-native-restart" "${PODS_ROOT}/Headers/Public/react-native-safe-area-context" "${PODS_ROOT}/Headers/Public/react-native-simple-crypto" "${PODS_ROOT}/Headers/Public/react-native-slider" "${PODS_ROOT}/Headers/Public/react-native-webview" "${PODS_ROOT}/Headers/Public/rn-extensions-share" "${PODS_ROOT}/Headers/Public/rn-fetch-blob" $(inherited) ${PODS_ROOT}/Firebase/CoreOnly/Sources "${PODS_TARGET_SRCROOT}/Sources/FBLPromises/include" "$(PODS_ROOT)/boost-for-react-native" "$(PODS_ROOT)/Headers/Private/React-Core" "$(PODS_TARGET_SRCROOT)/include/" +HEADER_SEARCH_PATHS = $(inherited) "${PODS_ROOT}/Headers/Public" "${PODS_ROOT}/Headers/Public/BugsnagReactNative" "${PODS_ROOT}/Headers/Public/CocoaAsyncSocket" "${PODS_ROOT}/Headers/Public/DoubleConversion" "${PODS_ROOT}/Headers/Public/EXAV" "${PODS_ROOT}/Headers/Public/EXAppleAuthentication" "${PODS_ROOT}/Headers/Public/EXConstants" "${PODS_ROOT}/Headers/Public/EXFileSystem" "${PODS_ROOT}/Headers/Public/EXHaptics" "${PODS_ROOT}/Headers/Public/EXImageLoader" "${PODS_ROOT}/Headers/Public/EXKeepAwake" "${PODS_ROOT}/Headers/Public/EXLocalAuthentication" "${PODS_ROOT}/Headers/Public/EXPermissions" "${PODS_ROOT}/Headers/Public/EXVideoThumbnails" "${PODS_ROOT}/Headers/Public/EXWebBrowser" "${PODS_ROOT}/Headers/Public/FBLazyVector" "${PODS_ROOT}/Headers/Public/FBReactNativeSpec" "${PODS_ROOT}/Headers/Public/Firebase" "${PODS_ROOT}/Headers/Public/FirebaseCore" "${PODS_ROOT}/Headers/Public/FirebaseCoreDiagnostics" "${PODS_ROOT}/Headers/Public/FirebaseCrashlytics" "${PODS_ROOT}/Headers/Public/FirebaseInstallations" "${PODS_ROOT}/Headers/Public/Flipper" "${PODS_ROOT}/Headers/Public/Flipper-DoubleConversion" "${PODS_ROOT}/Headers/Public/Flipper-Folly" "${PODS_ROOT}/Headers/Public/Flipper-Glog" "${PODS_ROOT}/Headers/Public/Flipper-PeerTalk" "${PODS_ROOT}/Headers/Public/Flipper-RSocket" "${PODS_ROOT}/Headers/Public/FlipperKit" "${PODS_ROOT}/Headers/Public/GoogleDataTransport" "${PODS_ROOT}/Headers/Public/GoogleUtilities" "${PODS_ROOT}/Headers/Public/KeyCommands" "${PODS_ROOT}/Headers/Public/MMKV" "${PODS_ROOT}/Headers/Public/MMKVCore" "${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/RNBootSplash" "${PODS_ROOT}/Headers/Public/RNCAsyncStorage" "${PODS_ROOT}/Headers/Public/RNCMaskedView" "${PODS_ROOT}/Headers/Public/RNCPicker" "${PODS_ROOT}/Headers/Public/RNConfigReader" "${PODS_ROOT}/Headers/Public/RNDateTimePicker" "${PODS_ROOT}/Headers/Public/RNDeviceInfo" "${PODS_ROOT}/Headers/Public/RNFBAnalytics" "${PODS_ROOT}/Headers/Public/RNFBApp" "${PODS_ROOT}/Headers/Public/RNFBCrashlytics" "${PODS_ROOT}/Headers/Public/RNFastImage" "${PODS_ROOT}/Headers/Public/RNGestureHandler" "${PODS_ROOT}/Headers/Public/RNImageCropPicker" "${PODS_ROOT}/Headers/Public/RNLocalize" "${PODS_ROOT}/Headers/Public/RNReanimated" "${PODS_ROOT}/Headers/Public/RNRootView" "${PODS_ROOT}/Headers/Public/RNScreens" "${PODS_ROOT}/Headers/Public/RNVectorIcons" "${PODS_ROOT}/Headers/Public/React-Core" "${PODS_ROOT}/Headers/Public/React-RCTBlob" "${PODS_ROOT}/Headers/Public/React-RCTText" "${PODS_ROOT}/Headers/Public/React-callinvoker" "${PODS_ROOT}/Headers/Public/React-cxxreact" "${PODS_ROOT}/Headers/Public/React-jsi" "${PODS_ROOT}/Headers/Public/React-jsiexecutor" "${PODS_ROOT}/Headers/Public/React-jsinspector" "${PODS_ROOT}/Headers/Public/React-perflogger" "${PODS_ROOT}/Headers/Public/React-runtimeexecutor" "${PODS_ROOT}/Headers/Public/ReactCommon" "${PODS_ROOT}/Headers/Public/ReactNativeART" "${PODS_ROOT}/Headers/Public/ReactNativeUiLib" "${PODS_ROOT}/Headers/Public/SDWebImage" "${PODS_ROOT}/Headers/Public/SDWebImageWebPCoder" "${PODS_ROOT}/Headers/Public/TOCropViewController" "${PODS_ROOT}/Headers/Public/UMAppLoader" "${PODS_ROOT}/Headers/Public/UMBarCodeScannerInterface" "${PODS_ROOT}/Headers/Public/UMCameraInterface" "${PODS_ROOT}/Headers/Public/UMConstantsInterface" "${PODS_ROOT}/Headers/Public/UMCore" "${PODS_ROOT}/Headers/Public/UMFaceDetectorInterface" "${PODS_ROOT}/Headers/Public/UMFileSystemInterface" "${PODS_ROOT}/Headers/Public/UMFontInterface" "${PODS_ROOT}/Headers/Public/UMImageLoaderInterface" "${PODS_ROOT}/Headers/Public/UMPermissionsInterface" "${PODS_ROOT}/Headers/Public/UMReactNativeAdapter" "${PODS_ROOT}/Headers/Public/UMSensorsInterface" "${PODS_ROOT}/Headers/Public/UMTaskManagerInterface" "${PODS_ROOT}/Headers/Public/Yoga" "${PODS_ROOT}/Headers/Public/YogaKit" "${PODS_ROOT}/Headers/Public/glog" "${PODS_ROOT}/Headers/Public/hermes-engine" "${PODS_ROOT}/Headers/Public/libevent" "${PODS_ROOT}/Headers/Public/libwebp" "${PODS_ROOT}/Headers/Public/nanopb" "${PODS_ROOT}/Headers/Public/react-native-appearance" "${PODS_ROOT}/Headers/Public/react-native-background-timer" "${PODS_ROOT}/Headers/Public/react-native-blur" "${PODS_ROOT}/Headers/Public/react-native-cameraroll" "${PODS_ROOT}/Headers/Public/react-native-cookies" "${PODS_ROOT}/Headers/Public/react-native-document-picker" "${PODS_ROOT}/Headers/Public/react-native-jitsi-meet" "${PODS_ROOT}/Headers/Public/react-native-mmkv-storage" "${PODS_ROOT}/Headers/Public/react-native-netinfo" "${PODS_ROOT}/Headers/Public/react-native-notifications" "${PODS_ROOT}/Headers/Public/react-native-orientation-locker" "${PODS_ROOT}/Headers/Public/react-native-restart" "${PODS_ROOT}/Headers/Public/react-native-safe-area-context" "${PODS_ROOT}/Headers/Public/react-native-simple-crypto" "${PODS_ROOT}/Headers/Public/react-native-slider" "${PODS_ROOT}/Headers/Public/react-native-webview" "${PODS_ROOT}/Headers/Public/rn-extensions-share" "${PODS_ROOT}/Headers/Public/rn-fetch-blob" $(inherited) ${PODS_ROOT}/Firebase/CoreOnly/Sources "${PODS_TARGET_SRCROOT}/Sources/FBLPromises/include" "$(PODS_ROOT)/boost-for-react-native" "$(PODS_ROOT)/Headers/Private/React-Core" "$(PODS_TARGET_SRCROOT)/include/" LD_RUNPATH_SEARCH_PATHS = $(inherited) '@executable_path/Frameworks' '@loader_path/Frameworks' '@executable_path/../../Frameworks' -LIBRARY_SEARCH_PATHS = $(inherited) "${PODS_CONFIGURATION_BUILD_DIR}/BugsnagReactNative" "${PODS_CONFIGURATION_BUILD_DIR}/CocoaAsyncSocket" "${PODS_CONFIGURATION_BUILD_DIR}/DoubleConversion" "${PODS_CONFIGURATION_BUILD_DIR}/EXAV" "${PODS_CONFIGURATION_BUILD_DIR}/EXAppleAuthentication" "${PODS_CONFIGURATION_BUILD_DIR}/EXConstants" "${PODS_CONFIGURATION_BUILD_DIR}/EXFileSystem" "${PODS_CONFIGURATION_BUILD_DIR}/EXHaptics" "${PODS_CONFIGURATION_BUILD_DIR}/EXImageLoader" "${PODS_CONFIGURATION_BUILD_DIR}/EXKeepAwake" "${PODS_CONFIGURATION_BUILD_DIR}/EXLocalAuthentication" "${PODS_CONFIGURATION_BUILD_DIR}/EXPermissions" "${PODS_CONFIGURATION_BUILD_DIR}/EXVideoThumbnails" "${PODS_CONFIGURATION_BUILD_DIR}/EXWebBrowser" "${PODS_CONFIGURATION_BUILD_DIR}/FBReactNativeSpec" "${PODS_CONFIGURATION_BUILD_DIR}/FirebaseCore" "${PODS_CONFIGURATION_BUILD_DIR}/FirebaseCoreDiagnostics" "${PODS_CONFIGURATION_BUILD_DIR}/FirebaseCrashlytics" "${PODS_CONFIGURATION_BUILD_DIR}/FirebaseInstallations" "${PODS_CONFIGURATION_BUILD_DIR}/GoogleDataTransport" "${PODS_CONFIGURATION_BUILD_DIR}/GoogleDataTransportCCTSupport" "${PODS_CONFIGURATION_BUILD_DIR}/GoogleUtilities" "${PODS_CONFIGURATION_BUILD_DIR}/KeyCommands" "${PODS_CONFIGURATION_BUILD_DIR}/MMKV" "${PODS_CONFIGURATION_BUILD_DIR}/MMKVCore" "${PODS_CONFIGURATION_BUILD_DIR}/PromisesObjC" "${PODS_CONFIGURATION_BUILD_DIR}/RCT-Folly" "${PODS_CONFIGURATION_BUILD_DIR}/RCTTypeSafety" "${PODS_CONFIGURATION_BUILD_DIR}/RNBootSplash" "${PODS_CONFIGURATION_BUILD_DIR}/RNCAsyncStorage" "${PODS_CONFIGURATION_BUILD_DIR}/RNCMaskedView" "${PODS_CONFIGURATION_BUILD_DIR}/RNCPicker" "${PODS_CONFIGURATION_BUILD_DIR}/RNConfigReader" "${PODS_CONFIGURATION_BUILD_DIR}/RNDateTimePicker" "${PODS_CONFIGURATION_BUILD_DIR}/RNDeviceInfo" "${PODS_CONFIGURATION_BUILD_DIR}/RNFBAnalytics" "${PODS_CONFIGURATION_BUILD_DIR}/RNFBApp" "${PODS_CONFIGURATION_BUILD_DIR}/RNFBCrashlytics" "${PODS_CONFIGURATION_BUILD_DIR}/RNFastImage" "${PODS_CONFIGURATION_BUILD_DIR}/RNGestureHandler" "${PODS_CONFIGURATION_BUILD_DIR}/RNImageCropPicker" "${PODS_CONFIGURATION_BUILD_DIR}/RNLocalize" "${PODS_CONFIGURATION_BUILD_DIR}/RNReanimated" "${PODS_CONFIGURATION_BUILD_DIR}/RNRootView" "${PODS_CONFIGURATION_BUILD_DIR}/RNScreens" "${PODS_CONFIGURATION_BUILD_DIR}/RNVectorIcons" "${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-cxxreact" "${PODS_CONFIGURATION_BUILD_DIR}/React-jsi" "${PODS_CONFIGURATION_BUILD_DIR}/React-jsiexecutor" "${PODS_CONFIGURATION_BUILD_DIR}/React-jsinspector" "${PODS_CONFIGURATION_BUILD_DIR}/React-perflogger" "${PODS_CONFIGURATION_BUILD_DIR}/ReactCommon" "${PODS_CONFIGURATION_BUILD_DIR}/ReactNativeART" "${PODS_CONFIGURATION_BUILD_DIR}/ReactNativeUiLib" "${PODS_CONFIGURATION_BUILD_DIR}/SDWebImage" "${PODS_CONFIGURATION_BUILD_DIR}/SDWebImageWebPCoder" "${PODS_CONFIGURATION_BUILD_DIR}/TOCropViewController" "${PODS_CONFIGURATION_BUILD_DIR}/UMAppLoader" "${PODS_CONFIGURATION_BUILD_DIR}/UMCore" "${PODS_CONFIGURATION_BUILD_DIR}/UMPermissionsInterface" "${PODS_CONFIGURATION_BUILD_DIR}/UMReactNativeAdapter" "${PODS_CONFIGURATION_BUILD_DIR}/Yoga" "${PODS_CONFIGURATION_BUILD_DIR}/YogaKit" "${PODS_CONFIGURATION_BUILD_DIR}/glog" "${PODS_CONFIGURATION_BUILD_DIR}/libevent" "${PODS_CONFIGURATION_BUILD_DIR}/libwebp" "${PODS_CONFIGURATION_BUILD_DIR}/nanopb" "${PODS_CONFIGURATION_BUILD_DIR}/react-native-appearance" "${PODS_CONFIGURATION_BUILD_DIR}/react-native-background-timer" "${PODS_CONFIGURATION_BUILD_DIR}/react-native-blur" "${PODS_CONFIGURATION_BUILD_DIR}/react-native-cameraroll" "${PODS_CONFIGURATION_BUILD_DIR}/react-native-cookies" "${PODS_CONFIGURATION_BUILD_DIR}/react-native-document-picker" "${PODS_CONFIGURATION_BUILD_DIR}/react-native-jitsi-meet" "${PODS_CONFIGURATION_BUILD_DIR}/react-native-mmkv-storage" "${PODS_CONFIGURATION_BUILD_DIR}/react-native-netinfo" "${PODS_CONFIGURATION_BUILD_DIR}/react-native-notifications" "${PODS_CONFIGURATION_BUILD_DIR}/react-native-orientation-locker" "${PODS_CONFIGURATION_BUILD_DIR}/react-native-restart" "${PODS_CONFIGURATION_BUILD_DIR}/react-native-safe-area-context" "${PODS_CONFIGURATION_BUILD_DIR}/react-native-simple-crypto" "${PODS_CONFIGURATION_BUILD_DIR}/react-native-slider" "${PODS_CONFIGURATION_BUILD_DIR}/react-native-webview" "${PODS_CONFIGURATION_BUILD_DIR}/rn-extensions-share" "${PODS_CONFIGURATION_BUILD_DIR}/rn-fetch-blob" +LIBRARY_SEARCH_PATHS = $(inherited) "${PODS_CONFIGURATION_BUILD_DIR}/BugsnagReactNative" "${PODS_CONFIGURATION_BUILD_DIR}/CocoaAsyncSocket" "${PODS_CONFIGURATION_BUILD_DIR}/DoubleConversion" "${PODS_CONFIGURATION_BUILD_DIR}/EXAV" "${PODS_CONFIGURATION_BUILD_DIR}/EXAppleAuthentication" "${PODS_CONFIGURATION_BUILD_DIR}/EXConstants" "${PODS_CONFIGURATION_BUILD_DIR}/EXFileSystem" "${PODS_CONFIGURATION_BUILD_DIR}/EXHaptics" "${PODS_CONFIGURATION_BUILD_DIR}/EXImageLoader" "${PODS_CONFIGURATION_BUILD_DIR}/EXKeepAwake" "${PODS_CONFIGURATION_BUILD_DIR}/EXLocalAuthentication" "${PODS_CONFIGURATION_BUILD_DIR}/EXPermissions" "${PODS_CONFIGURATION_BUILD_DIR}/EXVideoThumbnails" "${PODS_CONFIGURATION_BUILD_DIR}/EXWebBrowser" "${PODS_CONFIGURATION_BUILD_DIR}/FBReactNativeSpec" "${PODS_CONFIGURATION_BUILD_DIR}/FirebaseCore" "${PODS_CONFIGURATION_BUILD_DIR}/FirebaseCoreDiagnostics" "${PODS_CONFIGURATION_BUILD_DIR}/FirebaseCrashlytics" "${PODS_CONFIGURATION_BUILD_DIR}/FirebaseInstallations" "${PODS_CONFIGURATION_BUILD_DIR}/GoogleDataTransport" "${PODS_CONFIGURATION_BUILD_DIR}/GoogleUtilities" "${PODS_CONFIGURATION_BUILD_DIR}/KeyCommands" "${PODS_CONFIGURATION_BUILD_DIR}/MMKV" "${PODS_CONFIGURATION_BUILD_DIR}/MMKVCore" "${PODS_CONFIGURATION_BUILD_DIR}/PromisesObjC" "${PODS_CONFIGURATION_BUILD_DIR}/RCT-Folly" "${PODS_CONFIGURATION_BUILD_DIR}/RCTTypeSafety" "${PODS_CONFIGURATION_BUILD_DIR}/RNBootSplash" "${PODS_CONFIGURATION_BUILD_DIR}/RNCAsyncStorage" "${PODS_CONFIGURATION_BUILD_DIR}/RNCMaskedView" "${PODS_CONFIGURATION_BUILD_DIR}/RNCPicker" "${PODS_CONFIGURATION_BUILD_DIR}/RNConfigReader" "${PODS_CONFIGURATION_BUILD_DIR}/RNDateTimePicker" "${PODS_CONFIGURATION_BUILD_DIR}/RNDeviceInfo" "${PODS_CONFIGURATION_BUILD_DIR}/RNFBAnalytics" "${PODS_CONFIGURATION_BUILD_DIR}/RNFBApp" "${PODS_CONFIGURATION_BUILD_DIR}/RNFBCrashlytics" "${PODS_CONFIGURATION_BUILD_DIR}/RNFastImage" "${PODS_CONFIGURATION_BUILD_DIR}/RNGestureHandler" "${PODS_CONFIGURATION_BUILD_DIR}/RNImageCropPicker" "${PODS_CONFIGURATION_BUILD_DIR}/RNLocalize" "${PODS_CONFIGURATION_BUILD_DIR}/RNReanimated" "${PODS_CONFIGURATION_BUILD_DIR}/RNRootView" "${PODS_CONFIGURATION_BUILD_DIR}/RNScreens" "${PODS_CONFIGURATION_BUILD_DIR}/RNVectorIcons" "${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-cxxreact" "${PODS_CONFIGURATION_BUILD_DIR}/React-jsi" "${PODS_CONFIGURATION_BUILD_DIR}/React-jsiexecutor" "${PODS_CONFIGURATION_BUILD_DIR}/React-jsinspector" "${PODS_CONFIGURATION_BUILD_DIR}/React-perflogger" "${PODS_CONFIGURATION_BUILD_DIR}/ReactCommon" "${PODS_CONFIGURATION_BUILD_DIR}/ReactNativeART" "${PODS_CONFIGURATION_BUILD_DIR}/SDWebImage" "${PODS_CONFIGURATION_BUILD_DIR}/SDWebImageWebPCoder" "${PODS_CONFIGURATION_BUILD_DIR}/TOCropViewController" "${PODS_CONFIGURATION_BUILD_DIR}/UMAppLoader" "${PODS_CONFIGURATION_BUILD_DIR}/UMCore" "${PODS_CONFIGURATION_BUILD_DIR}/UMPermissionsInterface" "${PODS_CONFIGURATION_BUILD_DIR}/UMReactNativeAdapter" "${PODS_CONFIGURATION_BUILD_DIR}/Yoga" "${PODS_CONFIGURATION_BUILD_DIR}/YogaKit" "${PODS_CONFIGURATION_BUILD_DIR}/glog" "${PODS_CONFIGURATION_BUILD_DIR}/libevent" "${PODS_CONFIGURATION_BUILD_DIR}/libwebp" "${PODS_CONFIGURATION_BUILD_DIR}/nanopb" "${PODS_CONFIGURATION_BUILD_DIR}/react-native-appearance" "${PODS_CONFIGURATION_BUILD_DIR}/react-native-background-timer" "${PODS_CONFIGURATION_BUILD_DIR}/react-native-blur" "${PODS_CONFIGURATION_BUILD_DIR}/react-native-cameraroll" "${PODS_CONFIGURATION_BUILD_DIR}/react-native-cookies" "${PODS_CONFIGURATION_BUILD_DIR}/react-native-document-picker" "${PODS_CONFIGURATION_BUILD_DIR}/react-native-jitsi-meet" "${PODS_CONFIGURATION_BUILD_DIR}/react-native-mmkv-storage" "${PODS_CONFIGURATION_BUILD_DIR}/react-native-netinfo" "${PODS_CONFIGURATION_BUILD_DIR}/react-native-notifications" "${PODS_CONFIGURATION_BUILD_DIR}/react-native-orientation-locker" "${PODS_CONFIGURATION_BUILD_DIR}/react-native-restart" "${PODS_CONFIGURATION_BUILD_DIR}/react-native-safe-area-context" "${PODS_CONFIGURATION_BUILD_DIR}/react-native-simple-crypto" "${PODS_CONFIGURATION_BUILD_DIR}/react-native-slider" "${PODS_CONFIGURATION_BUILD_DIR}/react-native-webview" "${PODS_CONFIGURATION_BUILD_DIR}/rn-extensions-share" "${PODS_CONFIGURATION_BUILD_DIR}/rn-fetch-blob" OTHER_CFLAGS = $(inherited) -fmodule-map-file="${PODS_CONFIGURATION_BUILD_DIR}/YogaKit/YogaKit.modulemap" -fmodule-map-file="${PODS_CONFIGURATION_BUILD_DIR}/react-native-simple-crypto/react_native_simple_crypto.modulemap" -fmodule-map-file="${PODS_ROOT}/Headers/Public/React/React-Core.modulemap" -fmodule-map-file="${PODS_ROOT}/Headers/Public/yoga/Yoga.modulemap" -OTHER_LDFLAGS = $(inherited) -ObjC -l"BugsnagReactNative" -l"CocoaAsyncSocket" -l"DoubleConversion" -l"EXAV" -l"EXAppleAuthentication" -l"EXConstants" -l"EXFileSystem" -l"EXHaptics" -l"EXImageLoader" -l"EXKeepAwake" -l"EXLocalAuthentication" -l"EXPermissions" -l"EXVideoThumbnails" -l"EXWebBrowser" -l"FBReactNativeSpec" -l"FirebaseCore" -l"FirebaseCoreDiagnostics" -l"FirebaseCrashlytics" -l"FirebaseInstallations" -l"GoogleDataTransport" -l"GoogleDataTransportCCTSupport" -l"GoogleUtilities" -l"KeyCommands" -l"MMKV" -l"MMKVCore" -l"PromisesObjC" -l"RCT-Folly" -l"RCTTypeSafety" -l"RNBootSplash" -l"RNCAsyncStorage" -l"RNCMaskedView" -l"RNCPicker" -l"RNConfigReader" -l"RNDateTimePicker" -l"RNDeviceInfo" -l"RNFBAnalytics" -l"RNFBApp" -l"RNFBCrashlytics" -l"RNFastImage" -l"RNGestureHandler" -l"RNImageCropPicker" -l"RNLocalize" -l"RNReanimated" -l"RNRootView" -l"RNScreens" -l"RNVectorIcons" -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-cxxreact" -l"React-jsi" -l"React-jsiexecutor" -l"React-jsinspector" -l"React-perflogger" -l"ReactCommon" -l"ReactNativeART" -l"ReactNativeUiLib" -l"SDWebImage" -l"SDWebImageWebPCoder" -l"TOCropViewController" -l"UMAppLoader" -l"UMCore" -l"UMPermissionsInterface" -l"UMReactNativeAdapter" -l"Yoga" -l"YogaKit" -l"c++" -l"glog" -l"libevent" -l"libwebp" -l"nanopb" -l"react-native-appearance" -l"react-native-background-timer" -l"react-native-blur" -l"react-native-cameraroll" -l"react-native-cookies" -l"react-native-document-picker" -l"react-native-jitsi-meet" -l"react-native-mmkv-storage" -l"react-native-netinfo" -l"react-native-notifications" -l"react-native-orientation-locker" -l"react-native-restart" -l"react-native-safe-area-context" -l"react-native-simple-crypto" -l"react-native-slider" -l"react-native-webview" -l"rn-extensions-share" -l"rn-fetch-blob" -l"sqlite3" -l"stdc++" -l"z" -framework "AudioToolbox" -framework "CFNetwork" -framework "CoreFoundation" -framework "CoreTelephony" -framework "FIRAnalyticsConnector" -framework "FirebaseAnalytics" -framework "Foundation" -framework "GoogleAppMeasurement" -framework "ImageIO" -framework "JavaScriptCore" -framework "JitsiMeet" -framework "MobileCoreServices" -framework "OpenSSL" -framework "Photos" -framework "Security" -framework "StoreKit" -framework "SystemConfiguration" -framework "UIKit" -framework "WebRTC" -framework "hermes" +OTHER_LDFLAGS = $(inherited) -ObjC -l"BugsnagReactNative" -l"CocoaAsyncSocket" -l"DoubleConversion" -l"EXAV" -l"EXAppleAuthentication" -l"EXConstants" -l"EXFileSystem" -l"EXHaptics" -l"EXImageLoader" -l"EXKeepAwake" -l"EXLocalAuthentication" -l"EXPermissions" -l"EXVideoThumbnails" -l"EXWebBrowser" -l"FBReactNativeSpec" -l"FirebaseCore" -l"FirebaseCoreDiagnostics" -l"FirebaseCrashlytics" -l"FirebaseInstallations" -l"GoogleDataTransport" -l"GoogleUtilities" -l"KeyCommands" -l"MMKV" -l"MMKVCore" -l"PromisesObjC" -l"RCT-Folly" -l"RCTTypeSafety" -l"RNBootSplash" -l"RNCAsyncStorage" -l"RNCMaskedView" -l"RNCPicker" -l"RNConfigReader" -l"RNDateTimePicker" -l"RNDeviceInfo" -l"RNFBAnalytics" -l"RNFBApp" -l"RNFBCrashlytics" -l"RNFastImage" -l"RNGestureHandler" -l"RNImageCropPicker" -l"RNLocalize" -l"RNReanimated" -l"RNRootView" -l"RNScreens" -l"RNVectorIcons" -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-cxxreact" -l"React-jsi" -l"React-jsiexecutor" -l"React-jsinspector" -l"React-perflogger" -l"ReactCommon" -l"ReactNativeART" -l"SDWebImage" -l"SDWebImageWebPCoder" -l"TOCropViewController" -l"UMAppLoader" -l"UMCore" -l"UMPermissionsInterface" -l"UMReactNativeAdapter" -l"Yoga" -l"YogaKit" -l"c++" -l"glog" -l"libevent" -l"libwebp" -l"nanopb" -l"react-native-appearance" -l"react-native-background-timer" -l"react-native-blur" -l"react-native-cameraroll" -l"react-native-cookies" -l"react-native-document-picker" -l"react-native-jitsi-meet" -l"react-native-mmkv-storage" -l"react-native-netinfo" -l"react-native-notifications" -l"react-native-orientation-locker" -l"react-native-restart" -l"react-native-safe-area-context" -l"react-native-simple-crypto" -l"react-native-slider" -l"react-native-webview" -l"rn-extensions-share" -l"rn-fetch-blob" -l"sqlite3" -l"stdc++" -l"z" -framework "AudioToolbox" -framework "CFNetwork" -framework "CoreFoundation" -framework "CoreTelephony" -framework "FIRAnalyticsConnector" -framework "FirebaseAnalytics" -framework "Foundation" -framework "GoogleAppMeasurement" -framework "ImageIO" -framework "JavaScriptCore" -framework "JitsiMeet" -framework "MobileCoreServices" -framework "OpenSSL" -framework "Photos" -framework "Security" -framework "StoreKit" -framework "SystemConfiguration" -framework "UIKit" -framework "WebRTC" -framework "hermes" OTHER_SWIFT_FLAGS = $(inherited) -D COCOAPODS -Xcc -fmodule-map-file="${PODS_CONFIGURATION_BUILD_DIR}/YogaKit/YogaKit.modulemap" -Xcc -fmodule-map-file="${PODS_CONFIGURATION_BUILD_DIR}/react-native-simple-crypto/react_native_simple_crypto.modulemap" -Xcc -fmodule-map-file="${PODS_ROOT}/Headers/Public/React/React-Core.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/Pods/Target Support Files/Pods-ShareRocketChatRN/Pods-ShareRocketChatRN.debug.xcconfig b/ios/Pods/Target Support Files/Pods-ShareRocketChatRN/Pods-ShareRocketChatRN.debug.xcconfig index 9de918d153..11ceeaf37e 100644 --- a/ios/Pods/Target Support Files/Pods-ShareRocketChatRN/Pods-ShareRocketChatRN.debug.xcconfig +++ b/ios/Pods/Target Support Files/Pods-ShareRocketChatRN/Pods-ShareRocketChatRN.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}/GoogleAppMeasurement/Frameworks" "${PODS_ROOT}/OpenSSL-Universal/Frameworks" "${PODS_ROOT}/hermes-engine/destroot/Library/Frameworks/iphoneos" "${PODS_XCFRAMEWORKS_BUILD_DIR}/OpenSSL" 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/BugsnagReactNative" "${PODS_ROOT}/Headers/Public/CocoaAsyncSocket" "${PODS_ROOT}/Headers/Public/DoubleConversion" "${PODS_ROOT}/Headers/Public/EXAV" "${PODS_ROOT}/Headers/Public/EXAppleAuthentication" "${PODS_ROOT}/Headers/Public/EXConstants" "${PODS_ROOT}/Headers/Public/EXFileSystem" "${PODS_ROOT}/Headers/Public/EXHaptics" "${PODS_ROOT}/Headers/Public/EXImageLoader" "${PODS_ROOT}/Headers/Public/EXKeepAwake" "${PODS_ROOT}/Headers/Public/EXLocalAuthentication" "${PODS_ROOT}/Headers/Public/EXPermissions" "${PODS_ROOT}/Headers/Public/EXVideoThumbnails" "${PODS_ROOT}/Headers/Public/EXWebBrowser" "${PODS_ROOT}/Headers/Public/FBLazyVector" "${PODS_ROOT}/Headers/Public/FBReactNativeSpec" "${PODS_ROOT}/Headers/Public/Firebase" "${PODS_ROOT}/Headers/Public/FirebaseCore" "${PODS_ROOT}/Headers/Public/FirebaseCoreDiagnostics" "${PODS_ROOT}/Headers/Public/FirebaseCrashlytics" "${PODS_ROOT}/Headers/Public/FirebaseInstallations" "${PODS_ROOT}/Headers/Public/Flipper" "${PODS_ROOT}/Headers/Public/Flipper-DoubleConversion" "${PODS_ROOT}/Headers/Public/Flipper-Folly" "${PODS_ROOT}/Headers/Public/Flipper-Glog" "${PODS_ROOT}/Headers/Public/Flipper-PeerTalk" "${PODS_ROOT}/Headers/Public/Flipper-RSocket" "${PODS_ROOT}/Headers/Public/FlipperKit" "${PODS_ROOT}/Headers/Public/GoogleDataTransport" "${PODS_ROOT}/Headers/Public/GoogleDataTransportCCTSupport" "${PODS_ROOT}/Headers/Public/GoogleUtilities" "${PODS_ROOT}/Headers/Public/KeyCommands" "${PODS_ROOT}/Headers/Public/MMKV" "${PODS_ROOT}/Headers/Public/MMKVCore" "${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/RNBootSplash" "${PODS_ROOT}/Headers/Public/RNCAsyncStorage" "${PODS_ROOT}/Headers/Public/RNCMaskedView" "${PODS_ROOT}/Headers/Public/RNCPicker" "${PODS_ROOT}/Headers/Public/RNConfigReader" "${PODS_ROOT}/Headers/Public/RNDateTimePicker" "${PODS_ROOT}/Headers/Public/RNDeviceInfo" "${PODS_ROOT}/Headers/Public/RNFBAnalytics" "${PODS_ROOT}/Headers/Public/RNFBApp" "${PODS_ROOT}/Headers/Public/RNFBCrashlytics" "${PODS_ROOT}/Headers/Public/RNFastImage" "${PODS_ROOT}/Headers/Public/RNGestureHandler" "${PODS_ROOT}/Headers/Public/RNImageCropPicker" "${PODS_ROOT}/Headers/Public/RNLocalize" "${PODS_ROOT}/Headers/Public/RNReanimated" "${PODS_ROOT}/Headers/Public/RNRootView" "${PODS_ROOT}/Headers/Public/RNScreens" "${PODS_ROOT}/Headers/Public/RNVectorIcons" "${PODS_ROOT}/Headers/Public/React-Core" "${PODS_ROOT}/Headers/Public/React-RCTBlob" "${PODS_ROOT}/Headers/Public/React-RCTText" "${PODS_ROOT}/Headers/Public/React-callinvoker" "${PODS_ROOT}/Headers/Public/React-cxxreact" "${PODS_ROOT}/Headers/Public/React-jsi" "${PODS_ROOT}/Headers/Public/React-jsiexecutor" "${PODS_ROOT}/Headers/Public/React-jsinspector" "${PODS_ROOT}/Headers/Public/React-perflogger" "${PODS_ROOT}/Headers/Public/React-runtimeexecutor" "${PODS_ROOT}/Headers/Public/ReactCommon" "${PODS_ROOT}/Headers/Public/ReactNativeART" "${PODS_ROOT}/Headers/Public/ReactNativeUiLib" "${PODS_ROOT}/Headers/Public/SDWebImage" "${PODS_ROOT}/Headers/Public/SDWebImageWebPCoder" "${PODS_ROOT}/Headers/Public/TOCropViewController" "${PODS_ROOT}/Headers/Public/UMAppLoader" "${PODS_ROOT}/Headers/Public/UMBarCodeScannerInterface" "${PODS_ROOT}/Headers/Public/UMCameraInterface" "${PODS_ROOT}/Headers/Public/UMConstantsInterface" "${PODS_ROOT}/Headers/Public/UMCore" "${PODS_ROOT}/Headers/Public/UMFaceDetectorInterface" "${PODS_ROOT}/Headers/Public/UMFileSystemInterface" "${PODS_ROOT}/Headers/Public/UMFontInterface" "${PODS_ROOT}/Headers/Public/UMImageLoaderInterface" "${PODS_ROOT}/Headers/Public/UMPermissionsInterface" "${PODS_ROOT}/Headers/Public/UMReactNativeAdapter" "${PODS_ROOT}/Headers/Public/UMSensorsInterface" "${PODS_ROOT}/Headers/Public/UMTaskManagerInterface" "${PODS_ROOT}/Headers/Public/Yoga" "${PODS_ROOT}/Headers/Public/YogaKit" "${PODS_ROOT}/Headers/Public/glog" "${PODS_ROOT}/Headers/Public/hermes-engine" "${PODS_ROOT}/Headers/Public/libevent" "${PODS_ROOT}/Headers/Public/libwebp" "${PODS_ROOT}/Headers/Public/nanopb" "${PODS_ROOT}/Headers/Public/react-native-appearance" "${PODS_ROOT}/Headers/Public/react-native-background-timer" "${PODS_ROOT}/Headers/Public/react-native-blur" "${PODS_ROOT}/Headers/Public/react-native-cameraroll" "${PODS_ROOT}/Headers/Public/react-native-cookies" "${PODS_ROOT}/Headers/Public/react-native-document-picker" "${PODS_ROOT}/Headers/Public/react-native-jitsi-meet" "${PODS_ROOT}/Headers/Public/react-native-mmkv-storage" "${PODS_ROOT}/Headers/Public/react-native-netinfo" "${PODS_ROOT}/Headers/Public/react-native-notifications" "${PODS_ROOT}/Headers/Public/react-native-orientation-locker" "${PODS_ROOT}/Headers/Public/react-native-restart" "${PODS_ROOT}/Headers/Public/react-native-safe-area-context" "${PODS_ROOT}/Headers/Public/react-native-simple-crypto" "${PODS_ROOT}/Headers/Public/react-native-slider" "${PODS_ROOT}/Headers/Public/react-native-webview" "${PODS_ROOT}/Headers/Public/rn-extensions-share" "${PODS_ROOT}/Headers/Public/rn-fetch-blob" $(inherited) ${PODS_ROOT}/Firebase/CoreOnly/Sources "${PODS_TARGET_SRCROOT}/Sources/FBLPromises/include" "$(PODS_ROOT)/boost-for-react-native" "$(PODS_ROOT)/Headers/Private/React-Core" "$(PODS_TARGET_SRCROOT)/include/" +HEADER_SEARCH_PATHS = $(inherited) "${PODS_ROOT}/Headers/Public" "${PODS_ROOT}/Headers/Public/BugsnagReactNative" "${PODS_ROOT}/Headers/Public/CocoaAsyncSocket" "${PODS_ROOT}/Headers/Public/DoubleConversion" "${PODS_ROOT}/Headers/Public/EXAV" "${PODS_ROOT}/Headers/Public/EXAppleAuthentication" "${PODS_ROOT}/Headers/Public/EXConstants" "${PODS_ROOT}/Headers/Public/EXFileSystem" "${PODS_ROOT}/Headers/Public/EXHaptics" "${PODS_ROOT}/Headers/Public/EXImageLoader" "${PODS_ROOT}/Headers/Public/EXKeepAwake" "${PODS_ROOT}/Headers/Public/EXLocalAuthentication" "${PODS_ROOT}/Headers/Public/EXPermissions" "${PODS_ROOT}/Headers/Public/EXVideoThumbnails" "${PODS_ROOT}/Headers/Public/EXWebBrowser" "${PODS_ROOT}/Headers/Public/FBLazyVector" "${PODS_ROOT}/Headers/Public/FBReactNativeSpec" "${PODS_ROOT}/Headers/Public/Firebase" "${PODS_ROOT}/Headers/Public/FirebaseCore" "${PODS_ROOT}/Headers/Public/FirebaseCoreDiagnostics" "${PODS_ROOT}/Headers/Public/FirebaseCrashlytics" "${PODS_ROOT}/Headers/Public/FirebaseInstallations" "${PODS_ROOT}/Headers/Public/Flipper" "${PODS_ROOT}/Headers/Public/Flipper-DoubleConversion" "${PODS_ROOT}/Headers/Public/Flipper-Folly" "${PODS_ROOT}/Headers/Public/Flipper-Glog" "${PODS_ROOT}/Headers/Public/Flipper-PeerTalk" "${PODS_ROOT}/Headers/Public/Flipper-RSocket" "${PODS_ROOT}/Headers/Public/FlipperKit" "${PODS_ROOT}/Headers/Public/GoogleDataTransport" "${PODS_ROOT}/Headers/Public/GoogleUtilities" "${PODS_ROOT}/Headers/Public/KeyCommands" "${PODS_ROOT}/Headers/Public/MMKV" "${PODS_ROOT}/Headers/Public/MMKVCore" "${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/RNBootSplash" "${PODS_ROOT}/Headers/Public/RNCAsyncStorage" "${PODS_ROOT}/Headers/Public/RNCMaskedView" "${PODS_ROOT}/Headers/Public/RNCPicker" "${PODS_ROOT}/Headers/Public/RNConfigReader" "${PODS_ROOT}/Headers/Public/RNDateTimePicker" "${PODS_ROOT}/Headers/Public/RNDeviceInfo" "${PODS_ROOT}/Headers/Public/RNFBAnalytics" "${PODS_ROOT}/Headers/Public/RNFBApp" "${PODS_ROOT}/Headers/Public/RNFBCrashlytics" "${PODS_ROOT}/Headers/Public/RNFastImage" "${PODS_ROOT}/Headers/Public/RNGestureHandler" "${PODS_ROOT}/Headers/Public/RNImageCropPicker" "${PODS_ROOT}/Headers/Public/RNLocalize" "${PODS_ROOT}/Headers/Public/RNReanimated" "${PODS_ROOT}/Headers/Public/RNRootView" "${PODS_ROOT}/Headers/Public/RNScreens" "${PODS_ROOT}/Headers/Public/RNVectorIcons" "${PODS_ROOT}/Headers/Public/React-Core" "${PODS_ROOT}/Headers/Public/React-RCTBlob" "${PODS_ROOT}/Headers/Public/React-RCTText" "${PODS_ROOT}/Headers/Public/React-callinvoker" "${PODS_ROOT}/Headers/Public/React-cxxreact" "${PODS_ROOT}/Headers/Public/React-jsi" "${PODS_ROOT}/Headers/Public/React-jsiexecutor" "${PODS_ROOT}/Headers/Public/React-jsinspector" "${PODS_ROOT}/Headers/Public/React-perflogger" "${PODS_ROOT}/Headers/Public/React-runtimeexecutor" "${PODS_ROOT}/Headers/Public/ReactCommon" "${PODS_ROOT}/Headers/Public/ReactNativeART" "${PODS_ROOT}/Headers/Public/ReactNativeUiLib" "${PODS_ROOT}/Headers/Public/SDWebImage" "${PODS_ROOT}/Headers/Public/SDWebImageWebPCoder" "${PODS_ROOT}/Headers/Public/TOCropViewController" "${PODS_ROOT}/Headers/Public/UMAppLoader" "${PODS_ROOT}/Headers/Public/UMBarCodeScannerInterface" "${PODS_ROOT}/Headers/Public/UMCameraInterface" "${PODS_ROOT}/Headers/Public/UMConstantsInterface" "${PODS_ROOT}/Headers/Public/UMCore" "${PODS_ROOT}/Headers/Public/UMFaceDetectorInterface" "${PODS_ROOT}/Headers/Public/UMFileSystemInterface" "${PODS_ROOT}/Headers/Public/UMFontInterface" "${PODS_ROOT}/Headers/Public/UMImageLoaderInterface" "${PODS_ROOT}/Headers/Public/UMPermissionsInterface" "${PODS_ROOT}/Headers/Public/UMReactNativeAdapter" "${PODS_ROOT}/Headers/Public/UMSensorsInterface" "${PODS_ROOT}/Headers/Public/UMTaskManagerInterface" "${PODS_ROOT}/Headers/Public/Yoga" "${PODS_ROOT}/Headers/Public/YogaKit" "${PODS_ROOT}/Headers/Public/glog" "${PODS_ROOT}/Headers/Public/hermes-engine" "${PODS_ROOT}/Headers/Public/libevent" "${PODS_ROOT}/Headers/Public/libwebp" "${PODS_ROOT}/Headers/Public/nanopb" "${PODS_ROOT}/Headers/Public/react-native-appearance" "${PODS_ROOT}/Headers/Public/react-native-background-timer" "${PODS_ROOT}/Headers/Public/react-native-blur" "${PODS_ROOT}/Headers/Public/react-native-cameraroll" "${PODS_ROOT}/Headers/Public/react-native-cookies" "${PODS_ROOT}/Headers/Public/react-native-document-picker" "${PODS_ROOT}/Headers/Public/react-native-jitsi-meet" "${PODS_ROOT}/Headers/Public/react-native-mmkv-storage" "${PODS_ROOT}/Headers/Public/react-native-netinfo" "${PODS_ROOT}/Headers/Public/react-native-notifications" "${PODS_ROOT}/Headers/Public/react-native-orientation-locker" "${PODS_ROOT}/Headers/Public/react-native-restart" "${PODS_ROOT}/Headers/Public/react-native-safe-area-context" "${PODS_ROOT}/Headers/Public/react-native-simple-crypto" "${PODS_ROOT}/Headers/Public/react-native-slider" "${PODS_ROOT}/Headers/Public/react-native-webview" "${PODS_ROOT}/Headers/Public/rn-extensions-share" "${PODS_ROOT}/Headers/Public/rn-fetch-blob" $(inherited) ${PODS_ROOT}/Firebase/CoreOnly/Sources "${PODS_TARGET_SRCROOT}/Sources/FBLPromises/include" "$(PODS_ROOT)/boost-for-react-native" "$(PODS_ROOT)/Headers/Private/React-Core" "$(PODS_TARGET_SRCROOT)/include/" LD_RUNPATH_SEARCH_PATHS = $(inherited) '@executable_path/Frameworks' '@loader_path/Frameworks' '@executable_path/../../Frameworks' -LIBRARY_SEARCH_PATHS = $(inherited) "${PODS_CONFIGURATION_BUILD_DIR}/BugsnagReactNative" "${PODS_CONFIGURATION_BUILD_DIR}/DoubleConversion" "${PODS_CONFIGURATION_BUILD_DIR}/EXAV" "${PODS_CONFIGURATION_BUILD_DIR}/EXAppleAuthentication" "${PODS_CONFIGURATION_BUILD_DIR}/EXFileSystem" "${PODS_CONFIGURATION_BUILD_DIR}/EXHaptics" "${PODS_CONFIGURATION_BUILD_DIR}/EXImageLoader" "${PODS_CONFIGURATION_BUILD_DIR}/FBReactNativeSpec" "${PODS_CONFIGURATION_BUILD_DIR}/FirebaseCore" "${PODS_CONFIGURATION_BUILD_DIR}/FirebaseCoreDiagnostics" "${PODS_CONFIGURATION_BUILD_DIR}/FirebaseCrashlytics" "${PODS_CONFIGURATION_BUILD_DIR}/FirebaseInstallations" "${PODS_CONFIGURATION_BUILD_DIR}/GoogleDataTransport" "${PODS_CONFIGURATION_BUILD_DIR}/GoogleDataTransportCCTSupport" "${PODS_CONFIGURATION_BUILD_DIR}/GoogleUtilities" "${PODS_CONFIGURATION_BUILD_DIR}/MMKV" "${PODS_CONFIGURATION_BUILD_DIR}/MMKVCore" "${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}/RNConfigReader" "${PODS_CONFIGURATION_BUILD_DIR}/RNDeviceInfo" "${PODS_CONFIGURATION_BUILD_DIR}/RNFBAnalytics" "${PODS_CONFIGURATION_BUILD_DIR}/RNFBApp" "${PODS_CONFIGURATION_BUILD_DIR}/RNFBCrashlytics" "${PODS_CONFIGURATION_BUILD_DIR}/RNFastImage" "${PODS_CONFIGURATION_BUILD_DIR}/RNGestureHandler" "${PODS_CONFIGURATION_BUILD_DIR}/RNLocalize" "${PODS_CONFIGURATION_BUILD_DIR}/RNReanimated" "${PODS_CONFIGURATION_BUILD_DIR}/RNRootView" "${PODS_CONFIGURATION_BUILD_DIR}/RNScreens" "${PODS_CONFIGURATION_BUILD_DIR}/RNVectorIcons" "${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-cxxreact" "${PODS_CONFIGURATION_BUILD_DIR}/React-jsi" "${PODS_CONFIGURATION_BUILD_DIR}/React-jsiexecutor" "${PODS_CONFIGURATION_BUILD_DIR}/React-jsinspector" "${PODS_CONFIGURATION_BUILD_DIR}/React-perflogger" "${PODS_CONFIGURATION_BUILD_DIR}/ReactCommon" "${PODS_CONFIGURATION_BUILD_DIR}/ReactNativeUiLib" "${PODS_CONFIGURATION_BUILD_DIR}/SDWebImage" "${PODS_CONFIGURATION_BUILD_DIR}/SDWebImageWebPCoder" "${PODS_CONFIGURATION_BUILD_DIR}/UMCore" "${PODS_CONFIGURATION_BUILD_DIR}/UMPermissionsInterface" "${PODS_CONFIGURATION_BUILD_DIR}/UMReactNativeAdapter" "${PODS_CONFIGURATION_BUILD_DIR}/Yoga" "${PODS_CONFIGURATION_BUILD_DIR}/glog" "${PODS_CONFIGURATION_BUILD_DIR}/libevent" "${PODS_CONFIGURATION_BUILD_DIR}/libwebp" "${PODS_CONFIGURATION_BUILD_DIR}/nanopb" "${PODS_CONFIGURATION_BUILD_DIR}/react-native-appearance" "${PODS_CONFIGURATION_BUILD_DIR}/react-native-document-picker" "${PODS_CONFIGURATION_BUILD_DIR}/react-native-mmkv-storage" "${PODS_CONFIGURATION_BUILD_DIR}/react-native-orientation-locker" "${PODS_CONFIGURATION_BUILD_DIR}/react-native-safe-area-context" "${PODS_CONFIGURATION_BUILD_DIR}/react-native-simple-crypto" "${PODS_CONFIGURATION_BUILD_DIR}/rn-extensions-share" "${PODS_CONFIGURATION_BUILD_DIR}/rn-fetch-blob" +LIBRARY_SEARCH_PATHS = $(inherited) "${PODS_CONFIGURATION_BUILD_DIR}/BugsnagReactNative" "${PODS_CONFIGURATION_BUILD_DIR}/DoubleConversion" "${PODS_CONFIGURATION_BUILD_DIR}/EXAV" "${PODS_CONFIGURATION_BUILD_DIR}/EXAppleAuthentication" "${PODS_CONFIGURATION_BUILD_DIR}/EXFileSystem" "${PODS_CONFIGURATION_BUILD_DIR}/EXHaptics" "${PODS_CONFIGURATION_BUILD_DIR}/EXImageLoader" "${PODS_CONFIGURATION_BUILD_DIR}/FBReactNativeSpec" "${PODS_CONFIGURATION_BUILD_DIR}/FirebaseCore" "${PODS_CONFIGURATION_BUILD_DIR}/FirebaseCoreDiagnostics" "${PODS_CONFIGURATION_BUILD_DIR}/FirebaseCrashlytics" "${PODS_CONFIGURATION_BUILD_DIR}/FirebaseInstallations" "${PODS_CONFIGURATION_BUILD_DIR}/GoogleDataTransport" "${PODS_CONFIGURATION_BUILD_DIR}/GoogleUtilities" "${PODS_CONFIGURATION_BUILD_DIR}/MMKV" "${PODS_CONFIGURATION_BUILD_DIR}/MMKVCore" "${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}/RNConfigReader" "${PODS_CONFIGURATION_BUILD_DIR}/RNDeviceInfo" "${PODS_CONFIGURATION_BUILD_DIR}/RNFBAnalytics" "${PODS_CONFIGURATION_BUILD_DIR}/RNFBApp" "${PODS_CONFIGURATION_BUILD_DIR}/RNFBCrashlytics" "${PODS_CONFIGURATION_BUILD_DIR}/RNFastImage" "${PODS_CONFIGURATION_BUILD_DIR}/RNGestureHandler" "${PODS_CONFIGURATION_BUILD_DIR}/RNLocalize" "${PODS_CONFIGURATION_BUILD_DIR}/RNReanimated" "${PODS_CONFIGURATION_BUILD_DIR}/RNRootView" "${PODS_CONFIGURATION_BUILD_DIR}/RNScreens" "${PODS_CONFIGURATION_BUILD_DIR}/RNVectorIcons" "${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-cxxreact" "${PODS_CONFIGURATION_BUILD_DIR}/React-jsi" "${PODS_CONFIGURATION_BUILD_DIR}/React-jsiexecutor" "${PODS_CONFIGURATION_BUILD_DIR}/React-jsinspector" "${PODS_CONFIGURATION_BUILD_DIR}/React-perflogger" "${PODS_CONFIGURATION_BUILD_DIR}/ReactCommon" "${PODS_CONFIGURATION_BUILD_DIR}/ReactNativeUiLib" "${PODS_CONFIGURATION_BUILD_DIR}/SDWebImage" "${PODS_CONFIGURATION_BUILD_DIR}/SDWebImageWebPCoder" "${PODS_CONFIGURATION_BUILD_DIR}/UMCore" "${PODS_CONFIGURATION_BUILD_DIR}/UMPermissionsInterface" "${PODS_CONFIGURATION_BUILD_DIR}/UMReactNativeAdapter" "${PODS_CONFIGURATION_BUILD_DIR}/Yoga" "${PODS_CONFIGURATION_BUILD_DIR}/glog" "${PODS_CONFIGURATION_BUILD_DIR}/libevent" "${PODS_CONFIGURATION_BUILD_DIR}/libwebp" "${PODS_CONFIGURATION_BUILD_DIR}/nanopb" "${PODS_CONFIGURATION_BUILD_DIR}/react-native-appearance" "${PODS_CONFIGURATION_BUILD_DIR}/react-native-document-picker" "${PODS_CONFIGURATION_BUILD_DIR}/react-native-mmkv-storage" "${PODS_CONFIGURATION_BUILD_DIR}/react-native-orientation-locker" "${PODS_CONFIGURATION_BUILD_DIR}/react-native-safe-area-context" "${PODS_CONFIGURATION_BUILD_DIR}/react-native-simple-crypto" "${PODS_CONFIGURATION_BUILD_DIR}/rn-extensions-share" "${PODS_CONFIGURATION_BUILD_DIR}/rn-fetch-blob" OTHER_CFLAGS = $(inherited) -fmodule-map-file="${PODS_CONFIGURATION_BUILD_DIR}/react-native-simple-crypto/react_native_simple_crypto.modulemap" -fmodule-map-file="${PODS_ROOT}/Headers/Public/React/React-Core.modulemap" -fmodule-map-file="${PODS_ROOT}/Headers/Public/yoga/Yoga.modulemap" -OTHER_LDFLAGS = $(inherited) -ObjC -l"BugsnagReactNative" -l"DoubleConversion" -l"EXAV" -l"EXAppleAuthentication" -l"EXFileSystem" -l"EXHaptics" -l"EXImageLoader" -l"FBReactNativeSpec" -l"FirebaseCore" -l"FirebaseCoreDiagnostics" -l"FirebaseCrashlytics" -l"FirebaseInstallations" -l"GoogleDataTransport" -l"GoogleDataTransportCCTSupport" -l"GoogleUtilities" -l"MMKV" -l"MMKVCore" -l"PromisesObjC" -l"RCT-Folly" -l"RCTTypeSafety" -l"RNCAsyncStorage" -l"RNCMaskedView" -l"RNConfigReader" -l"RNDeviceInfo" -l"RNFBAnalytics" -l"RNFBApp" -l"RNFBCrashlytics" -l"RNFastImage" -l"RNGestureHandler" -l"RNLocalize" -l"RNReanimated" -l"RNRootView" -l"RNScreens" -l"RNVectorIcons" -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-cxxreact" -l"React-jsi" -l"React-jsiexecutor" -l"React-jsinspector" -l"React-perflogger" -l"ReactCommon" -l"ReactNativeUiLib" -l"SDWebImage" -l"SDWebImageWebPCoder" -l"UMCore" -l"UMPermissionsInterface" -l"UMReactNativeAdapter" -l"Yoga" -l"c++" -l"glog" -l"libevent" -l"libwebp" -l"nanopb" -l"react-native-appearance" -l"react-native-document-picker" -l"react-native-mmkv-storage" -l"react-native-orientation-locker" -l"react-native-safe-area-context" -l"react-native-simple-crypto" -l"rn-extensions-share" -l"rn-fetch-blob" -l"sqlite3" -l"stdc++" -l"z" -framework "AudioToolbox" -framework "CoreFoundation" -framework "CoreTelephony" -framework "FIRAnalyticsConnector" -framework "FirebaseAnalytics" -framework "Foundation" -framework "GoogleAppMeasurement" -framework "ImageIO" -framework "JavaScriptCore" -framework "MobileCoreServices" -framework "OpenSSL" -framework "Security" -framework "StoreKit" -framework "SystemConfiguration" -framework "UIKit" -framework "hermes" +OTHER_LDFLAGS = $(inherited) -ObjC -l"BugsnagReactNative" -l"DoubleConversion" -l"EXAV" -l"EXAppleAuthentication" -l"EXFileSystem" -l"EXHaptics" -l"EXImageLoader" -l"FBReactNativeSpec" -l"FirebaseCore" -l"FirebaseCoreDiagnostics" -l"FirebaseCrashlytics" -l"FirebaseInstallations" -l"GoogleDataTransport" -l"GoogleUtilities" -l"MMKV" -l"MMKVCore" -l"PromisesObjC" -l"RCT-Folly" -l"RCTTypeSafety" -l"RNCAsyncStorage" -l"RNCMaskedView" -l"RNConfigReader" -l"RNDeviceInfo" -l"RNFBAnalytics" -l"RNFBApp" -l"RNFBCrashlytics" -l"RNFastImage" -l"RNGestureHandler" -l"RNLocalize" -l"RNReanimated" -l"RNRootView" -l"RNScreens" -l"RNVectorIcons" -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-cxxreact" -l"React-jsi" -l"React-jsiexecutor" -l"React-jsinspector" -l"React-perflogger" -l"ReactCommon" -l"ReactNativeUiLib" -l"SDWebImage" -l"SDWebImageWebPCoder" -l"UMCore" -l"UMPermissionsInterface" -l"UMReactNativeAdapter" -l"Yoga" -l"c++" -l"glog" -l"libevent" -l"libwebp" -l"nanopb" -l"react-native-appearance" -l"react-native-document-picker" -l"react-native-mmkv-storage" -l"react-native-orientation-locker" -l"react-native-safe-area-context" -l"react-native-simple-crypto" -l"rn-extensions-share" -l"rn-fetch-blob" -l"sqlite3" -l"stdc++" -l"z" -framework "AudioToolbox" -framework "CoreFoundation" -framework "CoreTelephony" -framework "FIRAnalyticsConnector" -framework "FirebaseAnalytics" -framework "Foundation" -framework "GoogleAppMeasurement" -framework "ImageIO" -framework "JavaScriptCore" -framework "MobileCoreServices" -framework "OpenSSL" -framework "Security" -framework "StoreKit" -framework "SystemConfiguration" -framework "UIKit" -framework "hermes" OTHER_SWIFT_FLAGS = $(inherited) -D COCOAPODS -Xcc -fmodule-map-file="${PODS_CONFIGURATION_BUILD_DIR}/react-native-simple-crypto/react_native_simple_crypto.modulemap" -Xcc -fmodule-map-file="${PODS_ROOT}/Headers/Public/React/React-Core.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/Pods/Target Support Files/Pods-ShareRocketChatRN/Pods-ShareRocketChatRN.release.xcconfig b/ios/Pods/Target Support Files/Pods-ShareRocketChatRN/Pods-ShareRocketChatRN.release.xcconfig index 9de918d153..11ceeaf37e 100644 --- a/ios/Pods/Target Support Files/Pods-ShareRocketChatRN/Pods-ShareRocketChatRN.release.xcconfig +++ b/ios/Pods/Target Support Files/Pods-ShareRocketChatRN/Pods-ShareRocketChatRN.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}/OpenSSL-Universal/Frameworks" "${PODS_ROOT}/hermes-engine/destroot/Library/Frameworks/iphoneos" "${PODS_XCFRAMEWORKS_BUILD_DIR}/OpenSSL" 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/BugsnagReactNative" "${PODS_ROOT}/Headers/Public/CocoaAsyncSocket" "${PODS_ROOT}/Headers/Public/DoubleConversion" "${PODS_ROOT}/Headers/Public/EXAV" "${PODS_ROOT}/Headers/Public/EXAppleAuthentication" "${PODS_ROOT}/Headers/Public/EXConstants" "${PODS_ROOT}/Headers/Public/EXFileSystem" "${PODS_ROOT}/Headers/Public/EXHaptics" "${PODS_ROOT}/Headers/Public/EXImageLoader" "${PODS_ROOT}/Headers/Public/EXKeepAwake" "${PODS_ROOT}/Headers/Public/EXLocalAuthentication" "${PODS_ROOT}/Headers/Public/EXPermissions" "${PODS_ROOT}/Headers/Public/EXVideoThumbnails" "${PODS_ROOT}/Headers/Public/EXWebBrowser" "${PODS_ROOT}/Headers/Public/FBLazyVector" "${PODS_ROOT}/Headers/Public/FBReactNativeSpec" "${PODS_ROOT}/Headers/Public/Firebase" "${PODS_ROOT}/Headers/Public/FirebaseCore" "${PODS_ROOT}/Headers/Public/FirebaseCoreDiagnostics" "${PODS_ROOT}/Headers/Public/FirebaseCrashlytics" "${PODS_ROOT}/Headers/Public/FirebaseInstallations" "${PODS_ROOT}/Headers/Public/Flipper" "${PODS_ROOT}/Headers/Public/Flipper-DoubleConversion" "${PODS_ROOT}/Headers/Public/Flipper-Folly" "${PODS_ROOT}/Headers/Public/Flipper-Glog" "${PODS_ROOT}/Headers/Public/Flipper-PeerTalk" "${PODS_ROOT}/Headers/Public/Flipper-RSocket" "${PODS_ROOT}/Headers/Public/FlipperKit" "${PODS_ROOT}/Headers/Public/GoogleDataTransport" "${PODS_ROOT}/Headers/Public/GoogleDataTransportCCTSupport" "${PODS_ROOT}/Headers/Public/GoogleUtilities" "${PODS_ROOT}/Headers/Public/KeyCommands" "${PODS_ROOT}/Headers/Public/MMKV" "${PODS_ROOT}/Headers/Public/MMKVCore" "${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/RNBootSplash" "${PODS_ROOT}/Headers/Public/RNCAsyncStorage" "${PODS_ROOT}/Headers/Public/RNCMaskedView" "${PODS_ROOT}/Headers/Public/RNCPicker" "${PODS_ROOT}/Headers/Public/RNConfigReader" "${PODS_ROOT}/Headers/Public/RNDateTimePicker" "${PODS_ROOT}/Headers/Public/RNDeviceInfo" "${PODS_ROOT}/Headers/Public/RNFBAnalytics" "${PODS_ROOT}/Headers/Public/RNFBApp" "${PODS_ROOT}/Headers/Public/RNFBCrashlytics" "${PODS_ROOT}/Headers/Public/RNFastImage" "${PODS_ROOT}/Headers/Public/RNGestureHandler" "${PODS_ROOT}/Headers/Public/RNImageCropPicker" "${PODS_ROOT}/Headers/Public/RNLocalize" "${PODS_ROOT}/Headers/Public/RNReanimated" "${PODS_ROOT}/Headers/Public/RNRootView" "${PODS_ROOT}/Headers/Public/RNScreens" "${PODS_ROOT}/Headers/Public/RNVectorIcons" "${PODS_ROOT}/Headers/Public/React-Core" "${PODS_ROOT}/Headers/Public/React-RCTBlob" "${PODS_ROOT}/Headers/Public/React-RCTText" "${PODS_ROOT}/Headers/Public/React-callinvoker" "${PODS_ROOT}/Headers/Public/React-cxxreact" "${PODS_ROOT}/Headers/Public/React-jsi" "${PODS_ROOT}/Headers/Public/React-jsiexecutor" "${PODS_ROOT}/Headers/Public/React-jsinspector" "${PODS_ROOT}/Headers/Public/React-perflogger" "${PODS_ROOT}/Headers/Public/React-runtimeexecutor" "${PODS_ROOT}/Headers/Public/ReactCommon" "${PODS_ROOT}/Headers/Public/ReactNativeART" "${PODS_ROOT}/Headers/Public/ReactNativeUiLib" "${PODS_ROOT}/Headers/Public/SDWebImage" "${PODS_ROOT}/Headers/Public/SDWebImageWebPCoder" "${PODS_ROOT}/Headers/Public/TOCropViewController" "${PODS_ROOT}/Headers/Public/UMAppLoader" "${PODS_ROOT}/Headers/Public/UMBarCodeScannerInterface" "${PODS_ROOT}/Headers/Public/UMCameraInterface" "${PODS_ROOT}/Headers/Public/UMConstantsInterface" "${PODS_ROOT}/Headers/Public/UMCore" "${PODS_ROOT}/Headers/Public/UMFaceDetectorInterface" "${PODS_ROOT}/Headers/Public/UMFileSystemInterface" "${PODS_ROOT}/Headers/Public/UMFontInterface" "${PODS_ROOT}/Headers/Public/UMImageLoaderInterface" "${PODS_ROOT}/Headers/Public/UMPermissionsInterface" "${PODS_ROOT}/Headers/Public/UMReactNativeAdapter" "${PODS_ROOT}/Headers/Public/UMSensorsInterface" "${PODS_ROOT}/Headers/Public/UMTaskManagerInterface" "${PODS_ROOT}/Headers/Public/Yoga" "${PODS_ROOT}/Headers/Public/YogaKit" "${PODS_ROOT}/Headers/Public/glog" "${PODS_ROOT}/Headers/Public/hermes-engine" "${PODS_ROOT}/Headers/Public/libevent" "${PODS_ROOT}/Headers/Public/libwebp" "${PODS_ROOT}/Headers/Public/nanopb" "${PODS_ROOT}/Headers/Public/react-native-appearance" "${PODS_ROOT}/Headers/Public/react-native-background-timer" "${PODS_ROOT}/Headers/Public/react-native-blur" "${PODS_ROOT}/Headers/Public/react-native-cameraroll" "${PODS_ROOT}/Headers/Public/react-native-cookies" "${PODS_ROOT}/Headers/Public/react-native-document-picker" "${PODS_ROOT}/Headers/Public/react-native-jitsi-meet" "${PODS_ROOT}/Headers/Public/react-native-mmkv-storage" "${PODS_ROOT}/Headers/Public/react-native-netinfo" "${PODS_ROOT}/Headers/Public/react-native-notifications" "${PODS_ROOT}/Headers/Public/react-native-orientation-locker" "${PODS_ROOT}/Headers/Public/react-native-restart" "${PODS_ROOT}/Headers/Public/react-native-safe-area-context" "${PODS_ROOT}/Headers/Public/react-native-simple-crypto" "${PODS_ROOT}/Headers/Public/react-native-slider" "${PODS_ROOT}/Headers/Public/react-native-webview" "${PODS_ROOT}/Headers/Public/rn-extensions-share" "${PODS_ROOT}/Headers/Public/rn-fetch-blob" $(inherited) ${PODS_ROOT}/Firebase/CoreOnly/Sources "${PODS_TARGET_SRCROOT}/Sources/FBLPromises/include" "$(PODS_ROOT)/boost-for-react-native" "$(PODS_ROOT)/Headers/Private/React-Core" "$(PODS_TARGET_SRCROOT)/include/" +HEADER_SEARCH_PATHS = $(inherited) "${PODS_ROOT}/Headers/Public" "${PODS_ROOT}/Headers/Public/BugsnagReactNative" "${PODS_ROOT}/Headers/Public/CocoaAsyncSocket" "${PODS_ROOT}/Headers/Public/DoubleConversion" "${PODS_ROOT}/Headers/Public/EXAV" "${PODS_ROOT}/Headers/Public/EXAppleAuthentication" "${PODS_ROOT}/Headers/Public/EXConstants" "${PODS_ROOT}/Headers/Public/EXFileSystem" "${PODS_ROOT}/Headers/Public/EXHaptics" "${PODS_ROOT}/Headers/Public/EXImageLoader" "${PODS_ROOT}/Headers/Public/EXKeepAwake" "${PODS_ROOT}/Headers/Public/EXLocalAuthentication" "${PODS_ROOT}/Headers/Public/EXPermissions" "${PODS_ROOT}/Headers/Public/EXVideoThumbnails" "${PODS_ROOT}/Headers/Public/EXWebBrowser" "${PODS_ROOT}/Headers/Public/FBLazyVector" "${PODS_ROOT}/Headers/Public/FBReactNativeSpec" "${PODS_ROOT}/Headers/Public/Firebase" "${PODS_ROOT}/Headers/Public/FirebaseCore" "${PODS_ROOT}/Headers/Public/FirebaseCoreDiagnostics" "${PODS_ROOT}/Headers/Public/FirebaseCrashlytics" "${PODS_ROOT}/Headers/Public/FirebaseInstallations" "${PODS_ROOT}/Headers/Public/Flipper" "${PODS_ROOT}/Headers/Public/Flipper-DoubleConversion" "${PODS_ROOT}/Headers/Public/Flipper-Folly" "${PODS_ROOT}/Headers/Public/Flipper-Glog" "${PODS_ROOT}/Headers/Public/Flipper-PeerTalk" "${PODS_ROOT}/Headers/Public/Flipper-RSocket" "${PODS_ROOT}/Headers/Public/FlipperKit" "${PODS_ROOT}/Headers/Public/GoogleDataTransport" "${PODS_ROOT}/Headers/Public/GoogleUtilities" "${PODS_ROOT}/Headers/Public/KeyCommands" "${PODS_ROOT}/Headers/Public/MMKV" "${PODS_ROOT}/Headers/Public/MMKVCore" "${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/RNBootSplash" "${PODS_ROOT}/Headers/Public/RNCAsyncStorage" "${PODS_ROOT}/Headers/Public/RNCMaskedView" "${PODS_ROOT}/Headers/Public/RNCPicker" "${PODS_ROOT}/Headers/Public/RNConfigReader" "${PODS_ROOT}/Headers/Public/RNDateTimePicker" "${PODS_ROOT}/Headers/Public/RNDeviceInfo" "${PODS_ROOT}/Headers/Public/RNFBAnalytics" "${PODS_ROOT}/Headers/Public/RNFBApp" "${PODS_ROOT}/Headers/Public/RNFBCrashlytics" "${PODS_ROOT}/Headers/Public/RNFastImage" "${PODS_ROOT}/Headers/Public/RNGestureHandler" "${PODS_ROOT}/Headers/Public/RNImageCropPicker" "${PODS_ROOT}/Headers/Public/RNLocalize" "${PODS_ROOT}/Headers/Public/RNReanimated" "${PODS_ROOT}/Headers/Public/RNRootView" "${PODS_ROOT}/Headers/Public/RNScreens" "${PODS_ROOT}/Headers/Public/RNVectorIcons" "${PODS_ROOT}/Headers/Public/React-Core" "${PODS_ROOT}/Headers/Public/React-RCTBlob" "${PODS_ROOT}/Headers/Public/React-RCTText" "${PODS_ROOT}/Headers/Public/React-callinvoker" "${PODS_ROOT}/Headers/Public/React-cxxreact" "${PODS_ROOT}/Headers/Public/React-jsi" "${PODS_ROOT}/Headers/Public/React-jsiexecutor" "${PODS_ROOT}/Headers/Public/React-jsinspector" "${PODS_ROOT}/Headers/Public/React-perflogger" "${PODS_ROOT}/Headers/Public/React-runtimeexecutor" "${PODS_ROOT}/Headers/Public/ReactCommon" "${PODS_ROOT}/Headers/Public/ReactNativeART" "${PODS_ROOT}/Headers/Public/ReactNativeUiLib" "${PODS_ROOT}/Headers/Public/SDWebImage" "${PODS_ROOT}/Headers/Public/SDWebImageWebPCoder" "${PODS_ROOT}/Headers/Public/TOCropViewController" "${PODS_ROOT}/Headers/Public/UMAppLoader" "${PODS_ROOT}/Headers/Public/UMBarCodeScannerInterface" "${PODS_ROOT}/Headers/Public/UMCameraInterface" "${PODS_ROOT}/Headers/Public/UMConstantsInterface" "${PODS_ROOT}/Headers/Public/UMCore" "${PODS_ROOT}/Headers/Public/UMFaceDetectorInterface" "${PODS_ROOT}/Headers/Public/UMFileSystemInterface" "${PODS_ROOT}/Headers/Public/UMFontInterface" "${PODS_ROOT}/Headers/Public/UMImageLoaderInterface" "${PODS_ROOT}/Headers/Public/UMPermissionsInterface" "${PODS_ROOT}/Headers/Public/UMReactNativeAdapter" "${PODS_ROOT}/Headers/Public/UMSensorsInterface" "${PODS_ROOT}/Headers/Public/UMTaskManagerInterface" "${PODS_ROOT}/Headers/Public/Yoga" "${PODS_ROOT}/Headers/Public/YogaKit" "${PODS_ROOT}/Headers/Public/glog" "${PODS_ROOT}/Headers/Public/hermes-engine" "${PODS_ROOT}/Headers/Public/libevent" "${PODS_ROOT}/Headers/Public/libwebp" "${PODS_ROOT}/Headers/Public/nanopb" "${PODS_ROOT}/Headers/Public/react-native-appearance" "${PODS_ROOT}/Headers/Public/react-native-background-timer" "${PODS_ROOT}/Headers/Public/react-native-blur" "${PODS_ROOT}/Headers/Public/react-native-cameraroll" "${PODS_ROOT}/Headers/Public/react-native-cookies" "${PODS_ROOT}/Headers/Public/react-native-document-picker" "${PODS_ROOT}/Headers/Public/react-native-jitsi-meet" "${PODS_ROOT}/Headers/Public/react-native-mmkv-storage" "${PODS_ROOT}/Headers/Public/react-native-netinfo" "${PODS_ROOT}/Headers/Public/react-native-notifications" "${PODS_ROOT}/Headers/Public/react-native-orientation-locker" "${PODS_ROOT}/Headers/Public/react-native-restart" "${PODS_ROOT}/Headers/Public/react-native-safe-area-context" "${PODS_ROOT}/Headers/Public/react-native-simple-crypto" "${PODS_ROOT}/Headers/Public/react-native-slider" "${PODS_ROOT}/Headers/Public/react-native-webview" "${PODS_ROOT}/Headers/Public/rn-extensions-share" "${PODS_ROOT}/Headers/Public/rn-fetch-blob" $(inherited) ${PODS_ROOT}/Firebase/CoreOnly/Sources "${PODS_TARGET_SRCROOT}/Sources/FBLPromises/include" "$(PODS_ROOT)/boost-for-react-native" "$(PODS_ROOT)/Headers/Private/React-Core" "$(PODS_TARGET_SRCROOT)/include/" LD_RUNPATH_SEARCH_PATHS = $(inherited) '@executable_path/Frameworks' '@loader_path/Frameworks' '@executable_path/../../Frameworks' -LIBRARY_SEARCH_PATHS = $(inherited) "${PODS_CONFIGURATION_BUILD_DIR}/BugsnagReactNative" "${PODS_CONFIGURATION_BUILD_DIR}/DoubleConversion" "${PODS_CONFIGURATION_BUILD_DIR}/EXAV" "${PODS_CONFIGURATION_BUILD_DIR}/EXAppleAuthentication" "${PODS_CONFIGURATION_BUILD_DIR}/EXFileSystem" "${PODS_CONFIGURATION_BUILD_DIR}/EXHaptics" "${PODS_CONFIGURATION_BUILD_DIR}/EXImageLoader" "${PODS_CONFIGURATION_BUILD_DIR}/FBReactNativeSpec" "${PODS_CONFIGURATION_BUILD_DIR}/FirebaseCore" "${PODS_CONFIGURATION_BUILD_DIR}/FirebaseCoreDiagnostics" "${PODS_CONFIGURATION_BUILD_DIR}/FirebaseCrashlytics" "${PODS_CONFIGURATION_BUILD_DIR}/FirebaseInstallations" "${PODS_CONFIGURATION_BUILD_DIR}/GoogleDataTransport" "${PODS_CONFIGURATION_BUILD_DIR}/GoogleDataTransportCCTSupport" "${PODS_CONFIGURATION_BUILD_DIR}/GoogleUtilities" "${PODS_CONFIGURATION_BUILD_DIR}/MMKV" "${PODS_CONFIGURATION_BUILD_DIR}/MMKVCore" "${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}/RNConfigReader" "${PODS_CONFIGURATION_BUILD_DIR}/RNDeviceInfo" "${PODS_CONFIGURATION_BUILD_DIR}/RNFBAnalytics" "${PODS_CONFIGURATION_BUILD_DIR}/RNFBApp" "${PODS_CONFIGURATION_BUILD_DIR}/RNFBCrashlytics" "${PODS_CONFIGURATION_BUILD_DIR}/RNFastImage" "${PODS_CONFIGURATION_BUILD_DIR}/RNGestureHandler" "${PODS_CONFIGURATION_BUILD_DIR}/RNLocalize" "${PODS_CONFIGURATION_BUILD_DIR}/RNReanimated" "${PODS_CONFIGURATION_BUILD_DIR}/RNRootView" "${PODS_CONFIGURATION_BUILD_DIR}/RNScreens" "${PODS_CONFIGURATION_BUILD_DIR}/RNVectorIcons" "${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-cxxreact" "${PODS_CONFIGURATION_BUILD_DIR}/React-jsi" "${PODS_CONFIGURATION_BUILD_DIR}/React-jsiexecutor" "${PODS_CONFIGURATION_BUILD_DIR}/React-jsinspector" "${PODS_CONFIGURATION_BUILD_DIR}/React-perflogger" "${PODS_CONFIGURATION_BUILD_DIR}/ReactCommon" "${PODS_CONFIGURATION_BUILD_DIR}/ReactNativeUiLib" "${PODS_CONFIGURATION_BUILD_DIR}/SDWebImage" "${PODS_CONFIGURATION_BUILD_DIR}/SDWebImageWebPCoder" "${PODS_CONFIGURATION_BUILD_DIR}/UMCore" "${PODS_CONFIGURATION_BUILD_DIR}/UMPermissionsInterface" "${PODS_CONFIGURATION_BUILD_DIR}/UMReactNativeAdapter" "${PODS_CONFIGURATION_BUILD_DIR}/Yoga" "${PODS_CONFIGURATION_BUILD_DIR}/glog" "${PODS_CONFIGURATION_BUILD_DIR}/libevent" "${PODS_CONFIGURATION_BUILD_DIR}/libwebp" "${PODS_CONFIGURATION_BUILD_DIR}/nanopb" "${PODS_CONFIGURATION_BUILD_DIR}/react-native-appearance" "${PODS_CONFIGURATION_BUILD_DIR}/react-native-document-picker" "${PODS_CONFIGURATION_BUILD_DIR}/react-native-mmkv-storage" "${PODS_CONFIGURATION_BUILD_DIR}/react-native-orientation-locker" "${PODS_CONFIGURATION_BUILD_DIR}/react-native-safe-area-context" "${PODS_CONFIGURATION_BUILD_DIR}/react-native-simple-crypto" "${PODS_CONFIGURATION_BUILD_DIR}/rn-extensions-share" "${PODS_CONFIGURATION_BUILD_DIR}/rn-fetch-blob" +LIBRARY_SEARCH_PATHS = $(inherited) "${PODS_CONFIGURATION_BUILD_DIR}/BugsnagReactNative" "${PODS_CONFIGURATION_BUILD_DIR}/DoubleConversion" "${PODS_CONFIGURATION_BUILD_DIR}/EXAV" "${PODS_CONFIGURATION_BUILD_DIR}/EXAppleAuthentication" "${PODS_CONFIGURATION_BUILD_DIR}/EXFileSystem" "${PODS_CONFIGURATION_BUILD_DIR}/EXHaptics" "${PODS_CONFIGURATION_BUILD_DIR}/EXImageLoader" "${PODS_CONFIGURATION_BUILD_DIR}/FBReactNativeSpec" "${PODS_CONFIGURATION_BUILD_DIR}/FirebaseCore" "${PODS_CONFIGURATION_BUILD_DIR}/FirebaseCoreDiagnostics" "${PODS_CONFIGURATION_BUILD_DIR}/FirebaseCrashlytics" "${PODS_CONFIGURATION_BUILD_DIR}/FirebaseInstallations" "${PODS_CONFIGURATION_BUILD_DIR}/GoogleDataTransport" "${PODS_CONFIGURATION_BUILD_DIR}/GoogleUtilities" "${PODS_CONFIGURATION_BUILD_DIR}/MMKV" "${PODS_CONFIGURATION_BUILD_DIR}/MMKVCore" "${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}/RNConfigReader" "${PODS_CONFIGURATION_BUILD_DIR}/RNDeviceInfo" "${PODS_CONFIGURATION_BUILD_DIR}/RNFBAnalytics" "${PODS_CONFIGURATION_BUILD_DIR}/RNFBApp" "${PODS_CONFIGURATION_BUILD_DIR}/RNFBCrashlytics" "${PODS_CONFIGURATION_BUILD_DIR}/RNFastImage" "${PODS_CONFIGURATION_BUILD_DIR}/RNGestureHandler" "${PODS_CONFIGURATION_BUILD_DIR}/RNLocalize" "${PODS_CONFIGURATION_BUILD_DIR}/RNReanimated" "${PODS_CONFIGURATION_BUILD_DIR}/RNRootView" "${PODS_CONFIGURATION_BUILD_DIR}/RNScreens" "${PODS_CONFIGURATION_BUILD_DIR}/RNVectorIcons" "${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-cxxreact" "${PODS_CONFIGURATION_BUILD_DIR}/React-jsi" "${PODS_CONFIGURATION_BUILD_DIR}/React-jsiexecutor" "${PODS_CONFIGURATION_BUILD_DIR}/React-jsinspector" "${PODS_CONFIGURATION_BUILD_DIR}/React-perflogger" "${PODS_CONFIGURATION_BUILD_DIR}/ReactCommon" "${PODS_CONFIGURATION_BUILD_DIR}/ReactNativeUiLib" "${PODS_CONFIGURATION_BUILD_DIR}/SDWebImage" "${PODS_CONFIGURATION_BUILD_DIR}/SDWebImageWebPCoder" "${PODS_CONFIGURATION_BUILD_DIR}/UMCore" "${PODS_CONFIGURATION_BUILD_DIR}/UMPermissionsInterface" "${PODS_CONFIGURATION_BUILD_DIR}/UMReactNativeAdapter" "${PODS_CONFIGURATION_BUILD_DIR}/Yoga" "${PODS_CONFIGURATION_BUILD_DIR}/glog" "${PODS_CONFIGURATION_BUILD_DIR}/libevent" "${PODS_CONFIGURATION_BUILD_DIR}/libwebp" "${PODS_CONFIGURATION_BUILD_DIR}/nanopb" "${PODS_CONFIGURATION_BUILD_DIR}/react-native-appearance" "${PODS_CONFIGURATION_BUILD_DIR}/react-native-document-picker" "${PODS_CONFIGURATION_BUILD_DIR}/react-native-mmkv-storage" "${PODS_CONFIGURATION_BUILD_DIR}/react-native-orientation-locker" "${PODS_CONFIGURATION_BUILD_DIR}/react-native-safe-area-context" "${PODS_CONFIGURATION_BUILD_DIR}/react-native-simple-crypto" "${PODS_CONFIGURATION_BUILD_DIR}/rn-extensions-share" "${PODS_CONFIGURATION_BUILD_DIR}/rn-fetch-blob" OTHER_CFLAGS = $(inherited) -fmodule-map-file="${PODS_CONFIGURATION_BUILD_DIR}/react-native-simple-crypto/react_native_simple_crypto.modulemap" -fmodule-map-file="${PODS_ROOT}/Headers/Public/React/React-Core.modulemap" -fmodule-map-file="${PODS_ROOT}/Headers/Public/yoga/Yoga.modulemap" -OTHER_LDFLAGS = $(inherited) -ObjC -l"BugsnagReactNative" -l"DoubleConversion" -l"EXAV" -l"EXAppleAuthentication" -l"EXFileSystem" -l"EXHaptics" -l"EXImageLoader" -l"FBReactNativeSpec" -l"FirebaseCore" -l"FirebaseCoreDiagnostics" -l"FirebaseCrashlytics" -l"FirebaseInstallations" -l"GoogleDataTransport" -l"GoogleDataTransportCCTSupport" -l"GoogleUtilities" -l"MMKV" -l"MMKVCore" -l"PromisesObjC" -l"RCT-Folly" -l"RCTTypeSafety" -l"RNCAsyncStorage" -l"RNCMaskedView" -l"RNConfigReader" -l"RNDeviceInfo" -l"RNFBAnalytics" -l"RNFBApp" -l"RNFBCrashlytics" -l"RNFastImage" -l"RNGestureHandler" -l"RNLocalize" -l"RNReanimated" -l"RNRootView" -l"RNScreens" -l"RNVectorIcons" -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-cxxreact" -l"React-jsi" -l"React-jsiexecutor" -l"React-jsinspector" -l"React-perflogger" -l"ReactCommon" -l"ReactNativeUiLib" -l"SDWebImage" -l"SDWebImageWebPCoder" -l"UMCore" -l"UMPermissionsInterface" -l"UMReactNativeAdapter" -l"Yoga" -l"c++" -l"glog" -l"libevent" -l"libwebp" -l"nanopb" -l"react-native-appearance" -l"react-native-document-picker" -l"react-native-mmkv-storage" -l"react-native-orientation-locker" -l"react-native-safe-area-context" -l"react-native-simple-crypto" -l"rn-extensions-share" -l"rn-fetch-blob" -l"sqlite3" -l"stdc++" -l"z" -framework "AudioToolbox" -framework "CoreFoundation" -framework "CoreTelephony" -framework "FIRAnalyticsConnector" -framework "FirebaseAnalytics" -framework "Foundation" -framework "GoogleAppMeasurement" -framework "ImageIO" -framework "JavaScriptCore" -framework "MobileCoreServices" -framework "OpenSSL" -framework "Security" -framework "StoreKit" -framework "SystemConfiguration" -framework "UIKit" -framework "hermes" +OTHER_LDFLAGS = $(inherited) -ObjC -l"BugsnagReactNative" -l"DoubleConversion" -l"EXAV" -l"EXAppleAuthentication" -l"EXFileSystem" -l"EXHaptics" -l"EXImageLoader" -l"FBReactNativeSpec" -l"FirebaseCore" -l"FirebaseCoreDiagnostics" -l"FirebaseCrashlytics" -l"FirebaseInstallations" -l"GoogleDataTransport" -l"GoogleUtilities" -l"MMKV" -l"MMKVCore" -l"PromisesObjC" -l"RCT-Folly" -l"RCTTypeSafety" -l"RNCAsyncStorage" -l"RNCMaskedView" -l"RNConfigReader" -l"RNDeviceInfo" -l"RNFBAnalytics" -l"RNFBApp" -l"RNFBCrashlytics" -l"RNFastImage" -l"RNGestureHandler" -l"RNLocalize" -l"RNReanimated" -l"RNRootView" -l"RNScreens" -l"RNVectorIcons" -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-cxxreact" -l"React-jsi" -l"React-jsiexecutor" -l"React-jsinspector" -l"React-perflogger" -l"ReactCommon" -l"ReactNativeUiLib" -l"SDWebImage" -l"SDWebImageWebPCoder" -l"UMCore" -l"UMPermissionsInterface" -l"UMReactNativeAdapter" -l"Yoga" -l"c++" -l"glog" -l"libevent" -l"libwebp" -l"nanopb" -l"react-native-appearance" -l"react-native-document-picker" -l"react-native-mmkv-storage" -l"react-native-orientation-locker" -l"react-native-safe-area-context" -l"react-native-simple-crypto" -l"rn-extensions-share" -l"rn-fetch-blob" -l"sqlite3" -l"stdc++" -l"z" -framework "AudioToolbox" -framework "CoreFoundation" -framework "CoreTelephony" -framework "FIRAnalyticsConnector" -framework "FirebaseAnalytics" -framework "Foundation" -framework "GoogleAppMeasurement" -framework "ImageIO" -framework "JavaScriptCore" -framework "MobileCoreServices" -framework "OpenSSL" -framework "Security" -framework "StoreKit" -framework "SystemConfiguration" -framework "UIKit" -framework "hermes" OTHER_SWIFT_FLAGS = $(inherited) -D COCOAPODS -Xcc -fmodule-map-file="${PODS_CONFIGURATION_BUILD_DIR}/react-native-simple-crypto/react_native_simple_crypto.modulemap" -Xcc -fmodule-map-file="${PODS_ROOT}/Headers/Public/React/React-Core.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/Pods/Target Support Files/Pods-defaults-Rocket.Chat/Pods-defaults-Rocket.Chat-acknowledgements.markdown b/ios/Pods/Target Support Files/Pods-defaults-Rocket.Chat/Pods-defaults-Rocket.Chat-acknowledgements.markdown index e6fbf305d0..208bf69857 100644 --- a/ios/Pods/Target Support Files/Pods-defaults-Rocket.Chat/Pods-defaults-Rocket.Chat-acknowledgements.markdown +++ b/ios/Pods/Target Support Files/Pods-defaults-Rocket.Chat/Pods-defaults-Rocket.Chat-acknowledgements.markdown @@ -255,7 +255,7 @@ OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. same "printed page" as the copyright notice for easier identification within third-party archives. - Copyright [yyyy] [name of copyright owner] + Copyright 2020 Firebase, Inc. Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. @@ -465,7 +465,7 @@ Copyright 2020 Google same "printed page" as the copyright notice for easier identification within third-party archives. - Copyright [yyyy] [name of copyright owner] + Copyright 2020 Firebase, Inc. Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. @@ -671,7 +671,7 @@ Copyright 2020 Google same "printed page" as the copyright notice for easier identification within third-party archives. - Copyright [yyyy] [name of copyright owner] + Copyright 2020 Firebase, Inc. Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. @@ -1111,7 +1111,7 @@ WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. same "printed page" as the copyright notice for easier identification within third-party archives. - Copyright [yyyy] [name of copyright owner] + Copyright 2020 Firebase, Inc. Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. @@ -1900,213 +1900,7 @@ Copyright 2020 Google 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. - - -## GoogleDataTransportCCTSupport - - - 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] + Copyright 2020 Firebase, Inc. Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. @@ -2762,6 +2556,10 @@ freely, subject to the following restrictions: 3. This notice may not be removed or altered from any source distribution. +Open Source Software Licensed Under the BSD 3-Clause License: +---------------------------------------------------------------------------------------- +1. pybind11 v2.5.0 +Copyright (c) 2016 Wenzel Jakob <wenzel.jakob@epfl.ch>, All rights reserved. Terms of the BSD 3-Clause License: -------------------------------------------------------------------- @@ -3825,7 +3623,7 @@ SOFTWARE. ## SDWebImage -Copyright (c) 2009-2018 Olivier Poitrey rs@dailymotion.com +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 diff --git a/ios/Pods/Target Support Files/Pods-defaults-Rocket.Chat/Pods-defaults-Rocket.Chat-acknowledgements.plist b/ios/Pods/Target Support Files/Pods-defaults-Rocket.Chat/Pods-defaults-Rocket.Chat-acknowledgements.plist index 66ae992be2..8aadeed0ec 100644 --- a/ios/Pods/Target Support Files/Pods-defaults-Rocket.Chat/Pods-defaults-Rocket.Chat-acknowledgements.plist +++ b/ios/Pods/Target Support Files/Pods-defaults-Rocket.Chat/Pods-defaults-Rocket.Chat-acknowledgements.plist @@ -284,7 +284,7 @@ OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. same "printed page" as the copyright notice for easier identification within third-party archives. - Copyright [yyyy] [name of copyright owner] + Copyright 2020 Firebase, Inc. Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. @@ -506,7 +506,7 @@ OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. same "printed page" as the copyright notice for easier identification within third-party archives. - Copyright [yyyy] [name of copyright owner] + Copyright 2020 Firebase, Inc. Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. @@ -718,7 +718,7 @@ OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. same "printed page" as the copyright notice for easier identification within third-party archives. - Copyright [yyyy] [name of copyright owner] + Copyright 2020 Firebase, Inc. Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. @@ -1170,7 +1170,7 @@ WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. same "printed page" as the copyright notice for easier identification within third-party archives. - Copyright [yyyy] [name of copyright owner] + Copyright 2020 Firebase, Inc. Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. @@ -2013,7 +2013,7 @@ SOFTWARE. same "printed page" as the copyright notice for easier identification within third-party archives. - Copyright [yyyy] [name of copyright owner] + Copyright 2020 Firebase, Inc. Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. @@ -2227,218 +2227,6 @@ SOFTWARE. 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. -</string> - <key>License</key> - <string>Apache</string> - <key>Title</key> - <string>GoogleDataTransportCCTSupport</string> - <key>Type</key> - <string>PSGroupSpecifier</string> - </dict> - <dict> - <key>FooterText</key> - <string> - 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 @@ -2905,6 +2693,10 @@ freely, subject to the following restrictions: 3. This notice may not be removed or altered from any source distribution. +Open Source Software Licensed Under the BSD 3-Clause License: +---------------------------------------------------------------------------------------- +1. pybind11 v2.5.0 +Copyright (c) 2016 Wenzel Jakob <wenzel.jakob@epfl.ch>, All rights reserved. Terms of the BSD 3-Clause License: -------------------------------------------------------------------- @@ -4106,7 +3898,7 @@ SOFTWARE.</string> </dict> <dict> <key>FooterText</key> - <string>Copyright (c) 2009-2018 Olivier Poitrey rs@dailymotion.com + <string>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 diff --git a/ios/Pods/Target Support Files/Pods-defaults-Rocket.Chat/Pods-defaults-Rocket.Chat.debug.xcconfig b/ios/Pods/Target Support Files/Pods-defaults-Rocket.Chat/Pods-defaults-Rocket.Chat.debug.xcconfig index 7ab0794938..78ed72cf7a 100644 --- a/ios/Pods/Target Support Files/Pods-defaults-Rocket.Chat/Pods-defaults-Rocket.Chat.debug.xcconfig +++ b/ios/Pods/Target Support Files/Pods-defaults-Rocket.Chat/Pods-defaults-Rocket.Chat.debug.xcconfig @@ -4,11 +4,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}/JitsiMeetSDK/Frameworks" "${PODS_ROOT}/OpenSSL-Universal/Frameworks" "${PODS_ROOT}/hermes-engine/destroot/Library/Frameworks/iphoneos" "${PODS_XCFRAMEWORKS_BUILD_DIR}/OpenSSL" 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/BugsnagReactNative" "${PODS_ROOT}/Headers/Public/CocoaAsyncSocket" "${PODS_ROOT}/Headers/Public/DoubleConversion" "${PODS_ROOT}/Headers/Public/EXAV" "${PODS_ROOT}/Headers/Public/EXAppleAuthentication" "${PODS_ROOT}/Headers/Public/EXConstants" "${PODS_ROOT}/Headers/Public/EXFileSystem" "${PODS_ROOT}/Headers/Public/EXHaptics" "${PODS_ROOT}/Headers/Public/EXImageLoader" "${PODS_ROOT}/Headers/Public/EXKeepAwake" "${PODS_ROOT}/Headers/Public/EXLocalAuthentication" "${PODS_ROOT}/Headers/Public/EXPermissions" "${PODS_ROOT}/Headers/Public/EXVideoThumbnails" "${PODS_ROOT}/Headers/Public/EXWebBrowser" "${PODS_ROOT}/Headers/Public/FBLazyVector" "${PODS_ROOT}/Headers/Public/FBReactNativeSpec" "${PODS_ROOT}/Headers/Public/Firebase" "${PODS_ROOT}/Headers/Public/FirebaseCore" "${PODS_ROOT}/Headers/Public/FirebaseCoreDiagnostics" "${PODS_ROOT}/Headers/Public/FirebaseCrashlytics" "${PODS_ROOT}/Headers/Public/FirebaseInstallations" "${PODS_ROOT}/Headers/Public/Flipper" "${PODS_ROOT}/Headers/Public/Flipper-DoubleConversion" "${PODS_ROOT}/Headers/Public/Flipper-Folly" "${PODS_ROOT}/Headers/Public/Flipper-Glog" "${PODS_ROOT}/Headers/Public/Flipper-PeerTalk" "${PODS_ROOT}/Headers/Public/Flipper-RSocket" "${PODS_ROOT}/Headers/Public/FlipperKit" "${PODS_ROOT}/Headers/Public/GoogleDataTransport" "${PODS_ROOT}/Headers/Public/GoogleDataTransportCCTSupport" "${PODS_ROOT}/Headers/Public/GoogleUtilities" "${PODS_ROOT}/Headers/Public/KeyCommands" "${PODS_ROOT}/Headers/Public/MMKV" "${PODS_ROOT}/Headers/Public/MMKVCore" "${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/RNBootSplash" "${PODS_ROOT}/Headers/Public/RNCAsyncStorage" "${PODS_ROOT}/Headers/Public/RNCMaskedView" "${PODS_ROOT}/Headers/Public/RNCPicker" "${PODS_ROOT}/Headers/Public/RNConfigReader" "${PODS_ROOT}/Headers/Public/RNDateTimePicker" "${PODS_ROOT}/Headers/Public/RNDeviceInfo" "${PODS_ROOT}/Headers/Public/RNFBAnalytics" "${PODS_ROOT}/Headers/Public/RNFBApp" "${PODS_ROOT}/Headers/Public/RNFBCrashlytics" "${PODS_ROOT}/Headers/Public/RNFastImage" "${PODS_ROOT}/Headers/Public/RNGestureHandler" "${PODS_ROOT}/Headers/Public/RNImageCropPicker" "${PODS_ROOT}/Headers/Public/RNLocalize" "${PODS_ROOT}/Headers/Public/RNReanimated" "${PODS_ROOT}/Headers/Public/RNRootView" "${PODS_ROOT}/Headers/Public/RNScreens" "${PODS_ROOT}/Headers/Public/RNVectorIcons" "${PODS_ROOT}/Headers/Public/React-Core" "${PODS_ROOT}/Headers/Public/React-RCTBlob" "${PODS_ROOT}/Headers/Public/React-RCTText" "${PODS_ROOT}/Headers/Public/React-callinvoker" "${PODS_ROOT}/Headers/Public/React-cxxreact" "${PODS_ROOT}/Headers/Public/React-jsi" "${PODS_ROOT}/Headers/Public/React-jsiexecutor" "${PODS_ROOT}/Headers/Public/React-jsinspector" "${PODS_ROOT}/Headers/Public/React-perflogger" "${PODS_ROOT}/Headers/Public/React-runtimeexecutor" "${PODS_ROOT}/Headers/Public/ReactCommon" "${PODS_ROOT}/Headers/Public/ReactNativeART" "${PODS_ROOT}/Headers/Public/ReactNativeUiLib" "${PODS_ROOT}/Headers/Public/SDWebImage" "${PODS_ROOT}/Headers/Public/SDWebImageWebPCoder" "${PODS_ROOT}/Headers/Public/TOCropViewController" "${PODS_ROOT}/Headers/Public/UMAppLoader" "${PODS_ROOT}/Headers/Public/UMBarCodeScannerInterface" "${PODS_ROOT}/Headers/Public/UMCameraInterface" "${PODS_ROOT}/Headers/Public/UMConstantsInterface" "${PODS_ROOT}/Headers/Public/UMCore" "${PODS_ROOT}/Headers/Public/UMFaceDetectorInterface" "${PODS_ROOT}/Headers/Public/UMFileSystemInterface" "${PODS_ROOT}/Headers/Public/UMFontInterface" "${PODS_ROOT}/Headers/Public/UMImageLoaderInterface" "${PODS_ROOT}/Headers/Public/UMPermissionsInterface" "${PODS_ROOT}/Headers/Public/UMReactNativeAdapter" "${PODS_ROOT}/Headers/Public/UMSensorsInterface" "${PODS_ROOT}/Headers/Public/UMTaskManagerInterface" "${PODS_ROOT}/Headers/Public/Yoga" "${PODS_ROOT}/Headers/Public/YogaKit" "${PODS_ROOT}/Headers/Public/glog" "${PODS_ROOT}/Headers/Public/hermes-engine" "${PODS_ROOT}/Headers/Public/libevent" "${PODS_ROOT}/Headers/Public/libwebp" "${PODS_ROOT}/Headers/Public/nanopb" "${PODS_ROOT}/Headers/Public/react-native-appearance" "${PODS_ROOT}/Headers/Public/react-native-background-timer" "${PODS_ROOT}/Headers/Public/react-native-blur" "${PODS_ROOT}/Headers/Public/react-native-cameraroll" "${PODS_ROOT}/Headers/Public/react-native-cookies" "${PODS_ROOT}/Headers/Public/react-native-document-picker" "${PODS_ROOT}/Headers/Public/react-native-jitsi-meet" "${PODS_ROOT}/Headers/Public/react-native-mmkv-storage" "${PODS_ROOT}/Headers/Public/react-native-netinfo" "${PODS_ROOT}/Headers/Public/react-native-notifications" "${PODS_ROOT}/Headers/Public/react-native-orientation-locker" "${PODS_ROOT}/Headers/Public/react-native-restart" "${PODS_ROOT}/Headers/Public/react-native-safe-area-context" "${PODS_ROOT}/Headers/Public/react-native-simple-crypto" "${PODS_ROOT}/Headers/Public/react-native-slider" "${PODS_ROOT}/Headers/Public/react-native-webview" "${PODS_ROOT}/Headers/Public/rn-extensions-share" "${PODS_ROOT}/Headers/Public/rn-fetch-blob" $(inherited) ${PODS_ROOT}/Firebase/CoreOnly/Sources "${PODS_TARGET_SRCROOT}/Sources/FBLPromises/include" "$(PODS_ROOT)/boost-for-react-native" "$(PODS_ROOT)/Headers/Private/React-Core" "$(PODS_TARGET_SRCROOT)/include/" +HEADER_SEARCH_PATHS = $(inherited) "${PODS_ROOT}/Headers/Public" "${PODS_ROOT}/Headers/Public/BugsnagReactNative" "${PODS_ROOT}/Headers/Public/CocoaAsyncSocket" "${PODS_ROOT}/Headers/Public/DoubleConversion" "${PODS_ROOT}/Headers/Public/EXAV" "${PODS_ROOT}/Headers/Public/EXAppleAuthentication" "${PODS_ROOT}/Headers/Public/EXConstants" "${PODS_ROOT}/Headers/Public/EXFileSystem" "${PODS_ROOT}/Headers/Public/EXHaptics" "${PODS_ROOT}/Headers/Public/EXImageLoader" "${PODS_ROOT}/Headers/Public/EXKeepAwake" "${PODS_ROOT}/Headers/Public/EXLocalAuthentication" "${PODS_ROOT}/Headers/Public/EXPermissions" "${PODS_ROOT}/Headers/Public/EXVideoThumbnails" "${PODS_ROOT}/Headers/Public/EXWebBrowser" "${PODS_ROOT}/Headers/Public/FBLazyVector" "${PODS_ROOT}/Headers/Public/FBReactNativeSpec" "${PODS_ROOT}/Headers/Public/Firebase" "${PODS_ROOT}/Headers/Public/FirebaseCore" "${PODS_ROOT}/Headers/Public/FirebaseCoreDiagnostics" "${PODS_ROOT}/Headers/Public/FirebaseCrashlytics" "${PODS_ROOT}/Headers/Public/FirebaseInstallations" "${PODS_ROOT}/Headers/Public/Flipper" "${PODS_ROOT}/Headers/Public/Flipper-DoubleConversion" "${PODS_ROOT}/Headers/Public/Flipper-Folly" "${PODS_ROOT}/Headers/Public/Flipper-Glog" "${PODS_ROOT}/Headers/Public/Flipper-PeerTalk" "${PODS_ROOT}/Headers/Public/Flipper-RSocket" "${PODS_ROOT}/Headers/Public/FlipperKit" "${PODS_ROOT}/Headers/Public/GoogleDataTransport" "${PODS_ROOT}/Headers/Public/GoogleUtilities" "${PODS_ROOT}/Headers/Public/KeyCommands" "${PODS_ROOT}/Headers/Public/MMKV" "${PODS_ROOT}/Headers/Public/MMKVCore" "${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/RNBootSplash" "${PODS_ROOT}/Headers/Public/RNCAsyncStorage" "${PODS_ROOT}/Headers/Public/RNCMaskedView" "${PODS_ROOT}/Headers/Public/RNCPicker" "${PODS_ROOT}/Headers/Public/RNConfigReader" "${PODS_ROOT}/Headers/Public/RNDateTimePicker" "${PODS_ROOT}/Headers/Public/RNDeviceInfo" "${PODS_ROOT}/Headers/Public/RNFBAnalytics" "${PODS_ROOT}/Headers/Public/RNFBApp" "${PODS_ROOT}/Headers/Public/RNFBCrashlytics" "${PODS_ROOT}/Headers/Public/RNFastImage" "${PODS_ROOT}/Headers/Public/RNGestureHandler" "${PODS_ROOT}/Headers/Public/RNImageCropPicker" "${PODS_ROOT}/Headers/Public/RNLocalize" "${PODS_ROOT}/Headers/Public/RNReanimated" "${PODS_ROOT}/Headers/Public/RNRootView" "${PODS_ROOT}/Headers/Public/RNScreens" "${PODS_ROOT}/Headers/Public/RNVectorIcons" "${PODS_ROOT}/Headers/Public/React-Core" "${PODS_ROOT}/Headers/Public/React-RCTBlob" "${PODS_ROOT}/Headers/Public/React-RCTText" "${PODS_ROOT}/Headers/Public/React-callinvoker" "${PODS_ROOT}/Headers/Public/React-cxxreact" "${PODS_ROOT}/Headers/Public/React-jsi" "${PODS_ROOT}/Headers/Public/React-jsiexecutor" "${PODS_ROOT}/Headers/Public/React-jsinspector" "${PODS_ROOT}/Headers/Public/React-perflogger" "${PODS_ROOT}/Headers/Public/React-runtimeexecutor" "${PODS_ROOT}/Headers/Public/ReactCommon" "${PODS_ROOT}/Headers/Public/ReactNativeART" "${PODS_ROOT}/Headers/Public/ReactNativeUiLib" "${PODS_ROOT}/Headers/Public/SDWebImage" "${PODS_ROOT}/Headers/Public/SDWebImageWebPCoder" "${PODS_ROOT}/Headers/Public/TOCropViewController" "${PODS_ROOT}/Headers/Public/UMAppLoader" "${PODS_ROOT}/Headers/Public/UMBarCodeScannerInterface" "${PODS_ROOT}/Headers/Public/UMCameraInterface" "${PODS_ROOT}/Headers/Public/UMConstantsInterface" "${PODS_ROOT}/Headers/Public/UMCore" "${PODS_ROOT}/Headers/Public/UMFaceDetectorInterface" "${PODS_ROOT}/Headers/Public/UMFileSystemInterface" "${PODS_ROOT}/Headers/Public/UMFontInterface" "${PODS_ROOT}/Headers/Public/UMImageLoaderInterface" "${PODS_ROOT}/Headers/Public/UMPermissionsInterface" "${PODS_ROOT}/Headers/Public/UMReactNativeAdapter" "${PODS_ROOT}/Headers/Public/UMSensorsInterface" "${PODS_ROOT}/Headers/Public/UMTaskManagerInterface" "${PODS_ROOT}/Headers/Public/Yoga" "${PODS_ROOT}/Headers/Public/YogaKit" "${PODS_ROOT}/Headers/Public/glog" "${PODS_ROOT}/Headers/Public/hermes-engine" "${PODS_ROOT}/Headers/Public/libevent" "${PODS_ROOT}/Headers/Public/libwebp" "${PODS_ROOT}/Headers/Public/nanopb" "${PODS_ROOT}/Headers/Public/react-native-appearance" "${PODS_ROOT}/Headers/Public/react-native-background-timer" "${PODS_ROOT}/Headers/Public/react-native-blur" "${PODS_ROOT}/Headers/Public/react-native-cameraroll" "${PODS_ROOT}/Headers/Public/react-native-cookies" "${PODS_ROOT}/Headers/Public/react-native-document-picker" "${PODS_ROOT}/Headers/Public/react-native-jitsi-meet" "${PODS_ROOT}/Headers/Public/react-native-mmkv-storage" "${PODS_ROOT}/Headers/Public/react-native-netinfo" "${PODS_ROOT}/Headers/Public/react-native-notifications" "${PODS_ROOT}/Headers/Public/react-native-orientation-locker" "${PODS_ROOT}/Headers/Public/react-native-restart" "${PODS_ROOT}/Headers/Public/react-native-safe-area-context" "${PODS_ROOT}/Headers/Public/react-native-simple-crypto" "${PODS_ROOT}/Headers/Public/react-native-slider" "${PODS_ROOT}/Headers/Public/react-native-webview" "${PODS_ROOT}/Headers/Public/rn-extensions-share" "${PODS_ROOT}/Headers/Public/rn-fetch-blob" $(inherited) ${PODS_ROOT}/Firebase/CoreOnly/Sources "${PODS_TARGET_SRCROOT}/Sources/FBLPromises/include" "$(PODS_ROOT)/boost-for-react-native" "$(PODS_ROOT)/Headers/Private/React-Core" "$(PODS_TARGET_SRCROOT)/include/" LD_RUNPATH_SEARCH_PATHS = $(inherited) '@executable_path/Frameworks' '@loader_path/Frameworks' -LIBRARY_SEARCH_PATHS = $(inherited) "${PODS_CONFIGURATION_BUILD_DIR}/BugsnagReactNative" "${PODS_CONFIGURATION_BUILD_DIR}/CocoaAsyncSocket" "${PODS_CONFIGURATION_BUILD_DIR}/DoubleConversion" "${PODS_CONFIGURATION_BUILD_DIR}/EXAV" "${PODS_CONFIGURATION_BUILD_DIR}/EXAppleAuthentication" "${PODS_CONFIGURATION_BUILD_DIR}/EXConstants" "${PODS_CONFIGURATION_BUILD_DIR}/EXFileSystem" "${PODS_CONFIGURATION_BUILD_DIR}/EXHaptics" "${PODS_CONFIGURATION_BUILD_DIR}/EXImageLoader" "${PODS_CONFIGURATION_BUILD_DIR}/EXKeepAwake" "${PODS_CONFIGURATION_BUILD_DIR}/EXLocalAuthentication" "${PODS_CONFIGURATION_BUILD_DIR}/EXPermissions" "${PODS_CONFIGURATION_BUILD_DIR}/EXVideoThumbnails" "${PODS_CONFIGURATION_BUILD_DIR}/EXWebBrowser" "${PODS_CONFIGURATION_BUILD_DIR}/FBReactNativeSpec" "${PODS_CONFIGURATION_BUILD_DIR}/FirebaseCore" "${PODS_CONFIGURATION_BUILD_DIR}/FirebaseCoreDiagnostics" "${PODS_CONFIGURATION_BUILD_DIR}/FirebaseCrashlytics" "${PODS_CONFIGURATION_BUILD_DIR}/FirebaseInstallations" "${PODS_CONFIGURATION_BUILD_DIR}/Flipper" "${PODS_CONFIGURATION_BUILD_DIR}/Flipper-DoubleConversion" "${PODS_CONFIGURATION_BUILD_DIR}/Flipper-Folly" "${PODS_CONFIGURATION_BUILD_DIR}/Flipper-Glog" "${PODS_CONFIGURATION_BUILD_DIR}/Flipper-PeerTalk" "${PODS_CONFIGURATION_BUILD_DIR}/Flipper-RSocket" "${PODS_CONFIGURATION_BUILD_DIR}/FlipperKit" "${PODS_CONFIGURATION_BUILD_DIR}/GoogleDataTransport" "${PODS_CONFIGURATION_BUILD_DIR}/GoogleDataTransportCCTSupport" "${PODS_CONFIGURATION_BUILD_DIR}/GoogleUtilities" "${PODS_CONFIGURATION_BUILD_DIR}/KeyCommands" "${PODS_CONFIGURATION_BUILD_DIR}/MMKV" "${PODS_CONFIGURATION_BUILD_DIR}/MMKVCore" "${PODS_CONFIGURATION_BUILD_DIR}/PromisesObjC" "${PODS_CONFIGURATION_BUILD_DIR}/RCT-Folly" "${PODS_CONFIGURATION_BUILD_DIR}/RCTTypeSafety" "${PODS_CONFIGURATION_BUILD_DIR}/RNBootSplash" "${PODS_CONFIGURATION_BUILD_DIR}/RNCAsyncStorage" "${PODS_CONFIGURATION_BUILD_DIR}/RNCMaskedView" "${PODS_CONFIGURATION_BUILD_DIR}/RNCPicker" "${PODS_CONFIGURATION_BUILD_DIR}/RNConfigReader" "${PODS_CONFIGURATION_BUILD_DIR}/RNDateTimePicker" "${PODS_CONFIGURATION_BUILD_DIR}/RNDeviceInfo" "${PODS_CONFIGURATION_BUILD_DIR}/RNFBAnalytics" "${PODS_CONFIGURATION_BUILD_DIR}/RNFBApp" "${PODS_CONFIGURATION_BUILD_DIR}/RNFBCrashlytics" "${PODS_CONFIGURATION_BUILD_DIR}/RNFastImage" "${PODS_CONFIGURATION_BUILD_DIR}/RNGestureHandler" "${PODS_CONFIGURATION_BUILD_DIR}/RNImageCropPicker" "${PODS_CONFIGURATION_BUILD_DIR}/RNLocalize" "${PODS_CONFIGURATION_BUILD_DIR}/RNReanimated" "${PODS_CONFIGURATION_BUILD_DIR}/RNRootView" "${PODS_CONFIGURATION_BUILD_DIR}/RNScreens" "${PODS_CONFIGURATION_BUILD_DIR}/RNVectorIcons" "${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-cxxreact" "${PODS_CONFIGURATION_BUILD_DIR}/React-jsi" "${PODS_CONFIGURATION_BUILD_DIR}/React-jsiexecutor" "${PODS_CONFIGURATION_BUILD_DIR}/React-jsinspector" "${PODS_CONFIGURATION_BUILD_DIR}/React-perflogger" "${PODS_CONFIGURATION_BUILD_DIR}/ReactCommon" "${PODS_CONFIGURATION_BUILD_DIR}/ReactNativeART" "${PODS_CONFIGURATION_BUILD_DIR}/ReactNativeUiLib" "${PODS_CONFIGURATION_BUILD_DIR}/SDWebImage" "${PODS_CONFIGURATION_BUILD_DIR}/SDWebImageWebPCoder" "${PODS_CONFIGURATION_BUILD_DIR}/TOCropViewController" "${PODS_CONFIGURATION_BUILD_DIR}/UMAppLoader" "${PODS_CONFIGURATION_BUILD_DIR}/UMCore" "${PODS_CONFIGURATION_BUILD_DIR}/UMPermissionsInterface" "${PODS_CONFIGURATION_BUILD_DIR}/UMReactNativeAdapter" "${PODS_CONFIGURATION_BUILD_DIR}/Yoga" "${PODS_CONFIGURATION_BUILD_DIR}/YogaKit" "${PODS_CONFIGURATION_BUILD_DIR}/glog" "${PODS_CONFIGURATION_BUILD_DIR}/libevent" "${PODS_CONFIGURATION_BUILD_DIR}/libwebp" "${PODS_CONFIGURATION_BUILD_DIR}/nanopb" "${PODS_CONFIGURATION_BUILD_DIR}/react-native-appearance" "${PODS_CONFIGURATION_BUILD_DIR}/react-native-background-timer" "${PODS_CONFIGURATION_BUILD_DIR}/react-native-blur" "${PODS_CONFIGURATION_BUILD_DIR}/react-native-cameraroll" "${PODS_CONFIGURATION_BUILD_DIR}/react-native-cookies" "${PODS_CONFIGURATION_BUILD_DIR}/react-native-document-picker" "${PODS_CONFIGURATION_BUILD_DIR}/react-native-jitsi-meet" "${PODS_CONFIGURATION_BUILD_DIR}/react-native-mmkv-storage" "${PODS_CONFIGURATION_BUILD_DIR}/react-native-netinfo" "${PODS_CONFIGURATION_BUILD_DIR}/react-native-notifications" "${PODS_CONFIGURATION_BUILD_DIR}/react-native-orientation-locker" "${PODS_CONFIGURATION_BUILD_DIR}/react-native-restart" "${PODS_CONFIGURATION_BUILD_DIR}/react-native-safe-area-context" "${PODS_CONFIGURATION_BUILD_DIR}/react-native-simple-crypto" "${PODS_CONFIGURATION_BUILD_DIR}/react-native-slider" "${PODS_CONFIGURATION_BUILD_DIR}/react-native-webview" "${PODS_CONFIGURATION_BUILD_DIR}/rn-extensions-share" "${PODS_CONFIGURATION_BUILD_DIR}/rn-fetch-blob" +LIBRARY_SEARCH_PATHS = $(inherited) "${PODS_CONFIGURATION_BUILD_DIR}/BugsnagReactNative" "${PODS_CONFIGURATION_BUILD_DIR}/CocoaAsyncSocket" "${PODS_CONFIGURATION_BUILD_DIR}/DoubleConversion" "${PODS_CONFIGURATION_BUILD_DIR}/EXAV" "${PODS_CONFIGURATION_BUILD_DIR}/EXAppleAuthentication" "${PODS_CONFIGURATION_BUILD_DIR}/EXConstants" "${PODS_CONFIGURATION_BUILD_DIR}/EXFileSystem" "${PODS_CONFIGURATION_BUILD_DIR}/EXHaptics" "${PODS_CONFIGURATION_BUILD_DIR}/EXImageLoader" "${PODS_CONFIGURATION_BUILD_DIR}/EXKeepAwake" "${PODS_CONFIGURATION_BUILD_DIR}/EXLocalAuthentication" "${PODS_CONFIGURATION_BUILD_DIR}/EXPermissions" "${PODS_CONFIGURATION_BUILD_DIR}/EXVideoThumbnails" "${PODS_CONFIGURATION_BUILD_DIR}/EXWebBrowser" "${PODS_CONFIGURATION_BUILD_DIR}/FBReactNativeSpec" "${PODS_CONFIGURATION_BUILD_DIR}/FirebaseCore" "${PODS_CONFIGURATION_BUILD_DIR}/FirebaseCoreDiagnostics" "${PODS_CONFIGURATION_BUILD_DIR}/FirebaseCrashlytics" "${PODS_CONFIGURATION_BUILD_DIR}/FirebaseInstallations" "${PODS_CONFIGURATION_BUILD_DIR}/Flipper" "${PODS_CONFIGURATION_BUILD_DIR}/Flipper-DoubleConversion" "${PODS_CONFIGURATION_BUILD_DIR}/Flipper-Folly" "${PODS_CONFIGURATION_BUILD_DIR}/Flipper-Glog" "${PODS_CONFIGURATION_BUILD_DIR}/Flipper-PeerTalk" "${PODS_CONFIGURATION_BUILD_DIR}/Flipper-RSocket" "${PODS_CONFIGURATION_BUILD_DIR}/FlipperKit" "${PODS_CONFIGURATION_BUILD_DIR}/GoogleDataTransport" "${PODS_CONFIGURATION_BUILD_DIR}/GoogleUtilities" "${PODS_CONFIGURATION_BUILD_DIR}/KeyCommands" "${PODS_CONFIGURATION_BUILD_DIR}/MMKV" "${PODS_CONFIGURATION_BUILD_DIR}/MMKVCore" "${PODS_CONFIGURATION_BUILD_DIR}/PromisesObjC" "${PODS_CONFIGURATION_BUILD_DIR}/RCT-Folly" "${PODS_CONFIGURATION_BUILD_DIR}/RCTTypeSafety" "${PODS_CONFIGURATION_BUILD_DIR}/RNBootSplash" "${PODS_CONFIGURATION_BUILD_DIR}/RNCAsyncStorage" "${PODS_CONFIGURATION_BUILD_DIR}/RNCMaskedView" "${PODS_CONFIGURATION_BUILD_DIR}/RNCPicker" "${PODS_CONFIGURATION_BUILD_DIR}/RNConfigReader" "${PODS_CONFIGURATION_BUILD_DIR}/RNDateTimePicker" "${PODS_CONFIGURATION_BUILD_DIR}/RNDeviceInfo" "${PODS_CONFIGURATION_BUILD_DIR}/RNFBAnalytics" "${PODS_CONFIGURATION_BUILD_DIR}/RNFBApp" "${PODS_CONFIGURATION_BUILD_DIR}/RNFBCrashlytics" "${PODS_CONFIGURATION_BUILD_DIR}/RNFastImage" "${PODS_CONFIGURATION_BUILD_DIR}/RNGestureHandler" "${PODS_CONFIGURATION_BUILD_DIR}/RNImageCropPicker" "${PODS_CONFIGURATION_BUILD_DIR}/RNLocalize" "${PODS_CONFIGURATION_BUILD_DIR}/RNReanimated" "${PODS_CONFIGURATION_BUILD_DIR}/RNRootView" "${PODS_CONFIGURATION_BUILD_DIR}/RNScreens" "${PODS_CONFIGURATION_BUILD_DIR}/RNVectorIcons" "${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-cxxreact" "${PODS_CONFIGURATION_BUILD_DIR}/React-jsi" "${PODS_CONFIGURATION_BUILD_DIR}/React-jsiexecutor" "${PODS_CONFIGURATION_BUILD_DIR}/React-jsinspector" "${PODS_CONFIGURATION_BUILD_DIR}/React-perflogger" "${PODS_CONFIGURATION_BUILD_DIR}/ReactCommon" "${PODS_CONFIGURATION_BUILD_DIR}/ReactNativeART" "${PODS_CONFIGURATION_BUILD_DIR}/SDWebImage" "${PODS_CONFIGURATION_BUILD_DIR}/SDWebImageWebPCoder" "${PODS_CONFIGURATION_BUILD_DIR}/TOCropViewController" "${PODS_CONFIGURATION_BUILD_DIR}/UMAppLoader" "${PODS_CONFIGURATION_BUILD_DIR}/UMCore" "${PODS_CONFIGURATION_BUILD_DIR}/UMPermissionsInterface" "${PODS_CONFIGURATION_BUILD_DIR}/UMReactNativeAdapter" "${PODS_CONFIGURATION_BUILD_DIR}/Yoga" "${PODS_CONFIGURATION_BUILD_DIR}/YogaKit" "${PODS_CONFIGURATION_BUILD_DIR}/glog" "${PODS_CONFIGURATION_BUILD_DIR}/libevent" "${PODS_CONFIGURATION_BUILD_DIR}/libwebp" "${PODS_CONFIGURATION_BUILD_DIR}/nanopb" "${PODS_CONFIGURATION_BUILD_DIR}/react-native-appearance" "${PODS_CONFIGURATION_BUILD_DIR}/react-native-background-timer" "${PODS_CONFIGURATION_BUILD_DIR}/react-native-blur" "${PODS_CONFIGURATION_BUILD_DIR}/react-native-cameraroll" "${PODS_CONFIGURATION_BUILD_DIR}/react-native-cookies" "${PODS_CONFIGURATION_BUILD_DIR}/react-native-document-picker" "${PODS_CONFIGURATION_BUILD_DIR}/react-native-jitsi-meet" "${PODS_CONFIGURATION_BUILD_DIR}/react-native-mmkv-storage" "${PODS_CONFIGURATION_BUILD_DIR}/react-native-netinfo" "${PODS_CONFIGURATION_BUILD_DIR}/react-native-notifications" "${PODS_CONFIGURATION_BUILD_DIR}/react-native-orientation-locker" "${PODS_CONFIGURATION_BUILD_DIR}/react-native-restart" "${PODS_CONFIGURATION_BUILD_DIR}/react-native-safe-area-context" "${PODS_CONFIGURATION_BUILD_DIR}/react-native-simple-crypto" "${PODS_CONFIGURATION_BUILD_DIR}/react-native-slider" "${PODS_CONFIGURATION_BUILD_DIR}/react-native-webview" "${PODS_CONFIGURATION_BUILD_DIR}/rn-extensions-share" "${PODS_CONFIGURATION_BUILD_DIR}/rn-fetch-blob" OTHER_CFLAGS = $(inherited) -fmodule-map-file="${PODS_CONFIGURATION_BUILD_DIR}/YogaKit/YogaKit.modulemap" -fmodule-map-file="${PODS_CONFIGURATION_BUILD_DIR}/react-native-simple-crypto/react_native_simple_crypto.modulemap" -fmodule-map-file="${PODS_ROOT}/Headers/Public/FlipperKit/FlipperKit.modulemap" -fmodule-map-file="${PODS_ROOT}/Headers/Public/React/React-Core.modulemap" -fmodule-map-file="${PODS_ROOT}/Headers/Public/yoga/Yoga.modulemap" -OTHER_LDFLAGS = $(inherited) -ObjC -l"BugsnagReactNative" -l"CocoaAsyncSocket" -l"DoubleConversion" -l"EXAV" -l"EXAppleAuthentication" -l"EXConstants" -l"EXFileSystem" -l"EXHaptics" -l"EXImageLoader" -l"EXKeepAwake" -l"EXLocalAuthentication" -l"EXPermissions" -l"EXVideoThumbnails" -l"EXWebBrowser" -l"FBReactNativeSpec" -l"FirebaseCore" -l"FirebaseCoreDiagnostics" -l"FirebaseCrashlytics" -l"FirebaseInstallations" -l"Flipper" -l"Flipper-DoubleConversion" -l"Flipper-Folly" -l"Flipper-Glog" -l"Flipper-PeerTalk" -l"Flipper-RSocket" -l"FlipperKit" -l"GoogleDataTransport" -l"GoogleDataTransportCCTSupport" -l"GoogleUtilities" -l"KeyCommands" -l"MMKV" -l"MMKVCore" -l"PromisesObjC" -l"RCT-Folly" -l"RCTTypeSafety" -l"RNBootSplash" -l"RNCAsyncStorage" -l"RNCMaskedView" -l"RNCPicker" -l"RNConfigReader" -l"RNDateTimePicker" -l"RNDeviceInfo" -l"RNFBAnalytics" -l"RNFBApp" -l"RNFBCrashlytics" -l"RNFastImage" -l"RNGestureHandler" -l"RNImageCropPicker" -l"RNLocalize" -l"RNReanimated" -l"RNRootView" -l"RNScreens" -l"RNVectorIcons" -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-cxxreact" -l"React-jsi" -l"React-jsiexecutor" -l"React-jsinspector" -l"React-perflogger" -l"ReactCommon" -l"ReactNativeART" -l"ReactNativeUiLib" -l"SDWebImage" -l"SDWebImageWebPCoder" -l"TOCropViewController" -l"UMAppLoader" -l"UMCore" -l"UMPermissionsInterface" -l"UMReactNativeAdapter" -l"Yoga" -l"YogaKit" -l"c++" -l"glog" -l"libevent" -l"libwebp" -l"nanopb" -l"react-native-appearance" -l"react-native-background-timer" -l"react-native-blur" -l"react-native-cameraroll" -l"react-native-cookies" -l"react-native-document-picker" -l"react-native-jitsi-meet" -l"react-native-mmkv-storage" -l"react-native-netinfo" -l"react-native-notifications" -l"react-native-orientation-locker" -l"react-native-restart" -l"react-native-safe-area-context" -l"react-native-simple-crypto" -l"react-native-slider" -l"react-native-webview" -l"rn-extensions-share" -l"rn-fetch-blob" -l"sqlite3" -l"stdc++" -l"z" -framework "AudioToolbox" -framework "CFNetwork" -framework "CoreFoundation" -framework "CoreTelephony" -framework "FIRAnalyticsConnector" -framework "FirebaseAnalytics" -framework "Foundation" -framework "GoogleAppMeasurement" -framework "ImageIO" -framework "JavaScriptCore" -framework "JitsiMeet" -framework "MobileCoreServices" -framework "OpenSSL" -framework "Photos" -framework "Security" -framework "StoreKit" -framework "SystemConfiguration" -framework "UIKit" -framework "WebRTC" -framework "hermes" +OTHER_LDFLAGS = $(inherited) -ObjC -l"BugsnagReactNative" -l"CocoaAsyncSocket" -l"DoubleConversion" -l"EXAV" -l"EXAppleAuthentication" -l"EXConstants" -l"EXFileSystem" -l"EXHaptics" -l"EXImageLoader" -l"EXKeepAwake" -l"EXLocalAuthentication" -l"EXPermissions" -l"EXVideoThumbnails" -l"EXWebBrowser" -l"FBReactNativeSpec" -l"FirebaseCore" -l"FirebaseCoreDiagnostics" -l"FirebaseCrashlytics" -l"FirebaseInstallations" -l"Flipper" -l"Flipper-DoubleConversion" -l"Flipper-Folly" -l"Flipper-Glog" -l"Flipper-PeerTalk" -l"Flipper-RSocket" -l"FlipperKit" -l"GoogleDataTransport" -l"GoogleUtilities" -l"KeyCommands" -l"MMKV" -l"MMKVCore" -l"PromisesObjC" -l"RCT-Folly" -l"RCTTypeSafety" -l"RNBootSplash" -l"RNCAsyncStorage" -l"RNCMaskedView" -l"RNCPicker" -l"RNConfigReader" -l"RNDateTimePicker" -l"RNDeviceInfo" -l"RNFBAnalytics" -l"RNFBApp" -l"RNFBCrashlytics" -l"RNFastImage" -l"RNGestureHandler" -l"RNImageCropPicker" -l"RNLocalize" -l"RNReanimated" -l"RNRootView" -l"RNScreens" -l"RNVectorIcons" -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-cxxreact" -l"React-jsi" -l"React-jsiexecutor" -l"React-jsinspector" -l"React-perflogger" -l"ReactCommon" -l"ReactNativeART" -l"SDWebImage" -l"SDWebImageWebPCoder" -l"TOCropViewController" -l"UMAppLoader" -l"UMCore" -l"UMPermissionsInterface" -l"UMReactNativeAdapter" -l"Yoga" -l"YogaKit" -l"c++" -l"glog" -l"libevent" -l"libwebp" -l"nanopb" -l"react-native-appearance" -l"react-native-background-timer" -l"react-native-blur" -l"react-native-cameraroll" -l"react-native-cookies" -l"react-native-document-picker" -l"react-native-jitsi-meet" -l"react-native-mmkv-storage" -l"react-native-netinfo" -l"react-native-notifications" -l"react-native-orientation-locker" -l"react-native-restart" -l"react-native-safe-area-context" -l"react-native-simple-crypto" -l"react-native-slider" -l"react-native-webview" -l"rn-extensions-share" -l"rn-fetch-blob" -l"sqlite3" -l"stdc++" -l"z" -framework "AudioToolbox" -framework "CFNetwork" -framework "CoreFoundation" -framework "CoreTelephony" -framework "FIRAnalyticsConnector" -framework "FirebaseAnalytics" -framework "Foundation" -framework "GoogleAppMeasurement" -framework "ImageIO" -framework "JavaScriptCore" -framework "JitsiMeet" -framework "MobileCoreServices" -framework "OpenSSL" -framework "Photos" -framework "Security" -framework "StoreKit" -framework "SystemConfiguration" -framework "UIKit" -framework "WebRTC" -framework "hermes" OTHER_SWIFT_FLAGS = $(inherited) -D COCOAPODS -Xcc -fmodule-map-file="${PODS_CONFIGURATION_BUILD_DIR}/YogaKit/YogaKit.modulemap" -Xcc -fmodule-map-file="${PODS_CONFIGURATION_BUILD_DIR}/react-native-simple-crypto/react_native_simple_crypto.modulemap" -Xcc -fmodule-map-file="${PODS_ROOT}/Headers/Public/FlipperKit/FlipperKit.modulemap" -Xcc -fmodule-map-file="${PODS_ROOT}/Headers/Public/React/React-Core.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-defaults-Rocket.Chat/Pods-defaults-Rocket.Chat.release.xcconfig b/ios/Pods/Target Support Files/Pods-defaults-Rocket.Chat/Pods-defaults-Rocket.Chat.release.xcconfig index bb93383c82..21ddbaae7d 100644 --- a/ios/Pods/Target Support Files/Pods-defaults-Rocket.Chat/Pods-defaults-Rocket.Chat.release.xcconfig +++ b/ios/Pods/Target Support Files/Pods-defaults-Rocket.Chat/Pods-defaults-Rocket.Chat.release.xcconfig @@ -4,11 +4,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}/JitsiMeetSDK/Frameworks" "${PODS_ROOT}/OpenSSL-Universal/Frameworks" "${PODS_ROOT}/hermes-engine/destroot/Library/Frameworks/iphoneos" "${PODS_XCFRAMEWORKS_BUILD_DIR}/OpenSSL" 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/BugsnagReactNative" "${PODS_ROOT}/Headers/Public/CocoaAsyncSocket" "${PODS_ROOT}/Headers/Public/DoubleConversion" "${PODS_ROOT}/Headers/Public/EXAV" "${PODS_ROOT}/Headers/Public/EXAppleAuthentication" "${PODS_ROOT}/Headers/Public/EXConstants" "${PODS_ROOT}/Headers/Public/EXFileSystem" "${PODS_ROOT}/Headers/Public/EXHaptics" "${PODS_ROOT}/Headers/Public/EXImageLoader" "${PODS_ROOT}/Headers/Public/EXKeepAwake" "${PODS_ROOT}/Headers/Public/EXLocalAuthentication" "${PODS_ROOT}/Headers/Public/EXPermissions" "${PODS_ROOT}/Headers/Public/EXVideoThumbnails" "${PODS_ROOT}/Headers/Public/EXWebBrowser" "${PODS_ROOT}/Headers/Public/FBLazyVector" "${PODS_ROOT}/Headers/Public/FBReactNativeSpec" "${PODS_ROOT}/Headers/Public/Firebase" "${PODS_ROOT}/Headers/Public/FirebaseCore" "${PODS_ROOT}/Headers/Public/FirebaseCoreDiagnostics" "${PODS_ROOT}/Headers/Public/FirebaseCrashlytics" "${PODS_ROOT}/Headers/Public/FirebaseInstallations" "${PODS_ROOT}/Headers/Public/Flipper" "${PODS_ROOT}/Headers/Public/Flipper-DoubleConversion" "${PODS_ROOT}/Headers/Public/Flipper-Folly" "${PODS_ROOT}/Headers/Public/Flipper-Glog" "${PODS_ROOT}/Headers/Public/Flipper-PeerTalk" "${PODS_ROOT}/Headers/Public/Flipper-RSocket" "${PODS_ROOT}/Headers/Public/FlipperKit" "${PODS_ROOT}/Headers/Public/GoogleDataTransport" "${PODS_ROOT}/Headers/Public/GoogleDataTransportCCTSupport" "${PODS_ROOT}/Headers/Public/GoogleUtilities" "${PODS_ROOT}/Headers/Public/KeyCommands" "${PODS_ROOT}/Headers/Public/MMKV" "${PODS_ROOT}/Headers/Public/MMKVCore" "${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/RNBootSplash" "${PODS_ROOT}/Headers/Public/RNCAsyncStorage" "${PODS_ROOT}/Headers/Public/RNCMaskedView" "${PODS_ROOT}/Headers/Public/RNCPicker" "${PODS_ROOT}/Headers/Public/RNConfigReader" "${PODS_ROOT}/Headers/Public/RNDateTimePicker" "${PODS_ROOT}/Headers/Public/RNDeviceInfo" "${PODS_ROOT}/Headers/Public/RNFBAnalytics" "${PODS_ROOT}/Headers/Public/RNFBApp" "${PODS_ROOT}/Headers/Public/RNFBCrashlytics" "${PODS_ROOT}/Headers/Public/RNFastImage" "${PODS_ROOT}/Headers/Public/RNGestureHandler" "${PODS_ROOT}/Headers/Public/RNImageCropPicker" "${PODS_ROOT}/Headers/Public/RNLocalize" "${PODS_ROOT}/Headers/Public/RNReanimated" "${PODS_ROOT}/Headers/Public/RNRootView" "${PODS_ROOT}/Headers/Public/RNScreens" "${PODS_ROOT}/Headers/Public/RNVectorIcons" "${PODS_ROOT}/Headers/Public/React-Core" "${PODS_ROOT}/Headers/Public/React-RCTBlob" "${PODS_ROOT}/Headers/Public/React-RCTText" "${PODS_ROOT}/Headers/Public/React-callinvoker" "${PODS_ROOT}/Headers/Public/React-cxxreact" "${PODS_ROOT}/Headers/Public/React-jsi" "${PODS_ROOT}/Headers/Public/React-jsiexecutor" "${PODS_ROOT}/Headers/Public/React-jsinspector" "${PODS_ROOT}/Headers/Public/React-perflogger" "${PODS_ROOT}/Headers/Public/React-runtimeexecutor" "${PODS_ROOT}/Headers/Public/ReactCommon" "${PODS_ROOT}/Headers/Public/ReactNativeART" "${PODS_ROOT}/Headers/Public/ReactNativeUiLib" "${PODS_ROOT}/Headers/Public/SDWebImage" "${PODS_ROOT}/Headers/Public/SDWebImageWebPCoder" "${PODS_ROOT}/Headers/Public/TOCropViewController" "${PODS_ROOT}/Headers/Public/UMAppLoader" "${PODS_ROOT}/Headers/Public/UMBarCodeScannerInterface" "${PODS_ROOT}/Headers/Public/UMCameraInterface" "${PODS_ROOT}/Headers/Public/UMConstantsInterface" "${PODS_ROOT}/Headers/Public/UMCore" "${PODS_ROOT}/Headers/Public/UMFaceDetectorInterface" "${PODS_ROOT}/Headers/Public/UMFileSystemInterface" "${PODS_ROOT}/Headers/Public/UMFontInterface" "${PODS_ROOT}/Headers/Public/UMImageLoaderInterface" "${PODS_ROOT}/Headers/Public/UMPermissionsInterface" "${PODS_ROOT}/Headers/Public/UMReactNativeAdapter" "${PODS_ROOT}/Headers/Public/UMSensorsInterface" "${PODS_ROOT}/Headers/Public/UMTaskManagerInterface" "${PODS_ROOT}/Headers/Public/Yoga" "${PODS_ROOT}/Headers/Public/YogaKit" "${PODS_ROOT}/Headers/Public/glog" "${PODS_ROOT}/Headers/Public/hermes-engine" "${PODS_ROOT}/Headers/Public/libevent" "${PODS_ROOT}/Headers/Public/libwebp" "${PODS_ROOT}/Headers/Public/nanopb" "${PODS_ROOT}/Headers/Public/react-native-appearance" "${PODS_ROOT}/Headers/Public/react-native-background-timer" "${PODS_ROOT}/Headers/Public/react-native-blur" "${PODS_ROOT}/Headers/Public/react-native-cameraroll" "${PODS_ROOT}/Headers/Public/react-native-cookies" "${PODS_ROOT}/Headers/Public/react-native-document-picker" "${PODS_ROOT}/Headers/Public/react-native-jitsi-meet" "${PODS_ROOT}/Headers/Public/react-native-mmkv-storage" "${PODS_ROOT}/Headers/Public/react-native-netinfo" "${PODS_ROOT}/Headers/Public/react-native-notifications" "${PODS_ROOT}/Headers/Public/react-native-orientation-locker" "${PODS_ROOT}/Headers/Public/react-native-restart" "${PODS_ROOT}/Headers/Public/react-native-safe-area-context" "${PODS_ROOT}/Headers/Public/react-native-simple-crypto" "${PODS_ROOT}/Headers/Public/react-native-slider" "${PODS_ROOT}/Headers/Public/react-native-webview" "${PODS_ROOT}/Headers/Public/rn-extensions-share" "${PODS_ROOT}/Headers/Public/rn-fetch-blob" $(inherited) ${PODS_ROOT}/Firebase/CoreOnly/Sources "${PODS_TARGET_SRCROOT}/Sources/FBLPromises/include" "$(PODS_ROOT)/boost-for-react-native" "$(PODS_ROOT)/Headers/Private/React-Core" "$(PODS_TARGET_SRCROOT)/include/" +HEADER_SEARCH_PATHS = $(inherited) "${PODS_ROOT}/Headers/Public" "${PODS_ROOT}/Headers/Public/BugsnagReactNative" "${PODS_ROOT}/Headers/Public/CocoaAsyncSocket" "${PODS_ROOT}/Headers/Public/DoubleConversion" "${PODS_ROOT}/Headers/Public/EXAV" "${PODS_ROOT}/Headers/Public/EXAppleAuthentication" "${PODS_ROOT}/Headers/Public/EXConstants" "${PODS_ROOT}/Headers/Public/EXFileSystem" "${PODS_ROOT}/Headers/Public/EXHaptics" "${PODS_ROOT}/Headers/Public/EXImageLoader" "${PODS_ROOT}/Headers/Public/EXKeepAwake" "${PODS_ROOT}/Headers/Public/EXLocalAuthentication" "${PODS_ROOT}/Headers/Public/EXPermissions" "${PODS_ROOT}/Headers/Public/EXVideoThumbnails" "${PODS_ROOT}/Headers/Public/EXWebBrowser" "${PODS_ROOT}/Headers/Public/FBLazyVector" "${PODS_ROOT}/Headers/Public/FBReactNativeSpec" "${PODS_ROOT}/Headers/Public/Firebase" "${PODS_ROOT}/Headers/Public/FirebaseCore" "${PODS_ROOT}/Headers/Public/FirebaseCoreDiagnostics" "${PODS_ROOT}/Headers/Public/FirebaseCrashlytics" "${PODS_ROOT}/Headers/Public/FirebaseInstallations" "${PODS_ROOT}/Headers/Public/Flipper" "${PODS_ROOT}/Headers/Public/Flipper-DoubleConversion" "${PODS_ROOT}/Headers/Public/Flipper-Folly" "${PODS_ROOT}/Headers/Public/Flipper-Glog" "${PODS_ROOT}/Headers/Public/Flipper-PeerTalk" "${PODS_ROOT}/Headers/Public/Flipper-RSocket" "${PODS_ROOT}/Headers/Public/FlipperKit" "${PODS_ROOT}/Headers/Public/GoogleDataTransport" "${PODS_ROOT}/Headers/Public/GoogleUtilities" "${PODS_ROOT}/Headers/Public/KeyCommands" "${PODS_ROOT}/Headers/Public/MMKV" "${PODS_ROOT}/Headers/Public/MMKVCore" "${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/RNBootSplash" "${PODS_ROOT}/Headers/Public/RNCAsyncStorage" "${PODS_ROOT}/Headers/Public/RNCMaskedView" "${PODS_ROOT}/Headers/Public/RNCPicker" "${PODS_ROOT}/Headers/Public/RNConfigReader" "${PODS_ROOT}/Headers/Public/RNDateTimePicker" "${PODS_ROOT}/Headers/Public/RNDeviceInfo" "${PODS_ROOT}/Headers/Public/RNFBAnalytics" "${PODS_ROOT}/Headers/Public/RNFBApp" "${PODS_ROOT}/Headers/Public/RNFBCrashlytics" "${PODS_ROOT}/Headers/Public/RNFastImage" "${PODS_ROOT}/Headers/Public/RNGestureHandler" "${PODS_ROOT}/Headers/Public/RNImageCropPicker" "${PODS_ROOT}/Headers/Public/RNLocalize" "${PODS_ROOT}/Headers/Public/RNReanimated" "${PODS_ROOT}/Headers/Public/RNRootView" "${PODS_ROOT}/Headers/Public/RNScreens" "${PODS_ROOT}/Headers/Public/RNVectorIcons" "${PODS_ROOT}/Headers/Public/React-Core" "${PODS_ROOT}/Headers/Public/React-RCTBlob" "${PODS_ROOT}/Headers/Public/React-RCTText" "${PODS_ROOT}/Headers/Public/React-callinvoker" "${PODS_ROOT}/Headers/Public/React-cxxreact" "${PODS_ROOT}/Headers/Public/React-jsi" "${PODS_ROOT}/Headers/Public/React-jsiexecutor" "${PODS_ROOT}/Headers/Public/React-jsinspector" "${PODS_ROOT}/Headers/Public/React-perflogger" "${PODS_ROOT}/Headers/Public/React-runtimeexecutor" "${PODS_ROOT}/Headers/Public/ReactCommon" "${PODS_ROOT}/Headers/Public/ReactNativeART" "${PODS_ROOT}/Headers/Public/ReactNativeUiLib" "${PODS_ROOT}/Headers/Public/SDWebImage" "${PODS_ROOT}/Headers/Public/SDWebImageWebPCoder" "${PODS_ROOT}/Headers/Public/TOCropViewController" "${PODS_ROOT}/Headers/Public/UMAppLoader" "${PODS_ROOT}/Headers/Public/UMBarCodeScannerInterface" "${PODS_ROOT}/Headers/Public/UMCameraInterface" "${PODS_ROOT}/Headers/Public/UMConstantsInterface" "${PODS_ROOT}/Headers/Public/UMCore" "${PODS_ROOT}/Headers/Public/UMFaceDetectorInterface" "${PODS_ROOT}/Headers/Public/UMFileSystemInterface" "${PODS_ROOT}/Headers/Public/UMFontInterface" "${PODS_ROOT}/Headers/Public/UMImageLoaderInterface" "${PODS_ROOT}/Headers/Public/UMPermissionsInterface" "${PODS_ROOT}/Headers/Public/UMReactNativeAdapter" "${PODS_ROOT}/Headers/Public/UMSensorsInterface" "${PODS_ROOT}/Headers/Public/UMTaskManagerInterface" "${PODS_ROOT}/Headers/Public/Yoga" "${PODS_ROOT}/Headers/Public/YogaKit" "${PODS_ROOT}/Headers/Public/glog" "${PODS_ROOT}/Headers/Public/hermes-engine" "${PODS_ROOT}/Headers/Public/libevent" "${PODS_ROOT}/Headers/Public/libwebp" "${PODS_ROOT}/Headers/Public/nanopb" "${PODS_ROOT}/Headers/Public/react-native-appearance" "${PODS_ROOT}/Headers/Public/react-native-background-timer" "${PODS_ROOT}/Headers/Public/react-native-blur" "${PODS_ROOT}/Headers/Public/react-native-cameraroll" "${PODS_ROOT}/Headers/Public/react-native-cookies" "${PODS_ROOT}/Headers/Public/react-native-document-picker" "${PODS_ROOT}/Headers/Public/react-native-jitsi-meet" "${PODS_ROOT}/Headers/Public/react-native-mmkv-storage" "${PODS_ROOT}/Headers/Public/react-native-netinfo" "${PODS_ROOT}/Headers/Public/react-native-notifications" "${PODS_ROOT}/Headers/Public/react-native-orientation-locker" "${PODS_ROOT}/Headers/Public/react-native-restart" "${PODS_ROOT}/Headers/Public/react-native-safe-area-context" "${PODS_ROOT}/Headers/Public/react-native-simple-crypto" "${PODS_ROOT}/Headers/Public/react-native-slider" "${PODS_ROOT}/Headers/Public/react-native-webview" "${PODS_ROOT}/Headers/Public/rn-extensions-share" "${PODS_ROOT}/Headers/Public/rn-fetch-blob" $(inherited) ${PODS_ROOT}/Firebase/CoreOnly/Sources "${PODS_TARGET_SRCROOT}/Sources/FBLPromises/include" "$(PODS_ROOT)/boost-for-react-native" "$(PODS_ROOT)/Headers/Private/React-Core" "$(PODS_TARGET_SRCROOT)/include/" LD_RUNPATH_SEARCH_PATHS = $(inherited) '@executable_path/Frameworks' '@loader_path/Frameworks' -LIBRARY_SEARCH_PATHS = $(inherited) "${PODS_CONFIGURATION_BUILD_DIR}/BugsnagReactNative" "${PODS_CONFIGURATION_BUILD_DIR}/CocoaAsyncSocket" "${PODS_CONFIGURATION_BUILD_DIR}/DoubleConversion" "${PODS_CONFIGURATION_BUILD_DIR}/EXAV" "${PODS_CONFIGURATION_BUILD_DIR}/EXAppleAuthentication" "${PODS_CONFIGURATION_BUILD_DIR}/EXConstants" "${PODS_CONFIGURATION_BUILD_DIR}/EXFileSystem" "${PODS_CONFIGURATION_BUILD_DIR}/EXHaptics" "${PODS_CONFIGURATION_BUILD_DIR}/EXImageLoader" "${PODS_CONFIGURATION_BUILD_DIR}/EXKeepAwake" "${PODS_CONFIGURATION_BUILD_DIR}/EXLocalAuthentication" "${PODS_CONFIGURATION_BUILD_DIR}/EXPermissions" "${PODS_CONFIGURATION_BUILD_DIR}/EXVideoThumbnails" "${PODS_CONFIGURATION_BUILD_DIR}/EXWebBrowser" "${PODS_CONFIGURATION_BUILD_DIR}/FBReactNativeSpec" "${PODS_CONFIGURATION_BUILD_DIR}/FirebaseCore" "${PODS_CONFIGURATION_BUILD_DIR}/FirebaseCoreDiagnostics" "${PODS_CONFIGURATION_BUILD_DIR}/FirebaseCrashlytics" "${PODS_CONFIGURATION_BUILD_DIR}/FirebaseInstallations" "${PODS_CONFIGURATION_BUILD_DIR}/GoogleDataTransport" "${PODS_CONFIGURATION_BUILD_DIR}/GoogleDataTransportCCTSupport" "${PODS_CONFIGURATION_BUILD_DIR}/GoogleUtilities" "${PODS_CONFIGURATION_BUILD_DIR}/KeyCommands" "${PODS_CONFIGURATION_BUILD_DIR}/MMKV" "${PODS_CONFIGURATION_BUILD_DIR}/MMKVCore" "${PODS_CONFIGURATION_BUILD_DIR}/PromisesObjC" "${PODS_CONFIGURATION_BUILD_DIR}/RCT-Folly" "${PODS_CONFIGURATION_BUILD_DIR}/RCTTypeSafety" "${PODS_CONFIGURATION_BUILD_DIR}/RNBootSplash" "${PODS_CONFIGURATION_BUILD_DIR}/RNCAsyncStorage" "${PODS_CONFIGURATION_BUILD_DIR}/RNCMaskedView" "${PODS_CONFIGURATION_BUILD_DIR}/RNCPicker" "${PODS_CONFIGURATION_BUILD_DIR}/RNConfigReader" "${PODS_CONFIGURATION_BUILD_DIR}/RNDateTimePicker" "${PODS_CONFIGURATION_BUILD_DIR}/RNDeviceInfo" "${PODS_CONFIGURATION_BUILD_DIR}/RNFBAnalytics" "${PODS_CONFIGURATION_BUILD_DIR}/RNFBApp" "${PODS_CONFIGURATION_BUILD_DIR}/RNFBCrashlytics" "${PODS_CONFIGURATION_BUILD_DIR}/RNFastImage" "${PODS_CONFIGURATION_BUILD_DIR}/RNGestureHandler" "${PODS_CONFIGURATION_BUILD_DIR}/RNImageCropPicker" "${PODS_CONFIGURATION_BUILD_DIR}/RNLocalize" "${PODS_CONFIGURATION_BUILD_DIR}/RNReanimated" "${PODS_CONFIGURATION_BUILD_DIR}/RNRootView" "${PODS_CONFIGURATION_BUILD_DIR}/RNScreens" "${PODS_CONFIGURATION_BUILD_DIR}/RNVectorIcons" "${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-cxxreact" "${PODS_CONFIGURATION_BUILD_DIR}/React-jsi" "${PODS_CONFIGURATION_BUILD_DIR}/React-jsiexecutor" "${PODS_CONFIGURATION_BUILD_DIR}/React-jsinspector" "${PODS_CONFIGURATION_BUILD_DIR}/React-perflogger" "${PODS_CONFIGURATION_BUILD_DIR}/ReactCommon" "${PODS_CONFIGURATION_BUILD_DIR}/ReactNativeART" "${PODS_CONFIGURATION_BUILD_DIR}/ReactNativeUiLib" "${PODS_CONFIGURATION_BUILD_DIR}/SDWebImage" "${PODS_CONFIGURATION_BUILD_DIR}/SDWebImageWebPCoder" "${PODS_CONFIGURATION_BUILD_DIR}/TOCropViewController" "${PODS_CONFIGURATION_BUILD_DIR}/UMAppLoader" "${PODS_CONFIGURATION_BUILD_DIR}/UMCore" "${PODS_CONFIGURATION_BUILD_DIR}/UMPermissionsInterface" "${PODS_CONFIGURATION_BUILD_DIR}/UMReactNativeAdapter" "${PODS_CONFIGURATION_BUILD_DIR}/Yoga" "${PODS_CONFIGURATION_BUILD_DIR}/YogaKit" "${PODS_CONFIGURATION_BUILD_DIR}/glog" "${PODS_CONFIGURATION_BUILD_DIR}/libevent" "${PODS_CONFIGURATION_BUILD_DIR}/libwebp" "${PODS_CONFIGURATION_BUILD_DIR}/nanopb" "${PODS_CONFIGURATION_BUILD_DIR}/react-native-appearance" "${PODS_CONFIGURATION_BUILD_DIR}/react-native-background-timer" "${PODS_CONFIGURATION_BUILD_DIR}/react-native-blur" "${PODS_CONFIGURATION_BUILD_DIR}/react-native-cameraroll" "${PODS_CONFIGURATION_BUILD_DIR}/react-native-cookies" "${PODS_CONFIGURATION_BUILD_DIR}/react-native-document-picker" "${PODS_CONFIGURATION_BUILD_DIR}/react-native-jitsi-meet" "${PODS_CONFIGURATION_BUILD_DIR}/react-native-mmkv-storage" "${PODS_CONFIGURATION_BUILD_DIR}/react-native-netinfo" "${PODS_CONFIGURATION_BUILD_DIR}/react-native-notifications" "${PODS_CONFIGURATION_BUILD_DIR}/react-native-orientation-locker" "${PODS_CONFIGURATION_BUILD_DIR}/react-native-restart" "${PODS_CONFIGURATION_BUILD_DIR}/react-native-safe-area-context" "${PODS_CONFIGURATION_BUILD_DIR}/react-native-simple-crypto" "${PODS_CONFIGURATION_BUILD_DIR}/react-native-slider" "${PODS_CONFIGURATION_BUILD_DIR}/react-native-webview" "${PODS_CONFIGURATION_BUILD_DIR}/rn-extensions-share" "${PODS_CONFIGURATION_BUILD_DIR}/rn-fetch-blob" +LIBRARY_SEARCH_PATHS = $(inherited) "${PODS_CONFIGURATION_BUILD_DIR}/BugsnagReactNative" "${PODS_CONFIGURATION_BUILD_DIR}/CocoaAsyncSocket" "${PODS_CONFIGURATION_BUILD_DIR}/DoubleConversion" "${PODS_CONFIGURATION_BUILD_DIR}/EXAV" "${PODS_CONFIGURATION_BUILD_DIR}/EXAppleAuthentication" "${PODS_CONFIGURATION_BUILD_DIR}/EXConstants" "${PODS_CONFIGURATION_BUILD_DIR}/EXFileSystem" "${PODS_CONFIGURATION_BUILD_DIR}/EXHaptics" "${PODS_CONFIGURATION_BUILD_DIR}/EXImageLoader" "${PODS_CONFIGURATION_BUILD_DIR}/EXKeepAwake" "${PODS_CONFIGURATION_BUILD_DIR}/EXLocalAuthentication" "${PODS_CONFIGURATION_BUILD_DIR}/EXPermissions" "${PODS_CONFIGURATION_BUILD_DIR}/EXVideoThumbnails" "${PODS_CONFIGURATION_BUILD_DIR}/EXWebBrowser" "${PODS_CONFIGURATION_BUILD_DIR}/FBReactNativeSpec" "${PODS_CONFIGURATION_BUILD_DIR}/FirebaseCore" "${PODS_CONFIGURATION_BUILD_DIR}/FirebaseCoreDiagnostics" "${PODS_CONFIGURATION_BUILD_DIR}/FirebaseCrashlytics" "${PODS_CONFIGURATION_BUILD_DIR}/FirebaseInstallations" "${PODS_CONFIGURATION_BUILD_DIR}/GoogleDataTransport" "${PODS_CONFIGURATION_BUILD_DIR}/GoogleUtilities" "${PODS_CONFIGURATION_BUILD_DIR}/KeyCommands" "${PODS_CONFIGURATION_BUILD_DIR}/MMKV" "${PODS_CONFIGURATION_BUILD_DIR}/MMKVCore" "${PODS_CONFIGURATION_BUILD_DIR}/PromisesObjC" "${PODS_CONFIGURATION_BUILD_DIR}/RCT-Folly" "${PODS_CONFIGURATION_BUILD_DIR}/RCTTypeSafety" "${PODS_CONFIGURATION_BUILD_DIR}/RNBootSplash" "${PODS_CONFIGURATION_BUILD_DIR}/RNCAsyncStorage" "${PODS_CONFIGURATION_BUILD_DIR}/RNCMaskedView" "${PODS_CONFIGURATION_BUILD_DIR}/RNCPicker" "${PODS_CONFIGURATION_BUILD_DIR}/RNConfigReader" "${PODS_CONFIGURATION_BUILD_DIR}/RNDateTimePicker" "${PODS_CONFIGURATION_BUILD_DIR}/RNDeviceInfo" "${PODS_CONFIGURATION_BUILD_DIR}/RNFBAnalytics" "${PODS_CONFIGURATION_BUILD_DIR}/RNFBApp" "${PODS_CONFIGURATION_BUILD_DIR}/RNFBCrashlytics" "${PODS_CONFIGURATION_BUILD_DIR}/RNFastImage" "${PODS_CONFIGURATION_BUILD_DIR}/RNGestureHandler" "${PODS_CONFIGURATION_BUILD_DIR}/RNImageCropPicker" "${PODS_CONFIGURATION_BUILD_DIR}/RNLocalize" "${PODS_CONFIGURATION_BUILD_DIR}/RNReanimated" "${PODS_CONFIGURATION_BUILD_DIR}/RNRootView" "${PODS_CONFIGURATION_BUILD_DIR}/RNScreens" "${PODS_CONFIGURATION_BUILD_DIR}/RNVectorIcons" "${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-cxxreact" "${PODS_CONFIGURATION_BUILD_DIR}/React-jsi" "${PODS_CONFIGURATION_BUILD_DIR}/React-jsiexecutor" "${PODS_CONFIGURATION_BUILD_DIR}/React-jsinspector" "${PODS_CONFIGURATION_BUILD_DIR}/React-perflogger" "${PODS_CONFIGURATION_BUILD_DIR}/ReactCommon" "${PODS_CONFIGURATION_BUILD_DIR}/ReactNativeART" "${PODS_CONFIGURATION_BUILD_DIR}/SDWebImage" "${PODS_CONFIGURATION_BUILD_DIR}/SDWebImageWebPCoder" "${PODS_CONFIGURATION_BUILD_DIR}/TOCropViewController" "${PODS_CONFIGURATION_BUILD_DIR}/UMAppLoader" "${PODS_CONFIGURATION_BUILD_DIR}/UMCore" "${PODS_CONFIGURATION_BUILD_DIR}/UMPermissionsInterface" "${PODS_CONFIGURATION_BUILD_DIR}/UMReactNativeAdapter" "${PODS_CONFIGURATION_BUILD_DIR}/Yoga" "${PODS_CONFIGURATION_BUILD_DIR}/YogaKit" "${PODS_CONFIGURATION_BUILD_DIR}/glog" "${PODS_CONFIGURATION_BUILD_DIR}/libevent" "${PODS_CONFIGURATION_BUILD_DIR}/libwebp" "${PODS_CONFIGURATION_BUILD_DIR}/nanopb" "${PODS_CONFIGURATION_BUILD_DIR}/react-native-appearance" "${PODS_CONFIGURATION_BUILD_DIR}/react-native-background-timer" "${PODS_CONFIGURATION_BUILD_DIR}/react-native-blur" "${PODS_CONFIGURATION_BUILD_DIR}/react-native-cameraroll" "${PODS_CONFIGURATION_BUILD_DIR}/react-native-cookies" "${PODS_CONFIGURATION_BUILD_DIR}/react-native-document-picker" "${PODS_CONFIGURATION_BUILD_DIR}/react-native-jitsi-meet" "${PODS_CONFIGURATION_BUILD_DIR}/react-native-mmkv-storage" "${PODS_CONFIGURATION_BUILD_DIR}/react-native-netinfo" "${PODS_CONFIGURATION_BUILD_DIR}/react-native-notifications" "${PODS_CONFIGURATION_BUILD_DIR}/react-native-orientation-locker" "${PODS_CONFIGURATION_BUILD_DIR}/react-native-restart" "${PODS_CONFIGURATION_BUILD_DIR}/react-native-safe-area-context" "${PODS_CONFIGURATION_BUILD_DIR}/react-native-simple-crypto" "${PODS_CONFIGURATION_BUILD_DIR}/react-native-slider" "${PODS_CONFIGURATION_BUILD_DIR}/react-native-webview" "${PODS_CONFIGURATION_BUILD_DIR}/rn-extensions-share" "${PODS_CONFIGURATION_BUILD_DIR}/rn-fetch-blob" OTHER_CFLAGS = $(inherited) -fmodule-map-file="${PODS_CONFIGURATION_BUILD_DIR}/YogaKit/YogaKit.modulemap" -fmodule-map-file="${PODS_CONFIGURATION_BUILD_DIR}/react-native-simple-crypto/react_native_simple_crypto.modulemap" -fmodule-map-file="${PODS_ROOT}/Headers/Public/React/React-Core.modulemap" -fmodule-map-file="${PODS_ROOT}/Headers/Public/yoga/Yoga.modulemap" -OTHER_LDFLAGS = $(inherited) -ObjC -l"BugsnagReactNative" -l"CocoaAsyncSocket" -l"DoubleConversion" -l"EXAV" -l"EXAppleAuthentication" -l"EXConstants" -l"EXFileSystem" -l"EXHaptics" -l"EXImageLoader" -l"EXKeepAwake" -l"EXLocalAuthentication" -l"EXPermissions" -l"EXVideoThumbnails" -l"EXWebBrowser" -l"FBReactNativeSpec" -l"FirebaseCore" -l"FirebaseCoreDiagnostics" -l"FirebaseCrashlytics" -l"FirebaseInstallations" -l"GoogleDataTransport" -l"GoogleDataTransportCCTSupport" -l"GoogleUtilities" -l"KeyCommands" -l"MMKV" -l"MMKVCore" -l"PromisesObjC" -l"RCT-Folly" -l"RCTTypeSafety" -l"RNBootSplash" -l"RNCAsyncStorage" -l"RNCMaskedView" -l"RNCPicker" -l"RNConfigReader" -l"RNDateTimePicker" -l"RNDeviceInfo" -l"RNFBAnalytics" -l"RNFBApp" -l"RNFBCrashlytics" -l"RNFastImage" -l"RNGestureHandler" -l"RNImageCropPicker" -l"RNLocalize" -l"RNReanimated" -l"RNRootView" -l"RNScreens" -l"RNVectorIcons" -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-cxxreact" -l"React-jsi" -l"React-jsiexecutor" -l"React-jsinspector" -l"React-perflogger" -l"ReactCommon" -l"ReactNativeART" -l"ReactNativeUiLib" -l"SDWebImage" -l"SDWebImageWebPCoder" -l"TOCropViewController" -l"UMAppLoader" -l"UMCore" -l"UMPermissionsInterface" -l"UMReactNativeAdapter" -l"Yoga" -l"YogaKit" -l"c++" -l"glog" -l"libevent" -l"libwebp" -l"nanopb" -l"react-native-appearance" -l"react-native-background-timer" -l"react-native-blur" -l"react-native-cameraroll" -l"react-native-cookies" -l"react-native-document-picker" -l"react-native-jitsi-meet" -l"react-native-mmkv-storage" -l"react-native-netinfo" -l"react-native-notifications" -l"react-native-orientation-locker" -l"react-native-restart" -l"react-native-safe-area-context" -l"react-native-simple-crypto" -l"react-native-slider" -l"react-native-webview" -l"rn-extensions-share" -l"rn-fetch-blob" -l"sqlite3" -l"stdc++" -l"z" -framework "AudioToolbox" -framework "CFNetwork" -framework "CoreFoundation" -framework "CoreTelephony" -framework "FIRAnalyticsConnector" -framework "FirebaseAnalytics" -framework "Foundation" -framework "GoogleAppMeasurement" -framework "ImageIO" -framework "JavaScriptCore" -framework "JitsiMeet" -framework "MobileCoreServices" -framework "OpenSSL" -framework "Photos" -framework "Security" -framework "StoreKit" -framework "SystemConfiguration" -framework "UIKit" -framework "WebRTC" -framework "hermes" +OTHER_LDFLAGS = $(inherited) -ObjC -l"BugsnagReactNative" -l"CocoaAsyncSocket" -l"DoubleConversion" -l"EXAV" -l"EXAppleAuthentication" -l"EXConstants" -l"EXFileSystem" -l"EXHaptics" -l"EXImageLoader" -l"EXKeepAwake" -l"EXLocalAuthentication" -l"EXPermissions" -l"EXVideoThumbnails" -l"EXWebBrowser" -l"FBReactNativeSpec" -l"FirebaseCore" -l"FirebaseCoreDiagnostics" -l"FirebaseCrashlytics" -l"FirebaseInstallations" -l"GoogleDataTransport" -l"GoogleUtilities" -l"KeyCommands" -l"MMKV" -l"MMKVCore" -l"PromisesObjC" -l"RCT-Folly" -l"RCTTypeSafety" -l"RNBootSplash" -l"RNCAsyncStorage" -l"RNCMaskedView" -l"RNCPicker" -l"RNConfigReader" -l"RNDateTimePicker" -l"RNDeviceInfo" -l"RNFBAnalytics" -l"RNFBApp" -l"RNFBCrashlytics" -l"RNFastImage" -l"RNGestureHandler" -l"RNImageCropPicker" -l"RNLocalize" -l"RNReanimated" -l"RNRootView" -l"RNScreens" -l"RNVectorIcons" -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-cxxreact" -l"React-jsi" -l"React-jsiexecutor" -l"React-jsinspector" -l"React-perflogger" -l"ReactCommon" -l"ReactNativeART" -l"SDWebImage" -l"SDWebImageWebPCoder" -l"TOCropViewController" -l"UMAppLoader" -l"UMCore" -l"UMPermissionsInterface" -l"UMReactNativeAdapter" -l"Yoga" -l"YogaKit" -l"c++" -l"glog" -l"libevent" -l"libwebp" -l"nanopb" -l"react-native-appearance" -l"react-native-background-timer" -l"react-native-blur" -l"react-native-cameraroll" -l"react-native-cookies" -l"react-native-document-picker" -l"react-native-jitsi-meet" -l"react-native-mmkv-storage" -l"react-native-netinfo" -l"react-native-notifications" -l"react-native-orientation-locker" -l"react-native-restart" -l"react-native-safe-area-context" -l"react-native-simple-crypto" -l"react-native-slider" -l"react-native-webview" -l"rn-extensions-share" -l"rn-fetch-blob" -l"sqlite3" -l"stdc++" -l"z" -framework "AudioToolbox" -framework "CFNetwork" -framework "CoreFoundation" -framework "CoreTelephony" -framework "FIRAnalyticsConnector" -framework "FirebaseAnalytics" -framework "Foundation" -framework "GoogleAppMeasurement" -framework "ImageIO" -framework "JavaScriptCore" -framework "JitsiMeet" -framework "MobileCoreServices" -framework "OpenSSL" -framework "Photos" -framework "Security" -framework "StoreKit" -framework "SystemConfiguration" -framework "UIKit" -framework "WebRTC" -framework "hermes" OTHER_SWIFT_FLAGS = $(inherited) -D COCOAPODS -Xcc -fmodule-map-file="${PODS_CONFIGURATION_BUILD_DIR}/YogaKit/YogaKit.modulemap" -Xcc -fmodule-map-file="${PODS_CONFIGURATION_BUILD_DIR}/react-native-simple-crypto/react_native_simple_crypto.modulemap" -Xcc -fmodule-map-file="${PODS_ROOT}/Headers/Public/React/React-Core.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/Pods/Target Support Files/Pods-defaults-RocketChatRN/Pods-defaults-RocketChatRN-acknowledgements.markdown b/ios/Pods/Target Support Files/Pods-defaults-RocketChatRN/Pods-defaults-RocketChatRN-acknowledgements.markdown index e6fbf305d0..208bf69857 100644 --- a/ios/Pods/Target Support Files/Pods-defaults-RocketChatRN/Pods-defaults-RocketChatRN-acknowledgements.markdown +++ b/ios/Pods/Target Support Files/Pods-defaults-RocketChatRN/Pods-defaults-RocketChatRN-acknowledgements.markdown @@ -255,7 +255,7 @@ OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. same "printed page" as the copyright notice for easier identification within third-party archives. - Copyright [yyyy] [name of copyright owner] + Copyright 2020 Firebase, Inc. Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. @@ -465,7 +465,7 @@ Copyright 2020 Google same "printed page" as the copyright notice for easier identification within third-party archives. - Copyright [yyyy] [name of copyright owner] + Copyright 2020 Firebase, Inc. Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. @@ -671,7 +671,7 @@ Copyright 2020 Google same "printed page" as the copyright notice for easier identification within third-party archives. - Copyright [yyyy] [name of copyright owner] + Copyright 2020 Firebase, Inc. Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. @@ -1111,7 +1111,7 @@ WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. same "printed page" as the copyright notice for easier identification within third-party archives. - Copyright [yyyy] [name of copyright owner] + Copyright 2020 Firebase, Inc. Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. @@ -1900,213 +1900,7 @@ Copyright 2020 Google 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. - - -## GoogleDataTransportCCTSupport - - - 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] + Copyright 2020 Firebase, Inc. Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. @@ -2762,6 +2556,10 @@ freely, subject to the following restrictions: 3. This notice may not be removed or altered from any source distribution. +Open Source Software Licensed Under the BSD 3-Clause License: +---------------------------------------------------------------------------------------- +1. pybind11 v2.5.0 +Copyright (c) 2016 Wenzel Jakob <wenzel.jakob@epfl.ch>, All rights reserved. Terms of the BSD 3-Clause License: -------------------------------------------------------------------- @@ -3825,7 +3623,7 @@ SOFTWARE. ## SDWebImage -Copyright (c) 2009-2018 Olivier Poitrey rs@dailymotion.com +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 diff --git a/ios/Pods/Target Support Files/Pods-defaults-RocketChatRN/Pods-defaults-RocketChatRN-acknowledgements.plist b/ios/Pods/Target Support Files/Pods-defaults-RocketChatRN/Pods-defaults-RocketChatRN-acknowledgements.plist index 66ae992be2..8aadeed0ec 100644 --- a/ios/Pods/Target Support Files/Pods-defaults-RocketChatRN/Pods-defaults-RocketChatRN-acknowledgements.plist +++ b/ios/Pods/Target Support Files/Pods-defaults-RocketChatRN/Pods-defaults-RocketChatRN-acknowledgements.plist @@ -284,7 +284,7 @@ OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. same "printed page" as the copyright notice for easier identification within third-party archives. - Copyright [yyyy] [name of copyright owner] + Copyright 2020 Firebase, Inc. Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. @@ -506,7 +506,7 @@ OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. same "printed page" as the copyright notice for easier identification within third-party archives. - Copyright [yyyy] [name of copyright owner] + Copyright 2020 Firebase, Inc. Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. @@ -718,7 +718,7 @@ OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. same "printed page" as the copyright notice for easier identification within third-party archives. - Copyright [yyyy] [name of copyright owner] + Copyright 2020 Firebase, Inc. Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. @@ -1170,7 +1170,7 @@ WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. same "printed page" as the copyright notice for easier identification within third-party archives. - Copyright [yyyy] [name of copyright owner] + Copyright 2020 Firebase, Inc. Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. @@ -2013,7 +2013,7 @@ SOFTWARE. same "printed page" as the copyright notice for easier identification within third-party archives. - Copyright [yyyy] [name of copyright owner] + Copyright 2020 Firebase, Inc. Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. @@ -2227,218 +2227,6 @@ SOFTWARE. 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. -</string> - <key>License</key> - <string>Apache</string> - <key>Title</key> - <string>GoogleDataTransportCCTSupport</string> - <key>Type</key> - <string>PSGroupSpecifier</string> - </dict> - <dict> - <key>FooterText</key> - <string> - 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 @@ -2905,6 +2693,10 @@ freely, subject to the following restrictions: 3. This notice may not be removed or altered from any source distribution. +Open Source Software Licensed Under the BSD 3-Clause License: +---------------------------------------------------------------------------------------- +1. pybind11 v2.5.0 +Copyright (c) 2016 Wenzel Jakob <wenzel.jakob@epfl.ch>, All rights reserved. Terms of the BSD 3-Clause License: -------------------------------------------------------------------- @@ -4106,7 +3898,7 @@ SOFTWARE.</string> </dict> <dict> <key>FooterText</key> - <string>Copyright (c) 2009-2018 Olivier Poitrey rs@dailymotion.com + <string>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 diff --git a/ios/Pods/Target Support Files/Pods-defaults-RocketChatRN/Pods-defaults-RocketChatRN.debug.xcconfig b/ios/Pods/Target Support Files/Pods-defaults-RocketChatRN/Pods-defaults-RocketChatRN.debug.xcconfig index 7ab0794938..78ed72cf7a 100644 --- a/ios/Pods/Target Support Files/Pods-defaults-RocketChatRN/Pods-defaults-RocketChatRN.debug.xcconfig +++ b/ios/Pods/Target Support Files/Pods-defaults-RocketChatRN/Pods-defaults-RocketChatRN.debug.xcconfig @@ -4,11 +4,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}/JitsiMeetSDK/Frameworks" "${PODS_ROOT}/OpenSSL-Universal/Frameworks" "${PODS_ROOT}/hermes-engine/destroot/Library/Frameworks/iphoneos" "${PODS_XCFRAMEWORKS_BUILD_DIR}/OpenSSL" 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/BugsnagReactNative" "${PODS_ROOT}/Headers/Public/CocoaAsyncSocket" "${PODS_ROOT}/Headers/Public/DoubleConversion" "${PODS_ROOT}/Headers/Public/EXAV" "${PODS_ROOT}/Headers/Public/EXAppleAuthentication" "${PODS_ROOT}/Headers/Public/EXConstants" "${PODS_ROOT}/Headers/Public/EXFileSystem" "${PODS_ROOT}/Headers/Public/EXHaptics" "${PODS_ROOT}/Headers/Public/EXImageLoader" "${PODS_ROOT}/Headers/Public/EXKeepAwake" "${PODS_ROOT}/Headers/Public/EXLocalAuthentication" "${PODS_ROOT}/Headers/Public/EXPermissions" "${PODS_ROOT}/Headers/Public/EXVideoThumbnails" "${PODS_ROOT}/Headers/Public/EXWebBrowser" "${PODS_ROOT}/Headers/Public/FBLazyVector" "${PODS_ROOT}/Headers/Public/FBReactNativeSpec" "${PODS_ROOT}/Headers/Public/Firebase" "${PODS_ROOT}/Headers/Public/FirebaseCore" "${PODS_ROOT}/Headers/Public/FirebaseCoreDiagnostics" "${PODS_ROOT}/Headers/Public/FirebaseCrashlytics" "${PODS_ROOT}/Headers/Public/FirebaseInstallations" "${PODS_ROOT}/Headers/Public/Flipper" "${PODS_ROOT}/Headers/Public/Flipper-DoubleConversion" "${PODS_ROOT}/Headers/Public/Flipper-Folly" "${PODS_ROOT}/Headers/Public/Flipper-Glog" "${PODS_ROOT}/Headers/Public/Flipper-PeerTalk" "${PODS_ROOT}/Headers/Public/Flipper-RSocket" "${PODS_ROOT}/Headers/Public/FlipperKit" "${PODS_ROOT}/Headers/Public/GoogleDataTransport" "${PODS_ROOT}/Headers/Public/GoogleDataTransportCCTSupport" "${PODS_ROOT}/Headers/Public/GoogleUtilities" "${PODS_ROOT}/Headers/Public/KeyCommands" "${PODS_ROOT}/Headers/Public/MMKV" "${PODS_ROOT}/Headers/Public/MMKVCore" "${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/RNBootSplash" "${PODS_ROOT}/Headers/Public/RNCAsyncStorage" "${PODS_ROOT}/Headers/Public/RNCMaskedView" "${PODS_ROOT}/Headers/Public/RNCPicker" "${PODS_ROOT}/Headers/Public/RNConfigReader" "${PODS_ROOT}/Headers/Public/RNDateTimePicker" "${PODS_ROOT}/Headers/Public/RNDeviceInfo" "${PODS_ROOT}/Headers/Public/RNFBAnalytics" "${PODS_ROOT}/Headers/Public/RNFBApp" "${PODS_ROOT}/Headers/Public/RNFBCrashlytics" "${PODS_ROOT}/Headers/Public/RNFastImage" "${PODS_ROOT}/Headers/Public/RNGestureHandler" "${PODS_ROOT}/Headers/Public/RNImageCropPicker" "${PODS_ROOT}/Headers/Public/RNLocalize" "${PODS_ROOT}/Headers/Public/RNReanimated" "${PODS_ROOT}/Headers/Public/RNRootView" "${PODS_ROOT}/Headers/Public/RNScreens" "${PODS_ROOT}/Headers/Public/RNVectorIcons" "${PODS_ROOT}/Headers/Public/React-Core" "${PODS_ROOT}/Headers/Public/React-RCTBlob" "${PODS_ROOT}/Headers/Public/React-RCTText" "${PODS_ROOT}/Headers/Public/React-callinvoker" "${PODS_ROOT}/Headers/Public/React-cxxreact" "${PODS_ROOT}/Headers/Public/React-jsi" "${PODS_ROOT}/Headers/Public/React-jsiexecutor" "${PODS_ROOT}/Headers/Public/React-jsinspector" "${PODS_ROOT}/Headers/Public/React-perflogger" "${PODS_ROOT}/Headers/Public/React-runtimeexecutor" "${PODS_ROOT}/Headers/Public/ReactCommon" "${PODS_ROOT}/Headers/Public/ReactNativeART" "${PODS_ROOT}/Headers/Public/ReactNativeUiLib" "${PODS_ROOT}/Headers/Public/SDWebImage" "${PODS_ROOT}/Headers/Public/SDWebImageWebPCoder" "${PODS_ROOT}/Headers/Public/TOCropViewController" "${PODS_ROOT}/Headers/Public/UMAppLoader" "${PODS_ROOT}/Headers/Public/UMBarCodeScannerInterface" "${PODS_ROOT}/Headers/Public/UMCameraInterface" "${PODS_ROOT}/Headers/Public/UMConstantsInterface" "${PODS_ROOT}/Headers/Public/UMCore" "${PODS_ROOT}/Headers/Public/UMFaceDetectorInterface" "${PODS_ROOT}/Headers/Public/UMFileSystemInterface" "${PODS_ROOT}/Headers/Public/UMFontInterface" "${PODS_ROOT}/Headers/Public/UMImageLoaderInterface" "${PODS_ROOT}/Headers/Public/UMPermissionsInterface" "${PODS_ROOT}/Headers/Public/UMReactNativeAdapter" "${PODS_ROOT}/Headers/Public/UMSensorsInterface" "${PODS_ROOT}/Headers/Public/UMTaskManagerInterface" "${PODS_ROOT}/Headers/Public/Yoga" "${PODS_ROOT}/Headers/Public/YogaKit" "${PODS_ROOT}/Headers/Public/glog" "${PODS_ROOT}/Headers/Public/hermes-engine" "${PODS_ROOT}/Headers/Public/libevent" "${PODS_ROOT}/Headers/Public/libwebp" "${PODS_ROOT}/Headers/Public/nanopb" "${PODS_ROOT}/Headers/Public/react-native-appearance" "${PODS_ROOT}/Headers/Public/react-native-background-timer" "${PODS_ROOT}/Headers/Public/react-native-blur" "${PODS_ROOT}/Headers/Public/react-native-cameraroll" "${PODS_ROOT}/Headers/Public/react-native-cookies" "${PODS_ROOT}/Headers/Public/react-native-document-picker" "${PODS_ROOT}/Headers/Public/react-native-jitsi-meet" "${PODS_ROOT}/Headers/Public/react-native-mmkv-storage" "${PODS_ROOT}/Headers/Public/react-native-netinfo" "${PODS_ROOT}/Headers/Public/react-native-notifications" "${PODS_ROOT}/Headers/Public/react-native-orientation-locker" "${PODS_ROOT}/Headers/Public/react-native-restart" "${PODS_ROOT}/Headers/Public/react-native-safe-area-context" "${PODS_ROOT}/Headers/Public/react-native-simple-crypto" "${PODS_ROOT}/Headers/Public/react-native-slider" "${PODS_ROOT}/Headers/Public/react-native-webview" "${PODS_ROOT}/Headers/Public/rn-extensions-share" "${PODS_ROOT}/Headers/Public/rn-fetch-blob" $(inherited) ${PODS_ROOT}/Firebase/CoreOnly/Sources "${PODS_TARGET_SRCROOT}/Sources/FBLPromises/include" "$(PODS_ROOT)/boost-for-react-native" "$(PODS_ROOT)/Headers/Private/React-Core" "$(PODS_TARGET_SRCROOT)/include/" +HEADER_SEARCH_PATHS = $(inherited) "${PODS_ROOT}/Headers/Public" "${PODS_ROOT}/Headers/Public/BugsnagReactNative" "${PODS_ROOT}/Headers/Public/CocoaAsyncSocket" "${PODS_ROOT}/Headers/Public/DoubleConversion" "${PODS_ROOT}/Headers/Public/EXAV" "${PODS_ROOT}/Headers/Public/EXAppleAuthentication" "${PODS_ROOT}/Headers/Public/EXConstants" "${PODS_ROOT}/Headers/Public/EXFileSystem" "${PODS_ROOT}/Headers/Public/EXHaptics" "${PODS_ROOT}/Headers/Public/EXImageLoader" "${PODS_ROOT}/Headers/Public/EXKeepAwake" "${PODS_ROOT}/Headers/Public/EXLocalAuthentication" "${PODS_ROOT}/Headers/Public/EXPermissions" "${PODS_ROOT}/Headers/Public/EXVideoThumbnails" "${PODS_ROOT}/Headers/Public/EXWebBrowser" "${PODS_ROOT}/Headers/Public/FBLazyVector" "${PODS_ROOT}/Headers/Public/FBReactNativeSpec" "${PODS_ROOT}/Headers/Public/Firebase" "${PODS_ROOT}/Headers/Public/FirebaseCore" "${PODS_ROOT}/Headers/Public/FirebaseCoreDiagnostics" "${PODS_ROOT}/Headers/Public/FirebaseCrashlytics" "${PODS_ROOT}/Headers/Public/FirebaseInstallations" "${PODS_ROOT}/Headers/Public/Flipper" "${PODS_ROOT}/Headers/Public/Flipper-DoubleConversion" "${PODS_ROOT}/Headers/Public/Flipper-Folly" "${PODS_ROOT}/Headers/Public/Flipper-Glog" "${PODS_ROOT}/Headers/Public/Flipper-PeerTalk" "${PODS_ROOT}/Headers/Public/Flipper-RSocket" "${PODS_ROOT}/Headers/Public/FlipperKit" "${PODS_ROOT}/Headers/Public/GoogleDataTransport" "${PODS_ROOT}/Headers/Public/GoogleUtilities" "${PODS_ROOT}/Headers/Public/KeyCommands" "${PODS_ROOT}/Headers/Public/MMKV" "${PODS_ROOT}/Headers/Public/MMKVCore" "${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/RNBootSplash" "${PODS_ROOT}/Headers/Public/RNCAsyncStorage" "${PODS_ROOT}/Headers/Public/RNCMaskedView" "${PODS_ROOT}/Headers/Public/RNCPicker" "${PODS_ROOT}/Headers/Public/RNConfigReader" "${PODS_ROOT}/Headers/Public/RNDateTimePicker" "${PODS_ROOT}/Headers/Public/RNDeviceInfo" "${PODS_ROOT}/Headers/Public/RNFBAnalytics" "${PODS_ROOT}/Headers/Public/RNFBApp" "${PODS_ROOT}/Headers/Public/RNFBCrashlytics" "${PODS_ROOT}/Headers/Public/RNFastImage" "${PODS_ROOT}/Headers/Public/RNGestureHandler" "${PODS_ROOT}/Headers/Public/RNImageCropPicker" "${PODS_ROOT}/Headers/Public/RNLocalize" "${PODS_ROOT}/Headers/Public/RNReanimated" "${PODS_ROOT}/Headers/Public/RNRootView" "${PODS_ROOT}/Headers/Public/RNScreens" "${PODS_ROOT}/Headers/Public/RNVectorIcons" "${PODS_ROOT}/Headers/Public/React-Core" "${PODS_ROOT}/Headers/Public/React-RCTBlob" "${PODS_ROOT}/Headers/Public/React-RCTText" "${PODS_ROOT}/Headers/Public/React-callinvoker" "${PODS_ROOT}/Headers/Public/React-cxxreact" "${PODS_ROOT}/Headers/Public/React-jsi" "${PODS_ROOT}/Headers/Public/React-jsiexecutor" "${PODS_ROOT}/Headers/Public/React-jsinspector" "${PODS_ROOT}/Headers/Public/React-perflogger" "${PODS_ROOT}/Headers/Public/React-runtimeexecutor" "${PODS_ROOT}/Headers/Public/ReactCommon" "${PODS_ROOT}/Headers/Public/ReactNativeART" "${PODS_ROOT}/Headers/Public/ReactNativeUiLib" "${PODS_ROOT}/Headers/Public/SDWebImage" "${PODS_ROOT}/Headers/Public/SDWebImageWebPCoder" "${PODS_ROOT}/Headers/Public/TOCropViewController" "${PODS_ROOT}/Headers/Public/UMAppLoader" "${PODS_ROOT}/Headers/Public/UMBarCodeScannerInterface" "${PODS_ROOT}/Headers/Public/UMCameraInterface" "${PODS_ROOT}/Headers/Public/UMConstantsInterface" "${PODS_ROOT}/Headers/Public/UMCore" "${PODS_ROOT}/Headers/Public/UMFaceDetectorInterface" "${PODS_ROOT}/Headers/Public/UMFileSystemInterface" "${PODS_ROOT}/Headers/Public/UMFontInterface" "${PODS_ROOT}/Headers/Public/UMImageLoaderInterface" "${PODS_ROOT}/Headers/Public/UMPermissionsInterface" "${PODS_ROOT}/Headers/Public/UMReactNativeAdapter" "${PODS_ROOT}/Headers/Public/UMSensorsInterface" "${PODS_ROOT}/Headers/Public/UMTaskManagerInterface" "${PODS_ROOT}/Headers/Public/Yoga" "${PODS_ROOT}/Headers/Public/YogaKit" "${PODS_ROOT}/Headers/Public/glog" "${PODS_ROOT}/Headers/Public/hermes-engine" "${PODS_ROOT}/Headers/Public/libevent" "${PODS_ROOT}/Headers/Public/libwebp" "${PODS_ROOT}/Headers/Public/nanopb" "${PODS_ROOT}/Headers/Public/react-native-appearance" "${PODS_ROOT}/Headers/Public/react-native-background-timer" "${PODS_ROOT}/Headers/Public/react-native-blur" "${PODS_ROOT}/Headers/Public/react-native-cameraroll" "${PODS_ROOT}/Headers/Public/react-native-cookies" "${PODS_ROOT}/Headers/Public/react-native-document-picker" "${PODS_ROOT}/Headers/Public/react-native-jitsi-meet" "${PODS_ROOT}/Headers/Public/react-native-mmkv-storage" "${PODS_ROOT}/Headers/Public/react-native-netinfo" "${PODS_ROOT}/Headers/Public/react-native-notifications" "${PODS_ROOT}/Headers/Public/react-native-orientation-locker" "${PODS_ROOT}/Headers/Public/react-native-restart" "${PODS_ROOT}/Headers/Public/react-native-safe-area-context" "${PODS_ROOT}/Headers/Public/react-native-simple-crypto" "${PODS_ROOT}/Headers/Public/react-native-slider" "${PODS_ROOT}/Headers/Public/react-native-webview" "${PODS_ROOT}/Headers/Public/rn-extensions-share" "${PODS_ROOT}/Headers/Public/rn-fetch-blob" $(inherited) ${PODS_ROOT}/Firebase/CoreOnly/Sources "${PODS_TARGET_SRCROOT}/Sources/FBLPromises/include" "$(PODS_ROOT)/boost-for-react-native" "$(PODS_ROOT)/Headers/Private/React-Core" "$(PODS_TARGET_SRCROOT)/include/" LD_RUNPATH_SEARCH_PATHS = $(inherited) '@executable_path/Frameworks' '@loader_path/Frameworks' -LIBRARY_SEARCH_PATHS = $(inherited) "${PODS_CONFIGURATION_BUILD_DIR}/BugsnagReactNative" "${PODS_CONFIGURATION_BUILD_DIR}/CocoaAsyncSocket" "${PODS_CONFIGURATION_BUILD_DIR}/DoubleConversion" "${PODS_CONFIGURATION_BUILD_DIR}/EXAV" "${PODS_CONFIGURATION_BUILD_DIR}/EXAppleAuthentication" "${PODS_CONFIGURATION_BUILD_DIR}/EXConstants" "${PODS_CONFIGURATION_BUILD_DIR}/EXFileSystem" "${PODS_CONFIGURATION_BUILD_DIR}/EXHaptics" "${PODS_CONFIGURATION_BUILD_DIR}/EXImageLoader" "${PODS_CONFIGURATION_BUILD_DIR}/EXKeepAwake" "${PODS_CONFIGURATION_BUILD_DIR}/EXLocalAuthentication" "${PODS_CONFIGURATION_BUILD_DIR}/EXPermissions" "${PODS_CONFIGURATION_BUILD_DIR}/EXVideoThumbnails" "${PODS_CONFIGURATION_BUILD_DIR}/EXWebBrowser" "${PODS_CONFIGURATION_BUILD_DIR}/FBReactNativeSpec" "${PODS_CONFIGURATION_BUILD_DIR}/FirebaseCore" "${PODS_CONFIGURATION_BUILD_DIR}/FirebaseCoreDiagnostics" "${PODS_CONFIGURATION_BUILD_DIR}/FirebaseCrashlytics" "${PODS_CONFIGURATION_BUILD_DIR}/FirebaseInstallations" "${PODS_CONFIGURATION_BUILD_DIR}/Flipper" "${PODS_CONFIGURATION_BUILD_DIR}/Flipper-DoubleConversion" "${PODS_CONFIGURATION_BUILD_DIR}/Flipper-Folly" "${PODS_CONFIGURATION_BUILD_DIR}/Flipper-Glog" "${PODS_CONFIGURATION_BUILD_DIR}/Flipper-PeerTalk" "${PODS_CONFIGURATION_BUILD_DIR}/Flipper-RSocket" "${PODS_CONFIGURATION_BUILD_DIR}/FlipperKit" "${PODS_CONFIGURATION_BUILD_DIR}/GoogleDataTransport" "${PODS_CONFIGURATION_BUILD_DIR}/GoogleDataTransportCCTSupport" "${PODS_CONFIGURATION_BUILD_DIR}/GoogleUtilities" "${PODS_CONFIGURATION_BUILD_DIR}/KeyCommands" "${PODS_CONFIGURATION_BUILD_DIR}/MMKV" "${PODS_CONFIGURATION_BUILD_DIR}/MMKVCore" "${PODS_CONFIGURATION_BUILD_DIR}/PromisesObjC" "${PODS_CONFIGURATION_BUILD_DIR}/RCT-Folly" "${PODS_CONFIGURATION_BUILD_DIR}/RCTTypeSafety" "${PODS_CONFIGURATION_BUILD_DIR}/RNBootSplash" "${PODS_CONFIGURATION_BUILD_DIR}/RNCAsyncStorage" "${PODS_CONFIGURATION_BUILD_DIR}/RNCMaskedView" "${PODS_CONFIGURATION_BUILD_DIR}/RNCPicker" "${PODS_CONFIGURATION_BUILD_DIR}/RNConfigReader" "${PODS_CONFIGURATION_BUILD_DIR}/RNDateTimePicker" "${PODS_CONFIGURATION_BUILD_DIR}/RNDeviceInfo" "${PODS_CONFIGURATION_BUILD_DIR}/RNFBAnalytics" "${PODS_CONFIGURATION_BUILD_DIR}/RNFBApp" "${PODS_CONFIGURATION_BUILD_DIR}/RNFBCrashlytics" "${PODS_CONFIGURATION_BUILD_DIR}/RNFastImage" "${PODS_CONFIGURATION_BUILD_DIR}/RNGestureHandler" "${PODS_CONFIGURATION_BUILD_DIR}/RNImageCropPicker" "${PODS_CONFIGURATION_BUILD_DIR}/RNLocalize" "${PODS_CONFIGURATION_BUILD_DIR}/RNReanimated" "${PODS_CONFIGURATION_BUILD_DIR}/RNRootView" "${PODS_CONFIGURATION_BUILD_DIR}/RNScreens" "${PODS_CONFIGURATION_BUILD_DIR}/RNVectorIcons" "${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-cxxreact" "${PODS_CONFIGURATION_BUILD_DIR}/React-jsi" "${PODS_CONFIGURATION_BUILD_DIR}/React-jsiexecutor" "${PODS_CONFIGURATION_BUILD_DIR}/React-jsinspector" "${PODS_CONFIGURATION_BUILD_DIR}/React-perflogger" "${PODS_CONFIGURATION_BUILD_DIR}/ReactCommon" "${PODS_CONFIGURATION_BUILD_DIR}/ReactNativeART" "${PODS_CONFIGURATION_BUILD_DIR}/ReactNativeUiLib" "${PODS_CONFIGURATION_BUILD_DIR}/SDWebImage" "${PODS_CONFIGURATION_BUILD_DIR}/SDWebImageWebPCoder" "${PODS_CONFIGURATION_BUILD_DIR}/TOCropViewController" "${PODS_CONFIGURATION_BUILD_DIR}/UMAppLoader" "${PODS_CONFIGURATION_BUILD_DIR}/UMCore" "${PODS_CONFIGURATION_BUILD_DIR}/UMPermissionsInterface" "${PODS_CONFIGURATION_BUILD_DIR}/UMReactNativeAdapter" "${PODS_CONFIGURATION_BUILD_DIR}/Yoga" "${PODS_CONFIGURATION_BUILD_DIR}/YogaKit" "${PODS_CONFIGURATION_BUILD_DIR}/glog" "${PODS_CONFIGURATION_BUILD_DIR}/libevent" "${PODS_CONFIGURATION_BUILD_DIR}/libwebp" "${PODS_CONFIGURATION_BUILD_DIR}/nanopb" "${PODS_CONFIGURATION_BUILD_DIR}/react-native-appearance" "${PODS_CONFIGURATION_BUILD_DIR}/react-native-background-timer" "${PODS_CONFIGURATION_BUILD_DIR}/react-native-blur" "${PODS_CONFIGURATION_BUILD_DIR}/react-native-cameraroll" "${PODS_CONFIGURATION_BUILD_DIR}/react-native-cookies" "${PODS_CONFIGURATION_BUILD_DIR}/react-native-document-picker" "${PODS_CONFIGURATION_BUILD_DIR}/react-native-jitsi-meet" "${PODS_CONFIGURATION_BUILD_DIR}/react-native-mmkv-storage" "${PODS_CONFIGURATION_BUILD_DIR}/react-native-netinfo" "${PODS_CONFIGURATION_BUILD_DIR}/react-native-notifications" "${PODS_CONFIGURATION_BUILD_DIR}/react-native-orientation-locker" "${PODS_CONFIGURATION_BUILD_DIR}/react-native-restart" "${PODS_CONFIGURATION_BUILD_DIR}/react-native-safe-area-context" "${PODS_CONFIGURATION_BUILD_DIR}/react-native-simple-crypto" "${PODS_CONFIGURATION_BUILD_DIR}/react-native-slider" "${PODS_CONFIGURATION_BUILD_DIR}/react-native-webview" "${PODS_CONFIGURATION_BUILD_DIR}/rn-extensions-share" "${PODS_CONFIGURATION_BUILD_DIR}/rn-fetch-blob" +LIBRARY_SEARCH_PATHS = $(inherited) "${PODS_CONFIGURATION_BUILD_DIR}/BugsnagReactNative" "${PODS_CONFIGURATION_BUILD_DIR}/CocoaAsyncSocket" "${PODS_CONFIGURATION_BUILD_DIR}/DoubleConversion" "${PODS_CONFIGURATION_BUILD_DIR}/EXAV" "${PODS_CONFIGURATION_BUILD_DIR}/EXAppleAuthentication" "${PODS_CONFIGURATION_BUILD_DIR}/EXConstants" "${PODS_CONFIGURATION_BUILD_DIR}/EXFileSystem" "${PODS_CONFIGURATION_BUILD_DIR}/EXHaptics" "${PODS_CONFIGURATION_BUILD_DIR}/EXImageLoader" "${PODS_CONFIGURATION_BUILD_DIR}/EXKeepAwake" "${PODS_CONFIGURATION_BUILD_DIR}/EXLocalAuthentication" "${PODS_CONFIGURATION_BUILD_DIR}/EXPermissions" "${PODS_CONFIGURATION_BUILD_DIR}/EXVideoThumbnails" "${PODS_CONFIGURATION_BUILD_DIR}/EXWebBrowser" "${PODS_CONFIGURATION_BUILD_DIR}/FBReactNativeSpec" "${PODS_CONFIGURATION_BUILD_DIR}/FirebaseCore" "${PODS_CONFIGURATION_BUILD_DIR}/FirebaseCoreDiagnostics" "${PODS_CONFIGURATION_BUILD_DIR}/FirebaseCrashlytics" "${PODS_CONFIGURATION_BUILD_DIR}/FirebaseInstallations" "${PODS_CONFIGURATION_BUILD_DIR}/Flipper" "${PODS_CONFIGURATION_BUILD_DIR}/Flipper-DoubleConversion" "${PODS_CONFIGURATION_BUILD_DIR}/Flipper-Folly" "${PODS_CONFIGURATION_BUILD_DIR}/Flipper-Glog" "${PODS_CONFIGURATION_BUILD_DIR}/Flipper-PeerTalk" "${PODS_CONFIGURATION_BUILD_DIR}/Flipper-RSocket" "${PODS_CONFIGURATION_BUILD_DIR}/FlipperKit" "${PODS_CONFIGURATION_BUILD_DIR}/GoogleDataTransport" "${PODS_CONFIGURATION_BUILD_DIR}/GoogleUtilities" "${PODS_CONFIGURATION_BUILD_DIR}/KeyCommands" "${PODS_CONFIGURATION_BUILD_DIR}/MMKV" "${PODS_CONFIGURATION_BUILD_DIR}/MMKVCore" "${PODS_CONFIGURATION_BUILD_DIR}/PromisesObjC" "${PODS_CONFIGURATION_BUILD_DIR}/RCT-Folly" "${PODS_CONFIGURATION_BUILD_DIR}/RCTTypeSafety" "${PODS_CONFIGURATION_BUILD_DIR}/RNBootSplash" "${PODS_CONFIGURATION_BUILD_DIR}/RNCAsyncStorage" "${PODS_CONFIGURATION_BUILD_DIR}/RNCMaskedView" "${PODS_CONFIGURATION_BUILD_DIR}/RNCPicker" "${PODS_CONFIGURATION_BUILD_DIR}/RNConfigReader" "${PODS_CONFIGURATION_BUILD_DIR}/RNDateTimePicker" "${PODS_CONFIGURATION_BUILD_DIR}/RNDeviceInfo" "${PODS_CONFIGURATION_BUILD_DIR}/RNFBAnalytics" "${PODS_CONFIGURATION_BUILD_DIR}/RNFBApp" "${PODS_CONFIGURATION_BUILD_DIR}/RNFBCrashlytics" "${PODS_CONFIGURATION_BUILD_DIR}/RNFastImage" "${PODS_CONFIGURATION_BUILD_DIR}/RNGestureHandler" "${PODS_CONFIGURATION_BUILD_DIR}/RNImageCropPicker" "${PODS_CONFIGURATION_BUILD_DIR}/RNLocalize" "${PODS_CONFIGURATION_BUILD_DIR}/RNReanimated" "${PODS_CONFIGURATION_BUILD_DIR}/RNRootView" "${PODS_CONFIGURATION_BUILD_DIR}/RNScreens" "${PODS_CONFIGURATION_BUILD_DIR}/RNVectorIcons" "${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-cxxreact" "${PODS_CONFIGURATION_BUILD_DIR}/React-jsi" "${PODS_CONFIGURATION_BUILD_DIR}/React-jsiexecutor" "${PODS_CONFIGURATION_BUILD_DIR}/React-jsinspector" "${PODS_CONFIGURATION_BUILD_DIR}/React-perflogger" "${PODS_CONFIGURATION_BUILD_DIR}/ReactCommon" "${PODS_CONFIGURATION_BUILD_DIR}/ReactNativeART" "${PODS_CONFIGURATION_BUILD_DIR}/SDWebImage" "${PODS_CONFIGURATION_BUILD_DIR}/SDWebImageWebPCoder" "${PODS_CONFIGURATION_BUILD_DIR}/TOCropViewController" "${PODS_CONFIGURATION_BUILD_DIR}/UMAppLoader" "${PODS_CONFIGURATION_BUILD_DIR}/UMCore" "${PODS_CONFIGURATION_BUILD_DIR}/UMPermissionsInterface" "${PODS_CONFIGURATION_BUILD_DIR}/UMReactNativeAdapter" "${PODS_CONFIGURATION_BUILD_DIR}/Yoga" "${PODS_CONFIGURATION_BUILD_DIR}/YogaKit" "${PODS_CONFIGURATION_BUILD_DIR}/glog" "${PODS_CONFIGURATION_BUILD_DIR}/libevent" "${PODS_CONFIGURATION_BUILD_DIR}/libwebp" "${PODS_CONFIGURATION_BUILD_DIR}/nanopb" "${PODS_CONFIGURATION_BUILD_DIR}/react-native-appearance" "${PODS_CONFIGURATION_BUILD_DIR}/react-native-background-timer" "${PODS_CONFIGURATION_BUILD_DIR}/react-native-blur" "${PODS_CONFIGURATION_BUILD_DIR}/react-native-cameraroll" "${PODS_CONFIGURATION_BUILD_DIR}/react-native-cookies" "${PODS_CONFIGURATION_BUILD_DIR}/react-native-document-picker" "${PODS_CONFIGURATION_BUILD_DIR}/react-native-jitsi-meet" "${PODS_CONFIGURATION_BUILD_DIR}/react-native-mmkv-storage" "${PODS_CONFIGURATION_BUILD_DIR}/react-native-netinfo" "${PODS_CONFIGURATION_BUILD_DIR}/react-native-notifications" "${PODS_CONFIGURATION_BUILD_DIR}/react-native-orientation-locker" "${PODS_CONFIGURATION_BUILD_DIR}/react-native-restart" "${PODS_CONFIGURATION_BUILD_DIR}/react-native-safe-area-context" "${PODS_CONFIGURATION_BUILD_DIR}/react-native-simple-crypto" "${PODS_CONFIGURATION_BUILD_DIR}/react-native-slider" "${PODS_CONFIGURATION_BUILD_DIR}/react-native-webview" "${PODS_CONFIGURATION_BUILD_DIR}/rn-extensions-share" "${PODS_CONFIGURATION_BUILD_DIR}/rn-fetch-blob" OTHER_CFLAGS = $(inherited) -fmodule-map-file="${PODS_CONFIGURATION_BUILD_DIR}/YogaKit/YogaKit.modulemap" -fmodule-map-file="${PODS_CONFIGURATION_BUILD_DIR}/react-native-simple-crypto/react_native_simple_crypto.modulemap" -fmodule-map-file="${PODS_ROOT}/Headers/Public/FlipperKit/FlipperKit.modulemap" -fmodule-map-file="${PODS_ROOT}/Headers/Public/React/React-Core.modulemap" -fmodule-map-file="${PODS_ROOT}/Headers/Public/yoga/Yoga.modulemap" -OTHER_LDFLAGS = $(inherited) -ObjC -l"BugsnagReactNative" -l"CocoaAsyncSocket" -l"DoubleConversion" -l"EXAV" -l"EXAppleAuthentication" -l"EXConstants" -l"EXFileSystem" -l"EXHaptics" -l"EXImageLoader" -l"EXKeepAwake" -l"EXLocalAuthentication" -l"EXPermissions" -l"EXVideoThumbnails" -l"EXWebBrowser" -l"FBReactNativeSpec" -l"FirebaseCore" -l"FirebaseCoreDiagnostics" -l"FirebaseCrashlytics" -l"FirebaseInstallations" -l"Flipper" -l"Flipper-DoubleConversion" -l"Flipper-Folly" -l"Flipper-Glog" -l"Flipper-PeerTalk" -l"Flipper-RSocket" -l"FlipperKit" -l"GoogleDataTransport" -l"GoogleDataTransportCCTSupport" -l"GoogleUtilities" -l"KeyCommands" -l"MMKV" -l"MMKVCore" -l"PromisesObjC" -l"RCT-Folly" -l"RCTTypeSafety" -l"RNBootSplash" -l"RNCAsyncStorage" -l"RNCMaskedView" -l"RNCPicker" -l"RNConfigReader" -l"RNDateTimePicker" -l"RNDeviceInfo" -l"RNFBAnalytics" -l"RNFBApp" -l"RNFBCrashlytics" -l"RNFastImage" -l"RNGestureHandler" -l"RNImageCropPicker" -l"RNLocalize" -l"RNReanimated" -l"RNRootView" -l"RNScreens" -l"RNVectorIcons" -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-cxxreact" -l"React-jsi" -l"React-jsiexecutor" -l"React-jsinspector" -l"React-perflogger" -l"ReactCommon" -l"ReactNativeART" -l"ReactNativeUiLib" -l"SDWebImage" -l"SDWebImageWebPCoder" -l"TOCropViewController" -l"UMAppLoader" -l"UMCore" -l"UMPermissionsInterface" -l"UMReactNativeAdapter" -l"Yoga" -l"YogaKit" -l"c++" -l"glog" -l"libevent" -l"libwebp" -l"nanopb" -l"react-native-appearance" -l"react-native-background-timer" -l"react-native-blur" -l"react-native-cameraroll" -l"react-native-cookies" -l"react-native-document-picker" -l"react-native-jitsi-meet" -l"react-native-mmkv-storage" -l"react-native-netinfo" -l"react-native-notifications" -l"react-native-orientation-locker" -l"react-native-restart" -l"react-native-safe-area-context" -l"react-native-simple-crypto" -l"react-native-slider" -l"react-native-webview" -l"rn-extensions-share" -l"rn-fetch-blob" -l"sqlite3" -l"stdc++" -l"z" -framework "AudioToolbox" -framework "CFNetwork" -framework "CoreFoundation" -framework "CoreTelephony" -framework "FIRAnalyticsConnector" -framework "FirebaseAnalytics" -framework "Foundation" -framework "GoogleAppMeasurement" -framework "ImageIO" -framework "JavaScriptCore" -framework "JitsiMeet" -framework "MobileCoreServices" -framework "OpenSSL" -framework "Photos" -framework "Security" -framework "StoreKit" -framework "SystemConfiguration" -framework "UIKit" -framework "WebRTC" -framework "hermes" +OTHER_LDFLAGS = $(inherited) -ObjC -l"BugsnagReactNative" -l"CocoaAsyncSocket" -l"DoubleConversion" -l"EXAV" -l"EXAppleAuthentication" -l"EXConstants" -l"EXFileSystem" -l"EXHaptics" -l"EXImageLoader" -l"EXKeepAwake" -l"EXLocalAuthentication" -l"EXPermissions" -l"EXVideoThumbnails" -l"EXWebBrowser" -l"FBReactNativeSpec" -l"FirebaseCore" -l"FirebaseCoreDiagnostics" -l"FirebaseCrashlytics" -l"FirebaseInstallations" -l"Flipper" -l"Flipper-DoubleConversion" -l"Flipper-Folly" -l"Flipper-Glog" -l"Flipper-PeerTalk" -l"Flipper-RSocket" -l"FlipperKit" -l"GoogleDataTransport" -l"GoogleUtilities" -l"KeyCommands" -l"MMKV" -l"MMKVCore" -l"PromisesObjC" -l"RCT-Folly" -l"RCTTypeSafety" -l"RNBootSplash" -l"RNCAsyncStorage" -l"RNCMaskedView" -l"RNCPicker" -l"RNConfigReader" -l"RNDateTimePicker" -l"RNDeviceInfo" -l"RNFBAnalytics" -l"RNFBApp" -l"RNFBCrashlytics" -l"RNFastImage" -l"RNGestureHandler" -l"RNImageCropPicker" -l"RNLocalize" -l"RNReanimated" -l"RNRootView" -l"RNScreens" -l"RNVectorIcons" -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-cxxreact" -l"React-jsi" -l"React-jsiexecutor" -l"React-jsinspector" -l"React-perflogger" -l"ReactCommon" -l"ReactNativeART" -l"SDWebImage" -l"SDWebImageWebPCoder" -l"TOCropViewController" -l"UMAppLoader" -l"UMCore" -l"UMPermissionsInterface" -l"UMReactNativeAdapter" -l"Yoga" -l"YogaKit" -l"c++" -l"glog" -l"libevent" -l"libwebp" -l"nanopb" -l"react-native-appearance" -l"react-native-background-timer" -l"react-native-blur" -l"react-native-cameraroll" -l"react-native-cookies" -l"react-native-document-picker" -l"react-native-jitsi-meet" -l"react-native-mmkv-storage" -l"react-native-netinfo" -l"react-native-notifications" -l"react-native-orientation-locker" -l"react-native-restart" -l"react-native-safe-area-context" -l"react-native-simple-crypto" -l"react-native-slider" -l"react-native-webview" -l"rn-extensions-share" -l"rn-fetch-blob" -l"sqlite3" -l"stdc++" -l"z" -framework "AudioToolbox" -framework "CFNetwork" -framework "CoreFoundation" -framework "CoreTelephony" -framework "FIRAnalyticsConnector" -framework "FirebaseAnalytics" -framework "Foundation" -framework "GoogleAppMeasurement" -framework "ImageIO" -framework "JavaScriptCore" -framework "JitsiMeet" -framework "MobileCoreServices" -framework "OpenSSL" -framework "Photos" -framework "Security" -framework "StoreKit" -framework "SystemConfiguration" -framework "UIKit" -framework "WebRTC" -framework "hermes" OTHER_SWIFT_FLAGS = $(inherited) -D COCOAPODS -Xcc -fmodule-map-file="${PODS_CONFIGURATION_BUILD_DIR}/YogaKit/YogaKit.modulemap" -Xcc -fmodule-map-file="${PODS_CONFIGURATION_BUILD_DIR}/react-native-simple-crypto/react_native_simple_crypto.modulemap" -Xcc -fmodule-map-file="${PODS_ROOT}/Headers/Public/FlipperKit/FlipperKit.modulemap" -Xcc -fmodule-map-file="${PODS_ROOT}/Headers/Public/React/React-Core.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-defaults-RocketChatRN/Pods-defaults-RocketChatRN.release.xcconfig b/ios/Pods/Target Support Files/Pods-defaults-RocketChatRN/Pods-defaults-RocketChatRN.release.xcconfig index bb93383c82..21ddbaae7d 100644 --- a/ios/Pods/Target Support Files/Pods-defaults-RocketChatRN/Pods-defaults-RocketChatRN.release.xcconfig +++ b/ios/Pods/Target Support Files/Pods-defaults-RocketChatRN/Pods-defaults-RocketChatRN.release.xcconfig @@ -4,11 +4,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}/JitsiMeetSDK/Frameworks" "${PODS_ROOT}/OpenSSL-Universal/Frameworks" "${PODS_ROOT}/hermes-engine/destroot/Library/Frameworks/iphoneos" "${PODS_XCFRAMEWORKS_BUILD_DIR}/OpenSSL" 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/BugsnagReactNative" "${PODS_ROOT}/Headers/Public/CocoaAsyncSocket" "${PODS_ROOT}/Headers/Public/DoubleConversion" "${PODS_ROOT}/Headers/Public/EXAV" "${PODS_ROOT}/Headers/Public/EXAppleAuthentication" "${PODS_ROOT}/Headers/Public/EXConstants" "${PODS_ROOT}/Headers/Public/EXFileSystem" "${PODS_ROOT}/Headers/Public/EXHaptics" "${PODS_ROOT}/Headers/Public/EXImageLoader" "${PODS_ROOT}/Headers/Public/EXKeepAwake" "${PODS_ROOT}/Headers/Public/EXLocalAuthentication" "${PODS_ROOT}/Headers/Public/EXPermissions" "${PODS_ROOT}/Headers/Public/EXVideoThumbnails" "${PODS_ROOT}/Headers/Public/EXWebBrowser" "${PODS_ROOT}/Headers/Public/FBLazyVector" "${PODS_ROOT}/Headers/Public/FBReactNativeSpec" "${PODS_ROOT}/Headers/Public/Firebase" "${PODS_ROOT}/Headers/Public/FirebaseCore" "${PODS_ROOT}/Headers/Public/FirebaseCoreDiagnostics" "${PODS_ROOT}/Headers/Public/FirebaseCrashlytics" "${PODS_ROOT}/Headers/Public/FirebaseInstallations" "${PODS_ROOT}/Headers/Public/Flipper" "${PODS_ROOT}/Headers/Public/Flipper-DoubleConversion" "${PODS_ROOT}/Headers/Public/Flipper-Folly" "${PODS_ROOT}/Headers/Public/Flipper-Glog" "${PODS_ROOT}/Headers/Public/Flipper-PeerTalk" "${PODS_ROOT}/Headers/Public/Flipper-RSocket" "${PODS_ROOT}/Headers/Public/FlipperKit" "${PODS_ROOT}/Headers/Public/GoogleDataTransport" "${PODS_ROOT}/Headers/Public/GoogleDataTransportCCTSupport" "${PODS_ROOT}/Headers/Public/GoogleUtilities" "${PODS_ROOT}/Headers/Public/KeyCommands" "${PODS_ROOT}/Headers/Public/MMKV" "${PODS_ROOT}/Headers/Public/MMKVCore" "${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/RNBootSplash" "${PODS_ROOT}/Headers/Public/RNCAsyncStorage" "${PODS_ROOT}/Headers/Public/RNCMaskedView" "${PODS_ROOT}/Headers/Public/RNCPicker" "${PODS_ROOT}/Headers/Public/RNConfigReader" "${PODS_ROOT}/Headers/Public/RNDateTimePicker" "${PODS_ROOT}/Headers/Public/RNDeviceInfo" "${PODS_ROOT}/Headers/Public/RNFBAnalytics" "${PODS_ROOT}/Headers/Public/RNFBApp" "${PODS_ROOT}/Headers/Public/RNFBCrashlytics" "${PODS_ROOT}/Headers/Public/RNFastImage" "${PODS_ROOT}/Headers/Public/RNGestureHandler" "${PODS_ROOT}/Headers/Public/RNImageCropPicker" "${PODS_ROOT}/Headers/Public/RNLocalize" "${PODS_ROOT}/Headers/Public/RNReanimated" "${PODS_ROOT}/Headers/Public/RNRootView" "${PODS_ROOT}/Headers/Public/RNScreens" "${PODS_ROOT}/Headers/Public/RNVectorIcons" "${PODS_ROOT}/Headers/Public/React-Core" "${PODS_ROOT}/Headers/Public/React-RCTBlob" "${PODS_ROOT}/Headers/Public/React-RCTText" "${PODS_ROOT}/Headers/Public/React-callinvoker" "${PODS_ROOT}/Headers/Public/React-cxxreact" "${PODS_ROOT}/Headers/Public/React-jsi" "${PODS_ROOT}/Headers/Public/React-jsiexecutor" "${PODS_ROOT}/Headers/Public/React-jsinspector" "${PODS_ROOT}/Headers/Public/React-perflogger" "${PODS_ROOT}/Headers/Public/React-runtimeexecutor" "${PODS_ROOT}/Headers/Public/ReactCommon" "${PODS_ROOT}/Headers/Public/ReactNativeART" "${PODS_ROOT}/Headers/Public/ReactNativeUiLib" "${PODS_ROOT}/Headers/Public/SDWebImage" "${PODS_ROOT}/Headers/Public/SDWebImageWebPCoder" "${PODS_ROOT}/Headers/Public/TOCropViewController" "${PODS_ROOT}/Headers/Public/UMAppLoader" "${PODS_ROOT}/Headers/Public/UMBarCodeScannerInterface" "${PODS_ROOT}/Headers/Public/UMCameraInterface" "${PODS_ROOT}/Headers/Public/UMConstantsInterface" "${PODS_ROOT}/Headers/Public/UMCore" "${PODS_ROOT}/Headers/Public/UMFaceDetectorInterface" "${PODS_ROOT}/Headers/Public/UMFileSystemInterface" "${PODS_ROOT}/Headers/Public/UMFontInterface" "${PODS_ROOT}/Headers/Public/UMImageLoaderInterface" "${PODS_ROOT}/Headers/Public/UMPermissionsInterface" "${PODS_ROOT}/Headers/Public/UMReactNativeAdapter" "${PODS_ROOT}/Headers/Public/UMSensorsInterface" "${PODS_ROOT}/Headers/Public/UMTaskManagerInterface" "${PODS_ROOT}/Headers/Public/Yoga" "${PODS_ROOT}/Headers/Public/YogaKit" "${PODS_ROOT}/Headers/Public/glog" "${PODS_ROOT}/Headers/Public/hermes-engine" "${PODS_ROOT}/Headers/Public/libevent" "${PODS_ROOT}/Headers/Public/libwebp" "${PODS_ROOT}/Headers/Public/nanopb" "${PODS_ROOT}/Headers/Public/react-native-appearance" "${PODS_ROOT}/Headers/Public/react-native-background-timer" "${PODS_ROOT}/Headers/Public/react-native-blur" "${PODS_ROOT}/Headers/Public/react-native-cameraroll" "${PODS_ROOT}/Headers/Public/react-native-cookies" "${PODS_ROOT}/Headers/Public/react-native-document-picker" "${PODS_ROOT}/Headers/Public/react-native-jitsi-meet" "${PODS_ROOT}/Headers/Public/react-native-mmkv-storage" "${PODS_ROOT}/Headers/Public/react-native-netinfo" "${PODS_ROOT}/Headers/Public/react-native-notifications" "${PODS_ROOT}/Headers/Public/react-native-orientation-locker" "${PODS_ROOT}/Headers/Public/react-native-restart" "${PODS_ROOT}/Headers/Public/react-native-safe-area-context" "${PODS_ROOT}/Headers/Public/react-native-simple-crypto" "${PODS_ROOT}/Headers/Public/react-native-slider" "${PODS_ROOT}/Headers/Public/react-native-webview" "${PODS_ROOT}/Headers/Public/rn-extensions-share" "${PODS_ROOT}/Headers/Public/rn-fetch-blob" $(inherited) ${PODS_ROOT}/Firebase/CoreOnly/Sources "${PODS_TARGET_SRCROOT}/Sources/FBLPromises/include" "$(PODS_ROOT)/boost-for-react-native" "$(PODS_ROOT)/Headers/Private/React-Core" "$(PODS_TARGET_SRCROOT)/include/" +HEADER_SEARCH_PATHS = $(inherited) "${PODS_ROOT}/Headers/Public" "${PODS_ROOT}/Headers/Public/BugsnagReactNative" "${PODS_ROOT}/Headers/Public/CocoaAsyncSocket" "${PODS_ROOT}/Headers/Public/DoubleConversion" "${PODS_ROOT}/Headers/Public/EXAV" "${PODS_ROOT}/Headers/Public/EXAppleAuthentication" "${PODS_ROOT}/Headers/Public/EXConstants" "${PODS_ROOT}/Headers/Public/EXFileSystem" "${PODS_ROOT}/Headers/Public/EXHaptics" "${PODS_ROOT}/Headers/Public/EXImageLoader" "${PODS_ROOT}/Headers/Public/EXKeepAwake" "${PODS_ROOT}/Headers/Public/EXLocalAuthentication" "${PODS_ROOT}/Headers/Public/EXPermissions" "${PODS_ROOT}/Headers/Public/EXVideoThumbnails" "${PODS_ROOT}/Headers/Public/EXWebBrowser" "${PODS_ROOT}/Headers/Public/FBLazyVector" "${PODS_ROOT}/Headers/Public/FBReactNativeSpec" "${PODS_ROOT}/Headers/Public/Firebase" "${PODS_ROOT}/Headers/Public/FirebaseCore" "${PODS_ROOT}/Headers/Public/FirebaseCoreDiagnostics" "${PODS_ROOT}/Headers/Public/FirebaseCrashlytics" "${PODS_ROOT}/Headers/Public/FirebaseInstallations" "${PODS_ROOT}/Headers/Public/Flipper" "${PODS_ROOT}/Headers/Public/Flipper-DoubleConversion" "${PODS_ROOT}/Headers/Public/Flipper-Folly" "${PODS_ROOT}/Headers/Public/Flipper-Glog" "${PODS_ROOT}/Headers/Public/Flipper-PeerTalk" "${PODS_ROOT}/Headers/Public/Flipper-RSocket" "${PODS_ROOT}/Headers/Public/FlipperKit" "${PODS_ROOT}/Headers/Public/GoogleDataTransport" "${PODS_ROOT}/Headers/Public/GoogleUtilities" "${PODS_ROOT}/Headers/Public/KeyCommands" "${PODS_ROOT}/Headers/Public/MMKV" "${PODS_ROOT}/Headers/Public/MMKVCore" "${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/RNBootSplash" "${PODS_ROOT}/Headers/Public/RNCAsyncStorage" "${PODS_ROOT}/Headers/Public/RNCMaskedView" "${PODS_ROOT}/Headers/Public/RNCPicker" "${PODS_ROOT}/Headers/Public/RNConfigReader" "${PODS_ROOT}/Headers/Public/RNDateTimePicker" "${PODS_ROOT}/Headers/Public/RNDeviceInfo" "${PODS_ROOT}/Headers/Public/RNFBAnalytics" "${PODS_ROOT}/Headers/Public/RNFBApp" "${PODS_ROOT}/Headers/Public/RNFBCrashlytics" "${PODS_ROOT}/Headers/Public/RNFastImage" "${PODS_ROOT}/Headers/Public/RNGestureHandler" "${PODS_ROOT}/Headers/Public/RNImageCropPicker" "${PODS_ROOT}/Headers/Public/RNLocalize" "${PODS_ROOT}/Headers/Public/RNReanimated" "${PODS_ROOT}/Headers/Public/RNRootView" "${PODS_ROOT}/Headers/Public/RNScreens" "${PODS_ROOT}/Headers/Public/RNVectorIcons" "${PODS_ROOT}/Headers/Public/React-Core" "${PODS_ROOT}/Headers/Public/React-RCTBlob" "${PODS_ROOT}/Headers/Public/React-RCTText" "${PODS_ROOT}/Headers/Public/React-callinvoker" "${PODS_ROOT}/Headers/Public/React-cxxreact" "${PODS_ROOT}/Headers/Public/React-jsi" "${PODS_ROOT}/Headers/Public/React-jsiexecutor" "${PODS_ROOT}/Headers/Public/React-jsinspector" "${PODS_ROOT}/Headers/Public/React-perflogger" "${PODS_ROOT}/Headers/Public/React-runtimeexecutor" "${PODS_ROOT}/Headers/Public/ReactCommon" "${PODS_ROOT}/Headers/Public/ReactNativeART" "${PODS_ROOT}/Headers/Public/ReactNativeUiLib" "${PODS_ROOT}/Headers/Public/SDWebImage" "${PODS_ROOT}/Headers/Public/SDWebImageWebPCoder" "${PODS_ROOT}/Headers/Public/TOCropViewController" "${PODS_ROOT}/Headers/Public/UMAppLoader" "${PODS_ROOT}/Headers/Public/UMBarCodeScannerInterface" "${PODS_ROOT}/Headers/Public/UMCameraInterface" "${PODS_ROOT}/Headers/Public/UMConstantsInterface" "${PODS_ROOT}/Headers/Public/UMCore" "${PODS_ROOT}/Headers/Public/UMFaceDetectorInterface" "${PODS_ROOT}/Headers/Public/UMFileSystemInterface" "${PODS_ROOT}/Headers/Public/UMFontInterface" "${PODS_ROOT}/Headers/Public/UMImageLoaderInterface" "${PODS_ROOT}/Headers/Public/UMPermissionsInterface" "${PODS_ROOT}/Headers/Public/UMReactNativeAdapter" "${PODS_ROOT}/Headers/Public/UMSensorsInterface" "${PODS_ROOT}/Headers/Public/UMTaskManagerInterface" "${PODS_ROOT}/Headers/Public/Yoga" "${PODS_ROOT}/Headers/Public/YogaKit" "${PODS_ROOT}/Headers/Public/glog" "${PODS_ROOT}/Headers/Public/hermes-engine" "${PODS_ROOT}/Headers/Public/libevent" "${PODS_ROOT}/Headers/Public/libwebp" "${PODS_ROOT}/Headers/Public/nanopb" "${PODS_ROOT}/Headers/Public/react-native-appearance" "${PODS_ROOT}/Headers/Public/react-native-background-timer" "${PODS_ROOT}/Headers/Public/react-native-blur" "${PODS_ROOT}/Headers/Public/react-native-cameraroll" "${PODS_ROOT}/Headers/Public/react-native-cookies" "${PODS_ROOT}/Headers/Public/react-native-document-picker" "${PODS_ROOT}/Headers/Public/react-native-jitsi-meet" "${PODS_ROOT}/Headers/Public/react-native-mmkv-storage" "${PODS_ROOT}/Headers/Public/react-native-netinfo" "${PODS_ROOT}/Headers/Public/react-native-notifications" "${PODS_ROOT}/Headers/Public/react-native-orientation-locker" "${PODS_ROOT}/Headers/Public/react-native-restart" "${PODS_ROOT}/Headers/Public/react-native-safe-area-context" "${PODS_ROOT}/Headers/Public/react-native-simple-crypto" "${PODS_ROOT}/Headers/Public/react-native-slider" "${PODS_ROOT}/Headers/Public/react-native-webview" "${PODS_ROOT}/Headers/Public/rn-extensions-share" "${PODS_ROOT}/Headers/Public/rn-fetch-blob" $(inherited) ${PODS_ROOT}/Firebase/CoreOnly/Sources "${PODS_TARGET_SRCROOT}/Sources/FBLPromises/include" "$(PODS_ROOT)/boost-for-react-native" "$(PODS_ROOT)/Headers/Private/React-Core" "$(PODS_TARGET_SRCROOT)/include/" LD_RUNPATH_SEARCH_PATHS = $(inherited) '@executable_path/Frameworks' '@loader_path/Frameworks' -LIBRARY_SEARCH_PATHS = $(inherited) "${PODS_CONFIGURATION_BUILD_DIR}/BugsnagReactNative" "${PODS_CONFIGURATION_BUILD_DIR}/CocoaAsyncSocket" "${PODS_CONFIGURATION_BUILD_DIR}/DoubleConversion" "${PODS_CONFIGURATION_BUILD_DIR}/EXAV" "${PODS_CONFIGURATION_BUILD_DIR}/EXAppleAuthentication" "${PODS_CONFIGURATION_BUILD_DIR}/EXConstants" "${PODS_CONFIGURATION_BUILD_DIR}/EXFileSystem" "${PODS_CONFIGURATION_BUILD_DIR}/EXHaptics" "${PODS_CONFIGURATION_BUILD_DIR}/EXImageLoader" "${PODS_CONFIGURATION_BUILD_DIR}/EXKeepAwake" "${PODS_CONFIGURATION_BUILD_DIR}/EXLocalAuthentication" "${PODS_CONFIGURATION_BUILD_DIR}/EXPermissions" "${PODS_CONFIGURATION_BUILD_DIR}/EXVideoThumbnails" "${PODS_CONFIGURATION_BUILD_DIR}/EXWebBrowser" "${PODS_CONFIGURATION_BUILD_DIR}/FBReactNativeSpec" "${PODS_CONFIGURATION_BUILD_DIR}/FirebaseCore" "${PODS_CONFIGURATION_BUILD_DIR}/FirebaseCoreDiagnostics" "${PODS_CONFIGURATION_BUILD_DIR}/FirebaseCrashlytics" "${PODS_CONFIGURATION_BUILD_DIR}/FirebaseInstallations" "${PODS_CONFIGURATION_BUILD_DIR}/GoogleDataTransport" "${PODS_CONFIGURATION_BUILD_DIR}/GoogleDataTransportCCTSupport" "${PODS_CONFIGURATION_BUILD_DIR}/GoogleUtilities" "${PODS_CONFIGURATION_BUILD_DIR}/KeyCommands" "${PODS_CONFIGURATION_BUILD_DIR}/MMKV" "${PODS_CONFIGURATION_BUILD_DIR}/MMKVCore" "${PODS_CONFIGURATION_BUILD_DIR}/PromisesObjC" "${PODS_CONFIGURATION_BUILD_DIR}/RCT-Folly" "${PODS_CONFIGURATION_BUILD_DIR}/RCTTypeSafety" "${PODS_CONFIGURATION_BUILD_DIR}/RNBootSplash" "${PODS_CONFIGURATION_BUILD_DIR}/RNCAsyncStorage" "${PODS_CONFIGURATION_BUILD_DIR}/RNCMaskedView" "${PODS_CONFIGURATION_BUILD_DIR}/RNCPicker" "${PODS_CONFIGURATION_BUILD_DIR}/RNConfigReader" "${PODS_CONFIGURATION_BUILD_DIR}/RNDateTimePicker" "${PODS_CONFIGURATION_BUILD_DIR}/RNDeviceInfo" "${PODS_CONFIGURATION_BUILD_DIR}/RNFBAnalytics" "${PODS_CONFIGURATION_BUILD_DIR}/RNFBApp" "${PODS_CONFIGURATION_BUILD_DIR}/RNFBCrashlytics" "${PODS_CONFIGURATION_BUILD_DIR}/RNFastImage" "${PODS_CONFIGURATION_BUILD_DIR}/RNGestureHandler" "${PODS_CONFIGURATION_BUILD_DIR}/RNImageCropPicker" "${PODS_CONFIGURATION_BUILD_DIR}/RNLocalize" "${PODS_CONFIGURATION_BUILD_DIR}/RNReanimated" "${PODS_CONFIGURATION_BUILD_DIR}/RNRootView" "${PODS_CONFIGURATION_BUILD_DIR}/RNScreens" "${PODS_CONFIGURATION_BUILD_DIR}/RNVectorIcons" "${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-cxxreact" "${PODS_CONFIGURATION_BUILD_DIR}/React-jsi" "${PODS_CONFIGURATION_BUILD_DIR}/React-jsiexecutor" "${PODS_CONFIGURATION_BUILD_DIR}/React-jsinspector" "${PODS_CONFIGURATION_BUILD_DIR}/React-perflogger" "${PODS_CONFIGURATION_BUILD_DIR}/ReactCommon" "${PODS_CONFIGURATION_BUILD_DIR}/ReactNativeART" "${PODS_CONFIGURATION_BUILD_DIR}/ReactNativeUiLib" "${PODS_CONFIGURATION_BUILD_DIR}/SDWebImage" "${PODS_CONFIGURATION_BUILD_DIR}/SDWebImageWebPCoder" "${PODS_CONFIGURATION_BUILD_DIR}/TOCropViewController" "${PODS_CONFIGURATION_BUILD_DIR}/UMAppLoader" "${PODS_CONFIGURATION_BUILD_DIR}/UMCore" "${PODS_CONFIGURATION_BUILD_DIR}/UMPermissionsInterface" "${PODS_CONFIGURATION_BUILD_DIR}/UMReactNativeAdapter" "${PODS_CONFIGURATION_BUILD_DIR}/Yoga" "${PODS_CONFIGURATION_BUILD_DIR}/YogaKit" "${PODS_CONFIGURATION_BUILD_DIR}/glog" "${PODS_CONFIGURATION_BUILD_DIR}/libevent" "${PODS_CONFIGURATION_BUILD_DIR}/libwebp" "${PODS_CONFIGURATION_BUILD_DIR}/nanopb" "${PODS_CONFIGURATION_BUILD_DIR}/react-native-appearance" "${PODS_CONFIGURATION_BUILD_DIR}/react-native-background-timer" "${PODS_CONFIGURATION_BUILD_DIR}/react-native-blur" "${PODS_CONFIGURATION_BUILD_DIR}/react-native-cameraroll" "${PODS_CONFIGURATION_BUILD_DIR}/react-native-cookies" "${PODS_CONFIGURATION_BUILD_DIR}/react-native-document-picker" "${PODS_CONFIGURATION_BUILD_DIR}/react-native-jitsi-meet" "${PODS_CONFIGURATION_BUILD_DIR}/react-native-mmkv-storage" "${PODS_CONFIGURATION_BUILD_DIR}/react-native-netinfo" "${PODS_CONFIGURATION_BUILD_DIR}/react-native-notifications" "${PODS_CONFIGURATION_BUILD_DIR}/react-native-orientation-locker" "${PODS_CONFIGURATION_BUILD_DIR}/react-native-restart" "${PODS_CONFIGURATION_BUILD_DIR}/react-native-safe-area-context" "${PODS_CONFIGURATION_BUILD_DIR}/react-native-simple-crypto" "${PODS_CONFIGURATION_BUILD_DIR}/react-native-slider" "${PODS_CONFIGURATION_BUILD_DIR}/react-native-webview" "${PODS_CONFIGURATION_BUILD_DIR}/rn-extensions-share" "${PODS_CONFIGURATION_BUILD_DIR}/rn-fetch-blob" +LIBRARY_SEARCH_PATHS = $(inherited) "${PODS_CONFIGURATION_BUILD_DIR}/BugsnagReactNative" "${PODS_CONFIGURATION_BUILD_DIR}/CocoaAsyncSocket" "${PODS_CONFIGURATION_BUILD_DIR}/DoubleConversion" "${PODS_CONFIGURATION_BUILD_DIR}/EXAV" "${PODS_CONFIGURATION_BUILD_DIR}/EXAppleAuthentication" "${PODS_CONFIGURATION_BUILD_DIR}/EXConstants" "${PODS_CONFIGURATION_BUILD_DIR}/EXFileSystem" "${PODS_CONFIGURATION_BUILD_DIR}/EXHaptics" "${PODS_CONFIGURATION_BUILD_DIR}/EXImageLoader" "${PODS_CONFIGURATION_BUILD_DIR}/EXKeepAwake" "${PODS_CONFIGURATION_BUILD_DIR}/EXLocalAuthentication" "${PODS_CONFIGURATION_BUILD_DIR}/EXPermissions" "${PODS_CONFIGURATION_BUILD_DIR}/EXVideoThumbnails" "${PODS_CONFIGURATION_BUILD_DIR}/EXWebBrowser" "${PODS_CONFIGURATION_BUILD_DIR}/FBReactNativeSpec" "${PODS_CONFIGURATION_BUILD_DIR}/FirebaseCore" "${PODS_CONFIGURATION_BUILD_DIR}/FirebaseCoreDiagnostics" "${PODS_CONFIGURATION_BUILD_DIR}/FirebaseCrashlytics" "${PODS_CONFIGURATION_BUILD_DIR}/FirebaseInstallations" "${PODS_CONFIGURATION_BUILD_DIR}/GoogleDataTransport" "${PODS_CONFIGURATION_BUILD_DIR}/GoogleUtilities" "${PODS_CONFIGURATION_BUILD_DIR}/KeyCommands" "${PODS_CONFIGURATION_BUILD_DIR}/MMKV" "${PODS_CONFIGURATION_BUILD_DIR}/MMKVCore" "${PODS_CONFIGURATION_BUILD_DIR}/PromisesObjC" "${PODS_CONFIGURATION_BUILD_DIR}/RCT-Folly" "${PODS_CONFIGURATION_BUILD_DIR}/RCTTypeSafety" "${PODS_CONFIGURATION_BUILD_DIR}/RNBootSplash" "${PODS_CONFIGURATION_BUILD_DIR}/RNCAsyncStorage" "${PODS_CONFIGURATION_BUILD_DIR}/RNCMaskedView" "${PODS_CONFIGURATION_BUILD_DIR}/RNCPicker" "${PODS_CONFIGURATION_BUILD_DIR}/RNConfigReader" "${PODS_CONFIGURATION_BUILD_DIR}/RNDateTimePicker" "${PODS_CONFIGURATION_BUILD_DIR}/RNDeviceInfo" "${PODS_CONFIGURATION_BUILD_DIR}/RNFBAnalytics" "${PODS_CONFIGURATION_BUILD_DIR}/RNFBApp" "${PODS_CONFIGURATION_BUILD_DIR}/RNFBCrashlytics" "${PODS_CONFIGURATION_BUILD_DIR}/RNFastImage" "${PODS_CONFIGURATION_BUILD_DIR}/RNGestureHandler" "${PODS_CONFIGURATION_BUILD_DIR}/RNImageCropPicker" "${PODS_CONFIGURATION_BUILD_DIR}/RNLocalize" "${PODS_CONFIGURATION_BUILD_DIR}/RNReanimated" "${PODS_CONFIGURATION_BUILD_DIR}/RNRootView" "${PODS_CONFIGURATION_BUILD_DIR}/RNScreens" "${PODS_CONFIGURATION_BUILD_DIR}/RNVectorIcons" "${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-cxxreact" "${PODS_CONFIGURATION_BUILD_DIR}/React-jsi" "${PODS_CONFIGURATION_BUILD_DIR}/React-jsiexecutor" "${PODS_CONFIGURATION_BUILD_DIR}/React-jsinspector" "${PODS_CONFIGURATION_BUILD_DIR}/React-perflogger" "${PODS_CONFIGURATION_BUILD_DIR}/ReactCommon" "${PODS_CONFIGURATION_BUILD_DIR}/ReactNativeART" "${PODS_CONFIGURATION_BUILD_DIR}/SDWebImage" "${PODS_CONFIGURATION_BUILD_DIR}/SDWebImageWebPCoder" "${PODS_CONFIGURATION_BUILD_DIR}/TOCropViewController" "${PODS_CONFIGURATION_BUILD_DIR}/UMAppLoader" "${PODS_CONFIGURATION_BUILD_DIR}/UMCore" "${PODS_CONFIGURATION_BUILD_DIR}/UMPermissionsInterface" "${PODS_CONFIGURATION_BUILD_DIR}/UMReactNativeAdapter" "${PODS_CONFIGURATION_BUILD_DIR}/Yoga" "${PODS_CONFIGURATION_BUILD_DIR}/YogaKit" "${PODS_CONFIGURATION_BUILD_DIR}/glog" "${PODS_CONFIGURATION_BUILD_DIR}/libevent" "${PODS_CONFIGURATION_BUILD_DIR}/libwebp" "${PODS_CONFIGURATION_BUILD_DIR}/nanopb" "${PODS_CONFIGURATION_BUILD_DIR}/react-native-appearance" "${PODS_CONFIGURATION_BUILD_DIR}/react-native-background-timer" "${PODS_CONFIGURATION_BUILD_DIR}/react-native-blur" "${PODS_CONFIGURATION_BUILD_DIR}/react-native-cameraroll" "${PODS_CONFIGURATION_BUILD_DIR}/react-native-cookies" "${PODS_CONFIGURATION_BUILD_DIR}/react-native-document-picker" "${PODS_CONFIGURATION_BUILD_DIR}/react-native-jitsi-meet" "${PODS_CONFIGURATION_BUILD_DIR}/react-native-mmkv-storage" "${PODS_CONFIGURATION_BUILD_DIR}/react-native-netinfo" "${PODS_CONFIGURATION_BUILD_DIR}/react-native-notifications" "${PODS_CONFIGURATION_BUILD_DIR}/react-native-orientation-locker" "${PODS_CONFIGURATION_BUILD_DIR}/react-native-restart" "${PODS_CONFIGURATION_BUILD_DIR}/react-native-safe-area-context" "${PODS_CONFIGURATION_BUILD_DIR}/react-native-simple-crypto" "${PODS_CONFIGURATION_BUILD_DIR}/react-native-slider" "${PODS_CONFIGURATION_BUILD_DIR}/react-native-webview" "${PODS_CONFIGURATION_BUILD_DIR}/rn-extensions-share" "${PODS_CONFIGURATION_BUILD_DIR}/rn-fetch-blob" OTHER_CFLAGS = $(inherited) -fmodule-map-file="${PODS_CONFIGURATION_BUILD_DIR}/YogaKit/YogaKit.modulemap" -fmodule-map-file="${PODS_CONFIGURATION_BUILD_DIR}/react-native-simple-crypto/react_native_simple_crypto.modulemap" -fmodule-map-file="${PODS_ROOT}/Headers/Public/React/React-Core.modulemap" -fmodule-map-file="${PODS_ROOT}/Headers/Public/yoga/Yoga.modulemap" -OTHER_LDFLAGS = $(inherited) -ObjC -l"BugsnagReactNative" -l"CocoaAsyncSocket" -l"DoubleConversion" -l"EXAV" -l"EXAppleAuthentication" -l"EXConstants" -l"EXFileSystem" -l"EXHaptics" -l"EXImageLoader" -l"EXKeepAwake" -l"EXLocalAuthentication" -l"EXPermissions" -l"EXVideoThumbnails" -l"EXWebBrowser" -l"FBReactNativeSpec" -l"FirebaseCore" -l"FirebaseCoreDiagnostics" -l"FirebaseCrashlytics" -l"FirebaseInstallations" -l"GoogleDataTransport" -l"GoogleDataTransportCCTSupport" -l"GoogleUtilities" -l"KeyCommands" -l"MMKV" -l"MMKVCore" -l"PromisesObjC" -l"RCT-Folly" -l"RCTTypeSafety" -l"RNBootSplash" -l"RNCAsyncStorage" -l"RNCMaskedView" -l"RNCPicker" -l"RNConfigReader" -l"RNDateTimePicker" -l"RNDeviceInfo" -l"RNFBAnalytics" -l"RNFBApp" -l"RNFBCrashlytics" -l"RNFastImage" -l"RNGestureHandler" -l"RNImageCropPicker" -l"RNLocalize" -l"RNReanimated" -l"RNRootView" -l"RNScreens" -l"RNVectorIcons" -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-cxxreact" -l"React-jsi" -l"React-jsiexecutor" -l"React-jsinspector" -l"React-perflogger" -l"ReactCommon" -l"ReactNativeART" -l"ReactNativeUiLib" -l"SDWebImage" -l"SDWebImageWebPCoder" -l"TOCropViewController" -l"UMAppLoader" -l"UMCore" -l"UMPermissionsInterface" -l"UMReactNativeAdapter" -l"Yoga" -l"YogaKit" -l"c++" -l"glog" -l"libevent" -l"libwebp" -l"nanopb" -l"react-native-appearance" -l"react-native-background-timer" -l"react-native-blur" -l"react-native-cameraroll" -l"react-native-cookies" -l"react-native-document-picker" -l"react-native-jitsi-meet" -l"react-native-mmkv-storage" -l"react-native-netinfo" -l"react-native-notifications" -l"react-native-orientation-locker" -l"react-native-restart" -l"react-native-safe-area-context" -l"react-native-simple-crypto" -l"react-native-slider" -l"react-native-webview" -l"rn-extensions-share" -l"rn-fetch-blob" -l"sqlite3" -l"stdc++" -l"z" -framework "AudioToolbox" -framework "CFNetwork" -framework "CoreFoundation" -framework "CoreTelephony" -framework "FIRAnalyticsConnector" -framework "FirebaseAnalytics" -framework "Foundation" -framework "GoogleAppMeasurement" -framework "ImageIO" -framework "JavaScriptCore" -framework "JitsiMeet" -framework "MobileCoreServices" -framework "OpenSSL" -framework "Photos" -framework "Security" -framework "StoreKit" -framework "SystemConfiguration" -framework "UIKit" -framework "WebRTC" -framework "hermes" +OTHER_LDFLAGS = $(inherited) -ObjC -l"BugsnagReactNative" -l"CocoaAsyncSocket" -l"DoubleConversion" -l"EXAV" -l"EXAppleAuthentication" -l"EXConstants" -l"EXFileSystem" -l"EXHaptics" -l"EXImageLoader" -l"EXKeepAwake" -l"EXLocalAuthentication" -l"EXPermissions" -l"EXVideoThumbnails" -l"EXWebBrowser" -l"FBReactNativeSpec" -l"FirebaseCore" -l"FirebaseCoreDiagnostics" -l"FirebaseCrashlytics" -l"FirebaseInstallations" -l"GoogleDataTransport" -l"GoogleUtilities" -l"KeyCommands" -l"MMKV" -l"MMKVCore" -l"PromisesObjC" -l"RCT-Folly" -l"RCTTypeSafety" -l"RNBootSplash" -l"RNCAsyncStorage" -l"RNCMaskedView" -l"RNCPicker" -l"RNConfigReader" -l"RNDateTimePicker" -l"RNDeviceInfo" -l"RNFBAnalytics" -l"RNFBApp" -l"RNFBCrashlytics" -l"RNFastImage" -l"RNGestureHandler" -l"RNImageCropPicker" -l"RNLocalize" -l"RNReanimated" -l"RNRootView" -l"RNScreens" -l"RNVectorIcons" -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-cxxreact" -l"React-jsi" -l"React-jsiexecutor" -l"React-jsinspector" -l"React-perflogger" -l"ReactCommon" -l"ReactNativeART" -l"SDWebImage" -l"SDWebImageWebPCoder" -l"TOCropViewController" -l"UMAppLoader" -l"UMCore" -l"UMPermissionsInterface" -l"UMReactNativeAdapter" -l"Yoga" -l"YogaKit" -l"c++" -l"glog" -l"libevent" -l"libwebp" -l"nanopb" -l"react-native-appearance" -l"react-native-background-timer" -l"react-native-blur" -l"react-native-cameraroll" -l"react-native-cookies" -l"react-native-document-picker" -l"react-native-jitsi-meet" -l"react-native-mmkv-storage" -l"react-native-netinfo" -l"react-native-notifications" -l"react-native-orientation-locker" -l"react-native-restart" -l"react-native-safe-area-context" -l"react-native-simple-crypto" -l"react-native-slider" -l"react-native-webview" -l"rn-extensions-share" -l"rn-fetch-blob" -l"sqlite3" -l"stdc++" -l"z" -framework "AudioToolbox" -framework "CFNetwork" -framework "CoreFoundation" -framework "CoreTelephony" -framework "FIRAnalyticsConnector" -framework "FirebaseAnalytics" -framework "Foundation" -framework "GoogleAppMeasurement" -framework "ImageIO" -framework "JavaScriptCore" -framework "JitsiMeet" -framework "MobileCoreServices" -framework "OpenSSL" -framework "Photos" -framework "Security" -framework "StoreKit" -framework "SystemConfiguration" -framework "UIKit" -framework "WebRTC" -framework "hermes" OTHER_SWIFT_FLAGS = $(inherited) -D COCOAPODS -Xcc -fmodule-map-file="${PODS_CONFIGURATION_BUILD_DIR}/YogaKit/YogaKit.modulemap" -Xcc -fmodule-map-file="${PODS_CONFIGURATION_BUILD_DIR}/react-native-simple-crypto/react_native_simple_crypto.modulemap" -Xcc -fmodule-map-file="${PODS_ROOT}/Headers/Public/React/React-Core.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/Pods/Target Support Files/RNFBAnalytics/RNFBAnalytics.debug.xcconfig b/ios/Pods/Target Support Files/RNFBAnalytics/RNFBAnalytics.debug.xcconfig index 4537165321..9bcecbae5c 100644 --- a/ios/Pods/Target Support Files/RNFBAnalytics/RNFBAnalytics.debug.xcconfig +++ b/ios/Pods/Target Support Files/RNFBAnalytics/RNFBAnalytics.debug.xcconfig @@ -3,7 +3,7 @@ CLANG_WARN_QUOTED_INCLUDE_IN_FRAMEWORK_HEADER = NO CONFIGURATION_BUILD_DIR = ${PODS_CONFIGURATION_BUILD_DIR}/RNFBAnalytics FRAMEWORK_SEARCH_PATHS = $(inherited) "${PODS_ROOT}/FirebaseAnalytics/Frameworks" "${PODS_ROOT}/GoogleAppMeasurement/Frameworks" "${PODS_ROOT}/hermes-engine/destroot/Library/Frameworks/iphoneos" GCC_PREPROCESSOR_DEFINITIONS = $(inherited) COCOAPODS=1 -HEADER_SEARCH_PATHS = $(inherited) "${PODS_ROOT}/Headers/Private" "${PODS_ROOT}/Headers/Private/RNFBAnalytics" "${PODS_ROOT}/Headers/Public" "${PODS_ROOT}/Headers/Public/DoubleConversion" "${PODS_ROOT}/Headers/Public/FBLazyVector" "${PODS_ROOT}/Headers/Public/FBReactNativeSpec" "${PODS_ROOT}/Headers/Public/Firebase" "${PODS_ROOT}/Headers/Public/FirebaseCore" "${PODS_ROOT}/Headers/Public/FirebaseCoreDiagnostics" "${PODS_ROOT}/Headers/Public/FirebaseCrashlytics" "${PODS_ROOT}/Headers/Public/FirebaseInstallations" "${PODS_ROOT}/Headers/Public/GoogleDataTransport" "${PODS_ROOT}/Headers/Public/GoogleDataTransportCCTSupport" "${PODS_ROOT}/Headers/Public/GoogleUtilities" "${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/RNFBAnalytics" "${PODS_ROOT}/Headers/Public/RNFBApp" "${PODS_ROOT}/Headers/Public/React-Core" "${PODS_ROOT}/Headers/Public/React-RCTBlob" "${PODS_ROOT}/Headers/Public/React-RCTText" "${PODS_ROOT}/Headers/Public/React-callinvoker" "${PODS_ROOT}/Headers/Public/React-cxxreact" "${PODS_ROOT}/Headers/Public/React-jsi" "${PODS_ROOT}/Headers/Public/React-jsiexecutor" "${PODS_ROOT}/Headers/Public/React-jsinspector" "${PODS_ROOT}/Headers/Public/React-perflogger" "${PODS_ROOT}/Headers/Public/React-runtimeexecutor" "${PODS_ROOT}/Headers/Public/ReactCommon" "${PODS_ROOT}/Headers/Public/Yoga" "${PODS_ROOT}/Headers/Public/glog" "${PODS_ROOT}/Headers/Public/hermes-engine" "${PODS_ROOT}/Headers/Public/libevent" "${PODS_ROOT}/Headers/Public/nanopb" +HEADER_SEARCH_PATHS = $(inherited) "${PODS_ROOT}/Headers/Private" "${PODS_ROOT}/Headers/Private/RNFBAnalytics" "${PODS_ROOT}/Headers/Public" "${PODS_ROOT}/Headers/Public/DoubleConversion" "${PODS_ROOT}/Headers/Public/Firebase" "${PODS_ROOT}/Headers/Public/FirebaseCore" "${PODS_ROOT}/Headers/Public/FirebaseCoreDiagnostics" "${PODS_ROOT}/Headers/Public/FirebaseCrashlytics" "${PODS_ROOT}/Headers/Public/FirebaseInstallations" "${PODS_ROOT}/Headers/Public/GoogleDataTransport" "${PODS_ROOT}/Headers/Public/GoogleUtilities" "${PODS_ROOT}/Headers/Public/PromisesObjC" "${PODS_ROOT}/Headers/Public/RCT-Folly" "${PODS_ROOT}/Headers/Public/RNFBAnalytics" "${PODS_ROOT}/Headers/Public/RNFBApp" "${PODS_ROOT}/Headers/Public/React-Core" "${PODS_ROOT}/Headers/Public/React-callinvoker" "${PODS_ROOT}/Headers/Public/React-cxxreact" "${PODS_ROOT}/Headers/Public/React-jsi" "${PODS_ROOT}/Headers/Public/React-jsiexecutor" "${PODS_ROOT}/Headers/Public/React-jsinspector" "${PODS_ROOT}/Headers/Public/React-perflogger" "${PODS_ROOT}/Headers/Public/React-runtimeexecutor" "${PODS_ROOT}/Headers/Public/Yoga" "${PODS_ROOT}/Headers/Public/glog" "${PODS_ROOT}/Headers/Public/hermes-engine" "${PODS_ROOT}/Headers/Public/libevent" "${PODS_ROOT}/Headers/Public/nanopb" OTHER_CFLAGS = $(inherited) -fmodule-map-file="${PODS_ROOT}/Headers/Public/React/React-Core.modulemap" -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/Pods/Target Support Files/RNFBAnalytics/RNFBAnalytics.release.xcconfig b/ios/Pods/Target Support Files/RNFBAnalytics/RNFBAnalytics.release.xcconfig index 4537165321..9bcecbae5c 100644 --- a/ios/Pods/Target Support Files/RNFBAnalytics/RNFBAnalytics.release.xcconfig +++ b/ios/Pods/Target Support Files/RNFBAnalytics/RNFBAnalytics.release.xcconfig @@ -3,7 +3,7 @@ CLANG_WARN_QUOTED_INCLUDE_IN_FRAMEWORK_HEADER = NO CONFIGURATION_BUILD_DIR = ${PODS_CONFIGURATION_BUILD_DIR}/RNFBAnalytics FRAMEWORK_SEARCH_PATHS = $(inherited) "${PODS_ROOT}/FirebaseAnalytics/Frameworks" "${PODS_ROOT}/GoogleAppMeasurement/Frameworks" "${PODS_ROOT}/hermes-engine/destroot/Library/Frameworks/iphoneos" GCC_PREPROCESSOR_DEFINITIONS = $(inherited) COCOAPODS=1 -HEADER_SEARCH_PATHS = $(inherited) "${PODS_ROOT}/Headers/Private" "${PODS_ROOT}/Headers/Private/RNFBAnalytics" "${PODS_ROOT}/Headers/Public" "${PODS_ROOT}/Headers/Public/DoubleConversion" "${PODS_ROOT}/Headers/Public/FBLazyVector" "${PODS_ROOT}/Headers/Public/FBReactNativeSpec" "${PODS_ROOT}/Headers/Public/Firebase" "${PODS_ROOT}/Headers/Public/FirebaseCore" "${PODS_ROOT}/Headers/Public/FirebaseCoreDiagnostics" "${PODS_ROOT}/Headers/Public/FirebaseCrashlytics" "${PODS_ROOT}/Headers/Public/FirebaseInstallations" "${PODS_ROOT}/Headers/Public/GoogleDataTransport" "${PODS_ROOT}/Headers/Public/GoogleDataTransportCCTSupport" "${PODS_ROOT}/Headers/Public/GoogleUtilities" "${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/RNFBAnalytics" "${PODS_ROOT}/Headers/Public/RNFBApp" "${PODS_ROOT}/Headers/Public/React-Core" "${PODS_ROOT}/Headers/Public/React-RCTBlob" "${PODS_ROOT}/Headers/Public/React-RCTText" "${PODS_ROOT}/Headers/Public/React-callinvoker" "${PODS_ROOT}/Headers/Public/React-cxxreact" "${PODS_ROOT}/Headers/Public/React-jsi" "${PODS_ROOT}/Headers/Public/React-jsiexecutor" "${PODS_ROOT}/Headers/Public/React-jsinspector" "${PODS_ROOT}/Headers/Public/React-perflogger" "${PODS_ROOT}/Headers/Public/React-runtimeexecutor" "${PODS_ROOT}/Headers/Public/ReactCommon" "${PODS_ROOT}/Headers/Public/Yoga" "${PODS_ROOT}/Headers/Public/glog" "${PODS_ROOT}/Headers/Public/hermes-engine" "${PODS_ROOT}/Headers/Public/libevent" "${PODS_ROOT}/Headers/Public/nanopb" +HEADER_SEARCH_PATHS = $(inherited) "${PODS_ROOT}/Headers/Private" "${PODS_ROOT}/Headers/Private/RNFBAnalytics" "${PODS_ROOT}/Headers/Public" "${PODS_ROOT}/Headers/Public/DoubleConversion" "${PODS_ROOT}/Headers/Public/Firebase" "${PODS_ROOT}/Headers/Public/FirebaseCore" "${PODS_ROOT}/Headers/Public/FirebaseCoreDiagnostics" "${PODS_ROOT}/Headers/Public/FirebaseCrashlytics" "${PODS_ROOT}/Headers/Public/FirebaseInstallations" "${PODS_ROOT}/Headers/Public/GoogleDataTransport" "${PODS_ROOT}/Headers/Public/GoogleUtilities" "${PODS_ROOT}/Headers/Public/PromisesObjC" "${PODS_ROOT}/Headers/Public/RCT-Folly" "${PODS_ROOT}/Headers/Public/RNFBAnalytics" "${PODS_ROOT}/Headers/Public/RNFBApp" "${PODS_ROOT}/Headers/Public/React-Core" "${PODS_ROOT}/Headers/Public/React-callinvoker" "${PODS_ROOT}/Headers/Public/React-cxxreact" "${PODS_ROOT}/Headers/Public/React-jsi" "${PODS_ROOT}/Headers/Public/React-jsiexecutor" "${PODS_ROOT}/Headers/Public/React-jsinspector" "${PODS_ROOT}/Headers/Public/React-perflogger" "${PODS_ROOT}/Headers/Public/React-runtimeexecutor" "${PODS_ROOT}/Headers/Public/Yoga" "${PODS_ROOT}/Headers/Public/glog" "${PODS_ROOT}/Headers/Public/hermes-engine" "${PODS_ROOT}/Headers/Public/libevent" "${PODS_ROOT}/Headers/Public/nanopb" OTHER_CFLAGS = $(inherited) -fmodule-map-file="${PODS_ROOT}/Headers/Public/React/React-Core.modulemap" -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/Pods/Target Support Files/RNFBApp/RNFBApp.debug.xcconfig b/ios/Pods/Target Support Files/RNFBApp/RNFBApp.debug.xcconfig index 0062c39bf0..fd343e99b9 100644 --- a/ios/Pods/Target Support Files/RNFBApp/RNFBApp.debug.xcconfig +++ b/ios/Pods/Target Support Files/RNFBApp/RNFBApp.debug.xcconfig @@ -3,7 +3,7 @@ CLANG_WARN_QUOTED_INCLUDE_IN_FRAMEWORK_HEADER = NO CONFIGURATION_BUILD_DIR = ${PODS_CONFIGURATION_BUILD_DIR}/RNFBApp FRAMEWORK_SEARCH_PATHS = $(inherited) "${PODS_ROOT}/FirebaseAnalytics/Frameworks" "${PODS_ROOT}/GoogleAppMeasurement/Frameworks" "${PODS_ROOT}/hermes-engine/destroot/Library/Frameworks/iphoneos" GCC_PREPROCESSOR_DEFINITIONS = $(inherited) COCOAPODS=1 -HEADER_SEARCH_PATHS = $(inherited) "${PODS_ROOT}/Headers/Private" "${PODS_ROOT}/Headers/Private/RNFBApp" "${PODS_ROOT}/Headers/Public" "${PODS_ROOT}/Headers/Public/DoubleConversion" "${PODS_ROOT}/Headers/Public/FBLazyVector" "${PODS_ROOT}/Headers/Public/FBReactNativeSpec" "${PODS_ROOT}/Headers/Public/Firebase" "${PODS_ROOT}/Headers/Public/FirebaseCore" "${PODS_ROOT}/Headers/Public/FirebaseCoreDiagnostics" "${PODS_ROOT}/Headers/Public/FirebaseCrashlytics" "${PODS_ROOT}/Headers/Public/FirebaseInstallations" "${PODS_ROOT}/Headers/Public/GoogleDataTransport" "${PODS_ROOT}/Headers/Public/GoogleDataTransportCCTSupport" "${PODS_ROOT}/Headers/Public/GoogleUtilities" "${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/RNFBApp" "${PODS_ROOT}/Headers/Public/React-Core" "${PODS_ROOT}/Headers/Public/React-RCTBlob" "${PODS_ROOT}/Headers/Public/React-RCTText" "${PODS_ROOT}/Headers/Public/React-callinvoker" "${PODS_ROOT}/Headers/Public/React-cxxreact" "${PODS_ROOT}/Headers/Public/React-jsi" "${PODS_ROOT}/Headers/Public/React-jsiexecutor" "${PODS_ROOT}/Headers/Public/React-jsinspector" "${PODS_ROOT}/Headers/Public/React-perflogger" "${PODS_ROOT}/Headers/Public/React-runtimeexecutor" "${PODS_ROOT}/Headers/Public/ReactCommon" "${PODS_ROOT}/Headers/Public/Yoga" "${PODS_ROOT}/Headers/Public/glog" "${PODS_ROOT}/Headers/Public/hermes-engine" "${PODS_ROOT}/Headers/Public/libevent" "${PODS_ROOT}/Headers/Public/nanopb" +HEADER_SEARCH_PATHS = $(inherited) "${PODS_ROOT}/Headers/Private" "${PODS_ROOT}/Headers/Private/RNFBApp" "${PODS_ROOT}/Headers/Public" "${PODS_ROOT}/Headers/Public/DoubleConversion" "${PODS_ROOT}/Headers/Public/Firebase" "${PODS_ROOT}/Headers/Public/FirebaseCore" "${PODS_ROOT}/Headers/Public/FirebaseCoreDiagnostics" "${PODS_ROOT}/Headers/Public/FirebaseCrashlytics" "${PODS_ROOT}/Headers/Public/FirebaseInstallations" "${PODS_ROOT}/Headers/Public/GoogleDataTransport" "${PODS_ROOT}/Headers/Public/GoogleUtilities" "${PODS_ROOT}/Headers/Public/PromisesObjC" "${PODS_ROOT}/Headers/Public/RCT-Folly" "${PODS_ROOT}/Headers/Public/RNFBApp" "${PODS_ROOT}/Headers/Public/React-Core" "${PODS_ROOT}/Headers/Public/React-callinvoker" "${PODS_ROOT}/Headers/Public/React-cxxreact" "${PODS_ROOT}/Headers/Public/React-jsi" "${PODS_ROOT}/Headers/Public/React-jsiexecutor" "${PODS_ROOT}/Headers/Public/React-jsinspector" "${PODS_ROOT}/Headers/Public/React-perflogger" "${PODS_ROOT}/Headers/Public/React-runtimeexecutor" "${PODS_ROOT}/Headers/Public/Yoga" "${PODS_ROOT}/Headers/Public/glog" "${PODS_ROOT}/Headers/Public/hermes-engine" "${PODS_ROOT}/Headers/Public/libevent" "${PODS_ROOT}/Headers/Public/nanopb" OTHER_CFLAGS = $(inherited) -fmodule-map-file="${PODS_ROOT}/Headers/Public/React/React-Core.modulemap" -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/Pods/Target Support Files/RNFBApp/RNFBApp.release.xcconfig b/ios/Pods/Target Support Files/RNFBApp/RNFBApp.release.xcconfig index 0062c39bf0..fd343e99b9 100644 --- a/ios/Pods/Target Support Files/RNFBApp/RNFBApp.release.xcconfig +++ b/ios/Pods/Target Support Files/RNFBApp/RNFBApp.release.xcconfig @@ -3,7 +3,7 @@ CLANG_WARN_QUOTED_INCLUDE_IN_FRAMEWORK_HEADER = NO CONFIGURATION_BUILD_DIR = ${PODS_CONFIGURATION_BUILD_DIR}/RNFBApp FRAMEWORK_SEARCH_PATHS = $(inherited) "${PODS_ROOT}/FirebaseAnalytics/Frameworks" "${PODS_ROOT}/GoogleAppMeasurement/Frameworks" "${PODS_ROOT}/hermes-engine/destroot/Library/Frameworks/iphoneos" GCC_PREPROCESSOR_DEFINITIONS = $(inherited) COCOAPODS=1 -HEADER_SEARCH_PATHS = $(inherited) "${PODS_ROOT}/Headers/Private" "${PODS_ROOT}/Headers/Private/RNFBApp" "${PODS_ROOT}/Headers/Public" "${PODS_ROOT}/Headers/Public/DoubleConversion" "${PODS_ROOT}/Headers/Public/FBLazyVector" "${PODS_ROOT}/Headers/Public/FBReactNativeSpec" "${PODS_ROOT}/Headers/Public/Firebase" "${PODS_ROOT}/Headers/Public/FirebaseCore" "${PODS_ROOT}/Headers/Public/FirebaseCoreDiagnostics" "${PODS_ROOT}/Headers/Public/FirebaseCrashlytics" "${PODS_ROOT}/Headers/Public/FirebaseInstallations" "${PODS_ROOT}/Headers/Public/GoogleDataTransport" "${PODS_ROOT}/Headers/Public/GoogleDataTransportCCTSupport" "${PODS_ROOT}/Headers/Public/GoogleUtilities" "${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/RNFBApp" "${PODS_ROOT}/Headers/Public/React-Core" "${PODS_ROOT}/Headers/Public/React-RCTBlob" "${PODS_ROOT}/Headers/Public/React-RCTText" "${PODS_ROOT}/Headers/Public/React-callinvoker" "${PODS_ROOT}/Headers/Public/React-cxxreact" "${PODS_ROOT}/Headers/Public/React-jsi" "${PODS_ROOT}/Headers/Public/React-jsiexecutor" "${PODS_ROOT}/Headers/Public/React-jsinspector" "${PODS_ROOT}/Headers/Public/React-perflogger" "${PODS_ROOT}/Headers/Public/React-runtimeexecutor" "${PODS_ROOT}/Headers/Public/ReactCommon" "${PODS_ROOT}/Headers/Public/Yoga" "${PODS_ROOT}/Headers/Public/glog" "${PODS_ROOT}/Headers/Public/hermes-engine" "${PODS_ROOT}/Headers/Public/libevent" "${PODS_ROOT}/Headers/Public/nanopb" +HEADER_SEARCH_PATHS = $(inherited) "${PODS_ROOT}/Headers/Private" "${PODS_ROOT}/Headers/Private/RNFBApp" "${PODS_ROOT}/Headers/Public" "${PODS_ROOT}/Headers/Public/DoubleConversion" "${PODS_ROOT}/Headers/Public/Firebase" "${PODS_ROOT}/Headers/Public/FirebaseCore" "${PODS_ROOT}/Headers/Public/FirebaseCoreDiagnostics" "${PODS_ROOT}/Headers/Public/FirebaseCrashlytics" "${PODS_ROOT}/Headers/Public/FirebaseInstallations" "${PODS_ROOT}/Headers/Public/GoogleDataTransport" "${PODS_ROOT}/Headers/Public/GoogleUtilities" "${PODS_ROOT}/Headers/Public/PromisesObjC" "${PODS_ROOT}/Headers/Public/RCT-Folly" "${PODS_ROOT}/Headers/Public/RNFBApp" "${PODS_ROOT}/Headers/Public/React-Core" "${PODS_ROOT}/Headers/Public/React-callinvoker" "${PODS_ROOT}/Headers/Public/React-cxxreact" "${PODS_ROOT}/Headers/Public/React-jsi" "${PODS_ROOT}/Headers/Public/React-jsiexecutor" "${PODS_ROOT}/Headers/Public/React-jsinspector" "${PODS_ROOT}/Headers/Public/React-perflogger" "${PODS_ROOT}/Headers/Public/React-runtimeexecutor" "${PODS_ROOT}/Headers/Public/Yoga" "${PODS_ROOT}/Headers/Public/glog" "${PODS_ROOT}/Headers/Public/hermes-engine" "${PODS_ROOT}/Headers/Public/libevent" "${PODS_ROOT}/Headers/Public/nanopb" OTHER_CFLAGS = $(inherited) -fmodule-map-file="${PODS_ROOT}/Headers/Public/React/React-Core.modulemap" -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/Pods/Target Support Files/RNFBCrashlytics/RNFBCrashlytics.debug.xcconfig b/ios/Pods/Target Support Files/RNFBCrashlytics/RNFBCrashlytics.debug.xcconfig index eacb3b5a5e..d542a2c7ff 100644 --- a/ios/Pods/Target Support Files/RNFBCrashlytics/RNFBCrashlytics.debug.xcconfig +++ b/ios/Pods/Target Support Files/RNFBCrashlytics/RNFBCrashlytics.debug.xcconfig @@ -3,7 +3,7 @@ CLANG_WARN_QUOTED_INCLUDE_IN_FRAMEWORK_HEADER = NO CONFIGURATION_BUILD_DIR = ${PODS_CONFIGURATION_BUILD_DIR}/RNFBCrashlytics FRAMEWORK_SEARCH_PATHS = $(inherited) "${PODS_ROOT}/FirebaseAnalytics/Frameworks" "${PODS_ROOT}/GoogleAppMeasurement/Frameworks" "${PODS_ROOT}/hermes-engine/destroot/Library/Frameworks/iphoneos" GCC_PREPROCESSOR_DEFINITIONS = $(inherited) COCOAPODS=1 -HEADER_SEARCH_PATHS = $(inherited) "${PODS_ROOT}/Headers/Private" "${PODS_ROOT}/Headers/Private/RNFBCrashlytics" "${PODS_ROOT}/Headers/Public" "${PODS_ROOT}/Headers/Public/DoubleConversion" "${PODS_ROOT}/Headers/Public/FBLazyVector" "${PODS_ROOT}/Headers/Public/FBReactNativeSpec" "${PODS_ROOT}/Headers/Public/Firebase" "${PODS_ROOT}/Headers/Public/FirebaseCore" "${PODS_ROOT}/Headers/Public/FirebaseCoreDiagnostics" "${PODS_ROOT}/Headers/Public/FirebaseCrashlytics" "${PODS_ROOT}/Headers/Public/FirebaseInstallations" "${PODS_ROOT}/Headers/Public/GoogleDataTransport" "${PODS_ROOT}/Headers/Public/GoogleDataTransportCCTSupport" "${PODS_ROOT}/Headers/Public/GoogleUtilities" "${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/RNFBApp" "${PODS_ROOT}/Headers/Public/RNFBCrashlytics" "${PODS_ROOT}/Headers/Public/React-Core" "${PODS_ROOT}/Headers/Public/React-RCTBlob" "${PODS_ROOT}/Headers/Public/React-RCTText" "${PODS_ROOT}/Headers/Public/React-callinvoker" "${PODS_ROOT}/Headers/Public/React-cxxreact" "${PODS_ROOT}/Headers/Public/React-jsi" "${PODS_ROOT}/Headers/Public/React-jsiexecutor" "${PODS_ROOT}/Headers/Public/React-jsinspector" "${PODS_ROOT}/Headers/Public/React-perflogger" "${PODS_ROOT}/Headers/Public/React-runtimeexecutor" "${PODS_ROOT}/Headers/Public/ReactCommon" "${PODS_ROOT}/Headers/Public/Yoga" "${PODS_ROOT}/Headers/Public/glog" "${PODS_ROOT}/Headers/Public/hermes-engine" "${PODS_ROOT}/Headers/Public/libevent" "${PODS_ROOT}/Headers/Public/nanopb" +HEADER_SEARCH_PATHS = $(inherited) "${PODS_ROOT}/Headers/Private" "${PODS_ROOT}/Headers/Private/RNFBCrashlytics" "${PODS_ROOT}/Headers/Public" "${PODS_ROOT}/Headers/Public/DoubleConversion" "${PODS_ROOT}/Headers/Public/Firebase" "${PODS_ROOT}/Headers/Public/FirebaseCore" "${PODS_ROOT}/Headers/Public/FirebaseCoreDiagnostics" "${PODS_ROOT}/Headers/Public/FirebaseCrashlytics" "${PODS_ROOT}/Headers/Public/FirebaseInstallations" "${PODS_ROOT}/Headers/Public/GoogleDataTransport" "${PODS_ROOT}/Headers/Public/GoogleUtilities" "${PODS_ROOT}/Headers/Public/PromisesObjC" "${PODS_ROOT}/Headers/Public/RCT-Folly" "${PODS_ROOT}/Headers/Public/RNFBApp" "${PODS_ROOT}/Headers/Public/RNFBCrashlytics" "${PODS_ROOT}/Headers/Public/React-Core" "${PODS_ROOT}/Headers/Public/React-callinvoker" "${PODS_ROOT}/Headers/Public/React-cxxreact" "${PODS_ROOT}/Headers/Public/React-jsi" "${PODS_ROOT}/Headers/Public/React-jsiexecutor" "${PODS_ROOT}/Headers/Public/React-jsinspector" "${PODS_ROOT}/Headers/Public/React-perflogger" "${PODS_ROOT}/Headers/Public/React-runtimeexecutor" "${PODS_ROOT}/Headers/Public/Yoga" "${PODS_ROOT}/Headers/Public/glog" "${PODS_ROOT}/Headers/Public/hermes-engine" "${PODS_ROOT}/Headers/Public/libevent" "${PODS_ROOT}/Headers/Public/nanopb" OTHER_CFLAGS = $(inherited) -fmodule-map-file="${PODS_ROOT}/Headers/Public/React/React-Core.modulemap" -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/Pods/Target Support Files/RNFBCrashlytics/RNFBCrashlytics.release.xcconfig b/ios/Pods/Target Support Files/RNFBCrashlytics/RNFBCrashlytics.release.xcconfig index eacb3b5a5e..d542a2c7ff 100644 --- a/ios/Pods/Target Support Files/RNFBCrashlytics/RNFBCrashlytics.release.xcconfig +++ b/ios/Pods/Target Support Files/RNFBCrashlytics/RNFBCrashlytics.release.xcconfig @@ -3,7 +3,7 @@ CLANG_WARN_QUOTED_INCLUDE_IN_FRAMEWORK_HEADER = NO CONFIGURATION_BUILD_DIR = ${PODS_CONFIGURATION_BUILD_DIR}/RNFBCrashlytics FRAMEWORK_SEARCH_PATHS = $(inherited) "${PODS_ROOT}/FirebaseAnalytics/Frameworks" "${PODS_ROOT}/GoogleAppMeasurement/Frameworks" "${PODS_ROOT}/hermes-engine/destroot/Library/Frameworks/iphoneos" GCC_PREPROCESSOR_DEFINITIONS = $(inherited) COCOAPODS=1 -HEADER_SEARCH_PATHS = $(inherited) "${PODS_ROOT}/Headers/Private" "${PODS_ROOT}/Headers/Private/RNFBCrashlytics" "${PODS_ROOT}/Headers/Public" "${PODS_ROOT}/Headers/Public/DoubleConversion" "${PODS_ROOT}/Headers/Public/FBLazyVector" "${PODS_ROOT}/Headers/Public/FBReactNativeSpec" "${PODS_ROOT}/Headers/Public/Firebase" "${PODS_ROOT}/Headers/Public/FirebaseCore" "${PODS_ROOT}/Headers/Public/FirebaseCoreDiagnostics" "${PODS_ROOT}/Headers/Public/FirebaseCrashlytics" "${PODS_ROOT}/Headers/Public/FirebaseInstallations" "${PODS_ROOT}/Headers/Public/GoogleDataTransport" "${PODS_ROOT}/Headers/Public/GoogleDataTransportCCTSupport" "${PODS_ROOT}/Headers/Public/GoogleUtilities" "${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/RNFBApp" "${PODS_ROOT}/Headers/Public/RNFBCrashlytics" "${PODS_ROOT}/Headers/Public/React-Core" "${PODS_ROOT}/Headers/Public/React-RCTBlob" "${PODS_ROOT}/Headers/Public/React-RCTText" "${PODS_ROOT}/Headers/Public/React-callinvoker" "${PODS_ROOT}/Headers/Public/React-cxxreact" "${PODS_ROOT}/Headers/Public/React-jsi" "${PODS_ROOT}/Headers/Public/React-jsiexecutor" "${PODS_ROOT}/Headers/Public/React-jsinspector" "${PODS_ROOT}/Headers/Public/React-perflogger" "${PODS_ROOT}/Headers/Public/React-runtimeexecutor" "${PODS_ROOT}/Headers/Public/ReactCommon" "${PODS_ROOT}/Headers/Public/Yoga" "${PODS_ROOT}/Headers/Public/glog" "${PODS_ROOT}/Headers/Public/hermes-engine" "${PODS_ROOT}/Headers/Public/libevent" "${PODS_ROOT}/Headers/Public/nanopb" +HEADER_SEARCH_PATHS = $(inherited) "${PODS_ROOT}/Headers/Private" "${PODS_ROOT}/Headers/Private/RNFBCrashlytics" "${PODS_ROOT}/Headers/Public" "${PODS_ROOT}/Headers/Public/DoubleConversion" "${PODS_ROOT}/Headers/Public/Firebase" "${PODS_ROOT}/Headers/Public/FirebaseCore" "${PODS_ROOT}/Headers/Public/FirebaseCoreDiagnostics" "${PODS_ROOT}/Headers/Public/FirebaseCrashlytics" "${PODS_ROOT}/Headers/Public/FirebaseInstallations" "${PODS_ROOT}/Headers/Public/GoogleDataTransport" "${PODS_ROOT}/Headers/Public/GoogleUtilities" "${PODS_ROOT}/Headers/Public/PromisesObjC" "${PODS_ROOT}/Headers/Public/RCT-Folly" "${PODS_ROOT}/Headers/Public/RNFBApp" "${PODS_ROOT}/Headers/Public/RNFBCrashlytics" "${PODS_ROOT}/Headers/Public/React-Core" "${PODS_ROOT}/Headers/Public/React-callinvoker" "${PODS_ROOT}/Headers/Public/React-cxxreact" "${PODS_ROOT}/Headers/Public/React-jsi" "${PODS_ROOT}/Headers/Public/React-jsiexecutor" "${PODS_ROOT}/Headers/Public/React-jsinspector" "${PODS_ROOT}/Headers/Public/React-perflogger" "${PODS_ROOT}/Headers/Public/React-runtimeexecutor" "${PODS_ROOT}/Headers/Public/Yoga" "${PODS_ROOT}/Headers/Public/glog" "${PODS_ROOT}/Headers/Public/hermes-engine" "${PODS_ROOT}/Headers/Public/libevent" "${PODS_ROOT}/Headers/Public/nanopb" OTHER_CFLAGS = $(inherited) -fmodule-map-file="${PODS_ROOT}/Headers/Public/React/React-Core.modulemap" -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/RocketChatRN.xcodeproj/project.pbxproj b/ios/RocketChatRN.xcodeproj/project.pbxproj index 20db57b977..39d7ad3940 100644 --- a/ios/RocketChatRN.xcodeproj/project.pbxproj +++ b/ios/RocketChatRN.xcodeproj/project.pbxproj @@ -835,7 +835,7 @@ name = "[CP-User] [RNFB] Core Configuration"; runOnlyForDeploymentPostprocessing = 0; shellPath = /bin/sh; - shellScript = "#!/usr/bin/env bash\n#\n# Copyright (c) 2016-present Invertase Limited & Contributors\n#\n# Licensed under the Apache License, Version 2.0 (the \"License\");\n# you may not use this library except in compliance with the License.\n# You may obtain a copy of the License at\n#\n# http://www.apache.org/licenses/LICENSE-2.0\n#\n# Unless required by applicable law or agreed to in writing, software\n# distributed under the License is distributed on an \"AS IS\" BASIS,\n# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n# See the License for the specific language governing permissions and\n# limitations under the License.\n#\nset -e\n\n_MAX_LOOKUPS=2;\n_SEARCH_RESULT=''\n_RN_ROOT_EXISTS=''\n_CURRENT_LOOKUPS=1\n_JSON_ROOT=\"'react-native'\"\n_JSON_FILE_NAME='firebase.json'\n_JSON_OUTPUT_BASE64='e30=' # { }\n_CURRENT_SEARCH_DIR=${PROJECT_DIR}\n_PLIST_BUDDY=/usr/libexec/PlistBuddy\n_TARGET_PLIST=\"${BUILT_PRODUCTS_DIR}/${INFOPLIST_PATH}\"\n_DSYM_PLIST=\"${DWARF_DSYM_FOLDER_PATH}/${DWARF_DSYM_FILE_NAME}/Contents/Info.plist\"\n\n# plist arrays\n_PLIST_ENTRY_KEYS=()\n_PLIST_ENTRY_TYPES=()\n_PLIST_ENTRY_VALUES=()\n\nfunction setPlistValue {\n echo \"info: setting plist entry '$1' of type '$2' in file '$4'\"\n ${_PLIST_BUDDY} -c \"Add :$1 $2 '$3'\" $4 || echo \"info: '$1' already exists\"\n}\n\nfunction getFirebaseJsonKeyValue () {\n if [[ ${_RN_ROOT_EXISTS} ]]; then\n ruby -e \"require 'rubygems';require 'json'; output=JSON.parse('$1'); puts output[$_JSON_ROOT]['$2']\"\n else\n echo \"\"\n fi;\n}\n\nfunction jsonBoolToYesNo () {\n if [[ $1 == \"false\" ]]; then\n echo \"NO\"\n elif [[ $1 == \"true\" ]]; then\n echo \"YES\"\n else echo \"NO\"\n fi\n}\n\necho \"info: -> RNFB build script started\"\necho \"info: 1) Locating ${_JSON_FILE_NAME} file:\"\n\nif [[ -z ${_CURRENT_SEARCH_DIR} ]]; then\n _CURRENT_SEARCH_DIR=$(pwd)\nfi;\n\nwhile true; do\n _CURRENT_SEARCH_DIR=$(dirname \"$_CURRENT_SEARCH_DIR\")\n if [[ \"$_CURRENT_SEARCH_DIR\" == \"/\" ]] || [[ ${_CURRENT_LOOKUPS} -gt ${_MAX_LOOKUPS} ]]; then break; fi;\n echo \"info: ($_CURRENT_LOOKUPS of $_MAX_LOOKUPS) Searching in '$_CURRENT_SEARCH_DIR' for a ${_JSON_FILE_NAME} file.\"\n _SEARCH_RESULT=$(find \"$_CURRENT_SEARCH_DIR\" -maxdepth 2 -name ${_JSON_FILE_NAME} -print | head -n 1)\n if [[ ${_SEARCH_RESULT} ]]; then\n echo \"info: ${_JSON_FILE_NAME} found at $_SEARCH_RESULT\"\n break;\n fi;\n _CURRENT_LOOKUPS=$((_CURRENT_LOOKUPS+1))\ndone\n\nif [[ ${_SEARCH_RESULT} ]]; then\n _JSON_OUTPUT_RAW=$(cat \"${_SEARCH_RESULT}\")\n _RN_ROOT_EXISTS=$(ruby -e \"require 'rubygems';require 'json'; output=JSON.parse('$_JSON_OUTPUT_RAW'); puts output[$_JSON_ROOT]\" || echo '')\n\n if [[ ${_RN_ROOT_EXISTS} ]]; then\n _JSON_OUTPUT_BASE64=$(python -c 'import json,sys,base64;print(base64.b64encode(json.dumps(json.loads(open('\"'${_SEARCH_RESULT}'\"').read())['${_JSON_ROOT}'])))' || echo \"e30=\")\n fi\n\n _PLIST_ENTRY_KEYS+=(\"firebase_json_raw\")\n _PLIST_ENTRY_TYPES+=(\"string\")\n _PLIST_ENTRY_VALUES+=(\"$_JSON_OUTPUT_BASE64\")\n\n # config.messaging_auto_init_enabled\n _MESSAGING_AUTO_INIT=$(getFirebaseJsonKeyValue \"$_JSON_OUTPUT_RAW\" \"messaging_auto_init_enabled\")\n if [[ $_MESSAGING_AUTO_INIT ]]; then\n _PLIST_ENTRY_KEYS+=(\"FirebaseMessagingAutoInitEnabled\")\n _PLIST_ENTRY_TYPES+=(\"bool\")\n _PLIST_ENTRY_VALUES+=(\"$(jsonBoolToYesNo \"$_MESSAGING_AUTO_INIT\")\")\n fi\n\n # config.crashlytics_disable_auto_disabler - undocumented for now - mainly for debugging, document if becomes usful\n _CRASHLYTICS_AUTO_DISABLE_ENABLED=$(getFirebaseJsonKeyValue \"$_JSON_OUTPUT_RAW\" \"crashlytics_disable_auto_disabler\")\n if [[ $_CRASHLYTICS_AUTO_DISABLE_ENABLED == \"true\" ]]; then\n echo \"Disabled Crashlytics auto disabler.\" # do nothing\n else\n _PLIST_ENTRY_KEYS+=(\"FirebaseCrashlyticsCollectionEnabled\")\n _PLIST_ENTRY_TYPES+=(\"bool\")\n _PLIST_ENTRY_VALUES+=(\"NO\")\n fi\n\n # config.admob_delay_app_measurement_init\n _ADMOB_DELAY_APP_MEASUREMENT=$(getFirebaseJsonKeyValue \"$_JSON_OUTPUT_RAW\" \"admob_delay_app_measurement_init\")\n if [[ $_ADMOB_DELAY_APP_MEASUREMENT == \"true\" ]]; then\n _PLIST_ENTRY_KEYS+=(\"GADDelayAppMeasurementInit\")\n _PLIST_ENTRY_TYPES+=(\"bool\")\n _PLIST_ENTRY_VALUES+=(\"YES\")\n fi\n\n # config.admob_ios_app_id\n _ADMOB_IOS_APP_ID=$(getFirebaseJsonKeyValue \"$_JSON_OUTPUT_RAW\" \"admob_ios_app_id\")\n if [[ $_ADMOB_IOS_APP_ID ]]; then\n _PLIST_ENTRY_KEYS+=(\"GADApplicationIdentifier\")\n _PLIST_ENTRY_TYPES+=(\"string\")\n _PLIST_ENTRY_VALUES+=(\"$_ADMOB_IOS_APP_ID\")\n fi\nelse\n _PLIST_ENTRY_KEYS+=(\"firebase_json_raw\")\n _PLIST_ENTRY_TYPES+=(\"string\")\n _PLIST_ENTRY_VALUES+=(\"$_JSON_OUTPUT_BASE64\")\n echo \"warning: A firebase.json file was not found, whilst this file is optional it is recommended to include it to configure firebase services in React Native Firebase.\"\nfi;\n\necho \"info: 2) Injecting Info.plist entries: \"\n\n# Log out the keys we're adding\nfor i in \"${!_PLIST_ENTRY_KEYS[@]}\"; do\n echo \" -> $i) ${_PLIST_ENTRY_KEYS[$i]}\" \"${_PLIST_ENTRY_TYPES[$i]}\" \"${_PLIST_ENTRY_VALUES[$i]}\"\ndone\n\nfor plist in \"${_TARGET_PLIST}\" \"${_DSYM_PLIST}\" ; do\n if [[ -f \"${plist}\" ]]; then\n\n # paths with spaces break the call to setPlistValue. temporarily modify\n # the shell internal field separator variable (IFS), which normally \n # includes spaces, to consist only of line breaks\n oldifs=$IFS\n IFS=\"\n\"\n\n for i in \"${!_PLIST_ENTRY_KEYS[@]}\"; do\n setPlistValue \"${_PLIST_ENTRY_KEYS[$i]}\" \"${_PLIST_ENTRY_TYPES[$i]}\" \"${_PLIST_ENTRY_VALUES[$i]}\" \"${plist}\"\n done\n\n # restore the original internal field separator value\n IFS=$oldifs\n else\n echo \"warning: A Info.plist build output file was not found (${plist})\"\n fi\ndone\n\necho \"info: <- RNFB build script finished\"\n\n"; + shellScript = "#!/usr/bin/env bash\n#\n# Copyright (c) 2016-present Invertase Limited & Contributors\n#\n# Licensed under the Apache License, Version 2.0 (the \"License\");\n# you may not use this library except in compliance with the License.\n# You may obtain a copy of the License at\n#\n# http://www.apache.org/licenses/LICENSE-2.0\n#\n# Unless required by applicable law or agreed to in writing, software\n# distributed under the License is distributed on an \"AS IS\" BASIS,\n# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n# See the License for the specific language governing permissions and\n# limitations under the License.\n#\nset -e\n\n_MAX_LOOKUPS=2;\n_SEARCH_RESULT=''\n_RN_ROOT_EXISTS=''\n_CURRENT_LOOKUPS=1\n_JSON_ROOT=\"'react-native'\"\n_JSON_FILE_NAME='firebase.json'\n_JSON_OUTPUT_BASE64='e30=' # { }\n_CURRENT_SEARCH_DIR=${PROJECT_DIR}\n_PLIST_BUDDY=/usr/libexec/PlistBuddy\n_TARGET_PLIST=\"${BUILT_PRODUCTS_DIR}/${INFOPLIST_PATH}\"\n_DSYM_PLIST=\"${DWARF_DSYM_FOLDER_PATH}/${DWARF_DSYM_FILE_NAME}/Contents/Info.plist\"\n\n# plist arrays\n_PLIST_ENTRY_KEYS=()\n_PLIST_ENTRY_TYPES=()\n_PLIST_ENTRY_VALUES=()\n\nfunction setPlistValue {\n echo \"info: setting plist entry '$1' of type '$2' in file '$4'\"\n ${_PLIST_BUDDY} -c \"Add :$1 $2 '$3'\" $4 || echo \"info: '$1' already exists\"\n}\n\nfunction getFirebaseJsonKeyValue () {\n if [[ ${_RN_ROOT_EXISTS} ]]; then\n ruby -e \"require 'rubygems';require 'json'; output=JSON.parse('$1'); puts output[$_JSON_ROOT]['$2']\"\n else\n echo \"\"\n fi;\n}\n\nfunction jsonBoolToYesNo () {\n if [[ $1 == \"false\" ]]; then\n echo \"NO\"\n elif [[ $1 == \"true\" ]]; then\n echo \"YES\"\n else echo \"NO\"\n fi\n}\n\necho \"info: -> RNFB build script started\"\necho \"info: 1) Locating ${_JSON_FILE_NAME} file:\"\n\nif [[ -z ${_CURRENT_SEARCH_DIR} ]]; then\n _CURRENT_SEARCH_DIR=$(pwd)\nfi;\n\nwhile true; do\n _CURRENT_SEARCH_DIR=$(dirname \"$_CURRENT_SEARCH_DIR\")\n if [[ \"$_CURRENT_SEARCH_DIR\" == \"/\" ]] || [[ ${_CURRENT_LOOKUPS} -gt ${_MAX_LOOKUPS} ]]; then break; fi;\n echo \"info: ($_CURRENT_LOOKUPS of $_MAX_LOOKUPS) Searching in '$_CURRENT_SEARCH_DIR' for a ${_JSON_FILE_NAME} file.\"\n _SEARCH_RESULT=$(find \"$_CURRENT_SEARCH_DIR\" -maxdepth 2 -name ${_JSON_FILE_NAME} -print | head -n 1)\n if [[ ${_SEARCH_RESULT} ]]; then\n echo \"info: ${_JSON_FILE_NAME} found at $_SEARCH_RESULT\"\n break;\n fi;\n _CURRENT_LOOKUPS=$((_CURRENT_LOOKUPS+1))\ndone\n\nif [[ ${_SEARCH_RESULT} ]]; then\n _JSON_OUTPUT_RAW=$(cat \"${_SEARCH_RESULT}\")\n _RN_ROOT_EXISTS=$(ruby -e \"require 'rubygems';require 'json'; output=JSON.parse('$_JSON_OUTPUT_RAW'); puts output[$_JSON_ROOT]\" || echo '')\n\n if [[ ${_RN_ROOT_EXISTS} ]]; then\n _JSON_OUTPUT_BASE64=$(python -c 'import json,sys,base64;print(base64.b64encode(json.dumps(json.loads(open('\"'${_SEARCH_RESULT}'\"').read())['${_JSON_ROOT}'])))' || echo \"e30=\")\n fi\n\n _PLIST_ENTRY_KEYS+=(\"firebase_json_raw\")\n _PLIST_ENTRY_TYPES+=(\"string\")\n _PLIST_ENTRY_VALUES+=(\"$_JSON_OUTPUT_BASE64\")\n\n # config.messaging_auto_init_enabled\n _MESSAGING_AUTO_INIT=$(getFirebaseJsonKeyValue \"$_JSON_OUTPUT_RAW\" \"messaging_auto_init_enabled\")\n if [[ $_MESSAGING_AUTO_INIT ]]; then\n _PLIST_ENTRY_KEYS+=(\"FirebaseMessagingAutoInitEnabled\")\n _PLIST_ENTRY_TYPES+=(\"bool\")\n _PLIST_ENTRY_VALUES+=(\"$(jsonBoolToYesNo \"$_MESSAGING_AUTO_INIT\")\")\n fi\n\n # config.crashlytics_disable_auto_disabler - undocumented for now - mainly for debugging, document if becomes useful\n _CRASHLYTICS_AUTO_DISABLE_ENABLED=$(getFirebaseJsonKeyValue \"$_JSON_OUTPUT_RAW\" \"crashlytics_disable_auto_disabler\")\n if [[ $_CRASHLYTICS_AUTO_DISABLE_ENABLED == \"true\" ]]; then\n echo \"Disabled Crashlytics auto disabler.\" # do nothing\n else\n _PLIST_ENTRY_KEYS+=(\"FirebaseCrashlyticsCollectionEnabled\")\n _PLIST_ENTRY_TYPES+=(\"bool\")\n _PLIST_ENTRY_VALUES+=(\"NO\")\n fi\n\n # config.admob_delay_app_measurement_init\n _ADMOB_DELAY_APP_MEASUREMENT=$(getFirebaseJsonKeyValue \"$_JSON_OUTPUT_RAW\" \"admob_delay_app_measurement_init\")\n if [[ $_ADMOB_DELAY_APP_MEASUREMENT == \"true\" ]]; then\n _PLIST_ENTRY_KEYS+=(\"GADDelayAppMeasurementInit\")\n _PLIST_ENTRY_TYPES+=(\"bool\")\n _PLIST_ENTRY_VALUES+=(\"YES\")\n fi\n\n # config.admob_ios_app_id\n _ADMOB_IOS_APP_ID=$(getFirebaseJsonKeyValue \"$_JSON_OUTPUT_RAW\" \"admob_ios_app_id\")\n if [[ $_ADMOB_IOS_APP_ID ]]; then\n _PLIST_ENTRY_KEYS+=(\"GADApplicationIdentifier\")\n _PLIST_ENTRY_TYPES+=(\"string\")\n _PLIST_ENTRY_VALUES+=(\"$_ADMOB_IOS_APP_ID\")\n fi\nelse\n _PLIST_ENTRY_KEYS+=(\"firebase_json_raw\")\n _PLIST_ENTRY_TYPES+=(\"string\")\n _PLIST_ENTRY_VALUES+=(\"$_JSON_OUTPUT_BASE64\")\n echo \"warning: A firebase.json file was not found, whilst this file is optional it is recommended to include it to configure firebase services in React Native Firebase.\"\nfi;\n\necho \"info: 2) Injecting Info.plist entries: \"\n\n# Log out the keys we're adding\nfor i in \"${!_PLIST_ENTRY_KEYS[@]}\"; do\n echo \" -> $i) ${_PLIST_ENTRY_KEYS[$i]}\" \"${_PLIST_ENTRY_TYPES[$i]}\" \"${_PLIST_ENTRY_VALUES[$i]}\"\ndone\n\nfor plist in \"${_TARGET_PLIST}\" \"${_DSYM_PLIST}\" ; do\n if [[ -f \"${plist}\" ]]; then\n\n # paths with spaces break the call to setPlistValue. temporarily modify\n # the shell internal field separator variable (IFS), which normally\n # includes spaces, to consist only of line breaks\n oldifs=$IFS\n IFS=\"\n\"\n\n for i in \"${!_PLIST_ENTRY_KEYS[@]}\"; do\n setPlistValue \"${_PLIST_ENTRY_KEYS[$i]}\" \"${_PLIST_ENTRY_TYPES[$i]}\" \"${_PLIST_ENTRY_VALUES[$i]}\" \"${plist}\"\n done\n\n # restore the original internal field separator value\n IFS=$oldifs\n else\n echo \"warning: A Info.plist build output file was not found (${plist})\"\n fi\ndone\n\necho \"info: <- RNFB build script finished\"\n"; }; 1984338E174B5F45674AD7A1 /* [CP] Copy Pods Resources */ = { isa = PBXShellScriptBuildPhase; @@ -1201,6 +1201,10 @@ buildActionMask = 2147483647; files = ( ); + inputPaths = ( + "${DWARF_DSYM_FOLDER_PATH}/${DWARF_DSYM_FILE_NAME}/Contents/Resources/DWARF/${TARGET_NAME}", + "$(SRCROOT)/$(BUILT_PRODUCTS_DIR)/$(INFOPLIST_PATH)", + ); name = "[CP-User] [RNFB] Crashlytics Configuration"; runOnlyForDeploymentPostprocessing = 0; shellPath = /bin/sh; @@ -1626,7 +1630,7 @@ "$(inherited)", "$(SRCROOT)/../node_modules/rn-extensions-share/ios/**", "$(SRCROOT)/../node_modules/react-native-firebase/ios/RNFirebase/**", - $PODS_CONFIGURATION_BUILD_DIR/Firebase, + "$PODS_CONFIGURATION_BUILD_DIR/Firebase", ); INFOPLIST_FILE = ShareRocketChatRN/Info.plist; IPHONEOS_DEPLOYMENT_TARGET = 11.0; @@ -1692,7 +1696,7 @@ "$(inherited)", "$(SRCROOT)/../node_modules/rn-extensions-share/ios/**", "$(SRCROOT)/../node_modules/react-native-firebase/ios/RNFirebase/**", - $PODS_CONFIGURATION_BUILD_DIR/Firebase, + "$PODS_CONFIGURATION_BUILD_DIR/Firebase", ); INFOPLIST_FILE = ShareRocketChatRN/Info.plist; IPHONEOS_DEPLOYMENT_TARGET = 11.0; diff --git a/yarn.lock b/yarn.lock index 4b32a39c7b..17b6c12662 100644 --- a/yarn.lock +++ b/yarn.lock @@ -2,6 +2,13 @@ # yarn lockfile v1 +"@babel/code-frame@7.12.11": + version "7.12.11" + resolved "https://registry.yarnpkg.com/@babel/code-frame/-/code-frame-7.12.11.tgz#f4ad435aa263db935b8f10f2c552d23fb716a63f" + integrity sha512-Zt1yodBx1UcyiePMSkWnU4hPqhwq7hGi2nFL1LeA3EUl+q2LQx16MISgJ0+z7dnmgvP9QtIleuETGOiOH1RcIw== + dependencies: + "@babel/highlight" "^7.10.4" + "@babel/code-frame@7.5.5": version "7.5.5" resolved "https://registry.yarnpkg.com/@babel/code-frame/-/code-frame-7.5.5.tgz#bc0782f6d69f7b7d49531219699b988f669a8f9d" @@ -42,7 +49,7 @@ semver "^6.3.0" source-map "^0.5.0" -"@babel/eslint-parser@^7.13.4": +"@babel/eslint-parser@^7.14.7": version "7.15.0" resolved "https://registry.yarnpkg.com/@babel/eslint-parser/-/eslint-parser-7.15.0.tgz#b54f06e04d0e93aebcba99f89251e3bf0ee39f21" integrity sha512-+gSPtjSBxOZz4Uh8Ggqu7HbfpB8cT1LwW0DnVVLZEJvzXauiD0Di3zszcBkRmfGGrLdYeHUwcflG7i3tr9kQlw== @@ -265,7 +272,7 @@ "@babel/traverse" "^7.15.0" "@babel/types" "^7.15.0" -"@babel/highlight@^7.0.0", "@babel/highlight@^7.14.5": +"@babel/highlight@^7.0.0", "@babel/highlight@^7.10.4", "@babel/highlight@^7.14.5": version "7.14.5" resolved "https://registry.yarnpkg.com/@babel/highlight/-/highlight-7.14.5.tgz#6861a52f03966405001f6aa534a01a24d99e8cd9" integrity sha512-qf9u2WFWVV0MppaL877j2dBtQIDgmidgjGk5VIMw3OadXvYaXn66U1BFlH2t4+t3i+8PhedppRv+i40ABzd+gg== @@ -1314,19 +1321,18 @@ resolved "https://registry.yarnpkg.com/@emotion/weak-memoize/-/weak-memoize-0.2.5.tgz#8eed982e2ee6f7f4e44c253e12962980791efd46" integrity sha512-6U71C2Wp7r5XtFtQzYrW5iKFT67OixrSxjI4MptCHzdSVlgabczzqLe0ZSgnub/5Kp4hSbpDB1tMytZY9pwxxA== -"@eslint/eslintrc@^0.2.1": - version "0.2.2" - resolved "https://registry.yarnpkg.com/@eslint/eslintrc/-/eslintrc-0.2.2.tgz#d01fc791e2fc33e88a29d6f3dc7e93d0cd784b76" - integrity sha512-EfB5OHNYp1F4px/LI/FEnGylop7nOqkQ1LRzCM0KccA2U8tvV8w01KBv37LbO7nW4H+YhKyo2LcJhRwjjV17QQ== +"@eslint/eslintrc@^0.4.3": + version "0.4.3" + resolved "https://registry.yarnpkg.com/@eslint/eslintrc/-/eslintrc-0.4.3.tgz#9e42981ef035beb3dd49add17acb96e8ff6f394c" + integrity sha512-J6KFFz5QCYUJq3pf0mjEcCJVERbzv71PUIDczuh9JkwGEzced6CO5ADLHB1rbf/+oPBtoPfMYNOpGDzCANlbXw== dependencies: ajv "^6.12.4" debug "^4.1.1" espree "^7.3.0" - globals "^12.1.0" + globals "^13.9.0" ignore "^4.0.6" import-fresh "^3.2.1" js-yaml "^3.13.1" - lodash "^4.17.19" minimatch "^3.0.4" strip-json-comments "^3.1.1" @@ -1342,6 +1348,20 @@ dependencies: "@hapi/hoek" "^9.0.0" +"@humanwhocodes/config-array@^0.5.0": + version "0.5.0" + resolved "https://registry.yarnpkg.com/@humanwhocodes/config-array/-/config-array-0.5.0.tgz#1407967d4c6eecd7388f83acf1eaf4d0c6e58ef9" + integrity sha512-FagtKFz74XrTl7y6HCzQpwDfXP0yhxe9lHLD1UZxjvZIcbyRz8zTFF/yYNfSfzU414eDwZ1SrO0Qvtyf+wFMQg== + dependencies: + "@humanwhocodes/object-schema" "^1.2.0" + debug "^4.1.1" + minimatch "^3.0.4" + +"@humanwhocodes/object-schema@^1.2.0": + version "1.2.0" + resolved "https://registry.yarnpkg.com/@humanwhocodes/object-schema/-/object-schema-1.2.0.tgz#87de7af9c231826fdd68ac7258f77c429e0e5fcf" + integrity sha512-wdppn25U8z/2yiaT6YGquE6X8sSv7hNMWSXYSSU1jGv/yd6XqjXgTDJ8KP4NgjTXfJ3GbRjeeb8RTV7a/VpM+w== + "@hypnosphi/create-react-context@^0.3.1": version "0.3.1" resolved "https://registry.yarnpkg.com/@hypnosphi/create-react-context/-/create-react-context-0.3.1.tgz#f8bfebdc7665f5d426cba3753e0e9c7d3154d7c6" @@ -2454,6 +2474,13 @@ resolved "https://registry.yarnpkg.com/@redux-saga/types/-/types-1.1.0.tgz#0e81ce56b4883b4b2a3001ebe1ab298b84237204" integrity sha512-afmTuJrylUU/0OtqzaRkbyYFFNgCF73Bvel/sw90pvGrWIZ+vyoIJqA6eMSoA6+nb443kTmulmBtC9NerXboNg== +"@rocket.chat/eslint-config@^0.4.0": + version "0.4.0" + resolved "https://registry.yarnpkg.com/@rocket.chat/eslint-config/-/eslint-config-0.4.0.tgz#d648decd02ae739eac17a32e1630332a75318ea1" + integrity sha512-uVxoH3/TtusmXp73JtmDKlKK3EQTk+F/tnvVxfSAeyDCAS1/8HeZS+r81md3EOtRvmu1dselXg8+R1eO55QZfg== + dependencies: + eslint-plugin-import "^2.17.2" + "@rocket.chat/react-native-fast-image@^8.2.0": version "8.2.0" resolved "https://registry.yarnpkg.com/@rocket.chat/react-native-fast-image/-/react-native-fast-image-8.2.0.tgz#4f48858f95f40afcb10b39cee9b1239c150d6c51" @@ -3220,7 +3247,7 @@ eslint-scope "^5.1.1" eslint-utils "^3.0.0" -"@typescript-eslint/parser@^4.28.3": +"@typescript-eslint/parser@^4.28.5": version "4.29.2" resolved "https://registry.yarnpkg.com/@typescript-eslint/parser/-/parser-4.29.2.tgz#1c7744f4c27aeb74610c955d3dce9250e95c370a" integrity sha512-WQ6BPf+lNuwteUuyk1jD/aHKqMQ9jrdCn7Gxt9vvBnzbpj7aWEf+aZsJ1zvTjx5zFxGCt000lsbD9tQPEL8u6g== @@ -3571,6 +3598,16 @@ ajv@^6.1.0, ajv@^6.10.0, ajv@^6.10.2, ajv@^6.12.4: json-schema-traverse "^0.4.1" uri-js "^4.2.2" +ajv@^8.0.1: + version "8.6.2" + resolved "https://registry.yarnpkg.com/ajv/-/ajv-8.6.2.tgz#2fb45e0e5fcbc0813326c1c3da535d1881bb0571" + integrity sha512-9807RlWAgT564wT+DjeyU5OFMPjmzxVobvDFmNAhY+5zD6A2ly3jDp6sgnfyDtlIQ+7H97oc/DGCzzfu9rjw9w== + dependencies: + fast-deep-equal "^3.1.1" + json-schema-traverse "^1.0.0" + require-from-string "^2.0.2" + uri-js "^4.2.2" + anser@^1.4.9: version "1.4.10" resolved "https://registry.yarnpkg.com/anser/-/anser-1.4.10.tgz#befa3eddf282684bd03b63dcda3927aef8c2e35b" @@ -3781,7 +3818,7 @@ array-flatten@1.1.1: resolved "https://registry.yarnpkg.com/array-flatten/-/array-flatten-1.1.1.tgz#9a5f699051b1e7073328f2a008968b64ea2955d2" integrity sha1-ml9pkFGx5wczKPKgCJaLZOopVdI= -array-includes@^3.0.3, array-includes@^3.1.1: +array-includes@^3.0.3, array-includes@^3.1.1, array-includes@^3.1.3: version "3.1.3" resolved "https://registry.yarnpkg.com/array-includes/-/array-includes-3.1.3.tgz#c7f619b382ad2afaf5326cddfdc0afc61af7690a" integrity sha512-gcem1KlBU7c9rB+Rq8/3PPKsK2kjqeEBa3bD5kkQo4nYlOHQCJqIJFqBXDEfwaRuYTT4E+FxA9xez7Gf/e3Q7A== @@ -3824,7 +3861,7 @@ array-unique@^0.3.2: resolved "https://registry.yarnpkg.com/array-unique/-/array-unique-0.3.2.tgz#a894b75d4bc4f6cd679ef3244a9fd8f46ae2d428" integrity sha1-qJS3XUvE9s1nnvMkSp/Y9Gri1Cg= -array.prototype.flat@^1.2.1, array.prototype.flat@^1.2.3: +array.prototype.flat@^1.2.1, array.prototype.flat@^1.2.3, array.prototype.flat@^1.2.4: version "1.2.4" resolved "https://registry.yarnpkg.com/array.prototype.flat/-/array.prototype.flat-1.2.4.tgz#6ef638b43312bd401b4c6199fdec7e2dc9e9a123" integrity sha512-4470Xi3GAPAjZqFcljX2xzckv1qeKPizoNkiS0+O4IoPR2ZNpcjE0pkhdihlDouK+x6QOast26B4Q/O9DJnwSg== @@ -6552,7 +6589,7 @@ eslint-config-airbnb@^18.1.0: object.assign "^4.1.2" object.entries "^1.1.2" -eslint-import-resolver-node@^0.3.3: +eslint-import-resolver-node@^0.3.3, eslint-import-resolver-node@^0.3.6: version "0.3.6" resolved "https://registry.yarnpkg.com/eslint-import-resolver-node/-/eslint-import-resolver-node-0.3.6.tgz#4048b958395da89668252001dbd9eca6b83bacbd" integrity sha512-0En0w03NRVMn9Uiyn8YRPDKvWjxCWkslUEhGNTdGx15RvPJYQ+lbOlqrlNI2vEAs4pDYK4f/HN2TbDmk5TP0iw== @@ -6560,7 +6597,7 @@ eslint-import-resolver-node@^0.3.3: debug "^3.2.7" resolve "^1.20.0" -eslint-module-utils@^2.6.0: +eslint-module-utils@^2.6.0, eslint-module-utils@^2.6.2: version "2.6.2" resolved "https://registry.yarnpkg.com/eslint-module-utils/-/eslint-module-utils-2.6.2.tgz#94e5540dd15fe1522e8ffa3ec8db3b7fa7e7a534" integrity sha512-QG8pcgThYOuqxupd06oYTZoNOGaUdTY1PqK+oS6ElF6vs4pBdk/aYxFVQQXzcrAqp9m7cl7lb2ubazX+g16k2Q== @@ -6587,6 +6624,27 @@ eslint-plugin-import@2.22.0: resolve "^1.17.0" tsconfig-paths "^3.9.0" +eslint-plugin-import@^2.17.2: + version "2.24.1" + resolved "https://registry.yarnpkg.com/eslint-plugin-import/-/eslint-plugin-import-2.24.1.tgz#64aba8b567a1ba9921d5465586e86c491b8e2135" + integrity sha512-KSFWhNxPH8OGJwpRJJs+Z7I0a13E2iFQZJIvSnCu6KUs4qmgAm3xN9GYBCSoiGWmwA7gERZPXqYQjcoCROnYhQ== + dependencies: + array-includes "^3.1.3" + array.prototype.flat "^1.2.4" + debug "^2.6.9" + doctrine "^2.1.0" + eslint-import-resolver-node "^0.3.6" + eslint-module-utils "^2.6.2" + find-up "^2.0.0" + has "^1.0.3" + is-core-module "^2.6.0" + minimatch "^3.0.4" + object.values "^1.1.4" + pkg-up "^2.0.0" + read-pkg-up "^3.0.0" + resolve "^1.20.0" + tsconfig-paths "^3.10.1" + eslint-plugin-jsx-a11y@6.3.1: version "6.3.1" resolved "https://registry.yarnpkg.com/eslint-plugin-jsx-a11y/-/eslint-plugin-jsx-a11y-6.3.1.tgz#99ef7e97f567cc6a5b8dd5ab95a94a67058a2660" @@ -6678,29 +6736,32 @@ eslint-visitor-keys@^2.0.0, eslint-visitor-keys@^2.1.0: resolved "https://registry.yarnpkg.com/eslint-visitor-keys/-/eslint-visitor-keys-2.1.0.tgz#f65328259305927392c938ed44eb0a5c9b2bd303" integrity sha512-0rSmRBzXgDzIsD6mGdJgevzgezI534Cer5L/vyMX0kHzT/jiB43jRhd9YUlMGYLQy2zprNmoT8qasCGtY+QaKw== -eslint@7.14.0: - version "7.14.0" - resolved "https://registry.yarnpkg.com/eslint/-/eslint-7.14.0.tgz#2d2cac1d28174c510a97b377f122a5507958e344" - integrity sha512-5YubdnPXrlrYAFCKybPuHIAH++PINe1pmKNc5wQRB9HSbqIK1ywAnntE3Wwua4giKu0bjligf1gLF6qxMGOYRA== +eslint@^7.31.0: + version "7.32.0" + resolved "https://registry.yarnpkg.com/eslint/-/eslint-7.32.0.tgz#c6d328a14be3fb08c8d1d21e12c02fdb7a2a812d" + integrity sha512-VHZ8gX+EDfz+97jGcgyGCyRia/dPOd6Xh9yPv8Bl1+SoaIwD+a/vlrOmGRUyOYu7MwUhc7CxqeaDZU13S4+EpA== dependencies: - "@babel/code-frame" "^7.0.0" - "@eslint/eslintrc" "^0.2.1" + "@babel/code-frame" "7.12.11" + "@eslint/eslintrc" "^0.4.3" + "@humanwhocodes/config-array" "^0.5.0" ajv "^6.10.0" chalk "^4.0.0" cross-spawn "^7.0.2" debug "^4.0.1" doctrine "^3.0.0" enquirer "^2.3.5" + escape-string-regexp "^4.0.0" eslint-scope "^5.1.1" eslint-utils "^2.1.0" eslint-visitor-keys "^2.0.0" - espree "^7.3.0" - esquery "^1.2.0" + espree "^7.3.1" + esquery "^1.4.0" esutils "^2.0.2" - file-entry-cache "^5.0.1" + fast-deep-equal "^3.1.3" + file-entry-cache "^6.0.1" functional-red-black-tree "^1.0.1" - glob-parent "^5.0.0" - globals "^12.1.0" + glob-parent "^5.1.2" + globals "^13.6.0" ignore "^4.0.6" import-fresh "^3.0.0" imurmurhash "^0.1.4" @@ -6708,7 +6769,7 @@ eslint@7.14.0: js-yaml "^3.13.1" json-stable-stringify-without-jsonify "^1.0.1" levn "^0.4.1" - lodash "^4.17.19" + lodash.merge "^4.6.2" minimatch "^3.0.4" natural-compare "^1.4.0" optionator "^0.9.1" @@ -6717,11 +6778,11 @@ eslint@7.14.0: semver "^7.2.1" strip-ansi "^6.0.0" strip-json-comments "^3.1.0" - table "^5.2.3" + table "^6.0.9" text-table "^0.2.0" v8-compile-cache "^2.0.3" -espree@^7.3.0: +espree@^7.3.0, espree@^7.3.1: version "7.3.1" resolved "https://registry.yarnpkg.com/espree/-/espree-7.3.1.tgz#f2df330b752c6f55019f8bd89b7660039c1bbbb6" integrity sha512-v3JCNCE64umkFpmkFGqzVKsOT0tN1Zr+ueqLZfpV1Ob8e+CEgPWa+OxCoGH3tnhimMKIaBm4m/vaRpJ/krRz2g== @@ -6735,7 +6796,7 @@ esprima@^4.0.0, esprima@^4.0.1, esprima@~4.0.0: resolved "https://registry.yarnpkg.com/esprima/-/esprima-4.0.1.tgz#13b04cdb3e6c5d19df91ab6987a8695619b0aa71" integrity sha512-eGuFFw7Upda+g4p+QHvnW0RyTX/SVeJBDM/gCtMARO0cLuT2HcEKnTPvhjV6aGeqrCB/sbNop0Kszm0jsaWU4A== -esquery@^1.2.0: +esquery@^1.4.0: version "1.4.0" resolved "https://registry.yarnpkg.com/esquery/-/esquery-1.4.0.tgz#2148ffc38b82e8c7057dfed48425b3e61f0f24a5" integrity sha512-cCDispWt5vHHtwMY2YrAQ4ibFkAL8RbH5YGBnZBc90MolvvfkkQcJro/aZiAQUlQ3qgrYS6D6v8Gc5G5CQsc9w== @@ -7086,7 +7147,7 @@ fast-deep-equal@^2.0.1: resolved "https://registry.yarnpkg.com/fast-deep-equal/-/fast-deep-equal-2.0.1.tgz#7b05218ddf9667bf7f370bf7fdb2cb15fdd0aa49" integrity sha1-ewUhjd+WZ79/Nwv3/bLLFf3Qqkk= -fast-deep-equal@^3.1.1: +fast-deep-equal@^3.1.1, fast-deep-equal@^3.1.3: version "3.1.3" resolved "https://registry.yarnpkg.com/fast-deep-equal/-/fast-deep-equal-3.1.3.tgz#3a7d56b559d6cbc3eb512325244e619a65c6c525" integrity sha512-f3qQ9oQy9j2AhBe/H9VC91wLmKBCCU/gDOnKNAYG5hswO7BLKj09Hc5HYNz9cGI++xlpDCIgDaitVs03ATR84Q== @@ -7230,12 +7291,12 @@ figures@^3.0.0: dependencies: escape-string-regexp "^1.0.5" -file-entry-cache@^5.0.1: - version "5.0.1" - resolved "https://registry.yarnpkg.com/file-entry-cache/-/file-entry-cache-5.0.1.tgz#ca0f6efa6dd3d561333fb14515065c2fafdf439c" - integrity sha512-bCg29ictuBaKUwwArK4ouCaqDgLZcysCFLmM/Yn/FDoqndh/9vNuQfXRDvTuXKLxfD/JtZQGKFT8MGcJBK644g== +file-entry-cache@^6.0.1: + version "6.0.1" + resolved "https://registry.yarnpkg.com/file-entry-cache/-/file-entry-cache-6.0.1.tgz#211b2dd9659cb0394b073e7323ac3c933d522027" + integrity sha512-7Gps/XWymbLk2QLYK4NzpMOrYjMhdIxXuIvy2QBsLE6ljuodKvdkWs/cpyJJ3CVIVpH0Oi1Hvg1ovbMzLdFBBg== dependencies: - flat-cache "^2.0.1" + flat-cache "^3.0.4" file-loader@^4.2.0: version "4.3.0" @@ -7379,24 +7440,23 @@ find-yarn-workspace-root@^2.0.0: dependencies: micromatch "^4.0.2" -flat-cache@^2.0.1: - version "2.0.1" - resolved "https://registry.yarnpkg.com/flat-cache/-/flat-cache-2.0.1.tgz#5d296d6f04bda44a4630a301413bdbc2ec085ec0" - integrity sha512-LoQe6yDuUMDzQAEH8sgmh4Md6oZnc/7PjtwjNFSzveXqSHt6ka9fPBuso7IGf9Rz4uqnSnWiFH2B/zj24a5ReA== +flat-cache@^3.0.4: + version "3.0.4" + resolved "https://registry.yarnpkg.com/flat-cache/-/flat-cache-3.0.4.tgz#61b0338302b2fe9f957dcc32fc2a87f1c3048b11" + integrity sha512-dm9s5Pw7Jc0GvMYbshN6zchCA9RgQlzzEZX3vylR9IqFfS8XciblUXOKfW6SiuJ0e13eDYZoZV5wdrev7P3Nwg== dependencies: - flatted "^2.0.0" - rimraf "2.6.3" - write "1.0.3" + flatted "^3.1.0" + rimraf "^3.0.2" flat@^5.0.2: version "5.0.2" resolved "https://registry.yarnpkg.com/flat/-/flat-5.0.2.tgz#8ca6fe332069ffa9d324c327198c598259ceb241" integrity sha512-b6suED+5/3rTpUBdG1gupIl8MPFCAMA0QXwmljLhvCUKcUvdE4gWky9zpuGCcXHOsz4J9wPGNWq6OKpmIzz3hQ== -flatted@^2.0.0: - version "2.0.2" - resolved "https://registry.yarnpkg.com/flatted/-/flatted-2.0.2.tgz#4575b21e2bcee7434aa9be662f4b7b5f9c2b5138" - integrity sha512-r5wGx7YeOwNWNlCA0wQ86zKyDLMQr+/RB8xy74M4hTphfmjlijTSSXGuH8rnvKZnfT9i+75zmd8jcKdMR4O6jA== +flatted@^3.1.0: + version "3.2.2" + resolved "https://registry.yarnpkg.com/flatted/-/flatted-3.2.2.tgz#64bfed5cb68fe3ca78b3eb214ad97b63bedce561" + integrity sha512-JaTY/wtrcSyvXJl4IMFHPKyFur1sE9AUqc0QnhOaJ0CxHtAoIV8pYDzeEfAaNEtGkOfq4gr3LBFmdXW5mOQFnA== flow-parser@0.*: version "0.157.0" @@ -7737,7 +7797,7 @@ glob-parent@^3.1.0: is-glob "^3.1.0" path-dirname "^1.0.0" -glob-parent@^5.0.0, glob-parent@^5.1.2, glob-parent@~5.1.0, glob-parent@~5.1.2: +glob-parent@^5.1.2, glob-parent@~5.1.0, glob-parent@~5.1.2: version "5.1.2" resolved "https://registry.yarnpkg.com/glob-parent/-/glob-parent-5.1.2.tgz#869832c58034fe68a4093c17dc15e8340d8401c4" integrity sha512-AOIgSQCepiJYwP3ARnGx+5VnTu2HBYdzbGP45eLw1vr3zB3vZLeyed1sC9hnbcOc9/SrMyM5RPQrkGz4aS9Zow== @@ -7813,12 +7873,12 @@ globals@^11.1.0: resolved "https://registry.yarnpkg.com/globals/-/globals-11.12.0.tgz#ab8795338868a0babd8525758018c2a7eb95c42e" integrity sha512-WOBp/EEGUiIsJSp7wcv/y6MO+lV9UoncWqxuFfm8eBwzWNgyfBd6Gz+IeKQ9jCmyhoH99g15M3T+QaVHFjizVA== -globals@^12.1.0: - version "12.4.0" - resolved "https://registry.yarnpkg.com/globals/-/globals-12.4.0.tgz#a18813576a41b00a24a97e7f815918c2e19925f8" - integrity sha512-BWICuzzDvDoH54NHKCseDanAhE3CeDorgDL5MT6LMXXj2WCnd9UC2szdk4AWLfjdgNBCXLUanXYcpBBKOSWGwg== +globals@^13.6.0, globals@^13.9.0: + version "13.11.0" + resolved "https://registry.yarnpkg.com/globals/-/globals-13.11.0.tgz#40ef678da117fe7bd2e28f1fab24951bd0255be7" + integrity sha512-08/xrJ7wQjK9kkkRoI3OFUBbLx4f+6x3SGwcPvQ0QH6goFDrOU2oyAWrmh3dJezu65buo+HBMzAMQy6rovVC3g== dependencies: - type-fest "^0.8.1" + type-fest "^0.20.2" globalthis@^1.0.0: version "1.0.2" @@ -8523,6 +8583,13 @@ is-core-module@^2.2.0: dependencies: has "^1.0.3" +is-core-module@^2.6.0: + version "2.6.0" + resolved "https://registry.yarnpkg.com/is-core-module/-/is-core-module-2.6.0.tgz#d7553b2526fe59b92ba3e40c8df757ec8a709e19" + integrity sha512-wShG8vs60jKfPWpF2KZRaAtvt3a20OAn7+IJ6hLPECpSABLcKtFKTTI4ZtH5QcBruBHlq+WsdHWyz0BCZW7svQ== + dependencies: + has "^1.0.3" + is-data-descriptor@^0.1.4: version "0.1.4" resolved "https://registry.yarnpkg.com/is-data-descriptor/-/is-data-descriptor-0.1.4.tgz#0b5ee648388e2c860282e793f1856fec3f301b56" @@ -9988,6 +10055,11 @@ json-schema-traverse@^0.4.1: resolved "https://registry.yarnpkg.com/json-schema-traverse/-/json-schema-traverse-0.4.1.tgz#69f6a87d9513ab8bb8fe63bdb0979c448e684660" integrity sha512-xbbCH5dCYU5T8LcEhhuh7HJ88HXuW3qsI3Y0zOZFKfZEHcpWiHU/Jxzk629Brsab/mMiHQti9wMP+845RPe3Vg== +json-schema-traverse@^1.0.0: + version "1.0.0" + resolved "https://registry.yarnpkg.com/json-schema-traverse/-/json-schema-traverse-1.0.0.tgz#ae7bcb3656ab77a73ba5c49bf654f38e6b6860e2" + integrity sha512-NM8/P9n3XjXhIZn1lLhkFaACTOURQXjWhV4BA/RnOv8xvgqtqpAX9IO4mRQxSx1Rlo4tqzeqb0sOlruaOy3dug== + json-stable-stringify-without-jsonify@^1.0.1: version "1.0.1" resolved "https://registry.yarnpkg.com/json-stable-stringify-without-jsonify/-/json-stable-stringify-without-jsonify-1.0.1.tgz#9db7b59496ad3f3cfef30a75142d2d930ad72651" @@ -10289,6 +10361,11 @@ lodash.camelcase@^4.3.0: resolved "https://registry.yarnpkg.com/lodash.camelcase/-/lodash.camelcase-4.3.0.tgz#b28aa6288a2b9fc651035c7711f65ab6190331a6" integrity sha1-soqmKIorn8ZRA1x3EfZathkDMaY= +lodash.clonedeep@^4.5.0: + version "4.5.0" + resolved "https://registry.yarnpkg.com/lodash.clonedeep/-/lodash.clonedeep-4.5.0.tgz#e23f3f9c4f8fbdde872529c1071857a086e5ccef" + integrity sha1-4j8/nE+Pvd6HJSnBBxhXoIblzO8= + lodash.debounce@^4.0.8: version "4.0.8" resolved "https://registry.yarnpkg.com/lodash.debounce/-/lodash.debounce-4.0.8.tgz#82d79bff30a67c4005ffd5e2515300ad9ca4d7af" @@ -10324,6 +10401,11 @@ lodash.memoize@^4.1.2: resolved "https://registry.yarnpkg.com/lodash.memoize/-/lodash.memoize-4.1.2.tgz#bcc6c49a42a2840ed997f323eada5ecd182e0bfe" integrity sha1-vMbEmkKihA7Zl/Mj6tpezRguC/4= +lodash.merge@^4.6.2: + version "4.6.2" + resolved "https://registry.yarnpkg.com/lodash.merge/-/lodash.merge-4.6.2.tgz#558aa53b43b661e1925a0afdfa36a9a1085fe57a" + integrity sha512-0KpjqXRVvrYyCsX1swR/XTK0va6VQkQM6MNo7PqW77ByjAhoARA8EfrP1N4+KlKj8YS0ZUCtRT/YUuhyYDujIQ== + lodash.omit@^4.5.0: version "4.5.0" resolved "https://registry.yarnpkg.com/lodash.omit/-/lodash.omit-4.5.0.tgz#6eb19ae5a1ee1dd9df0b969e66ce0b7fa30b5e60" @@ -10354,6 +10436,11 @@ lodash.throttle@^4.1.1: resolved "https://registry.yarnpkg.com/lodash.throttle/-/lodash.throttle-4.1.1.tgz#c23e91b710242ac70c37f1e1cda9274cc39bf2f4" integrity sha1-wj6RtxAkKscMN/HhzaknTMOb8vQ= +lodash.truncate@^4.4.2: + version "4.4.2" + resolved "https://registry.yarnpkg.com/lodash.truncate/-/lodash.truncate-4.4.2.tgz#5a350da0b1113b837ecfffd5812cbe58d6eae193" + integrity sha1-WjUNoLERO4N+z//VgSy+WNbq4ZM= + lodash@4.17.21, lodash@^4.0.0, lodash@^4.17.11, lodash@^4.17.12, lodash@^4.17.14, lodash@^4.17.15, lodash@^4.17.19, lodash@^4.17.20, lodash@^4.17.21, lodash@^4.17.5, lodash@^4.5.0, lodash@^4.7.0: version "4.17.21" resolved "https://registry.yarnpkg.com/lodash/-/lodash-4.17.21.tgz#679591c564c3bffaae8454cf0b3df370c3d6911c" @@ -11457,7 +11544,7 @@ object.pick@^1.3.0: dependencies: isobject "^3.0.1" -object.values@^1.1.0, object.values@^1.1.1: +object.values@^1.1.0, object.values@^1.1.1, object.values@^1.1.4: version "1.1.4" resolved "https://registry.yarnpkg.com/object.values/-/object.values-1.1.4.tgz#0d273762833e816b693a637d30073e7051535b30" integrity sha512-TnGo7j4XSnKQoK3MfvkzqKCi0nVe/D9I9IjwTNYdb/fxYHpjrluHVOgw0AF6jrRFGMPHdfuidR09tIDiIvnaSg== @@ -11999,7 +12086,7 @@ pkg-dir@^4.1.0, pkg-dir@^4.2.0: dependencies: find-up "^4.0.0" -pkg-up@2.0.0: +pkg-up@2.0.0, pkg-up@^2.0.0: version "2.0.0" resolved "https://registry.yarnpkg.com/pkg-up/-/pkg-up-2.0.0.tgz#c819ac728059a461cab1c3889a2be3c49a004d7f" integrity sha1-yBmscoBZpGHKscOImivjxJoATX8= @@ -12151,6 +12238,11 @@ prepend-http@^2.0.0: resolved "https://registry.yarnpkg.com/prepend-http/-/prepend-http-2.0.0.tgz#e92434bfa5ea8c19f41cdfd401d741a3c819d897" integrity sha1-6SQ0v6XqjBn0HN/UAddBo8gZ2Jc= +prettier@^2.3.2: + version "2.3.2" + resolved "https://registry.yarnpkg.com/prettier/-/prettier-2.3.2.tgz#ef280a05ec253712e486233db5c6f23441e7342d" + integrity sha512-lnJzDfJ66zkMy58OL5/NY5zp70S7Nz6KqcKkXYzn2tMVrNxvbqaBpg7H3qHaLxCJ5lNMsGuM8+ohS7cZrthdLQ== + pretty-bytes@5.6.0: version "5.6.0" resolved "https://registry.yarnpkg.com/pretty-bytes/-/pretty-bytes-5.6.0.tgz#356256f643804773c82f64723fe78c92c62beaeb" @@ -13155,6 +13247,14 @@ read-pkg-up@^2.0.0: find-up "^2.0.0" read-pkg "^2.0.0" +read-pkg-up@^3.0.0: + version "3.0.0" + resolved "https://registry.yarnpkg.com/read-pkg-up/-/read-pkg-up-3.0.0.tgz#3ed496685dba0f8fe118d0691dc51f4a1ff96f07" + integrity sha1-PtSWaF26D4/hGNBpHcUfSh/5bwc= + dependencies: + find-up "^2.0.0" + read-pkg "^3.0.0" + read-pkg-up@^4.0.0: version "4.0.0" resolved "https://registry.yarnpkg.com/read-pkg-up/-/read-pkg-up-4.0.0.tgz#1b221c6088ba7799601c808f91161c66e58f8978" @@ -13429,6 +13529,11 @@ require-directory@^2.1.1: resolved "https://registry.yarnpkg.com/require-directory/-/require-directory-2.1.1.tgz#8c64ad5fd30dab1c976e2344ffe7f792a6a6df42" integrity sha1-jGStX9MNqxyXbiNE/+f3kqam30I= +require-from-string@^2.0.2: + version "2.0.2" + resolved "https://registry.yarnpkg.com/require-from-string/-/require-from-string-2.0.2.tgz#89a7fdd938261267318eafe14f9c32e598c36909" + integrity sha512-Xf0nWe6RseziFMu+Ap9biiUbmplq6S9/p+7w7YXP/JBHhrUDDUhwa+vANyubuqfZWTveU//DYVGsDG7RKL/vEw== + require-main-filename@^2.0.0: version "2.0.0" resolved "https://registry.yarnpkg.com/require-main-filename/-/require-main-filename-2.0.0.tgz#d0b329ecc7cc0f61649f62215be69af54aa8989b" @@ -13520,13 +13625,6 @@ reusify@^1.0.4: resolved "https://registry.yarnpkg.com/reusify/-/reusify-1.0.4.tgz#90da382b1e126efc02146e90845a88db12925d76" integrity sha512-U9nH88a3fc/ekCF1l0/UP1IosiuIjyTh7hBvXVMHYgVcfGvt897Xguj2UOLDeI5BG2m7/uwyaLVT6fbtCwTyzw== -rimraf@2.6.3, rimraf@~2.6.2: - version "2.6.3" - resolved "https://registry.yarnpkg.com/rimraf/-/rimraf-2.6.3.tgz#b2d104fe0d8fb27cf9e0a1cda8262dd3833c6cab" - integrity sha512-mwqeW5XsA2qAejG46gYdENaxXjx9onRNCfn7L0duuP4hCuTIi/QO7PDK07KJfp1d+izWPrzEJDcSqBa0OZQriA== - dependencies: - glob "^7.1.3" - rimraf@^2.2.8, rimraf@^2.5.4, rimraf@^2.6.3, rimraf@^2.7.1: version "2.7.1" resolved "https://registry.yarnpkg.com/rimraf/-/rimraf-2.7.1.tgz#35797f13a7fdadc566142c29d4f07ccad483e3ec" @@ -13534,7 +13632,7 @@ rimraf@^2.2.8, rimraf@^2.5.4, rimraf@^2.6.3, rimraf@^2.7.1: dependencies: glob "^7.1.3" -rimraf@^3.0.0: +rimraf@^3.0.0, rimraf@^3.0.2: version "3.0.2" resolved "https://registry.yarnpkg.com/rimraf/-/rimraf-3.0.2.tgz#f1a5402ba6220ad52cc1282bac1ae3aa49fd061a" integrity sha512-JZkJMZkAGFFPP2YqXZXPbMlMBgsxzE8ILs4lMIX/2o0L9UBw9O/Y3o6wFw/i9YLapcUJWwqbi3kdxIPdC62TIA== @@ -13553,6 +13651,13 @@ rimraf@~2.4.0: dependencies: glob "^6.0.1" +rimraf@~2.6.2: + version "2.6.3" + resolved "https://registry.yarnpkg.com/rimraf/-/rimraf-2.6.3.tgz#b2d104fe0d8fb27cf9e0a1cda8262dd3833c6cab" + integrity sha512-mwqeW5XsA2qAejG46gYdENaxXjx9onRNCfn7L0duuP4hCuTIi/QO7PDK07KJfp1d+izWPrzEJDcSqBa0OZQriA== + dependencies: + glob "^7.1.3" + ripemd160@^2.0.0, ripemd160@^2.0.1: version "2.0.2" resolved "https://registry.yarnpkg.com/ripemd160/-/ripemd160-2.0.2.tgz#a1c1a6f624751577ba5d07914cbc92850585890c" @@ -13999,7 +14104,7 @@ slash@^3.0.0: resolved "https://registry.yarnpkg.com/slash/-/slash-3.0.0.tgz#6539be870c165adbd5240220dbe361f1bc4d4634" integrity sha512-g9Q1haeby36OSStwb4ntCGGGaKsaVSjQ68fBxoQcutl5fS1vuY18H3wSt3jFyFtrkx+Kz0V1G85A4MyAdDMi2Q== -slice-ansi@^2.0.0, slice-ansi@^2.1.0: +slice-ansi@^2.0.0: version "2.1.0" resolved "https://registry.yarnpkg.com/slice-ansi/-/slice-ansi-2.1.0.tgz#cacd7693461a637a5788d92a7dd4fba068e81636" integrity sha512-Qu+VC3EwYLldKa1fCxuuvULvSJOKEgk9pi8dZeCVK7TqBfUNTH4sFkk4joj8afVSfAYgJoSOetjx9QWOJ5mYoQ== @@ -14593,15 +14698,17 @@ table-layout@^1.0.1: typical "^5.2.0" wordwrapjs "^4.0.0" -table@^5.2.3: - version "5.4.6" - resolved "https://registry.yarnpkg.com/table/-/table-5.4.6.tgz#1292d19500ce3f86053b05f0e8e7e4a3bb21079e" - integrity sha512-wmEc8m4fjnob4gt5riFRtTu/6+4rSe12TpAELNSqHMfF3IqnA+CH37USM6/YR3qRZv7e56kAEAtd6nKZaxe0Ug== +table@^6.0.9: + version "6.7.1" + resolved "https://registry.yarnpkg.com/table/-/table-6.7.1.tgz#ee05592b7143831a8c94f3cee6aae4c1ccef33e2" + integrity sha512-ZGum47Yi6KOOFDE8m223td53ath2enHcYLgOCjGr5ngu8bdIARQk6mN/wRMv4yMRcHnCSnHbCEha4sobQx5yWg== dependencies: - ajv "^6.10.2" - lodash "^4.17.14" - slice-ansi "^2.1.0" - string-width "^3.0.0" + ajv "^8.0.1" + lodash.clonedeep "^4.5.0" + lodash.truncate "^4.4.2" + slice-ansi "^4.0.0" + string-width "^4.2.0" + strip-ansi "^6.0.0" tail@^2.0.0: version "2.2.3" @@ -14921,7 +15028,7 @@ ts-pnp@^1.1.2: resolved "https://registry.yarnpkg.com/ts-pnp/-/ts-pnp-1.2.0.tgz#a500ad084b0798f1c3071af391e65912c86bca92" integrity sha512-csd+vJOb/gkzvcCHgTGSChYpy5f1/XKNsmvBGO4JXS+z1v2HobugDz4s1IeFXM3wZB44uczs+eazB5Q/ccdhQw== -tsconfig-paths@^3.9.0: +tsconfig-paths@^3.10.1, tsconfig-paths@^3.9.0: version "3.10.1" resolved "https://registry.yarnpkg.com/tsconfig-paths/-/tsconfig-paths-3.10.1.tgz#79ae67a68c15289fdf5c51cb74f397522d795ed7" integrity sha512-rETidPDgCpltxF7MjBZlAFPUHv5aHH2MymyPvh+vEyWAED4Eb/WeMbsnD/JDr4OKPOA1TssDHgIcpTN5Kh0p6Q== @@ -15781,13 +15888,6 @@ write-file-atomic@^3.0.0: signal-exit "^3.0.2" typedarray-to-buffer "^3.1.5" -write@1.0.3: - version "1.0.3" - resolved "https://registry.yarnpkg.com/write/-/write-1.0.3.tgz#0800e14523b923a387e415123c865616aae0f5c3" - integrity sha512-/lg70HAjtkUgWPVZhZcm+T4hkL8Zbtp1nFNOn3lRrxnlv50SRBv7cR7RqR+GMsd3hUXy9hWBo4CHTbFTcOYwig== - dependencies: - mkdirp "^0.5.1" - ws@^1.1.0, ws@^1.1.5: version "1.1.5" resolved "https://registry.yarnpkg.com/ws/-/ws-1.1.5.tgz#cbd9e6e75e09fc5d2c90015f21f0c40875e0dd51" From 7d4af7cf0fa4182feb9963e42dffc8a61e29cd15 Mon Sep 17 00:00:00 2001 From: AlexAlexandre <alexalexandrejr@gmail.com> Date: Mon, 23 Aug 2021 12:23:55 -0300 Subject: [PATCH 67/90] [improve] - run lint --fix --- app/containers/UIKit/MultiSelect/index.tsx | 2 +- app/views/LivechatEditView.js | 6 +++--- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/app/containers/UIKit/MultiSelect/index.tsx b/app/containers/UIKit/MultiSelect/index.tsx index cd07fc9bcf..d3d888b9ba 100644 --- a/app/containers/UIKit/MultiSelect/index.tsx +++ b/app/containers/UIKit/MultiSelect/index.tsx @@ -174,7 +174,7 @@ export const MultiSelect = React.memo(({ inputStyle={inputStyle} > {/* @ts-ignore*/} - {items.length ? <Chips items={items} onSelect={item => (disabled ? {} : onSelect(item))} theme={theme} /> : <Text style={[styles.pickerText, { color: themes[theme].auxiliaryText }]}>{placeholder.text}</Text>} + {items.length ? <Chips items={items} onSelect={(item) => (disabled ? {} : onSelect(item))} theme={theme} /> : <Text style={[styles.pickerText, { color: themes[theme].auxiliaryText }]}>{placeholder.text}</Text>} </Input> ); } diff --git a/app/views/LivechatEditView.js b/app/views/LivechatEditView.js index 13c1b0d268..5874337ad7 100644 --- a/app/views/LivechatEditView.js +++ b/app/views/LivechatEditView.js @@ -11,7 +11,6 @@ import KeyboardView from '../presentation/KeyboardView'; import RocketChat from '../lib/rocketchat'; import I18n from '../i18n'; -import sharedStyles from './Styles'; import { LISTENER } from '../containers/Toast'; import EventEmitter from '../utils/events'; import scrollPersistTaps from '../utils/scrollPersistTaps'; @@ -19,6 +18,7 @@ import { getUserSelector } from '../selectors/login'; import Button from '../containers/Button'; import SafeAreaView from '../containers/SafeAreaView'; import { MultiSelect } from '../containers/UIKit/MultiSelect'; +import sharedStyles from './Styles'; const styles = StyleSheet.create({ container: { @@ -296,9 +296,9 @@ LivechatEditView.propTypes = { editOmnichannelContact: PropTypes.array, editLivechatRoomCustomfields: PropTypes.array }; -LivechatEditView.navigationOptions = ({ +LivechatEditView.navigationOptions = { title: I18n.t('Edit') -}); +}; const mapStateToProps = state => ({ server: state.server.server, From 009a9ac6eb9c8585f03bfad2196c64837fc978ed Mon Sep 17 00:00:00 2001 From: AlexAlexandre <alexalexandrejr@gmail.com> Date: Tue, 31 Aug 2021 19:06:03 -0300 Subject: [PATCH 68/90] [improve] - run lint in the new things and update some interfaces --- app/containers/message/Attachments.tsx | 19 +++++-------------- app/containers/message/Reply.tsx | 10 +++++----- app/containers/message/index.tsx | 5 +++-- app/containers/message/interfaces.ts | 8 ++++++++ 4 files changed, 21 insertions(+), 21 deletions(-) diff --git a/app/containers/message/Attachments.tsx b/app/containers/message/Attachments.tsx index 91ef404446..f77e493864 100644 --- a/app/containers/message/Attachments.tsx +++ b/app/containers/message/Attachments.tsx @@ -1,9 +1,8 @@ import React, { useContext } from 'react'; import { dequal } from 'dequal'; -import PropTypes from 'prop-types'; import { Text } from 'react-native'; -import { IMessageAttachments } from './interfaces'; +import { IMessageAttachments, IMessageAttachedActions } from './interfaces'; import Image from './Image'; import Audio from './Audio'; import Video from './Video'; @@ -13,16 +12,15 @@ import styles from './styles'; import MessageContext from './Context'; const AttachedActions = ({ - attachment, theme -}) => { + attachment, theme, +}: IMessageAttachedActions) => { const { onAnswerButtonPress } = useContext(MessageContext); - const attachedButtons = attachment.actions.map((element) => { + const attachedButtons = attachment.actions.map((element: {type: string; msg: string; text: string}) => { if (element.type === 'button') { return <Button theme={theme} onPress={() => onAnswerButtonPress(element.msg)} title={element.text} />; - } else { - return null; } + return null; }); return ( <> @@ -59,12 +57,5 @@ const Attachments = React.memo(({ }, (prevProps, nextProps) => dequal(prevProps.attachments, nextProps.attachments) && prevProps.theme === nextProps.theme); Attachments.displayName = 'MessageAttachments'; -AttachedActions.propTypes = { - attachment: PropTypes.shape({ - actions: PropTypes.array, - text: PropTypes.string - }), - theme: PropTypes.string -}; export default Attachments; diff --git a/app/containers/message/Reply.tsx b/app/containers/message/Reply.tsx index 45b2309d87..d1d5565558 100644 --- a/app/containers/message/Reply.tsx +++ b/app/containers/message/Reply.tsx @@ -68,19 +68,18 @@ const styles = StyleSheet.create({ marginBottom: 4, }, image: { - width: null, height: 200, flex: 1, borderTopLeftRadius: 4, borderTopRightRadius: 4, - marginBottom: 1 + marginBottom: 1, }, title: { flex: 1, fontSize: 16, marginBottom: 3, - ...sharedStyles.textMedium - } + ...sharedStyles.textMedium, + }, }); interface IMessageReplyAttachment { @@ -97,6 +96,7 @@ interface IMessageReplyAttachment { color: string; description: string; fields: IMessageReplyAttachment[]; + thumb_url: string; } interface IMessageTitle { @@ -165,7 +165,7 @@ const Description = React.memo(({ attachment, getCustomEmoji, theme }: IMessageD return true; }); -const UrlImage = React.memo(({ image }) => { +const UrlImage = React.memo(({ image }: any) => { if (!image) { return null; } diff --git a/app/containers/message/index.tsx b/app/containers/message/index.tsx index 385b3d6b6f..5c0a0be771 100644 --- a/app/containers/message/index.tsx +++ b/app/containers/message/index.tsx @@ -55,6 +55,7 @@ interface IMessageContainerProps { navToRoomInfo: Function; callJitsi: Function; blockAction: Function; + onAnswerButtonPress: Function; theme: string; threadBadgeColor: string; toggleFollowThread: Function; @@ -199,7 +200,7 @@ class MessageContainer extends React.Component<IMessageContainerProps, any> { } } - onAnswerButtonPress = (msg) => { + onAnswerButtonPress = (msg: string) => { const { onAnswerButtonPress } = this.props; if (onAnswerButtonPress) { onAnswerButtonPress(msg, undefined, false); @@ -385,7 +386,6 @@ class MessageContainer extends React.Component<IMessageContainerProps, any> { replies, }} > - {/* @ts-ignore*/} <Message id={id} msg={message} @@ -398,6 +398,7 @@ class MessageContainer extends React.Component<IMessageContainerProps, any> { urls={urls} reactions={reactions} alias={alias} + /* @ts-ignore*/ avatar={avatar} emoji={emoji} timeFormat={timeFormat} diff --git a/app/containers/message/interfaces.ts b/app/containers/message/interfaces.ts index ac63de5ea9..ca6a39d010 100644 --- a/app/containers/message/interfaces.ts +++ b/app/containers/message/interfaces.ts @@ -6,6 +6,14 @@ export interface IMessageAttachments { theme: string; } +export interface IMessageAttachedActions { + attachment: { + actions: [], + text: string, + }, + theme: string, +} + export interface IMessageAvatar { isHeader: boolean; avatar: string; From d97cfe613a27d12cb03c2fbcf0694a476197bcde Mon Sep 17 00:00:00 2001 From: AlexAlexandre <alexalexandrejr@gmail.com> Date: Mon, 6 Sep 2021 17:16:11 -0300 Subject: [PATCH 69/90] [improve] - setting prettier to work with eslint --- .eslintrc.js | 433 +++++++++++++++++++++++------------------------- .prettierignore | 22 +++ .prettierrc.js | 13 +- package.json | 3 + 4 files changed, 238 insertions(+), 233 deletions(-) create mode 100644 .prettierignore diff --git a/.eslintrc.js b/.eslintrc.js index f253f3cf29..8edbeaf5db 100644 --- a/.eslintrc.js +++ b/.eslintrc.js @@ -1,168 +1,156 @@ module.exports = { - "settings": { - "import/resolver": { - "node": { - "extensions": [".js", ".ios.js", ".android.js", ".native.js", ".ts", ".tsx"], - } - } - }, - "parser": "@babel/eslint-parser", - "extends": [ - "@rocket.chat/eslint-config", - ], - "parserOptions": { - "sourceType": "module", - "ecmaVersion": 2017, - "ecmaFeatures": { - "experimentalObjectRestSpread" : true, - "jsx": true, - "legacyDecorators": true + settings: { + 'import/resolver': { + node: { + extensions: ['.js', '.ios.js', '.android.js', '.native.js', '.ts', '.tsx'] + } + } + }, + parser: '@babel/eslint-parser', + extends: ['@rocket.chat/eslint-config', 'prettier'], + parserOptions: { + sourceType: 'module', + ecmaVersion: 2017, + ecmaFeatures: { + experimentalObjectRestSpread: true, + jsx: true, + legacyDecorators: true } }, - "plugins": [ - "react", - "jsx-a11y", - "import", - "react-native", - "@babel" - ], - "env": { - "browser": true, - "commonjs": true, - "es6": true, - "node": true, - "jquery": true, - "mocha": true + plugins: ['react', 'jsx-a11y', 'import', 'react-native', '@babel'], + env: { + browser: true, + commonjs: true, + es6: true, + node: true, + jquery: true, + mocha: true }, - "rules": { - "import/extensions": [ - "error", - "ignorePackages", + rules: { + 'import/extensions': [ + 'error', + 'ignorePackages', { - "js": "warning", - "jsx": "warning", - "ts": "warning", - "tsx": "warning" + js: 'warning', + jsx: 'warning', + ts: 'warning', + tsx: 'warning' } ], - "react/jsx-filename-extension": [1, { - "extensions": [".js", ".jsx", ".ts", ".tsx"] - }], - "react/require-default-props": [0], - "ordered-imports": [0], - // "react/no-unused-prop-types": [2, { - // "skipShapeProps": true - // }], - "react/no-did-mount-set-state": 0, - "react/no-multi-comp": [0], - "react/jsx-indent": [2, "tab"], - "react/jsx-indent-props": [2, "tab"], - // "react/forbid-prop-types": 0, - "jsx-quotes": [2, "prefer-single"], - "jsx-a11y/href-no-hash": 0, - "jsx-a11y/aria-role": 0, - "import/prefer-default-export": 0, - "import/no-cycle": 0, - "import/order":[ - "error", + 'react/jsx-filename-extension': [ + 1, { - "newlines-between": "ignore", + extensions: ['.js', '.jsx', '.ts', '.tsx'] } ], - "camelcase": 0, - "no-underscore-dangle": 0, - "no-return-assign": 0, - "no-param-reassign": 0, - "no-tabs": 0, - "no-multi-spaces": 2, - "no-eval": 2, - "no-extend-native": 2, - "no-multi-str": 2, - "no-use-before-define": 2, - "no-const-assign": 2, - "no-cond-assign": 2, - "no-constant-condition": 2, - "no-control-regex": 2, - "no-debugger": 2, - "no-delete-var": 2, - "no-dupe-keys": 2, - "no-dupe-args": 2, - "no-dupe-class-members": 2, - "no-duplicate-case": 2, - "no-else-return": [0, {allowElseIf: true}], - "no-empty": 2, - "no-empty-character-class": 2, - "no-ex-assign": 2, - "no-extra-boolean-cast": 2, - "no-extra-semi": 2, - "no-fallthrough": 2, - "no-func-assign": 2, - "no-inner-declarations": [2, "functions"], - "no-invalid-regexp": 2, - "no-irregular-whitespace": 2, - "no-mixed-spaces-and-tabs": 2, - "no-sparse-arrays": 2, - "no-negated-in-lhs": 2, - "no-obj-calls": 2, - "no-octal": 2, - "no-redeclare": 2, - "no-regex-spaces": 2, - "no-undef": 2, - "no-unreachable": 2, - "no-unused-expressions": 0, - "no-unused-vars": "off", - "max-len": 0, - "react/jsx-uses-vars": 2, - "no-void": 2, - "no-var": 2, - "one-var": [2, "never"], - "no-lonely-if": 2, - "no-trailing-spaces": 2, - "complexity": [1, 31], - "space-in-parens": [2, "never"], - "space-before-function-paren": [2, "never"], - "space-before-blocks": [2, "always"], - "indent": [2, "tab", {"SwitchCase": 1}], - "eol-last": [2, "always"], - "comma-dangle": [2, "never"], - "keyword-spacing": 2, - "block-spacing": 2, - "brace-style": [2, "1tbs", { "allowSingleLine": true }], - "computed-property-spacing": 2, - "comma-spacing": 2, - "comma-style": 2, - "guard-for-in": 2, - "wrap-iife": 2, - "block-scoped-var": 2, - "curly": [2, "all"], - "eqeqeq": [2, "allow-null"], - "new-cap": "off", - "use-isnan": 2, - "valid-typeof": 2, - "linebreak-style": 0, - "prefer-template": 2, - "template-curly-spacing": [2, "always"], - "quotes": [2, "single"], - "semi": [2, "always"], - "prefer-const": 2, - "object-shorthand": 2, - "consistent-return": 0, - "global-require": "off", - "react-native/no-unused-styles": 2, - "react/jsx-one-expression-per-line": 0, - "require-await": 2, - "func-names": 0, - "react/static-property-placement": [0], - "arrow-parens": ["error", "as-needed", { requireForBlockBody: true }], - "react/jsx-curly-newline": [0], - "react/state-in-constructor": [0], - "no-async-promise-executor": [0], - "max-classes-per-file": [0], - "no-multiple-empty-lines": [0], - "no-sequences": "off", + 'react/require-default-props': [0], + 'ordered-imports': [0], + 'react/no-did-mount-set-state': 0, + 'react/no-multi-comp': [0], + 'react/jsx-indent-props': [2, 'tab'], + 'jsx-quotes': [2, 'prefer-single'], + 'jsx-a11y/href-no-hash': 0, + 'jsx-a11y/aria-role': 0, + 'import/prefer-default-export': 0, + 'import/no-cycle': 0, + 'import/order': [ + 'error', + { + 'newlines-between': 'ignore' + } + ], + camelcase: 0, + 'no-underscore-dangle': 0, + 'no-return-assign': 0, + 'no-param-reassign': 0, + 'no-tabs': 0, + 'no-multi-spaces': 2, + 'no-eval': 2, + 'no-extend-native': 2, + 'no-multi-str': 2, + 'no-use-before-define': 2, + 'no-const-assign': 2, + 'no-cond-assign': 2, + 'no-constant-condition': 2, + 'no-control-regex': 2, + 'no-debugger': 2, + 'no-delete-var': 2, + 'no-dupe-keys': 2, + 'no-dupe-args': 2, + 'no-dupe-class-members': 2, + 'no-duplicate-case': 2, + 'no-else-return': [0, { allowElseIf: true }], + 'no-empty': 2, + 'no-empty-character-class': 2, + 'no-ex-assign': 2, + 'no-extra-boolean-cast': 2, + 'no-extra-semi': 2, + 'no-fallthrough': 2, + 'no-func-assign': 2, + 'no-inner-declarations': [2, 'functions'], + 'no-invalid-regexp': 2, + 'no-irregular-whitespace': 2, + 'no-mixed-spaces-and-tabs': 1, + 'no-sparse-arrays': 2, + 'no-negated-in-lhs': 2, + 'no-obj-calls': 2, + 'no-octal': 2, + 'no-redeclare': 2, + 'no-regex-spaces': 2, + 'no-undef': 2, + 'no-unreachable': 2, + 'no-unused-expressions': 0, + 'no-unused-vars': 'off', + 'max-len': 0, + 'react/jsx-uses-vars': 2, + 'no-void': 2, + 'no-var': 2, + 'one-var': [2, 'never'], + 'no-lonely-if': 2, + 'no-trailing-spaces': 2, + complexity: [1, 31], + 'space-in-parens': [2, 'never'], + 'space-before-blocks': [2, 'always'], + indent: 'off', + 'eol-last': [2, 'always'], + 'comma-dangle': [2, 'never'], + 'keyword-spacing': 2, + 'block-spacing': 2, + 'brace-style': [2, '1tbs', { allowSingleLine: true }], + 'computed-property-spacing': 2, + 'comma-spacing': 2, + 'comma-style': 2, + 'guard-for-in': 2, + 'wrap-iife': 2, + 'block-scoped-var': 2, + curly: [2, 'all'], + eqeqeq: [2, 'allow-null'], + 'new-cap': 'off', + 'use-isnan': 2, + 'valid-typeof': 2, + 'linebreak-style': 0, + 'prefer-template': 2, + quotes: [1, 'single'], + semi: [2, 'always'], + 'prefer-const': 2, + 'object-shorthand': 2, + 'consistent-return': 0, + 'global-require': 'off', + 'react-native/no-unused-styles': 2, + 'react/jsx-one-expression-per-line': 0, + 'require-await': 2, + 'func-names': 0, + 'react/static-property-placement': [0], + 'arrow-parens': ['warn', 'as-needed', { requireForBlockBody: true }], + 'react/jsx-curly-newline': [0], + 'react/state-in-constructor': [0], + 'no-async-promise-executor': [0], + 'max-classes-per-file': [0], + 'no-multiple-empty-lines': [0], + 'no-sequences': 'off' }, - "globals": { - "__DEV__": true + globals: { + __DEV__: true }, overrides: [ { @@ -182,93 +170,82 @@ module.exports = { } }, { - "files": [ - "**/*.ts", - "**/*.tsx" - ], - "extends": [ - "plugin:@typescript-eslint/recommended", - "plugin:@typescript-eslint/eslint-recommended", - "@rocket.chat/eslint-config" + files: ['**/*.ts', '**/*.tsx'], + extends: [ + 'plugin:@typescript-eslint/recommended', + 'plugin:@typescript-eslint/eslint-recommended', + '@rocket.chat/eslint-config', + 'prettier' ], - "parser": "@typescript-eslint/parser", - "parserOptions": { - "sourceType": "module", - "ecmaVersion": 2018, - "warnOnUnsupportedTypeScriptVersion": false, - "ecmaFeatures": { - "experimentalObjectRestSpread": true, - "legacyDecorators": true + parser: '@typescript-eslint/parser', + parserOptions: { + sourceType: 'module', + ecmaVersion: 2018, + warnOnUnsupportedTypeScriptVersion: false, + ecmaFeatures: { + experimentalObjectRestSpread: true, + legacyDecorators: true } }, - "plugins": [ - "react", - "@typescript-eslint" - ], - "rules": { - "@typescript-eslint/no-var-requires": "off", - "@typescript-eslint/no-empty-function": [0], - "@typescript-eslint/ban-types": [0], - "func-call-spacing": "off", - "jsx-quotes": [ - "error", - "prefer-single" - ], - "indent": "off", - "no-return-assign": 0, - "no-dupe-class-members": "off", - "no-extra-parens": "off", - "no-spaced-func": "off", - "no-unused-vars": "off", - "no-useless-constructor": "off", - "no-use-before-define": "off", - "react/jsx-uses-react": "error", - "react/jsx-uses-vars": "error", - "react/jsx-no-undef": "error", - "react/jsx-fragments": [ - "error", - "syntax" + plugins: ['react', '@typescript-eslint'], + rules: { + '@typescript-eslint/no-var-requires': 'off', + '@typescript-eslint/no-empty-function': [0], + '@typescript-eslint/ban-types': [0], + 'func-call-spacing': 'off', + 'jsx-quotes': ['error', 'prefer-single'], + indent: 'off', + 'comma-dangle': [2, 'never'], + 'no-return-assign': 0, + 'no-dupe-class-members': 'off', + 'no-extra-parens': 'off', + 'no-spaced-func': 'off', + 'no-unused-vars': 'off', + 'no-useless-constructor': 'off', + 'no-use-before-define': 'off', + 'react/jsx-uses-react': 'error', + 'react/jsx-uses-vars': 'error', + 'react/jsx-no-undef': 'error', + 'react/jsx-fragments': ['error', 'syntax'], + '@typescript-eslint/ban-ts-comment': 'off', + '@typescript-eslint/indent': [ + 'warn', + 'tab', + { + SwitchCase: 1 + } ], - "@typescript-eslint/ban-ts-comment": "off", - "@typescript-eslint/indent": [ - "error", - "tab", + '@typescript-eslint/no-extra-parens': [ + 'warn', + 'all', { - "SwitchCase": 1 + conditionalAssign: true, + nestedBinaryExpressions: false, + returnAssign: true, + ignoreJSX: 'all', + enforceForArrowConditionals: false } ], - "@typescript-eslint/no-extra-parens": [ - "error", - "all", + '@typescript-eslint/no-dupe-class-members': 'error', + '@typescript-eslint/no-explicit-any': 'off', + '@typescript-eslint/no-unused-vars': [ + 'error', { - "conditionalAssign": true, - "nestedBinaryExpressions": false, - "returnAssign": true, - "ignoreJSX": "all", - "enforceForArrowConditionals": false + argsIgnorePattern: '^_', + ignoreRestSiblings: true } ], - "@typescript-eslint/no-dupe-class-members": "error", - "@typescript-eslint/no-explicit-any": "off", - "@typescript-eslint/no-unused-vars": ["error", { - "argsIgnorePattern": "^_", - "ignoreRestSiblings": true - }], - "new-cap": "off", + 'new-cap': 'off' }, - "globals": { - "JSX": true, + globals: { + JSX: true }, - "settings": { - "import/resolver": { - "node": { - "extensions": [ - ".js", - ".ts", - ".tsx" - ] + settings: { + 'import/resolver': { + node: { + extensions: ['.js', '.ts', '.tsx'] } - }, + } } } ] diff --git a/.prettierignore b/.prettierignore new file mode 100644 index 0000000000..a47128e092 --- /dev/null +++ b/.prettierignore @@ -0,0 +1,22 @@ +.circleci/ +.github/ +.husky +build/ +node_modules/ +coverage/ +e2e/docker/ +artifacts/ +android/ +ios/ +patches/ +scripts/ + +.bettercodehub.yml +.buckconfig +.gitattributes +.gitignore +.snyk +.watchmanconfig +npm-debug.log +yarn-error.log + diff --git a/.prettierrc.js b/.prettierrc.js index d09b65576c..7321592a12 100644 --- a/.prettierrc.js +++ b/.prettierrc.js @@ -1,7 +1,10 @@ module.exports = { - bracketSpacing: false, - jsxBracketSameLine: true, - singleQuote: true, - trailingComma: 'all', - printWidth: 130, + bracketSpacing: true, + jsxBracketSameLine: true, + singleQuote: true, + jsxSingleQuote: true, + trailingComma: 'none', + printWidth: 130, + useTabs: true, + arrowParens: 'avoid' }; diff --git a/package.json b/package.json index 526ffd7781..637df0cdf9 100644 --- a/package.json +++ b/package.json @@ -7,6 +7,8 @@ "test": "jest", "test-update": "jest --updateSnapshot", "lint": "eslint .", + "prettier": "prettier --write .", + "prettier-lint": "yarn lint --fix && prettier --write .", "ci": "npm run precommit && codecov", "ios": "npx react-native run-ios", "android": "npx react-native run-android --variant=experimentalPlayDebug", @@ -157,6 +159,7 @@ "codecov": "3.8.2", "detox": "18.17.0", "eslint": "^7.31.0", + "eslint-config-prettier": "^8.3.0", "eslint-plugin-import": "2.22.0", "eslint-plugin-jsx-a11y": "6.3.1", "eslint-plugin-react": "7.20.3", From 392e1ab4ae63031217bb3d6a7296a9d3d47d9fe4 Mon Sep 17 00:00:00 2001 From: AlexAlexandre <alexalexandrejr@gmail.com> Date: Mon, 6 Sep 2021 17:40:14 -0300 Subject: [PATCH 70/90] [improve] - running prettier and eslint at the project --- .prettierignore | 3 + app.json | 8 +- app/AppContainer.tsx | 49 +- app/ReactotronConfig.js | 25 +- app/actions/actionsTypes.js | 36 +- app/actions/inviteLinks.js | 1 - app/actions/rooms.js | 1 - app/commands.js | 7 +- app/constants/colors.ts | 14 +- app/constants/links.ts | 8 +- app/constants/messagesStatus.ts | 2 +- app/constants/settings.ts | 138 +- app/containers/ActionSheet/ActionSheet.tsx | 321 +- app/containers/ActionSheet/Handle.tsx | 2 +- app/containers/ActionSheet/Item.tsx | 14 +- app/containers/ActionSheet/Provider.tsx | 15 +- app/containers/ActionSheet/styles.ts | 28 +- app/containers/ActivityIndicator.tsx | 14 +- app/containers/AppVersion.tsx | 15 +- app/containers/Avatar/Avatar.tsx | 155 +- app/containers/Avatar/index.tsx | 20 +- app/containers/Avatar/interfaces.ts | 2 +- .../BackgroundContainer/index.stories.js | 36 +- app/containers/BackgroundContainer/index.tsx | 10 +- app/containers/Button/index.tsx | 56 +- app/containers/Check.tsx | 8 +- app/containers/EmojiPicker/CustomEmoji.tsx | 31 +- app/containers/EmojiPicker/EmojiCategory.tsx | 19 +- app/containers/EmojiPicker/TabBar.tsx | 17 +- app/containers/EmojiPicker/categories.ts | 22 +- app/containers/EmojiPicker/index.tsx | 50 +- app/containers/EmojiPicker/interfaces.ts | 6 +- app/containers/EmojiPicker/styles.ts | 22 +- app/containers/FormContainer.tsx | 16 +- app/containers/Header/index.tsx | 6 +- app/containers/HeaderButton/Common.tsx | 21 +- .../HeaderButton/HeaderButtonContainer.tsx | 12 +- .../HeaderButton/HeaderButtonItem.tsx | 27 +- .../HeaderButton/HeaderButtonItemBadge.tsx | 12 +- .../InAppNotification/NotifierComponent.tsx | 62 +- app/containers/InAppNotification/index.tsx | 61 +- app/containers/List/ListContainer.tsx | 7 +- app/containers/List/ListHeader.tsx | 10 +- app/containers/List/ListIcon.tsx | 11 +- app/containers/List/ListInfo.tsx | 6 +- app/containers/List/ListItem.tsx | 88 +- app/containers/List/ListSection.tsx | 4 +- app/containers/List/ListSeparator.tsx | 12 +- app/containers/List/styles.ts | 4 +- app/containers/Loading.tsx | 91 +- app/containers/LoginServices.tsx | 171 +- app/containers/MessageActions/Header.tsx | 35 +- app/containers/MessageActions/index.tsx | 757 +-- .../MessageBox/CommandsPreview/Item.tsx | 29 +- .../MessageBox/CommandsPreview/index.tsx | 57 +- app/containers/MessageBox/EmojiKeyboard.tsx | 8 +- .../MessageBox/LeftButtons.android.tsx | 21 +- app/containers/MessageBox/LeftButtons.ios.tsx | 20 +- .../MessageBox/Mentions/FixedMentionItem.tsx | 7 +- .../MessageBox/Mentions/MentionEmoji.tsx | 16 +- .../MessageBox/Mentions/MentionItem.tsx | 24 +- app/containers/MessageBox/Mentions/index.tsx | 57 +- app/containers/MessageBox/RecordAudio.tsx | 59 +- app/containers/MessageBox/ReplyPreview.tsx | 91 +- .../MessageBox/RightButtons.android.tsx | 22 +- .../MessageBox/buttons/ActionsButton.tsx | 8 +- .../MessageBox/buttons/BaseButton.tsx | 3 +- .../buttons/CancelEditingButton.tsx | 2 +- app/containers/MessageBox/buttons/index.ts | 7 +- app/containers/MessageBox/index.tsx | 291 +- app/containers/MessageBox/styles.ts | 44 +- app/containers/MessageErrorActions.tsx | 14 +- app/containers/OrSeparator.tsx | 10 +- app/containers/Passcode/Base/Button.tsx | 19 +- app/containers/Passcode/Base/Dots.tsx | 4 +- app/containers/Passcode/Base/LockIcon.tsx | 2 +- app/containers/Passcode/Base/index.tsx | 197 +- app/containers/Passcode/Base/styles.ts | 30 +- app/containers/Passcode/PasscodeEnter.tsx | 5 +- app/containers/Passcode/constants.ts | 2 +- app/containers/Passcode/utils.ts | 2 +- app/containers/ReactionsModal.tsx | 74 +- .../RoomHeader/RoomHeader.stories.js | 22 +- app/containers/RoomHeader/RoomHeader.tsx | 142 +- app/containers/RoomHeader/index.tsx | 9 +- app/containers/RoomTypeIcon.tsx | 24 +- app/containers/SafeAreaView.tsx | 11 +- app/containers/SearchBox.tsx | 28 +- app/containers/Status/Status.tsx | 13 +- app/containers/Status/index.tsx | 6 +- app/containers/TextInput.stories.js | 16 +- app/containers/TextInput.tsx | 70 +- app/containers/ThreadDetails.tsx | 35 +- app/containers/Toast.tsx | 10 +- app/containers/TwoFactor/index.tsx | 26 +- app/containers/TwoFactor/styles.ts | 18 +- app/containers/UIKit/Actions.tsx | 6 +- app/containers/UIKit/Context.tsx | 6 +- app/containers/UIKit/DatePicker.tsx | 56 +- app/containers/UIKit/Divider.tsx | 4 +- app/containers/UIKit/Image.tsx | 26 +- app/containers/UIKit/Input.tsx | 20 +- app/containers/UIKit/MessageBlock.tsx | 22 +- app/containers/UIKit/MultiSelect/Chips.tsx | 18 +- app/containers/UIKit/MultiSelect/Input.tsx | 17 +- app/containers/UIKit/MultiSelect/Items.tsx | 16 +- app/containers/UIKit/MultiSelect/index.tsx | 298 +- app/containers/UIKit/MultiSelect/styles.ts | 34 +- app/containers/UIKit/Overflow.tsx | 25 +- app/containers/UIKit/Section.tsx | 37 +- app/containers/UIKit/Select.tsx | 47 +- app/containers/UIKit/index.tsx | 73 +- app/containers/UIKit/utils.ts | 74 +- app/containers/markdown/AtMention.tsx | 29 +- app/containers/markdown/BlockQuote.tsx | 4 +- app/containers/markdown/Emoji.tsx | 43 +- app/containers/markdown/Hashtag.tsx | 22 +- app/containers/markdown/Link.tsx | 10 +- app/containers/markdown/List.tsx | 24 +- app/containers/markdown/ListItem.tsx | 22 +- app/containers/markdown/Table.tsx | 14 +- app/containers/markdown/TableCell.tsx | 4 +- app/containers/markdown/TableRow.tsx | 2 +- app/containers/markdown/index.tsx | 203 +- app/containers/markdown/mergeTextNodes.ts | 2 +- app/containers/markdown/styles.ts | 74 +- app/containers/message/Attachments.tsx | 66 +- app/containers/message/Audio.tsx | 74 +- app/containers/message/Blocks.ts | 7 +- app/containers/message/Broadcast.tsx | 3 +- app/containers/message/CallButton.tsx | 3 +- app/containers/message/Content.tsx | 181 +- app/containers/message/Discussion.tsx | 85 +- app/containers/message/Emoji.tsx | 19 +- app/containers/message/Image.tsx | 65 +- app/containers/message/Message.tsx | 23 +- app/containers/message/MessageAvatar.tsx | 48 +- app/containers/message/MessageError.tsx | 25 +- app/containers/message/Reactions.tsx | 24 +- app/containers/message/RepliedThread.tsx | 12 +- app/containers/message/Reply.tsx | 295 +- app/containers/message/Thread.tsx | 70 +- app/containers/message/Touchable.tsx | 5 +- app/containers/message/Urls.tsx | 159 +- app/containers/message/User.tsx | 103 +- app/containers/message/Video.tsx | 66 +- app/containers/message/index.tsx | 92 +- app/containers/message/interfaces.ts | 26 +- app/containers/message/styles.ts | 78 +- app/containers/message/utils.ts | 85 +- app/dimensions.tsx | 20 +- .../containers/OmnichannelStatus.js | 21 +- app/ee/omnichannel/lib/index.js | 6 +- .../omnichannel/lib/subscriptions/inquiry.js | 15 +- app/ee/omnichannel/reducers/inquiry.js | 2 +- app/ee/omnichannel/selectors/inquiry.js | 5 +- app/ee/omnichannel/views/QueueListView.js | 20 +- app/emojis.ts | 20 +- app/i18n/index.js | 41 +- app/i18n/isRTL.js | 14 +- app/i18n/locales/ar.json | 1310 ++--- app/i18n/locales/de.json | 1542 +++--- app/i18n/locales/en.json | 1550 +++--- app/i18n/locales/es-ES.json | 906 +-- app/i18n/locales/fr.json | 1542 +++--- app/i18n/locales/it.json | 1402 ++--- app/i18n/locales/ja.json | 982 ++-- app/i18n/locales/nl.json | 1542 +++--- app/i18n/locales/pt-BR.json | 1350 ++--- app/i18n/locales/pt-PT.json | 1040 ++-- app/i18n/locales/ru.json | 1542 +++--- app/i18n/locales/tr.json | 1402 ++--- app/i18n/locales/zh-CN.json | 1360 ++--- app/i18n/locales/zh-TW.json | 1366 ++--- app/index.tsx | 91 +- app/lib/Icons.js | 6 +- app/lib/Navigation.ts | 2 +- app/lib/ShareNavigation.ts | 3 +- app/lib/appStateMiddleware.js | 50 +- app/lib/createStore.js | 5 +- app/lib/database/index.js | 4 +- app/lib/database/model/Message.js | 6 +- app/lib/database/model/ServersHistory.js | 2 +- app/lib/database/model/SlashCommand.js | 10 +- app/lib/database/model/Subscription.js | 6 +- app/lib/database/model/Thread.js | 6 +- app/lib/database/model/ThreadMessage.js | 6 +- app/lib/database/model/Upload.js | 2 +- app/lib/database/model/migrations.js | 68 +- app/lib/database/model/servers/migrations.js | 27 +- app/lib/database/schema/app.js | 4 +- app/lib/database/services/Message.js | 2 +- app/lib/database/services/Subscription.js | 2 +- app/lib/database/services/Thread.js | 2 +- app/lib/database/services/ThreadMessage.js | 2 +- app/lib/database/utils.test.js | 3 +- app/lib/encryption/encryption.js | 213 +- app/lib/encryption/room.js | 76 +- app/lib/encryption/utils.js | 12 +- app/lib/methods/actions.js | 13 +- app/lib/methods/callJitsi.js | 10 +- app/lib/methods/canOpenRoom.js | 10 +- app/lib/methods/enterpriseModules.js | 6 +- app/lib/methods/getCustomEmojis.js | 36 +- app/lib/methods/getPermissions.js | 42 +- app/lib/methods/getRoles.js | 45 +- app/lib/methods/getRoomInfo.js | 2 +- app/lib/methods/getRooms.js | 2 +- app/lib/methods/getSettings.js | 54 +- app/lib/methods/getSingleMessage.js | 21 +- app/lib/methods/getSlashCommands.js | 39 +- app/lib/methods/getThreadName.js | 12 +- app/lib/methods/getUsersPresence.js | 10 +- app/lib/methods/helpers/buildMessage.js | 2 +- .../methods/helpers/findSubscriptionsRooms.js | 2 +- .../methods/helpers/getFileUrlFromMessage.js | 2 +- .../helpers/mergeSubscriptionsRooms.js | 8 +- app/lib/methods/helpers/normalizeMessage.js | 16 +- app/lib/methods/helpers/parseQuery.js | 14 +- app/lib/methods/helpers/parseUrls.js | 45 +- app/lib/methods/helpers/protectedFunction.js | 15 +- app/lib/methods/loadMessagesForRoom.js | 4 +- app/lib/methods/loadMissedMessages.js | 4 +- app/lib/methods/loadNextMessages.js | 2 +- app/lib/methods/loadSurroundingMessages.js | 2 +- app/lib/methods/loadThreadMessages.js | 41 +- app/lib/methods/logout.js | 24 +- app/lib/methods/readMessages.js | 4 +- app/lib/methods/sendFileMessage.js | 33 +- app/lib/methods/sendMessage.js | 32 +- app/lib/methods/subscriptions/room.js | 107 +- app/lib/methods/subscriptions/rooms.js | 63 +- app/lib/methods/updateMessages.js | 98 +- app/lib/rocketchat.js | 515 +- app/lib/selection.json | 4875 ++++++++++++++++- app/lib/utils.js | 13 +- app/notifications/push/index.js | 13 +- app/notifications/push/push.android.js | 6 +- app/notifications/push/push.ios.js | 14 +- app/presentation/DirectoryItem/index.tsx | 37 +- app/presentation/DirectoryItem/styles.ts | 18 +- .../ImageViewer/ImageViewer.android.tsx | 197 +- .../ImageViewer/ImageViewer.ios.tsx | 26 +- app/presentation/ImageViewer/types.ts | 2 +- app/presentation/KeyboardView.tsx | 15 +- app/presentation/RoomItem/Actions.tsx | 55 +- app/presentation/RoomItem/LastMessage.tsx | 52 +- app/presentation/RoomItem/RoomItem.tsx | 112 +- app/presentation/RoomItem/Tag.tsx | 8 +- app/presentation/RoomItem/Title.tsx | 9 +- app/presentation/RoomItem/Touchable.tsx | 66 +- app/presentation/RoomItem/TypeIcon.tsx | 6 +- app/presentation/RoomItem/UpdatedAt.tsx | 22 +- app/presentation/RoomItem/Wrapper.tsx | 30 +- app/presentation/RoomItem/index.tsx | 42 +- app/presentation/RoomItem/styles.ts | 42 +- app/presentation/ServerItem/index.tsx | 57 +- app/presentation/ServerItem/styles.ts | 12 +- app/presentation/TextInput.tsx | 6 +- .../UnreadBadge/getUnreadStyle.test.js | 74 +- .../UnreadBadge/getUnreadStyle.ts | 7 +- app/presentation/UnreadBadge/index.tsx | 95 +- app/presentation/UserItem.tsx | 37 +- app/reducers/createChannel.js | 2 +- app/reducers/createDiscussion.js | 2 +- app/reducers/room.js | 5 +- app/reducers/selectedUsers.js | 2 +- app/reducers/server.js | 1 - app/reducers/sortPreferences.js | 1 - app/sagas/createChannel.js | 38 +- app/sagas/createDiscussion.js | 8 +- app/sagas/deepLinking.js | 19 +- app/sagas/encryption.js | 14 +- app/sagas/init.js | 4 +- app/sagas/inviteLinks.js | 8 +- app/sagas/login.js | 30 +- app/sagas/room.js | 28 +- app/sagas/rooms.js | 48 +- app/sagas/selectServer.js | 24 +- app/selectors/login.js | 7 +- app/share.tsx | 97 +- app/stacks/InsideStack.js | 208 +- .../MasterDetailStack/ModalContainer.js | 6 +- app/stacks/MasterDetailStack/index.js | 167 +- app/stacks/OutsideStack.js | 52 +- app/theme.tsx | 12 +- app/utils/avatar.js | 25 +- app/utils/base64-js/base64-js.test.js | 20 +- app/utils/base64-js/index.js | 73 +- app/utils/debounce.js | 8 +- app/utils/events.js | 2 +- app/utils/fetch.js | 8 +- app/utils/fileUpload/index.android.js | 4 +- app/utils/fileUpload/index.ios.js | 20 +- app/utils/goRoom.js | 2 +- app/utils/info.js | 8 +- app/utils/isReadOnly.js | 4 +- app/utils/isValidEmail.js | 3 +- app/utils/layoutAnimation.js | 40 +- app/utils/localAuthentication.js | 63 +- app/utils/log/index.js | 21 +- app/utils/messageTypes.js | 36 +- app/utils/navigation/animations.js | 11 +- app/utils/navigation/index.ts | 15 +- app/utils/openLink.js | 6 +- app/utils/review.js | 29 +- app/utils/room.js | 36 +- app/utils/scaling.js | 2 +- app/utils/server.js | 4 +- app/utils/shortnameToUnicode/ascii.js | 121 +- app/utils/shortnameToUnicode/emojis.js | 4630 +++++++++++++++- app/utils/shortnameToUnicode/index.js | 14 +- .../shortnameToUnicode.test.js | 4 +- app/utils/sslPinning.js | 67 +- app/utils/theme.js | 4 +- app/utils/touch.js | 9 +- app/utils/twoFactor.js | 29 +- app/utils/url.js | 17 +- app/views/AddChannelTeamView.js | 16 +- app/views/AddExistingChannelView.js | 74 +- app/views/AdminPanelView/index.js | 8 +- app/views/AttachmentView.js | 49 +- app/views/AuthLoadingView.js | 6 +- app/views/AuthenticationWebView.js | 40 +- app/views/AutoTranslateView/index.js | 55 +- app/views/ChangePasscodeView.js | 23 +- app/views/CreateChannelView.js | 89 +- .../CreateDiscussionView/SelectChannel.js | 29 +- app/views/CreateDiscussionView/SelectUsers.js | 29 +- app/views/CreateDiscussionView/index.js | 82 +- app/views/DefaultBrowserView.js | 26 +- app/views/DirectoryView/Options.js | 88 +- app/views/DirectoryView/index.js | 122 +- app/views/E2EEncryptionSecurityView.js | 28 +- app/views/E2EEnterYourPasswordView.js | 22 +- app/views/E2EHowItWorksView.js | 33 +- app/views/E2ESaveYourPasswordView.js | 37 +- app/views/ForgotPasswordView.js | 18 +- app/views/ForwardLivechatView.js | 27 +- app/views/InviteUsersEditView/index.js | 110 +- app/views/InviteUsersView/index.js | 45 +- app/views/JitsiMeetView.js | 16 +- app/views/LanguageView/index.js | 26 +- app/views/LegalView.js | 6 +- app/views/LivechatEditView.js | 79 +- app/views/LoginView.js | 50 +- app/views/MarkdownTableView.js | 8 +- app/views/MessagesView/index.js | 127 +- app/views/ModalBlockView.js | 103 +- app/views/NewMessageView.js | 92 +- app/views/NewServerView/ServerInput/Item.js | 20 +- app/views/NewServerView/ServerInput/index.js | 39 +- app/views/NewServerView/index.js | 121 +- .../NotificationPreferencesView/index.js | 61 +- .../NotificationPreferencesView/options.js | 203 +- app/views/OnboardingView/index.js | 12 +- app/views/PickerView.js | 39 +- app/views/ProfileView/index.js | 192 +- app/views/ReadReceiptView/index.js | 67 +- app/views/RegisterView.js | 121 +- app/views/RoomActionsView/index.js | 874 +-- app/views/RoomActionsView/styles.js | 4 +- app/views/RoomInfoEditView/SwitchContainer.js | 81 +- app/views/RoomInfoEditView/index.js | 373 +- app/views/RoomInfoView/Channel.js | 6 +- app/views/RoomInfoView/CustomFields.js | 20 +- app/views/RoomInfoView/Direct.js | 25 +- app/views/RoomInfoView/Item.js | 17 +- app/views/RoomInfoView/Livechat.js | 100 +- app/views/RoomInfoView/Timezone.js | 15 +- app/views/RoomInfoView/index.js | 210 +- app/views/RoomMembersView/index.js | 218 +- app/views/RoomView/Banner.js | 87 +- app/views/RoomView/EmptyRoom.js | 11 +- app/views/RoomView/JoinCode.js | 140 +- app/views/RoomView/LeftButtons.js | 54 +- app/views/RoomView/List/NavBottomFAB.js | 23 +- app/views/RoomView/List/index.js | 200 +- .../RoomView/LoadMore/LoadMore.stories.js | 15 +- app/views/RoomView/LoadMore/index.js | 19 +- app/views/RoomView/ReactionPicker.js | 64 +- app/views/RoomView/RightButtons.js | 82 +- app/views/RoomView/UploadProgress.js | 110 +- app/views/RoomView/index.js | 433 +- app/views/RoomView/services/getMessageInfo.js | 2 +- app/views/RoomView/services/getMessages.js | 2 +- .../RoomView/services/getMoreMessages.js | 20 +- app/views/RoomsListView/Header/Header.js | 119 +- app/views/RoomsListView/Header/index.js | 23 +- app/views/RoomsListView/ListHeader/index.js | 69 +- app/views/RoomsListView/ServerDropdown.js | 120 +- app/views/RoomsListView/SortDropdown/index.js | 76 +- app/views/RoomsListView/index.js | 244 +- app/views/ScreenLockConfigView.js | 125 +- app/views/ScreenLockedView.js | 5 +- app/views/SearchMessagesView/index.js | 40 +- app/views/SecurityPrivacyView.js | 52 +- app/views/SelectListView.js | 50 +- app/views/SelectServerView.js | 22 +- app/views/SelectedUsersView.js | 56 +- app/views/SetUsernameView.js | 34 +- app/views/SettingsView/index.js | 96 +- app/views/ShareListView/Header/Header.ios.js | 20 +- app/views/ShareListView/Header/index.js | 6 +- app/views/ShareListView/index.js | 131 +- app/views/ShareView/Header.js | 15 +- app/views/ShareView/Preview.js | 17 +- app/views/ShareView/Thumbs.js | 60 +- app/views/ShareView/index.js | 168 +- app/views/SidebarView/SidebarItem.js | 15 +- app/views/SidebarView/index.js | 84 +- app/views/StatusView.js | 70 +- app/views/TeamChannelsView.js | 207 +- app/views/ThemeView.js | 37 +- .../Dropdown/DropdownItem.js | 4 +- .../Dropdown/DropdownItemFilter.js | 6 +- .../ThreadMessagesView/Dropdown/index.js | 60 +- app/views/ThreadMessagesView/Item.js | 32 +- app/views/ThreadMessagesView/Item.stories.js | 23 +- app/views/ThreadMessagesView/index.js | 215 +- .../UserNotificationPreferencesView/index.js | 110 +- .../options.js | 42 +- app/views/UserPreferencesView/index.js | 10 +- app/views/VisitorNavigationView.js | 10 +- app/views/WithoutServersView.tsx | 21 +- app/views/WorkspaceView/ServerAvatar.js | 2 +- app/views/WorkspaceView/index.js | 60 +- babel.config.js | 4 +- e2e/.mocharc.json | 10 +- e2e/data.js | 46 +- e2e/data/data.cloud.js | 44 +- e2e/data/data.docker.js | 46 +- e2e/helpers/app.js | 109 +- e2e/helpers/data_setup.js | 70 +- e2e/tests/assorted/01-e2eencryption.spec.js | 286 +- e2e/tests/assorted/02-broadcast.spec.js | 96 +- e2e/tests/assorted/03-profile.spec.js | 72 +- e2e/tests/assorted/04-setting.spec.js | 56 +- e2e/tests/assorted/05-joinpublicroom.spec.js | 86 +- e2e/tests/assorted/06-status.spec.js | 28 +- e2e/tests/assorted/07-changeserver.spec.js | 72 +- .../assorted/08-joinprotectedroom.spec.js | 36 +- .../assorted/09-joinfromdirectory.spec.js | 40 +- e2e/tests/assorted/10-deleteserver.spec.js | 48 +- e2e/tests/assorted/11-deeplinking.spec.js | 82 +- e2e/tests/assorted/12-i18n.spec.js | 66 +- e2e/tests/init.js | 8 +- e2e/tests/onboarding/01-onboarding.spec.js | 46 +- e2e/tests/onboarding/02-legal.spec.js | 32 +- .../onboarding/03-forgotpassword.spec.js | 22 +- e2e/tests/onboarding/04-createuser.spec.js | 32 +- e2e/tests/onboarding/05-login.spec.js | 40 +- e2e/tests/onboarding/06-roomslist.spec.js | 34 +- .../onboarding/07-server-history.spec.js | 46 +- e2e/tests/room/01-createroom.spec.js | 204 +- e2e/tests/room/02-room.spec.js | 260 +- e2e/tests/room/03-roomactions.spec.js | 386 +- e2e/tests/room/04-discussion.spec.js | 138 +- e2e/tests/room/05-threads.spec.js | 190 +- e2e/tests/room/06-createdmgroup.spec.js | 42 +- e2e/tests/room/07-markasunread.spec.js | 34 +- e2e/tests/room/08-roominfo.spec.js | 164 +- e2e/tests/room/09-jumptomessage.spec.js | 182 +- e2e/tests/team/01-createteam.spec.js | 68 +- e2e/tests/team/02-team.spec.js | 361 +- e2e/tests/team/03-moveconvert.spec.js | 160 +- jsconfig.json | 14 +- metro.config.js | 4 +- package.json | 480 +- storybook/stories/Avatar.js | 123 +- storybook/stories/HeaderButtons.js | 52 +- storybook/stories/List.js | 11 +- storybook/stories/Markdown.js | 120 +- storybook/stories/Message.js | 915 ++-- storybook/stories/RoomItem.js | 43 +- storybook/stories/ServerItem.js | 17 +- storybook/stories/UiKitMessage.js | 717 +-- storybook/stories/UiKitModal.js | 935 ++-- storybook/stories/UnreadBadge.js | 12 +- storybook/utils.js | 3 +- tsconfig.json | 126 +- 481 files changed, 32509 insertions(+), 22988 deletions(-) diff --git a/.prettierignore b/.prettierignore index a47128e092..16e40ac826 100644 --- a/.prettierignore +++ b/.prettierignore @@ -17,6 +17,9 @@ scripts/ .gitignore .snyk .watchmanconfig +CONTRIBUTING.md +README.md +SECURITY.md npm-debug.log yarn-error.log diff --git a/app.json b/app.json index 7b3a422dca..5b802fd60f 100644 --- a/app.json +++ b/app.json @@ -1,5 +1,5 @@ { - "name": "RocketChatRN", - "share": "ShareRocketChatRN", - "displayName": "RocketChatRN" -} \ No newline at end of file + "name": "RocketChatRN", + "share": "ShareRocketChatRN", + "displayName": "RocketChatRN" +} diff --git a/app/AppContainer.tsx b/app/AppContainer.tsx index 9edbce6d89..00d851010e 100644 --- a/app/AppContainer.tsx +++ b/app/AppContainer.tsx @@ -5,9 +5,7 @@ import { connect } from 'react-redux'; import Navigation from './lib/Navigation'; import { defaultHeader, getActiveRouteName, navigationTheme } from './utils/navigation'; -import { - ROOT_INSIDE, ROOT_LOADING, ROOT_NEW_SERVER, ROOT_OUTSIDE, ROOT_SET_USERNAME, -} from './actions/app'; +import { ROOT_INSIDE, ROOT_LOADING, ROOT_NEW_SERVER, ROOT_OUTSIDE, ROOT_SET_USERNAME } from './actions/app'; // Stacks import AuthLoadingView from './views/AuthLoadingView'; // SetUsername Stack @@ -22,16 +20,13 @@ import { setCurrentScreen } from './utils/log'; const SetUsername = createStackNavigator(); const SetUsernameStack = () => ( <SetUsername.Navigator screenOptions={defaultHeader}> - <SetUsername.Screen - name='SetUsernameView' - component={SetUsernameView} - /> + <SetUsername.Screen name='SetUsernameView' component={SetUsernameView} /> </SetUsername.Navigator> ); // App const Stack = createStackNavigator(); -const App = React.memo(({ root, isMasterDetail }: {root: string, isMasterDetail: boolean}) => { +const App = React.memo(({ root, isMasterDetail }: { root: string; isMasterDetail: boolean }) => { if (!root) { return null; } @@ -50,47 +45,25 @@ const App = React.memo(({ root, isMasterDetail }: {root: string, isMasterDetail: <NavigationContainer theme={navTheme} ref={Navigation.navigationRef} - onStateChange={(state) => { + onStateChange={state => { const previousRouteName = Navigation.routeNameRef.current; const currentRouteName = getActiveRouteName(state); if (previousRouteName !== currentRouteName) { setCurrentScreen(currentRouteName); } Navigation.routeNameRef.current = currentRouteName; - }} - > + }}> <Stack.Navigator screenOptions={{ headerShown: false, animationEnabled: false }}> <> - {root === ROOT_LOADING ? ( - <Stack.Screen - name='AuthLoading' - component={AuthLoadingView} - /> - ) : null} + {root === ROOT_LOADING ? <Stack.Screen name='AuthLoading' component={AuthLoadingView} /> : null} {root === ROOT_OUTSIDE || root === ROOT_NEW_SERVER ? ( - <Stack.Screen - name='OutsideStack' - component={OutsideStack} - /> + <Stack.Screen name='OutsideStack' component={OutsideStack} /> ) : null} {root === ROOT_INSIDE && isMasterDetail ? ( - <Stack.Screen - name='MasterDetailStack' - component={MasterDetailStack} - /> - ) : null} - {root === ROOT_INSIDE && !isMasterDetail ? ( - <Stack.Screen - name='InsideStack' - component={InsideStack} - /> - ) : null} - {root === ROOT_SET_USERNAME ? ( - <Stack.Screen - name='SetUsernameStack' - component={SetUsernameStack} - /> + <Stack.Screen name='MasterDetailStack' component={MasterDetailStack} /> ) : null} + {root === ROOT_INSIDE && !isMasterDetail ? <Stack.Screen name='InsideStack' component={InsideStack} /> : null} + {root === ROOT_SET_USERNAME ? <Stack.Screen name='SetUsernameStack' component={SetUsernameStack} /> : null} </> </Stack.Navigator> </NavigationContainer> @@ -98,7 +71,7 @@ const App = React.memo(({ root, isMasterDetail }: {root: string, isMasterDetail: }); const mapStateToProps = (state: any) => ({ root: state.app.root, - isMasterDetail: state.app.isMasterDetail, + isMasterDetail: state.app.isMasterDetail }); const AppContainer = connect(mapStateToProps)(App); diff --git a/app/ReactotronConfig.js b/app/ReactotronConfig.js index e2c43b4ce5..80cb90beb8 100644 --- a/app/ReactotronConfig.js +++ b/app/ReactotronConfig.js @@ -2,21 +2,16 @@ import { NativeModules } from 'react-native'; import Reactotron from 'reactotron-react-native'; import { reactotronRedux } from 'reactotron-redux'; -import sagaPlugin from 'reactotron-redux-saga' +import sagaPlugin from 'reactotron-redux-saga'; if (__DEV__) { - const scriptURL = NativeModules.SourceCode.scriptURL; - const scriptHostname = scriptURL.split('://')[1].split(':')[0]; - Reactotron - .configure({ host: scriptHostname }) - .useReactNative() - .use(reactotronRedux()) - .use(sagaPlugin()) - .connect(); - // Running on android device - // $ adb reverse tcp:9090 tcp:9090 - Reactotron.clear(); - console.warn = Reactotron.log; - console.log = Reactotron.log; - console.disableYellowBox = true; + const scriptURL = NativeModules.SourceCode.scriptURL; + const scriptHostname = scriptURL.split('://')[1].split(':')[0]; + Reactotron.configure({ host: scriptHostname }).useReactNative().use(reactotronRedux()).use(sagaPlugin()).connect(); + // Running on android device + // $ adb reverse tcp:9090 tcp:9090 + Reactotron.clear(); + console.warn = Reactotron.log; + console.log = Reactotron.log; + console.disableYellowBox = true; } diff --git a/app/actions/actionsTypes.js b/app/actions/actionsTypes.js index b3213f7f42..fcf881fd33 100644 --- a/app/actions/actionsTypes.js +++ b/app/actions/actionsTypes.js @@ -4,23 +4,13 @@ const FAILURE = 'FAILURE'; const defaultTypes = [REQUEST, SUCCESS, FAILURE]; function createRequestTypes(base, types = defaultTypes) { const res = {}; - types.forEach(type => res[type] = `${ base }_${ type }`); + types.forEach(type => (res[type] = `${base}_${type}`)); return res; } // Login events -export const LOGIN = createRequestTypes('LOGIN', [ - ...defaultTypes, - 'SET_SERVICES', - 'SET_PREFERENCE', - 'SET_LOCAL_AUTHENTICATED' -]); -export const SHARE = createRequestTypes('SHARE', [ - 'SELECT_SERVER', - 'SET_USER', - 'SET_SETTINGS', - 'SET_SERVER_INFO' -]); +export const LOGIN = createRequestTypes('LOGIN', [...defaultTypes, 'SET_SERVICES', 'SET_PREFERENCE', 'SET_LOCAL_AUTHENTICATED']); +export const SHARE = createRequestTypes('SHARE', ['SELECT_SERVER', 'SET_USER', 'SET_SETTINGS', 'SET_SERVER_INFO']); export const USER = createRequestTypes('USER', ['SET']); export const ROOMS = createRequestTypes('ROOMS', [ ...defaultTypes, @@ -33,8 +23,24 @@ export const ROOMS = createRequestTypes('ROOMS', [ 'OPEN_SEARCH_HEADER', 'CLOSE_SEARCH_HEADER' ]); -export const ROOM = createRequestTypes('ROOM', ['SUBSCRIBE', 'UNSUBSCRIBE', 'LEAVE', 'DELETE', 'REMOVED', 'CLOSE', 'FORWARD', 'USER_TYPING']); -export const INQUIRY = createRequestTypes('INQUIRY', [...defaultTypes, 'SET_ENABLED', 'RESET', 'QUEUE_ADD', 'QUEUE_UPDATE', 'QUEUE_REMOVE']); +export const ROOM = createRequestTypes('ROOM', [ + 'SUBSCRIBE', + 'UNSUBSCRIBE', + 'LEAVE', + 'DELETE', + 'REMOVED', + 'CLOSE', + 'FORWARD', + 'USER_TYPING' +]); +export const INQUIRY = createRequestTypes('INQUIRY', [ + ...defaultTypes, + 'SET_ENABLED', + 'RESET', + 'QUEUE_ADD', + 'QUEUE_UPDATE', + 'QUEUE_REMOVE' +]); export const APP = createRequestTypes('APP', ['START', 'READY', 'INIT', 'INIT_LOCAL_SETTINGS', 'SET_MASTER_DETAIL']); export const MESSAGES = createRequestTypes('MESSAGES', ['REPLY_BROADCAST']); export const CREATE_CHANNEL = createRequestTypes('CREATE_CHANNEL', [...defaultTypes]); diff --git a/app/actions/inviteLinks.js b/app/actions/inviteLinks.js index b456603cfa..cd2fd1639d 100644 --- a/app/actions/inviteLinks.js +++ b/app/actions/inviteLinks.js @@ -32,7 +32,6 @@ export function inviteLinksClear() { }; } - export function inviteLinksCreate(rid) { return { type: types.INVITE_LINKS.CREATE, diff --git a/app/actions/rooms.js b/app/actions/rooms.js index a37c17cae7..63e095cea0 100644 --- a/app/actions/rooms.js +++ b/app/actions/rooms.js @@ -1,6 +1,5 @@ import * as types from './actionsTypes'; - export function roomsRequest(params = { allData: false }) { return { type: types.ROOMS.REQUEST, diff --git a/app/commands.js b/app/commands.js index 3f0f6f7660..3004730190 100644 --- a/app/commands.js +++ b/app/commands.js @@ -126,12 +126,12 @@ const keyCommands = [ }, // Refers to select rooms on list ...[1, 2, 3, 4, 5, 6, 7, 8, 9].map(value => ({ - input: `${ value }`, + input: `${value}`, modifierFlags: constants.keyModifierCommand })), // Refers to select servers on list ...[1, 2, 3, 4, 5, 6, 7, 8, 9].map(value => ({ - input: `${ value }`, + input: `${value}`, modifierFlags: constants.keyModifierCommand | constants.keyModifierAlternate })) ]; @@ -161,7 +161,8 @@ export const handleCommandSubmit = event => commandHandle(event, KEY_SEND_MESSAG export const handleCommandShowUpload = event => commandHandle(event, KEY_UPLOAD, ['command']); -export const handleCommandScroll = event => commandHandle(event, [constants.keyInputUpArrow, constants.keyInputDownArrow], ['alternate']); +export const handleCommandScroll = event => + commandHandle(event, [constants.keyInputUpArrow, constants.keyInputDownArrow], ['alternate']); export const handleCommandRoomActions = event => commandHandle(event, KEY_ROOM_ACTIONS, ['command']); diff --git a/app/constants/colors.ts b/app/constants/colors.ts index 6fc4845238..ab358679ca 100644 --- a/app/constants/colors.ts +++ b/app/constants/colors.ts @@ -3,12 +3,12 @@ export const STATUS_COLORS: any = { busy: '#f5455c', away: '#ffd21f', offline: '#cbced1', - loading: '#9ea2a8', + loading: '#9ea2a8' }; export const SWITCH_TRACK_COLOR = { false: '#f5455c', - true: '#2de0a5', + true: '#2de0a5' }; const mentions = { @@ -16,7 +16,7 @@ const mentions = { tunreadColor: '#1d74f5', mentionMeColor: '#F5455C', mentionGroupColor: '#F38C39', - mentionOtherColor: '#F3BE08', + mentionOtherColor: '#F3BE08' }; export const themes: any = { @@ -65,7 +65,7 @@ export const themes: any = { previewBackground: '#1F2329', previewTintColor: '#ffffff', backdropOpacity: 0.3, - ...mentions, + ...mentions }, dark: { backgroundColor: '#030b1b', @@ -112,7 +112,7 @@ export const themes: any = { previewBackground: '#030b1b', previewTintColor: '#ffffff', backdropOpacity: 0.9, - ...mentions, + ...mentions }, black: { backgroundColor: '#000000', @@ -159,6 +159,6 @@ export const themes: any = { previewBackground: '#000000', previewTintColor: '#ffffff', backdropOpacity: 0.9, - ...mentions, - }, + ...mentions + } }; diff --git a/app/constants/links.ts b/app/constants/links.ts index 8ca76da5e2..af93b5e394 100644 --- a/app/constants/links.ts +++ b/app/constants/links.ts @@ -2,8 +2,10 @@ import { getBundleId, isIOS } from '../utils/deviceInfo'; const APP_STORE_ID = '1148741252'; -export const PLAY_MARKET_LINK = `https://play.google.com/store/apps/details?id=${ getBundleId }`; +export const PLAY_MARKET_LINK = `https://play.google.com/store/apps/details?id=${getBundleId}`; export const FDROID_MARKET_LINK = 'https://f-droid.org/en/packages/chat.rocket.android'; -export const APP_STORE_LINK = `https://itunes.apple.com/app/id${ APP_STORE_ID }`; +export const APP_STORE_LINK = `https://itunes.apple.com/app/id${APP_STORE_ID}`; export const LICENSE_LINK = 'https://github.com/RocketChat/Rocket.Chat.ReactNative/blob/develop/LICENSE'; -export const STORE_REVIEW_LINK = isIOS ? `itms-apps://itunes.apple.com/app/id${ APP_STORE_ID }?action=write-review` : `market://details?id=${ getBundleId }`; +export const STORE_REVIEW_LINK = isIOS + ? `itms-apps://itunes.apple.com/app/id${APP_STORE_ID}?action=write-review` + : `market://details?id=${getBundleId}`; diff --git a/app/constants/messagesStatus.ts b/app/constants/messagesStatus.ts index b27260d72d..4f945f939e 100644 --- a/app/constants/messagesStatus.ts +++ b/app/constants/messagesStatus.ts @@ -1,5 +1,5 @@ export default { SENT: 0, TEMP: 1, - ERROR: 2, + ERROR: 2 }; diff --git a/app/constants/settings.ts b/app/constants/settings.ts index 62fff63192..14ad8fb36f 100644 --- a/app/constants/settings.ts +++ b/app/constants/settings.ts @@ -1,206 +1,206 @@ export default { Accounts_AllowEmailChange: { - type: 'valueAsBoolean', + type: 'valueAsBoolean' }, Accounts_AllowPasswordChange: { - type: 'valueAsBoolean', + type: 'valueAsBoolean' }, Accounts_AllowRealNameChange: { - type: 'valueAsBoolean', + type: 'valueAsBoolean' }, Accounts_AllowUserAvatarChange: { - type: 'valueAsBoolean', + type: 'valueAsBoolean' }, Accounts_AllowUserProfileChange: { - type: 'valueAsBoolean', + type: 'valueAsBoolean' }, Accounts_AllowUserStatusMessageChange: { - type: 'valueAsBoolean', + type: 'valueAsBoolean' }, Accounts_AllowUsernameChange: { - type: 'valueAsBoolean', + type: 'valueAsBoolean' }, Accounts_AvatarBlockUnauthenticatedAccess: { - type: 'valueAsBoolean', + type: 'valueAsBoolean' }, Accounts_CustomFields: { - type: 'valueAsString', + type: 'valueAsString' }, Accounts_EmailOrUsernamePlaceholder: { - type: 'valueAsString', + type: 'valueAsString' }, Accounts_EmailVerification: { - type: 'valueAsBoolean', + type: 'valueAsBoolean' }, Accounts_NamePlaceholder: { - type: 'valueAsString', + type: 'valueAsString' }, Accounts_PasswordPlaceholder: { - type: 'valueAsString', + type: 'valueAsString' }, Accounts_PasswordReset: { - type: 'valueAsBoolean', + type: 'valueAsBoolean' }, Accounts_RegistrationForm: { - type: 'valueAsString', + type: 'valueAsString' }, Accounts_RegistrationForm_LinkReplacementText: { - type: 'valueAsString', + type: 'valueAsString' }, Accounts_ShowFormLogin: { - type: 'valueAsBoolean', + type: 'valueAsBoolean' }, Accounts_ManuallyApproveNewUsers: { - type: 'valueAsBoolean', + type: 'valueAsBoolean' }, API_Use_REST_For_DDP_Calls: { - type: 'valueAsBoolean', + type: 'valueAsBoolean' }, Accounts_iframe_enabled: { - type: 'valueAsBoolean', + type: 'valueAsBoolean' }, Accounts_Iframe_api_url: { - type: 'valueAsString', + type: 'valueAsString' }, Accounts_Iframe_api_method: { - type: 'valueAsString', + type: 'valueAsString' }, CROWD_Enable: { - type: 'valueAsBoolean', + type: 'valueAsBoolean' }, DirectMesssage_maxUsers: { - type: 'valueAsNumber', + type: 'valueAsNumber' }, E2E_Enable: { - type: 'valueAsBoolean', + type: 'valueAsBoolean' }, Accounts_Directory_DefaultView: { - type: 'valueAsString', + type: 'valueAsString' }, FEDERATION_Enabled: { - type: 'valueAsBoolean', + type: 'valueAsBoolean' }, Hide_System_Messages: { - type: 'valueAsArray', + type: 'valueAsArray' }, LDAP_Enable: { - type: 'valueAsBoolean', + type: 'valueAsBoolean' }, Livechat_request_comment_when_closing_conversation: { - type: 'valueAsBoolean', + type: 'valueAsBoolean' }, Jitsi_Enabled: { - type: 'valueAsBoolean', + type: 'valueAsBoolean' }, Jitsi_SSL: { - type: 'valueAsBoolean', + type: 'valueAsBoolean' }, Jitsi_Domain: { - type: 'valueAsString', + type: 'valueAsString' }, Jitsi_Enabled_TokenAuth: { - type: 'valueAsBoolean', + type: 'valueAsBoolean' }, Jitsi_URL_Room_Hash: { - type: 'valueAsBoolean', + type: 'valueAsBoolean' }, Jitsi_URL_Room_Prefix: { - type: 'valueAsString', + type: 'valueAsString' }, Message_AllowDeleting: { - type: 'valueAsBoolean', + type: 'valueAsBoolean' }, Message_AllowDeleting_BlockDeleteInMinutes: { - type: 'valueAsNumber', + type: 'valueAsNumber' }, Message_AllowEditing: { - type: 'valueAsBoolean', + type: 'valueAsBoolean' }, Message_AllowEditing_BlockEditInMinutes: { - type: 'valueAsNumber', + type: 'valueAsNumber' }, Message_AllowPinning: { - type: 'valueAsBoolean', + type: 'valueAsBoolean' }, Message_AllowStarring: { - type: 'valueAsBoolean', + type: 'valueAsBoolean' }, Message_AudioRecorderEnabled: { - type: 'valueAsBoolean', + type: 'valueAsBoolean' }, Message_GroupingPeriod: { - type: 'valueAsNumber', + type: 'valueAsNumber' }, Message_TimeFormat: { - type: 'valueAsString', + type: 'valueAsString' }, Message_TimeAndDateFormat: { - type: 'valueAsString', + type: 'valueAsString' }, Site_Name: { - type: 'valueAsString', + type: 'valueAsString' }, Site_Url: { - type: 'valueAsString', + type: 'valueAsString' }, Store_Last_Message: { - type: 'valueAsBoolean', + type: 'valueAsBoolean' }, uniqueID: { - type: 'valueAsString', + type: 'valueAsString' }, UI_Allow_room_names_with_special_chars: { - type: 'valueAsBoolean', + type: 'valueAsBoolean' }, UI_Use_Real_Name: { - type: 'valueAsBoolean', + type: 'valueAsBoolean' }, Assets_favicon_512: { - type: null, + type: null }, Message_Read_Receipt_Enabled: { - type: 'valueAsBoolean', + type: 'valueAsBoolean' }, Message_Read_Receipt_Store_Users: { - type: 'valueAsBoolean', + type: 'valueAsBoolean' }, Threads_enabled: { - type: 'valueAsBoolean', + type: 'valueAsBoolean' }, FileUpload_MediaTypeWhiteList: { - type: 'valueAsString', + type: 'valueAsString' }, FileUpload_MaxFileSize: { - type: 'valueAsNumber', + type: 'valueAsNumber' }, API_Gitlab_URL: { - type: 'valueAsString', + type: 'valueAsString' }, AutoTranslate_Enabled: { - type: 'valueAsBoolean', + type: 'valueAsBoolean' }, CAS_enabled: { - type: 'valueAsBoolean', + type: 'valueAsBoolean' }, CAS_login_url: { - type: 'valueAsString', + type: 'valueAsString' }, Force_Screen_Lock: { - type: 'valueAsBoolean', + type: 'valueAsBoolean' }, Force_Screen_Lock_After: { - type: 'valueAsNumber', + type: 'valueAsNumber' }, Allow_Save_Media_to_Gallery: { - type: 'valueAsBoolean', + type: 'valueAsBoolean' }, Accounts_AllowInvisibleStatusOption: { - type: 'valueAsString', + type: 'valueAsString' }, Jitsi_Enable_Teams: { - type: 'valueAsBoolean', + type: 'valueAsBoolean' }, Jitsi_Enable_Channels: { - type: 'valuesAsBoolean', - }, + type: 'valuesAsBoolean' + } }; diff --git a/app/containers/ActionSheet/ActionSheet.tsx b/app/containers/ActionSheet/ActionSheet.tsx index 7332643e61..507a620a37 100644 --- a/app/containers/ActionSheet/ActionSheet.tsx +++ b/app/containers/ActionSheet/ActionSheet.tsx @@ -1,12 +1,4 @@ -import React, { - forwardRef, - isValidElement, - useCallback, - useEffect, - useImperativeHandle, - useRef, - useState, -} from 'react'; +import React, { forwardRef, isValidElement, useCallback, useEffect, useImperativeHandle, useRef, useState } from 'react'; import { Keyboard, Text } from 'react-native'; import { useSafeAreaInsets } from 'react-native-safe-area-context'; import { State, TapGestureHandler } from 'react-native-gesture-handler'; @@ -43,163 +35,166 @@ const ANIMATION_DURATION = 250; const ANIMATION_CONFIG = { duration: ANIMATION_DURATION, // https://easings.net/#easeInOutCubic - easing: Easing.bezier(0.645, 0.045, 0.355, 1.0), + easing: Easing.bezier(0.645, 0.045, 0.355, 1.0) }; -const ActionSheet = React.memo(forwardRef(({ children, theme }: {children: JSX.Element; theme: string}, ref) => { - const bottomSheetRef: any = useRef(); - const [data, setData] = useState<IActionSheetData>({} as IActionSheetData); - const [isVisible, setVisible] = useState(false); - const { height }: Partial<IDimensionsContextProps> = useDimensions(); - const { isLandscape } = useOrientation(); - const insets = useSafeAreaInsets(); - - const maxSnap = Math.max( - - height! - // Items height - - (ITEM_HEIGHT * (data?.options?.length || 0)) - // Handle height - - HANDLE_HEIGHT - // Custom header height - - (data?.headerHeight || 0) - // Insets bottom height (Notch devices) - - insets.bottom - // Cancel button height - - (data?.hasCancel ? CANCEL_HEIGHT : 0) - , - MAX_SNAP_HEIGHT, - ); - - /* - * if the action sheet cover more - * than 60% of the whole screen - * and it's not at the landscape mode - * we'll provide more one snap - * that point 50% of the whole screen - */ - const snaps: any = (height! - maxSnap > height! * 0.6) && !isLandscape ? [maxSnap, height! * 0.5, height] : [maxSnap, height]; - const openedSnapIndex = snaps.length > 2 ? 1 : 0; - const closedSnapIndex = snaps.length - 1; - - const toggleVisible = () => setVisible(!isVisible); - - const hide = () => { - bottomSheetRef.current?.snapTo(closedSnapIndex); - }; - - const show = (options: any) => { - setData(options); - toggleVisible(); - }; - - const onBackdropPressed = ({ nativeEvent }: any) => { - if (nativeEvent.oldState === State.ACTIVE) { - hide(); - } - }; - - useBackHandler(() => { - if (isVisible) { - hide(); - } - return isVisible; - }); - - useEffect(() => { - if (isVisible) { - Keyboard.dismiss(); - Haptics.impactAsync(Haptics.ImpactFeedbackStyle.Light); - bottomSheetRef.current?.snapTo(openedSnapIndex); - } - }, [isVisible]); - - // Hides action sheet when orientation changes - useEffect(() => { - setVisible(false); - }, [isLandscape]); - - useImperativeHandle(ref, () => ({ - showActionSheet: show, - hideActionSheet: hide, - })); - - const renderHandle = useCallback(() => ( - <> - <Handle theme={theme} /> - {isValidElement(data?.customHeader) ? data.customHeader : null} - </> - ), [theme, data]); - - const renderFooter = useCallback(() => (data?.hasCancel ? ( - <Button - onPress={hide} - style={[styles.button, { backgroundColor: themes[theme].auxiliaryBackground }]} - theme={theme} - > - <Text style={[styles.text, { color: themes[theme].bodyText }]}> - {I18n.t('Cancel')} - </Text> - </Button> - ) : null), [theme, data, hide]); - - const renderItem = useCallback(({ item }) => <Item item={item} hide={hide} theme={theme} />, []); - - const animatedPosition = React.useRef(new Value(0)); - const opacity = interpolate(animatedPosition.current, { - inputRange: [0, 1], - outputRange: [0, themes[theme].backdropOpacity], - extrapolate: Extrapolate.CLAMP, - }); - - return ( - <> - {children} - {isVisible && ( +const ActionSheet = React.memo( + forwardRef(({ children, theme }: { children: JSX.Element; theme: string }, ref) => { + const bottomSheetRef: any = useRef(); + const [data, setData] = useState<IActionSheetData>({} as IActionSheetData); + const [isVisible, setVisible] = useState(false); + const { height }: Partial<IDimensionsContextProps> = useDimensions(); + const { isLandscape } = useOrientation(); + const insets = useSafeAreaInsets(); + + const maxSnap = Math.max( + height! - + // Items height + ITEM_HEIGHT * (data?.options?.length || 0) - + // Handle height + HANDLE_HEIGHT - + // Custom header height + (data?.headerHeight || 0) - + // Insets bottom height (Notch devices) + insets.bottom - + // Cancel button height + (data?.hasCancel ? CANCEL_HEIGHT : 0), + MAX_SNAP_HEIGHT + ); + + /* + * if the action sheet cover more + * than 60% of the whole screen + * and it's not at the landscape mode + * we'll provide more one snap + * that point 50% of the whole screen + */ + const snaps: any = height! - maxSnap > height! * 0.6 && !isLandscape ? [maxSnap, height! * 0.5, height] : [maxSnap, height]; + const openedSnapIndex = snaps.length > 2 ? 1 : 0; + const closedSnapIndex = snaps.length - 1; + + const toggleVisible = () => setVisible(!isVisible); + + const hide = () => { + bottomSheetRef.current?.snapTo(closedSnapIndex); + }; + + const show = (options: any) => { + setData(options); + toggleVisible(); + }; + + const onBackdropPressed = ({ nativeEvent }: any) => { + if (nativeEvent.oldState === State.ACTIVE) { + hide(); + } + }; + + useBackHandler(() => { + if (isVisible) { + hide(); + } + return isVisible; + }); + + useEffect(() => { + if (isVisible) { + Keyboard.dismiss(); + Haptics.impactAsync(Haptics.ImpactFeedbackStyle.Light); + bottomSheetRef.current?.snapTo(openedSnapIndex); + } + }, [isVisible]); + + // Hides action sheet when orientation changes + useEffect(() => { + setVisible(false); + }, [isLandscape]); + + useImperativeHandle(ref, () => ({ + showActionSheet: show, + hideActionSheet: hide + })); + + const renderHandle = useCallback( + () => ( <> - <TapGestureHandler onHandlerStateChange={onBackdropPressed}> - <Animated.View - testID='action-sheet-backdrop' - style={[ - styles.backdrop, - { - backgroundColor: themes[theme].backdropColor, - opacity, - }, - ]} - /> - </TapGestureHandler> - <ScrollBottomSheet - testID='action-sheet' - ref={bottomSheetRef} - componentType='FlatList' - snapPoints={snaps} - initialSnapIndex={closedSnapIndex} - renderHandle={renderHandle} - onSettle={(index) => (index === closedSnapIndex) && toggleVisible()} - animatedPosition={animatedPosition.current} - containerStyle={[ - styles.container, - { backgroundColor: themes[theme].focusedBackground }, - (isLandscape || isTablet) && styles.bottomSheet, - ] as any} - animationConfig={ANIMATION_CONFIG} - // FlatList props - data={data?.options} - renderItem={renderItem} - keyExtractor={(item: any) => item.title} - style={{ backgroundColor: themes[theme].focusedBackground }} - contentContainerStyle={styles.content} - ItemSeparatorComponent={List.Separator} - ListHeaderComponent={List.Separator} - ListFooterComponent={renderFooter} - getItemLayout={getItemLayout} - removeClippedSubviews={isIOS} - /> + <Handle theme={theme} /> + {isValidElement(data?.customHeader) ? data.customHeader : null} </> - )} - </> - ); -})); + ), + [theme, data] + ); + + const renderFooter = useCallback( + () => + data?.hasCancel ? ( + <Button onPress={hide} style={[styles.button, { backgroundColor: themes[theme].auxiliaryBackground }]} theme={theme}> + <Text style={[styles.text, { color: themes[theme].bodyText }]}>{I18n.t('Cancel')}</Text> + </Button> + ) : null, + [theme, data, hide] + ); + + const renderItem = useCallback(({ item }) => <Item item={item} hide={hide} theme={theme} />, []); + + const animatedPosition = React.useRef(new Value(0)); + const opacity = interpolate(animatedPosition.current, { + inputRange: [0, 1], + outputRange: [0, themes[theme].backdropOpacity], + extrapolate: Extrapolate.CLAMP + }); + + return ( + <> + {children} + {isVisible && ( + <> + <TapGestureHandler onHandlerStateChange={onBackdropPressed}> + <Animated.View + testID='action-sheet-backdrop' + style={[ + styles.backdrop, + { + backgroundColor: themes[theme].backdropColor, + opacity + } + ]} + /> + </TapGestureHandler> + <ScrollBottomSheet + testID='action-sheet' + ref={bottomSheetRef} + componentType='FlatList' + snapPoints={snaps} + initialSnapIndex={closedSnapIndex} + renderHandle={renderHandle} + onSettle={index => index === closedSnapIndex && toggleVisible()} + animatedPosition={animatedPosition.current} + containerStyle={ + [ + styles.container, + { backgroundColor: themes[theme].focusedBackground }, + (isLandscape || isTablet) && styles.bottomSheet + ] as any + } + animationConfig={ANIMATION_CONFIG} + // FlatList props + data={data?.options} + renderItem={renderItem} + keyExtractor={(item: any) => item.title} + style={{ backgroundColor: themes[theme].focusedBackground }} + contentContainerStyle={styles.content} + ItemSeparatorComponent={List.Separator} + ListHeaderComponent={List.Separator} + ListFooterComponent={renderFooter} + getItemLayout={getItemLayout} + removeClippedSubviews={isIOS} + /> + </> + )} + </> + ); + }) +); export default ActionSheet; diff --git a/app/containers/ActionSheet/Handle.tsx b/app/containers/ActionSheet/Handle.tsx index 1e00208463..d95262d1ed 100644 --- a/app/containers/ActionSheet/Handle.tsx +++ b/app/containers/ActionSheet/Handle.tsx @@ -4,7 +4,7 @@ import { View } from 'react-native'; import styles from './styles'; import { themes } from '../../constants/colors'; -export const Handle = React.memo(({ theme }: {theme: string}) => ( +export const Handle = React.memo(({ theme }: { theme: string }) => ( <View style={[styles.handle, { backgroundColor: themes[theme].focusedBackground }]} testID='action-sheet-handle'> <View style={[styles.handleIndicator, { backgroundColor: themes[theme].auxiliaryText }]} /> </View> diff --git a/app/containers/ActionSheet/Item.tsx b/app/containers/ActionSheet/Item.tsx index aca9dc2152..47a3de5a7d 100644 --- a/app/containers/ActionSheet/Item.tsx +++ b/app/containers/ActionSheet/Item.tsx @@ -15,7 +15,7 @@ interface IActionSheetItem { onPress(): void; right: Function; }; - theme: string + theme: string; hide(): void; } @@ -30,22 +30,16 @@ export const Item = React.memo(({ item, hide, theme }: IActionSheetItem) => { onPress={onPress} style={[styles.item, { backgroundColor: themes[theme].focusedBackground }]} theme={theme} - testID={item.testID} - > + testID={item.testID}> <CustomIcon name={item.icon} size={20} color={item.danger ? themes[theme].dangerColor : themes[theme].bodyText} /> <View style={styles.titleContainer}> <Text numberOfLines={1} - style={[styles.title, { color: item.danger ? themes[theme].dangerColor : themes[theme].bodyText }]} - > + style={[styles.title, { color: item.danger ? themes[theme].dangerColor : themes[theme].bodyText }]}> {item.title} </Text> </View> - { item.right ? ( - <View style={styles.rightContainer}> - {item.right ? item.right() : null} - </View> - ) : null } + {item.right ? <View style={styles.rightContainer}>{item.right ? item.right() : null}</View> : null} </Button> ); }); diff --git a/app/containers/ActionSheet/Provider.tsx b/app/containers/ActionSheet/Provider.tsx index 49239ddc75..2bd2ac31d3 100644 --- a/app/containers/ActionSheet/Provider.tsx +++ b/app/containers/ActionSheet/Provider.tsx @@ -10,20 +10,19 @@ interface IActionSheetProvider { const context: IActionSheetProvider = React.createContext({ showActionSheet: () => {}, - hideActionSheet: () => {}, + hideActionSheet: () => {} }); export const useActionSheet = () => useContext(context); const { Provider, Consumer } = context; -export const withActionSheet = (Component: React.FC) => forwardRef((props: any, ref: ForwardedRef<any>) => ( - <Consumer> - {(contexts: any) => <Component {...props} {...contexts} ref={ref} />} - </Consumer> -)); +export const withActionSheet = (Component: React.FC) => + forwardRef((props: any, ref: ForwardedRef<any>) => ( + <Consumer>{(contexts: any) => <Component {...props} {...contexts} ref={ref} />}</Consumer> + )); -export const ActionSheetProvider = React.memo(({ children }: {children: JSX.Element}) => { +export const ActionSheetProvider = React.memo(({ children }: { children: JSX.Element }) => { const ref: ForwardedRef<any> = useRef(); const { theme }: any = useTheme(); @@ -33,7 +32,7 @@ export const ActionSheetProvider = React.memo(({ children }: {children: JSX.Elem }, hideActionSheet: () => { ref.current?.hideActionSheet(); - }, + } }); return ( diff --git a/app/containers/ActionSheet/styles.ts b/app/containers/ActionSheet/styles.ts index 12143312e9..1b9397dc99 100644 --- a/app/containers/ActionSheet/styles.ts +++ b/app/containers/ActionSheet/styles.ts @@ -8,46 +8,46 @@ export default StyleSheet.create({ container: { overflow: 'hidden', borderTopLeftRadius: 16, - borderTopRightRadius: 16, + borderTopRightRadius: 16 }, item: { paddingHorizontal: 16, height: ITEM_HEIGHT, alignItems: 'center', - flexDirection: 'row', + flexDirection: 'row' }, separator: { - marginHorizontal: 16, + marginHorizontal: 16 }, content: { - paddingTop: 16, + paddingTop: 16 }, titleContainer: { - flex: 1, + flex: 1 }, title: { fontSize: 16, marginLeft: 16, - ...sharedStyles.textRegular, + ...sharedStyles.textRegular }, handle: { justifyContent: 'center', alignItems: 'center', - paddingBottom: 8, + paddingBottom: 8 }, handleIndicator: { width: 40, height: 4, borderRadius: 4, - margin: 8, + margin: 8 }, backdrop: { - ...StyleSheet.absoluteFillObject, + ...StyleSheet.absoluteFillObject }, bottomSheet: { width: '50%', alignSelf: 'center', - left: '25%', + left: '25%' }, button: { marginHorizontal: 16, @@ -55,14 +55,14 @@ export default StyleSheet.create({ justifyContent: 'center', height: ITEM_HEIGHT, borderRadius: 2, - marginBottom: 12, + marginBottom: 12 }, text: { fontSize: 16, ...sharedStyles.textMedium, - ...sharedStyles.textAlignCenter, + ...sharedStyles.textAlignCenter }, rightContainer: { - paddingLeft: 12, - }, + paddingLeft: 12 + } }); diff --git a/app/containers/ActivityIndicator.tsx b/app/containers/ActivityIndicator.tsx index 5153a99e35..69ef22ceb3 100644 --- a/app/containers/ActivityIndicator.tsx +++ b/app/containers/ActivityIndicator.tsx @@ -5,7 +5,7 @@ import { themes } from '../constants/colors'; type TTheme = 'light' | 'dark' | 'black' | string; -interface IActivityIndicator extends ActivityIndicatorProps{ +interface IActivityIndicator extends ActivityIndicatorProps { theme?: TTheme; absolute?: boolean; props?: object; @@ -14,7 +14,7 @@ interface IActivityIndicator extends ActivityIndicatorProps{ const styles = StyleSheet.create({ indicator: { padding: 16, - flex: 1, + flex: 1 }, absolute: { position: 'absolute', @@ -23,16 +23,12 @@ const styles = StyleSheet.create({ top: 0, bottom: 0, alignItems: 'center', - justifyContent: 'center', - }, + justifyContent: 'center' + } }); const RCActivityIndicator = ({ theme = 'light', absolute, ...props }: IActivityIndicator) => ( - <ActivityIndicator - style={[styles.indicator, absolute && styles.absolute]} - color={themes[theme].auxiliaryText} - {...props} - /> + <ActivityIndicator style={[styles.indicator, absolute && styles.absolute]} color={themes[theme].auxiliaryText} {...props} /> ); export default RCActivityIndicator; diff --git a/app/containers/AppVersion.tsx b/app/containers/AppVersion.tsx index a6748e2d70..217f46d440 100644 --- a/app/containers/AppVersion.tsx +++ b/app/containers/AppVersion.tsx @@ -9,20 +9,23 @@ import I18n from '../i18n'; const styles = StyleSheet.create({ container: { alignItems: 'center', - justifyContent: 'flex-end', + justifyContent: 'flex-end' }, text: { ...sharedStyles.textRegular, - fontSize: 13, + fontSize: 13 }, bold: { - ...sharedStyles.textSemibold, - }, + ...sharedStyles.textSemibold + } }); -const AppVersion = React.memo(({ theme }: {theme: string}) => ( +const AppVersion = React.memo(({ theme }: { theme: string }) => ( <View style={styles.container}> - <Text style={[styles.text, { color: themes[theme].auxiliaryText }]}>{I18n.t('Version_no', { version: '' })}<Text style={styles.bold}>{getReadableVersion}</Text></Text> + <Text style={[styles.text, { color: themes[theme].auxiliaryText }]}> + {I18n.t('Version_no', { version: '' })} + <Text style={styles.bold}>{getReadableVersion}</Text> + </Text> </View> )); diff --git a/app/containers/Avatar/Avatar.tsx b/app/containers/Avatar/Avatar.tsx index b7216f5a23..e35f0f5892 100644 --- a/app/containers/Avatar/Avatar.tsx +++ b/app/containers/Avatar/Avatar.tsx @@ -8,92 +8,89 @@ import { avatarURL } from '../../utils/avatar'; import Emoji from '../markdown/Emoji'; import { IAvatar } from './interfaces'; -const Avatar = React.memo(({ - server, - style, - avatar, - children, - user, - onPress, - emoji, - theme, - getCustomEmoji, - avatarETag, - isStatic, - rid, - blockUnauthenticatedAccess, - serverVersion, - text, - size = 25, - borderRadius = 4, - type = 'd', -}: Partial<IAvatar>) => { - if ((!text && !avatar && !emoji && !rid) || !server) { - return null; - } +const Avatar = React.memo( + ({ + server, + style, + avatar, + children, + user, + onPress, + emoji, + theme, + getCustomEmoji, + avatarETag, + isStatic, + rid, + blockUnauthenticatedAccess, + serverVersion, + text, + size = 25, + borderRadius = 4, + type = 'd' + }: Partial<IAvatar>) => { + if ((!text && !avatar && !emoji && !rid) || !server) { + return null; + } - const avatarStyle = { - width: size, - height: size, - borderRadius, - }; + const avatarStyle = { + width: size, + height: size, + borderRadius + }; - let image; - if (emoji) { - image = ( - <Emoji - theme={theme} - baseUrl={server} - getCustomEmoji={getCustomEmoji} - isMessageContainsOnlyEmoji - literal={emoji} - style={avatarStyle} - /> - ); - } else { - let uri = avatar; - if (!isStatic) { - uri = avatarURL({ - type, - text, - size, - user, - avatar, - server, - avatarETag, - serverVersion, - rid, - blockUnauthenticatedAccess, - }); + let image; + if (emoji) { + image = ( + <Emoji + theme={theme} + baseUrl={server} + getCustomEmoji={getCustomEmoji} + isMessageContainsOnlyEmoji + literal={emoji} + style={avatarStyle} + /> + ); + } else { + let uri = avatar; + if (!isStatic) { + uri = avatarURL({ + type, + text, + size, + user, + avatar, + server, + avatarETag, + serverVersion, + rid, + blockUnauthenticatedAccess + }); + } + + image = ( + <FastImage + style={avatarStyle} + source={{ + uri, + headers: RocketChatSettings.customHeaders, + priority: FastImage.priority.high + }} + /> + ); } - image = ( - <FastImage - style={avatarStyle} - source={{ - uri, - headers: RocketChatSettings.customHeaders, - priority: FastImage.priority.high, - }} - /> - ); - } + if (onPress) { + image = <Touchable onPress={onPress}>{image}</Touchable>; + } - if (onPress) { - image = ( - <Touchable onPress={onPress}> + return ( + <View style={[avatarStyle, style]}> {image} - </Touchable> + {children} + </View> ); } - - - return ( - <View style={[avatarStyle, style]}> - {image} - {children} - </View> - ); -}); +); export default Avatar; diff --git a/app/containers/Avatar/index.tsx b/app/containers/Avatar/index.tsx index ddbefd7e59..9c95db8390 100644 --- a/app/containers/Avatar/index.tsx +++ b/app/containers/Avatar/index.tsx @@ -14,7 +14,7 @@ class AvatarContainer extends React.Component<Partial<IAvatar>, any> { static defaultProps = { text: '', - type: 'd', + type: 'd' }; constructor(props: Partial<IAvatar>) { @@ -72,23 +72,17 @@ class AvatarContainer extends React.Component<Partial<IAvatar>, any> { if (this.mounted) { this.setState({ avatarETag }); } else { - // @ts-ignore + // @ts-ignore this.state.avatarETag = avatarETag; } }); } - } + }; render() { const { avatarETag } = this.state; const { serverVersion } = this.props; - return ( - <Avatar - avatarETag={avatarETag} - serverVersion={serverVersion} - {...this.props} - /> - ); + return <Avatar avatarETag={avatarETag} serverVersion={serverVersion} {...this.props} />; } } @@ -97,8 +91,8 @@ const mapStateToProps = (state: any) => ({ server: state.share.server.server || state.server.server, serverVersion: state.share.server.version || state.server.version, blockUnauthenticatedAccess: - state.share.settings?.Accounts_AvatarBlockUnauthenticatedAccess - ?? state.settings.Accounts_AvatarBlockUnauthenticatedAccess - ?? true, + state.share.settings?.Accounts_AvatarBlockUnauthenticatedAccess ?? + state.settings.Accounts_AvatarBlockUnauthenticatedAccess ?? + true }); export default connect(mapStateToProps)(AvatarContainer); diff --git a/app/containers/Avatar/interfaces.ts b/app/containers/Avatar/interfaces.ts index e759b16b79..692c4d0a34 100644 --- a/app/containers/Avatar/interfaces.ts +++ b/app/containers/Avatar/interfaces.ts @@ -1,6 +1,6 @@ export interface IAvatar { server: string; - style: any, + style: any; text: string; avatar: string; emoji: string; diff --git a/app/containers/BackgroundContainer/index.stories.js b/app/containers/BackgroundContainer/index.stories.js index 0a9228dfa0..4d1abfb654 100644 --- a/app/containers/BackgroundContainer/index.stories.js +++ b/app/containers/BackgroundContainer/index.stories.js @@ -8,42 +8,24 @@ import BackgroundContainer from '.'; const stories = storiesOf('BackgroundContainer', module); -stories.add('basic', () => ( - <BackgroundContainer /> -)); +stories.add('basic', () => <BackgroundContainer />); -stories.add('loading', () => ( - <BackgroundContainer loading /> -)); +stories.add('loading', () => <BackgroundContainer loading />); -stories.add('text', () => ( - <BackgroundContainer text='Text here' /> -)); +stories.add('text', () => <BackgroundContainer text='Text here' />); -stories.add('long text', () => ( - <BackgroundContainer text={longText} /> -)); +stories.add('long text', () => <BackgroundContainer text={longText} />); const ThemeStory = ({ theme, ...props }) => ( - <ThemeContext.Provider - value={{ theme }} - > + <ThemeContext.Provider value={{ theme }}> <BackgroundContainer {...props} /> </ThemeContext.Provider> ); -stories.add('dark theme - loading', () => ( - <ThemeStory theme='dark' loading /> -)); +stories.add('dark theme - loading', () => <ThemeStory theme='dark' loading />); -stories.add('dark theme - text', () => ( - <ThemeStory theme='dark' text={longText} /> -)); +stories.add('dark theme - text', () => <ThemeStory theme='dark' text={longText} />); -stories.add('black theme - loading', () => ( - <ThemeStory theme='black' loading /> -)); +stories.add('black theme - loading', () => <ThemeStory theme='black' loading />); -stories.add('black theme - text', () => ( - <ThemeStory theme='black' text={longText} /> -)); +stories.add('black theme - text', () => <ThemeStory theme='black' text={longText} />); diff --git a/app/containers/BackgroundContainer/index.tsx b/app/containers/BackgroundContainer/index.tsx index d8ee23b09c..1b6a341dc7 100644 --- a/app/containers/BackgroundContainer/index.tsx +++ b/app/containers/BackgroundContainer/index.tsx @@ -13,12 +13,12 @@ interface IBackgroundContainer { const styles = StyleSheet.create({ container: { - flex: 1, + flex: 1 }, image: { width: '100%', height: '100%', - position: 'absolute', + position: 'absolute' }, text: { position: 'absolute', @@ -28,13 +28,13 @@ const styles = StyleSheet.create({ fontSize: 16, paddingHorizontal: 24, ...sharedStyles.textRegular, - ...sharedStyles.textAlignCenter, - }, + ...sharedStyles.textAlignCenter + } }); const BackgroundContainer = ({ theme, text, loading }: IBackgroundContainer) => ( <View style={styles.container}> - <ImageBackground source={{ uri: `message_empty_${ theme }` }} style={styles.image} /> + <ImageBackground source={{ uri: `message_empty_${theme}` }} style={styles.image} /> {text ? <Text style={[styles.text, { color: themes[theme].auxiliaryTintColor }]}>{text}</Text> : null} {/* @ts-ignore*/} {loading ? <ActivityIndicator style={[styles.text, { color: themes[theme].auxiliaryTintColor }]} /> : null} diff --git a/app/containers/Button/index.tsx b/app/containers/Button/index.tsx index 81b49fe0eb..4f57776d13 100644 --- a/app/containers/Button/index.tsx +++ b/app/containers/Button/index.tsx @@ -8,15 +8,15 @@ import ActivityIndicator from '../ActivityIndicator'; interface IButtonProps { title: string; - type: string + type: string; onPress(): void; disabled: boolean; - backgroundColor: string + backgroundColor: string; loading: boolean; - theme: string - color: string - fontSize: any - style: any + theme: string; + color: string; + fontSize: any; + style: any; testID: string; } @@ -26,16 +26,16 @@ const styles = StyleSheet.create({ justifyContent: 'center', height: 48, borderRadius: 2, - marginBottom: 12, + marginBottom: 12 }, text: { fontSize: 16, ...sharedStyles.textMedium, - ...sharedStyles.textAlignCenter, + ...sharedStyles.textAlignCenter }, disabled: { - opacity: 0.3, - }, + opacity: 0.3 + } }); export default class Button extends React.PureComponent<Partial<IButtonProps>, any> { @@ -44,13 +44,11 @@ export default class Button extends React.PureComponent<Partial<IButtonProps>, a type: 'primary', onPress: () => alert('It works!'), disabled: false, - loading: false, - } + loading: false + }; render() { - const { - title, type, onPress, disabled, backgroundColor, color, loading, style, theme, fontSize, ...otherProps - } = this.props; + const { title, type, onPress, disabled, backgroundColor, color, loading, style, theme, fontSize, ...otherProps } = this.props; const isPrimary = type === 'primary'; let textColor = isPrimary ? themes[theme!].buttonText : themes[theme!].bodyText; @@ -68,26 +66,16 @@ export default class Button extends React.PureComponent<Partial<IButtonProps>, a ? { backgroundColor } : { backgroundColor: isPrimary ? themes[theme!].actionTintColor : themes[theme!].backgroundColor }, disabled && styles.disabled, - style, + style ]} - {...otherProps} - > - { - loading - ? <ActivityIndicator color={textColor} /> - : ( - <Text - style={[ - styles.text, - { color: textColor }, - fontSize && { fontSize }, - ]} - accessibilityLabel={title} - > - {title} - </Text> - ) - } + {...otherProps}> + {loading ? ( + <ActivityIndicator color={textColor} /> + ) : ( + <Text style={[styles.text, { color: textColor }, fontSize && { fontSize }]} accessibilityLabel={title}> + {title} + </Text> + )} </Touchable> ); } diff --git a/app/containers/Check.tsx b/app/containers/Check.tsx index 8142f049d9..9ee489dfda 100644 --- a/app/containers/Check.tsx +++ b/app/containers/Check.tsx @@ -12,10 +12,12 @@ const styles = StyleSheet.create({ icon: { width: 22, height: 22, - marginHorizontal: 15, - }, + marginHorizontal: 15 + } }); -const Check = React.memo(({ theme, style }: ICheck) => <CustomIcon style={[styles.icon, style]} color={themes[theme].tintColor} size={22} name='check' />); +const Check = React.memo(({ theme, style }: ICheck) => ( + <CustomIcon style={[styles.icon, style]} color={themes[theme].tintColor} size={22} name='check' /> +)); export default Check; diff --git a/app/containers/EmojiPicker/CustomEmoji.tsx b/app/containers/EmojiPicker/CustomEmoji.tsx index 08cb3f5b4a..f64fa2ae56 100644 --- a/app/containers/EmojiPicker/CustomEmoji.tsx +++ b/app/containers/EmojiPicker/CustomEmoji.tsx @@ -3,19 +3,22 @@ import FastImage from '@rocket.chat/react-native-fast-image'; import { ICustomEmoji } from './interfaces'; -const CustomEmoji = React.memo(({ baseUrl, emoji, style }: ICustomEmoji) => ( - <FastImage - style={style} - source={{ - uri: `${ baseUrl }/emoji-custom/${ encodeURIComponent(emoji.content || emoji.name) }.${ emoji.extension }`, - priority: FastImage.priority.high, - }} - resizeMode={FastImage.resizeMode.contain} - /> -), (prevProps, nextProps) => { - const prevEmoji = prevProps.emoji.content || prevProps.emoji.name; - const nextEmoji = nextProps.emoji.content || nextProps.emoji.name; - return prevEmoji === nextEmoji; -}); +const CustomEmoji = React.memo( + ({ baseUrl, emoji, style }: ICustomEmoji) => ( + <FastImage + style={style} + source={{ + uri: `${baseUrl}/emoji-custom/${encodeURIComponent(emoji.content || emoji.name)}.${emoji.extension}`, + priority: FastImage.priority.high + }} + resizeMode={FastImage.resizeMode.contain} + /> + ), + (prevProps, nextProps) => { + const prevEmoji = prevProps.emoji.content || prevProps.emoji.name; + const nextEmoji = nextProps.emoji.content || nextProps.emoji.name; + return prevEmoji === nextEmoji; + } +); export default CustomEmoji; diff --git a/app/containers/EmojiPicker/EmojiCategory.tsx b/app/containers/EmojiPicker/EmojiCategory.tsx index 4fdef75ecd..62285fe873 100644 --- a/app/containers/EmojiPicker/EmojiCategory.tsx +++ b/app/containers/EmojiPicker/EmojiCategory.tsx @@ -11,11 +11,17 @@ const EMOJI_SIZE = 50; const renderEmoji = (emoji: IEmoji, size: number, baseUrl: string) => { if (emoji && emoji.isCustom) { - return <CustomEmoji style={[styles.customCategoryEmoji, { height: size - 16, width: size - 16 }]} emoji={emoji} baseUrl={baseUrl} />; + return ( + <CustomEmoji + style={[styles.customCategoryEmoji, { height: size - 16, width: size - 16 }]} + emoji={emoji} + baseUrl={baseUrl} + /> + ); } return ( <Text style={[styles.categoryEmoji, { height: size, width: size, fontSize: size - 14 }]}> - {shortnameToUnicode(`:${ emoji }:`)} + {shortnameToUnicode(`:${emoji}:`)} </Text> ); }; @@ -28,8 +34,7 @@ class EmojiCategory extends React.Component<Partial<IEmojiCategory>> { activeOpacity={0.7} key={emoji && emoji.isCustom ? emoji.content : emoji} onPress={() => onEmojiSelected!(emoji)} - testID={`reaction-picker-${ emoji && emoji.isCustom ? emoji.content : emoji }`} - > + testID={`reaction-picker-${emoji && emoji.isCustom ? emoji.content : emoji}`}> {renderEmoji(emoji, EMOJI_SIZE, baseUrl!)} </TouchableOpacity> ); @@ -43,15 +48,15 @@ class EmojiCategory extends React.Component<Partial<IEmojiCategory>> { } const numColumns = Math.trunc(width / EMOJI_SIZE); - const marginHorizontal = (width - (numColumns * EMOJI_SIZE)) / 2; + const marginHorizontal = (width - numColumns * EMOJI_SIZE) / 2; return ( // @ts-ignore <FlatList contentContainerStyle={{ marginHorizontal }} // rerender FlatList in case of width changes - key={`emoji-category-${ width }`} - keyExtractor={(item) => (item && item.isCustom && item.content) || item} + key={`emoji-category-${width}`} + keyExtractor={item => (item && item.isCustom && item.content) || item} data={emojis} extraData={this.props} renderItem={({ item }) => this.renderItem(item)} diff --git a/app/containers/EmojiPicker/TabBar.tsx b/app/containers/EmojiPicker/TabBar.tsx index 5d521cc7bb..2517d6d15f 100644 --- a/app/containers/EmojiPicker/TabBar.tsx +++ b/app/containers/EmojiPicker/TabBar.tsx @@ -6,10 +6,10 @@ import { themes } from '../../constants/colors'; interface ITabBarProps { goToPage: Function; - activeTab: number, - tabs: [], - tabEmojiStyle: object, - theme: string + activeTab: number; + tabs: []; + tabEmojiStyle: object; + theme: string; } export default class TabBar extends React.Component<Partial<ITabBarProps>> { @@ -35,10 +35,13 @@ export default class TabBar extends React.Component<Partial<ITabBarProps>> { key={tab} onPress={() => goToPage!(i)} style={styles.tab} - testID={`reaction-picker-${ tab }`} - > + testID={`reaction-picker-${tab}`}> <Text style={[styles.tabEmoji, tabEmojiStyle]}>{tab}</Text> - {activeTab === i ? <View style={[styles.activeTabLine, { backgroundColor: themes[theme!].tintColor }]} /> : <View style={styles.tabLine} />} + {activeTab === i ? ( + <View style={[styles.activeTabLine, { backgroundColor: themes[theme!].tintColor }]} /> + ) : ( + <View style={styles.tabLine} /> + )} </TouchableOpacity> ))} </View> diff --git a/app/containers/EmojiPicker/categories.ts b/app/containers/EmojiPicker/categories.ts index 982f1d668b..a95f67cf69 100644 --- a/app/containers/EmojiPicker/categories.ts +++ b/app/containers/EmojiPicker/categories.ts @@ -2,43 +2,43 @@ const list = ['frequentlyUsed', 'custom', 'people', 'nature', 'food', 'activity' const tabs = [ { tabLabel: '🕒', - category: list[0], + category: list[0] }, { tabLabel: '🚀', - category: list[1], + category: list[1] }, { tabLabel: '😃', - category: list[2], + category: list[2] }, { tabLabel: '🐶', - category: list[3], + category: list[3] }, { tabLabel: '🍔', - category: list[4], + category: list[4] }, { tabLabel: '⚽', - category: list[5], + category: list[5] }, { tabLabel: '🚌', - category: list[6], + category: list[6] }, { tabLabel: '💡', - category: list[7], + category: list[7] }, { tabLabel: '💛', - category: list[8], + category: list[8] }, { tabLabel: '🏁', - category: list[9], - }, + category: list[9] + } ]; export default { list, tabs }; diff --git a/app/containers/EmojiPicker/index.tsx b/app/containers/EmojiPicker/index.tsx index a634b7ff84..2e9a78bebb 100644 --- a/app/containers/EmojiPicker/index.tsx +++ b/app/containers/EmojiPicker/index.tsx @@ -21,7 +21,7 @@ import { IEmoji } from './interfaces'; const scrollProps = { keyboardShouldPersistTaps: 'always', - keyboardDismissMode: 'none', + keyboardDismissMode: 'none' }; interface IEmojiPickerProps { @@ -46,17 +46,17 @@ class EmojiPicker extends Component<IEmojiPickerProps, IEmojiPickerState> { constructor(props: IEmojiPickerProps) { super(props); const customEmojis = Object.keys(props.customEmojis) - .filter((item) => item === props.customEmojis[item].name) - .map((item) => ({ + .filter(item => item === props.customEmojis[item].name) + .map(item => ({ content: props.customEmojis[item].name, extension: props.customEmojis[item].extension, - isCustom: true, + isCustom: true })); this.state = { frequentlyUsed: [], customEmojis, show: false, - width: null, + width: null }; } @@ -88,19 +88,21 @@ class EmojiPicker extends Component<IEmojiPickerProps, IEmojiPickerState> { const { onEmojiSelected } = this.props; if (emoji.isCustom) { this._addFrequentlyUsed({ - content: emoji.content, extension: emoji.extension, isCustom: true, + content: emoji.content, + extension: emoji.extension, + isCustom: true }); - onEmojiSelected!(`:${ emoji.content }:`); + onEmojiSelected!(`:${emoji.content}:`); } else { const content = emoji; this._addFrequentlyUsed({ content, isCustom: false }); - const shortname = `:${ emoji }:`; + const shortname = `:${emoji}:`; onEmojiSelected!(shortnameToUnicode(shortname), shortname); } } catch (e) { log(e); } - } + }; // eslint-disable-next-line react/sort-comp _addFrequentlyUsed = protectedFunction(async (emoji: IEmoji) => { @@ -126,7 +128,7 @@ class EmojiPicker extends Component<IEmojiPickerProps, IEmojiPickerState> { }); } }); - }) + }); updateFrequentlyUsed = async () => { const db = database.active; @@ -136,12 +138,16 @@ class EmojiPicker extends Component<IEmojiPickerProps, IEmojiPickerState> { if (item.isCustom) { return { content: item.content, extension: item.extension, isCustom: item.isCustom }; } - return shortnameToUnicode(`${ item.content }`); + return shortnameToUnicode(`${item.content}`); }); this.setState({ frequentlyUsed }); - } + }; - onLayout = ({ nativeEvent: { layout: { width } } }: any) => this.setState({ width }); + onLayout = ({ + nativeEvent: { + layout: { width } + } + }: any) => this.setState({ width }); renderCategory(category: any, i: number, label: string) { const { frequentlyUsed, customEmojis, width } = this.state; @@ -158,7 +164,7 @@ class EmojiPicker extends Component<IEmojiPickerProps, IEmojiPickerState> { return ( <EmojiCategory emojis={emojis} - onEmojiSelected={(emoji) => this.onEmojiSelected(emoji)} + onEmojiSelected={emoji => this.onEmojiSelected(emoji)} style={styles.categoryContainer} width={width!} baseUrl={baseUrl} @@ -180,14 +186,12 @@ class EmojiPicker extends Component<IEmojiPickerProps, IEmojiPickerState> { renderTabBar={() => <TabBar tabEmojiStyle={tabEmojiStyle} theme={theme} />} /* @ts-ignore*/ contentProps={scrollProps} - style={{ backgroundColor: themes[theme!].focusedBackground }} - > - { - categories.tabs.map((tab, i) => ( - i === 0 && frequentlyUsed.length === 0 ? null // when no frequentlyUsed don't show the tab - : this.renderCategory(tab.category, i, tab.tabLabel) - )) - } + style={{ backgroundColor: themes[theme!].focusedBackground }}> + {categories.tabs.map((tab, i) => + i === 0 && frequentlyUsed.length === 0 + ? null // when no frequentlyUsed don't show the tab + : this.renderCategory(tab.category, i, tab.tabLabel) + )} </ScrollableTabView> </View> ); @@ -195,7 +199,7 @@ class EmojiPicker extends Component<IEmojiPickerProps, IEmojiPickerState> { } const mapStateToProps = (state: any) => ({ - customEmojis: state.customEmojis, + customEmojis: state.customEmojis }); export default connect(mapStateToProps)(withTheme(EmojiPicker)); diff --git a/app/containers/EmojiPicker/interfaces.ts b/app/containers/EmojiPicker/interfaces.ts index ff21e95469..288497f9a4 100644 --- a/app/containers/EmojiPicker/interfaces.ts +++ b/app/containers/EmojiPicker/interfaces.ts @@ -6,9 +6,9 @@ export interface IEmoji { } export interface ICustomEmoji { - baseUrl: string, - emoji: IEmoji, - style: any + baseUrl: string; + emoji: IEmoji; + style: any; } export interface IEmojiCategory { diff --git a/app/containers/EmojiPicker/styles.ts b/app/containers/EmojiPicker/styles.ts index b3a35a97a8..ca1263275d 100644 --- a/app/containers/EmojiPicker/styles.ts +++ b/app/containers/EmojiPicker/styles.ts @@ -4,29 +4,29 @@ import sharedStyles from '../../views/Styles'; export default StyleSheet.create({ container: { - flex: 1, + flex: 1 }, tabsContainer: { height: 45, flexDirection: 'row', - paddingTop: 5, + paddingTop: 5 }, tab: { flex: 1, alignItems: 'center', justifyContent: 'center', - paddingBottom: 10, + paddingBottom: 10 }, tabEmoji: { fontSize: 20, - color: 'black', + color: 'black' }, activeTabLine: { position: 'absolute', left: 0, right: 0, height: 2, - bottom: 0, + bottom: 0 }, tabLine: { position: 'absolute', @@ -34,25 +34,25 @@ export default StyleSheet.create({ right: 0, height: 2, backgroundColor: 'rgba(0,0,0,0.05)', - bottom: 0, + bottom: 0 }, categoryContainer: { flex: 1, - alignItems: 'flex-start', + alignItems: 'flex-start' }, categoryInner: { flexWrap: 'wrap', flexDirection: 'row', alignItems: 'center', justifyContent: 'flex-start', - flex: 1, + flex: 1 }, categoryEmoji: { ...sharedStyles.textAlignCenter, backgroundColor: 'transparent', - color: '#ffffff', + color: '#ffffff' }, customCategoryEmoji: { - margin: 8, - }, + margin: 8 + } }); diff --git a/app/containers/FormContainer.tsx b/app/containers/FormContainer.tsx index 49452419ca..522bf489e4 100644 --- a/app/containers/FormContainer.tsx +++ b/app/containers/FormContainer.tsx @@ -18,14 +18,12 @@ interface IFormContainer { const styles = StyleSheet.create({ scrollView: { - minHeight: '100%', - }, + minHeight: '100%' + } }); -export const FormContainerInner = ({ children }: {children: JSX.Element}) => ( - <View style={[sharedStyles.container, isTablet && sharedStyles.tabletScreenContent]}> - {children} - </View> +export const FormContainerInner = ({ children }: { children: JSX.Element }) => ( + <View style={[sharedStyles.container, isTablet && sharedStyles.tabletScreenContent]}>{children}</View> ); const FormContainer = ({ children, theme, testID, ...props }: IFormContainer) => ( @@ -33,16 +31,14 @@ const FormContainer = ({ children, theme, testID, ...props }: IFormContainer) => <KeyboardView style={{ backgroundColor: themes[theme].backgroundColor }} contentContainerStyle={sharedStyles.container} - keyboardVerticalOffset={128} - > + keyboardVerticalOffset={128}> <StatusBar /> {/* @ts-ignore*/} <ScrollView style={sharedStyles.container} contentContainerStyle={[sharedStyles.containerScrollView, styles.scrollView]} {...scrollPersistTaps} - {...props} - > + {...props}> <SafeAreaView testID={testID} style={{ backgroundColor: themes[theme].backgroundColor }}> {children} <AppVersion theme={theme} /> diff --git a/app/containers/Header/index.tsx b/app/containers/Header/index.tsx index 9e40ebbe06..e9f7837c6e 100644 --- a/app/containers/Header/index.tsx +++ b/app/containers/Header/index.tsx @@ -30,7 +30,7 @@ interface IHeaderTitlePosition { export const getHeaderTitlePosition = ({ insets, numIconsRight }: IHeaderTitlePosition) => ({ left: insets.left + 60, - right: insets.right + Math.max(45 * numIconsRight, 15), + right: insets.right + Math.max(45 * numIconsRight, 15) }); const styles = StyleSheet.create({ @@ -38,8 +38,8 @@ const styles = StyleSheet.create({ height: headerHeight, flexDirection: 'row', justifyContent: 'center', - elevation: 4, - }, + elevation: 4 + } }); interface IHeader { diff --git a/app/containers/HeaderButton/Common.tsx b/app/containers/HeaderButton/Common.tsx index e00cb8a1a0..f1e00628ca 100644 --- a/app/containers/HeaderButton/Common.tsx +++ b/app/containers/HeaderButton/Common.tsx @@ -18,18 +18,21 @@ export const Drawer = React.memo(({ navigation, testID, ...props }: Partial<IHea </Container> )); -export const CloseModal = React.memo(({ navigation, testID, onPress = () => navigation.pop(), ...props }: IHeaderButtonCommon) => ( - <Container left> - <Item iconName='close' onPress={onPress} testID={testID} {...props} /> - </Container> -)); +export const CloseModal = React.memo( + ({ navigation, testID, onPress = () => navigation.pop(), ...props }: IHeaderButtonCommon) => ( + <Container left> + <Item iconName='close' onPress={onPress} testID={testID} {...props} /> + </Container> + ) +); export const CancelModal = React.memo(({ onPress, testID }: Partial<IHeaderButtonCommon>) => ( <Container left> - {isIOS - ? <Item title={I18n.t('Cancel')} onPress={onPress} testID={testID} /> - : <Item iconName='close' onPress={onPress} testID={testID} /> - } + {isIOS ? ( + <Item title={I18n.t('Cancel')} onPress={onPress} testID={testID} /> + ) : ( + <Item iconName='close' onPress={onPress} testID={testID} /> + )} </Container> )); diff --git a/app/containers/HeaderButton/HeaderButtonContainer.tsx b/app/containers/HeaderButton/HeaderButtonContainer.tsx index 55875cb33f..2d4c45b6f3 100644 --- a/app/containers/HeaderButton/HeaderButtonContainer.tsx +++ b/app/containers/HeaderButton/HeaderButtonContainer.tsx @@ -10,20 +10,18 @@ const styles = StyleSheet.create({ container: { flexDirection: 'row', alignItems: 'center', - justifyContent: 'center', + justifyContent: 'center' }, left: { - marginLeft: 5, + marginLeft: 5 }, right: { - marginRight: 5, - }, + marginRight: 5 + } }); const Container = ({ children, left = false }: IHeaderButtonContainer) => ( - <View style={[styles.container, left ? styles.left : styles.right]}> - {children} - </View> + <View style={[styles.container, left ? styles.left : styles.right]}>{children}</View> ); Container.displayName = 'HeaderButton.Container'; diff --git a/app/containers/HeaderButton/HeaderButtonItem.tsx b/app/containers/HeaderButton/HeaderButtonItem.tsx index 1020db1b51..b350232d0b 100644 --- a/app/containers/HeaderButton/HeaderButtonItem.tsx +++ b/app/containers/HeaderButton/HeaderButtonItem.tsx @@ -17,34 +17,37 @@ interface IHeaderButtonItem { } export const BUTTON_HIT_SLOP = { - top: 5, right: 5, bottom: 5, left: 5, + top: 5, + right: 5, + bottom: 5, + left: 5 }; const styles = StyleSheet.create({ container: { - marginHorizontal: 6, + marginHorizontal: 6 }, title: { ...Platform.select({ android: { - fontSize: 14, + fontSize: 14 }, default: { - fontSize: 17, - }, + fontSize: 17 + } }), - ...sharedStyles.textRegular, - }, + ...sharedStyles.textRegular + } }); const Item = ({ title, iconName, onPress, testID, theme, badge }: IHeaderButtonItem) => ( <Touchable onPress={onPress} testID={testID} hitSlop={BUTTON_HIT_SLOP} style={styles.container}> <> - { - iconName - ? <CustomIcon name={iconName} size={24} color={themes[theme].headerTintColor} /> - : <Text style={[styles.title, { color: themes[theme].headerTintColor }]}>{title}</Text> - } + {iconName ? ( + <CustomIcon name={iconName} size={24} color={themes[theme].headerTintColor} /> + ) : ( + <Text style={[styles.title, { color: themes[theme].headerTintColor }]}>{title}</Text> + )} {badge ? badge() : null} </> </Touchable> diff --git a/app/containers/HeaderButton/HeaderButtonItemBadge.tsx b/app/containers/HeaderButton/HeaderButtonItemBadge.tsx index 3f61a653fe..9634c8bde5 100644 --- a/app/containers/HeaderButton/HeaderButtonItemBadge.tsx +++ b/app/containers/HeaderButton/HeaderButtonItemBadge.tsx @@ -11,16 +11,10 @@ const styles = StyleSheet.create({ top: -3, borderRadius: 10, alignItems: 'center', - justifyContent: 'center', - }, + justifyContent: 'center' + } }); -export const Badge = ({ ...props }) => ( - <UnreadBadge - {...props} - style={styles.badgeContainer} - small - /> -); +export const Badge = ({ ...props }) => <UnreadBadge {...props} style={styles.badgeContainer} small />; export default Badge; diff --git a/app/containers/InAppNotification/NotifierComponent.tsx b/app/containers/InAppNotification/NotifierComponent.tsx index b428cc495b..4264b2eeaa 100644 --- a/app/containers/InAppNotification/NotifierComponent.tsx +++ b/app/containers/InAppNotification/NotifierComponent.tsx @@ -32,36 +32,36 @@ const styles = StyleSheet.create({ justifyContent: 'space-between', marginHorizontal: 10, borderWidth: StyleSheet.hairlineWidth, - borderRadius: 4, + borderRadius: 4 }, content: { flex: 1, flexDirection: 'row', - alignItems: 'center', + alignItems: 'center' }, inner: { - flex: 1, + flex: 1 }, avatar: { - marginRight: 10, + marginRight: 10 }, roomName: { fontSize: 17, lineHeight: 20, - ...sharedStyles.textMedium, + ...sharedStyles.textMedium }, message: { fontSize: 14, lineHeight: 17, - ...sharedStyles.textRegular, + ...sharedStyles.textRegular }, close: { - marginLeft: 10, + marginLeft: 10 }, small: { width: '50%', - alignSelf: 'center', - }, + alignSelf: 'center' + } }); const hideNotification = () => Notifier.hideNotification(); @@ -83,7 +83,10 @@ const NotifierComponent = React.memo(({ notification, isMasterDetail }: INotifie return; } const item = { - rid, name: title, t: type, prid, + rid, + name: title, + t: type, + prid }; if (isMasterDetail) { @@ -96,35 +99,34 @@ const NotifierComponent = React.memo(({ notification, isMasterDetail }: INotifie }; return ( - <View style={[ - styles.container, - (isMasterDetail || isLandscape) && styles.small, - { - backgroundColor: themes[theme].focusedBackground, - borderColor: themes[theme].separatorColor, - marginTop: insets.top, - }, - ]} - > + <View + style={[ + styles.container, + (isMasterDetail || isLandscape) && styles.small, + { + backgroundColor: themes[theme].focusedBackground, + borderColor: themes[theme].separatorColor, + marginTop: insets.top + } + ]}> <Touchable style={styles.content} onPress={onPress} hitSlop={BUTTON_HIT_SLOP} - background={Touchable.SelectableBackgroundBorderless()} - > + background={Touchable.SelectableBackgroundBorderless()}> <> <Avatar text={avatar} size={AVATAR_SIZE} type={type} rid={rid} style={styles.avatar} /> <View style={styles.inner}> - <Text style={[styles.roomName, { color: themes[theme].titleText }]} numberOfLines={1}>{title}</Text> - <Text style={[styles.message, { color: themes[theme].titleText }]} numberOfLines={1}>{text}</Text> + <Text style={[styles.roomName, { color: themes[theme].titleText }]} numberOfLines={1}> + {title} + </Text> + <Text style={[styles.message, { color: themes[theme].titleText }]} numberOfLines={1}> + {text} + </Text> </View> </> </Touchable> - <Touchable - onPress={hideNotification} - hitSlop={BUTTON_HIT_SLOP} - background={Touchable.SelectableBackgroundBorderless()} - > + <Touchable onPress={hideNotification} hitSlop={BUTTON_HIT_SLOP} background={Touchable.SelectableBackgroundBorderless()}> <CustomIcon name='close' style={[styles.close, { color: themes[theme].titleText }]} size={20} /> </Touchable> </View> @@ -132,7 +134,7 @@ const NotifierComponent = React.memo(({ notification, isMasterDetail }: INotifie }); const mapStateToProps = (state: any) => ({ - isMasterDetail: state.app.isMasterDetail, + isMasterDetail: state.app.isMasterDetail }); export default connect(mapStateToProps)(NotifierComponent); diff --git a/app/containers/InAppNotification/index.tsx b/app/containers/InAppNotification/index.tsx index ba75c58503..e708231b14 100644 --- a/app/containers/InAppNotification/index.tsx +++ b/app/containers/InAppNotification/index.tsx @@ -10,42 +10,45 @@ import { getActiveRoute } from '../../utils/navigation'; export const INAPP_NOTIFICATION_EMITTER = 'NotificationInApp'; -const InAppNotification = memo(({ rooms, appState }: {rooms: any, appState: string}) => { - const show = (notification: any) => { - if (appState !== 'foreground') { - return; - } - - const { payload } = notification; - const state = Navigation.navigationRef.current?.getRootState(); - const route = getActiveRoute(state); - if (payload.rid) { - if (rooms.includes(payload.rid) || route?.name === 'JitsiMeetView') { +const InAppNotification = memo( + ({ rooms, appState }: { rooms: any; appState: string }) => { + const show = (notification: any) => { + if (appState !== 'foreground') { return; } - Notifier.showNotification({ - showEasing: Easing.inOut(Easing.quad), - Component: NotifierComponent, - componentProps: { - notification, - }, - }); - } - }; - - useEffect(() => { - const listener = EventEmitter.addEventListener(INAPP_NOTIFICATION_EMITTER, show); - return () => { - EventEmitter.removeListener(INAPP_NOTIFICATION_EMITTER, listener); + + const { payload } = notification; + const state = Navigation.navigationRef.current?.getRootState(); + const route = getActiveRoute(state); + if (payload.rid) { + if (rooms.includes(payload.rid) || route?.name === 'JitsiMeetView') { + return; + } + Notifier.showNotification({ + showEasing: Easing.inOut(Easing.quad), + Component: NotifierComponent, + componentProps: { + notification + } + }); + } }; - }, [rooms]); - return <NotifierRoot />; -}, (prevProps, nextProps) => dequal(prevProps.rooms, nextProps.rooms)); + useEffect(() => { + const listener = EventEmitter.addEventListener(INAPP_NOTIFICATION_EMITTER, show); + return () => { + EventEmitter.removeListener(INAPP_NOTIFICATION_EMITTER, listener); + }; + }, [rooms]); + + return <NotifierRoot />; + }, + (prevProps, nextProps) => dequal(prevProps.rooms, nextProps.rooms) +); const mapStateToProps = (state: any) => ({ rooms: state.room.rooms, - appState: state.app.ready && state.app.foreground ? 'foreground' : 'background', + appState: state.app.ready && state.app.foreground ? 'foreground' : 'background' }); export default connect(mapStateToProps)(InAppNotification); diff --git a/app/containers/List/ListContainer.tsx b/app/containers/List/ListContainer.tsx index ea55d6cf2c..408310d9f6 100644 --- a/app/containers/List/ListContainer.tsx +++ b/app/containers/List/ListContainer.tsx @@ -6,8 +6,8 @@ import scrollPersistTaps from '../../utils/scrollPersistTaps'; const styles = StyleSheet.create({ container: { - paddingVertical: 16, - }, + paddingVertical: 16 + } }); interface IListContainer { @@ -19,8 +19,7 @@ const ListContainer = React.memo(({ children, ...props }: IListContainer) => ( contentContainerStyle={styles.container} scrollIndicatorInsets={{ right: 1 }} // https://github.com/facebook/react-native/issues/26610#issuecomment-539843444 {...scrollPersistTaps} - {...props} - > + {...props}> {children} </ScrollView> )); diff --git a/app/containers/List/ListHeader.tsx b/app/containers/List/ListHeader.tsx index 775ec47713..0b67550e36 100644 --- a/app/containers/List/ListHeader.tsx +++ b/app/containers/List/ListHeader.tsx @@ -10,12 +10,12 @@ import { PADDING_HORIZONTAL } from './constants'; const styles = StyleSheet.create({ container: { paddingBottom: 12, - paddingHorizontal: PADDING_HORIZONTAL, + paddingHorizontal: PADDING_HORIZONTAL }, title: { fontSize: 16, - ...sharedStyles.textRegular, - }, + ...sharedStyles.textRegular + } }); interface IListHeader { @@ -26,7 +26,9 @@ interface IListHeader { const ListHeader = React.memo(({ title, theme, translateTitle = true }: IListHeader) => ( <View style={styles.container}> - <Text style={[styles.title, { color: themes[theme].infoText }]} numberOfLines={1}>{translateTitle ? I18n.t(title) : title}</Text> + <Text style={[styles.title, { color: themes[theme].infoText }]} numberOfLines={1}> + {translateTitle ? I18n.t(title) : title} + </Text> </View> )); diff --git a/app/containers/List/ListIcon.tsx b/app/containers/List/ListIcon.tsx index 137343dc6d..7d569dce7f 100644 --- a/app/containers/List/ListIcon.tsx +++ b/app/containers/List/ListIcon.tsx @@ -17,18 +17,13 @@ interface IListIcon { const styles = StyleSheet.create({ icon: { alignItems: 'center', - justifyContent: 'center', - }, + justifyContent: 'center' + } }); const ListIcon = React.memo(({ theme, name, color, style, testID }: IListIcon) => ( <View style={[styles.icon, style]}> - <CustomIcon - name={name} - color={color ?? themes[theme].auxiliaryText} - size={ICON_SIZE} - testID={testID} - /> + <CustomIcon name={name} color={color ?? themes[theme].auxiliaryText} size={ICON_SIZE} testID={testID} /> </View> )); diff --git a/app/containers/List/ListInfo.tsx b/app/containers/List/ListInfo.tsx index 14d75cb59e..bc4f02e334 100644 --- a/app/containers/List/ListInfo.tsx +++ b/app/containers/List/ListInfo.tsx @@ -10,12 +10,12 @@ import I18n from '../../i18n'; const styles = StyleSheet.create({ container: { paddingTop: 8, - paddingHorizontal: PADDING_HORIZONTAL, + paddingHorizontal: PADDING_HORIZONTAL }, text: { fontSize: 14, - ...sharedStyles.textRegular, - }, + ...sharedStyles.textRegular + } }); interface IListHeader { diff --git a/app/containers/List/ListItem.tsx b/app/containers/List/ListItem.tsx index 2840902d91..a05eaf9adc 100644 --- a/app/containers/List/ListItem.tsx +++ b/app/containers/List/ListItem.tsx @@ -17,42 +17,40 @@ const styles = StyleSheet.create({ flexDirection: 'row', alignItems: 'center', justifyContent: 'center', - paddingHorizontal: PADDING_HORIZONTAL, + paddingHorizontal: PADDING_HORIZONTAL }, leftContainer: { - paddingRight: PADDING_HORIZONTAL, + paddingRight: PADDING_HORIZONTAL }, rightContainer: { - paddingLeft: PADDING_HORIZONTAL, + paddingLeft: PADDING_HORIZONTAL }, disabled: { - opacity: 0.3, + opacity: 0.3 }, textContainer: { flex: 1, - justifyContent: 'center', + justifyContent: 'center' }, textAlertContainer: { flexDirection: 'row', - alignItems: 'center', + alignItems: 'center' }, alertIcon: { - paddingLeft: 4, + paddingLeft: 4 }, title: { flexShrink: 1, fontSize: 16, - ...sharedStyles.textRegular, + ...sharedStyles.textRegular }, subtitle: { fontSize: 14, - ...sharedStyles.textRegular, + ...sharedStyles.textRegular }, actionIndicator: { - ...I18nManager.isRTL - ? { transform: [{ rotate: '180deg' }] } - : {}, - }, + ...(I18nManager.isRTL ? { transform: [{ rotate: '180deg' }] } : {}) + } }); interface IListItemContent { @@ -71,39 +69,48 @@ interface IListItemContent { alert?: boolean; } -const Content = React.memo(({ - title, subtitle, disabled, testID, left, right, color, theme, fontScale, alert, translateTitle = true, translateSubtitle = true, showActionIndicator = false, -}: IListItemContent) => ( - <View style={[styles.container, disabled && styles.disabled, { height: BASE_HEIGHT * fontScale! }]} testID={testID}> - {left - ? ( - <View style={styles.leftContainer}> - {left()} +const Content = React.memo( + ({ + title, + subtitle, + disabled, + testID, + left, + right, + color, + theme, + fontScale, + alert, + translateTitle = true, + translateSubtitle = true, + showActionIndicator = false + }: IListItemContent) => ( + <View style={[styles.container, disabled && styles.disabled, { height: BASE_HEIGHT * fontScale! }]} testID={testID}> + {left ? <View style={styles.leftContainer}>{left()}</View> : null} + <View style={styles.textContainer}> + <View style={styles.textAlertContainer}> + <Text style={[styles.title, { color: color || themes[theme].titleText }]} numberOfLines={1}> + {translateTitle ? I18n.t(title) : title} + </Text> + {alert ? ( + <CustomIcon style={[styles.alertIcon, { color: themes[theme].dangerColor }]} size={ICON_SIZE} name='info' /> + ) : null} </View> - ) - : null} - <View style={styles.textContainer}> - <View style={styles.textAlertContainer}> - <Text style={[styles.title, { color: color || themes[theme].titleText }]} numberOfLines={1}>{translateTitle ? I18n.t(title) : title}</Text> - {alert ? ( - <CustomIcon style={[styles.alertIcon, { color: themes[theme].dangerColor }]} size={ICON_SIZE} name='info' /> + {subtitle ? ( + <Text style={[styles.subtitle, { color: themes[theme].auxiliaryText }]} numberOfLines={1}> + {translateSubtitle ? I18n.t(subtitle) : subtitle} + </Text> ) : null} </View> - {subtitle - ? <Text style={[styles.subtitle, { color: themes[theme].auxiliaryText }]} numberOfLines={1}>{translateSubtitle ? I18n.t(subtitle) : subtitle}</Text> - : null - } - </View> - {right || showActionIndicator - ? ( + {right || showActionIndicator ? ( <View style={styles.rightContainer}> {right ? right() : null} {showActionIndicator ? <Icon name='chevron-right' style={styles.actionIndicator} /> : null} </View> - ) - : null} - </View> -)); + ) : null} + </View> + ) +); interface IListItemButton { title?: string; @@ -120,8 +127,7 @@ const Button = React.memo(({ onPress, backgroundColor, underlayColor, ...props } style={{ backgroundColor: backgroundColor || themes[props.theme].backgroundColor }} underlayColor={underlayColor} enabled={!props.disabled} - theme={props.theme} - > + theme={props.theme}> <Content {...props} /> </Touch> )); diff --git a/app/containers/List/ListSection.tsx b/app/containers/List/ListSection.tsx index 0acd2a78f2..7607ad12d7 100644 --- a/app/containers/List/ListSection.tsx +++ b/app/containers/List/ListSection.tsx @@ -6,8 +6,8 @@ import { Header } from '.'; const styles = StyleSheet.create({ container: { - marginVertical: 16, - }, + marginVertical: 16 + } }); interface IListSection { diff --git a/app/containers/List/ListSeparator.tsx b/app/containers/List/ListSeparator.tsx index 94c7e3f552..6a78ef65ec 100644 --- a/app/containers/List/ListSeparator.tsx +++ b/app/containers/List/ListSeparator.tsx @@ -6,8 +6,8 @@ import { withTheme } from '../../theme'; const styles = StyleSheet.create({ separator: { - height: StyleSheet.hairlineWidth, - }, + height: StyleSheet.hairlineWidth + } }); interface IListSeparator { @@ -16,13 +16,7 @@ interface IListSeparator { } const ListSeparator = React.memo(({ style, theme }: IListSeparator) => ( - <View - style={[ - styles.separator, - style, - { backgroundColor: themes[theme].separatorColor }, - ]} - /> + <View style={[styles.separator, style, { backgroundColor: themes[theme].separatorColor }]} /> )); ListSeparator.displayName = 'List.Separator'; diff --git a/app/containers/List/styles.ts b/app/containers/List/styles.ts index c7e316f8b8..2c09042849 100644 --- a/app/containers/List/styles.ts +++ b/app/containers/List/styles.ts @@ -2,6 +2,6 @@ import { StyleSheet } from 'react-native'; export const styles = StyleSheet.create({ contentContainerStyleFlatList: { - paddingVertical: 32, - }, + paddingVertical: 32 + } }); diff --git a/app/containers/Loading.tsx b/app/containers/Loading.tsx index f963112b6e..6bcc3baa0d 100644 --- a/app/containers/Loading.tsx +++ b/app/containers/Loading.tsx @@ -8,13 +8,13 @@ const styles = StyleSheet.create({ container: { flex: 1, alignItems: 'center', - justifyContent: 'center', + justifyContent: 'center' }, image: { width: 100, height: 100, - resizeMode: 'contain', - }, + resizeMode: 'contain' + } }); interface ILoadingProps { @@ -25,8 +25,8 @@ interface ILoadingProps { class Loading extends React.PureComponent<ILoadingProps, any> { state = { scale: new Animated.Value(1), - opacity: new Animated.Value(0), - } + opacity: new Animated.Value(0) + }; private opacityAnimation: any; @@ -36,32 +36,25 @@ class Loading extends React.PureComponent<ILoadingProps, any> { const { opacity, scale } = this.state; const { visible } = this.props; - this.opacityAnimation = Animated.timing( - opacity, - { - toValue: 1, - duration: 200, - useNativeDriver: true, - }, - ); - this.scaleAnimation = Animated.loop(Animated.sequence([ - Animated.timing( - scale, - { + this.opacityAnimation = Animated.timing(opacity, { + toValue: 1, + duration: 200, + useNativeDriver: true + }); + this.scaleAnimation = Animated.loop( + Animated.sequence([ + Animated.timing(scale, { toValue: 0, duration: 1000, - useNativeDriver: true, - }, - ), - Animated.timing( - scale, - { + useNativeDriver: true + }), + Animated.timing(scale, { toValue: 1, duration: 1000, - useNativeDriver: true, - }, - ), - ])); + useNativeDriver: true + }) + ]) + ); if (visible) { this.startAnimations(); @@ -99,40 +92,40 @@ class Loading extends React.PureComponent<ILoadingProps, any> { const scaleAnimation = scale.interpolate({ inputRange: [0, 0.5, 1], - outputRange: [1, 1.1, 1], + outputRange: [1, 1.1, 1] }); const opacityAnimation = opacity.interpolate({ inputRange: [0, 1], outputRange: [0, themes[theme].backdropOpacity], - extrapolate: 'clamp', + extrapolate: 'clamp' }); return ( - <Modal - visible={visible} - transparent - onRequestClose={() => {}} - > - <View - style={styles.container} - testID='loading' - > + <Modal visible={visible} transparent onRequestClose={() => {}}> + <View style={styles.container} testID='loading'> <Animated.View - style={[{ - // @ts-ignore - ...StyleSheet.absoluteFill, - backgroundColor: themes[theme].backdropColor, - opacity: opacityAnimation, - }]} + style={[ + { + // @ts-ignore + ...StyleSheet.absoluteFill, + backgroundColor: themes[theme].backdropColor, + opacity: opacityAnimation + } + ]} /> <Animated.Image source={require('../static/images/logo.png')} - style={[styles.image, { - transform: [{ - scale: scaleAnimation, - }], - }]} + style={[ + styles.image, + { + transform: [ + { + scale: scaleAnimation + } + ] + } + ]} /> </View> </Modal> diff --git a/app/containers/LoginServices.tsx b/app/containers/LoginServices.tsx index 732284821c..bf175dd70c 100644 --- a/app/containers/LoginServices.tsx +++ b/app/containers/LoginServices.tsx @@ -27,7 +27,7 @@ const LOGIN_STYPE_REDIRECT = 'redirect'; const styles = StyleSheet.create({ serviceButton: { borderRadius: BORDER_RADIUS, - marginBottom: 10, + marginBottom: 10 }, serviceButtonContainer: { borderRadius: BORDER_RADIUS, @@ -36,25 +36,25 @@ const styles = StyleSheet.create({ flexDirection: 'row', alignItems: 'center', justifyContent: 'center', - paddingHorizontal: 15, + paddingHorizontal: 15 }, serviceIcon: { position: 'absolute', left: 15, top: 12, width: 24, - height: 24, + height: 24 }, serviceText: { ...sharedStyles.textRegular, - fontSize: 16, + fontSize: 16 }, serviceName: { - ...sharedStyles.textSemibold, + ...sharedStyles.textSemibold }, options: { - marginBottom: 0, - }, + marginBottom: 0 + } }); interface IOpenOAuth { @@ -75,13 +75,13 @@ interface ILoginServicesProps { navigation: any; server: string; services: { - facebook: {clientId: string;}; - github: {clientId: string;}; - gitlab: {clientId: string;}; - google: {clientId: string;}; - linkedin: {clientId: string;}; - 'meteor-developer': {clientId: string;}; - wordpress: {clientId: string; serverURL: string;}; + facebook: { clientId: string }; + github: { clientId: string }; + gitlab: { clientId: string }; + google: { clientId: string }; + linkedin: { clientId: string }; + 'meteor-developer': { clientId: string }; + wordpress: { clientId: string; serverURL: string }; }; Gitlab_URL: string; CAS_enabled: boolean; @@ -94,138 +94,136 @@ class LoginServices extends React.PureComponent<ILoginServicesProps, any> { private _animation: any; static defaultProps = { - separator: true, - } + separator: true + }; state = { collapsed: true, - servicesHeight: new Animated.Value(SERVICES_COLLAPSED_HEIGHT), - } + servicesHeight: new Animated.Value(SERVICES_COLLAPSED_HEIGHT) + }; onPressFacebook = () => { logEvent(events.ENTER_WITH_FACEBOOK); const { services, server } = this.props; const { clientId } = services.facebook; const endpoint = 'https://m.facebook.com/v2.9/dialog/oauth'; - const redirect_uri = `${ server }/_oauth/facebook?close`; + const redirect_uri = `${server}/_oauth/facebook?close`; const scope = 'email'; const state = this.getOAuthState(); - const params = `?client_id=${ clientId }&redirect_uri=${ redirect_uri }&scope=${ scope }&state=${ state }&display=touch`; - this.openOAuth({ url: `${ endpoint }${ params }` }); - } + const params = `?client_id=${clientId}&redirect_uri=${redirect_uri}&scope=${scope}&state=${state}&display=touch`; + this.openOAuth({ url: `${endpoint}${params}` }); + }; onPressGithub = () => { logEvent(events.ENTER_WITH_GITHUB); const { services, server } = this.props; const { clientId } = services.github; - const endpoint = `https://github.com/login?client_id=${ clientId }&return_to=${ encodeURIComponent('/login/oauth/authorize') }`; - const redirect_uri = `${ server }/_oauth/github?close`; + const endpoint = `https://github.com/login?client_id=${clientId}&return_to=${encodeURIComponent('/login/oauth/authorize')}`; + const redirect_uri = `${server}/_oauth/github?close`; const scope = 'user:email'; const state = this.getOAuthState(); - const params = `?client_id=${ clientId }&redirect_uri=${ redirect_uri }&scope=${ scope }&state=${ state }`; - this.openOAuth({ url: `${ endpoint }${ encodeURIComponent(params) }` }); - } + const params = `?client_id=${clientId}&redirect_uri=${redirect_uri}&scope=${scope}&state=${state}`; + this.openOAuth({ url: `${endpoint}${encodeURIComponent(params)}` }); + }; onPressGitlab = () => { logEvent(events.ENTER_WITH_GITLAB); const { services, server, Gitlab_URL } = this.props; const { clientId } = services.gitlab; const baseURL = Gitlab_URL ? Gitlab_URL.trim().replace(/\/*$/, '') : 'https://gitlab.com'; - const endpoint = `${ baseURL }/oauth/authorize`; - const redirect_uri = `${ server }/_oauth/gitlab?close`; + const endpoint = `${baseURL}/oauth/authorize`; + const redirect_uri = `${server}/_oauth/gitlab?close`; const scope = 'read_user'; const state = this.getOAuthState(); - const params = `?client_id=${ clientId }&redirect_uri=${ redirect_uri }&scope=${ scope }&state=${ state }&response_type=code`; - this.openOAuth({ url: `${ endpoint }${ params }` }); - } + const params = `?client_id=${clientId}&redirect_uri=${redirect_uri}&scope=${scope}&state=${state}&response_type=code`; + this.openOAuth({ url: `${endpoint}${params}` }); + }; onPressGoogle = () => { logEvent(events.ENTER_WITH_GOOGLE); const { services, server } = this.props; const { clientId } = services.google; const endpoint = 'https://accounts.google.com/o/oauth2/auth'; - const redirect_uri = `${ server }/_oauth/google?close`; + const redirect_uri = `${server}/_oauth/google?close`; const scope = 'email'; const state = this.getOAuthState(LOGIN_STYPE_REDIRECT); - const params = `?client_id=${ clientId }&redirect_uri=${ redirect_uri }&scope=${ scope }&state=${ state }&response_type=code`; - Linking.openURL(`${ endpoint }${ params }`); - } + const params = `?client_id=${clientId}&redirect_uri=${redirect_uri}&scope=${scope}&state=${state}&response_type=code`; + Linking.openURL(`${endpoint}${params}`); + }; onPressLinkedin = () => { logEvent(events.ENTER_WITH_LINKEDIN); const { services, server } = this.props; const { clientId } = services.linkedin; const endpoint = 'https://www.linkedin.com/oauth/v2/authorization'; - const redirect_uri = `${ server }/_oauth/linkedin?close`; + const redirect_uri = `${server}/_oauth/linkedin?close`; const scope = 'r_liteprofile,r_emailaddress'; const state = this.getOAuthState(); - const params = `?client_id=${ clientId }&redirect_uri=${ redirect_uri }&scope=${ scope }&state=${ state }&response_type=code`; - this.openOAuth({ url: `${ endpoint }${ params }` }); - } + const params = `?client_id=${clientId}&redirect_uri=${redirect_uri}&scope=${scope}&state=${state}&response_type=code`; + this.openOAuth({ url: `${endpoint}${params}` }); + }; onPressMeteor = () => { logEvent(events.ENTER_WITH_METEOR); const { services, server } = this.props; const { clientId } = services['meteor-developer']; const endpoint = 'https://www.meteor.com/oauth2/authorize'; - const redirect_uri = `${ server }/_oauth/meteor-developer`; + const redirect_uri = `${server}/_oauth/meteor-developer`; const state = this.getOAuthState(); - const params = `?client_id=${ clientId }&redirect_uri=${ redirect_uri }&state=${ state }&response_type=code`; - this.openOAuth({ url: `${ endpoint }${ params }` }); - } + const params = `?client_id=${clientId}&redirect_uri=${redirect_uri}&state=${state}&response_type=code`; + this.openOAuth({ url: `${endpoint}${params}` }); + }; onPressTwitter = () => { logEvent(events.ENTER_WITH_TWITTER); const { server } = this.props; const state = this.getOAuthState(); - const url = `${ server }/_oauth/twitter/?requestTokenAndRedirect=true&state=${ state }`; + const url = `${server}/_oauth/twitter/?requestTokenAndRedirect=true&state=${state}`; this.openOAuth({ url }); - } + }; onPressWordpress = () => { logEvent(events.ENTER_WITH_WORDPRESS); const { services, server } = this.props; const { clientId, serverURL } = services.wordpress; - const endpoint = `${ serverURL }/oauth/authorize`; - const redirect_uri = `${ server }/_oauth/wordpress?close`; + const endpoint = `${serverURL}/oauth/authorize`; + const redirect_uri = `${server}/_oauth/wordpress?close`; const scope = 'openid'; const state = this.getOAuthState(); - const params = `?client_id=${ clientId }&redirect_uri=${ redirect_uri }&scope=${ scope }&state=${ state }&response_type=code`; - this.openOAuth({ url: `${ endpoint }${ params }` }); - } + const params = `?client_id=${clientId}&redirect_uri=${redirect_uri}&scope=${scope}&state=${state}&response_type=code`; + this.openOAuth({ url: `${endpoint}${params}` }); + }; onPressCustomOAuth = (loginService: any) => { logEvent(events.ENTER_WITH_CUSTOM_OAUTH); const { server } = this.props; - const { - serverURL, authorizePath, clientId, scope, service, - } = loginService; - const redirectUri = `${ server }/_oauth/${ service }`; + const { serverURL, authorizePath, clientId, scope, service } = loginService; + const redirectUri = `${server}/_oauth/${service}`; const state = this.getOAuthState(); - const params = `?client_id=${ clientId }&redirect_uri=${ redirectUri }&response_type=code&state=${ state }&scope=${ scope }`; - const domain = `${ serverURL }`; - const absolutePath = `${ authorizePath }${ params }`; + const params = `?client_id=${clientId}&redirect_uri=${redirectUri}&response_type=code&state=${state}&scope=${scope}`; + const domain = `${serverURL}`; + const absolutePath = `${authorizePath}${params}`; const url = absolutePath.includes(domain) ? absolutePath : domain + absolutePath; this.openOAuth({ url }); - } + }; onPressSaml = (loginService: any) => { logEvent(events.ENTER_WITH_SAML); const { server } = this.props; - const { clientConfig } = loginService; - const { provider } = clientConfig; + const { clientConfig } = loginService; + const { provider } = clientConfig; const ssoToken = random(17); - const url = `${ server }/_saml/authorize/${ provider }/${ ssoToken }`; + const url = `${server}/_saml/authorize/${provider}/${ssoToken}`; this.openOAuth({ url, ssoToken, authType: 'saml' }); - } + }; onPressCas = () => { logEvent(events.ENTER_WITH_CAS); const { server, CAS_login_url } = this.props; const ssoToken = random(17); - const url = `${ CAS_login_url }?service=${ server }/_cas/${ ssoToken }`; + const url = `${CAS_login_url}?service=${server}/_cas/${ssoToken}`; this.openOAuth({ url, ssoToken, authType: 'cas' }); - } + }; onPressAppleLogin = async () => { logEvent(events.ENTER_WITH_APPLE); @@ -233,15 +231,15 @@ class LoginServices extends React.PureComponent<ILoginServicesProps, any> { const { fullName, email, identityToken } = await AppleAuthentication.signInAsync({ requestedScopes: [ AppleAuthentication.AppleAuthenticationScope.FULL_NAME, - AppleAuthentication.AppleAuthenticationScope.EMAIL, - ], + AppleAuthentication.AppleAuthenticationScope.EMAIL + ] }); await RocketChat.loginOAuthOrSso({ fullName, email, identityToken }); } catch { logEvent(events.ENTER_WITH_APPLE_F); } - } + }; getOAuthState = (loginStyle = LOGIN_STYPE_POPUP) => { const credentialToken = random(43); @@ -249,16 +247,16 @@ class LoginServices extends React.PureComponent<ILoginServicesProps, any> { if (loginStyle === LOGIN_STYPE_REDIRECT) { obj = { ...obj, - redirectUrl: 'rocketchat://auth', + redirectUrl: 'rocketchat://auth' }; } return Base64.encodeURI(JSON.stringify(obj)); - } + }; openOAuth = ({ url, ssoToken, authType = 'oauth' }: IOpenOAuth) => { const { navigation } = this.props; navigation.navigate('AuthenticationWebView', { url, authType, ssoToken }); - } + }; transitionServicesTo = (height: number) => { const { servicesHeight } = this.state; @@ -270,9 +268,9 @@ class LoginServices extends React.PureComponent<ILoginServicesProps, any> { toValue: height, duration: 300, // @ts-ignore - easing: Easing.easeOutCubic, + easing: Easing.easeOutCubic }).start(); - } + }; toggleServices = () => { const { collapsed } = this.state; @@ -284,7 +282,7 @@ class LoginServices extends React.PureComponent<ILoginServicesProps, any> { this.transitionServicesTo(SERVICES_COLLAPSED_HEIGHT); } this.setState((prevState: any) => ({ collapsed: !prevState.collapsed })); - } + }; getSocialOauthProvider = (name: string) => { const oauthProviders: any = { @@ -295,10 +293,10 @@ class LoginServices extends React.PureComponent<ILoginServicesProps, any> { linkedin: this.onPressLinkedin, 'meteor-developer': this.onPressMeteor, twitter: this.onPressTwitter, - wordpress: this.onPressWordpress, + wordpress: this.onPressWordpress }; return oauthProviders[name]; - } + }; renderServicesSeparator = () => { const { collapsed } = this.state; @@ -324,13 +322,13 @@ class LoginServices extends React.PureComponent<ILoginServicesProps, any> { return <OrSeparator theme={theme} />; } return null; - } + }; renderItem = (service: IService) => { const { CAS_enabled, theme } = this.props; let { name } = service; name = name === 'meteor-developer' ? 'meteor' : name; - const icon = `${ name }-monochromatic`; + const icon = `${name}-monochromatic`; const isSaml = service.service === 'saml'; let onPress = () => {}; @@ -380,15 +378,16 @@ class LoginServices extends React.PureComponent<ILoginServicesProps, any> { style={[styles.serviceButton, { backgroundColor }]} theme={theme} activeOpacity={0.5} - underlayColor={themes[theme].buttonText} - > + underlayColor={themes[theme].buttonText}> <View style={styles.serviceButtonContainer}> - {service.authType === 'oauth' || service.authType === 'apple' ? <CustomIcon name={icon} size={24} color={themes[theme].titleText} style={styles.serviceIcon} /> : null} + {service.authType === 'oauth' || service.authType === 'apple' ? ( + <CustomIcon name={icon} size={24} color={themes[theme].titleText} style={styles.serviceIcon} /> + ) : null} <Text style={[styles.serviceText, { color: themes[theme].titleText }]}>{buttonText}</Text> </View> </Touch> ); - } + }; render() { const { servicesHeight } = this.state; @@ -396,15 +395,13 @@ class LoginServices extends React.PureComponent<ILoginServicesProps, any> { const { length } = Object.values(services); const style = { overflow: 'hidden', - height: servicesHeight, + height: servicesHeight }; if (length > 3 && separator) { return ( <> - <Animated.View style={style}> - {Object.values(services).map((service: any) => this.renderItem(service))} - </Animated.View> + <Animated.View style={style}>{Object.values(services).map((service: any) => this.renderItem(service))}</Animated.View> {this.renderServicesSeparator()} </> ); @@ -423,7 +420,7 @@ const mapStateToProps = (state: any) => ({ Gitlab_URL: state.settings.API_Gitlab_URL, CAS_enabled: state.settings.CAS_enabled, CAS_login_url: state.settings.CAS_login_url, - services: state.login.services, + services: state.login.services }); export default connect(mapStateToProps)(withTheme(LoginServices)); diff --git a/app/containers/MessageActions/Header.tsx b/app/containers/MessageActions/Header.tsx index b89cec13d8..d3556ccb6b 100644 --- a/app/containers/MessageActions/Header.tsx +++ b/app/containers/MessageActions/Header.tsx @@ -40,7 +40,7 @@ const ITEM_MARGIN = 8; const styles = StyleSheet.create({ container: { alignItems: 'center', - marginHorizontal: CONTAINER_MARGIN, + marginHorizontal: CONTAINER_MARGIN }, headerItem: { height: ITEM_SIZE, @@ -48,17 +48,17 @@ const styles = StyleSheet.create({ borderRadius: ITEM_SIZE / 2, marginHorizontal: ITEM_MARGIN, justifyContent: 'center', - alignItems: 'center', + alignItems: 'center' }, headerIcon: { ...sharedStyles.textAlignCenter, fontSize: 20, - color: '#fff', + color: '#fff' }, customEmoji: { height: 20, - width: 20, - }, + width: 20 + } }); const keyExtractor = (item: any) => item?.id || item; @@ -67,17 +67,14 @@ const DEFAULT_EMOJIS = ['clap', '+1', 'heart_eyes', 'grinning', 'thinking_face', const HeaderItem = React.memo(({ item, onReaction, server, theme }: THeaderItem) => ( <Button - testID={`message-actions-emoji-${ item.content || item }`} - onPress={() => onReaction({ emoji: `:${ item.content || item }:` })} + testID={`message-actions-emoji-${item.content || item}`} + onPress={() => onReaction({ emoji: `:${item.content || item}:` })} style={[styles.headerItem, { backgroundColor: themes[theme].auxiliaryBackground }]} - theme={theme} - > + theme={theme}> {item?.isCustom ? ( <CustomEmoji style={styles.customEmoji} emoji={item} baseUrl={server} /> ) : ( - <Text style={styles.headerIcon}> - {shortnameToUnicode(`:${ item.content || item }:`)} - </Text> + <Text style={styles.headerIcon}>{shortnameToUnicode(`:${item.content || item}:`)}</Text> )} </Button> )); @@ -87,8 +84,7 @@ const HeaderFooter = React.memo(({ onReaction, theme }: THeaderFooter) => ( testID='add-reaction' onPress={onReaction} style={[styles.headerItem, { backgroundColor: themes[theme].auxiliaryBackground }]} - theme={theme} - > + theme={theme}> <CustomIcon name='reaction-add' size={24} color={themes[theme].bodyText} /> </Button> )); @@ -104,8 +100,8 @@ const Header = React.memo(({ handleReaction, server, message, isMasterDetail, th let freqEmojis = await freqEmojiCollection.query().fetch(); const isLandscape = width > height; - const size = (isLandscape || isMasterDetail ? width / 2 : width) - (CONTAINER_MARGIN * 2); - const quantity = (size / (ITEM_SIZE + (ITEM_MARGIN * 2))) - 1; + const size = (isLandscape || isMasterDetail ? width / 2 : width) - CONTAINER_MARGIN * 2; + const quantity = size / (ITEM_SIZE + ITEM_MARGIN * 2) - 1; freqEmojis = freqEmojis.concat(DEFAULT_EMOJIS).slice(0, quantity); setItems(freqEmojis); @@ -118,9 +114,12 @@ const Header = React.memo(({ handleReaction, server, message, isMasterDetail, th setEmojis(); }, []); - const onReaction = ({ emoji }: {emoji: IEmoji}) => handleReaction(emoji, message); + const onReaction = ({ emoji }: { emoji: IEmoji }) => handleReaction(emoji, message); - const renderItem = useCallback(({ item }) => <HeaderItem item={item} onReaction={onReaction} server={server} theme={theme} />, []); + const renderItem = useCallback( + ({ item }) => <HeaderItem item={item} onReaction={onReaction} server={server} theme={theme} />, + [] + ); const renderFooter = useCallback(() => <HeaderFooter onReaction={onReaction} theme={theme} />, []); diff --git a/app/containers/MessageActions/index.tsx b/app/containers/MessageActions/index.tsx index 8fc6740d28..eb9be9675e 100644 --- a/app/containers/MessageActions/index.tsx +++ b/app/containers/MessageActions/index.tsx @@ -47,421 +47,426 @@ interface IMessageActions { pinMessagePermission: []; } -const MessageActions = React.memo(forwardRef(({ - room, - tmid, - user, - editInit, - reactionInit, - onReactionPress, - replyInit, - isReadOnly, - server, - Message_AllowDeleting, - Message_AllowDeleting_BlockDeleteInMinutes, - Message_AllowEditing, - Message_AllowEditing_BlockEditInMinutes, - Message_AllowPinning, - Message_AllowStarring, - Message_Read_Receipt_Store_Users, - isMasterDetail, - editMessagePermission, - deleteMessagePermission, - forceDeleteMessagePermission, - pinMessagePermission, -}: IMessageActions, ref): any => { - let permissions: any = {}; - const { showActionSheet, hideActionSheet }: any = useActionSheet(); - - const getPermissions = async () => { - try { - const permission = [editMessagePermission, deleteMessagePermission, forceDeleteMessagePermission, pinMessagePermission]; - const result = await RocketChat.hasPermission(permission, room.rid); - permissions = { - hasEditPermission: result[0], - hasDeletePermission: result[1], - hasForceDeletePermission: result[2], - hasPinPermission: result[3], +const MessageActions = React.memo( + forwardRef( + ( + { + room, + tmid, + user, + editInit, + reactionInit, + onReactionPress, + replyInit, + isReadOnly, + server, + Message_AllowDeleting, + Message_AllowDeleting_BlockDeleteInMinutes, + Message_AllowEditing, + Message_AllowEditing_BlockEditInMinutes, + Message_AllowPinning, + Message_AllowStarring, + Message_Read_Receipt_Store_Users, + isMasterDetail, + editMessagePermission, + deleteMessagePermission, + forceDeleteMessagePermission, + pinMessagePermission + }: IMessageActions, + ref + ): any => { + let permissions: any = {}; + const { showActionSheet, hideActionSheet }: any = useActionSheet(); + + const getPermissions = async () => { + try { + const permission = [editMessagePermission, deleteMessagePermission, forceDeleteMessagePermission, pinMessagePermission]; + const result = await RocketChat.hasPermission(permission, room.rid); + permissions = { + hasEditPermission: result[0], + hasDeletePermission: result[1], + hasForceDeletePermission: result[2], + hasPinPermission: result[3] + }; + } catch { + // Do nothing + } }; - } catch { - // Do nothing - } - }; - const isOwn = (message: any) => message.u && message.u._id === user.id; + const isOwn = (message: any) => message.u && message.u._id === user.id; - const allowEdit = (message: any) => { - if (isReadOnly) { - return false; - } - const editOwn = isOwn(message); + const allowEdit = (message: any) => { + if (isReadOnly) { + return false; + } + const editOwn = isOwn(message); - if (!(permissions.hasEditPermission || (Message_AllowEditing && editOwn))) { - return false; - } - const blockEditInMinutes = Message_AllowEditing_BlockEditInMinutes; - if (blockEditInMinutes) { - let msgTs; - if (message.ts != null) { - msgTs = moment(message.ts); - } - let currentTsDiff: any; - if (msgTs != null) { - currentTsDiff = moment().diff(msgTs, 'minutes'); - } - return currentTsDiff < blockEditInMinutes; - } - return true; - }; + if (!(permissions.hasEditPermission || (Message_AllowEditing && editOwn))) { + return false; + } + const blockEditInMinutes = Message_AllowEditing_BlockEditInMinutes; + if (blockEditInMinutes) { + let msgTs; + if (message.ts != null) { + msgTs = moment(message.ts); + } + let currentTsDiff: any; + if (msgTs != null) { + currentTsDiff = moment().diff(msgTs, 'minutes'); + } + return currentTsDiff < blockEditInMinutes; + } + return true; + }; - const allowDelete = (message: any) => { - if (isReadOnly) { - return false; - } + const allowDelete = (message: any) => { + if (isReadOnly) { + return false; + } - // Prevent from deleting thread start message when positioned inside the thread - if (tmid === message.id) { - return false; - } - const deleteOwn = isOwn(message); - if (!(permissions.hasDeletePermission || (Message_AllowDeleting && deleteOwn) || permissions.hasForceDeletePermission)) { - return false; - } - if (permissions.hasForceDeletePermission) { - return true; - } - const blockDeleteInMinutes = Message_AllowDeleting_BlockDeleteInMinutes; - if (blockDeleteInMinutes != null && blockDeleteInMinutes !== 0) { - let msgTs; - if (message.ts != null) { - msgTs = moment(message.ts); - } - let currentTsDiff: any; - if (msgTs != null) { - currentTsDiff = moment().diff(msgTs, 'minutes'); - } - return currentTsDiff < blockDeleteInMinutes; - } - return true; - }; + // Prevent from deleting thread start message when positioned inside the thread + if (tmid === message.id) { + return false; + } + const deleteOwn = isOwn(message); + if (!(permissions.hasDeletePermission || (Message_AllowDeleting && deleteOwn) || permissions.hasForceDeletePermission)) { + return false; + } + if (permissions.hasForceDeletePermission) { + return true; + } + const blockDeleteInMinutes = Message_AllowDeleting_BlockDeleteInMinutes; + if (blockDeleteInMinutes != null && blockDeleteInMinutes !== 0) { + let msgTs; + if (message.ts != null) { + msgTs = moment(message.ts); + } + let currentTsDiff: any; + if (msgTs != null) { + currentTsDiff = moment().diff(msgTs, 'minutes'); + } + return currentTsDiff < blockDeleteInMinutes; + } + return true; + }; - const getPermalink = (message: any) => RocketChat.getPermalinkMessage(message); + const getPermalink = (message: any) => RocketChat.getPermalinkMessage(message); - const handleReply = (message: any) => { - logEvent(events.ROOM_MSG_ACTION_REPLY); - replyInit(message, true); - }; + const handleReply = (message: any) => { + logEvent(events.ROOM_MSG_ACTION_REPLY); + replyInit(message, true); + }; - const handleEdit = (message: any) => { - logEvent(events.ROOM_MSG_ACTION_EDIT); - editInit(message); - }; + const handleEdit = (message: any) => { + logEvent(events.ROOM_MSG_ACTION_EDIT); + editInit(message); + }; - const handleCreateDiscussion = (message: any) => { - logEvent(events.ROOM_MSG_ACTION_DISCUSSION); - const params = { message, channel: room, showCloseModal: true }; - if (isMasterDetail) { - Navigation.navigate('ModalStackNavigator', { screen: 'CreateDiscussionView', params }); - } else { - Navigation.navigate('NewMessageStackNavigator', { screen: 'CreateDiscussionView', params }); - } - }; + const handleCreateDiscussion = (message: any) => { + logEvent(events.ROOM_MSG_ACTION_DISCUSSION); + const params = { message, channel: room, showCloseModal: true }; + if (isMasterDetail) { + Navigation.navigate('ModalStackNavigator', { screen: 'CreateDiscussionView', params }); + } else { + Navigation.navigate('NewMessageStackNavigator', { screen: 'CreateDiscussionView', params }); + } + }; - const handleUnread = async (message: any) => { - logEvent(events.ROOM_MSG_ACTION_UNREAD); - const { id: messageId, ts } = message; - const { rid } = room; - try { - const db = database.active; - const result = await RocketChat.markAsUnread({ messageId }); - if (result.success) { - const subCollection = db.get('subscriptions'); - const subRecord = await subCollection.find(rid); - await db.action(async () => { - try { - await subRecord.update((sub: any) => sub.lastOpen = ts); - } catch { - // do nothing + const handleUnread = async (message: any) => { + logEvent(events.ROOM_MSG_ACTION_UNREAD); + const { id: messageId, ts } = message; + const { rid } = room; + try { + const db = database.active; + const result = await RocketChat.markAsUnread({ messageId }); + if (result.success) { + const subCollection = db.get('subscriptions'); + const subRecord = await subCollection.find(rid); + await db.action(async () => { + try { + await subRecord.update((sub: any) => (sub.lastOpen = ts)); + } catch { + // do nothing + } + }); + Navigation.navigate('RoomsListView'); } - }); - Navigation.navigate('RoomsListView'); - } - } catch (e) { - logEvent(events.ROOM_MSG_ACTION_UNREAD_F); - log(e); - } - }; - - const handlePermalink = async (message: any) => { - logEvent(events.ROOM_MSG_ACTION_PERMALINK); - try { - const permalink: any = await getPermalink(message); - Clipboard.setString(permalink); - EventEmitter.emit(LISTENER, { message: I18n.t('Permalink_copied_to_clipboard') }); - } catch { - logEvent(events.ROOM_MSG_ACTION_PERMALINK_F); - } - }; + } catch (e) { + logEvent(events.ROOM_MSG_ACTION_UNREAD_F); + log(e); + } + }; - const handleCopy = async (message: any) => { - logEvent(events.ROOM_MSG_ACTION_COPY); - await Clipboard.setString(message?.attachments?.[0]?.description || message.msg); - EventEmitter.emit(LISTENER, { message: I18n.t('Copied_to_clipboard') }); - }; + const handlePermalink = async (message: any) => { + logEvent(events.ROOM_MSG_ACTION_PERMALINK); + try { + const permalink: any = await getPermalink(message); + Clipboard.setString(permalink); + EventEmitter.emit(LISTENER, { message: I18n.t('Permalink_copied_to_clipboard') }); + } catch { + logEvent(events.ROOM_MSG_ACTION_PERMALINK_F); + } + }; - const handleShare = async (message: any) => { - logEvent(events.ROOM_MSG_ACTION_SHARE); - try { - const permalink: any = await getPermalink(message); - Share.share({ message: permalink }); - } catch { - logEvent(events.ROOM_MSG_ACTION_SHARE_F); - } - }; + const handleCopy = async (message: any) => { + logEvent(events.ROOM_MSG_ACTION_COPY); + await Clipboard.setString(message?.attachments?.[0]?.description || message.msg); + EventEmitter.emit(LISTENER, { message: I18n.t('Copied_to_clipboard') }); + }; - const handleQuote = (message: any) => { - logEvent(events.ROOM_MSG_ACTION_QUOTE); - replyInit(message, false); - }; + const handleShare = async (message: any) => { + logEvent(events.ROOM_MSG_ACTION_SHARE); + try { + const permalink: any = await getPermalink(message); + Share.share({ message: permalink }); + } catch { + logEvent(events.ROOM_MSG_ACTION_SHARE_F); + } + }; - const handleStar = async (message: any) => { - logEvent(message.starred ? events.ROOM_MSG_ACTION_UNSTAR : events.ROOM_MSG_ACTION_STAR); - try { - await RocketChat.toggleStarMessage(message.id, message.starred); - EventEmitter.emit(LISTENER, { message: message.starred ? I18n.t('Message_unstarred') : I18n.t('Message_starred') }); - } catch (e) { - logEvent(events.ROOM_MSG_ACTION_STAR_F); - log(e); - } - }; + const handleQuote = (message: any) => { + logEvent(events.ROOM_MSG_ACTION_QUOTE); + replyInit(message, false); + }; - const handlePin = async (message: any) => { - logEvent(events.ROOM_MSG_ACTION_PIN); - try { - await RocketChat.togglePinMessage(message.id, message.pinned); - } catch (e) { - logEvent(events.ROOM_MSG_ACTION_PIN_F); - log(e); - } - }; + const handleStar = async (message: any) => { + logEvent(message.starred ? events.ROOM_MSG_ACTION_UNSTAR : events.ROOM_MSG_ACTION_STAR); + try { + await RocketChat.toggleStarMessage(message.id, message.starred); + EventEmitter.emit(LISTENER, { message: message.starred ? I18n.t('Message_unstarred') : I18n.t('Message_starred') }); + } catch (e) { + logEvent(events.ROOM_MSG_ACTION_STAR_F); + log(e); + } + }; - const handleReaction = (shortname: any, message: any) => { - logEvent(events.ROOM_MSG_ACTION_REACTION); - if (shortname) { - onReactionPress(shortname, message.id); - } else { - reactionInit(message); - } - // close actionSheet when click at header - hideActionSheet(); - }; + const handlePin = async (message: any) => { + logEvent(events.ROOM_MSG_ACTION_PIN); + try { + await RocketChat.togglePinMessage(message.id, message.pinned); + } catch (e) { + logEvent(events.ROOM_MSG_ACTION_PIN_F); + log(e); + } + }; - const handleReadReceipt = (message: any) => { - if (isMasterDetail) { - Navigation.navigate('ModalStackNavigator', { screen: 'ReadReceiptsView', params: { messageId: message.id } }); - } else { - Navigation.navigate('ReadReceiptsView', { messageId: message.id }); - } - }; + const handleReaction = (shortname: any, message: any) => { + logEvent(events.ROOM_MSG_ACTION_REACTION); + if (shortname) { + onReactionPress(shortname, message.id); + } else { + reactionInit(message); + } + // close actionSheet when click at header + hideActionSheet(); + }; - const handleToggleTranslation = async (message: any) => { - try { - const db = database.active; - await db.action(async () => { - await message.update((m: any) => { - m.autoTranslate = !m.autoTranslate; - m._updatedAt = new Date(); - }); - }); - const translatedMessage = getMessageTranslation(message, room.autoTranslateLanguage); - if (!translatedMessage) { - const m = { - _id: message.id, - rid: message.subscription.id, - u: message.u, - msg: message.msg, - }; - await RocketChat.translateMessage(m, room.autoTranslateLanguage); - } - } catch (e) { - log(e); - } - }; + const handleReadReceipt = (message: any) => { + if (isMasterDetail) { + Navigation.navigate('ModalStackNavigator', { screen: 'ReadReceiptsView', params: { messageId: message.id } }); + } else { + Navigation.navigate('ReadReceiptsView', { messageId: message.id }); + } + }; - const handleReport = async (message: any) => { - logEvent(events.ROOM_MSG_ACTION_REPORT); - try { - await RocketChat.reportMessage(message.id); - Alert.alert(I18n.t('Message_Reported')); - } catch (e) { - logEvent(events.ROOM_MSG_ACTION_REPORT_F); - log(e); - } - }; + const handleToggleTranslation = async (message: any) => { + try { + const db = database.active; + await db.action(async () => { + await message.update((m: any) => { + m.autoTranslate = !m.autoTranslate; + m._updatedAt = new Date(); + }); + }); + const translatedMessage = getMessageTranslation(message, room.autoTranslateLanguage); + if (!translatedMessage) { + const m = { + _id: message.id, + rid: message.subscription.id, + u: message.u, + msg: message.msg + }; + await RocketChat.translateMessage(m, room.autoTranslateLanguage); + } + } catch (e) { + log(e); + } + }; - const handleDelete = (message: any) => { - // TODO - migrate this function for ts when fix the lint erros - // @ts-ignore - showConfirmationAlert({ - message: I18n.t('You_will_not_be_able_to_recover_this_message'), - confirmationText: I18n.t('Delete'), - onPress: async () => { + const handleReport = async (message: any) => { + logEvent(events.ROOM_MSG_ACTION_REPORT); try { - logEvent(events.ROOM_MSG_ACTION_DELETE); - await RocketChat.deleteMessage(message.id, message.subscription.id); + await RocketChat.reportMessage(message.id); + Alert.alert(I18n.t('Message_Reported')); } catch (e) { - logEvent(events.ROOM_MSG_ACTION_DELETE_F); + logEvent(events.ROOM_MSG_ACTION_REPORT_F); log(e); } - }, - }); - }; + }; - const getOptions = (message: any) => { - let options: any = []; + const handleDelete = (message: any) => { + // TODO - migrate this function for ts when fix the lint erros + // @ts-ignore + showConfirmationAlert({ + message: I18n.t('You_will_not_be_able_to_recover_this_message'), + confirmationText: I18n.t('Delete'), + onPress: async () => { + try { + logEvent(events.ROOM_MSG_ACTION_DELETE); + await RocketChat.deleteMessage(message.id, message.subscription.id); + } catch (e) { + logEvent(events.ROOM_MSG_ACTION_DELETE_F); + log(e); + } + } + }); + }; - // Reply - if (!isReadOnly) { - options = [{ - title: I18n.t('Reply_in_Thread'), - icon: 'threads', - onPress: () => handleReply(message), - }]; - } + const getOptions = (message: any) => { + let options: any = []; + + // Reply + if (!isReadOnly) { + options = [ + { + title: I18n.t('Reply_in_Thread'), + icon: 'threads', + onPress: () => handleReply(message) + } + ]; + } - // Quote - if (!isReadOnly) { - options.push({ - title: I18n.t('Quote'), - icon: 'quote', - onPress: () => handleQuote(message), - }); - } + // Quote + if (!isReadOnly) { + options.push({ + title: I18n.t('Quote'), + icon: 'quote', + onPress: () => handleQuote(message) + }); + } - // Edit - if (allowEdit(message)) { - options.push({ - title: I18n.t('Edit'), - icon: 'edit', - onPress: () => handleEdit(message), - }); - } + // Edit + if (allowEdit(message)) { + options.push({ + title: I18n.t('Edit'), + icon: 'edit', + onPress: () => handleEdit(message) + }); + } - // Permalink - options.push({ - title: I18n.t('Permalink'), - icon: 'link', - onPress: () => handlePermalink(message), - }); - - // Create Discussion - options.push({ - title: I18n.t('Start_a_Discussion'), - icon: 'discussions', - onPress: () => handleCreateDiscussion(message), - }); - - // Mark as unread - if (message.u && message.u._id !== user.id) { - options.push({ - title: I18n.t('Mark_unread'), - icon: 'flag', - onPress: () => handleUnread(message), - }); - } + // Permalink + options.push({ + title: I18n.t('Permalink'), + icon: 'link', + onPress: () => handlePermalink(message) + }); - // Copy - options.push({ - title: I18n.t('Copy'), - icon: 'copy', - onPress: () => handleCopy(message), - }); - - // Share - options.push({ - title: I18n.t('Share'), - icon: 'share', - onPress: () => handleShare(message), - }); - - // Star - if (Message_AllowStarring) { - options.push({ - title: I18n.t(message.starred ? 'Unstar' : 'Star'), - icon: message.starred ? 'star-filled' : 'star', - onPress: () => handleStar(message), - }); - } + // Create Discussion + options.push({ + title: I18n.t('Start_a_Discussion'), + icon: 'discussions', + onPress: () => handleCreateDiscussion(message) + }); - // Pin - if (Message_AllowPinning && permissions?.hasPinPermission) { - options.push({ - title: I18n.t(message.pinned ? 'Unpin' : 'Pin'), - icon: 'pin', - onPress: () => handlePin(message), - }); - } + // Mark as unread + if (message.u && message.u._id !== user.id) { + options.push({ + title: I18n.t('Mark_unread'), + icon: 'flag', + onPress: () => handleUnread(message) + }); + } - // Read Receipts - if (Message_Read_Receipt_Store_Users) { - options.push({ - title: I18n.t('Read_Receipt'), - icon: 'info', - onPress: () => handleReadReceipt(message), - }); - } + // Copy + options.push({ + title: I18n.t('Copy'), + icon: 'copy', + onPress: () => handleCopy(message) + }); - // Toggle Auto-translate - if (room.autoTranslate && message.u && message.u._id !== user.id) { - options.push({ - title: I18n.t(message.autoTranslate ? 'View_Original' : 'Translate'), - icon: 'language', - onPress: () => handleToggleTranslation(message), - }); - } + // Share + options.push({ + title: I18n.t('Share'), + icon: 'share', + onPress: () => handleShare(message) + }); - // Report - options.push({ - title: I18n.t('Report'), - icon: 'warning', - danger: true, - onPress: () => handleReport(message), - }); - - // Delete - if (allowDelete(message)) { - options.push({ - title: I18n.t('Delete'), - icon: 'delete', - danger: true, - onPress: () => handleDelete(message), - }); - } + // Star + if (Message_AllowStarring) { + options.push({ + title: I18n.t(message.starred ? 'Unstar' : 'Star'), + icon: message.starred ? 'star-filled' : 'star', + onPress: () => handleStar(message) + }); + } - return options; - }; + // Pin + if (Message_AllowPinning && permissions?.hasPinPermission) { + options.push({ + title: I18n.t(message.pinned ? 'Unpin' : 'Pin'), + icon: 'pin', + onPress: () => handlePin(message) + }); + } - const showMessageActions = async (message: any) => { - logEvent(events.ROOM_SHOW_MSG_ACTIONS); - await getPermissions(); - showActionSheet({ - options: getOptions(message), - headerHeight: HEADER_HEIGHT, - customHeader: !isReadOnly || room.reactWhenReadOnly ? ( - <Header - server={server} - handleReaction={handleReaction} - isMasterDetail={isMasterDetail} - message={message} - /> - ) : null, - }); - }; + // Read Receipts + if (Message_Read_Receipt_Store_Users) { + options.push({ + title: I18n.t('Read_Receipt'), + icon: 'info', + onPress: () => handleReadReceipt(message) + }); + } + + // Toggle Auto-translate + if (room.autoTranslate && message.u && message.u._id !== user.id) { + options.push({ + title: I18n.t(message.autoTranslate ? 'View_Original' : 'Translate'), + icon: 'language', + onPress: () => handleToggleTranslation(message) + }); + } + + // Report + options.push({ + title: I18n.t('Report'), + icon: 'warning', + danger: true, + onPress: () => handleReport(message) + }); - useImperativeHandle(ref, () => ({ showMessageActions })); + // Delete + if (allowDelete(message)) { + options.push({ + title: I18n.t('Delete'), + icon: 'delete', + danger: true, + onPress: () => handleDelete(message) + }); + } + + return options; + }; + + const showMessageActions = async (message: any) => { + logEvent(events.ROOM_SHOW_MSG_ACTIONS); + await getPermissions(); + showActionSheet({ + options: getOptions(message), + headerHeight: HEADER_HEIGHT, + customHeader: + !isReadOnly || room.reactWhenReadOnly ? ( + <Header server={server} handleReaction={handleReaction} isMasterDetail={isMasterDetail} message={message} /> + ) : null + }); + }; - return null; -})); + useImperativeHandle(ref, () => ({ showMessageActions })); + + return null; + } + ) +); const mapStateToProps = (state: any) => ({ server: state.server.server, @@ -476,7 +481,7 @@ const mapStateToProps = (state: any) => ({ editMessagePermission: state.permissions['edit-message'], deleteMessagePermission: state.permissions['delete-message'], forceDeleteMessagePermission: state.permissions['force-delete-message'], - pinMessagePermission: state.permissions['pin-message'], + pinMessagePermission: state.permissions['pin-message'] }); export default connect(mapStateToProps, null, null, { forwardRef: true })(MessageActions); diff --git a/app/containers/MessageBox/CommandsPreview/Item.tsx b/app/containers/MessageBox/CommandsPreview/Item.tsx index 2321fbbe48..6f89d254ef 100644 --- a/app/containers/MessageBox/CommandsPreview/Item.tsx +++ b/app/containers/MessageBox/CommandsPreview/Item.tsx @@ -26,22 +26,19 @@ const Item = ({ item, theme }: IMessageBoxCommandsPreviewItem) => { <TouchableOpacity style={styles.commandPreview} onPress={() => onPressCommandPreview(item)} - testID={`command-preview-item${ item.id }`} - > - {item.type === 'image' - ? ( - <FastImage - style={styles.commandPreviewImage} - source={{ uri: item.value }} - resizeMode={FastImage.resizeMode.cover} - onLoadStart={() => setLoading(true)} - onLoad={() => setLoading(false)} - > - { loading ? <ActivityIndicator theme={theme} /> : null } - </FastImage> - ) - : <CustomIcon name='attach' size={36} color={themes[theme].actionTintColor} /> - } + testID={`command-preview-item${item.id}`}> + {item.type === 'image' ? ( + <FastImage + style={styles.commandPreviewImage} + source={{ uri: item.value }} + resizeMode={FastImage.resizeMode.cover} + onLoadStart={() => setLoading(true)} + onLoad={() => setLoading(false)}> + {loading ? <ActivityIndicator theme={theme} /> : null} + </FastImage> + ) : ( + <CustomIcon name='attach' size={36} color={themes[theme].actionTintColor} /> + )} </TouchableOpacity> ); }; diff --git a/app/containers/MessageBox/CommandsPreview/index.tsx b/app/containers/MessageBox/CommandsPreview/index.tsx index 270ce7e139..3820f6fa61 100644 --- a/app/containers/MessageBox/CommandsPreview/index.tsx +++ b/app/containers/MessageBox/CommandsPreview/index.tsx @@ -13,33 +13,36 @@ interface IMessageBoxCommandsPreview { theme: string; } -const CommandsPreview = React.memo(({ theme, commandPreview, showCommandPreview }: IMessageBoxCommandsPreview) => { - if (!showCommandPreview) { - return null; +const CommandsPreview = React.memo( + ({ theme, commandPreview, showCommandPreview }: IMessageBoxCommandsPreview) => { + if (!showCommandPreview) { + return null; + } + return ( + <FlatList + testID='commandbox-container' + style={[styles.mentionList, { backgroundColor: themes[theme].messageboxBackground }]} + data={commandPreview} + renderItem={({ item }) => <Item item={item} theme={theme} />} + keyExtractor={(item: any) => item.id} + keyboardShouldPersistTaps='always' + horizontal + showsHorizontalScrollIndicator={false} + /> + ); + }, + (prevProps, nextProps) => { + if (prevProps.theme !== nextProps.theme) { + return false; + } + if (prevProps.showCommandPreview !== nextProps.showCommandPreview) { + return false; + } + if (!dequal(prevProps.commandPreview, nextProps.commandPreview)) { + return false; + } + return true; } - return ( - <FlatList - testID='commandbox-container' - style={[styles.mentionList, { backgroundColor: themes[theme].messageboxBackground }]} - data={commandPreview} - renderItem={({ item }) => <Item item={item} theme={theme} />} - keyExtractor={(item: any) => item.id} - keyboardShouldPersistTaps='always' - horizontal - showsHorizontalScrollIndicator={false} - /> - ); -}, (prevProps, nextProps) => { - if (prevProps.theme !== nextProps.theme) { - return false; - } - if (prevProps.showCommandPreview !== nextProps.showCommandPreview) { - return false; - } - if (!dequal(prevProps.commandPreview, nextProps.commandPreview)) { - return false; - } - return true; -}); +); export default withTheme(CommandsPreview); diff --git a/app/containers/MessageBox/EmojiKeyboard.tsx b/app/containers/MessageBox/EmojiKeyboard.tsx index 9aa9252618..bbb0e20ad5 100644 --- a/app/containers/MessageBox/EmojiKeyboard.tsx +++ b/app/containers/MessageBox/EmojiKeyboard.tsx @@ -9,7 +9,7 @@ import { themes } from '../../constants/colors'; import { withTheme } from '../../theme'; interface IMessageBoxEmojiKeyboard { - theme: string + theme: string; } export default class EmojiKeyboard extends React.PureComponent<IMessageBoxEmojiKeyboard, any> { @@ -23,12 +23,14 @@ export default class EmojiKeyboard extends React.PureComponent<IMessageBoxEmojiK onEmojiSelected = (emoji: any) => { KeyboardRegistry.onItemSelected('EmojiKeyboard', { emoji }); - } + }; render() { const { theme } = this.props; return ( - <View style={[styles.emojiKeyboardContainer, { borderTopColor: themes[theme].borderColor }]} testID='messagebox-keyboard-emoji'> + <View + style={[styles.emojiKeyboardContainer, { borderTopColor: themes[theme].borderColor }]} + testID='messagebox-keyboard-emoji'> <EmojiPicker onEmojiSelected={this.onEmojiSelected} baseUrl={this.baseUrl} /> </View> ); diff --git a/app/containers/MessageBox/LeftButtons.android.tsx b/app/containers/MessageBox/LeftButtons.android.tsx index 73959949f5..105ce62976 100644 --- a/app/containers/MessageBox/LeftButtons.android.tsx +++ b/app/containers/MessageBox/LeftButtons.android.tsx @@ -11,20 +11,13 @@ interface IMessageBoxLeftButtons { editCancel(): void; } -const LeftButtons = React.memo(({ - theme, showEmojiKeyboard, editing, editCancel, openEmoji, closeEmoji, -}: IMessageBoxLeftButtons) => { - if (editing) { - return <CancelEditingButton onPress={editCancel} theme={theme} />; +const LeftButtons = React.memo( + ({ theme, showEmojiKeyboard, editing, editCancel, openEmoji, closeEmoji }: IMessageBoxLeftButtons) => { + if (editing) { + return <CancelEditingButton onPress={editCancel} theme={theme} />; + } + return <ToggleEmojiButton show={showEmojiKeyboard} open={openEmoji} close={closeEmoji} theme={theme} />; } - return ( - <ToggleEmojiButton - show={showEmojiKeyboard} - open={openEmoji} - close={closeEmoji} - theme={theme} - /> - ); -}); +); export default LeftButtons; diff --git a/app/containers/MessageBox/LeftButtons.ios.tsx b/app/containers/MessageBox/LeftButtons.ios.tsx index e24dbbd00b..3ed9b5060c 100644 --- a/app/containers/MessageBox/LeftButtons.ios.tsx +++ b/app/containers/MessageBox/LeftButtons.ios.tsx @@ -12,16 +12,16 @@ interface IMessageBoxLeftButtons { isActionsEnabled: boolean; } -const LeftButtons = React.memo(({ - theme, showMessageBoxActions, editing, editCancel, isActionsEnabled, -}: IMessageBoxLeftButtons) => { - if (editing) { - return <CancelEditingButton onPress={editCancel} theme={theme} />; +const LeftButtons = React.memo( + ({ theme, showMessageBoxActions, editing, editCancel, isActionsEnabled }: IMessageBoxLeftButtons) => { + if (editing) { + return <CancelEditingButton onPress={editCancel} theme={theme} />; + } + if (isActionsEnabled) { + return <ActionsButton onPress={showMessageBoxActions} theme={theme} />; + } + return <View style={styles.buttonsWhitespace} />; } - if (isActionsEnabled) { - return <ActionsButton onPress={showMessageBoxActions} theme={theme} />; - } - return <View style={styles.buttonsWhitespace} />; -}); +); export default LeftButtons; diff --git a/app/containers/MessageBox/Mentions/FixedMentionItem.tsx b/app/containers/MessageBox/Mentions/FixedMentionItem.tsx index 75fbded28c..a1326b6b11 100644 --- a/app/containers/MessageBox/Mentions/FixedMentionItem.tsx +++ b/app/containers/MessageBox/Mentions/FixedMentionItem.tsx @@ -19,11 +19,10 @@ const FixedMentionItem = ({ item, onPress, theme }: IMessageBoxFixedMentionItem) styles.mentionItem, { backgroundColor: themes[theme].auxiliaryBackground, - borderTopColor: themes[theme].separatorColor, - }, + borderTopColor: themes[theme].separatorColor + } ]} - onPress={() => onPress(item)} - > + onPress={() => onPress(item)}> <Text style={[styles.fixedMentionAvatar, { color: themes[theme].titleText }]}>{item.username}</Text> <Text style={[styles.mentionText, { color: themes[theme].titleText }]}> {item.username === 'here' ? I18n.t('Notify_active_in_this_room') : I18n.t('Notify_all_in_this_room')} diff --git a/app/containers/MessageBox/Mentions/MentionEmoji.tsx b/app/containers/MessageBox/Mentions/MentionEmoji.tsx index 34833888a6..5e012c1364 100644 --- a/app/containers/MessageBox/Mentions/MentionEmoji.tsx +++ b/app/containers/MessageBox/Mentions/MentionEmoji.tsx @@ -17,23 +17,13 @@ const MentionEmoji = ({ item }: IMessageBoxMentionEmoji) => { const { baseUrl } = context; if (item.name) { - return ( - <CustomEmoji - style={styles.mentionItemCustomEmoji} - emoji={item} - baseUrl={baseUrl} - /> - ); + return <CustomEmoji style={styles.mentionItemCustomEmoji} emoji={item} baseUrl={baseUrl} />; } - return ( - <Text style={styles.mentionItemEmoji}> - {shortnameToUnicode(`:${ item }:`)} - </Text> - ); + return <Text style={styles.mentionItemEmoji}>{shortnameToUnicode(`:${item}:`)}</Text>; }; MentionEmoji.propTypes = { - item: PropTypes.object, + item: PropTypes.object }; export default MentionEmoji; diff --git a/app/containers/MessageBox/Mentions/MentionItem.tsx b/app/containers/MessageBox/Mentions/MentionItem.tsx index 4be3067eb1..5fc11609e2 100644 --- a/app/containers/MessageBox/Mentions/MentionItem.tsx +++ b/app/containers/MessageBox/Mentions/MentionItem.tsx @@ -29,11 +29,11 @@ const MentionItem = ({ item, trackingType, theme }: IMessageBoxMentionItem) => { const defineTestID = (type: string) => { switch (type) { case MENTIONS_TRACKING_TYPE_EMOJIS: - return `mention-item-${ item.name || item }`; + return `mention-item-${item.name || item}`; case MENTIONS_TRACKING_TYPE_COMMANDS: - return `mention-item-${ item.command || item }`; + return `mention-item-${item.command || item}`; default: - return `mention-item-${ item.username || item.name || item }`; + return `mention-item-${item.username || item.name || item}`; } }; @@ -45,13 +45,8 @@ const MentionItem = ({ item, trackingType, theme }: IMessageBoxMentionItem) => { let content = ( <> - <Avatar - style={styles.avatar} - text={item.username || item.name} - size={30} - type={item.t} - /> - <Text style={[styles.mentionText, { color: themes[theme].titleText }]}>{ item.username || item.name || item }</Text> + <Avatar style={styles.avatar} text={item.username || item.name} size={30} type={item.t} /> + <Text style={[styles.mentionText, { color: themes[theme].titleText }]}>{item.username || item.name || item}</Text> </> ); @@ -59,7 +54,7 @@ const MentionItem = ({ item, trackingType, theme }: IMessageBoxMentionItem) => { content = ( <> <MentionEmoji item={item} /> - <Text style={[styles.mentionText, { color: themes[theme].titleText }]}>:{ item.name || item }:</Text> + <Text style={[styles.mentionText, { color: themes[theme].titleText }]}>:{item.name || item}:</Text> </> ); } @@ -79,12 +74,11 @@ const MentionItem = ({ item, trackingType, theme }: IMessageBoxMentionItem) => { styles.mentionItem, { backgroundColor: themes[theme].auxiliaryBackground, - borderTopColor: themes[theme].separatorColor, - }, + borderTopColor: themes[theme].separatorColor + } ]} onPress={() => onPressMention(item)} - testID={testID} - > + testID={testID}> {content} </TouchableOpacity> ); diff --git a/app/containers/MessageBox/Mentions/index.tsx b/app/containers/MessageBox/Mentions/index.tsx index b0f993fd96..d935e07495 100644 --- a/app/containers/MessageBox/Mentions/index.tsx +++ b/app/containers/MessageBox/Mentions/index.tsx @@ -12,33 +12,36 @@ interface IMessageBoxMentions { theme: string; } -const Mentions = React.memo(({ mentions, trackingType, theme }: IMessageBoxMentions) => { - if (!trackingType) { - return null; +const Mentions = React.memo( + ({ mentions, trackingType, theme }: IMessageBoxMentions) => { + if (!trackingType) { + return null; + } + return ( + <View testID='messagebox-container'> + <FlatList + style={[styles.mentionList, { backgroundColor: themes[theme].auxiliaryBackground }]} + data={mentions} + extraData={mentions} + renderItem={({ item }) => <MentionItem item={item} trackingType={trackingType} theme={theme} />} + keyExtractor={(item: any) => item.rid || item.name || item.command || item} + keyboardShouldPersistTaps='always' + /> + </View> + ); + }, + (prevProps, nextProps) => { + if (prevProps.theme !== nextProps.theme) { + return false; + } + if (prevProps.trackingType !== nextProps.trackingType) { + return false; + } + if (!dequal(prevProps.mentions, nextProps.mentions)) { + return false; + } + return true; } - return ( - <View testID='messagebox-container'> - <FlatList - style={[styles.mentionList, { backgroundColor: themes[theme].auxiliaryBackground }]} - data={mentions} - extraData={mentions} - renderItem={({ item }) => <MentionItem item={item} trackingType={trackingType} theme={theme} />} - keyExtractor={(item: any) => item.rid || item.name || item.command || item} - keyboardShouldPersistTaps='always' - /> - </View> - ); -}, (prevProps, nextProps) => { - if (prevProps.theme !== nextProps.theme) { - return false; - } - if (prevProps.trackingType !== nextProps.trackingType) { - return false; - } - if (!dequal(prevProps.mentions, nextProps.mentions)) { - return false; - } - return true; -}); +); export default Mentions; diff --git a/app/containers/MessageBox/RecordAudio.tsx b/app/containers/MessageBox/RecordAudio.tsx index 3e46b466d1..af2bcd8324 100644 --- a/app/containers/MessageBox/RecordAudio.tsx +++ b/app/containers/MessageBox/RecordAudio.tsx @@ -25,7 +25,7 @@ const RECORDING_SETTINGS = { audioEncoder: Audio.RECORDING_OPTION_ANDROID_AUDIO_ENCODER_AAC, sampleRate: Audio.RECORDING_OPTIONS_PRESET_LOW_QUALITY.android.sampleRate, numberOfChannels: Audio.RECORDING_OPTIONS_PRESET_LOW_QUALITY.android.numberOfChannels, - bitRate: Audio.RECORDING_OPTIONS_PRESET_LOW_QUALITY.android.bitRate, + bitRate: Audio.RECORDING_OPTIONS_PRESET_LOW_QUALITY.android.bitRate }, ios: { extension: RECORDING_EXTENSION, @@ -33,8 +33,8 @@ const RECORDING_SETTINGS = { sampleRate: Audio.RECORDING_OPTIONS_PRESET_LOW_QUALITY.ios.sampleRate, numberOfChannels: Audio.RECORDING_OPTIONS_PRESET_LOW_QUALITY.ios.numberOfChannels, bitRate: Audio.RECORDING_OPTIONS_PRESET_LOW_QUALITY.ios.bitRate, - outputFormat: Audio.RECORDING_OPTION_IOS_OUTPUT_FORMAT_MPEG4AAC, - }, + outputFormat: Audio.RECORDING_OPTION_IOS_OUTPUT_FORMAT_MPEG4AAC + } }; const RECORDING_MODE = { allowsRecordingIOS: true, @@ -43,15 +43,19 @@ const RECORDING_MODE = { shouldDuckAndroid: true, playThroughEarpieceAndroid: false, interruptionModeIOS: Audio.INTERRUPTION_MODE_IOS_DO_NOT_MIX, - interruptionModeAndroid: Audio.INTERRUPTION_MODE_ANDROID_DO_NOT_MIX, + interruptionModeAndroid: Audio.INTERRUPTION_MODE_ANDROID_DO_NOT_MIX }; -const formatTime = function(seconds: any) { +const formatTime = function (seconds: any) { let minutes: any = Math.floor(seconds / 60); seconds %= 60; - if (minutes < 10) { minutes = `0${ minutes }`; } - if (seconds < 10) { seconds = `0${ seconds }`; } - return `${ minutes }:${ seconds }`; + if (minutes < 10) { + minutes = `0${minutes}`; + } + if (seconds < 10) { + seconds = `0${seconds}`; + } + return `${minutes}:${seconds}`; }; export default class RecordAudio extends React.PureComponent<IMessageBoxRecordAudioProps, any> { @@ -64,7 +68,7 @@ export default class RecordAudio extends React.PureComponent<IMessageBoxRecordAu this.isRecorderBusy = false; this.state = { isRecording: false, - recordingDurationMillis: 0, + recordingDurationMillis: 0 }; } @@ -97,14 +101,14 @@ export default class RecordAudio extends React.PureComponent<IMessageBoxRecordAu // Do nothing } return false; - } + }; onRecordingStatusUpdate = (status: any) => { this.setState({ isRecording: status.isRecording, - recordingDurationMillis: status.durationMillis, + recordingDurationMillis: status.durationMillis }); - } + }; startRecordingAudio = async () => { logEvent(events.ROOM_AUDIO_RECORD); @@ -143,12 +147,12 @@ export default class RecordAudio extends React.PureComponent<IMessageBoxRecordAu const fileURI = this.recording.getURI(); const fileData = await getInfoAsync(fileURI); const fileInfo = { - name: `${ Date.now() }.aac`, + name: `${Date.now()}.aac`, mime: 'audio/aac', type: 'audio/aac', store: 'Uploads', path: fileURI, - size: fileData.size, + size: fileData.size }; onFinish(fileInfo); @@ -188,8 +192,7 @@ export default class RecordAudio extends React.PureComponent<IMessageBoxRecordAu testID='messagebox-send-audio' // @ts-ignore accessibilityLabel={I18n.t('Send_audio_message')} - accessibilityTraits='button' - > + accessibilityTraits='button'> <CustomIcon name='microphone' size={24} color={themes[theme].auxiliaryTintColor} /> </BorderlessButton> ); @@ -203,32 +206,18 @@ export default class RecordAudio extends React.PureComponent<IMessageBoxRecordAu // @ts-ignore accessibilityLabel={I18n.t('Cancel_recording')} accessibilityTraits='button' - style={styles.actionButton} - > - <CustomIcon - size={24} - color={themes[theme].dangerColor} - name='close' - /> + style={styles.actionButton}> + <CustomIcon size={24} color={themes[theme].dangerColor} name='close' /> </BorderlessButton> - <Text - style={[styles.recordingCancelText, { color: themes[theme].titleText }]} - > - {this.duration} - </Text> + <Text style={[styles.recordingCancelText, { color: themes[theme].titleText }]}>{this.duration}</Text> </View> <BorderlessButton onPress={this.finishRecordingAudio} // @ts-ignore accessibilityLabel={I18n.t('Finish_recording')} accessibilityTraits='button' - style={styles.actionButton} - > - <CustomIcon - size={24} - color={themes[theme].successColor} - name='check' - /> + style={styles.actionButton}> + <CustomIcon size={24} color={themes[theme].successColor} name='check' /> </BorderlessButton> </View> ); diff --git a/app/containers/MessageBox/ReplyPreview.tsx b/app/containers/MessageBox/ReplyPreview.tsx index 6118f0233e..c6681af0a2 100644 --- a/app/containers/MessageBox/ReplyPreview.tsx +++ b/app/containers/MessageBox/ReplyPreview.tsx @@ -11,33 +11,33 @@ import { themes } from '../../constants/colors'; const styles = StyleSheet.create({ container: { flexDirection: 'row', - paddingTop: 10, + paddingTop: 10 }, messageContainer: { flex: 1, marginHorizontal: 10, paddingHorizontal: 15, paddingVertical: 10, - borderRadius: 4, + borderRadius: 4 }, header: { flexDirection: 'row', - alignItems: 'center', + alignItems: 'center' }, username: { fontSize: 16, - ...sharedStyles.textMedium, + ...sharedStyles.textMedium }, time: { fontSize: 12, lineHeight: 16, marginLeft: 6, ...sharedStyles.textRegular, - fontWeight: '300', + fontWeight: '300' }, close: { - marginRight: 10, - }, + marginRight: 10 + } }); interface IMessageBoxReplyPreview { @@ -56,46 +56,57 @@ interface IMessageBoxReplyPreview { useRealName: boolean; } -const ReplyPreview = React.memo(({ - message, Message_TimeFormat, baseUrl, username, replying, getCustomEmoji, close, theme, useRealName, -}: IMessageBoxReplyPreview) => { - if (!replying) { - return null; - } +const ReplyPreview = React.memo( + ({ + message, + Message_TimeFormat, + baseUrl, + username, + replying, + getCustomEmoji, + close, + theme, + useRealName + }: IMessageBoxReplyPreview) => { + if (!replying) { + return null; + } - const time = moment(message.ts).format(Message_TimeFormat); - return ( - <View - style={[ - styles.container, - { backgroundColor: themes[theme].messageboxBackground }, - ]} - > - <View style={[styles.messageContainer, { backgroundColor: themes[theme].chatComponentBackground }]}> - <View style={styles.header}> - <Text style={[styles.username, { color: themes[theme].tintColor }]}>{useRealName ? message.u?.name : message.u?.username}</Text> - <Text style={[styles.time, { color: themes[theme].auxiliaryText }]}>{time}</Text> + const time = moment(message.ts).format(Message_TimeFormat); + return ( + <View style={[styles.container, { backgroundColor: themes[theme].messageboxBackground }]}> + <View style={[styles.messageContainer, { backgroundColor: themes[theme].chatComponentBackground }]}> + <View style={styles.header}> + <Text style={[styles.username, { color: themes[theme].tintColor }]}> + {useRealName ? message.u?.name : message.u?.username} + </Text> + <Text style={[styles.time, { color: themes[theme].auxiliaryText }]}>{time}</Text> + </View> + {/* @ts-ignore*/} + <Markdown + msg={message.msg} + baseUrl={baseUrl} + username={username} + getCustomEmoji={getCustomEmoji} + numberOfLines={1} + preview + theme={theme} + /> </View> - {/* @ts-ignore*/} - <Markdown - msg={message.msg} - baseUrl={baseUrl} - username={username} - getCustomEmoji={getCustomEmoji} - numberOfLines={1} - preview - theme={theme} - /> + <CustomIcon name='close' color={themes[theme].auxiliaryText} size={20} style={styles.close} onPress={close} /> </View> - <CustomIcon name='close' color={themes[theme].auxiliaryText} size={20} style={styles.close} onPress={close} /> - </View> - ); -}, (prevProps: any, nextProps: any) => prevProps.replying === nextProps.replying && prevProps.theme === nextProps.theme && prevProps.message.id === nextProps.message.id); + ); + }, + (prevProps: any, nextProps: any) => + prevProps.replying === nextProps.replying && + prevProps.theme === nextProps.theme && + prevProps.message.id === nextProps.message.id +); const mapStateToProps = (state: any) => ({ Message_TimeFormat: state.settings.Message_TimeFormat, baseUrl: state.server.server, - useRealName: state.settings.UI_Use_Real_Name, + useRealName: state.settings.UI_Use_Real_Name }); export default connect(mapStateToProps)(ReplyPreview); diff --git a/app/containers/MessageBox/RightButtons.android.tsx b/app/containers/MessageBox/RightButtons.android.tsx index 7b8dc8ca83..0ad3b22eee 100644 --- a/app/containers/MessageBox/RightButtons.android.tsx +++ b/app/containers/MessageBox/RightButtons.android.tsx @@ -12,17 +12,17 @@ interface IMessageBoxRightButtons { isActionsEnabled: boolean; } -const RightButtons = React.memo(({ - theme, showSend, submit, showMessageBoxActions, isActionsEnabled, -}: IMessageBoxRightButtons) => { - if (showSend) { - return <SendButton onPress={submit} theme={theme} />; - } - if (isActionsEnabled) { - return <ActionsButton onPress={showMessageBoxActions} theme={theme} />; - } +const RightButtons = React.memo( + ({ theme, showSend, submit, showMessageBoxActions, isActionsEnabled }: IMessageBoxRightButtons) => { + if (showSend) { + return <SendButton onPress={submit} theme={theme} />; + } + if (isActionsEnabled) { + return <ActionsButton onPress={showMessageBoxActions} theme={theme} />; + } - return <View style={styles.buttonsWhitespace} />; -}); + return <View style={styles.buttonsWhitespace} />; + } +); export default RightButtons; diff --git a/app/containers/MessageBox/buttons/ActionsButton.tsx b/app/containers/MessageBox/buttons/ActionsButton.tsx index de7eb9b4c6..e40513b4a6 100644 --- a/app/containers/MessageBox/buttons/ActionsButton.tsx +++ b/app/containers/MessageBox/buttons/ActionsButton.tsx @@ -8,13 +8,7 @@ interface IActionsButton { } const ActionsButton = React.memo(({ theme, onPress }: IActionsButton) => ( - <BaseButton - onPress={onPress} - testID='messagebox-actions' - accessibilityLabel='Message_actions' - icon='add' - theme={theme} - /> + <BaseButton onPress={onPress} testID='messagebox-actions' accessibilityLabel='Message_actions' icon='add' theme={theme} /> )); export default ActionsButton; diff --git a/app/containers/MessageBox/buttons/BaseButton.tsx b/app/containers/MessageBox/buttons/BaseButton.tsx index bf4b99292f..ca14cb0153 100644 --- a/app/containers/MessageBox/buttons/BaseButton.tsx +++ b/app/containers/MessageBox/buttons/BaseButton.tsx @@ -22,8 +22,7 @@ const BaseButton = React.memo(({ onPress, testID, accessibilityLabel, icon, them testID={testID} // @ts-ignore accessibilityLabel={I18n.t(accessibilityLabel)} - accessibilityTraits='button' - > + accessibilityTraits='button'> <CustomIcon name={icon} size={24} color={color ?? themes[theme!].auxiliaryTintColor} /> </BorderlessButton> )); diff --git a/app/containers/MessageBox/buttons/CancelEditingButton.tsx b/app/containers/MessageBox/buttons/CancelEditingButton.tsx index 4d7eeea357..9f026dabcd 100644 --- a/app/containers/MessageBox/buttons/CancelEditingButton.tsx +++ b/app/containers/MessageBox/buttons/CancelEditingButton.tsx @@ -4,7 +4,7 @@ import BaseButton from './BaseButton'; interface ICancelEditingButton { theme: string; - onPress():void; + onPress(): void; } const CancelEditingButton = React.memo(({ theme, onPress }: ICancelEditingButton) => ( diff --git a/app/containers/MessageBox/buttons/index.ts b/app/containers/MessageBox/buttons/index.ts index 8d131d92b2..b57e2cc28a 100644 --- a/app/containers/MessageBox/buttons/index.ts +++ b/app/containers/MessageBox/buttons/index.ts @@ -3,9 +3,4 @@ import ToggleEmojiButton from './ToggleEmojiButton'; import SendButton from './SendButton'; import ActionsButton from './ActionsButton'; -export { - CancelEditingButton, - ToggleEmojiButton, - SendButton, - ActionsButton, -}; +export { CancelEditingButton, ToggleEmojiButton, SendButton, ActionsButton }; diff --git a/app/containers/MessageBox/index.tsx b/app/containers/MessageBox/index.tsx index b88173c95c..80f2f4a357 100644 --- a/app/containers/MessageBox/index.tsx +++ b/app/containers/MessageBox/index.tsx @@ -30,12 +30,7 @@ import RightButtons from './RightButtons'; import { isAndroid, isTablet } from '../../utils/deviceInfo'; import { canUploadFile } from '../../utils/media'; import EventEmiter from '../../utils/events'; -import { - KEY_COMMAND, - handleCommandShowUpload, - handleCommandSubmit, - handleCommandTyping, -} from '../../commands'; +import { KEY_COMMAND, handleCommandShowUpload, handleCommandSubmit, handleCommandTyping } from '../../commands'; import Mentions from './Mentions'; import MessageboxContext from './Context'; import { @@ -43,7 +38,7 @@ import { MENTIONS_TRACKING_TYPE_COMMANDS, MENTIONS_TRACKING_TYPE_EMOJIS, MENTIONS_TRACKING_TYPE_ROOMS, - MENTIONS_TRACKING_TYPE_USERS, + MENTIONS_TRACKING_TYPE_USERS } from './constants'; import CommandsPreview from './CommandsPreview'; import { getUserSelector } from '../../selectors/login'; @@ -60,17 +55,17 @@ const imagePickerConfig = { cropping: true, compressImageQuality: 0.8, avoidEmptySpaceAroundImage: false, - freeStyleCropEnabled: true, + freeStyleCropEnabled: true }; const libraryPickerConfig = { multiple: true, compressVideoPreset: 'Passthrough', - mediaType: 'any', + mediaType: 'any' }; const videoPickerConfig = { - mediaType: 'video', + mediaType: 'video' }; interface IMessageBoxProps { @@ -123,7 +118,7 @@ interface IMessageBoxState { commandPreview: []; showCommandPreview: boolean; command: { - appId?: any + appId?: any; }; tshow: boolean; } @@ -161,13 +156,13 @@ class MessageBox extends Component<IMessageBoxProps, IMessageBoxState> { static defaultProps = { message: { - id: '', + id: '' }, sharing: false, iOSScrollBehavior: NativeModules.KeyboardTrackingViewTempManager?.KeyboardTrackingScrollBehaviorFixedOffset, isActionsEnabled: true, - getCustomEmoji: () => {}, - } + getCustomEmoji: () => {} + }; constructor(props: IMessageBoxProps) { super(props); @@ -180,7 +175,7 @@ class MessageBox extends Component<IMessageBoxProps, IMessageBoxState> { commandPreview: [], showCommandPreview: false, command: {}, - tshow: false, + tshow: false }; this.text = ''; this.selection = { start: 0, end: 0 }; @@ -191,49 +186,49 @@ class MessageBox extends Component<IMessageBoxProps, IMessageBoxState> { { title: I18n.t('Take_a_photo'), icon: 'camera-photo', - onPress: this.takePhoto, + onPress: this.takePhoto }, { title: I18n.t('Take_a_video'), icon: 'camera', - onPress: this.takeVideo, + onPress: this.takeVideo }, { title: I18n.t('Choose_from_library'), icon: 'image', - onPress: this.chooseFromLibrary, + onPress: this.chooseFromLibrary }, { title: I18n.t('Choose_file'), icon: 'attach', - onPress: this.chooseFile, + onPress: this.chooseFile }, { title: I18n.t('Create_Discussion'), icon: 'discussions', - onPress: this.createDiscussion, - }, + onPress: this.createDiscussion + } ]; const libPickerLabels = { cropperChooseText: I18n.t('Choose'), cropperCancelText: I18n.t('Cancel'), - loadingLabelText: I18n.t('Processing'), + loadingLabelText: I18n.t('Processing') }; this.imagePickerConfig = { ...imagePickerConfig, - ...libPickerLabels, + ...libPickerLabels }; this.libraryPickerConfig = { ...libraryPickerConfig, - ...libPickerLabels, + ...libPickerLabels }; this.videoPickerConfig = { ...videoPickerConfig, - ...libPickerLabels, + ...libPickerLabels }; } @@ -316,13 +311,9 @@ class MessageBox extends Component<IMessageBoxProps, IMessageBoxState> { } shouldComponentUpdate(nextProps: any, nextState: any) { - const { - showEmojiKeyboard, showSend, recording, mentions, commandPreview, tshow, - } = this.state; + const { showEmojiKeyboard, showSend, recording, mentions, commandPreview, tshow } = this.state; - const { - roomType, replying, editing, isFocused, message, theme, - } = this.props; + const { roomType, replying, editing, isFocused, message, theme } = this.props; if (nextProps.theme !== theme) { return true; @@ -364,7 +355,7 @@ class MessageBox extends Component<IMessageBoxProps, IMessageBoxState> { } componentWillUnmount() { - console.countReset(`${ this.constructor.name }.render calls`); + console.countReset(`${this.constructor.name}.render calls`); if (this.onChangeText && this.onChangeText.stop) { this.onChangeText.stop(); } @@ -396,11 +387,11 @@ class MessageBox extends Component<IMessageBoxProps, IMessageBoxState> { this.setShowSend(!isTextEmpty); this.debouncedOnChangeText(text); this.setInput(text); - } + }; onSelectionChange = (e: any) => { this.selection = e.nativeEvent.selection; - } + }; // eslint-disable-next-line react/sort-comp debouncedOnChangeText = debounce(async (text: any) => { @@ -439,19 +430,22 @@ class MessageBox extends Component<IMessageBoxProps, IMessageBoxState> { } } return this.identifyMentionKeyword(command, MENTIONS_TRACKING_TYPE_COMMANDS); - } if (channelMention) { + } + if (channelMention) { return this.identifyMentionKeyword(result, MENTIONS_TRACKING_TYPE_ROOMS); - } if (userMention) { + } + if (userMention) { return this.identifyMentionKeyword(result, MENTIONS_TRACKING_TYPE_USERS); - } if (emojiMention) { + } + if (emojiMention) { return this.identifyMentionKeyword(result, MENTIONS_TRACKING_TYPE_EMOJIS); } return this.stopTrackingMention(); - }, 100) + }, 100); onKeyboardResigned = () => { this.closeEmoji(); - } + }; onPressMention = (item: any) => { if (!this.component) { @@ -463,12 +457,11 @@ class MessageBox extends Component<IMessageBoxProps, IMessageBoxState> { const cursor = Math.max(start, end); const regexp = /([a-z0-9._-]+)$/im; const result = msg.substr(0, cursor).replace(regexp, ''); - const mentionName = trackingType === MENTIONS_TRACKING_TYPE_EMOJIS - ? `${ item.name || item }:` - : item.username || item.name || item.command; - const text = `${ result }${ mentionName } ${ msg.slice(cursor) }`; + const mentionName = + trackingType === MENTIONS_TRACKING_TYPE_EMOJIS ? `${item.name || item}:` : item.username || item.name || item.command; + const text = `${result}${mentionName} ${msg.slice(cursor)}`; - if ((trackingType === MENTIONS_TRACKING_TYPE_COMMANDS) && item.providesPreview) { + if (trackingType === MENTIONS_TRACKING_TYPE_COMMANDS && item.providesPreview) { this.setState({ showCommandPreview: true }); } @@ -476,12 +469,15 @@ class MessageBox extends Component<IMessageBoxProps, IMessageBoxState> { this.setInput(text, { start: newCursor, end: newCursor }); this.focus(); requestAnimationFrame(() => this.stopTrackingMention()); - } + }; onPressCommandPreview = (item: any) => { const { command } = this.state; const { - rid, tmid, message: { id: messageTmid }, replyCancel, + rid, + tmid, + message: { id: messageTmid }, + replyCancel } = this.props; const { text } = this; const name = text.substr(0, text.indexOf(' ')).slice(1); @@ -498,7 +494,7 @@ class MessageBox extends Component<IMessageBoxProps, IMessageBoxState> { } catch (e) { log(e); } - } + }; onEmojiSelected = (keyboardId: any, params: any) => { const { text } = this; @@ -508,11 +504,11 @@ class MessageBox extends Component<IMessageBoxProps, IMessageBoxState> { // if messagebox has an active cursor const { start, end } = this.selection; const cursor = Math.max(start, end); - newText = `${ text.substr(0, cursor) }${ emoji }${ text.substr(cursor) }`; + newText = `${text.substr(0, cursor)}${emoji}${text.substr(cursor)}`; const newCursor = cursor + emoji.length; this.setInput(newText, { start: newCursor, end: newCursor }); this.setShowSend(true); - } + }; getPermalink = async (message: any) => { try { @@ -520,7 +516,7 @@ class MessageBox extends Component<IMessageBoxProps, IMessageBoxState> { } catch (error) { return null; } - } + }; getFixedMentions = (keyword: any) => { let result: any = []; @@ -531,18 +527,18 @@ class MessageBox extends Component<IMessageBoxProps, IMessageBoxState> { result = [{ rid: -2, username: 'here' }, ...result]; } return result; - } + }; getUsers = debounce(async (keyword: any) => { let res = await RocketChat.search({ text: keyword, filterRooms: false, filterUsers: true }); res = [...this.getFixedMentions(keyword), ...res]; this.setState({ mentions: res }); - }, 300) + }, 300); getRooms = debounce(async (keyword = '') => { const res = await RocketChat.search({ text: keyword, filterRooms: true, filterUsers: false }); this.setState({ mentions: res }); - }, 300) + }, 300); getEmojis = debounce(async (keyword: any) => { const db = database.active; @@ -550,30 +546,28 @@ class MessageBox extends Component<IMessageBoxProps, IMessageBoxState> { const likeString = sanitizeLikeString(keyword); const whereClause = []; if (likeString) { - whereClause.push(Q.where('name', Q.like(`${ likeString }%`))); + whereClause.push(Q.where('name', Q.like(`${likeString}%`))); } let customEmojis = await customEmojisCollection.query(...whereClause).fetch(); customEmojis = customEmojis.slice(0, MENTIONS_COUNT_TO_DISPLAY); - const filteredEmojis = emojis.filter((emoji) => emoji.indexOf(keyword) !== -1).slice(0, MENTIONS_COUNT_TO_DISPLAY); + const filteredEmojis = emojis.filter(emoji => emoji.indexOf(keyword) !== -1).slice(0, MENTIONS_COUNT_TO_DISPLAY); const mergedEmojis = [...customEmojis, ...filteredEmojis].slice(0, MENTIONS_COUNT_TO_DISPLAY); this.setState({ mentions: mergedEmojis || [] }); - }, 300) + }, 300); getSlashCommands = debounce(async (keyword: any) => { const db = database.active; const commandsCollection = db.get('slash_commands'); const likeString = sanitizeLikeString(keyword); - const commands = await commandsCollection.query( - Q.where('id', Q.like(`${ likeString }%`)), - ).fetch(); + const commands = await commandsCollection.query(Q.where('id', Q.like(`${likeString}%`))).fetch(); this.setState({ mentions: commands || [] }); - }, 300) + }, 300); focus = () => { if (this.component && this.component.focus) { this.component.focus(); } - } + }; handleTyping = (isTyping: boolean) => { const { typing, rid, sharing } = this.props; @@ -597,11 +591,11 @@ class MessageBox extends Component<IMessageBoxProps, IMessageBoxState> { typing(rid, true); this.typingTimeout = false; }, 1000); - } + }; setCommandPreview = async (command: any, name: string, params: any) => { const { rid } = this.props; - try { + try { const { success, preview } = await RocketChat.getCommandPreview(name, rid, params); if (success) { return this.setState({ commandPreview: preview?.items, showCommandPreview: true, command }); @@ -610,7 +604,7 @@ class MessageBox extends Component<IMessageBoxProps, IMessageBoxState> { log(e); } this.setState({ commandPreview: [], showCommandPreview: true, command: {} }); - } + }; setInput = (text: any, selection?: any) => { this.text = text; @@ -618,7 +612,7 @@ class MessageBox extends Component<IMessageBoxProps, IMessageBoxState> { return this.component.setTextAndSelection(text, selection); } this.component.setNativeProps({ text }); - } + }; setShowSend = (showSend: any) => { const { showSend: prevShowSend } = this.state; @@ -626,13 +620,13 @@ class MessageBox extends Component<IMessageBoxProps, IMessageBoxState> { if (prevShowSend !== showSend && !propShowSend) { this.setState({ showSend }); } - } + }; clearInput = () => { this.setInput(''); this.setShowSend(false); this.setState({ tshow: false }); - } + }; canUploadFile = (file: any) => { const { FileUpload_MediaTypeWhiteList, FileUpload_MaxFileSize } = this.props; @@ -642,7 +636,7 @@ class MessageBox extends Component<IMessageBoxProps, IMessageBoxState> { } Alert.alert(I18n.t('Error_uploading'), I18n.t(result.error)); return false; - } + }; takePhoto = async () => { logEvent(events.ROOM_BOX_ACTION_PHOTO); @@ -654,7 +648,7 @@ class MessageBox extends Component<IMessageBoxProps, IMessageBoxState> { } catch (e) { logEvent(events.ROOM_BOX_ACTION_PHOTO_F); } - } + }; takeVideo = async () => { logEvent(events.ROOM_BOX_ACTION_VIDEO); @@ -666,7 +660,7 @@ class MessageBox extends Component<IMessageBoxProps, IMessageBoxState> { } catch (e) { logEvent(events.ROOM_BOX_ACTION_VIDEO_F); } - } + }; chooseFromLibrary = async () => { logEvent(events.ROOM_BOX_ACTION_LIBRARY); @@ -676,19 +670,19 @@ class MessageBox extends Component<IMessageBoxProps, IMessageBoxState> { } catch (e) { logEvent(events.ROOM_BOX_ACTION_LIBRARY_F); } - } + }; chooseFile = async () => { logEvent(events.ROOM_BOX_ACTION_FILE); try { const res = await DocumentPicker.pick({ - type: [DocumentPicker.types.allFiles], + type: [DocumentPicker.types.allFiles] }); const file = { filename: res.name, size: res.size, mime: res.type, - path: res.uri, + path: res.uri }; if (this.canUploadFile(file)) { this.openShareView([file]); @@ -699,7 +693,7 @@ class MessageBox extends Component<IMessageBoxProps, IMessageBoxState> { log(e); } } - } + }; openShareView = (attachments: any) => { const { message, replyCancel, replyWithMention } = this.props; @@ -710,7 +704,7 @@ class MessageBox extends Component<IMessageBoxProps, IMessageBoxState> { replyCancel(); } Navigation.navigate('ShareView', { room: this.room, thread, attachments }); - } + }; createDiscussion = () => { logEvent(events.ROOM_BOX_ACTION_DISCUSSION); @@ -721,33 +715,31 @@ class MessageBox extends Component<IMessageBoxProps, IMessageBoxState> { } else { Navigation.navigate('NewMessageStackNavigator', { screen: 'CreateDiscussionView', params }); } - } + }; showMessageBoxActions = () => { logEvent(events.ROOM_SHOW_BOX_ACTIONS); const { showActionSheet } = this.props; showActionSheet({ options: this.options }); - } + }; editCancel = () => { const { editCancel } = this.props; editCancel(); this.clearInput(); - } + }; openEmoji = () => { logEvent(events.ROOM_OPEN_EMOJI); this.setState({ showEmojiKeyboard: true }); - } + }; recordingCallback = (recording: any) => { this.setState({ recording }); - } + }; finishAudioMessage = async (fileInfo: any) => { - const { - rid, tmid, baseUrl: server, user, - } = this.props; + const { rid, tmid, baseUrl: server, user } = this.props; if (fileInfo) { try { @@ -758,17 +750,15 @@ class MessageBox extends Component<IMessageBoxProps, IMessageBoxState> { log(e); } } - } + }; closeEmoji = () => { this.setState({ showEmojiKeyboard: false }); - } + }; submit = async () => { const { tshow } = this.state; - const { - onSubmit, rid: roomId, tmid, showSend, sharing, - } = this.props; + const { onSubmit, rid: roomId, tmid, showSend, sharing } = this.props; const message = this.text; // if sharing, only execute onSubmit prop @@ -787,7 +777,10 @@ class MessageBox extends Component<IMessageBoxProps, IMessageBoxState> { } const { - editing, replying, message: { id: messageTmid }, replyCancel, + editing, + replying, + message: { id: messageTmid }, + replyCancel } = this.props; // Slash command @@ -796,9 +789,7 @@ class MessageBox extends Component<IMessageBoxProps, IMessageBoxState> { const commandsCollection = db.get('slash_commands'); const command = message.replace(/ .*/, '').slice(1); const likeString = sanitizeLikeString(command); - const slashCommand = await commandsCollection.query( - Q.where('id', Q.like(`${ likeString }%`)), - ).fetch(); + const slashCommand = await commandsCollection.query(Q.where('id', Q.like(`${likeString}%`))).fetch(); if (slashCommand.length > 0) { logEvent(events.COMMAND_RUN); try { @@ -819,41 +810,42 @@ class MessageBox extends Component<IMessageBoxProps, IMessageBoxState> { if (editing) { const { message: editingMessage, editRequest } = this.props; // @ts-ignore - const { id, subscription: { id: rid } } = editingMessage; + const { + id, + subscription: { id: rid } + } = editingMessage; editRequest({ id, msg: message, rid }); - // Reply + // Reply } else if (replying) { - const { - message: replyingMessage, threadsEnabled, replyWithMention, - } = this.props; + const { message: replyingMessage, threadsEnabled, replyWithMention } = this.props; // Thread if (threadsEnabled && replyWithMention) { onSubmit(message, replyingMessage.id, tshow); - // Legacy reply or quote (quote is a reply without mention) + // Legacy reply or quote (quote is a reply without mention) } else { const { user, roomType } = this.props; const permalink = await this.getPermalink(replyingMessage); - let msg = `[ ](${ permalink }) `; + let msg = `[ ](${permalink}) `; // if original message wasn't sent by current user and neither from a direct room if (user.username !== replyingMessage.u.username && roomType !== 'd' && replyWithMention) { - msg += `@${ replyingMessage.u.username } `; + msg += `@${replyingMessage.u.username} `; } - msg = `${ msg } ${ message }`; + msg = `${msg} ${message}`; onSubmit(msg); } replyCancel(); - // Normal message + // Normal message } else { // @ts-ignore onSubmit(message, undefined, tshow); } - } + }; updateMentions = (keyword: any, type: string) => { if (type === MENTIONS_TRACKING_TYPE_USERS) { @@ -865,15 +857,15 @@ class MessageBox extends Component<IMessageBoxProps, IMessageBoxState> { } else { this.getRooms(keyword); } - } + }; identifyMentionKeyword = (keyword: any, type: string) => { this.setState({ showEmojiKeyboard: false, - trackingType: type, + trackingType: type }); this.updateMentions(keyword, type); - } + }; stopTrackingMention = () => { const { trackingType, showCommandPreview } = this.state; @@ -884,11 +876,11 @@ class MessageBox extends Component<IMessageBoxProps, IMessageBoxState> { mentions: [], trackingType: '', commandPreview: [], - showCommandPreview: false, + showCommandPreview: false }); - } + }; - handleCommands = ({ event }: {event: any}) => { + handleCommands = ({ event }: { event: any }) => { if (handleCommandTyping(event)) { if (this.focused) { Keyboard.dismiss(); @@ -901,9 +893,9 @@ class MessageBox extends Component<IMessageBoxProps, IMessageBoxState> { } else if (handleCommandShowUpload(event)) { this.showMessageBoxActions(); } - } + }; - onPressSendToChannel = () => this.setState(({ tshow }) => ({ tshow: !tshow })) + onPressSendToChannel = () => this.setState(({ tshow }) => ({ tshow: !tshow })); renderSendToChannel = () => { const { tshow } = this.state; @@ -916,35 +908,44 @@ class MessageBox extends Component<IMessageBoxProps, IMessageBoxState> { <TouchableWithoutFeedback style={[styles.sendToChannelButton, { backgroundColor: themes[theme].messageboxBackground }]} onPress={this.onPressSendToChannel} - testID='messagebox-send-to-channel' - > + testID='messagebox-send-to-channel'> <CustomIcon name={tshow ? 'checkbox-checked' : 'checkbox-unchecked'} size={24} color={themes[theme].auxiliaryText} /> - <Text style={[styles.sendToChannelText, { color: themes[theme].auxiliaryText }]}>{I18n.t('Messagebox_Send_to_channel')}</Text> + <Text style={[styles.sendToChannelText, { color: themes[theme].auxiliaryText }]}> + {I18n.t('Messagebox_Send_to_channel')} + </Text> </TouchableWithoutFeedback> ); - } + }; renderContent = () => { + const { recording, showEmojiKeyboard, showSend, mentions, trackingType, commandPreview, showCommandPreview } = this.state; const { - recording, showEmojiKeyboard, showSend, mentions, trackingType, commandPreview, showCommandPreview, - } = this.state; - const { - editing, message, replying, replyCancel, user, getCustomEmoji, theme, Message_AudioRecorderEnabled, children, isActionsEnabled, tmid, + editing, + message, + replying, + replyCancel, + user, + getCustomEmoji, + theme, + Message_AudioRecorderEnabled, + children, + isActionsEnabled, + tmid } = this.props; - const isAndroidTablet = isTablet && isAndroid ? { - multiline: false, - onSubmitEditing: this.submit, - returnKeyType: 'send', - } : {}; + const isAndroidTablet = + isTablet && isAndroid + ? { + multiline: false, + onSubmitEditing: this.submit, + returnKeyType: 'send' + } + : {}; - const recordAudio = showSend || !Message_AudioRecorderEnabled ? null : ( - <RecordAudio - theme={theme} - recordingCallback={this.recordingCallback} - onFinish={this.finishAudioMessage} - /> - ); + const recordAudio = + showSend || !Message_AudioRecorderEnabled ? null : ( + <RecordAudio theme={theme} recordingCallback={this.recordingCallback} onFinish={this.finishAudioMessage} /> + ); const commandsPreviewAndMentions = !recording ? ( <> @@ -979,7 +980,7 @@ class MessageBox extends Component<IMessageBoxProps, IMessageBoxState> { isActionsEnabled={isActionsEnabled} /> <TextInput - ref={(component) => this.component = component} + ref={component => (this.component = component)} // @ts-ignore style={[styles.textBoxInput, { color: themes[theme].bodyText }]} returnKeyType='default' @@ -993,7 +994,7 @@ class MessageBox extends Component<IMessageBoxProps, IMessageBoxState> { underlineColorAndroid='transparent' defaultValue='' multiline - testID={`messagebox-input${ tmid ? '-thread' : '' }`} + testID={`messagebox-input${tmid ? '-thread' : ''}`} theme={theme} {...isAndroidTablet} /> @@ -1016,10 +1017,9 @@ class MessageBox extends Component<IMessageBoxProps, IMessageBoxState> { style={[ styles.textArea, { backgroundColor: themes[theme].messageboxBackground }, - !recording && editing && { backgroundColor: themes[theme].chatComponentBackground }, + !recording && editing && { backgroundColor: themes[theme].chatComponentBackground } ]} - testID='messagebox' - > + testID='messagebox'> {textInputAndButtons} {recordAudio} </View> @@ -1028,25 +1028,22 @@ class MessageBox extends Component<IMessageBoxProps, IMessageBoxState> { {children} </> ); - } + }; render() { - console.count(`${ this.constructor.name }.render calls`); + console.count(`${this.constructor.name}.render calls`); const { showEmojiKeyboard } = this.state; - const { - user, baseUrl, theme, iOSScrollBehavior, - } = this.props; + const { user, baseUrl, theme, iOSScrollBehavior } = this.props; return ( <MessageboxContext.Provider value={{ user, baseUrl, onPressMention: this.onPressMention, - onPressCommandPreview: this.onPressCommandPreview, - }} - > + onPressCommandPreview: this.onPressCommandPreview + }}> <KeyboardAccessoryView - ref={(ref: any) => this.tracking = ref} + ref={(ref: any) => (this.tracking = ref)} renderContent={this.renderContent} kbInputRef={this.component} kbComponent={showEmojiKeyboard ? 'EmojiKeyboard' : null} @@ -1070,11 +1067,11 @@ const mapStateToProps = (state: any) => ({ user: getUserSelector(state), FileUpload_MediaTypeWhiteList: state.settings.FileUpload_MediaTypeWhiteList, FileUpload_MaxFileSize: state.settings.FileUpload_MaxFileSize, - Message_AudioRecorderEnabled: state.settings.Message_AudioRecorderEnabled, + Message_AudioRecorderEnabled: state.settings.Message_AudioRecorderEnabled }); const dispatchToProps = { - typing: (rid: any, status: any) => userTypingAction(rid, status), + typing: (rid: any, status: any) => userTypingAction(rid, status) }; // @ts-ignore export default connect(mapStateToProps, dispatchToProps, null, { forwardRef: true })(withActionSheet(MessageBox)); diff --git a/app/containers/MessageBox/styles.ts b/app/containers/MessageBox/styles.ts index 3e28ac180a..9c5a2ff521 100644 --- a/app/containers/MessageBox/styles.ts +++ b/app/containers/MessageBox/styles.ts @@ -9,12 +9,12 @@ const SCROLLVIEW_MENTION_HEIGHT = 4 * MENTION_HEIGHT; export default StyleSheet.create({ composer: { flexDirection: 'column', - borderTopWidth: 1, + borderTopWidth: 1 }, textArea: { flexDirection: 'row', alignItems: 'center', - flexGrow: 0, + flexGrow: 0 }, textBoxInput: { textAlignVertical: 'center', @@ -28,48 +28,48 @@ export default StyleSheet.create({ paddingRight: 0, fontSize: 16, letterSpacing: 0, - ...sharedStyles.textRegular, + ...sharedStyles.textRegular }, actionButton: { alignItems: 'center', justifyContent: 'center', width: 60, - height: 48, + height: 48 }, mentionList: { - maxHeight: MENTION_HEIGHT * 4, + maxHeight: MENTION_HEIGHT * 4 }, mentionItem: { height: MENTION_HEIGHT, borderTopWidth: StyleSheet.hairlineWidth, flexDirection: 'row', alignItems: 'center', - paddingHorizontal: 5, + paddingHorizontal: 5 }, mentionItemCustomEmoji: { margin: 8, width: 30, - height: 30, + height: 30 }, mentionItemEmoji: { width: 46, height: 36, fontSize: isIOS ? 30 : 25, - ...sharedStyles.textAlignCenter, + ...sharedStyles.textAlignCenter }, fixedMentionAvatar: { width: 46, fontSize: 14, ...sharedStyles.textBold, - ...sharedStyles.textAlignCenter, + ...sharedStyles.textAlignCenter }, mentionText: { fontSize: 14, - ...sharedStyles.textRegular, + ...sharedStyles.textRegular }, emojiKeyboardContainer: { flex: 1, - borderTopWidth: StyleSheet.hairlineWidth, + borderTopWidth: StyleSheet.hairlineWidth }, slash: { height: 30, @@ -77,48 +77,48 @@ export default StyleSheet.create({ padding: 5, paddingHorizontal: 12, marginHorizontal: 10, - borderRadius: 2, + borderRadius: 2 }, commandPreviewImage: { justifyContent: 'center', margin: 3, width: 120, height: 80, - borderRadius: 4, + borderRadius: 4 }, commandPreview: { height: 100, flex: 1, flexDirection: 'row', - alignItems: 'center', + alignItems: 'center' }, avatar: { - margin: 8, + margin: 8 }, scrollViewMention: { - maxHeight: SCROLLVIEW_MENTION_HEIGHT, + maxHeight: SCROLLVIEW_MENTION_HEIGHT }, recordingContent: { flexDirection: 'row', flex: 1, - justifyContent: 'space-between', + justifyContent: 'space-between' }, recordingCancelText: { fontSize: 16, - ...sharedStyles.textRegular, + ...sharedStyles.textRegular }, buttonsWhitespace: { - width: 15, + width: 15 }, sendToChannelButton: { flexDirection: 'row', alignItems: 'center', paddingVertical: 8, - paddingHorizontal: 18, + paddingHorizontal: 18 }, sendToChannelText: { fontSize: 12, marginLeft: 4, - ...sharedStyles.textRegular, - }, + ...sharedStyles.textRegular + } }); diff --git a/app/containers/MessageErrorActions.tsx b/app/containers/MessageErrorActions.tsx index 80c2efc428..6f56e54dbb 100644 --- a/app/containers/MessageErrorActions.tsx +++ b/app/containers/MessageErrorActions.tsx @@ -41,7 +41,7 @@ const MessageErrorActions = forwardRef(({ tmid }: any, ref): any => { msg.prepareUpdate((m: any) => { m.tcount = null; m.tlm = null; - }), + }) ); try { @@ -55,7 +55,7 @@ const MessageErrorActions = forwardRef(({ tmid }: any, ref): any => { deleteBatch.push( msg.prepareUpdate((m: any) => { m.tcount -= 1; - }), + }) ); } } catch { @@ -76,21 +76,21 @@ const MessageErrorActions = forwardRef(({ tmid }: any, ref): any => { { title: I18n.t('Resend'), icon: 'send', - onPress: () => handleResend(message), + onPress: () => handleResend(message) }, { title: I18n.t('Delete'), icon: 'delete', danger: true, - onPress: () => handleDelete(message), - }, + onPress: () => handleDelete(message) + } ], - hasCancel: true, + hasCancel: true }); }; useImperativeHandle(ref, () => ({ - showMessageErrorActions, + showMessageErrorActions })); return null; diff --git a/app/containers/OrSeparator.tsx b/app/containers/OrSeparator.tsx index a9d01e73c5..5be1ee8831 100644 --- a/app/containers/OrSeparator.tsx +++ b/app/containers/OrSeparator.tsx @@ -9,22 +9,22 @@ const styles = StyleSheet.create({ container: { flexDirection: 'row', alignItems: 'center', - marginVertical: 24, + marginVertical: 24 }, line: { height: 1, - flex: 1, + flex: 1 }, text: { fontSize: 14, marginLeft: 14, marginRight: 14, - ...sharedStyles.textMedium, - }, + ...sharedStyles.textMedium + } }); interface IOrSeparator { - theme: string + theme: string; } const OrSeparator = React.memo(({ theme }: IOrSeparator) => { diff --git a/app/containers/Passcode/Base/Button.tsx b/app/containers/Passcode/Base/Button.tsx index 76c31761dc..f7e6c1a9a3 100644 --- a/app/containers/Passcode/Base/Button.tsx +++ b/app/containers/Passcode/Base/Button.tsx @@ -24,19 +24,12 @@ const Button = React.memo(({ text, disabled, theme, onPress, icon }: Partial<IPa rippleColor={themes[theme!].passcodeButtonActive} enabled={!disabled} theme={theme} - onPress={press} - > - { - icon - ? ( - <CustomIcon name={icon} size={36} color={themes[theme!].passcodePrimary} /> - ) - : ( - <Text style={[styles.buttonText, { color: themes[theme!].passcodePrimary }]}> - {text} - </Text> - ) - } + onPress={press}> + {icon ? ( + <CustomIcon name={icon} size={36} color={themes[theme!].passcodePrimary} /> + ) : ( + <Text style={[styles.buttonText, { color: themes[theme!].passcodePrimary }]}>{text}</Text> + )} </Touch> ); }); diff --git a/app/containers/Passcode/Base/Dots.tsx b/app/containers/Passcode/Base/Dots.tsx index db984a95bc..75ee4bc76d 100644 --- a/app/containers/Passcode/Base/Dots.tsx +++ b/app/containers/Passcode/Base/Dots.tsx @@ -16,7 +16,7 @@ interface IPasscodeDots { const Dots = React.memo(({ passcode, theme, length }: IPasscodeDots) => ( <View style={styles.dotsContainer}> - {range(length).map((val) => { + {range(length).map(val => { const lengthSup = passcode.length >= val + 1; const height = lengthSup ? SIZE_FULL : SIZE_EMPTY; const width = lengthSup ? SIZE_FULL : SIZE_EMPTY; @@ -38,7 +38,7 @@ const Dots = React.memo(({ passcode, theme, length }: IPasscodeDots) => ( borderRadius, backgroundColor, marginRight, - marginLeft, + marginLeft }} /> </View> diff --git a/app/containers/Passcode/Base/LockIcon.tsx b/app/containers/Passcode/Base/LockIcon.tsx index 17723f3db3..2015d7cb93 100644 --- a/app/containers/Passcode/Base/LockIcon.tsx +++ b/app/containers/Passcode/Base/LockIcon.tsx @@ -6,7 +6,7 @@ import styles from './styles'; import { themes } from '../../../constants/colors'; import { CustomIcon } from '../../../lib/Icons'; -const LockIcon = React.memo(({ theme }: {theme: string}) => ( +const LockIcon = React.memo(({ theme }: { theme: string }) => ( <Row style={styles.row}> <View style={styles.iconView}> <CustomIcon name='auth' size={40} color={themes[theme].passcodeLockIcon} /> diff --git a/app/containers/Passcode/Base/index.tsx b/app/containers/Passcode/Base/index.tsx index 102d1c99b2..97d34517c5 100644 --- a/app/containers/Passcode/Base/index.tsx +++ b/app/containers/Passcode/Base/index.tsx @@ -26,111 +26,118 @@ interface IPasscodeBase { onBiometryPress(): void; } -const Base = forwardRef(({ - theme, type, onEndProcess, previousPasscode, title, subtitle, onError, showBiometry, onBiometryPress, -}: IPasscodeBase, ref) => { - const rootRef = useRef<any>(); - const dotsRef = useRef<any>(); - const [passcode, setPasscode] = useState(''); +const Base = forwardRef( + ( + { theme, type, onEndProcess, previousPasscode, title, subtitle, onError, showBiometry, onBiometryPress }: IPasscodeBase, + ref + ) => { + const rootRef = useRef<any>(); + const dotsRef = useRef<any>(); + const [passcode, setPasscode] = useState(''); - const clearPasscode = () => setPasscode(''); + const clearPasscode = () => setPasscode(''); - const wrongPasscode = () => { - clearPasscode(); - dotsRef?.current?.shake(500); - Haptics.notificationAsync(Haptics.NotificationFeedbackType.Error); - }; + const wrongPasscode = () => { + clearPasscode(); + dotsRef?.current?.shake(500); + Haptics.notificationAsync(Haptics.NotificationFeedbackType.Error); + }; - const animate = (animation: string, duration = 500) => { - rootRef?.current?.[animation](duration); - }; + const animate = (animation: string, duration = 500) => { + rootRef?.current?.[animation](duration); + }; - const onPressNumber = (text: string) => setPasscode((p) => { - const currentPasscode = p + text; - if (currentPasscode?.length === PASSCODE_LENGTH) { - switch (type) { - case TYPE.CHOOSE: - onEndProcess(currentPasscode); - break; - case TYPE.CONFIRM: - if (currentPasscode !== previousPasscode) { - onError(); - } else { - onEndProcess(currentPasscode); + const onPressNumber = (text: string) => + setPasscode(p => { + const currentPasscode = p + text; + if (currentPasscode?.length === PASSCODE_LENGTH) { + switch (type) { + case TYPE.CHOOSE: + onEndProcess(currentPasscode); + break; + case TYPE.CONFIRM: + if (currentPasscode !== previousPasscode) { + onError(); + } else { + onEndProcess(currentPasscode); + } + break; + case TYPE.ENTER: + onEndProcess(currentPasscode); + break; + default: + break; } - break; - case TYPE.ENTER: - onEndProcess(currentPasscode); - break; - default: - break; - } - } - return currentPasscode; - }); + } + return currentPasscode; + }); - const onPressDelete = () => setPasscode((p) => { - if (p?.length > 0) { - const newPasscode = p.slice(0, -1); - return newPasscode; - } - return ''; - }); + const onPressDelete = () => + setPasscode(p => { + if (p?.length > 0) { + const newPasscode = p.slice(0, -1); + return newPasscode; + } + return ''; + }); - useImperativeHandle(ref, () => ({ - wrongPasscode, animate, clearPasscode, - })); + useImperativeHandle(ref, () => ({ + wrongPasscode, + animate, + clearPasscode + })); - return ( - <Animatable.View ref={rootRef} style={styles.container}> - <Grid style={[styles.grid, { backgroundColor: themes[theme].passcodeBackground }]}> - <LockIcon theme={theme} /> - <Title text={title} theme={theme} /> - <Subtitle text={subtitle!} theme={theme} /> - <Row style={styles.row}> - <Animatable.View ref={dotsRef}> - <Dots passcode={passcode} theme={theme} length={PASSCODE_LENGTH} /> - </Animatable.View> - </Row> - <Row style={[styles.row, styles.buttonRow]}> - {range(1, 4).map((i: any) => ( - <Col key={i} style={styles.colButton}> - <Button text={i} theme={theme} onPress={onPressNumber} /> - </Col> - ))} - </Row> - <Row style={[styles.row, styles.buttonRow]}> - {range(4, 7).map((i: any) => ( - <Col key={i} style={styles.colButton}> - <Button text={i} theme={theme} onPress={onPressNumber} /> - </Col> - ))} - </Row> - <Row style={[styles.row, styles.buttonRow]}> - {range(7, 10).map((i: any) => ( - <Col key={i} style={styles.colButton}> - <Button text={i} theme={theme} onPress={onPressNumber} /> - </Col> - ))} - </Row> - <Row style={[styles.row, styles.buttonRow]}> - {showBiometry - ? ( + return ( + <Animatable.View ref={rootRef} style={styles.container}> + <Grid style={[styles.grid, { backgroundColor: themes[theme].passcodeBackground }]}> + <LockIcon theme={theme} /> + <Title text={title} theme={theme} /> + <Subtitle text={subtitle!} theme={theme} /> + <Row style={styles.row}> + <Animatable.View ref={dotsRef}> + <Dots passcode={passcode} theme={theme} length={PASSCODE_LENGTH} /> + </Animatable.View> + </Row> + <Row style={[styles.row, styles.buttonRow]}> + {range(1, 4).map((i: any) => ( + <Col key={i} style={styles.colButton}> + <Button text={i} theme={theme} onPress={onPressNumber} /> + </Col> + ))} + </Row> + <Row style={[styles.row, styles.buttonRow]}> + {range(4, 7).map((i: any) => ( + <Col key={i} style={styles.colButton}> + <Button text={i} theme={theme} onPress={onPressNumber} /> + </Col> + ))} + </Row> + <Row style={[styles.row, styles.buttonRow]}> + {range(7, 10).map((i: any) => ( + <Col key={i} style={styles.colButton}> + <Button text={i} theme={theme} onPress={onPressNumber} /> + </Col> + ))} + </Row> + <Row style={[styles.row, styles.buttonRow]}> + {showBiometry ? ( <Col style={styles.colButton}> <Button icon='fingerprint' theme={theme} onPress={onBiometryPress} /> </Col> - ) - : <Col style={styles.colButton} />} - <Col style={styles.colButton}> - <Button text='0' theme={theme} onPress={onPressNumber} /> - </Col> - <Col style={styles.colButton}> - <Button icon='backspace' theme={theme} onPress={onPressDelete} /> - </Col> - </Row> - </Grid> - </Animatable.View> - ); -}); + ) : ( + <Col style={styles.colButton} /> + )} + <Col style={styles.colButton}> + <Button text='0' theme={theme} onPress={onPressNumber} /> + </Col> + <Col style={styles.colButton}> + <Button icon='backspace' theme={theme} onPress={onPressDelete} /> + </Col> + </Row> + </Grid> + </Animatable.View> + ); + } +); export default Base; diff --git a/app/containers/Passcode/Base/styles.ts b/app/containers/Passcode/Base/styles.ts index 45f6e46f2e..252e5a8546 100644 --- a/app/containers/Passcode/Base/styles.ts +++ b/app/containers/Passcode/Base/styles.ts @@ -4,22 +4,22 @@ import sharedStyles from '../../../views/Styles'; export default StyleSheet.create({ container: { - flex: 1, + flex: 1 }, titleView: { - justifyContent: 'center', + justifyContent: 'center' }, subtitleView: { justifyContent: 'center', - height: 32, + height: 32 }, row: { flex: 0, alignItems: 'center', - justifyContent: 'center', + justifyContent: 'center' }, buttonRow: { - height: 102, + height: 102 }, colButton: { flex: 0, @@ -27,44 +27,44 @@ export default StyleSheet.create({ marginRight: 12, alignItems: 'center', width: 78, - height: 78, + height: 78 }, buttonText: { fontSize: 28, - ...sharedStyles.textRegular, + ...sharedStyles.textRegular }, buttonView: { alignItems: 'center', justifyContent: 'center', width: 78, height: 78, - borderRadius: 4, + borderRadius: 4 }, textTitle: { fontSize: 22, - ...sharedStyles.textRegular, + ...sharedStyles.textRegular }, textSubtitle: { fontSize: 16, - ...sharedStyles.textMedium, + ...sharedStyles.textMedium }, dotsContainer: { flexDirection: 'row', justifyContent: 'center', alignItems: 'center', marginTop: 24, - marginBottom: 40, + marginBottom: 40 }, dotsView: { justifyContent: 'center', alignItems: 'center', - height: 16, + height: 16 }, grid: { justifyContent: 'center', - flexDirection: 'column', + flexDirection: 'column' }, iconView: { - marginVertical: 16, - }, + marginVertical: 16 + } }); diff --git a/app/containers/Passcode/PasscodeEnter.tsx b/app/containers/Passcode/PasscodeEnter.tsx index d0728401a8..b3b84f997d 100644 --- a/app/containers/Passcode/PasscodeEnter.tsx +++ b/app/containers/Passcode/PasscodeEnter.tsx @@ -7,15 +7,12 @@ import { sha256 } from 'js-sha256'; import Base from './Base'; import Locked from './Base/Locked'; import { TYPE } from './constants'; -import { - ATTEMPTS_KEY, LOCKED_OUT_TIMER_KEY, MAX_ATTEMPTS, PASSCODE_KEY, -} from '../../constants/localAuthentication'; +import { ATTEMPTS_KEY, LOCKED_OUT_TIMER_KEY, MAX_ATTEMPTS, PASSCODE_KEY } from '../../constants/localAuthentication'; import { biometryAuth, resetAttempts } from '../../utils/localAuthentication'; import { getDiff, getLockedUntil } from './utils'; import UserPreferences from '../../lib/userPreferences'; import I18n from '../../i18n'; - interface IPasscodePasscodeEnter { theme: string; hasBiometry: string; diff --git a/app/containers/Passcode/constants.ts b/app/containers/Passcode/constants.ts index d07dc67fda..ae268799ac 100644 --- a/app/containers/Passcode/constants.ts +++ b/app/containers/Passcode/constants.ts @@ -2,5 +2,5 @@ export const TYPE: any = { CHOOSE: 'choose', CONFIRM: 'confirm', ENTER: 'enter', - LOCKED: 'locked', + LOCKED: 'locked' }; diff --git a/app/containers/Passcode/utils.ts b/app/containers/Passcode/utils.ts index 07b8a949da..f497e95a4f 100644 --- a/app/containers/Passcode/utils.ts +++ b/app/containers/Passcode/utils.ts @@ -11,4 +11,4 @@ export const getLockedUntil = async () => { return null; }; // @ts-ignore -export const getDiff = (t) => new Date(t) - new Date(); +export const getDiff = t => new Date(t) - new Date(); diff --git a/app/containers/ReactionsModal.tsx b/app/containers/ReactionsModal.tsx index aac8c4a5e4..d3f5bc8d57 100644 --- a/app/containers/ReactionsModal.tsx +++ b/app/containers/ReactionsModal.tsx @@ -13,48 +13,48 @@ import SafeAreaView from './SafeAreaView'; const styles = StyleSheet.create({ safeArea: { - backgroundColor: 'transparent', + backgroundColor: 'transparent' }, titleContainer: { alignItems: 'center', - paddingVertical: 10, + paddingVertical: 10 }, title: { fontSize: 16, ...sharedStyles.textSemibold, - ...sharedStyles.textAlignCenter, + ...sharedStyles.textAlignCenter }, reactCount: { fontSize: 13, - ...sharedStyles.textRegular, + ...sharedStyles.textRegular }, peopleReacted: { fontSize: 14, - ...sharedStyles.textMedium, + ...sharedStyles.textMedium }, peopleItemContainer: { flex: 1, flexDirection: 'column', - justifyContent: 'center', + justifyContent: 'center' }, emojiContainer: { width: 50, height: 50, alignItems: 'center', - justifyContent: 'center', + justifyContent: 'center' }, itemContainer: { height: 50, - flexDirection: 'row', + flexDirection: 'row' }, listContainer: { - flex: 1, + flex: 1 }, closeButton: { position: 'absolute', left: 0, - top: 10, - }, + top: 10 + } }); const standardEmojiStyle = { fontSize: 20 }; const customEmojiStyle = { width: 20, height: 20 }; @@ -64,7 +64,7 @@ interface IItem { usernames: any; emoji: string; }; - user?: {username: any;}; + user?: { username: any }; baseUrl?: string; getCustomEmoji?: Function; theme?: string; @@ -72,7 +72,7 @@ interface IItem { interface IModalContent { message: { - reactions: any + reactions: any; }; onClose: Function; theme: string; @@ -86,12 +86,14 @@ interface IReactionsModal { const Item = React.memo(({ item, user, baseUrl, getCustomEmoji, theme }: IItem) => { const count = item.usernames.length; - let usernames = item.usernames.slice(0, 3) - .map((username: any) => (username === user?.username ? I18n.t('you') : username)).join(', '); + let usernames = item.usernames + .slice(0, 3) + .map((username: any) => (username === user?.username ? I18n.t('you') : username)) + .join(', '); if (count > 3) { - usernames = `${ usernames } ${ I18n.t('and_more') } ${ count - 3 }`; + usernames = `${usernames} ${I18n.t('and_more')} ${count - 3}`; } else { - usernames = usernames.replace(/,(?=[^,]*$)/, ` ${ I18n.t('and') }`); + usernames = usernames.replace(/,(?=[^,]*$)/, ` ${I18n.t('and')}`); } return ( <View style={styles.itemContainer}> @@ -108,7 +110,7 @@ const Item = React.memo(({ item, user, baseUrl, getCustomEmoji, theme }: IItem) <Text style={[styles.reactCount, { color: themes[theme!].buttonText }]}> {count === 1 ? I18n.t('1_person_reacted') : I18n.t('N_people_reacted', { n: count })} </Text> - <Text style={[styles.peopleReacted, { color: themes[theme!].buttonText }]}>{ usernames }</Text> + <Text style={[styles.peopleReacted, { color: themes[theme!].buttonText }]}>{usernames}</Text> </View> </View> ); @@ -120,11 +122,7 @@ const ModalContent = React.memo(({ message, onClose, ...props }: IModalContent) <SafeAreaView style={styles.safeArea}> <Touchable onPress={onClose}> <View style={styles.titleContainer}> - <CustomIcon - style={[styles.closeButton, { color: themes[props.theme].buttonText }]} - name='close' - size={20} - /> + <CustomIcon style={[styles.closeButton, { color: themes[props.theme].buttonText }]} name='close' size={20} /> <Text style={[styles.title, { color: themes[props.theme].buttonText }]}>{I18n.t('Reactions')}</Text> </View> </Touchable> @@ -132,7 +130,7 @@ const ModalContent = React.memo(({ message, onClose, ...props }: IModalContent) style={styles.listContainer} data={message.reactions} renderItem={({ item }) => <Item item={item} {...props} />} - keyExtractor={(item) => item.emoji} + keyExtractor={item => item.emoji} /> </SafeAreaView> ); @@ -140,19 +138,21 @@ const ModalContent = React.memo(({ message, onClose, ...props }: IModalContent) return null; }); -const ReactionsModal = React.memo(({ isVisible, onClose, theme, ...props }: IReactionsModal) => ( - <Modal - isVisible={isVisible} - onBackdropPress={onClose} - onBackButtonPress={onClose} - backdropOpacity={0.8} - onSwipeComplete={onClose} - swipeDirection={['up', 'left', 'right', 'down']} - > - {/* @ts-ignore*/} - <ModalContent onClose={onClose} theme={theme} {...props} /> - </Modal> -), (prevProps, nextProps) => prevProps.isVisible === nextProps.isVisible && prevProps.theme === nextProps.theme); +const ReactionsModal = React.memo( + ({ isVisible, onClose, theme, ...props }: IReactionsModal) => ( + <Modal + isVisible={isVisible} + onBackdropPress={onClose} + onBackButtonPress={onClose} + backdropOpacity={0.8} + onSwipeComplete={onClose} + swipeDirection={['up', 'left', 'right', 'down']}> + {/* @ts-ignore*/} + <ModalContent onClose={onClose} theme={theme} {...props} /> + </Modal> + ), + (prevProps, nextProps) => prevProps.isVisible === nextProps.isVisible && prevProps.theme === nextProps.theme +); ReactionsModal.displayName = 'ReactionsModal'; ModalContent.displayName = 'ReactionsModalContent'; diff --git a/app/containers/RoomHeader/RoomHeader.stories.js b/app/containers/RoomHeader/RoomHeader.stories.js index a8ddfd4bef..316efca24e 100644 --- a/app/containers/RoomHeader/RoomHeader.stories.js +++ b/app/containers/RoomHeader/RoomHeader.stories.js @@ -12,19 +12,21 @@ const stories = storiesOf('RoomHeader', module); // TODO: refactor after react-navigation v6 const HeaderExample = ({ title }) => ( - <Header - headerTitle={() => ( - <View style={{ flex: 1, paddingHorizontal: 12 }}> - {title()} - </View> - )} - /> + <Header headerTitle={() => <View style={{ flex: 1, paddingHorizontal: 12 }}>{title()}</View>} /> ); const { width, height } = Dimensions.get('window'); const RoomHeader = ({ ...props }) => ( - <RoomHeaderComponent width={width} height={height} title='title' type='p' testID={props.title} onPress={() => alert('header pressed!')} {...props} /> + <RoomHeaderComponent + width={width} + height={height} + title='title' + type='p' + testID={props.title} + onPress={() => alert('header pressed!')} + {...props} + /> ); stories.add('title and subtitle', () => ( @@ -78,9 +80,7 @@ stories.add('thread', () => ( )); const ThemeStory = ({ theme }) => ( - <ThemeContext.Provider - value={{ theme }} - > + <ThemeContext.Provider value={{ theme }}> <HeaderExample title={() => <RoomHeader subtitle='subtitle' />} /> </ThemeContext.Provider> ); diff --git a/app/containers/RoomHeader/RoomHeader.tsx b/app/containers/RoomHeader/RoomHeader.tsx index e09f74c453..0ca3bbf5a7 100644 --- a/app/containers/RoomHeader/RoomHeader.tsx +++ b/app/containers/RoomHeader/RoomHeader.tsx @@ -9,7 +9,10 @@ import RoomTypeIcon from '../RoomTypeIcon'; import { withTheme } from '../../theme'; const HIT_SLOP = { - top: 5, right: 5, bottom: 5, left: 5, + top: 5, + right: 5, + bottom: 5, + left: 5 }; const TITLE_SIZE = 16; const SUBTITLE_SIZE = 12; @@ -19,23 +22,23 @@ const getSubTitleSize = (scale: number) => SUBTITLE_SIZE * scale; const styles = StyleSheet.create({ container: { flex: 1, - justifyContent: 'center', + justifyContent: 'center' }, titleContainer: { alignItems: 'center', - flexDirection: 'row', + flexDirection: 'row' }, title: { flexShrink: 1, - ...sharedStyles.textSemibold, + ...sharedStyles.textSemibold }, subtitle: { flexShrink: 1, - ...sharedStyles.textRegular, + ...sharedStyles.textRegular }, typingUsers: { - ...sharedStyles.textSemibold, - }, + ...sharedStyles.textSemibold + } }); type TRoomHeaderSubTitle = { @@ -79,14 +82,14 @@ const SubTitle = React.memo(({ usersTyping, subtitle, renderFunc, theme, scale } if (usersTyping.length) { let usersText; if (usersTyping.length === 2) { - usersText = usersTyping.join(` ${ I18n.t('and') } `); + usersText = usersTyping.join(` ${I18n.t('and')} `); } else { usersText = usersTyping.join(', '); } return ( <Text style={[styles.subtitle, { fontSize, color: themes[theme].auxiliaryText }]} numberOfLines={1}> <Text style={styles.typingUsers}>{usersText} </Text> - { usersTyping.length > 1 ? I18n.t('are_typing') : I18n.t('is_typing') }... + {usersTyping.length > 1 ? I18n.t('are_typing') : I18n.t('is_typing')}... </Text> ); } @@ -117,11 +120,7 @@ const HeaderTitle = React.memo(({ title, tmid, prid, scale, theme, testID }: TRo const titleStyle = { fontSize: TITLE_SIZE * scale, color: themes[theme].headerTitleColor }; if (!tmid && !prid) { return ( - <Text - style={[styles.title, titleStyle]} - numberOfLines={1} - testID={testID} - > + <Text style={[styles.title, titleStyle]} numberOfLines={1} testID={testID}> {title} </Text> ); @@ -129,71 +128,70 @@ const HeaderTitle = React.memo(({ title, tmid, prid, scale, theme, testID }: TRo return ( // @ts-ignore - <Markdown - preview - msg={title} - style={[styles.title, titleStyle]} - numberOfLines={1} - theme={theme} - testID={testID} - /> + <Markdown preview msg={title} style={[styles.title, titleStyle]} numberOfLines={1} theme={theme} testID={testID} /> ); }); -const Header = React.memo(({ - title, subtitle, parentTitle, type, status, width, height, prid, tmid, onPress, theme, isGroupChat, teamMain, testID, usersTyping = [], -}: IRoomHeader) => { - const portrait = height > width; - let scale = 1; +const Header = React.memo( + ({ + title, + subtitle, + parentTitle, + type, + status, + width, + height, + prid, + tmid, + onPress, + theme, + isGroupChat, + teamMain, + testID, + usersTyping = [] + }: IRoomHeader) => { + const portrait = height > width; + let scale = 1; + + if (!portrait && !tmid) { + if (usersTyping.length > 0 || subtitle) { + scale = 0.8; + } + } - if (!portrait && !tmid) { - if (usersTyping.length > 0 || subtitle) { - scale = 0.8; + let renderFunc; + if (tmid) { + renderFunc = () => ( + <View style={styles.titleContainer}> + <RoomTypeIcon type={prid ? 'discussion' : type} isGroupChat={isGroupChat} status={status} teamMain={teamMain} /> + <Text style={[styles.subtitle, { color: themes[theme].auxiliaryText }]} numberOfLines={1}> + {parentTitle} + </Text> + </View> + ); } - } - let renderFunc; - if (tmid) { - renderFunc = () => ( - <View style={styles.titleContainer}> - <RoomTypeIcon type={prid ? 'discussion' : type} isGroupChat={isGroupChat} status={status} teamMain={teamMain} /> - <Text style={[styles.subtitle, { color: themes[theme].auxiliaryText }]} numberOfLines={1}>{parentTitle}</Text> - </View> + const handleOnPress = useCallback(() => onPress(), []); + + return ( + <TouchableOpacity + testID='room-header' + accessibilityLabel={title} + onPress={handleOnPress} + style={styles.container} + // @ts-ignore + disabled={tmid} + hitSlop={HIT_SLOP}> + <View style={styles.titleContainer}> + {tmid ? null : ( + <RoomTypeIcon type={prid ? 'discussion' : type} isGroupChat={isGroupChat} status={status} teamMain={teamMain} /> + )} + <HeaderTitle title={title} tmid={tmid} prid={prid} scale={scale} theme={theme} testID={testID} /> + </View> + <SubTitle usersTyping={tmid ? [] : usersTyping} subtitle={subtitle} theme={theme} renderFunc={renderFunc} scale={scale} /> + </TouchableOpacity> ); } - - const handleOnPress = useCallback(() => onPress(), []); - - return ( - <TouchableOpacity - testID='room-header' - accessibilityLabel={title} - onPress={handleOnPress} - style={styles.container} - // @ts-ignore - disabled={tmid} - hitSlop={HIT_SLOP} - > - <View style={styles.titleContainer}> - {tmid ? null : <RoomTypeIcon type={prid ? 'discussion' : type} isGroupChat={isGroupChat} status={status} teamMain={teamMain} />} - <HeaderTitle - title={title} - tmid={tmid} - prid={prid} - scale={scale} - theme={theme} - testID={testID} - /> - </View> - <SubTitle - usersTyping={tmid ? [] : usersTyping} - subtitle={subtitle} - theme={theme} - renderFunc={renderFunc} - scale={scale} - /> - </TouchableOpacity> - ); -}); +); export default withTheme(Header); diff --git a/app/containers/RoomHeader/index.tsx b/app/containers/RoomHeader/index.tsx index 5d18b2ef34..5b06fb898f 100644 --- a/app/containers/RoomHeader/index.tsx +++ b/app/containers/RoomHeader/index.tsx @@ -30,9 +30,8 @@ interface IRoomHeaderContainerProps { class RoomHeaderContainer extends Component<IRoomHeaderContainerProps, any> { shouldComponentUpdate(nextProps: IRoomHeaderContainerProps) { - const { - type, title, subtitle, status, statusText, connecting, connected, onPress, usersTyping, width, height, teamMain, - } = this.props; + const { type, title, subtitle, status, statusText, connecting, connected, onPress, usersTyping, width, height, teamMain } = + this.props; if (nextProps.type !== type) { return true; } @@ -92,7 +91,7 @@ class RoomHeaderContainer extends Component<IRoomHeaderContainerProps, any> { height, parentTitle, isGroupChat, - testID, + testID } = this.props; let subtitle; @@ -146,7 +145,7 @@ const mapStateToProps = (state: any, ownProps: any) => { connected: state.meteor.connected, usersTyping: state.usersTyping, status, - statusText, + statusText }; }; diff --git a/app/containers/RoomTypeIcon.tsx b/app/containers/RoomTypeIcon.tsx index ff0cedfc05..b4ac871e67 100644 --- a/app/containers/RoomTypeIcon.tsx +++ b/app/containers/RoomTypeIcon.tsx @@ -8,8 +8,8 @@ import { withTheme } from '../theme'; const styles = StyleSheet.create({ icon: { - marginRight: 4, - }, + marginRight: 4 + } }); interface IRoomTypeIcon { @@ -22,19 +22,13 @@ interface IRoomTypeIcon { style: any; } -const RoomTypeIcon = React.memo(({ - type, isGroupChat, status, style, theme, teamMain, size = 16, -}: IRoomTypeIcon) => { +const RoomTypeIcon = React.memo(({ type, isGroupChat, status, style, theme, teamMain, size = 16 }: IRoomTypeIcon) => { if (!type) { return null; } const color = themes[theme].titleText; - const iconStyle = [ - styles.icon, - { color }, - style, - ]; + const iconStyle = [styles.icon, { color }, style]; if (type === 'd' && !isGroupChat) { return <Status style={[iconStyle, { color: STATUS_COLORS[status] ?? STATUS_COLORS.offline }]} size={size} status={status} />; @@ -43,7 +37,7 @@ const RoomTypeIcon = React.memo(({ // TODO: move this to a separate function let icon = 'channel-private'; if (teamMain) { - icon = `teams${ type === 'p' ? '-private' : '' }`; + icon = `teams${type === 'p' ? '-private' : ''}`; } else if (type === 'discussion') { icon = 'discussions'; } else if (type === 'c') { @@ -58,13 +52,7 @@ const RoomTypeIcon = React.memo(({ icon = 'omnichannel'; } - return ( - <CustomIcon - name={icon} - size={size} - style={iconStyle} - /> - ); + return <CustomIcon name={icon} size={size} style={iconStyle} />; }); export default withTheme(RoomTypeIcon); diff --git a/app/containers/SafeAreaView.tsx b/app/containers/SafeAreaView.tsx index 6a2047fb4d..7daa3347ef 100644 --- a/app/containers/SafeAreaView.tsx +++ b/app/containers/SafeAreaView.tsx @@ -7,8 +7,8 @@ import { withTheme } from '../theme'; const styles = StyleSheet.create({ view: { - flex: 1, - }, + flex: 1 + } }); interface ISafeAreaView { @@ -19,15 +19,12 @@ interface ISafeAreaView { children: JSX.Element; } -const SafeAreaView = React.memo(({ - style, children, testID, theme, vertical = true, ...props -}: ISafeAreaView) => ( +const SafeAreaView = React.memo(({ style, children, testID, theme, vertical = true, ...props }: ISafeAreaView) => ( <SafeAreaContext style={[styles.view, { backgroundColor: themes[theme].auxiliaryBackground }, style]} edges={vertical ? ['right', 'left'] : undefined} testID={testID} - {...props} - > + {...props}> {children} </SafeAreaContext> )); diff --git a/app/containers/SearchBox.tsx b/app/containers/SearchBox.tsx index 2937ca2c68..c9126ba44c 100644 --- a/app/containers/SearchBox.tsx +++ b/app/containers/SearchBox.tsx @@ -14,7 +14,7 @@ const styles = StyleSheet.create({ container: { flexDirection: 'row', alignItems: 'center', - flex: 1, + flex: 1 }, searchBox: { alignItems: 'center', @@ -25,7 +25,7 @@ const styles = StyleSheet.create({ margin: 16, marginVertical: 10, paddingHorizontal: 10, - flex: 1, + flex: 1 }, input: { flex: 1, @@ -33,15 +33,15 @@ const styles = StyleSheet.create({ marginLeft: 8, paddingTop: 0, paddingBottom: 0, - ...sharedStyles.textRegular, + ...sharedStyles.textRegular }, cancel: { - marginRight: 15, + marginRight: 15 }, cancelText: { ...sharedStyles.textRegular, - fontSize: 17, - }, + fontSize: 17 + } }); interface ISearchBox { @@ -61,14 +61,20 @@ const CancelButton = (onCancelPress: Function, theme: string) => ( ); const SearchBox = ({ - onChangeText, onSubmitEditing, testID, hasCancel, onCancelPress, inputRef, theme, ...props + onChangeText, + onSubmitEditing, + testID, + hasCancel, + onCancelPress, + inputRef, + theme, + ...props }: ISearchBox) => ( <View style={[ styles.container, - { backgroundColor: isIOS ? themes[theme].headerBackground : themes[theme].headerSecondaryBackground }, - ]} - > + { backgroundColor: isIOS ? themes[theme].headerBackground : themes[theme].headerSecondaryBackground } + ]}> <View style={[styles.searchBox, { backgroundColor: themes[theme].searchboxBackground }]}> <CustomIcon name='search' size={14} color={themes[theme].auxiliaryText} /> <TextInput @@ -89,7 +95,7 @@ const SearchBox = ({ {...props} /> </View> - { hasCancel ? CancelButton(onCancelPress, theme) : null } + {hasCancel ? CancelButton(onCancelPress, theme) : null} </View> ); diff --git a/app/containers/Status/Status.tsx b/app/containers/Status/Status.tsx index 1803135017..a5ff29d394 100644 --- a/app/containers/Status/Status.tsx +++ b/app/containers/Status/Status.tsx @@ -10,12 +10,17 @@ interface IStatus { } const Status = React.memo(({ style, status = 'offline', size = 32, ...props }: IStatus) => { - const name = `status-${ status }`; + const name = `status-${status}`; const isNameValid = CustomIcon.hasIcon(name); const iconName = isNameValid ? name : 'status-offline'; - const calculatedStyle = [{ - width: size, height: size, textAlignVertical: 'center', - }, style]; + const calculatedStyle = [ + { + width: size, + height: size, + textAlignVertical: 'center' + }, + style + ]; return ( <CustomIcon diff --git a/app/containers/Status/index.tsx b/app/containers/Status/index.tsx index 2769d42227..f47ca31c1f 100644 --- a/app/containers/Status/index.tsx +++ b/app/containers/Status/index.tsx @@ -9,10 +9,12 @@ interface IStatusContainer { status: string; } -const StatusContainer = memo(({ style, size = 32, status }: IStatusContainer) => <Status size={size} style={style} status={status} />); +const StatusContainer = memo(({ style, size = 32, status }: IStatusContainer) => ( + <Status size={size} style={style} status={status} /> +)); const mapStateToProps = (state: any, ownProps: any) => ({ - status: state.meteor.connected ? state.activeUsers[ownProps.id] && state.activeUsers[ownProps.id].status : 'loading', + status: state.meteor.connected ? state.activeUsers[ownProps.id] && state.activeUsers[ownProps.id].status : 'loading' }); export default connect(mapStateToProps)(StatusContainer); diff --git a/app/containers/TextInput.stories.js b/app/containers/TextInput.stories.js index 6c802cc307..d0e6c6044d 100644 --- a/app/containers/TextInput.stories.js +++ b/app/containers/TextInput.stories.js @@ -20,24 +20,12 @@ const item = { const theme = 'light'; - stories.add('Short and Long Text', () => ( <> <View style={styles.paddingHorizontal}> - <TextInput - label='Short Text' - placeholder='placeholder' - value={item.name} - theme={theme} - /> + <TextInput label='Short Text' placeholder='placeholder' value={item.name} theme={theme} /> - <TextInput - label='Long Text' - placeholder='placeholder' - value={item.longText} - theme={theme} - /> + <TextInput label='Long Text' placeholder='placeholder' value={item.longText} theme={theme} /> </View> </> )); - diff --git a/app/containers/TextInput.tsx b/app/containers/TextInput.tsx index b5e77023c3..13b7f5176d 100644 --- a/app/containers/TextInput.tsx +++ b/app/containers/TextInput.tsx @@ -11,15 +11,15 @@ import ActivityIndicator from './ActivityIndicator'; const styles = StyleSheet.create({ error: { ...sharedStyles.textAlignCenter, - paddingTop: 5, + paddingTop: 5 }, inputContainer: { - marginBottom: 10, + marginBottom: 10 }, label: { marginBottom: 10, fontSize: 14, - ...sharedStyles.textSemibold, + ...sharedStyles.textSemibold }, input: { ...sharedStyles.textRegular, @@ -27,27 +27,27 @@ const styles = StyleSheet.create({ fontSize: 16, padding: 14, borderWidth: StyleSheet.hairlineWidth, - borderRadius: 2, + borderRadius: 2 }, inputIconLeft: { - paddingLeft: 45, + paddingLeft: 45 }, inputIconRight: { - paddingRight: 45, + paddingRight: 45 }, wrap: { - position: 'relative', + position: 'relative' }, iconContainer: { position: 'absolute', - top: 14, + top: 14 }, iconLeft: { - left: 15, + left: 15 }, iconRight: { - right: 15, - }, + right: 15 + } }); interface IRCTextInputProps { @@ -73,19 +73,19 @@ interface IRCTextInputProps { export default class RCTextInput extends React.PureComponent<IRCTextInputProps, any> { static defaultProps = { error: {}, - theme: 'light', - } + theme: 'light' + }; state = { - showPassword: false, - } + showPassword: false + }; get iconLeft() { const { testID, iconLeft, theme } = this.props; return ( <CustomIcon name={iconLeft} - testID={testID ? `${ testID }-icon-left` : null} + testID={testID ? `${testID}-icon-left` : null} style={[styles.iconContainer, styles.iconLeft, { color: themes[theme].bodyText }]} size={20} /> @@ -96,11 +96,7 @@ export default class RCTextInput extends React.PureComponent<IRCTextInputProps, const { iconRight, onIconRightPress, theme } = this.props; return ( <BorderlessButton onPress={onIconRightPress} style={[styles.iconContainer, styles.iconRight]}> - <CustomIcon - name={iconRight} - style={{ color: themes[theme].bodyText }} - size={20} - /> + <CustomIcon name={iconRight} style={{ color: themes[theme].bodyText }} size={20} /> </BorderlessButton> ); } @@ -112,7 +108,7 @@ export default class RCTextInput extends React.PureComponent<IRCTextInputProps, <BorderlessButton onPress={this.tooglePassword} style={[styles.iconContainer, styles.iconRight]}> <CustomIcon name={showPassword ? 'unread-on-top' : 'unread-on-top-disabled'} - testID={testID ? `${ testID }-icon-right` : null} + testID={testID ? `${testID}-icon-right` : null} style={{ color: themes[theme].auxiliaryText }} size={20} /> @@ -128,12 +124,25 @@ export default class RCTextInput extends React.PureComponent<IRCTextInputProps, tooglePassword = () => { this.setState((prevState: any) => ({ showPassword: !prevState.showPassword })); - } + }; render() { const { showPassword } = this.state; const { - label, left, error, loading, secureTextEntry, containerStyle, inputRef, iconLeft, iconRight, inputStyle, testID, placeholder, theme, ...inputProps + label, + left, + error, + loading, + secureTextEntry, + containerStyle, + inputRef, + iconLeft, + iconRight, + inputStyle, + testID, + placeholder, + theme, + ...inputProps } = this.props; const { dangerColor } = themes[theme]; return ( @@ -143,12 +152,7 @@ export default class RCTextInput extends React.PureComponent<IRCTextInputProps, contentDescription={null} // @ts-ignore accessibilityLabel={null} - style={[ - styles.label, - { color: themes[theme].titleText }, - error.error && { color: dangerColor }, - ]} - > + style={[styles.label, { color: themes[theme].titleText }, error.error && { color: dangerColor }]}> {label} </Text> ) : null} @@ -162,13 +166,13 @@ export default class RCTextInput extends React.PureComponent<IRCTextInputProps, { backgroundColor: themes[theme].backgroundColor, borderColor: themes[theme].separatorColor, - color: themes[theme].titleText, + color: themes[theme].titleText }, error.error && { color: dangerColor, - borderColor: dangerColor, + borderColor: dangerColor }, - inputStyle, + inputStyle ]} ref={inputRef} /* @ts-ignore*/ diff --git a/app/containers/ThreadDetails.tsx b/app/containers/ThreadDetails.tsx index 0215bd55df..86f670f008 100644 --- a/app/containers/ThreadDetails.tsx +++ b/app/containers/ThreadDetails.tsx @@ -11,32 +11,32 @@ const styles = StyleSheet.create({ container: { flex: 1, flexDirection: 'row', - alignItems: 'center', + alignItems: 'center' }, detailsContainer: { flex: 1, - flexDirection: 'row', + flexDirection: 'row' }, detailContainer: { flexDirection: 'row', alignItems: 'center', - marginRight: 8, + marginRight: 8 }, detailText: { fontSize: 10, marginLeft: 2, - ...sharedStyles.textSemibold, + ...sharedStyles.textSemibold }, badgeContainer: { flexDirection: 'row', - alignItems: 'center', + alignItems: 'center' }, badge: { width: 8, height: 8, borderRadius: 4, - marginRight: 8, - }, + marginRight: 8 + } }); interface IThreadDetails { @@ -46,7 +46,7 @@ interface IThreadDetails { id: string; }; user: { - id: string + id: string; }; badgeColor: string; toggleFollowThread: Function; @@ -54,14 +54,7 @@ interface IThreadDetails { theme: string; } -const ThreadDetails = ({ - item, - user, - badgeColor, - toggleFollowThread, - style, - theme, -}: IThreadDetails) => { +const ThreadDetails = ({ item, user, badgeColor, toggleFollowThread, style, theme }: IThreadDetails) => { let { tcount } = item; if (tcount >= 1000) { tcount = '+999'; @@ -83,17 +76,21 @@ const ThreadDetails = ({ <View style={styles.detailsContainer}> <View style={styles.detailContainer}> <CustomIcon name='threads' size={24} color={themes[theme].auxiliaryText} /> - <Text style={[styles.detailText, { color: themes[theme].auxiliaryText }]} numberOfLines={1}>{tcount}</Text> + <Text style={[styles.detailText, { color: themes[theme].auxiliaryText }]} numberOfLines={1}> + {tcount} + </Text> </View> <View style={styles.detailContainer}> <CustomIcon name='user' size={24} color={themes[theme].auxiliaryText} /> - <Text style={[styles.detailText, { color: themes[theme].auxiliaryText }]} numberOfLines={1}>{replies}</Text> + <Text style={[styles.detailText, { color: themes[theme].auxiliaryText }]} numberOfLines={1}> + {replies} + </Text> </View> </View> <View style={styles.badgeContainer}> - {badgeColor ? <View style={[styles.badge, { backgroundColor: badgeColor }]} /> : null } + {badgeColor ? <View style={[styles.badge, { backgroundColor: badgeColor }]} /> : null} <Touchable onPress={() => toggleFollowThread?.(isFollowing, item.id)}> <CustomIcon size={24} diff --git a/app/containers/Toast.tsx b/app/containers/Toast.tsx index 89099c5ad8..79fcc82721 100644 --- a/app/containers/Toast.tsx +++ b/app/containers/Toast.tsx @@ -10,13 +10,13 @@ import { withTheme } from '../theme'; const styles = StyleSheet.create({ toast: { maxWidth: 300, - padding: 10, + padding: 10 }, text: { fontSize: 14, ...sharedStyles.textRegular, - ...sharedStyles.textAlignCenter, - }, + ...sharedStyles.textAlignCenter + } }); export const LISTENER = 'Toast'; @@ -46,13 +46,13 @@ class Toast extends React.Component<IToastProps, any> { EventEmitter.removeListener(LISTENER, this.listener); } - getToastRef = (toast: any) => this.toast = toast; + getToastRef = (toast: any) => (this.toast = toast); showToast = ({ message }: any) => { if (this.toast && this.toast.show) { this.toast.show(message, 1000); } - } + }; render() { const { theme } = this.props; diff --git a/app/containers/TwoFactor/index.tsx b/app/containers/TwoFactor/index.tsx index 1ff56b6022..dd2686ddcc 100644 --- a/app/containers/TwoFactor/index.tsx +++ b/app/containers/TwoFactor/index.tsx @@ -26,18 +26,18 @@ interface ITwoFactor { const methods: any = { totp: { text: 'Open_your_authentication_app_and_enter_the_code', - keyboardType: 'numeric', + keyboardType: 'numeric' }, email: { text: 'Verify_your_email_for_the_code_we_sent', - keyboardType: 'numeric', + keyboardType: 'numeric' }, password: { title: 'Please_enter_your_password', text: 'For_your_security_you_must_enter_your_current_password_to_continue', secureTextEntry: true, - keyboardType: 'default', - }, + keyboardType: 'default' + } }; const TwoFactor = React.memo(({ theme, isMasterDetail }: ITwoFactor) => { @@ -95,10 +95,14 @@ const TwoFactor = React.memo(({ theme, isMasterDetail }: ITwoFactor) => { avoidKeyboard useNativeDriver isVisible={visible} - hideModalContentWhileAnimating - > + hideModalContentWhileAnimating> <View style={styles.container} testID='two-factor'> - <View style={[styles.content, isMasterDetail && [sharedStyles.modalFormSheet, styles.tablet], { backgroundColor: themes[theme].backgroundColor }]}> + <View + style={[ + styles.content, + isMasterDetail && [sharedStyles.modalFormSheet, styles.tablet], + { backgroundColor: themes[theme].backgroundColor } + ]}> <Text style={[styles.title, { color }]}>{I18n.t(method?.title || 'Two_Factor_Authentication')}</Text> {method?.text ? <Text style={[styles.subtitle, { color }]}>{I18n.t(method.text)}</Text> : null} <TextInput @@ -115,7 +119,11 @@ const TwoFactor = React.memo(({ theme, isMasterDetail }: ITwoFactor) => { error={data.invalid && { error: 'totp-invalid', reason: I18n.t('Code_or_password_invalid') }} testID='two-factor-input' /> - {isEmail && <Text style={[styles.sendEmail, { color }]} onPress={sendEmail}>{I18n.t('Send_me_the_code_again')}</Text>} + {isEmail && ( + <Text style={[styles.sendEmail, { color }]} onPress={sendEmail}> + {I18n.t('Send_me_the_code_again')} + </Text> + )} <View style={styles.buttonContainer}> <Button title={I18n.t('Cancel')} @@ -141,7 +149,7 @@ const TwoFactor = React.memo(({ theme, isMasterDetail }: ITwoFactor) => { }); const mapStateToProps = (state: any) => ({ - isMasterDetail: state.app.isMasterDetail, + isMasterDetail: state.app.isMasterDetail }); export default connect(mapStateToProps)(withTheme(TwoFactor)); diff --git a/app/containers/TwoFactor/styles.ts b/app/containers/TwoFactor/styles.ts index 8b271943f5..1c5c789cb4 100644 --- a/app/containers/TwoFactor/styles.ts +++ b/app/containers/TwoFactor/styles.ts @@ -6,40 +6,40 @@ export default StyleSheet.create({ container: { flex: 1, justifyContent: 'center', - alignItems: 'center', + alignItems: 'center' }, content: { padding: 16, width: '100%', - borderRadius: 4, + borderRadius: 4 }, title: { fontSize: 16, paddingBottom: 8, ...sharedStyles.textBold, - ...sharedStyles.textAlignCenter, + ...sharedStyles.textAlignCenter }, subtitle: { fontSize: 14, paddingBottom: 8, ...sharedStyles.textRegular, - ...sharedStyles.textAlignCenter, + ...sharedStyles.textAlignCenter }, sendEmail: { fontSize: 14, paddingBottom: 24, paddingTop: 8, alignSelf: 'center', - ...sharedStyles.textRegular, + ...sharedStyles.textRegular }, button: { - marginBottom: 0, + marginBottom: 0 }, buttonContainer: { flexDirection: 'row', - justifyContent: 'space-between', + justifyContent: 'space-between' }, tablet: { - height: undefined, - }, + height: undefined + } }); diff --git a/app/containers/UIKit/Actions.tsx b/app/containers/UIKit/Actions.tsx index e0a38e3820..1d5ba9840b 100644 --- a/app/containers/UIKit/Actions.tsx +++ b/app/containers/UIKit/Actions.tsx @@ -16,14 +16,14 @@ export const Actions = ({ blockId, appId, elements, parser, theme }: IActions) = const [showMoreVisible, setShowMoreVisible] = useState(() => elements.length > 5); const renderedElements = showMoreVisible ? elements.slice(0, 5) : elements; - const Elements = () => renderedElements - .map((element: any) => parser.renderActions({ blockId, appId, ...element }, BLOCK_CONTEXT.ACTION, parser)); + const Elements = () => + renderedElements.map((element: any) => parser.renderActions({ blockId, appId, ...element }, BLOCK_CONTEXT.ACTION, parser)); return ( <> {/* @ts-ignore*/} <Elements /> - {showMoreVisible && (<Button theme={theme} title={I18n.t('Show_more')} onPress={() => setShowMoreVisible(false)} />)} + {showMoreVisible && <Button theme={theme} title={I18n.t('Show_more')} onPress={() => setShowMoreVisible(false)} />} </> ); }; diff --git a/app/containers/UIKit/Context.tsx b/app/containers/UIKit/Context.tsx index d0c0974f66..11f8e492e0 100644 --- a/app/containers/UIKit/Context.tsx +++ b/app/containers/UIKit/Context.tsx @@ -7,8 +7,8 @@ const styles = StyleSheet.create({ container: { minHeight: 36, alignItems: 'center', - flexDirection: 'row', - }, + flexDirection: 'row' + } }); export const Context = ({ elements, parser }: any) => ( @@ -19,5 +19,5 @@ export const Context = ({ elements, parser }: any) => ( Context.propTypes = { elements: PropTypes.array, - parser: PropTypes.object, + parser: PropTypes.object }; diff --git a/app/containers/UIKit/DatePicker.tsx b/app/containers/UIKit/DatePicker.tsx index 707ec6ace9..25ada0700c 100644 --- a/app/containers/UIKit/DatePicker.tsx +++ b/app/containers/UIKit/DatePicker.tsx @@ -20,19 +20,19 @@ const styles = StyleSheet.create({ borderWidth: StyleSheet.hairlineWidth, borderRadius: 2, alignItems: 'center', - flexDirection: 'row', + flexDirection: 'row' }, inputText: { ...sharedStyles.textRegular, - fontSize: 14, + fontSize: 14 }, icon: { right: 16, - position: 'absolute', + position: 'absolute' }, loading: { - padding: 0, - }, + padding: 0 + } }); interface IDatePicker { @@ -49,9 +49,7 @@ interface IDatePicker { error: string; } -export const DatePicker = ({ - element, language, action, context, theme, loading, value, error, -}: IDatePicker) => { +export const DatePicker = ({ element, language, action, context, theme, loading, value, error }: IDatePicker) => { const [show, onShow] = useState(false); const { initial_date, placeholder } = element; const [currentDate, onChangeDate] = useState(new Date(initial_date || value)); @@ -65,49 +63,35 @@ export const DatePicker = ({ } }; - let button = ( - <Button - title={textParser([placeholder])} - onPress={() => onShow(!show)} - loading={loading} - theme={theme} - /> - ); + let button = <Button title={textParser([placeholder])} onPress={() => onShow(!show)} loading={loading} theme={theme} />; if (context === BLOCK_CONTEXT.FORM) { button = ( <Touchable onPress={() => onShow(!show)} style={{ backgroundColor: themes[theme].backgroundColor }} - background={Touchable.Ripple(themes[theme].bannerBackground)} - > + background={Touchable.Ripple(themes[theme].bannerBackground)}> <View style={[styles.input, { borderColor: error ? themes[theme].dangerColor : themes[theme].separatorColor }]}> - <Text - style={[ - styles.inputText, - { color: error ? themes[theme].dangerColor : themes[theme].titleText }, - ]} - > + <Text style={[styles.inputText, { color: error ? themes[theme].dangerColor : themes[theme].titleText }]}> {currentDate.toLocaleDateString(language)} </Text> - { - loading - ? <ActivityIndicator style={[styles.loading, styles.icon]} /> - : <CustomIcon name='calendar' size={20} color={error ? themes[theme].dangerColor : themes[theme].auxiliaryText} style={styles.icon} /> - } + {loading ? ( + <ActivityIndicator style={[styles.loading, styles.icon]} /> + ) : ( + <CustomIcon + name='calendar' + size={20} + color={error ? themes[theme].dangerColor : themes[theme].auxiliaryText} + style={styles.icon} + /> + )} </View> </Touchable> ); } const content = show ? ( - <DateTimePicker - mode='date' - display='default' - value={currentDate} - onChange={onChange} - textColor={themes[theme].titleText} - /> + <DateTimePicker mode='date' display='default' value={currentDate} onChange={onChange} textColor={themes[theme].titleText} /> ) : null; return ( diff --git a/app/containers/UIKit/Divider.tsx b/app/containers/UIKit/Divider.tsx index 927ce84a0b..f616f8117d 100644 --- a/app/containers/UIKit/Divider.tsx +++ b/app/containers/UIKit/Divider.tsx @@ -7,8 +7,8 @@ const styles = StyleSheet.create({ separator: { width: '100%', alignSelf: 'center', - marginBottom: 16, - }, + marginBottom: 16 + } }); export const Divider = () => <List.Separator style={styles.separator} />; diff --git a/app/containers/UIKit/Image.tsx b/app/containers/UIKit/Image.tsx index 9a54367816..688c5a4bc2 100644 --- a/app/containers/UIKit/Image.tsx +++ b/app/containers/UIKit/Image.tsx @@ -8,11 +8,11 @@ import Navigation from '../../lib/Navigation'; const styles = StyleSheet.create({ image: { - borderRadius: 2, + borderRadius: 2 }, mediaContext: { - marginRight: 8, - }, + marginRight: 8 + } }); interface IThumb { @@ -35,27 +35,21 @@ interface IImage { theme: string; } -const ThumbContext = (args: any) => <View style={styles.mediaContext}><Thumb size={20} {...args} /></View>; +const ThumbContext = (args: any) => ( + <View style={styles.mediaContext}> + <Thumb size={20} {...args} /> + </View> +); export const Thumb = ({ element, size = 88 }: IThumb) => ( - <FastImage - style={[{ width: size, height: size }, styles.image]} - source={{ uri: element.imageUrl }} - /> + <FastImage style={[{ width: size, height: size }, styles.image]} source={{ uri: element.imageUrl }} /> ); export const Media = ({ element, theme }: IMedia) => { const showAttachment = (attachment: any) => Navigation.navigate('AttachmentView', { attachment }); const { imageUrl } = element; - return ( - <ImageContainer - file={{ image_url: imageUrl }} - imageUrl={imageUrl} - showAttachment={showAttachment} - theme={theme} - /> - ); + return <ImageContainer file={{ image_url: imageUrl }} imageUrl={imageUrl} showAttachment={showAttachment} theme={theme} />; }; const genericImage = (element: any, context: any, theme: string) => { diff --git a/app/containers/UIKit/Input.tsx b/app/containers/UIKit/Input.tsx index 775b53c813..3ecd8b58c5 100644 --- a/app/containers/UIKit/Input.tsx +++ b/app/containers/UIKit/Input.tsx @@ -7,28 +7,28 @@ import { themes } from '../../constants/colors'; const styles = StyleSheet.create({ container: { - marginBottom: 16, + marginBottom: 16 }, label: { fontSize: 14, marginVertical: 10, - ...sharedStyles.textSemibold, + ...sharedStyles.textSemibold }, description: { marginBottom: 10, fontSize: 15, - ...sharedStyles.textRegular, + ...sharedStyles.textRegular }, error: { marginTop: 8, fontSize: 14, ...sharedStyles.textRegular, - ...sharedStyles.textAlignCenter, + ...sharedStyles.textAlignCenter }, hint: { fontSize: 14, - ...sharedStyles.textRegular, - }, + ...sharedStyles.textRegular + } }); interface IInput { @@ -41,11 +41,11 @@ interface IInput { theme: string; } -export const Input = ({ - element, parser, label, description, error, hint, theme, -}: IInput) => ( +export const Input = ({ element, parser, label, description, error, hint, theme }: IInput) => ( <View style={styles.container}> - {label ? <Text style={[styles.label, { color: error ? themes[theme].dangerColor : themes[theme].titleText }]}>{label}</Text> : null} + {label ? ( + <Text style={[styles.label, { color: error ? themes[theme].dangerColor : themes[theme].titleText }]}>{label}</Text> + ) : null} {description ? <Text style={[styles.description, { color: themes[theme].auxiliaryText }]}>{description}</Text> : null} {parser.renderInputs({ ...element }, BLOCK_CONTEXT.FORM, parser)} {error ? <Text style={[styles.error, { color: themes[theme].dangerColor }]}>{error}</Text> : null} diff --git a/app/containers/UIKit/MessageBlock.tsx b/app/containers/UIKit/MessageBlock.tsx index 175c8dffe1..7ccc01db0b 100644 --- a/app/containers/UIKit/MessageBlock.tsx +++ b/app/containers/UIKit/MessageBlock.tsx @@ -3,18 +3,20 @@ import React from 'react'; import { UiKitMessage, UiKitModal } from './index'; import { KitContext } from './utils'; -export const messageBlockWithContext = (context: any) => (props: any) => ( - <KitContext.Provider value={context}> - <MessageBlock {...props} /> - </KitContext.Provider> -); +export const messageBlockWithContext = (context: any) => (props: any) => + ( + <KitContext.Provider value={context}> + <MessageBlock {...props} /> + </KitContext.Provider> + ); const MessageBlock = ({ blocks }: any) => UiKitMessage(blocks); -export const modalBlockWithContext = (context: any) => (data: any) => ( - <KitContext.Provider value={{ ...context, ...data }}> - <ModalBlock {...data} /> - </KitContext.Provider> -); +export const modalBlockWithContext = (context: any) => (data: any) => + ( + <KitContext.Provider value={{ ...context, ...data }}> + <ModalBlock {...data} /> + </KitContext.Provider> + ); const ModalBlock = ({ blocks }: any) => UiKitModal(blocks); diff --git a/app/containers/UIKit/MultiSelect/Chips.tsx b/app/containers/UIKit/MultiSelect/Chips.tsx index 66e098808b..e62b7e7cd2 100644 --- a/app/containers/UIKit/MultiSelect/Chips.tsx +++ b/app/containers/UIKit/MultiSelect/Chips.tsx @@ -12,7 +12,7 @@ interface IChip { item: { value: string; imageUrl: string; - text: string + text: string; }; onSelect: Function; style: object; @@ -26,7 +26,6 @@ interface IChips { theme: string; } - const keyExtractor = (item: any) => item.value.toString(); const Chip = ({ item, onSelect, style, theme }: IChip) => ( @@ -34,22 +33,23 @@ const Chip = ({ item, onSelect, style, theme }: IChip) => ( key={item.value} onPress={() => onSelect(item)} style={[styles.chip, { backgroundColor: themes[theme].auxiliaryBackground }, style]} - background={Touchable.Ripple(themes[theme].bannerBackground)} - > + background={Touchable.Ripple(themes[theme].bannerBackground)}> <> {item.imageUrl ? <FastImage style={styles.chipImage} source={{ uri: item.imageUrl }} /> : null} - <Text numberOfLines={1} style={[styles.chipText, { color: themes[theme].titleText }]}>{textParser([item.text])}</Text> + <Text numberOfLines={1} style={[styles.chipText, { color: themes[theme].titleText }]}> + {textParser([item.text])} + </Text> <CustomIcon name='close' size={16} color={themes[theme].auxiliaryText} /> </> </Touchable> ); -Chip.propTypes = { - -}; +Chip.propTypes = {}; const Chips = ({ items, onSelect, style, theme }: IChips) => ( <View style={styles.chips}> - {items.map((item) => <Chip key={keyExtractor(item)} item={item} onSelect={onSelect} style={style} theme={theme} />)} + {items.map(item => ( + <Chip key={keyExtractor(item)} item={item} onSelect={onSelect} style={style} theme={theme} /> + ))} </View> ); diff --git a/app/containers/UIKit/MultiSelect/Input.tsx b/app/containers/UIKit/MultiSelect/Input.tsx index dbc8f369fa..611838c089 100644 --- a/app/containers/UIKit/MultiSelect/Input.tsx +++ b/app/containers/UIKit/MultiSelect/Input.tsx @@ -17,22 +17,19 @@ interface IInput { loading: boolean; } -const Input = ({ - children, onPress, theme, loading, inputStyle, placeholder, disabled, -}: IInput) => ( +const Input = ({ children, onPress, theme, loading, inputStyle, placeholder, disabled }: IInput) => ( <Touchable onPress={onPress} style={[{ backgroundColor: themes[theme].backgroundColor }, inputStyle]} background={Touchable.Ripple(themes[theme].bannerBackground)} - disabled={disabled} - > + disabled={disabled}> <View style={[styles.input, { borderColor: themes[theme].separatorColor }]}> {placeholder ? <Text style={[styles.pickerText, { color: themes[theme].auxiliaryText }]}>{placeholder}</Text> : children} - { - loading - ? <ActivityIndicator style={[styles.loading, styles.icon]} /> - : <CustomIcon name='chevron-down' size={22} color={themes[theme].auxiliaryText} style={styles.icon} /> - } + {loading ? ( + <ActivityIndicator style={[styles.loading, styles.icon]} /> + ) : ( + <CustomIcon name='chevron-down' size={22} color={themes[theme].auxiliaryText} style={styles.icon} /> + )} </View> </Touchable> ); diff --git a/app/containers/UIKit/MultiSelect/Items.tsx b/app/containers/UIKit/MultiSelect/Items.tsx index d30810d635..4c81bbe2ca 100644 --- a/app/containers/UIKit/MultiSelect/Items.tsx +++ b/app/containers/UIKit/MultiSelect/Items.tsx @@ -11,8 +11,8 @@ import styles from './styles'; interface IItem { item: { - value: { name: string; }; - text: { text: string; }; + value: { name: string }; + text: { text: string }; imageUrl: string; }; selected: any; @@ -34,14 +34,10 @@ const Item = ({ item, selected, onSelect, theme }: IItem) => { const itemName = item.value.name || item.text.text.toLowerCase(); return ( <Touchable - testID={`multi-select-item-${ itemName }`} + testID={`multi-select-item-${itemName}`} key={item} onPress={() => onSelect(item)} - style={[ - styles.item, - { backgroundColor: themes[theme].backgroundColor }, - ]} - > + style={[styles.item, { backgroundColor: themes[theme].backgroundColor }]}> <> {item.imageUrl ? <FastImage style={styles.itemImage} source={{ uri: item.imageUrl }} /> : null} <Text style={{ color: themes[theme].titleText }}>{textParser([item.text])}</Text> @@ -59,7 +55,9 @@ const Items = ({ items, selected, onSelect, theme }: IItems) => ( keyboardShouldPersistTaps='always' ItemSeparatorComponent={List.Separator} keyExtractor={keyExtractor} - renderItem={({ item }) => <Item item={item} onSelect={onSelect} theme={theme} selected={selected.find((s) => s === item.value)} />} + renderItem={({ item }) => ( + <Item item={item} onSelect={onSelect} theme={theme} selected={selected.find(s => s === item.value)} /> + )} /> ); diff --git a/app/containers/UIKit/MultiSelect/index.tsx b/app/containers/UIKit/MultiSelect/index.tsx index d3d888b9ba..9ca9b1d82b 100644 --- a/app/containers/UIKit/MultiSelect/index.tsx +++ b/app/containers/UIKit/MultiSelect/index.tsx @@ -1,7 +1,5 @@ import React, { useEffect, useState } from 'react'; -import { - Animated, Easing, KeyboardAvoidingView, Modal, StyleSheet, Text, TouchableWithoutFeedback, View, -} from 'react-native'; +import { Animated, Easing, KeyboardAvoidingView, Modal, StyleSheet, Text, TouchableWithoutFeedback, View } from 'react-native'; import { BLOCK_CONTEXT } from '@rocket.chat/ui-kit'; import Button from '../../Button'; @@ -27,7 +25,7 @@ interface IMultiSelect { onSearch: Function; onClose: Function; inputStyle: object; - value: {text: any}[]; + value: { text: any }[]; disabled: boolean; theme: string; } @@ -36,172 +34,162 @@ const ANIMATION_DURATION = 200; const ANIMATION_PROPS = { duration: ANIMATION_DURATION, easing: Easing.inOut(Easing.quad), - useNativeDriver: true, + useNativeDriver: true }; const animatedValue = new Animated.Value(0); const behavior = isIOS ? 'padding' : null; -export const MultiSelect = React.memo(({ - options = [], - onChange, - placeholder = { text: 'Search' }, - context, - loading, - value: values, - multiselect = false, - onSearch, - onClose = () => {}, - disabled, - inputStyle, - theme, -}: IMultiSelect) => { - const [selected, select] = useState<any>(Array.isArray(values) ? values : []); - const [open, setOpen] = useState(false); - const [search, onSearchChange] = useState(''); - const [currentValue, setCurrentValue] = useState(''); - const [showContent, setShowContent] = useState(false); - - useEffect(() => { - if (Array.isArray(values)) { - select(values); - } - }, [values]); +export const MultiSelect = React.memo( + ({ + options = [], + onChange, + placeholder = { text: 'Search' }, + context, + loading, + value: values, + multiselect = false, + onSearch, + onClose = () => {}, + disabled, + inputStyle, + theme + }: IMultiSelect) => { + const [selected, select] = useState<any>(Array.isArray(values) ? values : []); + const [open, setOpen] = useState(false); + const [search, onSearchChange] = useState(''); + const [currentValue, setCurrentValue] = useState(''); + const [showContent, setShowContent] = useState(false); + + useEffect(() => { + if (Array.isArray(values)) { + select(values); + } + }, [values]); - useEffect(() => { - setOpen(showContent); - }, [showContent]); + useEffect(() => { + setOpen(showContent); + }, [showContent]); - useEffect(() => { - if (values && values.length && !multiselect) { - setCurrentValue(values[0].text); - } - }, []); + useEffect(() => { + if (values && values.length && !multiselect) { + setCurrentValue(values[0].text); + } + }, []); - const onShow = () => { - Animated.timing( - animatedValue, - { + const onShow = () => { + Animated.timing(animatedValue, { toValue: 1, - ...ANIMATION_PROPS, - }, - ).start(); - setShowContent(true); - }; - - const onHide = () => { - onClose(); - Animated.timing( - animatedValue, - { + ...ANIMATION_PROPS + }).start(); + setShowContent(true); + }; + + const onHide = () => { + onClose(); + Animated.timing(animatedValue, { toValue: 0, - ...ANIMATION_PROPS, - }, - ).start(() => setShowContent(false)); - }; - - const onSelect = (item: any) => { - const { value, text: { text } } = item; - if (multiselect) { - let newSelect = []; - if (!selected.includes(value)) { - newSelect = [...selected, value]; + ...ANIMATION_PROPS + }).start(() => setShowContent(false)); + }; + + const onSelect = (item: any) => { + const { + value, + text: { text } + } = item; + if (multiselect) { + let newSelect = []; + if (!selected.includes(value)) { + newSelect = [...selected, value]; + } else { + newSelect = selected.filter((s: any) => s !== value); + } + select(newSelect); + onChange({ value: newSelect }); } else { - newSelect = selected.filter((s: any) => s !== value); + onChange({ value }); + setCurrentValue(text); + onHide(); } - select(newSelect); - onChange({ value: newSelect }); - } else { - onChange({ value }); - setCurrentValue(text); - onHide(); - } - }; - - const renderContent = () => { - const items: any = onSearch ? options : options.filter((option: any) => textParser([option.text]).toLowerCase().includes(search.toLowerCase())); - - return ( - <View style={[styles.modal, { backgroundColor: themes[theme].backgroundColor }]}> - <View style={[styles.content, { backgroundColor: themes[theme].backgroundColor }]}> - <TextInput - testID='multi-select-search' - /* @ts-ignore*/ - onChangeText={onSearch || onSearchChange} - placeholder={I18n.t('Search')} - theme={theme} - /> - <Items items={items} selected={selected} onSelect={onSelect} theme={theme} /> + }; + + const renderContent = () => { + const items: any = onSearch + ? options + : options.filter((option: any) => textParser([option.text]).toLowerCase().includes(search.toLowerCase())); + + return ( + <View style={[styles.modal, { backgroundColor: themes[theme].backgroundColor }]}> + <View style={[styles.content, { backgroundColor: themes[theme].backgroundColor }]}> + <TextInput + testID='multi-select-search' + /* @ts-ignore*/ + onChangeText={onSearch || onSearchChange} + placeholder={I18n.t('Search')} + theme={theme} + /> + <Items items={items} selected={selected} onSelect={onSelect} theme={theme} /> + </View> </View> - </View> - ); - }; + ); + }; + + const translateY = animatedValue.interpolate({ + inputRange: [0, 1], + outputRange: [600, 0] + }); - const translateY = animatedValue.interpolate({ - inputRange: [0, 1], - outputRange: [600, 0], - }); - - let button = multiselect ? ( - <Button - title={`${ selected.length } selecteds`} - onPress={onShow} - loading={loading} - theme={theme} - /> - ) : ( - // @ts-ignore - <Input - onPress={onShow} - theme={theme} - loading={loading} - disabled={disabled} - inputStyle={inputStyle} - > - <Text style={[styles.pickerText, { color: currentValue ? themes[theme].titleText : themes[theme].auxiliaryText }]}>{currentValue || placeholder.text}</Text> - </Input> - ); - - if (context === BLOCK_CONTEXT.FORM) { - const items: any = options.filter((option: any) => selected.includes(option.value)); - button = ( + let button = multiselect ? ( + <Button title={`${selected.length} selecteds`} onPress={onShow} loading={loading} theme={theme} /> + ) : ( // @ts-ignore - <Input - onPress={onShow} - theme={theme} - loading={loading} - disabled={disabled} - inputStyle={inputStyle} - > - {/* @ts-ignore*/} - {items.length ? <Chips items={items} onSelect={(item) => (disabled ? {} : onSelect(item))} theme={theme} /> : <Text style={[styles.pickerText, { color: themes[theme].auxiliaryText }]}>{placeholder.text}</Text>} + <Input onPress={onShow} theme={theme} loading={loading} disabled={disabled} inputStyle={inputStyle}> + <Text style={[styles.pickerText, { color: currentValue ? themes[theme].titleText : themes[theme].auxiliaryText }]}> + {currentValue || placeholder.text} + </Text> </Input> ); - } - return ( - <> - <Modal - animationType='fade' - transparent - visible={open} - onRequestClose={onHide} - onShow={onShow} - > - <TouchableWithoutFeedback onPress={onHide}> - <View style={styles.container}> - {/* @ts-ignore*/} - <View style={{ ...StyleSheet.absoluteFill, opacity: themes[theme].backdropOpacity, backgroundColor: themes[theme].backdropColor }} /> - {/* @ts-ignore*/} - <KeyboardAvoidingView style={styles.keyboardView} behavior={behavior}> - <Animated.View style={[styles.animatedContent, { transform: [{ translateY }] }]}> - {showContent ? renderContent() : null} - </Animated.View> - </KeyboardAvoidingView> - </View> - </TouchableWithoutFeedback> - </Modal> - {button} - </> - ); -}); + if (context === BLOCK_CONTEXT.FORM) { + const items: any = options.filter((option: any) => selected.includes(option.value)); + button = ( + // @ts-ignore + <Input onPress={onShow} theme={theme} loading={loading} disabled={disabled} inputStyle={inputStyle}> + {/* @ts-ignore*/} + {items.length ? ( + <Chips items={items} onSelect={item => (disabled ? {} : onSelect(item))} theme={theme} /> + ) : ( + <Text style={[styles.pickerText, { color: themes[theme].auxiliaryText }]}>{placeholder.text}</Text> + )} + </Input> + ); + } + + return ( + <> + <Modal animationType='fade' transparent visible={open} onRequestClose={onHide} onShow={onShow}> + <TouchableWithoutFeedback onPress={onHide}> + <View style={styles.container}> + {/* @ts-ignore*/} + <View + style={{ + ...StyleSheet.absoluteFill, + opacity: themes[theme].backdropOpacity, + backgroundColor: themes[theme].backdropColor + }} + /> + {/* @ts-ignore*/} + <KeyboardAvoidingView style={styles.keyboardView} behavior={behavior}> + <Animated.View style={[styles.animatedContent, { transform: [{ translateY }] }]}> + {showContent ? renderContent() : null} + </Animated.View> + </KeyboardAvoidingView> + </View> + </TouchableWithoutFeedback> + </Modal> + {button} + </> + ); + } +); diff --git a/app/containers/UIKit/MultiSelect/styles.ts b/app/containers/UIKit/MultiSelect/styles.ts index 120410e89e..9954d8da0d 100644 --- a/app/containers/UIKit/MultiSelect/styles.ts +++ b/app/containers/UIKit/MultiSelect/styles.ts @@ -6,34 +6,34 @@ export default StyleSheet.create<any>({ container: { flex: 1, alignItems: 'center', - justifyContent: 'flex-end', + justifyContent: 'flex-end' }, modal: { height: 300, width: '100%', borderTopRightRadius: 16, borderTopLeftRadius: 16, - overflow: 'hidden', + overflow: 'hidden' }, content: { - padding: 16, + padding: 16 }, animatedContent: { - width: '100%', + width: '100%' }, keyboardView: { - width: '100%', + width: '100%' }, pickerText: { ...sharedStyles.textRegular, paddingLeft: 6, - fontSize: 16, + fontSize: 16 }, item: { height: 48, maxWidth: '85%', alignItems: 'center', - flexDirection: 'row', + flexDirection: 'row' }, input: { minHeight: 48, @@ -42,23 +42,23 @@ export default StyleSheet.create<any>({ borderWidth: StyleSheet.hairlineWidth, borderRadius: 2, alignItems: 'center', - flexDirection: 'row', + flexDirection: 'row' }, icon: { position: 'absolute', - right: 16, + right: 16 }, itemContent: { - paddingBottom: 36, + paddingBottom: 36 }, items: { - height: 226, + height: 226 }, chips: { paddingTop: 8, flexDirection: 'row', flexWrap: 'wrap', - marginRight: 50, + marginRight: 50 }, chip: { flexDirection: 'row', @@ -67,24 +67,24 @@ export default StyleSheet.create<any>({ alignItems: 'center', paddingHorizontal: 4, marginBottom: 8, - marginRight: 8, + marginRight: 8 }, chipText: { paddingHorizontal: 8, flexShrink: 1, ...sharedStyles.textMedium, - fontSize: 14, + fontSize: 14 }, chipImage: { marginLeft: 4, borderRadius: 2, width: 20, - height: 20, + height: 20 }, itemImage: { marginRight: 8, borderRadius: 2, width: 24, - height: 24, - }, + height: 24 + } }); diff --git a/app/containers/UIKit/Overflow.tsx b/app/containers/UIKit/Overflow.tsx index 114da09e41..391a3af179 100644 --- a/app/containers/UIKit/Overflow.tsx +++ b/app/containers/UIKit/Overflow.tsx @@ -39,23 +39,22 @@ const keyExtractor = (item: any) => item.value; const styles = StyleSheet.create({ menu: { - justifyContent: 'center', + justifyContent: 'center' }, option: { padding: 8, - minHeight: 32, + minHeight: 32 }, loading: { - padding: 0, - }, + padding: 0 + } }); const Option = ({ option: { text, value }, onOptionPress, parser, theme }: IOption) => ( <Touchable onPress={() => onOptionPress({ value })} background={Touchable.Ripple(themes[theme].bannerBackground)} - style={styles.option} - > + style={styles.option}> <Text>{parser.text(text)}</Text> </Touchable> ); @@ -84,20 +83,22 @@ export const Overflow = ({ element, loading, action, parser, theme }: IOverflow) <> <Touchable /* @ts-ignore*/ - ref={(ref) => touchable[blockId] = ref} + ref={ref => (touchable[blockId] = ref)} background={Touchable.Ripple(themes[theme].bannerBackground)} onPress={() => onShow(!show)} hitSlop={BUTTON_HIT_SLOP} - style={styles.menu} - > - {!loading ? <CustomIcon size={18} name='kebab' color={themes[theme].bodyText} /> : <ActivityIndicator style={styles.loading} theme={theme} />} + style={styles.menu}> + {!loading ? ( + <CustomIcon size={18} name='kebab' color={themes[theme].bodyText} /> + ) : ( + <ActivityIndicator style={styles.loading} theme={theme} /> + )} </Touchable> <Popover isVisible={show} /* @ts-ignore*/ fromView={touchable[blockId]} - onRequestClose={() => onShow(false)} - > + onRequestClose={() => onShow(false)}> <Options options={options} onOptionPress={onOptionPress} parser={parser} theme={theme} /> </Popover> </> diff --git a/app/containers/UIKit/Section.tsx b/app/containers/UIKit/Section.tsx index 61425e1e44..a64d2c7a16 100644 --- a/app/containers/UIKit/Section.tsx +++ b/app/containers/UIKit/Section.tsx @@ -6,28 +6,28 @@ import { themes } from '../../constants/colors'; const styles = StyleSheet.create({ content: { - marginBottom: 8, + marginBottom: 8 }, row: { - flexDirection: 'row', + flexDirection: 'row' }, column: { - justifyContent: 'center', + justifyContent: 'center' }, text: { flex: 1, - padding: 4, + padding: 4 }, field: { - marginVertical: 6, - }, + marginVertical: 6 + } }); interface IAccessory { blockId?: string; appId?: string; element: any; - parser: any + parser: any; } interface IFields { @@ -46,27 +46,18 @@ interface ISection { parser: any; } -const Accessory = ({ blockId, appId, element, parser }: IAccessory) => parser.renderAccessories( - { blockId, appId, ...element }, - BLOCK_CONTEXT.SECTION, - parser, -); +const Accessory = ({ blockId, appId, element, parser }: IAccessory) => + parser.renderAccessories({ blockId, appId, ...element }, BLOCK_CONTEXT.SECTION, parser); -const Fields = ({ fields, parser, theme }: IFields) => fields.map((field: any) => ( - <Text style={[styles.text, styles.field, { color: themes[theme].bodyText }]}> - {parser.text(field)} - </Text> -)); +const Fields = ({ fields, parser, theme }: IFields) => + fields.map((field: any) => ( + <Text style={[styles.text, styles.field, { color: themes[theme].bodyText }]}>{parser.text(field)}</Text> + )); const accessoriesRight = ['image', 'overflow']; export const Section = ({ blockId, appId, text, fields, accessory, parser, theme }: ISection) => ( - <View - style={[ - styles.content, - accessory && accessoriesRight.includes(accessory.type) ? styles.row : styles.column, - ]} - > + <View style={[styles.content, accessory && accessoriesRight.includes(accessory.type) ? styles.row : styles.column]}> {text ? <View style={styles.text}>{parser.text(text)}</View> : null} {fields ? <Fields fields={fields} theme={theme} parser={parser} /> : null} {accessory ? <Accessory element={{ blockId, appId, ...accessory }} parser={parser} /> : null} diff --git a/app/containers/UIKit/Select.tsx b/app/containers/UIKit/Select.tsx index 095d08fc67..8a40330605 100644 --- a/app/containers/UIKit/Select.tsx +++ b/app/containers/UIKit/Select.tsx @@ -12,25 +12,25 @@ import ActivityIndicator from '../ActivityIndicator'; const styles = StyleSheet.create({ iosPadding: { height: 48, - justifyContent: 'center', + justifyContent: 'center' }, viewContainer: { marginBottom: 16, paddingHorizontal: 16, borderWidth: StyleSheet.hairlineWidth, borderRadius: 2, - justifyContent: 'center', + justifyContent: 'center' }, pickerText: { ...sharedStyles.textRegular, - fontSize: 16, + fontSize: 16 }, icon: { - right: 16, + right: 16 }, loading: { - padding: 0, - }, + padding: 0 + } }); interface ISelect { @@ -46,29 +46,22 @@ interface ISelect { theme: string; } -export const Select = ({ - options = [], - placeholder, - onChange, - loading, - disabled, - value: initialValue, - theme, -}: ISelect) => { +export const Select = ({ options = [], placeholder, onChange, loading, disabled, value: initialValue, theme }: ISelect) => { const [selected, setSelected] = useState(!Array.isArray(initialValue) && initialValue); - const items = options.map((option) => ({ label: textParser([option.text]), value: option.value })); + const items = options.map(option => ({ label: textParser([option.text]), value: option.value })); const pickerStyle = { ...styles.viewContainer, - ...isIOS ? styles.iosPadding : {}, + ...(isIOS ? styles.iosPadding : {}), borderColor: themes[theme].separatorColor, - backgroundColor: themes[theme].backgroundColor, + backgroundColor: themes[theme].backgroundColor }; - const Icon = () => ( - loading - ? <ActivityIndicator style={styles.loading} /> - : <CustomIcon size={22} name='chevron-down' style={isAndroid && styles.icon} color={themes[theme].auxiliaryText} /> - ); + const Icon = () => + loading ? ( + <ActivityIndicator style={styles.loading} /> + ) : ( + <CustomIcon size={22} name='chevron-down' style={isAndroid && styles.icon} color={themes[theme].auxiliaryText} /> + ); return ( <RNPickerSelect @@ -77,17 +70,19 @@ export const Select = ({ useNativeAndroidPickerStyle={false} value={selected} disabled={disabled} - onValueChange={(value) => { + onValueChange={value => { onChange({ value }); setSelected(value); }} style={{ viewContainer: pickerStyle, - inputAndroidContainer: pickerStyle, + inputAndroidContainer: pickerStyle }} Icon={Icon} // @ts-ignore - textInputProps={{ style: { ...styles.pickerText, color: selected ? themes[theme].titleText : themes[theme].auxiliaryText } }} + textInputProps={{ + style: { ...styles.pickerText, color: selected ? themes[theme].titleText : themes[theme].auxiliaryText } + }} /> ); }; diff --git a/app/containers/UIKit/index.tsx b/app/containers/UIKit/index.tsx index 7e91a6d7be..3f34155098 100644 --- a/app/containers/UIKit/index.tsx +++ b/app/containers/UIKit/index.tsx @@ -1,13 +1,7 @@ /* eslint-disable class-methods-use-this */ import React, { useContext } from 'react'; import { StyleSheet, Text } from 'react-native'; -import { - BLOCK_CONTEXT, - UiKitParserMessage, - UiKitParserModal, - uiKitMessage, - uiKitModal, -} from '@rocket.chat/ui-kit'; +import { BLOCK_CONTEXT, UiKitParserMessage, UiKitParserModal, uiKitMessage, uiKitModal } from '@rocket.chat/ui-kit'; import Markdown from '../markdown'; import Button from '../Button'; @@ -29,20 +23,20 @@ import { ThemeContext } from '../../theme'; const styles = StyleSheet.create({ input: { - marginBottom: 0, + marginBottom: 0 }, multiline: { - height: 130, + height: 130 }, button: { - marginBottom: 16, + marginBottom: 16 }, text: { fontSize: 16, lineHeight: 22, textAlignVertical: 'center', - ...sharedStyles.textRegular, - }, + ...sharedStyles.textRegular + } }); const plainText = ({ text } = { text: '' }) => text; @@ -57,12 +51,7 @@ class MessageParser extends UiKitParserMessage { const isContext = context === BLOCK_CONTEXT.CONTEXT; return ( // @ts-ignore - <Markdown - msg={text} - theme={theme} - style={[isContext && { color: themes[theme].auxiliaryText }]} - preview={isContext} - /> + <Markdown msg={text} theme={theme} style={[isContext && { color: themes[theme].auxiliaryText }]} preview={isContext} /> ); } @@ -102,16 +91,7 @@ class MessageParser extends UiKitParserMessage { overflow(element: any, context: any) { const [{ loading }, action]: any = useBlockContext(element, context); const { theme }: any = useContext(ThemeContext); - return ( - <Overflow - element={element} - context={context} - loading={loading} - action={action} - theme={theme} - parser={this} - /> - ); + return <Overflow element={element} context={context} loading={loading} action={action} theme={theme} parser={this} />; } datePicker(element: any, context: any) { @@ -145,59 +125,32 @@ class MessageParser extends UiKitParserMessage { const [{ loading, value }, action]: any = useBlockContext(element, context); const { theme } = useContext(ThemeContext); return ( - <MultiSelect - {...element} - theme={theme} - value={value} - onChange={action} - context={context} - loading={loading} - multiselect - /> + <MultiSelect {...element} theme={theme} value={value} onChange={action} context={context} loading={loading} multiselect /> ); } staticSelect(element: any, context: any) { const [{ loading, value }, action]: any = useBlockContext(element, context); const { theme } = useContext(ThemeContext); - return ( - <Select - {...element} - theme={theme} - value={value} - onChange={action} - loading={loading} - /> - ); + return <Select {...element} theme={theme} value={value} onChange={action} loading={loading} />; } selectInput(element: any, context: any) { const [{ loading, value }, action]: any = useBlockContext(element, context); const { theme } = useContext(ThemeContext); - return ( - <MultiSelect - {...element} - theme={theme} - value={value} - onChange={action} - context={context} - loading={loading} - /> - ); + return <MultiSelect {...element} theme={theme} value={value} onChange={action} context={context} loading={loading} />; } } class ModalParser extends UiKitParserModal { constructor() { super(); - Object.getOwnPropertyNames(MessageParser.prototype).forEach((method) => { + Object.getOwnPropertyNames(MessageParser.prototype).forEach(method => { ModalParser.prototype[method] = ModalParser.prototype[method] || MessageParser.prototype[method]; }); } - input({ - element, blockId, appId, label, description, hint, - }: any, context: any) { + input({ element, blockId, appId, label, description, hint }: any, context: any) { const [{ error }]: any = useBlockContext({ ...element, appId, blockId }, context); const { theme }: any = useContext(ThemeContext); return ( diff --git a/app/containers/UIKit/utils.ts b/app/containers/UIKit/utils.ts index 0aee682a5b..b64aea9cc8 100644 --- a/app/containers/UIKit/utils.ts +++ b/app/containers/UIKit/utils.ts @@ -8,56 +8,66 @@ export const defaultContext: any = { action: (...args: any) => console.log(args), state: console.log, appId: '123456789ABCDEFGHJKLMNPQRSTUVWXYZabcdefghijkmnopqrstuvwxyz', - errors: {}, + errors: {} }; export const KitContext = React.createContext(defaultContext); -export const useBlockContext = ({ - blockId, actionId, appId, initialValue, -}: any, context: any) => { - const { - action, appId: appIdFromContext, viewId, state, language, errors, values = {}, - } = useContext(KitContext); +export const useBlockContext = ({ blockId, actionId, appId, initialValue }: any, context: any) => { + const { action, appId: appIdFromContext, viewId, state, language, errors, values = {} } = useContext(KitContext); const { value = initialValue } = values[actionId] || {}; const [loading, setLoading] = useState(false); const error = errors && actionId && errors[actionId]; if ([BLOCK_CONTEXT.SECTION, BLOCK_CONTEXT.ACTION].includes(context)) { - return [{ - loading, setLoading, error, value, language, - }, async ({ value }: any) => { + return [ + { + loading, + setLoading, + error, + value, + language + }, + async ({ value }: any) => { + setLoading(true); + try { + await action({ + blockId, + appId: appId || appIdFromContext, + actionId, + value, + viewId + }); + } catch (e) { + // do nothing + } + setLoading(false); + } + ]; + } + + return [ + { + loading, + setLoading, + value, + error, + language + }, + async ({ value }: any) => { setLoading(true); try { - await action({ + await state({ blockId, - appId: appId || appIdFromContext, + appId, actionId, - value, - viewId, + value }); } catch (e) { // do nothing } setLoading(false); - }]; - } - - return [{ - loading, setLoading, value, error, language, - }, async ({ value }: any) => { - setLoading(true); - try { - await state({ - blockId, - appId, - actionId, - value, - }); - } catch (e) { - // do nothing } - setLoading(false); - }]; + ]; }; diff --git a/app/containers/markdown/AtMention.tsx b/app/containers/markdown/AtMention.tsx index 612f8c7bf6..ab63549941 100644 --- a/app/containers/markdown/AtMention.tsx +++ b/app/containers/markdown/AtMention.tsx @@ -15,20 +15,18 @@ interface IAtMention { mentions: any; } -const AtMention = React.memo(({ - mention, mentions, username, navToRoomInfo, style = [], useRealName, theme, -}: IAtMention) => { +const AtMention = React.memo(({ mention, mentions, username, navToRoomInfo, style = [], useRealName, theme }: IAtMention) => { if (mention === 'all' || mention === 'here') { return ( <Text style={[ styles.mention, { - color: themes[theme].mentionGroupColor, + color: themes[theme].mentionGroupColor }, - ...style, - ]} - >{mention} + ...style + ]}> + {mention} </Text> ); } @@ -36,11 +34,11 @@ const AtMention = React.memo(({ let mentionStyle = {}; if (mention === username) { mentionStyle = { - color: themes[theme].mentionMeColor, + color: themes[theme].mentionMeColor }; } else { mentionStyle = { - color: themes[theme].mentionOtherColor, + color: themes[theme].mentionOtherColor }; } @@ -50,27 +48,20 @@ const AtMention = React.memo(({ logEvent(events.ROOM_MENTION_GO_USER_INFO); const navParam = { t: 'd', - rid: user && user._id, + rid: user && user._id }; navToRoomInfo(navParam); }; if (user) { return ( - <Text - style={[styles.mention, mentionStyle, ...style]} - onPress={handlePress} - > + <Text style={[styles.mention, mentionStyle, ...style]} onPress={handlePress}> {useRealName && user.name ? user.name : user.username} </Text> ); } - return ( - <Text style={[styles.text, { color: themes[theme].bodyText }, ...style]}> - {`@${ mention }`} - </Text> - ); + return <Text style={[styles.text, { color: themes[theme].bodyText }, ...style]}>{`@${mention}`}</Text>; }); export default AtMention; diff --git a/app/containers/markdown/BlockQuote.tsx b/app/containers/markdown/BlockQuote.tsx index bf07597310..e2da2c1fa5 100644 --- a/app/containers/markdown/BlockQuote.tsx +++ b/app/containers/markdown/BlockQuote.tsx @@ -12,9 +12,7 @@ interface IBlockQuote { const BlockQuote = React.memo(({ children, theme }: IBlockQuote) => ( <View style={styles.container}> <View style={[styles.quote, { backgroundColor: themes[theme].borderColor }]} /> - <View style={styles.childContainer}> - {children} - </View> + <View style={styles.childContainer}>{children}</View> </View> )); diff --git a/app/containers/markdown/Emoji.tsx b/app/containers/markdown/Emoji.tsx index 01fe7eb774..bb348268a0 100644 --- a/app/containers/markdown/Emoji.tsx +++ b/app/containers/markdown/Emoji.tsx @@ -18,34 +18,25 @@ interface IEmoji { tabEmojiStyle?: object; } -const Emoji = React.memo(({ - literal, isMessageContainsOnlyEmoji, getCustomEmoji, baseUrl, customEmojis = true, style = {}, theme, -}: IEmoji) => { - const emojiUnicode = shortnameToUnicode(literal); - const emoji: any = getCustomEmoji && getCustomEmoji(literal.replace(/:/g, '')); - if (emoji && customEmojis) { +const Emoji = React.memo( + ({ literal, isMessageContainsOnlyEmoji, getCustomEmoji, baseUrl, customEmojis = true, style = {}, theme }: IEmoji) => { + const emojiUnicode = shortnameToUnicode(literal); + const emoji: any = getCustomEmoji && getCustomEmoji(literal.replace(/:/g, '')); + if (emoji && customEmojis) { + return ( + <CustomEmoji + baseUrl={baseUrl} + style={[isMessageContainsOnlyEmoji ? styles.customEmojiBig : styles.customEmoji, style]} + emoji={emoji} + /> + ); + } return ( - <CustomEmoji - baseUrl={baseUrl} - style={[ - isMessageContainsOnlyEmoji ? styles.customEmojiBig : styles.customEmoji, - style, - ]} - emoji={emoji} - /> + <Text style={[{ color: themes[theme!].bodyText }, isMessageContainsOnlyEmoji ? styles.textBig : styles.text, style]}> + {emojiUnicode} + </Text> ); } - return ( - <Text - style={[ - { color: themes[theme!].bodyText }, - isMessageContainsOnlyEmoji ? styles.textBig : styles.text, - style, - ]} - > - {emojiUnicode} - </Text> - ); -}); +); export default Emoji; diff --git a/app/containers/markdown/Hashtag.tsx b/app/containers/markdown/Hashtag.tsx index 668c011db4..872b8782a5 100644 --- a/app/containers/markdown/Hashtag.tsx +++ b/app/containers/markdown/Hashtag.tsx @@ -17,34 +17,30 @@ interface IHashtag { const Hashtag = React.memo(({ hashtag, channels, navToRoomInfo, style = [], theme }: IHashtag) => { const handlePress = () => { - const index = channels.findIndex((channel) => channel.name === hashtag); + const index = channels.findIndex(channel => channel.name === hashtag); const navParam = { t: 'c', - rid: channels[index]._id, + rid: channels[index]._id }; navToRoomInfo(navParam); }; - if (channels && channels.length && channels.findIndex((channel) => channel.name === hashtag) !== -1) { + if (channels && channels.length && channels.findIndex(channel => channel.name === hashtag) !== -1) { return ( <Text style={[ styles.mention, { - color: themes[theme].mentionOtherColor, + color: themes[theme].mentionOtherColor }, - ...style]} - onPress={handlePress} - > - {`#${ hashtag }`} + ...style + ]} + onPress={handlePress}> + {`#${hashtag}`} </Text> ); } - return ( - <Text style={[styles.text, { color: themes[theme].bodyText }, ...style]}> - {`#${ hashtag }`} - </Text> - ); + return <Text style={[styles.text, { color: themes[theme].bodyText }, ...style]}>{`#${hashtag}`}</Text>; }); export default Hashtag; diff --git a/app/containers/markdown/Link.tsx b/app/containers/markdown/Link.tsx index 3d3c6dcf1c..d2aca85f60 100644 --- a/app/containers/markdown/Link.tsx +++ b/app/containers/markdown/Link.tsx @@ -26,7 +26,7 @@ const Link = React.memo(({ children, link, theme, onLinkPress }: ILink) => { openLink(link, theme); }; - const childLength = React.Children.toArray(children).filter((o) => o).length; + const childLength = React.Children.toArray(children).filter(o => o).length; const onLongPress = () => { Clipboard.setString(link); EventEmitter.emit(LISTENER, { message: I18n.t('Copied_to_clipboard') }); @@ -34,12 +34,8 @@ const Link = React.memo(({ children, link, theme, onLinkPress }: ILink) => { // if you have a [](https://rocket.chat) render https://rocket.chat return ( - <Text - onPress={handlePress} - onLongPress={onLongPress} - style={{ ...styles.link, color: themes[theme].actionTintColor }} - > - { childLength !== 0 ? children : link } + <Text onPress={handlePress} onLongPress={onLongPress} style={{ ...styles.link, color: themes[theme].actionTintColor }}> + {childLength !== 0 ? children : link} </Text> ); }); diff --git a/app/containers/markdown/List.tsx b/app/containers/markdown/List.tsx index e4116fed1e..70a79418b2 100644 --- a/app/containers/markdown/List.tsx +++ b/app/containers/markdown/List.tsx @@ -13,8 +13,8 @@ const List = React.memo(({ children, ordered, tight, start = 1, numberOfLines = if (ordered) { // @ts-ignore - const lastNumber = (start + children.length) - 1; - bulletWidth = (9 * lastNumber.toString().length) + 7; + const lastNumber = start + children.length - 1; + bulletWidth = 9 * lastNumber.toString().length + 7; } let items = React.Children.toArray(children); @@ -23,18 +23,16 @@ const List = React.memo(({ children, ordered, tight, start = 1, numberOfLines = items = items.slice(0, numberOfLines); } - const _children = items.map((child: any, index: number) => React.cloneElement(child, { - bulletWidth, - ordered, - tight, - index: start + index, - })); - - return ( - <> - {_children} - </> + const _children = items.map((child: any, index: number) => + React.cloneElement(child, { + bulletWidth, + ordered, + tight, + index: start + index + }) ); + + return <>{_children}</>; }); export default List; diff --git a/app/containers/markdown/ListItem.tsx b/app/containers/markdown/ListItem.tsx index 8d0f53d61a..0e323df77f 100644 --- a/app/containers/markdown/ListItem.tsx +++ b/app/containers/markdown/ListItem.tsx @@ -6,15 +6,15 @@ import { themes } from '../../constants/colors'; const style = StyleSheet.create({ container: { flexDirection: 'row', - alignItems: 'flex-start', + alignItems: 'flex-start' }, bullet: { alignItems: 'flex-end', - marginRight: 5, + marginRight: 5 }, contents: { - flex: 1, - }, + flex: 1 + } }); interface IListItem { @@ -27,14 +27,12 @@ interface IListItem { index: number; } -const ListItem = React.memo(({ - children, level, bulletWidth, continue: _continue, ordered, index, theme, -}: IListItem) => { +const ListItem = React.memo(({ children, level, bulletWidth, continue: _continue, ordered, index, theme }: IListItem) => { let bullet; if (_continue) { bullet = ''; } else if (ordered) { - bullet = `${ index }.`; + bullet = `${index}.`; } else if (level % 2 === 0) { bullet = '◦'; } else { @@ -44,13 +42,9 @@ const ListItem = React.memo(({ return ( <View style={style.container}> <View style={[{ width: bulletWidth }, style.bullet]}> - <Text style={{ color: themes[theme].bodyText }}> - {bullet} - </Text> - </View> - <View style={style.contents}> - {children} + <Text style={{ color: themes[theme].bodyText }}>{bullet}</Text> </View> + <View style={style.contents}>{children}</View> </View> ); }); diff --git a/app/containers/markdown/Table.tsx b/app/containers/markdown/Table.tsx index cbc436729a..f7c742b6ec 100644 --- a/app/containers/markdown/Table.tsx +++ b/app/containers/markdown/Table.tsx @@ -26,14 +26,10 @@ const Table = React.memo(({ children, numColumns, theme }: ITable) => { const rows: any = React.Children.toArray(children); rows[rows.length - 1] = React.cloneElement(rows[rows.length - 1], { - isLastRow: true, + isLastRow: true }); - return ( - <View style={tableStyle}> - {rows} - </View> - ); + return <View style={tableStyle}>{rows}</View>; }; const onPress = () => Navigation.navigate('MarkdownTableView', { renderRows, tableWidth: getTableWidth() }); @@ -44,8 +40,10 @@ const Table = React.memo(({ children, numColumns, theme }: ITable) => { contentContainerStyle={{ width: getTableWidth() }} scrollEnabled={false} showsVerticalScrollIndicator={false} - style={[styles.containerTable, { maxWidth: getTableWidth(), maxHeight: MAX_HEIGHT, borderColor: themes[theme].borderColor }]} - > + style={[ + styles.containerTable, + { maxWidth: getTableWidth(), maxHeight: MAX_HEIGHT, borderColor: themes[theme].borderColor } + ]}> {renderRows(false)} </ScrollView> <Text style={[styles.textInfo, { color: themes[theme].auxiliaryText }]}>{I18n.t('Full_table')}</Text> diff --git a/app/containers/markdown/TableCell.tsx b/app/containers/markdown/TableCell.tsx index 3813193de6..09e5c4fc38 100644 --- a/app/containers/markdown/TableCell.tsx +++ b/app/containers/markdown/TableCell.tsx @@ -28,9 +28,7 @@ const TableCell = React.memo(({ isLastCell, align, children, theme }: ITableCell return ( <View style={[...cellStyle, { width: CELL_WIDTH }]}> - <Text style={[textStyle, { color: themes[theme].bodyText }]}> - {children} - </Text> + <Text style={[textStyle, { color: themes[theme].bodyText }]}>{children}</Text> </View> ); }); diff --git a/app/containers/markdown/TableRow.tsx b/app/containers/markdown/TableRow.tsx index b3ede77362..730c0b71e8 100644 --- a/app/containers/markdown/TableRow.tsx +++ b/app/containers/markdown/TableRow.tsx @@ -18,7 +18,7 @@ const TableRow = React.memo(({ isLastRow, children: _children, theme }: ITableRo const children: any = React.Children.toArray(_children); children[children.length - 1] = React.cloneElement(children[children.length - 1], { - isLastCell: true, + isLastCell: true }); return <View style={rowStyle}>{children}</View>; diff --git a/app/containers/markdown/index.tsx b/app/containers/markdown/index.tsx index 384b4b5daa..d3ce8453e9 100644 --- a/app/containers/markdown/index.tsx +++ b/app/containers/markdown/index.tsx @@ -46,18 +46,19 @@ interface IMarkdownProps { type TLiteral = { literal: string; -} +}; // Support <http://link|Text> -const formatText = (text: string) => text.replace( - new RegExp('(?:<|<)((?:https|http):\\/\\/[^\\|]+)\\|(.+?)(?=>|>)(?:>|>)', 'gm'), - (match, url, title) => `[${ title }](${ url })`, -); +const formatText = (text: string) => + text.replace( + new RegExp('(?:<|<)((?:https|http):\\/\\/[^\\|]+)\\|(.+?)(?=>|>)(?:>|>)', 'gm'), + (match, url, title) => `[${title}](${url})` + ); const emojiRanges = [ '\u00a9|\u00ae|[\u2000-\u3300]|\ud83c[\ud000-\udfff]|\ud83d[\ud000-\udfff]|\ud83e[\ud000-\udfff]', // unicode emoji from https://www.regextester.com/106421 ':.{1,40}:', // custom emoji - ' |\n', // allow spaces and line breaks + ' |\n' // allow spaces and line breaks ].join('|'); const removeSpaces = (str: string) => str && str.replace(/\s/g, ''); @@ -99,43 +100,44 @@ class Markdown extends PureComponent<IMarkdownProps, any> { this.renderer = this.createRenderer(); } - createRenderer = () => new Renderer({ - renderers: { - text: this.renderText, - - emph: Renderer.forwardChildren, - strong: Renderer.forwardChildren, - del: Renderer.forwardChildren, - code: this.renderCodeInline, - link: this.renderLink, - image: this.renderImage, - atMention: this.renderAtMention, - emoji: this.renderEmoji, - hashtag: this.renderHashtag, - - paragraph: this.renderParagraph, - heading: this.renderHeading, - codeBlock: this.renderCodeBlock, - blockQuote: this.renderBlockQuote, - - list: this.renderList, - item: this.renderListItem, - - hardBreak: this.renderBreak, - thematicBreak: this.renderBreak, - softBreak: this.renderBreak, - - htmlBlock: this.renderText, - htmlInline: this.renderText, - - table: this.renderTable, - table_row: this.renderTableRow, - table_cell: this.renderTableCell, - - editedIndicator: this.renderEditedIndicator, - }, - renderParagraphsInLists: true, - }); + createRenderer = () => + new Renderer({ + renderers: { + text: this.renderText, + + emph: Renderer.forwardChildren, + strong: Renderer.forwardChildren, + del: Renderer.forwardChildren, + code: this.renderCodeInline, + link: this.renderLink, + image: this.renderImage, + atMention: this.renderAtMention, + emoji: this.renderEmoji, + hashtag: this.renderHashtag, + + paragraph: this.renderParagraph, + heading: this.renderHeading, + codeBlock: this.renderCodeBlock, + blockQuote: this.renderBlockQuote, + + list: this.renderList, + item: this.renderListItem, + + hardBreak: this.renderBreak, + thematicBreak: this.renderBreak, + softBreak: this.renderBreak, + + htmlBlock: this.renderText, + htmlInline: this.renderText, + + table: this.renderTable, + table_row: this.renderTableRow, + table_cell: this.renderTableCell, + + editedIndicator: this.renderEditedIndicator + }, + renderParagraphsInLists: true + }); editedMessage = (ast: any) => { const { isEdited } = this.props; @@ -152,24 +154,15 @@ class Markdown extends PureComponent<IMarkdownProps, any> { } }; - renderText = ({ context, literal }: {context: []; literal: string}) => { - const { - numberOfLines, style = [], - } = this.props; - const defaultStyle = [ - this.isMessageContainsOnlyEmoji ? styles.textBig : {}, - ...context.map((type) => styles[type]), - ]; + renderText = ({ context, literal }: { context: []; literal: string }) => { + const { numberOfLines, style = [] } = this.props; + const defaultStyle = [this.isMessageContainsOnlyEmoji ? styles.textBig : {}, ...context.map(type => styles[type])]; return ( - <Text - accessibilityLabel={literal} - style={[styles.text, defaultStyle, ...style]} - numberOfLines={numberOfLines} - > + <Text accessibilityLabel={literal} style={[styles.text, defaultStyle, ...style]} numberOfLines={numberOfLines}> {literal} </Text> ); - } + }; renderCodeInline = ({ literal }: TLiteral) => { const { theme, style = [] } = this.props; @@ -180,11 +173,10 @@ class Markdown extends PureComponent<IMarkdownProps, any> { ...styles.codeInline, color: themes[theme].bodyText, backgroundColor: themes[theme].bannerBackground, - borderColor: themes[theme].bannerBackground, + borderColor: themes[theme].bannerBackground }, - ...style, - ]} - > + ...style + ]}> {literal} </Text> ); @@ -199,11 +191,10 @@ class Markdown extends PureComponent<IMarkdownProps, any> { ...styles.codeBlock, color: themes[theme].bodyText, backgroundColor: themes[theme].bannerBackground, - borderColor: themes[theme].bannerBackground, + borderColor: themes[theme].bannerBackground }, - ...style, - ]} - > + ...style + ]}> {literal} </Text> ); @@ -212,7 +203,7 @@ class Markdown extends PureComponent<IMarkdownProps, any> { renderBreak = () => { const { tmid } = this.props; return <Text>{tmid ? ' ' : '\n'}</Text>; - } + }; renderParagraph = ({ children }: any) => { const { numberOfLines, style, theme } = this.props; @@ -229,28 +220,16 @@ class Markdown extends PureComponent<IMarkdownProps, any> { renderLink = ({ children, href }: any) => { const { theme, onLinkPress } = this.props; return ( - <MarkdownLink - link={href} - theme={theme} - onLinkPress={onLinkPress} - > + <MarkdownLink link={href} theme={theme} onLinkPress={onLinkPress}> {children} </MarkdownLink> ); - } + }; - renderHashtag = ({ hashtag }: {hashtag: string}) => { + renderHashtag = ({ hashtag }: { hashtag: string }) => { const { channels, navToRoomInfo, style, theme } = this.props; - return ( - <MarkdownHashtag - hashtag={hashtag} - channels={channels} - navToRoomInfo={navToRoomInfo} - theme={theme} - style={style} - /> - ); - } + return <MarkdownHashtag hashtag={hashtag} channels={channels} navToRoomInfo={navToRoomInfo} theme={theme} style={style} />; + }; renderAtMention = ({ mentionName }: { mentionName: string }) => { const { username, mentions, navToRoomInfo, useRealName, style, theme } = this.props; @@ -265,7 +244,7 @@ class Markdown extends PureComponent<IMarkdownProps, any> { style={style} /> ); - } + }; renderEmoji = ({ literal }: TLiteral) => { const { getCustomEmoji, baseUrl, customEmojis, style, theme } = this.props; @@ -280,29 +259,24 @@ class Markdown extends PureComponent<IMarkdownProps, any> { theme={theme} /> ); - } + }; - renderImage = ({ src }: {src: string}) => { + renderImage = ({ src }: { src: string }) => { if (!isValidURL(src)) { return null; } - return ( - <Image - style={styles.inlineImage} - source={{ uri: encodeURI(src) }} - /> - ); - } + return <Image style={styles.inlineImage} source={{ uri: encodeURI(src) }} />; + }; renderEditedIndicator = () => { const { theme } = this.props; return <Text style={[styles.edited, { color: themes[theme].auxiliaryText }]}> ({I18n.t('edited')})</Text>; - } + }; renderHeading = ({ children, level }: any) => { const { numberOfLines, theme } = this.props; - const textStyle = styles[`heading${ level }Text`]; + const textStyle = styles[`heading${level}Text`]; return ( <Text numberOfLines={numberOfLines} style={[textStyle, { color: themes[theme].bodyText }]}> {children} @@ -313,12 +287,7 @@ class Markdown extends PureComponent<IMarkdownProps, any> { renderList = ({ children, start, tight, type }: any) => { const { numberOfLines } = this.props; return ( - <MarkdownList - ordered={type !== 'bullet'} - start={start} - tight={tight} - numberOfLines={numberOfLines} - > + <MarkdownList ordered={type !== 'bullet'} start={start} tight={tight} numberOfLines={numberOfLines}> {children} </MarkdownList> ); @@ -329,24 +298,16 @@ class Markdown extends PureComponent<IMarkdownProps, any> { const level = context.filter((type: string) => type === 'list').length; return ( - <MarkdownListItem - level={level} - theme={theme} - {...otherProps} - > + <MarkdownListItem level={level} theme={theme} {...otherProps}> {children} </MarkdownListItem> ); }; - renderBlockQuote = ({ children }: {children: JSX.Element}) => { + renderBlockQuote = ({ children }: { children: JSX.Element }) => { const { theme } = this.props; - return ( - <MarkdownBlockQuote theme={theme}> - {children} - </MarkdownBlockQuote> - ); - } + return <MarkdownBlockQuote theme={theme}>{children}</MarkdownBlockQuote>; + }; renderTable = ({ children, numColumns }: { children: JSX.Element; numColumns: number }) => { const { theme } = this.props; @@ -355,22 +316,20 @@ class Markdown extends PureComponent<IMarkdownProps, any> { {children} </MarkdownTable> ); - } + }; renderTableRow = (args: any) => { const { theme } = this.props; return <MarkdownTableRow {...args} theme={theme} />; - } + }; renderTableCell = (args: any) => { const { theme } = this.props; return <MarkdownTableCell {...args} theme={theme} />; - } + }; render() { - const { - msg, numberOfLines, preview = false, theme, style = [], testID, - } = this.props; + const { msg, numberOfLines, preview = false, theme, style = [], testID } = this.props; if (!msg) { return null; @@ -389,7 +348,11 @@ class Markdown extends PureComponent<IMarkdownProps, any> { m = removeMarkdown(m); m = m.replace(/\n+/g, ' '); return ( - <Text accessibilityLabel={m} style={[styles.text, { color: themes[theme].bodyText }, ...style]} numberOfLines={numberOfLines} testID={testID}> + <Text + accessibilityLabel={m} + style={[styles.text, { color: themes[theme].bodyText }, ...style]} + numberOfLines={numberOfLines} + testID={testID}> {m} </Text> ); diff --git a/app/containers/markdown/mergeTextNodes.ts b/app/containers/markdown/mergeTextNodes.ts index d47bd8ade8..93302299e1 100644 --- a/app/containers/markdown/mergeTextNodes.ts +++ b/app/containers/markdown/mergeTextNodes.ts @@ -5,7 +5,7 @@ export default function mergeTextNodes(ast: any) { const walker = ast.walker(); let event; // eslint-disable-next-line no-cond-assign - while (event = walker.next()) { + while ((event = walker.next())) { const { entering, node } = event; const { type } = node; if (entering && type === 'text') { diff --git a/app/containers/markdown/styles.ts b/app/containers/markdown/styles.ts index 56f76b2f5e..d7eef0502b 100644 --- a/app/containers/markdown/styles.ts +++ b/app/containers/markdown/styles.ts @@ -4,57 +4,57 @@ import sharedStyles from '../../views/Styles'; const codeFontFamily = Platform.select({ ios: { fontFamily: 'Courier New' }, - android: { fontFamily: 'monospace' }, + android: { fontFamily: 'monospace' } }); export default StyleSheet.create<any>({ container: { alignItems: 'flex-start', - flexDirection: 'row', + flexDirection: 'row' }, childContainer: { - flex: 1, + flex: 1 }, block: { alignItems: 'flex-start', flexDirection: 'row', flexWrap: 'wrap', - flex: 1, + flex: 1 }, emph: { - fontStyle: 'italic', + fontStyle: 'italic' }, strong: { - fontWeight: 'bold', + fontWeight: 'bold' }, del: { - textDecorationLine: 'line-through', + textDecorationLine: 'line-through' }, text: { fontSize: 16, - ...sharedStyles.textRegular, + ...sharedStyles.textRegular }, textInfo: { fontStyle: 'italic', fontSize: 16, - ...sharedStyles.textRegular, + ...sharedStyles.textRegular }, textBig: { fontSize: 30, - ...sharedStyles.textRegular, + ...sharedStyles.textRegular }, customEmoji: { width: 20, - height: 20, + height: 20 }, customEmojiBig: { width: 30, - height: 30, + height: 30 }, temp: { opacity: 0.3 }, mention: { fontSize: 16, - ...sharedStyles.textSemibold, + ...sharedStyles.textSemibold }, paragraph: { marginTop: 0, @@ -62,96 +62,96 @@ export default StyleSheet.create<any>({ flexWrap: 'wrap', flexDirection: 'row', alignItems: 'flex-start', - justifyContent: 'flex-start', + justifyContent: 'flex-start' }, inlineImage: { width: 300, height: 300, - resizeMode: 'contain', + resizeMode: 'contain' }, codeInline: { ...sharedStyles.textRegular, ...codeFontFamily, borderWidth: 1, - borderRadius: 4, + borderRadius: 4 }, codeBlock: { ...sharedStyles.textRegular, ...codeFontFamily, borderWidth: 1, borderRadius: 4, - padding: 4, + padding: 4 }, link: { fontSize: 16, - ...sharedStyles.textRegular, + ...sharedStyles.textRegular }, edited: { fontSize: 14, - ...sharedStyles.textRegular, + ...sharedStyles.textRegular }, heading1: { ...sharedStyles.textBold, - fontSize: 24, + fontSize: 24 }, heading2: { ...sharedStyles.textBold, - fontSize: 22, + fontSize: 22 }, heading3: { ...sharedStyles.textSemibold, - fontSize: 20, + fontSize: 20 }, heading4: { ...sharedStyles.textSemibold, - fontSize: 18, + fontSize: 18 }, heading5: { ...sharedStyles.textMedium, - fontSize: 16, + fontSize: 16 }, heading6: { ...sharedStyles.textMedium, - fontSize: 14, + fontSize: 14 }, quote: { height: '100%', width: 2, - marginRight: 5, + marginRight: 5 }, touchableTable: { - justifyContent: 'center', + justifyContent: 'center' }, containerTable: { borderBottomWidth: 1, - borderRightWidth: 1, + borderRightWidth: 1 }, table: { borderLeftWidth: 1, - borderTopWidth: 1, + borderTopWidth: 1 }, tableExtraBorders: { borderBottomWidth: 1, - borderRightWidth: 1, + borderRightWidth: 1 }, row: { - flexDirection: 'row', + flexDirection: 'row' }, rowBottomBorder: { - borderBottomWidth: 1, + borderBottomWidth: 1 }, cell: { justifyContent: 'flex-start', paddingHorizontal: 13, - paddingVertical: 6, + paddingVertical: 6 }, cellRightBorder: { - borderRightWidth: 1, + borderRightWidth: 1 }, alignCenter: { - textAlign: 'center', + textAlign: 'center' }, alignRight: { - textAlign: 'right', - }, + textAlign: 'right' + } }); diff --git a/app/containers/message/Attachments.tsx b/app/containers/message/Attachments.tsx index f77e493864..88b8e1ddd3 100644 --- a/app/containers/message/Attachments.tsx +++ b/app/containers/message/Attachments.tsx @@ -11,12 +11,10 @@ import Button from '../Button'; import styles from './styles'; import MessageContext from './Context'; -const AttachedActions = ({ - attachment, theme, -}: IMessageAttachedActions) => { +const AttachedActions = ({ attachment, theme }: IMessageAttachedActions) => { const { onAnswerButtonPress } = useContext(MessageContext); - const attachedButtons = attachment.actions.map((element: {type: string; msg: string; text: string}) => { + const attachedButtons = attachment.actions.map((element: { type: string; msg: string; text: string }) => { if (element.type === 'button') { return <Button theme={theme} onPress={() => onAnswerButtonPress(element.msg)} title={element.text} />; } @@ -30,31 +28,45 @@ const AttachedActions = ({ ); }; -const Attachments = React.memo(({ - attachments, timeFormat, showAttachment, getCustomEmoji, theme, -}: IMessageAttachments) => { - if (!attachments || attachments.length === 0) { - return null; - } - - return attachments.map((file: any, index: number) => { - if (file.image_url) { - return <Image key={file.image_url} file={file} showAttachment={showAttachment} getCustomEmoji={getCustomEmoji} theme={theme} />; - } - if (file.audio_url) { - return <Audio key={file.audio_url} file={file} getCustomEmoji={getCustomEmoji} theme={theme} />; - } - if (file.video_url) { - return <Video key={file.video_url} file={file} showAttachment={showAttachment} getCustomEmoji={getCustomEmoji} theme={theme} />; - } - if (file.actions && file.actions.length > 0) { - return <AttachedActions attachment={file} theme={theme} />; +const Attachments = React.memo( + ({ attachments, timeFormat, showAttachment, getCustomEmoji, theme }: IMessageAttachments) => { + if (!attachments || attachments.length === 0) { + return null; } - // eslint-disable-next-line react/no-array-index-key - return <Reply key={index} index={index} attachment={file} timeFormat={timeFormat} getCustomEmoji={getCustomEmoji} theme={theme} />; - }); -}, (prevProps, nextProps) => dequal(prevProps.attachments, nextProps.attachments) && prevProps.theme === nextProps.theme); + return attachments.map((file: any, index: number) => { + if (file.image_url) { + return ( + <Image key={file.image_url} file={file} showAttachment={showAttachment} getCustomEmoji={getCustomEmoji} theme={theme} /> + ); + } + if (file.audio_url) { + return <Audio key={file.audio_url} file={file} getCustomEmoji={getCustomEmoji} theme={theme} />; + } + if (file.video_url) { + return ( + <Video key={file.video_url} file={file} showAttachment={showAttachment} getCustomEmoji={getCustomEmoji} theme={theme} /> + ); + } + if (file.actions && file.actions.length > 0) { + return <AttachedActions attachment={file} theme={theme} />; + } + + // eslint-disable-next-line react/no-array-index-key + return ( + <Reply + key={index} + index={index} + attachment={file} + timeFormat={timeFormat} + getCustomEmoji={getCustomEmoji} + theme={theme} + /> + ); + }); + }, + (prevProps, nextProps) => dequal(prevProps.attachments, nextProps.attachments) && prevProps.theme === nextProps.theme +); Attachments.displayName = 'MessageAttachments'; diff --git a/app/containers/message/Audio.tsx b/app/containers/message/Audio.tsx index 1f7d7b99da..7e4bb555bc 100644 --- a/app/containers/message/Audio.tsx +++ b/app/containers/message/Audio.tsx @@ -34,10 +34,10 @@ interface IMessageAudioProps { } interface IMessageAudioState { - loading: boolean, - currentTime: number, - duration: number, - paused: boolean + loading: boolean; + currentTime: number; + duration: number; + paused: boolean; } const mode = { @@ -47,7 +47,7 @@ const mode = { shouldDuckAndroid: true, playThroughEarpieceAndroid: false, interruptionModeIOS: Audio.INTERRUPTION_MODE_IOS_DO_NOT_MIX, - interruptionModeAndroid: Audio.INTERRUPTION_MODE_ANDROID_DO_NOT_MIX, + interruptionModeAndroid: Audio.INTERRUPTION_MODE_ANDROID_DO_NOT_MIX }; const styles = StyleSheet.create({ @@ -58,24 +58,24 @@ const styles = StyleSheet.create({ height: 56, borderWidth: 1, borderRadius: 4, - marginBottom: 6, + marginBottom: 6 }, playPauseButton: { marginHorizontal: 10, alignItems: 'center', - backgroundColor: 'transparent', + backgroundColor: 'transparent' }, audioLoading: { - marginHorizontal: 8, + marginHorizontal: 8 }, slider: { - flex: 1, + flex: 1 }, duration: { marginHorizontal: 12, fontSize: 14, - ...sharedStyles.textRegular, - }, + ...sharedStyles.textRegular + } }); const formatTime = (seconds: number) => moment.utc(seconds * 1000).format('mm:ss'); @@ -85,7 +85,7 @@ const BUTTON_HIT_SLOP = { top: 12, right: 12, bottom: 12, left: 12 }; const sliderAnimationConfig = { duration: 250, easing: Easing.linear, - delay: 0, + delay: 0 }; const Button = React.memo(({ loading, paused, onPress, theme }: IButton) => ( @@ -93,13 +93,12 @@ const Button = React.memo(({ loading, paused, onPress, theme }: IButton) => ( style={styles.playPauseButton} onPress={onPress} hitSlop={BUTTON_HIT_SLOP} - background={Touchable.SelectableBackgroundBorderless()} - > - { - loading - ? <ActivityIndicator style={[styles.playPauseButton, styles.audioLoading]} theme={theme} /> - : <CustomIcon name={paused ? 'play-filled' : 'pause-filled'} size={36} color={themes[theme].tintColor} /> - } + background={Touchable.SelectableBackgroundBorderless()}> + {loading ? ( + <ActivityIndicator style={[styles.playPauseButton, styles.audioLoading]} theme={theme} /> + ) : ( + <CustomIcon name={paused ? 'play-filled' : 'pause-filled'} size={36} color={themes[theme].tintColor} /> + )} </Touchable> )); @@ -116,7 +115,7 @@ class MessageAudio extends React.Component<IMessageAudioProps, IMessageAudioStat loading: false, currentTime: 0, duration: 0, - paused: true, + paused: true }; this.sound = new Audio.Sound(); @@ -129,12 +128,12 @@ class MessageAudio extends React.Component<IMessageAudioProps, IMessageAudioStat let url = file.audio_url; if (!url.startsWith('http')) { - url = `${ baseUrl }${ file.audio_url }`; + url = `${baseUrl}${file.audio_url}`; } this.setState({ loading: true }); try { - await this.sound.loadAsync({ uri: `${ url }?rc_uid=${ user.id }&rc_token=${ user.token }` }); + await this.sound.loadAsync({ uri: `${url}?rc_uid=${user.id}&rc_token=${user.token}` }); } catch { // Do nothing } @@ -142,9 +141,7 @@ class MessageAudio extends React.Component<IMessageAudioProps, IMessageAudioStat } shouldComponentUpdate(nextProps: any, nextState: any) { - const { - currentTime, duration, paused, loading, - } = this.state; + const { currentTime, duration, paused, loading } = this.state; const { file, theme } = this.props; if (nextProps.theme !== theme) { return true; @@ -190,12 +187,12 @@ class MessageAudio extends React.Component<IMessageAudioProps, IMessageAudioStat this.onProgress(status); this.onEnd(status); } - } + }; onLoad = (data: any) => { const duration = data.durationMillis / 1000; this.setState({ duration: duration > 0 ? duration : 0 }); - } + }; onProgress = (data: any) => { const { duration } = this.state; @@ -203,7 +200,7 @@ class MessageAudio extends React.Component<IMessageAudioProps, IMessageAudioStat if (currentTime <= duration) { this.setState({ currentTime }); } - } + }; onEnd = async (data: any) => { if (data.didJustFinish) { @@ -214,7 +211,7 @@ class MessageAudio extends React.Component<IMessageAudioProps, IMessageAudioStat // do nothing } } - } + }; get duration() { const { currentTime, duration } = this.state; @@ -224,7 +221,7 @@ class MessageAudio extends React.Component<IMessageAudioProps, IMessageAudioStat togglePlayPause = () => { const { paused } = this.state; this.setState({ paused: !paused }, this.playPause); - } + }; playPause = async () => { const { paused } = this.state; @@ -238,7 +235,7 @@ class MessageAudio extends React.Component<IMessageAudioProps, IMessageAudioStat } catch { // Do nothing } - } + }; onValueChange = async (value: any) => { try { @@ -247,15 +244,11 @@ class MessageAudio extends React.Component<IMessageAudioProps, IMessageAudioStat } catch { // Do nothing } - } + }; render() { - const { - loading, paused, currentTime, duration, - } = this.state; - const { - file, getCustomEmoji, theme, scale, - } = this.props; + const { loading, paused, currentTime, duration } = this.state; + const { file, getCustomEmoji, theme, scale } = this.props; const { description } = file; const { baseUrl, user } = this.context; @@ -268,9 +261,8 @@ class MessageAudio extends React.Component<IMessageAudioProps, IMessageAudioStat <View style={[ styles.audioContainer, - { backgroundColor: themes[theme].chatComponentBackground, borderColor: themes[theme].borderColor }, - ]} - > + { backgroundColor: themes[theme].chatComponentBackground, borderColor: themes[theme].borderColor } + ]}> <Button loading={loading} paused={paused} onPress={this.togglePlayPause} theme={theme} /> <Slider style={styles.slider} diff --git a/app/containers/message/Blocks.ts b/app/containers/message/Blocks.ts index 0c2868b487..ef2f422c8a 100644 --- a/app/containers/message/Blocks.ts +++ b/app/containers/message/Blocks.ts @@ -15,12 +15,13 @@ const Blocks = React.memo(({ blocks, id: mid, rid, blockAction }: IMessageBlocks value, blockId, rid, - mid, + mid }); }, appId, - rid, - }), { blocks }, + rid + }), + { blocks } ); } return null; diff --git a/app/containers/message/Broadcast.tsx b/app/containers/message/Broadcast.tsx index 2337c2e97d..56bd0da7ce 100644 --- a/app/containers/message/Broadcast.tsx +++ b/app/containers/message/Broadcast.tsx @@ -21,8 +21,7 @@ const Broadcast = React.memo(({ author, broadcast, theme }: IMessageBroadcast) = background={Touchable.Ripple(themes[theme].bannerBackground)} style={[styles.button, { backgroundColor: themes[theme].tintColor }]} hitSlop={BUTTON_HIT_SLOP} - testID='message-broadcast-reply' - > + testID='message-broadcast-reply'> <> <CustomIcon name='arrow-back' size={20} style={styles.buttonIcon} color={themes[theme].buttonText} /> <Text style={[styles.buttonText, { color: themes[theme].buttonText }]}>{I18n.t('Reply')}</Text> diff --git a/app/containers/message/CallButton.tsx b/app/containers/message/CallButton.tsx index 1d04973f5d..7e908bf5f7 100644 --- a/app/containers/message/CallButton.tsx +++ b/app/containers/message/CallButton.tsx @@ -15,8 +15,7 @@ const CallButton = React.memo(({ theme, callJitsi }: IMessageCallButton) => ( onPress={callJitsi} background={Touchable.Ripple(themes[theme].bannerBackground)} style={[styles.button, { backgroundColor: themes[theme].tintColor }]} - hitSlop={BUTTON_HIT_SLOP} - > + hitSlop={BUTTON_HIT_SLOP}> <> <CustomIcon name='camera' size={16} style={styles.buttonIcon} color={themes[theme].buttonText} /> <Text style={[styles.buttonText, { color: themes[theme].buttonText }]}>{I18n.t('Click_to_join')}</Text> diff --git a/app/containers/message/Content.tsx b/app/containers/message/Content.tsx index f7b59e8609..ee3b8c9311 100644 --- a/app/containers/message/Content.tsx +++ b/app/containers/message/Content.tsx @@ -13,112 +13,105 @@ import Encrypted from './Encrypted'; import { E2E_MESSAGE_TYPE } from '../../lib/encryption/constants'; import { IMessageContent } from './interfaces'; -const Content = React.memo((props: IMessageContent) => { - if (props.isInfo) { - // @ts-ignore - const infoMessage = getInfoMessage({ ...props }); - - const renderMessageContent = ( - <Text - style={[styles.textInfo, { color: themes[props.theme].auxiliaryText }]} - accessibilityLabel={infoMessage} - > - {infoMessage} - </Text> - ); +const Content = React.memo( + (props: IMessageContent) => { + if (props.isInfo) { + // @ts-ignore + const infoMessage = getInfoMessage({ ...props }); - if (SYSTEM_MESSAGE_TYPES_WITH_AUTHOR_NAME.includes(props.type)) { - return ( - <Text> - <User {...props} /> {renderMessageContent} + const renderMessageContent = ( + <Text style={[styles.textInfo, { color: themes[props.theme].auxiliaryText }]} accessibilityLabel={infoMessage}> + {infoMessage} </Text> ); - } - return renderMessageContent; - } + if (SYSTEM_MESSAGE_TYPES_WITH_AUTHOR_NAME.includes(props.type)) { + return ( + <Text> + <User {...props} /> {renderMessageContent} + </Text> + ); + } - const isPreview: any = props.tmid && !props.isThreadRoom; - let content = null; + return renderMessageContent; + } - if (props.tmid && !props.msg) { - content = <Text style={[styles.text, { color: themes[props.theme].bodyText }]}>{I18n.t('Sent_an_attachment')}</Text>; - } else if (props.isEncrypted) { - content = <Text style={[styles.textInfo, { color: themes[props.theme].auxiliaryText }]}>{I18n.t('Encrypted_message')}</Text>; - } else { - const { baseUrl, user, onLinkPress } = useContext(MessageContext); - content = ( - // @ts-ignore - <Markdown - msg={props.msg} - baseUrl={baseUrl} - getCustomEmoji={props.getCustomEmoji} - username={user.username} - isEdited={props.isEdited} - numberOfLines={isPreview ? 1 : 0} - preview={isPreview} - channels={props.channels} - mentions={props.mentions} - navToRoomInfo={props.navToRoomInfo} - tmid={props.tmid} - useRealName={props.useRealName} - theme={props.theme} - onLinkPress={onLinkPress} - /> - ); - } + const isPreview: any = props.tmid && !props.isThreadRoom; + let content = null; - // If this is a encrypted message and is not a preview - if (props.type === E2E_MESSAGE_TYPE && !isPreview) { - content = ( - <View style={styles.flex}> - <View style={styles.contentContainer}> - {content} - </View> - <Encrypted - type={props.type} + if (props.tmid && !props.msg) { + content = <Text style={[styles.text, { color: themes[props.theme].bodyText }]}>{I18n.t('Sent_an_attachment')}</Text>; + } else if (props.isEncrypted) { + content = ( + <Text style={[styles.textInfo, { color: themes[props.theme].auxiliaryText }]}>{I18n.t('Encrypted_message')}</Text> + ); + } else { + const { baseUrl, user, onLinkPress } = useContext(MessageContext); + content = ( + // @ts-ignore + <Markdown + msg={props.msg} + baseUrl={baseUrl} + getCustomEmoji={props.getCustomEmoji} + username={user.username} + isEdited={props.isEdited} + numberOfLines={isPreview ? 1 : 0} + preview={isPreview} + channels={props.channels} + mentions={props.mentions} + navToRoomInfo={props.navToRoomInfo} + tmid={props.tmid} + useRealName={props.useRealName} theme={props.theme} + onLinkPress={onLinkPress} /> - </View> - ); - } + ); + } - if (props.isIgnored) { - content = <Text style={[styles.textInfo, { color: themes[props.theme].auxiliaryText }]}>{I18n.t('Message_Ignored')}</Text>; - } + // If this is a encrypted message and is not a preview + if (props.type === E2E_MESSAGE_TYPE && !isPreview) { + content = ( + <View style={styles.flex}> + <View style={styles.contentContainer}>{content}</View> + <Encrypted type={props.type} theme={props.theme} /> + </View> + ); + } - return ( - <View style={props.isTemp && styles.temp}> - {content} - </View> - ); -}, (prevProps, nextProps) => { - if (prevProps.isTemp !== nextProps.isTemp) { - return false; - } - if (prevProps.msg !== nextProps.msg) { - return false; - } - if (prevProps.type !== nextProps.type) { - return false; - } - if (prevProps.theme !== nextProps.theme) { - return false; - } - if (prevProps.isEncrypted !== nextProps.isEncrypted) { - return false; - } - if (prevProps.isIgnored !== nextProps.isIgnored) { - return false; - } - if (!dequal(prevProps.mentions, nextProps.mentions)) { - return false; - } - if (!dequal(prevProps.channels, nextProps.channels)) { - return false; + if (props.isIgnored) { + content = <Text style={[styles.textInfo, { color: themes[props.theme].auxiliaryText }]}>{I18n.t('Message_Ignored')}</Text>; + } + + return <View style={props.isTemp && styles.temp}>{content}</View>; + }, + (prevProps, nextProps) => { + if (prevProps.isTemp !== nextProps.isTemp) { + return false; + } + if (prevProps.msg !== nextProps.msg) { + return false; + } + if (prevProps.type !== nextProps.type) { + return false; + } + if (prevProps.theme !== nextProps.theme) { + return false; + } + if (prevProps.isEncrypted !== nextProps.isEncrypted) { + return false; + } + if (prevProps.isIgnored !== nextProps.isIgnored) { + return false; + } + if (!dequal(prevProps.mentions, nextProps.mentions)) { + return false; + } + if (!dequal(prevProps.channels, nextProps.channels)) { + return false; + } + return true; } - return true; -}); +); Content.displayName = 'MessageContent'; diff --git a/app/containers/message/Discussion.tsx b/app/containers/message/Discussion.tsx index fe9c3eae9f..2f9a782fc6 100644 --- a/app/containers/message/Discussion.tsx +++ b/app/containers/message/Discussion.tsx @@ -12,49 +12,50 @@ import MessageContext from './Context'; import { formatDateThreads } from '../../utils/room'; import { IMessageDiscussion } from './interfaces'; - -const Discussion = React.memo(({ msg, dcount, dlm, theme }: IMessageDiscussion) => { - let time; - if (dlm) { - time = formatDateThreads(dlm); - } - const buttonText = formatMessageCount(dcount, DISCUSSION); - const { onDiscussionPress } = useContext(MessageContext); - return ( - <> - <Text style={[styles.startedDiscussion, { color: themes[theme].auxiliaryText }]}>{I18n.t('Started_discussion')}</Text> - <Text style={[styles.text, { color: themes[theme].bodyText }]}>{msg}</Text> - <View style={styles.buttonContainer}> - <Touchable - onPress={onDiscussionPress} - background={Touchable.Ripple(themes[theme].bannerBackground)} - style={[styles.button, { backgroundColor: themes[theme].tintColor }]} - hitSlop={BUTTON_HIT_SLOP} - > - <> - <CustomIcon name='discussions' size={16} style={styles.buttonIcon} color={themes[theme].buttonText} /> - <Text style={[styles.buttonText, { color: themes[theme].buttonText }]}>{buttonText}</Text> - </> - </Touchable> - <Text style={[styles.time, { color: themes[theme].auxiliaryText }]}>{time}</Text> - </View> - </> - ); -}, (prevProps, nextProps) => { - if (prevProps.msg !== nextProps.msg) { - return false; - } - if (prevProps.dcount !== nextProps.dcount) { - return false; - } - if (prevProps.dlm !== nextProps.dlm) { - return false; - } - if (prevProps.theme !== nextProps.theme) { - return false; +const Discussion = React.memo( + ({ msg, dcount, dlm, theme }: IMessageDiscussion) => { + let time; + if (dlm) { + time = formatDateThreads(dlm); + } + const buttonText = formatMessageCount(dcount, DISCUSSION); + const { onDiscussionPress } = useContext(MessageContext); + return ( + <> + <Text style={[styles.startedDiscussion, { color: themes[theme].auxiliaryText }]}>{I18n.t('Started_discussion')}</Text> + <Text style={[styles.text, { color: themes[theme].bodyText }]}>{msg}</Text> + <View style={styles.buttonContainer}> + <Touchable + onPress={onDiscussionPress} + background={Touchable.Ripple(themes[theme].bannerBackground)} + style={[styles.button, { backgroundColor: themes[theme].tintColor }]} + hitSlop={BUTTON_HIT_SLOP}> + <> + <CustomIcon name='discussions' size={16} style={styles.buttonIcon} color={themes[theme].buttonText} /> + <Text style={[styles.buttonText, { color: themes[theme].buttonText }]}>{buttonText}</Text> + </> + </Touchable> + <Text style={[styles.time, { color: themes[theme].auxiliaryText }]}>{time}</Text> + </View> + </> + ); + }, + (prevProps, nextProps) => { + if (prevProps.msg !== nextProps.msg) { + return false; + } + if (prevProps.dcount !== nextProps.dcount) { + return false; + } + if (prevProps.dlm !== nextProps.dlm) { + return false; + } + if (prevProps.theme !== nextProps.theme) { + return false; + } + return true; } - return true; -}); +); Discussion.displayName = 'MessageDiscussion'; diff --git a/app/containers/message/Emoji.tsx b/app/containers/message/Emoji.tsx index bbb301b6f2..0481c59263 100644 --- a/app/containers/message/Emoji.tsx +++ b/app/containers/message/Emoji.tsx @@ -5,14 +5,17 @@ import shortnameToUnicode from '../../utils/shortnameToUnicode'; import CustomEmoji from '../EmojiPicker/CustomEmoji'; import { IMessageEmoji } from './interfaces'; -const Emoji = React.memo(({ content, baseUrl, standardEmojiStyle, customEmojiStyle, getCustomEmoji }: IMessageEmoji) => { - const parsedContent = content.replace(/^:|:$/g, ''); - const emoji = getCustomEmoji(parsedContent); - if (emoji) { - return <CustomEmoji key={content} baseUrl={baseUrl} style={customEmojiStyle} emoji={emoji} />; - } - return <Text style={standardEmojiStyle}>{ shortnameToUnicode(content) }</Text>; -}, () => true); +const Emoji = React.memo( + ({ content, baseUrl, standardEmojiStyle, customEmojiStyle, getCustomEmoji }: IMessageEmoji) => { + const parsedContent = content.replace(/^:|:$/g, ''); + const emoji = getCustomEmoji(parsedContent); + if (emoji) { + return <CustomEmoji key={content} baseUrl={baseUrl} style={customEmojiStyle} emoji={emoji} />; + } + return <Text style={standardEmojiStyle}>{shortnameToUnicode(content)}</Text>; + }, + () => true +); Emoji.displayName = 'MessageEmoji'; diff --git a/app/containers/message/Image.tsx b/app/containers/message/Image.tsx index 0ec3c3be26..1c72d99560 100644 --- a/app/containers/message/Image.tsx +++ b/app/containers/message/Image.tsx @@ -16,15 +16,15 @@ type TMessageButton = { children: JSX.Element; onPress: Function; theme: string; -} +}; type TMessageImage = { img: string; theme: string; -} +}; interface IMessageImage { - file: { image_url: string; description?: string; }; + file: { image_url: string; description?: string }; imageUrl?: string; showAttachment: Function; theme: string; @@ -34,11 +34,7 @@ interface IMessageImage { const ImageProgress = createImageProgress(FastImage); const Button = React.memo(({ children, onPress, theme }: TMessageButton) => ( - <Touchable - onPress={onPress} - style={styles.imageContainer} - background={Touchable.Ripple(themes[theme].bannerBackground)} - > + <Touchable onPress={onPress} style={styles.imageContainer} background={Touchable.Ripple(themes[theme].bannerBackground)}> {children} </Touchable> )); @@ -50,38 +46,47 @@ export const MessageImage = React.memo(({ img, theme }: TMessageImage) => ( resizeMode={FastImage.resizeMode.cover} indicator={Progress.Pie} indicatorProps={{ - color: themes[theme].actionTintColor, + color: themes[theme].actionTintColor }} /> )); -const ImageContainer = React.memo(({ file, imageUrl, showAttachment, getCustomEmoji, theme }: IMessageImage) => { - const { baseUrl, user } = useContext(MessageContext); - const img = imageUrl || formatAttachmentUrl(file.image_url, user.id, user.token, baseUrl); - if (!img) { - return null; - } +const ImageContainer = React.memo( + ({ file, imageUrl, showAttachment, getCustomEmoji, theme }: IMessageImage) => { + const { baseUrl, user } = useContext(MessageContext); + const img = imageUrl || formatAttachmentUrl(file.image_url, user.id, user.token, baseUrl); + if (!img) { + return null; + } - const onPress = () => showAttachment(file); + const onPress = () => showAttachment(file); + + if (file.description) { + return ( + <Button theme={theme} onPress={onPress}> + <View> + <MessageImage img={img} theme={theme} /> + {/* @ts-ignore*/} + <Markdown + msg={file.description} + baseUrl={baseUrl} + username={user.username} + getCustomEmoji={getCustomEmoji} + theme={theme} + /> + </View> + </Button> + ); + } - if (file.description) { return ( <Button theme={theme} onPress={onPress}> - <View> - <MessageImage img={img} theme={theme} /> - {/* @ts-ignore*/} - <Markdown msg={file.description} baseUrl={baseUrl} username={user.username} getCustomEmoji={getCustomEmoji} theme={theme} /> - </View> + <MessageImage img={img} theme={theme} /> </Button> ); - } - - return ( - <Button theme={theme} onPress={onPress}> - <MessageImage img={img} theme={theme} /> - </Button> - ); -}, (prevProps, nextProps) => dequal(prevProps.file, nextProps.file) && prevProps.theme === nextProps.theme); + }, + (prevProps, nextProps) => dequal(prevProps.file, nextProps.file) && prevProps.theme === nextProps.theme +); ImageContainer.displayName = 'MessageImageContainer'; MessageImage.displayName = 'MessageImage'; diff --git a/app/containers/message/Message.tsx b/app/containers/message/Message.tsx index 36ffc76b0f..95b5491f75 100644 --- a/app/containers/message/Message.tsx +++ b/app/containers/message/Message.tsx @@ -70,12 +70,7 @@ const Message = React.memo((props: IMessage) => { {thread} <View style={styles.flex}> <MessageAvatar small {...props} /> - <View - style={[ - styles.messageContent, - props.isHeader && styles.messageContentWithHeader, - ]} - > + <View style={[styles.messageContent, props.isHeader && styles.messageContentWithHeader]}> <Content {...props} /> </View> </View> @@ -87,19 +82,10 @@ const Message = React.memo((props: IMessage) => { <View style={[styles.container, props.style]}> <View style={styles.flex}> <MessageAvatar {...props} /> - <View - style={[ - styles.messageContent, - props.isHeader && styles.messageContentWithHeader, - ]} - > + <View style={[styles.messageContent, props.isHeader && styles.messageContentWithHeader]}> <MessageInner {...props} /> </View> - <ReadReceipt - isReadReceiptEnabled={props.isReadReceiptEnabled} - unread={props.unread} - theme={props.theme} - /> + <ReadReceipt isReadReceiptEnabled={props.isReadReceiptEnabled} unread={props.unread} theme={props.theme} /> </View> </View> ); @@ -120,8 +106,7 @@ const MessageTouchable = React.memo((props: IMessageTouchable & IMessage) => { onLongPress={onLongPress} onPress={onPress} disabled={(props.isInfo && !props.isThreadReply) || props.archived || props.isTemp} - style={{ backgroundColor: props.highlighted ? themes[props.theme].headerBackground : null }} - > + style={{ backgroundColor: props.highlighted ? themes[props.theme].headerBackground : null }}> <View> <Message {...props} /> </View> diff --git a/app/containers/message/MessageAvatar.tsx b/app/containers/message/MessageAvatar.tsx index 913917c374..3f330d8198 100644 --- a/app/containers/message/MessageAvatar.tsx +++ b/app/containers/message/MessageAvatar.tsx @@ -5,31 +5,31 @@ import styles from './styles'; import MessageContext from './Context'; import { IMessageAvatar } from './interfaces'; -const MessageAvatar = React.memo(({ - isHeader, avatar, author, small, navToRoomInfo, emoji, getCustomEmoji, theme, -}: IMessageAvatar) => { - const { user } = useContext(MessageContext); - if (isHeader && author) { - const navParam = { - t: 'd', - rid: author._id, - }; - return ( - <Avatar - style={small ? styles.avatarSmall : styles.avatar} - text={avatar ? '' : author.username} - size={small ? 20 : 36} - borderRadius={small ? 2 : 4} - onPress={author._id === user.id ? undefined : () => navToRoomInfo(navParam)} - getCustomEmoji={getCustomEmoji} - avatar={avatar} - emoji={emoji} - theme={theme} - /> - ); +const MessageAvatar = React.memo( + ({ isHeader, avatar, author, small, navToRoomInfo, emoji, getCustomEmoji, theme }: IMessageAvatar) => { + const { user } = useContext(MessageContext); + if (isHeader && author) { + const navParam = { + t: 'd', + rid: author._id + }; + return ( + <Avatar + style={small ? styles.avatarSmall : styles.avatar} + text={avatar ? '' : author.username} + size={small ? 20 : 36} + borderRadius={small ? 2 : 4} + onPress={author._id === user.id ? undefined : () => navToRoomInfo(navParam)} + getCustomEmoji={getCustomEmoji} + avatar={avatar} + emoji={emoji} + theme={theme} + /> + ); + } + return null; } - return null; -}); +); MessageAvatar.displayName = 'MessageAvatar'; diff --git a/app/containers/message/MessageError.tsx b/app/containers/message/MessageError.tsx index ed525fd78b..5405f955d5 100644 --- a/app/containers/message/MessageError.tsx +++ b/app/containers/message/MessageError.tsx @@ -12,17 +12,20 @@ interface IMessageError { theme: string; } -const MessageError = React.memo(({ hasError, theme }: IMessageError) => { - if (!hasError) { - return null; - } - const { onErrorPress } = useContext(MessageContext); - return ( - <Touchable onPress={onErrorPress} style={styles.errorButton} hitSlop={BUTTON_HIT_SLOP}> - <CustomIcon name='warning' color={themes[theme].dangerColor} size={18} /> - </Touchable> - ); -}, (prevProps, nextProps) => prevProps.hasError === nextProps.hasError && prevProps.theme === nextProps.theme); +const MessageError = React.memo( + ({ hasError, theme }: IMessageError) => { + if (!hasError) { + return null; + } + const { onErrorPress } = useContext(MessageContext); + return ( + <Touchable onPress={onErrorPress} style={styles.errorButton} hitSlop={BUTTON_HIT_SLOP}> + <CustomIcon name='warning' color={themes[theme].dangerColor} size={18} /> + </Touchable> + ); + }, + (prevProps, nextProps) => prevProps.hasError === nextProps.hasError && prevProps.theme === nextProps.theme +); MessageError.displayName = 'MessageError'; diff --git a/app/containers/message/Reactions.tsx b/app/containers/message/Reactions.tsx index 4b43755372..823c4637d8 100644 --- a/app/containers/message/Reactions.tsx +++ b/app/containers/message/Reactions.tsx @@ -11,7 +11,7 @@ import { withTheme } from '../../theme'; import MessageContext from './Context'; interface IMessageAddReaction { - theme: string + theme: string; } interface IMessageReaction { @@ -38,8 +38,7 @@ const AddReaction = React.memo(({ theme }: IMessageAddReaction) => { testID='message-add-reaction' style={[styles.reactionButton, { backgroundColor: themes[theme].backgroundColor }]} background={Touchable.Ripple(themes[theme].bannerBackground)} - hitSlop={BUTTON_HIT_SLOP} - > + hitSlop={BUTTON_HIT_SLOP}> <View style={[styles.reactionContainer, { borderColor: themes[theme].borderColor }]}> <CustomIcon name='reaction-add' size={21} color={themes[theme].tintColor} /> </View> @@ -55,11 +54,13 @@ const Reaction = React.memo(({ reaction, getCustomEmoji, theme }: IMessageReacti onPress={() => onReactionPress(reaction.emoji)} onLongPress={onReactionLongPress} key={reaction.emoji} - testID={`message-reaction-${ reaction.emoji }`} - style={[styles.reactionButton, { backgroundColor: reacted ? themes[theme].bannerBackground : themes[theme].backgroundColor }]} + testID={`message-reaction-${reaction.emoji}`} + style={[ + styles.reactionButton, + { backgroundColor: reacted ? themes[theme].bannerBackground : themes[theme].backgroundColor } + ]} background={Touchable.Ripple(themes[theme].bannerBackground)} - hitSlop={BUTTON_HIT_SLOP} - > + hitSlop={BUTTON_HIT_SLOP}> <View style={[styles.reactionContainer, { borderColor: reacted ? themes[theme].tintColor : themes[theme].borderColor }]}> <Emoji content={reaction.emoji} @@ -68,7 +69,7 @@ const Reaction = React.memo(({ reaction, getCustomEmoji, theme }: IMessageReacti baseUrl={baseUrl} getCustomEmoji={getCustomEmoji} /> - <Text style={[styles.reactionCount, { color: themes[theme].tintColor }]}>{ reaction.usernames.length }</Text> + <Text style={[styles.reactionCount, { color: themes[theme].tintColor }]}>{reaction.usernames.length}</Text> </View> </Touchable> ); @@ -81,12 +82,7 @@ const Reactions = React.memo(({ reactions, getCustomEmoji, theme }: IMessageReac return ( <View style={styles.reactionsContainer}> {reactions.map((reaction: any) => ( - <Reaction - key={reaction.emoji} - reaction={reaction} - getCustomEmoji={getCustomEmoji} - theme={theme} - /> + <Reaction key={reaction.emoji} reaction={reaction} getCustomEmoji={getCustomEmoji} theme={theme} /> ))} <AddReaction theme={theme} /> </View> diff --git a/app/containers/message/RepliedThread.tsx b/app/containers/message/RepliedThread.tsx index 7a8a3abaaa..454ed852b6 100644 --- a/app/containers/message/RepliedThread.tsx +++ b/app/containers/message/RepliedThread.tsx @@ -8,9 +8,7 @@ import I18n from '../../i18n'; import Markdown from '../markdown'; import { IMessageRepliedThread } from './interfaces'; -const RepliedThread = memo(({ - tmid, tmsg, isHeader, fetchThreadName, id, isEncrypted, theme, -}: IMessageRepliedThread) => { +const RepliedThread = memo(({ tmid, tmsg, isHeader, fetchThreadName, id, isEncrypted, theme }: IMessageRepliedThread) => { if (!tmid || !isHeader) { return null; } @@ -32,7 +30,7 @@ const RepliedThread = memo(({ } return ( - <View style={styles.repliedThread} testID={`message-thread-replied-on-${ msg }`}> + <View style={styles.repliedThread} testID={`message-thread-replied-on-${msg}`}> <CustomIcon name='threads' size={20} style={styles.repliedThreadIcon} color={themes[theme].tintColor} /> {/* @ts-ignore*/} <Markdown @@ -43,11 +41,7 @@ const RepliedThread = memo(({ numberOfLines={1} /> <View style={styles.repliedThreadDisclosure}> - <CustomIcon - name='chevron-right' - color={themes[theme].auxiliaryText} - size={20} - /> + <CustomIcon name='chevron-right' color={themes[theme].auxiliaryText} size={20} /> </View> </View> ); diff --git a/app/containers/message/Reply.tsx b/app/containers/message/Reply.tsx index d1d5565558..f907a336f9 100644 --- a/app/containers/message/Reply.tsx +++ b/app/containers/message/Reply.tsx @@ -20,66 +20,66 @@ const styles = StyleSheet.create({ marginTop: 6, alignSelf: 'flex-start', borderWidth: 1, - borderRadius: 4, + borderRadius: 4 }, attachmentContainer: { flex: 1, borderRadius: 4, flexDirection: 'column', - padding: 15, + padding: 15 }, authorContainer: { flex: 1, flexDirection: 'row', - alignItems: 'center', + alignItems: 'center' }, author: { flex: 1, fontSize: 16, - ...sharedStyles.textMedium, + ...sharedStyles.textMedium }, time: { fontSize: 12, marginLeft: 10, ...sharedStyles.textRegular, - fontWeight: '300', + fontWeight: '300' }, fieldsContainer: { flex: 1, flexWrap: 'wrap', - flexDirection: 'row', + flexDirection: 'row' }, fieldContainer: { flexDirection: 'column', - padding: 10, + padding: 10 }, fieldTitle: { fontSize: 14, - ...sharedStyles.textSemibold, + ...sharedStyles.textSemibold }, fieldValue: { fontSize: 14, - ...sharedStyles.textRegular, + ...sharedStyles.textRegular }, marginTop: { - marginTop: 4, + marginTop: 4 }, marginBottom: { - marginBottom: 4, + marginBottom: 4 }, image: { height: 200, flex: 1, borderTopLeftRadius: 4, borderTopRightRadius: 4, - marginBottom: 1, + marginBottom: 1 }, title: { flex: 1, fontSize: 16, marginBottom: 3, - ...sharedStyles.textMedium, - }, + ...sharedStyles.textMedium + } }); interface IMessageReplyAttachment { @@ -100,13 +100,13 @@ interface IMessageReplyAttachment { } interface IMessageTitle { - attachment: Partial<IMessageReplyAttachment> + attachment: Partial<IMessageReplyAttachment>; timeFormat: string; theme: string; } interface IMessageDescription { - attachment: Partial<IMessageReplyAttachment> + attachment: Partial<IMessageReplyAttachment>; getCustomEmoji: Function; theme: string; } @@ -118,7 +118,7 @@ interface IMessageFields { } interface IMessageReply { - attachment: Partial<IMessageReplyAttachment> + attachment: Partial<IMessageReplyAttachment>; timeFormat: string; index: number; theme: string; @@ -129,153 +129,150 @@ const Title = React.memo(({ attachment, timeFormat, theme }: IMessageTitle) => { const time = attachment.message_link && attachment.ts ? moment(attachment.ts).format(timeFormat) : null; return ( <View style={styles.authorContainer}> - {attachment.author_name ? <Text style={[styles.author, { color: themes[theme].bodyText }]}>{attachment.author_name}</Text> : null} + {attachment.author_name ? ( + <Text style={[styles.author, { color: themes[theme].bodyText }]}>{attachment.author_name}</Text> + ) : null} {attachment.title ? <Text style={[styles.title, { color: themes[theme].bodyText }]}>{attachment.title}</Text> : null} - {time ? <Text style={[styles.time, { color: themes[theme].auxiliaryText }]}>{ time }</Text> : null} + {time ? <Text style={[styles.time, { color: themes[theme].auxiliaryText }]}>{time}</Text> : null} </View> ); }); -const Description = React.memo(({ attachment, getCustomEmoji, theme }: IMessageDescription) => { - const text = attachment.text || attachment.title; - if (!text) { - return null; - } - const { baseUrl, user } = useContext(MessageContext); - return ( - // @ts-ignore - <Markdown - msg={text} - baseUrl={baseUrl} - username={user.username} - getCustomEmoji={getCustomEmoji} - theme={theme} - /> - ); -}, (prevProps, nextProps) => { - if (prevProps.attachment.text !== nextProps.attachment.text) { - return false; - } - if (prevProps.attachment.title !== nextProps.attachment.title) { - return false; - } - if (prevProps.theme !== nextProps.theme) { - return false; - } - return true; -}); - -const UrlImage = React.memo(({ image }: any) => { - if (!image) { - return null; +const Description = React.memo( + ({ attachment, getCustomEmoji, theme }: IMessageDescription) => { + const text = attachment.text || attachment.title; + if (!text) { + return null; + } + const { baseUrl, user } = useContext(MessageContext); + return ( + // @ts-ignore + <Markdown msg={text} baseUrl={baseUrl} username={user.username} getCustomEmoji={getCustomEmoji} theme={theme} /> + ); + }, + (prevProps, nextProps) => { + if (prevProps.attachment.text !== nextProps.attachment.text) { + return false; + } + if (prevProps.attachment.title !== nextProps.attachment.title) { + return false; + } + if (prevProps.theme !== nextProps.theme) { + return false; + } + return true; } - const { baseUrl, user } = useContext(MessageContext); - image = image.includes('http') ? image : `${ baseUrl }/${ image }?rc_uid=${ user.id }&rc_token=${ user.token }`; - return <FastImage source={{ uri: image }} style={styles.image} resizeMode={FastImage.resizeMode.cover} />; -}, (prevProps, nextProps) => prevProps.image === nextProps.image); +); -const Fields = React.memo(({ attachment, theme, getCustomEmoji }: IMessageFields) => { - if (!attachment.fields) { - return null; - } +const UrlImage = React.memo( + ({ image }: any) => { + if (!image) { + return null; + } + const { baseUrl, user } = useContext(MessageContext); + image = image.includes('http') ? image : `${baseUrl}/${image}?rc_uid=${user.id}&rc_token=${user.token}`; + return <FastImage source={{ uri: image }} style={styles.image} resizeMode={FastImage.resizeMode.cover} />; + }, + (prevProps, nextProps) => prevProps.image === nextProps.image +); - const { baseUrl, user } = useContext(MessageContext); - return ( - <View style={styles.fieldsContainer}> - {attachment.fields.map((field) => ( - <View key={field.title} style={[styles.fieldContainer, { width: field.short ? '50%' : '100%' }]}> - <Text style={[styles.fieldTitle, { color: themes[theme].bodyText }]}>{field.title}</Text> - {/* @ts-ignore*/} - <Markdown - msg={field.value} - baseUrl={baseUrl} - username={user.username} - getCustomEmoji={getCustomEmoji} - theme={theme} - /> - </View> - ))} - </View> - ); -}, (prevProps, nextProps) => dequal(prevProps.attachment.fields, nextProps.attachment.fields) && prevProps.theme === nextProps.theme); +const Fields = React.memo( + ({ attachment, theme, getCustomEmoji }: IMessageFields) => { + if (!attachment.fields) { + return null; + } -const Reply = React.memo(({ attachment, timeFormat, index, getCustomEmoji, theme }: IMessageReply) => { - if (!attachment) { - return null; - } - const { baseUrl, user, jumpToMessage } = useContext(MessageContext); + const { baseUrl, user } = useContext(MessageContext); + return ( + <View style={styles.fieldsContainer}> + {attachment.fields.map(field => ( + <View key={field.title} style={[styles.fieldContainer, { width: field.short ? '50%' : '100%' }]}> + <Text style={[styles.fieldTitle, { color: themes[theme].bodyText }]}>{field.title}</Text> + {/* @ts-ignore*/} + <Markdown + msg={field.value} + baseUrl={baseUrl} + username={user.username} + getCustomEmoji={getCustomEmoji} + theme={theme} + /> + </View> + ))} + </View> + ); + }, + (prevProps, nextProps) => + dequal(prevProps.attachment.fields, nextProps.attachment.fields) && prevProps.theme === nextProps.theme +); - const onPress = () => { - let url = attachment.title_link || attachment.author_link; - if (attachment.message_link) { - return jumpToMessage(attachment.message_link); +const Reply = React.memo( + ({ attachment, timeFormat, index, getCustomEmoji, theme }: IMessageReply) => { + if (!attachment) { + return null; } - if (!url) { - return; - } - if (attachment.type === 'file') { - if (!url.startsWith('http')) { - url = `${ baseUrl }${ url }`; + const { baseUrl, user, jumpToMessage } = useContext(MessageContext); + + const onPress = () => { + let url = attachment.title_link || attachment.author_link; + if (attachment.message_link) { + return jumpToMessage(attachment.message_link); } - url = `${ url }?rc_uid=${ user.id }&rc_token=${ user.token }`; - } - openLink(url, theme); - }; + if (!url) { + return; + } + if (attachment.type === 'file') { + if (!url.startsWith('http')) { + url = `${baseUrl}${url}`; + } + url = `${url}?rc_uid=${user.id}&rc_token=${user.token}`; + } + openLink(url, theme); + }; - let { borderColor, chatComponentBackground: backgroundColor } = themes[theme]; - try { - if (attachment.color) { - backgroundColor = transparentize(attachment.color, 0.80); - borderColor = attachment.color; + let { borderColor, chatComponentBackground: backgroundColor } = themes[theme]; + try { + if (attachment.color) { + backgroundColor = transparentize(attachment.color, 0.8); + borderColor = attachment.color; + } + } catch (e) { + // fallback to default } - } catch (e) { - // fallback to default - } - return ( - <> - <Touchable - onPress={onPress} - style={[ - styles.button, - index > 0 && styles.marginTop, - attachment.description && styles.marginBottom, - { - backgroundColor, borderColor, - }, - ]} - background={Touchable.Ripple(themes[theme].bannerBackground)} - > - <View style={styles.attachmentContainer}> - <Title - attachment={attachment} - timeFormat={timeFormat} - theme={theme} - /> - <UrlImage image={attachment.thumb_url} /> - <Description - attachment={attachment} - getCustomEmoji={getCustomEmoji} - theme={theme} - /> - <Fields - attachment={attachment} - getCustomEmoji={getCustomEmoji} - theme={theme} - /> - </View> - </Touchable> - {/* @ts-ignore*/} - <Markdown - msg={attachment.description!} - baseUrl={baseUrl} - username={user.username} - getCustomEmoji={getCustomEmoji} - theme={theme} - /> - </> - ); -}, (prevProps, nextProps) => dequal(prevProps.attachment, nextProps.attachment) && prevProps.theme === nextProps.theme); + return ( + <> + <Touchable + onPress={onPress} + style={[ + styles.button, + index > 0 && styles.marginTop, + attachment.description && styles.marginBottom, + { + backgroundColor, + borderColor + } + ]} + background={Touchable.Ripple(themes[theme].bannerBackground)}> + <View style={styles.attachmentContainer}> + <Title attachment={attachment} timeFormat={timeFormat} theme={theme} /> + <UrlImage image={attachment.thumb_url} /> + <Description attachment={attachment} getCustomEmoji={getCustomEmoji} theme={theme} /> + <Fields attachment={attachment} getCustomEmoji={getCustomEmoji} theme={theme} /> + </View> + </Touchable> + {/* @ts-ignore*/} + <Markdown + msg={attachment.description!} + baseUrl={baseUrl} + username={user.username} + getCustomEmoji={getCustomEmoji} + theme={theme} + /> + </> + ); + }, + (prevProps, nextProps) => dequal(prevProps.attachment, nextProps.attachment) && prevProps.theme === nextProps.theme +); Reply.displayName = 'MessageReply'; Title.displayName = 'MessageReplyTitle'; diff --git a/app/containers/message/Thread.tsx b/app/containers/message/Thread.tsx index c66996d10d..16ed35a4bf 100644 --- a/app/containers/message/Thread.tsx +++ b/app/containers/message/Thread.tsx @@ -8,45 +8,43 @@ import ThreadDetails from '../ThreadDetails'; import I18n from '../../i18n'; import { IMessageThread } from './interfaces'; -const Thread = React.memo(({ msg, tcount, tlm, isThreadRoom, theme, id }: IMessageThread) => { - if (!tlm || isThreadRoom || tcount === 0) { - return null; - } +const Thread = React.memo( + ({ msg, tcount, tlm, isThreadRoom, theme, id }: IMessageThread) => { + if (!tlm || isThreadRoom || tcount === 0) { + return null; + } - const { - threadBadgeColor, toggleFollowThread, user, replies, - } = useContext(MessageContext); - return ( - <View style={styles.buttonContainer}> - <View - style={[styles.button, { backgroundColor: themes[theme].tintColor }]} - testID={`message-thread-button-${ msg }`} - > - <Text style={[styles.buttonText, { color: themes[theme].buttonText }]}>{I18n.t('Reply')}</Text> + const { threadBadgeColor, toggleFollowThread, user, replies } = useContext(MessageContext); + return ( + <View style={styles.buttonContainer}> + <View style={[styles.button, { backgroundColor: themes[theme].tintColor }]} testID={`message-thread-button-${msg}`}> + <Text style={[styles.buttonText, { color: themes[theme].buttonText }]}>{I18n.t('Reply')}</Text> + </View> + <ThreadDetails + item={{ + tcount, + replies, + tlm, + id + }} + user={user} + badgeColor={threadBadgeColor} + toggleFollowThread={toggleFollowThread} + style={styles.threadDetails} + /> </View> - <ThreadDetails - item={{ - tcount, - replies, - tlm, - id, - }} - user={user} - badgeColor={threadBadgeColor} - toggleFollowThread={toggleFollowThread} - style={styles.threadDetails} - /> - </View> - ); -}, (prevProps, nextProps) => { - if (prevProps.tcount !== nextProps.tcount) { - return false; - } - if (prevProps.theme !== nextProps.theme) { - return false; + ); + }, + (prevProps, nextProps) => { + if (prevProps.tcount !== nextProps.tcount) { + return false; + } + if (prevProps.theme !== nextProps.theme) { + return false; + } + return true; } - return true; -}); +); Thread.displayName = 'MessageThread'; diff --git a/app/containers/message/Touchable.tsx b/app/containers/message/Touchable.tsx index 5a5547b650..6bab16bec3 100644 --- a/app/containers/message/Touchable.tsx +++ b/app/containers/message/Touchable.tsx @@ -7,10 +7,7 @@ const RCTouchable: any = React.memo(({ children, ...props }: any) => { const { onLongPress } = useContext(MessageContext); return ( - <Touchable - onLongPress={onLongPress} - {...props} - > + <Touchable onLongPress={onLongPress} {...props}> {children} </Touchable> ); diff --git a/app/containers/message/Urls.tsx b/app/containers/message/Urls.tsx index 4591c780bc..f847fa1465 100644 --- a/app/containers/message/Urls.tsx +++ b/app/containers/message/Urls.tsx @@ -15,38 +15,38 @@ import MessageContext from './Context'; const styles = StyleSheet.create({ button: { - marginTop: 6, + marginTop: 6 }, container: { flex: 1, flexDirection: 'column', borderRadius: 4, - borderWidth: 1, + borderWidth: 1 }, textContainer: { flex: 1, flexDirection: 'column', padding: 15, justifyContent: 'flex-start', - alignItems: 'flex-start', + alignItems: 'flex-start' }, title: { fontSize: 16, - ...sharedStyles.textMedium, + ...sharedStyles.textMedium }, description: { fontSize: 16, - ...sharedStyles.textRegular, + ...sharedStyles.textRegular }, marginTop: { - marginTop: 4, + marginTop: 4 }, image: { width: '100%', height: 150, borderTopLeftRadius: 4, - borderTopRightRadius: 4, - }, + borderTopRightRadius: 4 + } }); interface IMessageUrlContent { @@ -72,77 +72,94 @@ interface IMessageUrls { theme: string; } -const UrlImage = React.memo(({ image }: {image: string}) => { - if (!image) { - return null; - } - const { baseUrl, user } = useContext(MessageContext); - image = image.includes('http') ? image : `${ baseUrl }/${ image }?rc_uid=${ user.id }&rc_token=${ user.token }`; - return <FastImage source={{ uri: image }} style={styles.image} resizeMode={FastImage.resizeMode.cover} />; -}, (prevProps, nextProps) => prevProps.image === nextProps.image); +const UrlImage = React.memo( + ({ image }: { image: string }) => { + if (!image) { + return null; + } + const { baseUrl, user } = useContext(MessageContext); + image = image.includes('http') ? image : `${baseUrl}/${image}?rc_uid=${user.id}&rc_token=${user.token}`; + return <FastImage source={{ uri: image }} style={styles.image} resizeMode={FastImage.resizeMode.cover} />; + }, + (prevProps, nextProps) => prevProps.image === nextProps.image +); -const UrlContent = React.memo(({ title, description, theme }: IMessageUrlContent) => ( - <View style={styles.textContainer}> - {title ? <Text style={[styles.title, { color: themes[theme].tintColor }]} numberOfLines={2}>{title}</Text> : null} - {description ? <Text style={[styles.description, { color: themes[theme].auxiliaryText }]} numberOfLines={2}>{description}</Text> : null} - </View> -), (prevProps, nextProps) => { - if (prevProps.title !== nextProps.title) { - return false; - } - if (prevProps.description !== nextProps.description) { - return false; - } - if (prevProps.theme !== nextProps.theme) { - return false; +const UrlContent = React.memo( + ({ title, description, theme }: IMessageUrlContent) => ( + <View style={styles.textContainer}> + {title ? ( + <Text style={[styles.title, { color: themes[theme].tintColor }]} numberOfLines={2}> + {title} + </Text> + ) : null} + {description ? ( + <Text style={[styles.description, { color: themes[theme].auxiliaryText }]} numberOfLines={2}> + {description} + </Text> + ) : null} + </View> + ), + (prevProps, nextProps) => { + if (prevProps.title !== nextProps.title) { + return false; + } + if (prevProps.description !== nextProps.description) { + return false; + } + if (prevProps.theme !== nextProps.theme) { + return false; + } + return true; } - return true; -}); +); -const Url = React.memo(({ url, index, theme }: IMessageUrl) => { - if (!url || url?.ignoreParse) { - return null; - } +const Url = React.memo( + ({ url, index, theme }: IMessageUrl) => { + if (!url || url?.ignoreParse) { + return null; + } - const onPress = () => openLink(url.url, theme); + const onPress = () => openLink(url.url, theme); - const onLongPress = () => { - Clipboard.setString(url.url); - EventEmitter.emit(LISTENER, { message: I18n.t('Copied_to_clipboard') }); - }; + const onLongPress = () => { + Clipboard.setString(url.url); + EventEmitter.emit(LISTENER, { message: I18n.t('Copied_to_clipboard') }); + }; - return ( - <Touchable - onPress={onPress} - onLongPress={onLongPress} - style={[ - styles.button, - index > 0 && styles.marginTop, - styles.container, - { - backgroundColor: themes[theme].chatComponentBackground, - borderColor: themes[theme].borderColor, - }, - ]} - background={Touchable.Ripple(themes[theme].bannerBackground)} - > - <> - <UrlImage image={url.image} /> - <UrlContent title={url.title} description={url.description} theme={theme} /> - </> - </Touchable> - ); -}, (oldProps, newProps) => dequal(oldProps.url, newProps.url) && oldProps.theme === newProps.theme); + return ( + <Touchable + onPress={onPress} + onLongPress={onLongPress} + style={[ + styles.button, + index > 0 && styles.marginTop, + styles.container, + { + backgroundColor: themes[theme].chatComponentBackground, + borderColor: themes[theme].borderColor + } + ]} + background={Touchable.Ripple(themes[theme].bannerBackground)}> + <> + <UrlImage image={url.image} /> + <UrlContent title={url.title} description={url.description} theme={theme} /> + </> + </Touchable> + ); + }, + (oldProps, newProps) => dequal(oldProps.url, newProps.url) && oldProps.theme === newProps.theme +); -const Urls = React.memo(({ urls, theme }: IMessageUrls) => { - if (!urls || urls.length === 0) { - return null; - } +const Urls = React.memo( + ({ urls, theme }: IMessageUrls) => { + if (!urls || urls.length === 0) { + return null; + } - return urls.map((url: any, index: number) => ( - <Url url={url} key={url.url} index={index} theme={theme} /> - )); -}, (oldProps, newProps) => dequal(oldProps.urls, newProps.urls) && oldProps.theme === newProps.theme); + return urls.map((url: any, index: number) => <Url url={url} key={url.url} index={index} theme={theme} />); + }, + (oldProps, newProps) => dequal(oldProps.urls, newProps.urls) && oldProps.theme === newProps.theme +); UrlImage.displayName = 'MessageUrlImage'; UrlContent.displayName = 'MessageUrlContent'; diff --git a/app/containers/message/User.tsx b/app/containers/message/User.tsx index e80cb612f4..73adf316ea 100644 --- a/app/containers/message/User.tsx +++ b/app/containers/message/User.tsx @@ -15,26 +15,26 @@ const styles = StyleSheet.create({ flex: 1, flexDirection: 'row', justifyContent: 'space-between', - alignItems: 'center', + alignItems: 'center' }, username: { fontSize: 16, lineHeight: 22, - ...sharedStyles.textMedium, + ...sharedStyles.textMedium }, usernameInfoMessage: { fontSize: 16, - ...sharedStyles.textMedium, + ...sharedStyles.textMedium }, titleContainer: { flexShrink: 1, flexDirection: 'row', - alignItems: 'center', + alignItems: 'center' }, alias: { fontSize: 14, - ...sharedStyles.textRegular, - }, + ...sharedStyles.textRegular + } }); interface IMessageUser { @@ -54,59 +54,56 @@ interface IMessageUser { type: string; } -const User = React.memo(({ - isHeader, useRealName, author, alias, ts, timeFormat, hasError, theme, navToRoomInfo, type, ...props -}: IMessageUser) => { - if (isHeader || hasError) { - const navParam = { - t: 'd', - rid: author._id, - }; - const { user } = useContext(MessageContext); - const username = (useRealName && author.name) || author.username; - const aliasUsername = alias ? (<Text style={[styles.alias, { color: themes[theme].auxiliaryText }]}> @{username}</Text>) : null; - const time = moment(ts).format(timeFormat); - const onUserPress = () => navToRoomInfo(navParam); - const isDisabled = author._id === user.id; - - const textContent = ( - <> - {alias || username} - {aliasUsername} - </> - ); +const User = React.memo( + ({ isHeader, useRealName, author, alias, ts, timeFormat, hasError, theme, navToRoomInfo, type, ...props }: IMessageUser) => { + if (isHeader || hasError) { + const navParam = { + t: 'd', + rid: author._id + }; + const { user } = useContext(MessageContext); + const username = (useRealName && author.name) || author.username; + const aliasUsername = alias ? ( + <Text style={[styles.alias, { color: themes[theme].auxiliaryText }]}> @{username}</Text> + ) : null; + const time = moment(ts).format(timeFormat); + const onUserPress = () => navToRoomInfo(navParam); + const isDisabled = author._id === user.id; - if (SYSTEM_MESSAGE_TYPES_WITH_AUTHOR_NAME.includes(type)) { - return ( - <Text - style={[styles.usernameInfoMessage, { color: themes[theme].titleText }]} - onPress={onUserPress} - // @ts-ignore - disabled={isDisabled} - > - {textContent} - </Text> + const textContent = ( + <> + {alias || username} + {aliasUsername} + </> ); - } - return ( - <View style={styles.container}> - <TouchableOpacity - style={styles.titleContainer} - onPress={onUserPress} - disabled={isDisabled} - > - <Text style={[styles.username, { color: themes[theme].titleText }]} numberOfLines={1}> + if (SYSTEM_MESSAGE_TYPES_WITH_AUTHOR_NAME.includes(type)) { + return ( + <Text + style={[styles.usernameInfoMessage, { color: themes[theme].titleText }]} + onPress={onUserPress} + // @ts-ignore + disabled={isDisabled}> {textContent} </Text> - </TouchableOpacity> - <Text style={[messageStyles.time, { color: themes[theme].auxiliaryText }]}>{time}</Text> - { hasError && <MessageError hasError={hasError} theme={theme} {...props} /> } - </View> - ); + ); + } + + return ( + <View style={styles.container}> + <TouchableOpacity style={styles.titleContainer} onPress={onUserPress} disabled={isDisabled}> + <Text style={[styles.username, { color: themes[theme].titleText }]} numberOfLines={1}> + {textContent} + </Text> + </TouchableOpacity> + <Text style={[messageStyles.time, { color: themes[theme].auxiliaryText }]}>{time}</Text> + {hasError && <MessageError hasError={hasError} theme={theme} {...props} />} + </View> + ); + } + return null; } - return null; -}); +); User.displayName = 'MessageUser'; diff --git a/app/containers/message/Video.tsx b/app/containers/message/Video.tsx index 86d74922ba..5a97614124 100644 --- a/app/containers/message/Video.tsx +++ b/app/containers/message/Video.tsx @@ -11,7 +11,7 @@ import { formatAttachmentUrl } from '../../lib/utils'; import { themes } from '../../constants/colors'; import MessageContext from './Context'; -const SUPPORTED_TYPES = ['video/quicktime', 'video/mp4', ...isIOS ? [] : ['video/3gp', 'video/mkv']]; +const SUPPORTED_TYPES = ['video/quicktime', 'video/mp4', ...(isIOS ? [] : ['video/3gp', 'video/mkv'])]; const isTypeSupported = (type: any) => SUPPORTED_TYPES.indexOf(type) !== -1; const styles = StyleSheet.create({ @@ -21,8 +21,8 @@ const styles = StyleSheet.create({ height: 150, marginBottom: 6, alignItems: 'center', - justifyContent: 'center', - }, + justifyContent: 'center' + } }); interface IMessageVideo { @@ -36,36 +36,40 @@ interface IMessageVideo { theme: string; } -const Video = React.memo(({ file, showAttachment, getCustomEmoji, theme }: IMessageVideo) => { - const { baseUrl, user } = useContext(MessageContext); - if (!baseUrl) { - return null; - } - const onPress = () => { - if (isTypeSupported(file.video_type)) { - return showAttachment(file); +const Video = React.memo( + ({ file, showAttachment, getCustomEmoji, theme }: IMessageVideo) => { + const { baseUrl, user } = useContext(MessageContext); + if (!baseUrl) { + return null; } - const uri = formatAttachmentUrl(file.video_url, user.id, user.token, baseUrl); - openLink(uri, theme); - }; + const onPress = () => { + if (isTypeSupported(file.video_type)) { + return showAttachment(file); + } + const uri = formatAttachmentUrl(file.video_url, user.id, user.token, baseUrl); + openLink(uri, theme); + }; - return ( - <> - <Touchable - onPress={onPress} - style={[styles.button, { backgroundColor: themes[theme].videoBackground }]} - background={Touchable.Ripple(themes[theme].bannerBackground)} - > - <CustomIcon - name='play-filled' - size={54} - color={themes[theme].buttonText} + return ( + <> + <Touchable + onPress={onPress} + style={[styles.button, { backgroundColor: themes[theme].videoBackground }]} + background={Touchable.Ripple(themes[theme].bannerBackground)}> + <CustomIcon name='play-filled' size={54} color={themes[theme].buttonText} /> + </Touchable> + {/* @ts-ignore*/} + <Markdown + msg={file.description} + baseUrl={baseUrl} + username={user.username} + getCustomEmoji={getCustomEmoji} + theme={theme} /> - </Touchable> - {/* @ts-ignore*/} - <Markdown msg={file.description} baseUrl={baseUrl} username={user.username} getCustomEmoji={getCustomEmoji} theme={theme} /> - </> - ); -}, (prevProps, nextProps) => dequal(prevProps.file, nextProps.file) && prevProps.theme === nextProps.theme); + </> + ); + }, + (prevProps, nextProps) => dequal(prevProps.file, nextProps.file) && prevProps.theme === nextProps.theme +); export default Video; diff --git a/app/containers/message/index.tsx b/app/containers/message/index.tsx index 5c0a0be771..2847e086ee 100644 --- a/app/containers/message/index.tsx +++ b/app/containers/message/index.tsx @@ -28,7 +28,7 @@ interface IMessageContainerProps { groupable: any; id: any; tmid: any; - status: any + status: any; }; baseUrl: string; Message_GroupingPeriod: number; @@ -84,8 +84,8 @@ class MessageContainer extends React.Component<IMessageContainerProps, any> { archived: false, broadcast: false, isIgnored: false, - theme: 'light', - } + theme: 'light' + }; state = { isManualUnignored: false }; @@ -103,9 +103,7 @@ class MessageContainer extends React.Component<IMessageContainerProps, any> { shouldComponentUpdate(nextProps: any, nextState: any) { const { isManualUnignored } = this.state; - const { - theme, threadBadgeColor, isIgnored, highlighted, - } = this.props; + const { theme, threadBadgeColor, isIgnored, highlighted } = this.props; if (nextProps.theme !== theme) { return true; } @@ -130,23 +128,27 @@ class MessageContainer extends React.Component<IMessageContainerProps, any> { } } - onPress = debounce(() => { - const { onPress } = this.props; - if (this.isIgnored) { - return this.onIgnoredMessagePress(); - } + onPress = debounce( + () => { + const { onPress } = this.props; + if (this.isIgnored) { + return this.onIgnoredMessagePress(); + } - if (onPress) { - return onPress(); - } + if (onPress) { + return onPress(); + } - const { item, isThreadRoom } = this.props; - Keyboard.dismiss(); + const { item, isThreadRoom } = this.props; + Keyboard.dismiss(); - if ((item.tlm || item.tmid) && !isThreadRoom) { - this.onThreadPress(); - } - }, 300, true); + if ((item.tlm || item.tmid) && !isThreadRoom) { + this.onThreadPress(); + } + }, + 300, + true + ); onLongPress = () => { const { archived, onLongPress, item } = this.props; @@ -156,60 +158,60 @@ class MessageContainer extends React.Component<IMessageContainerProps, any> { if (onLongPress) { onLongPress(item); } - } + }; onErrorPress = () => { const { errorActionsShow, item } = this.props; if (errorActionsShow) { errorActionsShow(item); } - } + }; onReactionPress = (emoji: any) => { const { onReactionPress, item } = this.props; if (onReactionPress) { onReactionPress(emoji, item.id); } - } + }; onReactionLongPress = () => { const { onReactionLongPress, item } = this.props; if (onReactionLongPress) { onReactionLongPress(item); } - } + }; onEncryptedPress = () => { const { onEncryptedPress } = this.props; if (onEncryptedPress) { onEncryptedPress(); } - } + }; onDiscussionPress = () => { const { onDiscussionPress, item } = this.props; if (onDiscussionPress) { onDiscussionPress(item); } - } + }; onThreadPress = () => { const { onThreadPress, item } = this.props; if (onThreadPress) { onThreadPress(item); } - } + }; onAnswerButtonPress = (msg: string) => { const { onAnswerButtonPress } = this.props; if (onAnswerButtonPress) { onAnswerButtonPress(msg, undefined, false); } - } + }; onIgnoredMessagePress = () => { this.setState({ isManualUnignored: true }); - } + }; get isHeader() { const { item, previousItem, broadcast, Message_GroupingPeriod } = this.props; @@ -217,13 +219,14 @@ class MessageContainer extends React.Component<IMessageContainerProps, any> { return true; } try { - if (previousItem && ( - (previousItem.ts.toDateString() === item.ts.toDateString()) - && (previousItem.u.username === item.u.username) - && !(previousItem.groupable === false || item.groupable === false || broadcast === true) - && (item.ts - previousItem.ts < Message_GroupingPeriod * 1000) - && (previousItem.tmid === item.tmid) - )) { + if ( + previousItem && + previousItem.ts.toDateString() === item.ts.toDateString() && + previousItem.u.username === item.u.username && + !(previousItem.groupable === false || item.groupable === false || broadcast === true) && + item.ts - previousItem.ts < Message_GroupingPeriod * 1000 && + previousItem.tmid === item.tmid + ) { return false; } return true; @@ -237,7 +240,7 @@ class MessageContainer extends React.Component<IMessageContainerProps, any> { if (isThreadRoom) { return false; } - if (previousItem && item.tmid && (previousItem.tmid !== item.tmid) && (previousItem.id !== item.tmid)) { + if (previousItem && item.tmid && previousItem.tmid !== item.tmid && previousItem.id !== item.tmid) { return true; } return false; @@ -283,14 +286,14 @@ class MessageContainer extends React.Component<IMessageContainerProps, any> { if (reactionInit) { reactionInit(item); } - } + }; replyBroadcast = () => { const { replyBroadcast, item } = this.props; if (replyBroadcast) { replyBroadcast(item); } - } + }; onLinkPress = (link: any) => { const { item, theme, jumpToMessage } = this.props; @@ -299,7 +302,7 @@ class MessageContainer extends React.Component<IMessageContainerProps, any> { return jumpToMessage(link); } openLink(link, theme); - } + }; render() { const { @@ -326,7 +329,7 @@ class MessageContainer extends React.Component<IMessageContainerProps, any> { threadBadgeColor, toggleFollowThread, jumpToMessage, - highlighted, + highlighted } = this.props; const { id, @@ -354,7 +357,7 @@ class MessageContainer extends React.Component<IMessageContainerProps, any> { unread, blocks, autoTranslate: autoTranslateMessage, - replies, + replies } = item; let message = msg; @@ -383,9 +386,8 @@ class MessageContainer extends React.Component<IMessageContainerProps, any> { jumpToMessage, threadBadgeColor, toggleFollowThread, - replies, - }} - > + replies + }}> <Message id={id} msg={message} diff --git a/app/containers/message/interfaces.ts b/app/containers/message/interfaces.ts index ca6a39d010..98a0b003ff 100644 --- a/app/containers/message/interfaces.ts +++ b/app/containers/message/interfaces.ts @@ -8,10 +8,10 @@ export interface IMessageAttachments { export interface IMessageAttachedActions { attachment: { - actions: [], - text: string, - }, - theme: string, + actions: []; + text: string; + }; + theme: string; } export interface IMessageAvatar { @@ -19,7 +19,7 @@ export interface IMessageAvatar { avatar: string; emoji: string; author: { - username: string + username: string; _id: string; }; small?: boolean; @@ -37,10 +37,10 @@ export interface IMessageBlocks { export interface IMessageBroadcast { author: { - _id: string + _id: string; }; broadcast: boolean; - theme: string + theme: string; } export interface IMessageCallButton { @@ -101,7 +101,7 @@ export interface IMessageTouchable { archived: boolean; highlighted: boolean; theme: string; - ts?: any + ts?: any; urls?: any; reactions?: any; alias?: any; @@ -119,8 +119,14 @@ export interface IMessageRepliedThread { isEncrypted: boolean; } -export interface IMessageInner extends IMessageDiscussion, IMessageContent, IMessageCallButton, IMessageBlocks, - IMessageThread, IMessageAttachments, IMessageBroadcast { +export interface IMessageInner + extends IMessageDiscussion, + IMessageContent, + IMessageCallButton, + IMessageBlocks, + IMessageThread, + IMessageAttachments, + IMessageBroadcast { type: string; blocks: []; } diff --git a/app/containers/message/styles.ts b/app/containers/message/styles.ts index e3676f153a..3d4334f7c9 100644 --- a/app/containers/message/styles.ts +++ b/app/containers/message/styles.ts @@ -5,44 +5,44 @@ import { isTablet } from '../../utils/deviceInfo'; export default StyleSheet.create<any>({ root: { - flexDirection: 'row', + flexDirection: 'row' }, container: { paddingVertical: 4, width: '100%', paddingHorizontal: 14, - flexDirection: 'column', + flexDirection: 'column' }, contentContainer: { - flex: 1, + flex: 1 }, messageContent: { flex: 1, - marginLeft: 46, + marginLeft: 46 }, messageContentWithHeader: { - marginLeft: 10, + marginLeft: 10 }, messageContentWithError: { - marginLeft: 0, + marginLeft: 0 }, flex: { - flexDirection: 'row', + flexDirection: 'row' // flex: 1 }, temp: { opacity: 0.3 }, marginTop: { - marginTop: 6, + marginTop: 6 }, reactionsContainer: { flexDirection: 'row', flexWrap: 'wrap', - marginTop: 8, + marginTop: 8 }, reactionButton: { marginRight: 8, marginBottom: 8, - borderRadius: 2, + borderRadius: 2 }, reactionContainer: { flexDirection: 'row', @@ -51,38 +51,38 @@ export default StyleSheet.create<any>({ borderRadius: 2, borderWidth: 1, height: 28, - minWidth: 46.3, + minWidth: 46.3 }, reactionCount: { fontSize: 14, marginLeft: 3, marginRight: 8.5, - ...sharedStyles.textSemibold, + ...sharedStyles.textSemibold }, reactionEmoji: { fontSize: 13, marginLeft: 7, - color: '#ffffff', + color: '#ffffff' }, reactionCustomEmoji: { width: 19, height: 19, - marginLeft: 7, + marginLeft: 7 }, avatar: { - marginTop: 4, + marginTop: 4 }, avatarSmall: { - marginLeft: 16, + marginLeft: 16 }, errorButton: { paddingLeft: 10, - paddingVertical: 5, + paddingVertical: 5 }, buttonContainer: { marginTop: 8, flexDirection: 'row', - alignItems: 'center', + alignItems: 'center' }, button: { paddingHorizontal: 12, @@ -90,19 +90,19 @@ export default StyleSheet.create<any>({ flexDirection: 'row', alignItems: 'center', justifyContent: 'center', - borderRadius: 2, + borderRadius: 2 }, buttonIcon: { - marginRight: 8, + marginRight: 8 }, buttonText: { fontSize: 12, - ...sharedStyles.textSemibold, + ...sharedStyles.textSemibold }, imageContainer: { // flex: 1, flexDirection: 'column', - borderRadius: 4, + borderRadius: 4 }, image: { width: '100%', @@ -110,75 +110,75 @@ export default StyleSheet.create<any>({ minHeight: isTablet ? 300 : 200, borderRadius: 4, borderWidth: 1, - overflow: 'hidden', + overflow: 'hidden' }, imagePressed: { - opacity: 0.5, + opacity: 0.5 }, inlineImage: { width: 300, height: 300, - resizeMode: 'contain', + resizeMode: 'contain' }, text: { fontSize: 16, - ...sharedStyles.textRegular, + ...sharedStyles.textRegular }, textInfo: { fontStyle: 'italic', fontSize: 16, - ...sharedStyles.textRegular, + ...sharedStyles.textRegular }, startedDiscussion: { fontStyle: 'italic', fontSize: 16, marginBottom: 6, - ...sharedStyles.textRegular, + ...sharedStyles.textRegular }, time: { fontSize: 12, marginLeft: 8, - ...sharedStyles.textRegular, + ...sharedStyles.textRegular }, repliedThread: { flexDirection: 'row', // flex: 1, alignItems: 'center', marginTop: 6, - marginBottom: 12, + marginBottom: 12 }, repliedThreadIcon: { marginRight: 10, - marginLeft: 16, + marginLeft: 16 }, repliedThreadName: { fontSize: 16, flex: 1, - ...sharedStyles.textRegular, + ...sharedStyles.textRegular }, repliedThreadDisclosure: { marginLeft: 4, marginRight: 4, alignItems: 'center', - justifyContent: 'center', + justifyContent: 'center' }, threadBadge: { width: 8, height: 8, borderRadius: 4, - marginLeft: 8, + marginLeft: 8 }, threadBell: { - marginLeft: 8, + marginLeft: 8 }, readReceipt: { - lineHeight: 20, + lineHeight: 20 }, encrypted: { - justifyContent: 'center', + justifyContent: 'center' }, threadDetails: { flex: 1, - marginLeft: 12, - }, + marginLeft: 12 + } }); diff --git a/app/containers/message/utils.ts b/app/containers/message/utils.ts index d1e9eedc3f..d82fe25f12 100644 --- a/app/containers/message/utils.ts +++ b/app/containers/message/utils.ts @@ -5,17 +5,20 @@ export const formatMessageCount = (count: number, type: string) => { const discussion = type === DISCUSSION; let text = discussion ? I18n.t('No_messages_yet') : null; if (count === 1) { - text = `${ count } ${ discussion ? I18n.t('message') : I18n.t('reply') }`; + text = `${count} ${discussion ? I18n.t('message') : I18n.t('reply')}`; } else if (count > 1 && count < 1000) { - text = `${ count } ${ discussion ? I18n.t('messages') : I18n.t('replies') }`; + text = `${count} ${discussion ? I18n.t('messages') : I18n.t('replies')}`; } else if (count > 999) { - text = `+999 ${ discussion ? I18n.t('messages') : I18n.t('replies') }`; + text = `+999 ${discussion ? I18n.t('messages') : I18n.t('replies')}`; } return text; }; export const BUTTON_HIT_SLOP = { - top: 4, right: 4, bottom: 4, left: 4, + top: 4, + right: 4, + bottom: 4, + left: 4 }; export const SYSTEM_MESSAGES = [ @@ -39,7 +42,7 @@ export const SYSTEM_MESSAGES = [ 'message_snippeted', 'thread-created', 'room_e2e_enabled', - 'room_e2e_disabled', + 'room_e2e_disabled' ]; export const SYSTEM_MESSAGE_TYPES = { @@ -48,7 +51,7 @@ export const SYSTEM_MESSAGE_TYPES = { MESSAGE_SNIPPETED: 'message_snippeted', USER_JOINED_CHANNEL: 'uj', USER_JOINED_DISCUSSION: 'ut', - USER_LEFT_CHANNEL: 'ul', + USER_LEFT_CHANNEL: 'ul' }; export const SYSTEM_MESSAGE_TYPES_WITH_AUTHOR_NAME = [ @@ -57,7 +60,7 @@ export const SYSTEM_MESSAGE_TYPES_WITH_AUTHOR_NAME = [ SYSTEM_MESSAGE_TYPES.MESSAGE_SNIPPETED, SYSTEM_MESSAGE_TYPES.USER_JOINED_CHANNEL, SYSTEM_MESSAGE_TYPES.USER_JOINED_DISCUSSION, - SYSTEM_MESSAGE_TYPES.USER_LEFT_CHANNEL, + SYSTEM_MESSAGE_TYPES.USER_LEFT_CHANNEL ]; type TInfoMessage = { @@ -65,56 +68,76 @@ type TInfoMessage = { role: string; msg: string; author: { username: string }; -} +}; export const getInfoMessage = ({ type, role, msg, author }: TInfoMessage) => { const { username } = author; if (type === 'rm') { return I18n.t('Message_removed'); - } if (type === 'uj') { + } + if (type === 'uj') { return I18n.t('Has_joined_the_channel'); - } if (type === 'ut') { + } + if (type === 'ut') { return I18n.t('Has_joined_the_conversation'); - } if (type === 'r') { + } + if (type === 'r') { return I18n.t('Room_name_changed', { name: msg, userBy: username }); - } if (type === 'message_pinned') { + } + if (type === 'message_pinned') { return I18n.t('Message_pinned'); - } if (type === 'jitsi_call_started') { + } + if (type === 'jitsi_call_started') { return I18n.t('Started_call', { userBy: username }); - } if (type === 'ul') { + } + if (type === 'ul') { return I18n.t('Has_left_the_channel'); - } if (type === 'ru') { + } + if (type === 'ru') { return I18n.t('User_removed_by', { userRemoved: msg, userBy: username }); - } if (type === 'au') { + } + if (type === 'au') { return I18n.t('User_added_by', { userAdded: msg, userBy: username }); - } if (type === 'user-muted') { + } + if (type === 'user-muted') { return I18n.t('User_muted_by', { userMuted: msg, userBy: username }); - } if (type === 'user-unmuted') { + } + if (type === 'user-unmuted') { return I18n.t('User_unmuted_by', { userUnmuted: msg, userBy: username }); - } if (type === 'subscription-role-added') { - return `${ msg } was set ${ role } by ${ username }`; - } if (type === 'subscription-role-removed') { - return `${ msg } is no longer ${ role } by ${ username }`; - } if (type === 'room_changed_description') { + } + if (type === 'subscription-role-added') { + return `${msg} was set ${role} by ${username}`; + } + if (type === 'subscription-role-removed') { + return `${msg} is no longer ${role} by ${username}`; + } + if (type === 'room_changed_description') { return I18n.t('Room_changed_description', { description: msg, userBy: username }); - } if (type === 'room_changed_announcement') { + } + if (type === 'room_changed_announcement') { return I18n.t('Room_changed_announcement', { announcement: msg, userBy: username }); - } if (type === 'room_changed_topic') { + } + if (type === 'room_changed_topic') { return I18n.t('Room_changed_topic', { topic: msg, userBy: username }); - } if (type === 'room_changed_privacy') { + } + if (type === 'room_changed_privacy') { return I18n.t('Room_changed_privacy', { type: msg, userBy: username }); - } if (type === 'room_changed_avatar') { + } + if (type === 'room_changed_avatar') { return I18n.t('Room_changed_avatar', { userBy: username }); - } if (type === 'message_snippeted') { + } + if (type === 'message_snippeted') { return I18n.t('Created_snippet'); - } if (type === 'room_e2e_disabled') { + } + if (type === 'room_e2e_disabled') { return I18n.t('This_room_encryption_has_been_disabled_by__username_', { username }); - } if (type === 'room_e2e_enabled') { + } + if (type === 'room_e2e_enabled') { return I18n.t('This_room_encryption_has_been_enabled_by__username_', { username }); } return ''; }; -export const getMessageTranslation = (message: {translations: any}, autoTranslateLanguage: string) => { +export const getMessageTranslation = (message: { translations: any }, autoTranslateLanguage: string) => { if (!autoTranslateLanguage) { return null; } diff --git a/app/dimensions.tsx b/app/dimensions.tsx index d8e7a8f540..dc164362a8 100644 --- a/app/dimensions.tsx +++ b/app/dimensions.tsx @@ -7,16 +7,24 @@ export interface IDimensionsContextProps { height?: number; scale: number; fontScale: number; - setDimensions: ({ width, height, scale, fontScale }: { width: number; height: number; scale: number; fontScale: number; }) => void; + setDimensions: ({ + width, + height, + scale, + fontScale + }: { + width: number; + height: number; + scale: number; + fontScale: number; + }) => void; } export const DimensionsContext = React.createContext<Partial<IDimensionsContextProps>>(Dimensions.get('window')); export function withDimensions(Component: any) { const DimensionsComponent = (props: any) => ( - <DimensionsContext.Consumer> - {(contexts) => <Component {...props} {...contexts} />} - </DimensionsContext.Consumer> + <DimensionsContext.Consumer>{contexts => <Component {...props} {...contexts} />}</DimensionsContext.Consumer> ); hoistNonReactStatics(DimensionsComponent, Component); return DimensionsComponent; @@ -26,9 +34,9 @@ export const useDimensions = () => React.useContext(DimensionsContext); export const useOrientation = () => { const { width, height } = React.useContext(DimensionsContext); - const isPortrait = (height)! > (width)!; + const isPortrait = height! > width!; return { isPortrait, - isLandscape: !isPortrait, + isLandscape: !isPortrait }; }; diff --git a/app/ee/omnichannel/containers/OmnichannelStatus.js b/app/ee/omnichannel/containers/OmnichannelStatus.js index 9225616313..82f4e14189 100644 --- a/app/ee/omnichannel/containers/OmnichannelStatus.js +++ b/app/ee/omnichannel/containers/OmnichannelStatus.js @@ -10,9 +10,7 @@ import UnreadBadge from '../../../presentation/UnreadBadge'; import RocketChat from '../../../lib/rocketchat'; import { changeLivechatStatus, isOmnichannelStatusAvailable } from '../lib'; -const OmnichannelStatus = memo(({ - searching, goQueue, theme, queueSize, inquiryEnabled, user -}) => { +const OmnichannelStatus = memo(({ searching, goQueue, theme, queueSize, inquiryEnabled, user }) => { if (searching > 0 || !(RocketChat.isOmnichannelModuleAvailable() && user?.roles?.includes('livechat-agent'))) { return null; } @@ -22,7 +20,7 @@ const OmnichannelStatus = memo(({ setStatus(isOmnichannelStatusAvailable(user)); }, [user.statusLivechat]); - const toggleLivechat = async() => { + const toggleLivechat = async () => { try { setStatus(v => !v); await changeLivechatStatus(); @@ -40,19 +38,8 @@ const OmnichannelStatus = memo(({ onPress={goQueue} right={() => ( <View style={styles.omnichannelRightContainer}> - {inquiryEnabled - ? ( - <UnreadBadge - style={styles.queueIcon} - unread={queueSize} - /> - ) - : null} - <Switch - value={status} - trackColor={SWITCH_TRACK_COLOR} - onValueChange={toggleLivechat} - /> + {inquiryEnabled ? <UnreadBadge style={styles.queueIcon} unread={queueSize} /> : null} + <Switch value={status} trackColor={SWITCH_TRACK_COLOR} onValueChange={toggleLivechat} /> </View> )} /> diff --git a/app/ee/omnichannel/lib/index.js b/app/ee/omnichannel/lib/index.js index 34159926b4..107bc31d01 100644 --- a/app/ee/omnichannel/lib/index.js +++ b/app/ee/omnichannel/lib/index.js @@ -22,10 +22,10 @@ class Omnichannel { EventEmitter.addEventListener('INQUIRY_UNSUBSCRIBE', this.unsubscribeInquiry); } - subscribeInquiry = async() => { + subscribeInquiry = async () => { console.log('[RCRN] Subscribing to inquiry'); this.inquirySub = await subscribeInquiry(); - } + }; unsubscribeInquiry = () => { if (this.inquirySub) { @@ -33,7 +33,7 @@ class Omnichannel { this.inquirySub.stop(); this.inquirySub = null; } - } + }; } // eslint-disable-next-line no-unused-vars diff --git a/app/ee/omnichannel/lib/subscriptions/inquiry.js b/app/ee/omnichannel/lib/subscriptions/inquiry.js index ef2557cd6e..00d3208289 100644 --- a/app/ee/omnichannel/lib/subscriptions/inquiry.js +++ b/app/ee/omnichannel/lib/subscriptions/inquiry.js @@ -1,12 +1,7 @@ import log from '../../../../utils/log'; import store from '../../../../lib/createStore'; import RocketChat from '../../../../lib/rocketchat'; -import { - inquiryQueueAdd, - inquiryQueueRemove, - inquiryQueueUpdate, - inquiryRequest -} from '../../actions/inquiry'; +import { inquiryQueueAdd, inquiryQueueRemove, inquiryQueueUpdate, inquiryRequest } from '../../actions/inquiry'; const removeListener = listener => listener.stop(); @@ -21,7 +16,7 @@ export default function subscribeInquiry() { store.dispatch(inquiryRequest()); }; - const handleQueueMessageReceived = (ddpMessage) => { + const handleQueueMessageReceived = ddpMessage => { const [{ type, ...sub }] = ddpMessage.fields.args; // added can be ignored, since it is handled by 'changed' event @@ -69,7 +64,7 @@ export default function subscribeInquiry() { try { const { user } = store.getState().login; - RocketChat.getAgentDepartments(user.id).then((result) => { + RocketChat.getAgentDepartments(user.id).then(result => { if (result.success) { const { departments } = result; @@ -78,9 +73,9 @@ export default function subscribeInquiry() { } const departmentIds = departments.map(({ departmentId }) => departmentId); - departmentIds.forEach((departmentId) => { + departmentIds.forEach(departmentId => { // subscribe to all departments of the agent - RocketChat.subscribe(streamTopic, `department/${ departmentId }`).catch(e => console.log(e)); + RocketChat.subscribe(streamTopic, `department/${departmentId}`).catch(e => console.log(e)); }); } }); diff --git a/app/ee/omnichannel/reducers/inquiry.js b/app/ee/omnichannel/reducers/inquiry.js index 156c9633d7..8c031d55d3 100644 --- a/app/ee/omnichannel/reducers/inquiry.js +++ b/app/ee/omnichannel/reducers/inquiry.js @@ -31,7 +31,7 @@ export default function inquiry(state = initialState, action) { case INQUIRY.QUEUE_UPDATE: return { ...state, - queued: state.queued.map((item) => { + queued: state.queued.map(item => { if (item._id === action.inquiry._id) { return action.inquiry; } diff --git a/app/ee/omnichannel/selectors/inquiry.js b/app/ee/omnichannel/selectors/inquiry.js index baeb09ef89..ada81fd9e7 100644 --- a/app/ee/omnichannel/selectors/inquiry.js +++ b/app/ee/omnichannel/selectors/inquiry.js @@ -2,7 +2,4 @@ import { createSelector } from 'reselect'; const getInquiryQueue = state => state.inquiry.queued; -export const getInquiryQueueSelector = createSelector( - [getInquiryQueue], - queue => queue -); +export const getInquiryQueueSelector = createSelector([getInquiryQueue], queue => queue); diff --git a/app/ee/omnichannel/views/QueueListView.js b/app/ee/omnichannel/views/QueueListView.js index 31c31768f2..d22613445b 100644 --- a/app/ee/omnichannel/views/QueueListView.js +++ b/app/ee/omnichannel/views/QueueListView.js @@ -37,7 +37,7 @@ class QueueListView extends React.Component { options.headerLeft = () => <HeaderButton.CloseModal navigation={navigation} testID='directory-view-close' />; } return options; - } + }; static propTypes = { user: PropTypes.shape({ @@ -52,7 +52,7 @@ class QueueListView extends React.Component { useRealName: PropTypes.bool, navigation: PropTypes.object, theme: PropTypes.string - } + }; shouldComponentUpdate(nextProps) { const { queued } = this.props; @@ -82,19 +82,15 @@ class QueueListView extends React.Component { }); }; - getRoomTitle = item => RocketChat.getRoomTitle(item) + getRoomTitle = item => RocketChat.getRoomTitle(item); - getRoomAvatar = item => RocketChat.getRoomAvatar(item) + getRoomAvatar = item => RocketChat.getRoomAvatar(item); - getUidDirectMessage = room => RocketChat.getUidDirectMessage(room) + getUidDirectMessage = room => RocketChat.getUidDirectMessage(room); renderItem = ({ item }) => { const { - user: { - id: userId, - username, - token - }, + user: { id: userId, username, token }, server, useRealName, theme, @@ -114,7 +110,7 @@ class QueueListView extends React.Component { token={token} baseUrl={server} onPress={this.onPressItem} - testID={`queue-list-view-item-${ item.name }`} + testID={`queue-list-view-item-${item.name}`} width={isMasterDetail ? MAX_SIDEBAR_WIDTH : width} useRealName={useRealName} getRoomTitle={this.getRoomTitle} @@ -123,7 +119,7 @@ class QueueListView extends React.Component { swipeEnabled={false} /> ); - } + }; render() { const { queued, theme } = this.props; diff --git a/app/emojis.ts b/app/emojis.ts index f73a4f79c4..172d15adf7 100644 --- a/app/emojis.ts +++ b/app/emojis.ts @@ -224,7 +224,7 @@ export const emojisByCategory: any = { 'right_facing_fist', 'handshake', 'fingers_crossed', - 'pregnant_woman', + 'pregnant_woman' ], nature: [ 'dog', @@ -387,7 +387,7 @@ export const emojisByCategory: any = { 'rhino', 'wilted_rose', 'shrimp', - 'squid', + 'squid' ], food: [ 'green_apple', @@ -474,7 +474,7 @@ export const emojisByCategory: any = { 'milk', 'peanuts', 'kiwi', - 'pancakes', + 'pancakes' ], activity: [ 'soccer', @@ -546,7 +546,7 @@ export const emojisByCategory: any = { 'first_place', 'second_place', 'third_place', - 'drum', + 'drum' ], travel: [ 'red_car', @@ -667,7 +667,7 @@ export const emojisByCategory: any = { 'shopping_cart', 'scooter', 'motor_scooter', - 'canoe', + 'canoe' ], objects: [ 'watch', @@ -847,7 +847,7 @@ export const emojisByCategory: any = { 'crayon', 'paintbrush', 'mag', - 'mag_right', + 'mag_right' ], symbols: [ '100', @@ -1160,7 +1160,7 @@ export const emojisByCategory: any = { 'regional_indicator_d', 'regional_indicator_c', 'regional_indicator_b', - 'regional_indicator_a', + 'regional_indicator_a' ], flags: [ 'flag_ac', @@ -1401,8 +1401,8 @@ export const emojisByCategory: any = { 'flag_mp', 'flag_sx', 'flag_ss', - 'flag_tc', - ], + 'flag_tc' + ] }; export const emojis = [ @@ -2811,5 +2811,5 @@ export const emojis = [ 'flag_sx', 'flag_ss', 'flag_tc', - 'flag_mf', + 'flag_mf' ]; diff --git a/app/i18n/index.js b/app/i18n/index.js index ebe4307693..aa39cef7c2 100644 --- a/app/i18n/index.js +++ b/app/i18n/index.js @@ -14,55 +14,68 @@ export const LANGUAGES = [ label: 'English', value: 'en', file: () => require('./locales/en.json') - }, { + }, + { label: '简体中文', value: 'zh-CN', file: () => require('./locales/zh-CN.json') - }, { + }, + { label: '繁體中文', value: 'zh-TW', file: () => require('./locales/zh-TW.json') - }, { + }, + { label: 'Deutsch', value: 'de', file: () => require('./locales/de.json') - }, { + }, + { label: 'Español (ES)', value: 'es-ES', file: () => require('./locales/es-ES.json') - }, { + }, + { label: 'Français', value: 'fr', file: () => require('./locales/fr.json') - }, { + }, + { label: 'Português (BR)', value: 'pt-BR', file: () => require('./locales/pt-BR.json') - }, { + }, + { label: 'Português (PT)', value: 'pt-PT', file: () => require('./locales/pt-PT.json') - }, { + }, + { label: 'Russian', value: 'ru', file: () => require('./locales/ru.json') - }, { + }, + { label: 'Nederlands', value: 'nl', file: () => require('./locales/nl.json') - }, { + }, + { label: 'Italiano', value: 'it', file: () => require('./locales/it.json') - }, { + }, + { label: '日本語', value: 'ja', file: () => require('./locales/ja.json') - }, { + }, + { label: 'العربية', value: 'ar', file: () => require('./locales/ar.json') - }, { + }, + { label: 'Türkçe', value: 'tr', file: () => require('./locales/tr.json') @@ -74,7 +87,7 @@ const translations = LANGUAGES.reduce((ret, item) => { return ret; }, {}); -export const setLanguage = (l) => { +export const setLanguage = l => { if (!l) { return; } diff --git a/app/i18n/isRTL.js b/app/i18n/isRTL.js index 89cac3ac7d..0f145ca14d 100644 --- a/app/i18n/isRTL.js +++ b/app/i18n/isRTL.js @@ -1,16 +1,4 @@ // https://github.com/zoontek/react-native-localize/blob/master/src/constants.ts#L5 -const USES_RTL_LAYOUT = [ - 'ar', - 'ckb', - 'fa', - 'he', - 'ks', - 'lrc', - 'mzn', - 'ps', - 'ug', - 'ur', - 'yi' -]; +const USES_RTL_LAYOUT = ['ar', 'ckb', 'fa', 'he', 'ks', 'lrc', 'mzn', 'ps', 'ug', 'ur', 'yi']; export const isRTL = locale => USES_RTL_LAYOUT.includes(locale); diff --git a/app/i18n/locales/ar.json b/app/i18n/locales/ar.json index 8b08c047d6..d48c9ccb1f 100644 --- a/app/i18n/locales/ar.json +++ b/app/i18n/locales/ar.json @@ -1,656 +1,656 @@ { - "1_person_reacted": "تفاعل شخص 1", - "1_user": "مستخدم 1", - "error-action-not-allowed": "{{action}} غير مسموح", - "error-application-not-found": "لم يتم العثور على البرنامج", - "error-archived-duplicate-name": "هناك قناة مؤرشفة باسم {{room_name}}", - "error-avatar-invalid-url": "عنوان الصورة الرمزية غير صحيح: {{url}}", - "error-avatar-url-handling": "خطأ في معالجة الصورة الرمزية ({{url}}) للمستخدم {{username}}", - "error-cant-invite-for-direct-room": "لا يمكن دعوة المستخدم في الغرفة المباشرة", - "error-could-not-change-email": "تعذر تغيير البريد الإلكتروني", - "error-could-not-change-name": "تعذر تغيير الاسم", - "error-could-not-change-username": "تعذر تغيير اسم المستخدم", - "error-could-not-change-status": "تعذر تغيير الحالة", - "error-delete-protected-role": "لا يمكن حذف دور محمي", - "error-department-not-found": "القسم غير موجود", - "error-direct-message-file-upload-not-allowed": "مشاركة الملفات غير مسموح في الرسالة المباشرة", - "error-duplicate-channel-name": "القناة {{channel_name}} موجودة مسبقاً", - "error-email-domain-blacklisted": "عنوان اﻹيميل محظور", - "error-email-send-failed": "خطأ في إرسال البريد اﻹلكتروني: {{message}}", - "error-save-image": "خطأ عند حفظ الصورة", - "error-save-video": "خطأ عند حفظ الفيديو", - "error-field-unavailable": "{{field}} مستخدم بالفعل :(", - "error-file-too-large": "حجم الملف كبير جداً", - "error-importer-not-defined": "المستورِد معرف بطريقة غير صحيحة، يجب تحديد نوع الإستيراد", - "error-input-is-not-a-valid-field": "{{input}} غير صالح {{field}}", - "error-invalid-actionlink": "رابط الإجراء غير صالح", - "error-invalid-arguments": "وسائط غير صحيحة", - "error-invalid-asset": "ممتلكات غير صحيحة", - "error-invalid-channel": "قناة غير صحيحة", - "error-invalid-channel-start-with-chars": "قناة غير صحيحة. تبدأ القناة بحرف @ أو #", - "error-invalid-custom-field": "حقل مخصص غير صالح", - "error-invalid-custom-field-name": "اسم الحقل المخصص غير صالح. استخدم الحروف والأرقام والواصلات والشرطات السفلية فقط", - "error-invalid-date": "التاريخ غير صالح", - "error-invalid-description": "الوصف غير صالح", - "error-invalid-domain": "عنوان الموقع غير صالح", - "error-invalid-email": "عنوان البريد اﻹلكتروني غير صالح {{email}}", - "error-invalid-email-address": "عنوان البريد اﻹلكتروني غير صالح", - "error-invalid-file-height": "ارتفاع الملف غير صالح", - "error-invalid-file-type": "نوع الملف غير صالح", - "error-invalid-file-width": "عرض الملف غير صالح", - "error-invalid-from-address": "عنوان غير صالح في خانة (من)", - "error-invalid-integration": "تكامل غير صالح", - "error-invalid-message": "رسالة غير صالحة", - "error-invalid-method": "طريقة غير صالحة", - "error-invalid-name": "اسم غير صالح", - "error-invalid-password": "كلمة مرور خاطئة", - "error-invalid-redirectUri": "رابط إعادة توجيه غير صحيح", - "error-invalid-role": "دور غير صالح", - "error-invalid-room": "غرفة غير صالحة", - "error-invalid-room-name": "{{room_name}} اسم الغرفة غير صالح", - "error-invalid-room-type": "{{type}} نوع الغرفة غير صالح", - "error-invalid-settings": "الإعدادات المعطاة غير صالحة", - "error-invalid-subscription": "اشتراك غير صالح", - "error-invalid-token": "الرمز غير صالح", - "error-invalid-triggerWords": "كلمات محفزة غير صالحة", - "error-invalid-urls": "عناوين غير صالحة", - "error-invalid-user": "مستخدم غير صالح", - "error-invalid-username": "اسم المستخدم غير صالح", - "error-invalid-webhook-response": "الرد التلقائي من العنوان استجاب برمز مغاير عن 200", - "error-message-deleting-blocked": "حذف الرسالة محظور", - "error-message-editing-blocked": "تعديل الرسالة محظور", - "error-message-size-exceeded": "حجم الرسالة تجاوز الحد المسموح به (Message_MaxAllowedSize)", - "error-missing-unsubscribe-link": "يجب عليك تقديم رابط [unsubscribe]", - "error-no-tokens-for-this-user": "لا توجد رموز لهذا المستخدم", - "error-not-allowed": "غير مسموح", - "error-not-authorized": "غير مصرح", - "error-push-disabled": "إرسال الإشعارات معطل", - "error-remove-last-owner": "هذا هو المالك الأخير. يرجى تعيين مالك جديد قبل إزالة هذا المالك", - "error-role-in-use": "لا يمكن حذف الدور لأنه قيد الاستخدام", - "error-role-name-required": "اسم الدور مطلوب", - "error-the-field-is-required": "هذا الحقل {{field}} مطلوب", - "error-too-many-requests": "خطأ، تلقينا الكثير من الطلبات. من فضلك خفف السرعة، يجب الانتظار لمدة {{seconds}} ثانية قبل المحاولة مرة أخرى", - "error-user-is-not-activated": "المستخدم غير منشط", - "error-user-has-no-roles": "ليس للمستخدم أدوار", - "error-user-limit-exceeded": "يتجاوز عدد المستخدمين الذين تحاول دعوتهم إلى #channel_name الحد الذي حدده المشرف", - "error-user-not-in-room": "المستخدم ليس في هذه الغرفة", - "error-user-registration-custom-field": "error-user-registration-custom-field", - "error-user-registration-disabled": "التسجيل معطل", - "error-user-registration-secret": "التسجيل مسموح به عبر عنوان الويب السري فقط", - "error-you-are-last-owner": "أنت المالك الأخير. يرجى تعيين مالك جديد قبل مغادرة الغرفة", - "Actions": "الإجراءات", - "activity": "نشاط", - "Activity": "النشاط", - "Add_Reaction": "إضافة تفاعل", - "Add_Server": "إضافة خادم", - "Add_users": "إضافة مستخدمين", - "Admin_Panel": "لوحة الإدارة", - "Agent": "المندوب", - "Alert": "إنذار", - "alert": "إنذار", - "alerts": "الإنذارات", - "All_users_in_the_channel_can_write_new_messages": "يمكن لجميع المستخدمين في القناة كتابة رسائل جديدة", - "A_meaningful_name_for_the_discussion_room": "اسم معبر لغرفة النقاش", - "All": "الكل", - "All_Messages": "كل الرسائل", - "Allow_Reactions": "السماح للتفاعلات", - "Alphabetical": "أبجدي", - "and_more": "وأكثر", - "and": "و", - "announcement": "إعلان", - "Announcement": "إعلان", - "Apply_Your_Certificate": "طبق شهادتك", - "ARCHIVE": "أرشفة", - "archive": "أرشفة", - "are_typing": "يكتب", - "Are_you_sure_question_mark": "هل أنت متأكد؟", - "Are_you_sure_you_want_to_leave_the_room": "متأكد من مغادرة الغرفة {{room}}؟", - "Audio": "صوت", - "Authenticating": "تتم المصادقة", - "Automatic": "تلقائي", - "Auto_Translate": "ترجمة تلقائية", - "Avatar_changed_successfully": "تم تغيير الصورة الرمزية بنجاح!", - "Avatar_Url": "عنوان ويب الصورة الرمزية", - "Away": "غير متواجد", - "Back": "عودة", - "Black": "أسود", - "Block_user": "حظر المستخدم", - "Browser": "المتصفح", - "Broadcast_channel_Description": "يمكن فقط للمستخدمين المصرح لهم كتابة رسائل جديدة، ولكن سيتمكن المستخدمون الآخرون من الرد", - "Broadcast_Channel": "قناة البث", - "Busy": "مشغول", - "By_proceeding_you_are_agreeing": "من خلال المتابعة، أنت توافق على", - "Cancel_editing": "إلغاء التعديل", - "Cancel_recording": "إلغاء التسجيل الصوتي", - "Cancel": "إلغاء", - "changing_avatar": "تغيير الصورة الرمزية", - "creating_channel": "إنشاء قناة", - "creating_invite": "إنشاء دعوة", - "Channel_Name": "اسم القناة", - "Channels": "قنوات", - "Chats": "الرسائل", - "Call_already_ended": "تم انهاء المكالمة بالفعل !", - "Clear_cookies_alert": "هل تريد حذف جميع ملفات تعريف الإرتباط؟", - "Clear_cookies_desc": "هذا الإجراء سيحذف ملفات تعريف الإرتباط الخاصة بتسجيل الدخول مما يسمح بتسجيل الدخول لحسابات أخرى", - "Clear_cookies_yes": "نعم، مسح ملفات الإرتباط", - "Clear_cookies_no": "لا، احتفظ بملفات تعريف الإرتباط", - "Click_to_join": "انقر للانضمام!", - "Close": "إغلاق", - "Close_emoji_selector": "إغلاق محدد الرموز التعبيرية", - "Closing_chat": "إغلاق المحادثة", - "Change_language_loading": "تغيير اللغة", - "Chat_closed_by_agent": "المندوب أغلق المحادثة", - "Choose": "اختر", - "Choose_from_library": "اختر من المكتبة", - "Choose_file": "اختر ملف", - "Choose_where_you_want_links_be_opened": "اختر المكان الذي تريد فتح الروابط فيه", - "Code": "الرمز", - "Code_or_password_invalid": "الرمز أو كلمة المرور خاطئة", - "Collaborative": "تعاونية", - "Confirm": "تأكيد", - "Connect": "اتصال", - "Connected": "متصل", - "connecting_server": "يتم الاتصال بالخادم", - "Connecting": "جار الاتصال...", - "Contact_us": "تواصل معنا", - "Contact_your_server_admin": "اتصل بمسؤول الخادم", - "Continue_with": "متابعة بـ", - "Copied_to_clipboard": "تم النسخ للحافظة!", - "Copy": "نسخ", - "Conversation": "محادثة", - "Permalink": "رابط ثابت", - "Certificate_password": "الرقم السري للشهادة", - "Clear_cache": "امسح ذاكرة التخزين المؤقتة للخادم", - "Clear_cache_loading": "يتم مسح ذاكرة التخزين", - "Whats_the_password_for_your_certificate": "ماهي كلمة المرور للشهادة؟", - "Create_account": "إنشاء حساب", - "Create_Channel": "إنشاء قناة", - "Create_Direct_Messages": "إنشاء رسالة مباشرة", - "Create_Discussion": "إنشاء نقاش", - "Created_snippet": "إنشاء مقتطف", - "Create_a_new_workspace": "إنشاء مساحة عمل جديدة", - "Create": "إنشاء", - "Custom_Status": "حالة مخصصة", - "Dark": "داكن", - "Dark_level": "مستوى السمة الداكنة", - "Default": "افتراضي", - "Default_browser": "المتصفح الأساسي", - "Delete_Room_Warning": "سيؤدي حذف الغرفة إلى حذف جميع الرسائل المنشورة. لا يمكن التراجع بعد الحذف", - "Department": "القسم", - "delete": "حذف", - "Delete": "حذف", - "DELETE": "حذف", - "deleting_room": "حذف الغرفة", - "description": "وصف", - "Description": "وصف", - "Desktop_Alert_info": "هذه الإشعارات ترسل لسطح المكتب", - "Directory": "مجلد", - "Direct_Messages": "رسالة مباشرة", - "Disable_notifications": "أوقف الإشعارات", - "Discussions": "مناقشات", - "Discussion_Desc": "ساهم بإعطاء نظرة عامة لما يجري. عند إنشاء مناقشة يتم إنشاء قناة فرعية وربطها بالقناة المحددة", - "Discussion_name": "اسم النقاش", - "Done": "تم", - "Dont_Have_An_Account": "ليس لديك حساب؟", - "Do_you_have_an_account": "هل لديك حساب؟", - "Do_you_have_a_certificate": "هل لديك شهادة؟", - "Do_you_really_want_to_key_this_room_question_mark": "هل تريد حقاً {{key}} هذه الغرفة؟", - "E2E_How_It_Works_info1": "يمكنك الآن إنشاء مجموعات خاصة ورسائل مباشرة مشفرة. بإمكانك أيضاً تشفير المجموعات الخاصة والرسائل المباشرة الموجودة مسبقاً", - "E2E_How_It_Works_info2": "التشفير يتم بين الطرفيات بمعنى أن المفتاح سيستخدم لتشفير وفك تشفير رسائلك ولن يتم حفظه في الخادم. لذلك يترتب عليك حفظ كلمة المرور هذه في مكان آمن", - "E2E_How_It_Works_info3": "حين الاستمرار سيتم إنشاء كلمة المرور بين الطرفيات", - "E2E_How_It_Works_info4": "بإمكانك أيضاً إنشاء كلمة مرور جديدة لمفتاح التشفير في أي وقت عند دخولك بكلمة المرور الحالية لمفتاح التشفير", - "edit": "تعديل", - "edited": "معدل", - "Edit": "تعديل", - "Edit_Status": "تعديل الحالة", - "Edit_Invite": "تعديل الدعوة", - "End_to_end_encrypted_room": "غرفة مشفرة بين الطرفيات", - "end_to_end_encryption": "تشفير بين الطرفيات", - "Email_Notification_Mode_All": "لكل إشارة أو رسالة مباشرة", - "Email_Notification_Mode_Disabled": "معطل", - "Email_or_password_field_is_empty": "حقل البريد الإلكتروني أو كلمة المرور فارغ", - "Email": "البريد الإلكتروني", - "email": "البريد الإلكتروني", - "Empty_title": "عنوان فارغ", - "Enable_Auto_Translate": "تمكين الترجمة التلقائية", - "Enable_notifications": "تفعيل الإشعارات", - "Encrypted": "مشفر", - "Encrypted_message": "رسالة مشفرة", - "Enter_Your_E2E_Password": "أدخل كلمة المرور بين الطرفيات", - "Enter_Your_Encryption_Password_desc1": "سيمكنك هذا من الوصول لرسائلك المباشرة والمجموعات الخاصة", - "Enter_Your_Encryption_Password_desc2": "يجب إدخال كلمة المرور لتشفير وفك تشفير الرسائل المرسلة", - "Encryption_error_title": "كلمة المرور المشفرة خاطئة", - "Encryption_error_desc": "تعذر قراءة مفتاح التشفير أثناء الاستيراد", - "Everyone_can_access_this_channel": "يمكن للجميع الوصول إلى هذه القناة", - "Error_uploading": "خطأ في الرفع", - "Expiration_Days": "انتهاء (أيام)", - "Favorite": "مفضل", - "Favorites": "مفضلات", - "Files": "ملفات", - "File_description": "وصف الملف", - "File_name": "اسم الملف", - "Finish_recording": "إنهاء التسجيل", - "Following_thread": "متابعة الموضوع", - "For_your_security_you_must_enter_your_current_password_to_continue": "من أجل حمايتك، يجب عليك إدخال كلمة المرور الحالية للمتابعة", - "Forgot_password_If_this_email_is_registered": "إن كان البريد الإلكتروني مسجلاً، فسنرسل تعليمات إعادة تعيين كلمة المرور الخاصة بك. إذا لم تتلق بريداً إلكترونياً قريباً، فيرجى العودة والمحاولة مرة أخرى", - "Forgot_password": "هل نسيت كلمة المرور؟", - "Forgot_Password": "نسيت كلمة المرور", - "Forward": "إعادة توجيه", - "Forward_Chat": "إعادة توجيه المحادثة", - "Forward_to_department": "إعادة توجيه للقسم", - "Forward_to_user": "إعادة توجيه لمستخدم", - "Full_table": "انقر لرؤية الجدول كاملاً", - "Generate_New_Link": "إنشاء رابط جديد", - "Group_by_favorites": "جمع حسب المفضلة", - "Group_by_type": "جمع حسب النوع", - "Hide": "إخفاء", - "Has_joined_the_channel": "انضم إلى القناة", - "Has_joined_the_conversation": "انضم إلى المحادثة", - "Has_left_the_channel": "غادر القناة", - "Hide_System_Messages": "إخفاء رسائل النظام", - "Hide_type_messages": "إخفاء رسائل \"{{type}}\"", - "How_It_Works": "طريقة العمل", - "Message_HideType_uj": "مستخدم انضم", - "Message_HideType_ul": "مستخدم غادر", - "Message_HideType_ru": "مستخدم حُذف", - "Message_HideType_au": "مستخدم أضيف", - "Message_HideType_mute_unmute": "صوت المستخدم كتم / فتح", - "Message_HideType_r": "اسم الغرفة تغير", - "Message_HideType_ut": "مستخدم انضم للمحادثة", - "Message_HideType_wm": "ترحيب", - "Message_HideType_rm": "رسالة حُذفت", - "Message_HideType_subscription_role_added": "تعيين دور جديد", - "Message_HideType_subscription_role_removed": "دور أصبح غير معرف", - "Message_HideType_room_archived": "غرفة أرشفت", - "Message_HideType_room_unarchived": "غرفة ألغيت أرشفتها", - "I_Saved_My_E2E_Password": "قمت بحفظ كلمة المرور الطرفية", - "IP": " عنوان بروتوكول الإنترنت (الآيبي)", - "In_app": "في التطبيق", - "In_App_and_Desktop_Alert_info": "يعرض شعاراً أعلى الشاشة عندما يكون التطبيق مفتوحًا، ويعرض إشعاراً على سطح المكتب", - "Invisible": "غير مرئي", - "Invite": "دعوة", - "is_a_valid_RocketChat_instance": "خادم Rocket.Chat صالح", - "is_not_a_valid_RocketChat_instance": "خادم Rocket.Chat غير صالح", - "is_typing": "يكتب", - "Invalid_or_expired_invite_token": "رمز الدعوة غير صالح أو منتهي الصلاحية", - "Invalid_server_version": "الخادم الذي تحاول الاتصال به يستخدم إصدارا لم يعد مدعوماً: {{currentVersion}}.\n\n النسخ المدعومة تبدأ من {{minVersion}}", - "Invite_Link": "رابط الدعوة", - "Invite_users": "دعوة المستخدمين", - "Join": "انضم", - "Join_our_open_workspace": "انضم لمساحة عملنا المفتوحة", - "Join_your_workspace": "انضم لمساحة عملك", - "Just_invited_people_can_access_this_channel": "يمكن للأشخاص المدعوين فقط الوصول إلى هذه القناة", - "Language": "اللغة", - "last_message": "الرسالة الأخيرة", - "Leave_channel": "مغادرة القناة", - "leaving_room": "مغادرة الغرفة", - "Leave": "مغادرة الغرفة", - "leave": "مغادرة", - "Legal": "قانوني", - "Light": "ساطع", - "License": "رخصة", - "Livechat": "محادثة مباشرة", - "Livechat_edit": "تعديل المحادثة المباشرة", - "Login": "تسجيل الدخول", - "Login_error": "تم رفض تسجيل الدخول الرجاء المحاولة مرة أخرى", - "Login_with": "تسجيل الدخول بـ", - "Logging_out": "تسجيل الخروج", - "Logout": "تسجيل الخروج", - "Max_number_of_uses": "أقصى عدد للاستخدام", - "Max_number_of_users_allowed_is_number": "أقصى عدد للمستخدمين {{maxUsers}}", - "members": "أفراد", - "Members": "أفراد", - "Mentioned_Messages": "الرسائل المذكورة", - "mentioned": "مشار", - "Mentions": "الإشارات", - "Message_accessibility": "الرسالة من {{user}} في {{time}}: {{message}}", - "Message_actions": "إجراءات الرسالة", - "Message_pinned": "الرسالة مثبتة", - "Message_removed": "الرسالة حذفت", - "Message_starred": "الرسالة مميزة", - "Message_unstarred": "الرسالة غير مميزة", - "message": "رسالة", - "messages": "رسائل", - "Message": "الرسالة", - "Messages": "الرسائل", - "Message_Reported": "تم التبليغ على الرسالة", - "Microphone_Permission_Message": "يحتاج Rocket.Chat للوصول إلى الميكروفون الخاص بك حتى تتمكن من إرسال رسالة صوتية", - "Microphone_Permission": "إذن الميكروفون", - "Mute": "كتم", - "muted": "مكتوم", - "My_servers": "الخوادم", - "N_people_reacted": "{{n}} تفاعل الناس", - "N_users": "{{n}} مستخدمين", - "name": "اسم", - "Name": "اسم", - "Navigation_history": "تاريخ التصفح", - "Never": "أبداً", - "New_Message": "رسالة جديدة", - "New_Password": "كلمة مرور جديدة", - "New_Server": "خادم جديد", - "Next": "التالي", - "No_files": "لا ملفات", - "No_limit": "لا حدود", - "No_mentioned_messages": "لا رسائل مشارة", - "No_pinned_messages": "لا رسائل مثبتة", - "No_results_found": "لا نتائج", - "No_starred_messages": "لا رسائل مميزة", - "No_thread_messages": "لا رسائل للموضوع", - "No_label_provided": "لا {{label}} معطى", - "No_Message": "لا رسائل", - "No_messages_yet": "لا رسائل حتى اﻵن", - "No_Reactions": "لا تفاعل", - "No_Read_Receipts": "لا إيصالات قراءة", - "Not_logged": "غير مسجل الدخول", - "Not_RC_Server": "هذا ليس بخادم Rocket.Chat.\n{{contact}}", - "Nothing": "لا شيء", - "Nothing_to_save": "لا شيء للحفظ!", - "Notify_active_in_this_room": "أبلغ المستخدمين النشطين في هذه الغرفة", - "Notify_all_in_this_room": "أبلغ الجميع في الغرفة", - "Notifications": "الإشعارات", - "Notification_Duration": "زمن الإشعار", - "Notification_Preferences": "تفضيلات الإشعار", - "No_available_agents_to_transfer": "المندوبين غير متوفرين حالياً", - "Offline": "غير متصل", - "Oops": "عفوًا!", - "Omnichannel": "القنوات الموحدة", - "Open_Livechats": "محادثات مباشرة جارية", - "Omnichannel_enable_alert": "أنت غير متاح ", - "Onboarding_description": "مساحة عمل هي مساحة لفريقك ومنظمتك للتعاون. اطلب من المشرف العنوان للانضمام أو أنشئ لفريقك", - "Onboarding_join_workspace": "انضم لمساحة عمل", - "Onboarding_subtitle": "ما بعد بيئة فريق تعاونية", - "Onboarding_title": "مرحبا بك في Rocket.Chat", - "Onboarding_join_open_description": "انضم لمساحة عملنا للتواصل مع فريق Rocket.Chat ومع المجتمع", - "Onboarding_agree_terms": "بالمواصلة أنت توافق على Rocket.Chat", - "Onboarding_less_options": "خيارات أقل", - "Onboarding_more_options": "خيارات أكثر", - "Online": "متصل", - "Only_authorized_users_can_write_new_messages": "يمكن للمستخدمين المصرح لهم فقط كتابة رسائل جديدة", - "Open_emoji_selector": "افتح محدد الرموز التعبيرية", - "Open_Source_Communication": "تواصل مفتوح المصدر", - "Open_your_authentication_app_and_enter_the_code": "افتح تطبيق المصادقة الخاص بك وأدخل الرمز", - "OR": "أو", - "OS": "نظام التشغيل", - "Overwrites_the_server_configuration_and_use_room_config": "يمكن للمستخدمين المصرح لهم فقط كتابة رسائل جديدة", - "Password": "كلمة المرور", - "Parent_channel_or_group": "القناة أو المجموعة الأب", - "Permalink_copied_to_clipboard": "تم نسخ الرابط الثابت إلى الحافظة!", - "Phone": "الهاتف", - "Pin": "ثبت", - "Pinned_Messages": "رسائل مثبتة", - "pinned": "مثبت", - "Pinned": "مثبت", - "Please_add_a_comment": "الرجاء إضافة تعليق", - "Please_enter_your_password": "الرجاء إدخال كلمة المرور", - "Please_wait": "الرجاء الإنتظار", - "Preferences": "التفضيلات", - "Preferences_saved": "تم حفظ التفضيلات", - "Privacy_Policy": "سياسة الخصوصية", - "Private_Channel": "قناة خاصة", - "Private": "خاص", - "Processing": "جار معالجة...", - "Profile_saved_successfully": "تم حفظ الملف الشخصي بنجاح!", - "Profile": "الملف الشخصي", - "Public_Channel": "قناة عامة", - "Public": "عام", - "Push_Notifications_Alert_Info": "يتم إرسال هذه الإشعارات إليك عندما لا يكون التطبيق مفتوحاً", - "Quote": "اقتباس", - "Reactions_are_disabled": "التفاعل معطل", - "Reactions_are_enabled": "التفاعل مفعل", - "Reactions": "التفاعلات", - "Read": "قراءة", - "Read_External_Permission_Message": "يحتاج Rocket.chat للوصول إلى الصور والملفات الموجودة على الجهاز", - "Read_External_Permission": "صلاحية قراءة الوسائط", - "Read_Only_Channel": "قناة للقراءة فقط", - "Read_Only": "قراءة فقط", - "Read_Receipt": "قراءة المستلم", - "Receive_Group_Mentions": "تلقي إشارات المجموعة", - "Receive_Group_Mentions_Info": "تلقي @all و @here للإشعارات", - "Register": "تسجيل", - "Repeat_Password": "أعد كلمة المرور", - "Replied_on": "تم الرد على:", - "replies": "ردود", - "reply": "رد", - "Reply": "رد", - "Report": "بلاغ", - "Receive_Notification": "استلام الإشعار", - "Receive_notifications_from": "استلام الإشعارات من {{name}}", - "Resend": "أعد الإرسال", - "Reset_password": "إعادة تعيين كلمة المرور", - "resetting_password": "إعادة تعيين كلمة المرور", - "RESET": "إعادة", - "Return": "العودة", - "Review_app_title": "هل أنت مستمتع بهذا التطبيق؟", - "Review_app_desc": "قم بإعطائنا 5 نجوم {{store}}", - "Review_app_yes": "أكيد!", - "Review_app_no": "لا", - "Review_app_later": "ربما لاحقاً", - "Review_app_unable_store": "لم يتمكن من فتح {{store}}", - "Review_this_app": "تقييم هذا التطبيق", - "Remove": "حذف", - "Roles": "أدوار", - "Room_actions": "إجراءات الغرفة", - "Room_changed_announcement": "تم تغيير إعلان الغرفة إلى: {{announcement}} من قبل {{userBy}}", - "Room_changed_description": "تم تغيير وصف الغرفة إلى: {{description}} من قبل {{userBy}}", - "Room_changed_privacy": "تم تغيير نوع الغرفة إلى: {{type}} من قبل {{userBy}}", - "Room_changed_topic": "تم تغيير موضوع الغرفة إلى: {{topic}} من قبل {{userBy}}", - "Room_Files": "ملفات الغرفة", - "Room_Info_Edit": "تعديل معلومات الغرفة", - "Room_Info": "معلومات الغرفة", - "Room_Members": "أعضاء الغرفة", - "Room_name_changed": "تم تغيير اسم الغرفة إلى: {{name}} من قبل {{userBy}}", - "SAVE": "حفظ", - "Save_Changes": "حفظ التغيرات", - "Save": "حفظ", - "Saved": "تم الحفظ", - "saving_preferences": "حفظ التفضيلات", - "saving_profile": "حفظ الملف الشخصي", - "saving_settings": "حفظ الإعدادات", - "saved_to_gallery": "تم الحفظ في المعرض", - "Save_Your_E2E_Password": "حفظ كلمة المرور بين الطرفين", - "Save_Your_Encryption_Password": "حفظ كلمة المرور المشفرة", - "Save_Your_Encryption_Password_warning": "لا نقوم بتخزين كلمة المرور، الرجاء حفظها لديك في مكان آخر", - "Save_Your_Encryption_Password_info": "لا يمكن إستعادة كلمة المرور في حال فقدانها ولن تستطيع الوصول لرسائلك", - "Search_Messages": "بحث الرسائل", - "Search": "بحث", - "Search_by": "بحث حسب", - "Search_global_users": "بحث عام عن المستخدمين", - "Search_global_users_description": "إذا قمت بالتفعيل، فسيمكنك البحث عن أي مستخدم في شركات أو خوادم أخرى", - "Seconds": "{{second}} ثواني", - "Select_Avatar": "حدد الصورة الرمزية", - "Select_Server": "حدد خادم", - "Select_Users": "حدد مستخدمين", - "Select_a_Channel": "حدد قناة", - "Select_a_Department": "حدد قسم", - "Select_an_option": "حدد خيار", - "Select_a_User": "حدد مستخدم", - "Send": "إرسال", - "Send_audio_message": "إرسال رسالة صوتية", - "Send_crash_report": "إرسال تقرير الأعطال", - "Send_message": "إرسال الرسالة", - "Send_me_the_code_again": "أرسل الرمز مرة أخرى", - "Send_to": "إرسال إلى...", - "Sending_to": "يتم الإرسال إلى", - "Sent_an_attachment": "تم إرسال المرفق", - "Server": "سرفر", - "Servers": "سرفرات", - "Server_version": "نسخة الخادم: {{version}}", - "Set_username_subtitle": "يتم استخدام اسم المستخدم للسماح للآخرين بذكرك في الرسائل", - "Set_custom_status": "حدد حالة خاصة", - "Set_status": "حدد حالة", - "Status_saved_successfully": "تم حفظ الحالة بنجاح!", - "Settings": "الإعدادات", - "Settings_succesfully_changed": "تم تعديل الإعدادات بنجاح!", - "Share": "مشاركة", - "Share_Link": "مشاركة رابط", - "Share_this_app": "مشاركة هذا البرنامج", - "Show_more": "إظهار أكثر..", - "Show_Unread_Counter": "عرض عدد الرسائل غير المقروءة", - "Show_Unread_Counter_Info": "يتم عرض العدد غير المقروء كشارة على يمين القناة في القائمة", - "Sign_in_your_server": "تسجيل الدخول إلى الخادم الخاص بك", - "Sign_Up": "تسجيل جديد", - "Some_field_is_invalid_or_empty": "بعض الحقول غير صالحة أو فارغة", - "Sorting_by": "فرز حسب {{key}}", - "Sound": "الصوت", - "Star_room": "تمييز الغرفة", - "Star": "تمييز", - "Starred_Messages": "رسائل مميزة", - "starred": "مميزة", - "Starred": "مميزة", - "Start_of_conversation": "بداية المحادثة", - "Start_a_Discussion": "ابدأ نقاش", - "Started_discussion": "بدأ النقاش", - "Started_call": "أجرى الاتصال {{userBy}}", - "Submit": "إرسال", - "Table": "جدول", - "Tags": "العلامات", - "Take_a_photo": "التقاط صورة", - "Take_a_video": "التقاط فيديو", - "Take_it": "التقط!", - "tap_to_change_status": "انقر لتغيير الحالة", - "Tap_to_view_servers_list": "انقر لعرض قائمة الخوادم", - "Terms_of_Service": " شروط الخدمة ", - "Theme": "سمة", - "The_user_wont_be_able_to_type_in_roomName": "المستخدم لن يتمكن من الكتابة في {{roomName}}", - "The_user_will_be_able_to_type_in_roomName": "المستخدم سيتمكن من الكتابة في {{roomName}}", - "There_was_an_error_while_action": "حدث خطأ أثناء {{action}}!", - "This_room_is_blocked": "هذه الغرفة محظورة", - "This_room_is_read_only": "هذه الغرفة للقراءة فقط", - "Thread": "موضوع", - "Threads": "مواضيع", - "Timezone": "المنطقة الزمنية", - "To": "إلى", - "topic": "عنوان", - "Topic": "عنوان", - "Translate": "ترجمة", - "Try_again": "حاول مجدداً", - "Two_Factor_Authentication": "المصادقة الثنائية", - "Type_the_channel_name_here": "اكتب اسم القناة هنا", - "unarchive": "إلغاء الأرشفة", - "UNARCHIVE": "إلغاء الأرشفة", - "Unblock_user": "إلغاء حظر عن مستخدم", - "Unfavorite": "إزالة من المفضلة", - "Unfollowed_thread": "موضوع غير متابع", - "Unmute": "إلغاء كتم", - "unmuted": "إلغاء كتم", - "Unpin": "إلغاء التثبيت", - "unread_messages": "رسائل غير مقروءة", - "Unread": "غير مقروء", - "Unread_on_top": "غير مقروء في الأعلى", - "Unstar": "إلغاء التمييز", - "Updating": "جار التحديث...", - "Uploading": "جار الرفع", - "Upload_file_question_mark": "رفع الملف؟", - "User": "مستخدم", - "Users": "مستخدمين", - "User_added_by": "مستخدم {{userAdded}} أضيف من قبل {{userBy}}", - "User_Info": "معلومات المستخدم", - "User_has_been_key": "تمت {{key}} المستخدم!", - "User_is_no_longer_role_by_": "تم إزالة الدور {{role}} عن المستخدم {{user}} من قبل {{userBy}}", - "User_muted_by": "المستخدم {{userMuted}} كتم من قبل {{userBy}}", - "User_removed_by": "المستخدم {{userRemoved}} حذف من قبل {{userBy}}", - "User_sent_an_attachment": "{{user}} أرسل مرفقًا", - "User_unmuted_by": "ألغى {{userBy}} الكتم عن {{userUnmuted}}", - "User_was_set_role_by_": "أضيف دور {{role}} للمستخدم {{user}} من قبل {{userBy}}", - "Username_is_empty": "اسم المستخدم فارغ", - "Username": "اسم المستخدم", - "Username_or_email": "اسم المستخدم أو البريد الالكتروني", - "Uses_server_configuration": "يستخدم إعداد الخادم", - "Validating": "يتم التحقق", - "Registration_Succeeded": "تم التسجيل بنجاح", - "Verify": "تحقق", - "Verify_email_title": "تم التسجيل!", - "Verify_email_desc": "لقد أرسلنا إليك بريداً إلكترونياً لتأكيد تسجيلك. إذا لم تتلق البريد الإلكتروني قريباً، فيرجى العودة والمحاولة مرة أخرى", - "Verify_your_email_for_the_code_we_sent": "يرجى تأكيد البريد الإلكتروني عبر الرمز المرسل", - "Video_call": "مكالمة فيديو", - "View_Original": "عرض المحتوى الأصلي", - "Voice_call": "مكالمة صوتية", - "Waiting_for_network": "بانتظار توفر شبكة...", - "Websocket_disabled": "تم تعطيل Websocket لهذا الخادم.\n{{contact}}", - "Welcome": "مرحبا", - "What_are_you_doing_right_now": "ما الذي تفعله حالياً؟", - "Whats_your_2fa": "ما هو رمز التحقق الثنائي؟", - "Without_Servers": "بدون خوادم", - "Workspaces": "مساحات العمل", - "Would_you_like_to_return_the_inquiry": "هل ترغب بالرد على السؤال؟", - "Write_External_Permission_Message": "يحتاج Rocket.Chat للوصول إلى معرض الصور الخاص بك حتى تتمكن من حفظ الصور", - "Write_External_Permission": "إذن معرض", - "Yes": "نعم", - "Yes_action_it": "نعم، {{action}}!", - "Yesterday": "أمس", - "You_are_in_preview_mode": "أنت في وضع المعاينة", - "You_are_offline": "أنت غير متصل", - "You_can_search_using_RegExp_eg": "يمكنك استخدام RegExp. مثال: `/^text$/i`", - "You_colon": "أنت: ", - "you_were_mentioned": "تمت الإشارة إليك", - "You_were_removed_from_channel": "تمت إزالتك من {{channel}}", - "you": "أنت", - "You": "أنت", - "Logged_out_by_server": "لقد تم تسجيل خروجك من قبل الخادم. الرجاد الدخول من جديد", - "You_need_to_access_at_least_one_RocketChat_server_to_share_something": "تحتاج إلى الوصول إلى خادم Rocket.Chat واحد على الأقل لمشاركة شيء ما", - "You_need_to_verifiy_your_email_address_to_get_notications": "يجب تأكيد البريد الإلكتروني حتى تصلك الإشعارات", - "Your_certificate": "شهادتك", - "Your_invite_link_will_expire_after__usesLeft__uses": "سوف تنتهي صلاحية رابط الدعوة الخاص بك بعد {{usesLeft}} استخدامات", - "Your_invite_link_will_expire_on__date__or_after__usesLeft__uses": "ستنتهي صلاحية رابط الدعوة الخاص بك في {{date}} أو بعد {{usesLeft}} استخدامات", - "Your_invite_link_will_expire_on__date__": "ستنتهي صلاحية رابط الدعوة الخاص بك في {{date}}", - "Your_invite_link_will_never_expire": "لن تنتهي صلاحية رابط الدعوة الخاص بك", - "Your_workspace": "مساحة عملك", - "Your_password_is": "كلمة المرور الخاصة بك هي", - "Version_no": "النسخة: {{version}}", - "You_will_not_be_able_to_recover_this_message": "لن تتمكن من استعادة هذه الرسالة!", - "You_will_unset_a_certificate_for_this_server": "ستلغي شهادة هذا الخادم", - "Change_Language": "تغيير اللغة", - "Crash_report_disclaimer": "نحن لا نتتبع محتوى محادثاتك أبداً. يحتوي تقرير الأعطال فقط على المعلومات ذات الصلة لنا من أجل تحديد المشاكل وإصلاحها", - "Type_message": "اكتب رسالة", - "Room_search": "البحث عن الغرف", - "Room_selection": "اختيار الغرفة 1...9", - "Next_room": "الغرفة المجاورة", - "Previous_room": "الغرفة السابقة", - "New_room": "غرفة جديدة", - "Upload_room": "تحميل إلى الغرفة", - "Search_messages": "رسائل البحث", - "Scroll_messages": "تمرير الرسائل", - "Reply_latest": "الرد على الأحدث", - "Reply_in_Thread": "الرد في موضوع", - "Server_selection": "اختيار الخادم", - "Server_selection_numbers": "اختيار الخادم 1...9", - "Add_server": "إضافة خادم", - "New_line": "سطر جديد", - "You_will_be_logged_out_of_this_application": "سيتم تسجيل خروجك من هذا التطبيق.", - "Clear": "مسح", - "This_will_clear_all_your_offline_data": "سيؤدي هذا إلى محو جميع بياناتك في وضع عدم الاتصال.", - "This_will_remove_all_data_from_this_server": "هذا الإجراء يحذف جميع البيانات من هذا السيرفر", - "Mark_unread": "علامة غير مقروء", - "Wait_activation_warning": "يحب تفعيل حسابك من المشرف قبل تسجيل الدخول", - "Screen_lock": "قفل الشاشة", - "Local_authentication_biometry_title": "صادق", - "Local_authentication_biometry_fallback": "استخدم كلمة المرور", - "Local_authentication_unlock_option": "افتح القفل بكلمة المرور", - "Local_authentication_change_passcode": "تغيير كلمة المرور", - "Local_authentication_info": "تنويه: يجب حذف التطبيق عند نسيان كلمة المرور", - "Local_authentication_facial_recognition": "التعرف على الوجه", - "Local_authentication_fingerprint": "البصمة", - "Local_authentication_unlock_with_label": "فتح القفل بـ {{label}}", - "Local_authentication_auto_lock_60": "بعد دقيقة", - "Local_authentication_auto_lock_300": "بعد 5 دقائق", - "Local_authentication_auto_lock_900": "بعد 15 دقيقة", - "Local_authentication_auto_lock_1800": "بعد 30 دقيقة", - "Local_authentication_auto_lock_3600": "بعد ساعة", - "Passcode_enter_title": "أدخل كلمة المرور", - "Passcode_choose_title": "اختر كلمة المرور الجديدة", - "Passcode_choose_confirm_title": "تأكيد كلمة المرور الجديدة", - "Passcode_choose_error": "كلمة المرور غير متطابقة. حاول مجدداً", - "Passcode_choose_force_set": "كلمة المرور مطلوبة من المشرف", - "Passcode_app_locked_title": "التطبيق مقفل", - "Passcode_app_locked_subtitle": "حاول مجدداً بعد {{timeLeft}} ثوان", - "After_seconds_set_by_admin": "بعد {{seconds}} ثوان (حددها المدير)", - "Dont_activate": "لا تقم بالتفعيل الآن", - "Queued_chats": "محادثات في قائمى الانتظار", - "Queue_is_empty": "قائمة الانتظار فارغة", - "Logout_from_other_logged_in_locations": "تسجيل الخروج من الأماكن الأخرى", - "You_will_be_logged_out_from_other_locations": "سيتم تسجيل خروج من الأماكن الأخرى", - "Logged_out_of_other_clients_successfully": "تم تسجيل الخروج من الأماكن الأخرى بنجاح", - "Logout_failed": "فشل تسجيل الخروج!", - "Log_analytics_events": "تحليلات سجل الأحداث", - "invalid-room": "غرفة غير صالحة" -} \ No newline at end of file + "1_person_reacted": "تفاعل شخص 1", + "1_user": "مستخدم 1", + "error-action-not-allowed": "{{action}} غير مسموح", + "error-application-not-found": "لم يتم العثور على البرنامج", + "error-archived-duplicate-name": "هناك قناة مؤرشفة باسم {{room_name}}", + "error-avatar-invalid-url": "عنوان الصورة الرمزية غير صحيح: {{url}}", + "error-avatar-url-handling": "خطأ في معالجة الصورة الرمزية ({{url}}) للمستخدم {{username}}", + "error-cant-invite-for-direct-room": "لا يمكن دعوة المستخدم في الغرفة المباشرة", + "error-could-not-change-email": "تعذر تغيير البريد الإلكتروني", + "error-could-not-change-name": "تعذر تغيير الاسم", + "error-could-not-change-username": "تعذر تغيير اسم المستخدم", + "error-could-not-change-status": "تعذر تغيير الحالة", + "error-delete-protected-role": "لا يمكن حذف دور محمي", + "error-department-not-found": "القسم غير موجود", + "error-direct-message-file-upload-not-allowed": "مشاركة الملفات غير مسموح في الرسالة المباشرة", + "error-duplicate-channel-name": "القناة {{channel_name}} موجودة مسبقاً", + "error-email-domain-blacklisted": "عنوان اﻹيميل محظور", + "error-email-send-failed": "خطأ في إرسال البريد اﻹلكتروني: {{message}}", + "error-save-image": "خطأ عند حفظ الصورة", + "error-save-video": "خطأ عند حفظ الفيديو", + "error-field-unavailable": "{{field}} مستخدم بالفعل :(", + "error-file-too-large": "حجم الملف كبير جداً", + "error-importer-not-defined": "المستورِد معرف بطريقة غير صحيحة، يجب تحديد نوع الإستيراد", + "error-input-is-not-a-valid-field": "{{input}} غير صالح {{field}}", + "error-invalid-actionlink": "رابط الإجراء غير صالح", + "error-invalid-arguments": "وسائط غير صحيحة", + "error-invalid-asset": "ممتلكات غير صحيحة", + "error-invalid-channel": "قناة غير صحيحة", + "error-invalid-channel-start-with-chars": "قناة غير صحيحة. تبدأ القناة بحرف @ أو #", + "error-invalid-custom-field": "حقل مخصص غير صالح", + "error-invalid-custom-field-name": "اسم الحقل المخصص غير صالح. استخدم الحروف والأرقام والواصلات والشرطات السفلية فقط", + "error-invalid-date": "التاريخ غير صالح", + "error-invalid-description": "الوصف غير صالح", + "error-invalid-domain": "عنوان الموقع غير صالح", + "error-invalid-email": "عنوان البريد اﻹلكتروني غير صالح {{email}}", + "error-invalid-email-address": "عنوان البريد اﻹلكتروني غير صالح", + "error-invalid-file-height": "ارتفاع الملف غير صالح", + "error-invalid-file-type": "نوع الملف غير صالح", + "error-invalid-file-width": "عرض الملف غير صالح", + "error-invalid-from-address": "عنوان غير صالح في خانة (من)", + "error-invalid-integration": "تكامل غير صالح", + "error-invalid-message": "رسالة غير صالحة", + "error-invalid-method": "طريقة غير صالحة", + "error-invalid-name": "اسم غير صالح", + "error-invalid-password": "كلمة مرور خاطئة", + "error-invalid-redirectUri": "رابط إعادة توجيه غير صحيح", + "error-invalid-role": "دور غير صالح", + "error-invalid-room": "غرفة غير صالحة", + "error-invalid-room-name": "{{room_name}} اسم الغرفة غير صالح", + "error-invalid-room-type": "{{type}} نوع الغرفة غير صالح", + "error-invalid-settings": "الإعدادات المعطاة غير صالحة", + "error-invalid-subscription": "اشتراك غير صالح", + "error-invalid-token": "الرمز غير صالح", + "error-invalid-triggerWords": "كلمات محفزة غير صالحة", + "error-invalid-urls": "عناوين غير صالحة", + "error-invalid-user": "مستخدم غير صالح", + "error-invalid-username": "اسم المستخدم غير صالح", + "error-invalid-webhook-response": "الرد التلقائي من العنوان استجاب برمز مغاير عن 200", + "error-message-deleting-blocked": "حذف الرسالة محظور", + "error-message-editing-blocked": "تعديل الرسالة محظور", + "error-message-size-exceeded": "حجم الرسالة تجاوز الحد المسموح به (Message_MaxAllowedSize)", + "error-missing-unsubscribe-link": "يجب عليك تقديم رابط [unsubscribe]", + "error-no-tokens-for-this-user": "لا توجد رموز لهذا المستخدم", + "error-not-allowed": "غير مسموح", + "error-not-authorized": "غير مصرح", + "error-push-disabled": "إرسال الإشعارات معطل", + "error-remove-last-owner": "هذا هو المالك الأخير. يرجى تعيين مالك جديد قبل إزالة هذا المالك", + "error-role-in-use": "لا يمكن حذف الدور لأنه قيد الاستخدام", + "error-role-name-required": "اسم الدور مطلوب", + "error-the-field-is-required": "هذا الحقل {{field}} مطلوب", + "error-too-many-requests": "خطأ، تلقينا الكثير من الطلبات. من فضلك خفف السرعة، يجب الانتظار لمدة {{seconds}} ثانية قبل المحاولة مرة أخرى", + "error-user-is-not-activated": "المستخدم غير منشط", + "error-user-has-no-roles": "ليس للمستخدم أدوار", + "error-user-limit-exceeded": "يتجاوز عدد المستخدمين الذين تحاول دعوتهم إلى #channel_name الحد الذي حدده المشرف", + "error-user-not-in-room": "المستخدم ليس في هذه الغرفة", + "error-user-registration-custom-field": "error-user-registration-custom-field", + "error-user-registration-disabled": "التسجيل معطل", + "error-user-registration-secret": "التسجيل مسموح به عبر عنوان الويب السري فقط", + "error-you-are-last-owner": "أنت المالك الأخير. يرجى تعيين مالك جديد قبل مغادرة الغرفة", + "Actions": "الإجراءات", + "activity": "نشاط", + "Activity": "النشاط", + "Add_Reaction": "إضافة تفاعل", + "Add_Server": "إضافة خادم", + "Add_users": "إضافة مستخدمين", + "Admin_Panel": "لوحة الإدارة", + "Agent": "المندوب", + "Alert": "إنذار", + "alert": "إنذار", + "alerts": "الإنذارات", + "All_users_in_the_channel_can_write_new_messages": "يمكن لجميع المستخدمين في القناة كتابة رسائل جديدة", + "A_meaningful_name_for_the_discussion_room": "اسم معبر لغرفة النقاش", + "All": "الكل", + "All_Messages": "كل الرسائل", + "Allow_Reactions": "السماح للتفاعلات", + "Alphabetical": "أبجدي", + "and_more": "وأكثر", + "and": "و", + "announcement": "إعلان", + "Announcement": "إعلان", + "Apply_Your_Certificate": "طبق شهادتك", + "ARCHIVE": "أرشفة", + "archive": "أرشفة", + "are_typing": "يكتب", + "Are_you_sure_question_mark": "هل أنت متأكد؟", + "Are_you_sure_you_want_to_leave_the_room": "متأكد من مغادرة الغرفة {{room}}؟", + "Audio": "صوت", + "Authenticating": "تتم المصادقة", + "Automatic": "تلقائي", + "Auto_Translate": "ترجمة تلقائية", + "Avatar_changed_successfully": "تم تغيير الصورة الرمزية بنجاح!", + "Avatar_Url": "عنوان ويب الصورة الرمزية", + "Away": "غير متواجد", + "Back": "عودة", + "Black": "أسود", + "Block_user": "حظر المستخدم", + "Browser": "المتصفح", + "Broadcast_channel_Description": "يمكن فقط للمستخدمين المصرح لهم كتابة رسائل جديدة، ولكن سيتمكن المستخدمون الآخرون من الرد", + "Broadcast_Channel": "قناة البث", + "Busy": "مشغول", + "By_proceeding_you_are_agreeing": "من خلال المتابعة، أنت توافق على", + "Cancel_editing": "إلغاء التعديل", + "Cancel_recording": "إلغاء التسجيل الصوتي", + "Cancel": "إلغاء", + "changing_avatar": "تغيير الصورة الرمزية", + "creating_channel": "إنشاء قناة", + "creating_invite": "إنشاء دعوة", + "Channel_Name": "اسم القناة", + "Channels": "قنوات", + "Chats": "الرسائل", + "Call_already_ended": "تم انهاء المكالمة بالفعل !", + "Clear_cookies_alert": "هل تريد حذف جميع ملفات تعريف الإرتباط؟", + "Clear_cookies_desc": "هذا الإجراء سيحذف ملفات تعريف الإرتباط الخاصة بتسجيل الدخول مما يسمح بتسجيل الدخول لحسابات أخرى", + "Clear_cookies_yes": "نعم، مسح ملفات الإرتباط", + "Clear_cookies_no": "لا، احتفظ بملفات تعريف الإرتباط", + "Click_to_join": "انقر للانضمام!", + "Close": "إغلاق", + "Close_emoji_selector": "إغلاق محدد الرموز التعبيرية", + "Closing_chat": "إغلاق المحادثة", + "Change_language_loading": "تغيير اللغة", + "Chat_closed_by_agent": "المندوب أغلق المحادثة", + "Choose": "اختر", + "Choose_from_library": "اختر من المكتبة", + "Choose_file": "اختر ملف", + "Choose_where_you_want_links_be_opened": "اختر المكان الذي تريد فتح الروابط فيه", + "Code": "الرمز", + "Code_or_password_invalid": "الرمز أو كلمة المرور خاطئة", + "Collaborative": "تعاونية", + "Confirm": "تأكيد", + "Connect": "اتصال", + "Connected": "متصل", + "connecting_server": "يتم الاتصال بالخادم", + "Connecting": "جار الاتصال...", + "Contact_us": "تواصل معنا", + "Contact_your_server_admin": "اتصل بمسؤول الخادم", + "Continue_with": "متابعة بـ", + "Copied_to_clipboard": "تم النسخ للحافظة!", + "Copy": "نسخ", + "Conversation": "محادثة", + "Permalink": "رابط ثابت", + "Certificate_password": "الرقم السري للشهادة", + "Clear_cache": "امسح ذاكرة التخزين المؤقتة للخادم", + "Clear_cache_loading": "يتم مسح ذاكرة التخزين", + "Whats_the_password_for_your_certificate": "ماهي كلمة المرور للشهادة؟", + "Create_account": "إنشاء حساب", + "Create_Channel": "إنشاء قناة", + "Create_Direct_Messages": "إنشاء رسالة مباشرة", + "Create_Discussion": "إنشاء نقاش", + "Created_snippet": "إنشاء مقتطف", + "Create_a_new_workspace": "إنشاء مساحة عمل جديدة", + "Create": "إنشاء", + "Custom_Status": "حالة مخصصة", + "Dark": "داكن", + "Dark_level": "مستوى السمة الداكنة", + "Default": "افتراضي", + "Default_browser": "المتصفح الأساسي", + "Delete_Room_Warning": "سيؤدي حذف الغرفة إلى حذف جميع الرسائل المنشورة. لا يمكن التراجع بعد الحذف", + "Department": "القسم", + "delete": "حذف", + "Delete": "حذف", + "DELETE": "حذف", + "deleting_room": "حذف الغرفة", + "description": "وصف", + "Description": "وصف", + "Desktop_Alert_info": "هذه الإشعارات ترسل لسطح المكتب", + "Directory": "مجلد", + "Direct_Messages": "رسالة مباشرة", + "Disable_notifications": "أوقف الإشعارات", + "Discussions": "مناقشات", + "Discussion_Desc": "ساهم بإعطاء نظرة عامة لما يجري. عند إنشاء مناقشة يتم إنشاء قناة فرعية وربطها بالقناة المحددة", + "Discussion_name": "اسم النقاش", + "Done": "تم", + "Dont_Have_An_Account": "ليس لديك حساب؟", + "Do_you_have_an_account": "هل لديك حساب؟", + "Do_you_have_a_certificate": "هل لديك شهادة؟", + "Do_you_really_want_to_key_this_room_question_mark": "هل تريد حقاً {{key}} هذه الغرفة؟", + "E2E_How_It_Works_info1": "يمكنك الآن إنشاء مجموعات خاصة ورسائل مباشرة مشفرة. بإمكانك أيضاً تشفير المجموعات الخاصة والرسائل المباشرة الموجودة مسبقاً", + "E2E_How_It_Works_info2": "التشفير يتم بين الطرفيات بمعنى أن المفتاح سيستخدم لتشفير وفك تشفير رسائلك ولن يتم حفظه في الخادم. لذلك يترتب عليك حفظ كلمة المرور هذه في مكان آمن", + "E2E_How_It_Works_info3": "حين الاستمرار سيتم إنشاء كلمة المرور بين الطرفيات", + "E2E_How_It_Works_info4": "بإمكانك أيضاً إنشاء كلمة مرور جديدة لمفتاح التشفير في أي وقت عند دخولك بكلمة المرور الحالية لمفتاح التشفير", + "edit": "تعديل", + "edited": "معدل", + "Edit": "تعديل", + "Edit_Status": "تعديل الحالة", + "Edit_Invite": "تعديل الدعوة", + "End_to_end_encrypted_room": "غرفة مشفرة بين الطرفيات", + "end_to_end_encryption": "تشفير بين الطرفيات", + "Email_Notification_Mode_All": "لكل إشارة أو رسالة مباشرة", + "Email_Notification_Mode_Disabled": "معطل", + "Email_or_password_field_is_empty": "حقل البريد الإلكتروني أو كلمة المرور فارغ", + "Email": "البريد الإلكتروني", + "email": "البريد الإلكتروني", + "Empty_title": "عنوان فارغ", + "Enable_Auto_Translate": "تمكين الترجمة التلقائية", + "Enable_notifications": "تفعيل الإشعارات", + "Encrypted": "مشفر", + "Encrypted_message": "رسالة مشفرة", + "Enter_Your_E2E_Password": "أدخل كلمة المرور بين الطرفيات", + "Enter_Your_Encryption_Password_desc1": "سيمكنك هذا من الوصول لرسائلك المباشرة والمجموعات الخاصة", + "Enter_Your_Encryption_Password_desc2": "يجب إدخال كلمة المرور لتشفير وفك تشفير الرسائل المرسلة", + "Encryption_error_title": "كلمة المرور المشفرة خاطئة", + "Encryption_error_desc": "تعذر قراءة مفتاح التشفير أثناء الاستيراد", + "Everyone_can_access_this_channel": "يمكن للجميع الوصول إلى هذه القناة", + "Error_uploading": "خطأ في الرفع", + "Expiration_Days": "انتهاء (أيام)", + "Favorite": "مفضل", + "Favorites": "مفضلات", + "Files": "ملفات", + "File_description": "وصف الملف", + "File_name": "اسم الملف", + "Finish_recording": "إنهاء التسجيل", + "Following_thread": "متابعة الموضوع", + "For_your_security_you_must_enter_your_current_password_to_continue": "من أجل حمايتك، يجب عليك إدخال كلمة المرور الحالية للمتابعة", + "Forgot_password_If_this_email_is_registered": "إن كان البريد الإلكتروني مسجلاً، فسنرسل تعليمات إعادة تعيين كلمة المرور الخاصة بك. إذا لم تتلق بريداً إلكترونياً قريباً، فيرجى العودة والمحاولة مرة أخرى", + "Forgot_password": "هل نسيت كلمة المرور؟", + "Forgot_Password": "نسيت كلمة المرور", + "Forward": "إعادة توجيه", + "Forward_Chat": "إعادة توجيه المحادثة", + "Forward_to_department": "إعادة توجيه للقسم", + "Forward_to_user": "إعادة توجيه لمستخدم", + "Full_table": "انقر لرؤية الجدول كاملاً", + "Generate_New_Link": "إنشاء رابط جديد", + "Group_by_favorites": "جمع حسب المفضلة", + "Group_by_type": "جمع حسب النوع", + "Hide": "إخفاء", + "Has_joined_the_channel": "انضم إلى القناة", + "Has_joined_the_conversation": "انضم إلى المحادثة", + "Has_left_the_channel": "غادر القناة", + "Hide_System_Messages": "إخفاء رسائل النظام", + "Hide_type_messages": "إخفاء رسائل \"{{type}}\"", + "How_It_Works": "طريقة العمل", + "Message_HideType_uj": "مستخدم انضم", + "Message_HideType_ul": "مستخدم غادر", + "Message_HideType_ru": "مستخدم حُذف", + "Message_HideType_au": "مستخدم أضيف", + "Message_HideType_mute_unmute": "صوت المستخدم كتم / فتح", + "Message_HideType_r": "اسم الغرفة تغير", + "Message_HideType_ut": "مستخدم انضم للمحادثة", + "Message_HideType_wm": "ترحيب", + "Message_HideType_rm": "رسالة حُذفت", + "Message_HideType_subscription_role_added": "تعيين دور جديد", + "Message_HideType_subscription_role_removed": "دور أصبح غير معرف", + "Message_HideType_room_archived": "غرفة أرشفت", + "Message_HideType_room_unarchived": "غرفة ألغيت أرشفتها", + "I_Saved_My_E2E_Password": "قمت بحفظ كلمة المرور الطرفية", + "IP": " عنوان بروتوكول الإنترنت (الآيبي)", + "In_app": "في التطبيق", + "In_App_and_Desktop_Alert_info": "يعرض شعاراً أعلى الشاشة عندما يكون التطبيق مفتوحًا، ويعرض إشعاراً على سطح المكتب", + "Invisible": "غير مرئي", + "Invite": "دعوة", + "is_a_valid_RocketChat_instance": "خادم Rocket.Chat صالح", + "is_not_a_valid_RocketChat_instance": "خادم Rocket.Chat غير صالح", + "is_typing": "يكتب", + "Invalid_or_expired_invite_token": "رمز الدعوة غير صالح أو منتهي الصلاحية", + "Invalid_server_version": "الخادم الذي تحاول الاتصال به يستخدم إصدارا لم يعد مدعوماً: {{currentVersion}}.\n\n النسخ المدعومة تبدأ من {{minVersion}}", + "Invite_Link": "رابط الدعوة", + "Invite_users": "دعوة المستخدمين", + "Join": "انضم", + "Join_our_open_workspace": "انضم لمساحة عملنا المفتوحة", + "Join_your_workspace": "انضم لمساحة عملك", + "Just_invited_people_can_access_this_channel": "يمكن للأشخاص المدعوين فقط الوصول إلى هذه القناة", + "Language": "اللغة", + "last_message": "الرسالة الأخيرة", + "Leave_channel": "مغادرة القناة", + "leaving_room": "مغادرة الغرفة", + "Leave": "مغادرة الغرفة", + "leave": "مغادرة", + "Legal": "قانوني", + "Light": "ساطع", + "License": "رخصة", + "Livechat": "محادثة مباشرة", + "Livechat_edit": "تعديل المحادثة المباشرة", + "Login": "تسجيل الدخول", + "Login_error": "تم رفض تسجيل الدخول الرجاء المحاولة مرة أخرى", + "Login_with": "تسجيل الدخول بـ", + "Logging_out": "تسجيل الخروج", + "Logout": "تسجيل الخروج", + "Max_number_of_uses": "أقصى عدد للاستخدام", + "Max_number_of_users_allowed_is_number": "أقصى عدد للمستخدمين {{maxUsers}}", + "members": "أفراد", + "Members": "أفراد", + "Mentioned_Messages": "الرسائل المذكورة", + "mentioned": "مشار", + "Mentions": "الإشارات", + "Message_accessibility": "الرسالة من {{user}} في {{time}}: {{message}}", + "Message_actions": "إجراءات الرسالة", + "Message_pinned": "الرسالة مثبتة", + "Message_removed": "الرسالة حذفت", + "Message_starred": "الرسالة مميزة", + "Message_unstarred": "الرسالة غير مميزة", + "message": "رسالة", + "messages": "رسائل", + "Message": "الرسالة", + "Messages": "الرسائل", + "Message_Reported": "تم التبليغ على الرسالة", + "Microphone_Permission_Message": "يحتاج Rocket.Chat للوصول إلى الميكروفون الخاص بك حتى تتمكن من إرسال رسالة صوتية", + "Microphone_Permission": "إذن الميكروفون", + "Mute": "كتم", + "muted": "مكتوم", + "My_servers": "الخوادم", + "N_people_reacted": "{{n}} تفاعل الناس", + "N_users": "{{n}} مستخدمين", + "name": "اسم", + "Name": "اسم", + "Navigation_history": "تاريخ التصفح", + "Never": "أبداً", + "New_Message": "رسالة جديدة", + "New_Password": "كلمة مرور جديدة", + "New_Server": "خادم جديد", + "Next": "التالي", + "No_files": "لا ملفات", + "No_limit": "لا حدود", + "No_mentioned_messages": "لا رسائل مشارة", + "No_pinned_messages": "لا رسائل مثبتة", + "No_results_found": "لا نتائج", + "No_starred_messages": "لا رسائل مميزة", + "No_thread_messages": "لا رسائل للموضوع", + "No_label_provided": "لا {{label}} معطى", + "No_Message": "لا رسائل", + "No_messages_yet": "لا رسائل حتى اﻵن", + "No_Reactions": "لا تفاعل", + "No_Read_Receipts": "لا إيصالات قراءة", + "Not_logged": "غير مسجل الدخول", + "Not_RC_Server": "هذا ليس بخادم Rocket.Chat.\n{{contact}}", + "Nothing": "لا شيء", + "Nothing_to_save": "لا شيء للحفظ!", + "Notify_active_in_this_room": "أبلغ المستخدمين النشطين في هذه الغرفة", + "Notify_all_in_this_room": "أبلغ الجميع في الغرفة", + "Notifications": "الإشعارات", + "Notification_Duration": "زمن الإشعار", + "Notification_Preferences": "تفضيلات الإشعار", + "No_available_agents_to_transfer": "المندوبين غير متوفرين حالياً", + "Offline": "غير متصل", + "Oops": "عفوًا!", + "Omnichannel": "القنوات الموحدة", + "Open_Livechats": "محادثات مباشرة جارية", + "Omnichannel_enable_alert": "أنت غير متاح ", + "Onboarding_description": "مساحة عمل هي مساحة لفريقك ومنظمتك للتعاون. اطلب من المشرف العنوان للانضمام أو أنشئ لفريقك", + "Onboarding_join_workspace": "انضم لمساحة عمل", + "Onboarding_subtitle": "ما بعد بيئة فريق تعاونية", + "Onboarding_title": "مرحبا بك في Rocket.Chat", + "Onboarding_join_open_description": "انضم لمساحة عملنا للتواصل مع فريق Rocket.Chat ومع المجتمع", + "Onboarding_agree_terms": "بالمواصلة أنت توافق على Rocket.Chat", + "Onboarding_less_options": "خيارات أقل", + "Onboarding_more_options": "خيارات أكثر", + "Online": "متصل", + "Only_authorized_users_can_write_new_messages": "يمكن للمستخدمين المصرح لهم فقط كتابة رسائل جديدة", + "Open_emoji_selector": "افتح محدد الرموز التعبيرية", + "Open_Source_Communication": "تواصل مفتوح المصدر", + "Open_your_authentication_app_and_enter_the_code": "افتح تطبيق المصادقة الخاص بك وأدخل الرمز", + "OR": "أو", + "OS": "نظام التشغيل", + "Overwrites_the_server_configuration_and_use_room_config": "يمكن للمستخدمين المصرح لهم فقط كتابة رسائل جديدة", + "Password": "كلمة المرور", + "Parent_channel_or_group": "القناة أو المجموعة الأب", + "Permalink_copied_to_clipboard": "تم نسخ الرابط الثابت إلى الحافظة!", + "Phone": "الهاتف", + "Pin": "ثبت", + "Pinned_Messages": "رسائل مثبتة", + "pinned": "مثبت", + "Pinned": "مثبت", + "Please_add_a_comment": "الرجاء إضافة تعليق", + "Please_enter_your_password": "الرجاء إدخال كلمة المرور", + "Please_wait": "الرجاء الإنتظار", + "Preferences": "التفضيلات", + "Preferences_saved": "تم حفظ التفضيلات", + "Privacy_Policy": "سياسة الخصوصية", + "Private_Channel": "قناة خاصة", + "Private": "خاص", + "Processing": "جار معالجة...", + "Profile_saved_successfully": "تم حفظ الملف الشخصي بنجاح!", + "Profile": "الملف الشخصي", + "Public_Channel": "قناة عامة", + "Public": "عام", + "Push_Notifications_Alert_Info": "يتم إرسال هذه الإشعارات إليك عندما لا يكون التطبيق مفتوحاً", + "Quote": "اقتباس", + "Reactions_are_disabled": "التفاعل معطل", + "Reactions_are_enabled": "التفاعل مفعل", + "Reactions": "التفاعلات", + "Read": "قراءة", + "Read_External_Permission_Message": "يحتاج Rocket.chat للوصول إلى الصور والملفات الموجودة على الجهاز", + "Read_External_Permission": "صلاحية قراءة الوسائط", + "Read_Only_Channel": "قناة للقراءة فقط", + "Read_Only": "قراءة فقط", + "Read_Receipt": "قراءة المستلم", + "Receive_Group_Mentions": "تلقي إشارات المجموعة", + "Receive_Group_Mentions_Info": "تلقي @all و @here للإشعارات", + "Register": "تسجيل", + "Repeat_Password": "أعد كلمة المرور", + "Replied_on": "تم الرد على:", + "replies": "ردود", + "reply": "رد", + "Reply": "رد", + "Report": "بلاغ", + "Receive_Notification": "استلام الإشعار", + "Receive_notifications_from": "استلام الإشعارات من {{name}}", + "Resend": "أعد الإرسال", + "Reset_password": "إعادة تعيين كلمة المرور", + "resetting_password": "إعادة تعيين كلمة المرور", + "RESET": "إعادة", + "Return": "العودة", + "Review_app_title": "هل أنت مستمتع بهذا التطبيق؟", + "Review_app_desc": "قم بإعطائنا 5 نجوم {{store}}", + "Review_app_yes": "أكيد!", + "Review_app_no": "لا", + "Review_app_later": "ربما لاحقاً", + "Review_app_unable_store": "لم يتمكن من فتح {{store}}", + "Review_this_app": "تقييم هذا التطبيق", + "Remove": "حذف", + "Roles": "أدوار", + "Room_actions": "إجراءات الغرفة", + "Room_changed_announcement": "تم تغيير إعلان الغرفة إلى: {{announcement}} من قبل {{userBy}}", + "Room_changed_description": "تم تغيير وصف الغرفة إلى: {{description}} من قبل {{userBy}}", + "Room_changed_privacy": "تم تغيير نوع الغرفة إلى: {{type}} من قبل {{userBy}}", + "Room_changed_topic": "تم تغيير موضوع الغرفة إلى: {{topic}} من قبل {{userBy}}", + "Room_Files": "ملفات الغرفة", + "Room_Info_Edit": "تعديل معلومات الغرفة", + "Room_Info": "معلومات الغرفة", + "Room_Members": "أعضاء الغرفة", + "Room_name_changed": "تم تغيير اسم الغرفة إلى: {{name}} من قبل {{userBy}}", + "SAVE": "حفظ", + "Save_Changes": "حفظ التغيرات", + "Save": "حفظ", + "Saved": "تم الحفظ", + "saving_preferences": "حفظ التفضيلات", + "saving_profile": "حفظ الملف الشخصي", + "saving_settings": "حفظ الإعدادات", + "saved_to_gallery": "تم الحفظ في المعرض", + "Save_Your_E2E_Password": "حفظ كلمة المرور بين الطرفين", + "Save_Your_Encryption_Password": "حفظ كلمة المرور المشفرة", + "Save_Your_Encryption_Password_warning": "لا نقوم بتخزين كلمة المرور، الرجاء حفظها لديك في مكان آخر", + "Save_Your_Encryption_Password_info": "لا يمكن إستعادة كلمة المرور في حال فقدانها ولن تستطيع الوصول لرسائلك", + "Search_Messages": "بحث الرسائل", + "Search": "بحث", + "Search_by": "بحث حسب", + "Search_global_users": "بحث عام عن المستخدمين", + "Search_global_users_description": "إذا قمت بالتفعيل، فسيمكنك البحث عن أي مستخدم في شركات أو خوادم أخرى", + "Seconds": "{{second}} ثواني", + "Select_Avatar": "حدد الصورة الرمزية", + "Select_Server": "حدد خادم", + "Select_Users": "حدد مستخدمين", + "Select_a_Channel": "حدد قناة", + "Select_a_Department": "حدد قسم", + "Select_an_option": "حدد خيار", + "Select_a_User": "حدد مستخدم", + "Send": "إرسال", + "Send_audio_message": "إرسال رسالة صوتية", + "Send_crash_report": "إرسال تقرير الأعطال", + "Send_message": "إرسال الرسالة", + "Send_me_the_code_again": "أرسل الرمز مرة أخرى", + "Send_to": "إرسال إلى...", + "Sending_to": "يتم الإرسال إلى", + "Sent_an_attachment": "تم إرسال المرفق", + "Server": "سرفر", + "Servers": "سرفرات", + "Server_version": "نسخة الخادم: {{version}}", + "Set_username_subtitle": "يتم استخدام اسم المستخدم للسماح للآخرين بذكرك في الرسائل", + "Set_custom_status": "حدد حالة خاصة", + "Set_status": "حدد حالة", + "Status_saved_successfully": "تم حفظ الحالة بنجاح!", + "Settings": "الإعدادات", + "Settings_succesfully_changed": "تم تعديل الإعدادات بنجاح!", + "Share": "مشاركة", + "Share_Link": "مشاركة رابط", + "Share_this_app": "مشاركة هذا البرنامج", + "Show_more": "إظهار أكثر..", + "Show_Unread_Counter": "عرض عدد الرسائل غير المقروءة", + "Show_Unread_Counter_Info": "يتم عرض العدد غير المقروء كشارة على يمين القناة في القائمة", + "Sign_in_your_server": "تسجيل الدخول إلى الخادم الخاص بك", + "Sign_Up": "تسجيل جديد", + "Some_field_is_invalid_or_empty": "بعض الحقول غير صالحة أو فارغة", + "Sorting_by": "فرز حسب {{key}}", + "Sound": "الصوت", + "Star_room": "تمييز الغرفة", + "Star": "تمييز", + "Starred_Messages": "رسائل مميزة", + "starred": "مميزة", + "Starred": "مميزة", + "Start_of_conversation": "بداية المحادثة", + "Start_a_Discussion": "ابدأ نقاش", + "Started_discussion": "بدأ النقاش", + "Started_call": "أجرى الاتصال {{userBy}}", + "Submit": "إرسال", + "Table": "جدول", + "Tags": "العلامات", + "Take_a_photo": "التقاط صورة", + "Take_a_video": "التقاط فيديو", + "Take_it": "التقط!", + "tap_to_change_status": "انقر لتغيير الحالة", + "Tap_to_view_servers_list": "انقر لعرض قائمة الخوادم", + "Terms_of_Service": " شروط الخدمة ", + "Theme": "سمة", + "The_user_wont_be_able_to_type_in_roomName": "المستخدم لن يتمكن من الكتابة في {{roomName}}", + "The_user_will_be_able_to_type_in_roomName": "المستخدم سيتمكن من الكتابة في {{roomName}}", + "There_was_an_error_while_action": "حدث خطأ أثناء {{action}}!", + "This_room_is_blocked": "هذه الغرفة محظورة", + "This_room_is_read_only": "هذه الغرفة للقراءة فقط", + "Thread": "موضوع", + "Threads": "مواضيع", + "Timezone": "المنطقة الزمنية", + "To": "إلى", + "topic": "عنوان", + "Topic": "عنوان", + "Translate": "ترجمة", + "Try_again": "حاول مجدداً", + "Two_Factor_Authentication": "المصادقة الثنائية", + "Type_the_channel_name_here": "اكتب اسم القناة هنا", + "unarchive": "إلغاء الأرشفة", + "UNARCHIVE": "إلغاء الأرشفة", + "Unblock_user": "إلغاء حظر عن مستخدم", + "Unfavorite": "إزالة من المفضلة", + "Unfollowed_thread": "موضوع غير متابع", + "Unmute": "إلغاء كتم", + "unmuted": "إلغاء كتم", + "Unpin": "إلغاء التثبيت", + "unread_messages": "رسائل غير مقروءة", + "Unread": "غير مقروء", + "Unread_on_top": "غير مقروء في الأعلى", + "Unstar": "إلغاء التمييز", + "Updating": "جار التحديث...", + "Uploading": "جار الرفع", + "Upload_file_question_mark": "رفع الملف؟", + "User": "مستخدم", + "Users": "مستخدمين", + "User_added_by": "مستخدم {{userAdded}} أضيف من قبل {{userBy}}", + "User_Info": "معلومات المستخدم", + "User_has_been_key": "تمت {{key}} المستخدم!", + "User_is_no_longer_role_by_": "تم إزالة الدور {{role}} عن المستخدم {{user}} من قبل {{userBy}}", + "User_muted_by": "المستخدم {{userMuted}} كتم من قبل {{userBy}}", + "User_removed_by": "المستخدم {{userRemoved}} حذف من قبل {{userBy}}", + "User_sent_an_attachment": "{{user}} أرسل مرفقًا", + "User_unmuted_by": "ألغى {{userBy}} الكتم عن {{userUnmuted}}", + "User_was_set_role_by_": "أضيف دور {{role}} للمستخدم {{user}} من قبل {{userBy}}", + "Username_is_empty": "اسم المستخدم فارغ", + "Username": "اسم المستخدم", + "Username_or_email": "اسم المستخدم أو البريد الالكتروني", + "Uses_server_configuration": "يستخدم إعداد الخادم", + "Validating": "يتم التحقق", + "Registration_Succeeded": "تم التسجيل بنجاح", + "Verify": "تحقق", + "Verify_email_title": "تم التسجيل!", + "Verify_email_desc": "لقد أرسلنا إليك بريداً إلكترونياً لتأكيد تسجيلك. إذا لم تتلق البريد الإلكتروني قريباً، فيرجى العودة والمحاولة مرة أخرى", + "Verify_your_email_for_the_code_we_sent": "يرجى تأكيد البريد الإلكتروني عبر الرمز المرسل", + "Video_call": "مكالمة فيديو", + "View_Original": "عرض المحتوى الأصلي", + "Voice_call": "مكالمة صوتية", + "Waiting_for_network": "بانتظار توفر شبكة...", + "Websocket_disabled": "تم تعطيل Websocket لهذا الخادم.\n{{contact}}", + "Welcome": "مرحبا", + "What_are_you_doing_right_now": "ما الذي تفعله حالياً؟", + "Whats_your_2fa": "ما هو رمز التحقق الثنائي؟", + "Without_Servers": "بدون خوادم", + "Workspaces": "مساحات العمل", + "Would_you_like_to_return_the_inquiry": "هل ترغب بالرد على السؤال؟", + "Write_External_Permission_Message": "يحتاج Rocket.Chat للوصول إلى معرض الصور الخاص بك حتى تتمكن من حفظ الصور", + "Write_External_Permission": "إذن معرض", + "Yes": "نعم", + "Yes_action_it": "نعم، {{action}}!", + "Yesterday": "أمس", + "You_are_in_preview_mode": "أنت في وضع المعاينة", + "You_are_offline": "أنت غير متصل", + "You_can_search_using_RegExp_eg": "يمكنك استخدام RegExp. مثال: `/^text$/i`", + "You_colon": "أنت: ", + "you_were_mentioned": "تمت الإشارة إليك", + "You_were_removed_from_channel": "تمت إزالتك من {{channel}}", + "you": "أنت", + "You": "أنت", + "Logged_out_by_server": "لقد تم تسجيل خروجك من قبل الخادم. الرجاد الدخول من جديد", + "You_need_to_access_at_least_one_RocketChat_server_to_share_something": "تحتاج إلى الوصول إلى خادم Rocket.Chat واحد على الأقل لمشاركة شيء ما", + "You_need_to_verifiy_your_email_address_to_get_notications": "يجب تأكيد البريد الإلكتروني حتى تصلك الإشعارات", + "Your_certificate": "شهادتك", + "Your_invite_link_will_expire_after__usesLeft__uses": "سوف تنتهي صلاحية رابط الدعوة الخاص بك بعد {{usesLeft}} استخدامات", + "Your_invite_link_will_expire_on__date__or_after__usesLeft__uses": "ستنتهي صلاحية رابط الدعوة الخاص بك في {{date}} أو بعد {{usesLeft}} استخدامات", + "Your_invite_link_will_expire_on__date__": "ستنتهي صلاحية رابط الدعوة الخاص بك في {{date}}", + "Your_invite_link_will_never_expire": "لن تنتهي صلاحية رابط الدعوة الخاص بك", + "Your_workspace": "مساحة عملك", + "Your_password_is": "كلمة المرور الخاصة بك هي", + "Version_no": "النسخة: {{version}}", + "You_will_not_be_able_to_recover_this_message": "لن تتمكن من استعادة هذه الرسالة!", + "You_will_unset_a_certificate_for_this_server": "ستلغي شهادة هذا الخادم", + "Change_Language": "تغيير اللغة", + "Crash_report_disclaimer": "نحن لا نتتبع محتوى محادثاتك أبداً. يحتوي تقرير الأعطال فقط على المعلومات ذات الصلة لنا من أجل تحديد المشاكل وإصلاحها", + "Type_message": "اكتب رسالة", + "Room_search": "البحث عن الغرف", + "Room_selection": "اختيار الغرفة 1...9", + "Next_room": "الغرفة المجاورة", + "Previous_room": "الغرفة السابقة", + "New_room": "غرفة جديدة", + "Upload_room": "تحميل إلى الغرفة", + "Search_messages": "رسائل البحث", + "Scroll_messages": "تمرير الرسائل", + "Reply_latest": "الرد على الأحدث", + "Reply_in_Thread": "الرد في موضوع", + "Server_selection": "اختيار الخادم", + "Server_selection_numbers": "اختيار الخادم 1...9", + "Add_server": "إضافة خادم", + "New_line": "سطر جديد", + "You_will_be_logged_out_of_this_application": "سيتم تسجيل خروجك من هذا التطبيق.", + "Clear": "مسح", + "This_will_clear_all_your_offline_data": "سيؤدي هذا إلى محو جميع بياناتك في وضع عدم الاتصال.", + "This_will_remove_all_data_from_this_server": "هذا الإجراء يحذف جميع البيانات من هذا السيرفر", + "Mark_unread": "علامة غير مقروء", + "Wait_activation_warning": "يحب تفعيل حسابك من المشرف قبل تسجيل الدخول", + "Screen_lock": "قفل الشاشة", + "Local_authentication_biometry_title": "صادق", + "Local_authentication_biometry_fallback": "استخدم كلمة المرور", + "Local_authentication_unlock_option": "افتح القفل بكلمة المرور", + "Local_authentication_change_passcode": "تغيير كلمة المرور", + "Local_authentication_info": "تنويه: يجب حذف التطبيق عند نسيان كلمة المرور", + "Local_authentication_facial_recognition": "التعرف على الوجه", + "Local_authentication_fingerprint": "البصمة", + "Local_authentication_unlock_with_label": "فتح القفل بـ {{label}}", + "Local_authentication_auto_lock_60": "بعد دقيقة", + "Local_authentication_auto_lock_300": "بعد 5 دقائق", + "Local_authentication_auto_lock_900": "بعد 15 دقيقة", + "Local_authentication_auto_lock_1800": "بعد 30 دقيقة", + "Local_authentication_auto_lock_3600": "بعد ساعة", + "Passcode_enter_title": "أدخل كلمة المرور", + "Passcode_choose_title": "اختر كلمة المرور الجديدة", + "Passcode_choose_confirm_title": "تأكيد كلمة المرور الجديدة", + "Passcode_choose_error": "كلمة المرور غير متطابقة. حاول مجدداً", + "Passcode_choose_force_set": "كلمة المرور مطلوبة من المشرف", + "Passcode_app_locked_title": "التطبيق مقفل", + "Passcode_app_locked_subtitle": "حاول مجدداً بعد {{timeLeft}} ثوان", + "After_seconds_set_by_admin": "بعد {{seconds}} ثوان (حددها المدير)", + "Dont_activate": "لا تقم بالتفعيل الآن", + "Queued_chats": "محادثات في قائمى الانتظار", + "Queue_is_empty": "قائمة الانتظار فارغة", + "Logout_from_other_logged_in_locations": "تسجيل الخروج من الأماكن الأخرى", + "You_will_be_logged_out_from_other_locations": "سيتم تسجيل خروج من الأماكن الأخرى", + "Logged_out_of_other_clients_successfully": "تم تسجيل الخروج من الأماكن الأخرى بنجاح", + "Logout_failed": "فشل تسجيل الخروج!", + "Log_analytics_events": "تحليلات سجل الأحداث", + "invalid-room": "غرفة غير صالحة" +} diff --git a/app/i18n/locales/de.json b/app/i18n/locales/de.json index c2881a9c63..46885974e5 100644 --- a/app/i18n/locales/de.json +++ b/app/i18n/locales/de.json @@ -1,772 +1,772 @@ { - "1_person_reacted": "1 Person hat reagiert", - "1_user": "1 Benutzer", - "error-action-not-allowed": "{{action}} ist nicht erlaubt", - "error-application-not-found": "Anwendung nicht gefunden", - "error-archived-duplicate-name": "Es gibt bereits einen archivierten Kanal mit dem Namen {{room_name}}", - "error-avatar-invalid-url": "Ungültige Avatar-URL: {{url}}", - "error-avatar-url-handling": "Fehler beim Umgang mit der Avatar-Einstellung von einer URL ({{url}}) für {{username}}", - "error-cant-invite-for-direct-room": "Benutzer können nicht zu Räumen eingeladen werden", - "error-could-not-change-email": "E-Mail konnte nicht geändert werden", - "error-could-not-change-name": "Name konnte nicht geändert werden", - "error-could-not-change-username": "Benutzername konnte nicht geändert werden", - "error-could-not-change-status": "Status konnte nicht geändert werden", - "error-delete-protected-role": "Eine geschützte Rolle kann nicht gelöscht werden", - "error-department-not-found": "Abteilung nicht gefunden", - "error-direct-message-file-upload-not-allowed": "Dateifreigabe in direkten Nachrichten nicht zulässig", - "error-duplicate-channel-name": "Ein Kanal mit dem Namen {{room_name}} ist bereits vorhanden", - "error-email-domain-blacklisted": "Die E-Mail-Domain wird auf die schwarze Liste gesetzt", - "error-email-send-failed": "Fehler beim Versuch, eine E-Mail zu senden: {{message}}", - "error-save-image": "Fehler beim Speichern des Bildes", - "error-save-video": "Fehler beim Speichern des Videos", - "error-field-unavailable": "{{field}} wird bereits verwendet :(", - "error-file-too-large": "Datei ist zu groß", - "error-importer-not-defined": "Der Import wurde nicht korrekt definiert, es fehlt die Importklasse.", - "error-input-is-not-a-valid-field": "{{input}} ist kein gültiges {{field}}", - "error-invalid-actionlink": "Ungültiger Aktionslink", - "error-invalid-arguments": "Ungültige Argumente", - "error-invalid-asset": "Ungültiges Asset", - "error-invalid-channel": "Ungültiger Kanal", - "error-invalid-channel-start-with-chars": "Ungültiger Kanal. Beginne mit @ oder #", - "error-invalid-custom-field": "Ungültiges benutzerdefiniertes Feld", - "error-invalid-custom-field-name": "Ungültiger benutzerdefinierter Feldname. Verwende nur Buchstaben, Zahlen, Bindestriche und Unterstriche.", - "error-invalid-date": "Ungültiges Datum angegeben", - "error-invalid-description": "Ungültige Beschreibung", - "error-invalid-domain": "Ungültige Domain", - "error-invalid-email": "Ungültige E-Mail {{email}}", - "error-invalid-email-address": "Ungültige E-Mail-Adresse", - "error-invalid-file-height": "Ungültige Dateihöhe", - "error-invalid-file-type": "Ungültiger Dateityp", - "error-invalid-file-width": "Ungültige Dateibreite", - "error-invalid-from-address": "Du hast eine ungültige FROM-Adresse mitgeteilt.", - "error-invalid-integration": "Ungültige Integration", - "error-invalid-message": "Ungültige Nachricht", - "error-invalid-method": "Ungültige Methode", - "error-invalid-name": "Ungültiger Name", - "error-invalid-password": "Ungültiges Passwort", - "error-invalid-redirectUri": "Ungültige Weiterleitung", - "error-invalid-role": "Ungültige Rolle", - "error-invalid-room": "Ungültiger Raum", - "error-invalid-room-name": "{{room_name}} ist kein gültiger Raumname", - "error-invalid-room-type": "{{type}} ist kein gültiger Raumtyp.", - "error-invalid-settings": "Ungültige Einstellungen angegeben", - "error-invalid-subscription": "Ungültiges Abonnement", - "error-invalid-token": "Ungültiges Token", - "error-invalid-triggerWords": "Ungültige TriggerWords", - "error-invalid-urls": "Ungültige URLs", - "error-invalid-user": "Ungültiger Benutzer", - "error-invalid-username": "Ungültiger Benutzername", - "error-invalid-webhook-response": "Die Webhook-URL antwortete mit einem anderen Status als 200", - "error-message-deleting-blocked": "Das Löschen von Nachrichten ist gesperrt", - "error-message-editing-blocked": "Die Bearbeitung von Nachrichten ist gesperrt", - "error-message-size-exceeded": "Die Nachrichtengröße überschreitet Message_MaxAllowedSize", - "error-missing-unsubscribe-link": "Du musst den Link [abbestellen] angeben.", - "error-no-owner-channel": "Dieser Raum gehört dir nicht", - "error-no-tokens-for-this-user": "Für diesen Benutzer gibt es keine Token", - "error-not-allowed": "Nicht erlaubt", - "error-not-authorized": "Nicht berechtigt", - "error-push-disabled": "Push ist deaktiviert", - "error-remove-last-owner": "Dies ist der letzte Besitzer. Bitte lege einen neuen Besitzer fest, bevor du diesen entfernst.", - "error-role-in-use": "Rolle kann nicht gelöscht werden, da sie gerade verwendet wird", - "error-role-name-required": "Der Rollenname ist erforderlich", - "error-the-field-is-required": "Das Feld {{field}} ist erforderlich.", - "error-too-many-requests": "Fehler, zu viele Anfragen. Du musst {{seconds}} Sekunden warten, bevor du es erneut versuchst.", - "error-user-is-not-activated": "Benutzer ist nicht aktiviert", - "error-user-has-no-roles": "Benutzer hat keine Rollen", - "error-user-limit-exceeded": "Die Anzahl der Benutzer, die du zu #channel_name einladen möchtest, überschreitet die vom Administrator festgelegte Grenze", - "error-user-not-in-room": "Benutzer ist nicht in diesem Raum", - "error-user-registration-custom-field": "error-user-registration-custom-field", - "error-user-registration-disabled": "Die Benutzerregistrierung ist deaktiviert", - "error-user-registration-secret": "Die Benutzerregistrierung ist nur über eine geheime URL möglich", - "error-you-are-last-owner": "Du bist der letzte Besitzer. Bitte setze einen neuen Besitzer, bevor du den Raum verlässt.", - "error-status-not-allowed": "Unsichtbar-Status ist deaktiviert", - "Actions": "Aktionen", - "activity": "Aktivität", - "Activity": "Aktivität", - "Add_Reaction": "Reaktion hinzufügen", - "Add_Server": "Server hinzufügen", - "Add_users": "Benutzer hinzufügen", - "Admin_Panel": "Admin-Panel", - "Agent": "Agent", - "Alert": "Benachrichtigung", - "alert": "Benachrichtigung", - "alerts": "Benachrichtigungen", - "All_users_in_the_channel_can_write_new_messages": "Alle Benutzer im Kanal können neue Nachrichten schreiben", - "All_users_in_the_team_can_write_new_messages": "Alle Mitglieder eines Teams können neue Nachrichten schreiben", - "A_meaningful_name_for_the_discussion_room": "Ein aussagekräftiger Name für den Diskussionsraum", - "All": "alle", - "All_Messages": "Alle Nachrichten", - "Allow_Reactions": "Reaktionen zulassen", - "Alphabetical": "Alphabetisch", - "and_more": "und mehr", - "and": "und", - "announcement": "Ankündigung", - "Announcement": "Ankündigung", - "Apply_Your_Certificate": "Wende dein Zertifikat an", - "ARCHIVE": "ARCHIV", - "archive": "Archiv", - "are_typing": "tippen", - "Are_you_sure_question_mark": "Bist du sicher?", - "Are_you_sure_you_want_to_leave_the_room": "Möchtest du den Raum wirklich verlassen {{room}}?", - "Audio": "Audio", - "Authenticating": "Authentifizierung", - "Automatic": "Automatisch", - "Auto_Translate": "Automatische Übersetzung", - "Avatar_changed_successfully": "Avatar erfolgreich geändert!", - "Avatar_Url": "Avatar-URL", - "Away": "Abwesend", - "Back": "Zurück", - "Black": "Schwarz", - "Block_user": "Benutzer blockieren", - "Browser": "Browser", - "Broadcast_channel_Description": "Nur autorisierte Benutzer können neue Nachrichten schreiben, die anderen Benutzer können jedoch antworten", - "Broadcast_Channel": "Broadcast-Kanal", - "Busy": "Beschäftigt", - "By_proceeding_you_are_agreeing": "Indem du fortfährst, stimmst du zu unserem", - "Cancel_editing": "Bearbeitung abbrechen", - "Cancel_recording": "Aufnahme abbrechen", - "Cancel": "Abbrechen", - "changing_avatar": "Avatar wechseln", - "creating_channel": "Kanal erstellen", - "creating_invite": "Einladung erstellen", - "Channel_Name": "Kanal Name", - "Channels": "Kanäle", - "Chats": "Chats", - "Call_already_ended": "Anruf bereits beendet!", - "Clear_cookies_alert": "Möchtest du alle Cookies löschen?", - "Clear_cookies_desc": "Diese Aktion wird alle Login-Cookies löschen und erlaubt es dir, dich mit einem anderen Konto anzumelden.", - "Clear_cookies_yes": "Ja, Cookies löschen", - "Clear_cookies_no": "Nein, Cookies behalten", - "Click_to_join": "Klicken um beizutreten!", - "Close": "Schließen", - "Close_emoji_selector": "Schließe die Emoji-Auswahl", - "Closing_chat": "Chat schließen", - "Change_language_loading": "Ändere Sprache.", - "Chat_closed_by_agent": "Chat durch den Agenten geschlossen", - "Choose": "Wählen", - "Choose_from_library": "Aus der Bibliothek auswählen", - "Choose_file": "Datei auswählen", - "Choose_where_you_want_links_be_opened": "Entscheide, wie Links geöffnet werden sollen", - "Code": "Code", - "Code_or_password_invalid": "Code oder Passwort sind falsch", - "Collaborative": "Kollaborativ", - "Confirm": "Bestätigen", - "Connect": "Verbinden", - "Connected": "Verbunden", - "connecting_server": "verbinde zum Server", - "Connecting": "Verbinden ...", - "Contact_us": "Kontaktiere uns", - "Contact_your_server_admin": "Kontaktiere deinen Server-Administrator.", - "Continue_with": "Weitermachen mit", - "Copied_to_clipboard": "In die Zwischenablage kopiert!", - "Copy": "Kopieren", - "Conversation": "Konversationen", - "Permalink": "Permalink", - "Certificate_password": "Zertifikats-Passwort", - "Clear_cache": "Lokalen Server-Cache leeren", - "Clear_cache_loading": "Leere Cache.", - "Whats_the_password_for_your_certificate": "Wie lautet das Passwort für dein Zertifikat?", - "Create_account": "Ein Konto erstellen", - "Create_Channel": "Kanal erstellen", - "Create_Direct_Messages": "Direkt-Nachricht erstellen", - "Create_Discussion": "Diskussion erstellen", - "Created_snippet": "ein Snippet erstellt", - "Create_a_new_workspace": "Erstelle einen neuen Arbeitsbereich", - "Create": "Erstellen", - "Custom_Status": "Eigener Status", - "Dark": "Dunkel", - "Dark_level": "Dunkelstufe", - "Default": "Standard", - "Default_browser": "Standard-Browser", - "Delete_Room_Warning": "Durch das Löschen eines Raums werden alle Nachrichten gelöscht, die im Raum gepostet wurden. Das kann nicht rückgängig gemacht werden.", - "Department": "Abteilung", - "delete": "löschen", - "Delete": "Löschen", - "DELETE": "LÖSCHEN", - "move": "verschieben", - "deleting_room": "lösche Raum", - "description": "Beschreibung", - "Description": "Beschreibung", - "Desktop_Options": "Desktop-Einstellungen", - "Desktop_Notifications": "Desktop-Benachrichtigungen", - "Desktop_Alert_info": "Diese Benachrichtigungen werden auf dem Desktop angezeigt", - "Directory": "Verzeichnis", - "Direct_Messages": "Direktnachrichten", - "Disable_notifications": "Benachrichtigungen deaktiveren", - "Discussions": "Diskussionen", - "Discussion_Desc": "Hilft dir die Übersicht zu behalten! Durch das Erstellen einer Diskussion wird ein Unter-Kanal im ausgewählten Raum erzeugt und beide verknüpft.", - "Discussion_name": "Diskussions-Name", - "Done": "Erledigt", - "Dont_Have_An_Account": "Du hast noch kein Konto?", - "Do_you_have_an_account": "Du hast schon ein Konto?", - "Do_you_have_a_certificate": "Hast du ein Zertifikat?", - "Do_you_really_want_to_key_this_room_question_mark": "Möchtest du diesen Raum wirklich {{key}}?", - "E2E_Encryption": "E2E-Verschlüsselung", - "E2E_How_It_Works_info1": "Du kannst nun verschlüsselte private Gruppen und Direktnachrichten versenden. Du kannst außerdem deine bestehenden privaten Gruppen und Direktnachrichten auf Verschlüsselung umstellen.", - "E2E_How_It_Works_info2": "Dies ist *Ende-zu-Ende-Verschlüsselung*, daher wird der Schlüssel um die Nachrichten zu ver-/entschlüsseln nicht auf dem Server gespeichert. Aus diesem Grund musst du dieses Passwort an einem sicheren Ort speichern, so dass du später bei Bedarf darauf zugreifen kannst.", - "E2E_How_It_Works_info3": "Wenn du fortfährst, wird automatisch ein ein E2E-Passwort erzeugt.", - "E2E_How_It_Works_info4": "Du kannst außerdem jederzeit, in jedem Browser, in dem du das bestehende Passwort eingegeben hast, ein neues Passwort setzen.", - "edit": "bearbeiten", - "edited": "bearbeitet", - "Edit": "Bearbeiten", - "Edit_Status": "Status ändern", - "Edit_Invite": "Einladung bearbeiten", - "End_to_end_encrypted_room": "Ende-zu-Ende-verschlüsselter Raum", - "end_to_end_encryption": "Nicht mehr Ende-zu-Ende verschlüsseln", - "Email_Notification_Mode_All": "Jede Erwähnung/Direktnachricht", - "Email_Notification_Mode_Disabled": "Deaktiviert", - "Email_or_password_field_is_empty": "Das E-Mail- oder Passwortfeld ist leer", - "Email": "E-mail", - "email": "E-mail", - "Empty_title": "leerer Titel", - "Enable_Auto_Translate": "Automatische Übersetzung aktivieren", - "Enable_notifications": "Benachrichtigungen aktivieren", - "Encrypted": "Verschlüsselt", - "Encrypted_message": "Verschlüsselte Nachricht", - "Enter_Your_E2E_Password": "Gib dein Ende-zu-Ende-Passwort ein", - "Enter_Your_Encryption_Password_desc1": "Das erlaubt dir auf deine verschlüsselten privaten Gruppen und Direktnachrichten zuzugreifen.", - "Enter_Your_Encryption_Password_desc2": "Du musst das Passwort zur Ver-/Entschlüsselung an jeder Stelle eingeben, an dem du diesen Chat verwendest.", - "Encryption_error_title": "Dein Verschlüsselungs-Passwort scheint falsch zu sein", - "Encryption_error_desc": "Es war nicht möglich deinen Verschlüsselungs-Key zu importieren.", - "Everyone_can_access_this_channel": "Jeder kann auf diesen Kanal zugreifen", - "Everyone_can_access_this_team": "Jeder kann auf dieses Team zugreifen", - "Error_uploading": "Fehler beim Hochladen", - "Expiration_Days": "läuft ab (Tage)", - "Favorite": "Favorisieren", - "Favorites": "Favoriten", - "Files": "Dateien", - "File_description": "Dateibeschreibung", - "File_name": "Dateiname", - "Finish_recording": "Beende die Aufnahme", - "Following_thread": "Thread folgen", - "For_your_security_you_must_enter_your_current_password_to_continue": "Zu deiner Sicherheit musst du dein aktuelles Passwort eingeben, um fortzufahren", - "Forgot_password_If_this_email_is_registered": "Wenn diese E-Mail registriert ist, senden wir Anweisungen zum Zurücksetzen deines Passworts. Wenn du nicht in Kürze keine E-Mail erhältst, versuche es bitte erneut.", - "Forgot_password": "Passwort vergessen", - "Forgot_Password": "Passwort vergessen", - "Forward": "Weiterleiten", - "Forward_Chat": "Chat weiterleiten", - "Forward_to_department": "Weiterleiten an Abteilung", - "Forward_to_user": "Weiterleiten an Benutzer", - "Full_table": "Klicken um die ganze Tabelle anzuzeigen", - "Generate_New_Link": "Neuen Link erstellen", - "Group_by_favorites": "Nach Favoriten gruppieren", - "Group_by_type": "Gruppieren nach Typ", - "Hide": "Ausblenden", - "Has_joined_the_channel": "Ist dem Kanal beigetreten", - "Has_joined_the_conversation": "Hat sich dem Gespräch angeschlossen", - "Has_left_the_channel": "Hat den Kanal verlassen", - "Hide_System_Messages": "Systemnachrichten verstecken", - "Hide_type_messages": "Verstecke \"{{type}}\"-Nachrichten", - "How_It_Works": "Wie es funktioniert", - "Message_HideType_uj": "Benutzer beigetreten", - "Message_HideType_ul": "Benutzer verlassen", - "Message_HideType_ru": "Benutzer entfernt", - "Message_HideType_au": "Benutzer hinzugefügt", - "Message_HideType_mute_unmute": "Benutzer stummgeschaltet / freigegeben", - "Message_HideType_r": "Raumname geändert", - "Message_HideType_ut": "Benutzer ist der Unterhaltung beigetreten", - "Message_HideType_wm": "Willkommen", - "Message_HideType_rm": "Nachricht entfernt", - "Message_HideType_subscription_role_added": "Rolle wurde gesetzt", - "Message_HideType_subscription_role_removed": "Rolle nicht länger definiert", - "Message_HideType_room_archived": "Raum archiviert", - "Message_HideType_room_unarchived": "Raum nicht mehr archiviert", - "I_Saved_My_E2E_Password": "Ich habe mein Ende-zu-Ende-Passwort gesichert", - "IP": "IP", - "In_app": "In-App-Browser", - "In_App_And_Desktop": "In-App und Desktop", - "In_App_and_Desktop_Alert_info": "Zeigt ein Banner oben am Bildschirm, wenn die App geöffnet ist und eine Benachrichtigung auf dem Desktop.", - "Invisible": "Unsichtbar", - "Invite": "Einladen", - "is_a_valid_RocketChat_instance": "ist eine gültige Rocket.Chat-Instanz", - "is_not_a_valid_RocketChat_instance": "ist keine gültige Rocket.Chat-Instanz", - "is_typing": "schreibt", - "Invalid_or_expired_invite_token": "Ungültiger oder abgelaufener Einladungscode", - "Invalid_server_version": "Der Server, zu dem du dich verbinden möchtest, verwendet eine Version, die von der App nicht mehr unterstützt wird: {{currentVersion}}.\n\nWir benötigen Version {{minVersion}}.", - "Invite_Link": "Einladungs-Link", - "Invite_users": "Benutzer einladen", - "Join": "Beitreten", - "Join_Code": "Beitrittscode", - "Insert_Join_Code": "Beitrittscode eingeben", - "Join_our_open_workspace": "Tritt unserem offenen Arbeitsbereich bei", - "Join_your_workspace": "Tritt deinem Arbeitsbereich bei", - "Just_invited_people_can_access_this_channel": "Nur eingeladene Personen können auf diesen Kanal zugreifen", - "Just_invited_people_can_access_this_team": "Nur eingeladene Personen können auf das Team zugreifen", - "Language": "Sprache", - "last_message": "letzte Nachricht", - "Leave_channel": "Kanal verlassen", - "leaving_room": "Raum verlassen", - "Leave": "Raum verlassen", - "leave": "verlassen", - "Legal": "Rechtliches", - "Light": "Hell", - "License": "Lizenz", - "Livechat": "Live-Chat", - "Livechat_edit": "Live-Chat bearbeiten", - "Login": "Anmeldung", - "Login_error": "Deine Zugangsdaten wurden abgelehnt! Bitte versuche es erneut.", - "Login_with": "Einloggen mit", - "Logging_out": "Abmelden.", - "Logout": "Abmelden", - "Max_number_of_uses": "Maximale Anzahl der Benutzungen", - "Max_number_of_users_allowed_is_number": "Maximale Anzahl von erlaubten Benutzern ist {{maxUsers}}", - "members": "Mitglieder", - "Members": "Mitglieder", - "Mentioned_Messages": "Erwähnte Nachrichten", - "mentioned": "erwähnt", - "Mentions": "Erwähnungen", - "Message_accessibility": "Nachricht von {{user}} um {{time}}: {{message}}", - "Message_actions": "Nachrichtenaktionen", - "Message_pinned": "Eine Nachricht wurde angeheftet", - "Message_removed": "Nachricht entfernt", - "Message_starred": "Nachricht favorisiert", - "Message_unstarred": "Nachricht nicht mehr favorisiert", - "message": "Nachricht", - "messages": "Nachrichten", - "Message": "Nachricht", - "Messages": "Mitteilungen", - "Message_Reported": "Nachricht gemeldet", - "Microphone_Permission_Message": "Rocket.Chat benötigt Zugriff auf das Mikrofon, damit du eine Audionachricht senden kannst.", - "Microphone_Permission": "Mikrofonberechtigung", - "Mute": "Diesem Benutzer das Chatten verbieten", - "muted": "stummgeschaltet", - "My_servers": "Meine Server", - "N_people_reacted": "{{n}} Leute haben reagiert", - "N_users": "{{n}} Benutzer", - "N_channels": "{{n}} Kanäle", - "name": "Name", - "Name": "Name", - "Navigation_history": "Navigations-Verlauf", - "Never": "Niemals", - "New_Message": "Neue Nachricht", - "New_Password": "Neues Kennwort", - "New_Server": "Neuer Server", - "Next": "Nächster", - "No_files": "Keine Dateien", - "No_limit": "Kein Limit", - "No_mentioned_messages": "Keine Nachrichten mit Erwähnungen", - "No_pinned_messages": "Keine angehefteten Nachrichten", - "No_results_found": "Keine Ergebnisse gefunden", - "No_starred_messages": "Keine markierten Nachrichten", - "No_thread_messages": "Keine Threadnachrichten", - "No_label_provided": "Kein(e) {{label}} gesetzt.", - "No_Message": "Keine Nachricht", - "No_messages_yet": "Noch keine Nachrichten", - "No_Reactions": "Keine Reaktionen", - "No_Read_Receipts": "Keine Lesebestätigungen", - "Not_logged": "Nicht protokolliert", - "Not_RC_Server": "Dies ist kein Rocket.Chat-Server.\n{{contact}}", - "Nothing": "Nichts", - "Nothing_to_save": "Nichts zu speichern!", - "Notify_active_in_this_room": "Aktive Benutzer in diesem Raum benachrichtigen", - "Notify_all_in_this_room": "Benachrichtige alle in diesem Raum", - "Notifications": "Benachrichtigungen", - "Notification_Duration": "Benachrichtigungsdauer", - "Notification_Preferences": "Benachrichtigungseinstellungen", - "No_available_agents_to_transfer": "Keine Agenten für den Transfer verfügbar", - "Offline": "Offline", - "Oops": "Hoppla!", - "Omnichannel": "Omnichannel", - "Open_Livechats": "Offene Chats", - "Omnichannel_enable_alert": "Du bist in Omnichannel nicht verfügbar. Möchtest du erreichbar sein?", - "Onboarding_description": "Ein Arbeitsbereich ist der Ort für die Zusammenarbeit deines Teams oder Organisation. Bitte den Admin des Arbeitsbereichs um eine Adresse, um ihm beizutreten, oder erstelle einen Arbeitsbereich für dein Team.", - "Onboarding_join_workspace": "Tritt einem Arbeitsbereich bei", - "Onboarding_subtitle": "Mehr als Team-Zusammenarbeit", - "Onboarding_title": "Willkommen bei Rocket.Chat", - "Onboarding_join_open_description": "Tritt unserem Arbeitsbereich bei um mit dem Rocket.Chat-Team oder der Gemeinschaft zu chatten.", - "Onboarding_agree_terms": "Durch fortfahren stimmst du Rocket.Chats Bedingungen zu", - "Onboarding_less_options": "Weniger Optionen", - "Onboarding_more_options": "Mehr Optionen", - "Online": "Online", - "Only_authorized_users_can_write_new_messages": "Nur autorisierte Benutzer können neue Nachrichten schreiben", - "Open_emoji_selector": "Öffne die Emoji-Auswahl", - "Open_Source_Communication": "Open-Source-Kommunikation", - "Open_your_authentication_app_and_enter_the_code": "Öffne deine Authentifizierungsanwendung und gib den Code ein.", - "OR": "ODER", - "OS": "OS", - "Overwrites_the_server_configuration_and_use_room_config": "Übergeht die Servereinstellungen und nutzt Einstellung für den Raum", - "Password": "Passwort", - "Parent_channel_or_group": "Übergeordneter Kanal oder Gruppe", - "Permalink_copied_to_clipboard": "Permalink in die Zwischenablage kopiert!", - "Phone": "Telefon", - "Pin": "Anheften", - "Pinned_Messages": "Angeheftete Nachrichten", - "pinned": "angeheftet", - "Pinned": "Angeheftet", - "Please_add_a_comment": "Bitte Kommentar hinzufügen", - "Please_enter_your_password": "Gib bitte dein Passwort ein", - "Please_wait": "Bitte warten.", - "Preferences": "Einstellungen", - "Preferences_saved": "Einstellungen gespeichert!", - "Privacy_Policy": " Datenschutzbestimmungen", - "Private_Channel": "Privater Kanal", - "Private": "Privat", - "Processing": "Bearbeite …", - "Profile_saved_successfully": "Profil erfolgreich gespeichert!", - "Profile": "Profil", - "Public_Channel": "Öffentlicher Kanal", - "Public": "Öffentlich", - "Push_Notifications": "Push-Benachrichtigungen", - "Push_Notifications_Alert_Info": "Diese Benachrichtigungen werden dir zugestellt, wenn die App nicht geöffnet ist.", - "Quote": "Zitat", - "Reactions_are_disabled": "Reaktionen sind deaktiviert", - "Reactions_are_enabled": "Reaktionen sind aktiviert", - "Reactions": "Reaktionen", - "Read": "Gelesen", - "Read_External_Permission_Message": "Rocket.Chat benötigt Zugriff auf deine Fotos, Medien und Dateien auf deinem Gerät", - "Read_External_Permission": "Lese-Zugriff auf Medien", - "Read_Only_Channel": "Nur-Lese-Kanal", - "Read_Only": "Schreibgeschützt", - "Read_Receipt": "Lesebestätigung", - "Receive_Group_Mentions": "Erhalte Gruppen-Benachrichtigungen", - "Receive_Group_Mentions_Info": "Empfange @all und @here Erwähnungen", - "Register": "Registrieren", - "Repeat_Password": "Wiederhole das Passwort", - "Replied_on": "Antwortete am:", - "replies": "Antworten", - "reply": "Antworten", - "Reply": "Antworten", - "Report": "Melden", - "Receive_Notification": "Erhalte Benachrichtigungen", - "Receive_notifications_from": "Erhalte Benachrichtigungen von {{name}}", - "Resend": "Erneut senden", - "Reset_password": "Passwort zurücksetzen", - "resetting_password": "Passwort zurücksetzen", - "RESET": "ZURÜCKSETZEN", - "Return": "Zurück", - "Review_app_title": "Gefällt dir diese App?", - "Review_app_desc": "Gib uns 5 Sterne im {{store}}", - "Review_app_yes": "Sicher!", - "Review_app_no": "Nein", - "Review_app_later": "Vielleicht später", - "Review_app_unable_store": "Kann {{store}} nicht öffnen", - "Review_this_app": "App bewerten", - "Remove": "Entfernen", - "remove": "entfernen", - "Roles": "Rollen", - "Room_actions": "Raumaktionen", - "Room_changed_announcement": "Raumansage geändert in: {{announcement}} von {{userBy}}", - "Room_changed_avatar": "Raum-Avatar durch Nutzer {{userBy}} gändert", - "Room_changed_description": "Raumbeschreibung geändert in: {{description}} von {{userBy}}", - "Room_changed_privacy": "Raumtyp geändert in: {{type}} von {{userBy}}", - "Room_changed_topic": "Raumthema geändert in: {{topic}} von {{userBy}}", - "Room_Files": "Raumdateien", - "Room_Info_Edit": "Rauminfo bearbeiten", - "Room_Info": "Rauminfo", - "Room_Members": "Raum-Mitglieder", - "Room_name_changed": "Raumname geändert in {{name}} von {{userBy}}", - "SAVE": "SPEICHERN", - "Save_Changes": "Änderungen speichern", - "Save": "speichern", - "Saved": "gespeichert", - "saving_preferences": "Präferenzen speichern", - "saving_profile": "Profil speichern", - "saving_settings": "Einstellungen speichern", - "saved_to_gallery": "Gespeichert in der Galerie", - "Save_Your_E2E_Password": "Speichere dein Ende-zu-Ende-Passwort", - "Save_Your_Encryption_Password": "Speichere dein Verschlüsselungs-Passwort", - "Save_Your_Encryption_Password_warning": "Dieses Passwort wird nirgends gespeichert, stelle daher sicher, dass du es an einem sicheren Ort aufbewahrst.", - "Save_Your_Encryption_Password_info": "Hinweis: Wenn du dieses Passwort verlierst, gibt es keine Möglichkeit es wieder herzustellen und du wirst nicht mehr auf deine Nachrichten zugreifen können.", - "Search_Messages": "Nachrichten suchen", - "Search": "Suche", - "Search_by": "Suche nach", - "Search_global_users": "Suche nach globalen Benutzern", - "Search_global_users_description": "Wenn aktiviert, kannst du nach Benutzern von anderen Unternehmen oder Servern suchen.", - "Seconds": "{{second}} Sekunden", - "Security_and_privacy": "Sicherheit und Datenschutz", - "Select_Avatar": "Wähle einen Avatar aus", - "Select_Server": "Server auswählen", - "Select_Users": "Benutzer auswählen", - "Select_a_Channel": "Kanal auswählen", - "Select_a_Department": "Abteilung auswählen", - "Select_an_option": "Option auswählen", - "Select_a_User": "Benutzer auswählen", - "Send": "Senden", - "Send_audio_message": "Audio-Nachricht senden", - "Send_crash_report": "Absturzbericht senden", - "Send_message": "Nachricht senden", - "Send_me_the_code_again": "Den Code neu versenden", - "Send_to": "Senden an …", - "Sending_to": "Sende an", - "Sent_an_attachment": "Sende einen Anhang", - "Server": "Server", - "Servers": "Server", - "Server_version": "Server version: {{version}}", - "Set_username_subtitle": "Der Benutzername wird verwendet, damit andere Personen dich in Nachrichten erwähnen können", - "Set_custom_status": "Individuellen Status setzen", - "Set_status": "Status setzen", - "Status_saved_successfully": "Status erfolgreich gesetzt!", - "Settings": "Einstellungen", - "Settings_succesfully_changed": "Einstellungen erfolgreich geändert!", - "Share": "Teilen", - "Share_Link": "Link teilen", - "Share_this_app": "App teilen", - "Show_more": "Mehr anzeigen …", - "Show_Unread_Counter": "Zähler anzeigen", - "Show_Unread_Counter_Info": "Anzahl der ungelesenen Nachrichten anzeigen", - "Sign_in_your_server": "Melde dich bei deinem Server an", - "Sign_Up": "Anmelden", - "Some_field_is_invalid_or_empty": "Ein Feld ist ungültig oder leer", - "Sorting_by": "Sortierung nach {{key}}", - "Sound": "Ton", - "Star_room": "Favorisierter Raum", - "Star": "Favoriten", - "Starred_Messages": "Favorisierte Nachrichten", - "starred": "favorisiert", - "Starred": "Favorisiert", - "Start_of_conversation": "Beginn des Gesprächs", - "Start_a_Discussion": "Beginne eine Diskussion", - "Started_discussion": "Hat eine Diskussion gestartet:", - "Started_call": "Anruf gestartet von {{userBy}}", - "Submit": "einreichen", - "Table": "Tabelle", - "Tags": "Tags", - "Take_a_photo": "Foto aufnehmen", - "Take_a_video": "Video aufnehmen", - "Take_it": "Annehmen!", - "tap_to_change_status": "Tippen um den Status zu ändern", - "Tap_to_view_servers_list": "Tippen, um die Serverliste anzuzeigen", - "Terms_of_Service": " Nutzungsbedingungen", - "Theme": "Erscheinungsbild", - "The_user_wont_be_able_to_type_in_roomName": "Dem Nutzer wird es nicht möglich sein in {{roomName}} zu schreiben", - "The_user_will_be_able_to_type_in_roomName": "Der Nutzer wird in {{roomName}} schreiben können", - "There_was_an_error_while_action": "Während {{action}} ist ein Fehler aufgetreten!", - "This_room_is_blocked": "Dieser Raum ist gesperrt", - "This_room_is_read_only": "Dieser Raum kann nur gelesen werden", - "Thread": "Thread", - "Threads": "Threads", - "Timezone": "Zeitzone", - "To": "An", - "topic": "Thema", - "Topic": "Thema", - "Translate": "Übersetzen", - "Try_again": "Versuche es nochmal", - "Two_Factor_Authentication": "Zwei-Faktor-Authentifizierung", - "Type_the_channel_name_here": "Gib hier den Kanalnamen ein", - "unarchive": "wiederherstellen", - "UNARCHIVE": "WIEDERHERSTELLEN", - "Unblock_user": "Benutzer entsperren", - "Unfavorite": "Nicht mehr favorisieren", - "Unfollowed_thread": "Thread nicht mehr folgen", - "Unmute": "Stummschaltung aufheben", - "unmuted": "Stummschaltung aufgehoben", - "Unpin": "Nachricht nicht mehr anheften", - "unread_messages": "ungelesene", - "Unread": "ungelesene", - "Unread_on_top": "Ungelesene oben", - "Unstar": "von Favoriten entfernen", - "Updating": "Aktualisierung …", - "Uploading": "Hochladen", - "Upload_file_question_mark": "Datei hochladen?", - "User": "Benutzer", - "Users": "Benutzer", - "User_added_by": "Benutzer {{userAdded}} hinzugefügt von {{userBy}}", - "User_Info": "Benutzerinfo", - "User_has_been_key": "Benutzer wurde {{key}}", - "User_is_no_longer_role_by_": "{{user}} ist nicht länger {{role}} von {{userBy}}", - "User_muted_by": "Benutzer {{userMuted}} von {{userBy}} stummgeschaltet", - "User_removed_by": "Benutzer {{userRemoved}} wurde von {{userBy}} entfernt", - "User_sent_an_attachment": "{{user}}: eine Datei gesendet", - "User_unmuted_by": "Benutzer {{userUnmuted}} nicht stummgeschaltet von {{userBy}}", - "User_was_set_role_by_": "{{user}} wurde von {{userBy}} {{role}} festgelegt.", - "Username_is_empty": "Der Benutzername ist leer", - "Username": "Benutzername", - "Username_or_email": "Benutzername oder E-Mail-Adresse", - "Uses_server_configuration": "Nutzt Servereinstellungen", - "Validating": "Validierung", - "Registration_Succeeded": "Registrierung erfolgreich!", - "Verify": "Überprüfen", - "Verify_email_title": "Registrierung erfolgreich!", - "Verify_email_desc": "Wir haben dir eine Email geschickt um deine Anmeldung zu bestätigen. Wenn du keine Email erhältst, komme bitte wieder und versuche es noch einmal.", - "Verify_your_email_for_the_code_we_sent": "Prüfe deine Mails für den Code, den wir dir eben geschickt haben.", - "Video_call": "Videoanruf", - "View_Original": "Original anzeigen", - "Voice_call": "Sprachanruf", - "Waiting_for_network": "Warte auf das Netzwerk …", - "Websocket_disabled": "Websockets sind auf diesem Server nicht aktiviert.\n{{contact}}", - "Welcome": "Herzlich willkommen", - "What_are_you_doing_right_now": "Was machst du gerade?", - "Whats_your_2fa": "Wie lautet dein 2FA-Code?", - "Without_Servers": "Ohne Server", - "Workspaces": "Arbeitsbereiche", - "Would_you_like_to_return_the_inquiry": "Willst du zur Anfrage zurück?", - "Write_External_Permission_Message": "Rocket.Chat benötigt Zugriff auf deine Galerie um Bilder speichern zu können.", - "Write_External_Permission": "Galerie-Zugriff", - "Yes": "Ja", - "Yes_action_it": "Ja, {{action}}!", - "Yesterday": "Gestern", - "You_are_in_preview_mode": "Du befindest dich im Vorschaumodus", - "You_are_offline": "Du bist offline", - "You_can_search_using_RegExp_eg": "Du kannst mit RegExp suchen. z.B. `/ ^ text $ / i`", - "You_colon": "Du: ", - "you_were_mentioned": "Du wurdest erwähnt", - "You_were_removed_from_channel": "Du wurdest aus {{channel}} entfernt", - "you": "du", - "You": "Du", - "Logged_out_by_server": "Du bist vom Server abgemeldet worden. Bitte melde dich wieder an.", - "You_need_to_access_at_least_one_RocketChat_server_to_share_something": "Du benötigst Zugang zu mindestens einem Rocket.Chat-Server um etwas zu teilen.", - "You_need_to_verifiy_your_email_address_to_get_notications": "Du musst deine Email-Adresse bestätigen um Benachrichtigungen zu erhalten.", - "Your_certificate": "Dein Zertifikat", - "Your_invite_link_will_expire_after__usesLeft__uses": "Dein Einladungs-Link wird nach {{usesLeft}} Benutzungen ablaufen.", - "Your_invite_link_will_expire_on__date__or_after__usesLeft__uses": "Dein Einladungs-Link wird am {{date}} oder nach {{usesLeft}} Benutzungen ablaufen.", - "Your_invite_link_will_expire_on__date__": "Dein Einladungs-Link wird am {{date}} ablaufen.", - "Your_invite_link_will_never_expire": "Dein Einladungs-Link wird niemals ablaufen.", - "Your_workspace": "Dein Arbeitsbereich", - "Your_password_is": "Dein Passwort lautet", - "Version_no": "Version: {{version}}", - "You_will_not_be_able_to_recover_this_message": "Du kannst diese Nachricht nicht wiederherstellen!", - "You_will_unset_a_certificate_for_this_server": "Du entfernst ein Zertifikat für diesen Server", - "Change_Language": "Sprache ändern", - "Crash_report_disclaimer": "Wir verfolgen niemals den Inhalt deiner Chats. Der Crash-Report enthält nur für uns relevante Informationen um das Problem zu erkennen und zu beheben.", - "Type_message": "Nachricht schreiben", - "Room_search": "Raum-Suche", - "Room_selection": "Raum-Auswahl 1...9", - "Next_room": "Nächster Raum", - "Previous_room": "Voriger Raum", - "New_room": "Neuer Raum", - "Upload_room": "Zu einem Raum hochladen", - "Search_messages": "Nachrichten durchsuchen", - "Scroll_messages": "Nachrichten durchblättern", - "Reply_latest": "Auf die letzte Nachricht antworten", - "Reply_in_Thread": "Im Thread antworten", - "Server_selection": "Server-Auswahl", - "Server_selection_numbers": "Server-Auswahl 1...9", - "Add_server": "Server hinzufügen", - "New_line": "Zeilenumbruch", - "You_will_be_logged_out_of_this_application": "Du wirst in dieser Anwendung vom Server abgemeldet.", - "Clear": "Löschen", - "This_will_clear_all_your_offline_data": "Dies wird deine Offline-Daten löschen.", - "This_will_remove_all_data_from_this_server": "Dies wird alle Daten von diesem Server löschen.", - "Mark_unread": "Als ungelesen markieren", - "Wait_activation_warning": "Bevor du dich anmelden kannst, muss dein Konto durch einen Administrator freigeschaltet werden.", - "Screen_lock": "Zugriffs-Sperre", - "Local_authentication_biometry_title": "Authentifizieren", - "Local_authentication_biometry_fallback": "Sicherheitscode benutzen", - "Local_authentication_unlock_option": "Entsperren mit Sicherheitscode", - "Local_authentication_change_passcode": "Ändere Sicherheitscode", - "Local_authentication_info": "Anmerkung: Wenn du den Sicherheitscode vergisst, musst du diese App löschen und neu installieren.", - "Local_authentication_facial_recognition": "Gesichtserkennung", - "Local_authentication_fingerprint": "Fingerabdruck", - "Local_authentication_unlock_with_label": "Entsperren mit {{label}}", - "Local_authentication_auto_lock_60": "Nach 1 Minute", - "Local_authentication_auto_lock_300": "Nach 5 Minuten", - "Local_authentication_auto_lock_900": "Nach 15 Minuten", - "Local_authentication_auto_lock_1800": "Nach 30 Minuten", - "Local_authentication_auto_lock_3600": "Nach 1 Stunde", - "Passcode_enter_title": "Gib deinen Sicherheitscode ein", - "Passcode_choose_title": "Setze deinen neuen Sicherheitscode", - "Passcode_choose_confirm_title": "Bestätige deinen neuen Sicherheitscode", - "Passcode_choose_error": "Sicherheitscodes stimmen nicht überein. Probiere es noch einmal.", - "Passcode_choose_force_set": "Sicherheitscode wird vom Admin verlangt", - "Passcode_app_locked_title": "App gesperrt", - "Passcode_app_locked_subtitle": "Versuche es in {{timeLeft}} Sekunden noch einmal.", - "After_seconds_set_by_admin": "Nach {{seconds}} Sekunden (durch den Admin gesetzt)", - "Dont_activate": "Jetzt nicht aktivieren", - "Queued_chats": "Chats in der Warteschlange", - "Queue_is_empty": "Warteschlange leer", - "Logout_from_other_logged_in_locations": "Auf anderen angemeldeten Geräte abmelden", - "You_will_be_logged_out_from_other_locations": "Du wirst auf anderen Geräten abgemeldet.", - "Logged_out_of_other_clients_successfully": "Erfolgreich von anderen Geräten abgemeldet.", - "Logout_failed": "Abmeldung fehlgeschlagen!", - "Log_analytics_events": "Analyse-Ereignisse loggen", - "E2E_encryption_change_password_title": "Verschlüsselungs-Passwort ändern", - "E2E_encryption_change_password_description": "Du kannst nun verschlüsselte private Gruppen und Direktnachrichten versenden. Du kannst außerdem deine bestehenden privaten Gruppen und Direktnachrichten auf Verschlüsselung umstellen. \nDies ist Ende-zu-Ende-Verschlüsselung, daher wird der Schlüssel um die Nachrichten zu ver-/entschlüsseln nicht auf dem Server gespeichert. Aus diesem Grund musst du dieses Passwort an einem sicheren Ort speichern, du wirst es auf anderen Geräten benötigen auf denen du E2E-Verschlüsselung nutzen möchtest.", - "E2E_encryption_change_password_error": "Fehler beim Ändern des E2E-Passworts!", - "E2E_encryption_change_password_success": "E2E-Passwort erfolgreich geändert!", - "E2E_encryption_change_password_message": "Stelle sicher, dass du es noch an einer anderen Stelle gesichert hasst.", - "E2E_encryption_change_password_confirmation": "Ja, ändern", - "E2E_encryption_reset_title": "E2E-Schlüssel zurücksetzen", - "E2E_encryption_reset_description": "Diese Option wird deinen aktuellen E2E-Schlüssel entfernen und dich abmelden. \nWenn du dich wieder anmeldest, wird Rocket.Chat einen neuen Schlüssel erzeugen und deinen Zugang zu allen Kanälen mit einer oder mehreren anwesenden Personen wieder herstellen. \nAufgrund der Funktionsweise von E2E-Verschlüsselung, kann Rocket.Chat nicht deinen Zugang zu Kanälen wieder herstellen, in denen keine andere Person anwesend ist.", - "E2E_encryption_reset_button": "E2E-Schlüssel zurücksetzen", - "E2E_encryption_reset_error": "Fehler beim Zurücksetzen des E2E-Schlüssels!", - "E2E_encryption_reset_message": "Du wirst abgemeldet.", - "E2E_encryption_reset_confirmation": "Ja, zurücksetzen", - "Following": "verfolgte", - "Threads_displaying_all": "zeige alle", - "Threads_displaying_following": "zeige gefolgte", - "Threads_displaying_unread": "Zeige ungelesene", - "No_threads": "Es gibt keine Threads", - "No_threads_following": "Du folgst keinen Threads", - "No_threads_unread": "Es gibt keine ungelesenen Threads", - "Messagebox_Send_to_channel": "an Kanal senden", - "Leader": "Leiter", - "Moderator": "Moderator", - "Owner": "Eigentümer", - "Remove_from_room": "Aus dem Raum entfernen", - "Ignore": "Ignorieren", - "Unignore": "Nicht mehr ignorieren", - "User_has_been_ignored": "Benutzer wurde stumm geschaltet", - "User_has_been_unignored": "Benutzer nicht mehr stumm geschaltet", - "User_has_been_removed_from_s": "Benutzer wurde aus {{s}} entfernt", - "User__username__is_now_a_leader_of__room_name_": "Benutzer {{username}} ist nun Diskussionsleiter von {{room_name}}", - "User__username__is_now_a_moderator_of__room_name_": "Benutzer {{username}} ist nun Moderator von {{room_name}}", - "User__username__is_now_a_owner_of__room_name_": "Benutzer {{username}} ist nun Eigentümer von {{room_name}}", - "User__username__removed_from__room_name__leaders": "Benutzer {{username}} als Diskussionsleiter von {{room_name}} entfernt", - "User__username__removed_from__room_name__moderators": "Benutzer {{username}} als Moderator von {{room_name}} entfernt", - "User__username__removed_from__room_name__owners": "Benutzer {{username}} als Eigentümer von {{room_name}} entfernt", - "The_user_will_be_removed_from_s": "Der Benutzer wird aus {{s}} entfernt", - "Yes_remove_user": "Ja, Benutzer entfernen!", - "Direct_message": "Direktnachricht", - "Message_Ignored": "Nachricht ignoriert. Antippen um sie zu zeigen.", - "Enter_workspace_URL": "Arbeitsbereich-URL", - "Workspace_URL_Example": "z.B. https://rocketchat.deine-firma.de", - "This_room_encryption_has_been_enabled_by__username_": "Die Verschlüsselung dieses Raums wurde von {{username}} aktiviert", - "This_room_encryption_has_been_disabled_by__username_": "Die Verschlüsselung dieses Raums wurde von {{username}} deaktiviert", - "Teams": "Teams", - "No_team_channels_found": "Keine Kanäle gefunden", - "Team_not_found": "Team nicht gefunden", - "Create_Team": "Team erstellen", - "Team_Name": "Team-Name", - "Private_Team": "Privates Team", - "Read_Only_Team": "Nur-Lesen-Team", - "Broadcast_Team": "Broadcast-Team", - "creating_team": "Team erstellen", - "team-name-already-exists": "Ein Team mit diesem Namen existiert bereits", - "Add_Channel_to_Team": "Kanal zum Team hinzufügen", - "Left_The_Team_Successfully": "Das Team erfolgreich verlassen", - "Create_New": "Neu erstellen", - "Add_Existing": "Vorhandenes hinzufügen", - "Add_Existing_Channel": "Vorhandenen Kanal hinzufügen", - "Remove_from_Team": "Aus Team entfernen", - "Auto-join": "Automatischer Beitritt", - "Remove_Team_Room_Warning": "Möchten du diesen Kanal aus dem Team entfernen? Der Kanal wird zurück in den Arbeitsbereich verschoben.", - "Confirmation": "Bestätigung", - "invalid-room": "Ungültiger Raum", - "You_are_leaving_the_team": "Du verlässt das Team '{{team}}'", - "Leave_Team": "Team verlassen", - "Select_Team": "Team auswählen", - "Select_Team_Channels": "Wähle die Kanäle des Teams aus, die du verlassen möchtest.", - "Cannot_leave": "Verlassen nicht möglich", - "Cannot_remove": "Kann nicht entfernt werden", - "Cannot_delete": "Kann nicht gelöscht werden", - "Last_owner_team_room": "Du bist der letzte Eigentümer des Kanals. Wenn du das Team verlässt, bleibt der Kanal innerhalb des Teams aber du verwaltest ihn von außen.", - "last-owner-can-not-be-removed": "Letzter Besitzer kann nicht entfernt werden", - "Remove_User_Teams": "Wähle die Kanäle aus, aus denen der Benutzer entfernt werden soll.", - "Delete_Team": "Team löschen", - "Select_channels_to_delete": "Dies kann nicht rückgängig gemacht werden. Wenn du ein Team löschst, werden alle Chat-Inhalte und und Einstellungen gelöscht.\n\nWähle die Kanäle, die du löschen möchtest. Diejenigen, die du behalten möchtest, werden in deinem Arbeitsbereich verfügbar sein. Beachte, das öffentliche Kanäle öffentlich bleiben und für jeden sichtbar sein werden.", - "You_are_deleting_the_team": "Du löschst dieses Team", - "Removing_user_from_this_team": "Du entfernst {{user}} aus diesem Team", - "Remove_User_Team_Channels": "Wähle die Kanäle aus, aus denen der Benutzer entfernt werden soll.", - "Remove_Member": "Mitglied entfernen", - "leaving_team": "Team verlassen", - "removing_team": "Aus dem Team entfernen", - "moving_channel_to_team": "Kanal zu Team verschieben", - "deleting_team": "Team löschen", - "member-does-not-exist": "Mitglied existiert nicht", - "Convert": "Konvertieren", - "Convert_to_Team": "Zu Team konvertieren", - "Convert_to_Team_Warning": "Dies kann nicht rückgängig gemacht werden. Sobald du einen Kanal in ein Team umgewandelt hast, kannst du ihn nicht mehr zurück in einen Kanal verwandeln.", - "Move_to_Team": "Zu Team hinzufügen", - "Move_Channel_Paragraph": "Das Verschieben eines Kanals innerhalb eines Teams bedeutet, dass dieser Kanal im Kontext des Teams hinzugefügt wird, jedoch haben alle Mitglieder des Kanals, die nicht Mitglied des jeweiligen Teams sind, weiterhin Zugriff auf diesen Kanal, werden aber nicht als Teammitglieder hinzugefügt \n\nDie gesamte Verwaltung des Kanals wird weiterhin von den Eigentümern dieses Kanals vorgenommen.\n\nTeammitglieder und sogar Teameigentümer, die nicht Mitglied dieses Kanals sind, können keinen Zugriff auf den Inhalt des Kanals haben \n\nBitte beachte, dass der Besitzer des Teams in der Lage ist, Mitglieder aus dem Kanal zu entfernen.", - "Move_to_Team_Warning": "Nachdem du die vorherigen Anleitungen zu diesem Verhalten gelesen hast, möchtest du diesen Kanal immer noch in das ausgewählte Team verschieben?", - "Load_More": "Mehr laden", - "Load_Newer": "Neuere laden", - "Load_Older": "Ältere laden", - "Left_The_Room_Successfully": "Raum erfolgreich verlassen", - "Deleted_The_Team_Successfully": "Team erfolgreich gelöscht", - "Deleted_The_Room_Successfully": "Raum erfolgreich gelöscht", - "Convert_to_Channel": "In Kanal umwandeln", - "Converting_Team_To_Channel": "Team in Kanal umwandeln", - "Select_Team_Channels_To_Delete": "Wähle die Kanäle des Teams aus, die du löschen möchtest. Die Kanäle, die du nicht auswählst, werden in den Arbeitsbereich verschoben \n\nBeachte, dass öffentliche Kanäle öffentlich und für alle sichtbar sind.", - "You_are_converting_the_team": "Du wandelst dieses Team in einen Raum um" -} \ No newline at end of file + "1_person_reacted": "1 Person hat reagiert", + "1_user": "1 Benutzer", + "error-action-not-allowed": "{{action}} ist nicht erlaubt", + "error-application-not-found": "Anwendung nicht gefunden", + "error-archived-duplicate-name": "Es gibt bereits einen archivierten Kanal mit dem Namen {{room_name}}", + "error-avatar-invalid-url": "Ungültige Avatar-URL: {{url}}", + "error-avatar-url-handling": "Fehler beim Umgang mit der Avatar-Einstellung von einer URL ({{url}}) für {{username}}", + "error-cant-invite-for-direct-room": "Benutzer können nicht zu Räumen eingeladen werden", + "error-could-not-change-email": "E-Mail konnte nicht geändert werden", + "error-could-not-change-name": "Name konnte nicht geändert werden", + "error-could-not-change-username": "Benutzername konnte nicht geändert werden", + "error-could-not-change-status": "Status konnte nicht geändert werden", + "error-delete-protected-role": "Eine geschützte Rolle kann nicht gelöscht werden", + "error-department-not-found": "Abteilung nicht gefunden", + "error-direct-message-file-upload-not-allowed": "Dateifreigabe in direkten Nachrichten nicht zulässig", + "error-duplicate-channel-name": "Ein Kanal mit dem Namen {{room_name}} ist bereits vorhanden", + "error-email-domain-blacklisted": "Die E-Mail-Domain wird auf die schwarze Liste gesetzt", + "error-email-send-failed": "Fehler beim Versuch, eine E-Mail zu senden: {{message}}", + "error-save-image": "Fehler beim Speichern des Bildes", + "error-save-video": "Fehler beim Speichern des Videos", + "error-field-unavailable": "{{field}} wird bereits verwendet :(", + "error-file-too-large": "Datei ist zu groß", + "error-importer-not-defined": "Der Import wurde nicht korrekt definiert, es fehlt die Importklasse.", + "error-input-is-not-a-valid-field": "{{input}} ist kein gültiges {{field}}", + "error-invalid-actionlink": "Ungültiger Aktionslink", + "error-invalid-arguments": "Ungültige Argumente", + "error-invalid-asset": "Ungültiges Asset", + "error-invalid-channel": "Ungültiger Kanal", + "error-invalid-channel-start-with-chars": "Ungültiger Kanal. Beginne mit @ oder #", + "error-invalid-custom-field": "Ungültiges benutzerdefiniertes Feld", + "error-invalid-custom-field-name": "Ungültiger benutzerdefinierter Feldname. Verwende nur Buchstaben, Zahlen, Bindestriche und Unterstriche.", + "error-invalid-date": "Ungültiges Datum angegeben", + "error-invalid-description": "Ungültige Beschreibung", + "error-invalid-domain": "Ungültige Domain", + "error-invalid-email": "Ungültige E-Mail {{email}}", + "error-invalid-email-address": "Ungültige E-Mail-Adresse", + "error-invalid-file-height": "Ungültige Dateihöhe", + "error-invalid-file-type": "Ungültiger Dateityp", + "error-invalid-file-width": "Ungültige Dateibreite", + "error-invalid-from-address": "Du hast eine ungültige FROM-Adresse mitgeteilt.", + "error-invalid-integration": "Ungültige Integration", + "error-invalid-message": "Ungültige Nachricht", + "error-invalid-method": "Ungültige Methode", + "error-invalid-name": "Ungültiger Name", + "error-invalid-password": "Ungültiges Passwort", + "error-invalid-redirectUri": "Ungültige Weiterleitung", + "error-invalid-role": "Ungültige Rolle", + "error-invalid-room": "Ungültiger Raum", + "error-invalid-room-name": "{{room_name}} ist kein gültiger Raumname", + "error-invalid-room-type": "{{type}} ist kein gültiger Raumtyp.", + "error-invalid-settings": "Ungültige Einstellungen angegeben", + "error-invalid-subscription": "Ungültiges Abonnement", + "error-invalid-token": "Ungültiges Token", + "error-invalid-triggerWords": "Ungültige TriggerWords", + "error-invalid-urls": "Ungültige URLs", + "error-invalid-user": "Ungültiger Benutzer", + "error-invalid-username": "Ungültiger Benutzername", + "error-invalid-webhook-response": "Die Webhook-URL antwortete mit einem anderen Status als 200", + "error-message-deleting-blocked": "Das Löschen von Nachrichten ist gesperrt", + "error-message-editing-blocked": "Die Bearbeitung von Nachrichten ist gesperrt", + "error-message-size-exceeded": "Die Nachrichtengröße überschreitet Message_MaxAllowedSize", + "error-missing-unsubscribe-link": "Du musst den Link [abbestellen] angeben.", + "error-no-owner-channel": "Dieser Raum gehört dir nicht", + "error-no-tokens-for-this-user": "Für diesen Benutzer gibt es keine Token", + "error-not-allowed": "Nicht erlaubt", + "error-not-authorized": "Nicht berechtigt", + "error-push-disabled": "Push ist deaktiviert", + "error-remove-last-owner": "Dies ist der letzte Besitzer. Bitte lege einen neuen Besitzer fest, bevor du diesen entfernst.", + "error-role-in-use": "Rolle kann nicht gelöscht werden, da sie gerade verwendet wird", + "error-role-name-required": "Der Rollenname ist erforderlich", + "error-the-field-is-required": "Das Feld {{field}} ist erforderlich.", + "error-too-many-requests": "Fehler, zu viele Anfragen. Du musst {{seconds}} Sekunden warten, bevor du es erneut versuchst.", + "error-user-is-not-activated": "Benutzer ist nicht aktiviert", + "error-user-has-no-roles": "Benutzer hat keine Rollen", + "error-user-limit-exceeded": "Die Anzahl der Benutzer, die du zu #channel_name einladen möchtest, überschreitet die vom Administrator festgelegte Grenze", + "error-user-not-in-room": "Benutzer ist nicht in diesem Raum", + "error-user-registration-custom-field": "error-user-registration-custom-field", + "error-user-registration-disabled": "Die Benutzerregistrierung ist deaktiviert", + "error-user-registration-secret": "Die Benutzerregistrierung ist nur über eine geheime URL möglich", + "error-you-are-last-owner": "Du bist der letzte Besitzer. Bitte setze einen neuen Besitzer, bevor du den Raum verlässt.", + "error-status-not-allowed": "Unsichtbar-Status ist deaktiviert", + "Actions": "Aktionen", + "activity": "Aktivität", + "Activity": "Aktivität", + "Add_Reaction": "Reaktion hinzufügen", + "Add_Server": "Server hinzufügen", + "Add_users": "Benutzer hinzufügen", + "Admin_Panel": "Admin-Panel", + "Agent": "Agent", + "Alert": "Benachrichtigung", + "alert": "Benachrichtigung", + "alerts": "Benachrichtigungen", + "All_users_in_the_channel_can_write_new_messages": "Alle Benutzer im Kanal können neue Nachrichten schreiben", + "All_users_in_the_team_can_write_new_messages": "Alle Mitglieder eines Teams können neue Nachrichten schreiben", + "A_meaningful_name_for_the_discussion_room": "Ein aussagekräftiger Name für den Diskussionsraum", + "All": "alle", + "All_Messages": "Alle Nachrichten", + "Allow_Reactions": "Reaktionen zulassen", + "Alphabetical": "Alphabetisch", + "and_more": "und mehr", + "and": "und", + "announcement": "Ankündigung", + "Announcement": "Ankündigung", + "Apply_Your_Certificate": "Wende dein Zertifikat an", + "ARCHIVE": "ARCHIV", + "archive": "Archiv", + "are_typing": "tippen", + "Are_you_sure_question_mark": "Bist du sicher?", + "Are_you_sure_you_want_to_leave_the_room": "Möchtest du den Raum wirklich verlassen {{room}}?", + "Audio": "Audio", + "Authenticating": "Authentifizierung", + "Automatic": "Automatisch", + "Auto_Translate": "Automatische Übersetzung", + "Avatar_changed_successfully": "Avatar erfolgreich geändert!", + "Avatar_Url": "Avatar-URL", + "Away": "Abwesend", + "Back": "Zurück", + "Black": "Schwarz", + "Block_user": "Benutzer blockieren", + "Browser": "Browser", + "Broadcast_channel_Description": "Nur autorisierte Benutzer können neue Nachrichten schreiben, die anderen Benutzer können jedoch antworten", + "Broadcast_Channel": "Broadcast-Kanal", + "Busy": "Beschäftigt", + "By_proceeding_you_are_agreeing": "Indem du fortfährst, stimmst du zu unserem", + "Cancel_editing": "Bearbeitung abbrechen", + "Cancel_recording": "Aufnahme abbrechen", + "Cancel": "Abbrechen", + "changing_avatar": "Avatar wechseln", + "creating_channel": "Kanal erstellen", + "creating_invite": "Einladung erstellen", + "Channel_Name": "Kanal Name", + "Channels": "Kanäle", + "Chats": "Chats", + "Call_already_ended": "Anruf bereits beendet!", + "Clear_cookies_alert": "Möchtest du alle Cookies löschen?", + "Clear_cookies_desc": "Diese Aktion wird alle Login-Cookies löschen und erlaubt es dir, dich mit einem anderen Konto anzumelden.", + "Clear_cookies_yes": "Ja, Cookies löschen", + "Clear_cookies_no": "Nein, Cookies behalten", + "Click_to_join": "Klicken um beizutreten!", + "Close": "Schließen", + "Close_emoji_selector": "Schließe die Emoji-Auswahl", + "Closing_chat": "Chat schließen", + "Change_language_loading": "Ändere Sprache.", + "Chat_closed_by_agent": "Chat durch den Agenten geschlossen", + "Choose": "Wählen", + "Choose_from_library": "Aus der Bibliothek auswählen", + "Choose_file": "Datei auswählen", + "Choose_where_you_want_links_be_opened": "Entscheide, wie Links geöffnet werden sollen", + "Code": "Code", + "Code_or_password_invalid": "Code oder Passwort sind falsch", + "Collaborative": "Kollaborativ", + "Confirm": "Bestätigen", + "Connect": "Verbinden", + "Connected": "Verbunden", + "connecting_server": "verbinde zum Server", + "Connecting": "Verbinden ...", + "Contact_us": "Kontaktiere uns", + "Contact_your_server_admin": "Kontaktiere deinen Server-Administrator.", + "Continue_with": "Weitermachen mit", + "Copied_to_clipboard": "In die Zwischenablage kopiert!", + "Copy": "Kopieren", + "Conversation": "Konversationen", + "Permalink": "Permalink", + "Certificate_password": "Zertifikats-Passwort", + "Clear_cache": "Lokalen Server-Cache leeren", + "Clear_cache_loading": "Leere Cache.", + "Whats_the_password_for_your_certificate": "Wie lautet das Passwort für dein Zertifikat?", + "Create_account": "Ein Konto erstellen", + "Create_Channel": "Kanal erstellen", + "Create_Direct_Messages": "Direkt-Nachricht erstellen", + "Create_Discussion": "Diskussion erstellen", + "Created_snippet": "ein Snippet erstellt", + "Create_a_new_workspace": "Erstelle einen neuen Arbeitsbereich", + "Create": "Erstellen", + "Custom_Status": "Eigener Status", + "Dark": "Dunkel", + "Dark_level": "Dunkelstufe", + "Default": "Standard", + "Default_browser": "Standard-Browser", + "Delete_Room_Warning": "Durch das Löschen eines Raums werden alle Nachrichten gelöscht, die im Raum gepostet wurden. Das kann nicht rückgängig gemacht werden.", + "Department": "Abteilung", + "delete": "löschen", + "Delete": "Löschen", + "DELETE": "LÖSCHEN", + "move": "verschieben", + "deleting_room": "lösche Raum", + "description": "Beschreibung", + "Description": "Beschreibung", + "Desktop_Options": "Desktop-Einstellungen", + "Desktop_Notifications": "Desktop-Benachrichtigungen", + "Desktop_Alert_info": "Diese Benachrichtigungen werden auf dem Desktop angezeigt", + "Directory": "Verzeichnis", + "Direct_Messages": "Direktnachrichten", + "Disable_notifications": "Benachrichtigungen deaktiveren", + "Discussions": "Diskussionen", + "Discussion_Desc": "Hilft dir die Übersicht zu behalten! Durch das Erstellen einer Diskussion wird ein Unter-Kanal im ausgewählten Raum erzeugt und beide verknüpft.", + "Discussion_name": "Diskussions-Name", + "Done": "Erledigt", + "Dont_Have_An_Account": "Du hast noch kein Konto?", + "Do_you_have_an_account": "Du hast schon ein Konto?", + "Do_you_have_a_certificate": "Hast du ein Zertifikat?", + "Do_you_really_want_to_key_this_room_question_mark": "Möchtest du diesen Raum wirklich {{key}}?", + "E2E_Encryption": "E2E-Verschlüsselung", + "E2E_How_It_Works_info1": "Du kannst nun verschlüsselte private Gruppen und Direktnachrichten versenden. Du kannst außerdem deine bestehenden privaten Gruppen und Direktnachrichten auf Verschlüsselung umstellen.", + "E2E_How_It_Works_info2": "Dies ist *Ende-zu-Ende-Verschlüsselung*, daher wird der Schlüssel um die Nachrichten zu ver-/entschlüsseln nicht auf dem Server gespeichert. Aus diesem Grund musst du dieses Passwort an einem sicheren Ort speichern, so dass du später bei Bedarf darauf zugreifen kannst.", + "E2E_How_It_Works_info3": "Wenn du fortfährst, wird automatisch ein ein E2E-Passwort erzeugt.", + "E2E_How_It_Works_info4": "Du kannst außerdem jederzeit, in jedem Browser, in dem du das bestehende Passwort eingegeben hast, ein neues Passwort setzen.", + "edit": "bearbeiten", + "edited": "bearbeitet", + "Edit": "Bearbeiten", + "Edit_Status": "Status ändern", + "Edit_Invite": "Einladung bearbeiten", + "End_to_end_encrypted_room": "Ende-zu-Ende-verschlüsselter Raum", + "end_to_end_encryption": "Nicht mehr Ende-zu-Ende verschlüsseln", + "Email_Notification_Mode_All": "Jede Erwähnung/Direktnachricht", + "Email_Notification_Mode_Disabled": "Deaktiviert", + "Email_or_password_field_is_empty": "Das E-Mail- oder Passwortfeld ist leer", + "Email": "E-mail", + "email": "E-mail", + "Empty_title": "leerer Titel", + "Enable_Auto_Translate": "Automatische Übersetzung aktivieren", + "Enable_notifications": "Benachrichtigungen aktivieren", + "Encrypted": "Verschlüsselt", + "Encrypted_message": "Verschlüsselte Nachricht", + "Enter_Your_E2E_Password": "Gib dein Ende-zu-Ende-Passwort ein", + "Enter_Your_Encryption_Password_desc1": "Das erlaubt dir auf deine verschlüsselten privaten Gruppen und Direktnachrichten zuzugreifen.", + "Enter_Your_Encryption_Password_desc2": "Du musst das Passwort zur Ver-/Entschlüsselung an jeder Stelle eingeben, an dem du diesen Chat verwendest.", + "Encryption_error_title": "Dein Verschlüsselungs-Passwort scheint falsch zu sein", + "Encryption_error_desc": "Es war nicht möglich deinen Verschlüsselungs-Key zu importieren.", + "Everyone_can_access_this_channel": "Jeder kann auf diesen Kanal zugreifen", + "Everyone_can_access_this_team": "Jeder kann auf dieses Team zugreifen", + "Error_uploading": "Fehler beim Hochladen", + "Expiration_Days": "läuft ab (Tage)", + "Favorite": "Favorisieren", + "Favorites": "Favoriten", + "Files": "Dateien", + "File_description": "Dateibeschreibung", + "File_name": "Dateiname", + "Finish_recording": "Beende die Aufnahme", + "Following_thread": "Thread folgen", + "For_your_security_you_must_enter_your_current_password_to_continue": "Zu deiner Sicherheit musst du dein aktuelles Passwort eingeben, um fortzufahren", + "Forgot_password_If_this_email_is_registered": "Wenn diese E-Mail registriert ist, senden wir Anweisungen zum Zurücksetzen deines Passworts. Wenn du nicht in Kürze keine E-Mail erhältst, versuche es bitte erneut.", + "Forgot_password": "Passwort vergessen", + "Forgot_Password": "Passwort vergessen", + "Forward": "Weiterleiten", + "Forward_Chat": "Chat weiterleiten", + "Forward_to_department": "Weiterleiten an Abteilung", + "Forward_to_user": "Weiterleiten an Benutzer", + "Full_table": "Klicken um die ganze Tabelle anzuzeigen", + "Generate_New_Link": "Neuen Link erstellen", + "Group_by_favorites": "Nach Favoriten gruppieren", + "Group_by_type": "Gruppieren nach Typ", + "Hide": "Ausblenden", + "Has_joined_the_channel": "Ist dem Kanal beigetreten", + "Has_joined_the_conversation": "Hat sich dem Gespräch angeschlossen", + "Has_left_the_channel": "Hat den Kanal verlassen", + "Hide_System_Messages": "Systemnachrichten verstecken", + "Hide_type_messages": "Verstecke \"{{type}}\"-Nachrichten", + "How_It_Works": "Wie es funktioniert", + "Message_HideType_uj": "Benutzer beigetreten", + "Message_HideType_ul": "Benutzer verlassen", + "Message_HideType_ru": "Benutzer entfernt", + "Message_HideType_au": "Benutzer hinzugefügt", + "Message_HideType_mute_unmute": "Benutzer stummgeschaltet / freigegeben", + "Message_HideType_r": "Raumname geändert", + "Message_HideType_ut": "Benutzer ist der Unterhaltung beigetreten", + "Message_HideType_wm": "Willkommen", + "Message_HideType_rm": "Nachricht entfernt", + "Message_HideType_subscription_role_added": "Rolle wurde gesetzt", + "Message_HideType_subscription_role_removed": "Rolle nicht länger definiert", + "Message_HideType_room_archived": "Raum archiviert", + "Message_HideType_room_unarchived": "Raum nicht mehr archiviert", + "I_Saved_My_E2E_Password": "Ich habe mein Ende-zu-Ende-Passwort gesichert", + "IP": "IP", + "In_app": "In-App-Browser", + "In_App_And_Desktop": "In-App und Desktop", + "In_App_and_Desktop_Alert_info": "Zeigt ein Banner oben am Bildschirm, wenn die App geöffnet ist und eine Benachrichtigung auf dem Desktop.", + "Invisible": "Unsichtbar", + "Invite": "Einladen", + "is_a_valid_RocketChat_instance": "ist eine gültige Rocket.Chat-Instanz", + "is_not_a_valid_RocketChat_instance": "ist keine gültige Rocket.Chat-Instanz", + "is_typing": "schreibt", + "Invalid_or_expired_invite_token": "Ungültiger oder abgelaufener Einladungscode", + "Invalid_server_version": "Der Server, zu dem du dich verbinden möchtest, verwendet eine Version, die von der App nicht mehr unterstützt wird: {{currentVersion}}.\n\nWir benötigen Version {{minVersion}}.", + "Invite_Link": "Einladungs-Link", + "Invite_users": "Benutzer einladen", + "Join": "Beitreten", + "Join_Code": "Beitrittscode", + "Insert_Join_Code": "Beitrittscode eingeben", + "Join_our_open_workspace": "Tritt unserem offenen Arbeitsbereich bei", + "Join_your_workspace": "Tritt deinem Arbeitsbereich bei", + "Just_invited_people_can_access_this_channel": "Nur eingeladene Personen können auf diesen Kanal zugreifen", + "Just_invited_people_can_access_this_team": "Nur eingeladene Personen können auf das Team zugreifen", + "Language": "Sprache", + "last_message": "letzte Nachricht", + "Leave_channel": "Kanal verlassen", + "leaving_room": "Raum verlassen", + "Leave": "Raum verlassen", + "leave": "verlassen", + "Legal": "Rechtliches", + "Light": "Hell", + "License": "Lizenz", + "Livechat": "Live-Chat", + "Livechat_edit": "Live-Chat bearbeiten", + "Login": "Anmeldung", + "Login_error": "Deine Zugangsdaten wurden abgelehnt! Bitte versuche es erneut.", + "Login_with": "Einloggen mit", + "Logging_out": "Abmelden.", + "Logout": "Abmelden", + "Max_number_of_uses": "Maximale Anzahl der Benutzungen", + "Max_number_of_users_allowed_is_number": "Maximale Anzahl von erlaubten Benutzern ist {{maxUsers}}", + "members": "Mitglieder", + "Members": "Mitglieder", + "Mentioned_Messages": "Erwähnte Nachrichten", + "mentioned": "erwähnt", + "Mentions": "Erwähnungen", + "Message_accessibility": "Nachricht von {{user}} um {{time}}: {{message}}", + "Message_actions": "Nachrichtenaktionen", + "Message_pinned": "Eine Nachricht wurde angeheftet", + "Message_removed": "Nachricht entfernt", + "Message_starred": "Nachricht favorisiert", + "Message_unstarred": "Nachricht nicht mehr favorisiert", + "message": "Nachricht", + "messages": "Nachrichten", + "Message": "Nachricht", + "Messages": "Mitteilungen", + "Message_Reported": "Nachricht gemeldet", + "Microphone_Permission_Message": "Rocket.Chat benötigt Zugriff auf das Mikrofon, damit du eine Audionachricht senden kannst.", + "Microphone_Permission": "Mikrofonberechtigung", + "Mute": "Diesem Benutzer das Chatten verbieten", + "muted": "stummgeschaltet", + "My_servers": "Meine Server", + "N_people_reacted": "{{n}} Leute haben reagiert", + "N_users": "{{n}} Benutzer", + "N_channels": "{{n}} Kanäle", + "name": "Name", + "Name": "Name", + "Navigation_history": "Navigations-Verlauf", + "Never": "Niemals", + "New_Message": "Neue Nachricht", + "New_Password": "Neues Kennwort", + "New_Server": "Neuer Server", + "Next": "Nächster", + "No_files": "Keine Dateien", + "No_limit": "Kein Limit", + "No_mentioned_messages": "Keine Nachrichten mit Erwähnungen", + "No_pinned_messages": "Keine angehefteten Nachrichten", + "No_results_found": "Keine Ergebnisse gefunden", + "No_starred_messages": "Keine markierten Nachrichten", + "No_thread_messages": "Keine Threadnachrichten", + "No_label_provided": "Kein(e) {{label}} gesetzt.", + "No_Message": "Keine Nachricht", + "No_messages_yet": "Noch keine Nachrichten", + "No_Reactions": "Keine Reaktionen", + "No_Read_Receipts": "Keine Lesebestätigungen", + "Not_logged": "Nicht protokolliert", + "Not_RC_Server": "Dies ist kein Rocket.Chat-Server.\n{{contact}}", + "Nothing": "Nichts", + "Nothing_to_save": "Nichts zu speichern!", + "Notify_active_in_this_room": "Aktive Benutzer in diesem Raum benachrichtigen", + "Notify_all_in_this_room": "Benachrichtige alle in diesem Raum", + "Notifications": "Benachrichtigungen", + "Notification_Duration": "Benachrichtigungsdauer", + "Notification_Preferences": "Benachrichtigungseinstellungen", + "No_available_agents_to_transfer": "Keine Agenten für den Transfer verfügbar", + "Offline": "Offline", + "Oops": "Hoppla!", + "Omnichannel": "Omnichannel", + "Open_Livechats": "Offene Chats", + "Omnichannel_enable_alert": "Du bist in Omnichannel nicht verfügbar. Möchtest du erreichbar sein?", + "Onboarding_description": "Ein Arbeitsbereich ist der Ort für die Zusammenarbeit deines Teams oder Organisation. Bitte den Admin des Arbeitsbereichs um eine Adresse, um ihm beizutreten, oder erstelle einen Arbeitsbereich für dein Team.", + "Onboarding_join_workspace": "Tritt einem Arbeitsbereich bei", + "Onboarding_subtitle": "Mehr als Team-Zusammenarbeit", + "Onboarding_title": "Willkommen bei Rocket.Chat", + "Onboarding_join_open_description": "Tritt unserem Arbeitsbereich bei um mit dem Rocket.Chat-Team oder der Gemeinschaft zu chatten.", + "Onboarding_agree_terms": "Durch fortfahren stimmst du Rocket.Chats Bedingungen zu", + "Onboarding_less_options": "Weniger Optionen", + "Onboarding_more_options": "Mehr Optionen", + "Online": "Online", + "Only_authorized_users_can_write_new_messages": "Nur autorisierte Benutzer können neue Nachrichten schreiben", + "Open_emoji_selector": "Öffne die Emoji-Auswahl", + "Open_Source_Communication": "Open-Source-Kommunikation", + "Open_your_authentication_app_and_enter_the_code": "Öffne deine Authentifizierungsanwendung und gib den Code ein.", + "OR": "ODER", + "OS": "OS", + "Overwrites_the_server_configuration_and_use_room_config": "Übergeht die Servereinstellungen und nutzt Einstellung für den Raum", + "Password": "Passwort", + "Parent_channel_or_group": "Übergeordneter Kanal oder Gruppe", + "Permalink_copied_to_clipboard": "Permalink in die Zwischenablage kopiert!", + "Phone": "Telefon", + "Pin": "Anheften", + "Pinned_Messages": "Angeheftete Nachrichten", + "pinned": "angeheftet", + "Pinned": "Angeheftet", + "Please_add_a_comment": "Bitte Kommentar hinzufügen", + "Please_enter_your_password": "Gib bitte dein Passwort ein", + "Please_wait": "Bitte warten.", + "Preferences": "Einstellungen", + "Preferences_saved": "Einstellungen gespeichert!", + "Privacy_Policy": " Datenschutzbestimmungen", + "Private_Channel": "Privater Kanal", + "Private": "Privat", + "Processing": "Bearbeite …", + "Profile_saved_successfully": "Profil erfolgreich gespeichert!", + "Profile": "Profil", + "Public_Channel": "Öffentlicher Kanal", + "Public": "Öffentlich", + "Push_Notifications": "Push-Benachrichtigungen", + "Push_Notifications_Alert_Info": "Diese Benachrichtigungen werden dir zugestellt, wenn die App nicht geöffnet ist.", + "Quote": "Zitat", + "Reactions_are_disabled": "Reaktionen sind deaktiviert", + "Reactions_are_enabled": "Reaktionen sind aktiviert", + "Reactions": "Reaktionen", + "Read": "Gelesen", + "Read_External_Permission_Message": "Rocket.Chat benötigt Zugriff auf deine Fotos, Medien und Dateien auf deinem Gerät", + "Read_External_Permission": "Lese-Zugriff auf Medien", + "Read_Only_Channel": "Nur-Lese-Kanal", + "Read_Only": "Schreibgeschützt", + "Read_Receipt": "Lesebestätigung", + "Receive_Group_Mentions": "Erhalte Gruppen-Benachrichtigungen", + "Receive_Group_Mentions_Info": "Empfange @all und @here Erwähnungen", + "Register": "Registrieren", + "Repeat_Password": "Wiederhole das Passwort", + "Replied_on": "Antwortete am:", + "replies": "Antworten", + "reply": "Antworten", + "Reply": "Antworten", + "Report": "Melden", + "Receive_Notification": "Erhalte Benachrichtigungen", + "Receive_notifications_from": "Erhalte Benachrichtigungen von {{name}}", + "Resend": "Erneut senden", + "Reset_password": "Passwort zurücksetzen", + "resetting_password": "Passwort zurücksetzen", + "RESET": "ZURÜCKSETZEN", + "Return": "Zurück", + "Review_app_title": "Gefällt dir diese App?", + "Review_app_desc": "Gib uns 5 Sterne im {{store}}", + "Review_app_yes": "Sicher!", + "Review_app_no": "Nein", + "Review_app_later": "Vielleicht später", + "Review_app_unable_store": "Kann {{store}} nicht öffnen", + "Review_this_app": "App bewerten", + "Remove": "Entfernen", + "remove": "entfernen", + "Roles": "Rollen", + "Room_actions": "Raumaktionen", + "Room_changed_announcement": "Raumansage geändert in: {{announcement}} von {{userBy}}", + "Room_changed_avatar": "Raum-Avatar durch Nutzer {{userBy}} gändert", + "Room_changed_description": "Raumbeschreibung geändert in: {{description}} von {{userBy}}", + "Room_changed_privacy": "Raumtyp geändert in: {{type}} von {{userBy}}", + "Room_changed_topic": "Raumthema geändert in: {{topic}} von {{userBy}}", + "Room_Files": "Raumdateien", + "Room_Info_Edit": "Rauminfo bearbeiten", + "Room_Info": "Rauminfo", + "Room_Members": "Raum-Mitglieder", + "Room_name_changed": "Raumname geändert in {{name}} von {{userBy}}", + "SAVE": "SPEICHERN", + "Save_Changes": "Änderungen speichern", + "Save": "speichern", + "Saved": "gespeichert", + "saving_preferences": "Präferenzen speichern", + "saving_profile": "Profil speichern", + "saving_settings": "Einstellungen speichern", + "saved_to_gallery": "Gespeichert in der Galerie", + "Save_Your_E2E_Password": "Speichere dein Ende-zu-Ende-Passwort", + "Save_Your_Encryption_Password": "Speichere dein Verschlüsselungs-Passwort", + "Save_Your_Encryption_Password_warning": "Dieses Passwort wird nirgends gespeichert, stelle daher sicher, dass du es an einem sicheren Ort aufbewahrst.", + "Save_Your_Encryption_Password_info": "Hinweis: Wenn du dieses Passwort verlierst, gibt es keine Möglichkeit es wieder herzustellen und du wirst nicht mehr auf deine Nachrichten zugreifen können.", + "Search_Messages": "Nachrichten suchen", + "Search": "Suche", + "Search_by": "Suche nach", + "Search_global_users": "Suche nach globalen Benutzern", + "Search_global_users_description": "Wenn aktiviert, kannst du nach Benutzern von anderen Unternehmen oder Servern suchen.", + "Seconds": "{{second}} Sekunden", + "Security_and_privacy": "Sicherheit und Datenschutz", + "Select_Avatar": "Wähle einen Avatar aus", + "Select_Server": "Server auswählen", + "Select_Users": "Benutzer auswählen", + "Select_a_Channel": "Kanal auswählen", + "Select_a_Department": "Abteilung auswählen", + "Select_an_option": "Option auswählen", + "Select_a_User": "Benutzer auswählen", + "Send": "Senden", + "Send_audio_message": "Audio-Nachricht senden", + "Send_crash_report": "Absturzbericht senden", + "Send_message": "Nachricht senden", + "Send_me_the_code_again": "Den Code neu versenden", + "Send_to": "Senden an …", + "Sending_to": "Sende an", + "Sent_an_attachment": "Sende einen Anhang", + "Server": "Server", + "Servers": "Server", + "Server_version": "Server version: {{version}}", + "Set_username_subtitle": "Der Benutzername wird verwendet, damit andere Personen dich in Nachrichten erwähnen können", + "Set_custom_status": "Individuellen Status setzen", + "Set_status": "Status setzen", + "Status_saved_successfully": "Status erfolgreich gesetzt!", + "Settings": "Einstellungen", + "Settings_succesfully_changed": "Einstellungen erfolgreich geändert!", + "Share": "Teilen", + "Share_Link": "Link teilen", + "Share_this_app": "App teilen", + "Show_more": "Mehr anzeigen …", + "Show_Unread_Counter": "Zähler anzeigen", + "Show_Unread_Counter_Info": "Anzahl der ungelesenen Nachrichten anzeigen", + "Sign_in_your_server": "Melde dich bei deinem Server an", + "Sign_Up": "Anmelden", + "Some_field_is_invalid_or_empty": "Ein Feld ist ungültig oder leer", + "Sorting_by": "Sortierung nach {{key}}", + "Sound": "Ton", + "Star_room": "Favorisierter Raum", + "Star": "Favoriten", + "Starred_Messages": "Favorisierte Nachrichten", + "starred": "favorisiert", + "Starred": "Favorisiert", + "Start_of_conversation": "Beginn des Gesprächs", + "Start_a_Discussion": "Beginne eine Diskussion", + "Started_discussion": "Hat eine Diskussion gestartet:", + "Started_call": "Anruf gestartet von {{userBy}}", + "Submit": "einreichen", + "Table": "Tabelle", + "Tags": "Tags", + "Take_a_photo": "Foto aufnehmen", + "Take_a_video": "Video aufnehmen", + "Take_it": "Annehmen!", + "tap_to_change_status": "Tippen um den Status zu ändern", + "Tap_to_view_servers_list": "Tippen, um die Serverliste anzuzeigen", + "Terms_of_Service": " Nutzungsbedingungen", + "Theme": "Erscheinungsbild", + "The_user_wont_be_able_to_type_in_roomName": "Dem Nutzer wird es nicht möglich sein in {{roomName}} zu schreiben", + "The_user_will_be_able_to_type_in_roomName": "Der Nutzer wird in {{roomName}} schreiben können", + "There_was_an_error_while_action": "Während {{action}} ist ein Fehler aufgetreten!", + "This_room_is_blocked": "Dieser Raum ist gesperrt", + "This_room_is_read_only": "Dieser Raum kann nur gelesen werden", + "Thread": "Thread", + "Threads": "Threads", + "Timezone": "Zeitzone", + "To": "An", + "topic": "Thema", + "Topic": "Thema", + "Translate": "Übersetzen", + "Try_again": "Versuche es nochmal", + "Two_Factor_Authentication": "Zwei-Faktor-Authentifizierung", + "Type_the_channel_name_here": "Gib hier den Kanalnamen ein", + "unarchive": "wiederherstellen", + "UNARCHIVE": "WIEDERHERSTELLEN", + "Unblock_user": "Benutzer entsperren", + "Unfavorite": "Nicht mehr favorisieren", + "Unfollowed_thread": "Thread nicht mehr folgen", + "Unmute": "Stummschaltung aufheben", + "unmuted": "Stummschaltung aufgehoben", + "Unpin": "Nachricht nicht mehr anheften", + "unread_messages": "ungelesene", + "Unread": "ungelesene", + "Unread_on_top": "Ungelesene oben", + "Unstar": "von Favoriten entfernen", + "Updating": "Aktualisierung …", + "Uploading": "Hochladen", + "Upload_file_question_mark": "Datei hochladen?", + "User": "Benutzer", + "Users": "Benutzer", + "User_added_by": "Benutzer {{userAdded}} hinzugefügt von {{userBy}}", + "User_Info": "Benutzerinfo", + "User_has_been_key": "Benutzer wurde {{key}}", + "User_is_no_longer_role_by_": "{{user}} ist nicht länger {{role}} von {{userBy}}", + "User_muted_by": "Benutzer {{userMuted}} von {{userBy}} stummgeschaltet", + "User_removed_by": "Benutzer {{userRemoved}} wurde von {{userBy}} entfernt", + "User_sent_an_attachment": "{{user}}: eine Datei gesendet", + "User_unmuted_by": "Benutzer {{userUnmuted}} nicht stummgeschaltet von {{userBy}}", + "User_was_set_role_by_": "{{user}} wurde von {{userBy}} {{role}} festgelegt.", + "Username_is_empty": "Der Benutzername ist leer", + "Username": "Benutzername", + "Username_or_email": "Benutzername oder E-Mail-Adresse", + "Uses_server_configuration": "Nutzt Servereinstellungen", + "Validating": "Validierung", + "Registration_Succeeded": "Registrierung erfolgreich!", + "Verify": "Überprüfen", + "Verify_email_title": "Registrierung erfolgreich!", + "Verify_email_desc": "Wir haben dir eine Email geschickt um deine Anmeldung zu bestätigen. Wenn du keine Email erhältst, komme bitte wieder und versuche es noch einmal.", + "Verify_your_email_for_the_code_we_sent": "Prüfe deine Mails für den Code, den wir dir eben geschickt haben.", + "Video_call": "Videoanruf", + "View_Original": "Original anzeigen", + "Voice_call": "Sprachanruf", + "Waiting_for_network": "Warte auf das Netzwerk …", + "Websocket_disabled": "Websockets sind auf diesem Server nicht aktiviert.\n{{contact}}", + "Welcome": "Herzlich willkommen", + "What_are_you_doing_right_now": "Was machst du gerade?", + "Whats_your_2fa": "Wie lautet dein 2FA-Code?", + "Without_Servers": "Ohne Server", + "Workspaces": "Arbeitsbereiche", + "Would_you_like_to_return_the_inquiry": "Willst du zur Anfrage zurück?", + "Write_External_Permission_Message": "Rocket.Chat benötigt Zugriff auf deine Galerie um Bilder speichern zu können.", + "Write_External_Permission": "Galerie-Zugriff", + "Yes": "Ja", + "Yes_action_it": "Ja, {{action}}!", + "Yesterday": "Gestern", + "You_are_in_preview_mode": "Du befindest dich im Vorschaumodus", + "You_are_offline": "Du bist offline", + "You_can_search_using_RegExp_eg": "Du kannst mit RegExp suchen. z.B. `/ ^ text $ / i`", + "You_colon": "Du: ", + "you_were_mentioned": "Du wurdest erwähnt", + "You_were_removed_from_channel": "Du wurdest aus {{channel}} entfernt", + "you": "du", + "You": "Du", + "Logged_out_by_server": "Du bist vom Server abgemeldet worden. Bitte melde dich wieder an.", + "You_need_to_access_at_least_one_RocketChat_server_to_share_something": "Du benötigst Zugang zu mindestens einem Rocket.Chat-Server um etwas zu teilen.", + "You_need_to_verifiy_your_email_address_to_get_notications": "Du musst deine Email-Adresse bestätigen um Benachrichtigungen zu erhalten.", + "Your_certificate": "Dein Zertifikat", + "Your_invite_link_will_expire_after__usesLeft__uses": "Dein Einladungs-Link wird nach {{usesLeft}} Benutzungen ablaufen.", + "Your_invite_link_will_expire_on__date__or_after__usesLeft__uses": "Dein Einladungs-Link wird am {{date}} oder nach {{usesLeft}} Benutzungen ablaufen.", + "Your_invite_link_will_expire_on__date__": "Dein Einladungs-Link wird am {{date}} ablaufen.", + "Your_invite_link_will_never_expire": "Dein Einladungs-Link wird niemals ablaufen.", + "Your_workspace": "Dein Arbeitsbereich", + "Your_password_is": "Dein Passwort lautet", + "Version_no": "Version: {{version}}", + "You_will_not_be_able_to_recover_this_message": "Du kannst diese Nachricht nicht wiederherstellen!", + "You_will_unset_a_certificate_for_this_server": "Du entfernst ein Zertifikat für diesen Server", + "Change_Language": "Sprache ändern", + "Crash_report_disclaimer": "Wir verfolgen niemals den Inhalt deiner Chats. Der Crash-Report enthält nur für uns relevante Informationen um das Problem zu erkennen und zu beheben.", + "Type_message": "Nachricht schreiben", + "Room_search": "Raum-Suche", + "Room_selection": "Raum-Auswahl 1...9", + "Next_room": "Nächster Raum", + "Previous_room": "Voriger Raum", + "New_room": "Neuer Raum", + "Upload_room": "Zu einem Raum hochladen", + "Search_messages": "Nachrichten durchsuchen", + "Scroll_messages": "Nachrichten durchblättern", + "Reply_latest": "Auf die letzte Nachricht antworten", + "Reply_in_Thread": "Im Thread antworten", + "Server_selection": "Server-Auswahl", + "Server_selection_numbers": "Server-Auswahl 1...9", + "Add_server": "Server hinzufügen", + "New_line": "Zeilenumbruch", + "You_will_be_logged_out_of_this_application": "Du wirst in dieser Anwendung vom Server abgemeldet.", + "Clear": "Löschen", + "This_will_clear_all_your_offline_data": "Dies wird deine Offline-Daten löschen.", + "This_will_remove_all_data_from_this_server": "Dies wird alle Daten von diesem Server löschen.", + "Mark_unread": "Als ungelesen markieren", + "Wait_activation_warning": "Bevor du dich anmelden kannst, muss dein Konto durch einen Administrator freigeschaltet werden.", + "Screen_lock": "Zugriffs-Sperre", + "Local_authentication_biometry_title": "Authentifizieren", + "Local_authentication_biometry_fallback": "Sicherheitscode benutzen", + "Local_authentication_unlock_option": "Entsperren mit Sicherheitscode", + "Local_authentication_change_passcode": "Ändere Sicherheitscode", + "Local_authentication_info": "Anmerkung: Wenn du den Sicherheitscode vergisst, musst du diese App löschen und neu installieren.", + "Local_authentication_facial_recognition": "Gesichtserkennung", + "Local_authentication_fingerprint": "Fingerabdruck", + "Local_authentication_unlock_with_label": "Entsperren mit {{label}}", + "Local_authentication_auto_lock_60": "Nach 1 Minute", + "Local_authentication_auto_lock_300": "Nach 5 Minuten", + "Local_authentication_auto_lock_900": "Nach 15 Minuten", + "Local_authentication_auto_lock_1800": "Nach 30 Minuten", + "Local_authentication_auto_lock_3600": "Nach 1 Stunde", + "Passcode_enter_title": "Gib deinen Sicherheitscode ein", + "Passcode_choose_title": "Setze deinen neuen Sicherheitscode", + "Passcode_choose_confirm_title": "Bestätige deinen neuen Sicherheitscode", + "Passcode_choose_error": "Sicherheitscodes stimmen nicht überein. Probiere es noch einmal.", + "Passcode_choose_force_set": "Sicherheitscode wird vom Admin verlangt", + "Passcode_app_locked_title": "App gesperrt", + "Passcode_app_locked_subtitle": "Versuche es in {{timeLeft}} Sekunden noch einmal.", + "After_seconds_set_by_admin": "Nach {{seconds}} Sekunden (durch den Admin gesetzt)", + "Dont_activate": "Jetzt nicht aktivieren", + "Queued_chats": "Chats in der Warteschlange", + "Queue_is_empty": "Warteschlange leer", + "Logout_from_other_logged_in_locations": "Auf anderen angemeldeten Geräte abmelden", + "You_will_be_logged_out_from_other_locations": "Du wirst auf anderen Geräten abgemeldet.", + "Logged_out_of_other_clients_successfully": "Erfolgreich von anderen Geräten abgemeldet.", + "Logout_failed": "Abmeldung fehlgeschlagen!", + "Log_analytics_events": "Analyse-Ereignisse loggen", + "E2E_encryption_change_password_title": "Verschlüsselungs-Passwort ändern", + "E2E_encryption_change_password_description": "Du kannst nun verschlüsselte private Gruppen und Direktnachrichten versenden. Du kannst außerdem deine bestehenden privaten Gruppen und Direktnachrichten auf Verschlüsselung umstellen. \nDies ist Ende-zu-Ende-Verschlüsselung, daher wird der Schlüssel um die Nachrichten zu ver-/entschlüsseln nicht auf dem Server gespeichert. Aus diesem Grund musst du dieses Passwort an einem sicheren Ort speichern, du wirst es auf anderen Geräten benötigen auf denen du E2E-Verschlüsselung nutzen möchtest.", + "E2E_encryption_change_password_error": "Fehler beim Ändern des E2E-Passworts!", + "E2E_encryption_change_password_success": "E2E-Passwort erfolgreich geändert!", + "E2E_encryption_change_password_message": "Stelle sicher, dass du es noch an einer anderen Stelle gesichert hasst.", + "E2E_encryption_change_password_confirmation": "Ja, ändern", + "E2E_encryption_reset_title": "E2E-Schlüssel zurücksetzen", + "E2E_encryption_reset_description": "Diese Option wird deinen aktuellen E2E-Schlüssel entfernen und dich abmelden. \nWenn du dich wieder anmeldest, wird Rocket.Chat einen neuen Schlüssel erzeugen und deinen Zugang zu allen Kanälen mit einer oder mehreren anwesenden Personen wieder herstellen. \nAufgrund der Funktionsweise von E2E-Verschlüsselung, kann Rocket.Chat nicht deinen Zugang zu Kanälen wieder herstellen, in denen keine andere Person anwesend ist.", + "E2E_encryption_reset_button": "E2E-Schlüssel zurücksetzen", + "E2E_encryption_reset_error": "Fehler beim Zurücksetzen des E2E-Schlüssels!", + "E2E_encryption_reset_message": "Du wirst abgemeldet.", + "E2E_encryption_reset_confirmation": "Ja, zurücksetzen", + "Following": "verfolgte", + "Threads_displaying_all": "zeige alle", + "Threads_displaying_following": "zeige gefolgte", + "Threads_displaying_unread": "Zeige ungelesene", + "No_threads": "Es gibt keine Threads", + "No_threads_following": "Du folgst keinen Threads", + "No_threads_unread": "Es gibt keine ungelesenen Threads", + "Messagebox_Send_to_channel": "an Kanal senden", + "Leader": "Leiter", + "Moderator": "Moderator", + "Owner": "Eigentümer", + "Remove_from_room": "Aus dem Raum entfernen", + "Ignore": "Ignorieren", + "Unignore": "Nicht mehr ignorieren", + "User_has_been_ignored": "Benutzer wurde stumm geschaltet", + "User_has_been_unignored": "Benutzer nicht mehr stumm geschaltet", + "User_has_been_removed_from_s": "Benutzer wurde aus {{s}} entfernt", + "User__username__is_now_a_leader_of__room_name_": "Benutzer {{username}} ist nun Diskussionsleiter von {{room_name}}", + "User__username__is_now_a_moderator_of__room_name_": "Benutzer {{username}} ist nun Moderator von {{room_name}}", + "User__username__is_now_a_owner_of__room_name_": "Benutzer {{username}} ist nun Eigentümer von {{room_name}}", + "User__username__removed_from__room_name__leaders": "Benutzer {{username}} als Diskussionsleiter von {{room_name}} entfernt", + "User__username__removed_from__room_name__moderators": "Benutzer {{username}} als Moderator von {{room_name}} entfernt", + "User__username__removed_from__room_name__owners": "Benutzer {{username}} als Eigentümer von {{room_name}} entfernt", + "The_user_will_be_removed_from_s": "Der Benutzer wird aus {{s}} entfernt", + "Yes_remove_user": "Ja, Benutzer entfernen!", + "Direct_message": "Direktnachricht", + "Message_Ignored": "Nachricht ignoriert. Antippen um sie zu zeigen.", + "Enter_workspace_URL": "Arbeitsbereich-URL", + "Workspace_URL_Example": "z.B. https://rocketchat.deine-firma.de", + "This_room_encryption_has_been_enabled_by__username_": "Die Verschlüsselung dieses Raums wurde von {{username}} aktiviert", + "This_room_encryption_has_been_disabled_by__username_": "Die Verschlüsselung dieses Raums wurde von {{username}} deaktiviert", + "Teams": "Teams", + "No_team_channels_found": "Keine Kanäle gefunden", + "Team_not_found": "Team nicht gefunden", + "Create_Team": "Team erstellen", + "Team_Name": "Team-Name", + "Private_Team": "Privates Team", + "Read_Only_Team": "Nur-Lesen-Team", + "Broadcast_Team": "Broadcast-Team", + "creating_team": "Team erstellen", + "team-name-already-exists": "Ein Team mit diesem Namen existiert bereits", + "Add_Channel_to_Team": "Kanal zum Team hinzufügen", + "Left_The_Team_Successfully": "Das Team erfolgreich verlassen", + "Create_New": "Neu erstellen", + "Add_Existing": "Vorhandenes hinzufügen", + "Add_Existing_Channel": "Vorhandenen Kanal hinzufügen", + "Remove_from_Team": "Aus Team entfernen", + "Auto-join": "Automatischer Beitritt", + "Remove_Team_Room_Warning": "Möchten du diesen Kanal aus dem Team entfernen? Der Kanal wird zurück in den Arbeitsbereich verschoben.", + "Confirmation": "Bestätigung", + "invalid-room": "Ungültiger Raum", + "You_are_leaving_the_team": "Du verlässt das Team '{{team}}'", + "Leave_Team": "Team verlassen", + "Select_Team": "Team auswählen", + "Select_Team_Channels": "Wähle die Kanäle des Teams aus, die du verlassen möchtest.", + "Cannot_leave": "Verlassen nicht möglich", + "Cannot_remove": "Kann nicht entfernt werden", + "Cannot_delete": "Kann nicht gelöscht werden", + "Last_owner_team_room": "Du bist der letzte Eigentümer des Kanals. Wenn du das Team verlässt, bleibt der Kanal innerhalb des Teams aber du verwaltest ihn von außen.", + "last-owner-can-not-be-removed": "Letzter Besitzer kann nicht entfernt werden", + "Remove_User_Teams": "Wähle die Kanäle aus, aus denen der Benutzer entfernt werden soll.", + "Delete_Team": "Team löschen", + "Select_channels_to_delete": "Dies kann nicht rückgängig gemacht werden. Wenn du ein Team löschst, werden alle Chat-Inhalte und und Einstellungen gelöscht.\n\nWähle die Kanäle, die du löschen möchtest. Diejenigen, die du behalten möchtest, werden in deinem Arbeitsbereich verfügbar sein. Beachte, das öffentliche Kanäle öffentlich bleiben und für jeden sichtbar sein werden.", + "You_are_deleting_the_team": "Du löschst dieses Team", + "Removing_user_from_this_team": "Du entfernst {{user}} aus diesem Team", + "Remove_User_Team_Channels": "Wähle die Kanäle aus, aus denen der Benutzer entfernt werden soll.", + "Remove_Member": "Mitglied entfernen", + "leaving_team": "Team verlassen", + "removing_team": "Aus dem Team entfernen", + "moving_channel_to_team": "Kanal zu Team verschieben", + "deleting_team": "Team löschen", + "member-does-not-exist": "Mitglied existiert nicht", + "Convert": "Konvertieren", + "Convert_to_Team": "Zu Team konvertieren", + "Convert_to_Team_Warning": "Dies kann nicht rückgängig gemacht werden. Sobald du einen Kanal in ein Team umgewandelt hast, kannst du ihn nicht mehr zurück in einen Kanal verwandeln.", + "Move_to_Team": "Zu Team hinzufügen", + "Move_Channel_Paragraph": "Das Verschieben eines Kanals innerhalb eines Teams bedeutet, dass dieser Kanal im Kontext des Teams hinzugefügt wird, jedoch haben alle Mitglieder des Kanals, die nicht Mitglied des jeweiligen Teams sind, weiterhin Zugriff auf diesen Kanal, werden aber nicht als Teammitglieder hinzugefügt \n\nDie gesamte Verwaltung des Kanals wird weiterhin von den Eigentümern dieses Kanals vorgenommen.\n\nTeammitglieder und sogar Teameigentümer, die nicht Mitglied dieses Kanals sind, können keinen Zugriff auf den Inhalt des Kanals haben \n\nBitte beachte, dass der Besitzer des Teams in der Lage ist, Mitglieder aus dem Kanal zu entfernen.", + "Move_to_Team_Warning": "Nachdem du die vorherigen Anleitungen zu diesem Verhalten gelesen hast, möchtest du diesen Kanal immer noch in das ausgewählte Team verschieben?", + "Load_More": "Mehr laden", + "Load_Newer": "Neuere laden", + "Load_Older": "Ältere laden", + "Left_The_Room_Successfully": "Raum erfolgreich verlassen", + "Deleted_The_Team_Successfully": "Team erfolgreich gelöscht", + "Deleted_The_Room_Successfully": "Raum erfolgreich gelöscht", + "Convert_to_Channel": "In Kanal umwandeln", + "Converting_Team_To_Channel": "Team in Kanal umwandeln", + "Select_Team_Channels_To_Delete": "Wähle die Kanäle des Teams aus, die du löschen möchtest. Die Kanäle, die du nicht auswählst, werden in den Arbeitsbereich verschoben \n\nBeachte, dass öffentliche Kanäle öffentlich und für alle sichtbar sind.", + "You_are_converting_the_team": "Du wandelst dieses Team in einen Raum um" +} diff --git a/app/i18n/locales/en.json b/app/i18n/locales/en.json index 114478bb64..8eb259f24a 100644 --- a/app/i18n/locales/en.json +++ b/app/i18n/locales/en.json @@ -1,776 +1,776 @@ { - "1_person_reacted": "1 person reacted", - "1_user": "1 user", - "error-action-not-allowed": "{{action}} is not allowed", - "error-application-not-found": "Application not found", - "error-archived-duplicate-name": "There's an archived channel with name {{room_name}}", - "error-avatar-invalid-url": "Invalid avatar URL: {{url}}", - "error-avatar-url-handling": "Error while handling avatar setting from a URL ({{url}}) for {{username}}", - "error-cant-invite-for-direct-room": "Can't invite user to direct rooms", - "error-could-not-change-email": "Could not change email", - "error-could-not-change-name": "Could not change name", - "error-could-not-change-username": "Could not change username", - "error-could-not-change-status": "Could not change status", - "error-delete-protected-role": "Cannot delete a protected role", - "error-department-not-found": "Department not found", - "error-direct-message-file-upload-not-allowed": "File sharing not allowed in direct messages", - "error-duplicate-channel-name": "A channel with name {{room_name}} exists", - "error-email-domain-blacklisted": "The email domain is blacklisted", - "error-email-send-failed": "Error trying to send email: {{message}}", - "error-save-image": "Error while saving image", - "error-save-video": "Error while saving video", - "error-field-unavailable": "{{field}} is already in use :(", - "error-file-too-large": "File is too large", - "error-importer-not-defined": "The importer was not defined correctly, it is missing the Import class.", - "error-input-is-not-a-valid-field": "{{input}} is not a valid {{field}}", - "error-invalid-actionlink": "Invalid action link", - "error-invalid-arguments": "Invalid arguments", - "error-invalid-asset": "Invalid asset", - "error-invalid-channel": "Invalid channel.", - "error-invalid-channel-start-with-chars": "Invalid channel. Start with @ or #", - "error-invalid-custom-field": "Invalid custom field", - "error-invalid-custom-field-name": "Invalid custom field name. Use only letters, numbers, hyphens and underscores.", - "error-invalid-date": "Invalid date provided.", - "error-invalid-description": "Invalid description", - "error-invalid-domain": "Invalid domain", - "error-invalid-email": "Invalid email {{email}}", - "error-invalid-email-address": "Invalid email address", - "error-invalid-file-height": "Invalid file height", - "error-invalid-file-type": "Invalid file type", - "error-invalid-file-width": "Invalid file width", - "error-invalid-from-address": "You informed an invalid FROM address.", - "error-invalid-integration": "Invalid integration", - "error-invalid-message": "Invalid message", - "error-invalid-method": "Invalid method", - "error-invalid-name": "Invalid name", - "error-invalid-password": "Invalid password", - "error-invalid-redirectUri": "Invalid redirectUri", - "error-invalid-role": "Invalid role", - "error-invalid-room": "Invalid room", - "error-invalid-room-name": "{{room_name}} is not a valid room name", - "error-invalid-room-type": "{{type}} is not a valid room type.", - "error-invalid-settings": "Invalid settings provided", - "error-invalid-subscription": "Invalid subscription", - "error-invalid-token": "Invalid token", - "error-invalid-triggerWords": "Invalid triggerWords", - "error-invalid-urls": "Invalid URLs", - "error-invalid-user": "Invalid user", - "error-invalid-username": "Invalid username", - "error-invalid-webhook-response": "The webhook URL responded with a status other than 200", - "error-message-deleting-blocked": "Message deleting is blocked", - "error-message-editing-blocked": "Message editing is blocked", - "error-message-size-exceeded": "Message size exceeds Message_MaxAllowedSize", - "error-missing-unsubscribe-link": "You must provide the [unsubscribe] link.", - "error-no-owner-channel": "You don't own the channel", - "error-no-tokens-for-this-user": "There are no tokens for this user", - "error-not-allowed": "Not allowed", - "error-not-authorized": "Not authorized", - "error-push-disabled": "Push is disabled", - "error-remove-last-owner": "This is the last owner. Please set a new owner before removing this one.", - "error-role-in-use": "Cannot delete role because it's in use", - "error-role-name-required": "Role name is required", - "error-the-field-is-required": "The field {{field}} is required.", - "error-too-many-requests": "Error, too many requests. Please slow down. You must wait {{seconds}} seconds before trying again.", - "error-user-is-not-activated": "User is not activated", - "error-user-has-no-roles": "User has no roles", - "error-user-limit-exceeded": "The number of users you are trying to invite to #channel_name exceeds the limit set by the administrator", - "error-user-not-in-room": "User is not in this room", - "error-user-registration-custom-field": "error-user-registration-custom-field", - "error-user-registration-disabled": "User registration is disabled", - "error-user-registration-secret": "User registration is only allowed via Secret URL", - "error-you-are-last-owner": "You are the last owner. Please set new owner before leaving the room.", - "error-status-not-allowed": "Invisible status is disabled", - "Actions": "Actions", - "activity": "activity", - "Activity": "Activity", - "Add_Reaction": "Add Reaction", - "Add_Server": "Add Server", - "Add_users": "Add users", - "Admin_Panel": "Admin Panel", - "Agent": "Agent", - "Alert": "Alert", - "alert": "alert", - "alerts": "alerts", - "All_users_in_the_channel_can_write_new_messages": "All users in the channel can write new messages", - "All_users_in_the_team_can_write_new_messages": "All users in the team can write new messages", - "A_meaningful_name_for_the_discussion_room": "A meaningful name for the discussion room", - "All": "All", - "All_Messages": "All Messages", - "Allow_Reactions": "Allow Reactions", - "Alphabetical": "Alphabetical", - "and_more": "and more", - "and": "and", - "announcement": "announcement", - "Announcement": "Announcement", - "Apply_Your_Certificate": "Apply Your Certificate", - "ARCHIVE": "ARCHIVE", - "archive": "archive", - "are_typing": "are typing", - "Are_you_sure_question_mark": "Are you sure?", - "Are_you_sure_you_want_to_leave_the_room": "Are you sure you want to leave the room {{room}}?", - "Audio": "Audio", - "Authenticating": "Authenticating", - "Automatic": "Automatic", - "Auto_Translate": "Auto-Translate", - "Avatar_changed_successfully": "Avatar changed successfully!", - "Avatar_Url": "Avatar URL", - "Away": "Away", - "Back": "Back", - "Black": "Black", - "Block_user": "Block user", - "Browser": "Browser", - "Broadcast_channel_Description": "Only authorized users can write new messages, but the other users will be able to reply", - "Broadcast_Channel": "Broadcast Channel", - "Busy": "Busy", - "By_proceeding_you_are_agreeing": "By proceeding you are agreeing to our", - "Cancel_editing": "Cancel editing", - "Cancel_recording": "Cancel recording", - "Cancel": "Cancel", - "changing_avatar": "changing avatar", - "creating_channel": "creating channel", - "creating_invite": "creating invite", - "Channel_Name": "Channel Name", - "Channels": "Channels", - "Chats": "Chats", - "Call_already_ended": "Call already ended!", - "Clear_cookies_alert": "Do you want to clear all cookies?", - "Clear_cookies_desc": "This action will clear all login cookies, allowing you to login into other accounts.", - "Clear_cookies_yes": "Yes, clear cookies", - "Clear_cookies_no": "No, keep cookies", - "Click_to_join": "Click to Join!", - "Close": "Close", - "Close_emoji_selector": "Close emoji selector", - "Closing_chat": "Closing chat", - "Change_language_loading": "Changing language.", - "Chat_closed_by_agent": "Chat closed by agent", - "Choose": "Choose", - "Choose_from_library": "Choose from library", - "Choose_file": "Choose file", - "Choose_where_you_want_links_be_opened": "Choose where you want links be opened", - "Code": "Code", - "Code_or_password_invalid": "Code or password invalid", - "Collaborative": "Collaborative", - "Confirm": "Confirm", - "Connect": "Connect", - "Connected": "Connected", - "connecting_server": "connecting to server", - "Connecting": "Connecting...", - "Contact_us": "Contact us", - "Contact_your_server_admin": "Contact your server admin.", - "Continue_with": "Continue with", - "Copied_to_clipboard": "Copied to clipboard!", - "Copy": "Copy", - "Conversation": "Conversation", - "Permalink": "Permalink", - "Certificate_password": "Certificate Password", - "Clear_cache": "Clear local server cache", - "Clear_cache_loading": "Clearing cache.", - "Whats_the_password_for_your_certificate": "What's the password for your certificate?", - "Create_account": "Create an account", - "Create_Channel": "Create Channel", - "Create_Direct_Messages": "Create Direct Messages", - "Create_Discussion": "Create Discussion", - "Created_snippet": "created a snippet", - "Create_a_new_workspace": "Create a new workspace", - "Create": "Create", - "Custom_Status": "Custom Status", - "Dark": "Dark", - "Dark_level": "Dark Level", - "Default": "Default", - "Default_browser": "Default browser", - "Delete_Room_Warning": "Deleting a room will delete all messages posted within the room. This cannot be undone.", - "Department": "Department", - "delete": "delete", - "Delete": "Delete", - "DELETE": "DELETE", - "move": "move", - "deleting_room": "deleting room", - "description": "description", - "Description": "Description", - "Desktop_Options": "Desktop Options", - "Desktop_Notifications": "Desktop Notifications", - "Desktop_Alert_info": "These notifications are delivered in desktop", - "Directory": "Directory", - "Direct_Messages": "Direct Messages", - "Disable_notifications": "Disable notifications", - "Discussions": "Discussions", - "Discussion_Desc": "Help keeping an overview about what's going on! By creating a discussion, a sub-channel of the one you selected is created and both are linked.", - "Discussion_name": "Discussion name", - "Done": "Done", - "Dont_Have_An_Account": "Don't you have an account?", - "Do_you_have_an_account": "Do you have an account?", - "Do_you_have_a_certificate": "Do you have a certificate?", - "Do_you_really_want_to_key_this_room_question_mark": "Do you really want to {{key}} this room?", - "E2E_Encryption": "E2E Encryption", - "E2E_How_It_Works_info1": "You can now create encrypted private groups and direct messages. You may also change existing private groups or DMs to encrypted.", - "E2E_How_It_Works_info2": "This is *end to end encryption* so the key to encode/decode your messages and they will not be saved on the server. For that reason *you need to store this password somewhere safe* which you can access later if you may need.", - "E2E_How_It_Works_info3": "If you proceed, it will be auto generated an E2E password.", - "E2E_How_It_Works_info4": "You can also setup a new password for your encryption key any time from any browser you have entered the existing E2E password.", - "edit": "edit", - "edited": "edited", - "Edit": "Edit", - "Edit_Status": "Edit Status", - "Edit_Invite": "Edit Invite", - "End_to_end_encrypted_room": "End to end encrypted room", - "end_to_end_encryption": "end to end encryption", - "Email_Notification_Mode_All": "Every Mention/DM", - "Email_Notification_Mode_Disabled": "Disabled", - "Email_or_password_field_is_empty": "Email or password field is empty", - "Email": "E-mail", - "email": "e-mail", - "Empty_title": "Empty title", - "Enable_Auto_Translate": "Enable Auto-Translate", - "Enable_notifications": "Enable notifications", - "Encrypted": "Encrypted", - "Encrypted_message": "Encrypted message", - "Enter_Your_E2E_Password": "Enter Your E2E Password", - "Enter_Your_Encryption_Password_desc1": "This will allow you to access your encrypted private groups and direct messages.", - "Enter_Your_Encryption_Password_desc2": "You need to enter the password to encode/decode messages every place you use the chat.", - "Encryption_error_title": "Your encryption password seems wrong", - "Encryption_error_desc": "It wasn't possible to decode your encryption key to be imported.", - "Everyone_can_access_this_channel": "Everyone can access this channel", - "Everyone_can_access_this_team": "Everyone can access this team", - "Error_uploading": "Error uploading", - "Expiration_Days": "Expiration (Days)", - "Favorite": "Favorite", - "Favorites": "Favorites", - "Files": "Files", - "File_description": "File description", - "File_name": "File name", - "Finish_recording": "Finish recording", - "Following_thread": "Following thread", - "For_your_security_you_must_enter_your_current_password_to_continue": "For your security, you must enter your current password to continue", - "Forgot_password_If_this_email_is_registered": "If this email is registered, we'll send instructions on how to reset your password. If you do not receive an email shortly, please come back and try again.", - "Forgot_password": "Forgot your password?", - "Forgot_Password": "Forgot Password", - "Forward": "Forward", - "Forward_Chat": "Forward Chat", - "Forward_to_department": "Forward to department", - "Forward_to_user": "Forward to user", - "Full_table": "Click to see full table", - "Generate_New_Link": "Generate New Link", - "Group_by_favorites": "Group favorites", - "Group_by_type": "Group by type", - "Hide": "Hide", - "Has_joined_the_channel": "has joined the channel", - "Has_joined_the_conversation": "has joined the conversation", - "Has_left_the_channel": "has left the channel", - "Hide_System_Messages": "Hide System Messages", - "Hide_type_messages": "Hide \"{{type}}\" messages", - "How_It_Works": "How It Works", - "Message_HideType_uj": "User Join", - "Message_HideType_ul": "User Leave", - "Message_HideType_ru": "User Removed", - "Message_HideType_au": "User Added", - "Message_HideType_mute_unmute": "User Muted / Unmuted", - "Message_HideType_r": "Room Name Changed", - "Message_HideType_ut": "User Joined Conversation", - "Message_HideType_wm": "Welcome", - "Message_HideType_rm": "Message Removed", - "Message_HideType_subscription_role_added": "Was Set Role", - "Message_HideType_subscription_role_removed": "Role No Longer Defined", - "Message_HideType_room_archived": "Room Archived", - "Message_HideType_room_unarchived": "Room Unarchived", - "I_Saved_My_E2E_Password": "I Saved My E2E Password", - "IP": "IP", - "In_app": "In-app", - "In_App_And_Desktop": "In-app and Desktop", - "In_App_and_Desktop_Alert_info": "Displays a banner at the top of the screen when app is open, and displays a notification on desktop", - "Invisible": "Invisible", - "Invite": "Invite", - "is_a_valid_RocketChat_instance": "is a valid Rocket.Chat instance", - "is_not_a_valid_RocketChat_instance": "is not a valid Rocket.Chat instance", - "is_typing": "is typing", - "Invalid_or_expired_invite_token": "Invalid or expired invite token", - "Invalid_server_version": "The server you're trying to connect is using a version that's not supported by the app anymore: {{currentVersion}}.\n\nWe require version {{minVersion}}", - "Invite_Link": "Invite Link", - "Invite_users": "Invite users", - "Join": "Join", - "Join_Code": "Join Code", - "Insert_Join_Code": "Insert Join Code", - "Join_our_open_workspace": "Join our open workspace", - "Join_your_workspace": "Join your workspace", - "Just_invited_people_can_access_this_channel": "Just invited people can access this channel", - "Just_invited_people_can_access_this_team": "Just invited people can access this team", - "Language": "Language", - "last_message": "last message", - "Leave_channel": "Leave channel", - "leaving_room": "leaving room", - "Leave": "Leave", - "leave": "leave", - "Legal": "Legal", - "Light": "Light", - "License": "License", - "Livechat": "Livechat", - "Livechat_edit": "Livechat edit", - "Login": "Login", - "Login_error": "Your credentials were rejected! Please try again.", - "Login_with": "Login with", - "Logging_out": "Logging out.", - "Logout": "Logout", - "Max_number_of_uses": "Max number of uses", - "Max_number_of_users_allowed_is_number": "Max number of users allowed is {{maxUsers}}", - "members": "members", - "Members": "Members", - "Mentioned_Messages": "Mentioned Messages", - "mentioned": "mentioned", - "Mentions": "Mentions", - "Message_accessibility": "Message from {{user}} at {{time}}: {{message}}", - "Message_actions": "Message actions", - "Message_pinned": "Message pinned", - "Message_removed": "Message removed", - "Message_starred": "Message starred", - "Message_unstarred": "Message unstarred", - "message": "message", - "messages": "messages", - "Message": "Message", - "Messages": "Messages", - "Message_Reported": "Message reported", - "Microphone_Permission_Message": "Rocket.Chat needs access to your microphone so you can send audio message.", - "Microphone_Permission": "Microphone Permission", - "Mute": "Mute", - "muted": "muted", - "My_servers": "My servers", - "N_people_reacted": "{{n}} people reacted", - "N_users": "{{n}} users", - "N_channels": "{{n}} channels", - "name": "name", - "Name": "Name", - "Navigation_history": "Navigation history", - "Never": "Never", - "New_Message": "New Message", - "New_Password": "New Password", - "New_Server": "New Server", - "Next": "Next", - "No_files": "No files", - "No_limit": "No limit", - "No_mentioned_messages": "No mentioned messages", - "No_pinned_messages": "No pinned messages", - "No_results_found": "No results found", - "No_starred_messages": "No starred messages", - "No_thread_messages": "No thread messages", - "No_label_provided": "No {{label}} provided.", - "No_Message": "No Message", - "No_messages_yet": "No messages yet", - "No_Reactions": "No Reactions", - "No_Read_Receipts": "No Read Receipts", - "Not_logged": "Not logged", - "Not_RC_Server": "This is not a Rocket.Chat server.\n{{contact}}", - "Nothing": "Nothing", - "Nothing_to_save": "Nothing to save!", - "Notify_active_in_this_room": "Notify active users in this room", - "Notify_all_in_this_room": "Notify all in this room", - "Notifications": "Notifications", - "Notification_Duration": "Notification Duration", - "Notification_Preferences": "Notification Preferences", - "No_available_agents_to_transfer": "No available agents to transfer", - "Offline": "Offline", - "Oops": "Oops!", - "Omnichannel": "Omnichannel", - "Open_Livechats": "Chats in Progress", - "Omnichannel_enable_alert": "You're not available on Omnichannel. Would you like to be available?", - "Onboarding_description": "A workspace is your team or organization’s space to collaborate. Ask the workspace admin for address to join or create one for your team.", - "Onboarding_join_workspace": "Join a workspace", - "Onboarding_subtitle": "Beyond Team Collaboration", - "Onboarding_title": "Welcome to Rocket.Chat", - "Onboarding_join_open_description": "Join our open workspace to chat with the Rocket.Chat team and community.", - "Onboarding_agree_terms": "By continuing, you agree to Rocket.Chat", - "Onboarding_less_options": "Less options", - "Onboarding_more_options": "More options", - "Online": "Online", - "Only_authorized_users_can_write_new_messages": "Only authorized users can write new messages", - "Open_emoji_selector": "Open emoji selector", - "Open_Source_Communication": "Open Source Communication", - "Open_your_authentication_app_and_enter_the_code": "Open your authentication app and enter the code.", - "OR": "OR", - "OS": "OS", - "Overwrites_the_server_configuration_and_use_room_config": "Overwrites the server configuration and use room config", - "Password": "Password", - "Parent_channel_or_group": "Parent channel or group", - "Permalink_copied_to_clipboard": "Permalink copied to clipboard!", - "Phone": "Phone", - "Pin": "Pin", - "Pinned_Messages": "Pinned Messages", - "pinned": "pinned", - "Pinned": "Pinned", - "Please_add_a_comment": "Please add a comment", - "Please_enter_your_password": "Please enter your password", - "Please_wait": "Please wait.", - "Preferences": "Preferences", - "Preferences_saved": "Preferences saved!", - "Privacy_Policy": " Privacy Policy", - "Private_Channel": "Private Channel", - "Private": "Private", - "Processing": "Processing...", - "Profile_saved_successfully": "Profile saved successfully!", - "Profile": "Profile", - "Public_Channel": "Public Channel", - "Public": "Public", - "Push_Notifications": "Push Notifications", - "Push_Notifications_Alert_Info": "These notifications are delivered to you when the app is not open", - "Quote": "Quote", - "Reactions_are_disabled": "Reactions are disabled", - "Reactions_are_enabled": "Reactions are enabled", - "Reactions": "Reactions", - "Read": "Read", - "Read_External_Permission_Message": "Rocket.Chat needs to access photos, media, and files on your device", - "Read_External_Permission": "Read Media Permission", - "Read_Only_Channel": "Read Only Channel", - "Read_Only": "Read Only", - "Read_Receipt": "Read Receipt", - "Receive_Group_Mentions": "Receive Group Mentions", - "Receive_Group_Mentions_Info": "Receive @all and @here mentions", - "Register": "Register", - "Repeat_Password": "Repeat Password", - "Replied_on": "Replied on:", - "replies": "replies", - "reply": "reply", - "Reply": "Reply", - "Report": "Report", - "Receive_Notification": "Receive Notification", - "Receive_notifications_from": "Receive notifications from {{name}}", - "Resend": "Resend", - "Reset_password": "Reset password", - "resetting_password": "resetting password", - "RESET": "RESET", - "Return": "Return", - "Review_app_title": "Are you enjoying this app?", - "Review_app_desc": "Give us 5 stars on {{store}}", - "Review_app_yes": "Sure!", - "Review_app_no": "No", - "Review_app_later": "Maybe later", - "Review_app_unable_store": "Unable to open {{store}}", - "Review_this_app": "Review this app", - "Remove": "Remove", - "remove": "remove", - "Roles": "Roles", - "Room_actions": "Room actions", - "Room_changed_announcement": "Room announcement changed to: {{announcement}} by {{userBy}}", - "Room_changed_avatar": "Room avatar changed by {{userBy}}", - "Room_changed_description": "Room description changed to: {{description}} by {{userBy}}", - "Room_changed_privacy": "Room type changed to: {{type}} by {{userBy}}", - "Room_changed_topic": "Room topic changed to: {{topic}} by {{userBy}}", - "Room_Files": "Room Files", - "Room_Info_Edit": "Room Info Edit", - "Room_Info": "Room Info", - "Room_Members": "Room Members", - "Room_name_changed": "Room name changed to: {{name}} by {{userBy}}", - "SAVE": "SAVE", - "Save_Changes": "Save Changes", - "Save": "Save", - "Saved": "Saved", - "saving_preferences": "saving preferences", - "saving_profile": "saving profile", - "saving_settings": "saving settings", - "saved_to_gallery": "Saved to gallery", - "Save_Your_E2E_Password": "Save Your E2E Password", - "Save_Your_Encryption_Password": "Save Your Encryption Password", - "Save_Your_Encryption_Password_warning": "This password is not stored anywhere so save it carefully somewhere else.", - "Save_Your_Encryption_Password_info": "Notice that you lose your password, there is no way to recover it and you will lose access to your messages.", - "Search_Messages": "Search Messages", - "Search": "Search", - "Search_by": "Search by", - "Search_global_users": "Search for global users", - "Search_global_users_description": "If you turn-on, you can search for any user from others companies or servers.", - "Seconds": "{{second}} seconds", - "Security_and_privacy": "Security and privacy", - "Select_Avatar": "Select Avatar", - "Select_Server": "Select Server", - "Select_Users": "Select Users", - "Select_a_Channel": "Select a Channel", - "Select_a_Department": "Select a Department", - "Select_an_option": "Select an option", - "Select_a_User": "Select a User", - "Send": "Send", - "Send_audio_message": "Send audio message", - "Send_crash_report": "Send crash report", - "Send_message": "Send message", - "Send_me_the_code_again": "Send me the code again", - "Send_to": "Send to...", - "Sending_to": "Sending to", - "Sent_an_attachment": "Sent an attachment", - "Server": "Server", - "Servers": "Servers", - "Server_version": "Server version: {{version}}", - "Set_username_subtitle": "The username is used to allow others to mention you in messages", - "Set_custom_status": "Set custom status", - "Set_status": "Set status", - "Status_saved_successfully": "Status saved successfully!", - "Settings": "Settings", - "Settings_succesfully_changed": "Settings succesfully changed!", - "Share": "Share", - "Share_Link": "Share Link", - "Share_this_app": "Share this app", - "Show_more": "Show more..", - "Show_Unread_Counter": "Show Unread Counter", - "Show_Unread_Counter_Info": "Unread counter is displayed as a badge on the right of the channel, in the list", - "Sign_in_your_server": "Sign in your server", - "Sign_Up": "Sign Up", - "Some_field_is_invalid_or_empty": "Some field is invalid or empty", - "Sorting_by": "Sorting by {{key}}", - "Sound": "Sound", - "Star_room": "Star room", - "Star": "Star", - "Starred_Messages": "Starred Messages", - "starred": "starred", - "Starred": "Starred", - "Start_of_conversation": "Start of conversation", - "Start_a_Discussion": "Start a Discussion", - "Started_discussion": "Started a discussion:", - "Started_call": "Call started by {{userBy}}", - "Submit": "Submit", - "Table": "Table", - "Tags": "Tags", - "Take_a_photo": "Take a photo", - "Take_a_video": "Take a video", - "Take_it": "Take it!", - "tap_to_change_status": "tap to change status", - "Tap_to_view_servers_list": "Tap to view servers list", - "Terms_of_Service": " Terms of Service ", - "Theme": "Theme", - "The_user_wont_be_able_to_type_in_roomName": "The user won't be able to type in {{roomName}}", - "The_user_will_be_able_to_type_in_roomName": "The user will be able to type in {{roomName}}", - "There_was_an_error_while_action": "There was an error while {{action}}!", - "This_room_is_blocked": "This room is blocked", - "This_room_is_read_only": "This room is read only", - "Thread": "Thread", - "Threads": "Threads", - "Timezone": "Timezone", - "To": "To", - "topic": "topic", - "Topic": "Topic", - "Translate": "Translate", - "Try_again": "Try again", - "Two_Factor_Authentication": "Two-factor Authentication", - "Type_the_channel_name_here": "Type the channel name here", - "unarchive": "unarchive", - "UNARCHIVE": "UNARCHIVE", - "Unblock_user": "Unblock user", - "Unfavorite": "Unfavorite", - "Unfollowed_thread": "Unfollowed thread", - "Unmute": "Unmute", - "unmuted": "unmuted", - "Unpin": "Unpin", - "unread_messages": "unread", - "Unread": "Unread", - "Unread_on_top": "Unread on top", - "Unstar": "Unstar", - "Updating": "Updating...", - "Uploading": "Uploading", - "Upload_file_question_mark": "Upload file?", - "User": "User", - "Users": "Users", - "User_added_by": "User {{userAdded}} added by {{userBy}}", - "User_Info": "User Info", - "User_has_been_key": "User has been {{key}}", - "User_is_no_longer_role_by_": "{{user}} is no longer {{role}} by {{userBy}}", - "User_muted_by": "User {{userMuted}} muted by {{userBy}}", - "User_removed_by": "User {{userRemoved}} removed by {{userBy}}", - "User_sent_an_attachment": "{{user}} sent an attachment", - "User_unmuted_by": "User {{userUnmuted}} unmuted by {{userBy}}", - "User_was_set_role_by_": "{{user}} was set {{role}} by {{userBy}}", - "Username_is_empty": "Username is empty", - "Username": "Username", - "Username_or_email": "Username or email", - "Uses_server_configuration": "Uses server configuration", - "Validating": "Validating", - "Registration_Succeeded": "Registration Succeeded!", - "Verify": "Verify", - "Verify_email_title": "Registration Succeeded!", - "Verify_email_desc": "We have sent you an email to confirm your registration. If you do not receive an email shortly, please come back and try again.", - "Verify_your_email_for_the_code_we_sent": "Verify your email for the code we sent", - "Video_call": "Video call", - "View_Original": "View Original", - "Voice_call": "Voice call", - "Waiting_for_network": "Waiting for network...", - "Websocket_disabled": "Websocket is disabled for this server.\n{{contact}}", - "Welcome": "Welcome", - "What_are_you_doing_right_now": "What are you doing right now?", - "Whats_your_2fa": "What's your 2FA code?", - "Without_Servers": "Without Servers", - "Workspaces": "Workspaces", - "Would_you_like_to_return_the_inquiry": "Would you like to return the inquiry?", - "Write_External_Permission_Message": "Rocket.Chat needs access to your gallery so you can save images.", - "Write_External_Permission": "Gallery Permission", - "Yes": "Yes", - "Yes_action_it": "Yes, {{action}} it!", - "Yesterday": "Yesterday", - "You_are_in_preview_mode": "You are in preview mode", - "You_are_offline": "You are offline", - "You_can_search_using_RegExp_eg": "You can use RegExp. e.g. `/^text$/i`", - "You_colon": "You: ", - "you_were_mentioned": "you were mentioned", - "You_were_removed_from_channel": "You were removed from {{channel}}", - "you": "you", - "You": "You", - "Logged_out_by_server": "You've been logged out by the server. Please log in again.", - "You_need_to_access_at_least_one_RocketChat_server_to_share_something": "You need to access at least one Rocket.Chat server to share something.", - "You_need_to_verifiy_your_email_address_to_get_notications": "You need to verify your email address to get notifications", - "Your_certificate": "Your Certificate", - "Your_invite_link_will_expire_after__usesLeft__uses": "Your invite link will expire after {{usesLeft}} uses.", - "Your_invite_link_will_expire_on__date__or_after__usesLeft__uses": "Your invite link will expire on {{date}} or after {{usesLeft}} uses.", - "Your_invite_link_will_expire_on__date__": "Your invite link will expire on {{date}}.", - "Your_invite_link_will_never_expire": "Your invite link will never expire.", - "Your_workspace": "Your workspace", - "Your_password_is": "Your password is", - "Version_no": "Version: {{version}}", - "You_will_not_be_able_to_recover_this_message": "You will not be able to recover this message!", - "You_will_unset_a_certificate_for_this_server": "You will unset a certificate for this server", - "Change_Language": "Change Language", - "Crash_report_disclaimer": "We never track the content of your chats. The crash report and analytics events only contains relevant information for us in order to identify and fix issues.", - "Type_message": "Type message", - "Room_search": "Rooms search", - "Room_selection": "Room selection 1...9", - "Next_room": "Next room", - "Previous_room": "Previous room", - "New_room": "New room", - "Upload_room": "Upload to room", - "Search_messages": "Search messages", - "Scroll_messages": "Scroll messages", - "Reply_latest": "Reply to latest", - "Reply_in_Thread": "Reply in Thread", - "Server_selection": "Server selection", - "Server_selection_numbers": "Server selection 1...9", - "Add_server": "Add server", - "New_line": "New line", - "You_will_be_logged_out_of_this_application": "You will be logged out of this application.", - "Clear": "Clear", - "This_will_clear_all_your_offline_data": "This will clear all your offline data.", - "This_will_remove_all_data_from_this_server": "This will remove all data from this server.", - "Mark_unread": "Mark Unread", - "Wait_activation_warning": "Before you can login, your account must be manually activated by an administrator.", - "Screen_lock": "Screen lock", - "Local_authentication_biometry_title": "Authenticate", - "Local_authentication_biometry_fallback": "Use passcode", - "Local_authentication_unlock_option": "Unlock with Passcode", - "Local_authentication_change_passcode": "Change Passcode", - "Local_authentication_info": "Note: if you forget the Passcode, you'll need to delete and reinstall the app.", - "Local_authentication_facial_recognition": "facial recognition", - "Local_authentication_fingerprint": "fingerprint", - "Local_authentication_unlock_with_label": "Unlock with {{label}}", - "Local_authentication_auto_lock_60": "After 1 minute", - "Local_authentication_auto_lock_300": "After 5 minutes", - "Local_authentication_auto_lock_900": "After 15 minutes", - "Local_authentication_auto_lock_1800": "After 30 minutes", - "Local_authentication_auto_lock_3600": "After 1 hour", - "Passcode_enter_title": "Enter your passcode", - "Passcode_choose_title": "Choose your new passcode", - "Passcode_choose_confirm_title": "Confirm your new passcode", - "Passcode_choose_error": "Passcodes don't match. Try again.", - "Passcode_choose_force_set": "Passcode required by admin", - "Passcode_app_locked_title": "App locked", - "Passcode_app_locked_subtitle": "Try again in {{timeLeft}} seconds", - "After_seconds_set_by_admin": "After {{seconds}} seconds (set by admin)", - "Dont_activate": "Don't activate now", - "Queued_chats": "Queued chats", - "Queue_is_empty": "Queue is empty", - "Logout_from_other_logged_in_locations": "Logout from other logged in locations", - "You_will_be_logged_out_from_other_locations": "You'll be logged out from other locations.", - "Logged_out_of_other_clients_successfully": "Logged out of other clients successfully", - "Logout_failed": "Logout failed!", - "Log_analytics_events": "Log analytics events", - "E2E_encryption_change_password_title": "Change Encryption Password", - "E2E_encryption_change_password_description": "You can now create encrypted private groups and direct messages. You may also change existing private groups or DMs to encrypted. \nThis is end to end encryption so the key to encode/decode your messages will not be saved on the server. For that reason you need to store your password somewhere safe. You will be required to enter it on other devices you wish to use e2e encryption on.", - "E2E_encryption_change_password_error": "Error while changing E2E key password!", - "E2E_encryption_change_password_success": "E2E key password changed successfully!", - "E2E_encryption_change_password_message": "Make sure you've saved it carefully somewhere else.", - "E2E_encryption_change_password_confirmation": "Yes, change it", - "E2E_encryption_reset_title": "Reset E2E Key", - "E2E_encryption_reset_description": "This option will remove your current E2E key and log you out. \nWhen you login again, Rocket.Chat will generate you a new key and restore your access to any encrypted room that has one or more members online. \nDue to the nature of the E2E encryption, Rocket.Chat will not be able to restore access to any encrypted room that has no member online.", - "E2E_encryption_reset_button": "Reset E2E Key", - "E2E_encryption_reset_error": "Error while resetting E2E key!", - "E2E_encryption_reset_message": "You're going to be logged out.", - "E2E_encryption_reset_confirmation": "Yes, reset it", - "Following": "Following", - "Threads_displaying_all": "Displaying All", - "Threads_displaying_following": "Displaying Following", - "Threads_displaying_unread": "Displaying Unread", - "No_threads": "There are no threads", - "No_threads_following": "You are not following any threads", - "No_threads_unread": "There are no unread threads", - "Messagebox_Send_to_channel": "Send to channel", - "Leader": "Leader", - "Moderator": "Moderator", - "Owner": "Owner", - "Remove_from_room": "Remove from room", - "Ignore": "Ignore", - "Unignore": "Unignore", - "User_has_been_ignored": "User has been ignored", - "User_has_been_unignored": "User is no longer ignored", - "User_has_been_removed_from_s": "User has been removed from {{s}}", - "User__username__is_now_a_leader_of__room_name_": "User {{username}} is now a leader of {{room_name}}", - "User__username__is_now_a_moderator_of__room_name_": "User {{username}} is now a moderator of {{room_name}}", - "User__username__is_now_a_owner_of__room_name_": "User {{username}} is now a owner of {{room_name}}", - "User__username__removed_from__room_name__leaders": "User {{username}} removed from {{room_name}} leaders", - "User__username__removed_from__room_name__moderators": "User {{username}} removed from {{room_name}} moderators", - "User__username__removed_from__room_name__owners": "User {{username}} removed from {{room_name}} owners", - "The_user_will_be_removed_from_s": "The user will be removed from {{s}}", - "Yes_remove_user": "Yes, remove user!", - "Direct_message": "Direct message", - "Message_Ignored": "Message ignored. Tap to display it.", - "Enter_workspace_URL": "Enter workspace URL", - "Workspace_URL_Example": "Ex. your-company.rocket.chat", - "This_room_encryption_has_been_enabled_by__username_": "This room's encryption has been enabled by {{username}}", - "This_room_encryption_has_been_disabled_by__username_": "This room's encryption has been disabled by {{username}}", - "Teams": "Teams", - "No_team_channels_found": "No channels found", - "Team_not_found": "Team not found", - "Create_Team": "Create Team", - "Team_Name": "Team Name", - "Private_Team": "Private Team", - "Read_Only_Team": "Read Only Team", - "Broadcast_Team": "Broadcast Team", - "creating_team": "creating team", - "team-name-already-exists": "A team with that name already exists", - "Add_Channel_to_Team": "Add Channel to Team", - "Left_The_Team_Successfully": "Left the team successfully", - "Create_New": "Create New", - "Add_Existing": "Add Existing", - "Add_Existing_Channel": "Add Existing Channel", - "Remove_from_Team": "Remove from Team", - "Auto-join": "Auto-join", - "Remove_Team_Room_Warning": "Woud you like to remove this channel from the team? The channel will be moved back to the workspace", - "Confirmation": "Confirmation", - "invalid-room": "Invalid room", - "You_are_leaving_the_team": "You are leaving the team '{{team}}'", - "Leave_Team": "Leave Team", - "Select_Team": "Select Team", - "Select_Team_Channels": "Select the Team's channels you would like to leave.", - "Cannot_leave": "Cannot leave", - "Cannot_remove": "Cannot remove", - "Cannot_delete": "Cannot delete", - "Last_owner_team_room": "You are the last owner of this channel. Once you leave the team, the channel will be kept inside the team but you will be managing it from outside.", - "last-owner-can-not-be-removed": "Last owner cannot be removed", - "Remove_User_Teams": "Select channels you want the user to be removed from.", - "Delete_Team": "Delete Team", - "Select_channels_to_delete": "This can't be undone. Once you delete a team, all chat content and configuration will be deleted. \n\nSelect the channels you would like to delete. The ones you decide to keep will be available on your workspace. Notice that public channels will still be public and visible to everyone.", - "You_are_deleting_the_team": "You are deleting this team.", - "Removing_user_from_this_team": "You are removing {{user}} from this team", - "Remove_User_Team_Channels": "Select the channels you want the user to be removed from.", - "Remove_Member": "Remove Member", - "leaving_team": "leaving team", - "removing_team": "removing from team", - "moving_channel_to_team": "moving channel to team", - "deleting_team": "deleting team", - "member-does-not-exist": "Member does not exist", - "Convert": "Convert", - "Convert_to_Team": "Convert to Team", - "Convert_to_Team_Warning": "You are converting this Channel to a Team. All Members will be kept.", - "Move_to_Team": "Move to Team", - "Move_Channel_Paragraph": "Moving a channel inside a team means that this channel will be added in the team’s context, however, all channel’s members, which are not members of the respective team, will still have access to this channel, but will not be added as team’s members. \n\nAll channel’s management will still be made by the owners of this channel.\n\nTeam’s members and even team’s owners, if not a member of this channel, can not have access to the channel’s content. \n\nPlease notice that the Team’s owner will be able remove members from the Channel.", - "Move_to_Team_Warning": "After reading the previous intructions about this behavior, do you still want to move this channel to the selected team?", - "Load_More": "Load More", - "Load_Newer": "Load Newer", - "Load_Older": "Load Older", - "room-name-already-exists": "Room name already exists", - "error-team-creation": "Error team creation", - "unauthorized": "Unauthorized", - "Left_The_Room_Successfully": "Left the room successfully", - "Deleted_The_Team_Successfully": "Team deleted successfully", - "Deleted_The_Room_Successfully": "Room deleted successfully", - "Convert_to_Channel": "Convert to Channel", - "Converting_Team_To_Channel": "Converting Team to Channel", - "Select_Team_Channels_To_Delete": "Select the Team’s Channels you would like to delete, the ones you do not select will be moved to the Workspace. \n\nNotice that public Channels will be public and visible to everyone.", - "You_are_converting_the_team": "You are converting this Team to a Channel", - "creating_discussion": "creating discussion" -} \ No newline at end of file + "1_person_reacted": "1 person reacted", + "1_user": "1 user", + "error-action-not-allowed": "{{action}} is not allowed", + "error-application-not-found": "Application not found", + "error-archived-duplicate-name": "There's an archived channel with name {{room_name}}", + "error-avatar-invalid-url": "Invalid avatar URL: {{url}}", + "error-avatar-url-handling": "Error while handling avatar setting from a URL ({{url}}) for {{username}}", + "error-cant-invite-for-direct-room": "Can't invite user to direct rooms", + "error-could-not-change-email": "Could not change email", + "error-could-not-change-name": "Could not change name", + "error-could-not-change-username": "Could not change username", + "error-could-not-change-status": "Could not change status", + "error-delete-protected-role": "Cannot delete a protected role", + "error-department-not-found": "Department not found", + "error-direct-message-file-upload-not-allowed": "File sharing not allowed in direct messages", + "error-duplicate-channel-name": "A channel with name {{room_name}} exists", + "error-email-domain-blacklisted": "The email domain is blacklisted", + "error-email-send-failed": "Error trying to send email: {{message}}", + "error-save-image": "Error while saving image", + "error-save-video": "Error while saving video", + "error-field-unavailable": "{{field}} is already in use :(", + "error-file-too-large": "File is too large", + "error-importer-not-defined": "The importer was not defined correctly, it is missing the Import class.", + "error-input-is-not-a-valid-field": "{{input}} is not a valid {{field}}", + "error-invalid-actionlink": "Invalid action link", + "error-invalid-arguments": "Invalid arguments", + "error-invalid-asset": "Invalid asset", + "error-invalid-channel": "Invalid channel.", + "error-invalid-channel-start-with-chars": "Invalid channel. Start with @ or #", + "error-invalid-custom-field": "Invalid custom field", + "error-invalid-custom-field-name": "Invalid custom field name. Use only letters, numbers, hyphens and underscores.", + "error-invalid-date": "Invalid date provided.", + "error-invalid-description": "Invalid description", + "error-invalid-domain": "Invalid domain", + "error-invalid-email": "Invalid email {{email}}", + "error-invalid-email-address": "Invalid email address", + "error-invalid-file-height": "Invalid file height", + "error-invalid-file-type": "Invalid file type", + "error-invalid-file-width": "Invalid file width", + "error-invalid-from-address": "You informed an invalid FROM address.", + "error-invalid-integration": "Invalid integration", + "error-invalid-message": "Invalid message", + "error-invalid-method": "Invalid method", + "error-invalid-name": "Invalid name", + "error-invalid-password": "Invalid password", + "error-invalid-redirectUri": "Invalid redirectUri", + "error-invalid-role": "Invalid role", + "error-invalid-room": "Invalid room", + "error-invalid-room-name": "{{room_name}} is not a valid room name", + "error-invalid-room-type": "{{type}} is not a valid room type.", + "error-invalid-settings": "Invalid settings provided", + "error-invalid-subscription": "Invalid subscription", + "error-invalid-token": "Invalid token", + "error-invalid-triggerWords": "Invalid triggerWords", + "error-invalid-urls": "Invalid URLs", + "error-invalid-user": "Invalid user", + "error-invalid-username": "Invalid username", + "error-invalid-webhook-response": "The webhook URL responded with a status other than 200", + "error-message-deleting-blocked": "Message deleting is blocked", + "error-message-editing-blocked": "Message editing is blocked", + "error-message-size-exceeded": "Message size exceeds Message_MaxAllowedSize", + "error-missing-unsubscribe-link": "You must provide the [unsubscribe] link.", + "error-no-owner-channel": "You don't own the channel", + "error-no-tokens-for-this-user": "There are no tokens for this user", + "error-not-allowed": "Not allowed", + "error-not-authorized": "Not authorized", + "error-push-disabled": "Push is disabled", + "error-remove-last-owner": "This is the last owner. Please set a new owner before removing this one.", + "error-role-in-use": "Cannot delete role because it's in use", + "error-role-name-required": "Role name is required", + "error-the-field-is-required": "The field {{field}} is required.", + "error-too-many-requests": "Error, too many requests. Please slow down. You must wait {{seconds}} seconds before trying again.", + "error-user-is-not-activated": "User is not activated", + "error-user-has-no-roles": "User has no roles", + "error-user-limit-exceeded": "The number of users you are trying to invite to #channel_name exceeds the limit set by the administrator", + "error-user-not-in-room": "User is not in this room", + "error-user-registration-custom-field": "error-user-registration-custom-field", + "error-user-registration-disabled": "User registration is disabled", + "error-user-registration-secret": "User registration is only allowed via Secret URL", + "error-you-are-last-owner": "You are the last owner. Please set new owner before leaving the room.", + "error-status-not-allowed": "Invisible status is disabled", + "Actions": "Actions", + "activity": "activity", + "Activity": "Activity", + "Add_Reaction": "Add Reaction", + "Add_Server": "Add Server", + "Add_users": "Add users", + "Admin_Panel": "Admin Panel", + "Agent": "Agent", + "Alert": "Alert", + "alert": "alert", + "alerts": "alerts", + "All_users_in_the_channel_can_write_new_messages": "All users in the channel can write new messages", + "All_users_in_the_team_can_write_new_messages": "All users in the team can write new messages", + "A_meaningful_name_for_the_discussion_room": "A meaningful name for the discussion room", + "All": "All", + "All_Messages": "All Messages", + "Allow_Reactions": "Allow Reactions", + "Alphabetical": "Alphabetical", + "and_more": "and more", + "and": "and", + "announcement": "announcement", + "Announcement": "Announcement", + "Apply_Your_Certificate": "Apply Your Certificate", + "ARCHIVE": "ARCHIVE", + "archive": "archive", + "are_typing": "are typing", + "Are_you_sure_question_mark": "Are you sure?", + "Are_you_sure_you_want_to_leave_the_room": "Are you sure you want to leave the room {{room}}?", + "Audio": "Audio", + "Authenticating": "Authenticating", + "Automatic": "Automatic", + "Auto_Translate": "Auto-Translate", + "Avatar_changed_successfully": "Avatar changed successfully!", + "Avatar_Url": "Avatar URL", + "Away": "Away", + "Back": "Back", + "Black": "Black", + "Block_user": "Block user", + "Browser": "Browser", + "Broadcast_channel_Description": "Only authorized users can write new messages, but the other users will be able to reply", + "Broadcast_Channel": "Broadcast Channel", + "Busy": "Busy", + "By_proceeding_you_are_agreeing": "By proceeding you are agreeing to our", + "Cancel_editing": "Cancel editing", + "Cancel_recording": "Cancel recording", + "Cancel": "Cancel", + "changing_avatar": "changing avatar", + "creating_channel": "creating channel", + "creating_invite": "creating invite", + "Channel_Name": "Channel Name", + "Channels": "Channels", + "Chats": "Chats", + "Call_already_ended": "Call already ended!", + "Clear_cookies_alert": "Do you want to clear all cookies?", + "Clear_cookies_desc": "This action will clear all login cookies, allowing you to login into other accounts.", + "Clear_cookies_yes": "Yes, clear cookies", + "Clear_cookies_no": "No, keep cookies", + "Click_to_join": "Click to Join!", + "Close": "Close", + "Close_emoji_selector": "Close emoji selector", + "Closing_chat": "Closing chat", + "Change_language_loading": "Changing language.", + "Chat_closed_by_agent": "Chat closed by agent", + "Choose": "Choose", + "Choose_from_library": "Choose from library", + "Choose_file": "Choose file", + "Choose_where_you_want_links_be_opened": "Choose where you want links be opened", + "Code": "Code", + "Code_or_password_invalid": "Code or password invalid", + "Collaborative": "Collaborative", + "Confirm": "Confirm", + "Connect": "Connect", + "Connected": "Connected", + "connecting_server": "connecting to server", + "Connecting": "Connecting...", + "Contact_us": "Contact us", + "Contact_your_server_admin": "Contact your server admin.", + "Continue_with": "Continue with", + "Copied_to_clipboard": "Copied to clipboard!", + "Copy": "Copy", + "Conversation": "Conversation", + "Permalink": "Permalink", + "Certificate_password": "Certificate Password", + "Clear_cache": "Clear local server cache", + "Clear_cache_loading": "Clearing cache.", + "Whats_the_password_for_your_certificate": "What's the password for your certificate?", + "Create_account": "Create an account", + "Create_Channel": "Create Channel", + "Create_Direct_Messages": "Create Direct Messages", + "Create_Discussion": "Create Discussion", + "Created_snippet": "created a snippet", + "Create_a_new_workspace": "Create a new workspace", + "Create": "Create", + "Custom_Status": "Custom Status", + "Dark": "Dark", + "Dark_level": "Dark Level", + "Default": "Default", + "Default_browser": "Default browser", + "Delete_Room_Warning": "Deleting a room will delete all messages posted within the room. This cannot be undone.", + "Department": "Department", + "delete": "delete", + "Delete": "Delete", + "DELETE": "DELETE", + "move": "move", + "deleting_room": "deleting room", + "description": "description", + "Description": "Description", + "Desktop_Options": "Desktop Options", + "Desktop_Notifications": "Desktop Notifications", + "Desktop_Alert_info": "These notifications are delivered in desktop", + "Directory": "Directory", + "Direct_Messages": "Direct Messages", + "Disable_notifications": "Disable notifications", + "Discussions": "Discussions", + "Discussion_Desc": "Help keeping an overview about what's going on! By creating a discussion, a sub-channel of the one you selected is created and both are linked.", + "Discussion_name": "Discussion name", + "Done": "Done", + "Dont_Have_An_Account": "Don't you have an account?", + "Do_you_have_an_account": "Do you have an account?", + "Do_you_have_a_certificate": "Do you have a certificate?", + "Do_you_really_want_to_key_this_room_question_mark": "Do you really want to {{key}} this room?", + "E2E_Encryption": "E2E Encryption", + "E2E_How_It_Works_info1": "You can now create encrypted private groups and direct messages. You may also change existing private groups or DMs to encrypted.", + "E2E_How_It_Works_info2": "This is *end to end encryption* so the key to encode/decode your messages and they will not be saved on the server. For that reason *you need to store this password somewhere safe* which you can access later if you may need.", + "E2E_How_It_Works_info3": "If you proceed, it will be auto generated an E2E password.", + "E2E_How_It_Works_info4": "You can also setup a new password for your encryption key any time from any browser you have entered the existing E2E password.", + "edit": "edit", + "edited": "edited", + "Edit": "Edit", + "Edit_Status": "Edit Status", + "Edit_Invite": "Edit Invite", + "End_to_end_encrypted_room": "End to end encrypted room", + "end_to_end_encryption": "end to end encryption", + "Email_Notification_Mode_All": "Every Mention/DM", + "Email_Notification_Mode_Disabled": "Disabled", + "Email_or_password_field_is_empty": "Email or password field is empty", + "Email": "E-mail", + "email": "e-mail", + "Empty_title": "Empty title", + "Enable_Auto_Translate": "Enable Auto-Translate", + "Enable_notifications": "Enable notifications", + "Encrypted": "Encrypted", + "Encrypted_message": "Encrypted message", + "Enter_Your_E2E_Password": "Enter Your E2E Password", + "Enter_Your_Encryption_Password_desc1": "This will allow you to access your encrypted private groups and direct messages.", + "Enter_Your_Encryption_Password_desc2": "You need to enter the password to encode/decode messages every place you use the chat.", + "Encryption_error_title": "Your encryption password seems wrong", + "Encryption_error_desc": "It wasn't possible to decode your encryption key to be imported.", + "Everyone_can_access_this_channel": "Everyone can access this channel", + "Everyone_can_access_this_team": "Everyone can access this team", + "Error_uploading": "Error uploading", + "Expiration_Days": "Expiration (Days)", + "Favorite": "Favorite", + "Favorites": "Favorites", + "Files": "Files", + "File_description": "File description", + "File_name": "File name", + "Finish_recording": "Finish recording", + "Following_thread": "Following thread", + "For_your_security_you_must_enter_your_current_password_to_continue": "For your security, you must enter your current password to continue", + "Forgot_password_If_this_email_is_registered": "If this email is registered, we'll send instructions on how to reset your password. If you do not receive an email shortly, please come back and try again.", + "Forgot_password": "Forgot your password?", + "Forgot_Password": "Forgot Password", + "Forward": "Forward", + "Forward_Chat": "Forward Chat", + "Forward_to_department": "Forward to department", + "Forward_to_user": "Forward to user", + "Full_table": "Click to see full table", + "Generate_New_Link": "Generate New Link", + "Group_by_favorites": "Group favorites", + "Group_by_type": "Group by type", + "Hide": "Hide", + "Has_joined_the_channel": "has joined the channel", + "Has_joined_the_conversation": "has joined the conversation", + "Has_left_the_channel": "has left the channel", + "Hide_System_Messages": "Hide System Messages", + "Hide_type_messages": "Hide \"{{type}}\" messages", + "How_It_Works": "How It Works", + "Message_HideType_uj": "User Join", + "Message_HideType_ul": "User Leave", + "Message_HideType_ru": "User Removed", + "Message_HideType_au": "User Added", + "Message_HideType_mute_unmute": "User Muted / Unmuted", + "Message_HideType_r": "Room Name Changed", + "Message_HideType_ut": "User Joined Conversation", + "Message_HideType_wm": "Welcome", + "Message_HideType_rm": "Message Removed", + "Message_HideType_subscription_role_added": "Was Set Role", + "Message_HideType_subscription_role_removed": "Role No Longer Defined", + "Message_HideType_room_archived": "Room Archived", + "Message_HideType_room_unarchived": "Room Unarchived", + "I_Saved_My_E2E_Password": "I Saved My E2E Password", + "IP": "IP", + "In_app": "In-app", + "In_App_And_Desktop": "In-app and Desktop", + "In_App_and_Desktop_Alert_info": "Displays a banner at the top of the screen when app is open, and displays a notification on desktop", + "Invisible": "Invisible", + "Invite": "Invite", + "is_a_valid_RocketChat_instance": "is a valid Rocket.Chat instance", + "is_not_a_valid_RocketChat_instance": "is not a valid Rocket.Chat instance", + "is_typing": "is typing", + "Invalid_or_expired_invite_token": "Invalid or expired invite token", + "Invalid_server_version": "The server you're trying to connect is using a version that's not supported by the app anymore: {{currentVersion}}.\n\nWe require version {{minVersion}}", + "Invite_Link": "Invite Link", + "Invite_users": "Invite users", + "Join": "Join", + "Join_Code": "Join Code", + "Insert_Join_Code": "Insert Join Code", + "Join_our_open_workspace": "Join our open workspace", + "Join_your_workspace": "Join your workspace", + "Just_invited_people_can_access_this_channel": "Just invited people can access this channel", + "Just_invited_people_can_access_this_team": "Just invited people can access this team", + "Language": "Language", + "last_message": "last message", + "Leave_channel": "Leave channel", + "leaving_room": "leaving room", + "Leave": "Leave", + "leave": "leave", + "Legal": "Legal", + "Light": "Light", + "License": "License", + "Livechat": "Livechat", + "Livechat_edit": "Livechat edit", + "Login": "Login", + "Login_error": "Your credentials were rejected! Please try again.", + "Login_with": "Login with", + "Logging_out": "Logging out.", + "Logout": "Logout", + "Max_number_of_uses": "Max number of uses", + "Max_number_of_users_allowed_is_number": "Max number of users allowed is {{maxUsers}}", + "members": "members", + "Members": "Members", + "Mentioned_Messages": "Mentioned Messages", + "mentioned": "mentioned", + "Mentions": "Mentions", + "Message_accessibility": "Message from {{user}} at {{time}}: {{message}}", + "Message_actions": "Message actions", + "Message_pinned": "Message pinned", + "Message_removed": "Message removed", + "Message_starred": "Message starred", + "Message_unstarred": "Message unstarred", + "message": "message", + "messages": "messages", + "Message": "Message", + "Messages": "Messages", + "Message_Reported": "Message reported", + "Microphone_Permission_Message": "Rocket.Chat needs access to your microphone so you can send audio message.", + "Microphone_Permission": "Microphone Permission", + "Mute": "Mute", + "muted": "muted", + "My_servers": "My servers", + "N_people_reacted": "{{n}} people reacted", + "N_users": "{{n}} users", + "N_channels": "{{n}} channels", + "name": "name", + "Name": "Name", + "Navigation_history": "Navigation history", + "Never": "Never", + "New_Message": "New Message", + "New_Password": "New Password", + "New_Server": "New Server", + "Next": "Next", + "No_files": "No files", + "No_limit": "No limit", + "No_mentioned_messages": "No mentioned messages", + "No_pinned_messages": "No pinned messages", + "No_results_found": "No results found", + "No_starred_messages": "No starred messages", + "No_thread_messages": "No thread messages", + "No_label_provided": "No {{label}} provided.", + "No_Message": "No Message", + "No_messages_yet": "No messages yet", + "No_Reactions": "No Reactions", + "No_Read_Receipts": "No Read Receipts", + "Not_logged": "Not logged", + "Not_RC_Server": "This is not a Rocket.Chat server.\n{{contact}}", + "Nothing": "Nothing", + "Nothing_to_save": "Nothing to save!", + "Notify_active_in_this_room": "Notify active users in this room", + "Notify_all_in_this_room": "Notify all in this room", + "Notifications": "Notifications", + "Notification_Duration": "Notification Duration", + "Notification_Preferences": "Notification Preferences", + "No_available_agents_to_transfer": "No available agents to transfer", + "Offline": "Offline", + "Oops": "Oops!", + "Omnichannel": "Omnichannel", + "Open_Livechats": "Chats in Progress", + "Omnichannel_enable_alert": "You're not available on Omnichannel. Would you like to be available?", + "Onboarding_description": "A workspace is your team or organization’s space to collaborate. Ask the workspace admin for address to join or create one for your team.", + "Onboarding_join_workspace": "Join a workspace", + "Onboarding_subtitle": "Beyond Team Collaboration", + "Onboarding_title": "Welcome to Rocket.Chat", + "Onboarding_join_open_description": "Join our open workspace to chat with the Rocket.Chat team and community.", + "Onboarding_agree_terms": "By continuing, you agree to Rocket.Chat", + "Onboarding_less_options": "Less options", + "Onboarding_more_options": "More options", + "Online": "Online", + "Only_authorized_users_can_write_new_messages": "Only authorized users can write new messages", + "Open_emoji_selector": "Open emoji selector", + "Open_Source_Communication": "Open Source Communication", + "Open_your_authentication_app_and_enter_the_code": "Open your authentication app and enter the code.", + "OR": "OR", + "OS": "OS", + "Overwrites_the_server_configuration_and_use_room_config": "Overwrites the server configuration and use room config", + "Password": "Password", + "Parent_channel_or_group": "Parent channel or group", + "Permalink_copied_to_clipboard": "Permalink copied to clipboard!", + "Phone": "Phone", + "Pin": "Pin", + "Pinned_Messages": "Pinned Messages", + "pinned": "pinned", + "Pinned": "Pinned", + "Please_add_a_comment": "Please add a comment", + "Please_enter_your_password": "Please enter your password", + "Please_wait": "Please wait.", + "Preferences": "Preferences", + "Preferences_saved": "Preferences saved!", + "Privacy_Policy": " Privacy Policy", + "Private_Channel": "Private Channel", + "Private": "Private", + "Processing": "Processing...", + "Profile_saved_successfully": "Profile saved successfully!", + "Profile": "Profile", + "Public_Channel": "Public Channel", + "Public": "Public", + "Push_Notifications": "Push Notifications", + "Push_Notifications_Alert_Info": "These notifications are delivered to you when the app is not open", + "Quote": "Quote", + "Reactions_are_disabled": "Reactions are disabled", + "Reactions_are_enabled": "Reactions are enabled", + "Reactions": "Reactions", + "Read": "Read", + "Read_External_Permission_Message": "Rocket.Chat needs to access photos, media, and files on your device", + "Read_External_Permission": "Read Media Permission", + "Read_Only_Channel": "Read Only Channel", + "Read_Only": "Read Only", + "Read_Receipt": "Read Receipt", + "Receive_Group_Mentions": "Receive Group Mentions", + "Receive_Group_Mentions_Info": "Receive @all and @here mentions", + "Register": "Register", + "Repeat_Password": "Repeat Password", + "Replied_on": "Replied on:", + "replies": "replies", + "reply": "reply", + "Reply": "Reply", + "Report": "Report", + "Receive_Notification": "Receive Notification", + "Receive_notifications_from": "Receive notifications from {{name}}", + "Resend": "Resend", + "Reset_password": "Reset password", + "resetting_password": "resetting password", + "RESET": "RESET", + "Return": "Return", + "Review_app_title": "Are you enjoying this app?", + "Review_app_desc": "Give us 5 stars on {{store}}", + "Review_app_yes": "Sure!", + "Review_app_no": "No", + "Review_app_later": "Maybe later", + "Review_app_unable_store": "Unable to open {{store}}", + "Review_this_app": "Review this app", + "Remove": "Remove", + "remove": "remove", + "Roles": "Roles", + "Room_actions": "Room actions", + "Room_changed_announcement": "Room announcement changed to: {{announcement}} by {{userBy}}", + "Room_changed_avatar": "Room avatar changed by {{userBy}}", + "Room_changed_description": "Room description changed to: {{description}} by {{userBy}}", + "Room_changed_privacy": "Room type changed to: {{type}} by {{userBy}}", + "Room_changed_topic": "Room topic changed to: {{topic}} by {{userBy}}", + "Room_Files": "Room Files", + "Room_Info_Edit": "Room Info Edit", + "Room_Info": "Room Info", + "Room_Members": "Room Members", + "Room_name_changed": "Room name changed to: {{name}} by {{userBy}}", + "SAVE": "SAVE", + "Save_Changes": "Save Changes", + "Save": "Save", + "Saved": "Saved", + "saving_preferences": "saving preferences", + "saving_profile": "saving profile", + "saving_settings": "saving settings", + "saved_to_gallery": "Saved to gallery", + "Save_Your_E2E_Password": "Save Your E2E Password", + "Save_Your_Encryption_Password": "Save Your Encryption Password", + "Save_Your_Encryption_Password_warning": "This password is not stored anywhere so save it carefully somewhere else.", + "Save_Your_Encryption_Password_info": "Notice that you lose your password, there is no way to recover it and you will lose access to your messages.", + "Search_Messages": "Search Messages", + "Search": "Search", + "Search_by": "Search by", + "Search_global_users": "Search for global users", + "Search_global_users_description": "If you turn-on, you can search for any user from others companies or servers.", + "Seconds": "{{second}} seconds", + "Security_and_privacy": "Security and privacy", + "Select_Avatar": "Select Avatar", + "Select_Server": "Select Server", + "Select_Users": "Select Users", + "Select_a_Channel": "Select a Channel", + "Select_a_Department": "Select a Department", + "Select_an_option": "Select an option", + "Select_a_User": "Select a User", + "Send": "Send", + "Send_audio_message": "Send audio message", + "Send_crash_report": "Send crash report", + "Send_message": "Send message", + "Send_me_the_code_again": "Send me the code again", + "Send_to": "Send to...", + "Sending_to": "Sending to", + "Sent_an_attachment": "Sent an attachment", + "Server": "Server", + "Servers": "Servers", + "Server_version": "Server version: {{version}}", + "Set_username_subtitle": "The username is used to allow others to mention you in messages", + "Set_custom_status": "Set custom status", + "Set_status": "Set status", + "Status_saved_successfully": "Status saved successfully!", + "Settings": "Settings", + "Settings_succesfully_changed": "Settings succesfully changed!", + "Share": "Share", + "Share_Link": "Share Link", + "Share_this_app": "Share this app", + "Show_more": "Show more..", + "Show_Unread_Counter": "Show Unread Counter", + "Show_Unread_Counter_Info": "Unread counter is displayed as a badge on the right of the channel, in the list", + "Sign_in_your_server": "Sign in your server", + "Sign_Up": "Sign Up", + "Some_field_is_invalid_or_empty": "Some field is invalid or empty", + "Sorting_by": "Sorting by {{key}}", + "Sound": "Sound", + "Star_room": "Star room", + "Star": "Star", + "Starred_Messages": "Starred Messages", + "starred": "starred", + "Starred": "Starred", + "Start_of_conversation": "Start of conversation", + "Start_a_Discussion": "Start a Discussion", + "Started_discussion": "Started a discussion:", + "Started_call": "Call started by {{userBy}}", + "Submit": "Submit", + "Table": "Table", + "Tags": "Tags", + "Take_a_photo": "Take a photo", + "Take_a_video": "Take a video", + "Take_it": "Take it!", + "tap_to_change_status": "tap to change status", + "Tap_to_view_servers_list": "Tap to view servers list", + "Terms_of_Service": " Terms of Service ", + "Theme": "Theme", + "The_user_wont_be_able_to_type_in_roomName": "The user won't be able to type in {{roomName}}", + "The_user_will_be_able_to_type_in_roomName": "The user will be able to type in {{roomName}}", + "There_was_an_error_while_action": "There was an error while {{action}}!", + "This_room_is_blocked": "This room is blocked", + "This_room_is_read_only": "This room is read only", + "Thread": "Thread", + "Threads": "Threads", + "Timezone": "Timezone", + "To": "To", + "topic": "topic", + "Topic": "Topic", + "Translate": "Translate", + "Try_again": "Try again", + "Two_Factor_Authentication": "Two-factor Authentication", + "Type_the_channel_name_here": "Type the channel name here", + "unarchive": "unarchive", + "UNARCHIVE": "UNARCHIVE", + "Unblock_user": "Unblock user", + "Unfavorite": "Unfavorite", + "Unfollowed_thread": "Unfollowed thread", + "Unmute": "Unmute", + "unmuted": "unmuted", + "Unpin": "Unpin", + "unread_messages": "unread", + "Unread": "Unread", + "Unread_on_top": "Unread on top", + "Unstar": "Unstar", + "Updating": "Updating...", + "Uploading": "Uploading", + "Upload_file_question_mark": "Upload file?", + "User": "User", + "Users": "Users", + "User_added_by": "User {{userAdded}} added by {{userBy}}", + "User_Info": "User Info", + "User_has_been_key": "User has been {{key}}", + "User_is_no_longer_role_by_": "{{user}} is no longer {{role}} by {{userBy}}", + "User_muted_by": "User {{userMuted}} muted by {{userBy}}", + "User_removed_by": "User {{userRemoved}} removed by {{userBy}}", + "User_sent_an_attachment": "{{user}} sent an attachment", + "User_unmuted_by": "User {{userUnmuted}} unmuted by {{userBy}}", + "User_was_set_role_by_": "{{user}} was set {{role}} by {{userBy}}", + "Username_is_empty": "Username is empty", + "Username": "Username", + "Username_or_email": "Username or email", + "Uses_server_configuration": "Uses server configuration", + "Validating": "Validating", + "Registration_Succeeded": "Registration Succeeded!", + "Verify": "Verify", + "Verify_email_title": "Registration Succeeded!", + "Verify_email_desc": "We have sent you an email to confirm your registration. If you do not receive an email shortly, please come back and try again.", + "Verify_your_email_for_the_code_we_sent": "Verify your email for the code we sent", + "Video_call": "Video call", + "View_Original": "View Original", + "Voice_call": "Voice call", + "Waiting_for_network": "Waiting for network...", + "Websocket_disabled": "Websocket is disabled for this server.\n{{contact}}", + "Welcome": "Welcome", + "What_are_you_doing_right_now": "What are you doing right now?", + "Whats_your_2fa": "What's your 2FA code?", + "Without_Servers": "Without Servers", + "Workspaces": "Workspaces", + "Would_you_like_to_return_the_inquiry": "Would you like to return the inquiry?", + "Write_External_Permission_Message": "Rocket.Chat needs access to your gallery so you can save images.", + "Write_External_Permission": "Gallery Permission", + "Yes": "Yes", + "Yes_action_it": "Yes, {{action}} it!", + "Yesterday": "Yesterday", + "You_are_in_preview_mode": "You are in preview mode", + "You_are_offline": "You are offline", + "You_can_search_using_RegExp_eg": "You can use RegExp. e.g. `/^text$/i`", + "You_colon": "You: ", + "you_were_mentioned": "you were mentioned", + "You_were_removed_from_channel": "You were removed from {{channel}}", + "you": "you", + "You": "You", + "Logged_out_by_server": "You've been logged out by the server. Please log in again.", + "You_need_to_access_at_least_one_RocketChat_server_to_share_something": "You need to access at least one Rocket.Chat server to share something.", + "You_need_to_verifiy_your_email_address_to_get_notications": "You need to verify your email address to get notifications", + "Your_certificate": "Your Certificate", + "Your_invite_link_will_expire_after__usesLeft__uses": "Your invite link will expire after {{usesLeft}} uses.", + "Your_invite_link_will_expire_on__date__or_after__usesLeft__uses": "Your invite link will expire on {{date}} or after {{usesLeft}} uses.", + "Your_invite_link_will_expire_on__date__": "Your invite link will expire on {{date}}.", + "Your_invite_link_will_never_expire": "Your invite link will never expire.", + "Your_workspace": "Your workspace", + "Your_password_is": "Your password is", + "Version_no": "Version: {{version}}", + "You_will_not_be_able_to_recover_this_message": "You will not be able to recover this message!", + "You_will_unset_a_certificate_for_this_server": "You will unset a certificate for this server", + "Change_Language": "Change Language", + "Crash_report_disclaimer": "We never track the content of your chats. The crash report and analytics events only contains relevant information for us in order to identify and fix issues.", + "Type_message": "Type message", + "Room_search": "Rooms search", + "Room_selection": "Room selection 1...9", + "Next_room": "Next room", + "Previous_room": "Previous room", + "New_room": "New room", + "Upload_room": "Upload to room", + "Search_messages": "Search messages", + "Scroll_messages": "Scroll messages", + "Reply_latest": "Reply to latest", + "Reply_in_Thread": "Reply in Thread", + "Server_selection": "Server selection", + "Server_selection_numbers": "Server selection 1...9", + "Add_server": "Add server", + "New_line": "New line", + "You_will_be_logged_out_of_this_application": "You will be logged out of this application.", + "Clear": "Clear", + "This_will_clear_all_your_offline_data": "This will clear all your offline data.", + "This_will_remove_all_data_from_this_server": "This will remove all data from this server.", + "Mark_unread": "Mark Unread", + "Wait_activation_warning": "Before you can login, your account must be manually activated by an administrator.", + "Screen_lock": "Screen lock", + "Local_authentication_biometry_title": "Authenticate", + "Local_authentication_biometry_fallback": "Use passcode", + "Local_authentication_unlock_option": "Unlock with Passcode", + "Local_authentication_change_passcode": "Change Passcode", + "Local_authentication_info": "Note: if you forget the Passcode, you'll need to delete and reinstall the app.", + "Local_authentication_facial_recognition": "facial recognition", + "Local_authentication_fingerprint": "fingerprint", + "Local_authentication_unlock_with_label": "Unlock with {{label}}", + "Local_authentication_auto_lock_60": "After 1 minute", + "Local_authentication_auto_lock_300": "After 5 minutes", + "Local_authentication_auto_lock_900": "After 15 minutes", + "Local_authentication_auto_lock_1800": "After 30 minutes", + "Local_authentication_auto_lock_3600": "After 1 hour", + "Passcode_enter_title": "Enter your passcode", + "Passcode_choose_title": "Choose your new passcode", + "Passcode_choose_confirm_title": "Confirm your new passcode", + "Passcode_choose_error": "Passcodes don't match. Try again.", + "Passcode_choose_force_set": "Passcode required by admin", + "Passcode_app_locked_title": "App locked", + "Passcode_app_locked_subtitle": "Try again in {{timeLeft}} seconds", + "After_seconds_set_by_admin": "After {{seconds}} seconds (set by admin)", + "Dont_activate": "Don't activate now", + "Queued_chats": "Queued chats", + "Queue_is_empty": "Queue is empty", + "Logout_from_other_logged_in_locations": "Logout from other logged in locations", + "You_will_be_logged_out_from_other_locations": "You'll be logged out from other locations.", + "Logged_out_of_other_clients_successfully": "Logged out of other clients successfully", + "Logout_failed": "Logout failed!", + "Log_analytics_events": "Log analytics events", + "E2E_encryption_change_password_title": "Change Encryption Password", + "E2E_encryption_change_password_description": "You can now create encrypted private groups and direct messages. You may also change existing private groups or DMs to encrypted. \nThis is end to end encryption so the key to encode/decode your messages will not be saved on the server. For that reason you need to store your password somewhere safe. You will be required to enter it on other devices you wish to use e2e encryption on.", + "E2E_encryption_change_password_error": "Error while changing E2E key password!", + "E2E_encryption_change_password_success": "E2E key password changed successfully!", + "E2E_encryption_change_password_message": "Make sure you've saved it carefully somewhere else.", + "E2E_encryption_change_password_confirmation": "Yes, change it", + "E2E_encryption_reset_title": "Reset E2E Key", + "E2E_encryption_reset_description": "This option will remove your current E2E key and log you out. \nWhen you login again, Rocket.Chat will generate you a new key and restore your access to any encrypted room that has one or more members online. \nDue to the nature of the E2E encryption, Rocket.Chat will not be able to restore access to any encrypted room that has no member online.", + "E2E_encryption_reset_button": "Reset E2E Key", + "E2E_encryption_reset_error": "Error while resetting E2E key!", + "E2E_encryption_reset_message": "You're going to be logged out.", + "E2E_encryption_reset_confirmation": "Yes, reset it", + "Following": "Following", + "Threads_displaying_all": "Displaying All", + "Threads_displaying_following": "Displaying Following", + "Threads_displaying_unread": "Displaying Unread", + "No_threads": "There are no threads", + "No_threads_following": "You are not following any threads", + "No_threads_unread": "There are no unread threads", + "Messagebox_Send_to_channel": "Send to channel", + "Leader": "Leader", + "Moderator": "Moderator", + "Owner": "Owner", + "Remove_from_room": "Remove from room", + "Ignore": "Ignore", + "Unignore": "Unignore", + "User_has_been_ignored": "User has been ignored", + "User_has_been_unignored": "User is no longer ignored", + "User_has_been_removed_from_s": "User has been removed from {{s}}", + "User__username__is_now_a_leader_of__room_name_": "User {{username}} is now a leader of {{room_name}}", + "User__username__is_now_a_moderator_of__room_name_": "User {{username}} is now a moderator of {{room_name}}", + "User__username__is_now_a_owner_of__room_name_": "User {{username}} is now a owner of {{room_name}}", + "User__username__removed_from__room_name__leaders": "User {{username}} removed from {{room_name}} leaders", + "User__username__removed_from__room_name__moderators": "User {{username}} removed from {{room_name}} moderators", + "User__username__removed_from__room_name__owners": "User {{username}} removed from {{room_name}} owners", + "The_user_will_be_removed_from_s": "The user will be removed from {{s}}", + "Yes_remove_user": "Yes, remove user!", + "Direct_message": "Direct message", + "Message_Ignored": "Message ignored. Tap to display it.", + "Enter_workspace_URL": "Enter workspace URL", + "Workspace_URL_Example": "Ex. your-company.rocket.chat", + "This_room_encryption_has_been_enabled_by__username_": "This room's encryption has been enabled by {{username}}", + "This_room_encryption_has_been_disabled_by__username_": "This room's encryption has been disabled by {{username}}", + "Teams": "Teams", + "No_team_channels_found": "No channels found", + "Team_not_found": "Team not found", + "Create_Team": "Create Team", + "Team_Name": "Team Name", + "Private_Team": "Private Team", + "Read_Only_Team": "Read Only Team", + "Broadcast_Team": "Broadcast Team", + "creating_team": "creating team", + "team-name-already-exists": "A team with that name already exists", + "Add_Channel_to_Team": "Add Channel to Team", + "Left_The_Team_Successfully": "Left the team successfully", + "Create_New": "Create New", + "Add_Existing": "Add Existing", + "Add_Existing_Channel": "Add Existing Channel", + "Remove_from_Team": "Remove from Team", + "Auto-join": "Auto-join", + "Remove_Team_Room_Warning": "Woud you like to remove this channel from the team? The channel will be moved back to the workspace", + "Confirmation": "Confirmation", + "invalid-room": "Invalid room", + "You_are_leaving_the_team": "You are leaving the team '{{team}}'", + "Leave_Team": "Leave Team", + "Select_Team": "Select Team", + "Select_Team_Channels": "Select the Team's channels you would like to leave.", + "Cannot_leave": "Cannot leave", + "Cannot_remove": "Cannot remove", + "Cannot_delete": "Cannot delete", + "Last_owner_team_room": "You are the last owner of this channel. Once you leave the team, the channel will be kept inside the team but you will be managing it from outside.", + "last-owner-can-not-be-removed": "Last owner cannot be removed", + "Remove_User_Teams": "Select channels you want the user to be removed from.", + "Delete_Team": "Delete Team", + "Select_channels_to_delete": "This can't be undone. Once you delete a team, all chat content and configuration will be deleted. \n\nSelect the channels you would like to delete. The ones you decide to keep will be available on your workspace. Notice that public channels will still be public and visible to everyone.", + "You_are_deleting_the_team": "You are deleting this team.", + "Removing_user_from_this_team": "You are removing {{user}} from this team", + "Remove_User_Team_Channels": "Select the channels you want the user to be removed from.", + "Remove_Member": "Remove Member", + "leaving_team": "leaving team", + "removing_team": "removing from team", + "moving_channel_to_team": "moving channel to team", + "deleting_team": "deleting team", + "member-does-not-exist": "Member does not exist", + "Convert": "Convert", + "Convert_to_Team": "Convert to Team", + "Convert_to_Team_Warning": "You are converting this Channel to a Team. All Members will be kept.", + "Move_to_Team": "Move to Team", + "Move_Channel_Paragraph": "Moving a channel inside a team means that this channel will be added in the team’s context, however, all channel’s members, which are not members of the respective team, will still have access to this channel, but will not be added as team’s members. \n\nAll channel’s management will still be made by the owners of this channel.\n\nTeam’s members and even team’s owners, if not a member of this channel, can not have access to the channel’s content. \n\nPlease notice that the Team’s owner will be able remove members from the Channel.", + "Move_to_Team_Warning": "After reading the previous intructions about this behavior, do you still want to move this channel to the selected team?", + "Load_More": "Load More", + "Load_Newer": "Load Newer", + "Load_Older": "Load Older", + "room-name-already-exists": "Room name already exists", + "error-team-creation": "Error team creation", + "unauthorized": "Unauthorized", + "Left_The_Room_Successfully": "Left the room successfully", + "Deleted_The_Team_Successfully": "Team deleted successfully", + "Deleted_The_Room_Successfully": "Room deleted successfully", + "Convert_to_Channel": "Convert to Channel", + "Converting_Team_To_Channel": "Converting Team to Channel", + "Select_Team_Channels_To_Delete": "Select the Team’s Channels you would like to delete, the ones you do not select will be moved to the Workspace. \n\nNotice that public Channels will be public and visible to everyone.", + "You_are_converting_the_team": "You are converting this Team to a Channel", + "creating_discussion": "creating discussion" +} diff --git a/app/i18n/locales/es-ES.json b/app/i18n/locales/es-ES.json index 25a65523df..faf9bca292 100644 --- a/app/i18n/locales/es-ES.json +++ b/app/i18n/locales/es-ES.json @@ -1,454 +1,454 @@ { - "1_person_reacted": "1 persona reaccionó", - "1_user": "1 usuario", - "error-action-not-allowed": "{{action}} no permitida", - "error-application-not-found": "Aplicación no encontrada", - "error-archived-duplicate-name": "Hay un canal archivado con nombre {{room_name}}", - "error-avatar-invalid-url": "URL de avatar inválida: {{url}}", - "error-avatar-url-handling": "Error durante el procesamiento de ajuste de imagen de usuario desde una dirección URL ({{url}}) para {{username}}", - "error-cant-invite-for-direct-room": "No se puede invitar a los usuarios a salas de chat directas", - "error-could-not-change-email": "No es posible cambiar la dirección de correo electrónico", - "error-could-not-change-name": "No es posible cambiar el nombre", - "error-could-not-change-username": "No es posible cambiar el nombre de usuario", - "error-delete-protected-role": "No se puede eliminar un rol protegido", - "error-department-not-found": "Departamento no encontrado", - "error-direct-message-file-upload-not-allowed": "No se permite compartir archivos en mensajes directos", - "error-duplicate-channel-name": "Ya existe un canal con nombre {{room_name}}", - "error-email-domain-blacklisted": "El dominio del correo electrónico está en la lista negra", - "error-email-send-failed": "Error al enviar el correo electrónico: {{message}}", - "error-field-unavailable": "{{field}} ya está en uso :(", - "error-file-too-large": "El archivo es demasiado grande", - "error-importer-not-defined": "El importador no se configuró correctamente. Falta la clase de importación", - "error-input-is-not-a-valid-field": "{{input}} no es válido {{field}}", - "error-invalid-actionlink": "Enlace de acción inválido", - "error-invalid-arguments": "Los argumentos no son correctos", - "error-invalid-asset": "El archivo archivo no es correcto", - "error-invalid-channel": "El canal no es correcto.", - "error-invalid-channel-start-with-chars": "Canal incorrecto. Debe comenzar con @ o #", - "error-invalid-custom-field": "Campo personalizado no válido", - "error-invalid-custom-field-name": "Nombre no válido para el campo personalizado. Utilice sólo letras, números, guiones o guión bajo", - "error-invalid-date": "La fecha proporcionada no es correcta.", - "error-invalid-description": "La descripción no es correcta", - "error-invalid-domain": "El dominio no es correcto", - "error-invalid-email": "El email {{email}} no es correcto", - "error-invalid-email-address": "La dirección de correo no es correcta", - "error-invalid-file-height": "La altura de la imagen no es correcta", - "error-invalid-file-type": "El formato del archivo no es correcto", - "error-invalid-file-width": "El ancho de la imagen o es correcto", - "error-invalid-from-address": "La dirección del remitente (FROM) no es correcta.", - "error-invalid-integration": "La integración no es correcta", - "error-invalid-message": "El mensaje no es correcto", - "error-invalid-method": "El método no es correcto", - "error-invalid-name": "El nombre no es correcto", - "error-invalid-password": "La contraseña no es correcta", - "error-invalid-redirectUri": "La URL de redirección no es correcta.", - "error-invalid-role": "El rol no es correcto", - "error-invalid-room": "La sala no es correcta", - "error-invalid-room-name": "No se puede asignar el nombre {{room_name}} a una sala.", - "error-invalid-room-type": "No se puede asignar el tipo {{type}} a una sala.", - "error-invalid-settings": "La configuración proporcionada no es correcta", - "error-invalid-subscription": "La suscripción no es correcta", - "error-invalid-token": "El token no es correcto", - "error-invalid-triggerWords": "El triggerWords no es correcto", - "error-invalid-urls": "Las URLs no son correctas", - "error-invalid-user": "El usuario no es correcto", - "error-invalid-username": "El nombre de usuario no es correcto", - "error-invalid-webhook-response": "El webhook no ha respondido con código de estado HTTP 200.", - "error-message-deleting-blocked": "No está permitido eliminar mensajes", - "error-message-editing-blocked": "No está permitido editar mensajes", - "error-message-size-exceeded": "El mensaje supera el tamaño máximo permitido", - "error-missing-unsubscribe-link": "Debes proporcionar el enlace para cancelar la suscripción [unsubscribe].", - "error-no-tokens-for-this-user": "No hay tokens asignados para el usuario", - "error-not-allowed": "No permitido", - "error-not-authorized": "No autorizado", - "error-push-disabled": "El Push está desactivado", - "error-remove-last-owner": "El usuario es el único propietario existente. Debes establecer un nuevo propietario antes de eliminarlo.", - "error-role-in-use": "No puedes eliminar el rol dado que está en uso", - "error-role-name-required": "Debes indicar el nombre del rol", - "error-the-field-is-required": "El campo {{field}} es obligatorio.", - "error-too-many-requests": "Error, demasiadas peticiones. Debes esperar {{seconds}} segundos antes de continuar. Por favor, sé paciente.", - "error-user-is-not-activated": "El usuario no está activo", - "error-user-has-no-roles": "El usuario no tiene roles", - "error-user-limit-exceeded": "El número de usuarios que quieres invitar al canal #channel_name supera el límite establecido por el administrador.", - "error-user-not-in-room": "El usuario no está en la sala", - "error-user-registration-custom-field": "error-user-registration-custom-field", - "error-user-registration-disabled": "El registro de usuario está deshabilitado", - "error-user-registration-secret": "El registro de usuarios sólo está permitido por URL secretas", - "error-you-are-last-owner": "Eres el único propietario existente. Debes establecer un nuevo propietario antes de abandonar la sala.", - "Actions": "Acciones", - "activity": "actividad", - "Activity": "Actividad", - "Add_Reaction": "Añadir reacción", - "Add_Server": "Añadir servidor", - "Admin_Panel": "Panel de Control", - "Alert": "Alerta", - "alert": "alerta", - "alerts": "alertas", - "All_users_in_the_channel_can_write_new_messages": "Todos los usuarios en el canal pueden escribir mensajes", - "All": "Todos", - "All_Messages": "Todos los mensajes", - "Allow_Reactions": "Permitir reacciones", - "Alphabetical": "Alfabético", - "and_more": "y más", - "and": "y", - "announcement": "anuncio", - "Announcement": "Anuncio", - "Apply_Your_Certificate": "Aplica tu certificado", - "ARCHIVE": "FICHERO", - "archive": "fichero", - "are_typing": "están escribiendo", - "Are_you_sure_question_mark": "¿Estás seguro?", - "Are_you_sure_you_want_to_leave_the_room": "¿Deseas salir de la sala {{room}}?", - "Audio": "Audio", - "Authenticating": "Autenticando", - "Automatic": "Automático", - "Auto_Translate": "Traducción automática", - "Avatar_changed_successfully": "¡Avatar modificado correctamente!", - "Avatar_Url": "URL del Avatar", - "Away": "Ausente", - "Back": "Volver", - "Black": "Negro", - "Block_user": "Bloquear usuario", - "Broadcast_channel_Description": "Sólo los usuarios autorizados pueden escribir nuevos mensajes, el resto podrán responder sobre los mismos.", - "Broadcast_Channel": "Canal de Transmisión", - "Busy": "Ocupado", - "By_proceeding_you_are_agreeing": "Al proceder estarás de acuerdo", - "Cancel_editing": "Cancelar edición", - "Cancel_recording": "Cancelar grabación", - "Cancel": "Cancelar", - "changing_avatar": "cambiando avatar", - "creating_channel": "creando channel", - "Channel_Name": "Nombre sala", - "Channels": "Salas", - "Chats": "Chats", - "Call_already_ended": "¡!La llamada ya ha finalizado!", - "Click_to_join": "¡Unirme!", - "Close": "Cerrar", - "Close_emoji_selector": "Cerrar selector de emojis", - "Choose": "Seleccionar", - "Choose_from_library": "Seleccionar desde galería", - "Choose_file": "Seleccionar archivo", - "Code": "Código", - "Collaborative": "Colaborativo", - "Confirm": "Confirmar", - "Connect": "Conectar", - "Connected": "Conectado", - "connecting_server": "conectando al servidor", - "Connecting": "Conectando...", - "Contact_us": "Contacta con nosotros", - "Contact_your_server_admin": "Contacta con el administrador.", - "Continue_with": "Continuar con", - "Copied_to_clipboard": "¡Copiado al portapapeles!", - "Copy": "Copiar", - "Permalink": "Enlace permanente", - "Certificate_password": "Contraseña del certificado", - "Whats_the_password_for_your_certificate": "¿Cuál es la contraseña de tu certificado?", - "Create_account": "Crear una cuenta", - "Create_Channel": "Crear sala", - "Created_snippet": "crear mensaje en bloque", - "Create_a_new_workspace": "Crear un nuevo espacio de trabajo", - "Create": "Crear", - "Dark": "Oscuro", - "Dark_level": "Nivel de oscuridad", - "Default": "Por defecto", - "Delete_Room_Warning": "Eliminar a un usuario causará la eliminación de todos los mensajes creados por dicho usuario. Esta operación no se puede deshacer.", - "delete": "eliminar", - "Delete": "Eliminar", - "DELETE": "ELIMINAR", - "deleting_room": "eliminando sala", - "description": "descripción", - "Description": "Descripción", - "Desktop_Options": "Opciones de escritorio", - "Directory": "Directorio", - "Direct_Messages": "Mensajes directos", - "Disable_notifications": "Desactivar notificaciones", - "Discussions": "Conversaciones", - "Dont_Have_An_Account": "¿Todavía no tienes una cuenta?", - "Do_you_have_a_certificate": "¿Tienes un certificado?", - "Do_you_really_want_to_key_this_room_question_mark": "¿Deseas {{key}} de esta sala?", - "edit": "editar", - "edited": "editado", - "Edit": "Editar", - "Email_or_password_field_is_empty": "El email o la contraseña están vacíos", - "Email": "E-mail", - "email": "e-mail", - "Enable_Auto_Translate": "Permitir Auto-Translate", - "Enable_notifications": "Permitir notificaciones", - "Everyone_can_access_this_channel": "Todos los usuarios pueden acceder a este canal", - "Error_uploading": "Error en la subida", - "Favorite": "Favorito", - "Favorites": "Favoritos", - "Files": "Archivos", - "File_description": "Descripción del archivo", - "File_name": "Nombre del archivo", - "Finish_recording": "Finalizar grabación", - "Following_thread": "Siguiendo hilo", - "For_your_security_you_must_enter_your_current_password_to_continue": "Por seguridad, debes introducir tu contraseña para continuar", - "Forgot_password_If_this_email_is_registered": "Si este email está registrado, te enviaremos las instrucciones para resetear tu contraseña. Si no recibes un email en breve, vuelve aquí e inténtalo de nuevo.", - "Forgot_password": "¿Ha olvidado su contraseña?", - "Forgot_Password": "Olvidé la contraseña", - "Full_table": "Click para ver la tabla completa", - "Group_by_favorites": "Agrupar por favoritos", - "Group_by_type": "Agrupar por tipo", - "Hide": "Ocultar", - "Has_joined_the_channel": "se ha unido al canal", - "Has_joined_the_conversation": "se ha unido a la conversación", - "Has_left_the_channel": "ha dejado el canal", - "In_App_And_Desktop": "En la aplicación y en el escritorio", - "In_App_and_Desktop_Alert_info": "Muestra un banner en la parte superior de la pantalla cuando la aplicación esté abierta y muestra una notificación en el escritorio", - "Invisible": "Invisible", - "Invite": "Invitar", - "is_a_valid_RocketChat_instance": "es una instancia válida de Rocket.Chat", - "is_not_a_valid_RocketChat_instance": "no es una instancia válida de Rocket.Chat", - "is_typing": "escribiendo", - "Invalid_server_version": "El servidor que intentas conectar está usando una versión que ya no está soportada por la aplicación : {{currentVersion}}. Se requiere una versión {{minVersion}}.", - "Join": "Conectar", - "Just_invited_people_can_access_this_channel": "Sólo gente invitada puede acceder a este canal.", - "Language": "Idioma", - "last_message": "último mensaje", - "Leave_channel": "Abandonar el canal", - "leaving_room": "abandonando sala", - "leave": "abandonar", - "Legal": "Legal", - "Light": "Claro", - "License": "Licencia", - "Livechat": "LiveChat", - "Login": "Inicio de sesión", - "Login_error": "¡Sus credenciales fueron rechazadas! Por favor, inténtelo de nuevo.", - "Login_with": "Iniciar sesión con", - "Logout": "Cerrar sesión", - "members": "miembros", - "Members": "Miembros", - "Mentioned_Messages": "Mensajes mencionados", - "mentioned": "mencionado", - "Mentions": "Menciones", - "Message_accessibility": "Mensaje de {{user}} a las {{time}}: {{message}}", - "Message_actions": "Acciones de mensaje", - "Message_pinned": "Mensaje fijado", - "Message_removed": "Mensaje eliminado", - "message": "mensaje", - "messages": "mensajes", - "Messages": "Mensajes", - "Message_Reported": "Mensaje notificado", - "Microphone_Permission_Message": "Rocket.Chat necesita acceso a su micrófono para que pueda enviar un mensaje de audio.", - "Microphone_Permission": "Permiso de micrófono", - "Mute": "Mutear", - "muted": "muteado", - "My_servers": "Mis servidores", - "N_people_reacted": "Han reaccionado {{n}} personas", - "N_users": "{{n}} usuarios", - "name": "nombre", - "Name": "Nombre", - "New_Message": "Nuevo mensaje", - "New_Password": "Nueva contraseña", - "New_Server": "Nuevo servidor", - "Next": "Siguiente", - "No_files": "No hay archivos", - "No_mentioned_messages": "No hay mensajes mencionados", - "No_pinned_messages": "No hay mensajes fijados", - "No_results_found": "No hay resultados", - "No_starred_messages": "No hay mensajes destacados", - "No_thread_messages": "No hay hilos", - "No_Message": "Sin mensajes", - "No_messages_yet": "No hay mensajes todavía", - "No_Reactions": "No hay reacciones", - "No_Read_Receipts": "No hay confirmaciones de lectura", - "Not_logged": "No ha iniciado sesión", - "Not_RC_Server": "Esto no es un servidor de Rocket.Chat.\n{{contact}}", - "Nothing": "Nada", - "Nothing_to_save": "¡No hay nada por guardar!", - "Notify_active_in_this_room": "Notificar a los usuarios activos en esta sala", - "Notify_all_in_this_room": "Notificar a todos en esta sala", - "Notifications": "Notificaciones", - "Notification_Duration": "Duración de la notificación", - "Notification_Preferences": "Configuración de notificaciones", - "Offline": "Sin conexión", - "Oops": "Oops!", - "Onboarding_title": "Bienvenido a Rocket.Chat", - "Online": "Conectado", - "Only_authorized_users_can_write_new_messages": "Sólo pueden escribir mensajes usuarios autorizados", - "Open_emoji_selector": "Abrir selector de emojis", - "Open_Source_Communication": "Comunicación Open Source", - "Password": "Contraseña", - "Permalink_copied_to_clipboard": "¡Enlace permanente copiado al portapapeles!", - "Pin": "Fijar", - "Pinned_Messages": "Mensajes fijados", - "pinned": "fijado", - "Pinned": "Fijado", - "Please_enter_your_password": "Por favor introduce la contraseña", - "Preferences": "Preferencias", - "Preferences_saved": "¡Preferencias guardadas!", - "Privacy_Policy": "Política de privacidad", - "Private_Channel": "Canal privado", - "Private": "Privado", - "Processing": "Procesando...", - "Profile_saved_successfully": "¡Perfil guardado correctamente!", - "Profile": "Perfil", - "Public_Channel": "Canal público", - "Public": "Público", - "Push_Notifications": "Notificaciones Push", - "Push_Notifications_Alert_Info": "Estas notificaciones se le entregan cuando la aplicación no está abierta", - "Quote": "Citar", - "Reactions_are_disabled": "Las reacciones están desactivadas", - "Reactions_are_enabled": "Las reacciones están activadas", - "Reactions": "Reacciones", - "Read": "Leer", - "Read_Only_Channel": "Canal de sólo lectura", - "Read_Only": "Sólo lectura ", - "Read_Receipt": "Comprobante de lectura", - "Receive_Group_Mentions": "Recibir menciones de grupo", - "Receive_Group_Mentions_Info": "Recibir menciones @all y @here", - "Register": "Registrar", - "Repeat_Password": "Repetir contraseña", - "Replied_on": "Respondido el:", - "replies": "respuestas", - "reply": "respuesta", - "Reply": "Respuesta", - "Report": "Informe", - "Receive_Notification": "Recibir notificación", - "Receive_notifications_from": "Recibir notificación de {{name}}", - "Resend": "Reenviar", - "Reset_password": "Resetear contraseña", - "resetting_password": "reseteando contraseña", - "RESET": "RESET", - "Roles": "Roles", - "Room_actions": "Acciones de sala", - "Room_changed_announcement": "El anuncio de la sala cambió a: {{announcement}} por {{userBy}}", - "Room_changed_description": "La descripción de la sala cambió a: {{description}} por {{userBy}}", - "Room_changed_privacy": "El tipo de la sala cambió a: {{type}} por {{userBy}}", - "Room_changed_topic": "El asunto de la sala cambió a: {{topic}} por {{userBy}}", - "Room_Files": "Archivos", - "Room_Info_Edit": "Editar información de la sala", - "Room_Info": "Información de la sala", - "Room_Members": "Miembros de la sala", - "Room_name_changed": "El nombre de la sala cambió a: {{name}} por {{userBy}}", - "SAVE": "GUARDAR", - "Save_Changes": "Guardar cambios", - "Save": "Guardar", - "saving_preferences": "guardando preferencias", - "saving_profile": "guardando perfil", - "saving_settings": "guardando configuración", - "Search_Messages": "Buscar mensajes", - "Search": "Buscar", - "Search_by": "Buscar por", - "Search_global_users": "Buscar por usuarios globales", - "Search_global_users_description": "Si lo activas, puedes buscar cualquier usuario de otras empresas o servidores.", - "Seconds": "{{second}} segundos", - "Select_Avatar": "Selecciona avatar", - "Select_Server": "Selecciona servidor", - "Select_Users": "Selecciona usuarios", - "Send": "Enviar", - "Send_audio_message": "Enviar nota de audio", - "Send_crash_report": "Enviar informe errores", - "Send_message": "Enviar mensaje", - "Send_to": "Enviar a..", - "Sent_an_attachment": "Enviar un adjunto", - "Server": "Servidor", - "Servers": "Servidores", - "Server_version": "Versión servidor: {{version}}", - "Set_username_subtitle": "El nombre de usuario se utiliza para permitir que otros le mencionen en los mensajes", - "Settings": "Configuración", - "Settings_succesfully_changed": "¡Configuración cambiada correctamente!", - "Share": "Compartir", - "Share_this_app": "Compartir esta aplicación", - "Show_Unread_Counter": "Mostrar contador de no leídos", - "Show_Unread_Counter_Info": "El contador de no leídos se muestra como una insignia a la derecha del canal, en la lista", - "Sign_in_your_server": "Accede a tu servidor", - "Sign_Up": "Registrarse", - "Some_field_is_invalid_or_empty": "Algún campo no es correcto o está vacío", - "Sorting_by": "Ordenado por {{key}}", - "Sound": "Sonido", - "Star_room": "Destacar sala", - "Star": "Destacar", - "Starred_Messages": "Mensajes destacados", - "starred": "destacado", - "Starred": "Destacado", - "Start_of_conversation": "Comienzo de la conversación", - "Started_discussion": "Comenzar una conversación:", - "Started_call": "Llamada iniciada por {{userBy}}", - "Submit": "Enviar", - "Table": "Tabla", - "Take_a_photo": "Enviar una foto", - "Take_a_video": "Enviar un vídeo", - "tap_to_change_status": "pulsa para cambiar el estado", - "Tap_to_view_servers_list": "Pulsa para ver la lista de servidores", - "Terms_of_Service": "Términos de servicio", - "Theme": "Tema", - "There_was_an_error_while_action": "¡Ha habido un error mientras {{action}}!", - "This_room_is_blocked": "La sala está bloqueada", - "This_room_is_read_only": "Esta sala es de sólo lectura", - "Thread": "Hilo", - "Threads": "Hilos", - "Timezone": "Zona horaria", - "To": "Para", - "topic": "asunto", - "Topic": "Asunto", - "Translate": "Traducir", - "Try_again": "Intentar de nuevo", - "Two_Factor_Authentication": "Autenticación de doble factor", - "Type_the_channel_name_here": "Escribe el nombre del canal aquí", - "unarchive": "desarchivar", - "UNARCHIVE": "DESARCHIVAR", - "Unblock_user": "Desbloquear usuario", - "Unfavorite": "Quitar favorito", - "Unfollowed_thread": "Dejar de seguir el hilo", - "Unmute": "Desmutear", - "unmuted": "Desmuteado", - "Unpin": "Quitar estado fijado", - "unread_messages": "marcar como no leído", - "Unread": "Marcar como no leído", - "Unread_on_top": "Mensajes no leídos en la parte superior", - "Unstar": "Quitar destacado", - "Updating": "Actualizando...", - "Uploading": "Subiendo", - "Upload_file_question_mark": "¿Subir fichero?", - "Users": "Usuarios", - "User_added_by": "Usuario {{userAdded}} añadido por {{userBy}}", - "User_has_been_key": "El usuario ha sido {{key}}", - "User_is_no_longer_role_by_": "{{user}} ha dejado de ser {{role}} por {{userBy}}", - "User_muted_by": "Usuario {{userMuted}} muteado por {{userBy}}", - "User_removed_by": "Usuario {{userRemoved}} eliminado por {{userBy}}", - "User_sent_an_attachment": "{{user}} envío un adjunto", - "User_unmuted_by": "Usuario {{userUnmuted}} desmuteado por {{userBy}}", - "User_was_set_role_by_": "{{user}} ha comenzado a ser {{role}} por {{userBy}}", - "Username_is_empty": "Nombre de usuario está vacío", - "Username": "Nombre de usuario", - "Username_or_email": "Nombre de usuario o email", - "Validating": "Validando", - "Video_call": "Vídeo llamada", - "View_Original": "Ver original", - "Voice_call": "Llamada de voz", - "Websocket_disabled": "Websocket está deshabilitado para este servidor.\n{{contact}}", - "Welcome": "Bienvenido", - "Whats_your_2fa": "¿Cuál es tu código 2FA?", - "Without_Servers": "Sin servidores", - "Yes_action_it": "Sí, ¡{{action}}!", - "Yesterday": "Ayer", - "You_are_in_preview_mode": "Estás en modo vista previa", - "You_are_offline": "Estás desconectado", - "You_can_search_using_RegExp_eg": "Puedes usar expresiones regulares. Por ejemplo, `/^text$/i`", - "You_colon": "Tú: ", - "you_were_mentioned": "has sido mencionado", - "you": "tú", - "You": "Tú", - "You_need_to_access_at_least_one_RocketChat_server_to_share_something": "Necesita acceder al menos a un servidor Rocket.Chat para compartir algo.", - "Your_certificate": "Tu certificado", - "Version_no": "Versión: {{version}}", - "You_will_not_be_able_to_recover_this_message": "¡No podrás recuperar este mensaje!", - "Change_Language": "Cambiar idioma", - "Crash_report_disclaimer": "Nunca rastreamos el contenido de sus conversaciones. El informe del error sólo contiene información relevante para nosotros con el fin de identificar los problemas y solucionarlos.", - "Type_message": "Escribir mensaje", - "Room_search": "Búsqueda de salas", - "Room_selection": "Selecciona sala 1...9", - "Next_room": "Siguiente sala", - "Previous_room": "Sala anterior", - "New_room": "Nueva sala", - "Upload_room": "Subir a sala", - "Search_messages": "Buscar mensajes", - "Scroll_messages": "Scroll mensajes", - "Reply_latest": "Responder al último", - "Server_selection": "Seleccionar servidor", - "Server_selection_numbers": "Seleccionar servidor 1...9", - "Add_server": "Añadir servidor", - "New_line": "Nueva línea" -} \ No newline at end of file + "1_person_reacted": "1 persona reaccionó", + "1_user": "1 usuario", + "error-action-not-allowed": "{{action}} no permitida", + "error-application-not-found": "Aplicación no encontrada", + "error-archived-duplicate-name": "Hay un canal archivado con nombre {{room_name}}", + "error-avatar-invalid-url": "URL de avatar inválida: {{url}}", + "error-avatar-url-handling": "Error durante el procesamiento de ajuste de imagen de usuario desde una dirección URL ({{url}}) para {{username}}", + "error-cant-invite-for-direct-room": "No se puede invitar a los usuarios a salas de chat directas", + "error-could-not-change-email": "No es posible cambiar la dirección de correo electrónico", + "error-could-not-change-name": "No es posible cambiar el nombre", + "error-could-not-change-username": "No es posible cambiar el nombre de usuario", + "error-delete-protected-role": "No se puede eliminar un rol protegido", + "error-department-not-found": "Departamento no encontrado", + "error-direct-message-file-upload-not-allowed": "No se permite compartir archivos en mensajes directos", + "error-duplicate-channel-name": "Ya existe un canal con nombre {{room_name}}", + "error-email-domain-blacklisted": "El dominio del correo electrónico está en la lista negra", + "error-email-send-failed": "Error al enviar el correo electrónico: {{message}}", + "error-field-unavailable": "{{field}} ya está en uso :(", + "error-file-too-large": "El archivo es demasiado grande", + "error-importer-not-defined": "El importador no se configuró correctamente. Falta la clase de importación", + "error-input-is-not-a-valid-field": "{{input}} no es válido {{field}}", + "error-invalid-actionlink": "Enlace de acción inválido", + "error-invalid-arguments": "Los argumentos no son correctos", + "error-invalid-asset": "El archivo archivo no es correcto", + "error-invalid-channel": "El canal no es correcto.", + "error-invalid-channel-start-with-chars": "Canal incorrecto. Debe comenzar con @ o #", + "error-invalid-custom-field": "Campo personalizado no válido", + "error-invalid-custom-field-name": "Nombre no válido para el campo personalizado. Utilice sólo letras, números, guiones o guión bajo", + "error-invalid-date": "La fecha proporcionada no es correcta.", + "error-invalid-description": "La descripción no es correcta", + "error-invalid-domain": "El dominio no es correcto", + "error-invalid-email": "El email {{email}} no es correcto", + "error-invalid-email-address": "La dirección de correo no es correcta", + "error-invalid-file-height": "La altura de la imagen no es correcta", + "error-invalid-file-type": "El formato del archivo no es correcto", + "error-invalid-file-width": "El ancho de la imagen o es correcto", + "error-invalid-from-address": "La dirección del remitente (FROM) no es correcta.", + "error-invalid-integration": "La integración no es correcta", + "error-invalid-message": "El mensaje no es correcto", + "error-invalid-method": "El método no es correcto", + "error-invalid-name": "El nombre no es correcto", + "error-invalid-password": "La contraseña no es correcta", + "error-invalid-redirectUri": "La URL de redirección no es correcta.", + "error-invalid-role": "El rol no es correcto", + "error-invalid-room": "La sala no es correcta", + "error-invalid-room-name": "No se puede asignar el nombre {{room_name}} a una sala.", + "error-invalid-room-type": "No se puede asignar el tipo {{type}} a una sala.", + "error-invalid-settings": "La configuración proporcionada no es correcta", + "error-invalid-subscription": "La suscripción no es correcta", + "error-invalid-token": "El token no es correcto", + "error-invalid-triggerWords": "El triggerWords no es correcto", + "error-invalid-urls": "Las URLs no son correctas", + "error-invalid-user": "El usuario no es correcto", + "error-invalid-username": "El nombre de usuario no es correcto", + "error-invalid-webhook-response": "El webhook no ha respondido con código de estado HTTP 200.", + "error-message-deleting-blocked": "No está permitido eliminar mensajes", + "error-message-editing-blocked": "No está permitido editar mensajes", + "error-message-size-exceeded": "El mensaje supera el tamaño máximo permitido", + "error-missing-unsubscribe-link": "Debes proporcionar el enlace para cancelar la suscripción [unsubscribe].", + "error-no-tokens-for-this-user": "No hay tokens asignados para el usuario", + "error-not-allowed": "No permitido", + "error-not-authorized": "No autorizado", + "error-push-disabled": "El Push está desactivado", + "error-remove-last-owner": "El usuario es el único propietario existente. Debes establecer un nuevo propietario antes de eliminarlo.", + "error-role-in-use": "No puedes eliminar el rol dado que está en uso", + "error-role-name-required": "Debes indicar el nombre del rol", + "error-the-field-is-required": "El campo {{field}} es obligatorio.", + "error-too-many-requests": "Error, demasiadas peticiones. Debes esperar {{seconds}} segundos antes de continuar. Por favor, sé paciente.", + "error-user-is-not-activated": "El usuario no está activo", + "error-user-has-no-roles": "El usuario no tiene roles", + "error-user-limit-exceeded": "El número de usuarios que quieres invitar al canal #channel_name supera el límite establecido por el administrador.", + "error-user-not-in-room": "El usuario no está en la sala", + "error-user-registration-custom-field": "error-user-registration-custom-field", + "error-user-registration-disabled": "El registro de usuario está deshabilitado", + "error-user-registration-secret": "El registro de usuarios sólo está permitido por URL secretas", + "error-you-are-last-owner": "Eres el único propietario existente. Debes establecer un nuevo propietario antes de abandonar la sala.", + "Actions": "Acciones", + "activity": "actividad", + "Activity": "Actividad", + "Add_Reaction": "Añadir reacción", + "Add_Server": "Añadir servidor", + "Admin_Panel": "Panel de Control", + "Alert": "Alerta", + "alert": "alerta", + "alerts": "alertas", + "All_users_in_the_channel_can_write_new_messages": "Todos los usuarios en el canal pueden escribir mensajes", + "All": "Todos", + "All_Messages": "Todos los mensajes", + "Allow_Reactions": "Permitir reacciones", + "Alphabetical": "Alfabético", + "and_more": "y más", + "and": "y", + "announcement": "anuncio", + "Announcement": "Anuncio", + "Apply_Your_Certificate": "Aplica tu certificado", + "ARCHIVE": "FICHERO", + "archive": "fichero", + "are_typing": "están escribiendo", + "Are_you_sure_question_mark": "¿Estás seguro?", + "Are_you_sure_you_want_to_leave_the_room": "¿Deseas salir de la sala {{room}}?", + "Audio": "Audio", + "Authenticating": "Autenticando", + "Automatic": "Automático", + "Auto_Translate": "Traducción automática", + "Avatar_changed_successfully": "¡Avatar modificado correctamente!", + "Avatar_Url": "URL del Avatar", + "Away": "Ausente", + "Back": "Volver", + "Black": "Negro", + "Block_user": "Bloquear usuario", + "Broadcast_channel_Description": "Sólo los usuarios autorizados pueden escribir nuevos mensajes, el resto podrán responder sobre los mismos.", + "Broadcast_Channel": "Canal de Transmisión", + "Busy": "Ocupado", + "By_proceeding_you_are_agreeing": "Al proceder estarás de acuerdo", + "Cancel_editing": "Cancelar edición", + "Cancel_recording": "Cancelar grabación", + "Cancel": "Cancelar", + "changing_avatar": "cambiando avatar", + "creating_channel": "creando channel", + "Channel_Name": "Nombre sala", + "Channels": "Salas", + "Chats": "Chats", + "Call_already_ended": "¡!La llamada ya ha finalizado!", + "Click_to_join": "¡Unirme!", + "Close": "Cerrar", + "Close_emoji_selector": "Cerrar selector de emojis", + "Choose": "Seleccionar", + "Choose_from_library": "Seleccionar desde galería", + "Choose_file": "Seleccionar archivo", + "Code": "Código", + "Collaborative": "Colaborativo", + "Confirm": "Confirmar", + "Connect": "Conectar", + "Connected": "Conectado", + "connecting_server": "conectando al servidor", + "Connecting": "Conectando...", + "Contact_us": "Contacta con nosotros", + "Contact_your_server_admin": "Contacta con el administrador.", + "Continue_with": "Continuar con", + "Copied_to_clipboard": "¡Copiado al portapapeles!", + "Copy": "Copiar", + "Permalink": "Enlace permanente", + "Certificate_password": "Contraseña del certificado", + "Whats_the_password_for_your_certificate": "¿Cuál es la contraseña de tu certificado?", + "Create_account": "Crear una cuenta", + "Create_Channel": "Crear sala", + "Created_snippet": "crear mensaje en bloque", + "Create_a_new_workspace": "Crear un nuevo espacio de trabajo", + "Create": "Crear", + "Dark": "Oscuro", + "Dark_level": "Nivel de oscuridad", + "Default": "Por defecto", + "Delete_Room_Warning": "Eliminar a un usuario causará la eliminación de todos los mensajes creados por dicho usuario. Esta operación no se puede deshacer.", + "delete": "eliminar", + "Delete": "Eliminar", + "DELETE": "ELIMINAR", + "deleting_room": "eliminando sala", + "description": "descripción", + "Description": "Descripción", + "Desktop_Options": "Opciones de escritorio", + "Directory": "Directorio", + "Direct_Messages": "Mensajes directos", + "Disable_notifications": "Desactivar notificaciones", + "Discussions": "Conversaciones", + "Dont_Have_An_Account": "¿Todavía no tienes una cuenta?", + "Do_you_have_a_certificate": "¿Tienes un certificado?", + "Do_you_really_want_to_key_this_room_question_mark": "¿Deseas {{key}} de esta sala?", + "edit": "editar", + "edited": "editado", + "Edit": "Editar", + "Email_or_password_field_is_empty": "El email o la contraseña están vacíos", + "Email": "E-mail", + "email": "e-mail", + "Enable_Auto_Translate": "Permitir Auto-Translate", + "Enable_notifications": "Permitir notificaciones", + "Everyone_can_access_this_channel": "Todos los usuarios pueden acceder a este canal", + "Error_uploading": "Error en la subida", + "Favorite": "Favorito", + "Favorites": "Favoritos", + "Files": "Archivos", + "File_description": "Descripción del archivo", + "File_name": "Nombre del archivo", + "Finish_recording": "Finalizar grabación", + "Following_thread": "Siguiendo hilo", + "For_your_security_you_must_enter_your_current_password_to_continue": "Por seguridad, debes introducir tu contraseña para continuar", + "Forgot_password_If_this_email_is_registered": "Si este email está registrado, te enviaremos las instrucciones para resetear tu contraseña. Si no recibes un email en breve, vuelve aquí e inténtalo de nuevo.", + "Forgot_password": "¿Ha olvidado su contraseña?", + "Forgot_Password": "Olvidé la contraseña", + "Full_table": "Click para ver la tabla completa", + "Group_by_favorites": "Agrupar por favoritos", + "Group_by_type": "Agrupar por tipo", + "Hide": "Ocultar", + "Has_joined_the_channel": "se ha unido al canal", + "Has_joined_the_conversation": "se ha unido a la conversación", + "Has_left_the_channel": "ha dejado el canal", + "In_App_And_Desktop": "En la aplicación y en el escritorio", + "In_App_and_Desktop_Alert_info": "Muestra un banner en la parte superior de la pantalla cuando la aplicación esté abierta y muestra una notificación en el escritorio", + "Invisible": "Invisible", + "Invite": "Invitar", + "is_a_valid_RocketChat_instance": "es una instancia válida de Rocket.Chat", + "is_not_a_valid_RocketChat_instance": "no es una instancia válida de Rocket.Chat", + "is_typing": "escribiendo", + "Invalid_server_version": "El servidor que intentas conectar está usando una versión que ya no está soportada por la aplicación : {{currentVersion}}. Se requiere una versión {{minVersion}}.", + "Join": "Conectar", + "Just_invited_people_can_access_this_channel": "Sólo gente invitada puede acceder a este canal.", + "Language": "Idioma", + "last_message": "último mensaje", + "Leave_channel": "Abandonar el canal", + "leaving_room": "abandonando sala", + "leave": "abandonar", + "Legal": "Legal", + "Light": "Claro", + "License": "Licencia", + "Livechat": "LiveChat", + "Login": "Inicio de sesión", + "Login_error": "¡Sus credenciales fueron rechazadas! Por favor, inténtelo de nuevo.", + "Login_with": "Iniciar sesión con", + "Logout": "Cerrar sesión", + "members": "miembros", + "Members": "Miembros", + "Mentioned_Messages": "Mensajes mencionados", + "mentioned": "mencionado", + "Mentions": "Menciones", + "Message_accessibility": "Mensaje de {{user}} a las {{time}}: {{message}}", + "Message_actions": "Acciones de mensaje", + "Message_pinned": "Mensaje fijado", + "Message_removed": "Mensaje eliminado", + "message": "mensaje", + "messages": "mensajes", + "Messages": "Mensajes", + "Message_Reported": "Mensaje notificado", + "Microphone_Permission_Message": "Rocket.Chat necesita acceso a su micrófono para que pueda enviar un mensaje de audio.", + "Microphone_Permission": "Permiso de micrófono", + "Mute": "Mutear", + "muted": "muteado", + "My_servers": "Mis servidores", + "N_people_reacted": "Han reaccionado {{n}} personas", + "N_users": "{{n}} usuarios", + "name": "nombre", + "Name": "Nombre", + "New_Message": "Nuevo mensaje", + "New_Password": "Nueva contraseña", + "New_Server": "Nuevo servidor", + "Next": "Siguiente", + "No_files": "No hay archivos", + "No_mentioned_messages": "No hay mensajes mencionados", + "No_pinned_messages": "No hay mensajes fijados", + "No_results_found": "No hay resultados", + "No_starred_messages": "No hay mensajes destacados", + "No_thread_messages": "No hay hilos", + "No_Message": "Sin mensajes", + "No_messages_yet": "No hay mensajes todavía", + "No_Reactions": "No hay reacciones", + "No_Read_Receipts": "No hay confirmaciones de lectura", + "Not_logged": "No ha iniciado sesión", + "Not_RC_Server": "Esto no es un servidor de Rocket.Chat.\n{{contact}}", + "Nothing": "Nada", + "Nothing_to_save": "¡No hay nada por guardar!", + "Notify_active_in_this_room": "Notificar a los usuarios activos en esta sala", + "Notify_all_in_this_room": "Notificar a todos en esta sala", + "Notifications": "Notificaciones", + "Notification_Duration": "Duración de la notificación", + "Notification_Preferences": "Configuración de notificaciones", + "Offline": "Sin conexión", + "Oops": "Oops!", + "Onboarding_title": "Bienvenido a Rocket.Chat", + "Online": "Conectado", + "Only_authorized_users_can_write_new_messages": "Sólo pueden escribir mensajes usuarios autorizados", + "Open_emoji_selector": "Abrir selector de emojis", + "Open_Source_Communication": "Comunicación Open Source", + "Password": "Contraseña", + "Permalink_copied_to_clipboard": "¡Enlace permanente copiado al portapapeles!", + "Pin": "Fijar", + "Pinned_Messages": "Mensajes fijados", + "pinned": "fijado", + "Pinned": "Fijado", + "Please_enter_your_password": "Por favor introduce la contraseña", + "Preferences": "Preferencias", + "Preferences_saved": "¡Preferencias guardadas!", + "Privacy_Policy": "Política de privacidad", + "Private_Channel": "Canal privado", + "Private": "Privado", + "Processing": "Procesando...", + "Profile_saved_successfully": "¡Perfil guardado correctamente!", + "Profile": "Perfil", + "Public_Channel": "Canal público", + "Public": "Público", + "Push_Notifications": "Notificaciones Push", + "Push_Notifications_Alert_Info": "Estas notificaciones se le entregan cuando la aplicación no está abierta", + "Quote": "Citar", + "Reactions_are_disabled": "Las reacciones están desactivadas", + "Reactions_are_enabled": "Las reacciones están activadas", + "Reactions": "Reacciones", + "Read": "Leer", + "Read_Only_Channel": "Canal de sólo lectura", + "Read_Only": "Sólo lectura ", + "Read_Receipt": "Comprobante de lectura", + "Receive_Group_Mentions": "Recibir menciones de grupo", + "Receive_Group_Mentions_Info": "Recibir menciones @all y @here", + "Register": "Registrar", + "Repeat_Password": "Repetir contraseña", + "Replied_on": "Respondido el:", + "replies": "respuestas", + "reply": "respuesta", + "Reply": "Respuesta", + "Report": "Informe", + "Receive_Notification": "Recibir notificación", + "Receive_notifications_from": "Recibir notificación de {{name}}", + "Resend": "Reenviar", + "Reset_password": "Resetear contraseña", + "resetting_password": "reseteando contraseña", + "RESET": "RESET", + "Roles": "Roles", + "Room_actions": "Acciones de sala", + "Room_changed_announcement": "El anuncio de la sala cambió a: {{announcement}} por {{userBy}}", + "Room_changed_description": "La descripción de la sala cambió a: {{description}} por {{userBy}}", + "Room_changed_privacy": "El tipo de la sala cambió a: {{type}} por {{userBy}}", + "Room_changed_topic": "El asunto de la sala cambió a: {{topic}} por {{userBy}}", + "Room_Files": "Archivos", + "Room_Info_Edit": "Editar información de la sala", + "Room_Info": "Información de la sala", + "Room_Members": "Miembros de la sala", + "Room_name_changed": "El nombre de la sala cambió a: {{name}} por {{userBy}}", + "SAVE": "GUARDAR", + "Save_Changes": "Guardar cambios", + "Save": "Guardar", + "saving_preferences": "guardando preferencias", + "saving_profile": "guardando perfil", + "saving_settings": "guardando configuración", + "Search_Messages": "Buscar mensajes", + "Search": "Buscar", + "Search_by": "Buscar por", + "Search_global_users": "Buscar por usuarios globales", + "Search_global_users_description": "Si lo activas, puedes buscar cualquier usuario de otras empresas o servidores.", + "Seconds": "{{second}} segundos", + "Select_Avatar": "Selecciona avatar", + "Select_Server": "Selecciona servidor", + "Select_Users": "Selecciona usuarios", + "Send": "Enviar", + "Send_audio_message": "Enviar nota de audio", + "Send_crash_report": "Enviar informe errores", + "Send_message": "Enviar mensaje", + "Send_to": "Enviar a..", + "Sent_an_attachment": "Enviar un adjunto", + "Server": "Servidor", + "Servers": "Servidores", + "Server_version": "Versión servidor: {{version}}", + "Set_username_subtitle": "El nombre de usuario se utiliza para permitir que otros le mencionen en los mensajes", + "Settings": "Configuración", + "Settings_succesfully_changed": "¡Configuración cambiada correctamente!", + "Share": "Compartir", + "Share_this_app": "Compartir esta aplicación", + "Show_Unread_Counter": "Mostrar contador de no leídos", + "Show_Unread_Counter_Info": "El contador de no leídos se muestra como una insignia a la derecha del canal, en la lista", + "Sign_in_your_server": "Accede a tu servidor", + "Sign_Up": "Registrarse", + "Some_field_is_invalid_or_empty": "Algún campo no es correcto o está vacío", + "Sorting_by": "Ordenado por {{key}}", + "Sound": "Sonido", + "Star_room": "Destacar sala", + "Star": "Destacar", + "Starred_Messages": "Mensajes destacados", + "starred": "destacado", + "Starred": "Destacado", + "Start_of_conversation": "Comienzo de la conversación", + "Started_discussion": "Comenzar una conversación:", + "Started_call": "Llamada iniciada por {{userBy}}", + "Submit": "Enviar", + "Table": "Tabla", + "Take_a_photo": "Enviar una foto", + "Take_a_video": "Enviar un vídeo", + "tap_to_change_status": "pulsa para cambiar el estado", + "Tap_to_view_servers_list": "Pulsa para ver la lista de servidores", + "Terms_of_Service": "Términos de servicio", + "Theme": "Tema", + "There_was_an_error_while_action": "¡Ha habido un error mientras {{action}}!", + "This_room_is_blocked": "La sala está bloqueada", + "This_room_is_read_only": "Esta sala es de sólo lectura", + "Thread": "Hilo", + "Threads": "Hilos", + "Timezone": "Zona horaria", + "To": "Para", + "topic": "asunto", + "Topic": "Asunto", + "Translate": "Traducir", + "Try_again": "Intentar de nuevo", + "Two_Factor_Authentication": "Autenticación de doble factor", + "Type_the_channel_name_here": "Escribe el nombre del canal aquí", + "unarchive": "desarchivar", + "UNARCHIVE": "DESARCHIVAR", + "Unblock_user": "Desbloquear usuario", + "Unfavorite": "Quitar favorito", + "Unfollowed_thread": "Dejar de seguir el hilo", + "Unmute": "Desmutear", + "unmuted": "Desmuteado", + "Unpin": "Quitar estado fijado", + "unread_messages": "marcar como no leído", + "Unread": "Marcar como no leído", + "Unread_on_top": "Mensajes no leídos en la parte superior", + "Unstar": "Quitar destacado", + "Updating": "Actualizando...", + "Uploading": "Subiendo", + "Upload_file_question_mark": "¿Subir fichero?", + "Users": "Usuarios", + "User_added_by": "Usuario {{userAdded}} añadido por {{userBy}}", + "User_has_been_key": "El usuario ha sido {{key}}", + "User_is_no_longer_role_by_": "{{user}} ha dejado de ser {{role}} por {{userBy}}", + "User_muted_by": "Usuario {{userMuted}} muteado por {{userBy}}", + "User_removed_by": "Usuario {{userRemoved}} eliminado por {{userBy}}", + "User_sent_an_attachment": "{{user}} envío un adjunto", + "User_unmuted_by": "Usuario {{userUnmuted}} desmuteado por {{userBy}}", + "User_was_set_role_by_": "{{user}} ha comenzado a ser {{role}} por {{userBy}}", + "Username_is_empty": "Nombre de usuario está vacío", + "Username": "Nombre de usuario", + "Username_or_email": "Nombre de usuario o email", + "Validating": "Validando", + "Video_call": "Vídeo llamada", + "View_Original": "Ver original", + "Voice_call": "Llamada de voz", + "Websocket_disabled": "Websocket está deshabilitado para este servidor.\n{{contact}}", + "Welcome": "Bienvenido", + "Whats_your_2fa": "¿Cuál es tu código 2FA?", + "Without_Servers": "Sin servidores", + "Yes_action_it": "Sí, ¡{{action}}!", + "Yesterday": "Ayer", + "You_are_in_preview_mode": "Estás en modo vista previa", + "You_are_offline": "Estás desconectado", + "You_can_search_using_RegExp_eg": "Puedes usar expresiones regulares. Por ejemplo, `/^text$/i`", + "You_colon": "Tú: ", + "you_were_mentioned": "has sido mencionado", + "you": "tú", + "You": "Tú", + "You_need_to_access_at_least_one_RocketChat_server_to_share_something": "Necesita acceder al menos a un servidor Rocket.Chat para compartir algo.", + "Your_certificate": "Tu certificado", + "Version_no": "Versión: {{version}}", + "You_will_not_be_able_to_recover_this_message": "¡No podrás recuperar este mensaje!", + "Change_Language": "Cambiar idioma", + "Crash_report_disclaimer": "Nunca rastreamos el contenido de sus conversaciones. El informe del error sólo contiene información relevante para nosotros con el fin de identificar los problemas y solucionarlos.", + "Type_message": "Escribir mensaje", + "Room_search": "Búsqueda de salas", + "Room_selection": "Selecciona sala 1...9", + "Next_room": "Siguiente sala", + "Previous_room": "Sala anterior", + "New_room": "Nueva sala", + "Upload_room": "Subir a sala", + "Search_messages": "Buscar mensajes", + "Scroll_messages": "Scroll mensajes", + "Reply_latest": "Responder al último", + "Server_selection": "Seleccionar servidor", + "Server_selection_numbers": "Seleccionar servidor 1...9", + "Add_server": "Añadir servidor", + "New_line": "Nueva línea" +} diff --git a/app/i18n/locales/fr.json b/app/i18n/locales/fr.json index 07d441eedf..630cd80c69 100644 --- a/app/i18n/locales/fr.json +++ b/app/i18n/locales/fr.json @@ -1,772 +1,772 @@ { - "1_person_reacted": "1 personne a réagi", - "1_user": "1 utilisateur", - "error-action-not-allowed": "{{action}} n'est pas autorisé", - "error-application-not-found": "Application non trouvée", - "error-archived-duplicate-name": "Il y a un canal archivé avec le nom {{room_name}}", - "error-avatar-invalid-url": "URL d'avatar invalide : {{url}}", - "error-avatar-url-handling": "Erreur lors de la gestion du paramètre d'avatar à partir d'une URL ({{url}}) pour {{username}}", - "error-cant-invite-for-direct-room": "Impossible d'inviter l'utilisateur aux salons directs", - "error-could-not-change-email": "Impossible de changer l'adresse e-mail", - "error-could-not-change-name": "Impossible de changer le nom", - "error-could-not-change-username": "Impossible de changer le nom d'utilisateur", - "error-could-not-change-status": "Impossible de changer le statut", - "error-delete-protected-role": "Impossible de supprimer un rôle protégé", - "error-department-not-found": "Département introuvable", - "error-direct-message-file-upload-not-allowed": "Partage de fichiers non autorisé dans les messages privés", - "error-duplicate-channel-name": "Un canal avec nom {{room_name}} existe", - "error-email-domain-blacklisted": "Le domaine de messagerie est sur liste noire", - "error-email-send-failed": "Erreur lors de la tentative d'envoi de l'e-mail : {{message}}", - "error-save-image": "Erreur lors de l'enregistrement de l'image", - "error-save-video": "Erreur en sauvegardant la vidéo", - "error-field-unavailable": "{{field}} est déjà utilisé: (", - "error-file-too-large": "Le fichier est trop grand", - "error-importer-not-defined": "L'importateur n'a pas été défini correctement, il manque la classe Import.", - "error-input-is-not-a-valid-field": "{{input}} n'est pas un {{field}} valide", - "error-invalid-actionlink": "Lien d'action non valide", - "error-invalid-arguments": "Arguments non valides", - "error-invalid-asset": "Elément non valide", - "error-invalid-channel": "Canal invalide.", - "error-invalid-channel-start-with-chars": "Canal non valide. Commencez par @ ou #", - "error-invalid-custom-field": "Champ personnalisé non valide", - "error-invalid-custom-field-name": "Nom de champ personnalisé non valide. Utilisez uniquement des lettres, des chiffres, des traits d'union et des traits de soulignement.", - "error-invalid-date": "Date fournie non valide.", - "error-invalid-description": "Description invalide", - "error-invalid-domain": "Domaine invalide", - "error-invalid-email": "E-mail {{email}} invalide", - "error-invalid-email-address": "Adresse e-mail invalide", - "error-invalid-file-height": "Hauteur de fichier non valide", - "error-invalid-file-type": "Type de fichier invalide", - "error-invalid-file-width": "Largeur de fichier non valide", - "error-invalid-from-address": "Vous avez renseigné une adresse FROM invalide.", - "error-invalid-integration": "Intégration invalide", - "error-invalid-message": "Message invalide", - "error-invalid-method": "Méthode non valide", - "error-invalid-name": "Nom incorrect", - "error-invalid-password": "Mot de passe incorrect", - "error-invalid-redirectUri": "RedirectUri invalide", - "error-invalid-role": "Rôle invalide", - "error-invalid-room": "Salon invalide", - "error-invalid-room-name": "{{room_name}} n'est pas un nom de salon valide", - "error-invalid-room-type": "{{type}} n'est pas un type de salon valide.", - "error-invalid-settings": "Paramètres fournis non valides", - "error-invalid-subscription": "Abonnement invalide", - "error-invalid-token": "Jeton invalide", - "error-invalid-triggerWords": "Mots déclencheurs invalides", - "error-invalid-urls": "URL non valides", - "error-invalid-user": "Utilisateur invalide", - "error-invalid-username": "Nom d'utilisateur invalide", - "error-invalid-webhook-response": "L'URL du webhook a répondu avec un statut autre que 200", - "error-message-deleting-blocked": "La suppression du message est bloquée", - "error-message-editing-blocked": "La modification du message est bloquée", - "error-message-size-exceeded": "La taille du message dépasse Message_MaxAllowedSize", - "error-missing-unsubscribe-link": "Vous devez fournir le lien [unsubscribe].", - "error-no-owner-channel": "Vous n'êtes pas propriétaire du canal", - "error-no-tokens-for-this-user": "Il n'y a pas de jetons pour cet utilisateur", - "error-not-allowed": "Interdit", - "error-not-authorized": "Pas autorisé", - "error-push-disabled": "Push est désactivé", - "error-remove-last-owner": "C'est le dernier propriétaire. Veuillez définir un nouveau propriétaire avant de supprimer celui-ci.", - "error-role-in-use": "Impossible de supprimer le rôle car il est en cours d'utilisation", - "error-role-name-required": "Le nom du rôle est requis", - "error-the-field-is-required": "Le champ {{field}} est requis.", - "error-too-many-requests": "Erreur, trop de demandes. Ralentissez, s'il vous plaît. Vous devez attendre {{seconds}} secondes avant de réessayer.", - "error-user-is-not-activated": "L'utilisateur n'est pas activé", - "error-user-has-no-roles": "L'utilisateur n'a aucun rôle", - "error-user-limit-exceeded": "Le nombre d'utilisateurs que vous essayez d'inviter à #channel_name dépasse la limite définie par l'administrateur", - "error-user-not-in-room": "L'utilisateur n'est pas dans ce salon", - "error-user-registration-custom-field": "error-user-registration-custom-field", - "error-user-registration-disabled": "L'enregistrement de l'utilisateur est désactivé", - "error-user-registration-secret": "L'enregistrement de l'utilisateur n'est autorisé que via l'URL secrète", - "error-you-are-last-owner": "Vous êtes le dernier propriétaire. Veuillez définir un nouveau propriétaire avant de quitter le salon.", - "error-status-not-allowed": "Le statut invisible est désactivé", - "Actions": "Actions", - "activity": "activité", - "Activity": "Activité", - "Add_Reaction": "Ajouter une réaction", - "Add_Server": "Ajouter un serveur", - "Add_users": "Ajouter des utilisateurs", - "Admin_Panel": "Panneau d'administration", - "Agent": "Agent", - "Alert": "Alerte", - "alert": "alerte", - "alerts": "alertes", - "All_users_in_the_channel_can_write_new_messages": "Tous les utilisateurs du canal peuvent écrire de nouveaux messages", - "All_users_in_the_team_can_write_new_messages": "Tous les utilisateurs de l'équipe peuvent écrire de nouveaux messages", - "A_meaningful_name_for_the_discussion_room": "Un nom significatif pour le salon de discussion", - "All": "Tout", - "All_Messages": "Tous les messages", - "Allow_Reactions": "Autoriser les réactions", - "Alphabetical": "Alphabétique", - "and_more": "et plus", - "and": "et", - "announcement": "annonce", - "Announcement": "Annonce", - "Apply_Your_Certificate": "Appliquer votre certificat", - "ARCHIVE": "ARCHIVER", - "archive": "archiver", - "are_typing": "sont en train d'écrire", - "Are_you_sure_question_mark": "Êtes-vous sûr ?", - "Are_you_sure_you_want_to_leave_the_room": "Êtes-vous sûr de vouloir quitter le salon {{room}} ?", - "Audio": "Audio", - "Authenticating": "Authentification", - "Automatic": "Automatique", - "Auto_Translate": "Traduction automatique", - "Avatar_changed_successfully": "Avatar changé avec succès !", - "Avatar_Url": "URL de l'avatar", - "Away": "Absent", - "Back": "Retour", - "Black": "Noir", - "Block_user": "Bloquer l'utilisateur", - "Browser": "Navigateur", - "Broadcast_channel_Description": "Seuls les utilisateurs autorisés peuvent écrire de nouveaux messages, mais les autres utilisateurs pourront répondre.", - "Broadcast_Channel": "Canal de diffusion", - "Busy": "Occupé", - "By_proceeding_you_are_agreeing": "En poursuivant, vous acceptez nos", - "Cancel_editing": "Annuler la modification", - "Cancel_recording": "Annuler l'enregistrement", - "Cancel": "Annuler", - "changing_avatar": "changer d'avatar", - "creating_channel": "création d'un canal", - "creating_invite": "création d'une invitation", - "Channel_Name": "Nom du canal", - "Channels": "Canaux", - "Chats": "Chats", - "Call_already_ended": "Appel déjà terminé !", - "Clear_cookies_alert": "Voulez-vous effacer tous les cookies ?", - "Clear_cookies_desc": "Cette action effacera tous les cookies de connexion ce qui vous permettra de vous connecter à d'autres comptes.", - "Clear_cookies_yes": "Oui, effacez les cookies", - "Clear_cookies_no": "Non, gardez les cookies", - "Click_to_join": "Cliquez pour rejoindre !", - "Close": "Fermer", - "Close_emoji_selector": "Fermer le sélecteur d'émoji", - "Closing_chat": "Fermeture du chat", - "Change_language_loading": "Changement de la langue.", - "Chat_closed_by_agent": "Chat fermé par l'agent", - "Choose": "Choisir", - "Choose_from_library": "Choisissez dans la bibliothèque", - "Choose_file": "Choisir le fichier", - "Choose_where_you_want_links_be_opened": "Choisissez oµ vous souhaitez ouvrir les liens", - "Code": "Code", - "Code_or_password_invalid": "Code ou mot de passe invalide", - "Collaborative": "Collaboratif", - "Confirm": "Confirmer", - "Connect": "Connecter", - "Connected": "Connecté", - "connecting_server": "connexion en cours au serveur", - "Connecting": "Connexion...", - "Contact_us": "Contactez-nous", - "Contact_your_server_admin": "Contactez votre administrateur de serveur.", - "Continue_with": "Continuer avec", - "Copied_to_clipboard": "Copié dans le presse-papier !", - "Copy": "Copier", - "Conversation": "Conversation", - "Permalink": "Lien permanent", - "Certificate_password": "Mot de passe du certificat", - "Clear_cache": "Effacer le cache du serveur local", - "Clear_cache_loading": "Effacement du cache.", - "Whats_the_password_for_your_certificate": "Quel est le mot de passe de votre certificat ?", - "Create_account": "Créer un compte", - "Create_Channel": "Créer un canal", - "Create_Direct_Messages": "Créer des messages directs", - "Create_Discussion": "Créer une discussion", - "Created_snippet": "créé un extrait", - "Create_a_new_workspace": "Créer un nouvel espace de travail", - "Create": "Créer", - "Custom_Status": "Statut personnalisé", - "Dark": "Sombre", - "Dark_level": "Niveau d'obscurité", - "Default": "Défaut", - "Default_browser": "Navigateur par défaut", - "Delete_Room_Warning": "Supprimer une salon supprimera tous les messages publiés dans le salon. Ça ne peut pas être annulé.", - "Department": "Département", - "delete": "supprimer", - "Delete": "Supprimer", - "DELETE": "SUPPRIMER", - "move": "déplacer", - "deleting_room": "suppression du salon", - "description": "la description", - "Description": "La description", - "Desktop_Options": "Options de bureau", - "Desktop_Notifications": "Notifications de bureau", - "Desktop_Alert_info": "Ces notifications sont transmises sur le bureau", - "Directory": "Répertoire", - "Direct_Messages": "Messages directs", - "Disable_notifications": "Désactiver les notifications", - "Discussions": "Discussions", - "Discussion_Desc": "Aide à garder une vue d'ensemble sur ce qui se passe ! En créant une discussion, un sous-canal de celui que vous avez sélectionné est créé et les deux sont liés.", - "Discussion_name": "Nom de la discussion", - "Done": "Fait", - "Dont_Have_An_Account": "Vous n'avez pas de compte ?", - "Do_you_have_an_account": "Avez-vous un compte ?", - "Do_you_have_a_certificate": "Avez-vous un certificat ?", - "Do_you_really_want_to_key_this_room_question_mark": "Voulez-vous vraiment {{key}} ce salon ?", - "E2E_Encryption": "Cryptage E2E", - "E2E_How_It_Works_info1": "Vous pouvez désormais créer des groupes privés et des messages directs chiffrés. Vous pouvez également modifier les groupes privés ou DM existants pour les crypter.", - "E2E_How_It_Works_info2": "Il s'agit du *chiffrement de bout en bout*, la clé permettant de coder/décoder vos messages ne sera pas enregistrée sur le serveur. C'est pourquoi *vous devez stocker ce mot de passe à un endroit sûr* auquel vous pourrez accéder plus tard si vous en avez besoin.", - "E2E_How_It_Works_info3": "Si vous continuez, un mot de passe E2E sera automatiquement généré.", - "E2E_How_It_Works_info4": "Vous pouvez également configurer un nouveau mot de passe pour votre clé de cryptage à tout moment à partir de n'importe quel navigateur dans lequel vous avez entré le mot de passe E2E existant.", - "edit": "modifier", - "edited": "modifié", - "Edit": "Modifier", - "Edit_Status": "Modifier le statut", - "Edit_Invite": "Modifier l'invitation", - "End_to_end_encrypted_room": "Salon crypté de bout en bout", - "end_to_end_encryption": "chiffrement de bout en bout", - "Email_Notification_Mode_All": "Chaque mention/MD", - "Email_Notification_Mode_Disabled": "Désactivé", - "Email_or_password_field_is_empty": "Le champ e-mail ou mot de passe est vide", - "Email": "E-mail", - "email": "e-mail", - "Empty_title": "Titre vide", - "Enable_Auto_Translate": "Activer la traduction automatique", - "Enable_notifications": "Activer les notifications", - "Encrypted": "Crypté", - "Encrypted_message": "Message crypté", - "Enter_Your_E2E_Password": "Entrez votre mot de passe E2E", - "Enter_Your_Encryption_Password_desc1": "Cela vous permettra d'accéder à vos groupes privés cryptés et à vos messages directs.", - "Enter_Your_Encryption_Password_desc2": "Vous devez entrer le mot de passe pour coder/décoder les messages à chaque endroit où vous utilisez le chat.", - "Encryption_error_title": "Votre mot de passe de cryptage semble erroné", - "Encryption_error_desc": "Il n'a pas été possible de décoder votre clé de cryptage pour être importé.", - "Everyone_can_access_this_channel": "Tout le monde peut accéder à ce canal", - "Everyone_can_access_this_team": "Tout le monde peut accéder à cette équipe", - "Error_uploading": "Erreur lors de l'envoi", - "Expiration_Days": "Expiration (Jours)", - "Favorite": "Favori", - "Favorites": "Favoris", - "Files": "Fichiers", - "File_description": "Description du fichier", - "File_name": "Nom de fichier", - "Finish_recording": "Terminer l'enregistrement", - "Following_thread": "Suivre le fil", - "For_your_security_you_must_enter_your_current_password_to_continue": "Pour votre sécurité, vous devez entrer votre mot de passe actuel pour continuer.", - "Forgot_password_If_this_email_is_registered": "Si cet e-mail est enregistré, nous vous enverrons des instructions pour réinitialiser votre mot de passe. Si vous ne recevez pas d'e-mail sous peu, veuillez revenir et réessayer.", - "Forgot_password": "Mot de passe oublié ?", - "Forgot_Password": "Mot de passe oublié", - "Forward": "Transmettre", - "Forward_Chat": "Transmettre la conversation", - "Forward_to_department": "Transmettre au département", - "Forward_to_user": "Transmettre à l'utilisateur", - "Full_table": "Cliquez pour voir le tableau complet", - "Generate_New_Link": "Générer un nouveau lien", - "Group_by_favorites": "Grouper par favoris", - "Group_by_type": "Grouper par type", - "Hide": "Cacher", - "Has_joined_the_channel": "a rejoint le canal", - "Has_joined_the_conversation": "a rejoint la conversation", - "Has_left_the_channel": "a quitté le canal", - "Hide_System_Messages": "Masquer les messages système", - "Hide_type_messages": "Masquer les messages \"{{type}}\"", - "How_It_Works": "Comment cela fonctionne", - "Message_HideType_uj": "L'utilisateur a rejoint", - "Message_HideType_ul": "L'utilisateur est parti", - "Message_HideType_ru": "Utilisateur supprimé", - "Message_HideType_au": "Utilisateur ajouté", - "Message_HideType_mute_unmute": "Utilisateur rendu muet / a retrouvé la parole", - "Message_HideType_r": "Nom du salon modifié", - "Message_HideType_ut": "L'utilisateur a rejoint la conversation", - "Message_HideType_wm": "Bienvenue", - "Message_HideType_rm": "Message supprimé", - "Message_HideType_subscription_role_added": "Rôle assigné", - "Message_HideType_subscription_role_removed": "Le rôle n'est plus défini", - "Message_HideType_room_archived": "Salon archivé", - "Message_HideType_room_unarchived": "Salon désarchivé", - "I_Saved_My_E2E_Password": "J'ai enregistré mon mot de passe E2E", - "IP": "IP", - "In_app": "Dans l'app", - "In_App_And_Desktop": "Dans l'application et sur le bureau", - "In_App_and_Desktop_Alert_info": "Affiche une bannière en haut de l'écran lorsque l'application est ouverte et affiche une notification sur le bureau", - "Invisible": "Invisible", - "Invite": "Inviter", - "is_a_valid_RocketChat_instance": "est une instance valide de Rocket.Chat", - "is_not_a_valid_RocketChat_instance": "n'est pas une instance valide de Rocket.Chat", - "is_typing": "est en train d'écrire", - "Invalid_or_expired_invite_token": "Jeton d'invitation non valide ou expiré", - "Invalid_server_version": "Le serveur auquel vous essayez de vous connecter utilise une version qui n'est plus prise en charge par l'application : {{currentVersion}}.\n\nNous exigeons la version {{minVersion}}", - "Invite_Link": "Lien d'invitation", - "Invite_users": "Inviter des utilisateurs", - "Join": "Rejoindre", - "Join_Code": "Code d'adhésion", - "Insert_Join_Code": "Insérer le code d'adhésion", - "Join_our_open_workspace": "Rejoignez notre espace de travail ouvert", - "Join_your_workspace": "Rejoignez votre espace de travail", - "Just_invited_people_can_access_this_channel": "Seuls les personnes invitées peuvent accéder à ce canal", - "Just_invited_people_can_access_this_team": "Seules les personnes invitées peuvent accéder à cette équipe", - "Language": "Langue", - "last_message": "dernier message", - "Leave_channel": "Quitter le canal", - "leaving_room": "quittant le salon", - "Leave": "Quitter", - "leave": "quitter", - "Legal": "Légal", - "Light": "Clair", - "License": "Licence", - "Livechat": "Chat en direct", - "Livechat_edit": "Modifier le chat en direct", - "Login": "Connexion", - "Login_error": "Vos identifiants ont été rejetés ! Veuillez réessayer.", - "Login_with": "Se connecter avec", - "Logging_out": "Déconnexion.", - "Logout": "Se déconnecter", - "Max_number_of_uses": "Nombre maximum d'utilisations", - "Max_number_of_users_allowed_is_number": "Le nombre maximum d'utilisateurs autorisés est {{maxUsers}}", - "members": "membres", - "Members": "Membres", - "Mentioned_Messages": "Messages mentionnés", - "mentioned": "mentionné", - "Mentions": "Mentions", - "Message_accessibility": "Message de {{user}} à {{time}} : {{message}}", - "Message_actions": "Actions de message", - "Message_pinned": "Message épinglé", - "Message_removed": "Message supprimé", - "Message_starred": "Message suivi", - "Message_unstarred": "Message non suivi", - "message": "message", - "messages": "messages", - "Message": "Message", - "Messages": "Messages", - "Message_Reported": "Message signalé", - "Microphone_Permission_Message": "Rocket.Chat a besoin d'accéder à votre microphone pour que vous puissiez envoyer un message audio.", - "Microphone_Permission": "Permission de microphone", - "Mute": "Rendre muet", - "muted": "muet", - "My_servers": "Mes serveurs", - "N_people_reacted": "{{n}} personnes ont réagi", - "N_users": "{{n}} utilisateurs", - "N_channels": "{{n}} canaux", - "name": "nom", - "Name": "Nom", - "Navigation_history": "Historique de navigation", - "Never": "Jamais", - "New_Message": "Nouveau message", - "New_Password": "Nouveau mot de passe", - "New_Server": "Nouveau serveur", - "Next": "Suivant", - "No_files": "Aucun fichier", - "No_limit": "Pas de limites", - "No_mentioned_messages": "Aucun message mentionné", - "No_pinned_messages": "Aucun message épinglé", - "No_results_found": "Aucun résultat trouvé", - "No_starred_messages": "Aucun message suivi", - "No_thread_messages": "Aucun message de fil de discussion", - "No_label_provided": "Aucun {{label}} fourni.", - "No_Message": "Aucun message", - "No_messages_yet": "Pas encore de messages", - "No_Reactions": "Aucune réaction", - "No_Read_Receipts": "Aucun accusé de lecture", - "Not_logged": "Non connecté", - "Not_RC_Server": "Ce n'est pas un serveur Rocket.Chat.\n{{contact}}", - "Nothing": "Rien", - "Nothing_to_save": "Rien à enregistrer !", - "Notify_active_in_this_room": "Notifier les utilisateurs actifs dans ce salon", - "Notify_all_in_this_room": "Avertir tout le monde dans ce salon", - "Notifications": "Notifications", - "Notification_Duration": "Durée des notifications", - "Notification_Preferences": "Préférences de notification", - "No_available_agents_to_transfer": "Aucun agent disponible pour le transfert", - "Offline": "Hors ligne", - "Oops": "Oups !", - "Omnichannel": "Omnicanal", - "Open_Livechats": "Discussions en cours", - "Omnichannel_enable_alert": "Vous n'êtes pas disponible sur Omnicanal. Souhaitez-vous être disponible ?", - "Onboarding_description": "Un espace de travail est l'espace de collaboration de votre équipe ou organisation. Demandez à l'administrateur de l'espace de travail l'adresse pour rejoindre ou créez-en une pour votre équipe.", - "Onboarding_join_workspace": "Rejoindre un espace de travail", - "Onboarding_subtitle": "Au-delà de la collaboration d'équipe", - "Onboarding_title": "Bienvenue sur Rocket.Chat", - "Onboarding_join_open_description": "Rejoignez notre espace de travail ouvert pour discuter avec l'équipe et la communauté Rocket.Chat.", - "Onboarding_agree_terms": "En continuant, vous acceptez Rocket.Chat", - "Onboarding_less_options": "Moins d'options", - "Onboarding_more_options": "Plus d'options", - "Online": "En ligne", - "Only_authorized_users_can_write_new_messages": "Seuls les utilisateurs autorisés peuvent écrire de nouveaux messages.", - "Open_emoji_selector": "Ouvrir le sélecteur d'émoji", - "Open_Source_Communication": "Communication Open Source", - "Open_your_authentication_app_and_enter_the_code": "Ouvrez votre application d'authentification et entrez le code.", - "OR": "OU", - "OS": "OS", - "Overwrites_the_server_configuration_and_use_room_config": "Écrase la configuration du serveur et utilise la configuration du salon", - "Password": "Mot de passe", - "Parent_channel_or_group": "Canal ou groupe parent", - "Permalink_copied_to_clipboard": "Lien permanent copié dans le presse-papiers !", - "Phone": "Téléphone", - "Pin": "Épingler", - "Pinned_Messages": "Messages épinglés", - "pinned": "épinglé", - "Pinned": "Épinglé", - "Please_add_a_comment": "Veuillez ajouter un commentaire", - "Please_enter_your_password": "Veuillez entrer votre mot de passe", - "Please_wait": "Veuillez patienter.", - "Preferences": "Préférences", - "Preferences_saved": "Préférences sauvegardées !", - "Privacy_Policy": " Politique de confidentialité", - "Private_Channel": "Canal privé", - "Private": "Privé", - "Processing": "Traitement...", - "Profile_saved_successfully": "Profil enregistré avec succès !", - "Profile": "Profil", - "Public_Channel": "Canal public", - "Public": "Public", - "Push_Notifications": "Notifications Push", - "Push_Notifications_Alert_Info": "Ces notifications vous sont envoyées lorsque l'application n'est pas ouverte", - "Quote": "Citation", - "Reactions_are_disabled": "Les réactions sont désactivées", - "Reactions_are_enabled": "Les réactions sont activées", - "Reactions": "Réactions", - "Read": "Lecture", - "Read_External_Permission_Message": "Rocket.Chat doit accéder aux photos, aux médias et aux fichiers sur votre appareil", - "Read_External_Permission": "Permission de lecture des fichiers", - "Read_Only_Channel": "Canal en lecture seule", - "Read_Only": "Lecture seule", - "Read_Receipt": "Accusé de réception", - "Receive_Group_Mentions": "Recevoir des mentions de groupe", - "Receive_Group_Mentions_Info": "Recevoir des mentions @all et @here", - "Register": "S'inscrire", - "Repeat_Password": "Répéter le mot de passe", - "Replied_on": "A répondu le :", - "replies": "réponses", - "reply": "répondre", - "Reply": "Répondre", - "Report": "Signaler", - "Receive_Notification": "Recevoir une notification", - "Receive_notifications_from": "Recevoir des notifications de {{name}}", - "Resend": "Renvoyer", - "Reset_password": "Réinitialiser le mot de passe", - "resetting_password": "réinitialisation du mot de passe", - "RESET": "RÉINITIALISER", - "Return": "Retour", - "Review_app_title": "Appréciez-vous cette application ?", - "Review_app_desc": "Donnez-nous 5 étoiles sur {{store}}", - "Review_app_yes": "Bien sûr !", - "Review_app_no": "Non", - "Review_app_later": "Peut-être plus tard", - "Review_app_unable_store": "Impossible d'ouvrir {{store}}", - "Review_this_app": "Donnez votre avis sur cette application", - "Remove": "Supprimer", - "remove": "supprimer", - "Roles": "Rôles", - "Room_actions": "Actions du salon", - "Room_changed_announcement": "Annonce du salon changé en : {{announcement}} par {{userBy}}", - "Room_changed_avatar": "Avatar du salon modifié par {{userBy}}", - "Room_changed_description": "Description du salon changé en : {{description}} par {{userBy}}", - "Room_changed_privacy": "Type de salon changé en : {{type}} par {{userBy}}", - "Room_changed_topic": "Le sujet de salon est changé en : {{topic}} par {{userBy}}", - "Room_Files": "Fichiers du salon", - "Room_Info_Edit": "Modifier les informations du salon", - "Room_Info": "Info sur le salon", - "Room_Members": "Membres du salon", - "Room_name_changed": "Nom de salon changé en : {{name}} par {{userBy}}", - "SAVE": "SAUVEGARDER", - "Save_Changes": "Sauvegarder les modifications", - "Save": "Sauvegarder", - "Saved": "Enregistré", - "saving_preferences": "enregistrement des préférences", - "saving_profile": "enregistrement du profil", - "saving_settings": "enregistrement des paramètres", - "saved_to_gallery": "Enregistré dans la galerie", - "Save_Your_E2E_Password": "Enregistrez votre mot de passe E2E", - "Save_Your_Encryption_Password": "Enregistrez votre mot de passe de cryptage", - "Save_Your_Encryption_Password_warning": "Ce mot de passe n'est stocké nulle part, enregistrez-le donc soigneusement ailleurs.", - "Save_Your_Encryption_Password_info": "Si vous perdez le mot de passe, il n'y a aucun moyen de le récupérer et vous perdrez l'accès à vos messages.", - "Search_Messages": "Rechercher des messages", - "Search": "Recherche", - "Search_by": "Rechercher par", - "Search_global_users": "Rechercher des utilisateurs mondiaux", - "Search_global_users_description": "Si vous activez, vous pouvez rechercher n'importe quel utilisateur d'autres sociétés ou serveurs.", - "Seconds": "{{second}} secondes", - "Security_and_privacy": "Sécurité et vie privée", - "Select_Avatar": "Sélectionnez un avatar", - "Select_Server": "Sélectionnez un serveur", - "Select_Users": "Sélectionner les utilisateurs", - "Select_a_Channel": "Sélectionnez un canal", - "Select_a_Department": "Sélectionnez un département", - "Select_an_option": "Sélectionnez une option", - "Select_a_User": "Sélectionnez un utilisateur", - "Send": "Envoyer", - "Send_audio_message": "Envoyer un message audio", - "Send_crash_report": "Envoyer un rapport de plantage", - "Send_message": "Envoyer un message", - "Send_me_the_code_again": "Envoyez-moi à nouveau le code", - "Send_to": "Envoyer à...", - "Sending_to": "Envoi à", - "Sent_an_attachment": "Envoyé une pièce jointe", - "Server": "Serveur", - "Servers": "Serveurs", - "Server_version": "Version du serveur : {{version}}", - "Set_username_subtitle": "Le nom d'utilisateur est utilisé pour permettre aux autres de vous mentionner dans les messages", - "Set_custom_status": "Définir le statut personnalisé", - "Set_status": "Définir le statut", - "Status_saved_successfully": "Statut enregistré avec succès !", - "Settings": "Paramètres", - "Settings_succesfully_changed": "Paramètres modifiés avec succès !", - "Share": "Partager", - "Share_Link": "Partager le lien", - "Share_this_app": "Partager cette application", - "Show_more": "Afficher plus..", - "Show_Unread_Counter": "Afficher le compteur non lu", - "Show_Unread_Counter_Info": "Le compteur non lu est affiché sous forme de badge à droite du canal, dans la liste", - "Sign_in_your_server": "Connectez-vous à votre serveur", - "Sign_Up": "S'inscrire", - "Some_field_is_invalid_or_empty": "Certains champs sont invalides ou vides", - "Sorting_by": "Tri par {{key}}", - "Sound": "Son", - "Star_room": "Canal favoris", - "Star": "Mettre en favoris", - "Starred_Messages": "Les messages favoris", - "starred": "favoris", - "Starred": "Favoris", - "Start_of_conversation": "Début de conversation", - "Start_a_Discussion": "Lancer une discussion", - "Started_discussion": "A commencé une discussion :", - "Started_call": "Appel lancé par {{userBy}}", - "Submit": "Soumettre", - "Table": "Tableau", - "Tags": "Mots clés", - "Take_a_photo": "Prendre une photo", - "Take_a_video": "Prendre une vidéo", - "Take_it": "Prends-le !", - "tap_to_change_status": "appuyez pour changer de statut", - "Tap_to_view_servers_list": "Appuyez pour afficher la liste des serveurs", - "Terms_of_Service": " Conditions d'utilisation ", - "Theme": "Thème", - "The_user_wont_be_able_to_type_in_roomName": "L'utilisateur ne pourra pas écrire dans {{roomName}}", - "The_user_will_be_able_to_type_in_roomName": "L'utilisateur pourra écrire dans {{roomName}}", - "There_was_an_error_while_action": "Une erreur s'est produite lors de {{action}} !", - "This_room_is_blocked": "Ce salon est bloqué", - "This_room_is_read_only": "Ce salon est en lecture seule", - "Thread": "Fil de discussion", - "Threads": "Fils de discussions", - "Timezone": "Fuseau horaire", - "To": "A", - "topic": "sujet", - "Topic": "Sujet", - "Translate": "Traduire", - "Try_again": "Réessayer", - "Two_Factor_Authentication": "Authentification à deux facteurs", - "Type_the_channel_name_here": "Tapez le nom de canal ici", - "unarchive": "désarchiver", - "UNARCHIVE": "DÉSARCHIVER", - "Unblock_user": "Débloquer l'utilisateur", - "Unfavorite": "Supprimer des favoris", - "Unfollowed_thread": "Ne plus suivre ce fil", - "Unmute": "Rendre la parole", - "unmuted": "rendu la parole", - "Unpin": "Détacher", - "unread_messages": "non lu", - "Unread": "Non lu", - "Unread_on_top": "Non lu en haut", - "Unstar": "Enlever des favoris", - "Updating": "Mise à jour...", - "Uploading": "Envoyer", - "Upload_file_question_mark": "Téléverser un fichier ?", - "User": "Utilisateur", - "Users": "Utilisateurs", - "User_added_by": "Utilisateur {{userAdded}} ajouté par {{userBy}}", - "User_Info": "Info d'utilisateur", - "User_has_been_key": "L'utilisateur a été {{key}}", - "User_is_no_longer_role_by_": "{{user}} n'est plus {{role}} par {{userBy}}", - "User_muted_by": "L'utilisateur {{userMuted}} a été rendu muet par {{userBy}}", - "User_removed_by": "Utilisateur {{userRemoved}} supprimé par {{userBy}}", - "User_sent_an_attachment": "{{user}} a envoyé une pièce jointe", - "User_unmuted_by": "L'utilisateur {{userBy}} a rendu la parole à {{userUnmuted}}", - "User_was_set_role_by_": "{{user}} a été défini {{role}} par {{userBy}}", - "Username_is_empty": "Nom d'utilisateur est vide", - "Username": "Nom d'utilisateur", - "Username_or_email": "Nom d'utilisateur ou e-mail", - "Uses_server_configuration": "Utilise la configuration du serveur", - "Validating": "Validation", - "Registration_Succeeded": "Inscription réussie !", - "Verify": "Vérifier", - "Verify_email_title": "Inscription réussie !", - "Verify_email_desc": "Nous vous avons envoyé un e-mail pour confirmer votre inscription. Si vous ne recevez pas d'e-mail sous peu, veuillez revenir et réessayer.", - "Verify_your_email_for_the_code_we_sent": "Vérifiez votre e-mail pour le code que nous avons envoyé", - "Video_call": "Appel vidéo", - "View_Original": "Voir l'original", - "Voice_call": "Appel vocal", - "Waiting_for_network": "En attente du réseau...", - "Websocket_disabled": "Le Websocket est désactivé pour ce serveur.\n{{contact}}", - "Welcome": "Bienvenue", - "What_are_you_doing_right_now": "Que fais-tu en ce moment ?", - "Whats_your_2fa": "Quel est votre code 2FA ?", - "Without_Servers": "Sans serveurs", - "Workspaces": "Espaces de travail", - "Would_you_like_to_return_the_inquiry": "Souhaitez-vous retourner la demande ?", - "Write_External_Permission_Message": "Rocket.Chat a besoin d'accéder à votre galerie pour que vous puissiez enregistrer des images.", - "Write_External_Permission": "Autorisation de la galerie", - "Yes": "Oui", - "Yes_action_it": "Oui, {{action}} le !", - "Yesterday": "Hier", - "You_are_in_preview_mode": "Vous êtes en mode aperçu", - "You_are_offline": "Vous êtes hors ligne", - "You_can_search_using_RegExp_eg": "Vous pouvez utiliser RegExp., par exemple `/^texte$/i`", - "You_colon": "Vous: ", - "you_were_mentioned": "vous avez été mentionné", - "You_were_removed_from_channel": "Vous avez été retiré de {{channel}}", - "you": "vous", - "You": "Vous", - "Logged_out_by_server": "Vous avez été déconnecté du serveur. Veuillez vous reconnecter.", - "You_need_to_access_at_least_one_RocketChat_server_to_share_something": "Vous devez accéder à au moins un serveur Rocket.Chat pour partager quelque chose.", - "You_need_to_verifiy_your_email_address_to_get_notications": "Vous devez vérifier votre adresse e-mail pour recevoir des notifications", - "Your_certificate": "Votre certificat", - "Your_invite_link_will_expire_after__usesLeft__uses": "Votre lien d'invitation expirera après {{usesLeft}} utilisations.", - "Your_invite_link_will_expire_on__date__or_after__usesLeft__uses": "Votre lien d'invitation expirera le {{date}} ou après {{usesLeft}} utilisations.", - "Your_invite_link_will_expire_on__date__": "Votre lien d'invitation expirera le {{date}}.", - "Your_invite_link_will_never_expire": "Votre lien d'invitation n'expirera jamais.", - "Your_workspace": "Votre espace de travail", - "Your_password_is": "Votre mot de passe est", - "Version_no": "Version : {{version}}", - "You_will_not_be_able_to_recover_this_message": "Vous ne pourrez pas récupérer ce message !", - "You_will_unset_a_certificate_for_this_server": "Vous allez supprimer un certificat pour ce serveur", - "Change_Language": "Changer la langue", - "Crash_report_disclaimer": "Nous ne suivons jamais le contenu de vos chats. Le rapport d'incident et les évènements d'analyse ne contiennent que des informations pertinentes pour nous afin d'identifier et de résoudre les problèmes.", - "Type_message": "Tapez le message", - "Room_search": "Recherche de salons", - "Room_selection": "Sélection de salon 1...9", - "Next_room": "Salon suivant", - "Previous_room": "Salon précédent", - "New_room": "Nouveau salon", - "Upload_room": "Envoyer dans un salon", - "Search_messages": "Rechercher des messages", - "Scroll_messages": "Faire défiler les messages", - "Reply_latest": "Répondre au dernier", - "Reply_in_Thread": "Répondre dans le fil", - "Server_selection": "Sélection du serveur", - "Server_selection_numbers": "Sélection du serveur 1...9", - "Add_server": "Ajouter un serveur", - "New_line": "Nouvelle ligne", - "You_will_be_logged_out_of_this_application": "Vous serez déconnecté de cette application.", - "Clear": "Effacer", - "This_will_clear_all_your_offline_data": "Cela effacera toutes vos données hors ligne.", - "This_will_remove_all_data_from_this_server": "Cela supprimera toutes les données de ce serveur.", - "Mark_unread": "Marquer comme non lu", - "Wait_activation_warning": "Avant de pouvoir vous connecter, votre compte doit être activé manuellement par un administrateur.", - "Screen_lock": "Verrouillage d'écran", - "Local_authentication_biometry_title": "Authentifier", - "Local_authentication_biometry_fallback": "Utiliser le code d'accès", - "Local_authentication_unlock_option": "Déverrouiller avec le code d'accès", - "Local_authentication_change_passcode": "Changer le code d'accès", - "Local_authentication_info": "Remarque : si vous oubliez le code d'accès, vous devrez supprimer et réinstaller l'application.", - "Local_authentication_facial_recognition": "reconnaissance faciale", - "Local_authentication_fingerprint": "empreinte digitale", - "Local_authentication_unlock_with_label": "Déverrouiller avec {{label}}", - "Local_authentication_auto_lock_60": "Après 1 minute", - "Local_authentication_auto_lock_300": "Après 5 minutes", - "Local_authentication_auto_lock_900": "Après 15 minutes", - "Local_authentication_auto_lock_1800": "Après 30 minutes", - "Local_authentication_auto_lock_3600": "Après 1 heure", - "Passcode_enter_title": "Entrez votre code d'accès", - "Passcode_choose_title": "Choisissez votre nouveau code d'accès", - "Passcode_choose_confirm_title": "Confirmez votre nouveau code d'accès", - "Passcode_choose_error": "Les codes d'accès ne correspondent pas. Réessayer.", - "Passcode_choose_force_set": "Code d'accès requis par l'administrateur", - "Passcode_app_locked_title": "App verrouillée", - "Passcode_app_locked_subtitle": "Réessayez dans {{timeLeft}} secondes", - "After_seconds_set_by_admin": "Après {{seconds}} secondes (défini par l'administrateur)", - "Dont_activate": "Ne pas activer maintenant", - "Queued_chats": "Discussions en file d'attente", - "Queue_is_empty": "La file d'attente est vide", - "Logout_from_other_logged_in_locations": "Déconnexion des autres emplacements connectés", - "You_will_be_logged_out_from_other_locations": "Vous serez déconnecté des autres emplacements.", - "Logged_out_of_other_clients_successfully": "Déconnexion réussie des autres clients", - "Logout_failed": "Echec de la déconnexion !", - "Log_analytics_events": "Journal des événements d'analyse", - "E2E_encryption_change_password_title": "Changer le mot de passe de cryptage", - "E2E_encryption_change_password_description": "Vous pouvez désormais créer des groupes privés et des messages directs chiffrés. Vous pouvez également modifier les groupes privés ou DM existants pour les crypter.\nIl s'agit du chiffrement de bout en bout, la clé permettant de coder/décoder vos messages ne sera pas enregistrée sur le serveur. Pour cette raison, vous devez stocker ce mot de passe à un endroit sûr. Vous devrez le saisir sur les autres appareils sur lesquels vous souhaitez utiliser le cryptage E2E.", - "E2E_encryption_change_password_error": "Erreur lors de la modification du mot de passe de la clé E2E", - "E2E_encryption_change_password_success": "Le mot de passe de la clé E2E a été changé avec succès !", - "E2E_encryption_change_password_message": "Assurez-vous de l'avoir enregistré soigneusement ailleurs.", - "E2E_encryption_change_password_confirmation": "Oui, changez-le", - "E2E_encryption_reset_title": "Réinitialiser la clé E2E", - "E2E_encryption_reset_description": "Cette option supprimera la clé E2E actuelle et vous déconnectera.\nLorsque vous vous reconnecterez, Rocket.Chat générera une nouvelle clé et restaurera votre accès aux salons cryptés qui a un ou plusieurs membres en ligne.\nEn raison de la nature du cryptage E2E, Rocket.Chat ne pourra pas restaurer l'accès à un salon crypté qui n'a aucun membre en ligne.", - "E2E_encryption_reset_button": "Réinitialiser la clé E2E", - "E2E_encryption_reset_error": "Erreur lors de la réinitialisation de la clé E2E !", - "E2E_encryption_reset_message": "Vous allez être déconnecté.", - "E2E_encryption_reset_confirmation": "Oui, réinitialisez-le", - "Following": "Suivant", - "Threads_displaying_all": "Tout afficher", - "Threads_displaying_following": "Affichage suivant", - "Threads_displaying_unread": "Affichage non lu", - "No_threads": "Il n'y a pas de fils", - "No_threads_following": "Vous ne suivez aucun fil de discussion", - "No_threads_unread": "Il n'y a pas de fils non lus", - "Messagebox_Send_to_channel": "Envoyer au canal", - "Leader": "Leader", - "Moderator": "Modérateur", - "Owner": "Propriétaire", - "Remove_from_room": "Retirer du salon", - "Ignore": "Ignorer", - "Unignore": "Ne pas ignorer", - "User_has_been_ignored": "L'utilisateur a été ignoré", - "User_has_been_unignored": "L'utilisateur n'est plus ignoré", - "User_has_been_removed_from_s": "L'utilisateur a été retiré de {{s}}", - "User__username__is_now_a_leader_of__room_name_": "L'utilisateur {{username}} est désormais un leader de {{room_name}}", - "User__username__is_now_a_moderator_of__room_name_": "L'utilisateur {{username}} est désormais un modérateur de {{room_name}}", - "User__username__is_now_a_owner_of__room_name_": "L'utilisateur {{username}} est désormais un propriétaire de {{room_name}}", - "User__username__removed_from__room_name__leaders": "L'utilisateur {{username}} a été supprimé des leaders de {{room_name}}", - "User__username__removed_from__room_name__moderators": "L'utilisateur {{username}} a été supprimé des modérateurs de {{room_name}}", - "User__username__removed_from__room_name__owners": "L'utilisateur {{username}} a été supprimé des propriétaires de {{room_name}}", - "The_user_will_be_removed_from_s": "L'utilisateur sera supprimé de {{s}}", - "Yes_remove_user": "Oui, supprimez l'utilisateur !", - "Direct_message": "Message direct", - "Message_Ignored": "Message ignoré. Touchez pour l'afficher.", - "Enter_workspace_URL": "Entrez l'URL de l'espace de travail", - "Workspace_URL_Example": "Ex. votre-société.rocket.chat", - "This_room_encryption_has_been_enabled_by__username_": "Le cryptage de ce salon a été activé par {{username}}", - "This_room_encryption_has_been_disabled_by__username_": "Le cryptage de ce salon a été désactivé par {{username}}", - "Teams": "Equipes", - "No_team_channels_found": "Aucun canal trouvé", - "Team_not_found": "Equipe non trouvée", - "Create_Team": "Créer une équipe", - "Team_Name": "Nom de l'équipe", - "Private_Team": "Equipe privée", - "Read_Only_Team": "Equipe en lecture seule", - "Broadcast_Team": "Equipe de diffusion", - "creating_team": "création de l'équipe", - "team-name-already-exists": "Une équipe portant ce nom existe déjà", - "Add_Channel_to_Team": "Ajouter un canal à l'équipe", - "Left_The_Team_Successfully": "A quitté l'équipe avec succès", - "Create_New": "Créer un nouveau", - "Add_Existing": "Ajouter existant", - "Add_Existing_Channel": "Ajouter un canal existant", - "Remove_from_Team": "Retirer de l'équipe", - "Auto-join": "Rejoindre automatiquement", - "Remove_Team_Room_Warning": "Souhaitez-vous supprimer ce canal de l'équipe ? Le canal sera déplacé vers l'espace de travail", - "Confirmation": "Confirmation", - "invalid-room": "Salon invalide", - "You_are_leaving_the_team": "Vous quittez l'équipe '{{team}}'", - "Leave_Team": "Quitter l'équipe", - "Select_Team": "Sélectionnez l'équipe", - "Select_Team_Channels": "Sélectionnez les canaux de l'équipe que vous souhaitez quitter.", - "Cannot_leave": "Ne peut pas partir", - "Cannot_remove": "Impossible d'enlever", - "Cannot_delete": "Impossible de supprimer", - "Last_owner_team_room": "Vous êtes le dernier propriétaire de ce canal. Une fois que vous quittez l'équipe, le canal sera conservé au sein de l'équipe mais vous le gérerez de l'extérieur.", - "last-owner-can-not-be-removed": "Le dernier propriétaire ne peut pas être supprimé", - "Remove_User_Teams": "Sélectionnez les canaux dont vous souhaitez supprimer l'utilisateur.", - "Delete_Team": "Supprimer l'équipe", - "Select_channels_to_delete": "Ceci ne peut pas être annulé. Une fois que vous supprimez une équipe, tout le contenu et la configuration du chat seront supprimés.\n\nSélectionnez les canaux que vous souhaitez supprimer. Ceux que vous décidez de conserver seront disponible dans votre espace de travail. Notez que les canaux publics seront toujours publics et visibles par tous.", - "You_are_deleting_the_team": "Vous supprimez cette équipe.", - "Removing_user_from_this_team": "Vous supprimez {{user}} de cette équipe", - "Remove_User_Team_Channels": "Sélectionnez les canaux dont vous souhaitez supprimer l'utilisateur.", - "Remove_Member": "Supprimer un membre", - "leaving_team": "quitter l'équipe", - "removing_team": "retirer de l'équipe", - "moving_channel_to_team": "transfert de canal à l'équipe", - "deleting_team": "suppression de l'équipe", - "member-does-not-exist": "Le membre n'existe pas", - "Convert": "Convertir", - "Convert_to_Team": "Convertir en équipe", - "Convert_to_Team_Warning": "Vous convertissez ce canal en équipe. Tous les membres seront conservés.", - "Move_to_Team": "Déplacer vers l'équipe", - "Move_Channel_Paragraph": "Le déplacement d'un canal dans une équipe signifie que ce canal sera ajouté dans le contexte d'équipe. Cependant, tous les membres du canal, qui ne sont pas membres de l'équipe respective, auront toujours accès à ce canal, mais ne seront pas ajoutés comme membres de l'équipe.\n\nLa gestion de tout le canal sera toujours assurée par les propriétaires de ce canal.\n\nLes membres de l'équipe et même les propriétaires de l'équipe, s'ils ne sont pas membres de ce canal, ne peuvent pas avoir accès au contenu du canal.\n\nVeuillez noter que le propriétaire de l'équipe pourra supprimer des membres du canal.", - "Move_to_Team_Warning": "Après avoir lu les instructions précédentes sur ce comportement, voulez-vous toujours déplacer ce canal vers l'équipe sélectionnée ?", - "Load_More": "Charger plus", - "Load_Newer": "Charger plus récent", - "Load_Older": "Charger plus ancien", - "Left_The_Room_Successfully": "A quitté le salon avec succès", - "Deleted_The_Team_Successfully": "Equipe supprimée avec succès", - "Deleted_The_Room_Successfully": "Salon supprimé avec succès", - "Convert_to_Channel": "Convertir en canal", - "Converting_Team_To_Channel": "Conversion de l’équipe en canal", - "Select_Team_Channels_To_Delete": "Sélectionnez les canaux de l'équipe que vous souhaitez supprimer, ceux que vous ne sélectionnez pas, seront déplacés vers l'espace de travail. \n\n\nNotez que les canaux publics seront publics et visibles par tous.", - "You_are_converting_the_team": "Vous convertissez cette équipe en canal" -} \ No newline at end of file + "1_person_reacted": "1 personne a réagi", + "1_user": "1 utilisateur", + "error-action-not-allowed": "{{action}} n'est pas autorisé", + "error-application-not-found": "Application non trouvée", + "error-archived-duplicate-name": "Il y a un canal archivé avec le nom {{room_name}}", + "error-avatar-invalid-url": "URL d'avatar invalide : {{url}}", + "error-avatar-url-handling": "Erreur lors de la gestion du paramètre d'avatar à partir d'une URL ({{url}}) pour {{username}}", + "error-cant-invite-for-direct-room": "Impossible d'inviter l'utilisateur aux salons directs", + "error-could-not-change-email": "Impossible de changer l'adresse e-mail", + "error-could-not-change-name": "Impossible de changer le nom", + "error-could-not-change-username": "Impossible de changer le nom d'utilisateur", + "error-could-not-change-status": "Impossible de changer le statut", + "error-delete-protected-role": "Impossible de supprimer un rôle protégé", + "error-department-not-found": "Département introuvable", + "error-direct-message-file-upload-not-allowed": "Partage de fichiers non autorisé dans les messages privés", + "error-duplicate-channel-name": "Un canal avec nom {{room_name}} existe", + "error-email-domain-blacklisted": "Le domaine de messagerie est sur liste noire", + "error-email-send-failed": "Erreur lors de la tentative d'envoi de l'e-mail : {{message}}", + "error-save-image": "Erreur lors de l'enregistrement de l'image", + "error-save-video": "Erreur en sauvegardant la vidéo", + "error-field-unavailable": "{{field}} est déjà utilisé: (", + "error-file-too-large": "Le fichier est trop grand", + "error-importer-not-defined": "L'importateur n'a pas été défini correctement, il manque la classe Import.", + "error-input-is-not-a-valid-field": "{{input}} n'est pas un {{field}} valide", + "error-invalid-actionlink": "Lien d'action non valide", + "error-invalid-arguments": "Arguments non valides", + "error-invalid-asset": "Elément non valide", + "error-invalid-channel": "Canal invalide.", + "error-invalid-channel-start-with-chars": "Canal non valide. Commencez par @ ou #", + "error-invalid-custom-field": "Champ personnalisé non valide", + "error-invalid-custom-field-name": "Nom de champ personnalisé non valide. Utilisez uniquement des lettres, des chiffres, des traits d'union et des traits de soulignement.", + "error-invalid-date": "Date fournie non valide.", + "error-invalid-description": "Description invalide", + "error-invalid-domain": "Domaine invalide", + "error-invalid-email": "E-mail {{email}} invalide", + "error-invalid-email-address": "Adresse e-mail invalide", + "error-invalid-file-height": "Hauteur de fichier non valide", + "error-invalid-file-type": "Type de fichier invalide", + "error-invalid-file-width": "Largeur de fichier non valide", + "error-invalid-from-address": "Vous avez renseigné une adresse FROM invalide.", + "error-invalid-integration": "Intégration invalide", + "error-invalid-message": "Message invalide", + "error-invalid-method": "Méthode non valide", + "error-invalid-name": "Nom incorrect", + "error-invalid-password": "Mot de passe incorrect", + "error-invalid-redirectUri": "RedirectUri invalide", + "error-invalid-role": "Rôle invalide", + "error-invalid-room": "Salon invalide", + "error-invalid-room-name": "{{room_name}} n'est pas un nom de salon valide", + "error-invalid-room-type": "{{type}} n'est pas un type de salon valide.", + "error-invalid-settings": "Paramètres fournis non valides", + "error-invalid-subscription": "Abonnement invalide", + "error-invalid-token": "Jeton invalide", + "error-invalid-triggerWords": "Mots déclencheurs invalides", + "error-invalid-urls": "URL non valides", + "error-invalid-user": "Utilisateur invalide", + "error-invalid-username": "Nom d'utilisateur invalide", + "error-invalid-webhook-response": "L'URL du webhook a répondu avec un statut autre que 200", + "error-message-deleting-blocked": "La suppression du message est bloquée", + "error-message-editing-blocked": "La modification du message est bloquée", + "error-message-size-exceeded": "La taille du message dépasse Message_MaxAllowedSize", + "error-missing-unsubscribe-link": "Vous devez fournir le lien [unsubscribe].", + "error-no-owner-channel": "Vous n'êtes pas propriétaire du canal", + "error-no-tokens-for-this-user": "Il n'y a pas de jetons pour cet utilisateur", + "error-not-allowed": "Interdit", + "error-not-authorized": "Pas autorisé", + "error-push-disabled": "Push est désactivé", + "error-remove-last-owner": "C'est le dernier propriétaire. Veuillez définir un nouveau propriétaire avant de supprimer celui-ci.", + "error-role-in-use": "Impossible de supprimer le rôle car il est en cours d'utilisation", + "error-role-name-required": "Le nom du rôle est requis", + "error-the-field-is-required": "Le champ {{field}} est requis.", + "error-too-many-requests": "Erreur, trop de demandes. Ralentissez, s'il vous plaît. Vous devez attendre {{seconds}} secondes avant de réessayer.", + "error-user-is-not-activated": "L'utilisateur n'est pas activé", + "error-user-has-no-roles": "L'utilisateur n'a aucun rôle", + "error-user-limit-exceeded": "Le nombre d'utilisateurs que vous essayez d'inviter à #channel_name dépasse la limite définie par l'administrateur", + "error-user-not-in-room": "L'utilisateur n'est pas dans ce salon", + "error-user-registration-custom-field": "error-user-registration-custom-field", + "error-user-registration-disabled": "L'enregistrement de l'utilisateur est désactivé", + "error-user-registration-secret": "L'enregistrement de l'utilisateur n'est autorisé que via l'URL secrète", + "error-you-are-last-owner": "Vous êtes le dernier propriétaire. Veuillez définir un nouveau propriétaire avant de quitter le salon.", + "error-status-not-allowed": "Le statut invisible est désactivé", + "Actions": "Actions", + "activity": "activité", + "Activity": "Activité", + "Add_Reaction": "Ajouter une réaction", + "Add_Server": "Ajouter un serveur", + "Add_users": "Ajouter des utilisateurs", + "Admin_Panel": "Panneau d'administration", + "Agent": "Agent", + "Alert": "Alerte", + "alert": "alerte", + "alerts": "alertes", + "All_users_in_the_channel_can_write_new_messages": "Tous les utilisateurs du canal peuvent écrire de nouveaux messages", + "All_users_in_the_team_can_write_new_messages": "Tous les utilisateurs de l'équipe peuvent écrire de nouveaux messages", + "A_meaningful_name_for_the_discussion_room": "Un nom significatif pour le salon de discussion", + "All": "Tout", + "All_Messages": "Tous les messages", + "Allow_Reactions": "Autoriser les réactions", + "Alphabetical": "Alphabétique", + "and_more": "et plus", + "and": "et", + "announcement": "annonce", + "Announcement": "Annonce", + "Apply_Your_Certificate": "Appliquer votre certificat", + "ARCHIVE": "ARCHIVER", + "archive": "archiver", + "are_typing": "sont en train d'écrire", + "Are_you_sure_question_mark": "Êtes-vous sûr ?", + "Are_you_sure_you_want_to_leave_the_room": "Êtes-vous sûr de vouloir quitter le salon {{room}} ?", + "Audio": "Audio", + "Authenticating": "Authentification", + "Automatic": "Automatique", + "Auto_Translate": "Traduction automatique", + "Avatar_changed_successfully": "Avatar changé avec succès !", + "Avatar_Url": "URL de l'avatar", + "Away": "Absent", + "Back": "Retour", + "Black": "Noir", + "Block_user": "Bloquer l'utilisateur", + "Browser": "Navigateur", + "Broadcast_channel_Description": "Seuls les utilisateurs autorisés peuvent écrire de nouveaux messages, mais les autres utilisateurs pourront répondre.", + "Broadcast_Channel": "Canal de diffusion", + "Busy": "Occupé", + "By_proceeding_you_are_agreeing": "En poursuivant, vous acceptez nos", + "Cancel_editing": "Annuler la modification", + "Cancel_recording": "Annuler l'enregistrement", + "Cancel": "Annuler", + "changing_avatar": "changer d'avatar", + "creating_channel": "création d'un canal", + "creating_invite": "création d'une invitation", + "Channel_Name": "Nom du canal", + "Channels": "Canaux", + "Chats": "Chats", + "Call_already_ended": "Appel déjà terminé !", + "Clear_cookies_alert": "Voulez-vous effacer tous les cookies ?", + "Clear_cookies_desc": "Cette action effacera tous les cookies de connexion ce qui vous permettra de vous connecter à d'autres comptes.", + "Clear_cookies_yes": "Oui, effacez les cookies", + "Clear_cookies_no": "Non, gardez les cookies", + "Click_to_join": "Cliquez pour rejoindre !", + "Close": "Fermer", + "Close_emoji_selector": "Fermer le sélecteur d'émoji", + "Closing_chat": "Fermeture du chat", + "Change_language_loading": "Changement de la langue.", + "Chat_closed_by_agent": "Chat fermé par l'agent", + "Choose": "Choisir", + "Choose_from_library": "Choisissez dans la bibliothèque", + "Choose_file": "Choisir le fichier", + "Choose_where_you_want_links_be_opened": "Choisissez oµ vous souhaitez ouvrir les liens", + "Code": "Code", + "Code_or_password_invalid": "Code ou mot de passe invalide", + "Collaborative": "Collaboratif", + "Confirm": "Confirmer", + "Connect": "Connecter", + "Connected": "Connecté", + "connecting_server": "connexion en cours au serveur", + "Connecting": "Connexion...", + "Contact_us": "Contactez-nous", + "Contact_your_server_admin": "Contactez votre administrateur de serveur.", + "Continue_with": "Continuer avec", + "Copied_to_clipboard": "Copié dans le presse-papier !", + "Copy": "Copier", + "Conversation": "Conversation", + "Permalink": "Lien permanent", + "Certificate_password": "Mot de passe du certificat", + "Clear_cache": "Effacer le cache du serveur local", + "Clear_cache_loading": "Effacement du cache.", + "Whats_the_password_for_your_certificate": "Quel est le mot de passe de votre certificat ?", + "Create_account": "Créer un compte", + "Create_Channel": "Créer un canal", + "Create_Direct_Messages": "Créer des messages directs", + "Create_Discussion": "Créer une discussion", + "Created_snippet": "créé un extrait", + "Create_a_new_workspace": "Créer un nouvel espace de travail", + "Create": "Créer", + "Custom_Status": "Statut personnalisé", + "Dark": "Sombre", + "Dark_level": "Niveau d'obscurité", + "Default": "Défaut", + "Default_browser": "Navigateur par défaut", + "Delete_Room_Warning": "Supprimer une salon supprimera tous les messages publiés dans le salon. Ça ne peut pas être annulé.", + "Department": "Département", + "delete": "supprimer", + "Delete": "Supprimer", + "DELETE": "SUPPRIMER", + "move": "déplacer", + "deleting_room": "suppression du salon", + "description": "la description", + "Description": "La description", + "Desktop_Options": "Options de bureau", + "Desktop_Notifications": "Notifications de bureau", + "Desktop_Alert_info": "Ces notifications sont transmises sur le bureau", + "Directory": "Répertoire", + "Direct_Messages": "Messages directs", + "Disable_notifications": "Désactiver les notifications", + "Discussions": "Discussions", + "Discussion_Desc": "Aide à garder une vue d'ensemble sur ce qui se passe ! En créant une discussion, un sous-canal de celui que vous avez sélectionné est créé et les deux sont liés.", + "Discussion_name": "Nom de la discussion", + "Done": "Fait", + "Dont_Have_An_Account": "Vous n'avez pas de compte ?", + "Do_you_have_an_account": "Avez-vous un compte ?", + "Do_you_have_a_certificate": "Avez-vous un certificat ?", + "Do_you_really_want_to_key_this_room_question_mark": "Voulez-vous vraiment {{key}} ce salon ?", + "E2E_Encryption": "Cryptage E2E", + "E2E_How_It_Works_info1": "Vous pouvez désormais créer des groupes privés et des messages directs chiffrés. Vous pouvez également modifier les groupes privés ou DM existants pour les crypter.", + "E2E_How_It_Works_info2": "Il s'agit du *chiffrement de bout en bout*, la clé permettant de coder/décoder vos messages ne sera pas enregistrée sur le serveur. C'est pourquoi *vous devez stocker ce mot de passe à un endroit sûr* auquel vous pourrez accéder plus tard si vous en avez besoin.", + "E2E_How_It_Works_info3": "Si vous continuez, un mot de passe E2E sera automatiquement généré.", + "E2E_How_It_Works_info4": "Vous pouvez également configurer un nouveau mot de passe pour votre clé de cryptage à tout moment à partir de n'importe quel navigateur dans lequel vous avez entré le mot de passe E2E existant.", + "edit": "modifier", + "edited": "modifié", + "Edit": "Modifier", + "Edit_Status": "Modifier le statut", + "Edit_Invite": "Modifier l'invitation", + "End_to_end_encrypted_room": "Salon crypté de bout en bout", + "end_to_end_encryption": "chiffrement de bout en bout", + "Email_Notification_Mode_All": "Chaque mention/MD", + "Email_Notification_Mode_Disabled": "Désactivé", + "Email_or_password_field_is_empty": "Le champ e-mail ou mot de passe est vide", + "Email": "E-mail", + "email": "e-mail", + "Empty_title": "Titre vide", + "Enable_Auto_Translate": "Activer la traduction automatique", + "Enable_notifications": "Activer les notifications", + "Encrypted": "Crypté", + "Encrypted_message": "Message crypté", + "Enter_Your_E2E_Password": "Entrez votre mot de passe E2E", + "Enter_Your_Encryption_Password_desc1": "Cela vous permettra d'accéder à vos groupes privés cryptés et à vos messages directs.", + "Enter_Your_Encryption_Password_desc2": "Vous devez entrer le mot de passe pour coder/décoder les messages à chaque endroit où vous utilisez le chat.", + "Encryption_error_title": "Votre mot de passe de cryptage semble erroné", + "Encryption_error_desc": "Il n'a pas été possible de décoder votre clé de cryptage pour être importé.", + "Everyone_can_access_this_channel": "Tout le monde peut accéder à ce canal", + "Everyone_can_access_this_team": "Tout le monde peut accéder à cette équipe", + "Error_uploading": "Erreur lors de l'envoi", + "Expiration_Days": "Expiration (Jours)", + "Favorite": "Favori", + "Favorites": "Favoris", + "Files": "Fichiers", + "File_description": "Description du fichier", + "File_name": "Nom de fichier", + "Finish_recording": "Terminer l'enregistrement", + "Following_thread": "Suivre le fil", + "For_your_security_you_must_enter_your_current_password_to_continue": "Pour votre sécurité, vous devez entrer votre mot de passe actuel pour continuer.", + "Forgot_password_If_this_email_is_registered": "Si cet e-mail est enregistré, nous vous enverrons des instructions pour réinitialiser votre mot de passe. Si vous ne recevez pas d'e-mail sous peu, veuillez revenir et réessayer.", + "Forgot_password": "Mot de passe oublié ?", + "Forgot_Password": "Mot de passe oublié", + "Forward": "Transmettre", + "Forward_Chat": "Transmettre la conversation", + "Forward_to_department": "Transmettre au département", + "Forward_to_user": "Transmettre à l'utilisateur", + "Full_table": "Cliquez pour voir le tableau complet", + "Generate_New_Link": "Générer un nouveau lien", + "Group_by_favorites": "Grouper par favoris", + "Group_by_type": "Grouper par type", + "Hide": "Cacher", + "Has_joined_the_channel": "a rejoint le canal", + "Has_joined_the_conversation": "a rejoint la conversation", + "Has_left_the_channel": "a quitté le canal", + "Hide_System_Messages": "Masquer les messages système", + "Hide_type_messages": "Masquer les messages \"{{type}}\"", + "How_It_Works": "Comment cela fonctionne", + "Message_HideType_uj": "L'utilisateur a rejoint", + "Message_HideType_ul": "L'utilisateur est parti", + "Message_HideType_ru": "Utilisateur supprimé", + "Message_HideType_au": "Utilisateur ajouté", + "Message_HideType_mute_unmute": "Utilisateur rendu muet / a retrouvé la parole", + "Message_HideType_r": "Nom du salon modifié", + "Message_HideType_ut": "L'utilisateur a rejoint la conversation", + "Message_HideType_wm": "Bienvenue", + "Message_HideType_rm": "Message supprimé", + "Message_HideType_subscription_role_added": "Rôle assigné", + "Message_HideType_subscription_role_removed": "Le rôle n'est plus défini", + "Message_HideType_room_archived": "Salon archivé", + "Message_HideType_room_unarchived": "Salon désarchivé", + "I_Saved_My_E2E_Password": "J'ai enregistré mon mot de passe E2E", + "IP": "IP", + "In_app": "Dans l'app", + "In_App_And_Desktop": "Dans l'application et sur le bureau", + "In_App_and_Desktop_Alert_info": "Affiche une bannière en haut de l'écran lorsque l'application est ouverte et affiche une notification sur le bureau", + "Invisible": "Invisible", + "Invite": "Inviter", + "is_a_valid_RocketChat_instance": "est une instance valide de Rocket.Chat", + "is_not_a_valid_RocketChat_instance": "n'est pas une instance valide de Rocket.Chat", + "is_typing": "est en train d'écrire", + "Invalid_or_expired_invite_token": "Jeton d'invitation non valide ou expiré", + "Invalid_server_version": "Le serveur auquel vous essayez de vous connecter utilise une version qui n'est plus prise en charge par l'application : {{currentVersion}}.\n\nNous exigeons la version {{minVersion}}", + "Invite_Link": "Lien d'invitation", + "Invite_users": "Inviter des utilisateurs", + "Join": "Rejoindre", + "Join_Code": "Code d'adhésion", + "Insert_Join_Code": "Insérer le code d'adhésion", + "Join_our_open_workspace": "Rejoignez notre espace de travail ouvert", + "Join_your_workspace": "Rejoignez votre espace de travail", + "Just_invited_people_can_access_this_channel": "Seuls les personnes invitées peuvent accéder à ce canal", + "Just_invited_people_can_access_this_team": "Seules les personnes invitées peuvent accéder à cette équipe", + "Language": "Langue", + "last_message": "dernier message", + "Leave_channel": "Quitter le canal", + "leaving_room": "quittant le salon", + "Leave": "Quitter", + "leave": "quitter", + "Legal": "Légal", + "Light": "Clair", + "License": "Licence", + "Livechat": "Chat en direct", + "Livechat_edit": "Modifier le chat en direct", + "Login": "Connexion", + "Login_error": "Vos identifiants ont été rejetés ! Veuillez réessayer.", + "Login_with": "Se connecter avec", + "Logging_out": "Déconnexion.", + "Logout": "Se déconnecter", + "Max_number_of_uses": "Nombre maximum d'utilisations", + "Max_number_of_users_allowed_is_number": "Le nombre maximum d'utilisateurs autorisés est {{maxUsers}}", + "members": "membres", + "Members": "Membres", + "Mentioned_Messages": "Messages mentionnés", + "mentioned": "mentionné", + "Mentions": "Mentions", + "Message_accessibility": "Message de {{user}} à {{time}} : {{message}}", + "Message_actions": "Actions de message", + "Message_pinned": "Message épinglé", + "Message_removed": "Message supprimé", + "Message_starred": "Message suivi", + "Message_unstarred": "Message non suivi", + "message": "message", + "messages": "messages", + "Message": "Message", + "Messages": "Messages", + "Message_Reported": "Message signalé", + "Microphone_Permission_Message": "Rocket.Chat a besoin d'accéder à votre microphone pour que vous puissiez envoyer un message audio.", + "Microphone_Permission": "Permission de microphone", + "Mute": "Rendre muet", + "muted": "muet", + "My_servers": "Mes serveurs", + "N_people_reacted": "{{n}} personnes ont réagi", + "N_users": "{{n}} utilisateurs", + "N_channels": "{{n}} canaux", + "name": "nom", + "Name": "Nom", + "Navigation_history": "Historique de navigation", + "Never": "Jamais", + "New_Message": "Nouveau message", + "New_Password": "Nouveau mot de passe", + "New_Server": "Nouveau serveur", + "Next": "Suivant", + "No_files": "Aucun fichier", + "No_limit": "Pas de limites", + "No_mentioned_messages": "Aucun message mentionné", + "No_pinned_messages": "Aucun message épinglé", + "No_results_found": "Aucun résultat trouvé", + "No_starred_messages": "Aucun message suivi", + "No_thread_messages": "Aucun message de fil de discussion", + "No_label_provided": "Aucun {{label}} fourni.", + "No_Message": "Aucun message", + "No_messages_yet": "Pas encore de messages", + "No_Reactions": "Aucune réaction", + "No_Read_Receipts": "Aucun accusé de lecture", + "Not_logged": "Non connecté", + "Not_RC_Server": "Ce n'est pas un serveur Rocket.Chat.\n{{contact}}", + "Nothing": "Rien", + "Nothing_to_save": "Rien à enregistrer !", + "Notify_active_in_this_room": "Notifier les utilisateurs actifs dans ce salon", + "Notify_all_in_this_room": "Avertir tout le monde dans ce salon", + "Notifications": "Notifications", + "Notification_Duration": "Durée des notifications", + "Notification_Preferences": "Préférences de notification", + "No_available_agents_to_transfer": "Aucun agent disponible pour le transfert", + "Offline": "Hors ligne", + "Oops": "Oups !", + "Omnichannel": "Omnicanal", + "Open_Livechats": "Discussions en cours", + "Omnichannel_enable_alert": "Vous n'êtes pas disponible sur Omnicanal. Souhaitez-vous être disponible ?", + "Onboarding_description": "Un espace de travail est l'espace de collaboration de votre équipe ou organisation. Demandez à l'administrateur de l'espace de travail l'adresse pour rejoindre ou créez-en une pour votre équipe.", + "Onboarding_join_workspace": "Rejoindre un espace de travail", + "Onboarding_subtitle": "Au-delà de la collaboration d'équipe", + "Onboarding_title": "Bienvenue sur Rocket.Chat", + "Onboarding_join_open_description": "Rejoignez notre espace de travail ouvert pour discuter avec l'équipe et la communauté Rocket.Chat.", + "Onboarding_agree_terms": "En continuant, vous acceptez Rocket.Chat", + "Onboarding_less_options": "Moins d'options", + "Onboarding_more_options": "Plus d'options", + "Online": "En ligne", + "Only_authorized_users_can_write_new_messages": "Seuls les utilisateurs autorisés peuvent écrire de nouveaux messages.", + "Open_emoji_selector": "Ouvrir le sélecteur d'émoji", + "Open_Source_Communication": "Communication Open Source", + "Open_your_authentication_app_and_enter_the_code": "Ouvrez votre application d'authentification et entrez le code.", + "OR": "OU", + "OS": "OS", + "Overwrites_the_server_configuration_and_use_room_config": "Écrase la configuration du serveur et utilise la configuration du salon", + "Password": "Mot de passe", + "Parent_channel_or_group": "Canal ou groupe parent", + "Permalink_copied_to_clipboard": "Lien permanent copié dans le presse-papiers !", + "Phone": "Téléphone", + "Pin": "Épingler", + "Pinned_Messages": "Messages épinglés", + "pinned": "épinglé", + "Pinned": "Épinglé", + "Please_add_a_comment": "Veuillez ajouter un commentaire", + "Please_enter_your_password": "Veuillez entrer votre mot de passe", + "Please_wait": "Veuillez patienter.", + "Preferences": "Préférences", + "Preferences_saved": "Préférences sauvegardées !", + "Privacy_Policy": " Politique de confidentialité", + "Private_Channel": "Canal privé", + "Private": "Privé", + "Processing": "Traitement...", + "Profile_saved_successfully": "Profil enregistré avec succès !", + "Profile": "Profil", + "Public_Channel": "Canal public", + "Public": "Public", + "Push_Notifications": "Notifications Push", + "Push_Notifications_Alert_Info": "Ces notifications vous sont envoyées lorsque l'application n'est pas ouverte", + "Quote": "Citation", + "Reactions_are_disabled": "Les réactions sont désactivées", + "Reactions_are_enabled": "Les réactions sont activées", + "Reactions": "Réactions", + "Read": "Lecture", + "Read_External_Permission_Message": "Rocket.Chat doit accéder aux photos, aux médias et aux fichiers sur votre appareil", + "Read_External_Permission": "Permission de lecture des fichiers", + "Read_Only_Channel": "Canal en lecture seule", + "Read_Only": "Lecture seule", + "Read_Receipt": "Accusé de réception", + "Receive_Group_Mentions": "Recevoir des mentions de groupe", + "Receive_Group_Mentions_Info": "Recevoir des mentions @all et @here", + "Register": "S'inscrire", + "Repeat_Password": "Répéter le mot de passe", + "Replied_on": "A répondu le :", + "replies": "réponses", + "reply": "répondre", + "Reply": "Répondre", + "Report": "Signaler", + "Receive_Notification": "Recevoir une notification", + "Receive_notifications_from": "Recevoir des notifications de {{name}}", + "Resend": "Renvoyer", + "Reset_password": "Réinitialiser le mot de passe", + "resetting_password": "réinitialisation du mot de passe", + "RESET": "RÉINITIALISER", + "Return": "Retour", + "Review_app_title": "Appréciez-vous cette application ?", + "Review_app_desc": "Donnez-nous 5 étoiles sur {{store}}", + "Review_app_yes": "Bien sûr !", + "Review_app_no": "Non", + "Review_app_later": "Peut-être plus tard", + "Review_app_unable_store": "Impossible d'ouvrir {{store}}", + "Review_this_app": "Donnez votre avis sur cette application", + "Remove": "Supprimer", + "remove": "supprimer", + "Roles": "Rôles", + "Room_actions": "Actions du salon", + "Room_changed_announcement": "Annonce du salon changé en : {{announcement}} par {{userBy}}", + "Room_changed_avatar": "Avatar du salon modifié par {{userBy}}", + "Room_changed_description": "Description du salon changé en : {{description}} par {{userBy}}", + "Room_changed_privacy": "Type de salon changé en : {{type}} par {{userBy}}", + "Room_changed_topic": "Le sujet de salon est changé en : {{topic}} par {{userBy}}", + "Room_Files": "Fichiers du salon", + "Room_Info_Edit": "Modifier les informations du salon", + "Room_Info": "Info sur le salon", + "Room_Members": "Membres du salon", + "Room_name_changed": "Nom de salon changé en : {{name}} par {{userBy}}", + "SAVE": "SAUVEGARDER", + "Save_Changes": "Sauvegarder les modifications", + "Save": "Sauvegarder", + "Saved": "Enregistré", + "saving_preferences": "enregistrement des préférences", + "saving_profile": "enregistrement du profil", + "saving_settings": "enregistrement des paramètres", + "saved_to_gallery": "Enregistré dans la galerie", + "Save_Your_E2E_Password": "Enregistrez votre mot de passe E2E", + "Save_Your_Encryption_Password": "Enregistrez votre mot de passe de cryptage", + "Save_Your_Encryption_Password_warning": "Ce mot de passe n'est stocké nulle part, enregistrez-le donc soigneusement ailleurs.", + "Save_Your_Encryption_Password_info": "Si vous perdez le mot de passe, il n'y a aucun moyen de le récupérer et vous perdrez l'accès à vos messages.", + "Search_Messages": "Rechercher des messages", + "Search": "Recherche", + "Search_by": "Rechercher par", + "Search_global_users": "Rechercher des utilisateurs mondiaux", + "Search_global_users_description": "Si vous activez, vous pouvez rechercher n'importe quel utilisateur d'autres sociétés ou serveurs.", + "Seconds": "{{second}} secondes", + "Security_and_privacy": "Sécurité et vie privée", + "Select_Avatar": "Sélectionnez un avatar", + "Select_Server": "Sélectionnez un serveur", + "Select_Users": "Sélectionner les utilisateurs", + "Select_a_Channel": "Sélectionnez un canal", + "Select_a_Department": "Sélectionnez un département", + "Select_an_option": "Sélectionnez une option", + "Select_a_User": "Sélectionnez un utilisateur", + "Send": "Envoyer", + "Send_audio_message": "Envoyer un message audio", + "Send_crash_report": "Envoyer un rapport de plantage", + "Send_message": "Envoyer un message", + "Send_me_the_code_again": "Envoyez-moi à nouveau le code", + "Send_to": "Envoyer à...", + "Sending_to": "Envoi à", + "Sent_an_attachment": "Envoyé une pièce jointe", + "Server": "Serveur", + "Servers": "Serveurs", + "Server_version": "Version du serveur : {{version}}", + "Set_username_subtitle": "Le nom d'utilisateur est utilisé pour permettre aux autres de vous mentionner dans les messages", + "Set_custom_status": "Définir le statut personnalisé", + "Set_status": "Définir le statut", + "Status_saved_successfully": "Statut enregistré avec succès !", + "Settings": "Paramètres", + "Settings_succesfully_changed": "Paramètres modifiés avec succès !", + "Share": "Partager", + "Share_Link": "Partager le lien", + "Share_this_app": "Partager cette application", + "Show_more": "Afficher plus..", + "Show_Unread_Counter": "Afficher le compteur non lu", + "Show_Unread_Counter_Info": "Le compteur non lu est affiché sous forme de badge à droite du canal, dans la liste", + "Sign_in_your_server": "Connectez-vous à votre serveur", + "Sign_Up": "S'inscrire", + "Some_field_is_invalid_or_empty": "Certains champs sont invalides ou vides", + "Sorting_by": "Tri par {{key}}", + "Sound": "Son", + "Star_room": "Canal favoris", + "Star": "Mettre en favoris", + "Starred_Messages": "Les messages favoris", + "starred": "favoris", + "Starred": "Favoris", + "Start_of_conversation": "Début de conversation", + "Start_a_Discussion": "Lancer une discussion", + "Started_discussion": "A commencé une discussion :", + "Started_call": "Appel lancé par {{userBy}}", + "Submit": "Soumettre", + "Table": "Tableau", + "Tags": "Mots clés", + "Take_a_photo": "Prendre une photo", + "Take_a_video": "Prendre une vidéo", + "Take_it": "Prends-le !", + "tap_to_change_status": "appuyez pour changer de statut", + "Tap_to_view_servers_list": "Appuyez pour afficher la liste des serveurs", + "Terms_of_Service": " Conditions d'utilisation ", + "Theme": "Thème", + "The_user_wont_be_able_to_type_in_roomName": "L'utilisateur ne pourra pas écrire dans {{roomName}}", + "The_user_will_be_able_to_type_in_roomName": "L'utilisateur pourra écrire dans {{roomName}}", + "There_was_an_error_while_action": "Une erreur s'est produite lors de {{action}} !", + "This_room_is_blocked": "Ce salon est bloqué", + "This_room_is_read_only": "Ce salon est en lecture seule", + "Thread": "Fil de discussion", + "Threads": "Fils de discussions", + "Timezone": "Fuseau horaire", + "To": "A", + "topic": "sujet", + "Topic": "Sujet", + "Translate": "Traduire", + "Try_again": "Réessayer", + "Two_Factor_Authentication": "Authentification à deux facteurs", + "Type_the_channel_name_here": "Tapez le nom de canal ici", + "unarchive": "désarchiver", + "UNARCHIVE": "DÉSARCHIVER", + "Unblock_user": "Débloquer l'utilisateur", + "Unfavorite": "Supprimer des favoris", + "Unfollowed_thread": "Ne plus suivre ce fil", + "Unmute": "Rendre la parole", + "unmuted": "rendu la parole", + "Unpin": "Détacher", + "unread_messages": "non lu", + "Unread": "Non lu", + "Unread_on_top": "Non lu en haut", + "Unstar": "Enlever des favoris", + "Updating": "Mise à jour...", + "Uploading": "Envoyer", + "Upload_file_question_mark": "Téléverser un fichier ?", + "User": "Utilisateur", + "Users": "Utilisateurs", + "User_added_by": "Utilisateur {{userAdded}} ajouté par {{userBy}}", + "User_Info": "Info d'utilisateur", + "User_has_been_key": "L'utilisateur a été {{key}}", + "User_is_no_longer_role_by_": "{{user}} n'est plus {{role}} par {{userBy}}", + "User_muted_by": "L'utilisateur {{userMuted}} a été rendu muet par {{userBy}}", + "User_removed_by": "Utilisateur {{userRemoved}} supprimé par {{userBy}}", + "User_sent_an_attachment": "{{user}} a envoyé une pièce jointe", + "User_unmuted_by": "L'utilisateur {{userBy}} a rendu la parole à {{userUnmuted}}", + "User_was_set_role_by_": "{{user}} a été défini {{role}} par {{userBy}}", + "Username_is_empty": "Nom d'utilisateur est vide", + "Username": "Nom d'utilisateur", + "Username_or_email": "Nom d'utilisateur ou e-mail", + "Uses_server_configuration": "Utilise la configuration du serveur", + "Validating": "Validation", + "Registration_Succeeded": "Inscription réussie !", + "Verify": "Vérifier", + "Verify_email_title": "Inscription réussie !", + "Verify_email_desc": "Nous vous avons envoyé un e-mail pour confirmer votre inscription. Si vous ne recevez pas d'e-mail sous peu, veuillez revenir et réessayer.", + "Verify_your_email_for_the_code_we_sent": "Vérifiez votre e-mail pour le code que nous avons envoyé", + "Video_call": "Appel vidéo", + "View_Original": "Voir l'original", + "Voice_call": "Appel vocal", + "Waiting_for_network": "En attente du réseau...", + "Websocket_disabled": "Le Websocket est désactivé pour ce serveur.\n{{contact}}", + "Welcome": "Bienvenue", + "What_are_you_doing_right_now": "Que fais-tu en ce moment ?", + "Whats_your_2fa": "Quel est votre code 2FA ?", + "Without_Servers": "Sans serveurs", + "Workspaces": "Espaces de travail", + "Would_you_like_to_return_the_inquiry": "Souhaitez-vous retourner la demande ?", + "Write_External_Permission_Message": "Rocket.Chat a besoin d'accéder à votre galerie pour que vous puissiez enregistrer des images.", + "Write_External_Permission": "Autorisation de la galerie", + "Yes": "Oui", + "Yes_action_it": "Oui, {{action}} le !", + "Yesterday": "Hier", + "You_are_in_preview_mode": "Vous êtes en mode aperçu", + "You_are_offline": "Vous êtes hors ligne", + "You_can_search_using_RegExp_eg": "Vous pouvez utiliser RegExp., par exemple `/^texte$/i`", + "You_colon": "Vous: ", + "you_were_mentioned": "vous avez été mentionné", + "You_were_removed_from_channel": "Vous avez été retiré de {{channel}}", + "you": "vous", + "You": "Vous", + "Logged_out_by_server": "Vous avez été déconnecté du serveur. Veuillez vous reconnecter.", + "You_need_to_access_at_least_one_RocketChat_server_to_share_something": "Vous devez accéder à au moins un serveur Rocket.Chat pour partager quelque chose.", + "You_need_to_verifiy_your_email_address_to_get_notications": "Vous devez vérifier votre adresse e-mail pour recevoir des notifications", + "Your_certificate": "Votre certificat", + "Your_invite_link_will_expire_after__usesLeft__uses": "Votre lien d'invitation expirera après {{usesLeft}} utilisations.", + "Your_invite_link_will_expire_on__date__or_after__usesLeft__uses": "Votre lien d'invitation expirera le {{date}} ou après {{usesLeft}} utilisations.", + "Your_invite_link_will_expire_on__date__": "Votre lien d'invitation expirera le {{date}}.", + "Your_invite_link_will_never_expire": "Votre lien d'invitation n'expirera jamais.", + "Your_workspace": "Votre espace de travail", + "Your_password_is": "Votre mot de passe est", + "Version_no": "Version : {{version}}", + "You_will_not_be_able_to_recover_this_message": "Vous ne pourrez pas récupérer ce message !", + "You_will_unset_a_certificate_for_this_server": "Vous allez supprimer un certificat pour ce serveur", + "Change_Language": "Changer la langue", + "Crash_report_disclaimer": "Nous ne suivons jamais le contenu de vos chats. Le rapport d'incident et les évènements d'analyse ne contiennent que des informations pertinentes pour nous afin d'identifier et de résoudre les problèmes.", + "Type_message": "Tapez le message", + "Room_search": "Recherche de salons", + "Room_selection": "Sélection de salon 1...9", + "Next_room": "Salon suivant", + "Previous_room": "Salon précédent", + "New_room": "Nouveau salon", + "Upload_room": "Envoyer dans un salon", + "Search_messages": "Rechercher des messages", + "Scroll_messages": "Faire défiler les messages", + "Reply_latest": "Répondre au dernier", + "Reply_in_Thread": "Répondre dans le fil", + "Server_selection": "Sélection du serveur", + "Server_selection_numbers": "Sélection du serveur 1...9", + "Add_server": "Ajouter un serveur", + "New_line": "Nouvelle ligne", + "You_will_be_logged_out_of_this_application": "Vous serez déconnecté de cette application.", + "Clear": "Effacer", + "This_will_clear_all_your_offline_data": "Cela effacera toutes vos données hors ligne.", + "This_will_remove_all_data_from_this_server": "Cela supprimera toutes les données de ce serveur.", + "Mark_unread": "Marquer comme non lu", + "Wait_activation_warning": "Avant de pouvoir vous connecter, votre compte doit être activé manuellement par un administrateur.", + "Screen_lock": "Verrouillage d'écran", + "Local_authentication_biometry_title": "Authentifier", + "Local_authentication_biometry_fallback": "Utiliser le code d'accès", + "Local_authentication_unlock_option": "Déverrouiller avec le code d'accès", + "Local_authentication_change_passcode": "Changer le code d'accès", + "Local_authentication_info": "Remarque : si vous oubliez le code d'accès, vous devrez supprimer et réinstaller l'application.", + "Local_authentication_facial_recognition": "reconnaissance faciale", + "Local_authentication_fingerprint": "empreinte digitale", + "Local_authentication_unlock_with_label": "Déverrouiller avec {{label}}", + "Local_authentication_auto_lock_60": "Après 1 minute", + "Local_authentication_auto_lock_300": "Après 5 minutes", + "Local_authentication_auto_lock_900": "Après 15 minutes", + "Local_authentication_auto_lock_1800": "Après 30 minutes", + "Local_authentication_auto_lock_3600": "Après 1 heure", + "Passcode_enter_title": "Entrez votre code d'accès", + "Passcode_choose_title": "Choisissez votre nouveau code d'accès", + "Passcode_choose_confirm_title": "Confirmez votre nouveau code d'accès", + "Passcode_choose_error": "Les codes d'accès ne correspondent pas. Réessayer.", + "Passcode_choose_force_set": "Code d'accès requis par l'administrateur", + "Passcode_app_locked_title": "App verrouillée", + "Passcode_app_locked_subtitle": "Réessayez dans {{timeLeft}} secondes", + "After_seconds_set_by_admin": "Après {{seconds}} secondes (défini par l'administrateur)", + "Dont_activate": "Ne pas activer maintenant", + "Queued_chats": "Discussions en file d'attente", + "Queue_is_empty": "La file d'attente est vide", + "Logout_from_other_logged_in_locations": "Déconnexion des autres emplacements connectés", + "You_will_be_logged_out_from_other_locations": "Vous serez déconnecté des autres emplacements.", + "Logged_out_of_other_clients_successfully": "Déconnexion réussie des autres clients", + "Logout_failed": "Echec de la déconnexion !", + "Log_analytics_events": "Journal des événements d'analyse", + "E2E_encryption_change_password_title": "Changer le mot de passe de cryptage", + "E2E_encryption_change_password_description": "Vous pouvez désormais créer des groupes privés et des messages directs chiffrés. Vous pouvez également modifier les groupes privés ou DM existants pour les crypter.\nIl s'agit du chiffrement de bout en bout, la clé permettant de coder/décoder vos messages ne sera pas enregistrée sur le serveur. Pour cette raison, vous devez stocker ce mot de passe à un endroit sûr. Vous devrez le saisir sur les autres appareils sur lesquels vous souhaitez utiliser le cryptage E2E.", + "E2E_encryption_change_password_error": "Erreur lors de la modification du mot de passe de la clé E2E", + "E2E_encryption_change_password_success": "Le mot de passe de la clé E2E a été changé avec succès !", + "E2E_encryption_change_password_message": "Assurez-vous de l'avoir enregistré soigneusement ailleurs.", + "E2E_encryption_change_password_confirmation": "Oui, changez-le", + "E2E_encryption_reset_title": "Réinitialiser la clé E2E", + "E2E_encryption_reset_description": "Cette option supprimera la clé E2E actuelle et vous déconnectera.\nLorsque vous vous reconnecterez, Rocket.Chat générera une nouvelle clé et restaurera votre accès aux salons cryptés qui a un ou plusieurs membres en ligne.\nEn raison de la nature du cryptage E2E, Rocket.Chat ne pourra pas restaurer l'accès à un salon crypté qui n'a aucun membre en ligne.", + "E2E_encryption_reset_button": "Réinitialiser la clé E2E", + "E2E_encryption_reset_error": "Erreur lors de la réinitialisation de la clé E2E !", + "E2E_encryption_reset_message": "Vous allez être déconnecté.", + "E2E_encryption_reset_confirmation": "Oui, réinitialisez-le", + "Following": "Suivant", + "Threads_displaying_all": "Tout afficher", + "Threads_displaying_following": "Affichage suivant", + "Threads_displaying_unread": "Affichage non lu", + "No_threads": "Il n'y a pas de fils", + "No_threads_following": "Vous ne suivez aucun fil de discussion", + "No_threads_unread": "Il n'y a pas de fils non lus", + "Messagebox_Send_to_channel": "Envoyer au canal", + "Leader": "Leader", + "Moderator": "Modérateur", + "Owner": "Propriétaire", + "Remove_from_room": "Retirer du salon", + "Ignore": "Ignorer", + "Unignore": "Ne pas ignorer", + "User_has_been_ignored": "L'utilisateur a été ignoré", + "User_has_been_unignored": "L'utilisateur n'est plus ignoré", + "User_has_been_removed_from_s": "L'utilisateur a été retiré de {{s}}", + "User__username__is_now_a_leader_of__room_name_": "L'utilisateur {{username}} est désormais un leader de {{room_name}}", + "User__username__is_now_a_moderator_of__room_name_": "L'utilisateur {{username}} est désormais un modérateur de {{room_name}}", + "User__username__is_now_a_owner_of__room_name_": "L'utilisateur {{username}} est désormais un propriétaire de {{room_name}}", + "User__username__removed_from__room_name__leaders": "L'utilisateur {{username}} a été supprimé des leaders de {{room_name}}", + "User__username__removed_from__room_name__moderators": "L'utilisateur {{username}} a été supprimé des modérateurs de {{room_name}}", + "User__username__removed_from__room_name__owners": "L'utilisateur {{username}} a été supprimé des propriétaires de {{room_name}}", + "The_user_will_be_removed_from_s": "L'utilisateur sera supprimé de {{s}}", + "Yes_remove_user": "Oui, supprimez l'utilisateur !", + "Direct_message": "Message direct", + "Message_Ignored": "Message ignoré. Touchez pour l'afficher.", + "Enter_workspace_URL": "Entrez l'URL de l'espace de travail", + "Workspace_URL_Example": "Ex. votre-société.rocket.chat", + "This_room_encryption_has_been_enabled_by__username_": "Le cryptage de ce salon a été activé par {{username}}", + "This_room_encryption_has_been_disabled_by__username_": "Le cryptage de ce salon a été désactivé par {{username}}", + "Teams": "Equipes", + "No_team_channels_found": "Aucun canal trouvé", + "Team_not_found": "Equipe non trouvée", + "Create_Team": "Créer une équipe", + "Team_Name": "Nom de l'équipe", + "Private_Team": "Equipe privée", + "Read_Only_Team": "Equipe en lecture seule", + "Broadcast_Team": "Equipe de diffusion", + "creating_team": "création de l'équipe", + "team-name-already-exists": "Une équipe portant ce nom existe déjà", + "Add_Channel_to_Team": "Ajouter un canal à l'équipe", + "Left_The_Team_Successfully": "A quitté l'équipe avec succès", + "Create_New": "Créer un nouveau", + "Add_Existing": "Ajouter existant", + "Add_Existing_Channel": "Ajouter un canal existant", + "Remove_from_Team": "Retirer de l'équipe", + "Auto-join": "Rejoindre automatiquement", + "Remove_Team_Room_Warning": "Souhaitez-vous supprimer ce canal de l'équipe ? Le canal sera déplacé vers l'espace de travail", + "Confirmation": "Confirmation", + "invalid-room": "Salon invalide", + "You_are_leaving_the_team": "Vous quittez l'équipe '{{team}}'", + "Leave_Team": "Quitter l'équipe", + "Select_Team": "Sélectionnez l'équipe", + "Select_Team_Channels": "Sélectionnez les canaux de l'équipe que vous souhaitez quitter.", + "Cannot_leave": "Ne peut pas partir", + "Cannot_remove": "Impossible d'enlever", + "Cannot_delete": "Impossible de supprimer", + "Last_owner_team_room": "Vous êtes le dernier propriétaire de ce canal. Une fois que vous quittez l'équipe, le canal sera conservé au sein de l'équipe mais vous le gérerez de l'extérieur.", + "last-owner-can-not-be-removed": "Le dernier propriétaire ne peut pas être supprimé", + "Remove_User_Teams": "Sélectionnez les canaux dont vous souhaitez supprimer l'utilisateur.", + "Delete_Team": "Supprimer l'équipe", + "Select_channels_to_delete": "Ceci ne peut pas être annulé. Une fois que vous supprimez une équipe, tout le contenu et la configuration du chat seront supprimés.\n\nSélectionnez les canaux que vous souhaitez supprimer. Ceux que vous décidez de conserver seront disponible dans votre espace de travail. Notez que les canaux publics seront toujours publics et visibles par tous.", + "You_are_deleting_the_team": "Vous supprimez cette équipe.", + "Removing_user_from_this_team": "Vous supprimez {{user}} de cette équipe", + "Remove_User_Team_Channels": "Sélectionnez les canaux dont vous souhaitez supprimer l'utilisateur.", + "Remove_Member": "Supprimer un membre", + "leaving_team": "quitter l'équipe", + "removing_team": "retirer de l'équipe", + "moving_channel_to_team": "transfert de canal à l'équipe", + "deleting_team": "suppression de l'équipe", + "member-does-not-exist": "Le membre n'existe pas", + "Convert": "Convertir", + "Convert_to_Team": "Convertir en équipe", + "Convert_to_Team_Warning": "Vous convertissez ce canal en équipe. Tous les membres seront conservés.", + "Move_to_Team": "Déplacer vers l'équipe", + "Move_Channel_Paragraph": "Le déplacement d'un canal dans une équipe signifie que ce canal sera ajouté dans le contexte d'équipe. Cependant, tous les membres du canal, qui ne sont pas membres de l'équipe respective, auront toujours accès à ce canal, mais ne seront pas ajoutés comme membres de l'équipe.\n\nLa gestion de tout le canal sera toujours assurée par les propriétaires de ce canal.\n\nLes membres de l'équipe et même les propriétaires de l'équipe, s'ils ne sont pas membres de ce canal, ne peuvent pas avoir accès au contenu du canal.\n\nVeuillez noter que le propriétaire de l'équipe pourra supprimer des membres du canal.", + "Move_to_Team_Warning": "Après avoir lu les instructions précédentes sur ce comportement, voulez-vous toujours déplacer ce canal vers l'équipe sélectionnée ?", + "Load_More": "Charger plus", + "Load_Newer": "Charger plus récent", + "Load_Older": "Charger plus ancien", + "Left_The_Room_Successfully": "A quitté le salon avec succès", + "Deleted_The_Team_Successfully": "Equipe supprimée avec succès", + "Deleted_The_Room_Successfully": "Salon supprimé avec succès", + "Convert_to_Channel": "Convertir en canal", + "Converting_Team_To_Channel": "Conversion de l’équipe en canal", + "Select_Team_Channels_To_Delete": "Sélectionnez les canaux de l'équipe que vous souhaitez supprimer, ceux que vous ne sélectionnez pas, seront déplacés vers l'espace de travail. \n\n\nNotez que les canaux publics seront publics et visibles par tous.", + "You_are_converting_the_team": "Vous convertissez cette équipe en canal" +} diff --git a/app/i18n/locales/it.json b/app/i18n/locales/it.json index e8618f28e6..87447244c3 100644 --- a/app/i18n/locales/it.json +++ b/app/i18n/locales/it.json @@ -1,702 +1,702 @@ { - "1_person_reacted": "1 persona ha reagito", - "1_user": "1 utente", - "error-action-not-allowed": "{{action}} non autorizzata", - "error-application-not-found": "Applicazione non trovata", - "error-archived-duplicate-name": "Esiste già un canale archiviato con nome {{room_name}}", - "error-avatar-invalid-url": "URL avatar non valido: {{url}}", - "error-avatar-url-handling": "Errore nella gestione dell'impostazione avatar dall'URL ({{url}}) per {{username}}", - "error-cant-invite-for-direct-room": "Impossibile invitare l'utente alle stanze dirette", - "error-could-not-change-email": "Impossibile cambiare l'indirizzo e-mail", - "error-could-not-change-name": "Impossibile cambiare nome", - "error-could-not-change-username": "Impossibile cambiare username", - "error-could-not-change-status": "Impossibile cambiare lo stato", - "error-delete-protected-role": "Impossibile eliminare un ruolo protetto", - "error-department-not-found": "Reparto non trovato", - "error-direct-message-file-upload-not-allowed": "La condivisione di file non è autorizzata nei messaggi diretti", - "error-duplicate-channel-name": "Esiste già un canale con nome {{channel_name}}", - "error-email-domain-blacklisted": "Il dominio e-mail è nella lista nera", - "error-email-send-failed": "Errore nel tentativo di invio e-mail: {{message}}", - "error-save-image": "Errore nel salvataggio dell'immagine", - "error-save-video": "Errore nel salvataggio del video", - "error-field-unavailable": "{{field}} è già in uso :(", - "error-file-too-large": "File troppo grande", - "error-importer-not-defined": "L'importatore non è stato definito correttamente: classe Import mancante.", - "error-input-is-not-a-valid-field": "{{input}} non è valido come {{field}}", - "error-invalid-actionlink": "Link azione non valido", - "error-invalid-arguments": "Parametri non validi", - "error-invalid-asset": "Risorsa non valida", - "error-invalid-channel": "Canale non valido.", - "error-invalid-channel-start-with-chars": "Canale non valido. Inizia con @ o #", - "error-invalid-custom-field": "Campo personalizzato non valido", - "error-invalid-custom-field-name": "Nome campo personalizzato non valido. Usa solo lettere, numeri, trattini e underscore.", - "error-invalid-date": "Data fornita non valida.", - "error-invalid-description": "Descrizione non valida", - "error-invalid-domain": "Dominio non valido", - "error-invalid-email": "E-mail {{email}} non valida", - "error-invalid-email-address": "Indirizzo e-mail non valido", - "error-invalid-file-height": "Altezza del file non valida", - "error-invalid-file-type": "Tipo di file non valido", - "error-invalid-file-width": "Larghezza del file non valida", - "error-invalid-from-address": "Hai informato un indirizzo FROM non valido.", - "error-invalid-integration": "Integrazione non valida", - "error-invalid-message": "Messaggio non valido", - "error-invalid-method": "Metodo o funzione non valida", - "error-invalid-name": "Nome non corretto", - "error-invalid-password": "Password non corretta", - "error-invalid-redirectUri": "redirectUri non valido", - "error-invalid-role": "Ruolo non valido", - "error-invalid-room": "Stanza non valida", - "error-invalid-room-name": "{{room_name}} non è un nome di stanza valido", - "error-invalid-room-type": "{{type}} non è un tipo di stanza valido", - "error-invalid-settings": "Impostazioni fornite non valide", - "error-invalid-subscription": "Iscrizione non valida", - "error-invalid-token": "Token non valido", - "error-invalid-triggerWords": "triggerWords non valide", - "error-invalid-urls": "URL non validi", - "error-invalid-user": "Utente non valido", - "error-invalid-username": "Nome utente non valido", - "error-invalid-webhook-response": "L'URL del webhook ha risposto con uno stato diverso da 200", - "error-message-deleting-blocked": "Cancellazione di messaggi bloccata", - "error-message-editing-blocked": "Modifica di messaggi bloccata", - "error-message-size-exceeded": "La dimensione del messaggio supera Message_MaxAllowedSize", - "error-missing-unsubscribe-link": "Devi fornire il link [unsubscribe].", - "error-no-tokens-for-this-user": "Non ci sono token per questo utente", - "error-not-allowed": "Non permesso", - "error-not-authorized": "Non autorizzato", - "error-push-disabled": "Push è disabilitato", - "error-remove-last-owner": "Questo è l'ultimo proprietario rimasto. Imposta un nuovo proprietario prima di rimuoverlo.", - "error-role-in-use": "Impossibile eliminare il ruolo perchè ancora in uso", - "error-role-name-required": "Il nome del ruolo è obbligatorio", - "error-the-field-is-required": "Il campo {{field}} è obbligatorio.", - "error-too-many-requests": "Errore, troppe richieste effettuate. Rallenta. Devi attendere {{seconds}} secondi prima di riprovare.", - "error-user-is-not-activated": "L'utente non è attivato", - "error-user-has-no-roles": "L'utente non ha ruoli", - "error-user-limit-exceeded": "Il numero di utenti che stai invitando in #channel_name supera il limite imposto dall'amministratore", - "error-user-not-in-room": "L'utente non è in questa stanza", - "error-user-registration-custom-field": "error-user-registration-custom-field", - "error-user-registration-disabled": "Registrazione utente disabilitata", - "error-user-registration-secret": "Registrazione utente permessa solo via URL segreto", - "error-you-are-last-owner": "Sei l'ultimo proprietario rimasto. Imposta un nuovo proprietario prima di lasciare la stanza.", - "Actions": "Azioni", - "activity": "attività", - "Activity": "Attività", - "Add_Reaction": "Aggiungi reazione", - "Add_Server": "Aggiungi server", - "Add_users": "Aggiungi utenti", - "Admin_Panel": "Amministrazione", - "Agent": "Agente", - "Alert": "Avviso", - "alert": "avviso", - "alerts": "avvisi", - "All_users_in_the_channel_can_write_new_messages": "Tutti gli utenti nel canale possono scrivere messaggi", - "A_meaningful_name_for_the_discussion_room": "Un nome significativo per il canale di discussione", - "All": "Tutti", - "All_Messages": "Tutti i messaggi", - "Allow_Reactions": "Permetti reazioni", - "Alphabetical": "Alfabetico", - "and_more": "e altro", - "and": "e", - "announcement": "annuncio", - "Announcement": "Annuncio", - "Apply_Your_Certificate": "Applica il tuo certificato", - "ARCHIVE": "ARCHIVIO", - "archive": "archivio", - "are_typing": "stanno scrivendo", - "Are_you_sure_question_mark": "Sei sicuro?", - "Are_you_sure_you_want_to_leave_the_room": "Sei sicuro di voler lasciare la stanza {{room}}?", - "Audio": "Audio", - "Authenticating": "Autenticazione", - "Automatic": "Automatico", - "Auto_Translate": "Traduzione automatica", - "Avatar_changed_successfully": "Avatar aggiornato correttamente!", - "Avatar_Url": "URL avatar", - "Away": "Assente", - "Back": "Indietro", - "Black": "Nero", - "Block_user": "Blocca utente", - "Browser": "Browser", - "Broadcast_channel_Description": "Solo gli utenti autorizzati possono scrivere messaggi, ma gli altri utenti saranno in grado di rispondere", - "Broadcast_Channel": "Canale broadcast", - "Busy": "Occupato", - "By_proceeding_you_are_agreeing": "Procedendo accetti i nostri", - "Cancel_editing": "Annulla modifica", - "Cancel_recording": "Annulla registrazione", - "Cancel": "Annulla", - "changing_avatar": "cambio avatar", - "creating_channel": "creo canale", - "creating_invite": "creo invito", - "Channel_Name": "Nome canale", - "Channels": "Canali", - "Chats": "Chat", - "Call_already_ended": "Chiamata già terminata!", - "Clear_cookies_alert": "Vuoi cancellare tutti i cookie?", - "Clear_cookies_desc": "Questo cancellerà tutti i coockie di login, permettendoti di accedere con altri account.", - "Clear_cookies_yes": "Si, cancella i cookie", - "Clear_cookies_no": "No, mantieni i cookie", - "Click_to_join": "Clicca per unirti!", - "Close": "Chiudi", - "Close_emoji_selector": "Chiudi selettore emoji", - "Closing_chat": "Chiudendo la chat", - "Change_language_loading": "Cambiando la lingua.", - "Chat_closed_by_agent": "Chat chiusa dall'agente", - "Choose": "Scegli", - "Choose_from_library": "Scegli dalla libreria", - "Choose_file": "Scegli file", - "Choose_where_you_want_links_be_opened": "Scegli dove vuoi che vengano aperti i link", - "Code": "Codice", - "Code_or_password_invalid": "Codice o password non validi", - "Collaborative": "Collaborativo", - "Confirm": "Conferma", - "Connect": "Connetti", - "Connected": "Connesso", - "connecting_server": "connessione al server", - "Connecting": "Connessione...", - "Contact_us": "Contattaci", - "Contact_your_server_admin": "Contatta l'amministratore.", - "Continue_with": "Continua con", - "Copied_to_clipboard": "Copiato negli appunti!", - "Copy": "Copia", - "Conversation": "Conversazione", - "Permalink": "Permalink", - "Certificate_password": "Password certificato", - "Clear_cache": "Cancella la cache locale", - "Clear_cache_loading": "Cancellando la cache.", - "Whats_the_password_for_your_certificate": "Qual'è la password del tuo certificato?", - "Create_account": "Crea un account", - "Create_Channel": "Crea canale", - "Create_Direct_Messages": "Crea Messaggi Privati", - "Create_Discussion": "Crea una Discussione", - "Created_snippet": "Snippet creato", - "Create_a_new_workspace": "Crea un nuovo workspace", - "Create": "Crea", - "Custom_Status": "Stato personalizzato", - "Dark": "Scuro", - "Dark_level": "Contrasto", - "Default": "Predefinito", - "Default_browser": "Browser predefinito", - "Delete_Room_Warning": "Eliminare una stanza cancellerà tutti i messaggi in essa contenuti. Questa azione non può essere annullata.", - "Department": "Dipartimento", - "delete": "elimina", - "Delete": "Elimina", - "DELETE": "ELIMINA", - "deleting_room": "cancellazione stanza", - "description": "descrizione", - "Description": "Descrizione", - "Desktop_Options": "Opzioni Desktop", - "Desktop_Notifications": "Notifiche Desktop", - "Desktop_Alert_info": "Queste notifiche vengono inviate sul client desktop", - "Directory": "Rubrica", - "Direct_Messages": "Messaggi diretti", - "Disable_notifications": "Disabilita notifiche", - "Discussions": "Discussioni", - "Discussion_Desc": "Aiuta a mantenere una panoramica di ciò che sta succedendo! Creando una discussione verrà creato un sotto-canale di quello selezionato ed entrambi saranno collegati", - "Discussion_name": "Nome della discussione", - "Done": "Fatto", - "Dont_Have_An_Account": "Non hai un account?", - "Do_you_have_an_account": "Hai un account?", - "Do_you_have_a_certificate": "Hai un certificato?", - "Do_you_really_want_to_key_this_room_question_mark": "Sei sicuro di voler {{key}} questa stanza?", - "E2E_Encryption": "Crittografia E2E", - "E2E_How_It_Works_info1": "Ora puoi creare gruppi e messaggi privati crittografati. Puoi anche crittografare quelli già esistenti.", - "E2E_How_It_Works_info2": "Questa è *crittografia end-to-end*, quindi la chiave per cifrare/decifrare i messaggi non verrà salvata sul server. Per questo motivo *devi salvare questa password in un luogo sicuro* dove poterla recuperare in seguito qualora necessario.", - "E2E_How_It_Works_info3": "Procedendo verrà generata automaticamente una password E2E.", - "E2E_How_It_Works_info4": "Puoi impostare una nuova password per la chiave di cifratura in qualsiasi momento da uno dei browser dove hai inserito la password E2E esistente.", - "edit": "modifica", - "edited": "modificato", - "Edit": "Modifica", - "Edit_Status": "Modifica Stato", - "Edit_Invite": "Modifica invito", - "End_to_end_encrypted_room": "Stanza crittografata end to end", - "end_to_end_encryption": "Crittografia end to end", - "Email_Notification_Mode_All": "Ogni Menzione/Messaggio Privato", - "Email_Notification_Mode_Disabled": "Disabilitato", - "Email_or_password_field_is_empty": "Il campo e-mail o password sono vuoti", - "Email": "E-mail", - "email": "e-mail", - "Empty_title": "Titolo vuoto", - "Enable_Auto_Translate": "Abilita traduzione automatica", - "Enable_notifications": "Abilita notifiche", - "Encrypted": "Crittografato", - "Encrypted_message": "Messaggio crittografato", - "Enter_Your_E2E_Password": "Inserisci la tua password E2E", - "Enter_Your_Encryption_Password_desc1": "Potrai così accedere ai tuoi gruppi privati e messaggi privati crittografati.", - "Enter_Your_Encryption_Password_desc2": "Devi inserire la password per cifrare/decifrare i messaggi ovunque usi la chat.", - "Encryption_error_title": "La tua password di cifratura sembra errata", - "Encryption_error_desc": "Non è stato possibile importare la tua chiave di cifratura.", - "Everyone_can_access_this_channel": "Tutti hanno accesso a questo canale", - "Error_uploading": "Errore nel caricamento di", - "Expiration_Days": "Scadenza (giorni)", - "Favorite": "Preferito", - "Favorites": "Preferiti", - "Files": "File", - "File_description": "Descrizione file", - "File_name": "Nome file", - "Finish_recording": "Termina registrazione", - "Following_thread": "Thread seguito", - "For_your_security_you_must_enter_your_current_password_to_continue": "Per garantire la sicurezza del tuo account, inserisci la password per continuare.", - "Forgot_password_If_this_email_is_registered": "Se questa e-mail è registrata, manderemo istruzioni su come resettare la tua password. Se non ricevi nulla, torna qui e riprova di nuovo.", - "Forgot_password": "Password dimenticata", - "Forgot_Password": "Password dimenticata", - "Forward": "Inoltra", - "Forward_Chat": "Inoltra Chat", - "Forward_to_department": "Inoltra a dipartimento", - "Forward_to_user": "Inoltra ad udente", - "Full_table": "Clicca per la tabella completa", - "Generate_New_Link": "Genera nuovo link", - "Group_by_favorites": "Raggruppa per preferiti", - "Group_by_type": "Raggruppa per tipo", - "Hide": "Nascondi", - "Has_joined_the_channel": "si è unito al canale", - "Has_joined_the_conversation": "si è unito alla conversazione", - "Has_left_the_channel": "ha lasciato il canale", - "Hide_System_Messages": "Nascondi messaggi di sistema", - "Hide_type_messages": "Nascondi messaggi di \"{{type}}\"", - "How_It_Works": "Come funziona", - "Message_HideType_uj": "Ingresso Utente", - "Message_HideType_ul": "Uscita Utente", - "Message_HideType_ru": "Rimozione Utente", - "Message_HideType_au": "Aggiunta Utente", - "Message_HideType_mute_unmute": "Microfono Utente attivato / disattivato", - "Message_HideType_r": "Nome Stanza cambiato", - "Message_HideType_ut": "Ingresso Utente in Conversazione", - "Message_HideType_wm": "Benvenuto", - "Message_HideType_rm": "Rimozione Messaggio", - "Message_HideType_subscription_role_added": "Creazione ruolo", - "Message_HideType_subscription_role_removed": "Rimozione ruolo", - "Message_HideType_room_archived": "Stanza archiviata", - "Message_HideType_room_unarchived": "Stanza ripristinata dall'archivio", - "I_Saved_My_E2E_Password": "Ho salvato la mia Password E2E", - "IP": "Indirizzo IP", - "In_app": "In-app", - "In_App_And_Desktop": "In-app e Desktop", - "In_App_and_Desktop_Alert_info": "Mostra una notifica in cima allo schermo quando l'app è aperta, e mostra una notifica sul desktop", - "Invisible": "Invisibile", - "Invite": "Invita", - "is_a_valid_RocketChat_instance": "è un'istanza di Rocket.Chat valida", - "is_not_a_valid_RocketChat_instance": "non è una valida istanza di Rocket.Chat", - "is_typing": "sta scrivendo", - "Invalid_or_expired_invite_token": "Token di invito non valido o scaduto", - "Invalid_server_version": "Il server a cui stai cercando di connetterti sta utilizzando una versione non più supportata dall'app: {{currentVersion}}.\n\nVersione minima richiesta: {{minVersion}}", - "Invite_Link": "Link di invito", - "Invite_users": "Invita utenti", - "Join": "Entra", - "Join_Code": "Codice d'accesso", - "Insert_Join_Code": "Inserisci il codice d'accesso", - "Join_our_open_workspace": "Unisciti al nostro workspace", - "Join_your_workspace": "Unisciti al tuo workspace", - "Just_invited_people_can_access_this_channel": "Solo le persone invitate possono accedere a questo canale", - "Language": "Lingua", - "last_message": "ultimo messaggio", - "Leave_channel": "Abbandona canale", - "leaving_room": "abbandonando stanza", - "Leave": "Lasciare il canale", - "leave": "abbandona", - "Legal": "Informazioni", - "Light": "Chiaro", - "License": "Licenza", - "Livechat_edit": "Modifica Livechat", - "Login": "Accedi", - "Login_error": "Le tue credenziali sono state rifiutate! Prova di nuovo.", - "Login_with": "Accedi con", - "Logging_out": "Disconnettendo.", - "Logout": "Disconnetti", - "Max_number_of_uses": "Max numero di utilizzi", - "Max_number_of_users_allowed_is_number": "Il numero massimo di utenti ammessi è {{maxUsers}}", - "members": "membri", - "Members": "Membri", - "Mentioned_Messages": "Messaggi menzionati", - "mentioned": "menzionato", - "Mentions": "Menzioni", - "Message_accessibility": "Messaggio da {{user}} alle {{time}}: {{message}}", - "Message_actions": "Azioni messaggio", - "Message_pinned": "Messaggio appuntato", - "Message_removed": "Messaggio rimosso", - "Message_starred": "Messaggio importante", - "Message_unstarred": "Messaggio non importante", - "message": "messaggio", - "messages": "messaggi", - "Message": "Messaggio", - "Messages": "Messaggi", - "Message_Reported": "Messaggio segnalato", - "Microphone_Permission_Message": "Rocket.Chat richiede l'accesso al microfono per inviare messaggi audio.", - "Microphone_Permission": "Permesso microfono", - "Mute": "Silenzia", - "muted": "silenziato", - "My_servers": "I miei server", - "N_people_reacted": "{{n}} persone hanno reagito", - "N_users": "{{n}} utenti", - "name": "nome", - "Name": "Nome", - "Navigation_history": "Cronologia di navigazione", - "Never": "Mai", - "New_Message": "Nuovo messaggio", - "New_Password": "Nuova password", - "New_Server": "Nuovo server", - "Next": "Successivo", - "No_files": "Nessun file", - "No_limit": "Nessun limite", - "No_mentioned_messages": "Nessun messaggio menzionato", - "No_pinned_messages": "Nessun messaggio attaccato", - "No_results_found": "Nessun risultato", - "No_starred_messages": "Nessun messaggio preferito", - "No_thread_messages": "Nessun messaggio thread", - "No_label_provided": "Nessun {{label}} fornito.", - "No_Message": "Nessun messaggio", - "No_messages_yet": "Non ci sono ancora messaggi", - "No_Reactions": "Nessuna reazione", - "No_Read_Receipts": "Nessuna conferma di lettura", - "Not_logged": "Non loggato", - "Not_RC_Server": "Questo non è un server di Rocket.Chat.\n{{contact}}", - "Nothing": "Niente", - "Nothing_to_save": "Niente da salvare!", - "Notify_active_in_this_room": "Notifica solo gli utenti attivi in questa stanza", - "Notify_all_in_this_room": "Notifica tutti gli utenti in questa stanza", - "Notifications": "Notifiche", - "Notification_Duration": "Durata notifiche", - "Notification_Preferences": "Impostazioni notifiche", - "No_available_agents_to_transfer": "Nessun agente disponibile a cui trasferire", - "Offline": "Offline", - "Oops": "Oops!", - "Omnichannel": "Omnichannel", - "Open_Livechats": "Chat in corso", - "Omnichannel_enable_alert": "Non sei ancora su Onmichannel. Vuoi attivarlo?", - "Onboarding_description": "Un workspace è lo spazio dove il tuo team o la tua organizzazione possono collaborare. Chiedi l'indirizzo all'amministratore del tuo workspace oppure creane uno per il tuo team.", - "Onboarding_join_workspace": "Unisciti", - "Onboarding_subtitle": "Oltre la collaborazione di gruppo", - "Onboarding_title": "Benvenuto in Rocket.Chat", - "Onboarding_join_open_description": "Unisciti al nostro workspace per parlare con il team e la community di Rocket.Chat.", - "Onboarding_agree_terms": "Procedendo, accetti Rocket.Chat", - "Onboarding_less_options": "Meno opzioni", - "Onboarding_more_options": "Più opzioni", - "Online": "Online", - "Only_authorized_users_can_write_new_messages": "Solo gli utenti autorizzati possono scrivere nuovi messaggi", - "Open_emoji_selector": "Apri selettore emoji", - "Open_Source_Communication": "Comunicazione open-source", - "Open_your_authentication_app_and_enter_the_code": "Apri l'app di autenticazione e inserisci il codice.", - "OR": "O", - "OS": "SO", - "Overwrites_the_server_configuration_and_use_room_config": "Sovrascrive la configurazione del server in favore di quella della stanza", - "Password": "Password", - "Parent_channel_or_group": "Gruppo o canale originario", - "Permalink_copied_to_clipboard": "Permalink copiato negli appunti!", - "Phone": "Telefono", - "Pin": "Appunta", - "Pinned_Messages": "Messaggi appuntati", - "pinned": "appuntati", - "Pinned": "Appuntati", - "Please_add_a_comment": "Per favore, aggiungi un commento", - "Please_enter_your_password": "Per favore, inserisci la tua password", - "Please_wait": "Si prega di attendere.", - "Preferences": "Impostazioni", - "Preferences_saved": "Impostazioni salvate!", - "Privacy_Policy": " Privacy Policy", - "Private_Channel": "Canale privato", - "Private": "Privato", - "Processing": "Elaborazione...", - "Profile_saved_successfully": "Profilo salvato correttamente!", - "Profile": "Profilo", - "Public_Channel": "Canale pubblico", - "Public": "Pubblico", - "Push_Notifications": "Notifiche Push", - "Push_Notifications_Alert_Info": "Queste notifiche ti vengono recapitate quando l'app non è aperta", - "Quote": "Cita", - "Reactions_are_disabled": "Le reazioni sono disabilitate", - "Reactions_are_enabled": "Le reazioni sono abilitate", - "Reactions": "Reazioni", - "Read": "Letto", - "Read_External_Permission_Message": "Rocket.Chat deve accedere alle foto, media, e documenti sul tuo dispositivo", - "Read_External_Permission": "Permesso di Lettura della Memoria", - "Read_Only_Channel": "Canale in sola lettura", - "Read_Only": "Sola lettura", - "Read_Receipt": "Conferma di lettura", - "Receive_Group_Mentions": "Ricevi menzioni di gruppo", - "Receive_Group_Mentions_Info": "Ricevi menzioni @all e @here", - "Register": "Registrati", - "Repeat_Password": "Conferma password", - "Replied_on": "Risposto il:", - "replies": "risposte", - "reply": "risposta", - "Reply": "Rispondi", - "Report": "Segnala", - "Receive_Notification": "Ricevi notifiche", - "Receive_notifications_from": "Ricevi notifiche da {{name}}", - "Resend": "Invia di nuovo", - "Reset_password": "Ripristina password", - "resetting_password": "ripristinando password", - "RESET": "RIPRISTINA", - "Return": "Ritorno", - "Review_app_title": "Ti piace questa app?", - "Review_app_desc": "Dacci 5 stesse su {{store}}", - "Review_app_yes": "Certo!", - "Review_app_no": "No", - "Review_app_later": "In seguito", - "Review_app_unable_store": "Impossibile aprire {{store}}", - "Review_this_app": "Recensisci questa app", - "Remove": "Rimuovi", - "Roles": "Ruoli", - "Room_actions": "Azioni stanza", - "Room_changed_announcement": "Annuncio stanza cambiato in: {{announcement}} da {{userBy}}", - "Room_changed_avatar": "Immagine stanza cambiata da {{userBy}}", - "Room_changed_description": "Descrizione stanza cambiata in: {{description}} da {{userBy}}", - "Room_changed_privacy": "Tipo stanza cambiato in: {{type}} da {{userBy}}", - "Room_changed_topic": "Argomento stanza cambiato in: {{topic}} da {{userBy}}", - "Room_Files": "File stanza", - "Room_Info_Edit": "Modifica informazioni stanza", - "Room_Info": "Informazioni stanza", - "Room_Members": "Membri stanza", - "Room_name_changed": "Nome stanza cambiato in: {{name}} da {{userBy}}", - "SAVE": "SALVA", - "Save_Changes": "Salva cambiamenti", - "Save": "Salva", - "Saved": "Salvato", - "saving_preferences": "salvataggio impostazioni", - "saving_profile": "salvataggio profilo", - "saving_settings": "salvataggio impostazioni", - "saved_to_gallery": "Salvato in Galleria", - "Save_Your_E2E_Password": "Salva la tua Password E2E", - "Save_Your_Encryption_Password": "Salva la tua Password di cifratura", - "Save_Your_Encryption_Password_warning": "Questa password non è salvata da nessuna parte, conservala con cura.", - "Save_Your_Encryption_Password_info": "Nota: se dovessi perdere la tua password, non c'è alcun modo per recuperarla e perderesti l'accesso ai tuoi messaggi.", - "Search_Messages": "Cerca messaggi", - "Search": "Cerca", - "Search_by": "Cerca per", - "Search_global_users": "Cerca utenti globali", - "Search_global_users_description": "Se attivi questa opzione, puoi cercare qualsiasi utente da altre aziende o server.", - "Seconds": "{{second}} secondi", - "Security_and_privacy": "Sicurezza e privacy", - "Select_Avatar": "Seleziona avatar", - "Select_Server": "Seleziona server", - "Select_Users": "Seleziona utenti", - "Select_a_Channel": "Seleziona un Canale", - "Select_a_Department": "Seleziona un Dipartimento", - "Select_an_option": "Seleziona un' opzione", - "Select_a_User": "Seleziona un Utente", - "Send": "Invia", - "Send_audio_message": "Invia messaggio audio", - "Send_crash_report": "Invia report sui crash", - "Send_message": "Invia messaggio", - "Send_me_the_code_again": "Inviami nuovamente il codice", - "Send_to": "Invia a...", - "Sending_to": "Invio a", - "Sent_an_attachment": "Inviato un allegato", - "Server": "Server", - "Servers": "Servers", - "Server_version": "Versione server: {{version}}", - "Set_username_subtitle": "Il nome utente viene utilizzato per permettere ad altri di menzionarti nei messaggi", - "Set_custom_status": "Imposta stato personalizzato", - "Set_status": "Imposta stato", - "Status_saved_successfully": "Stato salvato correttamente!", - "Settings": "Impostazioni", - "Settings_succesfully_changed": "Impostazioni modificate correttamente!", - "Share": "Condividi", - "Share_Link": "Condividi link", - "Share_this_app": "Condividi questa app", - "Show_more": "Mostra altri..", - "Show_Unread_Counter": "Mostra contatore messaggi non letti", - "Show_Unread_Counter_Info": "Il contatore viene mostrato come un'etichetta alla destra del canale, nella lista", - "Sign_in_your_server": "Accedi al tuo server", - "Sign_Up": "Registrati", - "Some_field_is_invalid_or_empty": "Un campo non è valido o è vuoto", - "Sorting_by": "Ordina per {{key}}", - "Sound": "Suono", - "Star_room": "Aggiungi stanza ai preferiti", - "Star": "Aggiungi ai preferiti", - "Starred_Messages": "Messaggi preferiti", - "starred": "preferiti", - "Starred": "Preferiti", - "Start_of_conversation": "Inizio della conversazione", - "Start_a_Discussion": "Avvia una Discussione", - "Started_discussion": "Discussione iniziata:", - "Started_call": "Chiamata iniziata da {{userBy}}", - "Submit": "Invia", - "Table": "Tabella", - "Tags": "Tag", - "Take_a_photo": "Scatta una foto", - "Take_a_video": "Registra un video", - "Take_it": "Prendi!", - "tap_to_change_status": "tocca per cambiare stato", - "Tap_to_view_servers_list": "Tocca per vedere la lista server", - "Terms_of_Service": " Termini di servizio ", - "Theme": "Tema", - "The_user_wont_be_able_to_type_in_roomName": "L'utente non potrà scrivere in {{roomName}}", - "The_user_will_be_able_to_type_in_roomName": "L'utente potrà scrivere in {{roomName}}", - "There_was_an_error_while_action": "Si è verificato un errore nel {{action}}!", - "This_room_is_blocked": "Questa stanza è bloccata", - "This_room_is_read_only": "Questa stanza è in sola lettura", - "Thread": "Thread", - "Threads": "Threads", - "Timezone": "Fuso orario", - "To": "A", - "topic": "argomento", - "Topic": "Argomento", - "Translate": "Traduci", - "Try_again": "Riprova", - "Two_Factor_Authentication": "Autenticazione a due fattori", - "Type_the_channel_name_here": "Scrivi il nome del canale qui", - "unarchive": "rimuovi dall'archivio", - "UNARCHIVE": "RIMUOVI DALL'ARCHIVIO", - "Unblock_user": "Sblocca utente", - "Unfavorite": "Rimuovi preferito", - "Unfollowed_thread": "Non segui più il thread", - "Unmute": "Attiva notifiche", - "unmuted": "notifiche attivate", - "Unpin": "Stacca", - "unread_messages": "non letti", - "Unread": "Non letto", - "Unread_on_top": "Non letti sopra", - "Unstar": "Rimuovi dai preferiti", - "Updating": "Aggiornamento...", - "Uploading": "Caricamento", - "Upload_file_question_mark": "Carica file?", - "User": "Utente", - "Users": "Utenti", - "User_added_by": "Utente {{userAdded}} aggiunto da {{userBy}}", - "User_Info": "Informazioni utente", - "User_has_been_key": "Utente {{key}}", - "User_is_no_longer_role_by_": "{{user}} non è più {{role}} da {{userBy}}", - "User_muted_by": "Utente {{userMuted}} silenziato da {{userBy}}", - "User_removed_by": "Utente {{userRemoved}} rimosso da {{userBy}}", - "User_sent_an_attachment": "{{user}} ha inviato un allegato", - "User_unmuted_by": "Utente {{userUnmuted}} de-silenziato da {{userBy}}", - "User_was_set_role_by_": "{{user}} è stato impostato come {{role}} da {{userBy}}", - "Username_is_empty": "Username vuoto", - "Username": "Username", - "Username_or_email": "Username o email", - "Uses_server_configuration": "Usa la configurazione del server", - "Validating": "Validazione", - "Registration_Succeeded": "Registrazione completata!", - "Verify": "Verifica", - "Verify_email_title": "Verifica completata!", - "Verify_email_desc": "Ti abbiamo inviato una e-mail per confermare la tua registrazione. Se non la ricevi, ritorna qui e riprova", - "Verify_your_email_for_the_code_we_sent": "Controlla l'e-mail con il codice che ti abbiamo inviato", - "Video_call": "Videochiamata", - "View_Original": "Mostra originale", - "Voice_call": "Chiamata vocale", - "Waiting_for_network": "In attesa di connessione ...", - "Websocket_disabled": "Websocket disabilitata per questo server.\n{{contact}}", - "Welcome": "Benvenuto", - "What_are_you_doing_right_now": "Cosa stai facendo in questo momento?", - "Whats_your_2fa": "Qual'è il tuo codice 2FA?", - "Without_Servers": "Senza server", - "Workspaces": "Workspace", - "Would_you_like_to_return_the_inquiry": "Vorresti ritirare la tua domanda?", - "Write_External_Permission_Message": "Rocket.Chat ha bisogno dell'accesso alla galleria per salvare le immagini.", - "Write_External_Permission": "Permesso galleria", - "Yes": "Si", - "Yes_action_it": "Sì, {{action}}!", - "Yesterday": "Ieri", - "You_are_in_preview_mode": "Sei in modalità anteprima", - "You_are_offline": "Sei offline", - "You_can_search_using_RegExp_eg": "Puoi usare espressioni regolari. es. `/^testo$/i`", - "You_colon": "Tu: ", - "you_were_mentioned": "sei stato menzionato", - "You_were_removed_from_channel": "Sei stato rimosso da {{channel}}", - "you": "tu", - "You": "Tu", - "Logged_out_by_server": "Sei stato disconnesso dal server. Esegui nuovamente l'accesso.", - "You_need_to_access_at_least_one_RocketChat_server_to_share_something": "Devi accedere ad almeno un server Rocket.Chat prima di condividere qualcosa.", - "You_need_to_verifiy_your_email_address_to_get_notications": "Devi verificare il tuo indirizzo e-mail per ricevere le notifiche", - "Your_certificate": "Il tuo certificato", - "Your_invite_link_will_expire_after__usesLeft__uses": "Il tuo link di invito scadrà dopo {{usesLeft}} utilizzi.", - "Your_invite_link_will_expire_on__date__or_after__usesLeft__uses": "Il tuo link di invito scadrà il {{date}} oppure dopo {{usesLeft}} utilizzi.", - "Your_invite_link_will_expire_on__date__": "Il tuo link di invito scadrà il {{date}}.", - "Your_invite_link_will_never_expire": "Il tuo link di invito non scadrà mai.", - "Your_workspace": "Il tuo workspace", - "Your_password_is": "La tua password è", - "Version_no": "Versione: {{version}}", - "You_will_not_be_able_to_recover_this_message": "Non sarai in grado di ripristinare questo messaggio!", - "You_will_unset_a_certificate_for_this_server": "Rimuoverai un certificato per questo server", - "Change_Language": "Cambia lingua", - "Crash_report_disclaimer": "Non registreremo mai il contenuto delle tue chat. Il crash report contiene solo informazioni necessarie per l'identificazione e la risoluzione dei problemi.", - "Type_message": "Scrivi messaggio", - "Room_search": "Ricerca stanze", - "Room_selection": "Selezione stanza 1...9", - "Next_room": "Prossima stanza", - "Previous_room": "Stanza precedente", - "New_room": "Nuova stanza", - "Upload_room": "Carica nella stanza", - "Search_messages": "Cerca messaggi", - "Scroll_messages": "Scorri i messaggi", - "Reply_latest": "Rispondi all'ultimo", - "Reply_in_Thread": "Rispondi nella discussione", - "Server_selection": "Selezione server", - "Server_selection_numbers": "Selezione server 1...9", - "Add_server": "Aggiungi server", - "New_line": "Nuova linea", - "You_will_be_logged_out_of_this_application": "Verrai disconnesso da questa applicazione.", - "Clear": "Cancella", - "This_will_clear_all_your_offline_data": "Questo cancellerà tutti i tuoi dati offline.", - "This_will_remove_all_data_from_this_server": "Questo rimuoverà tutti i dati dal server.", - "Mark_unread": "Segna come non letto", - "Wait_activation_warning": "Prima di poter accedere, il tuo account deve essere attivato manualmente da un amministratore.", - "Screen_lock": "Blocco schermo", - "Local_authentication_biometry_title": "Autenticazione", - "Local_authentication_biometry_fallback": "Usa passcode", - "Local_authentication_unlock_option": "Sblocca con Passcode", - "Local_authentication_change_passcode": "Cambia Passcode", - "Local_authentication_info": "Nota: se dimentichi il Passcode, dovrai cancellare e installare nuovamente l'app.", - "Local_authentication_facial_recognition": "riconoscimento facciale", - "Local_authentication_fingerprint": "impronta digitale", - "Local_authentication_unlock_with_label": "Sblocca con {{label}}", - "Local_authentication_auto_lock_60": "Dopo 1 minuto", - "Local_authentication_auto_lock_300": "Dopo 5 minuti", - "Local_authentication_auto_lock_900": "Dopo 15 minuti", - "Local_authentication_auto_lock_1800": "Dopo 30 minuti", - "Local_authentication_auto_lock_3600": "Dopo 1 ora", - "Passcode_enter_title": "Inserisci il passcode", - "Passcode_choose_title": "Scegli il tuo nuovo passcode", - "Passcode_choose_confirm_title": "Conferma il tuo nuovo passcode", - "Passcode_choose_error": "I passcode non corrispondono. Riprova.", - "Passcode_choose_force_set": "Passcode richiesto dall'admin", - "Passcode_app_locked_title": "App bloccata", - "Passcode_app_locked_subtitle": "Riprova tra {{timeLeft}} secondi", - "After_seconds_set_by_admin": "Dopo {{seconds}} secondi (impostati dall'admin)", - "Dont_activate": "Non attivare ora", - "Queued_chats": "Chat in coda", - "Queue_is_empty": "La coda è vuota", - "Logout_from_other_logged_in_locations": "Disconnetti da altre postazioni", - "You_will_be_logged_out_from_other_locations": "Verrai disconnesso dalle altre postazioni.", - "Logged_out_of_other_clients_successfully": "Disconnesso dalle altre postazioni con successo", - "Logout_failed": "Disconnessione fallita!", - "Log_analytics_events": "Invia statistiche anonime", - "E2E_encryption_change_password_title": "Cambia la password di cifratura", - "E2E_encryption_change_password_description": "Ora puoi creare gruppi e messaggi privati crittografati. Potrai, inoltre, crittografare i tuoi gruppi e messaggi privati esistenti. \nQuesta è crittografia end-to-end, la chiave per codificare/decodificare i tuoi messaggi non verrà salvata sul server. Per questo motivo devi salvarla in un luogo sicuro. Ti verrà richiesto di inserirla sugli altri dispositivi sui quali vuoi usare la crittografia e2e.", - "E2E_encryption_change_password_error": "Si è verificato un errore durante il cambio della password della chiave E2E!", - "E2E_encryption_change_password_success": "La password della chiave E2E è stata cambiata con successo!", - "E2E_encryption_change_password_message": "Assicurati di salvarla in un posto sicuro.", - "E2E_encryption_change_password_confirmation": "Si, cambiala", - "E2E_encryption_reset_title": "Ripristina la Chiave E2E", - "E2E_encryption_reset_description": "Questa opzione rimuoverà la tua chiave E2E corrente e sarai disconnesso. \nAl prossimo login, Rocket.Chat genererà una nuova chiave e ripristinerà l'accesso a tutte le stanze crittografate con uno o più membri online. \nA causa della natura della crittografia E2E, Rocket.Chat non sarà in grado di ripristinare l'accesso alle stanze senza membri online.", - "E2E_encryption_reset_button": "Ripristina", - "E2E_encryption_reset_error": "Si è verificato un errore durante il ripristino della chiave E2E!", - "E2E_encryption_reset_message": "Stai per essere disconnesso.", - "E2E_encryption_reset_confirmation": "Si, resettala", - "Following": "Seguiti", - "Threads_displaying_all": "Visualizza Tutti", - "Threads_displaying_following": "Visualizza Seguiti", - "Threads_displaying_unread": "Visualizza Non letti", - "No_threads": "Non ci sono thread", - "No_threads_following": "Non stai seguendo alcun thread", - "No_threads_unread": "Non ci sono thread non letti", - "Messagebox_Send_to_channel": "Invia sul canale", - "Remove_from_room": "Rimuovi dalla stanza", - "Ignore": "Ignora", - "Unignore": "Non ignorare", - "User_has_been_ignored": "Utente ignorato", - "User_has_been_unignored": "Utente non ignorato", - "User_has_been_removed_from_s": "L'utente è stato rimosso da {{s}}", - "User__username__is_now_a_leader_of__room_name_": "L'utente {{username}} è ora un leader di {{room_name}}", - "User__username__is_now_a_moderator_of__room_name_": "L'utente {{username}} è ora un moderatore di {{room_name}}", - "User__username__is_now_a_owner_of__room_name_": "L'utente {{username}} è ora un proprietario di {{room_name}}", - "User__username__removed_from__room_name__leaders": "L'utente {{username}} non è più un leader di {{room_name}}", - "User__username__removed_from__room_name__moderators": "L'utente {{username}} non è più un moderatore di {{room_name}}", - "User__username__removed_from__room_name__owners": "L'utente {{username}} non è più un proprietario di {{room_name}}", - "The_user_will_be_removed_from_s": "L'utente sarà rimosso da {{s}}", - "Yes_remove_user": "Si, rimuovi utente!", - "Direct_message": "Messaggio diretto", - "Message_Ignored": "Messaggio ignorato. Tocca per visualizzarlo.", - "Enter_workspace_URL": "Inserisci la url del workspace", - "Workspace_URL_Example": "Es. tua-azienda.rocket.chat", - "invalid-room": "Canale non valido" -} \ No newline at end of file + "1_person_reacted": "1 persona ha reagito", + "1_user": "1 utente", + "error-action-not-allowed": "{{action}} non autorizzata", + "error-application-not-found": "Applicazione non trovata", + "error-archived-duplicate-name": "Esiste già un canale archiviato con nome {{room_name}}", + "error-avatar-invalid-url": "URL avatar non valido: {{url}}", + "error-avatar-url-handling": "Errore nella gestione dell'impostazione avatar dall'URL ({{url}}) per {{username}}", + "error-cant-invite-for-direct-room": "Impossibile invitare l'utente alle stanze dirette", + "error-could-not-change-email": "Impossibile cambiare l'indirizzo e-mail", + "error-could-not-change-name": "Impossibile cambiare nome", + "error-could-not-change-username": "Impossibile cambiare username", + "error-could-not-change-status": "Impossibile cambiare lo stato", + "error-delete-protected-role": "Impossibile eliminare un ruolo protetto", + "error-department-not-found": "Reparto non trovato", + "error-direct-message-file-upload-not-allowed": "La condivisione di file non è autorizzata nei messaggi diretti", + "error-duplicate-channel-name": "Esiste già un canale con nome {{channel_name}}", + "error-email-domain-blacklisted": "Il dominio e-mail è nella lista nera", + "error-email-send-failed": "Errore nel tentativo di invio e-mail: {{message}}", + "error-save-image": "Errore nel salvataggio dell'immagine", + "error-save-video": "Errore nel salvataggio del video", + "error-field-unavailable": "{{field}} è già in uso :(", + "error-file-too-large": "File troppo grande", + "error-importer-not-defined": "L'importatore non è stato definito correttamente: classe Import mancante.", + "error-input-is-not-a-valid-field": "{{input}} non è valido come {{field}}", + "error-invalid-actionlink": "Link azione non valido", + "error-invalid-arguments": "Parametri non validi", + "error-invalid-asset": "Risorsa non valida", + "error-invalid-channel": "Canale non valido.", + "error-invalid-channel-start-with-chars": "Canale non valido. Inizia con @ o #", + "error-invalid-custom-field": "Campo personalizzato non valido", + "error-invalid-custom-field-name": "Nome campo personalizzato non valido. Usa solo lettere, numeri, trattini e underscore.", + "error-invalid-date": "Data fornita non valida.", + "error-invalid-description": "Descrizione non valida", + "error-invalid-domain": "Dominio non valido", + "error-invalid-email": "E-mail {{email}} non valida", + "error-invalid-email-address": "Indirizzo e-mail non valido", + "error-invalid-file-height": "Altezza del file non valida", + "error-invalid-file-type": "Tipo di file non valido", + "error-invalid-file-width": "Larghezza del file non valida", + "error-invalid-from-address": "Hai informato un indirizzo FROM non valido.", + "error-invalid-integration": "Integrazione non valida", + "error-invalid-message": "Messaggio non valido", + "error-invalid-method": "Metodo o funzione non valida", + "error-invalid-name": "Nome non corretto", + "error-invalid-password": "Password non corretta", + "error-invalid-redirectUri": "redirectUri non valido", + "error-invalid-role": "Ruolo non valido", + "error-invalid-room": "Stanza non valida", + "error-invalid-room-name": "{{room_name}} non è un nome di stanza valido", + "error-invalid-room-type": "{{type}} non è un tipo di stanza valido", + "error-invalid-settings": "Impostazioni fornite non valide", + "error-invalid-subscription": "Iscrizione non valida", + "error-invalid-token": "Token non valido", + "error-invalid-triggerWords": "triggerWords non valide", + "error-invalid-urls": "URL non validi", + "error-invalid-user": "Utente non valido", + "error-invalid-username": "Nome utente non valido", + "error-invalid-webhook-response": "L'URL del webhook ha risposto con uno stato diverso da 200", + "error-message-deleting-blocked": "Cancellazione di messaggi bloccata", + "error-message-editing-blocked": "Modifica di messaggi bloccata", + "error-message-size-exceeded": "La dimensione del messaggio supera Message_MaxAllowedSize", + "error-missing-unsubscribe-link": "Devi fornire il link [unsubscribe].", + "error-no-tokens-for-this-user": "Non ci sono token per questo utente", + "error-not-allowed": "Non permesso", + "error-not-authorized": "Non autorizzato", + "error-push-disabled": "Push è disabilitato", + "error-remove-last-owner": "Questo è l'ultimo proprietario rimasto. Imposta un nuovo proprietario prima di rimuoverlo.", + "error-role-in-use": "Impossibile eliminare il ruolo perchè ancora in uso", + "error-role-name-required": "Il nome del ruolo è obbligatorio", + "error-the-field-is-required": "Il campo {{field}} è obbligatorio.", + "error-too-many-requests": "Errore, troppe richieste effettuate. Rallenta. Devi attendere {{seconds}} secondi prima di riprovare.", + "error-user-is-not-activated": "L'utente non è attivato", + "error-user-has-no-roles": "L'utente non ha ruoli", + "error-user-limit-exceeded": "Il numero di utenti che stai invitando in #channel_name supera il limite imposto dall'amministratore", + "error-user-not-in-room": "L'utente non è in questa stanza", + "error-user-registration-custom-field": "error-user-registration-custom-field", + "error-user-registration-disabled": "Registrazione utente disabilitata", + "error-user-registration-secret": "Registrazione utente permessa solo via URL segreto", + "error-you-are-last-owner": "Sei l'ultimo proprietario rimasto. Imposta un nuovo proprietario prima di lasciare la stanza.", + "Actions": "Azioni", + "activity": "attività", + "Activity": "Attività", + "Add_Reaction": "Aggiungi reazione", + "Add_Server": "Aggiungi server", + "Add_users": "Aggiungi utenti", + "Admin_Panel": "Amministrazione", + "Agent": "Agente", + "Alert": "Avviso", + "alert": "avviso", + "alerts": "avvisi", + "All_users_in_the_channel_can_write_new_messages": "Tutti gli utenti nel canale possono scrivere messaggi", + "A_meaningful_name_for_the_discussion_room": "Un nome significativo per il canale di discussione", + "All": "Tutti", + "All_Messages": "Tutti i messaggi", + "Allow_Reactions": "Permetti reazioni", + "Alphabetical": "Alfabetico", + "and_more": "e altro", + "and": "e", + "announcement": "annuncio", + "Announcement": "Annuncio", + "Apply_Your_Certificate": "Applica il tuo certificato", + "ARCHIVE": "ARCHIVIO", + "archive": "archivio", + "are_typing": "stanno scrivendo", + "Are_you_sure_question_mark": "Sei sicuro?", + "Are_you_sure_you_want_to_leave_the_room": "Sei sicuro di voler lasciare la stanza {{room}}?", + "Audio": "Audio", + "Authenticating": "Autenticazione", + "Automatic": "Automatico", + "Auto_Translate": "Traduzione automatica", + "Avatar_changed_successfully": "Avatar aggiornato correttamente!", + "Avatar_Url": "URL avatar", + "Away": "Assente", + "Back": "Indietro", + "Black": "Nero", + "Block_user": "Blocca utente", + "Browser": "Browser", + "Broadcast_channel_Description": "Solo gli utenti autorizzati possono scrivere messaggi, ma gli altri utenti saranno in grado di rispondere", + "Broadcast_Channel": "Canale broadcast", + "Busy": "Occupato", + "By_proceeding_you_are_agreeing": "Procedendo accetti i nostri", + "Cancel_editing": "Annulla modifica", + "Cancel_recording": "Annulla registrazione", + "Cancel": "Annulla", + "changing_avatar": "cambio avatar", + "creating_channel": "creo canale", + "creating_invite": "creo invito", + "Channel_Name": "Nome canale", + "Channels": "Canali", + "Chats": "Chat", + "Call_already_ended": "Chiamata già terminata!", + "Clear_cookies_alert": "Vuoi cancellare tutti i cookie?", + "Clear_cookies_desc": "Questo cancellerà tutti i coockie di login, permettendoti di accedere con altri account.", + "Clear_cookies_yes": "Si, cancella i cookie", + "Clear_cookies_no": "No, mantieni i cookie", + "Click_to_join": "Clicca per unirti!", + "Close": "Chiudi", + "Close_emoji_selector": "Chiudi selettore emoji", + "Closing_chat": "Chiudendo la chat", + "Change_language_loading": "Cambiando la lingua.", + "Chat_closed_by_agent": "Chat chiusa dall'agente", + "Choose": "Scegli", + "Choose_from_library": "Scegli dalla libreria", + "Choose_file": "Scegli file", + "Choose_where_you_want_links_be_opened": "Scegli dove vuoi che vengano aperti i link", + "Code": "Codice", + "Code_or_password_invalid": "Codice o password non validi", + "Collaborative": "Collaborativo", + "Confirm": "Conferma", + "Connect": "Connetti", + "Connected": "Connesso", + "connecting_server": "connessione al server", + "Connecting": "Connessione...", + "Contact_us": "Contattaci", + "Contact_your_server_admin": "Contatta l'amministratore.", + "Continue_with": "Continua con", + "Copied_to_clipboard": "Copiato negli appunti!", + "Copy": "Copia", + "Conversation": "Conversazione", + "Permalink": "Permalink", + "Certificate_password": "Password certificato", + "Clear_cache": "Cancella la cache locale", + "Clear_cache_loading": "Cancellando la cache.", + "Whats_the_password_for_your_certificate": "Qual'è la password del tuo certificato?", + "Create_account": "Crea un account", + "Create_Channel": "Crea canale", + "Create_Direct_Messages": "Crea Messaggi Privati", + "Create_Discussion": "Crea una Discussione", + "Created_snippet": "Snippet creato", + "Create_a_new_workspace": "Crea un nuovo workspace", + "Create": "Crea", + "Custom_Status": "Stato personalizzato", + "Dark": "Scuro", + "Dark_level": "Contrasto", + "Default": "Predefinito", + "Default_browser": "Browser predefinito", + "Delete_Room_Warning": "Eliminare una stanza cancellerà tutti i messaggi in essa contenuti. Questa azione non può essere annullata.", + "Department": "Dipartimento", + "delete": "elimina", + "Delete": "Elimina", + "DELETE": "ELIMINA", + "deleting_room": "cancellazione stanza", + "description": "descrizione", + "Description": "Descrizione", + "Desktop_Options": "Opzioni Desktop", + "Desktop_Notifications": "Notifiche Desktop", + "Desktop_Alert_info": "Queste notifiche vengono inviate sul client desktop", + "Directory": "Rubrica", + "Direct_Messages": "Messaggi diretti", + "Disable_notifications": "Disabilita notifiche", + "Discussions": "Discussioni", + "Discussion_Desc": "Aiuta a mantenere una panoramica di ciò che sta succedendo! Creando una discussione verrà creato un sotto-canale di quello selezionato ed entrambi saranno collegati", + "Discussion_name": "Nome della discussione", + "Done": "Fatto", + "Dont_Have_An_Account": "Non hai un account?", + "Do_you_have_an_account": "Hai un account?", + "Do_you_have_a_certificate": "Hai un certificato?", + "Do_you_really_want_to_key_this_room_question_mark": "Sei sicuro di voler {{key}} questa stanza?", + "E2E_Encryption": "Crittografia E2E", + "E2E_How_It_Works_info1": "Ora puoi creare gruppi e messaggi privati crittografati. Puoi anche crittografare quelli già esistenti.", + "E2E_How_It_Works_info2": "Questa è *crittografia end-to-end*, quindi la chiave per cifrare/decifrare i messaggi non verrà salvata sul server. Per questo motivo *devi salvare questa password in un luogo sicuro* dove poterla recuperare in seguito qualora necessario.", + "E2E_How_It_Works_info3": "Procedendo verrà generata automaticamente una password E2E.", + "E2E_How_It_Works_info4": "Puoi impostare una nuova password per la chiave di cifratura in qualsiasi momento da uno dei browser dove hai inserito la password E2E esistente.", + "edit": "modifica", + "edited": "modificato", + "Edit": "Modifica", + "Edit_Status": "Modifica Stato", + "Edit_Invite": "Modifica invito", + "End_to_end_encrypted_room": "Stanza crittografata end to end", + "end_to_end_encryption": "Crittografia end to end", + "Email_Notification_Mode_All": "Ogni Menzione/Messaggio Privato", + "Email_Notification_Mode_Disabled": "Disabilitato", + "Email_or_password_field_is_empty": "Il campo e-mail o password sono vuoti", + "Email": "E-mail", + "email": "e-mail", + "Empty_title": "Titolo vuoto", + "Enable_Auto_Translate": "Abilita traduzione automatica", + "Enable_notifications": "Abilita notifiche", + "Encrypted": "Crittografato", + "Encrypted_message": "Messaggio crittografato", + "Enter_Your_E2E_Password": "Inserisci la tua password E2E", + "Enter_Your_Encryption_Password_desc1": "Potrai così accedere ai tuoi gruppi privati e messaggi privati crittografati.", + "Enter_Your_Encryption_Password_desc2": "Devi inserire la password per cifrare/decifrare i messaggi ovunque usi la chat.", + "Encryption_error_title": "La tua password di cifratura sembra errata", + "Encryption_error_desc": "Non è stato possibile importare la tua chiave di cifratura.", + "Everyone_can_access_this_channel": "Tutti hanno accesso a questo canale", + "Error_uploading": "Errore nel caricamento di", + "Expiration_Days": "Scadenza (giorni)", + "Favorite": "Preferito", + "Favorites": "Preferiti", + "Files": "File", + "File_description": "Descrizione file", + "File_name": "Nome file", + "Finish_recording": "Termina registrazione", + "Following_thread": "Thread seguito", + "For_your_security_you_must_enter_your_current_password_to_continue": "Per garantire la sicurezza del tuo account, inserisci la password per continuare.", + "Forgot_password_If_this_email_is_registered": "Se questa e-mail è registrata, manderemo istruzioni su come resettare la tua password. Se non ricevi nulla, torna qui e riprova di nuovo.", + "Forgot_password": "Password dimenticata", + "Forgot_Password": "Password dimenticata", + "Forward": "Inoltra", + "Forward_Chat": "Inoltra Chat", + "Forward_to_department": "Inoltra a dipartimento", + "Forward_to_user": "Inoltra ad udente", + "Full_table": "Clicca per la tabella completa", + "Generate_New_Link": "Genera nuovo link", + "Group_by_favorites": "Raggruppa per preferiti", + "Group_by_type": "Raggruppa per tipo", + "Hide": "Nascondi", + "Has_joined_the_channel": "si è unito al canale", + "Has_joined_the_conversation": "si è unito alla conversazione", + "Has_left_the_channel": "ha lasciato il canale", + "Hide_System_Messages": "Nascondi messaggi di sistema", + "Hide_type_messages": "Nascondi messaggi di \"{{type}}\"", + "How_It_Works": "Come funziona", + "Message_HideType_uj": "Ingresso Utente", + "Message_HideType_ul": "Uscita Utente", + "Message_HideType_ru": "Rimozione Utente", + "Message_HideType_au": "Aggiunta Utente", + "Message_HideType_mute_unmute": "Microfono Utente attivato / disattivato", + "Message_HideType_r": "Nome Stanza cambiato", + "Message_HideType_ut": "Ingresso Utente in Conversazione", + "Message_HideType_wm": "Benvenuto", + "Message_HideType_rm": "Rimozione Messaggio", + "Message_HideType_subscription_role_added": "Creazione ruolo", + "Message_HideType_subscription_role_removed": "Rimozione ruolo", + "Message_HideType_room_archived": "Stanza archiviata", + "Message_HideType_room_unarchived": "Stanza ripristinata dall'archivio", + "I_Saved_My_E2E_Password": "Ho salvato la mia Password E2E", + "IP": "Indirizzo IP", + "In_app": "In-app", + "In_App_And_Desktop": "In-app e Desktop", + "In_App_and_Desktop_Alert_info": "Mostra una notifica in cima allo schermo quando l'app è aperta, e mostra una notifica sul desktop", + "Invisible": "Invisibile", + "Invite": "Invita", + "is_a_valid_RocketChat_instance": "è un'istanza di Rocket.Chat valida", + "is_not_a_valid_RocketChat_instance": "non è una valida istanza di Rocket.Chat", + "is_typing": "sta scrivendo", + "Invalid_or_expired_invite_token": "Token di invito non valido o scaduto", + "Invalid_server_version": "Il server a cui stai cercando di connetterti sta utilizzando una versione non più supportata dall'app: {{currentVersion}}.\n\nVersione minima richiesta: {{minVersion}}", + "Invite_Link": "Link di invito", + "Invite_users": "Invita utenti", + "Join": "Entra", + "Join_Code": "Codice d'accesso", + "Insert_Join_Code": "Inserisci il codice d'accesso", + "Join_our_open_workspace": "Unisciti al nostro workspace", + "Join_your_workspace": "Unisciti al tuo workspace", + "Just_invited_people_can_access_this_channel": "Solo le persone invitate possono accedere a questo canale", + "Language": "Lingua", + "last_message": "ultimo messaggio", + "Leave_channel": "Abbandona canale", + "leaving_room": "abbandonando stanza", + "Leave": "Lasciare il canale", + "leave": "abbandona", + "Legal": "Informazioni", + "Light": "Chiaro", + "License": "Licenza", + "Livechat_edit": "Modifica Livechat", + "Login": "Accedi", + "Login_error": "Le tue credenziali sono state rifiutate! Prova di nuovo.", + "Login_with": "Accedi con", + "Logging_out": "Disconnettendo.", + "Logout": "Disconnetti", + "Max_number_of_uses": "Max numero di utilizzi", + "Max_number_of_users_allowed_is_number": "Il numero massimo di utenti ammessi è {{maxUsers}}", + "members": "membri", + "Members": "Membri", + "Mentioned_Messages": "Messaggi menzionati", + "mentioned": "menzionato", + "Mentions": "Menzioni", + "Message_accessibility": "Messaggio da {{user}} alle {{time}}: {{message}}", + "Message_actions": "Azioni messaggio", + "Message_pinned": "Messaggio appuntato", + "Message_removed": "Messaggio rimosso", + "Message_starred": "Messaggio importante", + "Message_unstarred": "Messaggio non importante", + "message": "messaggio", + "messages": "messaggi", + "Message": "Messaggio", + "Messages": "Messaggi", + "Message_Reported": "Messaggio segnalato", + "Microphone_Permission_Message": "Rocket.Chat richiede l'accesso al microfono per inviare messaggi audio.", + "Microphone_Permission": "Permesso microfono", + "Mute": "Silenzia", + "muted": "silenziato", + "My_servers": "I miei server", + "N_people_reacted": "{{n}} persone hanno reagito", + "N_users": "{{n}} utenti", + "name": "nome", + "Name": "Nome", + "Navigation_history": "Cronologia di navigazione", + "Never": "Mai", + "New_Message": "Nuovo messaggio", + "New_Password": "Nuova password", + "New_Server": "Nuovo server", + "Next": "Successivo", + "No_files": "Nessun file", + "No_limit": "Nessun limite", + "No_mentioned_messages": "Nessun messaggio menzionato", + "No_pinned_messages": "Nessun messaggio attaccato", + "No_results_found": "Nessun risultato", + "No_starred_messages": "Nessun messaggio preferito", + "No_thread_messages": "Nessun messaggio thread", + "No_label_provided": "Nessun {{label}} fornito.", + "No_Message": "Nessun messaggio", + "No_messages_yet": "Non ci sono ancora messaggi", + "No_Reactions": "Nessuna reazione", + "No_Read_Receipts": "Nessuna conferma di lettura", + "Not_logged": "Non loggato", + "Not_RC_Server": "Questo non è un server di Rocket.Chat.\n{{contact}}", + "Nothing": "Niente", + "Nothing_to_save": "Niente da salvare!", + "Notify_active_in_this_room": "Notifica solo gli utenti attivi in questa stanza", + "Notify_all_in_this_room": "Notifica tutti gli utenti in questa stanza", + "Notifications": "Notifiche", + "Notification_Duration": "Durata notifiche", + "Notification_Preferences": "Impostazioni notifiche", + "No_available_agents_to_transfer": "Nessun agente disponibile a cui trasferire", + "Offline": "Offline", + "Oops": "Oops!", + "Omnichannel": "Omnichannel", + "Open_Livechats": "Chat in corso", + "Omnichannel_enable_alert": "Non sei ancora su Onmichannel. Vuoi attivarlo?", + "Onboarding_description": "Un workspace è lo spazio dove il tuo team o la tua organizzazione possono collaborare. Chiedi l'indirizzo all'amministratore del tuo workspace oppure creane uno per il tuo team.", + "Onboarding_join_workspace": "Unisciti", + "Onboarding_subtitle": "Oltre la collaborazione di gruppo", + "Onboarding_title": "Benvenuto in Rocket.Chat", + "Onboarding_join_open_description": "Unisciti al nostro workspace per parlare con il team e la community di Rocket.Chat.", + "Onboarding_agree_terms": "Procedendo, accetti Rocket.Chat", + "Onboarding_less_options": "Meno opzioni", + "Onboarding_more_options": "Più opzioni", + "Online": "Online", + "Only_authorized_users_can_write_new_messages": "Solo gli utenti autorizzati possono scrivere nuovi messaggi", + "Open_emoji_selector": "Apri selettore emoji", + "Open_Source_Communication": "Comunicazione open-source", + "Open_your_authentication_app_and_enter_the_code": "Apri l'app di autenticazione e inserisci il codice.", + "OR": "O", + "OS": "SO", + "Overwrites_the_server_configuration_and_use_room_config": "Sovrascrive la configurazione del server in favore di quella della stanza", + "Password": "Password", + "Parent_channel_or_group": "Gruppo o canale originario", + "Permalink_copied_to_clipboard": "Permalink copiato negli appunti!", + "Phone": "Telefono", + "Pin": "Appunta", + "Pinned_Messages": "Messaggi appuntati", + "pinned": "appuntati", + "Pinned": "Appuntati", + "Please_add_a_comment": "Per favore, aggiungi un commento", + "Please_enter_your_password": "Per favore, inserisci la tua password", + "Please_wait": "Si prega di attendere.", + "Preferences": "Impostazioni", + "Preferences_saved": "Impostazioni salvate!", + "Privacy_Policy": " Privacy Policy", + "Private_Channel": "Canale privato", + "Private": "Privato", + "Processing": "Elaborazione...", + "Profile_saved_successfully": "Profilo salvato correttamente!", + "Profile": "Profilo", + "Public_Channel": "Canale pubblico", + "Public": "Pubblico", + "Push_Notifications": "Notifiche Push", + "Push_Notifications_Alert_Info": "Queste notifiche ti vengono recapitate quando l'app non è aperta", + "Quote": "Cita", + "Reactions_are_disabled": "Le reazioni sono disabilitate", + "Reactions_are_enabled": "Le reazioni sono abilitate", + "Reactions": "Reazioni", + "Read": "Letto", + "Read_External_Permission_Message": "Rocket.Chat deve accedere alle foto, media, e documenti sul tuo dispositivo", + "Read_External_Permission": "Permesso di Lettura della Memoria", + "Read_Only_Channel": "Canale in sola lettura", + "Read_Only": "Sola lettura", + "Read_Receipt": "Conferma di lettura", + "Receive_Group_Mentions": "Ricevi menzioni di gruppo", + "Receive_Group_Mentions_Info": "Ricevi menzioni @all e @here", + "Register": "Registrati", + "Repeat_Password": "Conferma password", + "Replied_on": "Risposto il:", + "replies": "risposte", + "reply": "risposta", + "Reply": "Rispondi", + "Report": "Segnala", + "Receive_Notification": "Ricevi notifiche", + "Receive_notifications_from": "Ricevi notifiche da {{name}}", + "Resend": "Invia di nuovo", + "Reset_password": "Ripristina password", + "resetting_password": "ripristinando password", + "RESET": "RIPRISTINA", + "Return": "Ritorno", + "Review_app_title": "Ti piace questa app?", + "Review_app_desc": "Dacci 5 stesse su {{store}}", + "Review_app_yes": "Certo!", + "Review_app_no": "No", + "Review_app_later": "In seguito", + "Review_app_unable_store": "Impossibile aprire {{store}}", + "Review_this_app": "Recensisci questa app", + "Remove": "Rimuovi", + "Roles": "Ruoli", + "Room_actions": "Azioni stanza", + "Room_changed_announcement": "Annuncio stanza cambiato in: {{announcement}} da {{userBy}}", + "Room_changed_avatar": "Immagine stanza cambiata da {{userBy}}", + "Room_changed_description": "Descrizione stanza cambiata in: {{description}} da {{userBy}}", + "Room_changed_privacy": "Tipo stanza cambiato in: {{type}} da {{userBy}}", + "Room_changed_topic": "Argomento stanza cambiato in: {{topic}} da {{userBy}}", + "Room_Files": "File stanza", + "Room_Info_Edit": "Modifica informazioni stanza", + "Room_Info": "Informazioni stanza", + "Room_Members": "Membri stanza", + "Room_name_changed": "Nome stanza cambiato in: {{name}} da {{userBy}}", + "SAVE": "SALVA", + "Save_Changes": "Salva cambiamenti", + "Save": "Salva", + "Saved": "Salvato", + "saving_preferences": "salvataggio impostazioni", + "saving_profile": "salvataggio profilo", + "saving_settings": "salvataggio impostazioni", + "saved_to_gallery": "Salvato in Galleria", + "Save_Your_E2E_Password": "Salva la tua Password E2E", + "Save_Your_Encryption_Password": "Salva la tua Password di cifratura", + "Save_Your_Encryption_Password_warning": "Questa password non è salvata da nessuna parte, conservala con cura.", + "Save_Your_Encryption_Password_info": "Nota: se dovessi perdere la tua password, non c'è alcun modo per recuperarla e perderesti l'accesso ai tuoi messaggi.", + "Search_Messages": "Cerca messaggi", + "Search": "Cerca", + "Search_by": "Cerca per", + "Search_global_users": "Cerca utenti globali", + "Search_global_users_description": "Se attivi questa opzione, puoi cercare qualsiasi utente da altre aziende o server.", + "Seconds": "{{second}} secondi", + "Security_and_privacy": "Sicurezza e privacy", + "Select_Avatar": "Seleziona avatar", + "Select_Server": "Seleziona server", + "Select_Users": "Seleziona utenti", + "Select_a_Channel": "Seleziona un Canale", + "Select_a_Department": "Seleziona un Dipartimento", + "Select_an_option": "Seleziona un' opzione", + "Select_a_User": "Seleziona un Utente", + "Send": "Invia", + "Send_audio_message": "Invia messaggio audio", + "Send_crash_report": "Invia report sui crash", + "Send_message": "Invia messaggio", + "Send_me_the_code_again": "Inviami nuovamente il codice", + "Send_to": "Invia a...", + "Sending_to": "Invio a", + "Sent_an_attachment": "Inviato un allegato", + "Server": "Server", + "Servers": "Servers", + "Server_version": "Versione server: {{version}}", + "Set_username_subtitle": "Il nome utente viene utilizzato per permettere ad altri di menzionarti nei messaggi", + "Set_custom_status": "Imposta stato personalizzato", + "Set_status": "Imposta stato", + "Status_saved_successfully": "Stato salvato correttamente!", + "Settings": "Impostazioni", + "Settings_succesfully_changed": "Impostazioni modificate correttamente!", + "Share": "Condividi", + "Share_Link": "Condividi link", + "Share_this_app": "Condividi questa app", + "Show_more": "Mostra altri..", + "Show_Unread_Counter": "Mostra contatore messaggi non letti", + "Show_Unread_Counter_Info": "Il contatore viene mostrato come un'etichetta alla destra del canale, nella lista", + "Sign_in_your_server": "Accedi al tuo server", + "Sign_Up": "Registrati", + "Some_field_is_invalid_or_empty": "Un campo non è valido o è vuoto", + "Sorting_by": "Ordina per {{key}}", + "Sound": "Suono", + "Star_room": "Aggiungi stanza ai preferiti", + "Star": "Aggiungi ai preferiti", + "Starred_Messages": "Messaggi preferiti", + "starred": "preferiti", + "Starred": "Preferiti", + "Start_of_conversation": "Inizio della conversazione", + "Start_a_Discussion": "Avvia una Discussione", + "Started_discussion": "Discussione iniziata:", + "Started_call": "Chiamata iniziata da {{userBy}}", + "Submit": "Invia", + "Table": "Tabella", + "Tags": "Tag", + "Take_a_photo": "Scatta una foto", + "Take_a_video": "Registra un video", + "Take_it": "Prendi!", + "tap_to_change_status": "tocca per cambiare stato", + "Tap_to_view_servers_list": "Tocca per vedere la lista server", + "Terms_of_Service": " Termini di servizio ", + "Theme": "Tema", + "The_user_wont_be_able_to_type_in_roomName": "L'utente non potrà scrivere in {{roomName}}", + "The_user_will_be_able_to_type_in_roomName": "L'utente potrà scrivere in {{roomName}}", + "There_was_an_error_while_action": "Si è verificato un errore nel {{action}}!", + "This_room_is_blocked": "Questa stanza è bloccata", + "This_room_is_read_only": "Questa stanza è in sola lettura", + "Thread": "Thread", + "Threads": "Threads", + "Timezone": "Fuso orario", + "To": "A", + "topic": "argomento", + "Topic": "Argomento", + "Translate": "Traduci", + "Try_again": "Riprova", + "Two_Factor_Authentication": "Autenticazione a due fattori", + "Type_the_channel_name_here": "Scrivi il nome del canale qui", + "unarchive": "rimuovi dall'archivio", + "UNARCHIVE": "RIMUOVI DALL'ARCHIVIO", + "Unblock_user": "Sblocca utente", + "Unfavorite": "Rimuovi preferito", + "Unfollowed_thread": "Non segui più il thread", + "Unmute": "Attiva notifiche", + "unmuted": "notifiche attivate", + "Unpin": "Stacca", + "unread_messages": "non letti", + "Unread": "Non letto", + "Unread_on_top": "Non letti sopra", + "Unstar": "Rimuovi dai preferiti", + "Updating": "Aggiornamento...", + "Uploading": "Caricamento", + "Upload_file_question_mark": "Carica file?", + "User": "Utente", + "Users": "Utenti", + "User_added_by": "Utente {{userAdded}} aggiunto da {{userBy}}", + "User_Info": "Informazioni utente", + "User_has_been_key": "Utente {{key}}", + "User_is_no_longer_role_by_": "{{user}} non è più {{role}} da {{userBy}}", + "User_muted_by": "Utente {{userMuted}} silenziato da {{userBy}}", + "User_removed_by": "Utente {{userRemoved}} rimosso da {{userBy}}", + "User_sent_an_attachment": "{{user}} ha inviato un allegato", + "User_unmuted_by": "Utente {{userUnmuted}} de-silenziato da {{userBy}}", + "User_was_set_role_by_": "{{user}} è stato impostato come {{role}} da {{userBy}}", + "Username_is_empty": "Username vuoto", + "Username": "Username", + "Username_or_email": "Username o email", + "Uses_server_configuration": "Usa la configurazione del server", + "Validating": "Validazione", + "Registration_Succeeded": "Registrazione completata!", + "Verify": "Verifica", + "Verify_email_title": "Verifica completata!", + "Verify_email_desc": "Ti abbiamo inviato una e-mail per confermare la tua registrazione. Se non la ricevi, ritorna qui e riprova", + "Verify_your_email_for_the_code_we_sent": "Controlla l'e-mail con il codice che ti abbiamo inviato", + "Video_call": "Videochiamata", + "View_Original": "Mostra originale", + "Voice_call": "Chiamata vocale", + "Waiting_for_network": "In attesa di connessione ...", + "Websocket_disabled": "Websocket disabilitata per questo server.\n{{contact}}", + "Welcome": "Benvenuto", + "What_are_you_doing_right_now": "Cosa stai facendo in questo momento?", + "Whats_your_2fa": "Qual'è il tuo codice 2FA?", + "Without_Servers": "Senza server", + "Workspaces": "Workspace", + "Would_you_like_to_return_the_inquiry": "Vorresti ritirare la tua domanda?", + "Write_External_Permission_Message": "Rocket.Chat ha bisogno dell'accesso alla galleria per salvare le immagini.", + "Write_External_Permission": "Permesso galleria", + "Yes": "Si", + "Yes_action_it": "Sì, {{action}}!", + "Yesterday": "Ieri", + "You_are_in_preview_mode": "Sei in modalità anteprima", + "You_are_offline": "Sei offline", + "You_can_search_using_RegExp_eg": "Puoi usare espressioni regolari. es. `/^testo$/i`", + "You_colon": "Tu: ", + "you_were_mentioned": "sei stato menzionato", + "You_were_removed_from_channel": "Sei stato rimosso da {{channel}}", + "you": "tu", + "You": "Tu", + "Logged_out_by_server": "Sei stato disconnesso dal server. Esegui nuovamente l'accesso.", + "You_need_to_access_at_least_one_RocketChat_server_to_share_something": "Devi accedere ad almeno un server Rocket.Chat prima di condividere qualcosa.", + "You_need_to_verifiy_your_email_address_to_get_notications": "Devi verificare il tuo indirizzo e-mail per ricevere le notifiche", + "Your_certificate": "Il tuo certificato", + "Your_invite_link_will_expire_after__usesLeft__uses": "Il tuo link di invito scadrà dopo {{usesLeft}} utilizzi.", + "Your_invite_link_will_expire_on__date__or_after__usesLeft__uses": "Il tuo link di invito scadrà il {{date}} oppure dopo {{usesLeft}} utilizzi.", + "Your_invite_link_will_expire_on__date__": "Il tuo link di invito scadrà il {{date}}.", + "Your_invite_link_will_never_expire": "Il tuo link di invito non scadrà mai.", + "Your_workspace": "Il tuo workspace", + "Your_password_is": "La tua password è", + "Version_no": "Versione: {{version}}", + "You_will_not_be_able_to_recover_this_message": "Non sarai in grado di ripristinare questo messaggio!", + "You_will_unset_a_certificate_for_this_server": "Rimuoverai un certificato per questo server", + "Change_Language": "Cambia lingua", + "Crash_report_disclaimer": "Non registreremo mai il contenuto delle tue chat. Il crash report contiene solo informazioni necessarie per l'identificazione e la risoluzione dei problemi.", + "Type_message": "Scrivi messaggio", + "Room_search": "Ricerca stanze", + "Room_selection": "Selezione stanza 1...9", + "Next_room": "Prossima stanza", + "Previous_room": "Stanza precedente", + "New_room": "Nuova stanza", + "Upload_room": "Carica nella stanza", + "Search_messages": "Cerca messaggi", + "Scroll_messages": "Scorri i messaggi", + "Reply_latest": "Rispondi all'ultimo", + "Reply_in_Thread": "Rispondi nella discussione", + "Server_selection": "Selezione server", + "Server_selection_numbers": "Selezione server 1...9", + "Add_server": "Aggiungi server", + "New_line": "Nuova linea", + "You_will_be_logged_out_of_this_application": "Verrai disconnesso da questa applicazione.", + "Clear": "Cancella", + "This_will_clear_all_your_offline_data": "Questo cancellerà tutti i tuoi dati offline.", + "This_will_remove_all_data_from_this_server": "Questo rimuoverà tutti i dati dal server.", + "Mark_unread": "Segna come non letto", + "Wait_activation_warning": "Prima di poter accedere, il tuo account deve essere attivato manualmente da un amministratore.", + "Screen_lock": "Blocco schermo", + "Local_authentication_biometry_title": "Autenticazione", + "Local_authentication_biometry_fallback": "Usa passcode", + "Local_authentication_unlock_option": "Sblocca con Passcode", + "Local_authentication_change_passcode": "Cambia Passcode", + "Local_authentication_info": "Nota: se dimentichi il Passcode, dovrai cancellare e installare nuovamente l'app.", + "Local_authentication_facial_recognition": "riconoscimento facciale", + "Local_authentication_fingerprint": "impronta digitale", + "Local_authentication_unlock_with_label": "Sblocca con {{label}}", + "Local_authentication_auto_lock_60": "Dopo 1 minuto", + "Local_authentication_auto_lock_300": "Dopo 5 minuti", + "Local_authentication_auto_lock_900": "Dopo 15 minuti", + "Local_authentication_auto_lock_1800": "Dopo 30 minuti", + "Local_authentication_auto_lock_3600": "Dopo 1 ora", + "Passcode_enter_title": "Inserisci il passcode", + "Passcode_choose_title": "Scegli il tuo nuovo passcode", + "Passcode_choose_confirm_title": "Conferma il tuo nuovo passcode", + "Passcode_choose_error": "I passcode non corrispondono. Riprova.", + "Passcode_choose_force_set": "Passcode richiesto dall'admin", + "Passcode_app_locked_title": "App bloccata", + "Passcode_app_locked_subtitle": "Riprova tra {{timeLeft}} secondi", + "After_seconds_set_by_admin": "Dopo {{seconds}} secondi (impostati dall'admin)", + "Dont_activate": "Non attivare ora", + "Queued_chats": "Chat in coda", + "Queue_is_empty": "La coda è vuota", + "Logout_from_other_logged_in_locations": "Disconnetti da altre postazioni", + "You_will_be_logged_out_from_other_locations": "Verrai disconnesso dalle altre postazioni.", + "Logged_out_of_other_clients_successfully": "Disconnesso dalle altre postazioni con successo", + "Logout_failed": "Disconnessione fallita!", + "Log_analytics_events": "Invia statistiche anonime", + "E2E_encryption_change_password_title": "Cambia la password di cifratura", + "E2E_encryption_change_password_description": "Ora puoi creare gruppi e messaggi privati crittografati. Potrai, inoltre, crittografare i tuoi gruppi e messaggi privati esistenti. \nQuesta è crittografia end-to-end, la chiave per codificare/decodificare i tuoi messaggi non verrà salvata sul server. Per questo motivo devi salvarla in un luogo sicuro. Ti verrà richiesto di inserirla sugli altri dispositivi sui quali vuoi usare la crittografia e2e.", + "E2E_encryption_change_password_error": "Si è verificato un errore durante il cambio della password della chiave E2E!", + "E2E_encryption_change_password_success": "La password della chiave E2E è stata cambiata con successo!", + "E2E_encryption_change_password_message": "Assicurati di salvarla in un posto sicuro.", + "E2E_encryption_change_password_confirmation": "Si, cambiala", + "E2E_encryption_reset_title": "Ripristina la Chiave E2E", + "E2E_encryption_reset_description": "Questa opzione rimuoverà la tua chiave E2E corrente e sarai disconnesso. \nAl prossimo login, Rocket.Chat genererà una nuova chiave e ripristinerà l'accesso a tutte le stanze crittografate con uno o più membri online. \nA causa della natura della crittografia E2E, Rocket.Chat non sarà in grado di ripristinare l'accesso alle stanze senza membri online.", + "E2E_encryption_reset_button": "Ripristina", + "E2E_encryption_reset_error": "Si è verificato un errore durante il ripristino della chiave E2E!", + "E2E_encryption_reset_message": "Stai per essere disconnesso.", + "E2E_encryption_reset_confirmation": "Si, resettala", + "Following": "Seguiti", + "Threads_displaying_all": "Visualizza Tutti", + "Threads_displaying_following": "Visualizza Seguiti", + "Threads_displaying_unread": "Visualizza Non letti", + "No_threads": "Non ci sono thread", + "No_threads_following": "Non stai seguendo alcun thread", + "No_threads_unread": "Non ci sono thread non letti", + "Messagebox_Send_to_channel": "Invia sul canale", + "Remove_from_room": "Rimuovi dalla stanza", + "Ignore": "Ignora", + "Unignore": "Non ignorare", + "User_has_been_ignored": "Utente ignorato", + "User_has_been_unignored": "Utente non ignorato", + "User_has_been_removed_from_s": "L'utente è stato rimosso da {{s}}", + "User__username__is_now_a_leader_of__room_name_": "L'utente {{username}} è ora un leader di {{room_name}}", + "User__username__is_now_a_moderator_of__room_name_": "L'utente {{username}} è ora un moderatore di {{room_name}}", + "User__username__is_now_a_owner_of__room_name_": "L'utente {{username}} è ora un proprietario di {{room_name}}", + "User__username__removed_from__room_name__leaders": "L'utente {{username}} non è più un leader di {{room_name}}", + "User__username__removed_from__room_name__moderators": "L'utente {{username}} non è più un moderatore di {{room_name}}", + "User__username__removed_from__room_name__owners": "L'utente {{username}} non è più un proprietario di {{room_name}}", + "The_user_will_be_removed_from_s": "L'utente sarà rimosso da {{s}}", + "Yes_remove_user": "Si, rimuovi utente!", + "Direct_message": "Messaggio diretto", + "Message_Ignored": "Messaggio ignorato. Tocca per visualizzarlo.", + "Enter_workspace_URL": "Inserisci la url del workspace", + "Workspace_URL_Example": "Es. tua-azienda.rocket.chat", + "invalid-room": "Canale non valido" +} diff --git a/app/i18n/locales/ja.json b/app/i18n/locales/ja.json index 61accdd79e..48d0ef1be0 100644 --- a/app/i18n/locales/ja.json +++ b/app/i18n/locales/ja.json @@ -1,492 +1,492 @@ { - "1_person_reacted": "1人がリアクション", - "1_user": "1人", - "error-action-not-allowed": "{{action}}の権限がありません。", - "error-application-not-found": "アプリケーションがありません。", - "error-archived-duplicate-name": "アーカイブ名が重複しています: {{room_name}}", - "error-avatar-invalid-url": "画像のURLが正しくありません: {{url}}", - "error-avatar-url-handling": "アバターをURL({{url}})から{{username}}に設定中にエラーが発生しました。", - "error-cant-invite-for-direct-room": "ユーザーを直接ルームに招待することができません。", - "error-could-not-change-email": "メールアドレスを変更できません。", - "error-could-not-change-name": "名前を変更できません。", - "error-could-not-change-username": "ユーザー名を変更できません。", - "error-delete-protected-role": "保護されたロールは削除できません。", - "error-department-not-found": "ロールが存在しません。", - "error-direct-message-file-upload-not-allowed": "ダイレクトメッセージでのファイルのアップロードは許可されていません。", - "error-duplicate-channel-name": "{{channel_name}}と同名のチャンネルが存在します。", - "error-email-domain-blacklisted": "このドメインのメールアドレスはブラックリストに登録されています。", - "error-email-send-failed": "次のメールアドレスの送信に失敗しました: {{message}}", - "error-save-image": "画像の保存に失敗しました。", - "error-field-unavailable": "{{field}}は既に使用されています。", - "error-file-too-large": "ファイルが大きすぎます。", - "error-importer-not-defined": "インポータが正しく定義されていません。Importクラスが見つかりません。", - "error-input-is-not-a-valid-field": "{{input}}は{{field}}の入力として正しくありません。", - "error-invalid-actionlink": "アクションリンクが正しくありません。", - "error-invalid-arguments": "引数が正しくありません。", - "error-invalid-asset": "アセットが不正です。", - "error-invalid-channel": "チャンネル名が不正です。", - "error-invalid-channel-start-with-chars": "不正なチャンネルです。チャンネル名は@か#から開始します。", - "error-invalid-custom-field": "カスタムフィールドが不正です。", - "error-invalid-custom-field-name": "カスタムフィールド名が不正です。半角英数字、ハイフン、アンダースコアのみを使用してください。", - "error-invalid-date": "不正な日時です", - "error-invalid-description": "不正な詳細です", - "error-invalid-domain": "不正なドメインです", - "error-invalid-email": "不正なメールアドレスです。 {{email}}", - "error-invalid-email-address": "不正なメールアドレスです", - "error-invalid-file-height": "ファイルの高さが不正です", - "error-invalid-file-type": "ファイルの種類が不正です", - "error-invalid-file-width": "ファイルの幅が不正です", - "error-invalid-from-address": "不正なアドレスから通知しました", - "error-invalid-integration": "不正なインテグレーションです。", - "error-invalid-message": "不正なメッセージです。", - "error-invalid-method": "不正なメソッドです。", - "error-invalid-name": "不正な名前です", - "error-invalid-password": "不正なパスワードです", - "error-invalid-redirectUri": "不正なリダイレクトURIです", - "error-invalid-role": "不正なロールです", - "error-invalid-room": "不正なルームです", - "error-invalid-room-name": "{{room_name}}は正しいルーム名ではありません。", - "error-invalid-room-type": "{{type}}は正しいルームタイプではありません。", - "error-invalid-settings": "不正な設定が送信されました", - "error-invalid-subscription": "不正な購読です", - "error-invalid-token": "トークンが正しくありません", - "error-invalid-triggerWords": "トリガーワードが正しくありません", - "error-invalid-urls": "URLが正しくありません", - "error-invalid-user": "ユーザーが正しくありません", - "error-invalid-username": "ユーザー名が正しくありません", - "error-invalid-webhook-response": "WebhookのURLが200以外のステータスを返しています", - "error-message-deleting-blocked": "メッセージの削除をブロックされています。", - "error-message-editing-blocked": "メッセージの編集をブロックされています。", - "error-message-size-exceeded": "メッセージの大きさが Message_MaxAllowedSize を超えています。", - "error-missing-unsubscribe-link": "購読停止リンクを入れてください。", - "error-no-tokens-for-this-user": "このユーザーにはトークンがありません。", - "error-not-allowed": "許可されていません。", - "error-not-authorized": "有効化されていません。", - "error-push-disabled": "プッシュは無効化されています。", - "error-remove-last-owner": "ルームの最後のオーナーです。ルームを退出する前に新しいオーナーを設定してください。", - "error-role-in-use": "使用中のロールを削除することはできません。", - "error-role-name-required": "ロール名を入力してください。", - "error-the-field-is-required": "{{field}}の入力欄は必須です。", - "error-too-many-requests": "エラーです。リクエストが多すぎます。リクエストの頻度を落としてください。{{seconds}} 秒以上待ってから再度お試しください。", - "error-user-is-not-activated": "アカウントが有効化されていません。", - "error-user-has-no-roles": "ロールがありません。", - "error-user-limit-exceeded": "#channel_name に招待できるユーザー数の上限を超えています。管理者にお問い合わせください。", - "error-user-not-in-room": "ユーザーがルームにいません。", - "error-user-registration-custom-field": "error-user-registration-custom-field", - "error-user-registration-disabled": "ユーザー登録は無効化されています", - "error-user-registration-secret": "ユーザーの登録は登録用URLからのみ許可されています", - "error-you-are-last-owner": "あなたは最後のオーナーです。ルームを退出する前に別のオーナーを設定してください。", - "Actions": "アクション", - "activity": "アクティビティ", - "Activity": "アクティビティ順", - "Add_Reaction": "リアクションを追加", - "Add_Server": "サーバーを追加", - "Add_users": "ユーザーを追加", - "Admin_Panel": "管理者パネル", - "Alert": "アラート", - "alert": "アラート", - "alerts": "アラート", - "All_users_in_the_channel_can_write_new_messages": "すべてのユーザーが新しいメッセージを書き込みできます", - "All": "すべての", - "All_Messages": "全メッセージ", - "Allow_Reactions": "リアクションを許可", - "Alphabetical": "アルファベット順", - "and_more": "さらに表示", - "and": "と", - "announcement": "アナウンス", - "Announcement": "アナウンス", - "Apply_Your_Certificate": "証明書を適用する", - "ARCHIVE": "アーカイブ", - "archive": "アーカイブ", - "are_typing": "が入力中", - "Are_you_sure_question_mark": "よろしいですか?", - "Are_you_sure_you_want_to_leave_the_room": "{{room}}を退出してもよろしいですか?", - "Audio": "音声", - "Authenticating": "認証", - "Automatic": "自動", - "Auto_Translate": "自動翻訳", - "Avatar_changed_successfully": "アバターを変更しました!", - "Avatar_Url": "アバターURL", - "Away": "退出中", - "Back": "戻る", - "Black": "ブラック", - "Block_user": "ブロックしたユーザー", - "Broadcast_channel_Description": "許可されたユーザーのみが新しいメッセージを書き込めます。他のユーザーは返信することができます", - "Broadcast_Channel": "配信チャンネル", - "Busy": "取り込み中", - "By_proceeding_you_are_agreeing": "続行することにより、私達を承認します", - "Cancel_editing": "編集をキャンセル", - "Cancel_recording": "録音をキャンセル", - "Cancel": "キャンセル", - "changing_avatar": "アバターを変更", - "creating_channel": "チャンネルを作成", - "creating_invite": "招待を作成", - "Channel_Name": "チャンネル名", - "Channels": "チャンネル", - "Chats": "チャット", - "Call_already_ended": "通話は終了しています。", - "Click_to_join": "クリックして参加!", - "Close": "閉じる", - "Close_emoji_selector": "絵文字ピッカーを閉じる", - "Choose": "選択", - "Choose_from_library": "ライブラリから選択", - "Choose_file": "ファイルを選択", - "Code": "コード", - "Collaborative": "コラボ", - "Confirm": "承認", - "Connect": "接続", - "Connected": "接続しました", - "connecting_server": "サーバーに接続中", - "Connecting": "接続中...", - "Contact_us": "お問い合わせ", - "Contact_your_server_admin": "サーバー管理者にお問い合わせください。", - "Continue_with": "次でログイン: ", - "Copied_to_clipboard": "クリップボードにコピー!", - "Copy": "コピー", - "Permalink": "パーマリンク", - "Certificate_password": "パスワード証明書", - "Clear_cache": "ローカルのサーバーキャッシュをクリア", - "Whats_the_password_for_your_certificate": "証明書のパスワードはなんですか?", - "Create_account": "アカウントを作成", - "Create_Channel": "チャンネルを作成", - "Created_snippet": "スニペットを作成", - "Create_a_new_workspace": "新しいワークスペースを作成", - "Create": "作成", - "Dark": "ダーク", - "Dark_level": "ダークレベル", - "Default": "デフォルト", - "Default_browser": "デフォルトのブラウザ", - "Delete_Room_Warning": "ルームを削除すると、ルームに投稿されたすべてのメッセージが削除されます。この操作は取り消せません。", - "delete": "削除", - "Delete": "削除", - "DELETE": "削除", - "deleting_room": "ルームを削除", - "description": "概要", - "Description": "概要", - "Desktop_Options": "デスクトップオプション", - "Directory": "ディレクトリ", - "Direct_Messages": "ダイレクトメッセージ", - "Disable_notifications": "通知を無効化", - "Discussions": "ディスカッション", - "Dont_Have_An_Account": "アカウントがありませんか?", - "Do_you_have_a_certificate": "証明書を持っていますか?", - "Do_you_really_want_to_key_this_room_question_mark": "本当にこのルームを{{key}}しますか?", - "edit": "編集", - "edited": "編集済", - "Edit": "編集", - "Edit_Invite": "編集に招待", - "Email_or_password_field_is_empty": "メールアドレスかパスワードの入力欄が空です", - "Email": "メールアドレス", - "email": "メールアドレス", - "Enable_Auto_Translate": "自動翻訳を有効にする", - "Enable_notifications": "通知を有効にする", - "Everyone_can_access_this_channel": "全員このチャンネルにアクセスできます", - "Error_uploading": "アップロードエラー", - "Expiration_Days": "期限切れ (日)", - "Favorite": "お気に入り", - "Favorites": "お気に入り", - "Files": "ファイル", - "File_description": "ファイルの説明", - "File_name": "ファイル名", - "Finish_recording": "録音停止", - "Following_thread": "スレッド更新時に通知", - "For_your_security_you_must_enter_your_current_password_to_continue": "セキュリティのため、続けるには現在のパスワードを入力してください。", - "Forgot_password_If_this_email_is_registered": "送信したメールアドレスが登録されていれば、パスワードのリセット方法を送信しました。メールアドレスがすぐに来ない場合はやり直してください。", - "Forgot_password": "パスワードを忘れた", - "Forgot_Password": "パスワードを忘れた", - "Full_table": "クリックしてテーブル全体を見る", - "Generate_New_Link": "新しいリンクを生成", - "Group_by_favorites": "お気に入りをグループ化", - "Group_by_type": "タイプ別にグループ化", - "Hide": "隠す", - "Has_joined_the_channel": "はチャンネルに参加しました", - "Has_joined_the_conversation": "は会話に参加しました", - "Has_left_the_channel": "はチャンネルを退出しました", - "In_App_And_Desktop": "アプリ内とデスクトップ", - "In_App_and_Desktop_Alert_info": "アプリを表示中にはバナーを上部に表示し、デスクトップには通知を送ります。", - "Invisible": "状態を隠す", - "Invite": "招待", - "is_a_valid_RocketChat_instance": "は正しいRocket.Chatのインスタンスです", - "is_not_a_valid_RocketChat_instance": "はRocket.Chatのインスタンスではありません", - "is_typing": "が入力中", - "Invalid_or_expired_invite_token": "招待トークンが無効か、期限が切れています", - "Invalid_server_version": "接続しようとしているサーバーのバージョン({{currentVersion}})はサポートされていません。\n\nサポートする最低バージョンは {{minVersion}} です", - "Invite_Link": "招待リンク", - "Invite_users": "ユーザーを招待", - "Join": "参加", - "Just_invited_people_can_access_this_channel": "招待されたユーザーだけがこのチャンネルに参加できます", - "Language": "言語", - "last_message": "最後のメッセージ", - "Leave_channel": "チャンネルを退出", - "leaving_room": "チャンネルを退出", - "Leave": "ルームを退出", - "leave": "退出", - "Legal": "法的項目", - "Light": "ライト", - "License": "ライセンス", - "Livechat": "ライブチャット", - "Login": "ログイン", - "Login_error": "証明書が承認されませんでした。再度お試しください。", - "Login_with": "次でログイン: ", - "Logout": "ログアウト", - "Max_number_of_uses": "最大利用数", - "members": "メンバー", - "Members": "メンバー", - "Mentioned_Messages": "メンションされたメッセージ", - "mentioned": "メンション", - "Mentions": "メンション", - "Message_accessibility": "{{user}} から {{time}} にメッセージ: {{message}}", - "Message_actions": "メッセージアクション", - "Message_pinned": "メッセージをピン留め", - "Message_removed": "メッセージを除く", - "message": "メッセージ", - "messages": "メッセージ", - "Message": "メッセージ", - "Messages": "メッセージ", - "Message_Reported": "メッセージを報告しました", - "Microphone_Permission_Message": "Rocket.Chatは音声メッセージを送信するのにマイクのアクセスの許可が必要です。", - "Microphone_Permission": "マイクの許可", - "Mute": "ミュート", - "muted": "ミュートした", - "My_servers": "自分のサーバー", - "N_people_reacted": "{{n}}人がリアクションしました", - "N_users": "{{n}}人", - "name": "アルファベット", - "Name": "名前", - "Never": "ずっと受け取らない", - "New_Message": "メッセージ", - "New_Password": "新しいパスワード", - "New_Server": "新規サーバー", - "Next": "次へ", - "No_files": "ファイルがありません", - "No_limit": "制限なし", - "No_mentioned_messages": "メンションされたメッセージはありません", - "No_pinned_messages": "ピン留めされたメッセージはありません", - "No_results_found": "結果なし", - "No_starred_messages": "お気に入りされたメッセージはありません", - "No_thread_messages": "スレッドのメッセージはありません", - "No_Message": "メッセージなし", - "No_messages_yet": "まだメッセージはありません", - "No_Reactions": "リアクションなし", - "No_Read_Receipts": "未読通知はありません", - "Not_logged": "ログされていません", - "Not_RC_Server": "Rocket.Chatサーバーではありません。\n{{contact}}", - "Nothing": "何もなし", - "Nothing_to_save": "保存するものはありません!", - "Notify_active_in_this_room": "このルームのアクティブなユーザーに通知する", - "Notify_all_in_this_room": "このルームのユーザー全員に通知する", - "Notifications": "通知", - "Notification_Duration": "通知の期間", - "Notification_Preferences": "通知設定", - "Offline": "オフライン", - "Oops": "おっと!", - "Onboarding_title": "Rocket.Chatへようこそ", - "Online": "オンライン", - "Only_authorized_users_can_write_new_messages": "承認されたユーザーだけが新しいメッセージを書き込めます", - "Open_emoji_selector": "絵文字ピッカーを開く", - "Open_Source_Communication": "オープンソースコミュニケーション", - "Password": "パスワード", - "Permalink_copied_to_clipboard": "リンクをクリップボードにコピーしました!", - "Pin": "ピン留め", - "Pinned_Messages": "ピン留めされたメッセージ", - "pinned": "ピン留めされた", - "Pinned": "ピン留めされました", - "Please_enter_your_password": "パスワードを入力してください", - "Preferences": "設定", - "Preferences_saved": "設定が保存されました。", - "Privacy_Policy": " プライバシーポリシー", - "Private_Channel": "プライベートチャンネル", - "Private": "プライベート", - "Processing": "処理中...", - "Profile_saved_successfully": "プロフィールが保存されました!", - "Profile": "プロフィール", - "Public_Channel": "パブリックチャンネル", - "Public": "パブリック", - "Push_Notifications": "プッシュ通知", - "Push_Notifications_Alert_Info": "通知はアプリを開いていない時に送られます。", - "Quote": "引用", - "Reactions_are_disabled": "リアクションは無効化されています", - "Reactions_are_enabled": "リアクションは有効化されています", - "Reactions": "リアクション", - "Read": "読む", - "Read_Only_Channel": "読み取り専用チャンネル", - "Read_Only": "読み取り専用", - "Read_Receipt": "レシートを見る", - "Receive_Group_Mentions": "グループの通知を受け取る", - "Receive_Group_Mentions_Info": "@all と @here の通知を受け取る", - "Register": "登録", - "Repeat_Password": "パスワードを再入力", - "Replied_on": "返信:", - "replies": "返信", - "reply": "返信", - "Reply": "返信", - "Report": "報告", - "Receive_Notification": "通知を受け取る", - "Receive_notifications_from": "{{name}}からの通知を受け取る", - "Resend": "再送信", - "Reset_password": "パスワードをリセット", - "resetting_password": "パスワードを再設定", - "RESET": "リセット", - "Review_app_title": "アプリにご満足いただけておりますか?", - "Review_app_desc": "{{store}}で5段階で評価をお願いします", - "Review_app_yes": "はい!", - "Review_app_no": "いいえ", - "Review_app_later": "あとで", - "Review_app_unable_store": "{{store}}を開けません。", - "Review_this_app": "アプリをレビューする", - "Roles": "ロール", - "Room_actions": "ルームアクション", - "Room_changed_announcement": "{{userBy}}がアナウンスを変更しました: {{announcement}}", - "Room_changed_description": "{{userBy}}が概要を変更しました: {{description}}", - "Room_changed_privacy": "{{userBy}}がルームタイプを変更しました。: {{type}}", - "Room_changed_topic": "{{userBy}}がトピックを変更しました: {{topic}}", - "Room_Files": "ルームのファイル", - "Room_Info_Edit": "ルーム情報を編集", - "Room_Info": "ルーム情報", - "Room_Members": "ルームのメンバー", - "Room_name_changed": "ルーム名が{{userBy}}により変更されました: {{name}}", - "SAVE": "保存", - "Save_Changes": "変更を保存", - "Save": "保存", - "saving_preferences": "設定を保存中", - "saving_profile": "プロフィールを設定中", - "saving_settings": "サーバー設定を保存中", - "saved_to_gallery": "ギャラリーに保存しました", - "Search_Messages": "メッセージを検索", - "Search": "検索", - "Search_by": "検索種別: ", - "Search_global_users": "グローバルユーザーのための検索", - "Search_global_users_description": "有効にした場合、他の会社やサーバーの誰もがあなたを検索可能になります。", - "Seconds": "{{second}} 秒", - "Select_Avatar": "アバターを選択", - "Select_Server": "サーバーを選択", - "Select_Users": "ユーザーを選択", - "Send": "送信", - "Send_audio_message": "録音メッセージを送信", - "Send_crash_report": "クラッシュレポートを送信", - "Send_message": "メッセージを送信", - "Send_to": "送信先...", - "Sent_an_attachment": "添付ファイルを送信しました", - "Server": "サーバー", - "Servers": "サーバー", - "Server_version": "サーバーバージョン: {{version}}", - "Set_username_subtitle": "ユーザー名はメッセージ中であなたにメンションするのに使われます。", - "Settings": "設定", - "Settings_succesfully_changed": "設定が更新されました!", - "Share": "シェア", - "Share_Link": "リンクをシェアする", - "Share_this_app": "このアプリをシェアする", - "Show_more": "Show more..", - "Show_Unread_Counter": "未読件数を表示する", - "Show_Unread_Counter_Info": "未読件数はリスト上で、チャンネルの右側にバッジで表示されます。", - "Sign_in_your_server": "サーバーに接続", - "Sign_Up": "登録", - "Some_field_is_invalid_or_empty": "不正、または空の入力欄があります。", - "Sorting_by": "{{key}}順", - "Sound": "音", - "Star_room": "お気に入りルーム", - "Star": "お気に入り", - "Starred_Messages": "お気に入りされたメッセージ", - "starred": "お気に入りされています", - "Starred": "お気に入りされています", - "Start_of_conversation": "会話を開始する", - "Started_discussion": "ディスカッションを開始する:", - "Started_call": "{{userBy}}と通話する", - "Submit": "送信", - "Table": "表", - "Take_a_photo": "写真を撮影", - "Take_a_video": "動画を撮影", - "tap_to_change_status": "タップしてステータスを変更", - "Tap_to_view_servers_list": "タップしてサーバーリストを見る", - "Terms_of_Service": " 利用規約 ", - "Theme": "テーマ", - "There_was_an_error_while_action": "{{action}}の最中にエラーが発生しました!", - "This_room_is_blocked": "このルームはブロックされています。", - "This_room_is_read_only": "このルームは読み取り専用です。", - "Thread": "スレッド", - "Threads": "スレッド", - "Timezone": "タイムゾーン", - "To": "To", - "topic": "トピック", - "Topic": "トピック", - "Translate": "翻訳", - "Try_again": "再度お試しください。", - "Two_Factor_Authentication": "2段階認証", - "Type_the_channel_name_here": "ここにチャンネル名を入力", - "unarchive": "アーカイブ解除", - "UNARCHIVE": "アーカイブ解除", - "Unblock_user": "ブロックを解除", - "Unfavorite": "お気に入り解除", - "Unfollowed_thread": "スレッド更新時に通知しない", - "Unmute": "ミュート解除", - "unmuted": "ミュート解除しました", - "Unpin": "ピン留めを解除", - "unread_messages": "未読", - "Unread": "未読", - "Unread_on_top": "未読メッセージを上に表示", - "Unstar": "お気に入り解除", - "Updating": "更新中...", - "Uploading": "アップロード中", - "Upload_file_question_mark": "ファイルをアップロードしますか?", - "Users": "ユーザー", - "User_added_by": "{{userBy}} が {{userAdded}} を追加しました", - "User_Info": "ユーザー情報", - "User_has_been_key": "ユーザーは{{key}}", - "User_is_no_longer_role_by_": "{{userBy}} は {{user}} のロール {{role}} を削除しました。", - "User_muted_by": "{{userBy}} は {{userMuted}} をミュートしました。", - "User_removed_by": "{{userBy}} は {{userRemoved}} を退出させました。", - "User_sent_an_attachment": "{{user}}は添付ファイルを送信しました", - "User_unmuted_by": "{{userUnmuted}} は {{userBy}} にミュート解除されました。", - "User_was_set_role_by_": "{{user}} was set {{role}} by {{userBy}}", - "Username_is_empty": "ユーザー名が空です。", - "Username": "ユーザー名", - "Username_or_email": "ユーザー名かメールアドレス", - "Validating": "検証中", - "Video_call": "ビデオ通話", - "View_Original": "オリジナルを見る", - "Voice_call": "音声通話", - "Websocket_disabled": "Websocketはこのサーバーでは無効化されています。\n{{contact}}", - "Welcome": "ようこそ", - "Whats_your_2fa": "2段階認証のコードを入力してください", - "Without_Servers": "サーバーを除く", - "Write_External_Permission_Message": "Rocket.Chatは画像を保存するためにギャラリーへのアクセスを求めています。", - "Write_External_Permission": "ギャラリーへのアクセス許可", - "Yes_action_it": "はい、{{action}}します!", - "Yesterday": "昨日", - "You_are_in_preview_mode": "プレビューモードです。", - "You_are_offline": "オフラインです。", - "You_can_search_using_RegExp_eg": "正規表現を利用できます。 例: `/^text$/i`", - "You_colon": "あなた: ", - "you_were_mentioned": "あなたがメンションしました", - "you": "あなた", - "You": "あなた", - "Logged_out_by_server": "サーバーからログアウトします。もう一度ログインしてください。", - "You_need_to_access_at_least_one_RocketChat_server_to_share_something": "シェアするためには1つ以上のサーバーにアクセスする必要があります。", - "Your_certificate": "あなたの認証情報", - "Your_invite_link_will_expire_after__usesLeft__uses": "招待リンクはあと{{usesLeft}}回で使用できなくなります。", - "Your_invite_link_will_expire_on__date__or_after__usesLeft__uses": "招待リンクは{{date}}までか、あと{{usesLeft}}回で使用できなくなります。", - "Your_invite_link_will_expire_on__date__": "招待リンクは{{date}}に使用できなくなります。", - "Your_invite_link_will_never_expire": "招待リンクはずっと有効です。", - "Version_no": "バージョン: {{version}}", - "You_will_not_be_able_to_recover_this_message": "このメッセージは復元できません!", - "Change_Language": "言語を変更", - "Crash_report_disclaimer": "クラッシュレポートには問題を特定し、修正するために必要な情報のみが含まれます。チャット内のコンテンツは送信されません。", - "Type_message": "メッセージを入力", - "Room_search": "ルームを検索", - "Room_selection": "ルームを選択 1...9", - "Next_room": "次のルーム", - "Previous_room": "前のルーム", - "New_room": "新しいルーム", - "Upload_room": "ルームにアップロード", - "Search_messages": "メッセージを検索", - "Scroll_messages": "メッセージをスクロール", - "Reply_latest": "最新のメッセージにリプライ", - "Server_selection": "サーバー選択", - "Server_selection_numbers": "サーバー選択 1...9", - "Add_server": "サーバーを追加", - "New_line": "新しい行", - "You_will_be_logged_out_of_this_application": "アプリからログアウトします。", - "Clear": "クリア", - "This_will_clear_all_your_offline_data": "オフラインデータをすべて削除します。", - "invalid-room": "無効なルーム" -} \ No newline at end of file + "1_person_reacted": "1人がリアクション", + "1_user": "1人", + "error-action-not-allowed": "{{action}}の権限がありません。", + "error-application-not-found": "アプリケーションがありません。", + "error-archived-duplicate-name": "アーカイブ名が重複しています: {{room_name}}", + "error-avatar-invalid-url": "画像のURLが正しくありません: {{url}}", + "error-avatar-url-handling": "アバターをURL({{url}})から{{username}}に設定中にエラーが発生しました。", + "error-cant-invite-for-direct-room": "ユーザーを直接ルームに招待することができません。", + "error-could-not-change-email": "メールアドレスを変更できません。", + "error-could-not-change-name": "名前を変更できません。", + "error-could-not-change-username": "ユーザー名を変更できません。", + "error-delete-protected-role": "保護されたロールは削除できません。", + "error-department-not-found": "ロールが存在しません。", + "error-direct-message-file-upload-not-allowed": "ダイレクトメッセージでのファイルのアップロードは許可されていません。", + "error-duplicate-channel-name": "{{channel_name}}と同名のチャンネルが存在します。", + "error-email-domain-blacklisted": "このドメインのメールアドレスはブラックリストに登録されています。", + "error-email-send-failed": "次のメールアドレスの送信に失敗しました: {{message}}", + "error-save-image": "画像の保存に失敗しました。", + "error-field-unavailable": "{{field}}は既に使用されています。", + "error-file-too-large": "ファイルが大きすぎます。", + "error-importer-not-defined": "インポータが正しく定義されていません。Importクラスが見つかりません。", + "error-input-is-not-a-valid-field": "{{input}}は{{field}}の入力として正しくありません。", + "error-invalid-actionlink": "アクションリンクが正しくありません。", + "error-invalid-arguments": "引数が正しくありません。", + "error-invalid-asset": "アセットが不正です。", + "error-invalid-channel": "チャンネル名が不正です。", + "error-invalid-channel-start-with-chars": "不正なチャンネルです。チャンネル名は@か#から開始します。", + "error-invalid-custom-field": "カスタムフィールドが不正です。", + "error-invalid-custom-field-name": "カスタムフィールド名が不正です。半角英数字、ハイフン、アンダースコアのみを使用してください。", + "error-invalid-date": "不正な日時です", + "error-invalid-description": "不正な詳細です", + "error-invalid-domain": "不正なドメインです", + "error-invalid-email": "不正なメールアドレスです。 {{email}}", + "error-invalid-email-address": "不正なメールアドレスです", + "error-invalid-file-height": "ファイルの高さが不正です", + "error-invalid-file-type": "ファイルの種類が不正です", + "error-invalid-file-width": "ファイルの幅が不正です", + "error-invalid-from-address": "不正なアドレスから通知しました", + "error-invalid-integration": "不正なインテグレーションです。", + "error-invalid-message": "不正なメッセージです。", + "error-invalid-method": "不正なメソッドです。", + "error-invalid-name": "不正な名前です", + "error-invalid-password": "不正なパスワードです", + "error-invalid-redirectUri": "不正なリダイレクトURIです", + "error-invalid-role": "不正なロールです", + "error-invalid-room": "不正なルームです", + "error-invalid-room-name": "{{room_name}}は正しいルーム名ではありません。", + "error-invalid-room-type": "{{type}}は正しいルームタイプではありません。", + "error-invalid-settings": "不正な設定が送信されました", + "error-invalid-subscription": "不正な購読です", + "error-invalid-token": "トークンが正しくありません", + "error-invalid-triggerWords": "トリガーワードが正しくありません", + "error-invalid-urls": "URLが正しくありません", + "error-invalid-user": "ユーザーが正しくありません", + "error-invalid-username": "ユーザー名が正しくありません", + "error-invalid-webhook-response": "WebhookのURLが200以外のステータスを返しています", + "error-message-deleting-blocked": "メッセージの削除をブロックされています。", + "error-message-editing-blocked": "メッセージの編集をブロックされています。", + "error-message-size-exceeded": "メッセージの大きさが Message_MaxAllowedSize を超えています。", + "error-missing-unsubscribe-link": "購読停止リンクを入れてください。", + "error-no-tokens-for-this-user": "このユーザーにはトークンがありません。", + "error-not-allowed": "許可されていません。", + "error-not-authorized": "有効化されていません。", + "error-push-disabled": "プッシュは無効化されています。", + "error-remove-last-owner": "ルームの最後のオーナーです。ルームを退出する前に新しいオーナーを設定してください。", + "error-role-in-use": "使用中のロールを削除することはできません。", + "error-role-name-required": "ロール名を入力してください。", + "error-the-field-is-required": "{{field}}の入力欄は必須です。", + "error-too-many-requests": "エラーです。リクエストが多すぎます。リクエストの頻度を落としてください。{{seconds}} 秒以上待ってから再度お試しください。", + "error-user-is-not-activated": "アカウントが有効化されていません。", + "error-user-has-no-roles": "ロールがありません。", + "error-user-limit-exceeded": "#channel_name に招待できるユーザー数の上限を超えています。管理者にお問い合わせください。", + "error-user-not-in-room": "ユーザーがルームにいません。", + "error-user-registration-custom-field": "error-user-registration-custom-field", + "error-user-registration-disabled": "ユーザー登録は無効化されています", + "error-user-registration-secret": "ユーザーの登録は登録用URLからのみ許可されています", + "error-you-are-last-owner": "あなたは最後のオーナーです。ルームを退出する前に別のオーナーを設定してください。", + "Actions": "アクション", + "activity": "アクティビティ", + "Activity": "アクティビティ順", + "Add_Reaction": "リアクションを追加", + "Add_Server": "サーバーを追加", + "Add_users": "ユーザーを追加", + "Admin_Panel": "管理者パネル", + "Alert": "アラート", + "alert": "アラート", + "alerts": "アラート", + "All_users_in_the_channel_can_write_new_messages": "すべてのユーザーが新しいメッセージを書き込みできます", + "All": "すべての", + "All_Messages": "全メッセージ", + "Allow_Reactions": "リアクションを許可", + "Alphabetical": "アルファベット順", + "and_more": "さらに表示", + "and": "と", + "announcement": "アナウンス", + "Announcement": "アナウンス", + "Apply_Your_Certificate": "証明書を適用する", + "ARCHIVE": "アーカイブ", + "archive": "アーカイブ", + "are_typing": "が入力中", + "Are_you_sure_question_mark": "よろしいですか?", + "Are_you_sure_you_want_to_leave_the_room": "{{room}}を退出してもよろしいですか?", + "Audio": "音声", + "Authenticating": "認証", + "Automatic": "自動", + "Auto_Translate": "自動翻訳", + "Avatar_changed_successfully": "アバターを変更しました!", + "Avatar_Url": "アバターURL", + "Away": "退出中", + "Back": "戻る", + "Black": "ブラック", + "Block_user": "ブロックしたユーザー", + "Broadcast_channel_Description": "許可されたユーザーのみが新しいメッセージを書き込めます。他のユーザーは返信することができます", + "Broadcast_Channel": "配信チャンネル", + "Busy": "取り込み中", + "By_proceeding_you_are_agreeing": "続行することにより、私達を承認します", + "Cancel_editing": "編集をキャンセル", + "Cancel_recording": "録音をキャンセル", + "Cancel": "キャンセル", + "changing_avatar": "アバターを変更", + "creating_channel": "チャンネルを作成", + "creating_invite": "招待を作成", + "Channel_Name": "チャンネル名", + "Channels": "チャンネル", + "Chats": "チャット", + "Call_already_ended": "通話は終了しています。", + "Click_to_join": "クリックして参加!", + "Close": "閉じる", + "Close_emoji_selector": "絵文字ピッカーを閉じる", + "Choose": "選択", + "Choose_from_library": "ライブラリから選択", + "Choose_file": "ファイルを選択", + "Code": "コード", + "Collaborative": "コラボ", + "Confirm": "承認", + "Connect": "接続", + "Connected": "接続しました", + "connecting_server": "サーバーに接続中", + "Connecting": "接続中...", + "Contact_us": "お問い合わせ", + "Contact_your_server_admin": "サーバー管理者にお問い合わせください。", + "Continue_with": "次でログイン: ", + "Copied_to_clipboard": "クリップボードにコピー!", + "Copy": "コピー", + "Permalink": "パーマリンク", + "Certificate_password": "パスワード証明書", + "Clear_cache": "ローカルのサーバーキャッシュをクリア", + "Whats_the_password_for_your_certificate": "証明書のパスワードはなんですか?", + "Create_account": "アカウントを作成", + "Create_Channel": "チャンネルを作成", + "Created_snippet": "スニペットを作成", + "Create_a_new_workspace": "新しいワークスペースを作成", + "Create": "作成", + "Dark": "ダーク", + "Dark_level": "ダークレベル", + "Default": "デフォルト", + "Default_browser": "デフォルトのブラウザ", + "Delete_Room_Warning": "ルームを削除すると、ルームに投稿されたすべてのメッセージが削除されます。この操作は取り消せません。", + "delete": "削除", + "Delete": "削除", + "DELETE": "削除", + "deleting_room": "ルームを削除", + "description": "概要", + "Description": "概要", + "Desktop_Options": "デスクトップオプション", + "Directory": "ディレクトリ", + "Direct_Messages": "ダイレクトメッセージ", + "Disable_notifications": "通知を無効化", + "Discussions": "ディスカッション", + "Dont_Have_An_Account": "アカウントがありませんか?", + "Do_you_have_a_certificate": "証明書を持っていますか?", + "Do_you_really_want_to_key_this_room_question_mark": "本当にこのルームを{{key}}しますか?", + "edit": "編集", + "edited": "編集済", + "Edit": "編集", + "Edit_Invite": "編集に招待", + "Email_or_password_field_is_empty": "メールアドレスかパスワードの入力欄が空です", + "Email": "メールアドレス", + "email": "メールアドレス", + "Enable_Auto_Translate": "自動翻訳を有効にする", + "Enable_notifications": "通知を有効にする", + "Everyone_can_access_this_channel": "全員このチャンネルにアクセスできます", + "Error_uploading": "アップロードエラー", + "Expiration_Days": "期限切れ (日)", + "Favorite": "お気に入り", + "Favorites": "お気に入り", + "Files": "ファイル", + "File_description": "ファイルの説明", + "File_name": "ファイル名", + "Finish_recording": "録音停止", + "Following_thread": "スレッド更新時に通知", + "For_your_security_you_must_enter_your_current_password_to_continue": "セキュリティのため、続けるには現在のパスワードを入力してください。", + "Forgot_password_If_this_email_is_registered": "送信したメールアドレスが登録されていれば、パスワードのリセット方法を送信しました。メールアドレスがすぐに来ない場合はやり直してください。", + "Forgot_password": "パスワードを忘れた", + "Forgot_Password": "パスワードを忘れた", + "Full_table": "クリックしてテーブル全体を見る", + "Generate_New_Link": "新しいリンクを生成", + "Group_by_favorites": "お気に入りをグループ化", + "Group_by_type": "タイプ別にグループ化", + "Hide": "隠す", + "Has_joined_the_channel": "はチャンネルに参加しました", + "Has_joined_the_conversation": "は会話に参加しました", + "Has_left_the_channel": "はチャンネルを退出しました", + "In_App_And_Desktop": "アプリ内とデスクトップ", + "In_App_and_Desktop_Alert_info": "アプリを表示中にはバナーを上部に表示し、デスクトップには通知を送ります。", + "Invisible": "状態を隠す", + "Invite": "招待", + "is_a_valid_RocketChat_instance": "は正しいRocket.Chatのインスタンスです", + "is_not_a_valid_RocketChat_instance": "はRocket.Chatのインスタンスではありません", + "is_typing": "が入力中", + "Invalid_or_expired_invite_token": "招待トークンが無効か、期限が切れています", + "Invalid_server_version": "接続しようとしているサーバーのバージョン({{currentVersion}})はサポートされていません。\n\nサポートする最低バージョンは {{minVersion}} です", + "Invite_Link": "招待リンク", + "Invite_users": "ユーザーを招待", + "Join": "参加", + "Just_invited_people_can_access_this_channel": "招待されたユーザーだけがこのチャンネルに参加できます", + "Language": "言語", + "last_message": "最後のメッセージ", + "Leave_channel": "チャンネルを退出", + "leaving_room": "チャンネルを退出", + "Leave": "ルームを退出", + "leave": "退出", + "Legal": "法的項目", + "Light": "ライト", + "License": "ライセンス", + "Livechat": "ライブチャット", + "Login": "ログイン", + "Login_error": "証明書が承認されませんでした。再度お試しください。", + "Login_with": "次でログイン: ", + "Logout": "ログアウト", + "Max_number_of_uses": "最大利用数", + "members": "メンバー", + "Members": "メンバー", + "Mentioned_Messages": "メンションされたメッセージ", + "mentioned": "メンション", + "Mentions": "メンション", + "Message_accessibility": "{{user}} から {{time}} にメッセージ: {{message}}", + "Message_actions": "メッセージアクション", + "Message_pinned": "メッセージをピン留め", + "Message_removed": "メッセージを除く", + "message": "メッセージ", + "messages": "メッセージ", + "Message": "メッセージ", + "Messages": "メッセージ", + "Message_Reported": "メッセージを報告しました", + "Microphone_Permission_Message": "Rocket.Chatは音声メッセージを送信するのにマイクのアクセスの許可が必要です。", + "Microphone_Permission": "マイクの許可", + "Mute": "ミュート", + "muted": "ミュートした", + "My_servers": "自分のサーバー", + "N_people_reacted": "{{n}}人がリアクションしました", + "N_users": "{{n}}人", + "name": "アルファベット", + "Name": "名前", + "Never": "ずっと受け取らない", + "New_Message": "メッセージ", + "New_Password": "新しいパスワード", + "New_Server": "新規サーバー", + "Next": "次へ", + "No_files": "ファイルがありません", + "No_limit": "制限なし", + "No_mentioned_messages": "メンションされたメッセージはありません", + "No_pinned_messages": "ピン留めされたメッセージはありません", + "No_results_found": "結果なし", + "No_starred_messages": "お気に入りされたメッセージはありません", + "No_thread_messages": "スレッドのメッセージはありません", + "No_Message": "メッセージなし", + "No_messages_yet": "まだメッセージはありません", + "No_Reactions": "リアクションなし", + "No_Read_Receipts": "未読通知はありません", + "Not_logged": "ログされていません", + "Not_RC_Server": "Rocket.Chatサーバーではありません。\n{{contact}}", + "Nothing": "何もなし", + "Nothing_to_save": "保存するものはありません!", + "Notify_active_in_this_room": "このルームのアクティブなユーザーに通知する", + "Notify_all_in_this_room": "このルームのユーザー全員に通知する", + "Notifications": "通知", + "Notification_Duration": "通知の期間", + "Notification_Preferences": "通知設定", + "Offline": "オフライン", + "Oops": "おっと!", + "Onboarding_title": "Rocket.Chatへようこそ", + "Online": "オンライン", + "Only_authorized_users_can_write_new_messages": "承認されたユーザーだけが新しいメッセージを書き込めます", + "Open_emoji_selector": "絵文字ピッカーを開く", + "Open_Source_Communication": "オープンソースコミュニケーション", + "Password": "パスワード", + "Permalink_copied_to_clipboard": "リンクをクリップボードにコピーしました!", + "Pin": "ピン留め", + "Pinned_Messages": "ピン留めされたメッセージ", + "pinned": "ピン留めされた", + "Pinned": "ピン留めされました", + "Please_enter_your_password": "パスワードを入力してください", + "Preferences": "設定", + "Preferences_saved": "設定が保存されました。", + "Privacy_Policy": " プライバシーポリシー", + "Private_Channel": "プライベートチャンネル", + "Private": "プライベート", + "Processing": "処理中...", + "Profile_saved_successfully": "プロフィールが保存されました!", + "Profile": "プロフィール", + "Public_Channel": "パブリックチャンネル", + "Public": "パブリック", + "Push_Notifications": "プッシュ通知", + "Push_Notifications_Alert_Info": "通知はアプリを開いていない時に送られます。", + "Quote": "引用", + "Reactions_are_disabled": "リアクションは無効化されています", + "Reactions_are_enabled": "リアクションは有効化されています", + "Reactions": "リアクション", + "Read": "読む", + "Read_Only_Channel": "読み取り専用チャンネル", + "Read_Only": "読み取り専用", + "Read_Receipt": "レシートを見る", + "Receive_Group_Mentions": "グループの通知を受け取る", + "Receive_Group_Mentions_Info": "@all と @here の通知を受け取る", + "Register": "登録", + "Repeat_Password": "パスワードを再入力", + "Replied_on": "返信:", + "replies": "返信", + "reply": "返信", + "Reply": "返信", + "Report": "報告", + "Receive_Notification": "通知を受け取る", + "Receive_notifications_from": "{{name}}からの通知を受け取る", + "Resend": "再送信", + "Reset_password": "パスワードをリセット", + "resetting_password": "パスワードを再設定", + "RESET": "リセット", + "Review_app_title": "アプリにご満足いただけておりますか?", + "Review_app_desc": "{{store}}で5段階で評価をお願いします", + "Review_app_yes": "はい!", + "Review_app_no": "いいえ", + "Review_app_later": "あとで", + "Review_app_unable_store": "{{store}}を開けません。", + "Review_this_app": "アプリをレビューする", + "Roles": "ロール", + "Room_actions": "ルームアクション", + "Room_changed_announcement": "{{userBy}}がアナウンスを変更しました: {{announcement}}", + "Room_changed_description": "{{userBy}}が概要を変更しました: {{description}}", + "Room_changed_privacy": "{{userBy}}がルームタイプを変更しました。: {{type}}", + "Room_changed_topic": "{{userBy}}がトピックを変更しました: {{topic}}", + "Room_Files": "ルームのファイル", + "Room_Info_Edit": "ルーム情報を編集", + "Room_Info": "ルーム情報", + "Room_Members": "ルームのメンバー", + "Room_name_changed": "ルーム名が{{userBy}}により変更されました: {{name}}", + "SAVE": "保存", + "Save_Changes": "変更を保存", + "Save": "保存", + "saving_preferences": "設定を保存中", + "saving_profile": "プロフィールを設定中", + "saving_settings": "サーバー設定を保存中", + "saved_to_gallery": "ギャラリーに保存しました", + "Search_Messages": "メッセージを検索", + "Search": "検索", + "Search_by": "検索種別: ", + "Search_global_users": "グローバルユーザーのための検索", + "Search_global_users_description": "有効にした場合、他の会社やサーバーの誰もがあなたを検索可能になります。", + "Seconds": "{{second}} 秒", + "Select_Avatar": "アバターを選択", + "Select_Server": "サーバーを選択", + "Select_Users": "ユーザーを選択", + "Send": "送信", + "Send_audio_message": "録音メッセージを送信", + "Send_crash_report": "クラッシュレポートを送信", + "Send_message": "メッセージを送信", + "Send_to": "送信先...", + "Sent_an_attachment": "添付ファイルを送信しました", + "Server": "サーバー", + "Servers": "サーバー", + "Server_version": "サーバーバージョン: {{version}}", + "Set_username_subtitle": "ユーザー名はメッセージ中であなたにメンションするのに使われます。", + "Settings": "設定", + "Settings_succesfully_changed": "設定が更新されました!", + "Share": "シェア", + "Share_Link": "リンクをシェアする", + "Share_this_app": "このアプリをシェアする", + "Show_more": "Show more..", + "Show_Unread_Counter": "未読件数を表示する", + "Show_Unread_Counter_Info": "未読件数はリスト上で、チャンネルの右側にバッジで表示されます。", + "Sign_in_your_server": "サーバーに接続", + "Sign_Up": "登録", + "Some_field_is_invalid_or_empty": "不正、または空の入力欄があります。", + "Sorting_by": "{{key}}順", + "Sound": "音", + "Star_room": "お気に入りルーム", + "Star": "お気に入り", + "Starred_Messages": "お気に入りされたメッセージ", + "starred": "お気に入りされています", + "Starred": "お気に入りされています", + "Start_of_conversation": "会話を開始する", + "Started_discussion": "ディスカッションを開始する:", + "Started_call": "{{userBy}}と通話する", + "Submit": "送信", + "Table": "表", + "Take_a_photo": "写真を撮影", + "Take_a_video": "動画を撮影", + "tap_to_change_status": "タップしてステータスを変更", + "Tap_to_view_servers_list": "タップしてサーバーリストを見る", + "Terms_of_Service": " 利用規約 ", + "Theme": "テーマ", + "There_was_an_error_while_action": "{{action}}の最中にエラーが発生しました!", + "This_room_is_blocked": "このルームはブロックされています。", + "This_room_is_read_only": "このルームは読み取り専用です。", + "Thread": "スレッド", + "Threads": "スレッド", + "Timezone": "タイムゾーン", + "To": "To", + "topic": "トピック", + "Topic": "トピック", + "Translate": "翻訳", + "Try_again": "再度お試しください。", + "Two_Factor_Authentication": "2段階認証", + "Type_the_channel_name_here": "ここにチャンネル名を入力", + "unarchive": "アーカイブ解除", + "UNARCHIVE": "アーカイブ解除", + "Unblock_user": "ブロックを解除", + "Unfavorite": "お気に入り解除", + "Unfollowed_thread": "スレッド更新時に通知しない", + "Unmute": "ミュート解除", + "unmuted": "ミュート解除しました", + "Unpin": "ピン留めを解除", + "unread_messages": "未読", + "Unread": "未読", + "Unread_on_top": "未読メッセージを上に表示", + "Unstar": "お気に入り解除", + "Updating": "更新中...", + "Uploading": "アップロード中", + "Upload_file_question_mark": "ファイルをアップロードしますか?", + "Users": "ユーザー", + "User_added_by": "{{userBy}} が {{userAdded}} を追加しました", + "User_Info": "ユーザー情報", + "User_has_been_key": "ユーザーは{{key}}", + "User_is_no_longer_role_by_": "{{userBy}} は {{user}} のロール {{role}} を削除しました。", + "User_muted_by": "{{userBy}} は {{userMuted}} をミュートしました。", + "User_removed_by": "{{userBy}} は {{userRemoved}} を退出させました。", + "User_sent_an_attachment": "{{user}}は添付ファイルを送信しました", + "User_unmuted_by": "{{userUnmuted}} は {{userBy}} にミュート解除されました。", + "User_was_set_role_by_": "{{user}} was set {{role}} by {{userBy}}", + "Username_is_empty": "ユーザー名が空です。", + "Username": "ユーザー名", + "Username_or_email": "ユーザー名かメールアドレス", + "Validating": "検証中", + "Video_call": "ビデオ通話", + "View_Original": "オリジナルを見る", + "Voice_call": "音声通話", + "Websocket_disabled": "Websocketはこのサーバーでは無効化されています。\n{{contact}}", + "Welcome": "ようこそ", + "Whats_your_2fa": "2段階認証のコードを入力してください", + "Without_Servers": "サーバーを除く", + "Write_External_Permission_Message": "Rocket.Chatは画像を保存するためにギャラリーへのアクセスを求めています。", + "Write_External_Permission": "ギャラリーへのアクセス許可", + "Yes_action_it": "はい、{{action}}します!", + "Yesterday": "昨日", + "You_are_in_preview_mode": "プレビューモードです。", + "You_are_offline": "オフラインです。", + "You_can_search_using_RegExp_eg": "正規表現を利用できます。 例: `/^text$/i`", + "You_colon": "あなた: ", + "you_were_mentioned": "あなたがメンションしました", + "you": "あなた", + "You": "あなた", + "Logged_out_by_server": "サーバーからログアウトします。もう一度ログインしてください。", + "You_need_to_access_at_least_one_RocketChat_server_to_share_something": "シェアするためには1つ以上のサーバーにアクセスする必要があります。", + "Your_certificate": "あなたの認証情報", + "Your_invite_link_will_expire_after__usesLeft__uses": "招待リンクはあと{{usesLeft}}回で使用できなくなります。", + "Your_invite_link_will_expire_on__date__or_after__usesLeft__uses": "招待リンクは{{date}}までか、あと{{usesLeft}}回で使用できなくなります。", + "Your_invite_link_will_expire_on__date__": "招待リンクは{{date}}に使用できなくなります。", + "Your_invite_link_will_never_expire": "招待リンクはずっと有効です。", + "Version_no": "バージョン: {{version}}", + "You_will_not_be_able_to_recover_this_message": "このメッセージは復元できません!", + "Change_Language": "言語を変更", + "Crash_report_disclaimer": "クラッシュレポートには問題を特定し、修正するために必要な情報のみが含まれます。チャット内のコンテンツは送信されません。", + "Type_message": "メッセージを入力", + "Room_search": "ルームを検索", + "Room_selection": "ルームを選択 1...9", + "Next_room": "次のルーム", + "Previous_room": "前のルーム", + "New_room": "新しいルーム", + "Upload_room": "ルームにアップロード", + "Search_messages": "メッセージを検索", + "Scroll_messages": "メッセージをスクロール", + "Reply_latest": "最新のメッセージにリプライ", + "Server_selection": "サーバー選択", + "Server_selection_numbers": "サーバー選択 1...9", + "Add_server": "サーバーを追加", + "New_line": "新しい行", + "You_will_be_logged_out_of_this_application": "アプリからログアウトします。", + "Clear": "クリア", + "This_will_clear_all_your_offline_data": "オフラインデータをすべて削除します。", + "invalid-room": "無効なルーム" +} diff --git a/app/i18n/locales/nl.json b/app/i18n/locales/nl.json index 7c823c9ba9..ffe4ee38d3 100644 --- a/app/i18n/locales/nl.json +++ b/app/i18n/locales/nl.json @@ -1,772 +1,772 @@ { - "1_person_reacted": "1 persoon heeft gereageerd", - "1_user": "1 gebruiker", - "error-action-not-allowed": "{{action}} is niet toegestaan", - "error-application-not-found": "Applicatie niet gevonden", - "error-archived-duplicate-name": "Er is een gearchiveerd kanaal met de naam {{room_name}}", - "error-avatar-invalid-url": "Ongeldige avatar-URL: {{url}}", - "error-avatar-url-handling": "Fout bij het verwerken van de avatar-instelling van een URL ({{url}}) voor {{username}}", - "error-cant-invite-for-direct-room": "Kan gebruikers in directe kamers niet uitnodigen", - "error-could-not-change-email": "Kan e-mail niet veranderen", - "error-could-not-change-name": "Kan naam niet veranderen", - "error-could-not-change-username": "Kan gebruikersnaam niet veranderen", - "error-could-not-change-status": "Kan status niet wijzigen", - "error-delete-protected-role": "Kan een beveiligde rol niet verwijderen", - "error-department-not-found": "Afdeling niet gevonden", - "error-direct-message-file-upload-not-allowed": "Delen van bestanden in privéberichten niet toegestaan", - "error-duplicate-channel-name": "Een kanaal met naam {{room_name}} bestaat", - "error-email-domain-blacklisted": "Het e-maildomein staat op de zwarte lijst", - "error-email-send-failed": "Fout bij het verzenden van e-mail: {{message}}", - "error-save-image": "Fout bij het opslaan van afbeelding", - "error-save-video": "Fout bij het opslaan van video", - "error-field-unavailable": "{{field}} is al in gebruik :(", - "error-file-too-large": "Bestand is te groot", - "error-importer-not-defined": "De importeur is niet correct gedefinieerd, de klasse Import ontbreekt.", - "error-input-is-not-a-valid-field": "{{input}} is geen geldig {{field}}", - "error-invalid-actionlink": "Ongeldige actielink", - "error-invalid-arguments": "Ongeldige argumenten", - "error-invalid-asset": "Ongeldig item", - "error-invalid-channel": "Ongeldig kanaal.", - "error-invalid-channel-start-with-chars": "Ongeldig kanaal. Begin met @ of #", - "error-invalid-custom-field": "Ongeldig aangepast veld", - "error-invalid-custom-field-name": "Ongeldige aangepaste veldnaam. Gebruik alleen letters, cijfers, koppeltekens en underscores.", - "error-invalid-date": "Ongeldige datum opgegeven.", - "error-invalid-description": "Ongeldige beschrijving", - "error-invalid-domain": "Ongeldig domein", - "error-invalid-email": "Ongeldig e-mail {{email}}", - "error-invalid-email-address": "Ongeldig e-mailadres", - "error-invalid-file-height": "Ongeldige bestandshoogte", - "error-invalid-file-type": "Ongeldig bestandstype", - "error-invalid-file-width": "Ongeldige bestandsbreedte", - "error-invalid-from-address": "Je hebt een ongeldig FROM adres opgegeven.", - "error-invalid-integration": "Ongeldige integratie", - "error-invalid-message": "Ongeldig bericht", - "error-invalid-method": "Ongeldige methode", - "error-invalid-name": "Ongeldige naam", - "error-invalid-password": "Ongeldig wachtwoord", - "error-invalid-redirectUri": "Ongeldige redirectUri", - "error-invalid-role": "Ongeldige rol", - "error-invalid-room": "Ongeldige kamer", - "error-invalid-room-name": "{{room_name}} is geen geldige kamernaam", - "error-invalid-room-type": "{{type}} is geen geldig kamertype.", - "error-invalid-settings": "Ongeldige instellingen opgegeven", - "error-invalid-subscription": "Ongeldig abonnement", - "error-invalid-token": "Ongeldige token", - "error-invalid-triggerWords": "Ongeldige triggerWoorden", - "error-invalid-urls": "Ongeldige URL's", - "error-invalid-user": "Ongeldige gebruiker", - "error-invalid-username": "Ongeldige gebruikersnaam", - "error-invalid-webhook-response": "De webhook-URL heeft met een andere status dan 200 gereageerd", - "error-message-deleting-blocked": "Het verwijderen van berichten is geblokkeerd", - "error-message-editing-blocked": "Het aanpassen van berichten is geblokkeerd", - "error-message-size-exceeded": "Berichtgrootte is groter dan Message_MaxAllowedSize", - "error-missing-unsubscribe-link": "Je moet de link [unsubscribe] opgeven.", - "error-no-owner-channel": "Je bent niet de eigenaar van het kanaal", - "error-no-tokens-for-this-user": "Er zijn geen tokens voor deze gebruiker", - "error-not-allowed": "Niet toegestaan", - "error-not-authorized": "Geen bevoegdheid", - "error-push-disabled": "Push is uitgeschakeld", - "error-remove-last-owner": "Dit is de laatste eigenaar. Stel een nieuwe eigenaar in voordat je deze verwijdert.", - "error-role-in-use": "Kan rol niet verwijderen omdat deze in gebruik is", - "error-role-name-required": "Rolnaam is vereist", - "error-the-field-is-required": "Het veld {{field}} is verplicht.", - "error-too-many-requests": "Fout, te veel verzoeken. Vertraag, alsjeblieft. Je moet {{seconds}} seconden wachten voordat je het opnieuw probeert.", - "error-user-is-not-activated": "Gebruiker is niet geactiveerd", - "error-user-has-no-roles": "Gebruiker heeft geen rollen", - "error-user-limit-exceeded": "Het aantal gebruikers die je probeert uit te nodigen voor #channel_name overschrijdt de limiet ingesteld door de beheerder", - "error-user-not-in-room": "Gebruiker is niet in deze kamer", - "error-user-registration-custom-field": "error-user-registration-custom-field", - "error-user-registration-disabled": "Gebruikersregistratie is uitgeschakeld", - "error-user-registration-secret": "Gebruikersregistratie is alleen via geheime URL toegestaan", - "error-you-are-last-owner": "Je bent de laatste eigenaar. Stel een nieuwe eigenaar in voordat je de kamer verlaat.", - "error-status-not-allowed": "Onzichtbare status is uitgeschakeld", - "Actions": "Acties", - "activity": "activiteit", - "Activity": "Activiteit", - "Add_Reaction": "Reactie toevoegen", - "Add_Server": "Server toevoegen", - "Add_users": "Gebruikers toevoegen", - "Admin_Panel": "Admin Paneel", - "Agent": "Agent", - "Alert": "Waarschuwing", - "alert": "waarschuwing", - "alerts": "waarschuwingen", - "All_users_in_the_channel_can_write_new_messages": "Alle gebruikers in het kanaal kunnen nieuwe berichten schrijven", - "All_users_in_the_team_can_write_new_messages": "Alle gebruikers in het team kunnen nieuwe berichten schrijven", - "A_meaningful_name_for_the_discussion_room": "Een betekenisvolle naam voor de discussieruimte", - "All": "Alle", - "All_Messages": "Alle berichten", - "Allow_Reactions": "Reacties toestaan", - "Alphabetical": "Alfabetisch", - "and_more": "en meer", - "and": "en", - "announcement": "aankondiging", - "Announcement": "Aankondiging", - "Apply_Your_Certificate": "Pas jouw certificaat toe", - "ARCHIVE": "ARCHIVEER", - "archive": "archiveer", - "are_typing": "zijn aan het typen", - "Are_you_sure_question_mark": "Weet je het zeker?", - "Are_you_sure_you_want_to_leave_the_room": "Weet je zeker dat je de kamer {{room}} wilt verlaten?", - "Audio": "Audio", - "Authenticating": "Authenticatie", - "Automatic": "Automatisch", - "Auto_Translate": "Automatisch vertalen", - "Avatar_changed_successfully": "Avatar succesvol gewijzigd!", - "Avatar_Url": "Avatar-URL", - "Away": "Afwezig", - "Back": "Terug", - "Black": "Zwart", - "Block_user": "Blokkeer gebruiker", - "Browser": "Browser", - "Broadcast_channel_Description": "Alleen geautoriseerde gebruikers kunnen nieuwe berichten schrijven, maar de andere gebruikers zullen kunnen antwoorden", - "Broadcast_Channel": "Uitzendkanaal", - "Busy": "Bezig", - "By_proceeding_you_are_agreeing": "Door verder te gaan ga je akkoord met onze", - "Cancel_editing": "Bewerken annuleren", - "Cancel_recording": "Opname annuleren", - "Cancel": "Annuleren", - "changing_avatar": "avatar aan het veranderen", - "creating_channel": "kanaal aan het maken", - "creating_invite": "uitnodiging maken", - "Channel_Name": "Kanaal naam", - "Channels": "Kanalen", - "Chats": "Chats", - "Call_already_ended": "Gesprek al beeïndigd!", - "Clear_cookies_alert": "Wilt u alle cookies wissen?", - "Clear_cookies_desc": "Met deze actie worden alle inlogcookies gewist, zodat u op andere accounts kunt inloggen.", - "Clear_cookies_yes": "Ja, cookies wissen", - "Clear_cookies_no": "Nee, bewaar cookies", - "Click_to_join": "Klik om mee te doen!", - "Close": "Sluiten", - "Close_emoji_selector": "Emoji-kiezer sluiten", - "Closing_chat": "Chat sluiten", - "Change_language_loading": "Taal veranderen", - "Chat_closed_by_agent": "Chat gesloten door agent", - "Choose": "Kies", - "Choose_from_library": "Kies uit bibliotheek", - "Choose_file": "Kies bestand", - "Choose_where_you_want_links_be_opened": "Kies waar je links wilt openen", - "Code": "Code", - "Code_or_password_invalid": "Code of wachtwoord ongeldig", - "Collaborative": "Samenwerkend", - "Confirm": "Bevestig", - "Connect": "Verbinden", - "Connected": "Verbonden", - "connecting_server": "verbonden met de server", - "Connecting": "Aan het verbinden...", - "Contact_us": "Neem contact op", - "Contact_your_server_admin": "Neem contact op met je serverbeheerder.", - "Continue_with": "Ga verder met", - "Copied_to_clipboard": "Gekopieerd naar klembord!", - "Copy": "Kopiëren", - "Conversation": "Conversatie", - "Permalink": "Permalink", - "Certificate_password": "Certificaat wachtwoord", - "Clear_cache": "Lokale server cache wissen", - "Clear_cache_loading": "Cache wissen.", - "Whats_the_password_for_your_certificate": "Wat is het wachtwoord voor jouw certificaat?", - "Create_account": "Account aanmaken", - "Create_Channel": "Kanaal aanmaken", - "Create_Direct_Messages": "Directe berichten aanmaken", - "Create_Discussion": "Discussie aanmaken", - "Created_snippet": "knipsel aangemaakt", - "Create_a_new_workspace": "Een nieuwe werkruimte aanmaken", - "Create": "Aanmaken", - "Custom_Status": "Aangepaste status", - "Dark": "Donker", - "Dark_level": "Donker niveau", - "Default": "Standaard", - "Default_browser": "Standaard browser", - "Delete_Room_Warning": "Als je een kamer verwijdert, worden alle berichten die in de kamer geplaatst zijn, verwijderd. Dit kan niet ongedaan worden gemaakt.", - "Department": "Afdeling", - "delete": "verwijderen", - "Delete": "Verwijderen", - "DELETE": "VERWIJDEREN", - "move": "verplaatsen", - "deleting_room": "kamer verwijderen", - "description": "omschrijving", - "Description": "Omschrijving", - "Desktop_Options": "Bureaubladopties", - "Desktop_Notifications": "Desktopmeldingen", - "Desktop_Alert_info": "Deze meldingen worden op desktop geleverd", - "Directory": "Map", - "Direct_Messages": "Directe berichten", - "Disable_notifications": "Zet notificaties uit", - "Discussions": "Discussies", - "Discussion_Desc": "Help het overzicht te houden over wat er aan de hand is! Door een discussie aan te maken, wordt een subkanaal van het geselecteerde kanaal aangemaakt en worden beide gekoppeld.", - "Discussion_name": "Discussienaam", - "Done": "Gedaan", - "Dont_Have_An_Account": "Heb je geen account?", - "Do_you_have_an_account": "Heb je een account?", - "Do_you_have_a_certificate": "Heb je een certificaat?", - "Do_you_really_want_to_key_this_room_question_mark": "Wil je deze kamer echt {{key}}?", - "E2E_Encryption": "E2E-codering", - "E2E_How_It_Works_info1": "U kunt nu versleutelde privégroepen en directe berichten aanmaken. U kunt ook bestaande privégroepen of DM's wijzigen in versleuteld.", - "E2E_How_It_Works_info2": "Dit is *end-to-end codering*, dus de sleutel om jouw berichten te coderen/decoderen en deze wordt niet op de server opgeslagen. Daarom *moet je dit wachtwoord op een veilige plaats opslaan* waar je later toegang hebt als je dat nodig hebt.", - "E2E_How_It_Works_info3": "Als je doorgaat, wordt er automatisch een E2E-wachtwoord gegenereerd.", - "E2E_How_It_Works_info4": "Je kan ook op elk moment een nieuw wachtwoord voor uw coderingssleutel instellen vanuit elke browser waarin u het bestaande E2E-wachtwoord hebt ingevoerd.", - "edit": "bewerk", - "edited": "bewerkt", - "Edit": "Bewerk", - "Edit_Status": "Status bewerken", - "Edit_Invite": "Bewerk uitnodiging", - "End_to_end_encrypted_room": "End-to-end versleutelde kamer", - "end_to_end_encryption": "end-to-end encryptie", - "Email_Notification_Mode_All": "Elke vermelding/DM", - "Email_Notification_Mode_Disabled": "Uitgeschakeld", - "Email_or_password_field_is_empty": "E-mail of wachtwoordveld is leeg", - "Email": "E-mail", - "email": "e-mail", - "Empty_title": "Lege titel", - "Enable_Auto_Translate": "Automatisch vertalen inschakelen", - "Enable_notifications": "Notificaties aanzetten", - "Encrypted": "Versleuteld", - "Encrypted_message": "Versleuteld bericht", - "Enter_Your_E2E_Password": "Voer uw E2E-wachtwoord in", - "Enter_Your_Encryption_Password_desc1": "Hiermee krijg je toegang tot uw gecodeerde privégroepen en directe berichten.", - "Enter_Your_Encryption_Password_desc2": "Op elke plaats waar je de chat gebruikt, moet je het wachtwoord invoeren om berichten te coderen/decoderen.", - "Encryption_error_title": "Jouw coderingswachtwoord lijkt verkeerd", - "Encryption_error_desc": "Het was niet mogelijk om uw coderingssleutel te decoderen om te worden geïmporteerd.", - "Everyone_can_access_this_channel": "Iedereen heeft toegang tot dit kanaal", - "Everyone_can_access_this_team": "Iedereen heeft toegang tot dit team", - "Error_uploading": "Fout bij uploaden", - "Expiration_Days": "Vervaldatum (Dagen)", - "Favorite": "Favoriet", - "Favorites": "Favorieten", - "Files": "Bestanden", - "File_description": "Bestandsbeschrijving", - "File_name": "Bestandsnaam", - "Finish_recording": "Opname beëindigen", - "Following_thread": "Volg discussie", - "For_your_security_you_must_enter_your_current_password_to_continue": "Voor je veiligheid moet je je huidige wachtwoord invoeren om door te gaan", - "Forgot_password_If_this_email_is_registered": "Als dit e-mailadres geregistreerd is, sturen we instructies om je wachtwoord opnieuw in te stellen. Als je geen e-mail ontvangt, kom dan terug en probeer het opnieuw.", - "Forgot_password": "Wachtwoord vergeten?", - "Forgot_Password": "Wachtwoord vergeten", - "Forward": "Doorsturen", - "Forward_Chat": "Chat doorsturen", - "Forward_to_department": "Doorsturen naar afdeling", - "Forward_to_user": "Doorsturen naar gebruiker", - "Full_table": "Klik om de volledige tabel te zien", - "Generate_New_Link": "Nieuwe link genereren", - "Group_by_favorites": "Groepeer favorieten", - "Group_by_type": "Groeperen op type", - "Hide": "Verberg", - "Has_joined_the_channel": "is bij het kanaal gekomen", - "Has_joined_the_conversation": "heeft zich bij het gesprek aangesloten", - "Has_left_the_channel": "heeft het kanaal verlaten", - "Hide_System_Messages": "Verberg systeemberichten", - "Hide_type_messages": "Verberg \"{{type}}\" berichten", - "How_It_Works": "Hoe het werkt", - "Message_HideType_uj": "Gebruiker neemt deel", - "Message_HideType_ul": "Gebruiker vertrokken", - "Message_HideType_ru": "Gebruiker verwijderd", - "Message_HideType_au": "Gebruiker toegevoegd", - "Message_HideType_mute_unmute": "Gebruiker gedempt / kan weer praten", - "Message_HideType_r": "Kamernaam gewijzigd", - "Message_HideType_ut": "Gebruiker neemt deel aan gesprek", - "Message_HideType_wm": "Welkom", - "Message_HideType_rm": "Bericht verwijderd", - "Message_HideType_subscription_role_added": "Kreeg rol", - "Message_HideType_subscription_role_removed": "Rol niet langer gedefinieerd", - "Message_HideType_room_archived": "Kamer gearchiveerd", - "Message_HideType_room_unarchived": "Kamer niet gearchiveerd", - "I_Saved_My_E2E_Password": "Ik heb mijn E2E-wachtwoord opgeslagen", - "IP": "IP", - "In_app": "In-app", - "In_App_And_Desktop": "In-app en desktop", - "In_App_and_Desktop_Alert_info": "Geeft een banner boven aan het scherm weer wanneer de app geopend is, en geeft een melding op desktop weer", - "Invisible": "Onzichtbaar", - "Invite": "Nodig uit", - "is_a_valid_RocketChat_instance": "is een geldige Rocket.Chat instantie", - "is_not_a_valid_RocketChat_instance": "is geen geldige Rocket.Chat instantie", - "is_typing": "is aan het typen", - "Invalid_or_expired_invite_token": "Ongeldige of verlopen uitnodigingstoken", - "Invalid_server_version": "De server waarmee je probeert te verbinden, gebruikt een versie die niet meer door de app wordt ondersteund: {{currentVersion}}.\n\nWe hebben versie {{minVersion}} nodig", - "Invite_Link": "Uitnodigingslink", - "Invite_users": "Gebruikers uitnodigen", - "Join": "Doe mee", - "Join_Code": "Deelnamecode", - "Insert_Join_Code": "Deelnamecode invoegen", - "Join_our_open_workspace": "Word lid van onze open werkruimte", - "Join_your_workspace": "Word lid van jouw werkruimte", - "Just_invited_people_can_access_this_channel": "Alleen uitgenodigde mensen hebben toegang tot dit kanaal", - "Just_invited_people_can_access_this_team": "Alleen uitgenodigde mensen hebben toegang tot dit team", - "Language": "Taal", - "last_message": "laatste bericht", - "Leave_channel": "Kanaal verlaten", - "leaving_room": "ruimte verlaten", - "Leave": "Verlaten", - "leave": "verlaten", - "Legal": "Legaal", - "Light": "Licht", - "License": "Licentie", - "Livechat": "Livechat", - "Livechat_edit": "Livechat bewerken", - "Login": "Inloggen", - "Login_error": "Je inloggegevens zijn geweigerd! Probeer het opnieuw.", - "Login_with": "Inloggen met", - "Logging_out": "Uitloggen.", - "Logout": "Uitloggen", - "Max_number_of_uses": "Max aantal toepassingen", - "Max_number_of_users_allowed_is_number": "Max aantal toegestane gebruikers is {{maxUsers}}", - "members": "leden", - "Members": "Leden", - "Mentioned_Messages": "Vermelde berichten", - "mentioned": "vermeld", - "Mentions": "Vermeldingen", - "Message_accessibility": "Bericht van {{user}} om {{time}}: {{message}}", - "Message_actions": "Berichtacties", - "Message_pinned": "Bericht vastgezet", - "Message_removed": "Bericht verwijderd", - "Message_starred": "Bericht met ster", - "Message_unstarred": "Bericht zonder ster", - "message": "bericht", - "messages": "berichten", - "Message": "Bericht", - "Messages": "Berichten", - "Message_Reported": "Bericht gerapporteerd", - "Microphone_Permission_Message": "Rocket.Chat heeft toegang tot je microfoon nodig zodat je een audiobericht kunt verzenden.", - "Microphone_Permission": "Microfoontoestemming", - "Mute": "Dempen", - "muted": "gedempt", - "My_servers": "Mijn servers", - "N_people_reacted": "{{n}} mensen hebben gereageerd", - "N_users": "{{n}} gebruikers", - "N_channels": "{{n}} kanalen", - "name": "naam", - "Name": "Naam", - "Navigation_history": "Navigatie geschiedenis", - "Never": "Nooit", - "New_Message": "Nieuw bericht", - "New_Password": "Nieuw wachtwoord", - "New_Server": "Nieuwe server", - "Next": "Volgende", - "No_files": "Geen bestanden", - "No_limit": "Geen limiet", - "No_mentioned_messages": "Geen vermelde berichten", - "No_pinned_messages": "Geen vastgezette berichten", - "No_results_found": "Geen resultaten gevonden", - "No_starred_messages": "Geen berichten met ster gemarkeerd", - "No_thread_messages": "Geen discussieberichten", - "No_label_provided": "Geen {{label}} opgegeven.", - "No_Message": "Geen bericht", - "No_messages_yet": "Nog geen berichten", - "No_Reactions": "Geen reacties", - "No_Read_Receipts": "Geen leesbevestigingen", - "Not_logged": "Niet ingelogd", - "Not_RC_Server": "Dit is geen Rocket.Chat-server.\n{{contact}}", - "Nothing": "Niets", - "Nothing_to_save": "Niets om op te slaan!", - "Notify_active_in_this_room": "Waarschuw actieve gebruikers in deze kamer", - "Notify_all_in_this_room": "Breng iedereen in deze kamer op de hoogte", - "Notifications": "Notificaties", - "Notification_Duration": "Duur van de notificatie", - "Notification_Preferences": "Notificatievoorkeuren", - "No_available_agents_to_transfer": "Geen beschikbare agenten om door te sturen", - "Offline": "Offline", - "Oops": "Oeps!", - "Omnichannel": "Omnichannel", - "Open_Livechats": "Bezig met chatten", - "Omnichannel_enable_alert": "Je bent niet beschikbaar op Omnichannel. Wil je beschikbaar zijn?", - "Onboarding_description": "Een werkruimte is de ruimte van jouw team of organisatie om samen te werken. Vraag aan de beheerder van de werkruimte een adres om lid te worden of maak er een aan voor jouw team.", - "Onboarding_join_workspace": "Word lid van een werkruimte", - "Onboarding_subtitle": "Meer dan teamsamenwerking", - "Onboarding_title": "Welkom bij Rocket.Chat", - "Onboarding_join_open_description": "Word lid van onze open werkruimte om met het Rocket.Chat team en de community te chatten.", - "Onboarding_agree_terms": "Door verder te gaan, ga je akkoord met Rocket.Chat", - "Onboarding_less_options": "Minder opties", - "Onboarding_more_options": "Meer opties", - "Online": "Online", - "Only_authorized_users_can_write_new_messages": "Alleen geautoriseerde gebruikers kunnen nieuwe berichten schrijven", - "Open_emoji_selector": "Emoji-kiezer openen", - "Open_Source_Communication": "Open Source Communicatie", - "Open_your_authentication_app_and_enter_the_code": "Open je authenticatie-app en voer de code in.", - "OR": "OF", - "OS": "OS", - "Overwrites_the_server_configuration_and_use_room_config": "Overschrijft de serverconfiguratie en gebruikt kamer config", - "Password": "Wachtwoord", - "Parent_channel_or_group": "Bovenliggend kanaal of groep", - "Permalink_copied_to_clipboard": "Permalink gekopiëerd naar klembord!", - "Phone": "Telefoon", - "Pin": "Vastzetten", - "Pinned_Messages": "Vastgezette berichten", - "pinned": "vastgezet", - "Pinned": "Vastgezet", - "Please_add_a_comment": "Voeg een reactie toe", - "Please_enter_your_password": "Voer je wachtwoord in", - "Please_wait": "Even geduld.", - "Preferences": "Voorkeuren", - "Preferences_saved": "Voorkeuren opgeslagen!", - "Privacy_Policy": " Privacybeleid", - "Private_Channel": "Privékanaal", - "Private": "Privé", - "Processing": "Verwerking...", - "Profile_saved_successfully": "Profiel succesvol opgeslagen!", - "Profile": "Profiel", - "Public_Channel": "Publiek kanaal", - "Public": "Publiek", - "Push_Notifications": "Pushmeldingen", - "Push_Notifications_Alert_Info": "Deze notificaties worden aan jouw enkel geleverd als de app niet geopend is", - "Quote": "Citaat", - "Reactions_are_disabled": "Reacties zijn uitgeschakeld", - "Reactions_are_enabled": "Reacties zijn ingeschakeld", - "Reactions": "Reacties", - "Read": "Lezen", - "Read_External_Permission_Message": "Rocket.Chat heeft toegang nodig tot foto's, media en bestanden op je apparaat", - "Read_External_Permission": "Lees toestemming voor media", - "Read_Only_Channel": "Alleen-lezen kanaal", - "Read_Only": "Alleen lezen", - "Read_Receipt": "Leesbevestiging", - "Receive_Group_Mentions": "Groepsvermeldingen ontvangen", - "Receive_Group_Mentions_Info": "Ontvang @all en @here vermeldingen", - "Register": "Registreren", - "Repeat_Password": "Herhaal wachtwoord", - "Replied_on": "Beantwoord op:", - "replies": "antwoordt", - "reply": "antwoord", - "Reply": "Antwoord", - "Report": "Rapporteren", - "Receive_Notification": "Notificatie ontvangen", - "Receive_notifications_from": "Ontvang notificaties van {{name}}", - "Resend": "Opnieuw verzenden", - "Reset_password": "Wachtwoord resetten", - "resetting_password": "wachtwoord aan het resetten", - "RESET": "RESET", - "Return": "Terug", - "Review_app_title": "Geniet je van deze app?", - "Review_app_desc": "Geef ons 5 sterren op {{store}}", - "Review_app_yes": "Zeker!", - "Review_app_no": "Nee", - "Review_app_later": "Misschien later", - "Review_app_unable_store": "Kan {{store}} niet openen", - "Review_this_app": "Beoordeel deze app", - "Remove": "Verwijderen", - "remove": "verwijderen", - "Roles": "Rollen", - "Room_actions": "Kameracties", - "Room_changed_announcement": "Kameraankondiging gewijzigd in: {{announcement}} door {{userBy}}", - "Room_changed_avatar": "Kameravatar gewijzigd door {{userBy}}", - "Room_changed_description": "Kamerbeschrijving gewijzigd in: {{description}} door {{userBy}}", - "Room_changed_privacy": "Kamertype gewijzigd in: {{type}} door {{userBy}}", - "Room_changed_topic": "Oonderwerp van kamer gewijzigd in: {{topic}} door {{userBy}}", - "Room_Files": "Kamerbestanden", - "Room_Info_Edit": "Kamer info bewerken", - "Room_Info": "Kamer info", - "Room_Members": "Kamerleden", - "Room_name_changed": "Kamernaam gewijzigd in: {{name}} door {{userBy}}", - "SAVE": "OPSLAAN", - "Save_Changes": "Wijzigingen opslaan", - "Save": "Opslaan", - "Saved": "Opgeslagen", - "saving_preferences": "voorkeuren opslaan", - "saving_profile": "profiel opslaan", - "saving_settings": "instellingen opslaan", - "saved_to_gallery": "Opgeslagen in galerij", - "Save_Your_E2E_Password": "Bewaar jouw E2E-wachtwoord", - "Save_Your_Encryption_Password": "Bewaar jouw versleutelingswachtwoord", - "Save_Your_Encryption_Password_warning": "Dit wachtwoord wordt nergens opgeslagen, bewaar het dus zorgvuldig ergens anders.", - "Save_Your_Encryption_Password_info": "Indien je je wachtwoord verliest, is er geen enkel manier om het te herstellen en verlies je toegang tot je berichten.", - "Search_Messages": "Berichten zoeken", - "Search": "Zoeken", - "Search_by": "Zoeken op", - "Search_global_users": "Zoeken naar wereldwijde gebruikers", - "Search_global_users_description": "Als je dit inschakelt, kan je gebruikers van andere bedrijven en servers opzoeken.", - "Seconds": "{{second}} seconden", - "Security_and_privacy": "Veiligheid en privacy", - "Select_Avatar": "Selecteer avatar", - "Select_Server": "Selecteer server", - "Select_Users": "Selecteer gebruikers", - "Select_a_Channel": "Selecteer een kanaal", - "Select_a_Department": "Selecteer een afdeling", - "Select_an_option": "Selecteer een optie", - "Select_a_User": "Selecteer een gebruiker", - "Send": "Verzenden", - "Send_audio_message": "Audiobericht verzenden", - "Send_crash_report": "Crashrapport verzenden", - "Send_message": "Bericht verzenden", - "Send_me_the_code_again": "Stuur me de code opnieuw", - "Send_to": "Verzenden naar...", - "Sending_to": "Verzenden naar", - "Sent_an_attachment": "Een bijlage verzonden", - "Server": "Server", - "Servers": "Servers", - "Server_version": "Server versie: {{version}}", - "Set_username_subtitle": "De gebruikersnaam wordt gebruikt om anderen toe te staan jou in berichten te vermelden", - "Set_custom_status": "Aangepaste status instellen", - "Set_status": "Status instellen", - "Status_saved_successfully": "Status succesvol opgeslagen!", - "Settings": "Instellingen", - "Settings_succesfully_changed": "Instellingen succesvol gewijzigd!", - "Share": "Delen", - "Share_Link": "Deel link", - "Share_this_app": "Deel deze app", - "Show_more": "Meer tonen..", - "Show_Unread_Counter": "Toon ongelezen teller", - "Show_Unread_Counter_Info": "Ongelezen teller wordt weergegeven als een badge aan de rechterkant van het kanaal, in de lijst", - "Sign_in_your_server": "Log in op je server", - "Sign_Up": "Registreren", - "Some_field_is_invalid_or_empty": "Sommige velden zijn ongeldig of leeg", - "Sorting_by": "Sorteren op {{key}}", - "Sound": "Geluid", - "Star_room": "Favoriete kanalen", - "Star": "Ster", - "Starred_Messages": "Berichten met ster gemarkeerd", - "starred": "met ster gemarkeerd", - "Starred": "Met ster gemarkeerd", - "Start_of_conversation": "Begin van een gesprek", - "Start_a_Discussion": "Start een discussie", - "Started_discussion": "Begin van een discussie:", - "Started_call": "Oproep gestart door {{userBy}}", - "Submit": "Verzenden", - "Table": "Tabel", - "Tags": "Tags", - "Take_a_photo": "Neem een foto", - "Take_a_video": "Maak een video", - "Take_it": "Pak het!", - "tap_to_change_status": "tik om de status te wijzigen", - "Tap_to_view_servers_list": "Tik om de serverlijst te bekijken", - "Terms_of_Service": " Servicevoorwaarden ", - "Theme": "Thema", - "The_user_wont_be_able_to_type_in_roomName": "De gebruiker zal in {{roomName}} niet kunnen typen", - "The_user_will_be_able_to_type_in_roomName": "De gebruiker zal in {{roomName}} kunnen typen", - "There_was_an_error_while_action": "Er is een fout opgetreden tijdens {{action}}!", - "This_room_is_blocked": "Deze kamer is geblokkeerd", - "This_room_is_read_only": "Deze kamer is alleen-lezen", - "Thread": "Draad", - "Threads": "Draden", - "Timezone": "Tijdzone", - "To": "Naar", - "topic": "onderwerp", - "Topic": "Onderwerp", - "Translate": "Vertalen", - "Try_again": "Probeer het opnieuw", - "Two_Factor_Authentication": "Twee-factor authenticatie", - "Type_the_channel_name_here": "Typ hier de kanaalnaam", - "unarchive": "dearchiveren", - "UNARCHIVE": "DEARCHIVEREN", - "Unblock_user": "Deblokkeer gebruiker", - "Unfavorite": "Uit favorieten halen", - "Unfollowed_thread": "Draad ontvolgd", - "Unmute": "Dempen opheffen", - "unmuted": "ongedempt", - "Unpin": "Losmaken", - "unread_messages": "ongelezen", - "Unread": "Ongelezen", - "Unread_on_top": "Ongelezen bovenaan", - "Unstar": "Ster verwijderen", - "Updating": "Updaten...", - "Uploading": "Uploaden", - "Upload_file_question_mark": "Bestand uploaden?", - "User": "Gebruiker", - "Users": "Gebruikers", - "User_added_by": "Gebruiker {{userAdded}} toegevoegd door {{userBy}}", - "User_Info": "Gebruikers info", - "User_has_been_key": "Gebruiker is {{key}}", - "User_is_no_longer_role_by_": "{{user}} is niet langer {{role}} door {{userBy}}", - "User_muted_by": "Gebruiker {{userMuted}} gedempt door {{userBy}}", - "User_removed_by": "Gebruiker {{userRemoved}} verwijderd door {{userBy}}", - "User_sent_an_attachment": "{{user}} stuurde een bijlage", - "User_unmuted_by": "Dempen voor {{userUnmuted}} opgeheven door {{userBy}}", - "User_was_set_role_by_": "{{user}} is als {{role}} ingesteld door {{userBy}}", - "Username_is_empty": "Gebruikersnaam is leeg", - "Username": "Gebruikersnaam", - "Username_or_email": "Gebruikersnaam of e-mail", - "Uses_server_configuration": "Gebruikt serverconfiguratie", - "Validating": "Valideren", - "Registration_Succeeded": "Registratie geslaagd!", - "Verify": "Verifiëren", - "Verify_email_title": "Registratie geslaagd!", - "Verify_email_desc": "We hebben je een e-mail gestuurd om je inschrijving te bevestigen. Als je binnenkort geen e-mail ontvangt, gelieve terug te komen en het opnieuw te proberen.", - "Verify_your_email_for_the_code_we_sent": "Verifieer je e-mail voor de code die we hebben gestuurd", - "Video_call": "Videogesprek", - "View_Original": "Bekijk origineel", - "Voice_call": "Spraakoproep", - "Waiting_for_network": "Wachten op netwerk...", - "Websocket_disabled": "Websocket is uitgeschakeld voor deze server.\n{{contact}}", - "Welcome": "Welkom", - "What_are_you_doing_right_now": "Wat doe je op dit moment?", - "Whats_your_2fa": "Wat is je 2FA code?", - "Without_Servers": "Zonder servers", - "Workspaces": "Werkruimten", - "Would_you_like_to_return_the_inquiry": "Wil je de aanvraag retourneren?", - "Write_External_Permission_Message": "Rocket.Chat heeft toegang nodig tot je galerij zodat je afbeeldingen kunt opslaan.", - "Write_External_Permission": "Galerij toestemming", - "Yes": "Ja", - "Yes_action_it": "Ja, {{action}} het!", - "Yesterday": "Gisteren", - "You_are_in_preview_mode": "Je bent in voorbeeldmodus", - "You_are_offline": "Je bent offline", - "You_can_search_using_RegExp_eg": "Je kan RegExp. gebruiken, bijv. `/^tekst$/i`", - "You_colon": "Jij: ", - "you_were_mentioned": "je bent vermeld", - "You_were_removed_from_channel": "Je bent verwijderd uit {{channel}}", - "you": "jij", - "You": "Jij", - "Logged_out_by_server": "Je bent uitgelogd door de server. Gelieve opnieuw in te loggen.", - "You_need_to_access_at_least_one_RocketChat_server_to_share_something": "Je moet minstens toegang hebben tot één Rocket.Chat-server om iets te delen.", - "You_need_to_verifiy_your_email_address_to_get_notications": "Je moet je e-mailadres verifiëren om meldingen te ontvangen", - "Your_certificate": "Jouw certificaat", - "Your_invite_link_will_expire_after__usesLeft__uses": "Je uitnodigingslink verloopt na {{usesLeft}} keer.", - "Your_invite_link_will_expire_on__date__or_after__usesLeft__uses": "Je uitnodigingslink verloopt op {{date}} of na {{usesLeft}} keer.", - "Your_invite_link_will_expire_on__date__": "Je uitnodigingslink verloopt op {{date}}.", - "Your_invite_link_will_never_expire": "Je uitnodigingslink zal nooit verlopen.", - "Your_workspace": "Jouw werkruimte", - "Your_password_is": "Jouw wachtwoord is", - "Version_no": "Versie: {{version}}", - "You_will_not_be_able_to_recover_this_message": "Je zal dit bericht niet meer kunnen herstellen!", - "You_will_unset_a_certificate_for_this_server": "Je zal een certificaat voor deze server uitschakelen", - "Change_Language": "Taal veranderen", - "Crash_report_disclaimer": "We volgen nooit nooit de inhoud van je chats. Het crashrapport en de analytische gebeurtenissen bevatten alleen relevante informatie voor ons om problemen te identificeren en op te lossen.", - "Type_message": "Typ bericht", - "Room_search": "Kamers zoeken", - "Room_selection": "Kamerkeuze 1...9", - "Next_room": "Volgende kamer", - "Previous_room": "Vorige kamer", - "New_room": "Nieuwe kamer", - "Upload_room": "Uploaden naar kamer", - "Search_messages": "Berichten zoeken", - "Scroll_messages": "Berichten scrollen", - "Reply_latest": "Antwoord op laatste", - "Reply_in_Thread": "Reageer in discussie", - "Server_selection": "Server selectie", - "Server_selection_numbers": "Server selectie 1...9", - "Add_server": "Server toevoegen", - "New_line": "Nieuwe lijn", - "You_will_be_logged_out_of_this_application": "Je wordt uitgelogd van deze applicatie.", - "Clear": "Wissen", - "This_will_clear_all_your_offline_data": "Hiermee worden al jouw offline gegevens gewist.", - "This_will_remove_all_data_from_this_server": "Dit zal alle gegevens van deze server verwijderen.", - "Mark_unread": "Markeer als ongelezen", - "Wait_activation_warning": "Voordat u kunt inloggen, moet uw account handmatig worden geactiveerd door een beheerder.", - "Screen_lock": "Schermvergrendeling", - "Local_authentication_biometry_title": "Authenticeren", - "Local_authentication_biometry_fallback": "Gebruik toegangscode", - "Local_authentication_unlock_option": "Ontgrendelen met toegangscode", - "Local_authentication_change_passcode": "Wijzig toegangscode", - "Local_authentication_info": "Opmerking: als je de toegangscode vergeet, moet je de app verwijderen en opnieuw installeren.", - "Local_authentication_facial_recognition": "gezichtsherkenning", - "Local_authentication_fingerprint": "vingerafdruk", - "Local_authentication_unlock_with_label": "Ontgrendel met {{label}}", - "Local_authentication_auto_lock_60": "Na 1 minuut", - "Local_authentication_auto_lock_300": "Na 5 minuten", - "Local_authentication_auto_lock_900": "Na 15 minuten", - "Local_authentication_auto_lock_1800": "Na 30 minuten", - "Local_authentication_auto_lock_3600": "Na 1 uur", - "Passcode_enter_title": "Voer uw toegangscode in", - "Passcode_choose_title": "Kies je nieuwe toegangscode", - "Passcode_choose_confirm_title": "Bevestig je nieuwe toegangscode", - "Passcode_choose_error": "Toegangscodes komen niet overeen. Probeer het opnieuw.", - "Passcode_choose_force_set": "Toegangscode vereist door beheerder", - "Passcode_app_locked_title": "App vergrendeld", - "Passcode_app_locked_subtitle": "Probeer het over {{timeLeft}} seconden opnieuw", - "After_seconds_set_by_admin": "Na {{seconds}} seconden (ingesteld door beheerder)", - "Dont_activate": "Nu niet activeren", - "Queued_chats": "Chats in de wachtrij", - "Queue_is_empty": "Wachtrij is leeg", - "Logout_from_other_logged_in_locations": "Afmelden bij andere ingelogde locaties", - "You_will_be_logged_out_from_other_locations": "Je wordt uitgelogd van andere locaties.", - "Logged_out_of_other_clients_successfully": "Succesvol uitgelogd bij andere klanten", - "Logout_failed": "Uitloggen mislukt!", - "Log_analytics_events": "Analysegebeurtenissen loggen", - "E2E_encryption_change_password_title": "Versleutelingswachtwoord wijzigen", - "E2E_encryption_change_password_description": "Je kan nu versleutelde privégroepen en directe berichten aanmaken. Je kan ook bestaande privégroepen of DM's wijzigen in versleuteld.\nDit is end-to-end codering, dus de sleutel om jouw berichten te coderen/decoderen en deze wordt niet op de server opgeslagen. Daarom moet je dit wachtwoord op een veilige plaats opslaan. Je moet het invoeren op andere apparaten waarop je e2e-codering wilt gebruiken.", - "E2E_encryption_change_password_error": "Fout bij het wijzigen van het E2E-wachtwoord", - "E2E_encryption_change_password_success": "E2E-wachtwoord succesvol gewijzigd!", - "E2E_encryption_change_password_message": "Zorg ervoor dat je het zorgvuldig ergens anders hebt bewaard.", - "E2E_encryption_change_password_confirmation": "Ja, verander het", - "E2E_encryption_reset_title": "E2E-sleutel resetten", - "E2E_encryption_reset_description": "Deze optie zal je huidige E2E-sleutel verwijderen en je wordt uitgelogd.\nWanneer je opniew inlogt, genereert Rocket.Chat je een nieuwe sleutel en herstelt je toegang tot elke versleutelde kamer die een of meer leden heeft.\nDoor de aard van E2E-versleuteling kan Rocket.Chat de toegang tot een versleutelde kamer zonder online lid niet herstellen.", - "E2E_encryption_reset_button": "E2E-sleutel resetten", - "E2E_encryption_reset_error": "Fout bij het resetten van E2E-sleutel!", - "E2E_encryption_reset_message": "Je wordt uitgelogd.", - "E2E_encryption_reset_confirmation": "Ja, reset het", - "Following": "Volgend", - "Threads_displaying_all": "Alles weergeven", - "Threads_displaying_following": "Volgend weergeven", - "Threads_displaying_unread": "Ongelezen weergeven", - "No_threads": "Er zijn geen discussies", - "No_threads_following": "Je volgt geen discussies", - "No_threads_unread": "Er zijn geen ongelezen discussies", - "Messagebox_Send_to_channel": "Stuur naar kanaal", - "Leader": "Leider", - "Moderator": "Moderator", - "Owner": "Eigenaar", - "Remove_from_room": "Verwijderen uit kamer", - "Ignore": "Negeren", - "Unignore": "Niet meer negeren", - "User_has_been_ignored": "Gebruiker is genegeerd", - "User_has_been_unignored": "Gebruiker wordt niet langer genegeerd", - "User_has_been_removed_from_s": "Gebruiker is verwijderd van {{s}}", - "User__username__is_now_a_leader_of__room_name_": "Gebruiker {{username}} is nu een leider van {{room_name}}", - "User__username__is_now_a_moderator_of__room_name_": "Gebruiker {{username}} is nu een moderator van {{room_name}}", - "User__username__is_now_a_owner_of__room_name_": "Gebruiker {{username}} is nu eigenaar van {{room_name}}", - "User__username__removed_from__room_name__leaders": "Gebruiker {{username}} verwijderd uit {{room_name}} leiders", - "User__username__removed_from__room_name__moderators": "Gebruiker {{username}} verwijderd uit {{room_name}} moderators", - "User__username__removed_from__room_name__owners": "Gebruiker {{username}} verwijderd uit {{room_name}} eigenaars", - "The_user_will_be_removed_from_s": "De gebruiker wordt verwijderd uit {{s}}", - "Yes_remove_user": "Ja, verwijder gebruiker!", - "Direct_message": "Direct bericht", - "Message_Ignored": "Bericht genegeerd. Tik om het weer te geven.", - "Enter_workspace_URL": "Voer de werkruimte-URL in", - "Workspace_URL_Example": "Vb. uw-bedrijf.rocket.chat", - "This_room_encryption_has_been_enabled_by__username_": "De versleuteling van deze kamer is ingeschakeld door {{username}}", - "This_room_encryption_has_been_disabled_by__username_": "De versleuteling van deze kamer is uitgeschakeld door {{username}}", - "Teams": "Teams", - "No_team_channels_found": "Geen kanalen gevonden", - "Team_not_found": "Team niet gevonden", - "Create_Team": "Team aanmaken", - "Team_Name": "Teamnaam", - "Private_Team": "Privé team", - "Read_Only_Team": "Alleen-lezen team", - "Broadcast_Team": "Broadcast team", - "creating_team": "team maken", - "team-name-already-exists": "Er bestaat al een team met die naam", - "Add_Channel_to_Team": "Kanaal toevoegen aan team", - "Left_The_Team_Successfully": "Het team met succes verlaten", - "Create_New": "Maak nieuw", - "Add_Existing": "Voeg bestaande", - "Add_Existing_Channel": "Bestaand kanaal toevoegen", - "Remove_from_Team": "Verwijderen uit team", - "Auto-join": "Automatisch deelnemen", - "Remove_Team_Room_Warning": "Wil je dit kanaal uit het team verwijderen? Het kanaal wordt terug naar de werkruimte verplaatst", - "Confirmation": "Bevestiging", - "invalid-room": "Ongeldige kamer", - "You_are_leaving_the_team": "Je verlaat het team '{{team}}'", - "Leave_Team": "Team verlaten", - "Select_Team": "Selecteer team", - "Select_Team_Channels": "Selecteer de kanalen van het team die je wilt verlaten.", - "Cannot_leave": "Kan niet weggaan", - "Cannot_remove": "Kan niet verwijderen", - "Cannot_delete": "Kan niet verwijderen", - "Last_owner_team_room": "Je bent de laatste eigenaar van dit kanaal. Zodra u het team verlaat, blijft het kanaal binnen het team, maar beheert u het van buitenaf.", - "last-owner-can-not-be-removed": "Laatste eigenaar kan niet worden verwijderd.", - "Remove_User_Teams": "Selecteer de kanalen waarvan je de gebruiker wilt verwijderen.", - "Delete_Team": "Team verwijderen", - "Select_channels_to_delete": "Dit kan niet ongedaan worden gemaakt. Zodra je een team verwijdert, worden alle chatinhoud en configuratie verwijderd.\n\nSelecteer de kanalen die je wilt verwijderen. Degene die je besluit te behouden, zullen in jouw werkruimte beschikbaar zijn. Hou er rekening mee dat openbare kanalen nog steeds openbaar en voor iedereen zichtbaar zijn.", - "You_are_deleting_the_team": "Je verwijdert dit team.", - "Removing_user_from_this_team": "Je verwijdert {{user}} uit dit team", - "Remove_User_Team_Channels": "Selecteer de kanalen waarvan je de gebruiker wilt verwijderen.", - "Remove_Member": "Lid verwijderen", - "leaving_team": "team verlaten", - "removing_team": "verwijderen uit team", - "moving_channel_to_team": "kanaal verplaatsen naar team", - "deleting_team": "team verwijderen", - "member-does-not-exist": "Lid bestaat niet", - "Convert": "Converteren", - "Convert_to_Team": "Converteren naar team", - "Convert_to_Team_Warning": "Je converteert dit kanaal naar een team. Alle leden blijven behouden.", - "Move_to_Team": "Verplaats naar team", - "Move_Channel_Paragraph": "Het verplaatsen van een kanaal binnen een team betekent dat dit kanaal wordt toegevoegd in de context van het team. Maar, alle leden van dit kanaal, die geen lid zijn van het respectieve team, zullen nog steeds toegang hebben tot dit kanaal, maar worden niet als teamleden toegevoegd.\n\nHet volledige beheer van dit kanaal wordt nog steeds door de eigenaren van dit kanaal gedaan.\n\nTeamleden en zelfs teameigenaren, wanneer ze geen lid zijn van dit kanaal, hebben geen toegang tot de content van het kanaal.\n\nHou er rekening mee dat de eigenaar van het team de leden uit het kanaal kan verwijderen.", - "Move_to_Team_Warning": "Wil je na het lezen van de vorige instructies over dit gedrag, dit kanaal nog steeds naar het geselecteerde team verplaatsen?", - "Load_More": "Meer laden", - "Load_Newer": "Nieuwer laden", - "Load_Older": "Ouder laden", - "Left_The_Room_Successfully": "Heeft kamer met succes verlaten", - "Deleted_The_Team_Successfully": "Team succesvol verwijderd", - "Deleted_The_Room_Successfully": "Kamer succesvol verwijderd", - "Convert_to_Channel": "Converteren naar kanaal", - "Converting_Team_To_Channel": "Team converteren naar kanaal", - "Select_Team_Channels_To_Delete": "Selecteer de teamkanalen die je wilt verwijderen, de kanalen die u niet selecteert, worden naar de werkruimte verplaatst.\n\nMerk op dat openbare kanalen openbaar en voor iedereen zichtbaar zullen zijn.", - "You_are_converting_the_team": "Je converteert dit team naar een kanaal" -} \ No newline at end of file + "1_person_reacted": "1 persoon heeft gereageerd", + "1_user": "1 gebruiker", + "error-action-not-allowed": "{{action}} is niet toegestaan", + "error-application-not-found": "Applicatie niet gevonden", + "error-archived-duplicate-name": "Er is een gearchiveerd kanaal met de naam {{room_name}}", + "error-avatar-invalid-url": "Ongeldige avatar-URL: {{url}}", + "error-avatar-url-handling": "Fout bij het verwerken van de avatar-instelling van een URL ({{url}}) voor {{username}}", + "error-cant-invite-for-direct-room": "Kan gebruikers in directe kamers niet uitnodigen", + "error-could-not-change-email": "Kan e-mail niet veranderen", + "error-could-not-change-name": "Kan naam niet veranderen", + "error-could-not-change-username": "Kan gebruikersnaam niet veranderen", + "error-could-not-change-status": "Kan status niet wijzigen", + "error-delete-protected-role": "Kan een beveiligde rol niet verwijderen", + "error-department-not-found": "Afdeling niet gevonden", + "error-direct-message-file-upload-not-allowed": "Delen van bestanden in privéberichten niet toegestaan", + "error-duplicate-channel-name": "Een kanaal met naam {{room_name}} bestaat", + "error-email-domain-blacklisted": "Het e-maildomein staat op de zwarte lijst", + "error-email-send-failed": "Fout bij het verzenden van e-mail: {{message}}", + "error-save-image": "Fout bij het opslaan van afbeelding", + "error-save-video": "Fout bij het opslaan van video", + "error-field-unavailable": "{{field}} is al in gebruik :(", + "error-file-too-large": "Bestand is te groot", + "error-importer-not-defined": "De importeur is niet correct gedefinieerd, de klasse Import ontbreekt.", + "error-input-is-not-a-valid-field": "{{input}} is geen geldig {{field}}", + "error-invalid-actionlink": "Ongeldige actielink", + "error-invalid-arguments": "Ongeldige argumenten", + "error-invalid-asset": "Ongeldig item", + "error-invalid-channel": "Ongeldig kanaal.", + "error-invalid-channel-start-with-chars": "Ongeldig kanaal. Begin met @ of #", + "error-invalid-custom-field": "Ongeldig aangepast veld", + "error-invalid-custom-field-name": "Ongeldige aangepaste veldnaam. Gebruik alleen letters, cijfers, koppeltekens en underscores.", + "error-invalid-date": "Ongeldige datum opgegeven.", + "error-invalid-description": "Ongeldige beschrijving", + "error-invalid-domain": "Ongeldig domein", + "error-invalid-email": "Ongeldig e-mail {{email}}", + "error-invalid-email-address": "Ongeldig e-mailadres", + "error-invalid-file-height": "Ongeldige bestandshoogte", + "error-invalid-file-type": "Ongeldig bestandstype", + "error-invalid-file-width": "Ongeldige bestandsbreedte", + "error-invalid-from-address": "Je hebt een ongeldig FROM adres opgegeven.", + "error-invalid-integration": "Ongeldige integratie", + "error-invalid-message": "Ongeldig bericht", + "error-invalid-method": "Ongeldige methode", + "error-invalid-name": "Ongeldige naam", + "error-invalid-password": "Ongeldig wachtwoord", + "error-invalid-redirectUri": "Ongeldige redirectUri", + "error-invalid-role": "Ongeldige rol", + "error-invalid-room": "Ongeldige kamer", + "error-invalid-room-name": "{{room_name}} is geen geldige kamernaam", + "error-invalid-room-type": "{{type}} is geen geldig kamertype.", + "error-invalid-settings": "Ongeldige instellingen opgegeven", + "error-invalid-subscription": "Ongeldig abonnement", + "error-invalid-token": "Ongeldige token", + "error-invalid-triggerWords": "Ongeldige triggerWoorden", + "error-invalid-urls": "Ongeldige URL's", + "error-invalid-user": "Ongeldige gebruiker", + "error-invalid-username": "Ongeldige gebruikersnaam", + "error-invalid-webhook-response": "De webhook-URL heeft met een andere status dan 200 gereageerd", + "error-message-deleting-blocked": "Het verwijderen van berichten is geblokkeerd", + "error-message-editing-blocked": "Het aanpassen van berichten is geblokkeerd", + "error-message-size-exceeded": "Berichtgrootte is groter dan Message_MaxAllowedSize", + "error-missing-unsubscribe-link": "Je moet de link [unsubscribe] opgeven.", + "error-no-owner-channel": "Je bent niet de eigenaar van het kanaal", + "error-no-tokens-for-this-user": "Er zijn geen tokens voor deze gebruiker", + "error-not-allowed": "Niet toegestaan", + "error-not-authorized": "Geen bevoegdheid", + "error-push-disabled": "Push is uitgeschakeld", + "error-remove-last-owner": "Dit is de laatste eigenaar. Stel een nieuwe eigenaar in voordat je deze verwijdert.", + "error-role-in-use": "Kan rol niet verwijderen omdat deze in gebruik is", + "error-role-name-required": "Rolnaam is vereist", + "error-the-field-is-required": "Het veld {{field}} is verplicht.", + "error-too-many-requests": "Fout, te veel verzoeken. Vertraag, alsjeblieft. Je moet {{seconds}} seconden wachten voordat je het opnieuw probeert.", + "error-user-is-not-activated": "Gebruiker is niet geactiveerd", + "error-user-has-no-roles": "Gebruiker heeft geen rollen", + "error-user-limit-exceeded": "Het aantal gebruikers die je probeert uit te nodigen voor #channel_name overschrijdt de limiet ingesteld door de beheerder", + "error-user-not-in-room": "Gebruiker is niet in deze kamer", + "error-user-registration-custom-field": "error-user-registration-custom-field", + "error-user-registration-disabled": "Gebruikersregistratie is uitgeschakeld", + "error-user-registration-secret": "Gebruikersregistratie is alleen via geheime URL toegestaan", + "error-you-are-last-owner": "Je bent de laatste eigenaar. Stel een nieuwe eigenaar in voordat je de kamer verlaat.", + "error-status-not-allowed": "Onzichtbare status is uitgeschakeld", + "Actions": "Acties", + "activity": "activiteit", + "Activity": "Activiteit", + "Add_Reaction": "Reactie toevoegen", + "Add_Server": "Server toevoegen", + "Add_users": "Gebruikers toevoegen", + "Admin_Panel": "Admin Paneel", + "Agent": "Agent", + "Alert": "Waarschuwing", + "alert": "waarschuwing", + "alerts": "waarschuwingen", + "All_users_in_the_channel_can_write_new_messages": "Alle gebruikers in het kanaal kunnen nieuwe berichten schrijven", + "All_users_in_the_team_can_write_new_messages": "Alle gebruikers in het team kunnen nieuwe berichten schrijven", + "A_meaningful_name_for_the_discussion_room": "Een betekenisvolle naam voor de discussieruimte", + "All": "Alle", + "All_Messages": "Alle berichten", + "Allow_Reactions": "Reacties toestaan", + "Alphabetical": "Alfabetisch", + "and_more": "en meer", + "and": "en", + "announcement": "aankondiging", + "Announcement": "Aankondiging", + "Apply_Your_Certificate": "Pas jouw certificaat toe", + "ARCHIVE": "ARCHIVEER", + "archive": "archiveer", + "are_typing": "zijn aan het typen", + "Are_you_sure_question_mark": "Weet je het zeker?", + "Are_you_sure_you_want_to_leave_the_room": "Weet je zeker dat je de kamer {{room}} wilt verlaten?", + "Audio": "Audio", + "Authenticating": "Authenticatie", + "Automatic": "Automatisch", + "Auto_Translate": "Automatisch vertalen", + "Avatar_changed_successfully": "Avatar succesvol gewijzigd!", + "Avatar_Url": "Avatar-URL", + "Away": "Afwezig", + "Back": "Terug", + "Black": "Zwart", + "Block_user": "Blokkeer gebruiker", + "Browser": "Browser", + "Broadcast_channel_Description": "Alleen geautoriseerde gebruikers kunnen nieuwe berichten schrijven, maar de andere gebruikers zullen kunnen antwoorden", + "Broadcast_Channel": "Uitzendkanaal", + "Busy": "Bezig", + "By_proceeding_you_are_agreeing": "Door verder te gaan ga je akkoord met onze", + "Cancel_editing": "Bewerken annuleren", + "Cancel_recording": "Opname annuleren", + "Cancel": "Annuleren", + "changing_avatar": "avatar aan het veranderen", + "creating_channel": "kanaal aan het maken", + "creating_invite": "uitnodiging maken", + "Channel_Name": "Kanaal naam", + "Channels": "Kanalen", + "Chats": "Chats", + "Call_already_ended": "Gesprek al beeïndigd!", + "Clear_cookies_alert": "Wilt u alle cookies wissen?", + "Clear_cookies_desc": "Met deze actie worden alle inlogcookies gewist, zodat u op andere accounts kunt inloggen.", + "Clear_cookies_yes": "Ja, cookies wissen", + "Clear_cookies_no": "Nee, bewaar cookies", + "Click_to_join": "Klik om mee te doen!", + "Close": "Sluiten", + "Close_emoji_selector": "Emoji-kiezer sluiten", + "Closing_chat": "Chat sluiten", + "Change_language_loading": "Taal veranderen", + "Chat_closed_by_agent": "Chat gesloten door agent", + "Choose": "Kies", + "Choose_from_library": "Kies uit bibliotheek", + "Choose_file": "Kies bestand", + "Choose_where_you_want_links_be_opened": "Kies waar je links wilt openen", + "Code": "Code", + "Code_or_password_invalid": "Code of wachtwoord ongeldig", + "Collaborative": "Samenwerkend", + "Confirm": "Bevestig", + "Connect": "Verbinden", + "Connected": "Verbonden", + "connecting_server": "verbonden met de server", + "Connecting": "Aan het verbinden...", + "Contact_us": "Neem contact op", + "Contact_your_server_admin": "Neem contact op met je serverbeheerder.", + "Continue_with": "Ga verder met", + "Copied_to_clipboard": "Gekopieerd naar klembord!", + "Copy": "Kopiëren", + "Conversation": "Conversatie", + "Permalink": "Permalink", + "Certificate_password": "Certificaat wachtwoord", + "Clear_cache": "Lokale server cache wissen", + "Clear_cache_loading": "Cache wissen.", + "Whats_the_password_for_your_certificate": "Wat is het wachtwoord voor jouw certificaat?", + "Create_account": "Account aanmaken", + "Create_Channel": "Kanaal aanmaken", + "Create_Direct_Messages": "Directe berichten aanmaken", + "Create_Discussion": "Discussie aanmaken", + "Created_snippet": "knipsel aangemaakt", + "Create_a_new_workspace": "Een nieuwe werkruimte aanmaken", + "Create": "Aanmaken", + "Custom_Status": "Aangepaste status", + "Dark": "Donker", + "Dark_level": "Donker niveau", + "Default": "Standaard", + "Default_browser": "Standaard browser", + "Delete_Room_Warning": "Als je een kamer verwijdert, worden alle berichten die in de kamer geplaatst zijn, verwijderd. Dit kan niet ongedaan worden gemaakt.", + "Department": "Afdeling", + "delete": "verwijderen", + "Delete": "Verwijderen", + "DELETE": "VERWIJDEREN", + "move": "verplaatsen", + "deleting_room": "kamer verwijderen", + "description": "omschrijving", + "Description": "Omschrijving", + "Desktop_Options": "Bureaubladopties", + "Desktop_Notifications": "Desktopmeldingen", + "Desktop_Alert_info": "Deze meldingen worden op desktop geleverd", + "Directory": "Map", + "Direct_Messages": "Directe berichten", + "Disable_notifications": "Zet notificaties uit", + "Discussions": "Discussies", + "Discussion_Desc": "Help het overzicht te houden over wat er aan de hand is! Door een discussie aan te maken, wordt een subkanaal van het geselecteerde kanaal aangemaakt en worden beide gekoppeld.", + "Discussion_name": "Discussienaam", + "Done": "Gedaan", + "Dont_Have_An_Account": "Heb je geen account?", + "Do_you_have_an_account": "Heb je een account?", + "Do_you_have_a_certificate": "Heb je een certificaat?", + "Do_you_really_want_to_key_this_room_question_mark": "Wil je deze kamer echt {{key}}?", + "E2E_Encryption": "E2E-codering", + "E2E_How_It_Works_info1": "U kunt nu versleutelde privégroepen en directe berichten aanmaken. U kunt ook bestaande privégroepen of DM's wijzigen in versleuteld.", + "E2E_How_It_Works_info2": "Dit is *end-to-end codering*, dus de sleutel om jouw berichten te coderen/decoderen en deze wordt niet op de server opgeslagen. Daarom *moet je dit wachtwoord op een veilige plaats opslaan* waar je later toegang hebt als je dat nodig hebt.", + "E2E_How_It_Works_info3": "Als je doorgaat, wordt er automatisch een E2E-wachtwoord gegenereerd.", + "E2E_How_It_Works_info4": "Je kan ook op elk moment een nieuw wachtwoord voor uw coderingssleutel instellen vanuit elke browser waarin u het bestaande E2E-wachtwoord hebt ingevoerd.", + "edit": "bewerk", + "edited": "bewerkt", + "Edit": "Bewerk", + "Edit_Status": "Status bewerken", + "Edit_Invite": "Bewerk uitnodiging", + "End_to_end_encrypted_room": "End-to-end versleutelde kamer", + "end_to_end_encryption": "end-to-end encryptie", + "Email_Notification_Mode_All": "Elke vermelding/DM", + "Email_Notification_Mode_Disabled": "Uitgeschakeld", + "Email_or_password_field_is_empty": "E-mail of wachtwoordveld is leeg", + "Email": "E-mail", + "email": "e-mail", + "Empty_title": "Lege titel", + "Enable_Auto_Translate": "Automatisch vertalen inschakelen", + "Enable_notifications": "Notificaties aanzetten", + "Encrypted": "Versleuteld", + "Encrypted_message": "Versleuteld bericht", + "Enter_Your_E2E_Password": "Voer uw E2E-wachtwoord in", + "Enter_Your_Encryption_Password_desc1": "Hiermee krijg je toegang tot uw gecodeerde privégroepen en directe berichten.", + "Enter_Your_Encryption_Password_desc2": "Op elke plaats waar je de chat gebruikt, moet je het wachtwoord invoeren om berichten te coderen/decoderen.", + "Encryption_error_title": "Jouw coderingswachtwoord lijkt verkeerd", + "Encryption_error_desc": "Het was niet mogelijk om uw coderingssleutel te decoderen om te worden geïmporteerd.", + "Everyone_can_access_this_channel": "Iedereen heeft toegang tot dit kanaal", + "Everyone_can_access_this_team": "Iedereen heeft toegang tot dit team", + "Error_uploading": "Fout bij uploaden", + "Expiration_Days": "Vervaldatum (Dagen)", + "Favorite": "Favoriet", + "Favorites": "Favorieten", + "Files": "Bestanden", + "File_description": "Bestandsbeschrijving", + "File_name": "Bestandsnaam", + "Finish_recording": "Opname beëindigen", + "Following_thread": "Volg discussie", + "For_your_security_you_must_enter_your_current_password_to_continue": "Voor je veiligheid moet je je huidige wachtwoord invoeren om door te gaan", + "Forgot_password_If_this_email_is_registered": "Als dit e-mailadres geregistreerd is, sturen we instructies om je wachtwoord opnieuw in te stellen. Als je geen e-mail ontvangt, kom dan terug en probeer het opnieuw.", + "Forgot_password": "Wachtwoord vergeten?", + "Forgot_Password": "Wachtwoord vergeten", + "Forward": "Doorsturen", + "Forward_Chat": "Chat doorsturen", + "Forward_to_department": "Doorsturen naar afdeling", + "Forward_to_user": "Doorsturen naar gebruiker", + "Full_table": "Klik om de volledige tabel te zien", + "Generate_New_Link": "Nieuwe link genereren", + "Group_by_favorites": "Groepeer favorieten", + "Group_by_type": "Groeperen op type", + "Hide": "Verberg", + "Has_joined_the_channel": "is bij het kanaal gekomen", + "Has_joined_the_conversation": "heeft zich bij het gesprek aangesloten", + "Has_left_the_channel": "heeft het kanaal verlaten", + "Hide_System_Messages": "Verberg systeemberichten", + "Hide_type_messages": "Verberg \"{{type}}\" berichten", + "How_It_Works": "Hoe het werkt", + "Message_HideType_uj": "Gebruiker neemt deel", + "Message_HideType_ul": "Gebruiker vertrokken", + "Message_HideType_ru": "Gebruiker verwijderd", + "Message_HideType_au": "Gebruiker toegevoegd", + "Message_HideType_mute_unmute": "Gebruiker gedempt / kan weer praten", + "Message_HideType_r": "Kamernaam gewijzigd", + "Message_HideType_ut": "Gebruiker neemt deel aan gesprek", + "Message_HideType_wm": "Welkom", + "Message_HideType_rm": "Bericht verwijderd", + "Message_HideType_subscription_role_added": "Kreeg rol", + "Message_HideType_subscription_role_removed": "Rol niet langer gedefinieerd", + "Message_HideType_room_archived": "Kamer gearchiveerd", + "Message_HideType_room_unarchived": "Kamer niet gearchiveerd", + "I_Saved_My_E2E_Password": "Ik heb mijn E2E-wachtwoord opgeslagen", + "IP": "IP", + "In_app": "In-app", + "In_App_And_Desktop": "In-app en desktop", + "In_App_and_Desktop_Alert_info": "Geeft een banner boven aan het scherm weer wanneer de app geopend is, en geeft een melding op desktop weer", + "Invisible": "Onzichtbaar", + "Invite": "Nodig uit", + "is_a_valid_RocketChat_instance": "is een geldige Rocket.Chat instantie", + "is_not_a_valid_RocketChat_instance": "is geen geldige Rocket.Chat instantie", + "is_typing": "is aan het typen", + "Invalid_or_expired_invite_token": "Ongeldige of verlopen uitnodigingstoken", + "Invalid_server_version": "De server waarmee je probeert te verbinden, gebruikt een versie die niet meer door de app wordt ondersteund: {{currentVersion}}.\n\nWe hebben versie {{minVersion}} nodig", + "Invite_Link": "Uitnodigingslink", + "Invite_users": "Gebruikers uitnodigen", + "Join": "Doe mee", + "Join_Code": "Deelnamecode", + "Insert_Join_Code": "Deelnamecode invoegen", + "Join_our_open_workspace": "Word lid van onze open werkruimte", + "Join_your_workspace": "Word lid van jouw werkruimte", + "Just_invited_people_can_access_this_channel": "Alleen uitgenodigde mensen hebben toegang tot dit kanaal", + "Just_invited_people_can_access_this_team": "Alleen uitgenodigde mensen hebben toegang tot dit team", + "Language": "Taal", + "last_message": "laatste bericht", + "Leave_channel": "Kanaal verlaten", + "leaving_room": "ruimte verlaten", + "Leave": "Verlaten", + "leave": "verlaten", + "Legal": "Legaal", + "Light": "Licht", + "License": "Licentie", + "Livechat": "Livechat", + "Livechat_edit": "Livechat bewerken", + "Login": "Inloggen", + "Login_error": "Je inloggegevens zijn geweigerd! Probeer het opnieuw.", + "Login_with": "Inloggen met", + "Logging_out": "Uitloggen.", + "Logout": "Uitloggen", + "Max_number_of_uses": "Max aantal toepassingen", + "Max_number_of_users_allowed_is_number": "Max aantal toegestane gebruikers is {{maxUsers}}", + "members": "leden", + "Members": "Leden", + "Mentioned_Messages": "Vermelde berichten", + "mentioned": "vermeld", + "Mentions": "Vermeldingen", + "Message_accessibility": "Bericht van {{user}} om {{time}}: {{message}}", + "Message_actions": "Berichtacties", + "Message_pinned": "Bericht vastgezet", + "Message_removed": "Bericht verwijderd", + "Message_starred": "Bericht met ster", + "Message_unstarred": "Bericht zonder ster", + "message": "bericht", + "messages": "berichten", + "Message": "Bericht", + "Messages": "Berichten", + "Message_Reported": "Bericht gerapporteerd", + "Microphone_Permission_Message": "Rocket.Chat heeft toegang tot je microfoon nodig zodat je een audiobericht kunt verzenden.", + "Microphone_Permission": "Microfoontoestemming", + "Mute": "Dempen", + "muted": "gedempt", + "My_servers": "Mijn servers", + "N_people_reacted": "{{n}} mensen hebben gereageerd", + "N_users": "{{n}} gebruikers", + "N_channels": "{{n}} kanalen", + "name": "naam", + "Name": "Naam", + "Navigation_history": "Navigatie geschiedenis", + "Never": "Nooit", + "New_Message": "Nieuw bericht", + "New_Password": "Nieuw wachtwoord", + "New_Server": "Nieuwe server", + "Next": "Volgende", + "No_files": "Geen bestanden", + "No_limit": "Geen limiet", + "No_mentioned_messages": "Geen vermelde berichten", + "No_pinned_messages": "Geen vastgezette berichten", + "No_results_found": "Geen resultaten gevonden", + "No_starred_messages": "Geen berichten met ster gemarkeerd", + "No_thread_messages": "Geen discussieberichten", + "No_label_provided": "Geen {{label}} opgegeven.", + "No_Message": "Geen bericht", + "No_messages_yet": "Nog geen berichten", + "No_Reactions": "Geen reacties", + "No_Read_Receipts": "Geen leesbevestigingen", + "Not_logged": "Niet ingelogd", + "Not_RC_Server": "Dit is geen Rocket.Chat-server.\n{{contact}}", + "Nothing": "Niets", + "Nothing_to_save": "Niets om op te slaan!", + "Notify_active_in_this_room": "Waarschuw actieve gebruikers in deze kamer", + "Notify_all_in_this_room": "Breng iedereen in deze kamer op de hoogte", + "Notifications": "Notificaties", + "Notification_Duration": "Duur van de notificatie", + "Notification_Preferences": "Notificatievoorkeuren", + "No_available_agents_to_transfer": "Geen beschikbare agenten om door te sturen", + "Offline": "Offline", + "Oops": "Oeps!", + "Omnichannel": "Omnichannel", + "Open_Livechats": "Bezig met chatten", + "Omnichannel_enable_alert": "Je bent niet beschikbaar op Omnichannel. Wil je beschikbaar zijn?", + "Onboarding_description": "Een werkruimte is de ruimte van jouw team of organisatie om samen te werken. Vraag aan de beheerder van de werkruimte een adres om lid te worden of maak er een aan voor jouw team.", + "Onboarding_join_workspace": "Word lid van een werkruimte", + "Onboarding_subtitle": "Meer dan teamsamenwerking", + "Onboarding_title": "Welkom bij Rocket.Chat", + "Onboarding_join_open_description": "Word lid van onze open werkruimte om met het Rocket.Chat team en de community te chatten.", + "Onboarding_agree_terms": "Door verder te gaan, ga je akkoord met Rocket.Chat", + "Onboarding_less_options": "Minder opties", + "Onboarding_more_options": "Meer opties", + "Online": "Online", + "Only_authorized_users_can_write_new_messages": "Alleen geautoriseerde gebruikers kunnen nieuwe berichten schrijven", + "Open_emoji_selector": "Emoji-kiezer openen", + "Open_Source_Communication": "Open Source Communicatie", + "Open_your_authentication_app_and_enter_the_code": "Open je authenticatie-app en voer de code in.", + "OR": "OF", + "OS": "OS", + "Overwrites_the_server_configuration_and_use_room_config": "Overschrijft de serverconfiguratie en gebruikt kamer config", + "Password": "Wachtwoord", + "Parent_channel_or_group": "Bovenliggend kanaal of groep", + "Permalink_copied_to_clipboard": "Permalink gekopiëerd naar klembord!", + "Phone": "Telefoon", + "Pin": "Vastzetten", + "Pinned_Messages": "Vastgezette berichten", + "pinned": "vastgezet", + "Pinned": "Vastgezet", + "Please_add_a_comment": "Voeg een reactie toe", + "Please_enter_your_password": "Voer je wachtwoord in", + "Please_wait": "Even geduld.", + "Preferences": "Voorkeuren", + "Preferences_saved": "Voorkeuren opgeslagen!", + "Privacy_Policy": " Privacybeleid", + "Private_Channel": "Privékanaal", + "Private": "Privé", + "Processing": "Verwerking...", + "Profile_saved_successfully": "Profiel succesvol opgeslagen!", + "Profile": "Profiel", + "Public_Channel": "Publiek kanaal", + "Public": "Publiek", + "Push_Notifications": "Pushmeldingen", + "Push_Notifications_Alert_Info": "Deze notificaties worden aan jouw enkel geleverd als de app niet geopend is", + "Quote": "Citaat", + "Reactions_are_disabled": "Reacties zijn uitgeschakeld", + "Reactions_are_enabled": "Reacties zijn ingeschakeld", + "Reactions": "Reacties", + "Read": "Lezen", + "Read_External_Permission_Message": "Rocket.Chat heeft toegang nodig tot foto's, media en bestanden op je apparaat", + "Read_External_Permission": "Lees toestemming voor media", + "Read_Only_Channel": "Alleen-lezen kanaal", + "Read_Only": "Alleen lezen", + "Read_Receipt": "Leesbevestiging", + "Receive_Group_Mentions": "Groepsvermeldingen ontvangen", + "Receive_Group_Mentions_Info": "Ontvang @all en @here vermeldingen", + "Register": "Registreren", + "Repeat_Password": "Herhaal wachtwoord", + "Replied_on": "Beantwoord op:", + "replies": "antwoordt", + "reply": "antwoord", + "Reply": "Antwoord", + "Report": "Rapporteren", + "Receive_Notification": "Notificatie ontvangen", + "Receive_notifications_from": "Ontvang notificaties van {{name}}", + "Resend": "Opnieuw verzenden", + "Reset_password": "Wachtwoord resetten", + "resetting_password": "wachtwoord aan het resetten", + "RESET": "RESET", + "Return": "Terug", + "Review_app_title": "Geniet je van deze app?", + "Review_app_desc": "Geef ons 5 sterren op {{store}}", + "Review_app_yes": "Zeker!", + "Review_app_no": "Nee", + "Review_app_later": "Misschien later", + "Review_app_unable_store": "Kan {{store}} niet openen", + "Review_this_app": "Beoordeel deze app", + "Remove": "Verwijderen", + "remove": "verwijderen", + "Roles": "Rollen", + "Room_actions": "Kameracties", + "Room_changed_announcement": "Kameraankondiging gewijzigd in: {{announcement}} door {{userBy}}", + "Room_changed_avatar": "Kameravatar gewijzigd door {{userBy}}", + "Room_changed_description": "Kamerbeschrijving gewijzigd in: {{description}} door {{userBy}}", + "Room_changed_privacy": "Kamertype gewijzigd in: {{type}} door {{userBy}}", + "Room_changed_topic": "Oonderwerp van kamer gewijzigd in: {{topic}} door {{userBy}}", + "Room_Files": "Kamerbestanden", + "Room_Info_Edit": "Kamer info bewerken", + "Room_Info": "Kamer info", + "Room_Members": "Kamerleden", + "Room_name_changed": "Kamernaam gewijzigd in: {{name}} door {{userBy}}", + "SAVE": "OPSLAAN", + "Save_Changes": "Wijzigingen opslaan", + "Save": "Opslaan", + "Saved": "Opgeslagen", + "saving_preferences": "voorkeuren opslaan", + "saving_profile": "profiel opslaan", + "saving_settings": "instellingen opslaan", + "saved_to_gallery": "Opgeslagen in galerij", + "Save_Your_E2E_Password": "Bewaar jouw E2E-wachtwoord", + "Save_Your_Encryption_Password": "Bewaar jouw versleutelingswachtwoord", + "Save_Your_Encryption_Password_warning": "Dit wachtwoord wordt nergens opgeslagen, bewaar het dus zorgvuldig ergens anders.", + "Save_Your_Encryption_Password_info": "Indien je je wachtwoord verliest, is er geen enkel manier om het te herstellen en verlies je toegang tot je berichten.", + "Search_Messages": "Berichten zoeken", + "Search": "Zoeken", + "Search_by": "Zoeken op", + "Search_global_users": "Zoeken naar wereldwijde gebruikers", + "Search_global_users_description": "Als je dit inschakelt, kan je gebruikers van andere bedrijven en servers opzoeken.", + "Seconds": "{{second}} seconden", + "Security_and_privacy": "Veiligheid en privacy", + "Select_Avatar": "Selecteer avatar", + "Select_Server": "Selecteer server", + "Select_Users": "Selecteer gebruikers", + "Select_a_Channel": "Selecteer een kanaal", + "Select_a_Department": "Selecteer een afdeling", + "Select_an_option": "Selecteer een optie", + "Select_a_User": "Selecteer een gebruiker", + "Send": "Verzenden", + "Send_audio_message": "Audiobericht verzenden", + "Send_crash_report": "Crashrapport verzenden", + "Send_message": "Bericht verzenden", + "Send_me_the_code_again": "Stuur me de code opnieuw", + "Send_to": "Verzenden naar...", + "Sending_to": "Verzenden naar", + "Sent_an_attachment": "Een bijlage verzonden", + "Server": "Server", + "Servers": "Servers", + "Server_version": "Server versie: {{version}}", + "Set_username_subtitle": "De gebruikersnaam wordt gebruikt om anderen toe te staan jou in berichten te vermelden", + "Set_custom_status": "Aangepaste status instellen", + "Set_status": "Status instellen", + "Status_saved_successfully": "Status succesvol opgeslagen!", + "Settings": "Instellingen", + "Settings_succesfully_changed": "Instellingen succesvol gewijzigd!", + "Share": "Delen", + "Share_Link": "Deel link", + "Share_this_app": "Deel deze app", + "Show_more": "Meer tonen..", + "Show_Unread_Counter": "Toon ongelezen teller", + "Show_Unread_Counter_Info": "Ongelezen teller wordt weergegeven als een badge aan de rechterkant van het kanaal, in de lijst", + "Sign_in_your_server": "Log in op je server", + "Sign_Up": "Registreren", + "Some_field_is_invalid_or_empty": "Sommige velden zijn ongeldig of leeg", + "Sorting_by": "Sorteren op {{key}}", + "Sound": "Geluid", + "Star_room": "Favoriete kanalen", + "Star": "Ster", + "Starred_Messages": "Berichten met ster gemarkeerd", + "starred": "met ster gemarkeerd", + "Starred": "Met ster gemarkeerd", + "Start_of_conversation": "Begin van een gesprek", + "Start_a_Discussion": "Start een discussie", + "Started_discussion": "Begin van een discussie:", + "Started_call": "Oproep gestart door {{userBy}}", + "Submit": "Verzenden", + "Table": "Tabel", + "Tags": "Tags", + "Take_a_photo": "Neem een foto", + "Take_a_video": "Maak een video", + "Take_it": "Pak het!", + "tap_to_change_status": "tik om de status te wijzigen", + "Tap_to_view_servers_list": "Tik om de serverlijst te bekijken", + "Terms_of_Service": " Servicevoorwaarden ", + "Theme": "Thema", + "The_user_wont_be_able_to_type_in_roomName": "De gebruiker zal in {{roomName}} niet kunnen typen", + "The_user_will_be_able_to_type_in_roomName": "De gebruiker zal in {{roomName}} kunnen typen", + "There_was_an_error_while_action": "Er is een fout opgetreden tijdens {{action}}!", + "This_room_is_blocked": "Deze kamer is geblokkeerd", + "This_room_is_read_only": "Deze kamer is alleen-lezen", + "Thread": "Draad", + "Threads": "Draden", + "Timezone": "Tijdzone", + "To": "Naar", + "topic": "onderwerp", + "Topic": "Onderwerp", + "Translate": "Vertalen", + "Try_again": "Probeer het opnieuw", + "Two_Factor_Authentication": "Twee-factor authenticatie", + "Type_the_channel_name_here": "Typ hier de kanaalnaam", + "unarchive": "dearchiveren", + "UNARCHIVE": "DEARCHIVEREN", + "Unblock_user": "Deblokkeer gebruiker", + "Unfavorite": "Uit favorieten halen", + "Unfollowed_thread": "Draad ontvolgd", + "Unmute": "Dempen opheffen", + "unmuted": "ongedempt", + "Unpin": "Losmaken", + "unread_messages": "ongelezen", + "Unread": "Ongelezen", + "Unread_on_top": "Ongelezen bovenaan", + "Unstar": "Ster verwijderen", + "Updating": "Updaten...", + "Uploading": "Uploaden", + "Upload_file_question_mark": "Bestand uploaden?", + "User": "Gebruiker", + "Users": "Gebruikers", + "User_added_by": "Gebruiker {{userAdded}} toegevoegd door {{userBy}}", + "User_Info": "Gebruikers info", + "User_has_been_key": "Gebruiker is {{key}}", + "User_is_no_longer_role_by_": "{{user}} is niet langer {{role}} door {{userBy}}", + "User_muted_by": "Gebruiker {{userMuted}} gedempt door {{userBy}}", + "User_removed_by": "Gebruiker {{userRemoved}} verwijderd door {{userBy}}", + "User_sent_an_attachment": "{{user}} stuurde een bijlage", + "User_unmuted_by": "Dempen voor {{userUnmuted}} opgeheven door {{userBy}}", + "User_was_set_role_by_": "{{user}} is als {{role}} ingesteld door {{userBy}}", + "Username_is_empty": "Gebruikersnaam is leeg", + "Username": "Gebruikersnaam", + "Username_or_email": "Gebruikersnaam of e-mail", + "Uses_server_configuration": "Gebruikt serverconfiguratie", + "Validating": "Valideren", + "Registration_Succeeded": "Registratie geslaagd!", + "Verify": "Verifiëren", + "Verify_email_title": "Registratie geslaagd!", + "Verify_email_desc": "We hebben je een e-mail gestuurd om je inschrijving te bevestigen. Als je binnenkort geen e-mail ontvangt, gelieve terug te komen en het opnieuw te proberen.", + "Verify_your_email_for_the_code_we_sent": "Verifieer je e-mail voor de code die we hebben gestuurd", + "Video_call": "Videogesprek", + "View_Original": "Bekijk origineel", + "Voice_call": "Spraakoproep", + "Waiting_for_network": "Wachten op netwerk...", + "Websocket_disabled": "Websocket is uitgeschakeld voor deze server.\n{{contact}}", + "Welcome": "Welkom", + "What_are_you_doing_right_now": "Wat doe je op dit moment?", + "Whats_your_2fa": "Wat is je 2FA code?", + "Without_Servers": "Zonder servers", + "Workspaces": "Werkruimten", + "Would_you_like_to_return_the_inquiry": "Wil je de aanvraag retourneren?", + "Write_External_Permission_Message": "Rocket.Chat heeft toegang nodig tot je galerij zodat je afbeeldingen kunt opslaan.", + "Write_External_Permission": "Galerij toestemming", + "Yes": "Ja", + "Yes_action_it": "Ja, {{action}} het!", + "Yesterday": "Gisteren", + "You_are_in_preview_mode": "Je bent in voorbeeldmodus", + "You_are_offline": "Je bent offline", + "You_can_search_using_RegExp_eg": "Je kan RegExp. gebruiken, bijv. `/^tekst$/i`", + "You_colon": "Jij: ", + "you_were_mentioned": "je bent vermeld", + "You_were_removed_from_channel": "Je bent verwijderd uit {{channel}}", + "you": "jij", + "You": "Jij", + "Logged_out_by_server": "Je bent uitgelogd door de server. Gelieve opnieuw in te loggen.", + "You_need_to_access_at_least_one_RocketChat_server_to_share_something": "Je moet minstens toegang hebben tot één Rocket.Chat-server om iets te delen.", + "You_need_to_verifiy_your_email_address_to_get_notications": "Je moet je e-mailadres verifiëren om meldingen te ontvangen", + "Your_certificate": "Jouw certificaat", + "Your_invite_link_will_expire_after__usesLeft__uses": "Je uitnodigingslink verloopt na {{usesLeft}} keer.", + "Your_invite_link_will_expire_on__date__or_after__usesLeft__uses": "Je uitnodigingslink verloopt op {{date}} of na {{usesLeft}} keer.", + "Your_invite_link_will_expire_on__date__": "Je uitnodigingslink verloopt op {{date}}.", + "Your_invite_link_will_never_expire": "Je uitnodigingslink zal nooit verlopen.", + "Your_workspace": "Jouw werkruimte", + "Your_password_is": "Jouw wachtwoord is", + "Version_no": "Versie: {{version}}", + "You_will_not_be_able_to_recover_this_message": "Je zal dit bericht niet meer kunnen herstellen!", + "You_will_unset_a_certificate_for_this_server": "Je zal een certificaat voor deze server uitschakelen", + "Change_Language": "Taal veranderen", + "Crash_report_disclaimer": "We volgen nooit nooit de inhoud van je chats. Het crashrapport en de analytische gebeurtenissen bevatten alleen relevante informatie voor ons om problemen te identificeren en op te lossen.", + "Type_message": "Typ bericht", + "Room_search": "Kamers zoeken", + "Room_selection": "Kamerkeuze 1...9", + "Next_room": "Volgende kamer", + "Previous_room": "Vorige kamer", + "New_room": "Nieuwe kamer", + "Upload_room": "Uploaden naar kamer", + "Search_messages": "Berichten zoeken", + "Scroll_messages": "Berichten scrollen", + "Reply_latest": "Antwoord op laatste", + "Reply_in_Thread": "Reageer in discussie", + "Server_selection": "Server selectie", + "Server_selection_numbers": "Server selectie 1...9", + "Add_server": "Server toevoegen", + "New_line": "Nieuwe lijn", + "You_will_be_logged_out_of_this_application": "Je wordt uitgelogd van deze applicatie.", + "Clear": "Wissen", + "This_will_clear_all_your_offline_data": "Hiermee worden al jouw offline gegevens gewist.", + "This_will_remove_all_data_from_this_server": "Dit zal alle gegevens van deze server verwijderen.", + "Mark_unread": "Markeer als ongelezen", + "Wait_activation_warning": "Voordat u kunt inloggen, moet uw account handmatig worden geactiveerd door een beheerder.", + "Screen_lock": "Schermvergrendeling", + "Local_authentication_biometry_title": "Authenticeren", + "Local_authentication_biometry_fallback": "Gebruik toegangscode", + "Local_authentication_unlock_option": "Ontgrendelen met toegangscode", + "Local_authentication_change_passcode": "Wijzig toegangscode", + "Local_authentication_info": "Opmerking: als je de toegangscode vergeet, moet je de app verwijderen en opnieuw installeren.", + "Local_authentication_facial_recognition": "gezichtsherkenning", + "Local_authentication_fingerprint": "vingerafdruk", + "Local_authentication_unlock_with_label": "Ontgrendel met {{label}}", + "Local_authentication_auto_lock_60": "Na 1 minuut", + "Local_authentication_auto_lock_300": "Na 5 minuten", + "Local_authentication_auto_lock_900": "Na 15 minuten", + "Local_authentication_auto_lock_1800": "Na 30 minuten", + "Local_authentication_auto_lock_3600": "Na 1 uur", + "Passcode_enter_title": "Voer uw toegangscode in", + "Passcode_choose_title": "Kies je nieuwe toegangscode", + "Passcode_choose_confirm_title": "Bevestig je nieuwe toegangscode", + "Passcode_choose_error": "Toegangscodes komen niet overeen. Probeer het opnieuw.", + "Passcode_choose_force_set": "Toegangscode vereist door beheerder", + "Passcode_app_locked_title": "App vergrendeld", + "Passcode_app_locked_subtitle": "Probeer het over {{timeLeft}} seconden opnieuw", + "After_seconds_set_by_admin": "Na {{seconds}} seconden (ingesteld door beheerder)", + "Dont_activate": "Nu niet activeren", + "Queued_chats": "Chats in de wachtrij", + "Queue_is_empty": "Wachtrij is leeg", + "Logout_from_other_logged_in_locations": "Afmelden bij andere ingelogde locaties", + "You_will_be_logged_out_from_other_locations": "Je wordt uitgelogd van andere locaties.", + "Logged_out_of_other_clients_successfully": "Succesvol uitgelogd bij andere klanten", + "Logout_failed": "Uitloggen mislukt!", + "Log_analytics_events": "Analysegebeurtenissen loggen", + "E2E_encryption_change_password_title": "Versleutelingswachtwoord wijzigen", + "E2E_encryption_change_password_description": "Je kan nu versleutelde privégroepen en directe berichten aanmaken. Je kan ook bestaande privégroepen of DM's wijzigen in versleuteld.\nDit is end-to-end codering, dus de sleutel om jouw berichten te coderen/decoderen en deze wordt niet op de server opgeslagen. Daarom moet je dit wachtwoord op een veilige plaats opslaan. Je moet het invoeren op andere apparaten waarop je e2e-codering wilt gebruiken.", + "E2E_encryption_change_password_error": "Fout bij het wijzigen van het E2E-wachtwoord", + "E2E_encryption_change_password_success": "E2E-wachtwoord succesvol gewijzigd!", + "E2E_encryption_change_password_message": "Zorg ervoor dat je het zorgvuldig ergens anders hebt bewaard.", + "E2E_encryption_change_password_confirmation": "Ja, verander het", + "E2E_encryption_reset_title": "E2E-sleutel resetten", + "E2E_encryption_reset_description": "Deze optie zal je huidige E2E-sleutel verwijderen en je wordt uitgelogd.\nWanneer je opniew inlogt, genereert Rocket.Chat je een nieuwe sleutel en herstelt je toegang tot elke versleutelde kamer die een of meer leden heeft.\nDoor de aard van E2E-versleuteling kan Rocket.Chat de toegang tot een versleutelde kamer zonder online lid niet herstellen.", + "E2E_encryption_reset_button": "E2E-sleutel resetten", + "E2E_encryption_reset_error": "Fout bij het resetten van E2E-sleutel!", + "E2E_encryption_reset_message": "Je wordt uitgelogd.", + "E2E_encryption_reset_confirmation": "Ja, reset het", + "Following": "Volgend", + "Threads_displaying_all": "Alles weergeven", + "Threads_displaying_following": "Volgend weergeven", + "Threads_displaying_unread": "Ongelezen weergeven", + "No_threads": "Er zijn geen discussies", + "No_threads_following": "Je volgt geen discussies", + "No_threads_unread": "Er zijn geen ongelezen discussies", + "Messagebox_Send_to_channel": "Stuur naar kanaal", + "Leader": "Leider", + "Moderator": "Moderator", + "Owner": "Eigenaar", + "Remove_from_room": "Verwijderen uit kamer", + "Ignore": "Negeren", + "Unignore": "Niet meer negeren", + "User_has_been_ignored": "Gebruiker is genegeerd", + "User_has_been_unignored": "Gebruiker wordt niet langer genegeerd", + "User_has_been_removed_from_s": "Gebruiker is verwijderd van {{s}}", + "User__username__is_now_a_leader_of__room_name_": "Gebruiker {{username}} is nu een leider van {{room_name}}", + "User__username__is_now_a_moderator_of__room_name_": "Gebruiker {{username}} is nu een moderator van {{room_name}}", + "User__username__is_now_a_owner_of__room_name_": "Gebruiker {{username}} is nu eigenaar van {{room_name}}", + "User__username__removed_from__room_name__leaders": "Gebruiker {{username}} verwijderd uit {{room_name}} leiders", + "User__username__removed_from__room_name__moderators": "Gebruiker {{username}} verwijderd uit {{room_name}} moderators", + "User__username__removed_from__room_name__owners": "Gebruiker {{username}} verwijderd uit {{room_name}} eigenaars", + "The_user_will_be_removed_from_s": "De gebruiker wordt verwijderd uit {{s}}", + "Yes_remove_user": "Ja, verwijder gebruiker!", + "Direct_message": "Direct bericht", + "Message_Ignored": "Bericht genegeerd. Tik om het weer te geven.", + "Enter_workspace_URL": "Voer de werkruimte-URL in", + "Workspace_URL_Example": "Vb. uw-bedrijf.rocket.chat", + "This_room_encryption_has_been_enabled_by__username_": "De versleuteling van deze kamer is ingeschakeld door {{username}}", + "This_room_encryption_has_been_disabled_by__username_": "De versleuteling van deze kamer is uitgeschakeld door {{username}}", + "Teams": "Teams", + "No_team_channels_found": "Geen kanalen gevonden", + "Team_not_found": "Team niet gevonden", + "Create_Team": "Team aanmaken", + "Team_Name": "Teamnaam", + "Private_Team": "Privé team", + "Read_Only_Team": "Alleen-lezen team", + "Broadcast_Team": "Broadcast team", + "creating_team": "team maken", + "team-name-already-exists": "Er bestaat al een team met die naam", + "Add_Channel_to_Team": "Kanaal toevoegen aan team", + "Left_The_Team_Successfully": "Het team met succes verlaten", + "Create_New": "Maak nieuw", + "Add_Existing": "Voeg bestaande", + "Add_Existing_Channel": "Bestaand kanaal toevoegen", + "Remove_from_Team": "Verwijderen uit team", + "Auto-join": "Automatisch deelnemen", + "Remove_Team_Room_Warning": "Wil je dit kanaal uit het team verwijderen? Het kanaal wordt terug naar de werkruimte verplaatst", + "Confirmation": "Bevestiging", + "invalid-room": "Ongeldige kamer", + "You_are_leaving_the_team": "Je verlaat het team '{{team}}'", + "Leave_Team": "Team verlaten", + "Select_Team": "Selecteer team", + "Select_Team_Channels": "Selecteer de kanalen van het team die je wilt verlaten.", + "Cannot_leave": "Kan niet weggaan", + "Cannot_remove": "Kan niet verwijderen", + "Cannot_delete": "Kan niet verwijderen", + "Last_owner_team_room": "Je bent de laatste eigenaar van dit kanaal. Zodra u het team verlaat, blijft het kanaal binnen het team, maar beheert u het van buitenaf.", + "last-owner-can-not-be-removed": "Laatste eigenaar kan niet worden verwijderd.", + "Remove_User_Teams": "Selecteer de kanalen waarvan je de gebruiker wilt verwijderen.", + "Delete_Team": "Team verwijderen", + "Select_channels_to_delete": "Dit kan niet ongedaan worden gemaakt. Zodra je een team verwijdert, worden alle chatinhoud en configuratie verwijderd.\n\nSelecteer de kanalen die je wilt verwijderen. Degene die je besluit te behouden, zullen in jouw werkruimte beschikbaar zijn. Hou er rekening mee dat openbare kanalen nog steeds openbaar en voor iedereen zichtbaar zijn.", + "You_are_deleting_the_team": "Je verwijdert dit team.", + "Removing_user_from_this_team": "Je verwijdert {{user}} uit dit team", + "Remove_User_Team_Channels": "Selecteer de kanalen waarvan je de gebruiker wilt verwijderen.", + "Remove_Member": "Lid verwijderen", + "leaving_team": "team verlaten", + "removing_team": "verwijderen uit team", + "moving_channel_to_team": "kanaal verplaatsen naar team", + "deleting_team": "team verwijderen", + "member-does-not-exist": "Lid bestaat niet", + "Convert": "Converteren", + "Convert_to_Team": "Converteren naar team", + "Convert_to_Team_Warning": "Je converteert dit kanaal naar een team. Alle leden blijven behouden.", + "Move_to_Team": "Verplaats naar team", + "Move_Channel_Paragraph": "Het verplaatsen van een kanaal binnen een team betekent dat dit kanaal wordt toegevoegd in de context van het team. Maar, alle leden van dit kanaal, die geen lid zijn van het respectieve team, zullen nog steeds toegang hebben tot dit kanaal, maar worden niet als teamleden toegevoegd.\n\nHet volledige beheer van dit kanaal wordt nog steeds door de eigenaren van dit kanaal gedaan.\n\nTeamleden en zelfs teameigenaren, wanneer ze geen lid zijn van dit kanaal, hebben geen toegang tot de content van het kanaal.\n\nHou er rekening mee dat de eigenaar van het team de leden uit het kanaal kan verwijderen.", + "Move_to_Team_Warning": "Wil je na het lezen van de vorige instructies over dit gedrag, dit kanaal nog steeds naar het geselecteerde team verplaatsen?", + "Load_More": "Meer laden", + "Load_Newer": "Nieuwer laden", + "Load_Older": "Ouder laden", + "Left_The_Room_Successfully": "Heeft kamer met succes verlaten", + "Deleted_The_Team_Successfully": "Team succesvol verwijderd", + "Deleted_The_Room_Successfully": "Kamer succesvol verwijderd", + "Convert_to_Channel": "Converteren naar kanaal", + "Converting_Team_To_Channel": "Team converteren naar kanaal", + "Select_Team_Channels_To_Delete": "Selecteer de teamkanalen die je wilt verwijderen, de kanalen die u niet selecteert, worden naar de werkruimte verplaatst.\n\nMerk op dat openbare kanalen openbaar en voor iedereen zichtbaar zullen zijn.", + "You_are_converting_the_team": "Je converteert dit team naar een kanaal" +} diff --git a/app/i18n/locales/pt-BR.json b/app/i18n/locales/pt-BR.json index 074b10efb8..98675ab6df 100644 --- a/app/i18n/locales/pt-BR.json +++ b/app/i18n/locales/pt-BR.json @@ -1,676 +1,676 @@ { - "1_person_reacted": "1 pessoa reagiu", - "1_user": "1 usuário", - "error-action-not-allowed": "{{action}} não é permitido", - "error-application-not-found": "Aplicação não encontrada", - "error-archived-duplicate-name": "Já há um canal arquivado com o nome {{room_name}}", - "error-avatar-invalid-url": "URL inválida de avatar: {{url}}", - "error-avatar-url-handling": "Erro durante o manuseio configuração avatar a partir de uma URL ({{url}}) para {{username}}", - "error-cant-invite-for-direct-room": "Não é possível convidar usuários para salas diretas", - "error-could-not-change-email": "Não foi possível mudar e-mail", - "error-could-not-change-name": "Não foi possível mudar o nome", - "error-could-not-change-username": "Não foi possível alterar o nome de usuário", - "error-delete-protected-role": "Não é possível remover um papel protegido", - "error-department-not-found": "Departamento não encontrado", - "error-direct-message-file-upload-not-allowed": "Compartilhamento de arquivos não está permitido em mensagens diretas", - "error-duplicate-channel-name": "Já existe um canal com nome {{channel_name}}", - "error-email-domain-blacklisted": "O domínio de e-mail está na lista negra", - "error-email-send-failed": "Erro ao tentar enviar e-mail: {{message}}", - "error-save-image": "Erro ao salvar imagem", - "error-field-unavailable": "{{field}} já está sendo usado :(", - "error-file-too-large": "Arquivo é muito grande", - "error-importer-not-defined": "O importador não foi definido corretamente; está faltando a classe Import.", - "error-input-is-not-a-valid-field": "{{input}} não é válido um {{field}}", - "error-invalid-actionlink": "Link de ação inválido", - "error-invalid-arguments": "Argumentos inválidos", - "error-invalid-asset": "Arquivo Inválido", - "error-invalid-channel": "Canal inválido.", - "error-invalid-channel-start-with-chars": "Canal inválido. Comece com @ ou #", - "error-invalid-custom-field": "Campo personalizado inválido", - "error-invalid-custom-field-name": "Nome inválido para o campo personalizado. Use apenas letras, números, hífens e underscores.", - "error-invalid-date": "Data fornecida inválida", - "error-invalid-description": "Descrição inválida", - "error-invalid-domain": "Domínio inválido", - "error-invalid-email": "{{email}} não é um e-mail válido", - "error-invalid-email-address": "Endereço de e-mail inválido", - "error-invalid-file-height": "Altura de arquivo inválida", - "error-invalid-file-type": "Tipo de arquivo inválido", - "error-invalid-file-width": "Altura de arquivo inválida", - "error-invalid-from-address": "Você informou um e-mail DE inválido.", - "error-invalid-integration": "Integração inválida", - "error-invalid-message": "Mensagem inválida", - "error-invalid-method": "Método inválido", - "error-invalid-name": "Nome inválido", - "error-invalid-password": "Senha inválida", - "error-invalid-redirectUri": "redirectUri inválido", - "error-invalid-role": "Papel inválido", - "error-invalid-room": "Sala inválida", - "error-invalid-room-name": "{{room_name}} não é um nome de sala válido", - "error-invalid-room-type": "{{type}} não é um tipo de sala válido.", - "error-invalid-settings": "Configurações fornecidas inválidas", - "error-invalid-subscription": "Assinatura inválida", - "error-invalid-token": "Token inválido", - "error-invalid-triggerWords": "triggerWords inválidos", - "error-invalid-urls": "URLs inválidas", - "error-invalid-user": "Usuário inválido", - "error-invalid-username": "Nome de usuário Inválido", - "error-invalid-webhook-response": "O URL do webhook respondeu com um status diferente de 200", - "error-message-deleting-blocked": "Exclusão de mensagens está bloqueada", - "error-message-editing-blocked": "Edição de mensagens está bloqueada", - "error-message-size-exceeded": "O tamanho da mensagem excede Message_MaxAllowedSize", - "error-missing-unsubscribe-link": "Você deve fornecer o link para desinscrever-se: [unsubscribe].", - "error-no-tokens-for-this-user": "Não existem tokens para este usuário", - "error-not-allowed": "Não permitido", - "error-not-authorized": "Não autorizado", - "error-push-disabled": "Notificações push desativadas", - "error-remove-last-owner": "Este é o último proprietário. Por favor, defina um novo proprietário antes de remover este.", - "error-role-in-use": "Não é possível remover o papel pois ele está em uso", - "error-role-name-required": "Nome do papel é obrigatório", - "error-the-field-is-required": "O campo {{field}} é obrigatório.", - "error-too-many-requests": "Erro, muitas solicitações. Por favor, diminua a velocidade. Você deve esperar {{seconds}} segundos antes de tentar novamente.", - "error-user-is-not-activated": "O usuário não está ativo", - "error-user-has-no-roles": "O usuário não possui permissões", - "error-user-limit-exceeded": "O número de usuários que você está tentando convidar para #channel_name excede o limite determindado pelo administrador", - "error-user-not-in-room": "O usuário não está nesta sala", - "error-user-registration-disabled": "O registro do usuário está desativado", - "error-user-registration-secret": "O registro de usuário é permitido somente via URL secreta", - "error-you-are-last-owner": "Você é o último proprietário da sala. Por favor defina um novo proprietário antes de sair.", - "error-status-not-allowed": "O status invisível está desativado", - "Actions": "Ações", - "activity": "atividade", - "Activity": "Atividade", - "Add_Reaction": "Reagir", - "Add_Server": "Adicionar servidor", - "Add_users": "Adicionar usuário", - "Agent": "Agente", - "Alert": "Alerta", - "alert": "alerta", - "alerts": "alertas", - "All_users_in_the_channel_can_write_new_messages": "Todos usuários no canal podem enviar mensagens novas", - "A_meaningful_name_for_the_discussion_room": "Um nome significativo para o canal de discussão", - "All": "Todos", - "Allow_Reactions": "Permitir reagir", - "Alphabetical": "Alfabético", - "and_more": "e mais", - "and": "e", - "announcement": "anúncio", - "Announcement": "Anúncio", - "Apply_Your_Certificate": "Aplicar certificado", - "ARCHIVE": "ARQUIVAR", - "archive": "arquivar", - "are_typing": "estão digitando", - "Are_you_sure_question_mark": "Você tem certeza?", - "Are_you_sure_you_want_to_leave_the_room": "Tem certeza de que deseja sair da sala {{room}}?", - "Audio": "Áudio", - "Authenticating": "Autenticando", - "Automatic": "Automático", - "Auto_Translate": "Tradução automática", - "Avatar_changed_successfully": "Avatar alterado com sucesso!", - "Avatar_Url": "Avatar URL", - "Away": "Ausente", - "Back": "Voltar", - "Black": "Preto", - "Block_user": "Bloquear usuário", - "Browser": "Navegador", - "Broadcast_channel_Description": "Somente usuários autorizados podem escrever novas mensagens, mas os outros usuários poderão responder", - "Broadcast_Channel": "Canal de Transmissão", - "Busy": "Ocupado", - "By_proceeding_you_are_agreeing": "Ao prosseguir você está aceitando", - "Cancel_editing": "Cancelar edição", - "Cancel_recording": "Cancelar gravação", - "Cancel": "Cancelar", - "changing_avatar": "trocando avatar", - "creating_channel": "criando canal", - "creating_invite": "criando convite", - "Channel_Name": "Nome do Canal", - "Channels": "Canais", - "Chats": "Conversas", - "Call_already_ended": "A chamada já terminou!", - "Clear_cookies_alert": "Você quer limpar seus cookies?", - "Clear_cookies_desc": "Esta ação limpará todos os cookies de login permitindo que você faça login em outras contas.", - "Clear_cookies_yes": "Sim, limpar cookies", - "Clear_cookies_no": "Não, manter cookies", - "Click_to_join": "Clique para participar!", - "Close": "Fechar", - "Close_emoji_selector": "Fechar seletor de emojis", - "Closing_chat": "Fechando conversa", - "Change_language_loading": "Alterando idioma.", - "Chat_closed_by_agent": "Conversa fechada por agente", - "Choose": "Escolher", - "Choose_from_library": "Escolha da biblioteca", - "Choose_file": "Enviar arquivo", - "Choose_where_you_want_links_be_opened": "Escolha onde deseja que os links sejam abertos", - "Code": "Código", - "Code_or_password_invalid": "Código ou senha inválido", - "Collaborative": "Colaborativo", - "Confirm": "Confirmar", - "Connect": "Conectar", - "Connected": "Conectado", - "connecting_server": "conectando no servidor", - "Connecting": "Conectando...", - "Contact_us": "Entre em contato", - "Contact_your_server_admin": "Contate o administrador do servidor.", - "Continue_with": "Entrar com", - "Copied_to_clipboard": "Copiado para a área de transferência!", - "Copy": "Copiar", - "Conversation": "Conversação", - "Permalink": "Link-Permanente", - "Clear_cache_loading": "Limpando cache.", - "Create_account": "Criar conta", - "Create_Channel": "Criar Canal", - "Create_Direct_Messages": "Criar Mensagens Diretas", - "Create_Discussion": "Criar Discussão", - "Created_snippet": "criou um snippet", - "Create_a_new_workspace": "Criar nova área de trabalho", - "Create": "Criar", - "Dark": "Escuro", - "Dark_level": "Nível escuro", - "Default": "Padrão", - "Default_browser": "Navegador padrão", - "Delete_Room_Warning": "A exclusão de uma sala irá apagar todas as mensagens postadas na sala. Isso não pode ser desfeito.", - "Department": "Departamento", - "delete": "excluir", - "Delete": "Excluir", - "DELETE": "EXCLUIR", - "deleting_room": "excluindo sala", - "description": "descrição", - "Description": "Descrição", - "Desktop_Options": "Opções De Área De Trabalho", - "Desktop_Notifications": "Notificações da Área de Trabalho", - "Desktop_Alert_info": "Essas notificações são entregues a você na área de trabalho", - "Directory": "Diretório", - "Direct_Messages": "Mensagens Diretas", - "Disable_notifications": "Desabilitar notificações", - "Discussions": "Discussões", - "Discussion_Desc": "Ajude a manter uma visão geral sobre o que está acontecendo! Ao criar uma discussão, um sub-canal do que você selecionou é criado e os dois são vinculados.", - "Discussion_name": "Nome da discussão", - "Done": "Pronto", - "Dont_Have_An_Account": "Não tem uma conta?", - "Do_you_have_an_account": "Você tem uma conta?", - "Do_you_have_a_certificate": "Você tem um certificado?", - "Do_you_really_want_to_key_this_room_question_mark": "Você quer realmente {{key}} esta sala?", - "E2E_Encryption": "Encriptação ponta a ponta", - "E2E_How_It_Works_info1": "Agora você pode criar grupos privados criptografados e mensagens diretas. Você também pode alterar grupos privados existentes ou DMs para criptografados.", - "E2E_How_It_Works_info2": "Esta é a criptografia *ponta a ponta*, portanto, a chave para codificar/decodificar suas mensagens e elas não serão salvas no servidor. Por esse motivo *você precisa armazenar esta senha em algum lugar seguro* que você pode acessar mais tarde se precisar.", - "E2E_How_It_Works_info3": "Se você continuar, será gerada automaticamente uma senha E2E.", - "E2E_How_It_Works_info4": "Você também pode configurar uma nova senha para sua chave de criptografia a qualquer momento em qualquer navegador em que tenha inserido a senha E2E existente.", - "edit": "editar", - "edited": "editado", - "Edit": "Editar", - "Edit_Status": "Editar Status", - "Edit_Invite": "Editar convite", - "End_to_end_encrypted_room": "Sala criptografada de ponta a ponta", - "end_to_end_encryption": "criptografia de ponta a ponta", - "Email_Notification_Mode_All": "Cada Menção / Mensagem Direta", - "Email_Notification_Mode_Disabled": "Desativado", - "Email_or_password_field_is_empty": "Email ou senha estão vazios", - "Email": "E-mail", - "email": "e-mail", - "Empty_title": "Título vazio", - "Enable_Auto_Translate": "Ativar a tradução automática", - "Enable_notifications": "Habilitar notificações", - "Encrypted": "Criptografado", - "Encrypted_message": "Mensagem criptografada", - "Enter_Your_E2E_Password": "Digite Sua Senha E2E", - "Enter_Your_Encryption_Password_desc1": "Isso permitirá que você acesse seus grupos privados e mensagens diretas criptografadas.", - "Enter_Your_Encryption_Password_desc2": "Você precisa inserir a senha para codificar/decodificar mensagens em todos os lugares em que usar o chat.", - "Encryption_error_title": "Sua senha de criptografia parece errada", - "Encryption_error_desc": "Não foi possível decodificar sua chave de criptografia para ser importada.", - "Everyone_can_access_this_channel": "Todos podem acessar este canal", - "Error_uploading": "Erro subindo", - "Expiration_Days": "Expira em (dias)", - "Favorite": "Adicionar aos Favoritos", - "Favorites": "Favoritos", - "Files": "Arquivos", - "File_description": "Descrição do arquivo", - "File_name": "Nome do arquivo", - "Finish_recording": "Encerrar gravação", - "Following_thread": "Começou a seguir tópico", - "For_your_security_you_must_enter_your_current_password_to_continue": "Para sua segurança, você precisa digitar sua senha", - "Forgot_password_If_this_email_is_registered": "Se este e-mail estiver cadastrado, enviaremos instruções sobre como redefinir sua senha. Se você não receber um e-mail em breve, volte e tente novamente.", - "Forgot_password": "Esqueceu sua senha?", - "Forgot_Password": "Esqueci minha senha", - "Forward": "Encaminhar", - "Forward_Chat": "Encaminhar Conversa", - "Forward_to_department": "Encaminhar para departamento", - "Forward_to_user": "Encaminhar para usuário", - "Full_table": "Clique para ver a tabela completa", - "Generate_New_Link": "Gerar novo convite", - "Group_by_favorites": "Agrupar favoritos", - "Group_by_type": "Agrupar por tipo", - "Hide": "Ocultar", - "Has_joined_the_channel": "entrou no canal", - "Has_joined_the_conversation": "entrou na conversa", - "Has_left_the_channel": "saiu da conversa", - "Hide_System_Messages": "Esconder mensagens do sistema", - "Hide_type_messages": "Esconder mensagens de \"{{type}}\"", - "Message_HideType_uj": "Utilizador Entrou", - "Message_HideType_ul": "Utilizador Saiu", - "Message_HideType_ru": "Utilizador Removido", - "Message_HideType_au": "Utilizador adicionado", - "Message_HideType_mute_unmute": "Utilizador Silenciado", - "Message_HideType_r": "Nome da sala alterado", - "Message_HideType_ut": "Utilizador adicionado ao bate-papo", - "Message_HideType_wm": "Bem Vindo", - "Message_HideType_rm": "Mensagem Removida", - "Message_HideType_subscription_role_added": "Papel atribuído", - "Message_HideType_subscription_role_removed": "Papel removido", - "Message_HideType_room_archived": "Sala arquivada", - "Message_HideType_room_unarchived": "Sala desarquivada", - "IP": "IP", - "In_app": "No app", - "In_App_and_Desktop_Alert_info": "Exibe um banner na parte superior da tela quando o aplicativo é aberto e exibe uma notificação na área de trabalho", - "Invisible": "Invisível", - "Invite": "Convidar", - "is_typing": "está digitando", - "Invalid_or_expired_invite_token": "Token de convite inválido ou vencido", - "Invalid_server_version": "O servidor que você está conectando não é suportado mais por esta versão do aplicativo: {{currentVersion}}.\n\nEsta versão do aplicativo requer a versão {{minVersion}} do servidor para funcionar corretamente.", - "Invite_Link": "Link de Convite", - "Invite_users": "Convidar usuários", - "Join": "Entrar", - "Join_Code": "Insira o Código da Sala", - "Insert_Join_Code": "Insira o código para entrar na sala", - "Join_our_open_workspace": "Entra na nossa workspace pública", - "Join_your_workspace": "Entre na sua workspace", - "Just_invited_people_can_access_this_channel": "Apenas as pessoas convidadas podem acessar este canal", - "Language": "Idioma", - "last_message": "última mensagem", - "Leave_channel": "Sair do canal", - "leaving_room": "saindo do canal", - "Leave": "Sair da sala", - "leave": "sair", - "Legal": "Legal", - "Light": "Claro", - "Livechat": "Livechat", - "Login": "Entrar", - "Login_error": "Suas credenciais foram rejeitadas. Tente novamente por favor!", - "Login_with": "Login with", - "Logging_out": "Saindo.", - "Logout": "Sair", - "Max_number_of_uses": "Número máximo de usos", - "Max_number_of_users_allowed_is_number": "Número máximo de usuários é {{maxUsers}}", - "Members": "Membros", - "Mentioned_Messages": "Mensagens mencionadas", - "mentioned": "mencionado", - "Mentions": "Menções", - "Message_accessibility": "Mensagem de {{user}} às {{time}}: {{message}}", - "Message_actions": "Ações", - "Message_pinned": "Fixou uma mensagem", - "Message_removed": "Mensagem removida", - "message": "mensagem", - "messages": "mensagens", - "Message": "Mensagem", - "Messages": "Mensagens", - "Microphone_Permission_Message": "Rocket.Chat precisa de acesso ao seu microfone para enviar mensagens de áudio.", - "Microphone_Permission": "Acesso ao Microfone", - "Mute": "Mudo", - "muted": "mudo", - "N_people_reacted": "{{n}} pessoas reagiram", - "N_users": "{{n}} usuários", - "name": "nome", - "Name": "Nome", - "Navigation_history": "Histórico de navegação", - "Never": "Nunca", - "New_Message": "Nova Mensagem", - "New_Password": "Nova Senha", - "Next": "Próximo", - "No_files": "Não há arquivos", - "No_limit": "Sem limite", - "No_mentioned_messages": "Não há menções", - "No_pinned_messages": "Não há mensagens fixadas", - "No_results_found": "Nenhum resultado encontrado", - "No_starred_messages": "Não há mensagens favoritas", - "No_thread_messages": "Não há tópicos", - "No_label_provided": "Sem {{label}}.", - "No_Message": "Não há mensagens", - "No_messages_yet": "Não há mensagens ainda", - "No_Reactions": "Sem reações", - "Not_RC_Server": "Este não é um servidor Rocket.Chat.\n{{contact}}", - "Nothing": "Nada", - "Nothing_to_save": "Nada para salvar!", - "Notify_active_in_this_room": "Notificar usuários ativos nesta sala", - "Notify_all_in_this_room": "Notificar todos nesta sala", - "Notifications": "Notificações", - "Notification_Duration": "Duração da notificação", - "Notification_Preferences": "Preferências de notificação", - "No_available_agents_to_transfer": "Nenhum agente disponível para transferência", - "Offline": "Offline", - "Oops": "Ops!", - "Omnichannel": "Omnichannel", - "Open_Livechats": "Bate-papos em Andamento", - "Omnichannel_enable_alert": "Você não está disponível no Omnichannel. Você quer ficar disponível?", - "Onboarding_description": "Workspace é o espaço de colaboração do seu time ou organização. Peça um convite ou o endereço ao seu administrador ou crie uma workspace para o seu time.", - "Onboarding_join_workspace": "Entre numa workspace", - "Onboarding_subtitle": "Além da colaboração em equipe", - "Onboarding_title": "Bem vindo ao Rocket.Chat", - "Onboarding_join_open_description": "Entre na nossa workspace pública para conversar com o time da Rocket.Chat e nossa comunidade.", - "Onboarding_agree_terms": "Ao continuar, você aceita nossos ", - "Onboarding_less_options": "Menos opções", - "Onboarding_more_options": "Mais opções", - "Online": "Online", - "Only_authorized_users_can_write_new_messages": "Somente usuários autorizados podem escrever novas mensagens", - "Open_emoji_selector": "Abrir seletor de emoji", - "Open_Source_Communication": "Comunicação Open Source", - "Open_your_authentication_app_and_enter_the_code": "Abra seu aplicativo de autenticação e digite o código.", - "OR": "OU", - "OS": "SO", - "Overwrites_the_server_configuration_and_use_room_config": "Substituir a configuração do servidor e usar a configuração da sala", - "Password": "Senha", - "Parent_channel_or_group": "Canal ou grupo pai", - "Permalink_copied_to_clipboard": "Link-permanente copiado para a área de transferência!", - "Phone": "Telefone", - "Pin": "Fixar", - "Pinned_Messages": "Mensagens Fixadas", - "pinned": "fixada", - "Pinned": "Mensagens Fixadas", - "Please_add_a_comment": "Por favor, adicione um comentário", - "Please_enter_your_password": "Por favor, digite sua senha", - "Please_wait": "Por favor, aguarde.", - "Preferences": "Preferências", - "Preferences_saved": "Preferências salvas!", - "Privacy_Policy": " Política de Privacidade", - "Private_Channel": "Canal Privado", - "Private": "Privado", - "Processing": "Processando...", - "Profile_saved_successfully": "Perfil salvo com sucesso!", - "Profile": "Perfil", - "Public_Channel": "Canal Público", - "Public": "Público", - "Push_Notifications": "Notificações Push", - "Push_Notifications_Alert_Info": "Essas notificações são entregues a você quando o aplicativo não está aberto", - "Quote": "Citar", - "Reactions_are_disabled": "Reagir está desabilitado", - "Reactions_are_enabled": "Reagir está habilitado", - "Reactions": "Reações", - "Read_External_Permission_Message": "Rocket.Chat precisa acessar fotos, mídia e arquivos no seu dispositivo", - "Read_External_Permission": "Permissão de acesso à arquivos", - "Read_Only_Channel": "Canal Somente Leitura", - "Read_Only": "Somente Leitura", - "Read_Receipt": "Lida por", - "Receive_Group_Mentions": "Receber menções de grupo", - "Receive_Group_Mentions_Info": "Receber menções @all e @here", - "Register": "Registrar", - "Repeat_Password": "Repetir Senha", - "Replied_on": "Respondido em:", - "replies": "respostas", - "reply": "resposta", - "Reply": "Responder", - "Report": "Reportar", - "Receive_Notification": "Receber Notificação", - "Receive_notifications_from": "Receber notificação de {{name}}", - "Resend": "Reenviar", - "Reset_password": "Resetar senha", - "resetting_password": "redefinindo senha", - "RESET": "RESETAR", - "Return": "Retornar", - "Review_app_title": "Você está gostando do app?", - "Review_app_desc": "Nos dê 5 estrelas na {{store}}", - "Review_app_yes": "Claro!", - "Review_app_no": "Não", - "Review_app_later": "Talvez depois", - "Review_app_unable_store": "Não foi possível abrir {{store}}", - "Review_this_app": "Avaliar esse app", - "Remove": "Remover", - "Roles": "Papéis", - "Room_actions": "Ações", - "Room_changed_announcement": "O anúncio da sala foi alterado para: {{announcement}} por {{userBy}}", - "Room_changed_description": "A descrição da sala foi alterada para: {{description}} por {{userBy}}", - "Room_changed_privacy": "Tipo da sala mudou para: {{type}} por {{userBy}}", - "Room_changed_topic": "Tópico da sala mudou para: {{topic}} por {{userBy}}", - "Room_Files": "Arquivos", - "Room_Info_Edit": "Editar", - "Room_Info": "Informações da Sala", - "Room_Members": "Membros", - "Room_name_changed": "Nome da sala alterado para: {{name}} por {{userBy}}", - "SAVE": "SALVAR", - "Save_Changes": "Salvar Alterações", - "Save": "Salvar", - "Saved": "Salvo", - "saving_preferences": "salvando preferências", - "saving_profile": "salvando perfil", - "saving_settings": "salvando configurações", - "saved_to_gallery": "Salvo na galeria", - "Save_Your_E2E_Password": "Salve sua senha E2E", - "Save_Your_Encryption_Password": "Salve Sua Senha de Criptografia", - "Save_Your_Encryption_Password_warning": "Esta senha não é armazenada em nenhum lugar, portanto, salve-a com cuidado em outro lugar.", - "Save_Your_Encryption_Password_info": "Observe que se você perder sua senha, não há como recuperá-la e você perderá o acesso às suas mensagens.", - "Search_Messages": "Buscar Mensagens", - "Search": "Buscar", - "Search_by": "Buscar por", - "Search_global_users": "Busca por usuários globais", - "Search_global_users_description": "Caso ativado, busca por usuários de outras empresas ou servidores.", - "Security_and_privacy": "Segurança e privacidade", - "Select_Avatar": "Selecionar Avatar", - "Select_Server": "Selecionar Servidor", - "Select_Users": "Selecionar Usuários", - "Select_a_Channel": "Selecione um canal", - "Select_a_Department": "Selecione um Departamento", - "Select_an_option": "Selecione uma opção", - "Select_a_User": "Selecione um Usuário", - "Send": "Enviar", - "Send_audio_message": "Enviar mensagem de áudio", - "Send_crash_report": "Enviar relatório de erros", - "Send_message": "Enviar mensagem", - "Send_me_the_code_again": "Envie-me o código novamente", - "Send_to": "Enviar para...", - "Sent_an_attachment": "Enviou um anexo", - "Server": "Servidor", - "Set_username_subtitle": "O usuário é utilizado para permitir que você seja mencionado em mensagens", - "Settings": "Configurações", - "Settings_succesfully_changed": "Configurações salvas com sucesso!", - "Share": "Compartilhar", - "Share_Link": "Share Link", - "Show_more": "Mostrar mais..", - "Show_Unread_Counter": "Mostrar contador não lido", - "Show_Unread_Counter_Info": "O contador não lido é exibido como um emblema à direita do canal, na lista", - "Sign_in_your_server": "Entrar no seu servidor", - "Sign_Up": "Registrar", - "Some_field_is_invalid_or_empty": "Algum campo está inválido ou vazio", - "Sorting_by": "Ordenando por {{key}}", - "Sound": "Som da notificação", - "Star_room": "Favoritar sala", - "Star": "Favorito", - "Starred_Messages": "Mensagens Favoritas", - "starred": "favoritou", - "Starred": "Mensagens Favoritas", - "Start_of_conversation": "Início da conversa", - "Start_a_Discussion": "Iniciar uma Discussão", - "Started_discussion": "Iniciou uma discussão:", - "Started_call": "Chamada iniciada por {{userBy}}", - "Submit": "Enviar", - "Table": "Tabela", - "Take_a_photo": "Tirar uma foto", - "Take_a_video": "Gravar um vídeo", - "Take_it": "Pegue!", - "Terms_of_Service": " Termos de Serviço ", - "Theme": "Tema", - "The_user_wont_be_able_to_type_in_roomName": "O usuário não poderá digitar em {{roomName}}", - "The_user_will_be_able_to_type_in_roomName": "O usuário poderá digitar em {{roomName}}", - "There_was_an_error_while_action": "Aconteceu um erro {{action}}!", - "This_room_is_blocked": "Este quarto está bloqueado", - "This_room_is_read_only": "Este quarto é apenas de leitura", - "Thread": "Tópico", - "Threads": "Tópicos", - "Timezone": "Fuso horário", - "To": "Para", - "topic": "tópico", - "Topic": "Tópico", - "Translate": "Traduzir", - "Try_again": "Tentar novamente", - "Two_Factor_Authentication": "Autenticação de dois fatores", - "Type_the_channel_name_here": "Digite o nome do canal", - "unarchive": "desarquivar", - "UNARCHIVE": "DESARQUIVAR", - "Unblock_user": "Desbloquear usuário", - "Unfavorite": "Remover dos Favoritos", - "Unfollowed_thread": "Parou de seguir tópico", - "Unmute": "Permitir que o usuário fale", - "unmuted": "permitiu que o usuário fale", - "Unpin": "Desafixar Mensagem", - "unread_messages": "não lidas", - "Unread": "Não lidas", - "Unread_on_top": "Não lidas no topo", - "Unstar": "Remover favorito", - "Updating": "Atualizando...", - "Uploading": "Subindo arquivo", - "Upload_file_question_mark": "Enviar arquivo?", - "User": "Usuário", - "Users": "Usuários", - "User_added_by": "Usuário {{userAdded}} adicionado por {{userBy}}", - "User_Info": "Informações do usuário", - "User_has_been_key": "Usuário foi {{key}}", - "User_is_no_longer_role_by_": "{{user}} não pertence mais à {{role}} por {{userBy}}", - "User_muted_by": "User {{userMuted}} muted por {{userBy}}", - "User_removed_by": "Usuário {{userRemoved}} removido por {{userBy}}", - "User_sent_an_attachment": "{{user}} enviou um anexo", - "User_unmuted_by": "{{userBy}} permitiu que {{userUnmuted}} fale na sala", - "User_was_set_role_by_": "{{user}} foi definido como {{role}} por {{userBy}}", - "Username_is_empty": "Usuário está vazio", - "Username": "Usuário", - "Username_or_email": "Usuário ou email", - "Uses_server_configuration": "Usar configuração do servidor", - "Verify": "Verificar", - "Verify_email_title": "Registrado com sucesso!", - "Verify_email_desc": "Nós lhe enviamos um e-mail para confirmar o seu registro. Se você não receber um e-mail em breve, por favor retorne e tente novamente.", - "Verify_your_email_for_the_code_we_sent": "Verifique em seu e-mail o código que enviamos", - "Video_call": "Chamada de vídeo", - "View_Original": "Visualizar original", - "Voice_call": "Chamada de voz", - "Waiting_for_network": "Aguardando rede...", - "Websocket_disabled": "Websocket está desativado para esse servidor.\n{{contact}}", - "Welcome": "Bem vindo", - "What_are_you_doing_right_now": "O que você está fazendo agora?", - "Whats_your_2fa": "Qual seu código de autenticação?", - "Without_Servers": "Sem Servidores", - "Workspaces": "Workspaces", - "Would_you_like_to_return_the_inquiry": "Deseja retornar a consulta?", - "Write_External_Permission_Message": "Rocket.Chat precisa de acesso à sua galeria para salvar imagens", - "Write_External_Permission": "Acesso à Galeria", - "Yes": "Sim", - "Yes_action_it": "Sim, {{action}}!", - "Yesterday": "Ontem", - "You_are_in_preview_mode": "Está é uma prévia do canal", - "You_are_offline": "Você está offline", - "You_can_search_using_RegExp_eg": "Você pode usar expressões regulares, por exemplo `/^text$/i`", - "You_colon": "Você: ", - "you_were_mentioned": "você foi mencionado", - "You_were_removed_from_channel": "Você foi removido de {{channel}}", - "you": "você", - "You": "Você", - "You_need_to_verifiy_your_email_address_to_get_notications": "Você precisa confirmar seu endereço de e-mail para obter notificações", - "Your_certificate": "Seu certificado", - "Your_invite_link_will_expire_after__usesLeft__uses": "Seu link de convite irá vencer depois de {{usesLeft}} usos.", - "Your_invite_link_will_expire_on__date__or_after__usesLeft__uses": "Seu link de convite irá vencer em {{date}} ou depois de {{usesLeft}} usos.", - "Your_invite_link_will_expire_on__date__": "Seu link de convite irá vencer em {{date}}.", - "Your_invite_link_will_never_expire": "Seu link de convite nunca irá vencer.", - "Your_workspace": "Sua workspace", - "You_will_not_be_able_to_recover_this_message": "Você não será capaz de recuperar essa mensagem!", - "You_will_unset_a_certificate_for_this_server": "Você cancelará a configuração de um certificado para este servidor", - "Change_Language": "Alterar idioma", - "Crash_report_disclaimer": "Nós não rastreamos o conteúdo das suas conversas. O relatório de erros e os eventos do analytics apenas contém informações relevantes para identificarmos problemas e corrigí-los.", - "Type_message": "Digitar mensagem", - "Room_search": "Busca de sala", - "Room_selection": "Selecionar sala 1...9", - "Next_room": "Próxima sala", - "Previous_room": "Sala anterior", - "New_room": "Nova sala", - "Upload_room": "Enviar arquivo", - "Search_messages": "Buscar mensagens", - "Scroll_messages": "Rolar mensagens", - "Reply_latest": "Responder para última mensagem", - "Reply_in_Thread": "Responder por Tópico", - "Server_selection": "Seleção de servidor", - "Server_selection_numbers": "Selecionar servidor 1...9", - "Add_server": "Adicionar servidor", - "New_line": "Nova linha", - "You_will_be_logged_out_of_this_application": "Você sairá deste aplicativo.", - "Clear": "Limpar", - "This_will_clear_all_your_offline_data": "Isto limpará todos os seus dados offline.", - "This_will_remove_all_data_from_this_server": "Isto removerá todos os dados desse servidor.", - "Mark_unread": "Marcar como não Lida", - "Wait_activation_warning": "Antes que você possa fazer o login, sua conta deve ser manualmente ativada por um administrador.", - "Screen_lock": "Bloqueio de Tela", - "Local_authentication_biometry_title": "Autenticar", - "Local_authentication_biometry_fallback": "Usar senha", - "Local_authentication_unlock_option": "Desbloquear com senha", - "Local_authentication_change_passcode": "Alterar senha", - "Local_authentication_info": "Nota: se você esquecer sua senha, terá de apagar e reinstalar o app.", - "Local_authentication_facial_recognition": "reconhecimento facial", - "Local_authentication_fingerprint": "impressão digital", - "Local_authentication_unlock_with_label": "Desbloquear com {{label}}", - "Local_authentication_auto_lock_60": "Após 1 minuto", - "Local_authentication_auto_lock_300": "Após 5 minutos", - "Local_authentication_auto_lock_900": "Após 15 minutos", - "Local_authentication_auto_lock_1800": "Após 30 minutos", - "Local_authentication_auto_lock_3600": "Após 1 hora", - "Passcode_enter_title": "Digite sua senha", - "Passcode_choose_title": "Insira sua nova senha", - "Passcode_choose_confirm_title": "Confirme sua nova senha", - "Passcode_choose_error": "As senhas não coincidem. Tente novamente.", - "Passcode_choose_force_set": "Senha foi exigida pelo admin", - "Passcode_app_locked_title": "Aplicativo bloqueado", - "Passcode_app_locked_subtitle": "Tente novamente em {{timeLeft}} segundos", - "After_seconds_set_by_admin": "Após {{seconds}} segundos (Configurado pelo adm)", - "Dont_activate": "Não ativar agora", - "Queued_chats": "Bate-papos na fila", - "Queue_is_empty": "A fila está vazia", - "Logout_from_other_logged_in_locations": "Sair de outros locais logados", - "You_will_be_logged_out_from_other_locations": "Você perderá a sessão de outros clientes", - "Logged_out_of_other_clients_successfully": "Desconectado de outros clientes com sucesso", - "Logout_failed": "Falha ao desconectar!", - "Log_analytics_events": "Logar eventos no analytics", - "E2E_encryption_change_password_title": "Alterar Senha de Criptografia", - "E2E_encryption_change_password_description": "Agora você pode criar grupos privados criptografados e mensagens diretas. Você também pode alterar os grupos privados ou DMs existentes para criptografados. Esta é uma criptografia de ponta a ponta, logo a chave para codificar / decodificar suas mensagens não será salva no servidor. Por esse motivo, você precisa armazenar sua senha em algum lugar seguro. Será solicitada a inserção de senha em outros dispositivos nos quais deseja usar a criptografia E2E.", - "E2E_encryption_change_password_error": "Erro ao alterar senha de criptografia!", - "E2E_encryption_change_password_success": "Senha de criptografia alterada com sucesso!", - "E2E_encryption_change_password_message": "Certifique-se de tê-la guardado em local seguro.", - "E2E_encryption_change_password_confirmation": "Sim, alterar", - "E2E_encryption_reset_title": "Redefinir Chave de Criptografia", - "E2E_encryption_reset_description": "Essa opção irá remover a chave de criptografia corrente e desconectá-lo. \nQuando você se conectar novamente, uma nova chave será gerada e restaurará acesso a qualquer canal com uma ou mais pessoas online. \nDevico à natureza da criptografia ponta a ponta, não será possível restaurar acesso a canais sem membros online.", - "E2E_encryption_reset_button": "Redefinir", - "E2E_encryption_reset_error": "Erro ao redefinir chave!", - "E2E_encryption_reset_message": "Você será desconectado.", - "E2E_encryption_reset_confirmation": "Sim, redefinir", - "Following": "Seguindo", - "Threads_displaying_all": "Mostrando Tudo", - "Threads_displaying_following": "Mostrando Seguindo", - "Threads_displaying_unread": "Mostrando Não Lidos", - "No_threads": "Não há tópicos", - "No_threads_following": "Você não está seguindo tópicos", - "No_threads_unread": "Não há tópicos não lidos", - "Messagebox_Send_to_channel": "Mostrar no canal", - "Remove_from_room": "Remover do canal", - "Ignore": "Ignorar", - "Unignore": "Deixar de ignorar", - "User_has_been_ignored": "Usuário foi ignorado", - "User_has_been_unignored": "O usuário não é mais ignorado", - "User_has_been_removed_from_s": "Usuário foi removido de {{s}}", - "User__username__is_now_a_leader_of__room_name_": "O usuário {{username}} agora é líder de {{room_name}}", - "User__username__is_now_a_moderator_of__room_name_": "O usuário {{username}} agora é moderador de {{room_name}}", - "User__username__is_now_a_owner_of__room_name_": "O usuário {{username}} agora é proprietário de {{room_name}}", - "User__username__removed_from__room_name__leaders": "O usuário {{username}} foi removido dos líderes de {{room_name}}", - "User__username__removed_from__room_name__moderators": "O usuário {{username}} foi removido dos moderadores de {{room_name}}", - "User__username__removed_from__room_name__owners": "O usuário {{username}} foi removido dos proprietários de {{room_name}}", - "The_user_will_be_removed_from_s": "O usuário será removido de {{s}}", - "Yes_remove_user": "Sim, remover usuário!", - "Direct_message": "Mensagem direta", - "Message_Ignored": "Mensagem ignorada. Toque para mostrar.", - "Enter_workspace_URL": "Digite a URL da sua workspace", - "Workspace_URL_Example": "Ex. sua-empresa.rocket.chat", - "This_room_encryption_has_been_enabled_by__username_": "A criptografia para essa sala foi habilitada por {{username}}", - "This_room_encryption_has_been_disabled_by__username_": "A criptografia para essa sala foi desabilitada por {{username}}", - "Teams": "Times", - "No_team_channels_found": "Nenhum canal encontrado", - "Team_not_found": "Time não encontrado", - "Private_Team": "Equipe Privada", - "Left_The_Team_Successfully": "Saiu do time com sucesso", - "Add_Existing_Channel": "Adicionar Canal Existente", - "invalid-room": "Sala inválida", - "room-name-already-exists": "Nome da sala já existe", - "error-team-creation": "Erro na criação do time", - "unauthorized": "Não autorizado", - "Left_The_Room_Successfully": "Saiu da sala com sucesso", - "Deleted_The_Team_Successfully": "Time deletado com sucesso", - "Deleted_The_Room_Successfully": "Sala deletada com sucesso", - "Convert_to_Channel": "Converter para um Canal" -} \ No newline at end of file + "1_person_reacted": "1 pessoa reagiu", + "1_user": "1 usuário", + "error-action-not-allowed": "{{action}} não é permitido", + "error-application-not-found": "Aplicação não encontrada", + "error-archived-duplicate-name": "Já há um canal arquivado com o nome {{room_name}}", + "error-avatar-invalid-url": "URL inválida de avatar: {{url}}", + "error-avatar-url-handling": "Erro durante o manuseio configuração avatar a partir de uma URL ({{url}}) para {{username}}", + "error-cant-invite-for-direct-room": "Não é possível convidar usuários para salas diretas", + "error-could-not-change-email": "Não foi possível mudar e-mail", + "error-could-not-change-name": "Não foi possível mudar o nome", + "error-could-not-change-username": "Não foi possível alterar o nome de usuário", + "error-delete-protected-role": "Não é possível remover um papel protegido", + "error-department-not-found": "Departamento não encontrado", + "error-direct-message-file-upload-not-allowed": "Compartilhamento de arquivos não está permitido em mensagens diretas", + "error-duplicate-channel-name": "Já existe um canal com nome {{channel_name}}", + "error-email-domain-blacklisted": "O domínio de e-mail está na lista negra", + "error-email-send-failed": "Erro ao tentar enviar e-mail: {{message}}", + "error-save-image": "Erro ao salvar imagem", + "error-field-unavailable": "{{field}} já está sendo usado :(", + "error-file-too-large": "Arquivo é muito grande", + "error-importer-not-defined": "O importador não foi definido corretamente; está faltando a classe Import.", + "error-input-is-not-a-valid-field": "{{input}} não é válido um {{field}}", + "error-invalid-actionlink": "Link de ação inválido", + "error-invalid-arguments": "Argumentos inválidos", + "error-invalid-asset": "Arquivo Inválido", + "error-invalid-channel": "Canal inválido.", + "error-invalid-channel-start-with-chars": "Canal inválido. Comece com @ ou #", + "error-invalid-custom-field": "Campo personalizado inválido", + "error-invalid-custom-field-name": "Nome inválido para o campo personalizado. Use apenas letras, números, hífens e underscores.", + "error-invalid-date": "Data fornecida inválida", + "error-invalid-description": "Descrição inválida", + "error-invalid-domain": "Domínio inválido", + "error-invalid-email": "{{email}} não é um e-mail válido", + "error-invalid-email-address": "Endereço de e-mail inválido", + "error-invalid-file-height": "Altura de arquivo inválida", + "error-invalid-file-type": "Tipo de arquivo inválido", + "error-invalid-file-width": "Altura de arquivo inválida", + "error-invalid-from-address": "Você informou um e-mail DE inválido.", + "error-invalid-integration": "Integração inválida", + "error-invalid-message": "Mensagem inválida", + "error-invalid-method": "Método inválido", + "error-invalid-name": "Nome inválido", + "error-invalid-password": "Senha inválida", + "error-invalid-redirectUri": "redirectUri inválido", + "error-invalid-role": "Papel inválido", + "error-invalid-room": "Sala inválida", + "error-invalid-room-name": "{{room_name}} não é um nome de sala válido", + "error-invalid-room-type": "{{type}} não é um tipo de sala válido.", + "error-invalid-settings": "Configurações fornecidas inválidas", + "error-invalid-subscription": "Assinatura inválida", + "error-invalid-token": "Token inválido", + "error-invalid-triggerWords": "triggerWords inválidos", + "error-invalid-urls": "URLs inválidas", + "error-invalid-user": "Usuário inválido", + "error-invalid-username": "Nome de usuário Inválido", + "error-invalid-webhook-response": "O URL do webhook respondeu com um status diferente de 200", + "error-message-deleting-blocked": "Exclusão de mensagens está bloqueada", + "error-message-editing-blocked": "Edição de mensagens está bloqueada", + "error-message-size-exceeded": "O tamanho da mensagem excede Message_MaxAllowedSize", + "error-missing-unsubscribe-link": "Você deve fornecer o link para desinscrever-se: [unsubscribe].", + "error-no-tokens-for-this-user": "Não existem tokens para este usuário", + "error-not-allowed": "Não permitido", + "error-not-authorized": "Não autorizado", + "error-push-disabled": "Notificações push desativadas", + "error-remove-last-owner": "Este é o último proprietário. Por favor, defina um novo proprietário antes de remover este.", + "error-role-in-use": "Não é possível remover o papel pois ele está em uso", + "error-role-name-required": "Nome do papel é obrigatório", + "error-the-field-is-required": "O campo {{field}} é obrigatório.", + "error-too-many-requests": "Erro, muitas solicitações. Por favor, diminua a velocidade. Você deve esperar {{seconds}} segundos antes de tentar novamente.", + "error-user-is-not-activated": "O usuário não está ativo", + "error-user-has-no-roles": "O usuário não possui permissões", + "error-user-limit-exceeded": "O número de usuários que você está tentando convidar para #channel_name excede o limite determindado pelo administrador", + "error-user-not-in-room": "O usuário não está nesta sala", + "error-user-registration-disabled": "O registro do usuário está desativado", + "error-user-registration-secret": "O registro de usuário é permitido somente via URL secreta", + "error-you-are-last-owner": "Você é o último proprietário da sala. Por favor defina um novo proprietário antes de sair.", + "error-status-not-allowed": "O status invisível está desativado", + "Actions": "Ações", + "activity": "atividade", + "Activity": "Atividade", + "Add_Reaction": "Reagir", + "Add_Server": "Adicionar servidor", + "Add_users": "Adicionar usuário", + "Agent": "Agente", + "Alert": "Alerta", + "alert": "alerta", + "alerts": "alertas", + "All_users_in_the_channel_can_write_new_messages": "Todos usuários no canal podem enviar mensagens novas", + "A_meaningful_name_for_the_discussion_room": "Um nome significativo para o canal de discussão", + "All": "Todos", + "Allow_Reactions": "Permitir reagir", + "Alphabetical": "Alfabético", + "and_more": "e mais", + "and": "e", + "announcement": "anúncio", + "Announcement": "Anúncio", + "Apply_Your_Certificate": "Aplicar certificado", + "ARCHIVE": "ARQUIVAR", + "archive": "arquivar", + "are_typing": "estão digitando", + "Are_you_sure_question_mark": "Você tem certeza?", + "Are_you_sure_you_want_to_leave_the_room": "Tem certeza de que deseja sair da sala {{room}}?", + "Audio": "Áudio", + "Authenticating": "Autenticando", + "Automatic": "Automático", + "Auto_Translate": "Tradução automática", + "Avatar_changed_successfully": "Avatar alterado com sucesso!", + "Avatar_Url": "Avatar URL", + "Away": "Ausente", + "Back": "Voltar", + "Black": "Preto", + "Block_user": "Bloquear usuário", + "Browser": "Navegador", + "Broadcast_channel_Description": "Somente usuários autorizados podem escrever novas mensagens, mas os outros usuários poderão responder", + "Broadcast_Channel": "Canal de Transmissão", + "Busy": "Ocupado", + "By_proceeding_you_are_agreeing": "Ao prosseguir você está aceitando", + "Cancel_editing": "Cancelar edição", + "Cancel_recording": "Cancelar gravação", + "Cancel": "Cancelar", + "changing_avatar": "trocando avatar", + "creating_channel": "criando canal", + "creating_invite": "criando convite", + "Channel_Name": "Nome do Canal", + "Channels": "Canais", + "Chats": "Conversas", + "Call_already_ended": "A chamada já terminou!", + "Clear_cookies_alert": "Você quer limpar seus cookies?", + "Clear_cookies_desc": "Esta ação limpará todos os cookies de login permitindo que você faça login em outras contas.", + "Clear_cookies_yes": "Sim, limpar cookies", + "Clear_cookies_no": "Não, manter cookies", + "Click_to_join": "Clique para participar!", + "Close": "Fechar", + "Close_emoji_selector": "Fechar seletor de emojis", + "Closing_chat": "Fechando conversa", + "Change_language_loading": "Alterando idioma.", + "Chat_closed_by_agent": "Conversa fechada por agente", + "Choose": "Escolher", + "Choose_from_library": "Escolha da biblioteca", + "Choose_file": "Enviar arquivo", + "Choose_where_you_want_links_be_opened": "Escolha onde deseja que os links sejam abertos", + "Code": "Código", + "Code_or_password_invalid": "Código ou senha inválido", + "Collaborative": "Colaborativo", + "Confirm": "Confirmar", + "Connect": "Conectar", + "Connected": "Conectado", + "connecting_server": "conectando no servidor", + "Connecting": "Conectando...", + "Contact_us": "Entre em contato", + "Contact_your_server_admin": "Contate o administrador do servidor.", + "Continue_with": "Entrar com", + "Copied_to_clipboard": "Copiado para a área de transferência!", + "Copy": "Copiar", + "Conversation": "Conversação", + "Permalink": "Link-Permanente", + "Clear_cache_loading": "Limpando cache.", + "Create_account": "Criar conta", + "Create_Channel": "Criar Canal", + "Create_Direct_Messages": "Criar Mensagens Diretas", + "Create_Discussion": "Criar Discussão", + "Created_snippet": "criou um snippet", + "Create_a_new_workspace": "Criar nova área de trabalho", + "Create": "Criar", + "Dark": "Escuro", + "Dark_level": "Nível escuro", + "Default": "Padrão", + "Default_browser": "Navegador padrão", + "Delete_Room_Warning": "A exclusão de uma sala irá apagar todas as mensagens postadas na sala. Isso não pode ser desfeito.", + "Department": "Departamento", + "delete": "excluir", + "Delete": "Excluir", + "DELETE": "EXCLUIR", + "deleting_room": "excluindo sala", + "description": "descrição", + "Description": "Descrição", + "Desktop_Options": "Opções De Área De Trabalho", + "Desktop_Notifications": "Notificações da Área de Trabalho", + "Desktop_Alert_info": "Essas notificações são entregues a você na área de trabalho", + "Directory": "Diretório", + "Direct_Messages": "Mensagens Diretas", + "Disable_notifications": "Desabilitar notificações", + "Discussions": "Discussões", + "Discussion_Desc": "Ajude a manter uma visão geral sobre o que está acontecendo! Ao criar uma discussão, um sub-canal do que você selecionou é criado e os dois são vinculados.", + "Discussion_name": "Nome da discussão", + "Done": "Pronto", + "Dont_Have_An_Account": "Não tem uma conta?", + "Do_you_have_an_account": "Você tem uma conta?", + "Do_you_have_a_certificate": "Você tem um certificado?", + "Do_you_really_want_to_key_this_room_question_mark": "Você quer realmente {{key}} esta sala?", + "E2E_Encryption": "Encriptação ponta a ponta", + "E2E_How_It_Works_info1": "Agora você pode criar grupos privados criptografados e mensagens diretas. Você também pode alterar grupos privados existentes ou DMs para criptografados.", + "E2E_How_It_Works_info2": "Esta é a criptografia *ponta a ponta*, portanto, a chave para codificar/decodificar suas mensagens e elas não serão salvas no servidor. Por esse motivo *você precisa armazenar esta senha em algum lugar seguro* que você pode acessar mais tarde se precisar.", + "E2E_How_It_Works_info3": "Se você continuar, será gerada automaticamente uma senha E2E.", + "E2E_How_It_Works_info4": "Você também pode configurar uma nova senha para sua chave de criptografia a qualquer momento em qualquer navegador em que tenha inserido a senha E2E existente.", + "edit": "editar", + "edited": "editado", + "Edit": "Editar", + "Edit_Status": "Editar Status", + "Edit_Invite": "Editar convite", + "End_to_end_encrypted_room": "Sala criptografada de ponta a ponta", + "end_to_end_encryption": "criptografia de ponta a ponta", + "Email_Notification_Mode_All": "Cada Menção / Mensagem Direta", + "Email_Notification_Mode_Disabled": "Desativado", + "Email_or_password_field_is_empty": "Email ou senha estão vazios", + "Email": "E-mail", + "email": "e-mail", + "Empty_title": "Título vazio", + "Enable_Auto_Translate": "Ativar a tradução automática", + "Enable_notifications": "Habilitar notificações", + "Encrypted": "Criptografado", + "Encrypted_message": "Mensagem criptografada", + "Enter_Your_E2E_Password": "Digite Sua Senha E2E", + "Enter_Your_Encryption_Password_desc1": "Isso permitirá que você acesse seus grupos privados e mensagens diretas criptografadas.", + "Enter_Your_Encryption_Password_desc2": "Você precisa inserir a senha para codificar/decodificar mensagens em todos os lugares em que usar o chat.", + "Encryption_error_title": "Sua senha de criptografia parece errada", + "Encryption_error_desc": "Não foi possível decodificar sua chave de criptografia para ser importada.", + "Everyone_can_access_this_channel": "Todos podem acessar este canal", + "Error_uploading": "Erro subindo", + "Expiration_Days": "Expira em (dias)", + "Favorite": "Adicionar aos Favoritos", + "Favorites": "Favoritos", + "Files": "Arquivos", + "File_description": "Descrição do arquivo", + "File_name": "Nome do arquivo", + "Finish_recording": "Encerrar gravação", + "Following_thread": "Começou a seguir tópico", + "For_your_security_you_must_enter_your_current_password_to_continue": "Para sua segurança, você precisa digitar sua senha", + "Forgot_password_If_this_email_is_registered": "Se este e-mail estiver cadastrado, enviaremos instruções sobre como redefinir sua senha. Se você não receber um e-mail em breve, volte e tente novamente.", + "Forgot_password": "Esqueceu sua senha?", + "Forgot_Password": "Esqueci minha senha", + "Forward": "Encaminhar", + "Forward_Chat": "Encaminhar Conversa", + "Forward_to_department": "Encaminhar para departamento", + "Forward_to_user": "Encaminhar para usuário", + "Full_table": "Clique para ver a tabela completa", + "Generate_New_Link": "Gerar novo convite", + "Group_by_favorites": "Agrupar favoritos", + "Group_by_type": "Agrupar por tipo", + "Hide": "Ocultar", + "Has_joined_the_channel": "entrou no canal", + "Has_joined_the_conversation": "entrou na conversa", + "Has_left_the_channel": "saiu da conversa", + "Hide_System_Messages": "Esconder mensagens do sistema", + "Hide_type_messages": "Esconder mensagens de \"{{type}}\"", + "Message_HideType_uj": "Utilizador Entrou", + "Message_HideType_ul": "Utilizador Saiu", + "Message_HideType_ru": "Utilizador Removido", + "Message_HideType_au": "Utilizador adicionado", + "Message_HideType_mute_unmute": "Utilizador Silenciado", + "Message_HideType_r": "Nome da sala alterado", + "Message_HideType_ut": "Utilizador adicionado ao bate-papo", + "Message_HideType_wm": "Bem Vindo", + "Message_HideType_rm": "Mensagem Removida", + "Message_HideType_subscription_role_added": "Papel atribuído", + "Message_HideType_subscription_role_removed": "Papel removido", + "Message_HideType_room_archived": "Sala arquivada", + "Message_HideType_room_unarchived": "Sala desarquivada", + "IP": "IP", + "In_app": "No app", + "In_App_and_Desktop_Alert_info": "Exibe um banner na parte superior da tela quando o aplicativo é aberto e exibe uma notificação na área de trabalho", + "Invisible": "Invisível", + "Invite": "Convidar", + "is_typing": "está digitando", + "Invalid_or_expired_invite_token": "Token de convite inválido ou vencido", + "Invalid_server_version": "O servidor que você está conectando não é suportado mais por esta versão do aplicativo: {{currentVersion}}.\n\nEsta versão do aplicativo requer a versão {{minVersion}} do servidor para funcionar corretamente.", + "Invite_Link": "Link de Convite", + "Invite_users": "Convidar usuários", + "Join": "Entrar", + "Join_Code": "Insira o Código da Sala", + "Insert_Join_Code": "Insira o código para entrar na sala", + "Join_our_open_workspace": "Entra na nossa workspace pública", + "Join_your_workspace": "Entre na sua workspace", + "Just_invited_people_can_access_this_channel": "Apenas as pessoas convidadas podem acessar este canal", + "Language": "Idioma", + "last_message": "última mensagem", + "Leave_channel": "Sair do canal", + "leaving_room": "saindo do canal", + "Leave": "Sair da sala", + "leave": "sair", + "Legal": "Legal", + "Light": "Claro", + "Livechat": "Livechat", + "Login": "Entrar", + "Login_error": "Suas credenciais foram rejeitadas. Tente novamente por favor!", + "Login_with": "Login with", + "Logging_out": "Saindo.", + "Logout": "Sair", + "Max_number_of_uses": "Número máximo de usos", + "Max_number_of_users_allowed_is_number": "Número máximo de usuários é {{maxUsers}}", + "Members": "Membros", + "Mentioned_Messages": "Mensagens mencionadas", + "mentioned": "mencionado", + "Mentions": "Menções", + "Message_accessibility": "Mensagem de {{user}} às {{time}}: {{message}}", + "Message_actions": "Ações", + "Message_pinned": "Fixou uma mensagem", + "Message_removed": "Mensagem removida", + "message": "mensagem", + "messages": "mensagens", + "Message": "Mensagem", + "Messages": "Mensagens", + "Microphone_Permission_Message": "Rocket.Chat precisa de acesso ao seu microfone para enviar mensagens de áudio.", + "Microphone_Permission": "Acesso ao Microfone", + "Mute": "Mudo", + "muted": "mudo", + "N_people_reacted": "{{n}} pessoas reagiram", + "N_users": "{{n}} usuários", + "name": "nome", + "Name": "Nome", + "Navigation_history": "Histórico de navegação", + "Never": "Nunca", + "New_Message": "Nova Mensagem", + "New_Password": "Nova Senha", + "Next": "Próximo", + "No_files": "Não há arquivos", + "No_limit": "Sem limite", + "No_mentioned_messages": "Não há menções", + "No_pinned_messages": "Não há mensagens fixadas", + "No_results_found": "Nenhum resultado encontrado", + "No_starred_messages": "Não há mensagens favoritas", + "No_thread_messages": "Não há tópicos", + "No_label_provided": "Sem {{label}}.", + "No_Message": "Não há mensagens", + "No_messages_yet": "Não há mensagens ainda", + "No_Reactions": "Sem reações", + "Not_RC_Server": "Este não é um servidor Rocket.Chat.\n{{contact}}", + "Nothing": "Nada", + "Nothing_to_save": "Nada para salvar!", + "Notify_active_in_this_room": "Notificar usuários ativos nesta sala", + "Notify_all_in_this_room": "Notificar todos nesta sala", + "Notifications": "Notificações", + "Notification_Duration": "Duração da notificação", + "Notification_Preferences": "Preferências de notificação", + "No_available_agents_to_transfer": "Nenhum agente disponível para transferência", + "Offline": "Offline", + "Oops": "Ops!", + "Omnichannel": "Omnichannel", + "Open_Livechats": "Bate-papos em Andamento", + "Omnichannel_enable_alert": "Você não está disponível no Omnichannel. Você quer ficar disponível?", + "Onboarding_description": "Workspace é o espaço de colaboração do seu time ou organização. Peça um convite ou o endereço ao seu administrador ou crie uma workspace para o seu time.", + "Onboarding_join_workspace": "Entre numa workspace", + "Onboarding_subtitle": "Além da colaboração em equipe", + "Onboarding_title": "Bem vindo ao Rocket.Chat", + "Onboarding_join_open_description": "Entre na nossa workspace pública para conversar com o time da Rocket.Chat e nossa comunidade.", + "Onboarding_agree_terms": "Ao continuar, você aceita nossos ", + "Onboarding_less_options": "Menos opções", + "Onboarding_more_options": "Mais opções", + "Online": "Online", + "Only_authorized_users_can_write_new_messages": "Somente usuários autorizados podem escrever novas mensagens", + "Open_emoji_selector": "Abrir seletor de emoji", + "Open_Source_Communication": "Comunicação Open Source", + "Open_your_authentication_app_and_enter_the_code": "Abra seu aplicativo de autenticação e digite o código.", + "OR": "OU", + "OS": "SO", + "Overwrites_the_server_configuration_and_use_room_config": "Substituir a configuração do servidor e usar a configuração da sala", + "Password": "Senha", + "Parent_channel_or_group": "Canal ou grupo pai", + "Permalink_copied_to_clipboard": "Link-permanente copiado para a área de transferência!", + "Phone": "Telefone", + "Pin": "Fixar", + "Pinned_Messages": "Mensagens Fixadas", + "pinned": "fixada", + "Pinned": "Mensagens Fixadas", + "Please_add_a_comment": "Por favor, adicione um comentário", + "Please_enter_your_password": "Por favor, digite sua senha", + "Please_wait": "Por favor, aguarde.", + "Preferences": "Preferências", + "Preferences_saved": "Preferências salvas!", + "Privacy_Policy": " Política de Privacidade", + "Private_Channel": "Canal Privado", + "Private": "Privado", + "Processing": "Processando...", + "Profile_saved_successfully": "Perfil salvo com sucesso!", + "Profile": "Perfil", + "Public_Channel": "Canal Público", + "Public": "Público", + "Push_Notifications": "Notificações Push", + "Push_Notifications_Alert_Info": "Essas notificações são entregues a você quando o aplicativo não está aberto", + "Quote": "Citar", + "Reactions_are_disabled": "Reagir está desabilitado", + "Reactions_are_enabled": "Reagir está habilitado", + "Reactions": "Reações", + "Read_External_Permission_Message": "Rocket.Chat precisa acessar fotos, mídia e arquivos no seu dispositivo", + "Read_External_Permission": "Permissão de acesso à arquivos", + "Read_Only_Channel": "Canal Somente Leitura", + "Read_Only": "Somente Leitura", + "Read_Receipt": "Lida por", + "Receive_Group_Mentions": "Receber menções de grupo", + "Receive_Group_Mentions_Info": "Receber menções @all e @here", + "Register": "Registrar", + "Repeat_Password": "Repetir Senha", + "Replied_on": "Respondido em:", + "replies": "respostas", + "reply": "resposta", + "Reply": "Responder", + "Report": "Reportar", + "Receive_Notification": "Receber Notificação", + "Receive_notifications_from": "Receber notificação de {{name}}", + "Resend": "Reenviar", + "Reset_password": "Resetar senha", + "resetting_password": "redefinindo senha", + "RESET": "RESETAR", + "Return": "Retornar", + "Review_app_title": "Você está gostando do app?", + "Review_app_desc": "Nos dê 5 estrelas na {{store}}", + "Review_app_yes": "Claro!", + "Review_app_no": "Não", + "Review_app_later": "Talvez depois", + "Review_app_unable_store": "Não foi possível abrir {{store}}", + "Review_this_app": "Avaliar esse app", + "Remove": "Remover", + "Roles": "Papéis", + "Room_actions": "Ações", + "Room_changed_announcement": "O anúncio da sala foi alterado para: {{announcement}} por {{userBy}}", + "Room_changed_description": "A descrição da sala foi alterada para: {{description}} por {{userBy}}", + "Room_changed_privacy": "Tipo da sala mudou para: {{type}} por {{userBy}}", + "Room_changed_topic": "Tópico da sala mudou para: {{topic}} por {{userBy}}", + "Room_Files": "Arquivos", + "Room_Info_Edit": "Editar", + "Room_Info": "Informações da Sala", + "Room_Members": "Membros", + "Room_name_changed": "Nome da sala alterado para: {{name}} por {{userBy}}", + "SAVE": "SALVAR", + "Save_Changes": "Salvar Alterações", + "Save": "Salvar", + "Saved": "Salvo", + "saving_preferences": "salvando preferências", + "saving_profile": "salvando perfil", + "saving_settings": "salvando configurações", + "saved_to_gallery": "Salvo na galeria", + "Save_Your_E2E_Password": "Salve sua senha E2E", + "Save_Your_Encryption_Password": "Salve Sua Senha de Criptografia", + "Save_Your_Encryption_Password_warning": "Esta senha não é armazenada em nenhum lugar, portanto, salve-a com cuidado em outro lugar.", + "Save_Your_Encryption_Password_info": "Observe que se você perder sua senha, não há como recuperá-la e você perderá o acesso às suas mensagens.", + "Search_Messages": "Buscar Mensagens", + "Search": "Buscar", + "Search_by": "Buscar por", + "Search_global_users": "Busca por usuários globais", + "Search_global_users_description": "Caso ativado, busca por usuários de outras empresas ou servidores.", + "Security_and_privacy": "Segurança e privacidade", + "Select_Avatar": "Selecionar Avatar", + "Select_Server": "Selecionar Servidor", + "Select_Users": "Selecionar Usuários", + "Select_a_Channel": "Selecione um canal", + "Select_a_Department": "Selecione um Departamento", + "Select_an_option": "Selecione uma opção", + "Select_a_User": "Selecione um Usuário", + "Send": "Enviar", + "Send_audio_message": "Enviar mensagem de áudio", + "Send_crash_report": "Enviar relatório de erros", + "Send_message": "Enviar mensagem", + "Send_me_the_code_again": "Envie-me o código novamente", + "Send_to": "Enviar para...", + "Sent_an_attachment": "Enviou um anexo", + "Server": "Servidor", + "Set_username_subtitle": "O usuário é utilizado para permitir que você seja mencionado em mensagens", + "Settings": "Configurações", + "Settings_succesfully_changed": "Configurações salvas com sucesso!", + "Share": "Compartilhar", + "Share_Link": "Share Link", + "Show_more": "Mostrar mais..", + "Show_Unread_Counter": "Mostrar contador não lido", + "Show_Unread_Counter_Info": "O contador não lido é exibido como um emblema à direita do canal, na lista", + "Sign_in_your_server": "Entrar no seu servidor", + "Sign_Up": "Registrar", + "Some_field_is_invalid_or_empty": "Algum campo está inválido ou vazio", + "Sorting_by": "Ordenando por {{key}}", + "Sound": "Som da notificação", + "Star_room": "Favoritar sala", + "Star": "Favorito", + "Starred_Messages": "Mensagens Favoritas", + "starred": "favoritou", + "Starred": "Mensagens Favoritas", + "Start_of_conversation": "Início da conversa", + "Start_a_Discussion": "Iniciar uma Discussão", + "Started_discussion": "Iniciou uma discussão:", + "Started_call": "Chamada iniciada por {{userBy}}", + "Submit": "Enviar", + "Table": "Tabela", + "Take_a_photo": "Tirar uma foto", + "Take_a_video": "Gravar um vídeo", + "Take_it": "Pegue!", + "Terms_of_Service": " Termos de Serviço ", + "Theme": "Tema", + "The_user_wont_be_able_to_type_in_roomName": "O usuário não poderá digitar em {{roomName}}", + "The_user_will_be_able_to_type_in_roomName": "O usuário poderá digitar em {{roomName}}", + "There_was_an_error_while_action": "Aconteceu um erro {{action}}!", + "This_room_is_blocked": "Este quarto está bloqueado", + "This_room_is_read_only": "Este quarto é apenas de leitura", + "Thread": "Tópico", + "Threads": "Tópicos", + "Timezone": "Fuso horário", + "To": "Para", + "topic": "tópico", + "Topic": "Tópico", + "Translate": "Traduzir", + "Try_again": "Tentar novamente", + "Two_Factor_Authentication": "Autenticação de dois fatores", + "Type_the_channel_name_here": "Digite o nome do canal", + "unarchive": "desarquivar", + "UNARCHIVE": "DESARQUIVAR", + "Unblock_user": "Desbloquear usuário", + "Unfavorite": "Remover dos Favoritos", + "Unfollowed_thread": "Parou de seguir tópico", + "Unmute": "Permitir que o usuário fale", + "unmuted": "permitiu que o usuário fale", + "Unpin": "Desafixar Mensagem", + "unread_messages": "não lidas", + "Unread": "Não lidas", + "Unread_on_top": "Não lidas no topo", + "Unstar": "Remover favorito", + "Updating": "Atualizando...", + "Uploading": "Subindo arquivo", + "Upload_file_question_mark": "Enviar arquivo?", + "User": "Usuário", + "Users": "Usuários", + "User_added_by": "Usuário {{userAdded}} adicionado por {{userBy}}", + "User_Info": "Informações do usuário", + "User_has_been_key": "Usuário foi {{key}}", + "User_is_no_longer_role_by_": "{{user}} não pertence mais à {{role}} por {{userBy}}", + "User_muted_by": "User {{userMuted}} muted por {{userBy}}", + "User_removed_by": "Usuário {{userRemoved}} removido por {{userBy}}", + "User_sent_an_attachment": "{{user}} enviou um anexo", + "User_unmuted_by": "{{userBy}} permitiu que {{userUnmuted}} fale na sala", + "User_was_set_role_by_": "{{user}} foi definido como {{role}} por {{userBy}}", + "Username_is_empty": "Usuário está vazio", + "Username": "Usuário", + "Username_or_email": "Usuário ou email", + "Uses_server_configuration": "Usar configuração do servidor", + "Verify": "Verificar", + "Verify_email_title": "Registrado com sucesso!", + "Verify_email_desc": "Nós lhe enviamos um e-mail para confirmar o seu registro. Se você não receber um e-mail em breve, por favor retorne e tente novamente.", + "Verify_your_email_for_the_code_we_sent": "Verifique em seu e-mail o código que enviamos", + "Video_call": "Chamada de vídeo", + "View_Original": "Visualizar original", + "Voice_call": "Chamada de voz", + "Waiting_for_network": "Aguardando rede...", + "Websocket_disabled": "Websocket está desativado para esse servidor.\n{{contact}}", + "Welcome": "Bem vindo", + "What_are_you_doing_right_now": "O que você está fazendo agora?", + "Whats_your_2fa": "Qual seu código de autenticação?", + "Without_Servers": "Sem Servidores", + "Workspaces": "Workspaces", + "Would_you_like_to_return_the_inquiry": "Deseja retornar a consulta?", + "Write_External_Permission_Message": "Rocket.Chat precisa de acesso à sua galeria para salvar imagens", + "Write_External_Permission": "Acesso à Galeria", + "Yes": "Sim", + "Yes_action_it": "Sim, {{action}}!", + "Yesterday": "Ontem", + "You_are_in_preview_mode": "Está é uma prévia do canal", + "You_are_offline": "Você está offline", + "You_can_search_using_RegExp_eg": "Você pode usar expressões regulares, por exemplo `/^text$/i`", + "You_colon": "Você: ", + "you_were_mentioned": "você foi mencionado", + "You_were_removed_from_channel": "Você foi removido de {{channel}}", + "you": "você", + "You": "Você", + "You_need_to_verifiy_your_email_address_to_get_notications": "Você precisa confirmar seu endereço de e-mail para obter notificações", + "Your_certificate": "Seu certificado", + "Your_invite_link_will_expire_after__usesLeft__uses": "Seu link de convite irá vencer depois de {{usesLeft}} usos.", + "Your_invite_link_will_expire_on__date__or_after__usesLeft__uses": "Seu link de convite irá vencer em {{date}} ou depois de {{usesLeft}} usos.", + "Your_invite_link_will_expire_on__date__": "Seu link de convite irá vencer em {{date}}.", + "Your_invite_link_will_never_expire": "Seu link de convite nunca irá vencer.", + "Your_workspace": "Sua workspace", + "You_will_not_be_able_to_recover_this_message": "Você não será capaz de recuperar essa mensagem!", + "You_will_unset_a_certificate_for_this_server": "Você cancelará a configuração de um certificado para este servidor", + "Change_Language": "Alterar idioma", + "Crash_report_disclaimer": "Nós não rastreamos o conteúdo das suas conversas. O relatório de erros e os eventos do analytics apenas contém informações relevantes para identificarmos problemas e corrigí-los.", + "Type_message": "Digitar mensagem", + "Room_search": "Busca de sala", + "Room_selection": "Selecionar sala 1...9", + "Next_room": "Próxima sala", + "Previous_room": "Sala anterior", + "New_room": "Nova sala", + "Upload_room": "Enviar arquivo", + "Search_messages": "Buscar mensagens", + "Scroll_messages": "Rolar mensagens", + "Reply_latest": "Responder para última mensagem", + "Reply_in_Thread": "Responder por Tópico", + "Server_selection": "Seleção de servidor", + "Server_selection_numbers": "Selecionar servidor 1...9", + "Add_server": "Adicionar servidor", + "New_line": "Nova linha", + "You_will_be_logged_out_of_this_application": "Você sairá deste aplicativo.", + "Clear": "Limpar", + "This_will_clear_all_your_offline_data": "Isto limpará todos os seus dados offline.", + "This_will_remove_all_data_from_this_server": "Isto removerá todos os dados desse servidor.", + "Mark_unread": "Marcar como não Lida", + "Wait_activation_warning": "Antes que você possa fazer o login, sua conta deve ser manualmente ativada por um administrador.", + "Screen_lock": "Bloqueio de Tela", + "Local_authentication_biometry_title": "Autenticar", + "Local_authentication_biometry_fallback": "Usar senha", + "Local_authentication_unlock_option": "Desbloquear com senha", + "Local_authentication_change_passcode": "Alterar senha", + "Local_authentication_info": "Nota: se você esquecer sua senha, terá de apagar e reinstalar o app.", + "Local_authentication_facial_recognition": "reconhecimento facial", + "Local_authentication_fingerprint": "impressão digital", + "Local_authentication_unlock_with_label": "Desbloquear com {{label}}", + "Local_authentication_auto_lock_60": "Após 1 minuto", + "Local_authentication_auto_lock_300": "Após 5 minutos", + "Local_authentication_auto_lock_900": "Após 15 minutos", + "Local_authentication_auto_lock_1800": "Após 30 minutos", + "Local_authentication_auto_lock_3600": "Após 1 hora", + "Passcode_enter_title": "Digite sua senha", + "Passcode_choose_title": "Insira sua nova senha", + "Passcode_choose_confirm_title": "Confirme sua nova senha", + "Passcode_choose_error": "As senhas não coincidem. Tente novamente.", + "Passcode_choose_force_set": "Senha foi exigida pelo admin", + "Passcode_app_locked_title": "Aplicativo bloqueado", + "Passcode_app_locked_subtitle": "Tente novamente em {{timeLeft}} segundos", + "After_seconds_set_by_admin": "Após {{seconds}} segundos (Configurado pelo adm)", + "Dont_activate": "Não ativar agora", + "Queued_chats": "Bate-papos na fila", + "Queue_is_empty": "A fila está vazia", + "Logout_from_other_logged_in_locations": "Sair de outros locais logados", + "You_will_be_logged_out_from_other_locations": "Você perderá a sessão de outros clientes", + "Logged_out_of_other_clients_successfully": "Desconectado de outros clientes com sucesso", + "Logout_failed": "Falha ao desconectar!", + "Log_analytics_events": "Logar eventos no analytics", + "E2E_encryption_change_password_title": "Alterar Senha de Criptografia", + "E2E_encryption_change_password_description": "Agora você pode criar grupos privados criptografados e mensagens diretas. Você também pode alterar os grupos privados ou DMs existentes para criptografados. Esta é uma criptografia de ponta a ponta, logo a chave para codificar / decodificar suas mensagens não será salva no servidor. Por esse motivo, você precisa armazenar sua senha em algum lugar seguro. Será solicitada a inserção de senha em outros dispositivos nos quais deseja usar a criptografia E2E.", + "E2E_encryption_change_password_error": "Erro ao alterar senha de criptografia!", + "E2E_encryption_change_password_success": "Senha de criptografia alterada com sucesso!", + "E2E_encryption_change_password_message": "Certifique-se de tê-la guardado em local seguro.", + "E2E_encryption_change_password_confirmation": "Sim, alterar", + "E2E_encryption_reset_title": "Redefinir Chave de Criptografia", + "E2E_encryption_reset_description": "Essa opção irá remover a chave de criptografia corrente e desconectá-lo. \nQuando você se conectar novamente, uma nova chave será gerada e restaurará acesso a qualquer canal com uma ou mais pessoas online. \nDevico à natureza da criptografia ponta a ponta, não será possível restaurar acesso a canais sem membros online.", + "E2E_encryption_reset_button": "Redefinir", + "E2E_encryption_reset_error": "Erro ao redefinir chave!", + "E2E_encryption_reset_message": "Você será desconectado.", + "E2E_encryption_reset_confirmation": "Sim, redefinir", + "Following": "Seguindo", + "Threads_displaying_all": "Mostrando Tudo", + "Threads_displaying_following": "Mostrando Seguindo", + "Threads_displaying_unread": "Mostrando Não Lidos", + "No_threads": "Não há tópicos", + "No_threads_following": "Você não está seguindo tópicos", + "No_threads_unread": "Não há tópicos não lidos", + "Messagebox_Send_to_channel": "Mostrar no canal", + "Remove_from_room": "Remover do canal", + "Ignore": "Ignorar", + "Unignore": "Deixar de ignorar", + "User_has_been_ignored": "Usuário foi ignorado", + "User_has_been_unignored": "O usuário não é mais ignorado", + "User_has_been_removed_from_s": "Usuário foi removido de {{s}}", + "User__username__is_now_a_leader_of__room_name_": "O usuário {{username}} agora é líder de {{room_name}}", + "User__username__is_now_a_moderator_of__room_name_": "O usuário {{username}} agora é moderador de {{room_name}}", + "User__username__is_now_a_owner_of__room_name_": "O usuário {{username}} agora é proprietário de {{room_name}}", + "User__username__removed_from__room_name__leaders": "O usuário {{username}} foi removido dos líderes de {{room_name}}", + "User__username__removed_from__room_name__moderators": "O usuário {{username}} foi removido dos moderadores de {{room_name}}", + "User__username__removed_from__room_name__owners": "O usuário {{username}} foi removido dos proprietários de {{room_name}}", + "The_user_will_be_removed_from_s": "O usuário será removido de {{s}}", + "Yes_remove_user": "Sim, remover usuário!", + "Direct_message": "Mensagem direta", + "Message_Ignored": "Mensagem ignorada. Toque para mostrar.", + "Enter_workspace_URL": "Digite a URL da sua workspace", + "Workspace_URL_Example": "Ex. sua-empresa.rocket.chat", + "This_room_encryption_has_been_enabled_by__username_": "A criptografia para essa sala foi habilitada por {{username}}", + "This_room_encryption_has_been_disabled_by__username_": "A criptografia para essa sala foi desabilitada por {{username}}", + "Teams": "Times", + "No_team_channels_found": "Nenhum canal encontrado", + "Team_not_found": "Time não encontrado", + "Private_Team": "Equipe Privada", + "Left_The_Team_Successfully": "Saiu do time com sucesso", + "Add_Existing_Channel": "Adicionar Canal Existente", + "invalid-room": "Sala inválida", + "room-name-already-exists": "Nome da sala já existe", + "error-team-creation": "Erro na criação do time", + "unauthorized": "Não autorizado", + "Left_The_Room_Successfully": "Saiu da sala com sucesso", + "Deleted_The_Team_Successfully": "Time deletado com sucesso", + "Deleted_The_Room_Successfully": "Sala deletada com sucesso", + "Convert_to_Channel": "Converter para um Canal" +} diff --git a/app/i18n/locales/pt-PT.json b/app/i18n/locales/pt-PT.json index fa10dcd36d..fb96c42e7e 100644 --- a/app/i18n/locales/pt-PT.json +++ b/app/i18n/locales/pt-PT.json @@ -1,521 +1,521 @@ { - "1_person_reacted": "1 pessoa reagiu", - "1_user": "1 utilizador", - "error-action-not-allowed": "{{action}} não é permitida", - "error-application-not-found": "Aplicação não encontrada", - "error-archived-duplicate-name": "Existe um canal arquivado com o nome {{room_name}}", - "error-avatar-invalid-url": "URL de avatar inválido: {{url}}", - "error-avatar-url-handling": "Erro ao manipular a configuração de avatar de um URL ({{url}}) para {{username}}", - "error-cant-invite-for-direct-room": "Não pode convidar utilizadores para salas de mensagens directas", - "error-could-not-change-email": "Não foi possível alterar o e-mail", - "error-could-not-change-name": "Não foi possível alterar o nome", - "error-could-not-change-username": "Não foi possível alterar o nome de utilizador", - "error-could-not-change-status": "Impossível mudar estado", - "error-delete-protected-role": "Não é possível eliminar uma função protegida", - "error-department-not-found": "Departamento não encontrado", - "error-direct-message-file-upload-not-allowed": "Partilha de ficheiros não permitido em mensagens diretas", - "error-duplicate-channel-name": "Existe um canal com o nome {{room_name}}", - "error-email-domain-blacklisted": "O domínio de e-mail está na lista negra", - "error-email-send-failed": "Erro ao tentar enviar e-mail: {{message}}", - "error-save-image": "Erro ao salvar imagem", - "error-save-video": "Erro ao salvar vídeo", - "error-field-unavailable": "{{field}} já está em uso :(", - "error-file-too-large": "Ficheiro demasiado grande", - "error-importer-not-defined": "O importador não foi definido correctamente, a classe Import está em falta.", - "error-input-is-not-a-valid-field": "{{input}} não é um {{field}} válido", - "error-invalid-actionlink": "Link de acção inválido", - "error-invalid-arguments": "Argumentos inválidos", - "error-invalid-asset": "Ficheiro inválido", - "error-invalid-channel": "Canal inválido.", - "error-invalid-channel-start-with-chars": "Canal inválido. Começa por @ ou #", - "error-invalid-custom-field": "Campo personalizado inválido", - "error-invalid-custom-field-name": "Nome de campo personalizado inválido. Use apenas letras, números, hífens e sublinhados.", - "error-invalid-date": "Data inválida fornecida.", - "error-invalid-description": "Descrição inválida", - "error-invalid-domain": "Domínio inválido", - "error-invalid-email": "E-mail inválido {{email}}", - "error-invalid-email-address": "Endereço de e-mail invalido", - "error-invalid-file-height": "Altura de ficheiro inválida", - "error-invalid-file-type": "Tipo de ficheiro inválido", - "error-invalid-file-width": "Largura de ficheiro inválida", - "error-invalid-from-address": "Você informou um endereço DE inválido.", - "error-invalid-integration": "Integração inválida", - "error-invalid-message": "Mensagem inválida", - "error-invalid-method": "Método inválido", - "error-invalid-name": "Nome inválido", - "error-invalid-password": "Palavra-passe inválida", - "error-invalid-redirectUri": "redirectUri inválido", - "error-invalid-role": "Função inválido", - "error-invalid-room": "Sala inválida", - "error-invalid-room-name": "{{room_name}} não é um nome de sala válido", - "error-invalid-room-type": "{{type}} não é um tipo de sala válido.", - "error-invalid-settings": "Configurações inválidas fornecidas", - "error-invalid-subscription": "Subscrição inválida", - "error-invalid-token": "Token inválido", - "error-invalid-triggerWords": "triggerWords inválido", - "error-invalid-urls": "URLs inválidos", - "error-invalid-user": "Utilizador inválido", - "error-invalid-username": "Nome de utilizador inválido", - "error-invalid-webhook-response": "O URL do webhook respondeu com um estado diferente de 200", - "error-message-deleting-blocked": "A remoção de mensagens está bloqueada", - "error-message-editing-blocked": "A edição de mensagens está bloqueada", - "error-message-size-exceeded": "O tamanho da mensagem excede Message_MaxAllowedSize", - "error-missing-unsubscribe-link": "Você deve fornecer o link para cancelar a subscrição: [unsubscribe].", - "error-no-owner-channel": "Você não é dono do canal", - "error-no-tokens-for-this-user": "Não há tokens para este utilizador", - "error-not-allowed": "Não permitido", - "error-not-authorized": "Não autorizado", - "error-push-disabled": "Push está desactivado", - "error-remove-last-owner": "Este é o último proprietário. Por favor, defina um novo proprietário antes de remover este.", - "error-role-in-use": "Não é possível remover função porque está em uso", - "error-role-name-required": "Nome da função requerido", - "error-the-field-is-required": "O campo {{field}} é obrigatório.", - "error-too-many-requests": "Erro, demasiados pedidos. Por favor, diminua a velocidade. Você deve esperar {{seconds}} segundos antes de tentar novamente.", - "error-user-is-not-activated": "O utilizador não está activado", - "error-user-has-no-roles": "O utilizador não tem funções", - "error-user-limit-exceeded": "O número de utilizadores que você está a tentar convidar para #channel_name excede o limite definido pelo administrador", - "error-user-not-in-room": "O utilizador não está nesta sala", - "error-user-registration-custom-field": "error-user-registration-custom-field", - "error-user-registration-disabled": "O registo de utilizadores está desactivado", - "error-user-registration-secret": "O registo de utilizadores só é permitido por meio de um URL secreto", - "error-you-are-last-owner": "Você é o último proprietário. Por favor, defina novo proprietário antes de sair da sala.", - "error-status-not-allowed": "O estado invisível está desactivado", - "Actions": "Acções", - "activity": "actividade", - "Activity": "Actividade", - "Add_Reaction": "Adicionar Reacção", - "Add_Server": "Adicionar Servidor", - "Add_users": "Adicionar utilizadores", - "Admin_Panel": "Painel de Administração", - "Agent": "Agente", - "Alert": "Alerta", - "alert": "alerta", - "alerts": "alertas", - "All_users_in_the_channel_can_write_new_messages": "Todos os utilizadores no canal podem escrever novas mensagens", - "All_users_in_the_team_can_write_new_messages": "Todos os usuários da equipa podem escrever novas mensagens", - "A_meaningful_name_for_the_discussion_room": "Um nome significativo para a sala de discussão", - "All": "Todos", - "All_Messages": "Todas as Mensagens", - "Allow_Reactions": "Permitir Reacções", - "Alphabetical": "Alfabética", - "and_more": "e mais", - "and": "e", - "announcement": "anúncio", - "Announcement": "Anúncio", - "Apply_Your_Certificate": "Aplique o seu Certificado", - "ARCHIVE": "ARQUIVAR", - "archive": "arquivar", - "are_typing": "estão a escrever", - "Are_you_sure_question_mark": "Tem a certeza?", - "Are_you_sure_you_want_to_leave_the_room": "Tem certeza de que quer sair da sala {{room}}?", - "Audio": "Áudio", - "Authenticating": "Autenticando", - "Automatic": "Automático", - "Auto_Translate": "Auto-Tradução", - "Avatar_changed_successfully": "Avatar alterado com sucesso!", - "Avatar_Url": "URL do Avatar", - "Away": "Ausente", - "Back": "Voltar", - "Black": "Preto", - "Block_user": "Bloquear utilizador", - "Browser": "Navegador", - "Broadcast_channel_Description": "Apenas utilizadores autorizados podem escrever novas mensagens, mas os outros utilizadores poderão responder", - "Broadcast_Channel": "Canal de Transmissão", - "Busy": "Ocupado", - "By_proceeding_you_are_agreeing": "Ao prosseguir você concorda com o(s) nosso(s)", - "Cancel_editing": "Cancelar edição", - "Cancel_recording": "Cancelar gravação", - "Cancel": "Cancelar", - "changing_avatar": "a alterar avatar", - "creating_channel": "a criar canal", - "creating_invite": "a criar convite", - "Channel_Name": "Nome do Canal", - "Channels": "Canais", - "Chats": "Chats", - "Call_already_ended": "Chamada já terminada!", - "Clear_cookies_alert": "Quer limpar todas as cookies?", - "Clear_cookies_desc": "Esta acção irá limpar todos os cookies de login, permitindo que você faça login em outras contas.", - "Clear_cookies_yes": "Sim, limpar cookies", - "Clear_cookies_no": "Não, guardar cookies", - "Click_to_join": "Clique para Entrar!", - "Close": "Fechar", - "Close_emoji_selector": "Fechar selector de emoticons", - "Closing_chat": "A fechar o chat", - "Change_language_loading": "Mudança de idioma.", - "Chat_closed_by_agent": "Chat fechado por agente", - "Choose": "Escolher", - "Choose_from_library": "Escolher da biblioteca", - "Choose_file": "Escolher arquivo", - "Choose_where_you_want_links_be_opened": "Escolha onde você quer que os links sejam abertos", - "Code": "Código", - "Code_or_password_invalid": "Código ou senha inválidos", - "Collaborative": "Colaborativa", - "Confirm": "Confirmar", - "Connect": "Ligar", - "Connected": "Ligado", - "connecting_server": "conexão ao servidor", - "Connecting": "A ligar...", - "Contact_us": "Contacte-nos", - "Contact_your_server_admin": "Contacte o administrador do seu servidor.", - "Continue_with": "Continuar com", - "Copied_to_clipboard": "Copiado para a área de transferência!", - "Copy": "Copiar", - "Conversation": "Conversa", - "Permalink": "Link permanente", - "Certificate_password": "Senha do Certificado", - "Clear_cache": "Limpar a cache do servidor local", - "Clear_cache_loading": "A limpar a cache.", - "Whats_the_password_for_your_certificate": "Qual é a senha para o seu certificado?", - "Create_account": "Criar uma conta", - "Create_Channel": "Criar Canal", - "Create_Direct_Messages": "Criar Mensagens Diretas", - "Create_Discussion": "Criar Discussão", - "Created_snippet": "criado um extracto", - "Create_a_new_workspace": "Criar um novo espaço de trabalho", - "Create": "Criar", - "Custom_Status": "Status Personalizado", - "Dark": "Escuro", - "Dark_level": "Nível Escuro", - "Default": "Predefinição", - "Default_browser": "Navegador predefinido", - "Delete_Room_Warning": "Apagar uma sala irá remover todas as mensagens contidas nela. Isto não pode ser desfeito.", - "Department": "Departamento", - "delete": "apagar", - "Delete": "Apagar", - "DELETE": "APAGAR", - "move": "mover", - "deleting_room": "apagando sala", - "description": "descrição", - "Description": "Descrição", - "Desktop_Options": "Opções da área de trabalho", - "Desktop_Notifications": "Notificações da área de trabalho", - "Desktop_Alert_info": "Estas notificações são entregues na área de trabalho", - "Directory": "Directório", - "Direct_Messages": "Mensagens Directas", - "Disable_notifications": "Desactivar notificações", - "Discussions": "Discussões", - "Discussion_Desc": "Ajude a manter uma visão geral sobre o que está acontecendo! Ao criar uma discussão, é criado um sub-canal do que você selecionou e ambos estão ligados.", - "Discussion_name": "Nome da discussão", - "Done": "Feito", - "Dont_Have_An_Account": "Não tem uma conta?", - "Do_you_have_an_account": "Você tem uma conta?", - "Do_you_have_a_certificate": "Você tem um certificado?", - "Do_you_really_want_to_key_this_room_question_mark": "Você quer mesmo {{key}} esta sala?", - "E2E_Encryption": "Encriptação E2E", - "E2E_How_It_Works_info1": "Agora você pode criar grupos privados criptografados e mensagens diretas. Você também pode alterar grupos privados existentes ou DMs para criptografados.", - "E2E_How_It_Works_info2": "Isto é *criptografia ponto a ponto* portanto a chave para codificar/descodificar as suas mensagens não será salva no servidor. Por essa razão *você precisa armazenar esta senha em algum lugar seguro* que você posa aceder mais tarde, se precisar.", - "E2E_How_It_Works_info3": "Se você prosseguir, uma senha E2E será gerada automaticamente.", - "E2E_How_It_Works_info4": "Você também pode configurar uma nova senha para sua chave de criptografia a qualquer momento a partir de qualquer navegador que você tenha inserido a senha existente do E2E.", - "edit": "editar", - "edited": "editado", - "Edit": "Editar", - "Edit_Status": "Editar Status", - "Edit_Invite": "Editar Convite", - "End_to_end_encrypted_room": "Sala encriptada de ponta a ponta", - "end_to_end_encryption": "encriptação de ponta a ponta", - "Email_Notification_Mode_All": "Cada Menção/DM", - "Email_Notification_Mode_Disabled": "Desactivado", - "Email_or_password_field_is_empty": "O campo de e-mail ou palavra-passe está vazio", - "Email": "E-mail", - "email": "e-mail", - "Empty_title": "Título vazio", - "Enable_Auto_Translate": "Activar Auto-Tradução", - "Enable_notifications": "Activar notificações", - "Encrypted": "Encriptado", - "Encrypted_message": "Mensagem encriptada", - "Enter_Your_E2E_Password": "Digite a sua senha E2E", - "Enter_Your_Encryption_Password_desc1": "Isto permitir-lhe-á aceder aos seus grupos privados encriptados e às suas mensagens directas.", - "Enter_Your_Encryption_Password_desc2": "Você precisa digitar a senha para codificar/descodificar mensagens em cada lugar que você usar o chat.", - "Encryption_error_title": "A sua senha de encriptação parece errada", - "Encryption_error_desc": "Não foi possível descodificar a sua chave de encriptação para ser importada.", - "Everyone_can_access_this_channel": "Todos podem aceder a este canal", - "Everyone_can_access_this_team": "Todos podem aceder a esta equipa", - "Error_uploading": "Erro ao fazer o envio", - "Expiration_Days": "Validade (Dias)", - "Favorite": "Favorito", - "Favorites": "Favoritos", - "Files": "Ficheiros", - "File_description": "Descrição do ficheiro", - "File_name": "Nome do ficheiro", - "Finish_recording": "Terminar a gravação", - "Following_thread": "Seguir discussão", - "For_your_security_you_must_enter_your_current_password_to_continue": "Para sua segurança, você deve escrever a sua palavra-passe actual para continuar", - "Forgot_password_If_this_email_is_registered": "Se este e-mail estiver registado, enviaremos instruções sobre como repor a sua palavra-passe. Se você não receber um e-mail em breve, volte e tente novamente.", - "Forgot_password": "Esquecer palavra-passe", - "Forgot_Password": "Esquecer Palavra-passe", - "Forward": "Reencaminhar", - "Forward_Chat": "Reencaminhar Chat", - "Forward_to_department": "Reencaminhar para o departamento", - "Forward_to_user": "Reencaminhar para o utilizador", - "Full_table": "Clique para ver a tabela completa", - "Generate_New_Link": "Gerar Novo Link", - "Group_by_favorites": "Agrupar por favoritos", - "Group_by_type": "Agrupar por tipo", - "Hide": "Esconder", - "Has_joined_the_channel": "entrou no canal", - "Has_joined_the_conversation": "entrou na conversa", - "Has_left_the_channel": "saiu do canal", - "Hide_System_Messages": "Esconder mensagens do sistema", - "Hide_type_messages": "Esconder mensagens \"{{type}}\"", - "How_It_Works": "Como Funciona", - "Message_HideType_uj": "Utilizador entrou", - "Message_HideType_ul": "Utilizador saiu", - "Message_HideType_ru": "Utilizador removido", - "Message_HideType_au": "Utilizador adicionado", - "Message_HideType_mute_unmute": "Utilizador silenciado/de-silenciado", - "Message_HideType_r": "Nome da sala alterado", - "Message_HideType_ut": "Utilizador entrou na conversação", - "Message_HideType_wm": "Bem-vindo", - "Message_HideType_rm": "Mensagem Removida", - "Message_HideType_subscription_role_added": "Foi definido o estatuto", - "Message_HideType_subscription_role_removed": "Definição de estatuto removida", - "Message_HideType_room_archived": "Sala arquivada", - "Message_HideType_room_unarchived": "Sala desarquivada", - "I_Saved_My_E2E_Password": "Guardei a minha senha E2E", - "IP": "IP", - "In_app": "Na aplicação", - "In_App_And_Desktop": "Na aplicação e área de trabalho", - "In_App_and_Desktop_Alert_info": "Exibe um banner no topo da tela quando a aplicação está aberto, e exibe uma notificação na área de trabalho", - "Invisible": "Invisível", - "Invite": "Convidar", - "is_a_valid_RocketChat_instance": "é uma instância válida do Rocket.Chat", - "is_not_a_valid_RocketChat_instance": "is not a valid Rocket.Chat instance", - "is_typing": "está a escrever", - "Invalid_or_expired_invite_token": "Token de convite invalido ou expirado", - "Invalid_server_version": "O servidor ao qual esta tentando ligar-se, utiliza uma versão que não é suporta pela aplicação: {{currentVersion}}.\n\nA versão mínima requerida é {{minVersion}}", - "Invite_Link": "Link de convite", - "Invite_users": "Convidar utilizadores", - "Join": "Entrar", - "Join_Code": "Código de entrada", - "Insert_Join_Code": "Insira o código de entrada", - "Join_our_open_workspace": "Junte-se ao nosso espaço de trabalho aberto", - "Join_your_workspace": "Junte-se ao seu espaço de trabalho", - "Just_invited_people_can_access_this_channel": "Apenas utilizadores convidados podem aceder a este canal", - "Just_invited_people_can_access_this_team": "Apenas pessoas convidadas podem aceder a esta equipa", - "Language": "Idioma", - "last_message": "última mensagem", - "Leave_channel": "Sair do canal", - "leaving_room": "a sair da sala", - "Leave": "Sair", - "leave": "sair", - "Legal": "Legal", - "Light": "Luz", - "License": "Licença", - "Livechat": "Livechat", - "Login": "Entrar", - "Login_error": "As suas credenciais foram rejeitadas! Por favor, tente novamente.", - "Login_with": "Entrar com", - "Logging_out": "A terminar a sessão.", - "Logout": "Sair", - "Max_number_of_uses": "Número máximo de utilizações", - "Max_number_of_users_allowed_is_number": "O número máximo de utilizadores permitido é {{maxUsers}}", - "members": "membros", - "Members": "Membros", - "Mentioned_Messages": "Mensagens Mencionadas", - "mentioned": "mencionado", - "Mentions": "Menções", - "Message_accessibility": "Mensagem de {{user}} às {{time}}: {{message}}", - "Message_actions": "Acções de mensagem", - "Message_pinned": "Mensagem afixada", - "Message_removed": "Mensagem removida", - "Message_starred": "Mensagem estrelada", - "Message_unstarred": "Mensagem não estrelada", - "message": "mensagem", - "messages": "mensagens", - "Message": "Mensagem", - "Messages": "Mensagens", - "Message_Reported": "Mensagem reportada", - "Microphone_Permission_Message": "O Rocket.Chat necessita de acesso ao seu microfone para que você possa enviar mensagens de áudio.", - "Microphone_Permission": "Permissão de Microfone", - "Mute": "Silenciar", - "muted": "silenciado", - "My_servers": "Meus servidores", - "N_people_reacted": "{{n}} pessoas reagiram", - "N_users": "{{n}} utilizadores", - "N_channels": "{{n}} canais", - "name": "nome", - "Name": "Nome", - "Navigation_history": "Histórico de navegação", - "Never": "Nunca", - "New_Message": "Nova Mensagem", - "New_Password": "Nova Palavra-passe", - "New_Server": "Novo Servidor", - "Next": "Próximo", - "No_files": "Nenhum ficheiro", - "No_limit": "Sem limite", - "No_mentioned_messages": "Nenhuma mensagem mencionada", - "No_pinned_messages": "Nenhuma mensagem afixada", - "No_results_found": "Nenhum resultado encontrado", - "No_starred_messages": "Nenhuma mensagem marcada com estrela", - "No_thread_messages": "Sem mensagens de discussão ", - "No_label_provided": "{{label}} não fornecida/o", - "No_Message": "Nenhuma mensagem", - "No_messages_yet": "Ainda sem mensagens", - "No_Reactions": "Nenhuma reação", - "No_Read_Receipts": "Sem recibos de leitura", - "Not_logged": "Não ligado", - "Not_RC_Server": "Isto não é um servidor Rocket.Chat.\n{{contact}}", - "Nothing": "Nada", - "Nothing_to_save": "Nada para guardar!", - "Notify_active_in_this_room": "Notifica utilizadores activos nesta sala", - "Notify_all_in_this_room": "Notifica todos os utilizadores nesta sala", - "Notifications": "Notificações", - "Notification_Duration": "Duração da Notificação", - "Notification_Preferences": "Preferências de Notificação", - "No_available_agents_to_transfer": "Não há agentes disponíveis para transferir", - "Offline": "Desligado", - "Oops": "Oops!", - "Omnichannel": "Omnichannel", - "Open_Livechats": "Chats em andamento", - "Omnichannel_enable_alert": "Você não está disponível no Omnichannel. Você gostaria de estar disponível?", - "Onboarding_description": "Um espaço de trabalho é o espaço da sua equipa ou organização para colaborar. Peça ao administrador do espaço de trabalho um endereço para se juntar ou criar um para a sua equipa.", - "Onboarding_join_workspace": "Junte-se a um espaço de trabalho", - "Onboarding_subtitle": "Além da Colaboração da Equipe", - "Onboarding_title": "Bem vindo(a) ao Rocket.Chat", - "Onboarding_join_open_description": "Junte-se ao nosso espaço de trabalho aberto para conversar com a equipa e comunidade Rocket.Chat.", - "Onboarding_agree_terms": "Ao continuar, você concorda com Rocket.Chat", - "Onboarding_less_options": "Menos opções", - "Onboarding_more_options": "Mais opções", - "Online": "Ligado", - "Only_authorized_users_can_write_new_messages": "Apenas utilizadores autorizados podem escrever novas mensagens", - "Open_emoji_selector": "Abra o selector de emoticons", - "Open_Source_Communication": "Comunicação Open Source", - "Open_your_authentication_app_and_enter_the_code": "Abra o seu aplicativo de autenticação e digite o código.", - "OR": "OU", - "OS": "OS", - "Overwrites_the_server_configuration_and_use_room_config": "Sobrescreve a configuração do servidor e a configuração da sala de uso", - "Password": "Palavra-passe", - "Parent_channel_or_group": "Canal de origem ou grupo", - "Permalink_copied_to_clipboard": "Link permanente copiado para a área de transferência!", - "Phone": "Telefone", - "Pin": "Afixar", - "Pinned_Messages": "Mensagens Afixadas", - "pinned": "afixada", - "Pinned": "Afixada", - "Please_add_a_comment": "Por favor, acrescente um comentário", - "Please_enter_your_password": "Por favor, introduza a sua palavra-passe", - "Please_wait": "Por favor, espere.", - "Preferences": "Preferências", - "Preferences_saved": "Preferências guardadas!", - "Privacy_Policy": " Política de Privacidade", - "Private_Channel": "Canal Privado", - "Private": "Privado", - "Processing": "A processar...", - "Profile_saved_successfully": "Perfil actualizado com sucesso!", - "Profile": "Perfil", - "Public_Channel": "Canal Público", - "Public": "Público", - "Push_Notifications": "Notificações Push", - "Push_Notifications_Alert_Info": "Estas notificações são entregues quando o aplicativo não está aberto", - "Quote": "Citar", - "Reactions_are_disabled": "Reacções desactivadas", - "Reactions_are_enabled": "Reacções activadas", - "Reactions": "Reacções", - "Read": "Ler", - "Read_External_Permission_Message": "Rocket.Chat precisa acessar fotos, média e arquivos em seu dispositivo", - "Read_External_Permission": "Permissão de leitura da média", - "Read_Only_Channel": "Canal só de leitura", - "Read_Only": "Só de Leitura", - "Read_Receipt": "Recibos de leitura", - "Register": "Registar", - "Repeat_Password": "Repita a palavra-passe", - "Reply": "Responder", - "Resend": "Reenviar", - "Reset_password": "Repor palavra-passe", - "resetting_password": "a repor palavra-passe", - "RESET": "REPOR", - "Roles": "Funções", - "Room_actions": "Ações de sala", - "Room_changed_announcement": "Anúncio da sala alterado para: {{announcement}} por {{userBy}}", - "Room_changed_description": "Descrição da sala alterada para: {{description}} por {{userBy}}", - "Room_changed_privacy": "Tipo de sala alterado para: {{type}} por {{userBy}}", - "Room_changed_topic": "Tópico da sala alterado para: {{topic}} por {{userBy}}", - "Room_Files": "Fiheiros da Sala", - "Room_Info_Edit": "Editar Informação da Sala", - "Room_Info": "Informação da Sala", - "Room_Members": "Membros da Sala", - "Room_name_changed": "Nome da sala alterado para: {{name}} por {{userBy}}", - "SAVE": "GUARDAR", - "Save_Changes": "Guardar Alterações", - "Save": "Guardar", - "saving_preferences": "a guardar preferências", - "saving_profile": "a guardar perfil", - "saving_settings": "a guardar configurações", - "Search_Messages": "Pesquisar Mensagens", - "Search": "Pesquisar", - "Select_Avatar": "Seleccionar Avatar", - "Select_Users": "Seleccionar Utilizadores", - "Send": "Enviar", - "Send_audio_message": "Enviar mensagem de áudio", - "Send_message": "Enviar mensagem", - "Sent_an_attachment": "Enviou um ficheiro", - "Server": "Servidor", - "Servers": "Servidores", - "Set_username_subtitle": "O nome de utilizador é usado para permitir que outros mencionem você em mensagens", - "Settings": "Definições", - "Settings_succesfully_changed": "Definições guardadas com sucesso!", - "Share": "Partilhar", - "Sign_in_your_server": "Entre no seu servidor", - "Sign_Up": "Inscreva-se", - "Some_field_is_invalid_or_empty": "Algum campo é inválido ou está vazio", - "Sorting_by": "Ordenar por {{key}}", - "Star_room": "Marcar como favorito", - "Star": "Dar estrela", - "Starred_Messages": "Mensagens com estrela", - "starred": "deu uma estrela", - "Starred": "Deu uma estrela", - "Start_of_conversation": "Início da conversa", - "Submit": "Enviar", - "Take_a_photo": "Tirar uma foto", - "tap_to_change_status": "toque para alterar o estado", - "Tap_to_view_servers_list": "Toque para ver a lista de servidores", - "Terms_of_Service": " Termos do Serviço ", - "There_was_an_error_while_action": "Houve um erro enquanto {{action}}!", - "This_room_is_blocked": "Esta sala está bloqueada", - "This_room_is_read_only": "Esta sala é apenas de leitura", - "Timezone": "Fuso Horário", - "topic": "tópico", - "Topic": "Tópico", - "Try_again": "Tente novamente", - "Two_Factor_Authentication": "Autenticação 2FA", - "Type_the_channel_name_here": "Escreva o nome do canal aqui", - "unarchive": "desarquivar", - "UNARCHIVE": "DESARQUIVAR", - "Unblock_user": "Desbloquear utilizador", - "Unmute": "Retirar silêncio", - "unmuted": "silêncio removido", - "Unpin": "Desafixar", - "unread_messages": "não lidas", - "Unread": "Não lidas", - "Unread_on_top": "Não lidas no topo", - "Unstar": "Retirar estrela", - "Updating": "A actualizar...", - "Uploading": "A enviar", - "Upload_file_question_mark": "Enviar ficheiro?", - "User_added_by": "Utilizador {{userAdded}} adicionado por {{userBy}}", - "User_has_been_key": "Utilizador foi {{key}}", - "User_is_no_longer_role_by_": "{{userBy}} removeu o estatuto de {{role}} de {{user}}", - "User_muted_by": "Utilizador {{userMuted}} foi silenciado por {{userBy}}", - "User_removed_by": "Utilizador {{userRemoved}} removido por {{userBy}}", - "User_sent_an_attachment": "{{user}} enviou um ficheiro", - "User_unmuted_by": "{{userBy}} retirou o silêncio a {{userUnmuted}}", - "User_was_set_role_by_": "{{userBy}} deu estatuto de {{role}} a {{user}}", - "Username_is_empty": "O nome de utilizador está vazio", - "Username": "Nome de utilizador", - "Username_or_email": "Nome de utilizador ou e-mail", - "Validating": "A validar", - "Video_call": "Video chamada", - "Voice_call": "Chamada de voz", - "Welcome": "Bem vindo(a)", - "Whats_your_2fa": "Qual é o seu código 2FA?", - "Yes_action_it": "Sim, {{action}}!", - "Yesterday": "Ontem", - "You_are_in_preview_mode": "Você está no modo de pré-visualização", - "You_are_offline": "Você está desligado", - "You_can_search_using_RegExp_eg": "Você pode pesquisar usando RegEx. por exemplo, `/^text$/i`", - "You_colon": "Você: ", - "you_were_mentioned": "você foi mencionado", - "you": "você", - "You": "Você", - "You_will_not_be_able_to_recover_this_message": "Você será incapaz de recuperar esta mensagem!" -} \ No newline at end of file + "1_person_reacted": "1 pessoa reagiu", + "1_user": "1 utilizador", + "error-action-not-allowed": "{{action}} não é permitida", + "error-application-not-found": "Aplicação não encontrada", + "error-archived-duplicate-name": "Existe um canal arquivado com o nome {{room_name}}", + "error-avatar-invalid-url": "URL de avatar inválido: {{url}}", + "error-avatar-url-handling": "Erro ao manipular a configuração de avatar de um URL ({{url}}) para {{username}}", + "error-cant-invite-for-direct-room": "Não pode convidar utilizadores para salas de mensagens directas", + "error-could-not-change-email": "Não foi possível alterar o e-mail", + "error-could-not-change-name": "Não foi possível alterar o nome", + "error-could-not-change-username": "Não foi possível alterar o nome de utilizador", + "error-could-not-change-status": "Impossível mudar estado", + "error-delete-protected-role": "Não é possível eliminar uma função protegida", + "error-department-not-found": "Departamento não encontrado", + "error-direct-message-file-upload-not-allowed": "Partilha de ficheiros não permitido em mensagens diretas", + "error-duplicate-channel-name": "Existe um canal com o nome {{room_name}}", + "error-email-domain-blacklisted": "O domínio de e-mail está na lista negra", + "error-email-send-failed": "Erro ao tentar enviar e-mail: {{message}}", + "error-save-image": "Erro ao salvar imagem", + "error-save-video": "Erro ao salvar vídeo", + "error-field-unavailable": "{{field}} já está em uso :(", + "error-file-too-large": "Ficheiro demasiado grande", + "error-importer-not-defined": "O importador não foi definido correctamente, a classe Import está em falta.", + "error-input-is-not-a-valid-field": "{{input}} não é um {{field}} válido", + "error-invalid-actionlink": "Link de acção inválido", + "error-invalid-arguments": "Argumentos inválidos", + "error-invalid-asset": "Ficheiro inválido", + "error-invalid-channel": "Canal inválido.", + "error-invalid-channel-start-with-chars": "Canal inválido. Começa por @ ou #", + "error-invalid-custom-field": "Campo personalizado inválido", + "error-invalid-custom-field-name": "Nome de campo personalizado inválido. Use apenas letras, números, hífens e sublinhados.", + "error-invalid-date": "Data inválida fornecida.", + "error-invalid-description": "Descrição inválida", + "error-invalid-domain": "Domínio inválido", + "error-invalid-email": "E-mail inválido {{email}}", + "error-invalid-email-address": "Endereço de e-mail invalido", + "error-invalid-file-height": "Altura de ficheiro inválida", + "error-invalid-file-type": "Tipo de ficheiro inválido", + "error-invalid-file-width": "Largura de ficheiro inválida", + "error-invalid-from-address": "Você informou um endereço DE inválido.", + "error-invalid-integration": "Integração inválida", + "error-invalid-message": "Mensagem inválida", + "error-invalid-method": "Método inválido", + "error-invalid-name": "Nome inválido", + "error-invalid-password": "Palavra-passe inválida", + "error-invalid-redirectUri": "redirectUri inválido", + "error-invalid-role": "Função inválido", + "error-invalid-room": "Sala inválida", + "error-invalid-room-name": "{{room_name}} não é um nome de sala válido", + "error-invalid-room-type": "{{type}} não é um tipo de sala válido.", + "error-invalid-settings": "Configurações inválidas fornecidas", + "error-invalid-subscription": "Subscrição inválida", + "error-invalid-token": "Token inválido", + "error-invalid-triggerWords": "triggerWords inválido", + "error-invalid-urls": "URLs inválidos", + "error-invalid-user": "Utilizador inválido", + "error-invalid-username": "Nome de utilizador inválido", + "error-invalid-webhook-response": "O URL do webhook respondeu com um estado diferente de 200", + "error-message-deleting-blocked": "A remoção de mensagens está bloqueada", + "error-message-editing-blocked": "A edição de mensagens está bloqueada", + "error-message-size-exceeded": "O tamanho da mensagem excede Message_MaxAllowedSize", + "error-missing-unsubscribe-link": "Você deve fornecer o link para cancelar a subscrição: [unsubscribe].", + "error-no-owner-channel": "Você não é dono do canal", + "error-no-tokens-for-this-user": "Não há tokens para este utilizador", + "error-not-allowed": "Não permitido", + "error-not-authorized": "Não autorizado", + "error-push-disabled": "Push está desactivado", + "error-remove-last-owner": "Este é o último proprietário. Por favor, defina um novo proprietário antes de remover este.", + "error-role-in-use": "Não é possível remover função porque está em uso", + "error-role-name-required": "Nome da função requerido", + "error-the-field-is-required": "O campo {{field}} é obrigatório.", + "error-too-many-requests": "Erro, demasiados pedidos. Por favor, diminua a velocidade. Você deve esperar {{seconds}} segundos antes de tentar novamente.", + "error-user-is-not-activated": "O utilizador não está activado", + "error-user-has-no-roles": "O utilizador não tem funções", + "error-user-limit-exceeded": "O número de utilizadores que você está a tentar convidar para #channel_name excede o limite definido pelo administrador", + "error-user-not-in-room": "O utilizador não está nesta sala", + "error-user-registration-custom-field": "error-user-registration-custom-field", + "error-user-registration-disabled": "O registo de utilizadores está desactivado", + "error-user-registration-secret": "O registo de utilizadores só é permitido por meio de um URL secreto", + "error-you-are-last-owner": "Você é o último proprietário. Por favor, defina novo proprietário antes de sair da sala.", + "error-status-not-allowed": "O estado invisível está desactivado", + "Actions": "Acções", + "activity": "actividade", + "Activity": "Actividade", + "Add_Reaction": "Adicionar Reacção", + "Add_Server": "Adicionar Servidor", + "Add_users": "Adicionar utilizadores", + "Admin_Panel": "Painel de Administração", + "Agent": "Agente", + "Alert": "Alerta", + "alert": "alerta", + "alerts": "alertas", + "All_users_in_the_channel_can_write_new_messages": "Todos os utilizadores no canal podem escrever novas mensagens", + "All_users_in_the_team_can_write_new_messages": "Todos os usuários da equipa podem escrever novas mensagens", + "A_meaningful_name_for_the_discussion_room": "Um nome significativo para a sala de discussão", + "All": "Todos", + "All_Messages": "Todas as Mensagens", + "Allow_Reactions": "Permitir Reacções", + "Alphabetical": "Alfabética", + "and_more": "e mais", + "and": "e", + "announcement": "anúncio", + "Announcement": "Anúncio", + "Apply_Your_Certificate": "Aplique o seu Certificado", + "ARCHIVE": "ARQUIVAR", + "archive": "arquivar", + "are_typing": "estão a escrever", + "Are_you_sure_question_mark": "Tem a certeza?", + "Are_you_sure_you_want_to_leave_the_room": "Tem certeza de que quer sair da sala {{room}}?", + "Audio": "Áudio", + "Authenticating": "Autenticando", + "Automatic": "Automático", + "Auto_Translate": "Auto-Tradução", + "Avatar_changed_successfully": "Avatar alterado com sucesso!", + "Avatar_Url": "URL do Avatar", + "Away": "Ausente", + "Back": "Voltar", + "Black": "Preto", + "Block_user": "Bloquear utilizador", + "Browser": "Navegador", + "Broadcast_channel_Description": "Apenas utilizadores autorizados podem escrever novas mensagens, mas os outros utilizadores poderão responder", + "Broadcast_Channel": "Canal de Transmissão", + "Busy": "Ocupado", + "By_proceeding_you_are_agreeing": "Ao prosseguir você concorda com o(s) nosso(s)", + "Cancel_editing": "Cancelar edição", + "Cancel_recording": "Cancelar gravação", + "Cancel": "Cancelar", + "changing_avatar": "a alterar avatar", + "creating_channel": "a criar canal", + "creating_invite": "a criar convite", + "Channel_Name": "Nome do Canal", + "Channels": "Canais", + "Chats": "Chats", + "Call_already_ended": "Chamada já terminada!", + "Clear_cookies_alert": "Quer limpar todas as cookies?", + "Clear_cookies_desc": "Esta acção irá limpar todos os cookies de login, permitindo que você faça login em outras contas.", + "Clear_cookies_yes": "Sim, limpar cookies", + "Clear_cookies_no": "Não, guardar cookies", + "Click_to_join": "Clique para Entrar!", + "Close": "Fechar", + "Close_emoji_selector": "Fechar selector de emoticons", + "Closing_chat": "A fechar o chat", + "Change_language_loading": "Mudança de idioma.", + "Chat_closed_by_agent": "Chat fechado por agente", + "Choose": "Escolher", + "Choose_from_library": "Escolher da biblioteca", + "Choose_file": "Escolher arquivo", + "Choose_where_you_want_links_be_opened": "Escolha onde você quer que os links sejam abertos", + "Code": "Código", + "Code_or_password_invalid": "Código ou senha inválidos", + "Collaborative": "Colaborativa", + "Confirm": "Confirmar", + "Connect": "Ligar", + "Connected": "Ligado", + "connecting_server": "conexão ao servidor", + "Connecting": "A ligar...", + "Contact_us": "Contacte-nos", + "Contact_your_server_admin": "Contacte o administrador do seu servidor.", + "Continue_with": "Continuar com", + "Copied_to_clipboard": "Copiado para a área de transferência!", + "Copy": "Copiar", + "Conversation": "Conversa", + "Permalink": "Link permanente", + "Certificate_password": "Senha do Certificado", + "Clear_cache": "Limpar a cache do servidor local", + "Clear_cache_loading": "A limpar a cache.", + "Whats_the_password_for_your_certificate": "Qual é a senha para o seu certificado?", + "Create_account": "Criar uma conta", + "Create_Channel": "Criar Canal", + "Create_Direct_Messages": "Criar Mensagens Diretas", + "Create_Discussion": "Criar Discussão", + "Created_snippet": "criado um extracto", + "Create_a_new_workspace": "Criar um novo espaço de trabalho", + "Create": "Criar", + "Custom_Status": "Status Personalizado", + "Dark": "Escuro", + "Dark_level": "Nível Escuro", + "Default": "Predefinição", + "Default_browser": "Navegador predefinido", + "Delete_Room_Warning": "Apagar uma sala irá remover todas as mensagens contidas nela. Isto não pode ser desfeito.", + "Department": "Departamento", + "delete": "apagar", + "Delete": "Apagar", + "DELETE": "APAGAR", + "move": "mover", + "deleting_room": "apagando sala", + "description": "descrição", + "Description": "Descrição", + "Desktop_Options": "Opções da área de trabalho", + "Desktop_Notifications": "Notificações da área de trabalho", + "Desktop_Alert_info": "Estas notificações são entregues na área de trabalho", + "Directory": "Directório", + "Direct_Messages": "Mensagens Directas", + "Disable_notifications": "Desactivar notificações", + "Discussions": "Discussões", + "Discussion_Desc": "Ajude a manter uma visão geral sobre o que está acontecendo! Ao criar uma discussão, é criado um sub-canal do que você selecionou e ambos estão ligados.", + "Discussion_name": "Nome da discussão", + "Done": "Feito", + "Dont_Have_An_Account": "Não tem uma conta?", + "Do_you_have_an_account": "Você tem uma conta?", + "Do_you_have_a_certificate": "Você tem um certificado?", + "Do_you_really_want_to_key_this_room_question_mark": "Você quer mesmo {{key}} esta sala?", + "E2E_Encryption": "Encriptação E2E", + "E2E_How_It_Works_info1": "Agora você pode criar grupos privados criptografados e mensagens diretas. Você também pode alterar grupos privados existentes ou DMs para criptografados.", + "E2E_How_It_Works_info2": "Isto é *criptografia ponto a ponto* portanto a chave para codificar/descodificar as suas mensagens não será salva no servidor. Por essa razão *você precisa armazenar esta senha em algum lugar seguro* que você posa aceder mais tarde, se precisar.", + "E2E_How_It_Works_info3": "Se você prosseguir, uma senha E2E será gerada automaticamente.", + "E2E_How_It_Works_info4": "Você também pode configurar uma nova senha para sua chave de criptografia a qualquer momento a partir de qualquer navegador que você tenha inserido a senha existente do E2E.", + "edit": "editar", + "edited": "editado", + "Edit": "Editar", + "Edit_Status": "Editar Status", + "Edit_Invite": "Editar Convite", + "End_to_end_encrypted_room": "Sala encriptada de ponta a ponta", + "end_to_end_encryption": "encriptação de ponta a ponta", + "Email_Notification_Mode_All": "Cada Menção/DM", + "Email_Notification_Mode_Disabled": "Desactivado", + "Email_or_password_field_is_empty": "O campo de e-mail ou palavra-passe está vazio", + "Email": "E-mail", + "email": "e-mail", + "Empty_title": "Título vazio", + "Enable_Auto_Translate": "Activar Auto-Tradução", + "Enable_notifications": "Activar notificações", + "Encrypted": "Encriptado", + "Encrypted_message": "Mensagem encriptada", + "Enter_Your_E2E_Password": "Digite a sua senha E2E", + "Enter_Your_Encryption_Password_desc1": "Isto permitir-lhe-á aceder aos seus grupos privados encriptados e às suas mensagens directas.", + "Enter_Your_Encryption_Password_desc2": "Você precisa digitar a senha para codificar/descodificar mensagens em cada lugar que você usar o chat.", + "Encryption_error_title": "A sua senha de encriptação parece errada", + "Encryption_error_desc": "Não foi possível descodificar a sua chave de encriptação para ser importada.", + "Everyone_can_access_this_channel": "Todos podem aceder a este canal", + "Everyone_can_access_this_team": "Todos podem aceder a esta equipa", + "Error_uploading": "Erro ao fazer o envio", + "Expiration_Days": "Validade (Dias)", + "Favorite": "Favorito", + "Favorites": "Favoritos", + "Files": "Ficheiros", + "File_description": "Descrição do ficheiro", + "File_name": "Nome do ficheiro", + "Finish_recording": "Terminar a gravação", + "Following_thread": "Seguir discussão", + "For_your_security_you_must_enter_your_current_password_to_continue": "Para sua segurança, você deve escrever a sua palavra-passe actual para continuar", + "Forgot_password_If_this_email_is_registered": "Se este e-mail estiver registado, enviaremos instruções sobre como repor a sua palavra-passe. Se você não receber um e-mail em breve, volte e tente novamente.", + "Forgot_password": "Esquecer palavra-passe", + "Forgot_Password": "Esquecer Palavra-passe", + "Forward": "Reencaminhar", + "Forward_Chat": "Reencaminhar Chat", + "Forward_to_department": "Reencaminhar para o departamento", + "Forward_to_user": "Reencaminhar para o utilizador", + "Full_table": "Clique para ver a tabela completa", + "Generate_New_Link": "Gerar Novo Link", + "Group_by_favorites": "Agrupar por favoritos", + "Group_by_type": "Agrupar por tipo", + "Hide": "Esconder", + "Has_joined_the_channel": "entrou no canal", + "Has_joined_the_conversation": "entrou na conversa", + "Has_left_the_channel": "saiu do canal", + "Hide_System_Messages": "Esconder mensagens do sistema", + "Hide_type_messages": "Esconder mensagens \"{{type}}\"", + "How_It_Works": "Como Funciona", + "Message_HideType_uj": "Utilizador entrou", + "Message_HideType_ul": "Utilizador saiu", + "Message_HideType_ru": "Utilizador removido", + "Message_HideType_au": "Utilizador adicionado", + "Message_HideType_mute_unmute": "Utilizador silenciado/de-silenciado", + "Message_HideType_r": "Nome da sala alterado", + "Message_HideType_ut": "Utilizador entrou na conversação", + "Message_HideType_wm": "Bem-vindo", + "Message_HideType_rm": "Mensagem Removida", + "Message_HideType_subscription_role_added": "Foi definido o estatuto", + "Message_HideType_subscription_role_removed": "Definição de estatuto removida", + "Message_HideType_room_archived": "Sala arquivada", + "Message_HideType_room_unarchived": "Sala desarquivada", + "I_Saved_My_E2E_Password": "Guardei a minha senha E2E", + "IP": "IP", + "In_app": "Na aplicação", + "In_App_And_Desktop": "Na aplicação e área de trabalho", + "In_App_and_Desktop_Alert_info": "Exibe um banner no topo da tela quando a aplicação está aberto, e exibe uma notificação na área de trabalho", + "Invisible": "Invisível", + "Invite": "Convidar", + "is_a_valid_RocketChat_instance": "é uma instância válida do Rocket.Chat", + "is_not_a_valid_RocketChat_instance": "is not a valid Rocket.Chat instance", + "is_typing": "está a escrever", + "Invalid_or_expired_invite_token": "Token de convite invalido ou expirado", + "Invalid_server_version": "O servidor ao qual esta tentando ligar-se, utiliza uma versão que não é suporta pela aplicação: {{currentVersion}}.\n\nA versão mínima requerida é {{minVersion}}", + "Invite_Link": "Link de convite", + "Invite_users": "Convidar utilizadores", + "Join": "Entrar", + "Join_Code": "Código de entrada", + "Insert_Join_Code": "Insira o código de entrada", + "Join_our_open_workspace": "Junte-se ao nosso espaço de trabalho aberto", + "Join_your_workspace": "Junte-se ao seu espaço de trabalho", + "Just_invited_people_can_access_this_channel": "Apenas utilizadores convidados podem aceder a este canal", + "Just_invited_people_can_access_this_team": "Apenas pessoas convidadas podem aceder a esta equipa", + "Language": "Idioma", + "last_message": "última mensagem", + "Leave_channel": "Sair do canal", + "leaving_room": "a sair da sala", + "Leave": "Sair", + "leave": "sair", + "Legal": "Legal", + "Light": "Luz", + "License": "Licença", + "Livechat": "Livechat", + "Login": "Entrar", + "Login_error": "As suas credenciais foram rejeitadas! Por favor, tente novamente.", + "Login_with": "Entrar com", + "Logging_out": "A terminar a sessão.", + "Logout": "Sair", + "Max_number_of_uses": "Número máximo de utilizações", + "Max_number_of_users_allowed_is_number": "O número máximo de utilizadores permitido é {{maxUsers}}", + "members": "membros", + "Members": "Membros", + "Mentioned_Messages": "Mensagens Mencionadas", + "mentioned": "mencionado", + "Mentions": "Menções", + "Message_accessibility": "Mensagem de {{user}} às {{time}}: {{message}}", + "Message_actions": "Acções de mensagem", + "Message_pinned": "Mensagem afixada", + "Message_removed": "Mensagem removida", + "Message_starred": "Mensagem estrelada", + "Message_unstarred": "Mensagem não estrelada", + "message": "mensagem", + "messages": "mensagens", + "Message": "Mensagem", + "Messages": "Mensagens", + "Message_Reported": "Mensagem reportada", + "Microphone_Permission_Message": "O Rocket.Chat necessita de acesso ao seu microfone para que você possa enviar mensagens de áudio.", + "Microphone_Permission": "Permissão de Microfone", + "Mute": "Silenciar", + "muted": "silenciado", + "My_servers": "Meus servidores", + "N_people_reacted": "{{n}} pessoas reagiram", + "N_users": "{{n}} utilizadores", + "N_channels": "{{n}} canais", + "name": "nome", + "Name": "Nome", + "Navigation_history": "Histórico de navegação", + "Never": "Nunca", + "New_Message": "Nova Mensagem", + "New_Password": "Nova Palavra-passe", + "New_Server": "Novo Servidor", + "Next": "Próximo", + "No_files": "Nenhum ficheiro", + "No_limit": "Sem limite", + "No_mentioned_messages": "Nenhuma mensagem mencionada", + "No_pinned_messages": "Nenhuma mensagem afixada", + "No_results_found": "Nenhum resultado encontrado", + "No_starred_messages": "Nenhuma mensagem marcada com estrela", + "No_thread_messages": "Sem mensagens de discussão ", + "No_label_provided": "{{label}} não fornecida/o", + "No_Message": "Nenhuma mensagem", + "No_messages_yet": "Ainda sem mensagens", + "No_Reactions": "Nenhuma reação", + "No_Read_Receipts": "Sem recibos de leitura", + "Not_logged": "Não ligado", + "Not_RC_Server": "Isto não é um servidor Rocket.Chat.\n{{contact}}", + "Nothing": "Nada", + "Nothing_to_save": "Nada para guardar!", + "Notify_active_in_this_room": "Notifica utilizadores activos nesta sala", + "Notify_all_in_this_room": "Notifica todos os utilizadores nesta sala", + "Notifications": "Notificações", + "Notification_Duration": "Duração da Notificação", + "Notification_Preferences": "Preferências de Notificação", + "No_available_agents_to_transfer": "Não há agentes disponíveis para transferir", + "Offline": "Desligado", + "Oops": "Oops!", + "Omnichannel": "Omnichannel", + "Open_Livechats": "Chats em andamento", + "Omnichannel_enable_alert": "Você não está disponível no Omnichannel. Você gostaria de estar disponível?", + "Onboarding_description": "Um espaço de trabalho é o espaço da sua equipa ou organização para colaborar. Peça ao administrador do espaço de trabalho um endereço para se juntar ou criar um para a sua equipa.", + "Onboarding_join_workspace": "Junte-se a um espaço de trabalho", + "Onboarding_subtitle": "Além da Colaboração da Equipe", + "Onboarding_title": "Bem vindo(a) ao Rocket.Chat", + "Onboarding_join_open_description": "Junte-se ao nosso espaço de trabalho aberto para conversar com a equipa e comunidade Rocket.Chat.", + "Onboarding_agree_terms": "Ao continuar, você concorda com Rocket.Chat", + "Onboarding_less_options": "Menos opções", + "Onboarding_more_options": "Mais opções", + "Online": "Ligado", + "Only_authorized_users_can_write_new_messages": "Apenas utilizadores autorizados podem escrever novas mensagens", + "Open_emoji_selector": "Abra o selector de emoticons", + "Open_Source_Communication": "Comunicação Open Source", + "Open_your_authentication_app_and_enter_the_code": "Abra o seu aplicativo de autenticação e digite o código.", + "OR": "OU", + "OS": "OS", + "Overwrites_the_server_configuration_and_use_room_config": "Sobrescreve a configuração do servidor e a configuração da sala de uso", + "Password": "Palavra-passe", + "Parent_channel_or_group": "Canal de origem ou grupo", + "Permalink_copied_to_clipboard": "Link permanente copiado para a área de transferência!", + "Phone": "Telefone", + "Pin": "Afixar", + "Pinned_Messages": "Mensagens Afixadas", + "pinned": "afixada", + "Pinned": "Afixada", + "Please_add_a_comment": "Por favor, acrescente um comentário", + "Please_enter_your_password": "Por favor, introduza a sua palavra-passe", + "Please_wait": "Por favor, espere.", + "Preferences": "Preferências", + "Preferences_saved": "Preferências guardadas!", + "Privacy_Policy": " Política de Privacidade", + "Private_Channel": "Canal Privado", + "Private": "Privado", + "Processing": "A processar...", + "Profile_saved_successfully": "Perfil actualizado com sucesso!", + "Profile": "Perfil", + "Public_Channel": "Canal Público", + "Public": "Público", + "Push_Notifications": "Notificações Push", + "Push_Notifications_Alert_Info": "Estas notificações são entregues quando o aplicativo não está aberto", + "Quote": "Citar", + "Reactions_are_disabled": "Reacções desactivadas", + "Reactions_are_enabled": "Reacções activadas", + "Reactions": "Reacções", + "Read": "Ler", + "Read_External_Permission_Message": "Rocket.Chat precisa acessar fotos, média e arquivos em seu dispositivo", + "Read_External_Permission": "Permissão de leitura da média", + "Read_Only_Channel": "Canal só de leitura", + "Read_Only": "Só de Leitura", + "Read_Receipt": "Recibos de leitura", + "Register": "Registar", + "Repeat_Password": "Repita a palavra-passe", + "Reply": "Responder", + "Resend": "Reenviar", + "Reset_password": "Repor palavra-passe", + "resetting_password": "a repor palavra-passe", + "RESET": "REPOR", + "Roles": "Funções", + "Room_actions": "Ações de sala", + "Room_changed_announcement": "Anúncio da sala alterado para: {{announcement}} por {{userBy}}", + "Room_changed_description": "Descrição da sala alterada para: {{description}} por {{userBy}}", + "Room_changed_privacy": "Tipo de sala alterado para: {{type}} por {{userBy}}", + "Room_changed_topic": "Tópico da sala alterado para: {{topic}} por {{userBy}}", + "Room_Files": "Fiheiros da Sala", + "Room_Info_Edit": "Editar Informação da Sala", + "Room_Info": "Informação da Sala", + "Room_Members": "Membros da Sala", + "Room_name_changed": "Nome da sala alterado para: {{name}} por {{userBy}}", + "SAVE": "GUARDAR", + "Save_Changes": "Guardar Alterações", + "Save": "Guardar", + "saving_preferences": "a guardar preferências", + "saving_profile": "a guardar perfil", + "saving_settings": "a guardar configurações", + "Search_Messages": "Pesquisar Mensagens", + "Search": "Pesquisar", + "Select_Avatar": "Seleccionar Avatar", + "Select_Users": "Seleccionar Utilizadores", + "Send": "Enviar", + "Send_audio_message": "Enviar mensagem de áudio", + "Send_message": "Enviar mensagem", + "Sent_an_attachment": "Enviou um ficheiro", + "Server": "Servidor", + "Servers": "Servidores", + "Set_username_subtitle": "O nome de utilizador é usado para permitir que outros mencionem você em mensagens", + "Settings": "Definições", + "Settings_succesfully_changed": "Definições guardadas com sucesso!", + "Share": "Partilhar", + "Sign_in_your_server": "Entre no seu servidor", + "Sign_Up": "Inscreva-se", + "Some_field_is_invalid_or_empty": "Algum campo é inválido ou está vazio", + "Sorting_by": "Ordenar por {{key}}", + "Star_room": "Marcar como favorito", + "Star": "Dar estrela", + "Starred_Messages": "Mensagens com estrela", + "starred": "deu uma estrela", + "Starred": "Deu uma estrela", + "Start_of_conversation": "Início da conversa", + "Submit": "Enviar", + "Take_a_photo": "Tirar uma foto", + "tap_to_change_status": "toque para alterar o estado", + "Tap_to_view_servers_list": "Toque para ver a lista de servidores", + "Terms_of_Service": " Termos do Serviço ", + "There_was_an_error_while_action": "Houve um erro enquanto {{action}}!", + "This_room_is_blocked": "Esta sala está bloqueada", + "This_room_is_read_only": "Esta sala é apenas de leitura", + "Timezone": "Fuso Horário", + "topic": "tópico", + "Topic": "Tópico", + "Try_again": "Tente novamente", + "Two_Factor_Authentication": "Autenticação 2FA", + "Type_the_channel_name_here": "Escreva o nome do canal aqui", + "unarchive": "desarquivar", + "UNARCHIVE": "DESARQUIVAR", + "Unblock_user": "Desbloquear utilizador", + "Unmute": "Retirar silêncio", + "unmuted": "silêncio removido", + "Unpin": "Desafixar", + "unread_messages": "não lidas", + "Unread": "Não lidas", + "Unread_on_top": "Não lidas no topo", + "Unstar": "Retirar estrela", + "Updating": "A actualizar...", + "Uploading": "A enviar", + "Upload_file_question_mark": "Enviar ficheiro?", + "User_added_by": "Utilizador {{userAdded}} adicionado por {{userBy}}", + "User_has_been_key": "Utilizador foi {{key}}", + "User_is_no_longer_role_by_": "{{userBy}} removeu o estatuto de {{role}} de {{user}}", + "User_muted_by": "Utilizador {{userMuted}} foi silenciado por {{userBy}}", + "User_removed_by": "Utilizador {{userRemoved}} removido por {{userBy}}", + "User_sent_an_attachment": "{{user}} enviou um ficheiro", + "User_unmuted_by": "{{userBy}} retirou o silêncio a {{userUnmuted}}", + "User_was_set_role_by_": "{{userBy}} deu estatuto de {{role}} a {{user}}", + "Username_is_empty": "O nome de utilizador está vazio", + "Username": "Nome de utilizador", + "Username_or_email": "Nome de utilizador ou e-mail", + "Validating": "A validar", + "Video_call": "Video chamada", + "Voice_call": "Chamada de voz", + "Welcome": "Bem vindo(a)", + "Whats_your_2fa": "Qual é o seu código 2FA?", + "Yes_action_it": "Sim, {{action}}!", + "Yesterday": "Ontem", + "You_are_in_preview_mode": "Você está no modo de pré-visualização", + "You_are_offline": "Você está desligado", + "You_can_search_using_RegExp_eg": "Você pode pesquisar usando RegEx. por exemplo, `/^text$/i`", + "You_colon": "Você: ", + "you_were_mentioned": "você foi mencionado", + "you": "você", + "You": "Você", + "You_will_not_be_able_to_recover_this_message": "Você será incapaz de recuperar esta mensagem!" +} diff --git a/app/i18n/locales/ru.json b/app/i18n/locales/ru.json index 303ca52c06..4a5b551868 100644 --- a/app/i18n/locales/ru.json +++ b/app/i18n/locales/ru.json @@ -1,772 +1,772 @@ { - "1_person_reacted": "1 человек отреагировал", - "1_user": "1 пользователь", - "error-action-not-allowed": "{{action}} не допускается", - "error-application-not-found": "Приложение не найдено", - "error-archived-duplicate-name": "Есть архивный канал с именем {{room_name}}", - "error-avatar-invalid-url": "Недопустимый URL-адрес аватара: {{url}}", - "error-avatar-url-handling": "Ошибка при обработке настроек аватара с URL-адреса ({{url}}) для {{username}}", - "error-cant-invite-for-direct-room": "Невозможно пригласить пользователя в личную переписку", - "error-could-not-change-email": "Не удалось изменить адрес электронной почты", - "error-could-not-change-name": "Не удалось изменить имя", - "error-could-not-change-username": "Не удалось изменить имя пользователя", - "error-could-not-change-status": "Не удалось изменить статус", - "error-delete-protected-role": "Не удается удалить защищенную роль", - "error-department-not-found": "Отдел не найден", - "error-direct-message-file-upload-not-allowed": "Общий доступ к файлам не разрешен в личных сообщениях", - "error-duplicate-channel-name": "Канал с именем {{channel_name}} существует", - "error-email-domain-blacklisted": "Домен электронной почты включен в черный список", - "error-email-send-failed": "Ошибка при попытке отправить электронное письмо: {{message}}", - "error-save-image": "Ошибка при попытке сохранить изображение", - "error-save-video": "Ошибка при попытке сохранить видео", - "error-field-unavailable": "{{field}} уже используется :(", - "error-file-too-large": "Файл слишком большой", - "error-importer-not-defined": "Импортер не был определен правильно, ему не хватает класса Import.", - "error-input-is-not-a-valid-field": "{{input}} недействительно {{field}}", - "error-invalid-actionlink": "Недействительная ссылка действия", - "error-invalid-arguments": "Недопустимые аргументы", - "error-invalid-asset": "Недопустимый ресурс", - "error-invalid-channel": "Недействительный канал.", - "error-invalid-channel-start-with-chars": "Недействительный канал. Начните с @ или #", - "error-invalid-custom-field": "Неверное настраиваемое поле", - "error-invalid-custom-field-name": "Неверное имя настраиваемого поля. Используйте только буквы, цифры, дефис и символ подчеркивания.", - "error-invalid-date": "Указана недопустимая дата.", - "error-invalid-description": "Недопустимое описание", - "error-invalid-domain": "Недопустимый домен", - "error-invalid-email": "Неверный адрес электронной почты {{email}}", - "error-invalid-email-address": "Неверный адрес электронной почты", - "error-invalid-file-height": "Недопустимая высота файла", - "error-invalid-file-type": "Неверный тип файла", - "error-invalid-file-width": "Недопустимая ширина файла", - "error-invalid-from-address": "Вы указали неверный адрес FROM.", - "error-invalid-integration": "Недопустимая интеграция", - "error-invalid-message": "Недопустимое сообщение", - "error-invalid-method": "Недопустимый метод", - "error-invalid-name": "Недопустимое имя", - "error-invalid-password": "Неверный пароль", - "error-invalid-redirectUri": "Недопустимый redirectUri", - "error-invalid-role": "Недопустимая роль", - "error-invalid-room": "Недопустимый чат", - "error-invalid-room-name": "{{room_name}} не является допустимым именем чата", - "error-invalid-room-type": "{{type}} не является допустимым типом чата.", - "error-invalid-settings": "Недопустимые параметры", - "error-invalid-subscription": "Недействительная подписка", - "error-invalid-token": "Недопустимый токен", - "error-invalid-triggerWords": "Недопустимые триггеры", - "error-invalid-urls": "Недопустимые URL-адреса", - "error-invalid-user": "Недопустимый пользователь", - "error-invalid-username": "Неверное имя пользователя", - "error-invalid-webhook-response": "URL-адрес ответил статусом, отличным от 200", - "error-message-deleting-blocked": "Удаление сообщений заблокировано", - "error-message-editing-blocked": "Правка сообщений заблокирована", - "error-message-size-exceeded": "Размер сообщения превышает максимально разрешенный", - "error-missing-unsubscribe-link": "Вы должны указать ссылку [отписаться].", - "error-no-owner-channel": "Вы не являетесь владельцем данного чата", - "error-no-tokens-for-this-user": "Для этого пользователя нет токенов", - "error-not-allowed": "Не допускается", - "error-not-authorized": "Не разрешено", - "error-push-disabled": "Push отключен", - "error-remove-last-owner": "Это последний владелец. Прежде чем удалить его, установите нового владельца.", - "error-role-in-use": "Невозможно удалить роль, потому что она используется", - "error-role-name-required": "Требуется имя роли", - "error-the-field-is-required": "Требуется поле {{field}}.", - "error-too-many-requests": "Ошибка, слишком много запросов. Пожалуйста, помедленнее. Вы должны подождать {{seconds}} секунд, прежде чем повторить попытку.", - "error-user-is-not-activated": "Пользователь не активирован", - "error-user-has-no-roles": "Пользователь не имеет ролей", - "error-user-limit-exceeded": "Количество пользователей, которых вы пытаетесь пригласить на #channel_name, превышает лимит, установленный администратором", - "error-user-not-in-room": "Пользователя нет на этом канале", - "error-user-registration-custom-field": "error-user-registration-custom-field", - "error-user-registration-disabled": "Регистрация пользователей отключена", - "error-user-registration-secret": "Регистрация пользователей разрешена только через секретный URL", - "error-you-are-last-owner": "Вы последний владелец. Пожалуйста, назначьте нового владельца, прежде чем покинуть чат.", - "error-status-not-allowed": "Статус Невидимый отключён", - "Actions": "Действия", - "activity": "активности", - "Activity": "По активности", - "Add_Reaction": "Добавить реакцию", - "Add_Server": "Добавить сервер", - "Add_users": "Добавить пользователей", - "Admin_Panel": "Панель админа", - "Agent": "Агент", - "Alert": "Оповещение", - "alert": "оповещение", - "alerts": "оповещения", - "All_users_in_the_channel_can_write_new_messages": "Все пользователи канала могут писать новые сообщения", - "All_users_in_the_team_can_write_new_messages": "Все пользователи в Команде могут писать новые сообщения", - "A_meaningful_name_for_the_discussion_room": "Осмысленное имя для обсуждения", - "All": "Все", - "All_Messages": "Все сообщения", - "Allow_Reactions": "Разрешить реакции", - "Alphabetical": "По алфавиту", - "and_more": "и более", - "and": "и", - "announcement": "объявление", - "Announcement": "Объявление", - "Apply_Your_Certificate": "Применить ваш сертификат", - "ARCHIVE": "АРХИВ", - "archive": "архив", - "are_typing": "печатают", - "Are_you_sure_question_mark": "Вы уверены?", - "Are_you_sure_you_want_to_leave_the_room": "Вы действительно хотите покинуть чат {{room}}?", - "Audio": "Аудио", - "Authenticating": "Аутентификация", - "Automatic": "Автоматически", - "Auto_Translate": "Автоперевод", - "Avatar_changed_successfully": "Аватар успешно изменен!", - "Avatar_Url": "URL аватара", - "Away": "Отошел", - "Back": "Назад", - "Black": "Черный", - "Block_user": "Блокировать пользователя", - "Browser": "Браузер", - "Broadcast_channel_Description": "Только авторизованные пользователи могут писать новые сообщения, но другие пользователи смогут ответить", - "Broadcast_Channel": "Широковещательный канал", - "Busy": "Занят", - "By_proceeding_you_are_agreeing": "Продолжая, вы соглашаетесь с нашими", - "Cancel_editing": "Отменить правку", - "Cancel_recording": "Отменить запись", - "Cancel": "Отмена", - "changing_avatar": "изменение аватара", - "creating_channel": "создание канала", - "creating_invite": "создание приглашения", - "Channel_Name": "Название канала", - "Channels": "Каналы", - "Chats": "Чаты", - "Call_already_ended": "Вызов уже завершен!", - "Clear_cookies_alert": "Вы действительно хотите очистить все cookies?", - "Clear_cookies_desc": "Это действие очистит все ваши cookies для входа, это позволит вам войти под другой учетной записью.", - "Clear_cookies_yes": "Да, очистить cookies", - "Clear_cookies_no": "Нет, сохранить cookies", - "Click_to_join": "Нажмите, чтобы присоединиться!", - "Close": "Закрыть", - "Close_emoji_selector": "Закрыть выбор emoji", - "Closing_chat": "Закрытие чата", - "Change_language_loading": "Изменение языка.", - "Chat_closed_by_agent": "Чат закрыт агентом", - "Choose": "Выбрать", - "Choose_from_library": "Выбрать из библиотеки", - "Choose_file": "Выбрать файл", - "Choose_where_you_want_links_be_opened": "Выберите где вы хотите открывать ссылки", - "Code": "Код", - "Code_or_password_invalid": "Код или пароль не верны", - "Collaborative": "Совместный", - "Confirm": "Подтверждение", - "Connect": "Соединение", - "Connected": "Подключено", - "connecting_server": "подключение к серверу", - "Connecting": "Соединение...", - "Contact_us": "Связаться с нами", - "Contact_your_server_admin": "Свяжитесь с администратором сервера.", - "Continue_with": "Продолжить с", - "Copied_to_clipboard": "Скопировано в буфер обмена!", - "Copy": "Копировать", - "Conversation": "Диалог", - "Permalink": "Постоянная ссылка", - "Certificate_password": "Пароль сертификата", - "Clear_cache": "Очистить локальный кэш сервера", - "Clear_cache_loading": "Очистка кэша.", - "Whats_the_password_for_your_certificate": "Какой пароль для вашего сертификата?", - "Create_account": "Создать аккаунт", - "Create_Channel": "Создать канал", - "Create_Direct_Messages": "Создать личное сообщение", - "Create_Discussion": "Создать обсуждение", - "Created_snippet": "создать сниппет", - "Create_a_new_workspace": "Новое рабочее пространство", - "Create": "Создать", - "Custom_Status": "Персонализированный Статус", - "Dark": "Темный", - "Dark_level": "Уровень затемненности", - "Default": "По умолчанию", - "Default_browser": "Браузер по умолчанию", - "Delete_Room_Warning": "Удаление канала приведет к удалению всех сообщений, размещенных в нем. Это не может быть отменено.", - "Department": "Отдел", - "delete": "удалить", - "Delete": "Удалить", - "DELETE": "УДАЛИТЬ", - "move": "переместить", - "deleting_room": "удаление чата", - "description": "описание", - "Description": "Описание", - "Desktop_Options": "Параметры рабочего стола", - "Desktop_Notifications": "Уведомления рабочего стола", - "Desktop_Alert_info": "Эти уведомления появятся на рабочем столе", - "Directory": "Директория", - "Direct_Messages": "Личные сообщения", - "Disable_notifications": "Отключить уведомления", - "Discussions": "Обсуждения", - "Discussion_Desc": "Помогают разобраться в том, что происходит! При создании Обсуждения, суб-канала одного из выбранных вами каналов так же создается и привязка к нему.", - "Discussion_name": "Имя Обсуждения", - "Done": "Готово", - "Dont_Have_An_Account": "Нет аккаунта?", - "Do_you_have_an_account": "У вас есть аккаунт?", - "Do_you_have_a_certificate": "У вас есть сертификат?", - "Do_you_really_want_to_key_this_room_question_mark": "Вы действительно хотите {{key}} этот канал?", - "E2E_Encryption": "E2E шифрование", - "E2E_How_It_Works_info1": "Теперь Вы можете создавать зашифрованные приватные чаты и личные сообщения. Вы так же можете изменить существующе приватные чаты и личные сообщения сделав их зашифрованными.", - "E2E_How_It_Works_info2": "Это *сквозное шифрование*, поэтому ключ для шифрования/расшифровки ваших сообщений не будет сохранен на сервере. Значит *Вам нужно сохранить этот пароль где-то в безопасном месте*, где он будет Вам доступен, если потребуется.", - "E2E_How_It_Works_info3": "В случаем продолжения, пароль Е2Е будет сгенерирован автоматически.", - "E2E_How_It_Works_info4": "Так же Вы можете задать новый пароль для вашего ключа шифрования в любое время при помощи браузера там же, где Вы ввели существующий Е2Е пароль.", - "edit": "править", - "edited": "исправлено", - "Edit": "Правка", - "Edit_Status": "Изменить статус", - "Edit_Invite": "Редактировать Приглашение", - "End_to_end_encrypted_room": "Чат со сквозным шифрованием", - "end_to_end_encryption": "сквозное шифрование", - "Email_Notification_Mode_All": "Каждое Упоминание/Личное сообщение", - "Email_Notification_Mode_Disabled": "Отключено", - "Email_or_password_field_is_empty": "Поле электронной почты или пароля пусты", - "Email": "E-mail", - "email": "e-mail", - "Empty_title": "Пустой заголовок", - "Enable_Auto_Translate": "Включить автоперевод", - "Enable_notifications": "Включить уведомления", - "Encrypted": "Зашифрован", - "Encrypted_message": "Зашифрованное сообщение", - "Enter_Your_E2E_Password": "Введите Ваш E2E Пароль", - "Enter_Your_Encryption_Password_desc1": "Вы сможете получить доступ к вашим зашифрованным приватным чатам и личным сообщениям.", - "Enter_Your_Encryption_Password_desc2": "Вам нужно ввести пароль для шифрования/расшифровки сообщений в каждом клиенте.", - "Encryption_error_title": "Введен не верный пароль шифрования", - "Encryption_error_desc": "Невозможно расшифровать ваш ключ шифрования, чтобы импортировать его", - "Everyone_can_access_this_channel": "Каждый может получить доступ к этому каналу", - "Everyone_can_access_this_team": "Каждый может получить доступ к этой Команде", - "Error_uploading": "Ошибка загрузки", - "Expiration_Days": "Срок действия (Дни)", - "Favorite": "Избранное", - "Favorites": "Избранные", - "Files": "Файлы", - "File_description": "Описание файла", - "File_name": "Имя файла", - "Finish_recording": "Завершить запись", - "Following_thread": "Следить за тредом", - "For_your_security_you_must_enter_your_current_password_to_continue": "В целях вашей безопасности вы должны ввести свой текущий пароль для продолжения", - "Forgot_password_If_this_email_is_registered": "Если эта электронная почта зарегистрирована, мы отправим инструкции о том, как сбросить пароль. Если вы не получите письмо в ближайшее время, вернитесь и повторите попытку.", - "Forgot_password": "Забыли пароль", - "Forgot_Password": "Забыли Пароль", - "Forward": "Перенаправить", - "Forward_Chat": "Перенаправить Чат", - "Forward_to_department": "Перенаправить в отдел", - "Forward_to_user": "Перенаправить пользователю", - "Full_table": "Нажмите, чтобы увидеть полную таблицу", - "Generate_New_Link": "Сгенерировать Новую Ссылку", - "Group_by_favorites": "По избранным", - "Group_by_type": "По типу", - "Hide": "Скрыть", - "Has_joined_the_channel": "присоединился к каналу", - "Has_joined_the_conversation": "присоединился к беседе", - "Has_left_the_channel": "покинул канал", - "Hide_System_Messages": "Скрыть Системные Сообщения", - "Hide_type_messages": "Скрыть \"{{type}}\" сообщения", - "How_It_Works": "Как Это Работает", - "Message_HideType_uj": "Пользователь Присоединился", - "Message_HideType_ul": "Пользователь Покинул", - "Message_HideType_ru": "Пользователь Удален", - "Message_HideType_au": "Пользователь Добавлен", - "Message_HideType_mute_unmute": "Пользователь Заглушен / Заглушивание отменено", - "Message_HideType_r": "Имя Чата Изменено", - "Message_HideType_ut": "Пользователь Присоединился к Беседе", - "Message_HideType_wm": "Добро пожаловать", - "Message_HideType_rm": "Сообщение Удалено", - "Message_HideType_subscription_role_added": "Была назначена Роль", - "Message_HideType_subscription_role_removed": "Роль более не определена", - "Message_HideType_room_archived": "Чат Архивирован", - "Message_HideType_room_unarchived": "Чат Разархивирован", - "I_Saved_My_E2E_Password": "Я Сохранил Свой E2E Пароль", - "IP": "IP", - "In_app": "В приложении", - "In_App_And_Desktop": "В приложении и на десктопе", - "In_App_and_Desktop_Alert_info": "Отображает баннер в верхней части экрана, когда приложение открыто, и отображает уведомление на рабочем столе.", - "Invisible": "Невидимый", - "Invite": "Приглашение", - "is_a_valid_RocketChat_instance": "является действительным сервером Rocket.Chat", - "is_not_a_valid_RocketChat_instance": "не является действительным сервером Rocket.Chat", - "is_typing": "печатает", - "Invalid_or_expired_invite_token": "Токен приглашения не действителен или с истекшим сроком действия", - "Invalid_server_version": "Сервер, к которому вы пытаетесь подключиться, использует версию, которая больше не поддерживается приложением: {{currentVersion}}.\n\nНам нужна версия {{minVersion}}", - "Invite_Link": "Ссылка Приглашения", - "Invite_users": "Приглашение пользователей", - "Join": "Присоединиться", - "Join_Code": "Код присоединения", - "Insert_Join_Code": "Вставить код присоединения", - "Join_our_open_workspace": "Присоединиться к нашему открытому серверу", - "Join_your_workspace": "Присоединиться к вашему серверу", - "Just_invited_people_can_access_this_channel": "Только приглашенные люди могут получить доступ к этому каналу", - "Just_invited_people_can_access_this_team": "Только приглашенные пользователи могут получить доступ к этой Команде", - "Language": "Язык", - "last_message": "последнее сообщение", - "Leave_channel": "Покинуть канал", - "leaving_room": "покинуть комнату", - "Leave": "Покинуть комнату", - "leave": "покинуть", - "Legal": "Правовые аспекты", - "Light": "Светлая", - "License": "Лицензия", - "Livechat": "Livechat", - "Livechat_edit": "Редактирование Livechat", - "Login": "Вход", - "Login_error": "Ваши учетные данные были отклонены! Пожалуйста, попробуйте еще раз.", - "Login_with": "Войти с", - "Logging_out": "Осуществляется выход.", - "Logout": "Выйти", - "Max_number_of_uses": "Максимальное количество", - "Max_number_of_users_allowed_is_number": "Максимальное количество разрешенных пользователей {{maxUsers}}", - "members": "пользователи", - "Members": "Пользователи", - "Mentioned_Messages": "Упомянутые сообщения", - "mentioned": "упомянутые", - "Mentions": "Упоминания", - "Message_accessibility": "Сообщение от {{user}} в {{time}}: {{message}}", - "Message_actions": "Действия с сообщением", - "Message_pinned": "Сообщение прикреплено", - "Message_removed": "Сообщение удалено", - "Message_starred": "Сообщение отмечено звездой", - "Message_unstarred": "Отметка сообщения звездой удалена", - "message": "сообщение", - "messages": "сообщения", - "Message": "Сообщение", - "Messages": "Сообщения", - "Message_Reported": "Сообщение отправлено", - "Microphone_Permission_Message": "Rocket.Chat нужен доступ к вашему микрофону, чтобы вы могли отправлять аудио сообщения.", - "Microphone_Permission": "Разрешение на использование микрофона", - "Mute": "Заглушить", - "muted": "Заглушен", - "My_servers": "Мои серверы", - "N_people_reacted": "отреагировало {{n}} человек", - "N_users": "{{n}} пользователи", - "N_channels": "{{n}} каналов", - "name": "имя", - "Name": "Имя", - "Navigation_history": "История навигации", - "Never": "Никогда", - "New_Message": "Новое сообщение", - "New_Password": "Новый пароль", - "New_Server": "Новый сервер", - "Next": "Далее", - "No_files": "Нет файлов", - "No_limit": "Нет ограничений", - "No_mentioned_messages": "Нет упоминаний", - "No_pinned_messages": "Нет прикрепленных сообщений", - "No_results_found": "Ничего не найдено", - "No_starred_messages": "Нет отмеченных сообщений", - "No_thread_messages": "Нет сообщений в теме", - "No_label_provided": "{{label}} не указан.", - "No_Message": "Нет сообщения", - "No_messages_yet": "Пока нет сообщений", - "No_Reactions": "Нет реакций", - "No_Read_Receipts": "Нет информации о прочтении", - "Not_logged": "Не зарегистрирован", - "Not_RC_Server": "Это не сервер Rocket.Chat.\n{{contact}}", - "Nothing": "Ничего", - "Nothing_to_save": "Нечего сохранять!", - "Notify_active_in_this_room": "Уведомить всех активных пользователей в этом чате", - "Notify_all_in_this_room": "Уведомить всех в этом чате", - "Notifications": "Уведомления", - "Notification_Duration": "Продолжительность уведомлений", - "Notification_Preferences": "Настройки уведомлений", - "No_available_agents_to_transfer": "Нет свободных агентов для передачи", - "Offline": "Офлайн", - "Oops": "Упс!", - "Omnichannel": "Omnichannel", - "Open_Livechats": "Чаты в Работе", - "Omnichannel_enable_alert": "Вы не доступны в Omnichannel. Хотите стать доступными?", - "Onboarding_description": "Сервер это пространство для взаимодействия вашей команды или организации. Уточните адрес сервера у вашего администратора или создайте свой сервер для команды.", - "Onboarding_join_workspace": "Присоединиться к серверу", - "Onboarding_subtitle": "За пределами Командного Взаимодействия", - "Onboarding_title": "Добро пожаловать в Rocket.Chat", - "Onboarding_join_open_description": "Присоединяйтесь к нашему открытому серверу, чтобы пообщаться с командой и сообществом Rocket.Chat.", - "Onboarding_agree_terms": "Продолжая вы соглашаетесь с правилами Rocket.Chat", - "Onboarding_less_options": "Меньше опций", - "Onboarding_more_options": "Больше опций", - "Online": "В сети", - "Only_authorized_users_can_write_new_messages": "Только авторизованные пользователи могут писать новые сообщения", - "Open_emoji_selector": "Открыть выбор emoji", - "Open_Source_Communication": "Общение с открытым кодом", - "Open_your_authentication_app_and_enter_the_code": "Откройте ваше приложение для аутентификации и введите код и него.", - "OR": "ИЛИ", - "OS": "ОС", - "Overwrites_the_server_configuration_and_use_room_config": "Перезаписывает конфигурацию сервера и использует конфигурацию чата", - "Password": "Пароль", - "Parent_channel_or_group": "Родительский канал или чат", - "Permalink_copied_to_clipboard": "Постоянная ссылка скопирована в буфер обмена!", - "Phone": "Телефон", - "Pin": "Прикрепить сообщение", - "Pinned_Messages": "Прикрепленные сообщения", - "pinned": "прикреплено", - "Pinned": "Прикреплено", - "Please_add_a_comment": "Пожалуйста добавьте комментарий", - "Please_enter_your_password": "Пожалуйста введите ваш пароль", - "Please_wait": "Пожалуйста подождите.", - "Preferences": "Настройки", - "Preferences_saved": "Настройки сохранены!", - "Privacy_Policy": " Политика конфиденциальности", - "Private_Channel": "Приватный канал", - "Private": "Приватный", - "Processing": "Обработка...", - "Profile_saved_successfully": "Профиль успешно сохранен!", - "Profile": "Профиль", - "Public_Channel": "Публичный канал", - "Public": "Публичный", - "Push_Notifications": "Push Уведомления", - "Push_Notifications_Alert_Info": "Эти уведомления доставляются вам, когда приложение не открыто", - "Quote": "Цитата", - "Reactions_are_disabled": "Реакции отключены", - "Reactions_are_enabled": "Реакции активированы", - "Reactions": "Реакции", - "Read": "Читать", - "Read_External_Permission_Message": "Rocket.Chat необходим доступ к фотографиям, медиа и другим файлам на вашем устройстве", - "Read_External_Permission": "Разрешение на Чтение Медиа", - "Read_Only_Channel": "Канал только для чтения", - "Read_Only": "Только для чтения", - "Read_Receipt": "Уведомление о прочтении", - "Receive_Group_Mentions": "Получать групповые уведомления", - "Receive_Group_Mentions_Info": "Получать @all и @here уведомления", - "Register": "Зарегистрировать", - "Repeat_Password": "Повторите пароль", - "Replied_on": "Ответил на:", - "replies": "ответы", - "reply": "ответить", - "Reply": "Ответить", - "Report": "Жалоба", - "Receive_Notification": "Получать уведомления", - "Receive_notifications_from": "Получать уведомления от {{name}}", - "Resend": "Отправить повторно", - "Reset_password": "Сброс пароля", - "resetting_password": "сброс пароля", - "RESET": "СБРОС", - "Return": "Возврат", - "Review_app_title": "Нравится ли вам это приложение?", - "Review_app_desc": "Поставьте нам 5 звезд в {{store}}", - "Review_app_yes": "Конечно!", - "Review_app_no": "Нет", - "Review_app_later": "Может позже", - "Review_app_unable_store": "Невозможно открыть {{store}}", - "Review_this_app": "Оценить это приложение", - "Remove": "Удалить", - "remove": "удалить", - "Roles": "Роли", - "Room_actions": "Действия с чатом", - "Room_changed_announcement": "Объявление чата было изменено на: {{announcement}} пользователем {{userBy}}", - "Room_changed_avatar": "Аватар чата изменен пользователем {{userBy}}", - "Room_changed_description": "Описание чата было изменено на: {{description}} пользователем {{userBy}}", - "Room_changed_privacy": "Тип чата был изменен на: {{type}} пользователем {{userBy}}", - "Room_changed_topic": "Тема чата была изменена на: {{topic}} пользователем {{userBy}}", - "Room_Files": "Файлы", - "Room_Info_Edit": "Изменить информацию о чате", - "Room_Info": "Информация о канале", - "Room_Members": "Пользователи", - "Room_name_changed": "Название чата было изменено на: {{name}} пользователем {{userBy}}", - "SAVE": "СОХРАНИТЬ", - "Save_Changes": "Сохранить изменения", - "Save": "Сохранить", - "Saved": "Сохранено", - "saving_preferences": "сохранение персональных настроек", - "saving_profile": "сохранение профиля", - "saving_settings": "сохранение настроек", - "saved_to_gallery": "Сохранено в Галерею", - "Save_Your_E2E_Password": "Сохранить Ваш E2E Пароль", - "Save_Your_Encryption_Password": "Сохранить Ваш Пароль Шифрования", - "Save_Your_Encryption_Password_warning": "Этот пароль не сохраняется нигде, поэтому бережно сохраните его в надежном месте.", - "Save_Your_Encryption_Password_info": "Имейте ввиду, что если вы потеряете свой пароль, его будет невозможно восстановить и вы потеряете доступ к вашим сообщениям.", - "Search_Messages": "Поиск сообщений", - "Search": "Поиск", - "Search_by": "Поиск по", - "Search_global_users": "Глобальный поиск пользователей", - "Search_global_users_description": "При активации станет возможен поиск пользователей на других серверах.", - "Seconds": "{{second}} секунд", - "Security_and_privacy": "Безопасность и конфиденциальность", - "Select_Avatar": "Выбор аватара", - "Select_Server": "Выбор сервера", - "Select_Users": "Выбор пользователей", - "Select_a_Channel": "Выбор Канала", - "Select_a_Department": "Выбор отдела", - "Select_an_option": "Выбор Опции", - "Select_a_User": "Выбор Пользователя", - "Send": "Отправить", - "Send_audio_message": "Отправить аудиосообщение", - "Send_crash_report": "Отправить отчет об ошибке", - "Send_message": "Отправить сообщение", - "Send_me_the_code_again": "Отправить мне код снова", - "Send_to": "Отправить...", - "Sending_to": "Отправляется", - "Sent_an_attachment": "Отправить вложение", - "Server": "Сервер", - "Servers": "Серверы", - "Server_version": "Версия сервера: {{version}}", - "Set_username_subtitle": "Имя пользователя необходимо для того, чтобы позволить другим упомянуть вас в сообщениях", - "Set_custom_status": "Установить персонализированный статус", - "Set_status": "Установить статус", - "Status_saved_successfully": "Статус установлен успешно!", - "Settings": "Настройки", - "Settings_succesfully_changed": "Настройки успешно изменены!", - "Share": "Поделиться", - "Share_Link": "Ссылка, чтобы Поделиться", - "Share_this_app": "Рассказать о приложении", - "Show_more": "Показать больше..", - "Show_Unread_Counter": "Показать счетчик непрочитанных", - "Show_Unread_Counter_Info": "Счетчик непрочитанных отображается в виде значка справа от канала в списке каналов", - "Sign_in_your_server": "Войдите на ваш сервер", - "Sign_Up": "Регистрация", - "Some_field_is_invalid_or_empty": "Некоторые поля недопустимы или пусты", - "Sorting_by": "Сортировка по {{key}}", - "Sound": "Звук", - "Star_room": "В избранное", - "Star": "Отметить", - "Starred_Messages": "Отмеченные сообщения", - "starred": "отмечено", - "Starred": "Отмечено", - "Start_of_conversation": "Начало разговора", - "Start_a_Discussion": "Начать Обсуждение", - "Started_discussion": "Началось обсуждение :", - "Started_call": "Звонок, начат {{userBy}}", - "Submit": "Отправить", - "Table": "Таблица", - "Tags": "Тэги", - "Take_a_photo": "Сделать фото", - "Take_a_video": "Записать видео", - "Take_it": "Снять!", - "tap_to_change_status": "нажмите для изменения статуса", - "Tap_to_view_servers_list": "Нажмите, чтобы просмотреть список серверов", - "Terms_of_Service": " Условия использования ", - "Theme": "Тема", - "The_user_wont_be_able_to_type_in_roomName": "Пользователь не сможет писать сообщения в {{roomName}}", - "The_user_will_be_able_to_type_in_roomName": "Пользователь сможет писать сообщения в {{roomName}}", - "There_was_an_error_while_action": "Произошла ошибка в процессе {{action}}!", - "This_room_is_blocked": "Этот чат заблокирован", - "This_room_is_read_only": "Этот чат доступен только для чтения", - "Thread": "Тред", - "Threads": "Треды", - "Timezone": "Часовой пояс", - "To": "К", - "topic": "тема", - "Topic": "Тема", - "Translate": "Перевести", - "Try_again": "Попробуйте еще раз", - "Two_Factor_Authentication": "Двухфакторная аутентификация", - "Type_the_channel_name_here": "Введите название канала здесь", - "unarchive": "разархивировать", - "UNARCHIVE": "РАЗАРХИВИРОВАТЬ", - "Unblock_user": "Разблокировать пользователя", - "Unfavorite": "Удалить из избранного", - "Unfollowed_thread": "Не следить", - "Unmute": "Отменить заглушивание", - "unmuted": "Заглушивание отменено", - "Unpin": "Открепить", - "unread_messages": "непрочитанные", - "Unread": "Непрочитанные", - "Unread_on_top": "Непрочитанные сверху", - "Unstar": "Снять отметку", - "Updating": "Обновление...", - "Uploading": "Загрузка", - "Upload_file_question_mark": "Загрузить файл?", - "User": "Пользователь", - "Users": "Пользователи", - "User_added_by": "Пользователь {{userAdded}} добавлен по решению {{userBy}}", - "User_Info": "Информация о пользователе", - "User_has_been_key": "Пользователь был {{key}}", - "User_is_no_longer_role_by_": "{{user}} больше не {{role}} по решению {{userBy}}", - "User_muted_by": "Пользователь {{userMuted}} заглушен по решению {{userBy}}", - "User_removed_by": "Пользователь {{userRemoved}} удален по решению {{userBy}}", - "User_sent_an_attachment": "{{user}} отправил вложение", - "User_unmuted_by": "Пользователь {{userUnmuted}} перестал быть заглушенным по решению {{userBy}}", - "User_was_set_role_by_": "{{user}} был назначен {{role}} пользователем {{userBy}}", - "Username_is_empty": "Имя пользователя пусто", - "Username": "Имя пользователя", - "Username_or_email": "Имя пользователя или email", - "Uses_server_configuration": "Используется конфигурация сервера", - "Validating": "Проверка", - "Registration_Succeeded": "Регистрация Успешна!", - "Verify": "Проверить", - "Verify_email_title": "Регистрация Успешна!", - "Verify_email_desc": "Вам был отправлен email для подтверждения регистрации. Если вы не получили этого сообщения, пожалуйста, попробуйте еще раз.", - "Verify_your_email_for_the_code_we_sent": "Проверка вашего email с помощью отправленного нами кода", - "Video_call": "Видеозвонок", - "View_Original": "Посмотреть оригинал", - "Voice_call": "Голосовой вызов", - "Waiting_for_network": "Ожидание сети...", - "Websocket_disabled": "Websocket отключен для этого сервера.\n{{contact}}", - "Welcome": "Добро пожаловать,", - "What_are_you_doing_right_now": "Что вы делаете сейчас?", - "Whats_your_2fa": "Какой у вас код 2FA?", - "Without_Servers": "Без серверов", - "Workspaces": "Серверы", - "Would_you_like_to_return_the_inquiry": "Вы хотите отозвать запрос?", - "Write_External_Permission_Message": "Rocket.Chat необходим доступ к ваше Галерее, чтобы Вы могли сохранять изображения.", - "Write_External_Permission": "Разрешения на запись в Галерею", - "Yes": "Да", - "Yes_action_it": "Да, {{action}} это!", - "Yesterday": "Вчера", - "You_are_in_preview_mode": "Вы находитесь в режиме предварительного просмотра", - "You_are_offline": "Вы не в сети", - "You_can_search_using_RegExp_eg": "Вы можете выполнить поиск с помощью регулярных выражений, например `/^text$/i`", - "You_colon": "Вы: ", - "you_were_mentioned": "вы были упомянуты", - "You_were_removed_from_channel": "Вы были удалены из {{channel}}", - "you": "вы", - "You": "Вы", - "Logged_out_by_server": "Сервером произведен ваш выход из системы. Пожалуйста, войдите снова.", - "You_need_to_access_at_least_one_RocketChat_server_to_share_something": "Вам нужно получить доступ как минимум к одному серверу Rocket.Chat, чтобы поделиться чем-то.", - "You_need_to_verifiy_your_email_address_to_get_notications": "Вам необходимо проверить ваш email адрес, чтобы получать уведомления", - "Your_certificate": "Ваш сертификат", - "Your_invite_link_will_expire_after__usesLeft__uses": "Ваша ссылка-приглашение станет не действительной после {{usesLeft}} ее использований.", - "Your_invite_link_will_expire_on__date__or_after__usesLeft__uses": "Ваша ссылка-приглашение станет не действительной {{date}} или после {{usesLeft}} ее использований.", - "Your_invite_link_will_expire_on__date__": "Срок действия вашей ссылки-приглашения будет окончен {{date}}.", - "Your_invite_link_will_never_expire": "Ваша ссылка-приглашение никогда не будет просроченной.", - "Your_workspace": "Ваш сервер", - "Your_password_is": "Ваш пароль", - "Version_no": "Версия: {{version}}", - "You_will_not_be_able_to_recover_this_message": "Вы не сможете восстановить это сообщение!", - "You_will_unset_a_certificate_for_this_server": "Вы произведете сброс сертификата для этого сервера", - "Change_Language": "Изменить язык", - "Crash_report_disclaimer": "Мы никогда не отслеживаем содержание ваших чатов. Отчет о сбое содержит только важную для нас информацию для выявления проблем и их устранения.", - "Type_message": "Написать сообщение", - "Room_search": "Поиск в чате", - "Room_selection": "Выбор чата 1...9", - "Next_room": "Следующий чат", - "Previous_room": "Предыдущий чат", - "New_room": "Новый чат", - "Upload_room": "Загрузить в чат", - "Search_messages": "Поиск сообщений", - "Scroll_messages": "Прокрутка сообщений", - "Reply_latest": "Ответить на последнее", - "Reply_in_Thread": "Ответить в Треде", - "Server_selection": "Выбор сервера", - "Server_selection_numbers": "Выбор сервера 1...9", - "Add_server": "Добавить сервер", - "New_line": "Новая линия", - "You_will_be_logged_out_of_this_application": "Будет осуществлен ваш выход из этого приложения.", - "Clear": "Очистка", - "This_will_clear_all_your_offline_data": "Это очистит все ваши офлайн данные.", - "This_will_remove_all_data_from_this_server": "Это удалит все данные с этого сервера.", - "Mark_unread": "Отметить Непрочитанным", - "Wait_activation_warning": "До того как вы сможете войти, ваш аккаунт должен быть вручную активирован администратором сервера.", - "Screen_lock": "Блокировка экрана", - "Local_authentication_biometry_title": "Аутентификация", - "Local_authentication_biometry_fallback": "Использовать пароль", - "Local_authentication_unlock_option": "Разблокировать при помощи Пароля", - "Local_authentication_change_passcode": "Изменить Пароль", - "Local_authentication_info": "Внимание: Если вы забудете ваш Пароль, вам нужно будет удалить и заново установить это приложение.", - "Local_authentication_facial_recognition": "распознавания лица", - "Local_authentication_fingerprint": "отпечатка пальца", - "Local_authentication_unlock_with_label": "Разблокировать при помощи {{label}}", - "Local_authentication_auto_lock_60": "Через 1 минуту", - "Local_authentication_auto_lock_300": "Через 5 минут", - "Local_authentication_auto_lock_900": "Через 15 минут", - "Local_authentication_auto_lock_1800": "Через 30 минут", - "Local_authentication_auto_lock_3600": "Через 1 час", - "Passcode_enter_title": "Введите ваш пароль", - "Passcode_choose_title": "Выберите ваш новый пароль", - "Passcode_choose_confirm_title": "Подтвердите ваш новый пароль", - "Passcode_choose_error": "Пароли не соответствуют. Попробуйте еще раз.", - "Passcode_choose_force_set": "Пароль затребован вашим администратором", - "Passcode_app_locked_title": "Приложение заблокировано", - "Passcode_app_locked_subtitle": "Попробуйте снова через {{timeLeft}} секунд", - "After_seconds_set_by_admin": "Через {{seconds}} секунд (установлено администратором сервера)", - "Dont_activate": "Не активировать сейчас", - "Queued_chats": "Чаты в очереди", - "Queue_is_empty": "Очередь пуста", - "Logout_from_other_logged_in_locations": "Выйти из всех других подключенных расположений", - "You_will_be_logged_out_from_other_locations": "Будет произведен ваш выход из всех других подключенных расположений.", - "Logged_out_of_other_clients_successfully": "Выход из других клиентских подключений выполнен успешно", - "Logout_failed": "Выход не успешен!", - "Log_analytics_events": "Журнал событий аналитики", - "E2E_encryption_change_password_title": "Изменить пароль шифрования", - "E2E_encryption_change_password_description": "Теперь вы можете создавать зашифрованные приватные чаты и личные беседы. Вы так же можете сделать существующие приватные чаты и личные беседы шифрованными. \nЭто сквозное шифрование, поэтому ключ для шифрования и дешифрования ваших сообщений не будет сохранен на сервере. Именно поэтому вам необходимо сохранить ваш пароль в надежном и безопасном месте. Вам необходимо вводить этот пароль на всех устройствах, где вы хотите использовать E2E шифрование.", - "E2E_encryption_change_password_error": "Ошибка при смене пароля E2E ключа!", - "E2E_encryption_change_password_success": "Пароль ключа E2E изменен успешно!", - "E2E_encryption_change_password_message": "Убедитесь, что вы сохранили пароль в надежном месте.", - "E2E_encryption_change_password_confirmation": "Да, изменить его", - "E2E_encryption_reset_title": "Сбросить E2E ключ", - "E2E_encryption_reset_description": "Эта опция удалит ваш текущий E2E ключ и произведет ваш выход из системы. \nКогда вы снова войдете в систему, Rocket.Chat сгенерирует для вас новый ключ и восстановит ваш доступ ко всем зашифрованным чатам, в которых есть пользователи в сети. \nИсходя из природы E2E шифрования, Rocket.Chat не сможет восстановить доступ к чатам, в которых нет участников в сети.", - "E2E_encryption_reset_button": "Сбросить E2E ключ", - "E2E_encryption_reset_error": "Ошибка при сбросе E2E ключа!", - "E2E_encryption_reset_message": "Будет совершен ваш выход из системы.", - "E2E_encryption_reset_confirmation": "Да, сбросить его", - "Following": "Следить", - "Threads_displaying_all": "Показать все", - "Threads_displaying_following": "Показать отслеживаемые", - "Threads_displaying_unread": "Показать непрочитанные", - "No_threads": "Тредов нет", - "No_threads_following": "Нет тредов, за которыми вы следите", - "No_threads_unread": "Непрочитанных тредов нет", - "Messagebox_Send_to_channel": "Отправить в чат", - "Leader": "Лидер", - "Moderator": "Модератор", - "Owner": "Владелец", - "Remove_from_room": "Удалить из чата", - "Ignore": "Игнориновать", - "Unignore": "Прекратить игнорировать", - "User_has_been_ignored": "Пользователь теперь игнорируется", - "User_has_been_unignored": "Пользователь больше не игнорируется", - "User_has_been_removed_from_s": "Пользователь удален из {{s}}", - "User__username__is_now_a_leader_of__room_name_": "Пользователь {{username}} больше не лидер в чате {{room_name}}", - "User__username__is_now_a_moderator_of__room_name_": "Пользователь {{username}} больше не модератор в чате {{room_name}}", - "User__username__is_now_a_owner_of__room_name_": "Пользователь {{username}} больше не владелец в чате {{room_name}}", - "User__username__removed_from__room_name__leaders": "Пользователь {{username}} удален из {{room_name}} лидеров", - "User__username__removed_from__room_name__moderators": "Пользователь {{username}} удален из {{room_name}} модераторов", - "User__username__removed_from__room_name__owners": "Пользователь {{username}} удален из {{room_name}} владельцев", - "The_user_will_be_removed_from_s": "Пользователь будет удален из {{s}}", - "Yes_remove_user": "Да, удалить пользователя!", - "Direct_message": "Личное сообщение", - "Message_Ignored": "Сообщение игнорируется. Тапните по нему, чтобы отобразить его.", - "Enter_workspace_URL": "Введите URL вашего рабочего пространства", - "Workspace_URL_Example": "Например, your-company.rocket.chat", - "This_room_encryption_has_been_enabled_by__username_": "Шифрование для этого чата включено {{username}}", - "This_room_encryption_has_been_disabled_by__username_": "Шифрование для этого чата выключено {{username}}", - "Teams": "Команды", - "No_team_channels_found": "Каналы не найдены", - "Team_not_found": "Команда не найдена", - "Create_Team": "Создать Команду", - "Team_Name": "Имя Команды", - "Private_Team": "Приватная Команда", - "Read_Only_Team": "Команда только для чтения", - "Broadcast_Team": "Широковещательная Команда", - "creating_team": "создание Команды", - "team-name-already-exists": "Команда с таким названием уже существует", - "Add_Channel_to_Team": "Добавить канал в Команду", - "Left_The_Team_Successfully": "Успешно покинул команду", - "Create_New": "Создать", - "Add_Existing": "Добавить существующее", - "Add_Existing_Channel": "Добавить существующий канал", - "Remove_from_Team": "Удалить из Команды", - "Auto-join": "Автодобавление", - "Remove_Team_Room_Warning": "Хотите ли вы удалить этот канал из Команды? Канал будет перемещен обратно в рабочее пространство", - "Confirmation": "Подтверждение", - "invalid-room": "Такого канала не существует", - "You_are_leaving_the_team": "Вы покидаете Команду '{{team}}'", - "Leave_Team": "Покинуть команду", - "Select_Team": "Выберите Команду", - "Select_Team_Channels": "Выберите каналы Команды, которые вы хотите покинуть.", - "Cannot_leave": "Невозможно выйти", - "Cannot_remove": "Невозможно удалить", - "Cannot_delete": "Невозможно удалить", - "Last_owner_team_room": "Вы последний владелец этого чата. Как только вы покинете Команду, чат будет храниться внутри нее, но вы будете управлять ею снаружи.", - "last-owner-can-not-be-removed": "Последний владелец не может быть удален", - "Remove_User_Teams": "Выберите каналы, из которых вы хотите удалить пользователя.", - "Delete_Team": "Удалить Команду", - "Select_channels_to_delete": "Это нельзя отменить. После удаления Команды все содержимое чата и конфигурация будут удалены \n\nВыберите каналы, которые вы хотите удалить. Те, которые вы решите оставить, будут доступны в вашем рабочем пространстве. Обратите внимание, что публичные каналы по-прежнему будут открытыми и видимыми для всех.", - "You_are_deleting_the_team": "Вы удаляете эту Команду.", - "Removing_user_from_this_team": "Вы удаляете {{user}} из этой Команды", - "Remove_User_Team_Channels": "Выберите каналы, из которых вы хотите удалить пользователя.", - "Remove_Member": "Удалить участника", - "leaving_team": "выход из Команды", - "removing_team": "удаление из Команды", - "moving_channel_to_team": "перемещение канала в Команду", - "deleting_team": "удаление Команды", - "member-does-not-exist": "Участник не существует", - "Convert": "Конвертировать", - "Convert_to_Team": "Конвертировать в команду", - "Convert_to_Team_Warning": "Это нельзя отменить. После преобразования канала в Команду, вы не сможете преобразовать его обратно в канал.", - "Move_to_Team": "Перенести в команду", - "Move_Channel_Paragraph": "Перемещение канала внутрь Команды означает, что этот канал будет добавлен в контекст Команды, однако все участники канала, которые не являются членами соответствующей Команды, по-прежнему будут иметь доступ к этому каналу, но не будут добавлены как участники Команды \n\nВсе управление каналом по-прежнему будет осуществляться владельцами этого канала.\n\nЧлены Команды и даже владельцы Команды, если они не являются членами этого канала, не могут иметь доступ к содержимому канала \n\nОбратите внимание, что владелец Команды сможет удалять участников с канала.", - "Move_to_Team_Warning": "После прочтения предыдущих инструкций об этом поведении, вы все еще хотите переместить этот канал в выбранную Команду?", - "Load_More": "Загрузить еще", - "Load_Newer": "Загрузить более позднее", - "Load_Older": "Загрузить более раннее", - "Left_The_Room_Successfully": "Успешно покинул комнату", - "Deleted_The_Team_Successfully": "Команда успешно удалена", - "Deleted_The_Room_Successfully": "Комната успешно удалена", - "Convert_to_Channel": "Преобразовать в канал", - "Converting_Team_To_Channel": "Преобразование Команды в канал", - "Select_Team_Channels_To_Delete": "Выберите каналы Команды, которые вы хотите удалить, те, которые вы не выбрали, будут перемещены в рабочую область \n\nОбратите внимание, что публичные каналы будут открытыми и видимыми для всех.", - "You_are_converting_the_team": "Вы преобразуете эту Команду в канал" -} \ No newline at end of file + "1_person_reacted": "1 человек отреагировал", + "1_user": "1 пользователь", + "error-action-not-allowed": "{{action}} не допускается", + "error-application-not-found": "Приложение не найдено", + "error-archived-duplicate-name": "Есть архивный канал с именем {{room_name}}", + "error-avatar-invalid-url": "Недопустимый URL-адрес аватара: {{url}}", + "error-avatar-url-handling": "Ошибка при обработке настроек аватара с URL-адреса ({{url}}) для {{username}}", + "error-cant-invite-for-direct-room": "Невозможно пригласить пользователя в личную переписку", + "error-could-not-change-email": "Не удалось изменить адрес электронной почты", + "error-could-not-change-name": "Не удалось изменить имя", + "error-could-not-change-username": "Не удалось изменить имя пользователя", + "error-could-not-change-status": "Не удалось изменить статус", + "error-delete-protected-role": "Не удается удалить защищенную роль", + "error-department-not-found": "Отдел не найден", + "error-direct-message-file-upload-not-allowed": "Общий доступ к файлам не разрешен в личных сообщениях", + "error-duplicate-channel-name": "Канал с именем {{channel_name}} существует", + "error-email-domain-blacklisted": "Домен электронной почты включен в черный список", + "error-email-send-failed": "Ошибка при попытке отправить электронное письмо: {{message}}", + "error-save-image": "Ошибка при попытке сохранить изображение", + "error-save-video": "Ошибка при попытке сохранить видео", + "error-field-unavailable": "{{field}} уже используется :(", + "error-file-too-large": "Файл слишком большой", + "error-importer-not-defined": "Импортер не был определен правильно, ему не хватает класса Import.", + "error-input-is-not-a-valid-field": "{{input}} недействительно {{field}}", + "error-invalid-actionlink": "Недействительная ссылка действия", + "error-invalid-arguments": "Недопустимые аргументы", + "error-invalid-asset": "Недопустимый ресурс", + "error-invalid-channel": "Недействительный канал.", + "error-invalid-channel-start-with-chars": "Недействительный канал. Начните с @ или #", + "error-invalid-custom-field": "Неверное настраиваемое поле", + "error-invalid-custom-field-name": "Неверное имя настраиваемого поля. Используйте только буквы, цифры, дефис и символ подчеркивания.", + "error-invalid-date": "Указана недопустимая дата.", + "error-invalid-description": "Недопустимое описание", + "error-invalid-domain": "Недопустимый домен", + "error-invalid-email": "Неверный адрес электронной почты {{email}}", + "error-invalid-email-address": "Неверный адрес электронной почты", + "error-invalid-file-height": "Недопустимая высота файла", + "error-invalid-file-type": "Неверный тип файла", + "error-invalid-file-width": "Недопустимая ширина файла", + "error-invalid-from-address": "Вы указали неверный адрес FROM.", + "error-invalid-integration": "Недопустимая интеграция", + "error-invalid-message": "Недопустимое сообщение", + "error-invalid-method": "Недопустимый метод", + "error-invalid-name": "Недопустимое имя", + "error-invalid-password": "Неверный пароль", + "error-invalid-redirectUri": "Недопустимый redirectUri", + "error-invalid-role": "Недопустимая роль", + "error-invalid-room": "Недопустимый чат", + "error-invalid-room-name": "{{room_name}} не является допустимым именем чата", + "error-invalid-room-type": "{{type}} не является допустимым типом чата.", + "error-invalid-settings": "Недопустимые параметры", + "error-invalid-subscription": "Недействительная подписка", + "error-invalid-token": "Недопустимый токен", + "error-invalid-triggerWords": "Недопустимые триггеры", + "error-invalid-urls": "Недопустимые URL-адреса", + "error-invalid-user": "Недопустимый пользователь", + "error-invalid-username": "Неверное имя пользователя", + "error-invalid-webhook-response": "URL-адрес ответил статусом, отличным от 200", + "error-message-deleting-blocked": "Удаление сообщений заблокировано", + "error-message-editing-blocked": "Правка сообщений заблокирована", + "error-message-size-exceeded": "Размер сообщения превышает максимально разрешенный", + "error-missing-unsubscribe-link": "Вы должны указать ссылку [отписаться].", + "error-no-owner-channel": "Вы не являетесь владельцем данного чата", + "error-no-tokens-for-this-user": "Для этого пользователя нет токенов", + "error-not-allowed": "Не допускается", + "error-not-authorized": "Не разрешено", + "error-push-disabled": "Push отключен", + "error-remove-last-owner": "Это последний владелец. Прежде чем удалить его, установите нового владельца.", + "error-role-in-use": "Невозможно удалить роль, потому что она используется", + "error-role-name-required": "Требуется имя роли", + "error-the-field-is-required": "Требуется поле {{field}}.", + "error-too-many-requests": "Ошибка, слишком много запросов. Пожалуйста, помедленнее. Вы должны подождать {{seconds}} секунд, прежде чем повторить попытку.", + "error-user-is-not-activated": "Пользователь не активирован", + "error-user-has-no-roles": "Пользователь не имеет ролей", + "error-user-limit-exceeded": "Количество пользователей, которых вы пытаетесь пригласить на #channel_name, превышает лимит, установленный администратором", + "error-user-not-in-room": "Пользователя нет на этом канале", + "error-user-registration-custom-field": "error-user-registration-custom-field", + "error-user-registration-disabled": "Регистрация пользователей отключена", + "error-user-registration-secret": "Регистрация пользователей разрешена только через секретный URL", + "error-you-are-last-owner": "Вы последний владелец. Пожалуйста, назначьте нового владельца, прежде чем покинуть чат.", + "error-status-not-allowed": "Статус Невидимый отключён", + "Actions": "Действия", + "activity": "активности", + "Activity": "По активности", + "Add_Reaction": "Добавить реакцию", + "Add_Server": "Добавить сервер", + "Add_users": "Добавить пользователей", + "Admin_Panel": "Панель админа", + "Agent": "Агент", + "Alert": "Оповещение", + "alert": "оповещение", + "alerts": "оповещения", + "All_users_in_the_channel_can_write_new_messages": "Все пользователи канала могут писать новые сообщения", + "All_users_in_the_team_can_write_new_messages": "Все пользователи в Команде могут писать новые сообщения", + "A_meaningful_name_for_the_discussion_room": "Осмысленное имя для обсуждения", + "All": "Все", + "All_Messages": "Все сообщения", + "Allow_Reactions": "Разрешить реакции", + "Alphabetical": "По алфавиту", + "and_more": "и более", + "and": "и", + "announcement": "объявление", + "Announcement": "Объявление", + "Apply_Your_Certificate": "Применить ваш сертификат", + "ARCHIVE": "АРХИВ", + "archive": "архив", + "are_typing": "печатают", + "Are_you_sure_question_mark": "Вы уверены?", + "Are_you_sure_you_want_to_leave_the_room": "Вы действительно хотите покинуть чат {{room}}?", + "Audio": "Аудио", + "Authenticating": "Аутентификация", + "Automatic": "Автоматически", + "Auto_Translate": "Автоперевод", + "Avatar_changed_successfully": "Аватар успешно изменен!", + "Avatar_Url": "URL аватара", + "Away": "Отошел", + "Back": "Назад", + "Black": "Черный", + "Block_user": "Блокировать пользователя", + "Browser": "Браузер", + "Broadcast_channel_Description": "Только авторизованные пользователи могут писать новые сообщения, но другие пользователи смогут ответить", + "Broadcast_Channel": "Широковещательный канал", + "Busy": "Занят", + "By_proceeding_you_are_agreeing": "Продолжая, вы соглашаетесь с нашими", + "Cancel_editing": "Отменить правку", + "Cancel_recording": "Отменить запись", + "Cancel": "Отмена", + "changing_avatar": "изменение аватара", + "creating_channel": "создание канала", + "creating_invite": "создание приглашения", + "Channel_Name": "Название канала", + "Channels": "Каналы", + "Chats": "Чаты", + "Call_already_ended": "Вызов уже завершен!", + "Clear_cookies_alert": "Вы действительно хотите очистить все cookies?", + "Clear_cookies_desc": "Это действие очистит все ваши cookies для входа, это позволит вам войти под другой учетной записью.", + "Clear_cookies_yes": "Да, очистить cookies", + "Clear_cookies_no": "Нет, сохранить cookies", + "Click_to_join": "Нажмите, чтобы присоединиться!", + "Close": "Закрыть", + "Close_emoji_selector": "Закрыть выбор emoji", + "Closing_chat": "Закрытие чата", + "Change_language_loading": "Изменение языка.", + "Chat_closed_by_agent": "Чат закрыт агентом", + "Choose": "Выбрать", + "Choose_from_library": "Выбрать из библиотеки", + "Choose_file": "Выбрать файл", + "Choose_where_you_want_links_be_opened": "Выберите где вы хотите открывать ссылки", + "Code": "Код", + "Code_or_password_invalid": "Код или пароль не верны", + "Collaborative": "Совместный", + "Confirm": "Подтверждение", + "Connect": "Соединение", + "Connected": "Подключено", + "connecting_server": "подключение к серверу", + "Connecting": "Соединение...", + "Contact_us": "Связаться с нами", + "Contact_your_server_admin": "Свяжитесь с администратором сервера.", + "Continue_with": "Продолжить с", + "Copied_to_clipboard": "Скопировано в буфер обмена!", + "Copy": "Копировать", + "Conversation": "Диалог", + "Permalink": "Постоянная ссылка", + "Certificate_password": "Пароль сертификата", + "Clear_cache": "Очистить локальный кэш сервера", + "Clear_cache_loading": "Очистка кэша.", + "Whats_the_password_for_your_certificate": "Какой пароль для вашего сертификата?", + "Create_account": "Создать аккаунт", + "Create_Channel": "Создать канал", + "Create_Direct_Messages": "Создать личное сообщение", + "Create_Discussion": "Создать обсуждение", + "Created_snippet": "создать сниппет", + "Create_a_new_workspace": "Новое рабочее пространство", + "Create": "Создать", + "Custom_Status": "Персонализированный Статус", + "Dark": "Темный", + "Dark_level": "Уровень затемненности", + "Default": "По умолчанию", + "Default_browser": "Браузер по умолчанию", + "Delete_Room_Warning": "Удаление канала приведет к удалению всех сообщений, размещенных в нем. Это не может быть отменено.", + "Department": "Отдел", + "delete": "удалить", + "Delete": "Удалить", + "DELETE": "УДАЛИТЬ", + "move": "переместить", + "deleting_room": "удаление чата", + "description": "описание", + "Description": "Описание", + "Desktop_Options": "Параметры рабочего стола", + "Desktop_Notifications": "Уведомления рабочего стола", + "Desktop_Alert_info": "Эти уведомления появятся на рабочем столе", + "Directory": "Директория", + "Direct_Messages": "Личные сообщения", + "Disable_notifications": "Отключить уведомления", + "Discussions": "Обсуждения", + "Discussion_Desc": "Помогают разобраться в том, что происходит! При создании Обсуждения, суб-канала одного из выбранных вами каналов так же создается и привязка к нему.", + "Discussion_name": "Имя Обсуждения", + "Done": "Готово", + "Dont_Have_An_Account": "Нет аккаунта?", + "Do_you_have_an_account": "У вас есть аккаунт?", + "Do_you_have_a_certificate": "У вас есть сертификат?", + "Do_you_really_want_to_key_this_room_question_mark": "Вы действительно хотите {{key}} этот канал?", + "E2E_Encryption": "E2E шифрование", + "E2E_How_It_Works_info1": "Теперь Вы можете создавать зашифрованные приватные чаты и личные сообщения. Вы так же можете изменить существующе приватные чаты и личные сообщения сделав их зашифрованными.", + "E2E_How_It_Works_info2": "Это *сквозное шифрование*, поэтому ключ для шифрования/расшифровки ваших сообщений не будет сохранен на сервере. Значит *Вам нужно сохранить этот пароль где-то в безопасном месте*, где он будет Вам доступен, если потребуется.", + "E2E_How_It_Works_info3": "В случаем продолжения, пароль Е2Е будет сгенерирован автоматически.", + "E2E_How_It_Works_info4": "Так же Вы можете задать новый пароль для вашего ключа шифрования в любое время при помощи браузера там же, где Вы ввели существующий Е2Е пароль.", + "edit": "править", + "edited": "исправлено", + "Edit": "Правка", + "Edit_Status": "Изменить статус", + "Edit_Invite": "Редактировать Приглашение", + "End_to_end_encrypted_room": "Чат со сквозным шифрованием", + "end_to_end_encryption": "сквозное шифрование", + "Email_Notification_Mode_All": "Каждое Упоминание/Личное сообщение", + "Email_Notification_Mode_Disabled": "Отключено", + "Email_or_password_field_is_empty": "Поле электронной почты или пароля пусты", + "Email": "E-mail", + "email": "e-mail", + "Empty_title": "Пустой заголовок", + "Enable_Auto_Translate": "Включить автоперевод", + "Enable_notifications": "Включить уведомления", + "Encrypted": "Зашифрован", + "Encrypted_message": "Зашифрованное сообщение", + "Enter_Your_E2E_Password": "Введите Ваш E2E Пароль", + "Enter_Your_Encryption_Password_desc1": "Вы сможете получить доступ к вашим зашифрованным приватным чатам и личным сообщениям.", + "Enter_Your_Encryption_Password_desc2": "Вам нужно ввести пароль для шифрования/расшифровки сообщений в каждом клиенте.", + "Encryption_error_title": "Введен не верный пароль шифрования", + "Encryption_error_desc": "Невозможно расшифровать ваш ключ шифрования, чтобы импортировать его", + "Everyone_can_access_this_channel": "Каждый может получить доступ к этому каналу", + "Everyone_can_access_this_team": "Каждый может получить доступ к этой Команде", + "Error_uploading": "Ошибка загрузки", + "Expiration_Days": "Срок действия (Дни)", + "Favorite": "Избранное", + "Favorites": "Избранные", + "Files": "Файлы", + "File_description": "Описание файла", + "File_name": "Имя файла", + "Finish_recording": "Завершить запись", + "Following_thread": "Следить за тредом", + "For_your_security_you_must_enter_your_current_password_to_continue": "В целях вашей безопасности вы должны ввести свой текущий пароль для продолжения", + "Forgot_password_If_this_email_is_registered": "Если эта электронная почта зарегистрирована, мы отправим инструкции о том, как сбросить пароль. Если вы не получите письмо в ближайшее время, вернитесь и повторите попытку.", + "Forgot_password": "Забыли пароль", + "Forgot_Password": "Забыли Пароль", + "Forward": "Перенаправить", + "Forward_Chat": "Перенаправить Чат", + "Forward_to_department": "Перенаправить в отдел", + "Forward_to_user": "Перенаправить пользователю", + "Full_table": "Нажмите, чтобы увидеть полную таблицу", + "Generate_New_Link": "Сгенерировать Новую Ссылку", + "Group_by_favorites": "По избранным", + "Group_by_type": "По типу", + "Hide": "Скрыть", + "Has_joined_the_channel": "присоединился к каналу", + "Has_joined_the_conversation": "присоединился к беседе", + "Has_left_the_channel": "покинул канал", + "Hide_System_Messages": "Скрыть Системные Сообщения", + "Hide_type_messages": "Скрыть \"{{type}}\" сообщения", + "How_It_Works": "Как Это Работает", + "Message_HideType_uj": "Пользователь Присоединился", + "Message_HideType_ul": "Пользователь Покинул", + "Message_HideType_ru": "Пользователь Удален", + "Message_HideType_au": "Пользователь Добавлен", + "Message_HideType_mute_unmute": "Пользователь Заглушен / Заглушивание отменено", + "Message_HideType_r": "Имя Чата Изменено", + "Message_HideType_ut": "Пользователь Присоединился к Беседе", + "Message_HideType_wm": "Добро пожаловать", + "Message_HideType_rm": "Сообщение Удалено", + "Message_HideType_subscription_role_added": "Была назначена Роль", + "Message_HideType_subscription_role_removed": "Роль более не определена", + "Message_HideType_room_archived": "Чат Архивирован", + "Message_HideType_room_unarchived": "Чат Разархивирован", + "I_Saved_My_E2E_Password": "Я Сохранил Свой E2E Пароль", + "IP": "IP", + "In_app": "В приложении", + "In_App_And_Desktop": "В приложении и на десктопе", + "In_App_and_Desktop_Alert_info": "Отображает баннер в верхней части экрана, когда приложение открыто, и отображает уведомление на рабочем столе.", + "Invisible": "Невидимый", + "Invite": "Приглашение", + "is_a_valid_RocketChat_instance": "является действительным сервером Rocket.Chat", + "is_not_a_valid_RocketChat_instance": "не является действительным сервером Rocket.Chat", + "is_typing": "печатает", + "Invalid_or_expired_invite_token": "Токен приглашения не действителен или с истекшим сроком действия", + "Invalid_server_version": "Сервер, к которому вы пытаетесь подключиться, использует версию, которая больше не поддерживается приложением: {{currentVersion}}.\n\nНам нужна версия {{minVersion}}", + "Invite_Link": "Ссылка Приглашения", + "Invite_users": "Приглашение пользователей", + "Join": "Присоединиться", + "Join_Code": "Код присоединения", + "Insert_Join_Code": "Вставить код присоединения", + "Join_our_open_workspace": "Присоединиться к нашему открытому серверу", + "Join_your_workspace": "Присоединиться к вашему серверу", + "Just_invited_people_can_access_this_channel": "Только приглашенные люди могут получить доступ к этому каналу", + "Just_invited_people_can_access_this_team": "Только приглашенные пользователи могут получить доступ к этой Команде", + "Language": "Язык", + "last_message": "последнее сообщение", + "Leave_channel": "Покинуть канал", + "leaving_room": "покинуть комнату", + "Leave": "Покинуть комнату", + "leave": "покинуть", + "Legal": "Правовые аспекты", + "Light": "Светлая", + "License": "Лицензия", + "Livechat": "Livechat", + "Livechat_edit": "Редактирование Livechat", + "Login": "Вход", + "Login_error": "Ваши учетные данные были отклонены! Пожалуйста, попробуйте еще раз.", + "Login_with": "Войти с", + "Logging_out": "Осуществляется выход.", + "Logout": "Выйти", + "Max_number_of_uses": "Максимальное количество", + "Max_number_of_users_allowed_is_number": "Максимальное количество разрешенных пользователей {{maxUsers}}", + "members": "пользователи", + "Members": "Пользователи", + "Mentioned_Messages": "Упомянутые сообщения", + "mentioned": "упомянутые", + "Mentions": "Упоминания", + "Message_accessibility": "Сообщение от {{user}} в {{time}}: {{message}}", + "Message_actions": "Действия с сообщением", + "Message_pinned": "Сообщение прикреплено", + "Message_removed": "Сообщение удалено", + "Message_starred": "Сообщение отмечено звездой", + "Message_unstarred": "Отметка сообщения звездой удалена", + "message": "сообщение", + "messages": "сообщения", + "Message": "Сообщение", + "Messages": "Сообщения", + "Message_Reported": "Сообщение отправлено", + "Microphone_Permission_Message": "Rocket.Chat нужен доступ к вашему микрофону, чтобы вы могли отправлять аудио сообщения.", + "Microphone_Permission": "Разрешение на использование микрофона", + "Mute": "Заглушить", + "muted": "Заглушен", + "My_servers": "Мои серверы", + "N_people_reacted": "отреагировало {{n}} человек", + "N_users": "{{n}} пользователи", + "N_channels": "{{n}} каналов", + "name": "имя", + "Name": "Имя", + "Navigation_history": "История навигации", + "Never": "Никогда", + "New_Message": "Новое сообщение", + "New_Password": "Новый пароль", + "New_Server": "Новый сервер", + "Next": "Далее", + "No_files": "Нет файлов", + "No_limit": "Нет ограничений", + "No_mentioned_messages": "Нет упоминаний", + "No_pinned_messages": "Нет прикрепленных сообщений", + "No_results_found": "Ничего не найдено", + "No_starred_messages": "Нет отмеченных сообщений", + "No_thread_messages": "Нет сообщений в теме", + "No_label_provided": "{{label}} не указан.", + "No_Message": "Нет сообщения", + "No_messages_yet": "Пока нет сообщений", + "No_Reactions": "Нет реакций", + "No_Read_Receipts": "Нет информации о прочтении", + "Not_logged": "Не зарегистрирован", + "Not_RC_Server": "Это не сервер Rocket.Chat.\n{{contact}}", + "Nothing": "Ничего", + "Nothing_to_save": "Нечего сохранять!", + "Notify_active_in_this_room": "Уведомить всех активных пользователей в этом чате", + "Notify_all_in_this_room": "Уведомить всех в этом чате", + "Notifications": "Уведомления", + "Notification_Duration": "Продолжительность уведомлений", + "Notification_Preferences": "Настройки уведомлений", + "No_available_agents_to_transfer": "Нет свободных агентов для передачи", + "Offline": "Офлайн", + "Oops": "Упс!", + "Omnichannel": "Omnichannel", + "Open_Livechats": "Чаты в Работе", + "Omnichannel_enable_alert": "Вы не доступны в Omnichannel. Хотите стать доступными?", + "Onboarding_description": "Сервер это пространство для взаимодействия вашей команды или организации. Уточните адрес сервера у вашего администратора или создайте свой сервер для команды.", + "Onboarding_join_workspace": "Присоединиться к серверу", + "Onboarding_subtitle": "За пределами Командного Взаимодействия", + "Onboarding_title": "Добро пожаловать в Rocket.Chat", + "Onboarding_join_open_description": "Присоединяйтесь к нашему открытому серверу, чтобы пообщаться с командой и сообществом Rocket.Chat.", + "Onboarding_agree_terms": "Продолжая вы соглашаетесь с правилами Rocket.Chat", + "Onboarding_less_options": "Меньше опций", + "Onboarding_more_options": "Больше опций", + "Online": "В сети", + "Only_authorized_users_can_write_new_messages": "Только авторизованные пользователи могут писать новые сообщения", + "Open_emoji_selector": "Открыть выбор emoji", + "Open_Source_Communication": "Общение с открытым кодом", + "Open_your_authentication_app_and_enter_the_code": "Откройте ваше приложение для аутентификации и введите код и него.", + "OR": "ИЛИ", + "OS": "ОС", + "Overwrites_the_server_configuration_and_use_room_config": "Перезаписывает конфигурацию сервера и использует конфигурацию чата", + "Password": "Пароль", + "Parent_channel_or_group": "Родительский канал или чат", + "Permalink_copied_to_clipboard": "Постоянная ссылка скопирована в буфер обмена!", + "Phone": "Телефон", + "Pin": "Прикрепить сообщение", + "Pinned_Messages": "Прикрепленные сообщения", + "pinned": "прикреплено", + "Pinned": "Прикреплено", + "Please_add_a_comment": "Пожалуйста добавьте комментарий", + "Please_enter_your_password": "Пожалуйста введите ваш пароль", + "Please_wait": "Пожалуйста подождите.", + "Preferences": "Настройки", + "Preferences_saved": "Настройки сохранены!", + "Privacy_Policy": " Политика конфиденциальности", + "Private_Channel": "Приватный канал", + "Private": "Приватный", + "Processing": "Обработка...", + "Profile_saved_successfully": "Профиль успешно сохранен!", + "Profile": "Профиль", + "Public_Channel": "Публичный канал", + "Public": "Публичный", + "Push_Notifications": "Push Уведомления", + "Push_Notifications_Alert_Info": "Эти уведомления доставляются вам, когда приложение не открыто", + "Quote": "Цитата", + "Reactions_are_disabled": "Реакции отключены", + "Reactions_are_enabled": "Реакции активированы", + "Reactions": "Реакции", + "Read": "Читать", + "Read_External_Permission_Message": "Rocket.Chat необходим доступ к фотографиям, медиа и другим файлам на вашем устройстве", + "Read_External_Permission": "Разрешение на Чтение Медиа", + "Read_Only_Channel": "Канал только для чтения", + "Read_Only": "Только для чтения", + "Read_Receipt": "Уведомление о прочтении", + "Receive_Group_Mentions": "Получать групповые уведомления", + "Receive_Group_Mentions_Info": "Получать @all и @here уведомления", + "Register": "Зарегистрировать", + "Repeat_Password": "Повторите пароль", + "Replied_on": "Ответил на:", + "replies": "ответы", + "reply": "ответить", + "Reply": "Ответить", + "Report": "Жалоба", + "Receive_Notification": "Получать уведомления", + "Receive_notifications_from": "Получать уведомления от {{name}}", + "Resend": "Отправить повторно", + "Reset_password": "Сброс пароля", + "resetting_password": "сброс пароля", + "RESET": "СБРОС", + "Return": "Возврат", + "Review_app_title": "Нравится ли вам это приложение?", + "Review_app_desc": "Поставьте нам 5 звезд в {{store}}", + "Review_app_yes": "Конечно!", + "Review_app_no": "Нет", + "Review_app_later": "Может позже", + "Review_app_unable_store": "Невозможно открыть {{store}}", + "Review_this_app": "Оценить это приложение", + "Remove": "Удалить", + "remove": "удалить", + "Roles": "Роли", + "Room_actions": "Действия с чатом", + "Room_changed_announcement": "Объявление чата было изменено на: {{announcement}} пользователем {{userBy}}", + "Room_changed_avatar": "Аватар чата изменен пользователем {{userBy}}", + "Room_changed_description": "Описание чата было изменено на: {{description}} пользователем {{userBy}}", + "Room_changed_privacy": "Тип чата был изменен на: {{type}} пользователем {{userBy}}", + "Room_changed_topic": "Тема чата была изменена на: {{topic}} пользователем {{userBy}}", + "Room_Files": "Файлы", + "Room_Info_Edit": "Изменить информацию о чате", + "Room_Info": "Информация о канале", + "Room_Members": "Пользователи", + "Room_name_changed": "Название чата было изменено на: {{name}} пользователем {{userBy}}", + "SAVE": "СОХРАНИТЬ", + "Save_Changes": "Сохранить изменения", + "Save": "Сохранить", + "Saved": "Сохранено", + "saving_preferences": "сохранение персональных настроек", + "saving_profile": "сохранение профиля", + "saving_settings": "сохранение настроек", + "saved_to_gallery": "Сохранено в Галерею", + "Save_Your_E2E_Password": "Сохранить Ваш E2E Пароль", + "Save_Your_Encryption_Password": "Сохранить Ваш Пароль Шифрования", + "Save_Your_Encryption_Password_warning": "Этот пароль не сохраняется нигде, поэтому бережно сохраните его в надежном месте.", + "Save_Your_Encryption_Password_info": "Имейте ввиду, что если вы потеряете свой пароль, его будет невозможно восстановить и вы потеряете доступ к вашим сообщениям.", + "Search_Messages": "Поиск сообщений", + "Search": "Поиск", + "Search_by": "Поиск по", + "Search_global_users": "Глобальный поиск пользователей", + "Search_global_users_description": "При активации станет возможен поиск пользователей на других серверах.", + "Seconds": "{{second}} секунд", + "Security_and_privacy": "Безопасность и конфиденциальность", + "Select_Avatar": "Выбор аватара", + "Select_Server": "Выбор сервера", + "Select_Users": "Выбор пользователей", + "Select_a_Channel": "Выбор Канала", + "Select_a_Department": "Выбор отдела", + "Select_an_option": "Выбор Опции", + "Select_a_User": "Выбор Пользователя", + "Send": "Отправить", + "Send_audio_message": "Отправить аудиосообщение", + "Send_crash_report": "Отправить отчет об ошибке", + "Send_message": "Отправить сообщение", + "Send_me_the_code_again": "Отправить мне код снова", + "Send_to": "Отправить...", + "Sending_to": "Отправляется", + "Sent_an_attachment": "Отправить вложение", + "Server": "Сервер", + "Servers": "Серверы", + "Server_version": "Версия сервера: {{version}}", + "Set_username_subtitle": "Имя пользователя необходимо для того, чтобы позволить другим упомянуть вас в сообщениях", + "Set_custom_status": "Установить персонализированный статус", + "Set_status": "Установить статус", + "Status_saved_successfully": "Статус установлен успешно!", + "Settings": "Настройки", + "Settings_succesfully_changed": "Настройки успешно изменены!", + "Share": "Поделиться", + "Share_Link": "Ссылка, чтобы Поделиться", + "Share_this_app": "Рассказать о приложении", + "Show_more": "Показать больше..", + "Show_Unread_Counter": "Показать счетчик непрочитанных", + "Show_Unread_Counter_Info": "Счетчик непрочитанных отображается в виде значка справа от канала в списке каналов", + "Sign_in_your_server": "Войдите на ваш сервер", + "Sign_Up": "Регистрация", + "Some_field_is_invalid_or_empty": "Некоторые поля недопустимы или пусты", + "Sorting_by": "Сортировка по {{key}}", + "Sound": "Звук", + "Star_room": "В избранное", + "Star": "Отметить", + "Starred_Messages": "Отмеченные сообщения", + "starred": "отмечено", + "Starred": "Отмечено", + "Start_of_conversation": "Начало разговора", + "Start_a_Discussion": "Начать Обсуждение", + "Started_discussion": "Началось обсуждение :", + "Started_call": "Звонок, начат {{userBy}}", + "Submit": "Отправить", + "Table": "Таблица", + "Tags": "Тэги", + "Take_a_photo": "Сделать фото", + "Take_a_video": "Записать видео", + "Take_it": "Снять!", + "tap_to_change_status": "нажмите для изменения статуса", + "Tap_to_view_servers_list": "Нажмите, чтобы просмотреть список серверов", + "Terms_of_Service": " Условия использования ", + "Theme": "Тема", + "The_user_wont_be_able_to_type_in_roomName": "Пользователь не сможет писать сообщения в {{roomName}}", + "The_user_will_be_able_to_type_in_roomName": "Пользователь сможет писать сообщения в {{roomName}}", + "There_was_an_error_while_action": "Произошла ошибка в процессе {{action}}!", + "This_room_is_blocked": "Этот чат заблокирован", + "This_room_is_read_only": "Этот чат доступен только для чтения", + "Thread": "Тред", + "Threads": "Треды", + "Timezone": "Часовой пояс", + "To": "К", + "topic": "тема", + "Topic": "Тема", + "Translate": "Перевести", + "Try_again": "Попробуйте еще раз", + "Two_Factor_Authentication": "Двухфакторная аутентификация", + "Type_the_channel_name_here": "Введите название канала здесь", + "unarchive": "разархивировать", + "UNARCHIVE": "РАЗАРХИВИРОВАТЬ", + "Unblock_user": "Разблокировать пользователя", + "Unfavorite": "Удалить из избранного", + "Unfollowed_thread": "Не следить", + "Unmute": "Отменить заглушивание", + "unmuted": "Заглушивание отменено", + "Unpin": "Открепить", + "unread_messages": "непрочитанные", + "Unread": "Непрочитанные", + "Unread_on_top": "Непрочитанные сверху", + "Unstar": "Снять отметку", + "Updating": "Обновление...", + "Uploading": "Загрузка", + "Upload_file_question_mark": "Загрузить файл?", + "User": "Пользователь", + "Users": "Пользователи", + "User_added_by": "Пользователь {{userAdded}} добавлен по решению {{userBy}}", + "User_Info": "Информация о пользователе", + "User_has_been_key": "Пользователь был {{key}}", + "User_is_no_longer_role_by_": "{{user}} больше не {{role}} по решению {{userBy}}", + "User_muted_by": "Пользователь {{userMuted}} заглушен по решению {{userBy}}", + "User_removed_by": "Пользователь {{userRemoved}} удален по решению {{userBy}}", + "User_sent_an_attachment": "{{user}} отправил вложение", + "User_unmuted_by": "Пользователь {{userUnmuted}} перестал быть заглушенным по решению {{userBy}}", + "User_was_set_role_by_": "{{user}} был назначен {{role}} пользователем {{userBy}}", + "Username_is_empty": "Имя пользователя пусто", + "Username": "Имя пользователя", + "Username_or_email": "Имя пользователя или email", + "Uses_server_configuration": "Используется конфигурация сервера", + "Validating": "Проверка", + "Registration_Succeeded": "Регистрация Успешна!", + "Verify": "Проверить", + "Verify_email_title": "Регистрация Успешна!", + "Verify_email_desc": "Вам был отправлен email для подтверждения регистрации. Если вы не получили этого сообщения, пожалуйста, попробуйте еще раз.", + "Verify_your_email_for_the_code_we_sent": "Проверка вашего email с помощью отправленного нами кода", + "Video_call": "Видеозвонок", + "View_Original": "Посмотреть оригинал", + "Voice_call": "Голосовой вызов", + "Waiting_for_network": "Ожидание сети...", + "Websocket_disabled": "Websocket отключен для этого сервера.\n{{contact}}", + "Welcome": "Добро пожаловать,", + "What_are_you_doing_right_now": "Что вы делаете сейчас?", + "Whats_your_2fa": "Какой у вас код 2FA?", + "Without_Servers": "Без серверов", + "Workspaces": "Серверы", + "Would_you_like_to_return_the_inquiry": "Вы хотите отозвать запрос?", + "Write_External_Permission_Message": "Rocket.Chat необходим доступ к ваше Галерее, чтобы Вы могли сохранять изображения.", + "Write_External_Permission": "Разрешения на запись в Галерею", + "Yes": "Да", + "Yes_action_it": "Да, {{action}} это!", + "Yesterday": "Вчера", + "You_are_in_preview_mode": "Вы находитесь в режиме предварительного просмотра", + "You_are_offline": "Вы не в сети", + "You_can_search_using_RegExp_eg": "Вы можете выполнить поиск с помощью регулярных выражений, например `/^text$/i`", + "You_colon": "Вы: ", + "you_were_mentioned": "вы были упомянуты", + "You_were_removed_from_channel": "Вы были удалены из {{channel}}", + "you": "вы", + "You": "Вы", + "Logged_out_by_server": "Сервером произведен ваш выход из системы. Пожалуйста, войдите снова.", + "You_need_to_access_at_least_one_RocketChat_server_to_share_something": "Вам нужно получить доступ как минимум к одному серверу Rocket.Chat, чтобы поделиться чем-то.", + "You_need_to_verifiy_your_email_address_to_get_notications": "Вам необходимо проверить ваш email адрес, чтобы получать уведомления", + "Your_certificate": "Ваш сертификат", + "Your_invite_link_will_expire_after__usesLeft__uses": "Ваша ссылка-приглашение станет не действительной после {{usesLeft}} ее использований.", + "Your_invite_link_will_expire_on__date__or_after__usesLeft__uses": "Ваша ссылка-приглашение станет не действительной {{date}} или после {{usesLeft}} ее использований.", + "Your_invite_link_will_expire_on__date__": "Срок действия вашей ссылки-приглашения будет окончен {{date}}.", + "Your_invite_link_will_never_expire": "Ваша ссылка-приглашение никогда не будет просроченной.", + "Your_workspace": "Ваш сервер", + "Your_password_is": "Ваш пароль", + "Version_no": "Версия: {{version}}", + "You_will_not_be_able_to_recover_this_message": "Вы не сможете восстановить это сообщение!", + "You_will_unset_a_certificate_for_this_server": "Вы произведете сброс сертификата для этого сервера", + "Change_Language": "Изменить язык", + "Crash_report_disclaimer": "Мы никогда не отслеживаем содержание ваших чатов. Отчет о сбое содержит только важную для нас информацию для выявления проблем и их устранения.", + "Type_message": "Написать сообщение", + "Room_search": "Поиск в чате", + "Room_selection": "Выбор чата 1...9", + "Next_room": "Следующий чат", + "Previous_room": "Предыдущий чат", + "New_room": "Новый чат", + "Upload_room": "Загрузить в чат", + "Search_messages": "Поиск сообщений", + "Scroll_messages": "Прокрутка сообщений", + "Reply_latest": "Ответить на последнее", + "Reply_in_Thread": "Ответить в Треде", + "Server_selection": "Выбор сервера", + "Server_selection_numbers": "Выбор сервера 1...9", + "Add_server": "Добавить сервер", + "New_line": "Новая линия", + "You_will_be_logged_out_of_this_application": "Будет осуществлен ваш выход из этого приложения.", + "Clear": "Очистка", + "This_will_clear_all_your_offline_data": "Это очистит все ваши офлайн данные.", + "This_will_remove_all_data_from_this_server": "Это удалит все данные с этого сервера.", + "Mark_unread": "Отметить Непрочитанным", + "Wait_activation_warning": "До того как вы сможете войти, ваш аккаунт должен быть вручную активирован администратором сервера.", + "Screen_lock": "Блокировка экрана", + "Local_authentication_biometry_title": "Аутентификация", + "Local_authentication_biometry_fallback": "Использовать пароль", + "Local_authentication_unlock_option": "Разблокировать при помощи Пароля", + "Local_authentication_change_passcode": "Изменить Пароль", + "Local_authentication_info": "Внимание: Если вы забудете ваш Пароль, вам нужно будет удалить и заново установить это приложение.", + "Local_authentication_facial_recognition": "распознавания лица", + "Local_authentication_fingerprint": "отпечатка пальца", + "Local_authentication_unlock_with_label": "Разблокировать при помощи {{label}}", + "Local_authentication_auto_lock_60": "Через 1 минуту", + "Local_authentication_auto_lock_300": "Через 5 минут", + "Local_authentication_auto_lock_900": "Через 15 минут", + "Local_authentication_auto_lock_1800": "Через 30 минут", + "Local_authentication_auto_lock_3600": "Через 1 час", + "Passcode_enter_title": "Введите ваш пароль", + "Passcode_choose_title": "Выберите ваш новый пароль", + "Passcode_choose_confirm_title": "Подтвердите ваш новый пароль", + "Passcode_choose_error": "Пароли не соответствуют. Попробуйте еще раз.", + "Passcode_choose_force_set": "Пароль затребован вашим администратором", + "Passcode_app_locked_title": "Приложение заблокировано", + "Passcode_app_locked_subtitle": "Попробуйте снова через {{timeLeft}} секунд", + "After_seconds_set_by_admin": "Через {{seconds}} секунд (установлено администратором сервера)", + "Dont_activate": "Не активировать сейчас", + "Queued_chats": "Чаты в очереди", + "Queue_is_empty": "Очередь пуста", + "Logout_from_other_logged_in_locations": "Выйти из всех других подключенных расположений", + "You_will_be_logged_out_from_other_locations": "Будет произведен ваш выход из всех других подключенных расположений.", + "Logged_out_of_other_clients_successfully": "Выход из других клиентских подключений выполнен успешно", + "Logout_failed": "Выход не успешен!", + "Log_analytics_events": "Журнал событий аналитики", + "E2E_encryption_change_password_title": "Изменить пароль шифрования", + "E2E_encryption_change_password_description": "Теперь вы можете создавать зашифрованные приватные чаты и личные беседы. Вы так же можете сделать существующие приватные чаты и личные беседы шифрованными. \nЭто сквозное шифрование, поэтому ключ для шифрования и дешифрования ваших сообщений не будет сохранен на сервере. Именно поэтому вам необходимо сохранить ваш пароль в надежном и безопасном месте. Вам необходимо вводить этот пароль на всех устройствах, где вы хотите использовать E2E шифрование.", + "E2E_encryption_change_password_error": "Ошибка при смене пароля E2E ключа!", + "E2E_encryption_change_password_success": "Пароль ключа E2E изменен успешно!", + "E2E_encryption_change_password_message": "Убедитесь, что вы сохранили пароль в надежном месте.", + "E2E_encryption_change_password_confirmation": "Да, изменить его", + "E2E_encryption_reset_title": "Сбросить E2E ключ", + "E2E_encryption_reset_description": "Эта опция удалит ваш текущий E2E ключ и произведет ваш выход из системы. \nКогда вы снова войдете в систему, Rocket.Chat сгенерирует для вас новый ключ и восстановит ваш доступ ко всем зашифрованным чатам, в которых есть пользователи в сети. \nИсходя из природы E2E шифрования, Rocket.Chat не сможет восстановить доступ к чатам, в которых нет участников в сети.", + "E2E_encryption_reset_button": "Сбросить E2E ключ", + "E2E_encryption_reset_error": "Ошибка при сбросе E2E ключа!", + "E2E_encryption_reset_message": "Будет совершен ваш выход из системы.", + "E2E_encryption_reset_confirmation": "Да, сбросить его", + "Following": "Следить", + "Threads_displaying_all": "Показать все", + "Threads_displaying_following": "Показать отслеживаемые", + "Threads_displaying_unread": "Показать непрочитанные", + "No_threads": "Тредов нет", + "No_threads_following": "Нет тредов, за которыми вы следите", + "No_threads_unread": "Непрочитанных тредов нет", + "Messagebox_Send_to_channel": "Отправить в чат", + "Leader": "Лидер", + "Moderator": "Модератор", + "Owner": "Владелец", + "Remove_from_room": "Удалить из чата", + "Ignore": "Игнориновать", + "Unignore": "Прекратить игнорировать", + "User_has_been_ignored": "Пользователь теперь игнорируется", + "User_has_been_unignored": "Пользователь больше не игнорируется", + "User_has_been_removed_from_s": "Пользователь удален из {{s}}", + "User__username__is_now_a_leader_of__room_name_": "Пользователь {{username}} больше не лидер в чате {{room_name}}", + "User__username__is_now_a_moderator_of__room_name_": "Пользователь {{username}} больше не модератор в чате {{room_name}}", + "User__username__is_now_a_owner_of__room_name_": "Пользователь {{username}} больше не владелец в чате {{room_name}}", + "User__username__removed_from__room_name__leaders": "Пользователь {{username}} удален из {{room_name}} лидеров", + "User__username__removed_from__room_name__moderators": "Пользователь {{username}} удален из {{room_name}} модераторов", + "User__username__removed_from__room_name__owners": "Пользователь {{username}} удален из {{room_name}} владельцев", + "The_user_will_be_removed_from_s": "Пользователь будет удален из {{s}}", + "Yes_remove_user": "Да, удалить пользователя!", + "Direct_message": "Личное сообщение", + "Message_Ignored": "Сообщение игнорируется. Тапните по нему, чтобы отобразить его.", + "Enter_workspace_URL": "Введите URL вашего рабочего пространства", + "Workspace_URL_Example": "Например, your-company.rocket.chat", + "This_room_encryption_has_been_enabled_by__username_": "Шифрование для этого чата включено {{username}}", + "This_room_encryption_has_been_disabled_by__username_": "Шифрование для этого чата выключено {{username}}", + "Teams": "Команды", + "No_team_channels_found": "Каналы не найдены", + "Team_not_found": "Команда не найдена", + "Create_Team": "Создать Команду", + "Team_Name": "Имя Команды", + "Private_Team": "Приватная Команда", + "Read_Only_Team": "Команда только для чтения", + "Broadcast_Team": "Широковещательная Команда", + "creating_team": "создание Команды", + "team-name-already-exists": "Команда с таким названием уже существует", + "Add_Channel_to_Team": "Добавить канал в Команду", + "Left_The_Team_Successfully": "Успешно покинул команду", + "Create_New": "Создать", + "Add_Existing": "Добавить существующее", + "Add_Existing_Channel": "Добавить существующий канал", + "Remove_from_Team": "Удалить из Команды", + "Auto-join": "Автодобавление", + "Remove_Team_Room_Warning": "Хотите ли вы удалить этот канал из Команды? Канал будет перемещен обратно в рабочее пространство", + "Confirmation": "Подтверждение", + "invalid-room": "Такого канала не существует", + "You_are_leaving_the_team": "Вы покидаете Команду '{{team}}'", + "Leave_Team": "Покинуть команду", + "Select_Team": "Выберите Команду", + "Select_Team_Channels": "Выберите каналы Команды, которые вы хотите покинуть.", + "Cannot_leave": "Невозможно выйти", + "Cannot_remove": "Невозможно удалить", + "Cannot_delete": "Невозможно удалить", + "Last_owner_team_room": "Вы последний владелец этого чата. Как только вы покинете Команду, чат будет храниться внутри нее, но вы будете управлять ею снаружи.", + "last-owner-can-not-be-removed": "Последний владелец не может быть удален", + "Remove_User_Teams": "Выберите каналы, из которых вы хотите удалить пользователя.", + "Delete_Team": "Удалить Команду", + "Select_channels_to_delete": "Это нельзя отменить. После удаления Команды все содержимое чата и конфигурация будут удалены \n\nВыберите каналы, которые вы хотите удалить. Те, которые вы решите оставить, будут доступны в вашем рабочем пространстве. Обратите внимание, что публичные каналы по-прежнему будут открытыми и видимыми для всех.", + "You_are_deleting_the_team": "Вы удаляете эту Команду.", + "Removing_user_from_this_team": "Вы удаляете {{user}} из этой Команды", + "Remove_User_Team_Channels": "Выберите каналы, из которых вы хотите удалить пользователя.", + "Remove_Member": "Удалить участника", + "leaving_team": "выход из Команды", + "removing_team": "удаление из Команды", + "moving_channel_to_team": "перемещение канала в Команду", + "deleting_team": "удаление Команды", + "member-does-not-exist": "Участник не существует", + "Convert": "Конвертировать", + "Convert_to_Team": "Конвертировать в команду", + "Convert_to_Team_Warning": "Это нельзя отменить. После преобразования канала в Команду, вы не сможете преобразовать его обратно в канал.", + "Move_to_Team": "Перенести в команду", + "Move_Channel_Paragraph": "Перемещение канала внутрь Команды означает, что этот канал будет добавлен в контекст Команды, однако все участники канала, которые не являются членами соответствующей Команды, по-прежнему будут иметь доступ к этому каналу, но не будут добавлены как участники Команды \n\nВсе управление каналом по-прежнему будет осуществляться владельцами этого канала.\n\nЧлены Команды и даже владельцы Команды, если они не являются членами этого канала, не могут иметь доступ к содержимому канала \n\nОбратите внимание, что владелец Команды сможет удалять участников с канала.", + "Move_to_Team_Warning": "После прочтения предыдущих инструкций об этом поведении, вы все еще хотите переместить этот канал в выбранную Команду?", + "Load_More": "Загрузить еще", + "Load_Newer": "Загрузить более позднее", + "Load_Older": "Загрузить более раннее", + "Left_The_Room_Successfully": "Успешно покинул комнату", + "Deleted_The_Team_Successfully": "Команда успешно удалена", + "Deleted_The_Room_Successfully": "Комната успешно удалена", + "Convert_to_Channel": "Преобразовать в канал", + "Converting_Team_To_Channel": "Преобразование Команды в канал", + "Select_Team_Channels_To_Delete": "Выберите каналы Команды, которые вы хотите удалить, те, которые вы не выбрали, будут перемещены в рабочую область \n\nОбратите внимание, что публичные каналы будут открытыми и видимыми для всех.", + "You_are_converting_the_team": "Вы преобразуете эту Команду в канал" +} diff --git a/app/i18n/locales/tr.json b/app/i18n/locales/tr.json index bc58ee92b8..81a06449b7 100644 --- a/app/i18n/locales/tr.json +++ b/app/i18n/locales/tr.json @@ -1,702 +1,702 @@ { - "1_person_reacted": "1 kişi tepki verdi.", - "1_user": "1 kullanıcı", - "error-action-not-allowed": "{{action}}'a izin verilmiyor!", - "error-application-not-found": "Uygulama bulunamadı!", - "error-archived-duplicate-name": "{{room_name}} adında arşivlenmiş bir kanal var!", - "error-avatar-invalid-url": "Geçersiz avatar URL'si: {{url}}", - "error-avatar-url-handling": "{{username}} için bir URL'den ({{url}}) avatar ayarı işlenirken hata oluştu!", - "error-cant-invite-for-direct-room": "Kullanıcı özel odalara davet edilemedi!", - "error-could-not-change-email": "E-posta değiştirilemedi!", - "error-could-not-change-name": "İsim değiştirilemedi!", - "error-could-not-change-username": "Kullanıcı adı değiştirilemedi!", - "error-could-not-change-status": "Durum değiştirilemedi!", - "error-delete-protected-role": "Korunan bir rol silinemez!", - "error-department-not-found": "Bölüm bulunamadı!", - "error-direct-message-file-upload-not-allowed": "Özel iletilerde dosya paylaşımına izin verilmiyor!", - "error-duplicate-channel-name": "{{channel_name}} adında bir kanal var!", - "error-email-domain-blacklisted": "E-posta alan adı kara listeye alındı!", - "error-email-send-failed": "E-posta göndermeye çalışırken hata oluştu: {{message}}", - "error-save-image": "Görüntüyü kaydederken hata oluştu!", - "error-save-video": "Videoyu kaydederken hata oluştu!", - "error-field-unavailable": "{{field}} zaten kullanılıyor! :(", - "error-file-too-large": "Dosya çok büyük!", - "error-importer-not-defined": "İçe aktarıcı doğru tanımlanmadı, \"Import\" sınıfı eksik!", - "error-input-is-not-a-valid-field": "{{input}} geçerli bir {{field}} değil!", - "error-invalid-actionlink": "Geçersiz işlem bağlantısı!", - "error-invalid-arguments": "Geçersiz parametreler!", - "error-invalid-asset": "Geçersiz veri!", - "error-invalid-channel": "Geçersiz kanal.", - "error-invalid-channel-start-with-chars": "Geçersiz kanal! @ veya # ile başlayın.", - "error-invalid-custom-field": "Geçersiz özelleştirilmiş alan", - "error-invalid-custom-field-name": "Geçersiz özelleştirilmiş alan adı! Yalnızca harf, rakam, kısa çizgi ve alt çizgi kullanın.", - "error-invalid-date": "Geçersiz tarih!", - "error-invalid-description": "Geçersiz açıklama!", - "error-invalid-domain": "Geçersiz alan adı!", - "error-invalid-email": "Geçersiz e-posta {{email}}!", - "error-invalid-email-address": "Geçersiz e-posta adresi!", - "error-invalid-file-height": "Geçersiz fotoğraf yüksekliği!", - "error-invalid-file-type": "Geçersiz dosya türü!", - "error-invalid-file-width": "Geçersiz fotoğraf genişliği!", - "error-invalid-from-address": "Geçersiz bir KİMDEN adresi bildirdiniz!", - "error-invalid-integration": "Geçersiz entegrasyon", - "error-invalid-message": "Geçersiz ileti!", - "error-invalid-method": "Geçersiz metot!", - "error-invalid-name": "Geçersiz isim!", - "error-invalid-password": "Geçersiz şifre!", - "error-invalid-redirectUri": "Geçersiz yönlendirme bağlantısı!", - "error-invalid-role": "Geçersiz rol!", - "error-invalid-room": "Geçersiz oda!", - "error-invalid-room-name": "{{room_name}}, geçerli bir oda adı değil!", - "error-invalid-room-type": "{{type}}, geçerli bir oda türü değil!", - "error-invalid-settings": "Geçersiz ayar!", - "error-invalid-subscription": "Geçersiz başvuru!", - "error-invalid-token": "Geçersiz belirteç!", - "error-invalid-triggerWords": "Geçersiz tetikleyici parametreleri!", - "error-invalid-urls": "Geçersiz URL'ler!", - "error-invalid-user": "Geçersiz kullanıcı!", - "error-invalid-username": "Geçersiz kullanıcı adı!", - "error-invalid-webhook-response": "İstek URL'si 200'den farklı bir durumla yanıt verdi!", - "error-message-deleting-blocked": "İleti silme engellendi!", - "error-message-editing-blocked": "İleti düzenleme engellendi", - "error-message-size-exceeded": "İleti boyutu, Message_MaxAllowedSize değerini aşıyor", - "error-missing-unsubscribe-link": "[unsubscribe] bağlantısını belirtmelisiniz.", - "error-no-tokens-for-this-user": "Bu kullanıcı için belirteç (token) yok", - "error-not-allowed": "İzin verilmedi", - "error-not-authorized": "Yetkili değil", - "error-push-disabled": "Push devre dışı", - "error-remove-last-owner": "Lütfen bunu kaldırmadan önce yeni bir sahip belirleyin.", - "error-role-in-use": "Rol kullanımda olduğu için silinemiyor", - "error-role-name-required": "Rol adı gerekli", - "error-the-field-is-required": "{{field}} alanı gereklidir.", - "error-too-many-requests": "Hata, çok fazla istek. Lütfen yavaşla. Tekrar denemeden önce {{seconds}} saniye beklemelisiniz.", - "error-user-is-not-activated": "Kullanıcı etkinleştirilmedi!", - "error-user-has-no-roles": "Kullanıcıya tanımlı rol yok!", - "error-user-limit-exceeded": "#channel_name kanalına davet etmeye çalıştığınız kullanıcıların sayısı, yönetici tarafından belirlenen sınırı aşıyor!", - "error-user-not-in-room": "Kullanıcı bu odada değil!", - "error-user-registration-custom-field": "error-user-registration-custom-field", - "error-user-registration-disabled": "Kullanıcı kaydı devre dışı bırakıldı!", - "error-user-registration-secret": "Kullanıcı kaydına yalnızca Gizli URL aracılığıyla izin verilir!", - "error-you-are-last-owner": "Son sahibi sizsiniz. Lütfen odadan ayrılmadan önce yeni bir sahip belirleyin.", - "Actions": "İşlemler", - "activity": "etkinlik", - "Activity": "Etkinlik", - "Add_Reaction": "Tepki ekle", - "Add_Server": "Sunucu ekle", - "Add_users": "Kullanıcı ekle", - "Admin_Panel": "Yönetim Paneli", - "Agent": "Temsilci", - "Alert": "Uyarı", - "alert": "uyarı", - "alerts": "uyarılar", - "All_users_in_the_channel_can_write_new_messages": "Kanaldaki tüm kullanıcılar yeni ileti yazabilir!", - "A_meaningful_name_for_the_discussion_room": "Tartışma odası için anlamlı bir isim", - "All": "Tümü", - "All_Messages": "Tüm İletiler", - "Allow_Reactions": "Tüm Tepkiler", - "Alphabetical": "Alfabetik", - "and_more": "ve daha", - "and": "ve", - "announcement": "duyuru", - "Announcement": "Duyuru", - "Apply_Your_Certificate": "Sertifikanızı Onaylayın", - "ARCHIVE": "ARŞİVLE", - "archive": "arşivle", - "are_typing": "yazıyor", - "Are_you_sure_question_mark": "Emin misiniz?", - "Are_you_sure_you_want_to_leave_the_room": "{{room}} odasından ayrılmak istediğinizden emin misiniz?", - "Audio": "Ses", - "Authenticating": "Doğrulanıyor", - "Automatic": "Otomatik", - "Auto_Translate": "Otomatik Çevir", - "Avatar_changed_successfully": "Profil fotoğrafı başarıyla değiştirildi!", - "Avatar_Url": "Profil fotoğrafı URL'si", - "Away": "Uzakta", - "Back": "Geri", - "Black": "Koyu", - "Block_user": "Kullanıcıyı engelle", - "Browser": "Tarayıcı", - "Broadcast_channel_Description": "Yalnızca yetkili kullanıcılar yeni ileti yazabilir, ancak diğer kullanıcılar yanıt verebilir", - "Broadcast_Channel": "Kanala Yayınla", - "Busy": "Meşgul", - "By_proceeding_you_are_agreeing": "Devam ederek kabul ediyorsunuz: ", - "Cancel_editing": "Düzenlemeyi iptal et", - "Cancel_recording": "Kaydı iptal et", - "Cancel": "İptal et", - "changing_avatar": "profil fotoğrafı değiştirme", - "creating_channel": "kanal açılıyor", - "creating_invite": "davet üretiliyor", - "Channel_Name": "Kanal Adı", - "Channels": "Kanallar", - "Chats": "Sohbetler", - "Call_already_ended": "Çağrı sona erdi!", - "Clear_cookies_alert": "Tüm çerezleri temizlemek istiyor musunuz?", - "Clear_cookies_desc": "Bu işlem, tüm oturum açma çerezlerini temizleyerek diğer hesaplara giriş yapmanıza olanak tanır.", - "Clear_cookies_yes": "Evet, çerezleri temizle", - "Clear_cookies_no": "Hayır, çerezleri koru", - "Click_to_join": "Katılmak için tıklayın!", - "Close": "Kapat", - "Close_emoji_selector": "Emoji seçiciyi kapat", - "Closing_chat": "Sohbet kapatılıyor", - "Change_language_loading": "Dil değiştiriliyor", - "Chat_closed_by_agent": "Sohbet temsilci tarafından kapatıldı", - "Choose": "Seç", - "Choose_from_library": "Kütüphaneden seç", - "Choose_file": "Dosya seç", - "Choose_where_you_want_links_be_opened": "Bağlantıların açılmasını istediğiniz yeri seçin", - "Code": "Kod", - "Code_or_password_invalid": "Kod veya şifre geçersiz", - "Collaborative": "İşbirlikçi", - "Confirm": "Onayla", - "Connect": "Bağlan", - "Connected": "Bağlandı", - "connecting_server": "sunucuya bağlanıyor", - "Connecting": "Bağlanıyor...", - "Contact_us": "Bize ulaşın", - "Contact_your_server_admin": "Sunucu yöneticisiyle iletişime geçin.", - "Continue_with": "Devam et:", - "Copied_to_clipboard": "Panoya kopyalandı!", - "Copy": "Kopyala", - "Conversation": "Sohbet", - "Permalink": "Kalıcı bağlantı", - "Certificate_password": "Sertifika Şifresi", - "Clear_cache": "Yerel sunucu önbelleğini temizleyin", - "Clear_cache_loading": "Önbellek temizleniyor.", - "Whats_the_password_for_your_certificate": "Sertifikanızın şifresi nedir?", - "Create_account": "Hesap oluştur", - "Create_Channel": "Kanal Oluştur", - "Create_Direct_Messages": "Özel İleti Oluştur", - "Create_Discussion": "Tartışma Oluştur", - "Created_snippet": "kalıp oluşturdu", - "Create_a_new_workspace": "Çalışma alanı oluştur", - "Create": "Oluştur", - "Custom_Status": "Özelleştirilmiş durum", - "Dark": "Karanlık", - "Dark_level": "Karanlık Seviyesi", - "Default": "Varsayılan", - "Default_browser": "Varsayılan tarayıcı", - "Delete_Room_Warning": "Bir odanın silinmesi, oda içinde yayınlanan tüm iletileri silecektir. Bu geri alınamaz.", - "Department": "Bölüm", - "delete": "sil", - "Delete": "Sil", - "DELETE": "SİL", - "deleting_room": "oda siliniyor", - "description": "açıklama", - "Description": "Açıklama", - "Desktop_Options": "Masaüstü Seçenekleri", - "Desktop_Notifications": "Masaüstü Bildirimleri", - "Desktop_Alert_info": "Bu bildirimler masaüstünde teslim edilir", - "Directory": "Dizin", - "Direct_Messages": "Özel İletiler", - "Disable_notifications": "Bildirimleri devre dışı bırak", - "Discussions": "Tartışmalar", - "Discussion_Desc": "Neler olup bittiğini gözden geçirmeye yardımcı olun! Bir tartışma oluşturarak, seçtiğinizin bir alt kanalı oluşturulur ve her ikisi de bağlanır.", - "Discussion_name": "Tartışma adı", - "Done": "Tamamlandı", - "Dont_Have_An_Account": "Hesabın yok mu?", - "Do_you_have_an_account": "Hesabın var mı?", - "Do_you_have_a_certificate": "Sertifikanız var mı?", - "Do_you_really_want_to_key_this_room_question_mark": "Bu odayı gerçekten {{key}} istiyor musun?", - "E2E_Encryption": "Uçtan Uca Şifreleme (E2E)", - "E2E_How_It_Works_info1": "Artık şifrelenmiş özel gruplar ve doğrudan iletiler oluşturabilirsiniz. Mevcut özel grupları veya özel iletileri şifreli olarak da değiştirebilirsiniz.", - "E2E_How_It_Works_info2": "Bu, *Uçtan Uca Şifreleme'dir (E2E)*, böylece iletilerinizi şifrelemek / çözmek için anahtar ve bunlar sunucuya kaydedilmez. Bu nedenle *bu şifreyi daha sonra ihtiyaç duyduğunuzda erişebileceğiniz güvenli bir yerde* saklamanız gerekir.", - "E2E_How_It_Works_info3": "Devam ederseniz, otomatik olarak bir Uçtan Uca Şifreleme (E2E) şifresi oluşturulacaktır.", - "E2E_How_It_Works_info4": "Mevcut Uçtan Uca Şifreleme (E2E) şifresini, herhangi bir tarayıcıdan istediğiniz zaman girdiğiniz şifreleme anahtarınız için yeni bir şifre de ayarlayabilirsiniz.", - "edit": "düzenle", - "edited": "düzenlendi", - "Edit": "Düzenle", - "Edit_Status": "Durumu Düzenle", - "Edit_Invite": "Daveti Düzenle", - "End_to_end_encrypted_room": "Uçtan uca şifreli oda", - "end_to_end_encryption": "uçtan uca şifreleme", - "Email_Notification_Mode_All": "Tüm Bahsetmeler/Özel İletiler", - "Email_Notification_Mode_Disabled": "Devre Dışı", - "Email_or_password_field_is_empty": "E-posta veya şifre alanı boş", - "Email": "E-posta", - "email": "e-posta", - "Empty_title": "Boş başlık", - "Enable_Auto_Translate": "Otomatik Çeviriyi Etkinleştir", - "Enable_notifications": "Bildirimleri etkinleştir", - "Encrypted": "Şifreli", - "Encrypted_message": "Şifreli ileti", - "Enter_Your_E2E_Password": "Uçtan Uca Şifreleme (E2E) Şifrenizi Girin", - "Enter_Your_Encryption_Password_desc1": "Bu, şifrelenmiş özel gruplarınıza ve doğrudan iletilerinize erişmenize izin verecektir.", - "Enter_Your_Encryption_Password_desc2": "Sohbeti kullandığınız her yerde iletileri şifrelemek / çözmek için şifre girmeniz gerekir.", - "Encryption_error_title": "Şifreleme şifreniz yanlış görünüyor", - "Encryption_error_desc": "İçe aktarılacak şifreleme anahtarınızın kodu çözülemedi.", - "Everyone_can_access_this_channel": "Bu kanala herkes erişebilir", - "Error_uploading": "Yükleme hatası", - "Expiration_Days": "Geçerlilik Süresi (Gün)", - "Favorite": "Favori", - "Favorites": "Favoriler", - "Files": "Dosyalar", - "File_description": "Dosya açıklaması", - "File_name": "Dosya adı", - "Finish_recording": "Kaydı bitir", - "Following_thread": "Konu takip ediliyor", - "For_your_security_you_must_enter_your_current_password_to_continue": "Güvenliğiniz için, devam etmek için mevcut şifrenizi girmelisiniz", - "Forgot_password_If_this_email_is_registered": "Bu e-posta kayıtlıysa, şifrenizi nasıl sıfırlayacağınıza dair talimatlar göndereceğiz. Kısa süre içinde bir e-posta almazsanız, lütfen geri gelin ve tekrar deneyin.", - "Forgot_password": "Parolanızı mı unuttunuz?", - "Forgot_Password": "Parolamı Unuttum", - "Forward": "İlet", - "Forward_Chat": "Sohbete İlet", - "Forward_to_department": "Bölüme İlet", - "Forward_to_user": "Kullanıcıya İlet", - "Full_table": "Tam tabloyu görmek için tıklayın", - "Generate_New_Link": "Yeni Bağlantı Oluştur", - "Group_by_favorites": "Favorilere göre grupla", - "Group_by_type": "Türe göre grupla", - "Hide": "Gizle", - "Has_joined_the_channel": "kanala katıldı", - "Has_joined_the_conversation": "sohbete katıldı", - "Has_left_the_channel": "kanaldan ayrıldı", - "Hide_System_Messages": "Sistem İletilerını Gizle", - "Hide_type_messages": "\"{{type}}\" iletilerini gizle", - "How_It_Works": "Nasıl Çalışır", - "Message_HideType_uj": "Kullanıcı Katıldı", - "Message_HideType_ul": "Kullanıcı Ayrıldı", - "Message_HideType_ru": "Kullanıcı Kaldırıldı", - "Message_HideType_au": "Kullanıcı Eklendi", - "Message_HideType_mute_unmute": "Kullanıcı Sesi Kapatıldı / Sesi Açıldı", - "Message_HideType_r": "Oda Adı Değiştirildi", - "Message_HideType_ut": "Kullanıcı Sohbete Katıldı", - "Message_HideType_wm": "Hoşgeldiniz", - "Message_HideType_rm": "İleti Kaldırıldı", - "Message_HideType_subscription_role_added": "Rol Belirlendi", - "Message_HideType_subscription_role_removed": "Artık Kullanılmayan Rol", - "Message_HideType_room_archived": "Oda Arşivlendi", - "Message_HideType_room_unarchived": "Oda Arşivden Çıkarıldı", - "I_Saved_My_E2E_Password": "Uçtan Uca Şifreleme (E2E) Şifremi Kaydettim", - "IP": "IP", - "In_app": "Uygulama İçi", - "In_App_And_Desktop": "Uygulama İçi ve Masaüstü", - "In_App_and_Desktop_Alert_info": "Uygulama açıkken ekranın üst kısmında bir başlık görüntüler ve masaüstünde bir bildirim görüntüler", - "Invisible": "Görünmez", - "Invite": "Davet Et", - "is_a_valid_RocketChat_instance": "geçerli bir Rocket.Chat örneği", - "is_not_a_valid_RocketChat_instance": "geçerli bir Rocket.Chat örneği değil", - "is_typing": "yazıyor", - "Invalid_or_expired_invite_token": "Geçersiz veya süresi dolmuş davet belirteci (token)", - "Invalid_server_version": "Bağlanmaya çalıştığınız sunucu artık uygulama tarafından desteklenmeyen bir sürüm kullanıyor: {{currentVersion}}.\n\n{{minVersion}} sürümüne ihtiyacımız var", - "Invite_Link": "Davet Bağlantısı", - "Invite_users": "Kullanıcıları davet et", - "Join": "Katıl", - "Join_Code": "Katılım Kodu", - "Insert_Join_Code": "Katılım Kodu Girin", - "Join_our_open_workspace": "Açık çalışma alanımıza katılın", - "Join_your_workspace": "Çalışma alanınıza katılın", - "Just_invited_people_can_access_this_channel": "Yalnızca davet edilen kişiler bu kanala erişebilir", - "Language": "Dil", - "last_message": "son ileti", - "Leave_channel": "Kanaldan ayrıl", - "leaving_room": "odadan ayrılıyor", - "Leave": "Odadan ayrıl", - "leave": "ayrıl", - "Legal": "Yasal", - "Light": "Açık", - "License": "Lisans", - "Livechat": "Canlı Sohbet", - "Livechat_edit": "Canlı sohbeti düzenle", - "Login": "Oturum aç", - "Login_error": "Kimlik bilgileriniz reddedildi! Lütfen tekrar deneyin.", - "Login_with": "ile giriş", - "Logging_out": "Çıkış Yapılıyor", - "Logout": "Çıkış Yap", - "Max_number_of_uses": "Maksimum kullanım sayısı", - "Max_number_of_users_allowed_is_number": "İzin verilen maksimum kullanıcı sayısı {{maxUsers}}", - "members": "üyeler", - "Members": "Üyeler", - "Mentioned_Messages": "Bahsedilen İletiler", - "mentioned": "bahsedildi", - "Mentions": "Bahsetmeler", - "Message_accessibility": "{{user}} tarafından {{time}} itibarıyla ileti: {{message}}", - "Message_actions": "İleti işlemleri", - "Message_pinned": "İleti sabitlendi", - "Message_removed": "İleti kaldırıldı", - "Message_starred": "İletia yıldız eklendi", - "Message_unstarred": "İletiın yıldızı kaldırıldı", - "message": "ileti", - "messages": "iletiler", - "Message": "İleti", - "Messages": "İletiler", - "Message_Reported": "İleti bildirildi", - "Microphone_Permission_Message": "Rocket.Chat'in mikrofonunuza erişmesi gerekiyor, böylece sesli ileti gönderebilirsiniz.", - "Microphone_Permission": "Mikrofon İzni", - "Mute": "Sessize Al", - "muted": "sessize alındı", - "My_servers": "Sunucularım", - "N_people_reacted": "{{n}} kişi tepki verdi", - "N_users": "{{n}} kullanıcı", - "name": "isim", - "Name": "İsim", - "Navigation_history": "Gezinti geçmişi", - "Never": "Asla", - "New_Message": "Yeni İleti", - "New_Password": "Yeni Şifre", - "New_Server": "Yeni Sunucu", - "Next": "Sonraki", - "No_files": "Dosya yok", - "No_limit": "Limit yok", - "No_mentioned_messages": "Belirtilen ileti yok", - "No_pinned_messages": "Sabitlenmiş ileti yok", - "No_results_found": "Sonuç bulunamadı", - "No_starred_messages": "Yıldızlı ileti yok", - "No_thread_messages": "Konu iletisi yok", - "No_label_provided": "Hiç {{label}} sağlanmadı.", - "No_Message": "İleti Yok", - "No_messages_yet": "Şu ana kadar ileti yok", - "No_Reactions": "Tepki Yok", - "No_Read_Receipts": "Okundu Bilgisi Yok", - "Not_logged": "Kayıtlı değil", - "Not_RC_Server": "Bu bir Rocket.Chat sunucusu değil.\n{{contact}}", - "Nothing": "Hiçbir Şey", - "Nothing_to_save": "Kaydedilecek bir şey yok!", - "Notify_active_in_this_room": "Bu odadaki çevrimiçi kullanıcıları bilgilendir", - "Notify_all_in_this_room": "Bu odadaki herkesi bilgilendir", - "Notifications": "Bildirimler", - "Notification_Duration": "Bildirim Süresi", - "Notification_Preferences": "Bildirim Tercihleri", - "No_available_agents_to_transfer": "Aktarılacak yemsilci yok", - "Offline": "Çevrimdışı", - "Oops": "Ahh!", - "Omnichannel": "Çoklu Kanal", - "Open_Livechats": "Devam Eden Sohbetler", - "Omnichannel_enable_alert": "Çoklu Kanal'da mevcut değilsiniz. Erişilebilir olmak ister misiniz?", - "Onboarding_description": "Çalışma alanı, ekibinizin veya kuruluşunuzun işbirliği alanıdır. Çalışma alanı yöneticisinden bir ekibe katılmak veya bir ekip oluşturmak için yardım isteyin.", - "Onboarding_join_workspace": "Bir çalışma alanına katılın", - "Onboarding_subtitle": "Ekip İşbirliğinin Ötesinde", - "Onboarding_title": "Rocket.Chat'e hoş geldiniz", - "Onboarding_join_open_description": "Rocket.Chat ekibi ve topluluğu ile sohbet etmek için açık çalışma alanımıza katılın.", - "Onboarding_agree_terms": "Devam ederek Rocket.Chat'i kabul etmiş olursunuz", - "Onboarding_less_options": "Daha az seçenek", - "Onboarding_more_options": "Daha çok seçenek", - "Online": "Çevrimiçi", - "Only_authorized_users_can_write_new_messages": "Yalnızca yetkili kullanıcılar yeni ileti yazabilir", - "Open_emoji_selector": "Emoji seçiciyi aç", - "Open_Source_Communication": "Açık Kaynak İletişim", - "Open_your_authentication_app_and_enter_the_code": "Kimlik doğrulama uygulamanızı açın ve kodu girin.", - "OR": "OR", - "OS": "OS", - "Overwrites_the_server_configuration_and_use_room_config": "Sunucu yapılandırmasının üzerine yazar ve oda yapılandırmasını kullanır", - "Password": "Şifre", - "Parent_channel_or_group": "Üst kanal veya grup", - "Permalink_copied_to_clipboard": "Kalıcı bağlantı panoya kopyalandı!", - "Phone": "Telefon", - "Pin": "Sabitle", - "Pinned_Messages": "Sabitlenen İletiler", - "pinned": "sabitlendi", - "Pinned": "Sabitlendi", - "Please_add_a_comment": "Lütfen bir yorum ekleyin", - "Please_enter_your_password": "Lütfen şifrenizi giriniz", - "Please_wait": "Lütfen bekle.", - "Preferences": "Tercihler", - "Preferences_saved": "Tercihler kaydedildi!", - "Privacy_Policy": " Privacy Policy", - "Private_Channel": "Özel Kanal", - "Private": "Özel", - "Processing": "İşleniyor...", - "Profile_saved_successfully": "Profil başarıyla kaydedildi!", - "Profile": "Profil", - "Public_Channel": "Herkese Açık Kanal", - "Public": "Herkese Açık", - "Push_Notifications": "Anlık Bildirimler", - "Push_Notifications_Alert_Info": "Bu bildirimler, uygulama açık olmadığında size teslim edilir", - "Quote": "Alıntı", - "Reactions_are_disabled": "Tepkiler devre dışı bırakıldı", - "Reactions_are_enabled": "Tepkiler etkinleştirildi", - "Reactions": "Tepkiler", - "Read": "Oku", - "Read_External_Permission_Message": "Rocket.Chat'in cihazınızdaki fotoğraflara, medyaya ve dosyalara erişmesi gerekiyor", - "Read_External_Permission": "Medya Okuma İzni ", - "Read_Only_Channel": "Yazma Kısıtlı Kanal", - "Read_Only": "Yazma Kısıtlı", - "Read_Receipt": "Okundu Bilgisi", - "Receive_Group_Mentions": "Grup Bahsetmelerini Al", - "Receive_Group_Mentions_Info": "Grup bahsetmelerini al", - "Register": "Kayıt Ol", - "Repeat_Password": "Şifre Tekrarı", - "Replied_on": "Yanıtlandı:", - "replies": "yanıtlar", - "reply": "yanıtla", - "Reply": "Yanıtla", - "Report": "Bildir", - "Receive_Notification": "Bildirim Al", - "Receive_notifications_from": "{{name}} bildirimlerini alın", - "Resend": "Yeniden yolla", - "Reset_password": "Şifre sıfırla", - "resetting_password": "şifre sıfırlanıyor", - "RESET": "SIFIRLA", - "Return": "Geri dön", - "Review_app_title": "Uygulama hoşunuza gitti mi?", - "Review_app_desc": "{{store}} üzerinde bize 5 yıldız verin", - "Review_app_yes": "Elbette!", - "Review_app_no": "Hayır", - "Review_app_later": "Belki daha sonra", - "Review_app_unable_store": "{{store}} açılamıyor!", - "Review_this_app": "Bu uygulamayı değerlendirin", - "Remove": "Kaldır", - "Roles": "Roller", - "Room_actions": "Oda işlemleri", - "Room_changed_announcement": "Oda duyurusu, {{userBy}} tarafından {{announcement}} olarak değiştirildi", - "Room_changed_avatar": "Oda profil fotoğrafı {{userBy}} tarafından değiştirildi", - "Room_changed_description": "Oda açıklaması, {{userBy}} tarafından {{description}} olarak değiştirildi", - "Room_changed_topic": "Oda konusu, {{userBy}} tarafından {{topic}} olarak değiştirildi", - "Room_Files": "Oda Dosyaları", - "Room_Info_Edit": "Oda Bilgilerini Düzenle", - "Room_Info": "Oda Bilgisi", - "Room_Members": "Oda Üyeleri", - "Room_name_changed": "Oda adı, {{userBy}} tarafından {{name}} olarak değiştirildi", - "SAVE": "KAYDET", - "Save_Changes": "Değişiklikleri Kaydet", - "Save": "Kaydet", - "Saved": "Kaydedildi", - "saving_preferences": "tercihler kaydediliyor", - "saving_profile": "profil kaydediliyor", - "saving_settings": "ayarlar kaydediliyor", - "saved_to_gallery": "Galeriye kaydedildi", - "Save_Your_E2E_Password": "(E2E) Şifrenizi Kaydedin", - "Save_Your_Encryption_Password": "Şifreleme Parolanızı Kaydedin", - "Save_Your_Encryption_Password_warning": "Bu parola hiçbir yerde saklanmadığından başka bir yere dikkatlice kaydedin.", - "Save_Your_Encryption_Password_info": "Parolanızı kaybettiğinizde, kurtarmanın bir yolu olmadığını ve iletilerinize erişiminizi kaybedeceğinizi unutmayın.", - "Search_Messages": "İleti ara", - "Search": "Ara", - "Search_by": "Ara", - "Search_global_users": "Global kullanıcıları ara", - "Search_global_users_description": "Açarsanız, diğer şirketlerden veya sunuculardan herhangi bir kullanıcıyı arayabilirsiniz.", - "Seconds": "{{second}} saniye", - "Security_and_privacy": "Güvenlik ve gizlilik", - "Select_Avatar": "Profil resmi seç", - "Select_Server": "Sunucu seç", - "Select_Users": "Kullanıcıları seç", - "Select_a_Channel": "Kanal Seç", - "Select_a_Department": "Bölüm Seç", - "Select_an_option": "Bir seçenek seçin", - "Select_a_User": "Kullanıcı Seç", - "Send": "Yolla", - "Send_audio_message": "Sesli ileti gönder", - "Send_crash_report": "Çökme raporu gönder", - "Send_message": "İleti gönder", - "Send_me_the_code_again": "Kodu tekrar gönder", - "Send_to": "Gönderiliyor...", - "Sending_to": "Gönderiliyor:", - "Sent_an_attachment": "Bir ek gönderildi", - "Server": "Sunucu", - "Servers": "Sunucular", - "Server_version": "Sunucu versiyonu: {{version}}", - "Set_username_subtitle": "Kullanıcı adı başkalarının iletilerde sizden bahsetmesine izin vermek için kullanılır", - "Set_custom_status": "Özelleştirilmiş durumu ayarlayın", - "Set_status": "Durumu ayarla", - "Status_saved_successfully": "Durum başarıyla kaydedildi!", - "Settings": "Ayarlar", - "Settings_succesfully_changed": "Ayarlar başarıyla değiştirildi!", - "Share": "Paylaş", - "Share_Link": "Bağlantı paylaş", - "Share_this_app": "Bu uygulamayı paylaş", - "Show_more": "Daha fazla göster..", - "Show_Unread_Counter": "Okunmamış Sayacını Göster", - "Show_Unread_Counter_Info": "Okunmamış sayacı, listede kanalın sağ tarafında bir rozet olarak görüntülenir", - "Sign_in_your_server": "Sunucunuzda oturum açın", - "Sign_Up": "Kaydol", - "Some_field_is_invalid_or_empty": "Bazı alanlar geçersiz veya boş", - "Sorting_by": "{{key}} göre sıralanıyor", - "Sound": "Ses", - "Star_room": "Odayı Yıldızla", - "Star": "Yıldızla", - "Starred_Messages": "Yıldızlı İletiler", - "starred": "yıldızlandı", - "Starred": "Yıldızlandı", - "Start_of_conversation": "Konuşma başlangıcı", - "Start_a_Discussion": "Tartışma Başlat", - "Started_discussion": "Bir tartışma başlattı:", - "Started_call": "Arama {{userBy}} tarafından başlatıldı", - "Submit": "Kaydet", - "Table": "Tablo", - "Tags": "Etiketler", - "Take_a_photo": "Fotoğraf çek", - "Take_a_video": "Video çek", - "Take_it": "Al!", - "tap_to_change_status": "durumu değiştirmek için dokunun", - "Tap_to_view_servers_list": "Sunucu listesini görüntülemek için dokunun", - "Terms_of_Service": " Kullanım Şartları ", - "Theme": "Tema", - "The_user_wont_be_able_to_type_in_roomName": "Kullanıcı {{roomName}} içinde yazamayacak", - "The_user_will_be_able_to_type_in_roomName": "Kullanıcı {{roomName}} içinde yazabilecek", - "There_was_an_error_while_action": "{{action}} sırasında bir hata oluştu!", - "This_room_is_blocked": "Bu oda engellendi", - "This_room_is_read_only": "Bu oda yazma kısıtlı", - "Thread": "Başlık", - "Threads": "Başlıklar", - "Timezone": "Saat dilimi", - "To": "Kime", - "topic": "konu", - "Topic": "Konu", - "Translate": "Çevir", - "Try_again": "Tekrar deneyin", - "Two_Factor_Authentication": "İki faktörlü Kimlik Doğrulama", - "Type_the_channel_name_here": "Kanal adını buraya yazın", - "unarchive": "arşivden çıkar", - "UNARCHIVE": "ARŞİVDEN ÇIKAR", - "Unblock_user": "Kullanıcının engelini kaldır", - "Unfavorite": "Favorilerden Çıkar", - "Unfollowed_thread": "Takip edilmeyen başlık", - "Unmute": "Sesi Aç", - "unmuted": "Sesi Açıldı", - "Unpin": "Sabitlemeyi kaldır", - "unread_messages": "okunmamış", - "Unread": "Okunmamış", - "Unread_on_top": "Okunmamışlar üstte", - "Unstar": "Yıldızı kaldır", - "Updating": "Güncelleniyor...", - "Uploading": "Gönderiliyor", - "Upload_file_question_mark": "Dosya gönderilsin mi?", - "User": "Kullanıcı", - "Users": "Kullanıcılar", - "User_added_by": "{{userAdded}} adlı kullanıcı {{userBy}} tarafından eklendi", - "User_Info": "Kullanıcı bilgisi", - "User_has_been_key": "Kullanıcı {{key}} olmuştur", - "User_is_no_longer_role_by_": "{{user}} artık {{role}} değil ({{userBy}} tarafından)", - "User_muted_by": "{{userMuted}} adlı kullanıcının sesini {{userBy}} kapattı", - "User_removed_by": "{{userRemoved}} kullanıcısı {{userBy}} tarafından kaldırıldı", - "User_sent_an_attachment": "{{user}} bir ek gönderdi", - "User_unmuted_by": "{{userUnmuted}} kullanıcısının sesi {{userBy}} tarafından açıldı", - "User_was_set_role_by_": "{{user}}, {{userBy}} tarafından {{role}} ayarlandı", - "Username_is_empty": "Kullanıcı adı boş!", - "Username": "Kullanıcı adı", - "Username_or_email": "Kullanıcı adı ya da e-posta", - "Uses_server_configuration": "Sunucu yapılandırmasını kullanır", - "Validating": "Doğrulanıyor", - "Registration_Succeeded": "Kayıt Başarılı!", - "Verify": "Onayla", - "Verify_email_title": "Kaydınızı onaylayın!", - "Verify_email_desc": "Kaydınızı onaylamak için size bir e-posta gönderdik. Kısa süre içinde bir e-posta almazsanız, lütfen geri gelin ve tekrar deneyin.", - "Verify_your_email_for_the_code_we_sent": "Gönderdiğimiz kod için e-postanızı doğrulayın", - "Video_call": "Görüntülü arama", - "View_Original": "Orijinali Görüntüle", - "Voice_call": "Sesli arama", - "Waiting_for_network": "Ağ bağlantısı bekleniyor ...", - "Websocket_disabled": "Bu sunucu için Websocket devre dışı bırakıldı.\n{{contact}}", - "Welcome": "Hoşgeldiniz", - "What_are_you_doing_right_now": "Şu an ne yapıyorsun?", - "Whats_your_2fa": "2 faktör doğrulama (2FA) kodunuz nedir?", - "Without_Servers": "Sunucusuz", - "Workspaces": "Çalışma alanları", - "Would_you_like_to_return_the_inquiry": "Başvuruyu geri çevirmek ister misiniz?", - "Write_External_Permission_Message": "Rocket.Chat'in galerinize erişmesi gerekiyor, böylece resimleri kaydedebilirsiniz.", - "Write_External_Permission": "Galeri İzni", - "Yes": "Evet", - "Yes_action_it": "Evet, {{action}}!", - "Yesterday": "Dün", - "You_are_in_preview_mode": "İzleme modundasınız", - "You_are_offline": "Çevrimdışısınız", - "You_can_search_using_RegExp_eg": "Düzenli ifadeleri (Regular Expressions) kullanabilirsiniz. Örneğin: `/^text$/i`", - "You_colon": "Siz: ", - "you_were_mentioned": "senden bahsedildi", - "You_were_removed_from_channel": "{{channel}} kanalından çıkarıldınız", - "you": "siz", - "You": "Siz", - "Logged_out_by_server": "Sunucu tarafından çıkış yaptınız. Lütfen tekrar giriş yapın.", - "You_need_to_access_at_least_one_RocketChat_server_to_share_something": "Bir şeyler paylaşmak için Rocket.Chat sunucusuna erişmeniz gerekir.", - "You_need_to_verifiy_your_email_address_to_get_notications": "Bildirim almak için e-posta adresinizi doğrulamanız gerekiyor", - "Your_certificate": "Sertifikanız", - "Your_invite_link_will_expire_after__usesLeft__uses": "Davet bağlantınızın geçerliliği {{usesLeft}} kullanımdan sonra sona erecek.", - "Your_invite_link_will_expire_on__date__or_after__usesLeft__uses": "Davet bağlantınızın geçerliliği {{date}} tarihinde veya {{usesLeft}} kullanımdan sonra sona erecek.", - "Your_invite_link_will_expire_on__date__": "Davet bağlantınızın geçerlilik süresi {{date}} tarihinde sona erecek.", - "Your_invite_link_will_never_expire": "Davet bağlantınızın geçerlilik süresi asla dolmayacak.", - "Your_workspace": "Çalışma alanınız", - "Your_password_is": "Şifreniz", - "Version_no": "Versiyon: {{version}}", - "You_will_not_be_able_to_recover_this_message": "Bu iletiyi kurtaramayacaksınız!", - "You_will_unset_a_certificate_for_this_server": "Bu sunucu için bir sertifika ayarını kaldıracaksınız", - "Change_Language": "Dili değiştir", - "Crash_report_disclaimer": "Sohbetlerinizin içeriğini asla takip etmiyoruz. Çökme raporu ve analiz olayları, sorunları tanımlamak ve düzeltmek için yalnızca bizim için ilgili bilgileri içerir.", - "Type_message": "İleti yaz", - "Room_search": "Oda arama", - "Room_selection": "Oda seçimi 1...9", - "Next_room": "Sonraki oda", - "Previous_room": "Önceki oda", - "New_room": "Yeni oda", - "Upload_room": "Odaya yükle", - "Search_messages": "İletilerda ara", - "Scroll_messages": "İletilerı kaydır", - "Reply_latest": "Sonuncuyu yanıtla", - "Reply_in_Thread": "Konu içinde cevapla", - "Server_selection": "Sunucu seçimi", - "Server_selection_numbers": "Sunucu seçimi 1...9", - "Add_server": "Sunucu ekle", - "New_line": "Yeni satır", - "You_will_be_logged_out_of_this_application": "Bu uygulamadan çıkış yapacaksınız.", - "Clear": "Temizle", - "This_will_clear_all_your_offline_data": "Bu, tüm çevrimdışı verilerinizi temizleyecektir.", - "This_will_remove_all_data_from_this_server": "Bu, bu sunucudaki tüm verileri kaldıracaktır.", - "Mark_unread": "Okunmadı olarak işaretle", - "Wait_activation_warning": "Giriş yapmadan önce, hesabınız bir yönetici tarafından manuel olarak etkinleştirilmelidir.", - "Screen_lock": "Ekran kilidi", - "Local_authentication_biometry_title": "Doğrula", - "Local_authentication_biometry_fallback": "Parola kullan", - "Local_authentication_unlock_option": "Şifre ile Kilidi Açın", - "Local_authentication_change_passcode": "Parolayı Değiştir", - "Local_authentication_info": "Not: Parolayı unutursanız, uygulamayı silmeniz ve yeniden yüklemeniz gerekir.", - "Local_authentication_facial_recognition": "yüz tanıma", - "Local_authentication_fingerprint": "parmak izi", - "Local_authentication_unlock_with_label": "{{label}} ile kilidi açın", - "Local_authentication_auto_lock_60": "1 dakika sonra", - "Local_authentication_auto_lock_300": "5 dakika sonra", - "Local_authentication_auto_lock_900": "15 dakika sonra", - "Local_authentication_auto_lock_1800": "30 dakika sonra", - "Local_authentication_auto_lock_3600": "1 saat sonra", - "Passcode_enter_title": "Şifrenizi giriniz", - "Passcode_choose_title": "Yeni şifrenizi yazın", - "Passcode_choose_confirm_title": "Yeni şifrenizi onaylayın", - "Passcode_choose_error": "Parolalar eşleşmiyor. Tekrar deneyin.", - "Passcode_choose_force_set": "Yönetici tarafından istenen şifre", - "Passcode_app_locked_title": "Uygulama kilitlendi", - "Passcode_app_locked_subtitle": "{{timeLeft}} saniye içinde tekrar deneyin", - "After_seconds_set_by_admin": "{{seconds}} saniye sonra (yönetici tarafından belirlenir)", - "Dont_activate": "Şimdi etkinleştirme", - "Queued_chats": "Sıralı sohbetler", - "Queue_is_empty": "Sıra boş", - "Logout_from_other_logged_in_locations": "Giriş yapılan diğer konumlardan çıkış yap", - "You_will_be_logged_out_from_other_locations": "Diğer konumlardan çıkış yapacaksınız.", - "Logged_out_of_other_clients_successfully": "Diğer istemcilerden başarıyla çıkış yapıldı", - "Logout_failed": "Oturum kapatma başarısız oldu!", - "Log_analytics_events": "Olayları günlüğe kaydet", - "E2E_encryption_change_password_title": "Şifreleme Parolasını Değiştir", - "E2E_encryption_change_password_description": "Artık şifrelenmiş özel gruplar ve doğrudan iletiler oluşturabilirsiniz. Mevcut özel grupları veya özel iletileri şifreli olarak da değiştirebilirsiniz. \nBu uçtan uca şifrelemedir, bu nedenle iletilerinizi şifrelemek / çözmek için kullanılan anahtar sunucuya kaydedilmez. Bu nedenle şifrenizi güvenli bir yerde saklamanız gerekir. Uçtan uca şifrelemeyi (E2E) kullanmak istediğiniz diğer cihazlara girmeniz istenecektir.", - "E2E_encryption_change_password_error": "Uçtan uca şifreleme (E2E) anahtar şifresi değiştirilirken hata!", - "E2E_encryption_change_password_success": "Uçtan uca şifreleme (E2E) anahtar şifresi başarıyla değiştirildi!", - "E2E_encryption_change_password_message": "Dikkatlice kaydettiğinizden emin olun.", - "E2E_encryption_change_password_confirmation": "Evet, değiştir!", - "E2E_encryption_reset_title": "Uçtan uca şifreleme (E2E) Anahtarını Sıfırla", - "E2E_encryption_reset_description": "Bu seçenek mevcut uçtan uca şifreleme (E2E) anahtarınızı kaldıracak ve oturumu kapatacaktır. \nTekrar oturum açtığınızda, Rocket.Chat size yeni bir anahtar oluşturacak ve çevrimiçi olarak bir veya daha fazla üyesi olan şifreli herhangi bir odaya erişiminizi geri yükleyecektir. \nUçtan uca şifrelemenin (E2E) doğası gereği Rocket.Chat, çevrimiçi üyesi olmayan hiçbir şifreli odaya erişimi geri yükleyemez.", - "E2E_encryption_reset_button": "Uçtan uca şifreleme (E2E) anahtarını sıfırla", - "E2E_encryption_reset_error": "Uçtan uca şifreleme (E2E) anahtarı sıfırlanırken hata!", - "E2E_encryption_reset_message": "Oturumunuz kapatılacak!", - "E2E_encryption_reset_confirmation": "Evet, sıfırla", - "Following": "Takip ediliyor", - "Threads_displaying_all": "Tüm konular görüntüleniyor", - "Threads_displaying_following": "Takip edilen konular görüntüleniyor", - "Threads_displaying_unread": "Okunmamış konular görüntüleniyor", - "No_threads": "Konu yok", - "No_threads_following": "Herhangi bir konuyu takip etmiyorsunuz", - "No_threads_unread": "Okunmamış konu yok", - "Messagebox_Send_to_channel": "Kanala gönder", - "Remove_from_room": "Odadan çıkar", - "Ignore": "Yok say", - "Unignore": "Yok sayma", - "User_has_been_ignored": "Kullanıcı yok sayıldı.", - "User_has_been_unignored": "Kullanıcı artık yok sayılmıyor.", - "User_has_been_removed_from_s": "Kullanıcı {{s}} alanından kaldırıldı.", - "User__username__is_now_a_leader_of__room_name_": "{{username}} kullanıcısı artık {{room_name}} lideridir.", - "User__username__is_now_a_moderator_of__room_name_": "{{username}} kullanıcısı artık bir {{room_name}} moderatörüdür.", - "User__username__is_now_a_owner_of__room_name_": "{{username}} kullanıcısı artık {{room_name}} adlı odanın sahibidir.", - "User__username__removed_from__room_name__leaders": "{{username}} adlı kullanıcı, {{room_name}} liderlerinden kaldırıldı.", - "User__username__removed_from__room_name__moderators": "{{username}} adlı kullanıcı, {{room_name}} moderatörlerinden kaldırıldı.", - "User__username__removed_from__room_name__owners": "{{username}} adlı kullanıcı, {{room_name}} sahiplerinden kaldırıldı.", - "The_user_will_be_removed_from_s": "Kullanıcı, {{s}} alanından kaldırılacak!", - "Yes_remove_user": "Evet, kullanıcıyı kaldır!", - "Direct_message": "Özel ileti", - "Message_Ignored": "İleti yok sayıldı. Görüntülemek için dokunun.", - "Enter_workspace_URL": "Çalışma alanı URL'nizi girin", - "Workspace_URL_Example": "Örn. sirketiniz.rocket.chat", - "invalid-room": "Geçersiz oda" -} \ No newline at end of file + "1_person_reacted": "1 kişi tepki verdi.", + "1_user": "1 kullanıcı", + "error-action-not-allowed": "{{action}}'a izin verilmiyor!", + "error-application-not-found": "Uygulama bulunamadı!", + "error-archived-duplicate-name": "{{room_name}} adında arşivlenmiş bir kanal var!", + "error-avatar-invalid-url": "Geçersiz avatar URL'si: {{url}}", + "error-avatar-url-handling": "{{username}} için bir URL'den ({{url}}) avatar ayarı işlenirken hata oluştu!", + "error-cant-invite-for-direct-room": "Kullanıcı özel odalara davet edilemedi!", + "error-could-not-change-email": "E-posta değiştirilemedi!", + "error-could-not-change-name": "İsim değiştirilemedi!", + "error-could-not-change-username": "Kullanıcı adı değiştirilemedi!", + "error-could-not-change-status": "Durum değiştirilemedi!", + "error-delete-protected-role": "Korunan bir rol silinemez!", + "error-department-not-found": "Bölüm bulunamadı!", + "error-direct-message-file-upload-not-allowed": "Özel iletilerde dosya paylaşımına izin verilmiyor!", + "error-duplicate-channel-name": "{{channel_name}} adında bir kanal var!", + "error-email-domain-blacklisted": "E-posta alan adı kara listeye alındı!", + "error-email-send-failed": "E-posta göndermeye çalışırken hata oluştu: {{message}}", + "error-save-image": "Görüntüyü kaydederken hata oluştu!", + "error-save-video": "Videoyu kaydederken hata oluştu!", + "error-field-unavailable": "{{field}} zaten kullanılıyor! :(", + "error-file-too-large": "Dosya çok büyük!", + "error-importer-not-defined": "İçe aktarıcı doğru tanımlanmadı, \"Import\" sınıfı eksik!", + "error-input-is-not-a-valid-field": "{{input}} geçerli bir {{field}} değil!", + "error-invalid-actionlink": "Geçersiz işlem bağlantısı!", + "error-invalid-arguments": "Geçersiz parametreler!", + "error-invalid-asset": "Geçersiz veri!", + "error-invalid-channel": "Geçersiz kanal.", + "error-invalid-channel-start-with-chars": "Geçersiz kanal! @ veya # ile başlayın.", + "error-invalid-custom-field": "Geçersiz özelleştirilmiş alan", + "error-invalid-custom-field-name": "Geçersiz özelleştirilmiş alan adı! Yalnızca harf, rakam, kısa çizgi ve alt çizgi kullanın.", + "error-invalid-date": "Geçersiz tarih!", + "error-invalid-description": "Geçersiz açıklama!", + "error-invalid-domain": "Geçersiz alan adı!", + "error-invalid-email": "Geçersiz e-posta {{email}}!", + "error-invalid-email-address": "Geçersiz e-posta adresi!", + "error-invalid-file-height": "Geçersiz fotoğraf yüksekliği!", + "error-invalid-file-type": "Geçersiz dosya türü!", + "error-invalid-file-width": "Geçersiz fotoğraf genişliği!", + "error-invalid-from-address": "Geçersiz bir KİMDEN adresi bildirdiniz!", + "error-invalid-integration": "Geçersiz entegrasyon", + "error-invalid-message": "Geçersiz ileti!", + "error-invalid-method": "Geçersiz metot!", + "error-invalid-name": "Geçersiz isim!", + "error-invalid-password": "Geçersiz şifre!", + "error-invalid-redirectUri": "Geçersiz yönlendirme bağlantısı!", + "error-invalid-role": "Geçersiz rol!", + "error-invalid-room": "Geçersiz oda!", + "error-invalid-room-name": "{{room_name}}, geçerli bir oda adı değil!", + "error-invalid-room-type": "{{type}}, geçerli bir oda türü değil!", + "error-invalid-settings": "Geçersiz ayar!", + "error-invalid-subscription": "Geçersiz başvuru!", + "error-invalid-token": "Geçersiz belirteç!", + "error-invalid-triggerWords": "Geçersiz tetikleyici parametreleri!", + "error-invalid-urls": "Geçersiz URL'ler!", + "error-invalid-user": "Geçersiz kullanıcı!", + "error-invalid-username": "Geçersiz kullanıcı adı!", + "error-invalid-webhook-response": "İstek URL'si 200'den farklı bir durumla yanıt verdi!", + "error-message-deleting-blocked": "İleti silme engellendi!", + "error-message-editing-blocked": "İleti düzenleme engellendi", + "error-message-size-exceeded": "İleti boyutu, Message_MaxAllowedSize değerini aşıyor", + "error-missing-unsubscribe-link": "[unsubscribe] bağlantısını belirtmelisiniz.", + "error-no-tokens-for-this-user": "Bu kullanıcı için belirteç (token) yok", + "error-not-allowed": "İzin verilmedi", + "error-not-authorized": "Yetkili değil", + "error-push-disabled": "Push devre dışı", + "error-remove-last-owner": "Lütfen bunu kaldırmadan önce yeni bir sahip belirleyin.", + "error-role-in-use": "Rol kullanımda olduğu için silinemiyor", + "error-role-name-required": "Rol adı gerekli", + "error-the-field-is-required": "{{field}} alanı gereklidir.", + "error-too-many-requests": "Hata, çok fazla istek. Lütfen yavaşla. Tekrar denemeden önce {{seconds}} saniye beklemelisiniz.", + "error-user-is-not-activated": "Kullanıcı etkinleştirilmedi!", + "error-user-has-no-roles": "Kullanıcıya tanımlı rol yok!", + "error-user-limit-exceeded": "#channel_name kanalına davet etmeye çalıştığınız kullanıcıların sayısı, yönetici tarafından belirlenen sınırı aşıyor!", + "error-user-not-in-room": "Kullanıcı bu odada değil!", + "error-user-registration-custom-field": "error-user-registration-custom-field", + "error-user-registration-disabled": "Kullanıcı kaydı devre dışı bırakıldı!", + "error-user-registration-secret": "Kullanıcı kaydına yalnızca Gizli URL aracılığıyla izin verilir!", + "error-you-are-last-owner": "Son sahibi sizsiniz. Lütfen odadan ayrılmadan önce yeni bir sahip belirleyin.", + "Actions": "İşlemler", + "activity": "etkinlik", + "Activity": "Etkinlik", + "Add_Reaction": "Tepki ekle", + "Add_Server": "Sunucu ekle", + "Add_users": "Kullanıcı ekle", + "Admin_Panel": "Yönetim Paneli", + "Agent": "Temsilci", + "Alert": "Uyarı", + "alert": "uyarı", + "alerts": "uyarılar", + "All_users_in_the_channel_can_write_new_messages": "Kanaldaki tüm kullanıcılar yeni ileti yazabilir!", + "A_meaningful_name_for_the_discussion_room": "Tartışma odası için anlamlı bir isim", + "All": "Tümü", + "All_Messages": "Tüm İletiler", + "Allow_Reactions": "Tüm Tepkiler", + "Alphabetical": "Alfabetik", + "and_more": "ve daha", + "and": "ve", + "announcement": "duyuru", + "Announcement": "Duyuru", + "Apply_Your_Certificate": "Sertifikanızı Onaylayın", + "ARCHIVE": "ARŞİVLE", + "archive": "arşivle", + "are_typing": "yazıyor", + "Are_you_sure_question_mark": "Emin misiniz?", + "Are_you_sure_you_want_to_leave_the_room": "{{room}} odasından ayrılmak istediğinizden emin misiniz?", + "Audio": "Ses", + "Authenticating": "Doğrulanıyor", + "Automatic": "Otomatik", + "Auto_Translate": "Otomatik Çevir", + "Avatar_changed_successfully": "Profil fotoğrafı başarıyla değiştirildi!", + "Avatar_Url": "Profil fotoğrafı URL'si", + "Away": "Uzakta", + "Back": "Geri", + "Black": "Koyu", + "Block_user": "Kullanıcıyı engelle", + "Browser": "Tarayıcı", + "Broadcast_channel_Description": "Yalnızca yetkili kullanıcılar yeni ileti yazabilir, ancak diğer kullanıcılar yanıt verebilir", + "Broadcast_Channel": "Kanala Yayınla", + "Busy": "Meşgul", + "By_proceeding_you_are_agreeing": "Devam ederek kabul ediyorsunuz: ", + "Cancel_editing": "Düzenlemeyi iptal et", + "Cancel_recording": "Kaydı iptal et", + "Cancel": "İptal et", + "changing_avatar": "profil fotoğrafı değiştirme", + "creating_channel": "kanal açılıyor", + "creating_invite": "davet üretiliyor", + "Channel_Name": "Kanal Adı", + "Channels": "Kanallar", + "Chats": "Sohbetler", + "Call_already_ended": "Çağrı sona erdi!", + "Clear_cookies_alert": "Tüm çerezleri temizlemek istiyor musunuz?", + "Clear_cookies_desc": "Bu işlem, tüm oturum açma çerezlerini temizleyerek diğer hesaplara giriş yapmanıza olanak tanır.", + "Clear_cookies_yes": "Evet, çerezleri temizle", + "Clear_cookies_no": "Hayır, çerezleri koru", + "Click_to_join": "Katılmak için tıklayın!", + "Close": "Kapat", + "Close_emoji_selector": "Emoji seçiciyi kapat", + "Closing_chat": "Sohbet kapatılıyor", + "Change_language_loading": "Dil değiştiriliyor", + "Chat_closed_by_agent": "Sohbet temsilci tarafından kapatıldı", + "Choose": "Seç", + "Choose_from_library": "Kütüphaneden seç", + "Choose_file": "Dosya seç", + "Choose_where_you_want_links_be_opened": "Bağlantıların açılmasını istediğiniz yeri seçin", + "Code": "Kod", + "Code_or_password_invalid": "Kod veya şifre geçersiz", + "Collaborative": "İşbirlikçi", + "Confirm": "Onayla", + "Connect": "Bağlan", + "Connected": "Bağlandı", + "connecting_server": "sunucuya bağlanıyor", + "Connecting": "Bağlanıyor...", + "Contact_us": "Bize ulaşın", + "Contact_your_server_admin": "Sunucu yöneticisiyle iletişime geçin.", + "Continue_with": "Devam et:", + "Copied_to_clipboard": "Panoya kopyalandı!", + "Copy": "Kopyala", + "Conversation": "Sohbet", + "Permalink": "Kalıcı bağlantı", + "Certificate_password": "Sertifika Şifresi", + "Clear_cache": "Yerel sunucu önbelleğini temizleyin", + "Clear_cache_loading": "Önbellek temizleniyor.", + "Whats_the_password_for_your_certificate": "Sertifikanızın şifresi nedir?", + "Create_account": "Hesap oluştur", + "Create_Channel": "Kanal Oluştur", + "Create_Direct_Messages": "Özel İleti Oluştur", + "Create_Discussion": "Tartışma Oluştur", + "Created_snippet": "kalıp oluşturdu", + "Create_a_new_workspace": "Çalışma alanı oluştur", + "Create": "Oluştur", + "Custom_Status": "Özelleştirilmiş durum", + "Dark": "Karanlık", + "Dark_level": "Karanlık Seviyesi", + "Default": "Varsayılan", + "Default_browser": "Varsayılan tarayıcı", + "Delete_Room_Warning": "Bir odanın silinmesi, oda içinde yayınlanan tüm iletileri silecektir. Bu geri alınamaz.", + "Department": "Bölüm", + "delete": "sil", + "Delete": "Sil", + "DELETE": "SİL", + "deleting_room": "oda siliniyor", + "description": "açıklama", + "Description": "Açıklama", + "Desktop_Options": "Masaüstü Seçenekleri", + "Desktop_Notifications": "Masaüstü Bildirimleri", + "Desktop_Alert_info": "Bu bildirimler masaüstünde teslim edilir", + "Directory": "Dizin", + "Direct_Messages": "Özel İletiler", + "Disable_notifications": "Bildirimleri devre dışı bırak", + "Discussions": "Tartışmalar", + "Discussion_Desc": "Neler olup bittiğini gözden geçirmeye yardımcı olun! Bir tartışma oluşturarak, seçtiğinizin bir alt kanalı oluşturulur ve her ikisi de bağlanır.", + "Discussion_name": "Tartışma adı", + "Done": "Tamamlandı", + "Dont_Have_An_Account": "Hesabın yok mu?", + "Do_you_have_an_account": "Hesabın var mı?", + "Do_you_have_a_certificate": "Sertifikanız var mı?", + "Do_you_really_want_to_key_this_room_question_mark": "Bu odayı gerçekten {{key}} istiyor musun?", + "E2E_Encryption": "Uçtan Uca Şifreleme (E2E)", + "E2E_How_It_Works_info1": "Artık şifrelenmiş özel gruplar ve doğrudan iletiler oluşturabilirsiniz. Mevcut özel grupları veya özel iletileri şifreli olarak da değiştirebilirsiniz.", + "E2E_How_It_Works_info2": "Bu, *Uçtan Uca Şifreleme'dir (E2E)*, böylece iletilerinizi şifrelemek / çözmek için anahtar ve bunlar sunucuya kaydedilmez. Bu nedenle *bu şifreyi daha sonra ihtiyaç duyduğunuzda erişebileceğiniz güvenli bir yerde* saklamanız gerekir.", + "E2E_How_It_Works_info3": "Devam ederseniz, otomatik olarak bir Uçtan Uca Şifreleme (E2E) şifresi oluşturulacaktır.", + "E2E_How_It_Works_info4": "Mevcut Uçtan Uca Şifreleme (E2E) şifresini, herhangi bir tarayıcıdan istediğiniz zaman girdiğiniz şifreleme anahtarınız için yeni bir şifre de ayarlayabilirsiniz.", + "edit": "düzenle", + "edited": "düzenlendi", + "Edit": "Düzenle", + "Edit_Status": "Durumu Düzenle", + "Edit_Invite": "Daveti Düzenle", + "End_to_end_encrypted_room": "Uçtan uca şifreli oda", + "end_to_end_encryption": "uçtan uca şifreleme", + "Email_Notification_Mode_All": "Tüm Bahsetmeler/Özel İletiler", + "Email_Notification_Mode_Disabled": "Devre Dışı", + "Email_or_password_field_is_empty": "E-posta veya şifre alanı boş", + "Email": "E-posta", + "email": "e-posta", + "Empty_title": "Boş başlık", + "Enable_Auto_Translate": "Otomatik Çeviriyi Etkinleştir", + "Enable_notifications": "Bildirimleri etkinleştir", + "Encrypted": "Şifreli", + "Encrypted_message": "Şifreli ileti", + "Enter_Your_E2E_Password": "Uçtan Uca Şifreleme (E2E) Şifrenizi Girin", + "Enter_Your_Encryption_Password_desc1": "Bu, şifrelenmiş özel gruplarınıza ve doğrudan iletilerinize erişmenize izin verecektir.", + "Enter_Your_Encryption_Password_desc2": "Sohbeti kullandığınız her yerde iletileri şifrelemek / çözmek için şifre girmeniz gerekir.", + "Encryption_error_title": "Şifreleme şifreniz yanlış görünüyor", + "Encryption_error_desc": "İçe aktarılacak şifreleme anahtarınızın kodu çözülemedi.", + "Everyone_can_access_this_channel": "Bu kanala herkes erişebilir", + "Error_uploading": "Yükleme hatası", + "Expiration_Days": "Geçerlilik Süresi (Gün)", + "Favorite": "Favori", + "Favorites": "Favoriler", + "Files": "Dosyalar", + "File_description": "Dosya açıklaması", + "File_name": "Dosya adı", + "Finish_recording": "Kaydı bitir", + "Following_thread": "Konu takip ediliyor", + "For_your_security_you_must_enter_your_current_password_to_continue": "Güvenliğiniz için, devam etmek için mevcut şifrenizi girmelisiniz", + "Forgot_password_If_this_email_is_registered": "Bu e-posta kayıtlıysa, şifrenizi nasıl sıfırlayacağınıza dair talimatlar göndereceğiz. Kısa süre içinde bir e-posta almazsanız, lütfen geri gelin ve tekrar deneyin.", + "Forgot_password": "Parolanızı mı unuttunuz?", + "Forgot_Password": "Parolamı Unuttum", + "Forward": "İlet", + "Forward_Chat": "Sohbete İlet", + "Forward_to_department": "Bölüme İlet", + "Forward_to_user": "Kullanıcıya İlet", + "Full_table": "Tam tabloyu görmek için tıklayın", + "Generate_New_Link": "Yeni Bağlantı Oluştur", + "Group_by_favorites": "Favorilere göre grupla", + "Group_by_type": "Türe göre grupla", + "Hide": "Gizle", + "Has_joined_the_channel": "kanala katıldı", + "Has_joined_the_conversation": "sohbete katıldı", + "Has_left_the_channel": "kanaldan ayrıldı", + "Hide_System_Messages": "Sistem İletilerını Gizle", + "Hide_type_messages": "\"{{type}}\" iletilerini gizle", + "How_It_Works": "Nasıl Çalışır", + "Message_HideType_uj": "Kullanıcı Katıldı", + "Message_HideType_ul": "Kullanıcı Ayrıldı", + "Message_HideType_ru": "Kullanıcı Kaldırıldı", + "Message_HideType_au": "Kullanıcı Eklendi", + "Message_HideType_mute_unmute": "Kullanıcı Sesi Kapatıldı / Sesi Açıldı", + "Message_HideType_r": "Oda Adı Değiştirildi", + "Message_HideType_ut": "Kullanıcı Sohbete Katıldı", + "Message_HideType_wm": "Hoşgeldiniz", + "Message_HideType_rm": "İleti Kaldırıldı", + "Message_HideType_subscription_role_added": "Rol Belirlendi", + "Message_HideType_subscription_role_removed": "Artık Kullanılmayan Rol", + "Message_HideType_room_archived": "Oda Arşivlendi", + "Message_HideType_room_unarchived": "Oda Arşivden Çıkarıldı", + "I_Saved_My_E2E_Password": "Uçtan Uca Şifreleme (E2E) Şifremi Kaydettim", + "IP": "IP", + "In_app": "Uygulama İçi", + "In_App_And_Desktop": "Uygulama İçi ve Masaüstü", + "In_App_and_Desktop_Alert_info": "Uygulama açıkken ekranın üst kısmında bir başlık görüntüler ve masaüstünde bir bildirim görüntüler", + "Invisible": "Görünmez", + "Invite": "Davet Et", + "is_a_valid_RocketChat_instance": "geçerli bir Rocket.Chat örneği", + "is_not_a_valid_RocketChat_instance": "geçerli bir Rocket.Chat örneği değil", + "is_typing": "yazıyor", + "Invalid_or_expired_invite_token": "Geçersiz veya süresi dolmuş davet belirteci (token)", + "Invalid_server_version": "Bağlanmaya çalıştığınız sunucu artık uygulama tarafından desteklenmeyen bir sürüm kullanıyor: {{currentVersion}}.\n\n{{minVersion}} sürümüne ihtiyacımız var", + "Invite_Link": "Davet Bağlantısı", + "Invite_users": "Kullanıcıları davet et", + "Join": "Katıl", + "Join_Code": "Katılım Kodu", + "Insert_Join_Code": "Katılım Kodu Girin", + "Join_our_open_workspace": "Açık çalışma alanımıza katılın", + "Join_your_workspace": "Çalışma alanınıza katılın", + "Just_invited_people_can_access_this_channel": "Yalnızca davet edilen kişiler bu kanala erişebilir", + "Language": "Dil", + "last_message": "son ileti", + "Leave_channel": "Kanaldan ayrıl", + "leaving_room": "odadan ayrılıyor", + "Leave": "Odadan ayrıl", + "leave": "ayrıl", + "Legal": "Yasal", + "Light": "Açık", + "License": "Lisans", + "Livechat": "Canlı Sohbet", + "Livechat_edit": "Canlı sohbeti düzenle", + "Login": "Oturum aç", + "Login_error": "Kimlik bilgileriniz reddedildi! Lütfen tekrar deneyin.", + "Login_with": "ile giriş", + "Logging_out": "Çıkış Yapılıyor", + "Logout": "Çıkış Yap", + "Max_number_of_uses": "Maksimum kullanım sayısı", + "Max_number_of_users_allowed_is_number": "İzin verilen maksimum kullanıcı sayısı {{maxUsers}}", + "members": "üyeler", + "Members": "Üyeler", + "Mentioned_Messages": "Bahsedilen İletiler", + "mentioned": "bahsedildi", + "Mentions": "Bahsetmeler", + "Message_accessibility": "{{user}} tarafından {{time}} itibarıyla ileti: {{message}}", + "Message_actions": "İleti işlemleri", + "Message_pinned": "İleti sabitlendi", + "Message_removed": "İleti kaldırıldı", + "Message_starred": "İletia yıldız eklendi", + "Message_unstarred": "İletiın yıldızı kaldırıldı", + "message": "ileti", + "messages": "iletiler", + "Message": "İleti", + "Messages": "İletiler", + "Message_Reported": "İleti bildirildi", + "Microphone_Permission_Message": "Rocket.Chat'in mikrofonunuza erişmesi gerekiyor, böylece sesli ileti gönderebilirsiniz.", + "Microphone_Permission": "Mikrofon İzni", + "Mute": "Sessize Al", + "muted": "sessize alındı", + "My_servers": "Sunucularım", + "N_people_reacted": "{{n}} kişi tepki verdi", + "N_users": "{{n}} kullanıcı", + "name": "isim", + "Name": "İsim", + "Navigation_history": "Gezinti geçmişi", + "Never": "Asla", + "New_Message": "Yeni İleti", + "New_Password": "Yeni Şifre", + "New_Server": "Yeni Sunucu", + "Next": "Sonraki", + "No_files": "Dosya yok", + "No_limit": "Limit yok", + "No_mentioned_messages": "Belirtilen ileti yok", + "No_pinned_messages": "Sabitlenmiş ileti yok", + "No_results_found": "Sonuç bulunamadı", + "No_starred_messages": "Yıldızlı ileti yok", + "No_thread_messages": "Konu iletisi yok", + "No_label_provided": "Hiç {{label}} sağlanmadı.", + "No_Message": "İleti Yok", + "No_messages_yet": "Şu ana kadar ileti yok", + "No_Reactions": "Tepki Yok", + "No_Read_Receipts": "Okundu Bilgisi Yok", + "Not_logged": "Kayıtlı değil", + "Not_RC_Server": "Bu bir Rocket.Chat sunucusu değil.\n{{contact}}", + "Nothing": "Hiçbir Şey", + "Nothing_to_save": "Kaydedilecek bir şey yok!", + "Notify_active_in_this_room": "Bu odadaki çevrimiçi kullanıcıları bilgilendir", + "Notify_all_in_this_room": "Bu odadaki herkesi bilgilendir", + "Notifications": "Bildirimler", + "Notification_Duration": "Bildirim Süresi", + "Notification_Preferences": "Bildirim Tercihleri", + "No_available_agents_to_transfer": "Aktarılacak yemsilci yok", + "Offline": "Çevrimdışı", + "Oops": "Ahh!", + "Omnichannel": "Çoklu Kanal", + "Open_Livechats": "Devam Eden Sohbetler", + "Omnichannel_enable_alert": "Çoklu Kanal'da mevcut değilsiniz. Erişilebilir olmak ister misiniz?", + "Onboarding_description": "Çalışma alanı, ekibinizin veya kuruluşunuzun işbirliği alanıdır. Çalışma alanı yöneticisinden bir ekibe katılmak veya bir ekip oluşturmak için yardım isteyin.", + "Onboarding_join_workspace": "Bir çalışma alanına katılın", + "Onboarding_subtitle": "Ekip İşbirliğinin Ötesinde", + "Onboarding_title": "Rocket.Chat'e hoş geldiniz", + "Onboarding_join_open_description": "Rocket.Chat ekibi ve topluluğu ile sohbet etmek için açık çalışma alanımıza katılın.", + "Onboarding_agree_terms": "Devam ederek Rocket.Chat'i kabul etmiş olursunuz", + "Onboarding_less_options": "Daha az seçenek", + "Onboarding_more_options": "Daha çok seçenek", + "Online": "Çevrimiçi", + "Only_authorized_users_can_write_new_messages": "Yalnızca yetkili kullanıcılar yeni ileti yazabilir", + "Open_emoji_selector": "Emoji seçiciyi aç", + "Open_Source_Communication": "Açık Kaynak İletişim", + "Open_your_authentication_app_and_enter_the_code": "Kimlik doğrulama uygulamanızı açın ve kodu girin.", + "OR": "OR", + "OS": "OS", + "Overwrites_the_server_configuration_and_use_room_config": "Sunucu yapılandırmasının üzerine yazar ve oda yapılandırmasını kullanır", + "Password": "Şifre", + "Parent_channel_or_group": "Üst kanal veya grup", + "Permalink_copied_to_clipboard": "Kalıcı bağlantı panoya kopyalandı!", + "Phone": "Telefon", + "Pin": "Sabitle", + "Pinned_Messages": "Sabitlenen İletiler", + "pinned": "sabitlendi", + "Pinned": "Sabitlendi", + "Please_add_a_comment": "Lütfen bir yorum ekleyin", + "Please_enter_your_password": "Lütfen şifrenizi giriniz", + "Please_wait": "Lütfen bekle.", + "Preferences": "Tercihler", + "Preferences_saved": "Tercihler kaydedildi!", + "Privacy_Policy": " Privacy Policy", + "Private_Channel": "Özel Kanal", + "Private": "Özel", + "Processing": "İşleniyor...", + "Profile_saved_successfully": "Profil başarıyla kaydedildi!", + "Profile": "Profil", + "Public_Channel": "Herkese Açık Kanal", + "Public": "Herkese Açık", + "Push_Notifications": "Anlık Bildirimler", + "Push_Notifications_Alert_Info": "Bu bildirimler, uygulama açık olmadığında size teslim edilir", + "Quote": "Alıntı", + "Reactions_are_disabled": "Tepkiler devre dışı bırakıldı", + "Reactions_are_enabled": "Tepkiler etkinleştirildi", + "Reactions": "Tepkiler", + "Read": "Oku", + "Read_External_Permission_Message": "Rocket.Chat'in cihazınızdaki fotoğraflara, medyaya ve dosyalara erişmesi gerekiyor", + "Read_External_Permission": "Medya Okuma İzni ", + "Read_Only_Channel": "Yazma Kısıtlı Kanal", + "Read_Only": "Yazma Kısıtlı", + "Read_Receipt": "Okundu Bilgisi", + "Receive_Group_Mentions": "Grup Bahsetmelerini Al", + "Receive_Group_Mentions_Info": "Grup bahsetmelerini al", + "Register": "Kayıt Ol", + "Repeat_Password": "Şifre Tekrarı", + "Replied_on": "Yanıtlandı:", + "replies": "yanıtlar", + "reply": "yanıtla", + "Reply": "Yanıtla", + "Report": "Bildir", + "Receive_Notification": "Bildirim Al", + "Receive_notifications_from": "{{name}} bildirimlerini alın", + "Resend": "Yeniden yolla", + "Reset_password": "Şifre sıfırla", + "resetting_password": "şifre sıfırlanıyor", + "RESET": "SIFIRLA", + "Return": "Geri dön", + "Review_app_title": "Uygulama hoşunuza gitti mi?", + "Review_app_desc": "{{store}} üzerinde bize 5 yıldız verin", + "Review_app_yes": "Elbette!", + "Review_app_no": "Hayır", + "Review_app_later": "Belki daha sonra", + "Review_app_unable_store": "{{store}} açılamıyor!", + "Review_this_app": "Bu uygulamayı değerlendirin", + "Remove": "Kaldır", + "Roles": "Roller", + "Room_actions": "Oda işlemleri", + "Room_changed_announcement": "Oda duyurusu, {{userBy}} tarafından {{announcement}} olarak değiştirildi", + "Room_changed_avatar": "Oda profil fotoğrafı {{userBy}} tarafından değiştirildi", + "Room_changed_description": "Oda açıklaması, {{userBy}} tarafından {{description}} olarak değiştirildi", + "Room_changed_topic": "Oda konusu, {{userBy}} tarafından {{topic}} olarak değiştirildi", + "Room_Files": "Oda Dosyaları", + "Room_Info_Edit": "Oda Bilgilerini Düzenle", + "Room_Info": "Oda Bilgisi", + "Room_Members": "Oda Üyeleri", + "Room_name_changed": "Oda adı, {{userBy}} tarafından {{name}} olarak değiştirildi", + "SAVE": "KAYDET", + "Save_Changes": "Değişiklikleri Kaydet", + "Save": "Kaydet", + "Saved": "Kaydedildi", + "saving_preferences": "tercihler kaydediliyor", + "saving_profile": "profil kaydediliyor", + "saving_settings": "ayarlar kaydediliyor", + "saved_to_gallery": "Galeriye kaydedildi", + "Save_Your_E2E_Password": "(E2E) Şifrenizi Kaydedin", + "Save_Your_Encryption_Password": "Şifreleme Parolanızı Kaydedin", + "Save_Your_Encryption_Password_warning": "Bu parola hiçbir yerde saklanmadığından başka bir yere dikkatlice kaydedin.", + "Save_Your_Encryption_Password_info": "Parolanızı kaybettiğinizde, kurtarmanın bir yolu olmadığını ve iletilerinize erişiminizi kaybedeceğinizi unutmayın.", + "Search_Messages": "İleti ara", + "Search": "Ara", + "Search_by": "Ara", + "Search_global_users": "Global kullanıcıları ara", + "Search_global_users_description": "Açarsanız, diğer şirketlerden veya sunuculardan herhangi bir kullanıcıyı arayabilirsiniz.", + "Seconds": "{{second}} saniye", + "Security_and_privacy": "Güvenlik ve gizlilik", + "Select_Avatar": "Profil resmi seç", + "Select_Server": "Sunucu seç", + "Select_Users": "Kullanıcıları seç", + "Select_a_Channel": "Kanal Seç", + "Select_a_Department": "Bölüm Seç", + "Select_an_option": "Bir seçenek seçin", + "Select_a_User": "Kullanıcı Seç", + "Send": "Yolla", + "Send_audio_message": "Sesli ileti gönder", + "Send_crash_report": "Çökme raporu gönder", + "Send_message": "İleti gönder", + "Send_me_the_code_again": "Kodu tekrar gönder", + "Send_to": "Gönderiliyor...", + "Sending_to": "Gönderiliyor:", + "Sent_an_attachment": "Bir ek gönderildi", + "Server": "Sunucu", + "Servers": "Sunucular", + "Server_version": "Sunucu versiyonu: {{version}}", + "Set_username_subtitle": "Kullanıcı adı başkalarının iletilerde sizden bahsetmesine izin vermek için kullanılır", + "Set_custom_status": "Özelleştirilmiş durumu ayarlayın", + "Set_status": "Durumu ayarla", + "Status_saved_successfully": "Durum başarıyla kaydedildi!", + "Settings": "Ayarlar", + "Settings_succesfully_changed": "Ayarlar başarıyla değiştirildi!", + "Share": "Paylaş", + "Share_Link": "Bağlantı paylaş", + "Share_this_app": "Bu uygulamayı paylaş", + "Show_more": "Daha fazla göster..", + "Show_Unread_Counter": "Okunmamış Sayacını Göster", + "Show_Unread_Counter_Info": "Okunmamış sayacı, listede kanalın sağ tarafında bir rozet olarak görüntülenir", + "Sign_in_your_server": "Sunucunuzda oturum açın", + "Sign_Up": "Kaydol", + "Some_field_is_invalid_or_empty": "Bazı alanlar geçersiz veya boş", + "Sorting_by": "{{key}} göre sıralanıyor", + "Sound": "Ses", + "Star_room": "Odayı Yıldızla", + "Star": "Yıldızla", + "Starred_Messages": "Yıldızlı İletiler", + "starred": "yıldızlandı", + "Starred": "Yıldızlandı", + "Start_of_conversation": "Konuşma başlangıcı", + "Start_a_Discussion": "Tartışma Başlat", + "Started_discussion": "Bir tartışma başlattı:", + "Started_call": "Arama {{userBy}} tarafından başlatıldı", + "Submit": "Kaydet", + "Table": "Tablo", + "Tags": "Etiketler", + "Take_a_photo": "Fotoğraf çek", + "Take_a_video": "Video çek", + "Take_it": "Al!", + "tap_to_change_status": "durumu değiştirmek için dokunun", + "Tap_to_view_servers_list": "Sunucu listesini görüntülemek için dokunun", + "Terms_of_Service": " Kullanım Şartları ", + "Theme": "Tema", + "The_user_wont_be_able_to_type_in_roomName": "Kullanıcı {{roomName}} içinde yazamayacak", + "The_user_will_be_able_to_type_in_roomName": "Kullanıcı {{roomName}} içinde yazabilecek", + "There_was_an_error_while_action": "{{action}} sırasında bir hata oluştu!", + "This_room_is_blocked": "Bu oda engellendi", + "This_room_is_read_only": "Bu oda yazma kısıtlı", + "Thread": "Başlık", + "Threads": "Başlıklar", + "Timezone": "Saat dilimi", + "To": "Kime", + "topic": "konu", + "Topic": "Konu", + "Translate": "Çevir", + "Try_again": "Tekrar deneyin", + "Two_Factor_Authentication": "İki faktörlü Kimlik Doğrulama", + "Type_the_channel_name_here": "Kanal adını buraya yazın", + "unarchive": "arşivden çıkar", + "UNARCHIVE": "ARŞİVDEN ÇIKAR", + "Unblock_user": "Kullanıcının engelini kaldır", + "Unfavorite": "Favorilerden Çıkar", + "Unfollowed_thread": "Takip edilmeyen başlık", + "Unmute": "Sesi Aç", + "unmuted": "Sesi Açıldı", + "Unpin": "Sabitlemeyi kaldır", + "unread_messages": "okunmamış", + "Unread": "Okunmamış", + "Unread_on_top": "Okunmamışlar üstte", + "Unstar": "Yıldızı kaldır", + "Updating": "Güncelleniyor...", + "Uploading": "Gönderiliyor", + "Upload_file_question_mark": "Dosya gönderilsin mi?", + "User": "Kullanıcı", + "Users": "Kullanıcılar", + "User_added_by": "{{userAdded}} adlı kullanıcı {{userBy}} tarafından eklendi", + "User_Info": "Kullanıcı bilgisi", + "User_has_been_key": "Kullanıcı {{key}} olmuştur", + "User_is_no_longer_role_by_": "{{user}} artık {{role}} değil ({{userBy}} tarafından)", + "User_muted_by": "{{userMuted}} adlı kullanıcının sesini {{userBy}} kapattı", + "User_removed_by": "{{userRemoved}} kullanıcısı {{userBy}} tarafından kaldırıldı", + "User_sent_an_attachment": "{{user}} bir ek gönderdi", + "User_unmuted_by": "{{userUnmuted}} kullanıcısının sesi {{userBy}} tarafından açıldı", + "User_was_set_role_by_": "{{user}}, {{userBy}} tarafından {{role}} ayarlandı", + "Username_is_empty": "Kullanıcı adı boş!", + "Username": "Kullanıcı adı", + "Username_or_email": "Kullanıcı adı ya da e-posta", + "Uses_server_configuration": "Sunucu yapılandırmasını kullanır", + "Validating": "Doğrulanıyor", + "Registration_Succeeded": "Kayıt Başarılı!", + "Verify": "Onayla", + "Verify_email_title": "Kaydınızı onaylayın!", + "Verify_email_desc": "Kaydınızı onaylamak için size bir e-posta gönderdik. Kısa süre içinde bir e-posta almazsanız, lütfen geri gelin ve tekrar deneyin.", + "Verify_your_email_for_the_code_we_sent": "Gönderdiğimiz kod için e-postanızı doğrulayın", + "Video_call": "Görüntülü arama", + "View_Original": "Orijinali Görüntüle", + "Voice_call": "Sesli arama", + "Waiting_for_network": "Ağ bağlantısı bekleniyor ...", + "Websocket_disabled": "Bu sunucu için Websocket devre dışı bırakıldı.\n{{contact}}", + "Welcome": "Hoşgeldiniz", + "What_are_you_doing_right_now": "Şu an ne yapıyorsun?", + "Whats_your_2fa": "2 faktör doğrulama (2FA) kodunuz nedir?", + "Without_Servers": "Sunucusuz", + "Workspaces": "Çalışma alanları", + "Would_you_like_to_return_the_inquiry": "Başvuruyu geri çevirmek ister misiniz?", + "Write_External_Permission_Message": "Rocket.Chat'in galerinize erişmesi gerekiyor, böylece resimleri kaydedebilirsiniz.", + "Write_External_Permission": "Galeri İzni", + "Yes": "Evet", + "Yes_action_it": "Evet, {{action}}!", + "Yesterday": "Dün", + "You_are_in_preview_mode": "İzleme modundasınız", + "You_are_offline": "Çevrimdışısınız", + "You_can_search_using_RegExp_eg": "Düzenli ifadeleri (Regular Expressions) kullanabilirsiniz. Örneğin: `/^text$/i`", + "You_colon": "Siz: ", + "you_were_mentioned": "senden bahsedildi", + "You_were_removed_from_channel": "{{channel}} kanalından çıkarıldınız", + "you": "siz", + "You": "Siz", + "Logged_out_by_server": "Sunucu tarafından çıkış yaptınız. Lütfen tekrar giriş yapın.", + "You_need_to_access_at_least_one_RocketChat_server_to_share_something": "Bir şeyler paylaşmak için Rocket.Chat sunucusuna erişmeniz gerekir.", + "You_need_to_verifiy_your_email_address_to_get_notications": "Bildirim almak için e-posta adresinizi doğrulamanız gerekiyor", + "Your_certificate": "Sertifikanız", + "Your_invite_link_will_expire_after__usesLeft__uses": "Davet bağlantınızın geçerliliği {{usesLeft}} kullanımdan sonra sona erecek.", + "Your_invite_link_will_expire_on__date__or_after__usesLeft__uses": "Davet bağlantınızın geçerliliği {{date}} tarihinde veya {{usesLeft}} kullanımdan sonra sona erecek.", + "Your_invite_link_will_expire_on__date__": "Davet bağlantınızın geçerlilik süresi {{date}} tarihinde sona erecek.", + "Your_invite_link_will_never_expire": "Davet bağlantınızın geçerlilik süresi asla dolmayacak.", + "Your_workspace": "Çalışma alanınız", + "Your_password_is": "Şifreniz", + "Version_no": "Versiyon: {{version}}", + "You_will_not_be_able_to_recover_this_message": "Bu iletiyi kurtaramayacaksınız!", + "You_will_unset_a_certificate_for_this_server": "Bu sunucu için bir sertifika ayarını kaldıracaksınız", + "Change_Language": "Dili değiştir", + "Crash_report_disclaimer": "Sohbetlerinizin içeriğini asla takip etmiyoruz. Çökme raporu ve analiz olayları, sorunları tanımlamak ve düzeltmek için yalnızca bizim için ilgili bilgileri içerir.", + "Type_message": "İleti yaz", + "Room_search": "Oda arama", + "Room_selection": "Oda seçimi 1...9", + "Next_room": "Sonraki oda", + "Previous_room": "Önceki oda", + "New_room": "Yeni oda", + "Upload_room": "Odaya yükle", + "Search_messages": "İletilerda ara", + "Scroll_messages": "İletilerı kaydır", + "Reply_latest": "Sonuncuyu yanıtla", + "Reply_in_Thread": "Konu içinde cevapla", + "Server_selection": "Sunucu seçimi", + "Server_selection_numbers": "Sunucu seçimi 1...9", + "Add_server": "Sunucu ekle", + "New_line": "Yeni satır", + "You_will_be_logged_out_of_this_application": "Bu uygulamadan çıkış yapacaksınız.", + "Clear": "Temizle", + "This_will_clear_all_your_offline_data": "Bu, tüm çevrimdışı verilerinizi temizleyecektir.", + "This_will_remove_all_data_from_this_server": "Bu, bu sunucudaki tüm verileri kaldıracaktır.", + "Mark_unread": "Okunmadı olarak işaretle", + "Wait_activation_warning": "Giriş yapmadan önce, hesabınız bir yönetici tarafından manuel olarak etkinleştirilmelidir.", + "Screen_lock": "Ekran kilidi", + "Local_authentication_biometry_title": "Doğrula", + "Local_authentication_biometry_fallback": "Parola kullan", + "Local_authentication_unlock_option": "Şifre ile Kilidi Açın", + "Local_authentication_change_passcode": "Parolayı Değiştir", + "Local_authentication_info": "Not: Parolayı unutursanız, uygulamayı silmeniz ve yeniden yüklemeniz gerekir.", + "Local_authentication_facial_recognition": "yüz tanıma", + "Local_authentication_fingerprint": "parmak izi", + "Local_authentication_unlock_with_label": "{{label}} ile kilidi açın", + "Local_authentication_auto_lock_60": "1 dakika sonra", + "Local_authentication_auto_lock_300": "5 dakika sonra", + "Local_authentication_auto_lock_900": "15 dakika sonra", + "Local_authentication_auto_lock_1800": "30 dakika sonra", + "Local_authentication_auto_lock_3600": "1 saat sonra", + "Passcode_enter_title": "Şifrenizi giriniz", + "Passcode_choose_title": "Yeni şifrenizi yazın", + "Passcode_choose_confirm_title": "Yeni şifrenizi onaylayın", + "Passcode_choose_error": "Parolalar eşleşmiyor. Tekrar deneyin.", + "Passcode_choose_force_set": "Yönetici tarafından istenen şifre", + "Passcode_app_locked_title": "Uygulama kilitlendi", + "Passcode_app_locked_subtitle": "{{timeLeft}} saniye içinde tekrar deneyin", + "After_seconds_set_by_admin": "{{seconds}} saniye sonra (yönetici tarafından belirlenir)", + "Dont_activate": "Şimdi etkinleştirme", + "Queued_chats": "Sıralı sohbetler", + "Queue_is_empty": "Sıra boş", + "Logout_from_other_logged_in_locations": "Giriş yapılan diğer konumlardan çıkış yap", + "You_will_be_logged_out_from_other_locations": "Diğer konumlardan çıkış yapacaksınız.", + "Logged_out_of_other_clients_successfully": "Diğer istemcilerden başarıyla çıkış yapıldı", + "Logout_failed": "Oturum kapatma başarısız oldu!", + "Log_analytics_events": "Olayları günlüğe kaydet", + "E2E_encryption_change_password_title": "Şifreleme Parolasını Değiştir", + "E2E_encryption_change_password_description": "Artık şifrelenmiş özel gruplar ve doğrudan iletiler oluşturabilirsiniz. Mevcut özel grupları veya özel iletileri şifreli olarak da değiştirebilirsiniz. \nBu uçtan uca şifrelemedir, bu nedenle iletilerinizi şifrelemek / çözmek için kullanılan anahtar sunucuya kaydedilmez. Bu nedenle şifrenizi güvenli bir yerde saklamanız gerekir. Uçtan uca şifrelemeyi (E2E) kullanmak istediğiniz diğer cihazlara girmeniz istenecektir.", + "E2E_encryption_change_password_error": "Uçtan uca şifreleme (E2E) anahtar şifresi değiştirilirken hata!", + "E2E_encryption_change_password_success": "Uçtan uca şifreleme (E2E) anahtar şifresi başarıyla değiştirildi!", + "E2E_encryption_change_password_message": "Dikkatlice kaydettiğinizden emin olun.", + "E2E_encryption_change_password_confirmation": "Evet, değiştir!", + "E2E_encryption_reset_title": "Uçtan uca şifreleme (E2E) Anahtarını Sıfırla", + "E2E_encryption_reset_description": "Bu seçenek mevcut uçtan uca şifreleme (E2E) anahtarınızı kaldıracak ve oturumu kapatacaktır. \nTekrar oturum açtığınızda, Rocket.Chat size yeni bir anahtar oluşturacak ve çevrimiçi olarak bir veya daha fazla üyesi olan şifreli herhangi bir odaya erişiminizi geri yükleyecektir. \nUçtan uca şifrelemenin (E2E) doğası gereği Rocket.Chat, çevrimiçi üyesi olmayan hiçbir şifreli odaya erişimi geri yükleyemez.", + "E2E_encryption_reset_button": "Uçtan uca şifreleme (E2E) anahtarını sıfırla", + "E2E_encryption_reset_error": "Uçtan uca şifreleme (E2E) anahtarı sıfırlanırken hata!", + "E2E_encryption_reset_message": "Oturumunuz kapatılacak!", + "E2E_encryption_reset_confirmation": "Evet, sıfırla", + "Following": "Takip ediliyor", + "Threads_displaying_all": "Tüm konular görüntüleniyor", + "Threads_displaying_following": "Takip edilen konular görüntüleniyor", + "Threads_displaying_unread": "Okunmamış konular görüntüleniyor", + "No_threads": "Konu yok", + "No_threads_following": "Herhangi bir konuyu takip etmiyorsunuz", + "No_threads_unread": "Okunmamış konu yok", + "Messagebox_Send_to_channel": "Kanala gönder", + "Remove_from_room": "Odadan çıkar", + "Ignore": "Yok say", + "Unignore": "Yok sayma", + "User_has_been_ignored": "Kullanıcı yok sayıldı.", + "User_has_been_unignored": "Kullanıcı artık yok sayılmıyor.", + "User_has_been_removed_from_s": "Kullanıcı {{s}} alanından kaldırıldı.", + "User__username__is_now_a_leader_of__room_name_": "{{username}} kullanıcısı artık {{room_name}} lideridir.", + "User__username__is_now_a_moderator_of__room_name_": "{{username}} kullanıcısı artık bir {{room_name}} moderatörüdür.", + "User__username__is_now_a_owner_of__room_name_": "{{username}} kullanıcısı artık {{room_name}} adlı odanın sahibidir.", + "User__username__removed_from__room_name__leaders": "{{username}} adlı kullanıcı, {{room_name}} liderlerinden kaldırıldı.", + "User__username__removed_from__room_name__moderators": "{{username}} adlı kullanıcı, {{room_name}} moderatörlerinden kaldırıldı.", + "User__username__removed_from__room_name__owners": "{{username}} adlı kullanıcı, {{room_name}} sahiplerinden kaldırıldı.", + "The_user_will_be_removed_from_s": "Kullanıcı, {{s}} alanından kaldırılacak!", + "Yes_remove_user": "Evet, kullanıcıyı kaldır!", + "Direct_message": "Özel ileti", + "Message_Ignored": "İleti yok sayıldı. Görüntülemek için dokunun.", + "Enter_workspace_URL": "Çalışma alanı URL'nizi girin", + "Workspace_URL_Example": "Örn. sirketiniz.rocket.chat", + "invalid-room": "Geçersiz oda" +} diff --git a/app/i18n/locales/zh-CN.json b/app/i18n/locales/zh-CN.json index 4836d9a834..fd026bfdd5 100644 --- a/app/i18n/locales/zh-CN.json +++ b/app/i18n/locales/zh-CN.json @@ -1,681 +1,681 @@ { - "1_person_reacted": "1 人回复了", - "1_user": "1 位用户", - "error-action-not-allowed": "{{action}} 不允許", - "error-application-not-found": "找不到应用程式", - "error-archived-duplicate-name": "已有一个名为「{{room_name}}」的封存频道", - "error-avatar-invalid-url": "无效的头像网址:{{url}}", - "error-avatar-url-handling": "错误,无法将 {{username}} 的头像设置为URL({{url}})", - "error-cant-invite-for-direct-room": "无法邀请使用者进入私讯", - "error-could-not-change-email": "无法更改电子邮件", - "error-could-not-change-name": "无法更改名称", - "error-could-not-change-username": "无法更改使用者名称", - "error-could-not-change-status": "无法更改状态", - "error-delete-protected-role": "无法删除受保护的角色", - "error-department-not-found": "找不到部门", - "error-direct-message-file-upload-not-allowed": "私人对话中不允许档案分享", - "error-duplicate-channel-name": "名为「{{channel_name}}」的频道已存在", - "error-email-domain-blacklisted": "电子邮件网域被禁用", - "error-email-send-failed": "尝试发送电子邮件时出错:{{message}}", - "error-save-image": "错误,无法保存图片", - "error-save-video": "错误,无法保存視頻", - "error-field-unavailable": "{{field}} 已被使用 :(", - "error-file-too-large": "文件太大", - "error-importer-not-defined": "没有正确定义,它缺少汇入类型", - "error-input-is-not-a-valid-field": "{{input}} 不是合法的 {{field}}", - "error-invalid-actionlink": "无效的操作链接", - "error-invalid-arguments": "无效的参数", - "error-invalid-asset": "无效的资源", - "error-invalid-channel": "无效的频道", - "error-invalid-channel-start-with-chars": "无效的频道,请以 @ 或 # 开头", - "error-invalid-custom-field": "无效的自订字段", - "error-invalid-custom-field-name": "无效的自订字段名. 只能包含字母、数字、中线(-)及底线(_).", - "error-invalid-date": "无效的日期", - "error-invalid-description": "无效的描述", - "error-invalid-domain": "无效的域名", - "error-invalid-email": "无效的电子邮件{{email}}", - "error-invalid-email-address": "无效的邮件地址", - "error-invalid-file-height": "无效的文件长度", - "error-invalid-file-type": "无效的文件类型", - "error-invalid-file-width": "无效的文件宽度", - "error-invalid-from-address": "无效的地址", - "error-invalid-integration": "无效的整合", - "error-invalid-message": "无效的信息", - "error-invalid-method": "无效的方法", - "error-invalid-name": "无效的名称", - "error-invalid-password": "无效的密码", - "error-invalid-redirectUri": "无效的转址", - "error-invalid-role": "无效的角色", - "error-invalid-room": "无效的聊天室", - "error-invalid-room-name": "{{room_name}} 不是合法的聊天室名称", - "error-invalid-room-type": "{{type}} 不是合法的聊天室类型.", - "error-invalid-settings": "无效的设置", - "error-invalid-subscription": "无效的订阅", - "error-invalid-token": "无效的 token", - "error-invalid-triggerWords": "无效的关键字", - "error-invalid-urls": "无效的网址", - "error-invalid-user": "无效的使用者", - "error-invalid-username": "无效的使用者名称", - "error-invalid-webhook-response": "webhook 网址以200以外的状态响应", - "error-message-deleting-blocked": "信息删除已停用", - "error-message-editing-blocked": "信息编辑已停用", - "error-message-size-exceeded": "信息大小超出上限", - "error-missing-unsubscribe-link": "您必须提供[取消订阅]链接。", - "error-no-tokens-for-this-user": "这个用户没有Token", - "error-not-allowed": "不允许", - "error-not-authorized": "未授权", - "error-push-disabled": "推播已停用", - "error-remove-last-owner": "这是最后一个所有者。请在删除这个之前设置一个新所有者。", - "error-role-in-use": "无法删除正在使用中的角色", - "error-role-name-required": "角色名称是必須的", - "error-the-field-is-required": "字段 {{field}} 是必須的。", - "error-too-many-requests": "错误,请求太多。请慢一点。在再次尝试之前,必须等待{{seconds}}秒。", - "error-user-is-not-activated": "用户未被激活", - "error-user-has-no-roles": "用户未设定角色", - "error-user-limit-exceeded": "尝试邀请到 #channel_name 的用户数量超过了管理员设置的限制", - "error-user-not-in-room": "用户不在这个聊天室", - "error-user-registration-custom-field": "无效的自订注册栏位", - "error-user-registration-disabled": "已停用用户注册", - "error-user-registration-secret": "只能透过加密网址进行用戶注册", - "error-you-are-last-owner": "您是最后的拥有者。请删除此人之前设置一个新的拥有者。", - "Actions": "操作", - "activity": "活动时间", - "Activity": "按活动时间排列", - "Add_Reaction": "增加表情貼", - "Add_Server": "創建服务器", - "Add_users": "創建用户", - "Admin_Panel": "仪表板", - "Agent": "代理", - "Alert": "警报", - "alert": "警报", - "alerts": "警报", - "All_users_in_the_channel_can_write_new_messages": "频道中的所有用户都可以发送新信息", - "A_meaningful_name_for_the_discussion_room": "取一个有意义的讨论区的名称", - "All": "所有", - "All_Messages": "全部信息", - "Allow_Reactions": "允许表情贴", - "Alphabetical": "以名称排序", - "and_more": "和更多的", - "and": "和", - "announcement": "公告", - "Announcement": "公告", - "Apply_Your_Certificate": "使用自己的凭证", - "ARCHIVE": "封存", - "archive": "封存", - "are_typing": "正在输入", - "Are_you_sure_question_mark": "你确定吗?", - "Are_you_sure_you_want_to_leave_the_room": "你确定要离开聊天室 {{room}} 吗?", - "Audio": "音讯", - "Authenticating": "正在验证身份", - "Automatic": "自动", - "Auto_Translate": "自动翻译", - "Avatar_changed_successfully": "头像更新成功!", - "Avatar_Url": "头像地址", - "Away": "离开", - "Back": "返回", - "Black": "黑色", - "Block_user": "屏蔽此用户", - "Browser": "浏览器", - "Broadcast_channel_Description": "只有经过授权的用户才能写新信息,但其他用户可以回复", - "Broadcast_Channel": "广播频道", - "Busy": "忙碌", - "By_proceeding_you_are_agreeing": "继续操作,请同意我们的", - "Cancel_editing": "取消编辑", - "Cancel_recording": "取消录制", - "Cancel": "取消", - "changing_avatar": "更改头像", - "creating_channel": "创建频道", - "creating_invite": "创建邀请", - "Channel_Name": "频道名", - "Channels": "频道", - "Chats": "聊天", - "Call_already_ended": "通话已经结束!", - "Clear_cookies_alert": "是否清除所有 cookies?", - "Clear_cookies_desc": "本操作将清除所有登入 cookies,以登入其他帐号", - "Clear_cookies_yes": "是,清除 cookies", - "Clear_cookies_no": "否,保留 cookies", - "Click_to_join": "点击以参与", - "Close": "关闭", - "Close_emoji_selector": "关闭 emoji 选择器", - "Closing_chat": "结束聊天", - "Change_language_loading": "切换语言", - "Chat_closed_by_agent": "聊天已被客服关闭", - "Choose": "选择", - "Choose_from_library": "从媒体库选择", - "Choose_file": "选择文件", - "Choose_where_you_want_links_be_opened": "请选择您要将链接开启在", - "Code": "代码", - "Code_or_password_invalid": "验证码或密码不正确", - "Collaborative": "协作", - "Confirm": "确认", - "Connect": "连接", - "Connected": "已连接", - "connecting_server": "连接至服务器", - "Connecting": "连接中", - "Contact_us": "联系我们", - "Contact_your_server_admin": "请联络系统管理员", - "Continue_with": "继续采用", - "Copied_to_clipboard": "复制到剪贴板", - "Copy": "复制", - "Conversation": "对话", - "Permalink": "永久链接", - "Certificate_password": "凭证密码", - "Clear_cache": "清除本机资料", - "Clear_cache_loading": "清除快取", - "Whats_the_password_for_your_certificate": "您的凭证密码是?", - "Create_account": "创建账户", - "Create_Channel": "创建频道", - "Create_Direct_Messages": "新增私人讯息", - "Create_Discussion": "新增讨论区", - "Created_snippet": "新增程式码片段", - "Create_a_new_workspace": "创建一个新的工作区", - "Create": "创建", - "Custom_Status": "自订状态", - "Dark": "深色", - "Dark_level": "深色程度", - "Default": "默認", - "Default_browser": "预设浏览器", - "Delete_Room_Warning": "删除聊天室将连带删除其中所有信息。此操作将无法还原。", - "Department": "部门", - "delete": "删除", - "Delete": "删除", - "DELETE": "删除", - "deleting_room": "正在删除聊天室", - "description": "描述", - "Description": "描述", - "Desktop_Options": "桌面选项", - "Desktop_Notifications": "桌面通知", - "Desktop_Alert_info": "这些通知将发送至桌面", - "Directory": "目录", - "Direct_Messages": "私訊", - "Disable_notifications": "禁用信息通知", - "Discussions": "讨论区", - "Discussion_Desc": "帮助保持事态更新! 通过创建讨论,一个和所选频道双向关联的子频道将会被创建。", - "Discussion_name": "讨论区名称", - "Done": "完成", - "Dont_Have_An_Account": "还没有账号?", - "Do_you_have_an_account": "是否拥有帐号?", - "Do_you_have_a_certificate": "是否拥有凭证?", - "Do_you_really_want_to_key_this_room_question_mark": "您真的想要{{key}}这个聊天室吗?", - "E2E_Encryption": "E2E 加密", - "E2E_How_It_Works_info1": "您现在可以创建加密的专用组和直接消息。您也可以将现有的私人组或直接信息加密。", - "E2E_How_It_Works_info2": "这是點對點加密,因此编码/解码邮件的密钥不会保存在服务器上。因此,您需要将密码存储在安全的地方。您需要在希望使用點對點加密的其他设备上输入。", - "E2E_How_It_Works_info3": "如果继续,将自动生成一组 E2E 密码", - "E2E_How_It_Works_info4": "您也可以随时从已输入既有密码的任何浏览器设定新密码给您的加密金钥。", - "edit": "编辑", - "edited": "已编辑", - "Edit": "编辑", - "Edit_Status": "编辑状态", - "Edit_Invite": "编辑邀请", - "End_to_end_encrypted_room": "E2E 加密聊天室", - "end_to_end_encryption": "E2E 加密", - "Email_Notification_Mode_All": "每次被标记或私讯", - "Email_Notification_Mode_Disabled": "禁用", - "Email_or_password_field_is_empty": "邮件或密码字段为空", - "Email": "邮箱", - "email": "邮箱", - "Empty_title": "空白标题", - "Enable_Auto_Translate": "开启自动翻译", - "Enable_notifications": "开启信息通知", - "Encrypted": "已加密", - "Encrypted_message": "加密信息", - "Enter_Your_E2E_Password": "输入您的 E2E 密码", - "Enter_Your_Encryption_Password_desc1": "这将会允许您存取您的加密私人群组和私訊", - "Enter_Your_Encryption_Password_desc2": "您需要在任何使用此聊天的平台输入密码,以编码/解码您的信息", - "Encryption_error_title": "您的加密密码似乎有误", - "Encryption_error_desc": "无法使用汇入的加密密钥来解密", - "Everyone_can_access_this_channel": "每个人都可以访问此频道", - "Error_uploading": "错误上传", - "Expiration_Days": "到期 (日)", - "Favorite": "收藏", - "Favorites": "收藏", - "Files": "文件", - "File_description": "文件描述", - "File_name": "文件名称", - "Finish_recording": "完成录制", - "Following_thread": "追踪的讨论串", - "For_your_security_you_must_enter_your_current_password_to_continue": "出于安全考虑,您必须输入您的密码以便继续操作", - "Forgot_password_If_this_email_is_registered": "如果这邮箱已注册,我们将发送如何重置密码的说明。如果您没有在短时间内收到电子邮件,请再试一次。", - "Forgot_password": "忘记密码", - "Forgot_Password": "忘记密码", - "Forward": "转发", - "Forward_Chat": "转发聊天", - "Forward_to_department": "转发到部门", - "Forward_to_user": "转发给用戶", - "Full_table": "点击以查看完整表格", - "Generate_New_Link": "产生新的链接", - "Group_by_favorites": "收藏优先", - "Group_by_type": "以类型分组", - "Hide": "隐藏", - "Has_joined_the_channel": "已加入频道", - "Has_joined_the_conversation": "已经加入此对话", - "Has_left_the_channel": "已离开频道", - "Hide_System_Messages": "隐藏系统信息", - "Hide_type_messages": "隐藏 \"{{type}}\" 信息", - "How_It_Works": "运作方式", - "Message_HideType_uj": "隐藏“用戶加入”信息", - "Message_HideType_ul": "隐藏“用戶离开”信息", - "Message_HideType_ru": "隐藏“用戶已删除”信息", - "Message_HideType_au": "隐藏“用戶已增加”信息", - "Message_HideType_mute_unmute": "隐藏“用戶静音/取消静音”信息", - "Message_HideType_r": "隐藏“房间名称已更改”的信息", - "Message_HideType_ut": "隐藏“用戶已加入对话”的信息", - "Message_HideType_wm": "隐藏“欢迎”的信息", - "Message_HideType_rm": "隐藏“已删除信息”的信息", - "Message_HideType_subscription_role_added": "隐藏“已设置角色”的信息", - "Message_HideType_subscription_role_removed": "隐藏“不再定义的角色”的信息", - "Message_HideType_room_archived": "隐藏“聊天室已封存”的信息", - "Message_HideType_room_unarchived": "隐藏“聊天室未封存”的信息", - "I_Saved_My_E2E_Password": "保存我的 E2E 密码", - "IP": "IP", - "In_app": "App 内", - "In_App_And_Desktop": "App 内及桌面", - "In_App_and_Desktop_Alert_info": "打开 app 时,會在屏幕上方显示横幅;显示桌面通知", - "Invisible": "隐身", - "Invite": "邀请", - "is_a_valid_RocketChat_instance": "是一个有效的 Rocket.Chat 实例", - "is_not_a_valid_RocketChat_instance": "不是有效的 Rocket.Chat 实例", - "is_typing": "正在输入", - "Invalid_or_expired_invite_token": "无效或到期的邀请 token", - "Invalid_server_version": "此 App 版本已不支援您正在连线之服务器版本。当前版本: {{currentVersion}}.\\n\\n最低版本要求: {{minVersion}}", - "Invite_Link": "邀请链接", - "Invite_users": "邀请用戶", - "Join": "加入", - "Join_our_open_workspace": "加入开放工作区", - "Join_your_workspace": "加入您的工作区", - "Just_invited_people_can_access_this_channel": "仅有被邀请人能进入这个频道", - "Language": "语言", - "last_message": "最后一条信息", - "Leave_channel": "离开频道", - "leaving_room": "离开聊天室", - "leave": "离开", - "Legal": "合法", - "Light": "浅色", - "License": "授权条款", - "Livechat": "即时聊天", - "Livechat_edit": "即时聊天编辑", - "Login": "登陆", - "Login_error": "认证失败!请再试一次", - "Login_with": "登陆为", - "Logging_out": "正在登出", - "Logout": "注销", - "Max_number_of_uses": "最大使用次数", - "Max_number_of_users_allowed_is_number": "允许使用者上限数量{{maxUsers}}", - "members": "成员", - "Members": "成员", - "Mentioned_Messages": "被提及的信息", - "mentioned": "提到", - "Mentions": "被提及", - "Message_accessibility": "{{time}}来自{{user}}的消息: {{message}}", - "Message_actions": "信息操作", - "Message_pinned": "信息被钉选", - "Message_removed": "信息被删除", - "Message_starred": "信息被标注", - "Message_unstarred": "信息被取消标注", - "message": "信息", - "messages": "信息", - "Message": "信息", - "Messages": "信息", - "Message_Reported": "信息已举报", - "Microphone_Permission_Message": "Rocket.Chat 需要存取您的麦克风,以便发送音频信息。", - "Microphone_Permission": "麦克风授权", - "Mute": "静音", - "muted": "被静音", - "My_servers": "我的服务器", - "N_people_reacted": "{{n}} 人回复", - "N_users": "{{n}} 位用户", - "name": "名称", - "Name": "名称", - "Navigation_history": "浏览历史记录", - "Never": "从不", - "New_Message": "新信息", - "New_Password": "新密码", - "New_Server": "新服务器", - "Next": "下一步", - "No_files": "没有文件", - "No_limit": "没有限制", - "No_mentioned_messages": "没有被提及的信息", - "No_pinned_messages": "没有钉选的消息", - "No_results_found": "没有搜寻结果", - "No_starred_messages": "没有加星标的消息", - "No_thread_messages": "没有讨论串信息", - "No_label_provided": "没有提供 {{label}}", - "No_Message": "没有信息", - "No_messages_yet": "当前未有信息", - "No_Reactions": "没有表情貼", - "No_Read_Receipts": "没有已读人员", - "Not_logged": "没有记录", - "Not_RC_Server": "这不是一个 Rocket.Chat server.\\n{{contact}}", - "Nothing": "无", - "Nothing_to_save": "什么都没有保存!", - "Notify_active_in_this_room": "通知这个聊天室的活跃用户", - "Notify_all_in_this_room": "通知这个聊天室的所有人", - "Notifications": "通知", - "Notification_Duration": "通知持续时间", - "Notification_Preferences": "通知偏好设置", - "No_available_agents_to_transfer": "没有可用的代理进行传输", - "Offline": "离线", - "Oops": "哎呀!", - "Omnichannel": "Omnichannel", - "Open_Livechats": "打开即时聊天", - "Omnichannel_enable_alert": "您尚未启用 Omnichannel,是否想要启用?", - "Onboarding_description": "工作区是团队或组织协作的空间。向工作区管理员询问要加入的地址或为您的团队创建一个。", - "Onboarding_join_workspace": "加入一个工作区", - "Onboarding_subtitle": "超越团队合作", - "Onboarding_title": "欢迎来到 Rocket.Chat", - "Onboarding_join_open_description": "加入我们的开放工作区以与 Rocket.Chat 团队及社群交谈", - "Onboarding_agree_terms": "继续,即表示您同意 Rocket.Chat", - "Onboarding_less_options": "较少选项", - "Onboarding_more_options": "较多选项", - "Online": "在线", - "Only_authorized_users_can_write_new_messages": "只有经过授权的用户才能写新信息", - "Open_emoji_selector": "打开 emoji 选择器", - "Open_Source_Communication": "开源沟通", - "Open_your_authentication_app_and_enter_the_code": "打开您的验证应用程式并输入代码。您也可以使用其中一个备用代码。", - "OR": "或", - "OS": "作业系统", - "Overwrites_the_server_configuration_and_use_room_config": "覆写服务器设置和使用聊天室设置", - "Password": "密码", - "Parent_channel_or_group": "父频道或群组", - "Permalink_copied_to_clipboard": "永久链接已复制到剪贴板!", - "Phone": "电话", - "Pin": "钉选", - "Pinned_Messages": "钉选信息", - "pinned": "已被钉选", - "Pinned": "被钉选", - "Please_add_a_comment": "请新增评论", - "Please_enter_your_password": "请输入密码", - "Please_wait": "请稍候", - "Preferences": "偏好设置", - "Preferences_saved": "偏好已保存!", - "Privacy_Policy": "隐私政策", - "Private_Channel": "私人频道", - "Private": "私有的", - "Processing": "处理中", - "Profile_saved_successfully": "个人资料保存成功!", - "Profile": "个人资料", - "Public_Channel": "公共频道", - "Public": "公共", - "Push_Notifications": "推送通知", - "Push_Notifications_Alert_Info": "这些通知将在未开启 App 时发送给您", - "Quote": "引用", - "Reactions_are_disabled": "表情貼被禁用", - "Reactions_are_enabled": "表情貼被启用", - "Reactions": "表情貼", - "Read": "读取", - "Read_External_Permission_Message": "Rocket.Chat 需要存取您装置上的相片、多媒体及文件", - "Read_External_Permission": "读取媒体权限", - "Read_Only_Channel": "只读频道", - "Read_Only": "只读", - "Read_Receipt": "查看已读人员", - "Receive_Group_Mentions": "接收群组提及", - "Receive_Group_Mentions_Info": "接收@all和@here提及", - "Register": "注册", - "Repeat_Password": "重复输入密码", - "Replied_on": "回覆在", - "replies": "回覆", - "reply": "回复", - "Reply": "回复", - "Report": "举报", - "Receive_Notification": "接收通知", - "Receive_notifications_from": "接收来自 {{name}} 的通知", - "Resend": "重新发送", - "Reset_password": "重置密码", - "resetting_password": "正在重置密码", - "RESET": "重置", - "Return": "返回", - "Review_app_title": "对此 App 满意吗?", - "Review_app_desc": "请在 {{store}} 给予我们 5 星好评", - "Review_app_yes": "没问题", - "Review_app_no": "婉拒", - "Review_app_later": "之后再说", - "Review_app_unable_store": "无法开启 {{store}}", - "Review_this_app": "评分此 App", - "Remove": "移除", - "Roles": "角色", - "Room_actions": "聊天室操作", - "Room_changed_announcement": "{{userBy}}将聊天室通知改为:{{announcement}}", - "Room_changed_avatar": "Room avatar changed by {{userBy}}", - "Room_changed_description": "{{userBy}}将聊天室说明改为:{{description}}", - "Room_changed_privacy": "{{userBy}}将聊天室类型改为:{{type}}", - "Room_changed_topic": "{{userBy}}将聊天室主题改为:{{topic}}", - "Room_Files": "聊天室文件", - "Room_Info_Edit": "聊天室信息编辑", - "Room_Info": "聊天室信息", - "Room_Members": "聊天室成员", - "Room_name_changed": "{{userBy}} 将聊天室名称改为:{{name}}", - "SAVE": "保存", - "Save_Changes": "保存更改", - "Save": "保存", - "Saved": "保存", - "saving_preferences": "保存偏好設置", - "saving_profile": "保存配置文件", - "saving_settings": "保存设置", - "saved_to_gallery": "储存至图片库", - "Save_Your_E2E_Password": "储存您的 E2E 密码", - "Save_Your_Encryption_Password": "储存您的加密密码", - "Save_Your_Encryption_Password_warning": "此密码未被储存在任何地方,为此您必须安全存放您的密码", - "Save_Your_Encryption_Password_info": "请记住,如果你遗失了您的密码,您将无法存取您的信息并不可恢复", - "Search_Messages": "搜索信息", - "Search": "搜索", - "Search_by": "搜寻", - "Search_global_users": "搜寻全域用户", - "Search_global_users_description": "如果启用,您将可以搜寻其他公司、服务器上的任何用戶", - "Seconds": "{{second}} 秒", - "Security_and_privacy": "安全与隐私", - "Select_Avatar": "选择头像", - "Select_Server": "选择服务器", - "Select_Users": "选择用户", - "Select_a_Channel": "选择一个频道", - "Select_a_Department": "选择一个部门", - "Select_an_option": "选择一个选项", - "Select_a_User": "选择一个用戶", - "Send": "发送", - "Send_audio_message": "发送音频信息", - "Send_crash_report": "送出当机报告", - "Send_message": "发送信息", - "Send_me_the_code_again": "再次发送代码给我", - "Send_to": "发送到", - "Sending_to": "正发送到", - "Sent_an_attachment": "发送附件", - "Server": "服务器", - "Servers": "服务器", - "Server_version": "服务器版本: {{version}}", - "Set_username_subtitle": "用户名是用來让其他人在信息中提到您", - "Set_custom_status": "设定自订状态", - "Set_status": "设定状态", - "Status_saved_successfully": "状态储存成功", - "Settings": "设置", - "Settings_succesfully_changed": "设置更改成功!", - "Share": "分享", - "Share_Link": "分享链接", - "Share_this_app": "分享此 app", - "Show_more": "显示更多", - "Show_Unread_Counter": "显示未读信息数量", - "Show_Unread_Counter_Info": "显示未读信息数量资讯", - "Sign_in_your_server": "登录你的服务器", - "Sign_Up": "注册", - "Some_field_is_invalid_or_empty": "某些字段无效或为空", - "Sorting_by": "按{{key}}排序", - "Sound": "声音", - "Star_room": "将聊天室标记", - "Star": "标记", - "Starred_Messages": "标记的信息", - "starred": "被标记", - "Starred": "已标记", - "Start_of_conversation": "开始对话", - "Start_a_Discussion": "开始一个讨论", - "Started_discussion": "已开始的讨论", - "Started_call": "{{userBy}} 开始的通话", - "Submit": "提交", - "Table": "表格", - "Tags": "标签", - "Take_a_photo": "拍照", - "Take_a_video": "录影", - "Take_it": "拿去!", - "tap_to_change_status": "点按即可更改状态", - "Tap_to_view_servers_list": "点击查看服务器列表", - "Terms_of_Service": "服务条款", - "Theme": "布景主题", - "The_user_wont_be_able_to_type_in_roomName": "此用户将无法在 {{roomName}} 中输入", - "The_user_will_be_able_to_type_in_roomName": "此用户将可以在 {{roomName}} 中输入", - "There_was_an_error_while_action": "{{action}}出现错误!", - "This_room_is_blocked": "这个聊天室被锁了", - "This_room_is_read_only": "这个聊天室是只读的", - "Thread": "讨论串", - "Threads": "讨论串", - "Timezone": "时区", - "To": "到", - "topic": "主题", - "Topic": "主题", - "Translate": "翻译", - "Try_again": "再试一次", - "Two_Factor_Authentication": "双重认证", - "Type_the_channel_name_here": "在这里输入频道名称", - "unarchive": "取消封存", - "UNARCHIVE": "取消封存", - "Unblock_user": "解除屏蔽", - "Unfavorite": "取消收藏", - "Unfollowed_thread": "取消追踪讨论", - "Unmute": "取消静音", - "unmuted": "静音状态", - "Unpin": "取消钉选", - "unread_messages": "未读信息", - "Unread": "未读", - "Unread_on_top": "未读优先", - "Unstar": "取消标记", - "Updating": "正在更新", - "Uploading": "正在上传", - "Upload_file_question_mark": "上传文件?", - "User": "用戶", - "Users": "用戶", - "User_added_by": "由{{userBy}}添加的用户 {{userAdded}}", - "User_Info": "用戶资讯", - "User_has_been_key": "用户已被{{key}}", - "User_is_no_longer_role_by_": "{{userBy}}将角色 {{role}} 从用户 {{user}} 身上移除", - "User_muted_by": "用户 {{userMuted}} 被 {{userBy}} 静音", - "User_removed_by": "用户 {{userRemoved}} 被 {{userBy}} 移除", - "User_sent_an_attachment": "{{user}} 寄送了一个附件", - "User_unmuted_by": "用户 {{userUnmuted}} 被 {{userBy}} 取消静音", - "User_was_set_role_by_": "用户 {{user}} 被 {{userBy}} 设置角色 {{role}}", - "Username_is_empty": "用户名是空的", - "Username": "用户名", - "Username_or_email": "用户名或邮箱", - "Uses_server_configuration": "使用服务器设置", - "Validating": "正在验证", - "Registration_Succeeded": "注册成功", - "Verify": "验证", - "Verify_email_title": "注册成功", - "Verify_email_desc": "我们已经送出一封电子邮件,以确认您的注册。如果您没有很快收到,请再试一次。", - "Verify_your_email_for_the_code_we_sent": "检查您的电子邮件以取得我们发送的代码", - "Video_call": "视频电话", - "View_Original": "检视原文", - "Voice_call": "语音电话", - "Waiting_for_network": "等待网路连接", - "Websocket_disabled": "Websocket 已于此伺服器上禁用。 \\n{{contact}}", - "Welcome": "欢迎", - "What_are_you_doing_right_now": "现在在做些什么?", - "Whats_your_2fa": "您的 2FA 代码是?", - "Without_Servers": "未连接至服务器", - "Workspaces": "工作区", - "Would_you_like_to_return_the_inquiry": "你想回覆询问吗?", - "Write_External_Permission_Message": "Rocket.Chat 需要您图片库的存取权限以储存图片。", - "Write_External_Permission": "图片库权限", - "Yes": "是", - "Yes_action_it": "是的,{{action}}它!", - "Yesterday": "昨天", - "You_are_in_preview_mode": "您处于预览模式", - "You_are_offline": "您处于离线状态", - "You_can_search_using_RegExp_eg": "您可用 RegExp 进行搜索。 例如`/^text$/i`", - "You_colon": "你:", - "you_were_mentioned": "你被提到了", - "You_were_removed_from_channel": "您已从 {{channel}} 中被踢除", - "you": "你", - "You": "你", - "Logged_out_by_server": "服务器端已将你注销,请重新登入", - "You_need_to_access_at_least_one_RocketChat_server_to_share_something": "您需要访问至少一台Rocket.Chat服务器才能共享某些内容。", - "You_need_to_verifiy_your_email_address_to_get_notications": "您需要先验证您的邮箱以启用通知", - "Your_certificate": "你的证书", - "Your_invite_link_will_expire_after__usesLeft__uses": "您的邀请链接将在{{usesLeft}}使用后到期。", - "Your_invite_link_will_expire_on__date__or_after__usesLeft__uses": "您的邀请链接将于{{date}}或{{usesLeft}}使用后到期。", - "Your_invite_link_will_expire_on__date__": "您的邀请链接将于{{date}}到期。", - "Your_invite_link_will_never_expire": "您的邀请链接永久有效。", - "Your_workspace": "您的工作区", - "Your_password_is": "您的密码", - "Version_no": "版本: {{version}}", - "You_will_not_be_able_to_recover_this_message": "您将无法恢复此信息!", - "You_will_unset_a_certificate_for_this_server": "您将取消此服务器的凭证设定", - "Change_Language": "切换语言", - "Crash_report_disclaimer": "我们从不记录您的聊天内容。 崩溃报告和分析事件仅与 Rocket.Chat 有关,以便识别和修复问题。", - "Type_message": "输入信息", - "Room_search": "搜索聊天室", - "Room_selection": "选择房间(输入 1...9)", - "Next_room": "下一个聊天室", - "Previous_room": "上一个聊天室", - "New_room": "新聊天室", - "Upload_room": "上传至聊天室", - "Search_messages": "搜索信息", - "Scroll_messages": "信息滚动", - "Reply_latest": "回覆最新信息", - "Reply_in_Thread": "讨论串回覆", - "Server_selection": "选择服务器", - "Server_selection_numbers": "选择服务器(输入 1...9)", - "Add_server": "創建服务器", - "New_line": "新的一行", - "You_will_be_logged_out_of_this_application": "您即将登出", - "Clear": "清除", - "This_will_clear_all_your_offline_data": "这将清除您的所有离线资料。", - "This_will_remove_all_data_from_this_server": "这将从该服务器中删除所有数据。", - "Mark_unread": "标记未读", - "Wait_activation_warning": "您的帐号必须由管理员手动启用后才能登入。", - "Screen_lock": "鎖屏", - "Local_authentication_biometry_title": "验证", - "Local_authentication_biometry_fallback": "使用通关密码", - "Local_authentication_unlock_option": "以通关密码解锁", - "Local_authentication_change_passcode": "变更通关密码", - "Local_authentication_info": "注: 如果您忘记了通关密码,将需要移除并重新安装此 App", - "Local_authentication_facial_recognition": "脸部辨识", - "Local_authentication_fingerprint": "指纹辨识", - "Local_authentication_unlock_with_label": "以 {{label}} 解锁", - "Local_authentication_auto_lock_60": "1分钟后", - "Local_authentication_auto_lock_300": "5分钟后", - "Local_authentication_auto_lock_900": "15分钟后", - "Local_authentication_auto_lock_1800": "半小时后", - "Local_authentication_auto_lock_3600": "一小时后", - "Passcode_enter_title": "请输入通关密码", - "Passcode_choose_title": "请输入新通关密码", - "Passcode_choose_confirm_title": "请确认新通关密码", - "Passcode_choose_error": "不正确的通关密码,请再试一次", - "Passcode_choose_force_set": "管理员设置必填", - "Passcode_app_locked_title": "App 已锁定", - "Passcode_app_locked_subtitle": "{{timeLeft}} 秒后再进行尝试", - "After_seconds_set_by_admin": "{{seconds}} 秒 (管理员设定)", - "Dont_activate": "現在不要激活", - "Queued_chats": "聊天队列", - "Queue_is_empty": "队列是空的", - "Logout_from_other_logged_in_locations": "注销其他已登陆的设备", - "You_will_be_logged_out_from_other_locations": "您将于其他设备上注销", - "Logged_out_of_other_clients_successfully": "成功登出其他用户端", - "Logout_failed": "注销失败", - "Log_analytics_events": "日志分析事件", - "E2E_encryption_change_password_title": "变更加密密码", - "E2E_encryption_change_password_description": "现在您可以建立加密私人群组和私讯。您也可以变更已存在的私人群组或是私讯来加密。 \\n\\n这是点对点的加密,所以用来加密/解密的金钥将不会储存到伺服器上。为此,您必须安全存放您的密码。如果您希望在其他装置上使用对点加密时,将会需要输入此密码。", - "E2E_encryption_change_password_error": "变更 E2E 密码时发生错误!", - "E2E_encryption_change_password_success": "E2E 密码已成功变更!", - "E2E_encryption_change_password_message": "请确定您已将其安全存放至别处", - "E2E_encryption_change_password_confirmation": "是,我要变更", - "E2E_encryption_reset_title": "重设 E2E 金钥", - "E2E_encryption_reset_description": "此选项将撤销您目前的*E2E 金钥*并将您登出。 \\n当您再次登入时,Rocket.Chat 将产生新的一组金钥并恢复您对任一有在线成员的加密聊天室之存取权限。 \\n由于 E2E 加密的特性,Rocket.Chat 无法恢复无在线成员之聊天室之存取权限。", - "E2E_encryption_reset_button": "重设", - "E2E_encryption_reset_error": "重设 E2E 金钥时发生错误!", - "E2E_encryption_reset_message": "您将被登出", - "E2E_encryption_reset_confirmation": "是,我要重设", - "Following": "正在追踪", - "Threads_displaying_all": "显示全部", - "Threads_displaying_following": "显示追踪中", - "Threads_displaying_unread": "显示未读", - "No_threads": "当前没有讨论串", - "No_threads_following": "当前没有正在追踪的讨论", - "No_threads_unread": "当前没有未读的讨论", - "Messagebox_Send_to_channel": "发送至频道" -} \ No newline at end of file + "1_person_reacted": "1 人回复了", + "1_user": "1 位用户", + "error-action-not-allowed": "{{action}} 不允許", + "error-application-not-found": "找不到应用程式", + "error-archived-duplicate-name": "已有一个名为「{{room_name}}」的封存频道", + "error-avatar-invalid-url": "无效的头像网址:{{url}}", + "error-avatar-url-handling": "错误,无法将 {{username}} 的头像设置为URL({{url}})", + "error-cant-invite-for-direct-room": "无法邀请使用者进入私讯", + "error-could-not-change-email": "无法更改电子邮件", + "error-could-not-change-name": "无法更改名称", + "error-could-not-change-username": "无法更改使用者名称", + "error-could-not-change-status": "无法更改状态", + "error-delete-protected-role": "无法删除受保护的角色", + "error-department-not-found": "找不到部门", + "error-direct-message-file-upload-not-allowed": "私人对话中不允许档案分享", + "error-duplicate-channel-name": "名为「{{channel_name}}」的频道已存在", + "error-email-domain-blacklisted": "电子邮件网域被禁用", + "error-email-send-failed": "尝试发送电子邮件时出错:{{message}}", + "error-save-image": "错误,无法保存图片", + "error-save-video": "错误,无法保存視頻", + "error-field-unavailable": "{{field}} 已被使用 :(", + "error-file-too-large": "文件太大", + "error-importer-not-defined": "没有正确定义,它缺少汇入类型", + "error-input-is-not-a-valid-field": "{{input}} 不是合法的 {{field}}", + "error-invalid-actionlink": "无效的操作链接", + "error-invalid-arguments": "无效的参数", + "error-invalid-asset": "无效的资源", + "error-invalid-channel": "无效的频道", + "error-invalid-channel-start-with-chars": "无效的频道,请以 @ 或 # 开头", + "error-invalid-custom-field": "无效的自订字段", + "error-invalid-custom-field-name": "无效的自订字段名. 只能包含字母、数字、中线(-)及底线(_).", + "error-invalid-date": "无效的日期", + "error-invalid-description": "无效的描述", + "error-invalid-domain": "无效的域名", + "error-invalid-email": "无效的电子邮件{{email}}", + "error-invalid-email-address": "无效的邮件地址", + "error-invalid-file-height": "无效的文件长度", + "error-invalid-file-type": "无效的文件类型", + "error-invalid-file-width": "无效的文件宽度", + "error-invalid-from-address": "无效的地址", + "error-invalid-integration": "无效的整合", + "error-invalid-message": "无效的信息", + "error-invalid-method": "无效的方法", + "error-invalid-name": "无效的名称", + "error-invalid-password": "无效的密码", + "error-invalid-redirectUri": "无效的转址", + "error-invalid-role": "无效的角色", + "error-invalid-room": "无效的聊天室", + "error-invalid-room-name": "{{room_name}} 不是合法的聊天室名称", + "error-invalid-room-type": "{{type}} 不是合法的聊天室类型.", + "error-invalid-settings": "无效的设置", + "error-invalid-subscription": "无效的订阅", + "error-invalid-token": "无效的 token", + "error-invalid-triggerWords": "无效的关键字", + "error-invalid-urls": "无效的网址", + "error-invalid-user": "无效的使用者", + "error-invalid-username": "无效的使用者名称", + "error-invalid-webhook-response": "webhook 网址以200以外的状态响应", + "error-message-deleting-blocked": "信息删除已停用", + "error-message-editing-blocked": "信息编辑已停用", + "error-message-size-exceeded": "信息大小超出上限", + "error-missing-unsubscribe-link": "您必须提供[取消订阅]链接。", + "error-no-tokens-for-this-user": "这个用户没有Token", + "error-not-allowed": "不允许", + "error-not-authorized": "未授权", + "error-push-disabled": "推播已停用", + "error-remove-last-owner": "这是最后一个所有者。请在删除这个之前设置一个新所有者。", + "error-role-in-use": "无法删除正在使用中的角色", + "error-role-name-required": "角色名称是必須的", + "error-the-field-is-required": "字段 {{field}} 是必須的。", + "error-too-many-requests": "错误,请求太多。请慢一点。在再次尝试之前,必须等待{{seconds}}秒。", + "error-user-is-not-activated": "用户未被激活", + "error-user-has-no-roles": "用户未设定角色", + "error-user-limit-exceeded": "尝试邀请到 #channel_name 的用户数量超过了管理员设置的限制", + "error-user-not-in-room": "用户不在这个聊天室", + "error-user-registration-custom-field": "无效的自订注册栏位", + "error-user-registration-disabled": "已停用用户注册", + "error-user-registration-secret": "只能透过加密网址进行用戶注册", + "error-you-are-last-owner": "您是最后的拥有者。请删除此人之前设置一个新的拥有者。", + "Actions": "操作", + "activity": "活动时间", + "Activity": "按活动时间排列", + "Add_Reaction": "增加表情貼", + "Add_Server": "創建服务器", + "Add_users": "創建用户", + "Admin_Panel": "仪表板", + "Agent": "代理", + "Alert": "警报", + "alert": "警报", + "alerts": "警报", + "All_users_in_the_channel_can_write_new_messages": "频道中的所有用户都可以发送新信息", + "A_meaningful_name_for_the_discussion_room": "取一个有意义的讨论区的名称", + "All": "所有", + "All_Messages": "全部信息", + "Allow_Reactions": "允许表情贴", + "Alphabetical": "以名称排序", + "and_more": "和更多的", + "and": "和", + "announcement": "公告", + "Announcement": "公告", + "Apply_Your_Certificate": "使用自己的凭证", + "ARCHIVE": "封存", + "archive": "封存", + "are_typing": "正在输入", + "Are_you_sure_question_mark": "你确定吗?", + "Are_you_sure_you_want_to_leave_the_room": "你确定要离开聊天室 {{room}} 吗?", + "Audio": "音讯", + "Authenticating": "正在验证身份", + "Automatic": "自动", + "Auto_Translate": "自动翻译", + "Avatar_changed_successfully": "头像更新成功!", + "Avatar_Url": "头像地址", + "Away": "离开", + "Back": "返回", + "Black": "黑色", + "Block_user": "屏蔽此用户", + "Browser": "浏览器", + "Broadcast_channel_Description": "只有经过授权的用户才能写新信息,但其他用户可以回复", + "Broadcast_Channel": "广播频道", + "Busy": "忙碌", + "By_proceeding_you_are_agreeing": "继续操作,请同意我们的", + "Cancel_editing": "取消编辑", + "Cancel_recording": "取消录制", + "Cancel": "取消", + "changing_avatar": "更改头像", + "creating_channel": "创建频道", + "creating_invite": "创建邀请", + "Channel_Name": "频道名", + "Channels": "频道", + "Chats": "聊天", + "Call_already_ended": "通话已经结束!", + "Clear_cookies_alert": "是否清除所有 cookies?", + "Clear_cookies_desc": "本操作将清除所有登入 cookies,以登入其他帐号", + "Clear_cookies_yes": "是,清除 cookies", + "Clear_cookies_no": "否,保留 cookies", + "Click_to_join": "点击以参与", + "Close": "关闭", + "Close_emoji_selector": "关闭 emoji 选择器", + "Closing_chat": "结束聊天", + "Change_language_loading": "切换语言", + "Chat_closed_by_agent": "聊天已被客服关闭", + "Choose": "选择", + "Choose_from_library": "从媒体库选择", + "Choose_file": "选择文件", + "Choose_where_you_want_links_be_opened": "请选择您要将链接开启在", + "Code": "代码", + "Code_or_password_invalid": "验证码或密码不正确", + "Collaborative": "协作", + "Confirm": "确认", + "Connect": "连接", + "Connected": "已连接", + "connecting_server": "连接至服务器", + "Connecting": "连接中", + "Contact_us": "联系我们", + "Contact_your_server_admin": "请联络系统管理员", + "Continue_with": "继续采用", + "Copied_to_clipboard": "复制到剪贴板", + "Copy": "复制", + "Conversation": "对话", + "Permalink": "永久链接", + "Certificate_password": "凭证密码", + "Clear_cache": "清除本机资料", + "Clear_cache_loading": "清除快取", + "Whats_the_password_for_your_certificate": "您的凭证密码是?", + "Create_account": "创建账户", + "Create_Channel": "创建频道", + "Create_Direct_Messages": "新增私人讯息", + "Create_Discussion": "新增讨论区", + "Created_snippet": "新增程式码片段", + "Create_a_new_workspace": "创建一个新的工作区", + "Create": "创建", + "Custom_Status": "自订状态", + "Dark": "深色", + "Dark_level": "深色程度", + "Default": "默認", + "Default_browser": "预设浏览器", + "Delete_Room_Warning": "删除聊天室将连带删除其中所有信息。此操作将无法还原。", + "Department": "部门", + "delete": "删除", + "Delete": "删除", + "DELETE": "删除", + "deleting_room": "正在删除聊天室", + "description": "描述", + "Description": "描述", + "Desktop_Options": "桌面选项", + "Desktop_Notifications": "桌面通知", + "Desktop_Alert_info": "这些通知将发送至桌面", + "Directory": "目录", + "Direct_Messages": "私訊", + "Disable_notifications": "禁用信息通知", + "Discussions": "讨论区", + "Discussion_Desc": "帮助保持事态更新! 通过创建讨论,一个和所选频道双向关联的子频道将会被创建。", + "Discussion_name": "讨论区名称", + "Done": "完成", + "Dont_Have_An_Account": "还没有账号?", + "Do_you_have_an_account": "是否拥有帐号?", + "Do_you_have_a_certificate": "是否拥有凭证?", + "Do_you_really_want_to_key_this_room_question_mark": "您真的想要{{key}}这个聊天室吗?", + "E2E_Encryption": "E2E 加密", + "E2E_How_It_Works_info1": "您现在可以创建加密的专用组和直接消息。您也可以将现有的私人组或直接信息加密。", + "E2E_How_It_Works_info2": "这是點對點加密,因此编码/解码邮件的密钥不会保存在服务器上。因此,您需要将密码存储在安全的地方。您需要在希望使用點對點加密的其他设备上输入。", + "E2E_How_It_Works_info3": "如果继续,将自动生成一组 E2E 密码", + "E2E_How_It_Works_info4": "您也可以随时从已输入既有密码的任何浏览器设定新密码给您的加密金钥。", + "edit": "编辑", + "edited": "已编辑", + "Edit": "编辑", + "Edit_Status": "编辑状态", + "Edit_Invite": "编辑邀请", + "End_to_end_encrypted_room": "E2E 加密聊天室", + "end_to_end_encryption": "E2E 加密", + "Email_Notification_Mode_All": "每次被标记或私讯", + "Email_Notification_Mode_Disabled": "禁用", + "Email_or_password_field_is_empty": "邮件或密码字段为空", + "Email": "邮箱", + "email": "邮箱", + "Empty_title": "空白标题", + "Enable_Auto_Translate": "开启自动翻译", + "Enable_notifications": "开启信息通知", + "Encrypted": "已加密", + "Encrypted_message": "加密信息", + "Enter_Your_E2E_Password": "输入您的 E2E 密码", + "Enter_Your_Encryption_Password_desc1": "这将会允许您存取您的加密私人群组和私訊", + "Enter_Your_Encryption_Password_desc2": "您需要在任何使用此聊天的平台输入密码,以编码/解码您的信息", + "Encryption_error_title": "您的加密密码似乎有误", + "Encryption_error_desc": "无法使用汇入的加密密钥来解密", + "Everyone_can_access_this_channel": "每个人都可以访问此频道", + "Error_uploading": "错误上传", + "Expiration_Days": "到期 (日)", + "Favorite": "收藏", + "Favorites": "收藏", + "Files": "文件", + "File_description": "文件描述", + "File_name": "文件名称", + "Finish_recording": "完成录制", + "Following_thread": "追踪的讨论串", + "For_your_security_you_must_enter_your_current_password_to_continue": "出于安全考虑,您必须输入您的密码以便继续操作", + "Forgot_password_If_this_email_is_registered": "如果这邮箱已注册,我们将发送如何重置密码的说明。如果您没有在短时间内收到电子邮件,请再试一次。", + "Forgot_password": "忘记密码", + "Forgot_Password": "忘记密码", + "Forward": "转发", + "Forward_Chat": "转发聊天", + "Forward_to_department": "转发到部门", + "Forward_to_user": "转发给用戶", + "Full_table": "点击以查看完整表格", + "Generate_New_Link": "产生新的链接", + "Group_by_favorites": "收藏优先", + "Group_by_type": "以类型分组", + "Hide": "隐藏", + "Has_joined_the_channel": "已加入频道", + "Has_joined_the_conversation": "已经加入此对话", + "Has_left_the_channel": "已离开频道", + "Hide_System_Messages": "隐藏系统信息", + "Hide_type_messages": "隐藏 \"{{type}}\" 信息", + "How_It_Works": "运作方式", + "Message_HideType_uj": "隐藏“用戶加入”信息", + "Message_HideType_ul": "隐藏“用戶离开”信息", + "Message_HideType_ru": "隐藏“用戶已删除”信息", + "Message_HideType_au": "隐藏“用戶已增加”信息", + "Message_HideType_mute_unmute": "隐藏“用戶静音/取消静音”信息", + "Message_HideType_r": "隐藏“房间名称已更改”的信息", + "Message_HideType_ut": "隐藏“用戶已加入对话”的信息", + "Message_HideType_wm": "隐藏“欢迎”的信息", + "Message_HideType_rm": "隐藏“已删除信息”的信息", + "Message_HideType_subscription_role_added": "隐藏“已设置角色”的信息", + "Message_HideType_subscription_role_removed": "隐藏“不再定义的角色”的信息", + "Message_HideType_room_archived": "隐藏“聊天室已封存”的信息", + "Message_HideType_room_unarchived": "隐藏“聊天室未封存”的信息", + "I_Saved_My_E2E_Password": "保存我的 E2E 密码", + "IP": "IP", + "In_app": "App 内", + "In_App_And_Desktop": "App 内及桌面", + "In_App_and_Desktop_Alert_info": "打开 app 时,會在屏幕上方显示横幅;显示桌面通知", + "Invisible": "隐身", + "Invite": "邀请", + "is_a_valid_RocketChat_instance": "是一个有效的 Rocket.Chat 实例", + "is_not_a_valid_RocketChat_instance": "不是有效的 Rocket.Chat 实例", + "is_typing": "正在输入", + "Invalid_or_expired_invite_token": "无效或到期的邀请 token", + "Invalid_server_version": "此 App 版本已不支援您正在连线之服务器版本。当前版本: {{currentVersion}}.\\n\\n最低版本要求: {{minVersion}}", + "Invite_Link": "邀请链接", + "Invite_users": "邀请用戶", + "Join": "加入", + "Join_our_open_workspace": "加入开放工作区", + "Join_your_workspace": "加入您的工作区", + "Just_invited_people_can_access_this_channel": "仅有被邀请人能进入这个频道", + "Language": "语言", + "last_message": "最后一条信息", + "Leave_channel": "离开频道", + "leaving_room": "离开聊天室", + "leave": "离开", + "Legal": "合法", + "Light": "浅色", + "License": "授权条款", + "Livechat": "即时聊天", + "Livechat_edit": "即时聊天编辑", + "Login": "登陆", + "Login_error": "认证失败!请再试一次", + "Login_with": "登陆为", + "Logging_out": "正在登出", + "Logout": "注销", + "Max_number_of_uses": "最大使用次数", + "Max_number_of_users_allowed_is_number": "允许使用者上限数量{{maxUsers}}", + "members": "成员", + "Members": "成员", + "Mentioned_Messages": "被提及的信息", + "mentioned": "提到", + "Mentions": "被提及", + "Message_accessibility": "{{time}}来自{{user}}的消息: {{message}}", + "Message_actions": "信息操作", + "Message_pinned": "信息被钉选", + "Message_removed": "信息被删除", + "Message_starred": "信息被标注", + "Message_unstarred": "信息被取消标注", + "message": "信息", + "messages": "信息", + "Message": "信息", + "Messages": "信息", + "Message_Reported": "信息已举报", + "Microphone_Permission_Message": "Rocket.Chat 需要存取您的麦克风,以便发送音频信息。", + "Microphone_Permission": "麦克风授权", + "Mute": "静音", + "muted": "被静音", + "My_servers": "我的服务器", + "N_people_reacted": "{{n}} 人回复", + "N_users": "{{n}} 位用户", + "name": "名称", + "Name": "名称", + "Navigation_history": "浏览历史记录", + "Never": "从不", + "New_Message": "新信息", + "New_Password": "新密码", + "New_Server": "新服务器", + "Next": "下一步", + "No_files": "没有文件", + "No_limit": "没有限制", + "No_mentioned_messages": "没有被提及的信息", + "No_pinned_messages": "没有钉选的消息", + "No_results_found": "没有搜寻结果", + "No_starred_messages": "没有加星标的消息", + "No_thread_messages": "没有讨论串信息", + "No_label_provided": "没有提供 {{label}}", + "No_Message": "没有信息", + "No_messages_yet": "当前未有信息", + "No_Reactions": "没有表情貼", + "No_Read_Receipts": "没有已读人员", + "Not_logged": "没有记录", + "Not_RC_Server": "这不是一个 Rocket.Chat server.\\n{{contact}}", + "Nothing": "无", + "Nothing_to_save": "什么都没有保存!", + "Notify_active_in_this_room": "通知这个聊天室的活跃用户", + "Notify_all_in_this_room": "通知这个聊天室的所有人", + "Notifications": "通知", + "Notification_Duration": "通知持续时间", + "Notification_Preferences": "通知偏好设置", + "No_available_agents_to_transfer": "没有可用的代理进行传输", + "Offline": "离线", + "Oops": "哎呀!", + "Omnichannel": "Omnichannel", + "Open_Livechats": "打开即时聊天", + "Omnichannel_enable_alert": "您尚未启用 Omnichannel,是否想要启用?", + "Onboarding_description": "工作区是团队或组织协作的空间。向工作区管理员询问要加入的地址或为您的团队创建一个。", + "Onboarding_join_workspace": "加入一个工作区", + "Onboarding_subtitle": "超越团队合作", + "Onboarding_title": "欢迎来到 Rocket.Chat", + "Onboarding_join_open_description": "加入我们的开放工作区以与 Rocket.Chat 团队及社群交谈", + "Onboarding_agree_terms": "继续,即表示您同意 Rocket.Chat", + "Onboarding_less_options": "较少选项", + "Onboarding_more_options": "较多选项", + "Online": "在线", + "Only_authorized_users_can_write_new_messages": "只有经过授权的用户才能写新信息", + "Open_emoji_selector": "打开 emoji 选择器", + "Open_Source_Communication": "开源沟通", + "Open_your_authentication_app_and_enter_the_code": "打开您的验证应用程式并输入代码。您也可以使用其中一个备用代码。", + "OR": "或", + "OS": "作业系统", + "Overwrites_the_server_configuration_and_use_room_config": "覆写服务器设置和使用聊天室设置", + "Password": "密码", + "Parent_channel_or_group": "父频道或群组", + "Permalink_copied_to_clipboard": "永久链接已复制到剪贴板!", + "Phone": "电话", + "Pin": "钉选", + "Pinned_Messages": "钉选信息", + "pinned": "已被钉选", + "Pinned": "被钉选", + "Please_add_a_comment": "请新增评论", + "Please_enter_your_password": "请输入密码", + "Please_wait": "请稍候", + "Preferences": "偏好设置", + "Preferences_saved": "偏好已保存!", + "Privacy_Policy": "隐私政策", + "Private_Channel": "私人频道", + "Private": "私有的", + "Processing": "处理中", + "Profile_saved_successfully": "个人资料保存成功!", + "Profile": "个人资料", + "Public_Channel": "公共频道", + "Public": "公共", + "Push_Notifications": "推送通知", + "Push_Notifications_Alert_Info": "这些通知将在未开启 App 时发送给您", + "Quote": "引用", + "Reactions_are_disabled": "表情貼被禁用", + "Reactions_are_enabled": "表情貼被启用", + "Reactions": "表情貼", + "Read": "读取", + "Read_External_Permission_Message": "Rocket.Chat 需要存取您装置上的相片、多媒体及文件", + "Read_External_Permission": "读取媒体权限", + "Read_Only_Channel": "只读频道", + "Read_Only": "只读", + "Read_Receipt": "查看已读人员", + "Receive_Group_Mentions": "接收群组提及", + "Receive_Group_Mentions_Info": "接收@all和@here提及", + "Register": "注册", + "Repeat_Password": "重复输入密码", + "Replied_on": "回覆在", + "replies": "回覆", + "reply": "回复", + "Reply": "回复", + "Report": "举报", + "Receive_Notification": "接收通知", + "Receive_notifications_from": "接收来自 {{name}} 的通知", + "Resend": "重新发送", + "Reset_password": "重置密码", + "resetting_password": "正在重置密码", + "RESET": "重置", + "Return": "返回", + "Review_app_title": "对此 App 满意吗?", + "Review_app_desc": "请在 {{store}} 给予我们 5 星好评", + "Review_app_yes": "没问题", + "Review_app_no": "婉拒", + "Review_app_later": "之后再说", + "Review_app_unable_store": "无法开启 {{store}}", + "Review_this_app": "评分此 App", + "Remove": "移除", + "Roles": "角色", + "Room_actions": "聊天室操作", + "Room_changed_announcement": "{{userBy}}将聊天室通知改为:{{announcement}}", + "Room_changed_avatar": "Room avatar changed by {{userBy}}", + "Room_changed_description": "{{userBy}}将聊天室说明改为:{{description}}", + "Room_changed_privacy": "{{userBy}}将聊天室类型改为:{{type}}", + "Room_changed_topic": "{{userBy}}将聊天室主题改为:{{topic}}", + "Room_Files": "聊天室文件", + "Room_Info_Edit": "聊天室信息编辑", + "Room_Info": "聊天室信息", + "Room_Members": "聊天室成员", + "Room_name_changed": "{{userBy}} 将聊天室名称改为:{{name}}", + "SAVE": "保存", + "Save_Changes": "保存更改", + "Save": "保存", + "Saved": "保存", + "saving_preferences": "保存偏好設置", + "saving_profile": "保存配置文件", + "saving_settings": "保存设置", + "saved_to_gallery": "储存至图片库", + "Save_Your_E2E_Password": "储存您的 E2E 密码", + "Save_Your_Encryption_Password": "储存您的加密密码", + "Save_Your_Encryption_Password_warning": "此密码未被储存在任何地方,为此您必须安全存放您的密码", + "Save_Your_Encryption_Password_info": "请记住,如果你遗失了您的密码,您将无法存取您的信息并不可恢复", + "Search_Messages": "搜索信息", + "Search": "搜索", + "Search_by": "搜寻", + "Search_global_users": "搜寻全域用户", + "Search_global_users_description": "如果启用,您将可以搜寻其他公司、服务器上的任何用戶", + "Seconds": "{{second}} 秒", + "Security_and_privacy": "安全与隐私", + "Select_Avatar": "选择头像", + "Select_Server": "选择服务器", + "Select_Users": "选择用户", + "Select_a_Channel": "选择一个频道", + "Select_a_Department": "选择一个部门", + "Select_an_option": "选择一个选项", + "Select_a_User": "选择一个用戶", + "Send": "发送", + "Send_audio_message": "发送音频信息", + "Send_crash_report": "送出当机报告", + "Send_message": "发送信息", + "Send_me_the_code_again": "再次发送代码给我", + "Send_to": "发送到", + "Sending_to": "正发送到", + "Sent_an_attachment": "发送附件", + "Server": "服务器", + "Servers": "服务器", + "Server_version": "服务器版本: {{version}}", + "Set_username_subtitle": "用户名是用來让其他人在信息中提到您", + "Set_custom_status": "设定自订状态", + "Set_status": "设定状态", + "Status_saved_successfully": "状态储存成功", + "Settings": "设置", + "Settings_succesfully_changed": "设置更改成功!", + "Share": "分享", + "Share_Link": "分享链接", + "Share_this_app": "分享此 app", + "Show_more": "显示更多", + "Show_Unread_Counter": "显示未读信息数量", + "Show_Unread_Counter_Info": "显示未读信息数量资讯", + "Sign_in_your_server": "登录你的服务器", + "Sign_Up": "注册", + "Some_field_is_invalid_or_empty": "某些字段无效或为空", + "Sorting_by": "按{{key}}排序", + "Sound": "声音", + "Star_room": "将聊天室标记", + "Star": "标记", + "Starred_Messages": "标记的信息", + "starred": "被标记", + "Starred": "已标记", + "Start_of_conversation": "开始对话", + "Start_a_Discussion": "开始一个讨论", + "Started_discussion": "已开始的讨论", + "Started_call": "{{userBy}} 开始的通话", + "Submit": "提交", + "Table": "表格", + "Tags": "标签", + "Take_a_photo": "拍照", + "Take_a_video": "录影", + "Take_it": "拿去!", + "tap_to_change_status": "点按即可更改状态", + "Tap_to_view_servers_list": "点击查看服务器列表", + "Terms_of_Service": "服务条款", + "Theme": "布景主题", + "The_user_wont_be_able_to_type_in_roomName": "此用户将无法在 {{roomName}} 中输入", + "The_user_will_be_able_to_type_in_roomName": "此用户将可以在 {{roomName}} 中输入", + "There_was_an_error_while_action": "{{action}}出现错误!", + "This_room_is_blocked": "这个聊天室被锁了", + "This_room_is_read_only": "这个聊天室是只读的", + "Thread": "讨论串", + "Threads": "讨论串", + "Timezone": "时区", + "To": "到", + "topic": "主题", + "Topic": "主题", + "Translate": "翻译", + "Try_again": "再试一次", + "Two_Factor_Authentication": "双重认证", + "Type_the_channel_name_here": "在这里输入频道名称", + "unarchive": "取消封存", + "UNARCHIVE": "取消封存", + "Unblock_user": "解除屏蔽", + "Unfavorite": "取消收藏", + "Unfollowed_thread": "取消追踪讨论", + "Unmute": "取消静音", + "unmuted": "静音状态", + "Unpin": "取消钉选", + "unread_messages": "未读信息", + "Unread": "未读", + "Unread_on_top": "未读优先", + "Unstar": "取消标记", + "Updating": "正在更新", + "Uploading": "正在上传", + "Upload_file_question_mark": "上传文件?", + "User": "用戶", + "Users": "用戶", + "User_added_by": "由{{userBy}}添加的用户 {{userAdded}}", + "User_Info": "用戶资讯", + "User_has_been_key": "用户已被{{key}}", + "User_is_no_longer_role_by_": "{{userBy}}将角色 {{role}} 从用户 {{user}} 身上移除", + "User_muted_by": "用户 {{userMuted}} 被 {{userBy}} 静音", + "User_removed_by": "用户 {{userRemoved}} 被 {{userBy}} 移除", + "User_sent_an_attachment": "{{user}} 寄送了一个附件", + "User_unmuted_by": "用户 {{userUnmuted}} 被 {{userBy}} 取消静音", + "User_was_set_role_by_": "用户 {{user}} 被 {{userBy}} 设置角色 {{role}}", + "Username_is_empty": "用户名是空的", + "Username": "用户名", + "Username_or_email": "用户名或邮箱", + "Uses_server_configuration": "使用服务器设置", + "Validating": "正在验证", + "Registration_Succeeded": "注册成功", + "Verify": "验证", + "Verify_email_title": "注册成功", + "Verify_email_desc": "我们已经送出一封电子邮件,以确认您的注册。如果您没有很快收到,请再试一次。", + "Verify_your_email_for_the_code_we_sent": "检查您的电子邮件以取得我们发送的代码", + "Video_call": "视频电话", + "View_Original": "检视原文", + "Voice_call": "语音电话", + "Waiting_for_network": "等待网路连接", + "Websocket_disabled": "Websocket 已于此伺服器上禁用。 \\n{{contact}}", + "Welcome": "欢迎", + "What_are_you_doing_right_now": "现在在做些什么?", + "Whats_your_2fa": "您的 2FA 代码是?", + "Without_Servers": "未连接至服务器", + "Workspaces": "工作区", + "Would_you_like_to_return_the_inquiry": "你想回覆询问吗?", + "Write_External_Permission_Message": "Rocket.Chat 需要您图片库的存取权限以储存图片。", + "Write_External_Permission": "图片库权限", + "Yes": "是", + "Yes_action_it": "是的,{{action}}它!", + "Yesterday": "昨天", + "You_are_in_preview_mode": "您处于预览模式", + "You_are_offline": "您处于离线状态", + "You_can_search_using_RegExp_eg": "您可用 RegExp 进行搜索。 例如`/^text$/i`", + "You_colon": "你:", + "you_were_mentioned": "你被提到了", + "You_were_removed_from_channel": "您已从 {{channel}} 中被踢除", + "you": "你", + "You": "你", + "Logged_out_by_server": "服务器端已将你注销,请重新登入", + "You_need_to_access_at_least_one_RocketChat_server_to_share_something": "您需要访问至少一台Rocket.Chat服务器才能共享某些内容。", + "You_need_to_verifiy_your_email_address_to_get_notications": "您需要先验证您的邮箱以启用通知", + "Your_certificate": "你的证书", + "Your_invite_link_will_expire_after__usesLeft__uses": "您的邀请链接将在{{usesLeft}}使用后到期。", + "Your_invite_link_will_expire_on__date__or_after__usesLeft__uses": "您的邀请链接将于{{date}}或{{usesLeft}}使用后到期。", + "Your_invite_link_will_expire_on__date__": "您的邀请链接将于{{date}}到期。", + "Your_invite_link_will_never_expire": "您的邀请链接永久有效。", + "Your_workspace": "您的工作区", + "Your_password_is": "您的密码", + "Version_no": "版本: {{version}}", + "You_will_not_be_able_to_recover_this_message": "您将无法恢复此信息!", + "You_will_unset_a_certificate_for_this_server": "您将取消此服务器的凭证设定", + "Change_Language": "切换语言", + "Crash_report_disclaimer": "我们从不记录您的聊天内容。 崩溃报告和分析事件仅与 Rocket.Chat 有关,以便识别和修复问题。", + "Type_message": "输入信息", + "Room_search": "搜索聊天室", + "Room_selection": "选择房间(输入 1...9)", + "Next_room": "下一个聊天室", + "Previous_room": "上一个聊天室", + "New_room": "新聊天室", + "Upload_room": "上传至聊天室", + "Search_messages": "搜索信息", + "Scroll_messages": "信息滚动", + "Reply_latest": "回覆最新信息", + "Reply_in_Thread": "讨论串回覆", + "Server_selection": "选择服务器", + "Server_selection_numbers": "选择服务器(输入 1...9)", + "Add_server": "創建服务器", + "New_line": "新的一行", + "You_will_be_logged_out_of_this_application": "您即将登出", + "Clear": "清除", + "This_will_clear_all_your_offline_data": "这将清除您的所有离线资料。", + "This_will_remove_all_data_from_this_server": "这将从该服务器中删除所有数据。", + "Mark_unread": "标记未读", + "Wait_activation_warning": "您的帐号必须由管理员手动启用后才能登入。", + "Screen_lock": "鎖屏", + "Local_authentication_biometry_title": "验证", + "Local_authentication_biometry_fallback": "使用通关密码", + "Local_authentication_unlock_option": "以通关密码解锁", + "Local_authentication_change_passcode": "变更通关密码", + "Local_authentication_info": "注: 如果您忘记了通关密码,将需要移除并重新安装此 App", + "Local_authentication_facial_recognition": "脸部辨识", + "Local_authentication_fingerprint": "指纹辨识", + "Local_authentication_unlock_with_label": "以 {{label}} 解锁", + "Local_authentication_auto_lock_60": "1分钟后", + "Local_authentication_auto_lock_300": "5分钟后", + "Local_authentication_auto_lock_900": "15分钟后", + "Local_authentication_auto_lock_1800": "半小时后", + "Local_authentication_auto_lock_3600": "一小时后", + "Passcode_enter_title": "请输入通关密码", + "Passcode_choose_title": "请输入新通关密码", + "Passcode_choose_confirm_title": "请确认新通关密码", + "Passcode_choose_error": "不正确的通关密码,请再试一次", + "Passcode_choose_force_set": "管理员设置必填", + "Passcode_app_locked_title": "App 已锁定", + "Passcode_app_locked_subtitle": "{{timeLeft}} 秒后再进行尝试", + "After_seconds_set_by_admin": "{{seconds}} 秒 (管理员设定)", + "Dont_activate": "現在不要激活", + "Queued_chats": "聊天队列", + "Queue_is_empty": "队列是空的", + "Logout_from_other_logged_in_locations": "注销其他已登陆的设备", + "You_will_be_logged_out_from_other_locations": "您将于其他设备上注销", + "Logged_out_of_other_clients_successfully": "成功登出其他用户端", + "Logout_failed": "注销失败", + "Log_analytics_events": "日志分析事件", + "E2E_encryption_change_password_title": "变更加密密码", + "E2E_encryption_change_password_description": "现在您可以建立加密私人群组和私讯。您也可以变更已存在的私人群组或是私讯来加密。 \\n\\n这是点对点的加密,所以用来加密/解密的金钥将不会储存到伺服器上。为此,您必须安全存放您的密码。如果您希望在其他装置上使用对点加密时,将会需要输入此密码。", + "E2E_encryption_change_password_error": "变更 E2E 密码时发生错误!", + "E2E_encryption_change_password_success": "E2E 密码已成功变更!", + "E2E_encryption_change_password_message": "请确定您已将其安全存放至别处", + "E2E_encryption_change_password_confirmation": "是,我要变更", + "E2E_encryption_reset_title": "重设 E2E 金钥", + "E2E_encryption_reset_description": "此选项将撤销您目前的*E2E 金钥*并将您登出。 \\n当您再次登入时,Rocket.Chat 将产生新的一组金钥并恢复您对任一有在线成员的加密聊天室之存取权限。 \\n由于 E2E 加密的特性,Rocket.Chat 无法恢复无在线成员之聊天室之存取权限。", + "E2E_encryption_reset_button": "重设", + "E2E_encryption_reset_error": "重设 E2E 金钥时发生错误!", + "E2E_encryption_reset_message": "您将被登出", + "E2E_encryption_reset_confirmation": "是,我要重设", + "Following": "正在追踪", + "Threads_displaying_all": "显示全部", + "Threads_displaying_following": "显示追踪中", + "Threads_displaying_unread": "显示未读", + "No_threads": "当前没有讨论串", + "No_threads_following": "当前没有正在追踪的讨论", + "No_threads_unread": "当前没有未读的讨论", + "Messagebox_Send_to_channel": "发送至频道" +} diff --git a/app/i18n/locales/zh-TW.json b/app/i18n/locales/zh-TW.json index 29626191c8..0725a12b42 100644 --- a/app/i18n/locales/zh-TW.json +++ b/app/i18n/locales/zh-TW.json @@ -1,684 +1,684 @@ { - "1_person_reacted": "1 人回覆了", - "1_user": "1 位使用者", - "error-action-not-allowed": "{{action}} 不允許", - "error-application-not-found": "找不到應用程式", - "error-archived-duplicate-name": "已有一個名為「{{room_name}}」的封存頻道", - "error-avatar-invalid-url": "無效的大頭貼網址:{{url}}", - "error-avatar-url-handling": "錯誤,無法將 {{username}} 的大頭貼設置為URL({{url}})", - "error-cant-invite-for-direct-room": "無法邀請使用者進入私訊", - "error-could-not-change-email": "無法更改電子郵件", - "error-could-not-change-name": "無法更改名稱", - "error-could-not-change-username": "無法更改使用者名稱", - "error-could-not-change-status": "無法更改狀態", - "error-delete-protected-role": "無法刪除受保護的角色", - "error-department-not-found": "找不到部門", - "error-direct-message-file-upload-not-allowed": "私人對話中不允許檔案分享", - "error-duplicate-channel-name": "名為「{{channel_name}}」的頻道已存在", - "error-email-domain-blacklisted": "電子郵件網域被禁用", - "error-email-send-failed": "嘗試發送電子郵件時出錯:{{message}}", - "error-save-image": "錯誤,無法儲存圖片", - "error-save-video": "錯誤,無法儲存影片", - "error-field-unavailable": "{{field}} 已被使用 :(", - "error-file-too-large": "檔案太大", - "error-importer-not-defined": "沒有正確定義,它缺少匯入類型", - "error-input-is-not-a-valid-field": "{{input}}不是有效的{{field}}", - "error-invalid-actionlink": "無效的操作連結", - "error-invalid-arguments": "無效的參數", - "error-invalid-asset": "無效的資源", - "error-invalid-channel": "無效的頻道", - "error-invalid-channel-start-with-chars": "無效的頻道,請以 @ 或 # 開頭", - "error-invalid-custom-field": "無效的自訂欄位", - "error-invalid-custom-field-name": "無效的自訂欄位名稱。只能包含字母、數字、連字符(-)及下底線(_).", - "error-invalid-date": "無效的日期", - "error-invalid-description": "無效的描述", - "error-invalid-domain": "無效的域名", - "error-invalid-email": "無效的電子郵件{{email}}", - "error-invalid-email-address": "無效的郵件地址", - "error-invalid-file-height": "無效的檔案高度", - "error-invalid-file-type": "無效的檔案類型", - "error-invalid-file-width": "無效的檔案寬度", - "error-invalid-from-address": "無效的地址", - "error-invalid-integration": "無效的整合", - "error-invalid-message": "無效的訊息", - "error-invalid-method": "無效的方法", - "error-invalid-name": "無效的名稱", - "error-invalid-password": "無效的密碼", - "error-invalid-redirectUri": "無效的轉址", - "error-invalid-role": "無效的角色", - "error-invalid-room": "無效的聊天室", - "error-invalid-room-name": "{{room_name}} 不是一個有效的聊天室名稱", - "error-invalid-room-type": "{{type}} 不是有效的聊天室類型", - "error-invalid-settings": "無效的設置", - "error-invalid-subscription": "無效的訂閱", - "error-invalid-token": "無效的 token", - "error-invalid-triggerWords": "無效的關鍵字", - "error-invalid-urls": "無效的網址", - "error-invalid-user": "無效的使用者", - "error-invalid-username": "無效的使用者名稱", - "error-invalid-webhook-response": "webhook 網址以200以外的狀態響應", - "error-message-deleting-blocked": "訊息刪除已停用", - "error-message-editing-blocked": "訊息編輯已停用", - "error-message-size-exceeded": "訊息大小超出上限", - "error-missing-unsubscribe-link": "您必須提供[取消訂閱]連結。", - "error-no-tokens-for-this-user": "這名使用者沒有Token", - "error-not-allowed": "不允許", - "error-not-authorized": "未授權", - "error-push-disabled": "推播已停用", - "error-remove-last-owner": "這是最後的擁有者。請在刪除此人之前設置一個新的擁有者。", - "error-role-in-use": "無法刪除正在使用中的角色", - "error-role-name-required": "角色名稱是必須的", - "error-the-field-is-required": "字段 {{field}} 是必須的。", - "error-too-many-requests": "錯誤,請求過多。請稍候{{seconds}}秒後再進行嘗試。", - "error-user-is-not-activated": "使用者尚未啟用", - "error-user-has-no-roles": "使用者尚未設定角色", - "error-user-limit-exceeded": "嘗試邀請到 #channel_name 的使用者數量超過了管理員設置的限制", - "error-user-not-in-room": "使用者不在這個聊天室", - "error-user-registration-custom-field": "無效的自訂註冊欄位", - "error-user-registration-disabled": "使用者註冊已停用", - "error-user-registration-secret": "只能透過加密網址進行使用者註冊", - "error-you-are-last-owner": "您是最後的擁有者。請刪除此人之前設置一個新的擁有者。", - "Actions": "操作", - "activity": "活動時間", - "Activity": "以活動時間排序", - "Add_Reaction": "增加表情貼", - "Add_Server": "新增伺服器", - "Add_users": "新增使用者", - "Admin_Panel": "管理者面板", - "Agent": "代理", - "Alert": "警報", - "alert": "警報", - "alerts": "警報", - "All_users_in_the_channel_can_write_new_messages": "頻道中的所有使用者都可以發送新訊息", - "A_meaningful_name_for_the_discussion_room": "取一個有意義的討論區名稱", - "All": "所有", - "All_Messages": "全部訊息", - "Allow_Reactions": "允許表情貼", - "Alphabetical": "以名稱排序", - "and_more": "和更多的", - "and": "和", - "announcement": "公告", - "Announcement": "公告", - "Apply_Your_Certificate": "使用自己的憑證", - "ARCHIVE": "封存", - "archive": "封存", - "are_typing": "正在輸入", - "Are_you_sure_question_mark": "你確定嗎?", - "Are_you_sure_you_want_to_leave_the_room": "你確定要離開聊天室 {{room}} 嗎?", - "Audio": "音訊", - "Authenticating": "正在驗證身份", - "Automatic": "自動", - "Auto_Translate": "自動翻譯", - "Avatar_changed_successfully": "大頭貼更新成功!", - "Avatar_Url": "大頭貼地址", - "Away": "離開", - "Back": "返回", - "Black": "黑色", - "Block_user": "封鎖此用戶", - "Browser": "瀏覽器", - "Broadcast_channel_Description": "只有經過授權的使用者才能發送新訊息,但其他使用者可以回覆", - "Broadcast_Channel": "廣播頻道", - "Busy": "忙碌", - "By_proceeding_you_are_agreeing": "若要繼續操作,請同意我們的", - "Cancel_editing": "取消編輯", - "Cancel_recording": "取消錄製", - "Cancel": "取消", - "changing_avatar": "更改大頭貼", - "creating_channel": "新建頻道", - "creating_invite": "建立邀請", - "Channel_Name": "頻道名稱", - "Channels": "頻道", - "Chats": "聊天", - "Call_already_ended": "通話已經結束!", - "Clear_cookies_alert": "是否清除所有 cookies?", - "Clear_cookies_desc": "本操作將清除所有登入 cookies,以登入其他帳號", - "Clear_cookies_yes": "是,清除 cookies", - "Clear_cookies_no": "否,保留 cookies", - "Click_to_join": "點擊以參與", - "Close": "關閉", - "Close_emoji_selector": "關閉 emoji 選擇器", - "Closing_chat": "結束聊天", - "Change_language_loading": "切換語言", - "Chat_closed_by_agent": "聊天已被客服關閉", - "Choose": "選擇", - "Choose_from_library": "從媒體庫選擇", - "Choose_file": "選擇檔案", - "Choose_where_you_want_links_be_opened": "請選擇您要將連結開啟在", - "Code": "程式碼", - "Code_or_password_invalid": "驗證碼或密碼不正確", - "Collaborative": "協作", - "Confirm": "確認", - "Connect": "連接", - "Connected": "已連接", - "connecting_server": "連線至伺服器", - "Connecting": "連接中", - "Contact_us": "聯絡我們", - "Contact_your_server_admin": "請聯絡系統管理員", - "Continue_with": "繼續採用", - "Copied_to_clipboard": "複製到剪貼簿", - "Copy": "複製", - "Conversation": "對話", - "Permalink": "永久連結", - "Certificate_password": "憑證密碼", - "Clear_cache": "清除本機資料", - "Clear_cache_loading": "清除快取", - "Whats_the_password_for_your_certificate": "您的憑證密碼是?", - "Create_account": "新建帳戶", - "Create_Channel": "新建頻道", - "Create_Direct_Messages": "新增私人訊息", - "Create_Discussion": "新增討論區", - "Created_snippet": "新增程式碼片段", - "Create_a_new_workspace": "建立一個新的工作區", - "Create": "建立", - "Custom_Status": "自訂狀態", - "Dark": "深色", - "Dark_level": "深色程度", - "Default": "預設", - "Default_browser": "預設瀏覽器", - "Delete_Room_Warning": "刪除聊天室將連帶刪除其中所有訊息。此操作將無法還原。", - "Department": "部門", - "delete": "刪除", - "Delete": "刪除", - "DELETE": "刪除", - "deleting_room": "正在刪除聊天室", - "description": "描述", - "Description": "描述", - "Desktop_Options": "桌面選項", - "Desktop_Notifications": "桌面通知", - "Desktop_Alert_info": "這些通知將發送至桌面", - "Directory": "目錄", - "Direct_Messages": "私訊", - "Disable_notifications": "禁用訊息通知", - "Discussions": "討論區", - "Discussion_Desc": "幫助保持事態更新!透過建立討論,一個和所選頻道雙向關聯的子頻道將會被建立。", - "Discussion_name": "討論區名稱", - "Done": "完成", - "Dont_Have_An_Account": "還未擁有帳號?", - "Do_you_have_an_account": "是否擁有帳號?", - "Do_you_have_a_certificate": "是否擁有憑證?", - "Do_you_really_want_to_key_this_room_question_mark": "您真的想要{{key}}這個聊天室嗎?", - "E2E_Encryption": "E2E 加密", - "E2E_How_It_Works_info1": "現在您可以建立加密私人群組和私訊。您也可以變更已存在的私人群組或是私訊來加密。", - "E2E_How_It_Works_info2": "這是*點對點的加密*,所以用來加密/解密的金鑰將不會儲存到伺服器上。為此,*您必須安全存放您的密碼*。如果您希望在其他裝置上使用對點加密時,會需要輸入此密碼。", - "E2E_How_It_Works_info3": "如果繼續,將自動產生一組 E2E 密碼", - "E2E_How_It_Works_info4": "您也可以隨時從已輸入既有密碼的任何瀏覽器設定新密碼給您的加密金鑰。", - "edit": "編輯", - "edited": "已編輯", - "Edit": "編輯", - "Edit_Status": "編輯狀態", - "Edit_Invite": "編輯邀請", - "End_to_end_encrypted_room": "E2E 加密聊天室", - "end_to_end_encryption": "E2E 加密", - "Email_Notification_Mode_All": "每次被標記或私訊", - "Email_Notification_Mode_Disabled": "禁用", - "Email_or_password_field_is_empty": "電子郵件或密碼欄位為空", - "Email": "電子郵件", - "email": "電子郵件", - "Empty_title": "空白標題", - "Enable_Auto_Translate": "開啟自動翻譯", - "Enable_notifications": "開啟訊息通知", - "Encrypted": "已加密", - "Encrypted_message": "加密訊息", - "Enter_Your_E2E_Password": "輸入您的 E2E 密碼", - "Enter_Your_Encryption_Password_desc1": "這將會允許您存取您的加密私人群組和私訊", - "Enter_Your_Encryption_Password_desc2": "您需要在任何使用此聊天的平台輸入密碼,以加/解密您的訊息", - "Encryption_error_title": "您的加密密碼似乎有誤", - "Encryption_error_desc": "無法使用匯入的加密金鑰來解密", - "Everyone_can_access_this_channel": "所有人皆可存取此頻道", - "Error_uploading": "錯誤上傳", - "Expiration_Days": "到期 (日)", - "Favorite": "我的最愛", - "Favorites": "我的最愛", - "Files": "檔案", - "File_description": "檔案描述", - "File_name": "檔案名稱", - "Finish_recording": "完成錄製", - "Following_thread": "追蹤的討論串", - "For_your_security_you_must_enter_your_current_password_to_continue": "為了您的安全,您必須重新輸入密碼才能繼續", - "Forgot_password_If_this_email_is_registered": "如果此電子郵件已註冊,我們將發送有關如何重設密碼的說明。如果您未在短時間內收到電子郵件,請再試一次。", - "Forgot_password": "忘記密碼", - "Forgot_Password": "忘記密碼", - "Forward": "轉發", - "Forward_Chat": "轉發聊天", - "Forward_to_department": "轉發到部門", - "Forward_to_user": "轉發給使用者", - "Full_table": "點擊以查看完整表格", - "Generate_New_Link": "產生新的連結", - "Group_by_favorites": "我的最愛優先", - "Group_by_type": "以類型分組", - "Hide": "隱藏", - "Has_joined_the_channel": "已加入頻道", - "Has_joined_the_conversation": "已經加入此對話", - "Has_left_the_channel": "已離開頻道", - "Hide_System_Messages": "隱藏系統訊息", - "Hide_type_messages": "隱藏 '{{type}}' 訊息", - "How_It_Works": "運作方式", - "Message_HideType_uj": "隱藏“使用者加入”訊息", - "Message_HideType_ul": "隱藏“使用者離開”訊息", - "Message_HideType_ru": "隱藏“使用者已刪除”訊息", - "Message_HideType_au": "隱藏“使用者已增加”訊息", - "Message_HideType_mute_unmute": "隱藏“使用者靜音/取消靜音”訊息", - "Message_HideType_r": "隱藏“聊天室名稱已更改”的訊息", - "Message_HideType_ut": "隱藏“使用者已加入對話”的訊息", - "Message_HideType_wm": "隱藏“歡迎”的訊息", - "Message_HideType_rm": "隱藏“已刪除訊息”的訊息", - "Message_HideType_subscription_role_added": "隱藏“已設置角色”的訊息", - "Message_HideType_subscription_role_removed": "隱藏“不再定義的角色”的訊息", - "Message_HideType_room_archived": "隱藏“聊天室已封存”的訊息", - "Message_HideType_room_unarchived": "隱藏“聊天室未封存”的訊息", - "I_Saved_My_E2E_Password": "儲存我的 E2E 密碼", - "IP": "IP", - "In_app": "App 內", - "In_App_And_Desktop": "App 內及桌面", - "In_App_and_Desktop_Alert_info": "若 app 開啟時,會在螢幕上方顯示橫幅;顯示桌面通知", - "Invisible": "隱身", - "Invite": "邀請", - "is_a_valid_RocketChat_instance": "是一個有效的 Rocket.Chat 實例", - "is_not_a_valid_RocketChat_instance": "不是有效的 Rocket.Chat 實例", - "is_typing": "正在輸入", - "Invalid_or_expired_invite_token": "無效或到期的邀請 token", - "Invalid_server_version": "此 App 版本已不支援您正在連線之伺服器版本。當前版本: {{currentVersion}}.\\n\\n最低版本要求: {{minVersion}}", - "Invite_Link": "邀請連結", - "Invite_users": "邀請使用者", - "Join": "加入", - "Join_our_open_workspace": "加入開放工作區", - "Join_your_workspace": "加入您的工作區", - "Just_invited_people_can_access_this_channel": "僅有受邀者能存取此頻道", - "Language": "語言", - "last_message": "最後一則訊息", - "Leave_channel": "離開頻道", - "leaving_room": "離開聊天室", - "Leave": "離開", - "leave": "離開", - "Legal": "合法", - "Light": "淺色", - "License": "授權條款", - "Livechat": "即時聊天", - "Livechat_edit": "即時聊天編輯", - "Login": "登入", - "Login_error": "認證失敗!請再試一次", - "Login_with": "登入為", - "Logging_out": "正在登出", - "Logout": "登出", - "Max_number_of_uses": "最大使用次數", - "Max_number_of_users_allowed_is_number": "允許使用者上限數量 {{maxUsers}}", - "members": "成員", - "Members": "成員", - "Mentioned_Messages": "被提及的訊息", - "mentioned": "提到", - "Mentions": "被提及", - "Message_accessibility": "{{time}}來自{{user}}的訊息: {{message}}", - "Message_actions": "訊息操作", - "Message_pinned": "訊息被釘選", - "Message_removed": "訊息被刪除", - "Message_starred": "訊息被標註", - "Message_unstarred": "訊息被取消標註", - "message": "訊息", - "messages": "訊息", - "Message": "訊息", - "Messages": "訊息", - "Message_Reported": "訊息已檢舉", - "Microphone_Permission_Message": "Rocket.Chat 需要存取您的麥克風,以便發送聲音訊息。", - "Microphone_Permission": "麥克風授權", - "Mute": "靜音", - "muted": "被靜音", - "My_servers": "我的伺服器", - "N_people_reacted": "{{n}} 人回复", - "N_users": "{{n}} 位使用者", - "name": "名稱", - "Name": "名稱", - "Navigation_history": "瀏覽歷史記錄", - "Never": "從不", - "New_Message": "新訊息", - "New_Password": "新密碼", - "New_Server": "新伺服器", - "Next": "下一步", - "No_files": "沒有檔案", - "No_limit": "沒有限制", - "No_mentioned_messages": "沒有被提及的訊息", - "No_pinned_messages": "沒有釘選的訊息", - "No_results_found": "沒有搜尋結果", - "No_starred_messages": "沒有加標記的訊息", - "No_thread_messages": "沒有討論串訊息", - "No_label_provided": "沒有提供 {{label}}", - "No_Message": "沒有訊息", - "No_messages_yet": "當前未有訊息", - "No_Reactions": "沒有表情貼", - "No_Read_Receipts": "沒有已讀人員", - "Not_logged": "沒有記錄", - "Not_RC_Server": "這不是一個 Rocket.Chat server.\\n{{contact}}", - "Nothing": "無", - "Nothing_to_save": "沒有東西可儲存!", - "Notify_active_in_this_room": "通知這個聊天室的活躍使用者", - "Notify_all_in_this_room": "通知這個聊天室的所有人", - "Notifications": "通知", - "Notification_Duration": "通知持續時間", - "Notification_Preferences": "通知偏好設定", - "No_available_agents_to_transfer": "沒有可用的代理進行傳輸", - "Offline": "離線", - "Oops": "哎呀!", - "Omnichannel": "Omnichannel", - "Open_Livechats": "打開即時聊天", - "Omnichannel_enable_alert": "您尚未啟用 Omnichannel,是否想要啟用?", - "Onboarding_description": "工作區是團隊或組織協作的空間。向工作區管理員詢問要加入的地址或為您的團隊創建一個。", - "Onboarding_join_workspace": "加入一個工作區", - "Onboarding_subtitle": "超越團隊合作", - "Onboarding_title": "歡迎來到 Rocket.Chat", - "Onboarding_join_open_description": "加入我們的開放工作區以與 Rocket.Chat 團隊及社群交談", - "Onboarding_agree_terms": "繼續,即表示您同意 Rocket.Chat", - "Onboarding_less_options": "較少選項", - "Onboarding_more_options": "較多選項", - "Online": "上線", - "Only_authorized_users_can_write_new_messages": "只有經過授權的使用者才能寫新訊息", - "Open_emoji_selector": "打開 emoji 選擇器", - "Open_Source_Communication": "開源溝通", - "Open_your_authentication_app_and_enter_the_code": "打開您的驗證應用程式並輸入代碼。您也可以使用其中一個備用代碼。", - "OR": "或", - "OS": "作業系統", - "Overwrites_the_server_configuration_and_use_room_config": "覆寫伺服器設置和使用聊天室設置", - "Password": "密碼", - "Parent_channel_or_group": "父頻道或群組", - "Permalink_copied_to_clipboard": "永久連結已複製到剪貼簿!", - "Phone": "電話", - "Pin": "釘選", - "Pinned_Messages": "釘選訊息", - "pinned": "已被釘選", - "Pinned": "被釘選", - "Please_add_a_comment": "請新增評論", - "Please_enter_your_password": "請輸入密碼", - "Please_wait": "請稍候", - "Preferences": "偏好設定", - "Preferences_saved": "偏好設定已被儲存!", - "Privacy_Policy": "隱私政策", - "Private_Channel": "私人頻道", - "Private": "私有的", - "Processing": "處理中", - "Profile_saved_successfully": "個人資料儲存成功!", - "Profile": "個人資料", - "Public_Channel": "公共頻道", - "Public": "公共", - "Push_Notifications": "推送通知", - "Push_Notifications_Alert_Info": "這些通知將在未開啟 App 時發送給您", - "Quote": "引用", - "Reactions_are_disabled": "表情貼被禁用", - "Reactions_are_enabled": "表情貼被啟用", - "Reactions": "表情貼", - "Read": "讀取", - "Read_External_Permission_Message": "Rocket.Chat 需要存取您裝置上的相片、多媒體及檔案", - "Read_External_Permission": "讀取媒體權限", - "Read_Only_Channel": "唯讀頻道", - "Read_Only": "唯讀", - "Read_Receipt": "查看已讀人員", - "Receive_Group_Mentions": "接收群組提及", - "Receive_Group_Mentions_Info": "接收@all和@here提及", - "Register": "註冊", - "Repeat_Password": "重複輸入密碼", - "Replied_on": "回覆在", - "replies": "回覆", - "reply": "回覆", - "Reply": "回覆", - "Report": "檢舉", - "Receive_Notification": "接收通知", - "Receive_notifications_from": "接收來自 {{name}} 的通知", - "Resend": "重新發送", - "Reset_password": "重置密碼", - "resetting_password": "正在重置密碼", - "RESET": "重置", - "Return": "返回", - "Review_app_title": "對此 App 滿意嗎?", - "Review_app_desc": "請在 {{store}} 給予我們 5 星好評", - "Review_app_yes": "沒問題", - "Review_app_no": "婉拒", - "Review_app_later": "之後再說", - "Review_app_unable_store": "無法開啟 {{store}}", - "Review_this_app": "評分此 App", - "Remove": "移除", - "Roles": "角色", - "Room_actions": "聊天室操作", - "Room_changed_announcement": "{{userBy}}將聊天室通知改為:{{announcement}}", - "Room_changed_avatar": "Room avatar changed by {{userBy}}", - "Room_changed_description": "{{userBy}}將聊天室說明改為:{{description}}", - "Room_changed_privacy": "{{userBy}}將聊天室類型改為:{{type}}", - "Room_changed_topic": "{{userBy}}將聊天室主題改為:{{topic}}", - "Room_Files": "聊天室檔案", - "Room_Info_Edit": "修改聊天室資訊", - "Room_Info": "聊天室資訊", - "Room_Members": "聊天室成員", - "Room_name_changed": "{{userBy}} 將聊天室名稱改為:{{name}}", - "SAVE": "儲存", - "Save_Changes": "儲存更改", - "Save": "儲存", - "Saved": "保存", - "saving_preferences": "儲存偏好設定", - "saving_profile": "儲存配置文件", - "saving_settings": "儲存設定", - "saved_to_gallery": "儲存至圖片庫", - "Save_Your_E2E_Password": "儲存您的 E2E 密碼", - "Save_Your_Encryption_Password": "儲存您的加密密碼", - "Save_Your_Encryption_Password_warning": "此密碼未被儲存在任何地方,為此您必須安全存放您的密碼", - "Save_Your_Encryption_Password_info": "請記住,如果你遺失了您的密碼,您將無法存取您的訊息並不可恢復", - "Search_Messages": "搜尋訊息", - "Search": "搜尋", - "Search_by": "搜尋", - "Search_global_users": "搜尋全域使用者", - "Search_global_users_description": "如果啟用,您將可以搜尋其他公司、伺服器上的任何使用者", - "Seconds": "{{second}} 秒", - "Security_and_privacy": "安全與隱私", - "Select_Avatar": "選擇大頭貼", - "Select_Server": "選擇伺服器", - "Select_Users": "選擇使用者", - "Select_a_Channel": "選擇一個頻道", - "Select_a_Department": "選擇一個部門", - "Select_an_option": "選擇一個選項", - "Select_a_User": "選擇一個使用者", - "Send": "發送", - "Send_audio_message": "發送語音訊息", - "Send_crash_report": "送出當機報告", - "Send_message": "發送訊息", - "Send_me_the_code_again": "再次發送代碼給我", - "Send_to": "發送到", - "Sending_to": "正發送到", - "Sent_an_attachment": "發送附件", - "Server": "伺服器", - "Servers": "伺服器", - "Server_version": "伺服器版本: {{version}}", - "Set_username_subtitle": "使用者名稱是用來讓其他使用者在訊息中提到您", - "Set_custom_status": "設定自訂狀態", - "Set_status": "設定狀態", - "Status_saved_successfully": "狀態儲存成功", - "Settings": "設定", - "Settings_succesfully_changed": "設定更改成功!", - "Share": "分享", - "Share_Link": "分享連結", - "Share_this_app": "分享此 app", - "Show_more": "顯示更多", - "Show_Unread_Counter": "顯示未讀訊息數量", - "Show_Unread_Counter_Info": "顯示未讀訊息數量資訊", - "Sign_in_your_server": "登錄你的伺服器", - "Sign_Up": "註冊", - "Some_field_is_invalid_or_empty": "某些字段無效或為空", - "Sorting_by": "以{{key}}排序", - "Sound": "聲音", - "Star_room": "標記聊天室", - "Star": "標記", - "Starred_Messages": "標記的訊息", - "starred": "被標記", - "Starred": "已標記", - "Start_of_conversation": "開始對話", - "Start_a_Discussion": "開始一個討論", - "Started_discussion": "已開始的討論", - "Started_call": "{{userBy}} 開始的通話", - "Submit": "送出", - "Table": "表格", - "Tags": "標籤", - "Take_a_photo": "拍照", - "Take_a_video": "錄影", - "Take_it": "拿去!", - "tap_to_change_status": "點擊即可更改狀態", - "Tap_to_view_servers_list": "點擊查看伺服器列表", - "Terms_of_Service": "服務條款", - "Theme": "佈景主題", - "The_user_wont_be_able_to_type_in_roomName": "此使用者將無法在 {{roomName}} 中輸入", - "The_user_will_be_able_to_type_in_roomName": "此使用者將可以在 {{roomName}} 中輸入", - "There_was_an_error_while_action": "{{action}}出現錯誤!", - "This_room_is_blocked": "這個聊天室已被鎖定", - "This_room_is_read_only": "這個聊天室是唯讀的", - "Thread": "討論串", - "Threads": "討論串", - "Timezone": "時區", - "To": "到", - "topic": "主題", - "Topic": "主題", - "Translate": "翻譯", - "Try_again": "再試一次", - "Two_Factor_Authentication": "雙重認證", - "Type_the_channel_name_here": "在這裡輸入頻道名稱", - "unarchive": "取消封存", - "UNARCHIVE": "取消封存", - "Unblock_user": "解除封鎖", - "Unfavorite": "取消最愛", - "Unfollowed_thread": "取消追蹤討論", - "Unmute": "取消靜音", - "unmuted": "靜音狀態", - "Unpin": "取消釘選", - "unread_messages": "未讀訊息", - "Unread": "未讀", - "Unread_on_top": "未讀優先", - "Unstar": "取消標記", - "Updating": "正在更新", - "Uploading": "正在上傳", - "Upload_file_question_mark": "上傳文件?", - "User": "使用者", - "Users": "使用者", - "User_added_by": "由{{userBy}}添加的使用者 {{userAdded}}", - "User_Info": "使用者資訊", - "User_has_been_key": "使用者已被{{key}}", - "User_is_no_longer_role_by_": "{{userBy}}將角色 {{role}} 從使用者 {{user}} 身上移除", - "User_muted_by": "使用者 {{userMuted}} 被 {{userBy}} 靜音", - "User_removed_by": "使用者 {{userRemoved}} 被 {{userBy}} 移除", - "User_sent_an_attachment": "{{user}} 寄送了一個附件", - "User_unmuted_by": "使用者 {{userUnmuted}} 被 {{userBy}} 取消靜音", - "User_was_set_role_by_": "使用者 {{user}} 被 {{userBy}} 設置角色 {{role}}", - "Username_is_empty": "使用者名稱是空的", - "Username": "使用者名稱", - "Username_or_email": "使用者名稱或電子郵件", - "Uses_server_configuration": "使用伺服器設定", - "Validating": "正在驗證", - "Registration_Succeeded": "註冊成功", - "Verify": "驗證", - "Verify_email_title": "註冊成功", - "Verify_email_desc": "我們已經送出一封電子郵件,以確認您的註冊。如果您沒有很快收到,請再試一次。", - "Verify_your_email_for_the_code_we_sent": "檢查您的電子郵件以取得我們發送的代碼", - "Video_call": "視訊通話", - "View_Original": "檢視原文", - "Voice_call": "語音通話", - "Waiting_for_network": "等待網路連線", - "Websocket_disabled": "Websocket 已於此伺服器上禁用。\\n{{contact}}", - "Welcome": "歡迎", - "What_are_you_doing_right_now": "現在在做些什麼?", - "Whats_your_2fa": "您的 2FA 代碼是?", - "Without_Servers": "未連接至伺服器", - "Workspaces": "工作區", - "Would_you_like_to_return_the_inquiry": "你想回覆詢問嗎?", - "Write_External_Permission_Message": "Rocket.Chat 需要您圖片庫的存取權限以儲存圖片。", - "Write_External_Permission": "圖片庫權限", - "Yes": "是", - "Yes_action_it": "是的,{{action}}它!", - "Yesterday": "昨天", - "You_are_in_preview_mode": "您處於預覽模式", - "You_are_offline": "您處於離線狀態", - "You_can_search_using_RegExp_eg": "您可用 RegExp 進行搜尋。例如`/^text$/i`", - "You_colon": "你:", - "you_were_mentioned": "你被提到了", - "You_were_removed_from_channel": "您已從 {{channel}} 中被踢除", - "you": "你", - "You": "你", - "Logged_out_by_server": "伺服器端已將你登出,請重新登入", - "You_need_to_access_at_least_one_RocketChat_server_to_share_something": "您需要至少連接一個 Rocket.Chat 伺服器才能共享某些内容。", - "You_need_to_verifiy_your_email_address_to_get_notications": "您需要先驗證您的電子郵件以啟用通知", - "Your_certificate": "你的證書", - "Your_invite_link_will_expire_after__usesLeft__uses": "您的邀請連結將在{{usesLeft}}使用後到期。", - "Your_invite_link_will_expire_on__date__or_after__usesLeft__uses": "您的邀請連結將於{{date}}或{{usesLeft}}使用後到期。", - "Your_invite_link_will_expire_on__date__": "您的邀請連結將於{{date}}到期。", - "Your_invite_link_will_never_expire": "您的邀請連結永久有效。", - "Your_workspace": "您的工作區", - "Your_password_is": "您的密碼", - "Version_no": "版本: {{version}}", - "You_will_not_be_able_to_recover_this_message": "您將無法恢復此訊息!", - "You_will_unset_a_certificate_for_this_server": "您將取消此伺服器的憑證設定", - "Change_Language": "切換語言", - "Crash_report_disclaimer": "我們絕不記錄您的聊天內容。 崩潰報告和分析事件僅與 Rocket.Chat 有關,以便識別和修復問題。", - "Type_message": "輸入訊息", - "Room_search": "搜索聊天室", - "Room_selection": "選擇房間(輸入 1...9)", - "Next_room": "下一個聊天室", - "Previous_room": "上一個聊天室", - "New_room": "新聊天室", - "Upload_room": "上傳至聊天室", - "Search_messages": "搜尋訊息", - "Scroll_messages": "訊息滾動", - "Reply_latest": "回覆最新訊息", - "Reply_in_Thread": "討論串回覆", - "Server_selection": "選擇伺服器", - "Server_selection_numbers": "選擇伺服器(輸入 1...9)", - "Add_server": "新增伺服器", - "New_line": "新的一行", - "You_will_be_logged_out_of_this_application": "您即將登出", - "Clear": "清除", - "This_will_clear_all_your_offline_data": "這將清除您的所有離線資料。", - "This_will_remove_all_data_from_this_server": "這將從此伺服器中刪除所有資料。", - "Mark_unread": "標記未讀", - "Wait_activation_warning": "您的帳號必須由管理員手動啟用後才能登入。", - "Screen_lock": "螢幕鎖定", - "Local_authentication_biometry_title": "驗證", - "Local_authentication_biometry_fallback": "使用通關密碼", - "Local_authentication_unlock_option": "以通關密碼解鎖", - "Local_authentication_change_passcode": "變更通關密碼", - "Local_authentication_info": "註: 如果您忘記了通關密碼,將需要移除並重新安裝此 App", - "Local_authentication_facial_recognition": "臉部辨識", - "Local_authentication_fingerprint": "指紋辨識", - "Local_authentication_unlock_with_label": "以 {{label}} 解鎖", - "Local_authentication_auto_lock_60": "1分鐘後", - "Local_authentication_auto_lock_300": "5分鐘後", - "Local_authentication_auto_lock_900": "15分鐘後", - "Local_authentication_auto_lock_1800": "半小時後", - "Local_authentication_auto_lock_3600": "一小時後", - "Passcode_enter_title": "請輸入通關密碼", - "Passcode_choose_title": "請輸入新通關密碼", - "Passcode_choose_confirm_title": "請確認新通關密碼", - "Passcode_choose_error": "不正確的通關密碼,請再試一次", - "Passcode_choose_force_set": "管理員設定必填", - "Passcode_app_locked_title": "App 已鎖定", - "Passcode_app_locked_subtitle": "{{timeLeft}} 秒後再進行嘗試", - "After_seconds_set_by_admin": "{{seconds}} 秒 (管理員設定)", - "Dont_activate": "現在不要啟用", - "Queued_chats": "聊天佇列", - "Queue_is_empty": "佇列是空的", - "Logout_from_other_logged_in_locations": "登出其他已登入的設備", - "You_will_be_logged_out_from_other_locations": "您將於其他設備上登出", - "Logged_out_of_other_clients_successfully": "成功登出其他用戶端", - "Logout_failed": "登出失敗", - "Log_analytics_events": "日誌分析事件", - "E2E_encryption_change_password_title": "變更加密密碼", - "E2E_encryption_change_password_description": "現在您可以建立加密私人群組和私訊。您也可以變更已存在的私人群組或是私訊來加密。\\n\\n這是點對點的加密,所以用來加密/解密的金鑰將不會儲存到伺服器上。為此,您必須安全存放您的密碼。如果您希望在其他裝置上使用對點加密時,將會需要輸入此密碼。", - "E2E_encryption_change_password_error": "變更 E2E 密碼時發生錯誤!", - "E2E_encryption_change_password_success": "E2E 密碼已成功變更!", - "E2E_encryption_change_password_message": "請確定您已將其安全存放至別處", - "E2E_encryption_change_password_confirmation": "是,我要變更", - "E2E_encryption_reset_title": "重設 E2E 金鑰", - "E2E_encryption_reset_description": "此選項將撤銷您目前的*E2E 金鑰*並將您登出。\\n當您再次登入時,Rocket.Chat 將產生新的一組金鑰並恢復您對任一有在線成員的加密聊天室之存取權限。\\n由於 E2E 加密的特性,Rocket.Chat 無法恢復無在線成員之聊天室之存取權限。", - "E2E_encryption_reset_button": "重設", - "E2E_encryption_reset_error": "重設 E2E 金鑰時發生錯誤!", - "E2E_encryption_reset_message": "您將被登出", - "E2E_encryption_reset_confirmation": "是,我要重設", - "Following": "正在追蹤", - "Threads_displaying_all": "顯示全部", - "Threads_displaying_following": "顯示追蹤中", - "Threads_displaying_unread": "顯示未讀", - "No_threads": "當前沒有討論串", - "No_threads_following": "當前沒有正在追蹤的討論", - "No_threads_unread": "當前沒有未讀的討論", - "Messagebox_Send_to_channel": "發送至頻道", - "Confirmation": "確認", - "invalid-room": "無效的房間" -} \ No newline at end of file + "1_person_reacted": "1 人回覆了", + "1_user": "1 位使用者", + "error-action-not-allowed": "{{action}} 不允許", + "error-application-not-found": "找不到應用程式", + "error-archived-duplicate-name": "已有一個名為「{{room_name}}」的封存頻道", + "error-avatar-invalid-url": "無效的大頭貼網址:{{url}}", + "error-avatar-url-handling": "錯誤,無法將 {{username}} 的大頭貼設置為URL({{url}})", + "error-cant-invite-for-direct-room": "無法邀請使用者進入私訊", + "error-could-not-change-email": "無法更改電子郵件", + "error-could-not-change-name": "無法更改名稱", + "error-could-not-change-username": "無法更改使用者名稱", + "error-could-not-change-status": "無法更改狀態", + "error-delete-protected-role": "無法刪除受保護的角色", + "error-department-not-found": "找不到部門", + "error-direct-message-file-upload-not-allowed": "私人對話中不允許檔案分享", + "error-duplicate-channel-name": "名為「{{channel_name}}」的頻道已存在", + "error-email-domain-blacklisted": "電子郵件網域被禁用", + "error-email-send-failed": "嘗試發送電子郵件時出錯:{{message}}", + "error-save-image": "錯誤,無法儲存圖片", + "error-save-video": "錯誤,無法儲存影片", + "error-field-unavailable": "{{field}} 已被使用 :(", + "error-file-too-large": "檔案太大", + "error-importer-not-defined": "沒有正確定義,它缺少匯入類型", + "error-input-is-not-a-valid-field": "{{input}}不是有效的{{field}}", + "error-invalid-actionlink": "無效的操作連結", + "error-invalid-arguments": "無效的參數", + "error-invalid-asset": "無效的資源", + "error-invalid-channel": "無效的頻道", + "error-invalid-channel-start-with-chars": "無效的頻道,請以 @ 或 # 開頭", + "error-invalid-custom-field": "無效的自訂欄位", + "error-invalid-custom-field-name": "無效的自訂欄位名稱。只能包含字母、數字、連字符(-)及下底線(_).", + "error-invalid-date": "無效的日期", + "error-invalid-description": "無效的描述", + "error-invalid-domain": "無效的域名", + "error-invalid-email": "無效的電子郵件{{email}}", + "error-invalid-email-address": "無效的郵件地址", + "error-invalid-file-height": "無效的檔案高度", + "error-invalid-file-type": "無效的檔案類型", + "error-invalid-file-width": "無效的檔案寬度", + "error-invalid-from-address": "無效的地址", + "error-invalid-integration": "無效的整合", + "error-invalid-message": "無效的訊息", + "error-invalid-method": "無效的方法", + "error-invalid-name": "無效的名稱", + "error-invalid-password": "無效的密碼", + "error-invalid-redirectUri": "無效的轉址", + "error-invalid-role": "無效的角色", + "error-invalid-room": "無效的聊天室", + "error-invalid-room-name": "{{room_name}} 不是一個有效的聊天室名稱", + "error-invalid-room-type": "{{type}} 不是有效的聊天室類型", + "error-invalid-settings": "無效的設置", + "error-invalid-subscription": "無效的訂閱", + "error-invalid-token": "無效的 token", + "error-invalid-triggerWords": "無效的關鍵字", + "error-invalid-urls": "無效的網址", + "error-invalid-user": "無效的使用者", + "error-invalid-username": "無效的使用者名稱", + "error-invalid-webhook-response": "webhook 網址以200以外的狀態響應", + "error-message-deleting-blocked": "訊息刪除已停用", + "error-message-editing-blocked": "訊息編輯已停用", + "error-message-size-exceeded": "訊息大小超出上限", + "error-missing-unsubscribe-link": "您必須提供[取消訂閱]連結。", + "error-no-tokens-for-this-user": "這名使用者沒有Token", + "error-not-allowed": "不允許", + "error-not-authorized": "未授權", + "error-push-disabled": "推播已停用", + "error-remove-last-owner": "這是最後的擁有者。請在刪除此人之前設置一個新的擁有者。", + "error-role-in-use": "無法刪除正在使用中的角色", + "error-role-name-required": "角色名稱是必須的", + "error-the-field-is-required": "字段 {{field}} 是必須的。", + "error-too-many-requests": "錯誤,請求過多。請稍候{{seconds}}秒後再進行嘗試。", + "error-user-is-not-activated": "使用者尚未啟用", + "error-user-has-no-roles": "使用者尚未設定角色", + "error-user-limit-exceeded": "嘗試邀請到 #channel_name 的使用者數量超過了管理員設置的限制", + "error-user-not-in-room": "使用者不在這個聊天室", + "error-user-registration-custom-field": "無效的自訂註冊欄位", + "error-user-registration-disabled": "使用者註冊已停用", + "error-user-registration-secret": "只能透過加密網址進行使用者註冊", + "error-you-are-last-owner": "您是最後的擁有者。請刪除此人之前設置一個新的擁有者。", + "Actions": "操作", + "activity": "活動時間", + "Activity": "以活動時間排序", + "Add_Reaction": "增加表情貼", + "Add_Server": "新增伺服器", + "Add_users": "新增使用者", + "Admin_Panel": "管理者面板", + "Agent": "代理", + "Alert": "警報", + "alert": "警報", + "alerts": "警報", + "All_users_in_the_channel_can_write_new_messages": "頻道中的所有使用者都可以發送新訊息", + "A_meaningful_name_for_the_discussion_room": "取一個有意義的討論區名稱", + "All": "所有", + "All_Messages": "全部訊息", + "Allow_Reactions": "允許表情貼", + "Alphabetical": "以名稱排序", + "and_more": "和更多的", + "and": "和", + "announcement": "公告", + "Announcement": "公告", + "Apply_Your_Certificate": "使用自己的憑證", + "ARCHIVE": "封存", + "archive": "封存", + "are_typing": "正在輸入", + "Are_you_sure_question_mark": "你確定嗎?", + "Are_you_sure_you_want_to_leave_the_room": "你確定要離開聊天室 {{room}} 嗎?", + "Audio": "音訊", + "Authenticating": "正在驗證身份", + "Automatic": "自動", + "Auto_Translate": "自動翻譯", + "Avatar_changed_successfully": "大頭貼更新成功!", + "Avatar_Url": "大頭貼地址", + "Away": "離開", + "Back": "返回", + "Black": "黑色", + "Block_user": "封鎖此用戶", + "Browser": "瀏覽器", + "Broadcast_channel_Description": "只有經過授權的使用者才能發送新訊息,但其他使用者可以回覆", + "Broadcast_Channel": "廣播頻道", + "Busy": "忙碌", + "By_proceeding_you_are_agreeing": "若要繼續操作,請同意我們的", + "Cancel_editing": "取消編輯", + "Cancel_recording": "取消錄製", + "Cancel": "取消", + "changing_avatar": "更改大頭貼", + "creating_channel": "新建頻道", + "creating_invite": "建立邀請", + "Channel_Name": "頻道名稱", + "Channels": "頻道", + "Chats": "聊天", + "Call_already_ended": "通話已經結束!", + "Clear_cookies_alert": "是否清除所有 cookies?", + "Clear_cookies_desc": "本操作將清除所有登入 cookies,以登入其他帳號", + "Clear_cookies_yes": "是,清除 cookies", + "Clear_cookies_no": "否,保留 cookies", + "Click_to_join": "點擊以參與", + "Close": "關閉", + "Close_emoji_selector": "關閉 emoji 選擇器", + "Closing_chat": "結束聊天", + "Change_language_loading": "切換語言", + "Chat_closed_by_agent": "聊天已被客服關閉", + "Choose": "選擇", + "Choose_from_library": "從媒體庫選擇", + "Choose_file": "選擇檔案", + "Choose_where_you_want_links_be_opened": "請選擇您要將連結開啟在", + "Code": "程式碼", + "Code_or_password_invalid": "驗證碼或密碼不正確", + "Collaborative": "協作", + "Confirm": "確認", + "Connect": "連接", + "Connected": "已連接", + "connecting_server": "連線至伺服器", + "Connecting": "連接中", + "Contact_us": "聯絡我們", + "Contact_your_server_admin": "請聯絡系統管理員", + "Continue_with": "繼續採用", + "Copied_to_clipboard": "複製到剪貼簿", + "Copy": "複製", + "Conversation": "對話", + "Permalink": "永久連結", + "Certificate_password": "憑證密碼", + "Clear_cache": "清除本機資料", + "Clear_cache_loading": "清除快取", + "Whats_the_password_for_your_certificate": "您的憑證密碼是?", + "Create_account": "新建帳戶", + "Create_Channel": "新建頻道", + "Create_Direct_Messages": "新增私人訊息", + "Create_Discussion": "新增討論區", + "Created_snippet": "新增程式碼片段", + "Create_a_new_workspace": "建立一個新的工作區", + "Create": "建立", + "Custom_Status": "自訂狀態", + "Dark": "深色", + "Dark_level": "深色程度", + "Default": "預設", + "Default_browser": "預設瀏覽器", + "Delete_Room_Warning": "刪除聊天室將連帶刪除其中所有訊息。此操作將無法還原。", + "Department": "部門", + "delete": "刪除", + "Delete": "刪除", + "DELETE": "刪除", + "deleting_room": "正在刪除聊天室", + "description": "描述", + "Description": "描述", + "Desktop_Options": "桌面選項", + "Desktop_Notifications": "桌面通知", + "Desktop_Alert_info": "這些通知將發送至桌面", + "Directory": "目錄", + "Direct_Messages": "私訊", + "Disable_notifications": "禁用訊息通知", + "Discussions": "討論區", + "Discussion_Desc": "幫助保持事態更新!透過建立討論,一個和所選頻道雙向關聯的子頻道將會被建立。", + "Discussion_name": "討論區名稱", + "Done": "完成", + "Dont_Have_An_Account": "還未擁有帳號?", + "Do_you_have_an_account": "是否擁有帳號?", + "Do_you_have_a_certificate": "是否擁有憑證?", + "Do_you_really_want_to_key_this_room_question_mark": "您真的想要{{key}}這個聊天室嗎?", + "E2E_Encryption": "E2E 加密", + "E2E_How_It_Works_info1": "現在您可以建立加密私人群組和私訊。您也可以變更已存在的私人群組或是私訊來加密。", + "E2E_How_It_Works_info2": "這是*點對點的加密*,所以用來加密/解密的金鑰將不會儲存到伺服器上。為此,*您必須安全存放您的密碼*。如果您希望在其他裝置上使用對點加密時,會需要輸入此密碼。", + "E2E_How_It_Works_info3": "如果繼續,將自動產生一組 E2E 密碼", + "E2E_How_It_Works_info4": "您也可以隨時從已輸入既有密碼的任何瀏覽器設定新密碼給您的加密金鑰。", + "edit": "編輯", + "edited": "已編輯", + "Edit": "編輯", + "Edit_Status": "編輯狀態", + "Edit_Invite": "編輯邀請", + "End_to_end_encrypted_room": "E2E 加密聊天室", + "end_to_end_encryption": "E2E 加密", + "Email_Notification_Mode_All": "每次被標記或私訊", + "Email_Notification_Mode_Disabled": "禁用", + "Email_or_password_field_is_empty": "電子郵件或密碼欄位為空", + "Email": "電子郵件", + "email": "電子郵件", + "Empty_title": "空白標題", + "Enable_Auto_Translate": "開啟自動翻譯", + "Enable_notifications": "開啟訊息通知", + "Encrypted": "已加密", + "Encrypted_message": "加密訊息", + "Enter_Your_E2E_Password": "輸入您的 E2E 密碼", + "Enter_Your_Encryption_Password_desc1": "這將會允許您存取您的加密私人群組和私訊", + "Enter_Your_Encryption_Password_desc2": "您需要在任何使用此聊天的平台輸入密碼,以加/解密您的訊息", + "Encryption_error_title": "您的加密密碼似乎有誤", + "Encryption_error_desc": "無法使用匯入的加密金鑰來解密", + "Everyone_can_access_this_channel": "所有人皆可存取此頻道", + "Error_uploading": "錯誤上傳", + "Expiration_Days": "到期 (日)", + "Favorite": "我的最愛", + "Favorites": "我的最愛", + "Files": "檔案", + "File_description": "檔案描述", + "File_name": "檔案名稱", + "Finish_recording": "完成錄製", + "Following_thread": "追蹤的討論串", + "For_your_security_you_must_enter_your_current_password_to_continue": "為了您的安全,您必須重新輸入密碼才能繼續", + "Forgot_password_If_this_email_is_registered": "如果此電子郵件已註冊,我們將發送有關如何重設密碼的說明。如果您未在短時間內收到電子郵件,請再試一次。", + "Forgot_password": "忘記密碼", + "Forgot_Password": "忘記密碼", + "Forward": "轉發", + "Forward_Chat": "轉發聊天", + "Forward_to_department": "轉發到部門", + "Forward_to_user": "轉發給使用者", + "Full_table": "點擊以查看完整表格", + "Generate_New_Link": "產生新的連結", + "Group_by_favorites": "我的最愛優先", + "Group_by_type": "以類型分組", + "Hide": "隱藏", + "Has_joined_the_channel": "已加入頻道", + "Has_joined_the_conversation": "已經加入此對話", + "Has_left_the_channel": "已離開頻道", + "Hide_System_Messages": "隱藏系統訊息", + "Hide_type_messages": "隱藏 '{{type}}' 訊息", + "How_It_Works": "運作方式", + "Message_HideType_uj": "隱藏“使用者加入”訊息", + "Message_HideType_ul": "隱藏“使用者離開”訊息", + "Message_HideType_ru": "隱藏“使用者已刪除”訊息", + "Message_HideType_au": "隱藏“使用者已增加”訊息", + "Message_HideType_mute_unmute": "隱藏“使用者靜音/取消靜音”訊息", + "Message_HideType_r": "隱藏“聊天室名稱已更改”的訊息", + "Message_HideType_ut": "隱藏“使用者已加入對話”的訊息", + "Message_HideType_wm": "隱藏“歡迎”的訊息", + "Message_HideType_rm": "隱藏“已刪除訊息”的訊息", + "Message_HideType_subscription_role_added": "隱藏“已設置角色”的訊息", + "Message_HideType_subscription_role_removed": "隱藏“不再定義的角色”的訊息", + "Message_HideType_room_archived": "隱藏“聊天室已封存”的訊息", + "Message_HideType_room_unarchived": "隱藏“聊天室未封存”的訊息", + "I_Saved_My_E2E_Password": "儲存我的 E2E 密碼", + "IP": "IP", + "In_app": "App 內", + "In_App_And_Desktop": "App 內及桌面", + "In_App_and_Desktop_Alert_info": "若 app 開啟時,會在螢幕上方顯示橫幅;顯示桌面通知", + "Invisible": "隱身", + "Invite": "邀請", + "is_a_valid_RocketChat_instance": "是一個有效的 Rocket.Chat 實例", + "is_not_a_valid_RocketChat_instance": "不是有效的 Rocket.Chat 實例", + "is_typing": "正在輸入", + "Invalid_or_expired_invite_token": "無效或到期的邀請 token", + "Invalid_server_version": "此 App 版本已不支援您正在連線之伺服器版本。當前版本: {{currentVersion}}.\\n\\n最低版本要求: {{minVersion}}", + "Invite_Link": "邀請連結", + "Invite_users": "邀請使用者", + "Join": "加入", + "Join_our_open_workspace": "加入開放工作區", + "Join_your_workspace": "加入您的工作區", + "Just_invited_people_can_access_this_channel": "僅有受邀者能存取此頻道", + "Language": "語言", + "last_message": "最後一則訊息", + "Leave_channel": "離開頻道", + "leaving_room": "離開聊天室", + "Leave": "離開", + "leave": "離開", + "Legal": "合法", + "Light": "淺色", + "License": "授權條款", + "Livechat": "即時聊天", + "Livechat_edit": "即時聊天編輯", + "Login": "登入", + "Login_error": "認證失敗!請再試一次", + "Login_with": "登入為", + "Logging_out": "正在登出", + "Logout": "登出", + "Max_number_of_uses": "最大使用次數", + "Max_number_of_users_allowed_is_number": "允許使用者上限數量 {{maxUsers}}", + "members": "成員", + "Members": "成員", + "Mentioned_Messages": "被提及的訊息", + "mentioned": "提到", + "Mentions": "被提及", + "Message_accessibility": "{{time}}來自{{user}}的訊息: {{message}}", + "Message_actions": "訊息操作", + "Message_pinned": "訊息被釘選", + "Message_removed": "訊息被刪除", + "Message_starred": "訊息被標註", + "Message_unstarred": "訊息被取消標註", + "message": "訊息", + "messages": "訊息", + "Message": "訊息", + "Messages": "訊息", + "Message_Reported": "訊息已檢舉", + "Microphone_Permission_Message": "Rocket.Chat 需要存取您的麥克風,以便發送聲音訊息。", + "Microphone_Permission": "麥克風授權", + "Mute": "靜音", + "muted": "被靜音", + "My_servers": "我的伺服器", + "N_people_reacted": "{{n}} 人回复", + "N_users": "{{n}} 位使用者", + "name": "名稱", + "Name": "名稱", + "Navigation_history": "瀏覽歷史記錄", + "Never": "從不", + "New_Message": "新訊息", + "New_Password": "新密碼", + "New_Server": "新伺服器", + "Next": "下一步", + "No_files": "沒有檔案", + "No_limit": "沒有限制", + "No_mentioned_messages": "沒有被提及的訊息", + "No_pinned_messages": "沒有釘選的訊息", + "No_results_found": "沒有搜尋結果", + "No_starred_messages": "沒有加標記的訊息", + "No_thread_messages": "沒有討論串訊息", + "No_label_provided": "沒有提供 {{label}}", + "No_Message": "沒有訊息", + "No_messages_yet": "當前未有訊息", + "No_Reactions": "沒有表情貼", + "No_Read_Receipts": "沒有已讀人員", + "Not_logged": "沒有記錄", + "Not_RC_Server": "這不是一個 Rocket.Chat server.\\n{{contact}}", + "Nothing": "無", + "Nothing_to_save": "沒有東西可儲存!", + "Notify_active_in_this_room": "通知這個聊天室的活躍使用者", + "Notify_all_in_this_room": "通知這個聊天室的所有人", + "Notifications": "通知", + "Notification_Duration": "通知持續時間", + "Notification_Preferences": "通知偏好設定", + "No_available_agents_to_transfer": "沒有可用的代理進行傳輸", + "Offline": "離線", + "Oops": "哎呀!", + "Omnichannel": "Omnichannel", + "Open_Livechats": "打開即時聊天", + "Omnichannel_enable_alert": "您尚未啟用 Omnichannel,是否想要啟用?", + "Onboarding_description": "工作區是團隊或組織協作的空間。向工作區管理員詢問要加入的地址或為您的團隊創建一個。", + "Onboarding_join_workspace": "加入一個工作區", + "Onboarding_subtitle": "超越團隊合作", + "Onboarding_title": "歡迎來到 Rocket.Chat", + "Onboarding_join_open_description": "加入我們的開放工作區以與 Rocket.Chat 團隊及社群交談", + "Onboarding_agree_terms": "繼續,即表示您同意 Rocket.Chat", + "Onboarding_less_options": "較少選項", + "Onboarding_more_options": "較多選項", + "Online": "上線", + "Only_authorized_users_can_write_new_messages": "只有經過授權的使用者才能寫新訊息", + "Open_emoji_selector": "打開 emoji 選擇器", + "Open_Source_Communication": "開源溝通", + "Open_your_authentication_app_and_enter_the_code": "打開您的驗證應用程式並輸入代碼。您也可以使用其中一個備用代碼。", + "OR": "或", + "OS": "作業系統", + "Overwrites_the_server_configuration_and_use_room_config": "覆寫伺服器設置和使用聊天室設置", + "Password": "密碼", + "Parent_channel_or_group": "父頻道或群組", + "Permalink_copied_to_clipboard": "永久連結已複製到剪貼簿!", + "Phone": "電話", + "Pin": "釘選", + "Pinned_Messages": "釘選訊息", + "pinned": "已被釘選", + "Pinned": "被釘選", + "Please_add_a_comment": "請新增評論", + "Please_enter_your_password": "請輸入密碼", + "Please_wait": "請稍候", + "Preferences": "偏好設定", + "Preferences_saved": "偏好設定已被儲存!", + "Privacy_Policy": "隱私政策", + "Private_Channel": "私人頻道", + "Private": "私有的", + "Processing": "處理中", + "Profile_saved_successfully": "個人資料儲存成功!", + "Profile": "個人資料", + "Public_Channel": "公共頻道", + "Public": "公共", + "Push_Notifications": "推送通知", + "Push_Notifications_Alert_Info": "這些通知將在未開啟 App 時發送給您", + "Quote": "引用", + "Reactions_are_disabled": "表情貼被禁用", + "Reactions_are_enabled": "表情貼被啟用", + "Reactions": "表情貼", + "Read": "讀取", + "Read_External_Permission_Message": "Rocket.Chat 需要存取您裝置上的相片、多媒體及檔案", + "Read_External_Permission": "讀取媒體權限", + "Read_Only_Channel": "唯讀頻道", + "Read_Only": "唯讀", + "Read_Receipt": "查看已讀人員", + "Receive_Group_Mentions": "接收群組提及", + "Receive_Group_Mentions_Info": "接收@all和@here提及", + "Register": "註冊", + "Repeat_Password": "重複輸入密碼", + "Replied_on": "回覆在", + "replies": "回覆", + "reply": "回覆", + "Reply": "回覆", + "Report": "檢舉", + "Receive_Notification": "接收通知", + "Receive_notifications_from": "接收來自 {{name}} 的通知", + "Resend": "重新發送", + "Reset_password": "重置密碼", + "resetting_password": "正在重置密碼", + "RESET": "重置", + "Return": "返回", + "Review_app_title": "對此 App 滿意嗎?", + "Review_app_desc": "請在 {{store}} 給予我們 5 星好評", + "Review_app_yes": "沒問題", + "Review_app_no": "婉拒", + "Review_app_later": "之後再說", + "Review_app_unable_store": "無法開啟 {{store}}", + "Review_this_app": "評分此 App", + "Remove": "移除", + "Roles": "角色", + "Room_actions": "聊天室操作", + "Room_changed_announcement": "{{userBy}}將聊天室通知改為:{{announcement}}", + "Room_changed_avatar": "Room avatar changed by {{userBy}}", + "Room_changed_description": "{{userBy}}將聊天室說明改為:{{description}}", + "Room_changed_privacy": "{{userBy}}將聊天室類型改為:{{type}}", + "Room_changed_topic": "{{userBy}}將聊天室主題改為:{{topic}}", + "Room_Files": "聊天室檔案", + "Room_Info_Edit": "修改聊天室資訊", + "Room_Info": "聊天室資訊", + "Room_Members": "聊天室成員", + "Room_name_changed": "{{userBy}} 將聊天室名稱改為:{{name}}", + "SAVE": "儲存", + "Save_Changes": "儲存更改", + "Save": "儲存", + "Saved": "保存", + "saving_preferences": "儲存偏好設定", + "saving_profile": "儲存配置文件", + "saving_settings": "儲存設定", + "saved_to_gallery": "儲存至圖片庫", + "Save_Your_E2E_Password": "儲存您的 E2E 密碼", + "Save_Your_Encryption_Password": "儲存您的加密密碼", + "Save_Your_Encryption_Password_warning": "此密碼未被儲存在任何地方,為此您必須安全存放您的密碼", + "Save_Your_Encryption_Password_info": "請記住,如果你遺失了您的密碼,您將無法存取您的訊息並不可恢復", + "Search_Messages": "搜尋訊息", + "Search": "搜尋", + "Search_by": "搜尋", + "Search_global_users": "搜尋全域使用者", + "Search_global_users_description": "如果啟用,您將可以搜尋其他公司、伺服器上的任何使用者", + "Seconds": "{{second}} 秒", + "Security_and_privacy": "安全與隱私", + "Select_Avatar": "選擇大頭貼", + "Select_Server": "選擇伺服器", + "Select_Users": "選擇使用者", + "Select_a_Channel": "選擇一個頻道", + "Select_a_Department": "選擇一個部門", + "Select_an_option": "選擇一個選項", + "Select_a_User": "選擇一個使用者", + "Send": "發送", + "Send_audio_message": "發送語音訊息", + "Send_crash_report": "送出當機報告", + "Send_message": "發送訊息", + "Send_me_the_code_again": "再次發送代碼給我", + "Send_to": "發送到", + "Sending_to": "正發送到", + "Sent_an_attachment": "發送附件", + "Server": "伺服器", + "Servers": "伺服器", + "Server_version": "伺服器版本: {{version}}", + "Set_username_subtitle": "使用者名稱是用來讓其他使用者在訊息中提到您", + "Set_custom_status": "設定自訂狀態", + "Set_status": "設定狀態", + "Status_saved_successfully": "狀態儲存成功", + "Settings": "設定", + "Settings_succesfully_changed": "設定更改成功!", + "Share": "分享", + "Share_Link": "分享連結", + "Share_this_app": "分享此 app", + "Show_more": "顯示更多", + "Show_Unread_Counter": "顯示未讀訊息數量", + "Show_Unread_Counter_Info": "顯示未讀訊息數量資訊", + "Sign_in_your_server": "登錄你的伺服器", + "Sign_Up": "註冊", + "Some_field_is_invalid_or_empty": "某些字段無效或為空", + "Sorting_by": "以{{key}}排序", + "Sound": "聲音", + "Star_room": "標記聊天室", + "Star": "標記", + "Starred_Messages": "標記的訊息", + "starred": "被標記", + "Starred": "已標記", + "Start_of_conversation": "開始對話", + "Start_a_Discussion": "開始一個討論", + "Started_discussion": "已開始的討論", + "Started_call": "{{userBy}} 開始的通話", + "Submit": "送出", + "Table": "表格", + "Tags": "標籤", + "Take_a_photo": "拍照", + "Take_a_video": "錄影", + "Take_it": "拿去!", + "tap_to_change_status": "點擊即可更改狀態", + "Tap_to_view_servers_list": "點擊查看伺服器列表", + "Terms_of_Service": "服務條款", + "Theme": "佈景主題", + "The_user_wont_be_able_to_type_in_roomName": "此使用者將無法在 {{roomName}} 中輸入", + "The_user_will_be_able_to_type_in_roomName": "此使用者將可以在 {{roomName}} 中輸入", + "There_was_an_error_while_action": "{{action}}出現錯誤!", + "This_room_is_blocked": "這個聊天室已被鎖定", + "This_room_is_read_only": "這個聊天室是唯讀的", + "Thread": "討論串", + "Threads": "討論串", + "Timezone": "時區", + "To": "到", + "topic": "主題", + "Topic": "主題", + "Translate": "翻譯", + "Try_again": "再試一次", + "Two_Factor_Authentication": "雙重認證", + "Type_the_channel_name_here": "在這裡輸入頻道名稱", + "unarchive": "取消封存", + "UNARCHIVE": "取消封存", + "Unblock_user": "解除封鎖", + "Unfavorite": "取消最愛", + "Unfollowed_thread": "取消追蹤討論", + "Unmute": "取消靜音", + "unmuted": "靜音狀態", + "Unpin": "取消釘選", + "unread_messages": "未讀訊息", + "Unread": "未讀", + "Unread_on_top": "未讀優先", + "Unstar": "取消標記", + "Updating": "正在更新", + "Uploading": "正在上傳", + "Upload_file_question_mark": "上傳文件?", + "User": "使用者", + "Users": "使用者", + "User_added_by": "由{{userBy}}添加的使用者 {{userAdded}}", + "User_Info": "使用者資訊", + "User_has_been_key": "使用者已被{{key}}", + "User_is_no_longer_role_by_": "{{userBy}}將角色 {{role}} 從使用者 {{user}} 身上移除", + "User_muted_by": "使用者 {{userMuted}} 被 {{userBy}} 靜音", + "User_removed_by": "使用者 {{userRemoved}} 被 {{userBy}} 移除", + "User_sent_an_attachment": "{{user}} 寄送了一個附件", + "User_unmuted_by": "使用者 {{userUnmuted}} 被 {{userBy}} 取消靜音", + "User_was_set_role_by_": "使用者 {{user}} 被 {{userBy}} 設置角色 {{role}}", + "Username_is_empty": "使用者名稱是空的", + "Username": "使用者名稱", + "Username_or_email": "使用者名稱或電子郵件", + "Uses_server_configuration": "使用伺服器設定", + "Validating": "正在驗證", + "Registration_Succeeded": "註冊成功", + "Verify": "驗證", + "Verify_email_title": "註冊成功", + "Verify_email_desc": "我們已經送出一封電子郵件,以確認您的註冊。如果您沒有很快收到,請再試一次。", + "Verify_your_email_for_the_code_we_sent": "檢查您的電子郵件以取得我們發送的代碼", + "Video_call": "視訊通話", + "View_Original": "檢視原文", + "Voice_call": "語音通話", + "Waiting_for_network": "等待網路連線", + "Websocket_disabled": "Websocket 已於此伺服器上禁用。\\n{{contact}}", + "Welcome": "歡迎", + "What_are_you_doing_right_now": "現在在做些什麼?", + "Whats_your_2fa": "您的 2FA 代碼是?", + "Without_Servers": "未連接至伺服器", + "Workspaces": "工作區", + "Would_you_like_to_return_the_inquiry": "你想回覆詢問嗎?", + "Write_External_Permission_Message": "Rocket.Chat 需要您圖片庫的存取權限以儲存圖片。", + "Write_External_Permission": "圖片庫權限", + "Yes": "是", + "Yes_action_it": "是的,{{action}}它!", + "Yesterday": "昨天", + "You_are_in_preview_mode": "您處於預覽模式", + "You_are_offline": "您處於離線狀態", + "You_can_search_using_RegExp_eg": "您可用 RegExp 進行搜尋。例如`/^text$/i`", + "You_colon": "你:", + "you_were_mentioned": "你被提到了", + "You_were_removed_from_channel": "您已從 {{channel}} 中被踢除", + "you": "你", + "You": "你", + "Logged_out_by_server": "伺服器端已將你登出,請重新登入", + "You_need_to_access_at_least_one_RocketChat_server_to_share_something": "您需要至少連接一個 Rocket.Chat 伺服器才能共享某些内容。", + "You_need_to_verifiy_your_email_address_to_get_notications": "您需要先驗證您的電子郵件以啟用通知", + "Your_certificate": "你的證書", + "Your_invite_link_will_expire_after__usesLeft__uses": "您的邀請連結將在{{usesLeft}}使用後到期。", + "Your_invite_link_will_expire_on__date__or_after__usesLeft__uses": "您的邀請連結將於{{date}}或{{usesLeft}}使用後到期。", + "Your_invite_link_will_expire_on__date__": "您的邀請連結將於{{date}}到期。", + "Your_invite_link_will_never_expire": "您的邀請連結永久有效。", + "Your_workspace": "您的工作區", + "Your_password_is": "您的密碼", + "Version_no": "版本: {{version}}", + "You_will_not_be_able_to_recover_this_message": "您將無法恢復此訊息!", + "You_will_unset_a_certificate_for_this_server": "您將取消此伺服器的憑證設定", + "Change_Language": "切換語言", + "Crash_report_disclaimer": "我們絕不記錄您的聊天內容。 崩潰報告和分析事件僅與 Rocket.Chat 有關,以便識別和修復問題。", + "Type_message": "輸入訊息", + "Room_search": "搜索聊天室", + "Room_selection": "選擇房間(輸入 1...9)", + "Next_room": "下一個聊天室", + "Previous_room": "上一個聊天室", + "New_room": "新聊天室", + "Upload_room": "上傳至聊天室", + "Search_messages": "搜尋訊息", + "Scroll_messages": "訊息滾動", + "Reply_latest": "回覆最新訊息", + "Reply_in_Thread": "討論串回覆", + "Server_selection": "選擇伺服器", + "Server_selection_numbers": "選擇伺服器(輸入 1...9)", + "Add_server": "新增伺服器", + "New_line": "新的一行", + "You_will_be_logged_out_of_this_application": "您即將登出", + "Clear": "清除", + "This_will_clear_all_your_offline_data": "這將清除您的所有離線資料。", + "This_will_remove_all_data_from_this_server": "這將從此伺服器中刪除所有資料。", + "Mark_unread": "標記未讀", + "Wait_activation_warning": "您的帳號必須由管理員手動啟用後才能登入。", + "Screen_lock": "螢幕鎖定", + "Local_authentication_biometry_title": "驗證", + "Local_authentication_biometry_fallback": "使用通關密碼", + "Local_authentication_unlock_option": "以通關密碼解鎖", + "Local_authentication_change_passcode": "變更通關密碼", + "Local_authentication_info": "註: 如果您忘記了通關密碼,將需要移除並重新安裝此 App", + "Local_authentication_facial_recognition": "臉部辨識", + "Local_authentication_fingerprint": "指紋辨識", + "Local_authentication_unlock_with_label": "以 {{label}} 解鎖", + "Local_authentication_auto_lock_60": "1分鐘後", + "Local_authentication_auto_lock_300": "5分鐘後", + "Local_authentication_auto_lock_900": "15分鐘後", + "Local_authentication_auto_lock_1800": "半小時後", + "Local_authentication_auto_lock_3600": "一小時後", + "Passcode_enter_title": "請輸入通關密碼", + "Passcode_choose_title": "請輸入新通關密碼", + "Passcode_choose_confirm_title": "請確認新通關密碼", + "Passcode_choose_error": "不正確的通關密碼,請再試一次", + "Passcode_choose_force_set": "管理員設定必填", + "Passcode_app_locked_title": "App 已鎖定", + "Passcode_app_locked_subtitle": "{{timeLeft}} 秒後再進行嘗試", + "After_seconds_set_by_admin": "{{seconds}} 秒 (管理員設定)", + "Dont_activate": "現在不要啟用", + "Queued_chats": "聊天佇列", + "Queue_is_empty": "佇列是空的", + "Logout_from_other_logged_in_locations": "登出其他已登入的設備", + "You_will_be_logged_out_from_other_locations": "您將於其他設備上登出", + "Logged_out_of_other_clients_successfully": "成功登出其他用戶端", + "Logout_failed": "登出失敗", + "Log_analytics_events": "日誌分析事件", + "E2E_encryption_change_password_title": "變更加密密碼", + "E2E_encryption_change_password_description": "現在您可以建立加密私人群組和私訊。您也可以變更已存在的私人群組或是私訊來加密。\\n\\n這是點對點的加密,所以用來加密/解密的金鑰將不會儲存到伺服器上。為此,您必須安全存放您的密碼。如果您希望在其他裝置上使用對點加密時,將會需要輸入此密碼。", + "E2E_encryption_change_password_error": "變更 E2E 密碼時發生錯誤!", + "E2E_encryption_change_password_success": "E2E 密碼已成功變更!", + "E2E_encryption_change_password_message": "請確定您已將其安全存放至別處", + "E2E_encryption_change_password_confirmation": "是,我要變更", + "E2E_encryption_reset_title": "重設 E2E 金鑰", + "E2E_encryption_reset_description": "此選項將撤銷您目前的*E2E 金鑰*並將您登出。\\n當您再次登入時,Rocket.Chat 將產生新的一組金鑰並恢復您對任一有在線成員的加密聊天室之存取權限。\\n由於 E2E 加密的特性,Rocket.Chat 無法恢復無在線成員之聊天室之存取權限。", + "E2E_encryption_reset_button": "重設", + "E2E_encryption_reset_error": "重設 E2E 金鑰時發生錯誤!", + "E2E_encryption_reset_message": "您將被登出", + "E2E_encryption_reset_confirmation": "是,我要重設", + "Following": "正在追蹤", + "Threads_displaying_all": "顯示全部", + "Threads_displaying_following": "顯示追蹤中", + "Threads_displaying_unread": "顯示未讀", + "No_threads": "當前沒有討論串", + "No_threads_following": "當前沒有正在追蹤的討論", + "No_threads_unread": "當前沒有未讀的討論", + "Messagebox_Send_to_channel": "發送至頻道", + "Confirmation": "確認", + "invalid-room": "無效的房間" +} diff --git a/app/index.tsx b/app/index.tsx index 266a901511..86449e71d8 100644 --- a/app/index.tsx +++ b/app/index.tsx @@ -34,18 +34,18 @@ import { isFDroidBuild } from './constants/environment'; RNScreens.enableScreens(); interface IDimensions { - width: number, - height: number, - scale: number, - fontScale: number + width: number; + height: number; + scale: number; + fontScale: number; } interface IState { - theme: string, + theme: string; themePreferences: { - currentTheme: 'automatic' | 'light', - darkLevel: string - }, + currentTheme: 'automatic' | 'light'; + darkLevel: string; + }; width: number; height: number; scale: number; @@ -89,12 +89,12 @@ export default class Root extends React.Component<{}, IState> { theme: defaultTheme(), themePreferences: { currentTheme: supportSystemTheme() ? 'automatic' : 'light', - darkLevel: 'black', + darkLevel: 'black' }, width, height, scale, - fontScale, + fontScale }; if (isTablet) { this.initTablet(); @@ -145,14 +145,14 @@ export default class Root extends React.Component<{}, IState> { // Open app from app icon store.dispatch(appInit()); - } + }; getMasterDetail = (width: number) => { if (!isTablet) { return false; } return width > MIN_WIDTH_MASTER_DETAIL_LAYOUT; - } + }; setMasterDetail = (width: number) => { const isMasterDetail = this.getMasterDetail(width); @@ -160,51 +160,48 @@ export default class Root extends React.Component<{}, IState> { }; // Dimensions update fires twice - onDimensionsChange = debounce(({ - window: { - width, height, scale, fontScale, - }, - }: {window: IDimensions}) => { + onDimensionsChange = debounce(({ window: { width, height, scale, fontScale } }: { window: IDimensions }) => { this.setDimensions({ - width, height, scale, fontScale, + width, + height, + scale, + fontScale }); this.setMasterDetail(width); - }) + }); setTheme = (newTheme = {}) => { // change theme state - this.setState((prevState) => newThemeState(prevState, newTheme), () => { - const { themePreferences } = this.state; - // subscribe to Appearance changes - subscribeTheme(themePreferences, this.setTheme); - }); - } + this.setState( + prevState => newThemeState(prevState, newTheme), + () => { + const { themePreferences } = this.state; + // subscribe to Appearance changes + subscribeTheme(themePreferences, this.setTheme); + } + ); + }; setDimensions = ({ width, height, scale, fontScale }: IDimensions) => { this.setState({ width, height, scale, fontScale }); - } + }; initTablet = () => { const { width } = this.state; this.setMasterDetail(width); - this.onKeyCommands = KeyCommandsEmitter.addListener( - 'onKeyCommand', - (command: unknown) => { - EventEmitter.emit(KEY_COMMAND, { event: command }); - }, - ); - } + this.onKeyCommands = KeyCommandsEmitter.addListener('onKeyCommand', (command: unknown) => { + EventEmitter.emit(KEY_COMMAND, { event: command }); + }); + }; initCrashReport = () => { - RocketChat.getAllowCrashReport() - .then((allowCrashReport) => { - toggleCrashErrorsReport(allowCrashReport); - }); - RocketChat.getAllowAnalyticsEvents() - .then((allowAnalyticsEvents) => { - toggleAnalyticsEventsReport(allowAnalyticsEvents); - }); - } + RocketChat.getAllowCrashReport().then(allowCrashReport => { + toggleCrashErrorsReport(allowCrashReport); + }); + RocketChat.getAllowAnalyticsEvents().then(allowAnalyticsEvents => { + toggleAnalyticsEventsReport(allowAnalyticsEvents); + }); + }; render() { const { themePreferences, theme, width, height, scale, fontScale } = this.state; @@ -216,18 +213,16 @@ export default class Root extends React.Component<{}, IState> { value={{ theme, themePreferences, - setTheme: this.setTheme, - }} - > + setTheme: this.setTheme + }}> <DimensionsContext.Provider value={{ width, height, scale, fontScale, - setDimensions: this.setDimensions, - }} - > + setDimensions: this.setDimensions + }}> <ActionSheetProvider> <AppContainer /> <TwoFactor /> diff --git a/app/lib/Icons.js b/app/lib/Icons.js index 9ab432a726..839ccca87a 100644 --- a/app/lib/Icons.js +++ b/app/lib/Icons.js @@ -2,10 +2,6 @@ import { createIconSetFromIcoMoon } from 'react-native-vector-icons'; import icoMoonConfig from './selection.json'; -const CustomIcon = createIconSetFromIcoMoon( - icoMoonConfig, - 'custom', - 'custom.ttf' -); +const CustomIcon = createIconSetFromIcoMoon(icoMoonConfig, 'custom', 'custom.ttf'); export { CustomIcon }; diff --git a/app/lib/Navigation.ts b/app/lib/Navigation.ts index 0beb11b31a..28f2656cfb 100644 --- a/app/lib/Navigation.ts +++ b/app/lib/Navigation.ts @@ -21,5 +21,5 @@ export default { routeNameRef, navigate, back, - replace, + replace }; diff --git a/app/lib/ShareNavigation.ts b/app/lib/ShareNavigation.ts index 413698d004..5cc15c2e10 100644 --- a/app/lib/ShareNavigation.ts +++ b/app/lib/ShareNavigation.ts @@ -1,11 +1,10 @@ import * as React from 'react'; import { NavigationContainerRef } from '@react-navigation/native'; - const navigationRef = React.createRef<NavigationContainerRef>(); const routeNameRef: React.MutableRefObject<NavigationContainerRef | null> = React.createRef(); export default { navigationRef, - routeNameRef, + routeNameRef }; diff --git a/app/lib/appStateMiddleware.js b/app/lib/appStateMiddleware.js index 7bc5375f0e..93fdff95a3 100644 --- a/app/lib/appStateMiddleware.js +++ b/app/lib/appStateMiddleware.js @@ -3,33 +3,35 @@ import { AppState } from 'react-native'; import { APP_STATE } from '../actions/actionsTypes'; -export default () => createStore => (...args) => { - const store = createStore(...args); +export default () => + createStore => + (...args) => { + const store = createStore(...args); - let currentState = ''; + let currentState = ''; - const handleAppStateChange = (nextAppState) => { - if (nextAppState !== 'inactive') { - if (currentState !== nextAppState) { - let type; - if (nextAppState === 'active') { - type = APP_STATE.FOREGROUND; - } else if (nextAppState === 'background') { - type = APP_STATE.BACKGROUND; - } - if (type) { - store.dispatch({ - type - }); + const handleAppStateChange = nextAppState => { + if (nextAppState !== 'inactive') { + if (currentState !== nextAppState) { + let type; + if (nextAppState === 'active') { + type = APP_STATE.FOREGROUND; + } else if (nextAppState === 'background') { + type = APP_STATE.BACKGROUND; + } + if (type) { + store.dispatch({ + type + }); + } } + currentState = nextAppState; } - currentState = nextAppState; - } - }; + }; - AppState.addEventListener('change', handleAppStateChange); + AppState.addEventListener('change', handleAppStateChange); - // setTimeout to allow redux-saga to catch the initial state fired by redux-enhancer-react-native-appstate library - setTimeout(() => handleAppStateChange(AppState.currentState)); - return store; -}; + // setTimeout to allow redux-saga to catch the initial state fired by redux-enhancer-react-native-appstate library + setTimeout(() => handleAppStateChange(AppState.currentState)); + return store; + }; diff --git a/app/lib/createStore.js b/app/lib/createStore.js index 6716caabfe..a9608de6c1 100644 --- a/app/lib/createStore.js +++ b/app/lib/createStore.js @@ -23,10 +23,7 @@ if (__DEV__) { ); } else { sagaMiddleware = createSagaMiddleware(); - enhancers = compose( - applyAppStateMiddleware(), - applyMiddleware(sagaMiddleware) - ); + enhancers = compose(applyAppStateMiddleware(), applyMiddleware(sagaMiddleware)); } const store = createStore(reducers, enhancers); diff --git a/app/lib/database/index.js b/app/lib/database/index.js index 1000af9216..dfda88a982 100644 --- a/app/lib/database/index.js +++ b/app/lib/database/index.js @@ -32,7 +32,7 @@ if (__DEV__ && isIOS) { console.log(appGroupPath); } -const getDatabasePath = name => `${ appGroupPath }${ name }${ isOfficial ? '' : '-experimental' }.db`; +const getDatabasePath = name => `${appGroupPath}${name}${isOfficial ? '' : '-experimental'}.db`; export const getDatabase = (database = '') => { const path = database.replace(/(^\w+:|^)\/\//, '').replace(/\//g, '.'); @@ -76,7 +76,7 @@ class DB { modelClasses: [Server, LoggedUser, ServersHistory], actionsEnabled: true }) - } + }; get active() { return this.databases.shareDB || this.databases.activeDB; diff --git a/app/lib/database/model/Message.js b/app/lib/database/model/Message.js index 643bbc95d4..a03902a263 100644 --- a/app/lib/database/model/Message.js +++ b/app/lib/database/model/Message.js @@ -1,7 +1,5 @@ import { Model } from '@nozbe/watermelondb'; -import { - date, field, json, relation -} from '@nozbe/watermelondb/decorators'; +import { date, field, json, relation } from '@nozbe/watermelondb/decorators'; import { sanitizer } from '../utils'; @@ -12,7 +10,7 @@ export default class Message extends Model { static associations = { subscriptions: { type: 'belongs_to', key: 'rid' } - } + }; @field('msg') msg; diff --git a/app/lib/database/model/ServersHistory.js b/app/lib/database/model/ServersHistory.js index 7b11910802..4bbef3e987 100644 --- a/app/lib/database/model/ServersHistory.js +++ b/app/lib/database/model/ServersHistory.js @@ -8,5 +8,5 @@ export default class ServersHistory extends Model { @field('username') username; - @readonly @date('updated_at') updatedAt + @readonly @date('updated_at') updatedAt; } diff --git a/app/lib/database/model/SlashCommand.js b/app/lib/database/model/SlashCommand.js index 8d792f7100..418e721442 100644 --- a/app/lib/database/model/SlashCommand.js +++ b/app/lib/database/model/SlashCommand.js @@ -4,13 +4,13 @@ import { field } from '@nozbe/watermelondb/decorators'; export default class SlashCommand extends Model { static table = 'slash_commands'; - @field('params') params; + @field('params') params; - @field('description') description; + @field('description') description; - @field('client_only') clientOnly; + @field('client_only') clientOnly; - @field('provides_preview') providesPreview; + @field('provides_preview') providesPreview; - @field('app_id') appId; + @field('app_id') appId; } diff --git a/app/lib/database/model/Subscription.js b/app/lib/database/model/Subscription.js index c636bea3d0..aab0e0bbbe 100644 --- a/app/lib/database/model/Subscription.js +++ b/app/lib/database/model/Subscription.js @@ -1,7 +1,5 @@ import { Model } from '@nozbe/watermelondb'; -import { - children, date, field, json -} from '@nozbe/watermelondb/decorators'; +import { children, date, field, json } from '@nozbe/watermelondb/decorators'; import { sanitizer } from '../utils'; @@ -15,7 +13,7 @@ export default class Subscription extends Model { threads: { type: 'has_many', foreignKey: 'rid' }, thread_messages: { type: 'has_many', foreignKey: 'subscription_id' }, uploads: { type: 'has_many', foreignKey: 'rid' } - } + }; @field('_id') _id; diff --git a/app/lib/database/model/Thread.js b/app/lib/database/model/Thread.js index 1760b19db1..5d1246af8b 100644 --- a/app/lib/database/model/Thread.js +++ b/app/lib/database/model/Thread.js @@ -1,7 +1,5 @@ import { Model } from '@nozbe/watermelondb'; -import { - date, field, json, relation -} from '@nozbe/watermelondb/decorators'; +import { date, field, json, relation } from '@nozbe/watermelondb/decorators'; import { sanitizer } from '../utils'; @@ -12,7 +10,7 @@ export default class Thread extends Model { static associations = { subscriptions: { type: 'belongs_to', key: 'rid' } - } + }; @field('msg') msg; diff --git a/app/lib/database/model/ThreadMessage.js b/app/lib/database/model/ThreadMessage.js index c8e0de631e..27ea0e8500 100644 --- a/app/lib/database/model/ThreadMessage.js +++ b/app/lib/database/model/ThreadMessage.js @@ -1,7 +1,5 @@ import { Model } from '@nozbe/watermelondb'; -import { - date, field, json, relation -} from '@nozbe/watermelondb/decorators'; +import { date, field, json, relation } from '@nozbe/watermelondb/decorators'; import { sanitizer } from '../utils'; @@ -12,7 +10,7 @@ export default class ThreadMessage extends Model { static associations = { subscriptions: { type: 'belongs_to', key: 'subscription_id' } - } + }; @field('msg') msg; diff --git a/app/lib/database/model/Upload.js b/app/lib/database/model/Upload.js index 3a60740994..810fcd5b75 100644 --- a/app/lib/database/model/Upload.js +++ b/app/lib/database/model/Upload.js @@ -6,7 +6,7 @@ export default class Upload extends Model { static associations = { subscriptions: { type: 'belongs_to', key: 'rid' } - } + }; @field('path') path; diff --git a/app/lib/database/model/migrations.js b/app/lib/database/model/migrations.js index c58651f042..fe32ec4f3f 100644 --- a/app/lib/database/model/migrations.js +++ b/app/lib/database/model/migrations.js @@ -7,9 +7,7 @@ export default schemaMigrations({ steps: [ addColumns({ table: 'subscriptions', - columns: [ - { name: 'jitsi_timeout', type: 'number', isOptional: true } - ] + columns: [{ name: 'jitsi_timeout', type: 'number', isOptional: true }] }) ] }, @@ -18,9 +16,7 @@ export default schemaMigrations({ steps: [ addColumns({ table: 'subscriptions', - columns: [ - { name: 'hide_unread_status', type: 'boolean', isOptional: true } - ] + columns: [{ name: 'hide_unread_status', type: 'boolean', isOptional: true }] }) ] }, @@ -29,15 +25,11 @@ export default schemaMigrations({ steps: [ addColumns({ table: 'messages', - columns: [ - { name: 'blocks', type: 'string', isOptional: true } - ] + columns: [{ name: 'blocks', type: 'string', isOptional: true }] }), addColumns({ table: 'slash_commands', - columns: [ - { name: 'app_id', type: 'string', isOptional: true } - ] + columns: [{ name: 'app_id', type: 'string', isOptional: true }] }) ] }, @@ -46,9 +38,7 @@ export default schemaMigrations({ steps: [ addColumns({ table: 'settings', - columns: [ - { name: 'value_as_array', type: 'string', isOptional: true } - ] + columns: [{ name: 'value_as_array', type: 'string', isOptional: true }] }) ] }, @@ -57,9 +47,7 @@ export default schemaMigrations({ steps: [ addColumns({ table: 'subscriptions', - columns: [ - { name: 'sys_mes', type: 'string', isOptional: true } - ] + columns: [{ name: 'sys_mes', type: 'string', isOptional: true }] }) ] }, @@ -80,21 +68,15 @@ export default schemaMigrations({ steps: [ addColumns({ table: 'messages', - columns: [ - { name: 'emoji', type: 'string', isOptional: true } - ] + columns: [{ name: 'emoji', type: 'string', isOptional: true }] }), addColumns({ table: 'thread_messages', - columns: [ - { name: 'emoji', type: 'string', isOptional: true } - ] + columns: [{ name: 'emoji', type: 'string', isOptional: true }] }), addColumns({ table: 'threads', - columns: [ - { name: 'emoji', type: 'string', isOptional: true } - ] + columns: [{ name: 'emoji', type: 'string', isOptional: true }] }), addColumns({ table: 'subscriptions', @@ -124,9 +106,7 @@ export default schemaMigrations({ steps: [ addColumns({ table: 'subscriptions', - columns: [ - { name: 'group_mentions', type: 'number', isOptional: true } - ] + columns: [{ name: 'group_mentions', type: 'number', isOptional: true }] }) ] }, @@ -143,27 +123,19 @@ export default schemaMigrations({ }), addColumns({ table: 'messages', - columns: [ - { name: 'e2e', type: 'string', isOptional: true } - ] + columns: [{ name: 'e2e', type: 'string', isOptional: true }] }), addColumns({ table: 'thread_messages', - columns: [ - { name: 'e2e', type: 'string', isOptional: true } - ] + columns: [{ name: 'e2e', type: 'string', isOptional: true }] }), addColumns({ table: 'threads', - columns: [ - { name: 'e2e', type: 'string', isOptional: true } - ] + columns: [{ name: 'e2e', type: 'string', isOptional: true }] }), addColumns({ table: 'rooms', - columns: [ - { name: 'e2e_key_id', type: 'string', isOptional: true } - ] + columns: [{ name: 'e2e_key_id', type: 'string', isOptional: true }] }) ] }, @@ -172,9 +144,7 @@ export default schemaMigrations({ steps: [ addColumns({ table: 'messages', - columns: [ - { name: 'tshow', type: 'boolean', isOptional: true } - ] + columns: [{ name: 'tshow', type: 'boolean', isOptional: true }] }), createTable({ name: 'users', @@ -196,9 +166,7 @@ export default schemaMigrations({ }), addColumns({ table: 'rooms', - columns: [ - { name: 'avatar_etag', type: 'string', isOptional: true } - ] + columns: [{ name: 'avatar_etag', type: 'string', isOptional: true }] }) ] }, @@ -207,9 +175,7 @@ export default schemaMigrations({ steps: [ addColumns({ table: 'subscriptions', - columns: [ - { name: 'ignored', type: 'string', isOptional: true } - ] + columns: [{ name: 'ignored', type: 'string', isOptional: true }] }) ] }, diff --git a/app/lib/database/model/servers/migrations.js b/app/lib/database/model/servers/migrations.js index 64a72cb035..51ec2b73b4 100644 --- a/app/lib/database/model/servers/migrations.js +++ b/app/lib/database/model/servers/migrations.js @@ -7,9 +7,7 @@ export default schemaMigrations({ steps: [ addColumns({ table: 'users', - columns: [ - { name: 'statusText', type: 'string', isOptional: true } - ] + columns: [{ name: 'statusText', type: 'string', isOptional: true }] }) ] }, @@ -32,9 +30,7 @@ export default schemaMigrations({ steps: [ addColumns({ table: 'servers', - columns: [ - { name: 'unique_id', type: 'string', isOptional: true } - ] + columns: [{ name: 'unique_id', type: 'string', isOptional: true }] }) ] }, @@ -43,9 +39,7 @@ export default schemaMigrations({ steps: [ addColumns({ table: 'servers', - columns: [ - { name: 'enterprise_modules', type: 'string', isOptional: true } - ] + columns: [{ name: 'enterprise_modules', type: 'string', isOptional: true }] }) ] }, @@ -54,9 +48,7 @@ export default schemaMigrations({ steps: [ addColumns({ table: 'users', - columns: [ - { name: 'login_email_password', type: 'boolean', isOptional: true } - ] + columns: [{ name: 'login_email_password', type: 'boolean', isOptional: true }] }) ] }, @@ -65,9 +57,7 @@ export default schemaMigrations({ steps: [ addColumns({ table: 'servers', - columns: [ - { name: 'e2e_enable', type: 'boolean', isOptional: true } - ] + columns: [{ name: 'e2e_enable', type: 'boolean', isOptional: true }] }) ] }, @@ -95,14 +85,13 @@ export default schemaMigrations({ ] }) ] - }, { + }, + { toVersion: 11, steps: [ addColumns({ table: 'users', - columns: [ - { name: 'is_from_webview', type: 'boolean', isOptional: true } - ] + columns: [{ name: 'is_from_webview', type: 'boolean', isOptional: true }] }) ] } diff --git a/app/lib/database/schema/app.js b/app/lib/database/schema/app.js index ac7b97e78b..33bde61de5 100644 --- a/app/lib/database/schema/app.js +++ b/app/lib/database/schema/app.js @@ -236,9 +236,7 @@ export default appSchema({ }), tableSchema({ name: 'roles', - columns: [ - { name: 'description', type: 'string', isOptional: true } - ] + columns: [{ name: 'description', type: 'string', isOptional: true }] }), tableSchema({ name: 'permissions', diff --git a/app/lib/database/services/Message.js b/app/lib/database/services/Message.js index 5999446bad..594513decb 100644 --- a/app/lib/database/services/Message.js +++ b/app/lib/database/services/Message.js @@ -3,7 +3,7 @@ import { TABLE_NAME } from '../model/Message'; const getCollection = db => db.get(TABLE_NAME); -export const getMessageById = async(messageId) => { +export const getMessageById = async messageId => { const db = database.active; const messageCollection = getCollection(db); try { diff --git a/app/lib/database/services/Subscription.js b/app/lib/database/services/Subscription.js index 925bb97e44..68bf8ac96f 100644 --- a/app/lib/database/services/Subscription.js +++ b/app/lib/database/services/Subscription.js @@ -3,7 +3,7 @@ import { TABLE_NAME } from '../model/Subscription'; const getCollection = db => db.get(TABLE_NAME); -export const getSubscriptionByRoomId = async(rid) => { +export const getSubscriptionByRoomId = async rid => { const db = database.active; const subCollection = getCollection(db); try { diff --git a/app/lib/database/services/Thread.js b/app/lib/database/services/Thread.js index 4c42086099..9b362dcb1a 100644 --- a/app/lib/database/services/Thread.js +++ b/app/lib/database/services/Thread.js @@ -3,7 +3,7 @@ import { TABLE_NAME } from '../model/Thread'; const getCollection = db => db.get(TABLE_NAME); -export const getThreadById = async(tmid) => { +export const getThreadById = async tmid => { const db = database.active; const threadCollection = getCollection(db); try { diff --git a/app/lib/database/services/ThreadMessage.js b/app/lib/database/services/ThreadMessage.js index ca1e5fc833..e9509774e1 100644 --- a/app/lib/database/services/ThreadMessage.js +++ b/app/lib/database/services/ThreadMessage.js @@ -3,7 +3,7 @@ import { TABLE_NAME } from '../model/ThreadMessage'; const getCollection = db => db.get(TABLE_NAME); -export const getThreadMessageById = async(messageId) => { +export const getThreadMessageById = async messageId => { const db = database.active; const threadMessageCollection = getCollection(db); try { diff --git a/app/lib/database/utils.test.js b/app/lib/database/utils.test.js index cbeae7b8a5..8c1d054e17 100644 --- a/app/lib/database/utils.test.js +++ b/app/lib/database/utils.test.js @@ -4,7 +4,8 @@ import * as utils from './utils'; describe('sanitizeLikeStringTester', () => { // example chars that shouldn't return const disallowedChars = ',./;[]!@#$%^&*()_-=+~'; - const sanitizeLikeStringTester = str => expect(utils.sanitizeLikeString(`${ str }${ disallowedChars }`)).toBe(`${ str }${ '_'.repeat(disallowedChars.length) }`); + const sanitizeLikeStringTester = str => + expect(utils.sanitizeLikeString(`${str}${disallowedChars}`)).toBe(`${str}${'_'.repeat(disallowedChars.length)}`); test('render empty', () => { expect(utils.sanitizeLikeString(null)).toBe(undefined); diff --git a/app/lib/encryption/encryption.js b/app/lib/encryption/encryption.js index 3d6a38ba9c..99a12bd8ca 100644 --- a/app/lib/encryption/encryption.js +++ b/app/lib/encryption/encryption.js @@ -18,13 +18,7 @@ import { E2E_RANDOM_PASSWORD_KEY, E2E_STATUS } from './constants'; -import { - joinVectorData, - randomPassword, - splitVectorData, - toString, - utf8ToBuffer -} from './utils'; +import { joinVectorData, randomPassword, splitVectorData, toString, utf8ToBuffer } from './utils'; import { EncryptionRoom } from './index'; class Encryption { @@ -43,7 +37,7 @@ class Encryption { } // Initialize Encryption client - initialize = (userId) => { + initialize = userId => { this.userId = userId; this.roomInstances = {}; @@ -54,7 +48,7 @@ class Encryption { // Mark Encryption client as ready this.readyPromise.resolve(); - } + }; get establishing() { const { banner } = store.getState().encryption; @@ -85,10 +79,10 @@ class Encryption { .catch(() => { this.ready = false; }); - } + }; // When a new participant join and request a new room encryption key - provideRoomKeyToUser = async(keyId, rid) => { + provideRoomKeyToUser = async (keyId, rid) => { // If the client is not ready if (!this.ready) { try { @@ -103,17 +97,17 @@ class Encryption { const roomE2E = await this.getRoomInstance(rid); return roomE2E.provideKeyToUser(keyId); - } + }; // Persist keys on UserPreferences - persistKeys = async(server, publicKey, privateKey) => { + persistKeys = async (server, publicKey, privateKey) => { this.privateKey = await SimpleCrypto.RSA.importKey(EJSON.parse(privateKey)); - await UserPreferences.setStringAsync(`${ server }-${ E2E_PUBLIC_KEY }`, EJSON.stringify(publicKey)); - await UserPreferences.setStringAsync(`${ server }-${ E2E_PRIVATE_KEY }`, privateKey); - } + await UserPreferences.setStringAsync(`${server}-${E2E_PUBLIC_KEY}`, EJSON.stringify(publicKey)); + await UserPreferences.setStringAsync(`${server}-${E2E_PRIVATE_KEY}`, privateKey); + }; // Could not obtain public-private keypair from server. - createKeys = async(userId, server) => { + createKeys = async (userId, server) => { // Generate new keys const key = await SimpleCrypto.RSA.generateKeys(2048); @@ -135,38 +129,30 @@ class Encryption { // Request e2e keys of all encrypted rooms await RocketChat.e2eRequestSubscriptionKeys(); - } + }; // Encode a private key before send it to the server - encodePrivateKey = async(privateKey, password, userId) => { + encodePrivateKey = async (privateKey, password, userId) => { const masterKey = await this.generateMasterKey(password, userId); const vector = await SimpleCrypto.utils.randomBytes(16); - const data = await SimpleCrypto.AES.encrypt( - utf8ToBuffer(privateKey), - masterKey, - vector - ); + const data = await SimpleCrypto.AES.encrypt(utf8ToBuffer(privateKey), masterKey, vector); return EJSON.stringify(new Uint8Array(joinVectorData(vector, data))); - } + }; // Decode a private key fetched from server - decodePrivateKey = async(privateKey, password, userId) => { + decodePrivateKey = async (privateKey, password, userId) => { const masterKey = await this.generateMasterKey(password, userId); const [vector, cipherText] = splitVectorData(EJSON.parse(privateKey)); - const privKey = await SimpleCrypto.AES.decrypt( - cipherText, - masterKey, - vector - ); + const privKey = await SimpleCrypto.AES.decrypt(cipherText, masterKey, vector); return toString(privKey); - } + }; // Generate a user master key, this is based on userId and a password - generateMasterKey = async(password, userId) => { + generateMasterKey = async (password, userId) => { const iterations = 1000; const hash = 'SHA256'; const keyLen = 32; @@ -174,38 +160,32 @@ class Encryption { const passwordBuffer = utf8ToBuffer(password); const saltBuffer = utf8ToBuffer(userId); - const masterKey = await SimpleCrypto.PBKDF2.hash( - passwordBuffer, - saltBuffer, - iterations, - keyLen, - hash - ); + const masterKey = await SimpleCrypto.PBKDF2.hash(passwordBuffer, saltBuffer, iterations, keyLen, hash); return masterKey; - } + }; // Create a random password to local created keys - createRandomPassword = async(server) => { + createRandomPassword = async server => { const password = randomPassword(); - await UserPreferences.setStringAsync(`${ server }-${ E2E_RANDOM_PASSWORD_KEY }`, password); + await UserPreferences.setStringAsync(`${server}-${E2E_RANDOM_PASSWORD_KEY}`, password); return password; - } + }; - changePassword = async(server, password) => { + changePassword = async (server, password) => { // Cast key to the format server is expecting const privateKey = await SimpleCrypto.RSA.exportKey(this.privateKey); // Encode the private key const encodedPrivateKey = await this.encodePrivateKey(EJSON.stringify(privateKey), password, this.userId); - const publicKey = await UserPreferences.getStringAsync(`${ server }-${ E2E_PUBLIC_KEY }`); + const publicKey = await UserPreferences.getStringAsync(`${server}-${E2E_PUBLIC_KEY}`); // Send the new keys to the server await RocketChat.e2eSetUserPublicAndPrivateKeys(EJSON.stringify(publicKey), encodedPrivateKey); - } + }; // get a encryption room instance - getRoomInstance = async(rid) => { + getRoomInstance = async rid => { // Prevent handshake again if (this.roomInstances[rid]?.ready) { return this.roomInstances[rid]; @@ -222,11 +202,11 @@ class Encryption { await roomE2E.handshake(); return roomE2E; - } + }; // Logic to decrypt all pending messages/threads/threadMessages // after initialize the encryption client - decryptPendingMessages = async(roomId) => { + decryptPendingMessages = async roomId => { const db = database.active; const messagesCollection = db.get('messages'); @@ -234,13 +214,7 @@ class Encryption { const threadMessagesCollection = db.get('thread_messages'); // e2e status is null or 'pending' and message type is 'e2e' - const whereClause = [ - Q.where('t', E2E_MESSAGE_TYPE), - Q.or( - Q.where('e2e', null), - Q.where('e2e', E2E_STATUS.PENDING) - ) - ]; + const whereClause = [Q.where('t', E2E_MESSAGE_TYPE), Q.or(Q.where('e2e', null), Q.where('e2e', E2E_STATUS.PENDING))]; // decrypt messages of a room if (roomId) { @@ -255,36 +229,40 @@ class Encryption { // Concat messages/threads/threadMessages let toDecrypt = [...messagesToDecrypt, ...threadsToDecrypt, ...threadMessagesToDecrypt]; - toDecrypt = await Promise.all(toDecrypt.map(async(message) => { - const { t, msg, tmsg } = message; - const { id: rid } = message.subscription; - // WM Object -> Plain Object - const newMessage = await this.decryptMessage({ - t, - rid, - msg, - tmsg - }); - if (message._hasPendingUpdate) { - console.log(message); - return; - } - return message.prepareUpdate(protectedFunction((m) => { - Object.assign(m, newMessage); - })); - })); + toDecrypt = await Promise.all( + toDecrypt.map(async message => { + const { t, msg, tmsg } = message; + const { id: rid } = message.subscription; + // WM Object -> Plain Object + const newMessage = await this.decryptMessage({ + t, + rid, + msg, + tmsg + }); + if (message._hasPendingUpdate) { + console.log(message); + return; + } + return message.prepareUpdate( + protectedFunction(m => { + Object.assign(m, newMessage); + }) + ); + }) + ); - await db.action(async() => { + await db.action(async () => { await db.batch(...toDecrypt); }); } catch (e) { log(e); } - } + }; // Logic to decrypt all pending subscriptions // after initialize the encryption client - decryptPendingSubscriptions = async() => { + decryptPendingSubscriptions = async () => { const db = database.active; const subCollection = db.get('subscriptions'); try { @@ -292,34 +270,39 @@ class Encryption { // If we select only encrypted rooms we can miss some room that changed their encrypted status const subsEncrypted = await subCollection.query(Q.where('e2e_key_id', Q.notEq(null))).fetch(); // We can't do this on database level since lastMessage is not a database object - const subsToDecrypt = subsEncrypted.filter(sub => - // Encrypted message - sub?.lastMessage?.t === E2E_MESSAGE_TYPE - // Message pending decrypt - && sub?.lastMessage?.e2e === E2E_STATUS.PENDING + const subsToDecrypt = subsEncrypted.filter( + sub => + // Encrypted message + sub?.lastMessage?.t === E2E_MESSAGE_TYPE && + // Message pending decrypt + sub?.lastMessage?.e2e === E2E_STATUS.PENDING + ); + await Promise.all( + subsToDecrypt.map(async sub => { + const { rid, lastMessage } = sub; + const newSub = await this.decryptSubscription({ rid, lastMessage }); + if (sub._hasPendingUpdate) { + console.log(sub); + return; + } + return sub.prepareUpdate( + protectedFunction(m => { + Object.assign(m, newSub); + }) + ); + }) ); - await Promise.all(subsToDecrypt.map(async(sub) => { - const { rid, lastMessage } = sub; - const newSub = await this.decryptSubscription({ rid, lastMessage }); - if (sub._hasPendingUpdate) { - console.log(sub); - return; - } - return sub.prepareUpdate(protectedFunction((m) => { - Object.assign(m, newSub); - })); - })); - await db.action(async() => { + await db.action(async () => { await db.batch(...subsToDecrypt); }); } catch (e) { log(e); } - } + }; // Decrypt a subscription lastMessage - decryptSubscription = async(subscription) => { + decryptSubscription = async subscription => { // If the subscription doesn't have a lastMessage just return if (!subscription?.lastMessage) { return subscription; @@ -361,23 +344,27 @@ class Encryption { // If the subscription doesn't exists yet if (!subRecord) { // Let's create the subscription with the data received - batch.push(subCollection.prepareCreate((s) => { - s._raw = sanitizedRaw({ id: rid }, subCollection.schema); - Object.assign(s, subscription); - })); - // If the subscription already exists but doesn't have the E2EKey yet + batch.push( + subCollection.prepareCreate(s => { + s._raw = sanitizedRaw({ id: rid }, subCollection.schema); + Object.assign(s, subscription); + }) + ); + // If the subscription already exists but doesn't have the E2EKey yet } else if (!subRecord.E2EKey && subscription.E2EKey) { if (!subRecord._hasPendingUpdate) { // Let's update the subscription with the received E2EKey - batch.push(subRecord.prepareUpdate((s) => { - s.E2EKey = subscription.E2EKey; - })); + batch.push( + subRecord.prepareUpdate(s => { + s.E2EKey = subscription.E2EKey; + }) + ); } } // If batch has some operation if (batch.length) { - await db.action(async() => { + await db.action(async () => { await db.batch(...batch); }); } @@ -394,10 +381,10 @@ class Encryption { ...subscription, lastMessage: decryptedMessage }; - } + }; // Encrypt a message - encryptMessage = async(message) => { + encryptMessage = async message => { const { rid } = message; const db = database.active; const subCollection = db.get('subscriptions'); @@ -427,10 +414,10 @@ class Encryption { // Send a non encrypted message return message; - } + }; // Decrypt a message - decryptMessage = async(message) => { + decryptMessage = async message => { const { t, e2e } = message; // Prevent create a new instance if this room was encrypted sometime ago @@ -453,13 +440,13 @@ class Encryption { const { rid } = message; const roomE2E = await this.getRoomInstance(rid); return roomE2E.decrypt(message); - } + }; // Decrypt multiple messages - decryptMessages = messages => Promise.all(messages.map(m => this.decryptMessage(m))) + decryptMessages = messages => Promise.all(messages.map(m => this.decryptMessage(m))); // Decrypt multiple subscriptions - decryptSubscriptions = subscriptions => Promise.all(subscriptions.map(s => this.decryptSubscription(s))) + decryptSubscriptions = subscriptions => Promise.all(subscriptions.map(s => this.decryptSubscription(s))); } const encryption = new Encryption(); diff --git a/app/lib/encryption/room.js b/app/lib/encryption/room.js index b5d678aeea..d61c7d75ab 100644 --- a/app/lib/encryption/room.js +++ b/app/lib/encryption/room.js @@ -36,7 +36,7 @@ export default class EncryptionRoom { } // Initialize the E2E room - handshake = async() => { + handshake = async () => { // If it's already ready we don't need to handshake again if (this.ready) { return; @@ -79,10 +79,10 @@ export default class EncryptionRoom { } catch (e) { log(e); } - } + }; // Import roomKey as an AES Decrypt key - importRoomKey = async(E2EKey, privateKey) => { + importRoomKey = async (E2EKey, privateKey) => { const roomE2EKey = E2EKey.slice(12); const decryptedKey = await SimpleCrypto.RSA.decrypt(roomE2EKey, privateKey); @@ -96,10 +96,10 @@ export default class EncryptionRoom { // Reference: https://www.javadoc.io/doc/com.nimbusds/nimbus-jose-jwt/5.1/com/nimbusds/jose/jwk/OctetSequenceKey.html const { k } = EJSON.parse(this.sessionKeyExportedString); this.roomKey = b64ToBuffer(k); - } + }; // Create a key to a room - createRoomKey = async() => { + createRoomKey = async () => { const key = await SimpleCrypto.utils.randomBytes(16); this.roomKey = key; @@ -122,7 +122,7 @@ export default class EncryptionRoom { await RocketChat.e2eSetRoomKeyID(this.roomId, this.keyID); await this.encryptRoomKey(); - } + }; // Request a key to this room // We're debouncing this function to avoid multiple calls @@ -130,31 +130,35 @@ export default class EncryptionRoom { // can send the encryption key at the moment. // Each time you see a encrypted message of a room that you don't have a key // this will be called again and run once in 5 seconds - requestRoomKey = debounce(async(e2eKeyId) => { - await RocketChat.e2eRequestRoomKey(this.roomId, e2eKeyId); - }, 5000, true) + requestRoomKey = debounce( + async e2eKeyId => { + await RocketChat.e2eRequestRoomKey(this.roomId, e2eKeyId); + }, + 5000, + true + ); // Create an encrypted key for this room based on users - encryptRoomKey = async() => { + encryptRoomKey = async () => { const result = await RocketChat.e2eGetUsersOfRoomWithoutKey(this.roomId); if (result.success) { const { users } = result; await Promise.all(users.map(user => this.encryptRoomKeyForUser(user))); } - } + }; // Encrypt the room key to each user in - encryptRoomKeyForUser = async(user) => { + encryptRoomKeyForUser = async user => { if (user?.e2e?.public_key) { const { public_key: publicKey } = user.e2e; const userKey = await SimpleCrypto.RSA.importKey(EJSON.parse(publicKey)); const encryptedUserKey = await SimpleCrypto.RSA.encrypt(this.sessionKeyExportedString, userKey); await RocketChat.e2eUpdateGroupKey(user?._id, this.roomId, this.keyID + encryptedUserKey); } - } + }; // Provide this room key to a user - provideKeyToUser = async(keyId) => { + provideKeyToUser = async keyId => { // Don't provide a key if the keyId received // is different than the current one if (this.keyID !== keyId) { @@ -162,34 +166,32 @@ export default class EncryptionRoom { } await this.encryptRoomKey(); - } + }; // Encrypt text - encryptText = async(text) => { + encryptText = async text => { text = utf8ToBuffer(text); const vector = await SimpleCrypto.utils.randomBytes(16); - const data = await SimpleCrypto.AES.encrypt( - text, - this.roomKey, - vector - ); + const data = await SimpleCrypto.AES.encrypt(text, this.roomKey, vector); return this.keyID + bufferToB64(joinVectorData(vector, data)); - } + }; // Encrypt messages - encrypt = async(message) => { + encrypt = async message => { if (!this.ready) { return message; } try { - const msg = await this.encryptText(EJSON.stringify({ - _id: message._id, - text: message.msg, - userId: this.userId, - ts: new Date() - })); + const msg = await this.encryptText( + EJSON.stringify({ + _id: message._id, + text: message.msg, + userId: this.userId, + ts: new Date() + }) + ); return { ...message, @@ -202,26 +204,22 @@ export default class EncryptionRoom { } return message; - } + }; // Decrypt text - decryptText = async(msg) => { + decryptText = async msg => { msg = b64ToBuffer(msg.slice(12)); const [vector, cipherText] = splitVectorData(msg); - const decrypted = await SimpleCrypto.AES.decrypt( - cipherText, - this.roomKey, - vector - ); + const decrypted = await SimpleCrypto.AES.decrypt(cipherText, this.roomKey, vector); const m = EJSON.parse(bufferToUtf8(decrypted)); return m.text; - } + }; // Decrypt messages - decrypt = async(message) => { + decrypt = async message => { if (!this.ready) { return message; } @@ -252,5 +250,5 @@ export default class EncryptionRoom { } return message; - } + }; } diff --git a/app/lib/encryption/utils.js b/app/lib/encryption/utils.js index 492ea00660..e82e11cf39 100644 --- a/app/lib/encryption/utils.js +++ b/app/lib/encryption/utils.js @@ -12,7 +12,7 @@ export const utf8ToBuffer = SimpleCrypto.utils.convertUtf8ToArrayBuffer; export const bufferToB64 = arrayBuffer => fromByteArray(new Uint8Array(arrayBuffer)); // ArrayBuffer -> Base64 URI Safe // https://github.com/herrjemand/Base64URL-ArrayBuffer/blob/master/lib/base64url-arraybuffer.js -export const bufferToB64URI = (buffer) => { +export const bufferToB64URI = buffer => { const uintArray = new Uint8Array(buffer); const len = uintArray.length; let base64 = ''; @@ -24,7 +24,7 @@ export const bufferToB64URI = (buffer) => { base64 += BASE64URI[uintArray[i + 2] & 63]; } - if ((len % 3) === 2) { + if (len % 3 === 2) { base64 = base64.substring(0, base64.length - 1); } else if (len % 3 === 1) { base64 = base64.substring(0, base64.length - 2); @@ -33,13 +33,13 @@ export const bufferToB64URI = (buffer) => { return base64; }; // SimpleCrypto.utils.convertArrayBufferToUtf8 is not working with unicode emoji -export const bufferToUtf8 = (buffer) => { +export const bufferToUtf8 = buffer => { const uintArray = new Uint8Array(buffer); const encodedString = String.fromCharCode.apply(null, uintArray); const decodedString = decodeURIComponent(escape(encodedString)); return decodedString; }; -export const splitVectorData = (text) => { +export const splitVectorData = text => { const vector = text.slice(0, 16); const data = text.slice(16); return [vector, data]; @@ -50,11 +50,11 @@ export const joinVectorData = (vector, data) => { output.set(new Uint8Array(data), vector.byteLength); return output.buffer; }; -export const toString = (thing) => { +export const toString = thing => { if (typeof thing === 'string') { return thing; } // eslint-disable-next-line new-cap return new ByteBuffer.wrap(thing).toString('binary'); }; -export const randomPassword = () => `${ random(3) }-${ random(3) }-${ random(3) }`.toLowerCase(); +export const randomPassword = () => `${random(3)}-${random(3)}-${random(3)}`.toLowerCase(); diff --git a/app/lib/methods/actions.js b/app/lib/methods/actions.js index 65cae1a576..7dcdb6ae53 100644 --- a/app/lib/methods/actions.js +++ b/app/lib/methods/actions.js @@ -24,13 +24,13 @@ export const CONTAINER_TYPES = { const triggersId = new Map(); -const invalidateTriggerId = (id) => { +const invalidateTriggerId = id => { const appId = triggersId.get(id); triggersId.delete(id); return appId; }; -export const generateTriggerId = (appId) => { +export const generateTriggerId = appId => { const triggerId = random(17); triggersId.set(triggerId, appId); @@ -80,7 +80,6 @@ export const handlePayloadUserInteraction = (type, { triggerId, ...data }) => { return MODAL_ACTIONS.UPDATE; } - if ([MODAL_ACTIONS.OPEN].includes(type) || [MODAL_ACTIONS.MODAL].includes(type)) { Navigation.navigate('ModalBlockView', { data: { @@ -96,10 +95,8 @@ export const handlePayloadUserInteraction = (type, { triggerId, ...data }) => { return MODAL_ACTIONS.CLOSE; }; -export function triggerAction({ - type, actionId, appId, rid, mid, viewId, container, ...rest -}) { - return new Promise(async(resolve, reject) => { +export function triggerAction({ type, actionId, appId, rid, mid, viewId, container, ...rest }) { + return new Promise(async (resolve, reject) => { const triggerId = generateTriggerId(appId); const payload = rest.payload || rest; @@ -109,7 +106,7 @@ export function triggerAction({ const { host } = this.sdk.client; // we need to use fetch because this.sdk.post add /v1 to url - const result = await fetch(`${ host }/api/apps/ui.interaction/${ appId }/`, { + const result = await fetch(`${host}/api/apps/ui.interaction/${appId}/`, { method: 'POST', headers: { 'Content-Type': 'application/json', diff --git a/app/lib/methods/callJitsi.js b/app/lib/methods/callJitsi.js index 2be98de8e5..19263f1358 100644 --- a/app/lib/methods/callJitsi.js +++ b/app/lib/methods/callJitsi.js @@ -10,11 +10,9 @@ async function jitsiURL({ room }) { return ''; } - const { - Jitsi_Domain, Jitsi_URL_Room_Prefix, Jitsi_SSL, Jitsi_Enabled_TokenAuth, uniqueID, Jitsi_URL_Room_Hash - } = settings; + const { Jitsi_Domain, Jitsi_URL_Room_Prefix, Jitsi_SSL, Jitsi_Enabled_TokenAuth, uniqueID, Jitsi_URL_Room_Hash } = settings; - const domain = `${ Jitsi_Domain }/`; + const domain = `${Jitsi_Domain}/`; const prefix = Jitsi_URL_Room_Prefix; const protocol = Jitsi_SSL ? 'https://' : 'http://'; @@ -22,7 +20,7 @@ async function jitsiURL({ room }) { if (Jitsi_Enabled_TokenAuth) { try { const accessToken = await this.methodCallWrapper('jitsi:generateAccessToken', room?.rid); - queryString = `?jwt=${ accessToken }`; + queryString = `?jwt=${accessToken}`; } catch { logEvent(events.RA_JITSI_F); } @@ -35,7 +33,7 @@ async function jitsiURL({ room }) { rname = encodeURIComponent(room.t === 'd' ? room?.usernames?.join?.(' x ') : room?.name); } - return `${ protocol }${ domain }${ prefix }${ rname }${ queryString }`; + return `${protocol}${domain}${prefix}${rname}${queryString}`; } async function callJitsi(room, onlyAudio = false) { diff --git a/app/lib/methods/canOpenRoom.js b/app/lib/methods/canOpenRoom.js index c233899b86..ca8835b9c5 100644 --- a/app/lib/methods/canOpenRoom.js +++ b/app/lib/methods/canOpenRoom.js @@ -2,7 +2,9 @@ import database from '../database'; import store from '../createStore'; const restTypes = { - channel: 'channels', direct: 'im', group: 'groups' + channel: 'channels', + direct: 'im', + group: 'groups' }; async function open({ type, rid, name }) { @@ -24,7 +26,7 @@ async function open({ type, rid, name }) { if (type === 'group') { try { // RC 0.61.0 - await this.sdk.post(`${ restTypes[type] }.open`, params); + await this.sdk.post(`${restTypes[type]}.open`, params); } catch (e) { if (!(e.data && /is already open/.test(e.data.error))) { return false; @@ -36,7 +38,7 @@ async function open({ type, rid, name }) { // we'll get info from the room if ((type === 'channel' || type === 'group') && !rid) { // RC 0.72.0 - const result = await this.sdk.get(`${ restTypes[type] }.info`, params); + const result = await this.sdk.get(`${restTypes[type]}.info`, params); if (result.success) { const room = result[type]; room.rid = room._id; @@ -63,7 +65,7 @@ export default async function canOpenRoom({ rid, path, isCall }) { // Extract rid from a Jitsi URL // Eg.: [Jitsi_URL_Room_Prefix][uniqueID][rid][?jwt] const { Jitsi_URL_Room_Prefix, uniqueID } = store.getState().settings; - rid = path.replace(`${ Jitsi_URL_Room_Prefix }${ uniqueID }`, '').replace(/\?(.*)/g, ''); + rid = path.replace(`${Jitsi_URL_Room_Prefix}${uniqueID}`, '').replace(/\?(.*)/g, ''); } if (rid) { diff --git a/app/lib/methods/enterpriseModules.js b/app/lib/methods/enterpriseModules.js index 01b7c9300b..312a992525 100644 --- a/app/lib/methods/enterpriseModules.js +++ b/app/lib/methods/enterpriseModules.js @@ -29,7 +29,7 @@ export async function setEnterpriseModules() { } export function getEnterpriseModules() { - return new Promise(async(resolve) => { + return new Promise(async resolve => { try { const { version: serverVersion, server: serverId } = reduxStore.getState().server; if (compareServerVersion(serverVersion, '3.1.0', methods.greaterThanOrEqualTo)) { @@ -39,8 +39,8 @@ export function getEnterpriseModules() { const serversDB = database.servers; const serversCollection = serversDB.get('servers'); const server = await serversCollection.find(serverId); - await serversDB.action(async() => { - await server.update((s) => { + await serversDB.action(async () => { + await server.update(s => { s.enterpriseModules = enterpriseModules.join(','); }); }); diff --git a/app/lib/methods/getCustomEmojis.js b/app/lib/methods/getCustomEmojis.js index d56a20bace..5e8a3e7457 100644 --- a/app/lib/methods/getCustomEmojis.js +++ b/app/lib/methods/getCustomEmojis.js @@ -7,15 +7,19 @@ import database from '../database'; import log from '../../utils/log'; import { setCustomEmojis as setCustomEmojisAction } from '../../actions/customEmojis'; -const getUpdatedSince = (allEmojis) => { +const getUpdatedSince = allEmojis => { if (!allEmojis.length) { return null; } - const ordered = orderBy(allEmojis.filter(item => item._updatedAt !== null), ['_updatedAt'], ['desc']); + const ordered = orderBy( + allEmojis.filter(item => item._updatedAt !== null), + ['_updatedAt'], + ['desc'] + ); return ordered && ordered[0]._updatedAt.toISOString(); }; -const updateEmojis = async({ update = [], remove = [], allRecords }) => { +const updateEmojis = async ({ update = [], remove = [], allRecords }) => { if (!((update && update.length) || (remove && remove.length))) { return; } @@ -29,13 +33,15 @@ const updateEmojis = async({ update = [], remove = [], allRecords }) => { if (update && update.length) { emojisToCreate = update.filter(i1 => !allRecords.find(i2 => i1._id === i2.id)); emojisToUpdate = allRecords.filter(i1 => update.find(i2 => i1.id === i2._id)); - emojisToCreate = emojisToCreate.map(emoji => emojisCollection.prepareCreate((e) => { - e._raw = sanitizedRaw({ id: emoji._id }, emojisCollection.schema); - Object.assign(e, emoji); - })); - emojisToUpdate = emojisToUpdate.map((emoji) => { + emojisToCreate = emojisToCreate.map(emoji => + emojisCollection.prepareCreate(e => { + e._raw = sanitizedRaw({ id: emoji._id }, emojisCollection.schema); + Object.assign(e, emoji); + }) + ); + emojisToUpdate = emojisToUpdate.map(emoji => { const newEmoji = update.find(e => e._id === emoji.id); - return emoji.prepareUpdate((e) => { + return emoji.prepareUpdate(e => { Object.assign(e, newEmoji); }); }); @@ -47,12 +53,8 @@ const updateEmojis = async({ update = [], remove = [], allRecords }) => { } try { - await db.action(async() => { - await db.batch( - ...emojisToCreate, - ...emojisToUpdate, - ...emojisToDelete - ); + await db.action(async () => { + await db.batch(...emojisToCreate, ...emojisToUpdate, ...emojisToDelete); }); return true; } catch (e) { @@ -69,7 +71,7 @@ export async function setCustomEmojis() { name: item.name, extension: item.extension }; - item.aliases.forEach((alias) => { + item.aliases.forEach(alias => { ret[alias] = { name: item.name, extension: item.extension @@ -81,7 +83,7 @@ export async function setCustomEmojis() { } export function getCustomEmojis() { - return new Promise(async(resolve) => { + return new Promise(async resolve => { try { const serverVersion = reduxStore.getState().server.version; const db = database.active; diff --git a/app/lib/methods/getPermissions.js b/app/lib/methods/getPermissions.js index eb66d4d3b4..0e5a996ca8 100644 --- a/app/lib/methods/getPermissions.js +++ b/app/lib/methods/getPermissions.js @@ -62,12 +62,16 @@ export async function setPermissions() { reduxStore.dispatch(setPermissionsAction(parsed)); } -const getUpdatedSince = (allRecords) => { +const getUpdatedSince = allRecords => { try { if (!allRecords.length) { return null; } - const ordered = orderBy(allRecords.filter(item => item._updatedAt !== null), ['_updatedAt'], ['desc']); + const ordered = orderBy( + allRecords.filter(item => item._updatedAt !== null), + ['_updatedAt'], + ['desc'] + ); return ordered && ordered[0]._updatedAt.toISOString(); } catch (e) { log(e); @@ -75,7 +79,7 @@ const getUpdatedSince = (allRecords) => { return null; }; -const updatePermissions = async({ update = [], remove = [], allRecords }) => { +const updatePermissions = async ({ update = [], remove = [], allRecords }) => { if (!((update && update.length) || (remove && remove.length))) { return; } @@ -91,15 +95,21 @@ const updatePermissions = async({ update = [], remove = [], allRecords }) => { if (update && update.length) { permissionsToCreate = update.filter(i1 => !allRecords.find(i2 => i1._id === i2.id)); permissionsToUpdate = allRecords.filter(i1 => update.find(i2 => i1.id === i2._id)); - permissionsToCreate = permissionsToCreate.map(permission => permissionsCollection.prepareCreate(protectedFunction((p) => { - p._raw = sanitizedRaw({ id: permission._id }, permissionsCollection.schema); - Object.assign(p, permission); - }))); - permissionsToUpdate = permissionsToUpdate.map((permission) => { + permissionsToCreate = permissionsToCreate.map(permission => + permissionsCollection.prepareCreate( + protectedFunction(p => { + p._raw = sanitizedRaw({ id: permission._id }, permissionsCollection.schema); + Object.assign(p, permission); + }) + ) + ); + permissionsToUpdate = permissionsToUpdate.map(permission => { const newPermission = update.find(p => p._id === permission.id); - return permission.prepareUpdate(protectedFunction((p) => { - Object.assign(p, newPermission); - })); + return permission.prepareUpdate( + protectedFunction(p => { + Object.assign(p, newPermission); + }) + ); }); } @@ -109,14 +119,10 @@ const updatePermissions = async({ update = [], remove = [], allRecords }) => { permissionsToDelete = permissionsToDelete.map(permission => permission.prepareDestroyPermanently()); } - const batch = [ - ...permissionsToCreate, - ...permissionsToUpdate, - ...permissionsToDelete - ]; + const batch = [...permissionsToCreate, ...permissionsToUpdate, ...permissionsToDelete]; try { - await db.action(async() => { + await db.action(async () => { await db.batch(...batch); }); return true; @@ -126,7 +132,7 @@ const updatePermissions = async({ update = [], remove = [], allRecords }) => { }; export function getPermissions() { - return new Promise(async(resolve) => { + return new Promise(async resolve => { try { const serverVersion = reduxStore.getState().server.version; const db = database.active; diff --git a/app/lib/methods/getRoles.js b/app/lib/methods/getRoles.js index 5e60f1e8ae..d8beb57857 100644 --- a/app/lib/methods/getRoles.js +++ b/app/lib/methods/getRoles.js @@ -3,9 +3,7 @@ import { sanitizedRaw } from '@nozbe/watermelondb/RawRecord'; import database from '../database'; import log from '../../utils/log'; import reduxStore from '../createStore'; -import { - removeRoles, setRoles as setRolesAction, updateRoles -} from '../../actions/roles'; +import { removeRoles, setRoles as setRolesAction, updateRoles } from '../../actions/roles'; import protectedFunction from './helpers/protectedFunction'; export async function setRoles() { @@ -24,8 +22,8 @@ export async function onRolesChanged(ddpMessage) { try { const rolesRecord = await rolesCollection.find(_id); try { - await db.action(async() => { - await rolesRecord.update((u) => { + await db.action(async () => { + await rolesRecord.update(u => { u.description = description; }); }); @@ -35,8 +33,8 @@ export async function onRolesChanged(ddpMessage) { reduxStore.dispatch(updateRoles(_id, description)); } catch (err) { try { - await db.action(async() => { - await rolesCollection.create((post) => { + await db.action(async () => { + await rolesCollection.create(post => { post._raw = sanitizedRaw({ id: _id, description }, rolesCollection.schema); }); }); @@ -51,7 +49,7 @@ export async function onRolesChanged(ddpMessage) { const rolesCollection = db.get('roles'); try { const rolesRecord = await rolesCollection.find(_id); - await db.action(async() => { + await db.action(async () => { await rolesRecord.destroyPermanently(); }); reduxStore.dispatch(removeRoles(_id)); @@ -63,7 +61,7 @@ export async function onRolesChanged(ddpMessage) { export function getRoles() { const db = database.active; - return new Promise(async(resolve) => { + return new Promise(async resolve => { try { // RC 0.70.0 const result = await this.sdk.get('roles.list'); @@ -75,7 +73,7 @@ export function getRoles() { const { roles } = result; if (roles && roles.length) { - await db.action(async() => { + await db.action(async () => { const rolesCollections = db.get('roles'); const allRolesRecords = await rolesCollections.query().fetch(); @@ -84,23 +82,26 @@ export function getRoles() { let rolesToUpdate = allRolesRecords.filter(i1 => roles.find(i2 => i1.id === i2._id)); // Create - rolesToCreate = rolesToCreate.map(role => rolesCollections.prepareCreate(protectedFunction((r) => { - r._raw = sanitizedRaw({ id: role._id }, rolesCollections.schema); - Object.assign(r, role); - }))); + rolesToCreate = rolesToCreate.map(role => + rolesCollections.prepareCreate( + protectedFunction(r => { + r._raw = sanitizedRaw({ id: role._id }, rolesCollections.schema); + Object.assign(r, role); + }) + ) + ); // Update - rolesToUpdate = rolesToUpdate.map((role) => { + rolesToUpdate = rolesToUpdate.map(role => { const newRole = roles.find(r => r._id === role.id); - return role.prepareUpdate(protectedFunction((r) => { - Object.assign(r, newRole); - })); + return role.prepareUpdate( + protectedFunction(r => { + Object.assign(r, newRole); + }) + ); }); - const allRecords = [ - ...rolesToCreate, - ...rolesToUpdate - ]; + const allRecords = [...rolesToCreate, ...rolesToUpdate]; try { await db.batch(...allRecords); diff --git a/app/lib/methods/getRoomInfo.js b/app/lib/methods/getRoomInfo.js index 293d97c569..24c061aa04 100644 --- a/app/lib/methods/getRoomInfo.js +++ b/app/lib/methods/getRoomInfo.js @@ -1,7 +1,7 @@ import { getSubscriptionByRoomId } from '../database/services/Subscription'; import RocketChat from '../rocketchat'; -const getRoomInfo = async(rid) => { +const getRoomInfo = async rid => { let result; result = await getSubscriptionByRoomId(rid); if (result) { diff --git a/app/lib/methods/getRooms.js b/app/lib/methods/getRooms.js index 1278b8b1fb..5004beda0d 100644 --- a/app/lib/methods/getRooms.js +++ b/app/lib/methods/getRooms.js @@ -1,4 +1,4 @@ -export default function(updatedSince) { +export default function (updatedSince) { // subscriptions.get: Since RC 0.60.0 // rooms.get: Since RC 0.62.0 if (updatedSince) { diff --git a/app/lib/methods/getSettings.js b/app/lib/methods/getSettings.js index c43e2f1dc9..9e10829389 100644 --- a/app/lib/methods/getSettings.js +++ b/app/lib/methods/getSettings.js @@ -41,7 +41,7 @@ const loginSettings = [ 'Accounts_Iframe_api_method' ]; -const serverInfoUpdate = async(serverInfo, iconSetting) => { +const serverInfoUpdate = async (serverInfo, iconSetting) => { const serversDB = database.servers; const serverId = reduxStore.getState().server.server; const serversCollection = serversDB.get('servers'); @@ -87,13 +87,13 @@ const serverInfoUpdate = async(serverInfo, iconSetting) => { }, {}); if (iconSetting) { - const iconURL = `${ serverId }/${ iconSetting.value.url || iconSetting.value.defaultUrl }`; + const iconURL = `${serverId}/${iconSetting.value.url || iconSetting.value.defaultUrl}`; info = { ...info, iconURL }; } - await serversDB.action(async() => { + await serversDB.action(async () => { try { - await server.update((record) => { + await server.update(record => { Object.assign(record, info); }); } catch (e) { @@ -105,7 +105,9 @@ const serverInfoUpdate = async(serverInfo, iconSetting) => { export async function getLoginSettings({ server }) { try { const settingsParams = JSON.stringify(loginSettings); - const result = await fetch(`${ server }/api/v1/settings.public?query={"_id":{"$in":${ settingsParams }}}`).then(response => response.json()); + const result = await fetch(`${server}/api/v1/settings.public?query={"_id":{"$in":${settingsParams}}}`).then(response => + response.json() + ); if (result.success && result.settings.length) { reduxStore.dispatch(clearSettings()); @@ -135,13 +137,16 @@ export function subscribeSettings() { return RocketChat.subscribe('stream-notify-all', 'public-settings-changed'); } -export default async function() { +export default async function () { try { const db = database.active; const settingsParams = Object.keys(settings).filter(key => !loginSettings.includes(key)); // RC 0.60.0 - const result = await fetch(`${ this.sdk.client.host }/api/v1/settings.public?query={"_id":{"$in":${ JSON.stringify(settingsParams) }}}&count=${ settingsParams.length }`) - .then(response => response.json()); + const result = await fetch( + `${this.sdk.client.host}/api/v1/settings.public?query={"_id":{"$in":${JSON.stringify(settingsParams)}}}&count=${ + settingsParams.length + }` + ).then(response => response.json()); if (!result.success) { return; @@ -161,34 +166,35 @@ export default async function() { // Server not found } - await db.action(async() => { + await db.action(async () => { const settingsCollection = db.get('settings'); - const allSettingsRecords = await settingsCollection - .query(Q.where('id', Q.oneOf(filteredSettingsIds))) - .fetch(); + const allSettingsRecords = await settingsCollection.query(Q.where('id', Q.oneOf(filteredSettingsIds))).fetch(); // filter settings let settingsToCreate = filteredSettings.filter(i1 => !allSettingsRecords.find(i2 => i1._id === i2.id)); let settingsToUpdate = allSettingsRecords.filter(i1 => filteredSettings.find(i2 => i1.id === i2._id)); // Create - settingsToCreate = settingsToCreate.map(setting => settingsCollection.prepareCreate(protectedFunction((s) => { - s._raw = sanitizedRaw({ id: setting._id }, settingsCollection.schema); - Object.assign(s, setting); - }))); + settingsToCreate = settingsToCreate.map(setting => + settingsCollection.prepareCreate( + protectedFunction(s => { + s._raw = sanitizedRaw({ id: setting._id }, settingsCollection.schema); + Object.assign(s, setting); + }) + ) + ); // Update - settingsToUpdate = settingsToUpdate.map((setting) => { + settingsToUpdate = settingsToUpdate.map(setting => { const newSetting = filteredSettings.find(s => s._id === setting.id); - return setting.prepareUpdate(protectedFunction((s) => { - Object.assign(s, newSetting); - })); + return setting.prepareUpdate( + protectedFunction(s => { + Object.assign(s, newSetting); + }) + ); }); - const allRecords = [ - ...settingsToCreate, - ...settingsToUpdate - ]; + const allRecords = [...settingsToCreate, ...settingsToUpdate]; try { await db.batch(...allRecords); diff --git a/app/lib/methods/getSingleMessage.js b/app/lib/methods/getSingleMessage.js index 56ecb3e632..4c9b32a686 100644 --- a/app/lib/methods/getSingleMessage.js +++ b/app/lib/methods/getSingleMessage.js @@ -1,15 +1,16 @@ import RocketChat from '../rocketchat'; -const getSingleMessage = messageId => new Promise(async(resolve, reject) => { - try { - const result = await RocketChat.getSingleMessage(messageId); - if (result.success) { - return resolve(result.message); +const getSingleMessage = messageId => + new Promise(async (resolve, reject) => { + try { + const result = await RocketChat.getSingleMessage(messageId); + if (result.success) { + return resolve(result.message); + } + return reject(); + } catch (e) { + return reject(); } - return reject(); - } catch (e) { - return reject(); - } -}); + }); export default getSingleMessage; diff --git a/app/lib/methods/getSlashCommands.js b/app/lib/methods/getSlashCommands.js index c37e077f49..3b65c40eb5 100644 --- a/app/lib/methods/getSlashCommands.js +++ b/app/lib/methods/getSlashCommands.js @@ -4,9 +4,9 @@ import database from '../database'; import log from '../../utils/log'; import protectedFunction from './helpers/protectedFunction'; -export default function() { +export default function () { const db = database.active; - return new Promise(async(resolve) => { + return new Promise(async resolve => { try { // RC 0.60.2 const result = await this.sdk.get('commands.list'); @@ -19,38 +19,41 @@ export default function() { const { commands } = result; if (commands && commands.length) { - await db.action(async() => { + await db.action(async () => { const slashCommandsCollection = db.get('slash_commands'); const allSlashCommandsRecords = await slashCommandsCollection.query().fetch(); // filter slash commands let slashCommandsToCreate = commands.filter(i1 => !allSlashCommandsRecords.find(i2 => i1.command === i2.id)); let slashCommandsToUpdate = allSlashCommandsRecords.filter(i1 => commands.find(i2 => i1.id === i2.command)); - let slashCommandsToDelete = allSlashCommandsRecords - .filter(i1 => !slashCommandsToCreate.find(i2 => i2.command === i1.id) && !slashCommandsToUpdate.find(i2 => i2.id === i1.id)); + let slashCommandsToDelete = allSlashCommandsRecords.filter( + i1 => !slashCommandsToCreate.find(i2 => i2.command === i1.id) && !slashCommandsToUpdate.find(i2 => i2.id === i1.id) + ); // Create - slashCommandsToCreate = slashCommandsToCreate.map(command => slashCommandsCollection.prepareCreate(protectedFunction((s) => { - s._raw = sanitizedRaw({ id: command.command }, slashCommandsCollection.schema); - Object.assign(s, command); - }))); + slashCommandsToCreate = slashCommandsToCreate.map(command => + slashCommandsCollection.prepareCreate( + protectedFunction(s => { + s._raw = sanitizedRaw({ id: command.command }, slashCommandsCollection.schema); + Object.assign(s, command); + }) + ) + ); // Update - slashCommandsToUpdate = slashCommandsToUpdate.map((command) => { + slashCommandsToUpdate = slashCommandsToUpdate.map(command => { const newCommand = commands.find(s => s.command === command.id); - return command.prepareUpdate(protectedFunction((s) => { - Object.assign(s, newCommand); - })); + return command.prepareUpdate( + protectedFunction(s => { + Object.assign(s, newCommand); + }) + ); }); // Delete slashCommandsToDelete = slashCommandsToDelete.map(command => command.prepareDestroyPermanently()); - const allRecords = [ - ...slashCommandsToCreate, - ...slashCommandsToUpdate, - ...slashCommandsToDelete - ]; + const allRecords = [...slashCommandsToCreate, ...slashCommandsToUpdate, ...slashCommandsToDelete]; try { await db.batch(...allRecords); diff --git a/app/lib/methods/getThreadName.js b/app/lib/methods/getThreadName.js index 861fb521f2..a490a7d40a 100644 --- a/app/lib/methods/getThreadName.js +++ b/app/lib/methods/getThreadName.js @@ -9,7 +9,7 @@ import getSingleMessage from './getSingleMessage'; const buildThreadName = thread => thread.msg || thread?.attachments?.[0]?.title; -const getThreadName = async(rid, tmid, messageId) => { +const getThreadName = async (rid, tmid, messageId) => { let tmsg; try { const db = database.active; @@ -18,8 +18,8 @@ const getThreadName = async(rid, tmid, messageId) => { const threadRecord = await getThreadById(tmid); if (threadRecord) { tmsg = buildThreadName(threadRecord); - await db.action(async() => { - await messageRecord?.update((m) => { + await db.action(async () => { + await messageRecord?.update(m => { m.tmsg = tmsg; }); }); @@ -27,14 +27,14 @@ const getThreadName = async(rid, tmid, messageId) => { let thread = await getSingleMessage(tmid); thread = await Encryption.decryptMessage(thread); tmsg = buildThreadName(thread); - await db.action(async() => { + await db.action(async () => { await db.batch( - threadCollection?.prepareCreate((t) => { + threadCollection?.prepareCreate(t => { t._raw = sanitizedRaw({ id: thread._id }, threadCollection.schema); t.subscription.id = rid; Object.assign(t, thread); }), - messageRecord?.prepareUpdate((m) => { + messageRecord?.prepareUpdate(m => { m.tmsg = tmsg; }) ); diff --git a/app/lib/methods/getUsersPresence.js b/app/lib/methods/getUsersPresence.js index ddc1771d25..07a7b985e1 100644 --- a/app/lib/methods/getUsersPresence.js +++ b/app/lib/methods/getUsersPresence.js @@ -73,18 +73,18 @@ export default async function getUsersPresence() { const db = database.active; const userCollection = db.get('users'); - users.forEach(async(user) => { + users.forEach(async user => { try { const userRecord = await userCollection.find(user._id); - await db.action(async() => { - await userRecord.update((u) => { + await db.action(async () => { + await userRecord.update(u => { Object.assign(u, user); }); }); } catch (e) { // User not found - await db.action(async() => { - await userCollection.create((u) => { + await db.action(async () => { + await userCollection.create(u => { u._raw = sanitizedRaw({ id: user._id }, userCollection.schema); Object.assign(u, user); }); diff --git a/app/lib/methods/helpers/buildMessage.js b/app/lib/methods/helpers/buildMessage.js index 9868ef13e0..e0c09e4a39 100644 --- a/app/lib/methods/helpers/buildMessage.js +++ b/app/lib/methods/helpers/buildMessage.js @@ -1,7 +1,7 @@ import messagesStatus from '../../../constants/messagesStatus'; import normalizeMessage from './normalizeMessage'; -export default (message) => { +export default message => { message.status = messagesStatus.SENT; return normalizeMessage(message); }; diff --git a/app/lib/methods/helpers/findSubscriptionsRooms.js b/app/lib/methods/helpers/findSubscriptionsRooms.js index a64a889406..e931b3edd8 100644 --- a/app/lib/methods/helpers/findSubscriptionsRooms.js +++ b/app/lib/methods/helpers/findSubscriptionsRooms.js @@ -2,7 +2,7 @@ import { Q } from '@nozbe/watermelondb'; import database from '../../database'; -export default async(subscriptions = [], rooms = []) => { +export default async (subscriptions = [], rooms = []) => { try { const db = database.active; const subCollection = db.get('subscriptions'); diff --git a/app/lib/methods/helpers/getFileUrlFromMessage.js b/app/lib/methods/helpers/getFileUrlFromMessage.js index 60995aee15..c5a34ba047 100644 --- a/app/lib/methods/helpers/getFileUrlFromMessage.js +++ b/app/lib/methods/helpers/getFileUrlFromMessage.js @@ -1,4 +1,4 @@ -export default function(message) { +export default function (message) { if (/image/.test(message.type)) { return { image_url: message.url }; } diff --git a/app/lib/methods/helpers/mergeSubscriptionsRooms.js b/app/lib/methods/helpers/mergeSubscriptionsRooms.js index 2d4d3c0f78..95a81001cc 100644 --- a/app/lib/methods/helpers/mergeSubscriptionsRooms.js +++ b/app/lib/methods/helpers/mergeSubscriptionsRooms.js @@ -35,7 +35,9 @@ export const merge = (subscription, room) => { } else { // https://github.com/RocketChat/Rocket.Chat/blob/develop/app/ui-sidenav/client/roomList.js#L180 const lastRoomUpdate = room.lm || subscription.ts || subscription._updatedAt; - subscription.roomUpdatedAt = subscription.lr ? Math.max(new Date(subscription.lr), new Date(lastRoomUpdate)) : lastRoomUpdate; + subscription.roomUpdatedAt = subscription.lr + ? Math.max(new Date(subscription.lr), new Date(lastRoomUpdate)) + : lastRoomUpdate; } subscription.ro = room.ro; subscription.broadcast = room.broadcast; @@ -86,7 +88,7 @@ export const merge = (subscription, room) => { return subscription; }; -export default async(subscriptions = [], rooms = []) => { +export default async (subscriptions = [], rooms = []) => { if (subscriptions.update) { subscriptions = subscriptions.update; rooms = rooms.update; @@ -95,7 +97,7 @@ export default async(subscriptions = [], rooms = []) => { // Find missing rooms/subscriptions on local database ({ subscriptions, rooms } = await findSubscriptionsRooms(subscriptions, rooms)); // Merge each subscription into a room - subscriptions = subscriptions.map((s) => { + subscriptions = subscriptions.map(s => { const index = rooms.findIndex(({ _id }) => _id === s.rid); // Room not found if (index < 0) { diff --git a/app/lib/methods/helpers/normalizeMessage.js b/app/lib/methods/helpers/normalizeMessage.js index adca75cd38..bf34728e5b 100644 --- a/app/lib/methods/helpers/normalizeMessage.js +++ b/app/lib/methods/helpers/normalizeMessage.js @@ -6,7 +6,7 @@ function normalizeAttachments(msg) { if (typeof msg.attachments !== typeof [] || !msg.attachments || !msg.attachments.length) { msg.attachments = []; } - msg.attachments = msg.attachments.map((att) => { + msg.attachments = msg.attachments.map(att => { att.fields = att.fields || []; if (att.ts) { att.ts = moment(att.ts).toDate(); @@ -17,7 +17,7 @@ function normalizeAttachments(msg) { return msg; } -export default (msg) => { +export default msg => { if (!msg) { return null; } @@ -31,10 +31,18 @@ export default (msg) => { // msg.reactions = Object.keys(msg.reactions).map(key => ({ emoji: key, usernames: msg.reactions[key].usernames.map(username => ({ value: username })) })); // } if (!Array.isArray(msg.reactions)) { - msg.reactions = Object.keys(msg.reactions).map(key => ({ _id: `${ msg._id }${ key }`, emoji: key, usernames: msg.reactions[key].usernames })); + msg.reactions = Object.keys(msg.reactions).map(key => ({ + _id: `${msg._id}${key}`, + emoji: key, + usernames: msg.reactions[key].usernames + })); } if (msg.translations && Object.keys(msg.translations).length) { - msg.translations = Object.keys(msg.translations).map(key => ({ _id: `${ msg._id }${ key }`, language: key, value: msg.translations[key] })); + msg.translations = Object.keys(msg.translations).map(key => ({ + _id: `${msg._id}${key}`, + language: key, + value: msg.translations[key] + })); msg.autoTranslate = true; } msg.urls = msg.urls ? parseUrls(msg.urls) : []; diff --git a/app/lib/methods/helpers/parseQuery.js b/app/lib/methods/helpers/parseQuery.js index d60610e8a0..30f1bb3c6c 100644 --- a/app/lib/methods/helpers/parseQuery.js +++ b/app/lib/methods/helpers/parseQuery.js @@ -1,9 +1,7 @@ -export default function(query) { - return (/^[?#]/.test(query) ? query.slice(1) : query) - .split('&') - .reduce((params, param) => { - const [key, value] = param.split('='); - params[key] = value ? decodeURIComponent(value.replace(/\+/g, ' ')) : ''; - return params; - }, { }); +export default function (query) { + return (/^[?#]/.test(query) ? query.slice(1) : query).split('&').reduce((params, param) => { + const [key, value] = param.split('='); + params[key] = value ? decodeURIComponent(value.replace(/\+/g, ' ')) : ''; + return params; + }, {}); } diff --git a/app/lib/methods/helpers/parseUrls.js b/app/lib/methods/helpers/parseUrls.js index d49c54c473..1d3dcff45c 100644 --- a/app/lib/methods/helpers/parseUrls.js +++ b/app/lib/methods/helpers/parseUrls.js @@ -1,21 +1,24 @@ -export default urls => urls.filter(url => url.meta && !url.ignoreParse).map((url, index) => { - const tmp = {}; - const { meta } = url; - tmp._id = index; - tmp.title = meta.ogTitle || meta.twitterTitle || meta.title || meta.pageTitle || meta.oembedTitle; - tmp.description = meta.ogDescription || meta.twitterDescription || meta.description || meta.oembedAuthorName; - let decodedOgImage; - if (meta.ogImage) { - decodedOgImage = meta.ogImage.replace(/&/g, '&'); - } - tmp.image = decodedOgImage || meta.twitterImage || meta.oembedThumbnailUrl; - if (tmp.image) { - if (tmp.image.indexOf('//') === 0) { - tmp.image = `${ url.parsedUrl.protocol }${ tmp.image }`; - } else if (tmp.image.indexOf('/') === 0 && (url.parsedUrl && url.parsedUrl.host)) { - tmp.image = `${ url.parsedUrl.protocol }//${ url.parsedUrl.host }${ tmp.image }`; - } - } - tmp.url = url.url; - return tmp; -}); +export default urls => + urls + .filter(url => url.meta && !url.ignoreParse) + .map((url, index) => { + const tmp = {}; + const { meta } = url; + tmp._id = index; + tmp.title = meta.ogTitle || meta.twitterTitle || meta.title || meta.pageTitle || meta.oembedTitle; + tmp.description = meta.ogDescription || meta.twitterDescription || meta.description || meta.oembedAuthorName; + let decodedOgImage; + if (meta.ogImage) { + decodedOgImage = meta.ogImage.replace(/&/g, '&'); + } + tmp.image = decodedOgImage || meta.twitterImage || meta.oembedThumbnailUrl; + if (tmp.image) { + if (tmp.image.indexOf('//') === 0) { + tmp.image = `${url.parsedUrl.protocol}${tmp.image}`; + } else if (tmp.image.indexOf('/') === 0 && url.parsedUrl && url.parsedUrl.host) { + tmp.image = `${url.parsedUrl.protocol}//${url.parsedUrl.host}${tmp.image}`; + } + } + tmp.url = url.url; + return tmp; + }); diff --git a/app/lib/methods/helpers/protectedFunction.js b/app/lib/methods/helpers/protectedFunction.js index ce2076b3ec..93ce93a212 100644 --- a/app/lib/methods/helpers/protectedFunction.js +++ b/app/lib/methods/helpers/protectedFunction.js @@ -1,7 +1,8 @@ -export default fn => (...params) => { - try { - fn(...params); - } catch (e) { - console.log(e); - } -}; +export default fn => + (...params) => { + try { + fn(...params); + } catch (e) { + console.log(e); + } + }; diff --git a/app/lib/methods/loadMessagesForRoom.js b/app/lib/methods/loadMessagesForRoom.js index 5ef75c7b67..4a11bcc8ce 100644 --- a/app/lib/methods/loadMessagesForRoom.js +++ b/app/lib/methods/loadMessagesForRoom.js @@ -20,7 +20,7 @@ async function load({ rid: roomId, latest, t }) { } // RC 0.48.0 - const data = await this.sdk.get(`${ apiType }.history`, params); + const data = await this.sdk.get(`${apiType}.history`, params); if (!data || data.status === 'error') { return []; } @@ -28,7 +28,7 @@ async function load({ rid: roomId, latest, t }) { } export default function loadMessagesForRoom(args) { - return new Promise(async(resolve, reject) => { + return new Promise(async (resolve, reject) => { try { const data = await load.call(this, args); if (data?.length) { diff --git a/app/lib/methods/loadMissedMessages.js b/app/lib/methods/loadMissedMessages.js index f6cf13fa99..7b2e8c978f 100644 --- a/app/lib/methods/loadMissedMessages.js +++ b/app/lib/methods/loadMissedMessages.js @@ -2,7 +2,7 @@ import database from '../database'; import log from '../../utils/log'; import updateMessages from './updateMessages'; -const getLastUpdate = async(rid) => { +const getLastUpdate = async rid => { try { const db = database.active; const subsCollection = db.get('subscriptions'); @@ -27,7 +27,7 @@ async function load({ rid: roomId, lastOpen }) { } export default function loadMissedMessages(args) { - return new Promise(async(resolve, reject) => { + return new Promise(async (resolve, reject) => { try { const data = await load.call(this, { rid: args.rid, lastOpen: args.lastOpen }); diff --git a/app/lib/methods/loadNextMessages.js b/app/lib/methods/loadNextMessages.js index 48dae4c39b..3fe7285127 100644 --- a/app/lib/methods/loadNextMessages.js +++ b/app/lib/methods/loadNextMessages.js @@ -11,7 +11,7 @@ import updateMessages from './updateMessages'; const COUNT = 50; export default function loadNextMessages(args) { - return new Promise(async(resolve, reject) => { + return new Promise(async (resolve, reject) => { try { const data = await this.methodCallWrapper('loadNextMessages', args.rid, args.ts, COUNT); let messages = EJSON.fromJSONValue(data?.messages); diff --git a/app/lib/methods/loadSurroundingMessages.js b/app/lib/methods/loadSurroundingMessages.js index 5c46ad2f1a..bc25ae6953 100644 --- a/app/lib/methods/loadSurroundingMessages.js +++ b/app/lib/methods/loadSurroundingMessages.js @@ -11,7 +11,7 @@ import updateMessages from './updateMessages'; const COUNT = 50; export default function loadSurroundingMessages({ messageId, rid }) { - return new Promise(async(resolve, reject) => { + return new Promise(async (resolve, reject) => { try { const data = await this.methodCallWrapper('loadSurroundingMessages', { _id: messageId, rid }, COUNT); let messages = EJSON.fromJSONValue(data?.messages); diff --git a/app/lib/methods/loadThreadMessages.js b/app/lib/methods/loadThreadMessages.js index d86d8e9088..1a17f564de 100644 --- a/app/lib/methods/loadThreadMessages.js +++ b/app/lib/methods/loadThreadMessages.js @@ -23,7 +23,7 @@ async function load({ tmid }) { } export default function loadThreadMessages({ tmid, rid }) { - return new Promise(async(resolve, reject) => { + return new Promise(async (resolve, reject) => { try { let data = await load.call(this, { tmid }); if (data && data.length) { @@ -36,28 +36,31 @@ export default function loadThreadMessages({ tmid, rid }) { let threadMessagesToCreate = data.filter(i1 => !allThreadMessagesRecords.find(i2 => i1._id === i2.id)); let threadMessagesToUpdate = allThreadMessagesRecords.filter(i1 => data.find(i2 => i1.id === i2._id)); - threadMessagesToCreate = threadMessagesToCreate.map(threadMessage => threadMessagesCollection.prepareCreate(protectedFunction((tm) => { - tm._raw = sanitizedRaw({ id: threadMessage._id }, threadMessagesCollection.schema); - Object.assign(tm, threadMessage); - tm.subscription.id = rid; - tm.rid = threadMessage.tmid; - delete threadMessage.tmid; - }))); + threadMessagesToCreate = threadMessagesToCreate.map(threadMessage => + threadMessagesCollection.prepareCreate( + protectedFunction(tm => { + tm._raw = sanitizedRaw({ id: threadMessage._id }, threadMessagesCollection.schema); + Object.assign(tm, threadMessage); + tm.subscription.id = rid; + tm.rid = threadMessage.tmid; + delete threadMessage.tmid; + }) + ) + ); - threadMessagesToUpdate = threadMessagesToUpdate.map((threadMessage) => { + threadMessagesToUpdate = threadMessagesToUpdate.map(threadMessage => { const newThreadMessage = data.find(t => t._id === threadMessage.id); - return threadMessage.prepareUpdate(protectedFunction((tm) => { - Object.assign(tm, newThreadMessage); - tm.rid = threadMessage.tmid; - delete threadMessage.tmid; - })); + return threadMessage.prepareUpdate( + protectedFunction(tm => { + Object.assign(tm, newThreadMessage); + tm.rid = threadMessage.tmid; + delete threadMessage.tmid; + }) + ); }); - await db.action(async() => { - await db.batch( - ...threadMessagesToCreate, - ...threadMessagesToUpdate - ); + await db.action(async () => { + await db.batch(...threadMessagesToCreate, ...threadMessagesToUpdate); }); } catch (e) { log(e); diff --git a/app/lib/methods/logout.js b/app/lib/methods/logout.js index 33e8c8818d..c108a99655 100644 --- a/app/lib/methods/logout.js +++ b/app/lib/methods/logout.js @@ -7,20 +7,16 @@ import { BASIC_AUTH_KEY } from '../../utils/fetch'; import database, { getDatabase } from '../database'; import RocketChat from '../rocketchat'; import { useSsl } from '../../utils/url'; -import { - E2E_PRIVATE_KEY, - E2E_PUBLIC_KEY, - E2E_RANDOM_PASSWORD_KEY -} from '../encryption/constants'; +import { E2E_PRIVATE_KEY, E2E_PUBLIC_KEY, E2E_RANDOM_PASSWORD_KEY } from '../encryption/constants'; import UserPreferences from '../userPreferences'; async function removeServerKeys({ server, userId }) { - await UserPreferences.removeItem(`${ RocketChat.TOKEN_KEY }-${ server }`); - await UserPreferences.removeItem(`${ RocketChat.TOKEN_KEY }-${ userId }`); - await UserPreferences.removeItem(`${ BASIC_AUTH_KEY }-${ server }`); - await UserPreferences.removeItem(`${ server }-${ E2E_PUBLIC_KEY }`); - await UserPreferences.removeItem(`${ server }-${ E2E_PRIVATE_KEY }`); - await UserPreferences.removeItem(`${ server }-${ E2E_RANDOM_PASSWORD_KEY }`); + await UserPreferences.removeItem(`${RocketChat.TOKEN_KEY}-${server}`); + await UserPreferences.removeItem(`${RocketChat.TOKEN_KEY}-${userId}`); + await UserPreferences.removeItem(`${BASIC_AUTH_KEY}-${server}`); + await UserPreferences.removeItem(`${server}-${E2E_PUBLIC_KEY}`); + await UserPreferences.removeItem(`${server}-${E2E_PRIVATE_KEY}`); + await UserPreferences.removeItem(`${server}-${E2E_RANDOM_PASSWORD_KEY}`); } async function removeSharedCredentials({ server }) { @@ -40,7 +36,7 @@ async function removeServerData({ server }) { try { const batch = []; const serversDB = database.servers; - const userId = await UserPreferences.getStringAsync(`${ RocketChat.TOKEN_KEY }-${ server }`); + const userId = await UserPreferences.getStringAsync(`${RocketChat.TOKEN_KEY}-${server}`); const usersCollection = serversDB.get('users'); if (userId) { @@ -74,9 +70,9 @@ async function removeServerDatabase({ server }) { export async function removeServer({ server }) { try { - const userId = await UserPreferences.getStringAsync(`${ RocketChat.TOKEN_KEY }-${ server }`); + const userId = await UserPreferences.getStringAsync(`${RocketChat.TOKEN_KEY}-${server}`); if (userId) { - const resume = await UserPreferences.getStringAsync(`${ RocketChat.TOKEN_KEY }-${ userId }`); + const resume = await UserPreferences.getStringAsync(`${RocketChat.TOKEN_KEY}-${userId}`); const sdk = new RocketchatClient({ host: server, protocol: 'ddp', useSsl: useSsl(server) }); await sdk.login({ resume }); diff --git a/app/lib/methods/readMessages.js b/app/lib/methods/readMessages.js index 1376126486..7d2d58de1c 100644 --- a/app/lib/methods/readMessages.js +++ b/app/lib/methods/readMessages.js @@ -9,9 +9,9 @@ export default async function readMessages(rid, ls, updateLastOpen = false) { // RC 0.61.0 await this.sdk.post('subscriptions.read', { rid }); - await db.action(async() => { + await db.action(async () => { try { - await subscription.update((s) => { + await subscription.update(s => { s.open = true; s.alert = false; s.unread = 0; diff --git a/app/lib/methods/sendFileMessage.js b/app/lib/methods/sendFileMessage.js index 435e377cba..35d2815ca2 100644 --- a/app/lib/methods/sendFileMessage.js +++ b/app/lib/methods/sendFileMessage.js @@ -20,7 +20,7 @@ export async function cancelUpload(item) { } try { const db = database.active; - await db.action(async() => { + await db.action(async () => { await item.destroyPermanently(); }); } catch (e) { @@ -31,11 +31,11 @@ export async function cancelUpload(item) { } export function sendFileMessage(rid, fileInfo, tmid, server, user) { - return new Promise(async(resolve, reject) => { + return new Promise(async (resolve, reject) => { try { const { id, token } = user; - const uploadUrl = `${ server }/api/v1/rooms.upload/${ rid }`; + const uploadUrl = `${server}/api/v1/rooms.upload/${rid}`; fileInfo.rid = rid; @@ -46,8 +46,8 @@ export function sendFileMessage(rid, fileInfo, tmid, server, user) { uploadRecord = await uploadsCollection.find(fileInfo.path); } catch (error) { try { - await db.action(async() => { - uploadRecord = await uploadsCollection.create((u) => { + await db.action(async () => { + uploadRecord = await uploadsCollection.create(u => { u._raw = sanitizedRaw({ id: fileInfo.path }, uploadsCollection.schema); Object.assign(u, fileInfo); u.subscription.id = rid; @@ -89,10 +89,10 @@ export function sendFileMessage(rid, fileInfo, tmid, server, user) { uploadQueue[fileInfo.path] = FileUpload.fetch('POST', uploadUrl, headers, formData); - uploadQueue[fileInfo.path].uploadProgress(async(loaded, total) => { + uploadQueue[fileInfo.path].uploadProgress(async (loaded, total) => { try { - await db.action(async() => { - await uploadRecord.update((u) => { + await db.action(async () => { + await uploadRecord.update(u => { u.progress = Math.floor((loaded / total) * 100); }); }); @@ -101,10 +101,11 @@ export function sendFileMessage(rid, fileInfo, tmid, server, user) { } }); - uploadQueue[fileInfo.path].then(async(response) => { - if (response.respInfo.status >= 200 && response.respInfo.status < 400) { // If response is all good... + uploadQueue[fileInfo.path].then(async response => { + if (response.respInfo.status >= 200 && response.respInfo.status < 400) { + // If response is all good... try { - await db.action(async() => { + await db.action(async () => { await uploadRecord.destroyPermanently(); }); resolve(response); @@ -113,8 +114,8 @@ export function sendFileMessage(rid, fileInfo, tmid, server, user) { } } else { try { - await db.action(async() => { - await uploadRecord.update((u) => { + await db.action(async () => { + await uploadRecord.update(u => { u.error = true; }); }); @@ -129,10 +130,10 @@ export function sendFileMessage(rid, fileInfo, tmid, server, user) { } }); - uploadQueue[fileInfo.path].catch(async(error) => { + uploadQueue[fileInfo.path].catch(async error => { try { - await db.action(async() => { - await uploadRecord.update((u) => { + await db.action(async () => { + await uploadRecord.update(u => { u.error = true; }); }); diff --git a/app/lib/methods/sendMessage.js b/app/lib/methods/sendMessage.js index 9b1bc6d101..1a1ff99348 100644 --- a/app/lib/methods/sendMessage.js +++ b/app/lib/methods/sendMessage.js @@ -7,14 +7,14 @@ import random from '../../utils/random'; import { Encryption } from '../encryption'; import { E2E_MESSAGE_TYPE, E2E_STATUS } from '../encryption/constants'; -const changeMessageStatus = async(id, tmid, status, message) => { +const changeMessageStatus = async (id, tmid, status, message) => { const db = database.active; const msgCollection = db.get('messages'); const threadMessagesCollection = db.get('thread_messages'); const successBatch = []; const messageRecord = await msgCollection.find(id); successBatch.push( - messageRecord.prepareUpdate((m) => { + messageRecord.prepareUpdate(m => { m.status = status; if (message) { m.mentions = message.mentions; @@ -26,7 +26,7 @@ const changeMessageStatus = async(id, tmid, status, message) => { if (tmid) { const threadMessageRecord = await threadMessagesCollection.find(id); successBatch.push( - threadMessageRecord.prepareUpdate((tm) => { + threadMessageRecord.prepareUpdate(tm => { tm.status = status; if (message) { tm.mentions = message.mentions; @@ -37,7 +37,7 @@ const changeMessageStatus = async(id, tmid, status, message) => { } try { - await db.action(async() => { + await db.action(async () => { await db.batch(...successBatch); }); } catch (error) { @@ -63,8 +63,8 @@ export async function sendMessageCall(message) { export async function resendMessage(message, tmid) { const db = database.active; try { - await db.action(async() => { - await message.update((m) => { + await db.action(async () => { + await message.update(m => { m.status = messagesStatus.TEMP; }); }); @@ -86,7 +86,7 @@ export async function resendMessage(message, tmid) { } } -export default async function(rid, msg, tmid, user, tshow) { +export default async function (rid, msg, tmid, user, tshow) { try { const db = database.active; const subsCollection = db.get('subscriptions'); @@ -97,7 +97,11 @@ export default async function(rid, msg, tmid, user, tshow) { const batch = []; let message = { - _id: messageId, rid, msg, tmid, tshow + _id: messageId, + rid, + msg, + tmid, + tshow }; message = await Encryption.encryptMessage(message); @@ -110,7 +114,7 @@ export default async function(rid, msg, tmid, user, tshow) { // Find thread message header in Messages collection tMessageRecord = await msgCollection.find(tmid); batch.push( - tMessageRecord.prepareUpdate((m) => { + tMessageRecord.prepareUpdate(m => { m.tlm = messageDate; m.tcount += 1; }) @@ -122,7 +126,7 @@ export default async function(rid, msg, tmid, user, tshow) { } catch (error) { // If there's no record, create one batch.push( - threadCollection.prepareCreate((tm) => { + threadCollection.prepareCreate(tm => { tm._raw = sanitizedRaw({ id: tmid }, threadCollection.schema); tm.subscription.id = rid; tm.tmid = tmid; @@ -141,7 +145,7 @@ export default async function(rid, msg, tmid, user, tshow) { // Create the message sent in ThreadMessages collection batch.push( - threadMessagesCollection.prepareCreate((tm) => { + threadMessagesCollection.prepareCreate(tm => { tm._raw = sanitizedRaw({ id: messageId }, threadMessagesCollection.schema); tm.subscription.id = rid; tm.rid = tmid; @@ -167,7 +171,7 @@ export default async function(rid, msg, tmid, user, tshow) { // Create the message sent in Messages collection batch.push( - msgCollection.prepareCreate((m) => { + msgCollection.prepareCreate(m => { m._raw = sanitizedRaw({ id: messageId }, msgCollection.schema); m.subscription.id = rid; m.msg = msg; @@ -196,7 +200,7 @@ export default async function(rid, msg, tmid, user, tshow) { const room = await subsCollection.find(rid); if (room.draftMessage) { batch.push( - room.prepareUpdate((r) => { + room.prepareUpdate(r => { r.draftMessage = null; }) ); @@ -206,7 +210,7 @@ export default async function(rid, msg, tmid, user, tshow) { } try { - await db.action(async() => { + await db.action(async () => { await db.batch(...batch); }); } catch (e) { diff --git a/app/lib/methods/subscriptions/room.js b/app/lib/methods/subscriptions/room.js index 7e21a72932..33ebb7df51 100644 --- a/app/lib/methods/subscriptions/room.js +++ b/app/lib/methods/subscriptions/room.js @@ -26,8 +26,8 @@ export default class RoomSubscription { this.threadMessagesBatch = {}; } - subscribe = async() => { - console.log(`[RCRN] Subscribing to room ${ this.rid }`); + subscribe = async () => { + console.log(`[RCRN] Subscribing to room ${this.rid}`); if (this.promises) { await this.unsubscribe(); } @@ -42,15 +42,15 @@ export default class RoomSubscription { } reduxStore.dispatch(subscribeRoom(this.rid)); - } + }; - unsubscribe = async() => { - console.log(`[RCRN] Unsubscribing from room ${ this.rid }`); + unsubscribe = async () => { + console.log(`[RCRN] Unsubscribing from room ${this.rid}`); this.isAlive = false; reduxStore.dispatch(unsubscribeRoom(this.rid)); if (this.promises) { try { - const subscriptions = await this.promises || []; + const subscriptions = (await this.promises) || []; subscriptions.forEach(sub => sub.unsubscribe().catch(() => console.log('unsubscribeRoom'))); } catch (e) { // do nothing @@ -64,9 +64,9 @@ export default class RoomSubscription { if (this.timer) { clearTimeout(this.timer); } - } + }; - removeListener = async(promise) => { + removeListener = async promise => { if (promise) { try { const listener = await promise; @@ -82,7 +82,7 @@ export default class RoomSubscription { RocketChat.loadMissedMessages({ rid: this.rid }).catch(e => console.log(e)); }; - handleNotifyRoomReceived = protectedFunction((ddpMessage) => { + handleNotifyRoomReceived = protectedFunction(ddpMessage => { const [_rid, ev] = ddpMessage.fields.eventName.split('/'); if (this.rid !== _rid) { return; @@ -104,7 +104,7 @@ export default class RoomSubscription { } } } else if (ev === 'deleteMessage') { - InteractionManager.runAfterInteractions(async() => { + InteractionManager.runAfterInteractions(async () => { if (ddpMessage && ddpMessage.fields && ddpMessage.fields.args.length > 0) { try { const { _id } = ddpMessage.fields.args[0]; @@ -139,10 +139,8 @@ export default class RoomSubscription { } catch (e) { // Do nothing } - await db.action(async() => { - await db.batch( - deleteMessage, deleteThread, deleteThreadMessage - ); + await db.action(async () => { + await db.batch(deleteMessage, deleteThread, deleteThreadMessage); }); } catch (e) { log(e); @@ -152,12 +150,12 @@ export default class RoomSubscription { } }); - read = debounce((lastOpen) => { + read = debounce(lastOpen => { RocketChat.readMessages(this.rid, lastOpen); }, 300); updateMessage = message => - new Promise(async(resolve) => { + new Promise(async resolve => { if (this.rid !== message.rid) { return resolve(); } @@ -174,17 +172,21 @@ export default class RoomSubscription { try { const messageRecord = await msgCollection.find(message._id); if (!messageRecord._hasPendingUpdate) { - const update = messageRecord.prepareUpdate(protectedFunction((m) => { - Object.assign(m, message); - })); + const update = messageRecord.prepareUpdate( + protectedFunction(m => { + Object.assign(m, message); + }) + ); this._messagesBatch[message._id] = update; } } catch { - const create = msgCollection.prepareCreate(protectedFunction((m) => { - m._raw = sanitizedRaw({ id: message._id }, msgCollection.schema); - m.subscription.id = this.rid; - Object.assign(m, message); - })); + const create = msgCollection.prepareCreate( + protectedFunction(m => { + m._raw = sanitizedRaw({ id: message._id }, msgCollection.schema); + m.subscription.id = this.rid; + Object.assign(m, message); + }) + ); this._messagesBatch[message._id] = create; } @@ -193,17 +195,21 @@ export default class RoomSubscription { try { const threadRecord = await threadsCollection.find(message._id); if (!threadRecord._hasPendingUpdate) { - const updateThread = threadRecord.prepareUpdate(protectedFunction((t) => { - Object.assign(t, message); - })); + const updateThread = threadRecord.prepareUpdate( + protectedFunction(t => { + Object.assign(t, message); + }) + ); this._threadsBatch[message._id] = updateThread; } } catch { - const createThread = threadsCollection.prepareCreate(protectedFunction((t) => { - t._raw = sanitizedRaw({ id: message._id }, threadsCollection.schema); - t.subscription.id = this.rid; - Object.assign(t, message); - })); + const createThread = threadsCollection.prepareCreate( + protectedFunction(t => { + t._raw = sanitizedRaw({ id: message._id }, threadsCollection.schema); + t.subscription.id = this.rid; + Object.assign(t, message); + }) + ); this._threadsBatch[message._id] = createThread; } } @@ -213,32 +219,35 @@ export default class RoomSubscription { try { const threadMessageRecord = await threadMessagesCollection.find(message._id); if (!threadMessageRecord._hasPendingUpdate) { - const updateThreadMessage = threadMessageRecord.prepareUpdate(protectedFunction((tm) => { - Object.assign(tm, message); - tm.rid = message.tmid; - delete tm.tmid; - })); + const updateThreadMessage = threadMessageRecord.prepareUpdate( + protectedFunction(tm => { + Object.assign(tm, message); + tm.rid = message.tmid; + delete tm.tmid; + }) + ); this._threadMessagesBatch[message._id] = updateThreadMessage; } } catch { - const createThreadMessage = threadMessagesCollection.prepareCreate(protectedFunction((tm) => { - tm._raw = sanitizedRaw({ id: message._id }, threadMessagesCollection.schema); - Object.assign(tm, message); - tm.subscription.id = this.rid; - tm.rid = message.tmid; - delete tm.tmid; - })); + const createThreadMessage = threadMessagesCollection.prepareCreate( + protectedFunction(tm => { + tm._raw = sanitizedRaw({ id: message._id }, threadMessagesCollection.schema); + Object.assign(tm, message); + tm.subscription.id = this.rid; + tm.rid = message.tmid; + delete tm.tmid; + }) + ); this._threadMessagesBatch[message._id] = createThreadMessage; } } return resolve(); - }) - + }); - handleMessageReceived = (ddpMessage) => { + handleMessageReceived = ddpMessage => { if (!this.timer) { - this.timer = setTimeout(async() => { + this.timer = setTimeout(async () => { // copy variables values to local and clean them const _lastOpen = this.lastOpen; const _queue = Object.keys(this.queue).map(key => this.queue[key]); @@ -262,7 +271,7 @@ export default class RoomSubscription { try { const db = database.active; - await db.action(async() => { + await db.action(async () => { await db.batch( ...Object.values(this._messagesBatch), ...Object.values(this._threadsBatch), diff --git a/app/lib/methods/subscriptions/rooms.js b/app/lib/methods/subscriptions/rooms.js index b79e422a66..4dd84adfc8 100644 --- a/app/lib/methods/subscriptions/rooms.js +++ b/app/lib/methods/subscriptions/rooms.js @@ -29,7 +29,7 @@ let queue = {}; let subTimer = null; const WINDOW_TIME = 500; -const createOrUpdateSubscription = async(subscription, room) => { +const createOrUpdateSubscription = async (subscription, room) => { try { const db = database.active; const subCollection = db.get('subscriptions'); @@ -90,11 +90,13 @@ const createOrUpdateSubscription = async(subscription, room) => { }; } catch (error) { try { - await db.action(async() => { - await roomsCollection.create(protectedFunction((r) => { - r._raw = sanitizedRaw({ id: room._id }, roomsCollection.schema); - Object.assign(r, room); - })); + await db.action(async () => { + await roomsCollection.create( + protectedFunction(r => { + r._raw = sanitizedRaw({ id: room._id }, roomsCollection.schema); + Object.assign(r, room); + }) + ); }); } catch (e) { // Do nothing @@ -155,7 +157,7 @@ const createOrUpdateSubscription = async(subscription, room) => { const batch = []; if (sub) { try { - const update = sub.prepareUpdate((s) => { + const update = sub.prepareUpdate(s => { Object.assign(s, tmp); if (subscription.announcement) { if (subscription.announcement !== sub.announcement) { @@ -169,7 +171,7 @@ const createOrUpdateSubscription = async(subscription, room) => { } } else { try { - const create = subCollection.prepareCreate((s) => { + const create = subCollection.prepareCreate(s => { s._raw = sanitizedRaw({ id: tmp.rid }, subCollection.schema); Object.assign(s, tmp); if (s.roomUpdatedAt) { @@ -201,7 +203,7 @@ const createOrUpdateSubscription = async(subscription, room) => { ); } else { batch.push( - messagesCollection.prepareCreate((m) => { + messagesCollection.prepareCreate(m => { m._raw = sanitizedRaw({ id: lastMessage._id }, messagesCollection.schema); m.subscription.id = lastMessage.rid; return Object.assign(m, lastMessage); @@ -210,7 +212,7 @@ const createOrUpdateSubscription = async(subscription, room) => { } } - await db.action(async() => { + await db.action(async () => { await db.batch(...batch); }); } catch (e) { @@ -218,17 +220,17 @@ const createOrUpdateSubscription = async(subscription, room) => { } }; -const getSubQueueId = rid => `SUB-${ rid }`; +const getSubQueueId = rid => `SUB-${rid}`; -const getRoomQueueId = rid => `ROOM-${ rid }`; +const getRoomQueueId = rid => `ROOM-${rid}`; -const debouncedUpdate = (subscription) => { +const debouncedUpdate = subscription => { if (!subTimer) { subTimer = setTimeout(() => { const batch = queue; queue = {}; subTimer = null; - Object.keys(batch).forEach((key) => { + Object.keys(batch).forEach(key => { InteractionManager.runAfterInteractions(() => { if (batch[key]) { if (/SUB/.test(key)) { @@ -257,7 +259,7 @@ export default function subscribeRooms() { store.dispatch(roomsRequest()); }; - const handleStreamMessageReceived = protectedFunction(async(ddpMessage) => { + const handleStreamMessageReceived = protectedFunction(async ddpMessage => { const db = database.active; // check if the server from variable is the same as the js sdk client @@ -289,13 +291,8 @@ export default function subscribeRooms() { const messagesToDelete = messages.map(m => m.prepareDestroyPermanently()); const threadsToDelete = threads.map(m => m.prepareDestroyPermanently()); const threadMessagesToDelete = threadMessages.map(m => m.prepareDestroyPermanently()); - await db.action(async() => { - await db.batch( - sub.prepareDestroyPermanently(), - ...messagesToDelete, - ...threadsToDelete, - ...threadMessagesToDelete - ); + await db.action(async () => { + await db.batch(sub.prepareDestroyPermanently(), ...messagesToDelete, ...threadsToDelete, ...threadMessagesToDelete); }); const roomState = store.getState().room; @@ -336,12 +333,14 @@ export default function subscribeRooms() { }; try { const msgCollection = db.get('messages'); - await db.action(async() => { - await msgCollection.create(protectedFunction((m) => { - m._raw = sanitizedRaw({ id: message._id }, msgCollection.schema); - m.subscription.id = args.rid; - Object.assign(m, message); - })); + await db.action(async () => { + await msgCollection.create( + protectedFunction(m => { + m._raw = sanitizedRaw({ id: message._id }, msgCollection.schema); + m.subscription.id = args.rid; + Object.assign(m, message); + }) + ); }); } catch (e) { log(e); @@ -350,7 +349,9 @@ export default function subscribeRooms() { if (/notification/.test(ev)) { const [notification] = ddpMessage.fields.args; try { - const { payload: { rid, message, sender } } = notification; + const { + payload: { rid, message, sender } + } = notification; const room = await RocketChat.getRoom(rid); notification.title = RocketChat.getRoomTitle(room); notification.avatar = RocketChat.getRoomAvatar(room); @@ -362,9 +363,9 @@ export default function subscribeRooms() { // If it's a direct the content is the message decrypted if (room.t === 'd') { notification.text = msg; - // If it's a private group we should add the sender name + // If it's a private group we should add the sender name } else { - notification.text = `${ RocketChat.getSenderName(sender) }: ${ msg }`; + notification.text = `${RocketChat.getSenderName(sender)}: ${msg}`; } } } catch (e) { diff --git a/app/lib/methods/updateMessages.js b/app/lib/methods/updateMessages.js index 8130e9179d..c39066b202 100644 --- a/app/lib/methods/updateMessages.js +++ b/app/lib/methods/updateMessages.js @@ -9,15 +9,13 @@ import { generateLoadMoreId } from '../utils'; import protectedFunction from './helpers/protectedFunction'; import buildMessage from './helpers/buildMessage'; -export default function updateMessages({ - rid, update = [], remove = [], loaderItem -}) { +export default function updateMessages({ rid, update = [], remove = [], loaderItem }) { try { if (!((update && update.length) || (remove && remove.length))) { return; } const db = database.active; - return db.action(async() => { + return db.action(async () => { // Decrypt these messages update = await Encryption.decryptMessages(update); const subCollection = db.get('subscriptions'); @@ -34,17 +32,9 @@ export default function updateMessages({ const threadCollection = db.get('threads'); const threadMessagesCollection = db.get('thread_messages'); const allMessagesRecords = await msgCollection - .query( - Q.where('rid', rid), - Q.or( - Q.where('id', Q.oneOf(messagesIds)), - Q.where('t', Q.oneOf(MESSAGE_TYPE_ANY_LOAD)) - ) - ) - .fetch(); - const allThreadsRecords = await threadCollection - .query(Q.where('rid', rid), Q.where('id', Q.oneOf(messagesIds))) + .query(Q.where('rid', rid), Q.or(Q.where('id', Q.oneOf(messagesIds)), Q.where('t', Q.oneOf(MESSAGE_TYPE_ANY_LOAD)))) .fetch(); + const allThreadsRecords = await threadCollection.query(Q.where('rid', rid), Q.where('id', Q.oneOf(messagesIds))).fetch(); const allThreadMessagesRecords = await threadMessagesCollection .query(Q.where('subscription_id', rid), Q.where('id', Q.oneOf(messagesIds))) .fetch(); @@ -69,56 +59,74 @@ export default function updateMessages({ let loadersToDelete = allMessagesRecords.filter(i1 => update.find(i2 => i1.id === generateLoadMoreId(i2._id))); // Create - msgsToCreate = msgsToCreate.map(message => msgCollection.prepareCreate(protectedFunction((m) => { - m._raw = sanitizedRaw({ id: message._id }, msgCollection.schema); - m.subscription.id = sub.id; - Object.assign(m, message); - }))); - threadsToCreate = threadsToCreate.map(thread => threadCollection.prepareCreate(protectedFunction((t) => { - t._raw = sanitizedRaw({ id: thread._id }, threadCollection.schema); - t.subscription.id = sub.id; - Object.assign(t, thread); - }))); - threadMessagesToCreate = threadMessagesToCreate.map(threadMessage => threadMessagesCollection.prepareCreate(protectedFunction((tm) => { - tm._raw = sanitizedRaw({ id: threadMessage._id }, threadMessagesCollection.schema); - Object.assign(tm, threadMessage); - tm.subscription.id = sub.id; - tm.rid = threadMessage.tmid; - delete threadMessage.tmid; - }))); + msgsToCreate = msgsToCreate.map(message => + msgCollection.prepareCreate( + protectedFunction(m => { + m._raw = sanitizedRaw({ id: message._id }, msgCollection.schema); + m.subscription.id = sub.id; + Object.assign(m, message); + }) + ) + ); + threadsToCreate = threadsToCreate.map(thread => + threadCollection.prepareCreate( + protectedFunction(t => { + t._raw = sanitizedRaw({ id: thread._id }, threadCollection.schema); + t.subscription.id = sub.id; + Object.assign(t, thread); + }) + ) + ); + threadMessagesToCreate = threadMessagesToCreate.map(threadMessage => + threadMessagesCollection.prepareCreate( + protectedFunction(tm => { + tm._raw = sanitizedRaw({ id: threadMessage._id }, threadMessagesCollection.schema); + Object.assign(tm, threadMessage); + tm.subscription.id = sub.id; + tm.rid = threadMessage.tmid; + delete threadMessage.tmid; + }) + ) + ); // Update - msgsToUpdate = msgsToUpdate.map((message) => { + msgsToUpdate = msgsToUpdate.map(message => { const newMessage = update.find(m => m._id === message.id); if (message._hasPendingUpdate) { console.log(message); return; } - return message.prepareUpdate(protectedFunction((m) => { - Object.assign(m, newMessage); - })); + return message.prepareUpdate( + protectedFunction(m => { + Object.assign(m, newMessage); + }) + ); }); - threadsToUpdate = threadsToUpdate.map((thread) => { + threadsToUpdate = threadsToUpdate.map(thread => { if (thread._hasPendingUpdate) { console.log(thread); return; } const newThread = allThreads.find(t => t._id === thread.id); - return thread.prepareUpdate(protectedFunction((t) => { - Object.assign(t, newThread); - })); + return thread.prepareUpdate( + protectedFunction(t => { + Object.assign(t, newThread); + }) + ); }); - threadMessagesToUpdate = threadMessagesToUpdate.map((threadMessage) => { + threadMessagesToUpdate = threadMessagesToUpdate.map(threadMessage => { if (threadMessage._hasPendingUpdate) { console.log(threadMessage); return; } const newThreadMessage = allThreadMessages.find(t => t._id === threadMessage.id); - return threadMessage.prepareUpdate(protectedFunction((tm) => { - Object.assign(tm, newThreadMessage); - tm.rid = threadMessage.tmid; - delete threadMessage.tmid; - })); + return threadMessage.prepareUpdate( + protectedFunction(tm => { + Object.assign(tm, newThreadMessage); + tm.rid = threadMessage.tmid; + delete threadMessage.tmid; + }) + ); }); // Delete diff --git a/app/lib/rocketchat.js b/app/lib/rocketchat.js index a01790f44c..14f85740a6 100644 --- a/app/lib/rocketchat.js +++ b/app/lib/rocketchat.js @@ -1,9 +1,6 @@ import { InteractionManager } from 'react-native'; import EJSON from 'ejson'; -import { - settings as RocketChatSettings, - Rocketchat as RocketchatClient -} from '@rocket.chat/sdk'; +import { settings as RocketChatSettings, Rocketchat as RocketchatClient } from '@rocket.chat/sdk'; import { Q } from '@nozbe/watermelondb'; import AsyncStorage from '@react-native-community/async-storage'; import { sanitizedRaw } from '@nozbe/watermelondb/RawRecord'; @@ -40,7 +37,10 @@ import getRooms from './methods/getRooms'; import { getPermissions, setPermissions } from './methods/getPermissions'; import { getCustomEmojis, setCustomEmojis } from './methods/getCustomEmojis'; import { - getEnterpriseModules, hasLicense, isOmnichannelModuleAvailable, setEnterpriseModules + getEnterpriseModules, + hasLicense, + isOmnichannelModuleAvailable, + setEnterpriseModules } from './methods/enterpriseModules'; import getSlashCommands from './methods/getSlashCommands'; import { getRoles, onRolesChanged, setRoles } from './methods/getRoles'; @@ -91,9 +91,7 @@ const RocketChat = { } }, canOpenRoom, - createChannel({ - name, users, type, readOnly, broadcast, encrypted, teamId - }) { + createChannel({ name, users, type, readOnly, broadcast, encrypted, teamId }) { const params = { name, members: users, @@ -101,7 +99,7 @@ const RocketChat = { extraData: { broadcast, encrypted, - ...teamId && { teamId } + ...(teamId && { teamId }) } }; return this.post(type ? 'groups.create' : 'channels.create', params); @@ -128,7 +126,7 @@ const RocketChat = { }, async getServerInfo(server) { try { - const response = await RNFetchBlob.fetch('GET', `${ server }/api/info`, { ...RocketChatSettings.customHeaders }); + const response = await RNFetchBlob.fetch('GET', `${server}/api/info`, { ...RocketChatSettings.customHeaders }); try { // Try to resolve as json const jsonRes = response.json(); @@ -190,7 +188,7 @@ const RocketChat = { this.sdk = null; }, connect({ server, user, logoutOnError = false }) { - return new Promise((resolve) => { + return new Promise(resolve => { if (this?.sdk?.client?.host === server) { return resolve(); } else { @@ -242,23 +240,25 @@ const RocketChat = { this.sdk = new RocketchatClient({ host: server, protocol: 'ddp', useSsl: useSsl(server) }); this.getSettings(); - const sdkConnect = () => this.sdk.connect() - .then(() => { - const { server: currentServer } = reduxStore.getState().server; - if (user && user.token && server === currentServer) { - reduxStore.dispatch(loginRequest({ resume: user.token }, logoutOnError)); - } - }) - .catch((err) => { - console.log('connect error', err); - - // when `connect` raises an error, we try again in 10 seconds - this.connectTimeout = setTimeout(() => { - if (this.sdk?.client?.host === server) { - sdkConnect(); + const sdkConnect = () => + this.sdk + .connect() + .then(() => { + const { server: currentServer } = reduxStore.getState().server; + if (user && user.token && server === currentServer) { + reduxStore.dispatch(loginRequest({ resume: user.token }, logoutOnError)); } - }, 10000); - }); + }) + .catch(err => { + console.log('connect error', err); + + // when `connect` raises an error, we try again in 10 seconds + this.connectTimeout = setTimeout(() => { + if (this.sdk?.client?.host === server) { + sdkConnect(); + } + }, 10000); + }); sdkConnect(); @@ -274,106 +274,118 @@ const RocketChat = { reduxStore.dispatch(disconnect()); }); - this.usersListener = this.sdk.onStreamData('users', protectedFunction(ddpMessage => RocketChat._setUser(ddpMessage))); - - this.notifyAllListener = this.sdk.onStreamData('stream-notify-all', protectedFunction(async(ddpMessage) => { - const { eventName } = ddpMessage.fields; - if (/public-settings-changed/.test(eventName)) { - const { _id, value } = ddpMessage.fields.args[1]; - const db = database.active; - const settingsCollection = db.get('settings'); - try { - const settingsRecord = await settingsCollection.find(_id); - const { type } = defaultSettings[_id]; - if (type) { - await db.action(async() => { - await settingsRecord.update((u) => { - u[type] = value; + this.usersListener = this.sdk.onStreamData( + 'users', + protectedFunction(ddpMessage => RocketChat._setUser(ddpMessage)) + ); + + this.notifyAllListener = this.sdk.onStreamData( + 'stream-notify-all', + protectedFunction(async ddpMessage => { + const { eventName } = ddpMessage.fields; + if (/public-settings-changed/.test(eventName)) { + const { _id, value } = ddpMessage.fields.args[1]; + const db = database.active; + const settingsCollection = db.get('settings'); + try { + const settingsRecord = await settingsCollection.find(_id); + const { type } = defaultSettings[_id]; + if (type) { + await db.action(async () => { + await settingsRecord.update(u => { + u[type] = value; + }); }); - }); + } + reduxStore.dispatch(updateSettings(_id, value)); + } catch (e) { + log(e); } - reduxStore.dispatch(updateSettings(_id, value)); - } catch (e) { - log(e); - } - } - })); - - this.rolesListener = this.sdk.onStreamData('stream-roles', protectedFunction(ddpMessage => onRolesChanged(ddpMessage))); - - this.notifyLoggedListener = this.sdk.onStreamData('stream-notify-logged', protectedFunction(async(ddpMessage) => { - const { eventName } = ddpMessage.fields; - if (/user-status/.test(eventName)) { - this.activeUsers = this.activeUsers || {}; - if (!this._setUserTimer) { - this._setUserTimer = setTimeout(() => { - const activeUsersBatch = this.activeUsers; - InteractionManager.runAfterInteractions(() => { - reduxStore.dispatch(setActiveUsers(activeUsersBatch)); - }); - this._setUserTimer = null; - return this.activeUsers = {}; - }, 10000); } - const userStatus = ddpMessage.fields.args[0]; - const [id,, status, statusText] = userStatus; - this.activeUsers[id] = { status: STATUSES[status], statusText }; + }) + ); + + this.rolesListener = this.sdk.onStreamData( + 'stream-roles', + protectedFunction(ddpMessage => onRolesChanged(ddpMessage)) + ); + + this.notifyLoggedListener = this.sdk.onStreamData( + 'stream-notify-logged', + protectedFunction(async ddpMessage => { + const { eventName } = ddpMessage.fields; + if (/user-status/.test(eventName)) { + this.activeUsers = this.activeUsers || {}; + if (!this._setUserTimer) { + this._setUserTimer = setTimeout(() => { + const activeUsersBatch = this.activeUsers; + InteractionManager.runAfterInteractions(() => { + reduxStore.dispatch(setActiveUsers(activeUsersBatch)); + }); + this._setUserTimer = null; + return (this.activeUsers = {}); + }, 10000); + } + const userStatus = ddpMessage.fields.args[0]; + const [id, , status, statusText] = userStatus; + this.activeUsers[id] = { status: STATUSES[status], statusText }; - const { user: loggedUser } = reduxStore.getState().login; - if (loggedUser && loggedUser.id === id) { - reduxStore.dispatch(setUser({ status: STATUSES[status], statusText })); - } - } else if (/updateAvatar/.test(eventName)) { - const { username, etag } = ddpMessage.fields.args[0]; - const db = database.active; - const userCollection = db.get('users'); - try { - const [userRecord] = await userCollection.query(Q.where('username', Q.eq(username))).fetch(); - await db.action(async() => { - await userRecord.update((u) => { - u.avatarETag = etag; + const { user: loggedUser } = reduxStore.getState().login; + if (loggedUser && loggedUser.id === id) { + reduxStore.dispatch(setUser({ status: STATUSES[status], statusText })); + } + } else if (/updateAvatar/.test(eventName)) { + const { username, etag } = ddpMessage.fields.args[0]; + const db = database.active; + const userCollection = db.get('users'); + try { + const [userRecord] = await userCollection.query(Q.where('username', Q.eq(username))).fetch(); + await db.action(async () => { + await userRecord.update(u => { + u.avatarETag = etag; + }); }); - }); - } catch { - // We can't create a new record since we don't receive the user._id - } - } else if (/permissions-changed/.test(eventName)) { - const { _id, roles } = ddpMessage.fields.args[1]; - const db = database.active; - const permissionsCollection = db.get('permissions'); - try { - const permissionsRecord = await permissionsCollection.find(_id); - await db.action(async() => { - await permissionsRecord.update((u) => { - u.roles = roles; + } catch { + // We can't create a new record since we don't receive the user._id + } + } else if (/permissions-changed/.test(eventName)) { + const { _id, roles } = ddpMessage.fields.args[1]; + const db = database.active; + const permissionsCollection = db.get('permissions'); + try { + const permissionsRecord = await permissionsCollection.find(_id); + await db.action(async () => { + await permissionsRecord.update(u => { + u.roles = roles; + }); }); - }); - reduxStore.dispatch(updatePermission(_id, roles)); - } catch (err) { - // - } - } else if (/Users:NameChanged/.test(eventName)) { - const userNameChanged = ddpMessage.fields.args[0]; - const db = database.active; - const userCollection = db.get('users'); - try { - const userRecord = await userCollection.find(userNameChanged._id); - await db.action(async() => { - await userRecord.update((u) => { - Object.assign(u, userNameChanged); + reduxStore.dispatch(updatePermission(_id, roles)); + } catch (err) { + // + } + } else if (/Users:NameChanged/.test(eventName)) { + const userNameChanged = ddpMessage.fields.args[0]; + const db = database.active; + const userCollection = db.get('users'); + try { + const userRecord = await userCollection.find(userNameChanged._id); + await db.action(async () => { + await userRecord.update(u => { + Object.assign(u, userNameChanged); + }); }); - }); - } catch { - // User not found - await db.action(async() => { - await userCollection.create((u) => { - u._raw = sanitizedRaw({ id: userNameChanged._id }, userCollection.schema); - Object.assign(u, userNameChanged); + } catch { + // User not found + await db.action(async () => { + await userCollection.create(u => { + u._raw = sanitizedRaw({ id: userNameChanged._id }, userCollection.schema); + Object.assign(u, userNameChanged); + }); }); - }); + } } - } - })); + }) + ); resolve(); }); @@ -383,7 +395,7 @@ const RocketChat = { database.setShareDB(server); try { - const certificate = await UserPreferences.getStringAsync(`${ RocketChat.CERTIFICATE_KEY }-${ server }`); + const certificate = await UserPreferences.getStringAsync(`${RocketChat.CERTIFICATE_KEY}-${server}`); await SSLPinning.setCertificate(certificate, server); } catch { // Do nothing @@ -427,7 +439,7 @@ const RocketChat = { reduxStore.dispatch(shareSetSettings(this.parseSettings(parsed))); // set User info - const userId = await UserPreferences.getStringAsync(`${ RocketChat.TOKEN_KEY }-${ server }`); + const userId = await UserPreferences.getStringAsync(`${RocketChat.TOKEN_KEY}-${server}`); const userCollections = serversDB.get('users'); let user = null; if (userId) { @@ -494,7 +506,7 @@ const RocketChat = { }, e2eRequestRoomKey(rid, e2eKeyId) { // RC 0.70.0 - return this.methodCallWrapper('stream-notify-room-users', `${ rid }/e2ekeyRequest`, rid, e2eKeyId); + return this.methodCallWrapper('stream-notify-room-users', `${rid}/e2ekeyRequest`, rid, e2eKeyId); }, e2eResetOwnKey() { this.unsubscribeRooms(); @@ -519,7 +531,7 @@ const RocketChat = { }, loginTOTP(params, loginEmailPassword, isFromWebView = false) { - return new Promise(async(resolve, reject) => { + return new Promise(async (resolve, reject) => { try { const result = await this.login(params, isFromWebView); return resolve(result); @@ -543,14 +555,16 @@ const RocketChat = { return resolve(this.loginTOTP({ ...params, code: code?.twoFactorCode }, loginEmailPassword)); } - return resolve(this.loginTOTP({ - totp: { - login: { - ...params - }, - code: code?.twoFactorCode - } - })); + return resolve( + this.loginTOTP({ + totp: { + login: { + ...params + }, + code: code?.twoFactorCode + } + }) + ); } catch { // twoFactor was canceled return reject(); @@ -621,10 +635,10 @@ const RocketChat = { async clearCache({ server }) { try { const serversDB = database.servers; - await serversDB.action(async() => { + await serversDB.action(async () => { const serverCollection = serversDB.get('servers'); const serverRecord = await serverCollection.find(server); - await serverRecord.update((s) => { + await serverRecord.update(s => { s.roomsUpdatedAt = null; }); }); @@ -640,7 +654,7 @@ const RocketChat = { } }, registerPushToken() { - return new Promise(async(resolve) => { + return new Promise(async resolve => { const token = getDeviceToken(); if (token) { const type = isIOS ? 'apn' : 'gcm'; @@ -681,13 +695,13 @@ const RocketChat = { const searchText = text.trim(); const db = database.active; const likeString = sanitizeLikeString(searchText); - let data = await db.get('subscriptions').query( - Q.or( - Q.where('name', Q.like(`%${ likeString }%`)), - Q.where('fname', Q.like(`%${ likeString }%`)) - ), - Q.experimentalSortBy('room_updated_at', Q.desc) - ).fetch(); + let data = await db + .get('subscriptions') + .query( + Q.or(Q.where('name', Q.like(`%${likeString}%`)), Q.where('fname', Q.like(`%${likeString}%`))), + Q.experimentalSortBy('room_updated_at', Q.desc) + ) + .fetch(); if (filterUsers && !filterRooms) { data = data.filter(item => item.t === 'd' && !RocketChat.isGroupChat(item)); @@ -705,7 +719,7 @@ const RocketChat = { t: sub.t, encrypted: sub.encrypted, lastMessage: sub.lastMessage, - ...sub.teamId && { teamId: sub.teamId } + ...(sub.teamId && { teamId: sub.teamId }) })); return data; @@ -725,13 +739,13 @@ const RocketChat = { if (data.length < 7) { const { users, rooms } = await Promise.race([ RocketChat.spotlight(searchText, usernames, { users: filterUsers, rooms: filterRooms }), - new Promise((resolve, reject) => this.oldPromise = reject) + new Promise((resolve, reject) => (this.oldPromise = reject)) ]); if (filterUsers) { users .filter((item1, index) => users.findIndex(item2 => item2._id === item1._id) === index) // Remove duplicated data from response .filter(user => !data.some(sub => user.username === sub.name)) // Make sure to remove users already on local database - .forEach((user) => { + .forEach(user => { data.push({ ...user, rid: user.username, @@ -742,7 +756,7 @@ const RocketChat = { }); } if (filterRooms) { - rooms.forEach((room) => { + rooms.forEach(room => { // Check if it exists on local database const index = data.findIndex(item => item.rid === room._id); if (index === -1) { @@ -782,17 +796,18 @@ const RocketChat = { return this.post('im.create', { usernames }); }, - createDiscussion({ - prid, pmid, t_name, reply, users, encrypted - }) { + createDiscussion({ prid, pmid, t_name, reply, users, encrypted }) { // RC 1.0.0 return this.post('rooms.createDiscussion', { - prid, pmid, t_name, reply, users, encrypted + prid, + pmid, + t_name, + reply, + users, + encrypted }); }, - createTeam({ - name, users, type, readOnly, broadcast, encrypted - }) { + createTeam({ name, users, type, readOnly, broadcast, encrypted }) { const params = { name, users, @@ -820,12 +835,13 @@ const RocketChat = { // RC 3.13.0 return this.post('teams.leave', { teamName, rooms }); }, - removeTeamMember({ - teamId, teamName, userId, rooms - }) { + removeTeamMember({ teamId, teamName, userId, rooms }) { // RC 3.13.0 return this.post('teams.removeMember', { - teamId, teamName, userId, rooms + teamId, + teamName, + userId, + rooms }); }, updateTeamRoom({ roomId, isDefault }) { @@ -846,22 +862,22 @@ const RocketChat = { }, convertChannelToTeam({ rid, name, type }) { const params = { - ...type === 'c' + ...(type === 'c' ? { - channelId: rid, - channelName: name - } + channelId: rid, + channelName: name + } : { - roomId: rid, - roomName: name - } + roomId: rid, + roomName: name + }) }; return this.sdk.post(type === 'c' ? 'channels.convertToTeam' : 'groups.convertToTeam', params); }, convertTeamToChannel({ teamId, selected }) { const params = { teamId, - ...selected.length && { roomsToRemove: selected } + ...(selected.length && { roomsToRemove: selected }) }; return this.sdk.post('teams.convertToChannel', params); }, @@ -894,16 +910,19 @@ const RocketChat = { getSlashCommands, getRoles, setRoles, - parseSettings: settings => settings.reduce((ret, item) => { - ret[item._id] = defaultSettings[item._id] && item[defaultSettings[item._id].type]; - if (item._id === 'Hide_System_Messages') { - ret[item._id] = ret[item._id] - .reduce((array, value) => [...array, ...value === 'mute_unmute' ? ['user-muted', 'user-unmuted'] : [value]], []); - } - return ret; - }, {}), + parseSettings: settings => + settings.reduce((ret, item) => { + ret[item._id] = defaultSettings[item._id] && item[defaultSettings[item._id].type]; + if (item._id === 'Hide_System_Messages') { + ret[item._id] = ret[item._id].reduce( + (array, value) => [...array, ...(value === 'mute_unmute' ? ['user-muted', 'user-unmuted'] : [value])], + [] + ); + } + return ret; + }, {}), _prepareSettings(settings) { - return settings.map((setting) => { + return settings.map(setting => { setting[defaultSettings[setting._id].type] = setting.value; return setting; }); @@ -962,7 +981,7 @@ const RocketChat = { c: 'channel', d: 'direct' }[room.t]; - return `${ server }/${ roomType }/${ this.isGroupChat(room) ? room.rid : room.name }?msg=${ message.id }`; + return `${server}/${roomType}/${this.isGroupChat(room) ? room.rid : room.name}?msg=${message.id}`; }, getPermalinkChannel(channel) { const { server } = reduxStore.getState().server; @@ -971,7 +990,7 @@ const RocketChat = { c: 'channel', d: 'direct' }[channel.t]; - return `${ server }/${ roomType }/${ channel.name }`; + return `${server}/${roomType}/${channel.name}`; }, subscribe(...args) { return this.sdk.subscribe(...args); @@ -990,7 +1009,7 @@ const RocketChat = { const { UI_Use_Real_Name } = settings; const { user } = login; const name = UI_Use_Real_Name ? user.name : user.username; - return this.methodCall('stream-notify-room', `${ room }/typing`, name, typing); + return this.methodCall('stream-notify-room', `${room}/typing`, name, typing); }, setUserPresenceAway() { return this.methodCall('UserPresence:away'); @@ -1028,9 +1047,9 @@ const RocketChat = { methodCallWrapper(method, ...params) { const { API_Use_REST_For_DDP_Calls } = reduxStore.getState().settings; if (API_Use_REST_For_DDP_Calls) { - return this.post(`method.call/${ method }`, { message: EJSON.stringify({ method, params }) }); + return this.post(`method.call/${method}`, { message: EJSON.stringify({ method, params }) }); } - const parsedParams = params.map((param) => { + const parsedParams = params.map(param => { if (param instanceof Date) { return { $date: new Date(param).getTime() }; } @@ -1045,7 +1064,7 @@ const RocketChat = { }, getRoomCounters(roomId, t) { // RC 0.65.0 - return this.sdk.get(`${ this.roomTypeToApiType(t) }.counters`, { roomId }); + return this.sdk.get(`${this.roomTypeToApiType(t)}.counters`, { roomId }); }, getChannelInfo(roomId) { // RC 0.48.0 @@ -1068,11 +1087,12 @@ const RocketChat = { // RC 2.3.0 return this.sdk.get('livechat/visitors.info', { visitorId }); }, - getTeamListRoom({ - teamId, count, offset, type, filter - }) { + getTeamListRoom({ teamId, count, offset, type, filter }) { const params = { - teamId, count, offset, type + teamId, + count, + offset, + type }; if (filter) { @@ -1099,11 +1119,11 @@ const RocketChat = { }, getPagesLivechat(rid, offset) { // RC 2.3.0 - return this.sdk.get(`livechat/visitors.pagesVisited/${ rid }?count=50&offset=${ offset }`); + return this.sdk.get(`livechat/visitors.pagesVisited/${rid}?count=50&offset=${offset}`); }, getDepartmentInfo(departmentId) { // RC 2.2.0 - return this.sdk.get(`livechat/department/${ departmentId }?includeAgents=false`); + return this.sdk.get(`livechat/department/${departmentId}?includeAgents=false`); }, getDepartments() { // RC 2.2.0 @@ -1123,7 +1143,7 @@ const RocketChat = { }, getAgentDepartments(uid) { // RC 2.4.0 - return this.sdk.get(`livechat/agents/${ uid }/departments?enabledDepartmentsOnly=true`); + return this.sdk.get(`livechat/agents/${uid}/departments?enabledDepartmentsOnly=true`); }, getCustomFields() { // RC 2.2.0 @@ -1172,11 +1192,11 @@ const RocketChat = { }, leaveRoom(roomId, t) { // RC 0.48.0 - return this.post(`${ this.roomTypeToApiType(t) }.leave`, { roomId }); + return this.post(`${this.roomTypeToApiType(t)}.leave`, { roomId }); }, deleteRoom(roomId, t) { // RC 0.49.0 - return this.post(`${ this.roomTypeToApiType(t) }.delete`, { roomId }); + return this.post(`${this.roomTypeToApiType(t)}.delete`, { roomId }); }, toggleMuteUserInRoom(rid, username, mute) { if (mute) { @@ -1186,41 +1206,33 @@ const RocketChat = { // RC 0.51.0 return this.methodCallWrapper('unmuteUserInRoom', { rid, username }); }, - toggleRoomOwner({ - roomId, t, userId, isOwner - }) { + toggleRoomOwner({ roomId, t, userId, isOwner }) { if (isOwner) { // RC 0.49.4 - return this.post(`${ this.roomTypeToApiType(t) }.addOwner`, { roomId, userId }); + return this.post(`${this.roomTypeToApiType(t)}.addOwner`, { roomId, userId }); } // RC 0.49.4 - return this.post(`${ this.roomTypeToApiType(t) }.removeOwner`, { roomId, userId }); + return this.post(`${this.roomTypeToApiType(t)}.removeOwner`, { roomId, userId }); }, - toggleRoomLeader({ - roomId, t, userId, isLeader - }) { + toggleRoomLeader({ roomId, t, userId, isLeader }) { if (isLeader) { // RC 0.58.0 - return this.post(`${ this.roomTypeToApiType(t) }.addLeader`, { roomId, userId }); + return this.post(`${this.roomTypeToApiType(t)}.addLeader`, { roomId, userId }); } // RC 0.58.0 - return this.post(`${ this.roomTypeToApiType(t) }.removeLeader`, { roomId, userId }); + return this.post(`${this.roomTypeToApiType(t)}.removeLeader`, { roomId, userId }); }, - toggleRoomModerator({ - roomId, t, userId, isModerator - }) { + toggleRoomModerator({ roomId, t, userId, isModerator }) { if (isModerator) { // RC 0.49.4 - return this.post(`${ this.roomTypeToApiType(t) }.addModerator`, { roomId, userId }); + return this.post(`${this.roomTypeToApiType(t)}.addModerator`, { roomId, userId }); } // RC 0.49.4 - return this.post(`${ this.roomTypeToApiType(t) }.removeModerator`, { roomId, userId }); + return this.post(`${this.roomTypeToApiType(t)}.removeModerator`, { roomId, userId }); }, - removeUserFromRoom({ - roomId, t, userId - }) { + removeUserFromRoom({ roomId, t, userId }) { // RC 0.48.0 - return this.post(`${ this.roomTypeToApiType(t) }.kick`, { roomId, userId }); + return this.post(`${this.roomTypeToApiType(t)}.kick`, { roomId, userId }); }, ignoreUser({ rid, userId, ignore }) { return this.sdk.get('chat.ignoreUser', { rid, userId, ignore }); @@ -1228,20 +1240,20 @@ const RocketChat = { toggleArchiveRoom(roomId, t, archive) { if (archive) { // RC 0.48.0 - return this.post(`${ this.roomTypeToApiType(t) }.archive`, { roomId }); + return this.post(`${this.roomTypeToApiType(t)}.archive`, { roomId }); } // RC 0.48.0 - return this.post(`${ this.roomTypeToApiType(t) }.unarchive`, { roomId }); + return this.post(`${this.roomTypeToApiType(t)}.unarchive`, { roomId }); }, hideRoom(roomId, t) { - return this.post(`${ this.roomTypeToApiType(t) }.close`, { roomId }); + return this.post(`${this.roomTypeToApiType(t)}.close`, { roomId }); }, saveRoomSettings(rid, params) { // RC 0.55.0 return this.methodCallWrapper('saveRoomSettings', rid, params); }, post(...args) { - return new Promise(async(resolve, reject) => { + return new Promise(async (resolve, reject) => { const isMethodCall = args[0]?.startsWith('method.call/'); try { const result = await this.sdk.post(...args); @@ -1278,7 +1290,7 @@ const RocketChat = { }); }, methodCall(...args) { - return new Promise(async(resolve, reject) => { + return new Promise(async (resolve, reject) => { try { const result = await this.sdk?.methodCall(...args, this.code || ''); return resolve(result); @@ -1329,13 +1341,13 @@ const RocketChat = { const shareUser = reduxStore.getState().share.user; const loginUser = reduxStore.getState().login.user; // get user roles on the server from redux - const userRoles = (shareUser?.roles || loginUser?.roles) || []; + const userRoles = shareUser?.roles || loginUser?.roles || []; return userRoles.indexOf(r => r === role) > -1; }, getRoomRoles(roomId, type) { // RC 0.65.0 - return this.sdk.get(`${ this.roomTypeToApiType(type) }.roles`, { roomId }); + return this.sdk.get(`${this.roomTypeToApiType(type)}.roles`, { roomId }); }, /** * Permissions: array of permissions' roles from redux. Example: [['owner', 'admin'], ['leader']] @@ -1359,7 +1371,7 @@ const RocketChat = { const shareUser = reduxStore.getState().share.user; const loginUser = reduxStore.getState().login.user; // get user roles on the server from redux - const userRoles = (shareUser?.roles || loginUser?.roles) || []; + const userRoles = shareUser?.roles || loginUser?.roles || []; const mergedRoles = [...new Set([...roomRoles, ...userRoles])]; return permissions.map(permission => permission?.some(r => mergedRoles.includes(r) ?? false)); } catch (e) { @@ -1404,7 +1416,7 @@ const RocketChat = { async getLoginServices(server) { try { let loginServices = []; - const loginServicesResult = await fetch(`${ server }/api/v1/settings.oauth`).then(response => response.json()); + const loginServicesResult = await fetch(`${server}/api/v1/settings.oauth`).then(response => response.json()); if (loginServicesResult.success && loginServicesResult.services) { const { services } = loginServicesResult; @@ -1430,9 +1442,7 @@ const RocketChat = { } }, _determineAuthType(services) { - const { - name, custom, showButton = true, service - } = services; + const { name, custom, showButton = true, service } = services; const authName = name || service; @@ -1462,24 +1472,33 @@ const RocketChat = { }, roomTypeToApiType(t) { const types = { - c: 'channels', d: 'im', p: 'groups', l: 'channels' + c: 'channels', + d: 'im', + p: 'groups', + l: 'channels' }; return types[t]; }, getFiles(roomId, type, offset) { // RC 0.59.0 - return this.sdk.get(`${ this.roomTypeToApiType(type) }.files`, { + return this.sdk.get(`${this.roomTypeToApiType(type)}.files`, { roomId, offset, sort: { uploadedAt: -1 }, fields: { - name: 1, description: 1, size: 1, type: 1, uploadedAt: 1, url: 1, userId: 1 + name: 1, + description: 1, + size: 1, + type: 1, + uploadedAt: 1, + url: 1, + userId: 1 } }); }, getMessages(roomId, type, query, offset) { // RC 0.59.0 - return this.sdk.get(`${ this.roomTypeToApiType(type) }.messages`, { + return this.sdk.get(`${this.roomTypeToApiType(type)}.messages`, { roomId, query, offset, @@ -1506,11 +1525,12 @@ const RocketChat = { } return this.post('chat.unfollowMessage', { mid }); }, - getThreadsList({ - rid, count, offset, text - }) { + getThreadsList({ rid, count, offset, text }) { const params = { - rid, count, offset, sort: { ts: -1 } + rid, + count, + offset, + sort: { ts: -1 } }; if (text) { params.text = text; @@ -1522,7 +1542,8 @@ const RocketChat = { getSyncThreadsList({ rid, updatedSince }) { // RC 1.0 return this.sdk.get('chat.syncThreadsList', { - rid, updatedSince + rid, + updatedSince }); }, readThreads(tmid) { @@ -1536,19 +1557,30 @@ const RocketChat = { runSlashCommand(command, roomId, params, triggerId, tmid) { // RC 0.60.2 return this.post('commands.run', { - command, roomId, params, triggerId, tmid + command, + roomId, + params, + triggerId, + tmid }); }, getCommandPreview(command, roomId, params) { // RC 0.65.0 return this.sdk.get('commands.preview', { - command, roomId, params + command, + roomId, + params }); }, executeCommandPreview(command, params, roomId, previewItem, triggerId, tmid) { // RC 0.65.0 return this.post('commands.preview', { - command, params, roomId, previewItem, triggerId, tmid + command, + params, + roomId, + previewItem, + triggerId, + tmid }); }, _setUser(ddpMessage) { @@ -1570,7 +1602,7 @@ const RocketChat = { reduxStore.dispatch(setActiveUsers(activeUsersBatch)); }); this._setUserTimer = null; - return this.activeUsers = {}; + return (this.activeUsers = {}); }, 10000); } @@ -1583,12 +1615,13 @@ const RocketChat = { getUsersPresence, getUserPresence, subscribeUsersPresence, - getDirectory({ - query, count, offset, sort - }) { + getDirectory({ query, count, offset, sort }) { // RC 1.0 return this.sdk.get('directory', { - query, count, offset, sort + query, + count, + offset, + sort }); }, canAutoTranslate() { @@ -1605,9 +1638,7 @@ const RocketChat = { return false; } }, - saveAutoTranslate({ - rid, field, value, options - }) { + saveAutoTranslate({ rid, field, value, options }) { return this.methodCallWrapper('autoTranslate.saveSettings', rid, field, value, options); }, getSupportedLanguagesAutoTranslate() { @@ -1621,10 +1652,14 @@ const RocketChat = { return useRealName ? sender.name : sender.username; }, getRoomTitle(room) { - const { UI_Use_Real_Name: useRealName, UI_Allow_room_names_with_special_chars: allowSpecialChars } = reduxStore.getState().settings; + const { UI_Use_Real_Name: useRealName, UI_Allow_room_names_with_special_chars: allowSpecialChars } = + reduxStore.getState().settings; const { username } = reduxStore.getState().login.user; if (RocketChat.isGroupChat(room) && !(room.name && room.name.length)) { - return room.usernames.filter(u => u !== username).sort((u1, u2) => u1.localeCompare(u2)).join(', '); + return room.usernames + .filter(u => u !== username) + .sort((u1, u2) => u1.localeCompare(u2)) + .join(', '); } if (allowSpecialChars && room.t !== 'd') { return room.fname || room.name; diff --git a/app/lib/selection.json b/app/lib/selection.json index 09aff4ed88..033aea5fc5 100644 --- a/app/lib/selection.json +++ b/app/lib/selection.json @@ -1 +1,4874 @@ -{"IcoMoonType":"selection","icons":[{"icon":{"paths":["M649.427 192c-26.454 0-52.016 10.804-71.005 30.343l-305.1 313.906c-31.48 32.387-49.322 76.506-49.322 122.694 0 46.186 17.842 90.304 49.322 122.694 31.451 32.355 73.91 50.362 117.984 50.362s86.531-18.006 117.981-50.362l305.101-313.907c12.317-12.672 32.576-12.96 45.248-0.643 12.675 12.317 12.963 32.576 0.646 45.251l-305.101 313.904c-43.302 44.554-102.23 69.757-163.875 69.757s-120.574-25.203-163.877-69.757c-43.273-44.522-67.428-104.717-67.428-167.299s24.155-122.781 67.428-167.302l305.1-313.905c30.845-31.735 72.874-49.737 116.899-49.737s86.054 18.002 116.899 49.737c30.816 31.704 47.971 74.514 47.971 118.968s-17.155 87.263-47.971 118.969l-305.43 313.904c-0.003 0.006 0.003-0.003 0 0-18.384 18.909-43.523 29.718-69.923 29.718-26.406 0-51.539-10.8-69.923-29.718-18.356-18.883-28.512-44.31-28.512-70.634 0-26.326 10.156-51.754 28.512-70.637l281.872-289.668c12.326-12.666 32.586-12.942 45.251-0.617s12.941 32.585 0.618 45.251l-281.846 289.638c-6.557 6.752-10.406 16.106-10.406 26.032 0 9.93 3.843 19.277 10.406 26.029 6.531 6.72 15.194 10.323 24.029 10.323s17.498-3.603 24.029-10.323l305.43-313.907c19.024-19.568 29.866-46.301 29.866-74.361 0-28.059-10.842-54.791-29.866-74.362-18.989-19.54-44.55-30.343-71.005-30.343z"],"attrs":[{"fill":"rgb(108, 114, 122)"}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["attach"],"colorPermutations":{"1081141221158162168120320620912282312341243190812456992125519219212552552551291162451452241651699010019902101":[{"f":2}]}},"attrs":[{"fill":"rgb(108, 114, 122)"}],"properties":{"order":254,"id":205,"name":"attach","prevSize":32,"code":59676},"setIdx":0,"setId":4,"iconIdx":0},{"icon":{"paths":["M254.841 275.612l-13.972 14.271c-37.092 37.883-36.449 98.664 1.435 135.758l145.619 142.573c37.885 37.091 98.666 36.448 135.76-1.437l13.971-14.269c0.723-0.739 1.43-1.488 2.128-2.243l0.099 0.099c5.805-5.904 13.888-9.568 22.822-9.568 17.674 0 32 14.326 32 32 0 9.6-4.227 18.211-10.922 24.077l-0.397 0.41-13.974 14.269c-61.818 63.142-163.12 64.214-226.259 2.394l-145.622-142.576c-63.141-61.818-64.212-163.119-2.392-226.26l13.972-14.27c61.82-63.141 163.12-64.212 226.263-2.392l74.691 73.131c0.976 0.847 1.901 1.752 2.768 2.71l0.374 0.366-0.026 0.026c4.934 5.63 7.923 13.005 7.923 21.078 0 17.674-14.326 32-32 32-7.83 0-15.005-2.813-20.566-7.482l-0.106 0.109-77.834-76.206c-37.885-37.092-98.666-36.45-135.757 1.435zM790.566 768.003l13.971-14.269c37.091-37.885 36.448-98.666-1.437-135.757l-145.619-142.576c-37.885-37.091-98.666-36.448-135.757 1.437l-13.971 14.269c-0.723 0.739-1.434 1.488-2.128 2.243l-0.102-0.099c-5.805 5.907-13.885 9.568-22.822 9.568-17.67 0-32-14.326-32-32 0-9.6 4.227-18.211 10.922-24.077l0.4-0.406 13.971-14.272c61.821-63.142 163.12-64.211 226.262-2.39l145.619 142.573c63.142 61.821 64.211 163.12 2.394 226.262l-13.971 14.269c-61.821 63.142-163.123 64.211-226.262 2.394l-74.694-73.133c-0.976-0.845-1.901-1.75-2.768-2.71l-0.374-0.365 0.026-0.026c-4.931-5.629-7.923-13.005-7.923-21.078 0-17.674 14.326-32 32-32 7.83 0 15.005 2.813 20.566 7.482l0.106-0.109 77.837 76.208c37.885 37.091 98.662 36.448 135.757-1.437z"],"attrs":[{"fill":"rgb(108, 114, 122)"}],"width":1056,"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["link"],"colorPermutations":{"1081141221158162168120320620912282312341243190812456992125519219212552552551291162451452241651699010019902101":[{"f":2}]}},"attrs":[{"fill":"rgb(108, 114, 122)"}],"properties":{"order":253,"id":204,"name":"link","prevSize":32,"code":59752},"setIdx":0,"setId":4,"iconIdx":1},{"icon":{"paths":["M512 896c-212.077 0-384-171.923-384-384s171.923-384 384-384c212.077 0 384 171.923 384 384s-171.923 384-384 384zM565.334 288c0-29.455-23.878-53.333-53.334-53.333s-53.334 23.878-53.334 53.333v249.632l180.016 144.013c23.002 18.403 56.563 14.672 74.963-8.326 18.403-23.002 14.672-56.563-8.326-74.963l-139.984-111.987v-198.368z"],"attrs":[{"fill":"rgb(243, 190, 8)"}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["status-away"],"colorPermutations":{"1081141221158162168120320620912282312341243190812456992125519219212552552551291162451452241651699010019902101":[{"f":3}]}},"attrs":[{"fill":"rgb(243, 190, 8)"}],"properties":{"order":247,"id":203,"name":"status-away","prevSize":32,"code":59741},"setIdx":0,"setId":4,"iconIdx":2},{"icon":{"paths":["M512 896c-212.077 0-384-171.923-384-384s171.923-384 384-384c212.077 0 384 171.923 384 384s-171.923 384-384 384zM384 458.666c-29.456 0-53.334 23.875-53.334 53.331s23.878 53.334 53.334 53.334h256c29.456 0 53.334-23.878 53.334-53.334s-23.878-53.331-53.334-53.331h-256z"],"attrs":[{"fill":"rgb(245, 69, 92)"}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["status-busy"],"colorPermutations":{"1081141221158162168120320620912282312341243190812456992125519219212552552551291162451452241651699010019902101":[{"f":6}]}},"attrs":[{"fill":"rgb(245, 69, 92)"}],"properties":{"order":248,"id":202,"name":"status-busy","prevSize":32,"code":59742},"setIdx":0,"setId":4,"iconIdx":3},{"icon":{"paths":["M888.691 586.941l-125.568-24.838c3.187-16.102 4.877-32.842 4.877-50.102s-1.69-34-4.877-50.102l125.568-24.838c4.794 24.237 7.309 49.296 7.309 74.941s-2.515 50.704-7.309 74.941zM831.322 298.644l-106.365 71.209c-18.726-27.971-42.838-52.083-70.81-70.81l71.21-106.364c41.875 28.035 77.93 64.089 105.965 105.965zM586.941 135.309l-24.838 125.566c-16.102-3.185-32.842-4.876-50.102-4.876s-34 1.69-50.102 4.876l-24.838-125.566c24.237-4.795 49.296-7.309 74.941-7.309s50.704 2.514 74.941 7.309zM298.644 192.679l71.209 106.364c-27.971 18.727-52.083 42.839-70.81 70.81l-106.364-71.209c28.035-41.876 64.089-77.93 105.965-105.964zM135.309 437.059c-4.795 24.237-7.309 49.296-7.309 74.941s2.514 50.704 7.309 74.941l125.566-24.838c-3.185-16.102-4.876-32.842-4.876-50.102s1.69-34 4.876-50.102l-125.566-24.838zM192.679 725.357l106.364-71.21c18.727 27.971 42.839 52.083 70.81 70.81l-71.209 106.365c-41.876-28.035-77.93-64.090-105.964-105.965zM437.059 888.691l24.838-125.568c16.102 3.187 32.842 4.877 50.102 4.877s34-1.69 50.102-4.877l24.838 125.568c-24.237 4.794-49.296 7.309-74.941 7.309s-50.704-2.515-74.941-7.309zM725.357 831.322l-71.21-106.365c27.971-18.726 52.083-42.838 70.81-70.81l106.365 71.21c-28.035 41.875-64.090 77.93-105.965 105.965z"],"attrs":[{"fill":"rgb(158, 162, 168)"}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["status-loading"],"colorPermutations":{"1081141221158162168120320620912282312341243190812456992125519219212552552551291162451452241651699010019902101":[{"f":7}]}},"attrs":[{"fill":"rgb(158, 162, 168)"}],"properties":{"order":249,"id":201,"name":"status-loading","prevSize":32,"code":59743},"setIdx":0,"setId":4,"iconIdx":4},{"icon":{"paths":["M512 789.334c-153.168 0-277.333-124.166-277.333-277.334s124.165-277.333 277.333-277.333c153.168 0 277.334 124.165 277.334 277.333s-124.166 277.334-277.334 277.334zM512 896c212.077 0 384-171.923 384-384s-171.923-384-384-384c-212.077 0-384 171.923-384 384s171.923 384 384 384z"],"attrs":[{"fill":"rgb(158, 162, 168)"}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["status-offline"],"colorPermutations":{"1081141221158162168120320620912282312341243190812456992125519219212552552551291162451452241651699010019902101":[{"f":7}]}},"attrs":[{"fill":"rgb(158, 162, 168)"}],"properties":{"order":250,"id":200,"name":"status-offline","prevSize":32,"code":59744},"setIdx":0,"setId":4,"iconIdx":5},{"icon":{"paths":["M896 512c0 212.077-171.923 384-384 384s-384-171.923-384-384c0-212.077 171.923-384 384-384s384 171.923 384 384z"],"attrs":[{"fill":"rgb(45, 224, 165)"}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["status-online"],"colorPermutations":{"1081141221158162168120320620912282312341243190812456992125519219212552552551291162451452241651699010019902101":[{"f":4}]}},"attrs":[{"fill":"rgb(45, 224, 165)"}],"properties":{"order":251,"id":199,"name":"status-online","prevSize":32,"code":59745},"setIdx":0,"setId":4,"iconIdx":6},{"icon":{"paths":["M631.997 256h24v-56c0-57.437 46.563-104 104-104 57.44 0 104 46.562 104 104v56h24c17.674 0 32 14.327 32 32v192c0 17.674-14.326 32-32 32h-256c-17.67 0-32-14.326-32-32v-192c0-17.673 14.33-32 32-32zM759.997 160c-22.090 0-40 17.908-40 40v55.238h80v-55.238c0-22.092-17.907-40-40-40z","M527.997 224c10.096 0 19.882 1.336 29.184 3.84-13.251 16.46-21.184 37.383-21.184 60.16v0.664c-2.602-0.436-5.274-0.664-8-0.664-26.509 0-48 21.49-48 48s21.491 48 48 48c2.726 0 5.398-0.227 8-0.662v64.381c-2.64 0.186-5.309 0.282-8 0.282-61.856 0-112-50.144-112-112s50.144-112 112-112z","M492.941 500.282c14.883 5.709 30.883 7.283 46.355 4.758 6.182 22.938 20.646 42.474 39.987 55.206-35.123 13.318-74.019 13.309-109.261-0.208l-15.040-5.77c-12.838-4.925-27.104-4.589-39.699 0.931-19.008 8.333-31.286 27.12-31.286 47.872v132.928c0 17.674 14.33 32 32 32h224c17.674 0 32-14.326 32-32v-125.062c0-12.842-4.122-24.995-11.325-34.938h70.291c3.29 11.162 5.034 22.902 5.034 34.938v125.062c0 53.021-42.979 96-96 96h-224c-53.018 0-95.999-42.979-95.999-96v-132.928c0-46.163 27.311-87.955 69.592-106.49 28.019-12.278 59.747-13.024 88.31-2.067l15.040 5.766z","M887.997 576h-15.286v25.766c0 17.674-14.326 32-32 32h-72.714v64h72.714c53.021 0 96-42.979 96-96v-39.027c-14.278 8.426-30.931 13.261-48.714 13.261z","M281.182 416c53.020 0 95.999-42.979 95.999-96 0-53.019-42.979-96-95.999-96s-96 42.981-96 96c0 53.021 42.98 96 96 96zM281.182 352c-17.673 0-32-14.326-32-32s14.327-32 32-32c17.673 0 32 14.327 32 32s-14.327 32-32 32z","M625.267 640h-0.8c0.262 0.598 0.528 1.194 0.8 1.786v-1.786z","M357.59 464.582c2.531-1.107 5.091-2.122 7.674-3.043-17.907-5.155-37.011-4.832-54.823 1.018l-14.183 4.659c-14.887 4.893-30.998 4.554-45.668-0.954l-4.554-1.709c-21.067-7.91-44.203-8.394-65.581-1.37-40.565 13.325-67.986 51.197-67.986 93.894v44.688c0 53.021 42.98 96 96 96h79.53v-64h-79.53c-17.673 0-32-14.326-32-32v-44.688c0-15.050 9.664-28.394 23.96-33.091 7.534-2.474 15.688-2.304 23.112 0.483l4.554 1.709c21.238 7.974 44.041 10.333 66.238 7.027 10.398-30.173 32.992-55.357 63.258-68.624z","M423.914 640h0.797c-0.259 0.598-0.525 1.194-0.797 1.786v-1.786z"],"attrs":[{"fill":"rgb(108, 114, 122)"},{"fill":"rgb(108, 114, 122)"},{"fill":"rgb(108, 114, 122)"},{"fill":"rgb(108, 114, 122)"},{"fill":"rgb(108, 114, 122)"},{"fill":"rgb(108, 114, 122)"},{"fill":"rgb(108, 114, 122)"},{"fill":"rgb(108, 114, 122)"}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["teams-private"],"colorPermutations":{"1081141221158162168120320620912282312341243190812456992125519219212552552551291162451452241651699010019902101":[{"f":2},{"f":2},{"f":2},{"f":2},{"f":2},{"f":2},{"f":2},{"f":2}]}},"attrs":[{"fill":"rgb(108, 114, 122)"},{"fill":"rgb(108, 114, 122)"},{"fill":"rgb(108, 114, 122)"},{"fill":"rgb(108, 114, 122)"},{"fill":"rgb(108, 114, 122)"},{"fill":"rgb(108, 114, 122)"},{"fill":"rgb(108, 114, 122)"},{"fill":"rgb(108, 114, 122)"}],"properties":{"order":252,"id":198,"name":"teams-private","prevSize":32,"code":59750},"setIdx":0,"setId":4,"iconIdx":7},{"icon":{"paths":["M368 182.4c0-17.673-14.326-32-32-32s-32 14.327-32 32v144h-144c-17.673 0-32 14.326-32 32s14.327 32 32 32h144v288h-144c-17.673 0-32 14.326-32 32s14.327 32 32 32h144v144c0 17.674 14.327 32 32 32s32-14.326 32-32v-144h288v144c0 17.674 14.326 32 32 32s32-14.326 32-32v-144h144c17.674 0 32-14.326 32-32s-14.326-32-32-32h-144v-80h-64v80h-288v-288h80v-64h-80v-144z","M640.515 327.283c-15.328-3.59-31.306-3.338-46.512 0.733-41.763 11.187-70.803 49.030-70.803 92.269v35.539c0 36.003 29.187 65.194 65.194 65.194h210.413c36.006 0 65.194-29.19 65.194-65.194v-28.336c0-47.667-33.040-88.957-79.27-99.792-16.413-3.846-33.613-3.603-49.946 0.771l-25.827 6.918c-10.381 2.781-21.286 2.95-31.747 0.499l-36.694-8.602z","M782.637 217.037c0 49.174-39.862 89.037-89.037 89.037s-89.037-39.863-89.037-89.037c0-49.174 39.862-89.037 89.037-89.037s89.037 39.863 89.037 89.037z"],"attrs":[{"fill":"rgb(108, 114, 122)"},{"fill":"rgb(108, 114, 122)"},{"fill":"rgb(108, 114, 122)"}],"isMulticolor":false,"isMulticolor2":false,"colorPermutations":{"1081141221158162168120320620912282312341243190812456992125519219212552552551291162451452241651699010019902101":[{"f":2},{"f":2},{"f":2}]},"tags":["channel-auto-join"],"grid":0},"attrs":[{"fill":"rgb(108, 114, 122)"},{"fill":"rgb(108, 114, 122)"},{"fill":"rgb(108, 114, 122)"}],"properties":{"order":2,"id":0,"name":"channel-auto-join","prevSize":32,"code":59746},"setIdx":0,"setId":4,"iconIdx":8},{"icon":{"paths":["M236.709 162.578c11.779-5.037 25.426-2.564 34.688 6.286l150.709 144c6.32 6.037 9.894 14.396 9.894 23.136s-3.574 17.101-9.894 23.136l-150.709 144c-9.262 8.851-22.909 11.325-34.688 6.288s-19.419-16.614-19.419-29.424v-112h-73.29c-17.673 0-32-14.326-32-32 0-17.672 14.327-31.999 32-31.999h73.29v-112c0-12.81 7.64-24.386 19.419-29.423zM320 368.179v-0.179h0.189l-0.189 0.179zM320.189 304.001h-0.189v-0.179l0.189 0.179z","M492.899 303.258c8.762-9.388 21.245-15.258 35.101-15.258 26.509 0 48 21.49 48 48s-21.491 48-48 48c-16.582 0-31.203-8.41-39.824-21.197l-43.098 48.483c20.49 22.554 50.051 36.714 82.922 36.714 61.856 0 112-50.144 112-112s-50.144-112-112-112c-25.549 0-49.098 8.554-67.942 22.955l32.842 56.303z","M145.615 483.229l32.174 64.349c-0.861 3.040-1.318 6.23-1.318 9.501v44.688c0 17.674 14.327 32 32 32h79.53v64h-79.53c-53.019 0-96-42.979-96-96v-44.688c0-28.848 12.515-55.488 33.144-73.85z","M625.267 640h-0.797c0.259 0.598 0.525 1.194 0.797 1.786v-1.786z","M424.714 640h-0.797v1.786c0.272-0.592 0.538-1.187 0.797-1.786z","M477.901 494.515c-28.56-10.957-60.291-10.211-88.307 2.067-42.282 18.534-69.594 60.326-69.594 106.49v132.928c0 53.021 42.979 96 96 96h224c53.021 0 96-42.979 96-96v-125.062c0-51.162-31.536-97.034-79.306-115.354-30.352-11.642-64.067-10.851-93.84 2.198l-2.070 0.909c-21.523 9.434-45.901 10.006-67.843 1.59l-15.040-5.766zM415.286 555.2c12.595-5.52 26.858-5.856 39.699-0.931l15.040 5.77c37.664 14.445 79.504 13.462 116.451-2.73l2.070-0.909c14.349-6.288 30.602-6.669 45.229-1.059 23.024 8.829 38.224 30.938 38.224 55.597v125.062c0 17.674-14.326 32-32 32h-224c-17.674 0-32-14.326-32-32v-132.928c0-20.752 12.278-39.539 31.286-47.872z","M864 320c0-53.019-42.979-96-96-96s-96 42.981-96 96c0 53.021 42.979 96 96 96s96-42.979 96-96zM800 320c0 17.674-14.326 32-32 32s-32-14.326-32-32c0-17.673 14.326-32 32-32s32 14.327 32 32z","M840.714 697.766h-72.714v-64h72.714c17.674 0 32-14.326 32-32v-44.688c0-15.050-9.664-28.394-23.958-33.091-7.536-2.474-15.69-2.304-23.114 0.483l-4.554 1.709c-19.77 7.421-40.89 9.978-61.619 7.632-12.438-31.683-37.722-57.549-70.774-70.227-1.754-0.672-3.52-1.302-5.296-1.894 18.058-5.312 37.36-5.040 55.344 0.867l14.182 4.659c14.886 4.893 30.998 4.554 45.667-0.954l4.554-1.709c21.069-7.91 44.205-8.394 65.581-1.37 40.566 13.325 67.987 51.197 67.987 93.894v44.688c0 53.021-42.982 96-96 96z"],"attrs":[{"fill":"rgb(108, 114, 122)"},{"fill":"rgb(108, 114, 122)"},{"fill":"rgb(108, 114, 122)"},{"fill":"rgb(108, 114, 122)"},{"fill":"rgb(108, 114, 122)"},{"fill":"rgb(108, 114, 122)"},{"fill":"rgb(108, 114, 122)"},{"fill":"rgb(108, 114, 122)"}],"isMulticolor":false,"isMulticolor2":false,"colorPermutations":{"1081141221158162168120320620912282312341243190812456992125519219212552552551291162451452241651699010019902101":[{"f":2},{"f":2},{"f":2},{"f":2},{"f":2},{"f":2},{"f":2},{"f":2}]},"tags":["channel-move-to-team"],"grid":0},"attrs":[{"fill":"rgb(108, 114, 122)"},{"fill":"rgb(108, 114, 122)"},{"fill":"rgb(108, 114, 122)"},{"fill":"rgb(108, 114, 122)"},{"fill":"rgb(108, 114, 122)"},{"fill":"rgb(108, 114, 122)"},{"fill":"rgb(108, 114, 122)"},{"fill":"rgb(108, 114, 122)"}],"properties":{"order":3,"id":1,"name":"channel-move-to-team","prevSize":32,"code":59747},"setIdx":0,"setId":4,"iconIdx":9},{"icon":{"paths":["M512 128c-97.203 0-176 78.798-176 176v142.477h-16c-53.020 0-96 42.979-96 96v257.523c0 53.021 42.981 96 96 96h384c53.021 0 96-42.979 96-96v-257.523c0-53.021-42.979-96-96-96h-16v-142.477c0-97.202-78.797-176-176-176zM624 304v142.477h-224v-142.477c0-61.856 50.144-112 112-112s112 50.144 112 112z"],"attrs":[{"fill":"rgb(108, 114, 122)"}],"isMulticolor":false,"isMulticolor2":false,"colorPermutations":{"1081141221158162168120320620912282312341243190812456992125519219212552552551291162451452241651699010019902101":[{"f":2}]},"tags":["lock-filled"],"grid":0},"attrs":[{"fill":"rgb(108, 114, 122)"}],"properties":{"order":4,"id":2,"name":"lock-filled","prevSize":32,"code":59748},"setIdx":0,"setId":4,"iconIdx":10},{"icon":{"paths":["M336 304c0-97.202 78.797-176 176-176s176 78.798 176 176v142.477h16c53.021 0 96 42.979 96 96v257.523c0 53.021-42.979 96-96 96h-384c-53.019 0-96-42.979-96-96v-257.523c0-53.021 42.981-96 96-96h16v-142.477zM400 446.477h224v-142.477c0-61.856-50.144-112-112-112s-112 50.144-112 112v142.477zM320 510.477c-17.673 0-32 14.326-32 32v257.523c0 17.674 14.327 32 32 32h384c17.674 0 32-14.326 32-32v-257.523c0-17.674-14.326-32-32-32h-384z"],"attrs":[{"fill":"rgb(108, 114, 122)"}],"isMulticolor":false,"isMulticolor2":false,"colorPermutations":{"1081141221158162168120320620912282312341243190812456992125519219212552552551291162451452241651699010019902101":[{"f":2}]},"tags":["locker"],"grid":0},"attrs":[{"fill":"rgb(108, 114, 122)"}],"properties":{"order":5,"id":3,"name":"locker","prevSize":32,"code":59749},"setIdx":0,"setId":4,"iconIdx":11},{"icon":{"paths":["M281.184 336c17.673 0 32-14.326 32-32s-14.327-32-32-32c-17.673 0-32 14.327-32 32s14.327 32 32 32zM281.184 400c-53.020 0-96-42.979-96-96 0-53.019 42.98-96 96-96 53.018 0 96 42.981 96 96 0 53.021-42.982 96-96 96zM576 320c0-26.51-21.491-48-48-48s-48 21.49-48 48c0 26.509 21.491 48 48 48s48-21.491 48-48zM640 320c0 61.856-50.144 112-112 112s-112-50.144-112-112c0-61.856 50.144-112 112-112s112 50.144 112 112zM477.901 478.515c-28.56-10.957-60.291-10.211-88.307 2.067-42.282 18.534-69.594 60.326-69.594 106.49v132.928c0 53.021 42.979 96 96 96h224c53.021 0 96-42.979 96-96v-125.062c0-51.162-31.536-97.034-79.306-115.354-30.352-11.642-64.067-10.851-93.84 2.198l-2.070 0.909c-21.523 9.434-45.901 10.006-67.843 1.59l-15.040-5.766zM415.286 539.2c12.595-5.52 26.858-5.856 39.699-0.931l15.040 5.77c37.664 14.445 79.504 13.462 116.451-2.73l2.070-0.909c14.349-6.288 30.602-6.669 45.229-1.059 23.024 8.829 38.224 30.938 38.224 55.597v125.062c0 17.674-14.326 32-32 32h-224c-17.674 0-32-14.326-32-32v-132.928c0-20.752 12.278-39.539 31.286-47.872zM768 336c-17.674 0-32-14.326-32-32s14.326-32 32-32c17.674 0 32 14.327 32 32s-14.326 32-32 32zM768 400c53.021 0 96-42.979 96-96 0-53.019-42.979-96-96-96s-96 42.981-96 96c0 53.021 42.979 96 96 96zM840.714 681.766h-72.714v-64h72.714c17.674 0 32-14.326 32-32v-44.688c0-15.050-9.664-28.394-23.958-33.091-7.536-2.474-15.69-2.304-23.114 0.483l-4.554 1.709c-19.77 7.421-40.89 9.978-61.619 7.632-12.438-31.683-37.722-57.549-70.774-70.227-1.754-0.672-3.52-1.302-5.296-1.894 18.058-5.312 37.36-5.040 55.344 0.867l14.182 4.659c14.886 4.893 30.998 4.554 45.667-0.954l4.554-1.709c21.069-7.91 44.205-8.394 65.581-1.37 40.566 13.325 67.987 51.197 67.987 93.894v44.688c0 53.021-42.982 96-96 96zM625.267 624h-0.797c0.259 0.598 0.525 1.194 0.797 1.786v-1.786zM357.594 448.582c2.528-1.107 5.088-2.122 7.674-3.043-17.907-5.155-37.014-4.832-54.824 1.018l-14.183 4.659c-14.887 4.893-30.998 4.554-45.668-0.954l-4.554-1.709c-21.067-7.91-44.203-8.394-65.581-1.37-40.565 13.325-67.986 51.197-67.986 93.894v44.688c0 53.021 42.981 96 96 96h79.53v-64h-79.53c-17.673 0-32-14.326-32-32v-44.688c0-15.050 9.664-28.394 23.96-33.091 7.534-2.474 15.688-2.304 23.112 0.483l4.554 1.709c21.238 7.974 44.041 10.333 66.238 7.027 10.398-30.173 32.994-55.357 63.259-68.624zM423.917 624h0.797c-0.259 0.598-0.525 1.194-0.797 1.786v-1.786z"],"attrs":[{"fill":"rgb(108, 114, 122)"}],"isMulticolor":false,"isMulticolor2":false,"colorPermutations":{"1081141221158162168120320620912282312341243190812456992125519219212552552551291162451452241651699010019902101":[{"f":2}]},"tags":["teams"],"grid":0},"attrs":[{"fill":"rgb(108, 114, 122)"}],"properties":{"order":7,"id":5,"name":"teams","prevSize":32,"code":59751},"setIdx":0,"setId":4,"iconIdx":12},{"icon":{"paths":["M502.627 142.69c12.915-3.408 26.509-3.289 39.363 0.345l245.194 69.317c29.165 8.245 51.254 33.818 53.504 65.14 24.506 341.145-184.394 520.422-272.611 580.214-33.053 22.403-75.28 22.474-108.416 0.259-88.758-59.504-300.1-238.589-276.51-579.794 2.205-31.89 24.96-57.772 54.753-65.633l264.724-69.849zM524.579 204.621c-1.837-0.519-3.779-0.536-5.622-0.049l-264.725 69.849c-4.4 1.161-6.999 4.775-7.233 8.165-21.305 308.166 168.214 468.531 248.301 522.218 11.507 7.715 25.434 7.677 36.87-0.077 79.379-53.798 266.835-214.288 244.685-522.649-0.243-3.358-2.787-6.925-7.082-8.139l-245.194-69.317z"],"attrs":[{"fill":"rgb(108, 114, 122)"}],"isMulticolor":false,"isMulticolor2":false,"colorPermutations":{"1081141221158162168120320620912282312341243190812456992125519219212552552551291162451452241651699010019902101":[{"f":2}]},"tags":["set-as-moderator"],"grid":0},"attrs":[{"fill":"rgb(108, 114, 122)"}],"properties":{"order":245,"id":6,"name":"shield","prevSize":32,"code":59661},"setIdx":0,"setId":4,"iconIdx":13},{"icon":{"paths":["M864 512c0-86.89-31.482-166.429-83.664-227.826l-496.162 496.162c61.397 52.182 140.937 83.664 227.826 83.664 194.403 0 352-157.597 352-352zM239.349 734.65l495.3-495.3c-60.662-49.597-138.182-79.349-222.65-79.349-194.404 0-352 157.596-352 352 0 84.467 29.753 161.987 79.349 222.65zM928 512c0 229.75-186.25 416-416 416s-416-186.25-416-416c0-229.75 186.25-416 416-416s416 186.25 416 416z"],"attrs":[{"fill":"rgb(108, 114, 122)"}],"isMulticolor":false,"isMulticolor2":false,"colorPermutations":{"1081141221158162168120320620912282312341243190812456992125519219212552552551291162451452241651699010019902101":[{"f":2}]},"tags":["ignore"],"grid":0},"attrs":[{"fill":"rgb(108, 114, 122)"}],"properties":{"order":246,"id":7,"name":"ignore","prevSize":32,"code":59740},"setIdx":0,"setId":4,"iconIdx":14},{"icon":{"paths":["M819.2 204.8v614.4h-614.4v-614.4h614.4zM204.8 128c-42.415 0-76.8 34.385-76.8 76.8v614.4c0 42.416 34.385 76.8 76.8 76.8h614.4c42.416 0 76.8-34.384 76.8-76.8v-614.4c0-42.415-34.384-76.8-76.8-76.8h-614.4z"],"attrs":[{"fill":"rgb(203, 206, 209)"}],"isMulticolor":false,"isMulticolor2":false,"colorPermutations":{"1081141221158162168120320620912282312341243190812456992125519219212552552551291162451452241651699010019902101":[{"f":8}]},"tags":["checkbox-unchecked"],"grid":0},"attrs":[{"fill":"rgb(203, 206, 209)"}],"properties":{"order":242,"id":8,"name":"checkbox-unchecked","prevSize":32,"code":59648},"setIdx":0,"setId":4,"iconIdx":15},{"icon":{"paths":["M204.8 128h614.4c42.416 0 76.8 34.385 76.8 76.8v614.4c0 42.416-34.384 76.8-76.8 76.8h-614.4c-42.415 0-76.8-34.384-76.8-76.8v-614.4c0-42.415 34.385-76.8 76.8-76.8zM769.062 336.88c9.322-9.424 9.238-24.619-0.182-33.941-9.424-9.322-24.621-9.241-33.942 0.182l-339.085 342.745-106.782-108.051c-9.317-9.43-24.513-9.52-33.94-0.202s-9.518 24.512-0.201 33.939l123.842 125.318c4.509 4.56 10.653 7.126 17.066 7.13s12.557-2.563 17.069-7.12l356.157-360z"],"attrs":[{"fill":"rgb(29, 116, 245)"}],"isMulticolor":false,"isMulticolor2":false,"colorPermutations":{"1081141221158162168120320620912282312341243190812456992125519219212552552551291162451452241651699010019902101":[{"f":5}]},"tags":["checkbox-checked"],"grid":0},"attrs":[{"fill":"rgb(29, 116, 245)"}],"properties":{"order":243,"id":9,"name":"checkbox-checked","prevSize":32,"code":59649},"setIdx":0,"setId":4,"iconIdx":16},{"icon":{"paths":["M862.454 324.045c-35.2-60.31-82.944-108.057-143.248-143.253-60.314-35.198-126.16-52.792-197.581-52.792-71.414 0-137.28 17.6-197.581 52.792-60.31 35.194-108.053 82.943-143.253 143.253-35.194 60.307-52.792 126.166-52.792 197.571 0 85.77 25.024 162.899 75.086 231.405 50.056 68.509 114.721 115.917 193.989 142.224 9.229 1.712 16.058 0.509 20.499-3.584 4.442-4.096 6.662-9.226 6.662-15.37 0-1.024-0.090-10.246-0.259-27.674-0.176-17.43-0.259-32.637-0.259-45.61l-11.789 2.038c-7.517 1.379-16.998 1.962-28.445 1.795-11.443-0.16-23.322-1.357-35.619-3.587-12.304-2.211-23.747-7.334-34.342-15.366-10.588-8.029-18.104-18.538-22.547-31.514l-5.125-11.795c-3.416-7.853-8.795-16.573-16.142-26.134-7.348-9.571-14.778-16.058-22.294-19.475l-3.588-2.57c-2.391-1.706-4.61-3.766-6.662-6.154-2.050-2.39-3.585-4.781-4.61-7.174-1.027-2.397-0.176-4.365 2.562-5.907 2.738-1.539 7.685-2.288 14.864-2.288l10.247 1.53c6.834 1.37 15.287 5.462 25.371 12.298 10.078 6.835 18.363 15.715 24.856 26.646 7.863 14.013 17.335 24.688 28.445 32.038 11.101 7.347 22.294 11.014 33.568 11.014s21.011-0.854 29.216-2.557c8.192-1.709 15.882-4.275 23.062-7.69 3.075-22.902 11.446-40.499 25.11-52.797-19.475-2.045-36.982-5.13-52.534-9.226-15.542-4.106-31.603-10.765-48.173-20-16.579-9.222-30.331-20.672-41.262-34.333-10.932-13.67-19.905-31.613-26.904-53.818-7.003-22.214-10.505-47.837-10.505-76.88 0-41.35 13.5-76.541 40.493-105.584-12.645-31.088-11.451-65.939 3.585-104.55 9.908-3.079 24.606-0.768 44.078 6.916 19.478 7.689 33.738 14.275 42.797 19.736 9.059 5.46 16.317 10.087 21.786 13.837 31.782-8.88 64.582-13.322 98.406-13.322s66.63 4.442 98.416 13.322l19.475-12.295c13.318-8.204 29.046-15.722 47.142-22.556 18.112-6.83 31.958-8.712 41.53-5.633 15.37 38.612 16.739 73.46 4.093 104.548 26.992 29.046 40.496 64.243 40.496 105.587 0 29.043-3.514 54.746-10.506 77.13-7.002 22.387-16.051 40.314-27.152 53.818-11.114 13.501-24.957 24.864-41.526 34.083-16.573 9.226-32.637 15.888-48.179 19.99-15.552 4.102-33.059 7.187-52.534 9.238 17.763 15.37 26.646 39.632 26.646 72.774v108.134c0 6.141 2.134 11.27 6.41 15.37 4.272 4.090 11.018 5.296 20.243 3.581 79.28-26.304 143.946-73.712 194-142.224 50.048-68.502 75.082-145.632 75.082-231.405-0.019-71.395-17.626-137.248-52.803-197.555z"],"attrs":[{"fill":"rgb(108, 114, 122)"}],"isMulticolor":false,"isMulticolor2":false,"colorPermutations":{"1081141221158162168120320620912282312341243190812456992125519219212552552551291162451452241651699010019902101":[{"f":2}]},"tags":["github-monochromatic"],"grid":0},"attrs":[{"fill":"rgb(108, 114, 122)"}],"properties":{"order":152,"id":10,"name":"github-monochromatic","prevSize":32,"code":59650},"setIdx":0,"setId":4,"iconIdx":17},{"icon":{"paths":["M133.618 423.61h215.092l-92.537-284.607c-4.74-14.67-25.504-14.67-30.244 0l-92.311 284.607zM86.899 567.171l46.72-143.546h737.133l46.72 143.546c4.288 13.088-0.451 27.533-11.51 35.434l-403.776 293.408-403.776-293.408c-11.060-7.901-15.799-22.346-11.511-35.434zM655.661 423.61h215.091l-92.31-284.607c-4.739-14.67-25.504-14.67-30.243 0l-92.538 284.607z"],"attrs":[{"fill":"rgb(108, 114, 122)"}],"isMulticolor":false,"isMulticolor2":false,"colorPermutations":{"1081141221158162168120320620912282312341243190812456992125519219212552552551291162451452241651699010019902101":[{"f":2}]},"tags":["gitlab-monochromatic"],"grid":0},"attrs":[{"fill":"rgb(108, 114, 122)"}],"properties":{"order":153,"id":11,"name":"gitlab-monochromatic","prevSize":32,"code":59651},"setIdx":0,"setId":4,"iconIdx":18},{"icon":{"paths":["M658.794 338.154c-39.798-38.052-90.416-57.426-146.794-57.426-100.016 0-184.669 67.548-214.865 158.313l-0.002-0.003c-7.679 23.040-12.042 47.648-12.042 72.957s4.364 49.92 12.044 72.96l0 0.003c30.196 90.765 114.849 158.314 214.865 158.314 51.664 0 95.651-13.613 130.035-36.653v-0.016c40.669-27.229 67.725-67.898 76.627-115.898h-206.662v-148.538h361.658c4.538 25.136 6.982 51.315 6.982 78.547 0 116.944-41.891 215.389-114.502 282.24v0.013c-63.533 58.646-150.458 93.030-254.138 93.030-150.109 0-279.971-86.048-343.156-211.549l-0-0.003c-26.007-51.84-40.844-110.49-40.844-172.451 0-61.965 14.836-120.611 40.844-172.451h0.004c63.187-125.495 193.047-211.542 343.153-211.542 103.504 0 190.429 38.051 256.931 100.014l-110.138 110.139z"],"width":1056,"attrs":[{"fill":"rgb(108, 114, 122)"}],"isMulticolor":false,"isMulticolor2":false,"colorPermutations":{"1081141221158162168120320620912282312341243190812456992125519219212552552551291162451452241651699010019902101":[{"f":2}]},"tags":["google-monochromatic"],"grid":0},"attrs":[{"fill":"rgb(108, 114, 122)"}],"properties":{"order":154,"id":12,"name":"google-monochromatic","prevSize":32,"code":59652},"setIdx":0,"setId":4,"iconIdx":19},{"icon":{"paths":["M840.541 128c31.318 0 56.813 24.79 56.813 55.383v657.212c0 30.592-25.494 55.427-56.813 55.427h-654.546c-31.254 0-56.642-24.835-56.642-55.427v-657.212c0-30.593 25.387-55.383 56.642-55.383h654.546zM300.196 233.75c-36.588 0-66.093 29.59-66.093 66.050 0 36.482 29.505 66.072 66.093 66.072 36.437 0 66.005-29.59 66.005-66.072 0-36.46-29.568-66.050-66.005-66.050zM243.148 782.461h114.029v-366.515h-114.029v366.515zM537.814 415.923h-109.187v366.515h113.773v-181.274c0-47.83 9.046-94.147 68.333-94.147 58.454 0 59.181 54.678 59.181 97.174v178.246h113.901v-201.008c0-98.714-21.312-174.598-136.666-174.598-55.402 0-92.566 30.381-107.757 59.203h-1.578v-50.112z"],"width":1056,"attrs":[{"fill":"rgb(108, 114, 122)"}],"isMulticolor":false,"isMulticolor2":false,"colorPermutations":{"1081141221158162168120320620912282312341243190812456992125519219212552552551291162451452241651699010019902101":[{"f":2}]},"tags":["linkedin-monochromatic"],"grid":0},"attrs":[{"fill":"rgb(108, 114, 122)"}],"properties":{"order":155,"id":13,"name":"linkedin-monochromatic","prevSize":32,"code":59653},"setIdx":0,"setId":4,"iconIdx":20},{"icon":{"paths":["M86.686 85.336l730.792 774.088c0 0 24.899 17.558 43.936-2.928 19.040-20.486 4.394-40.973 4.394-40.973l-779.122-730.187zM318.080 158.503l556.516 599.955c0 0 24.896 17.558 43.936-2.928 19.037-20.486 4.394-40.973 4.394-40.973l-604.845-556.054zM712.035 915.030l-556.517-599.955 604.843 556.054c0 0 14.646 20.486-4.39 40.973-19.040 20.486-43.936 2.928-43.936 2.928zM513.693 221.419l388.803 419.15c0 0 17.395 12.269 30.694-2.042 13.302-14.314 3.069-28.627 3.069-28.627l-422.566-388.482zM597.878 915.677l-388.805-419.152 422.568 388.48c0 0 10.234 14.314-3.069 28.627-13.302 14.31-30.694 2.045-30.694 2.045zM713.498 312.143l176.221 190.551c0 0 8.605 5.747 15.184-0.96 6.579-6.704 1.517-13.411 1.517-13.411l-192.922-176.18zM482.582 880.23l-176.219-190.55 192.923 176.179c0 0 5.059 6.707-1.52 13.414-6.579 6.704-15.184 0.957-15.184 0.957z"],"width":1056,"attrs":[{"fill":"rgb(108, 114, 122)"}],"isMulticolor":false,"isMulticolor2":false,"colorPermutations":{"1081141221158162168120320620912282312341243190812456992125519219212552552551291162451452241651699010019902101":[{"f":2}]},"tags":["meteor-monochromatic"],"grid":0},"attrs":[{"fill":"rgb(108, 114, 122)"}],"properties":{"order":156,"id":14,"name":"meteor-monochromatic","prevSize":32,"code":59654},"setIdx":0,"setId":4,"iconIdx":21},{"icon":{"paths":["M378.861 853.331c317.456 0 491.091-262.662 491.091-490.442 0-7.462 0-14.89-0.506-22.282 33.779-24.401 62.938-54.614 86.112-89.224-31.501 13.94-64.918 23.082-99.136 27.12 36.032-21.542 62.998-55.424 75.882-95.34-33.878 20.078-70.944 34.228-109.597 41.839-53.501-56.814-138.515-70.72-207.37-33.919-68.851 36.801-104.426 115.155-86.768 191.127-138.774-6.947-268.074-72.409-355.715-180.093-45.811 78.76-22.412 179.517 53.436 230.1-27.467-0.813-54.335-8.214-78.337-21.574 0 0.704 0 1.443 0 2.182 0.022 82.051 57.937 152.723 138.47 168.97-25.41 6.922-52.071 7.933-77.933 2.957 22.611 70.218 87.409 118.32 161.25 119.706-61.116 47.968-136.616 74.010-214.35 73.933-13.732-0.026-27.452-0.858-41.087-2.486 78.931 50.586 170.772 77.418 264.557 77.293z"],"width":1056,"attrs":[{"fill":"rgb(108, 114, 122)"}],"isMulticolor":false,"isMulticolor2":false,"colorPermutations":{"1081141221158162168120320620912282312341243190812456992125519219212552552551291162451452241651699010019902101":[{"f":2}]},"tags":["twitter-monochromatic"],"grid":0},"attrs":[{"fill":"rgb(108, 114, 122)"}],"properties":{"order":157,"id":15,"name":"twitter-monochromatic","prevSize":32,"code":59655},"setIdx":0,"setId":4,"iconIdx":22},{"icon":{"paths":["M512 928c-14.218 0-28.275-0.714-42.144-2.112-16.694-1.68-30.557-12.528-36.688-27.395l-40.538-98.304-98.162 40.838c-14.837 6.173-32.3 4.048-45.292-6.554-21.838-17.818-41.831-37.811-59.65-59.648-10.601-12.992-12.726-30.454-6.553-45.293l40.839-98.16-98.307-40.541c-14.864-6.131-25.714-19.994-27.395-36.688-1.396-13.869-2.111-27.926-2.111-42.144 0-14.214 0.714-28.275 2.11-42.141 1.681-16.694 12.531-30.557 27.395-36.688l98.308-40.541-40.84-98.163c-6.173-14.837-4.047-32.3 6.553-45.292 17.818-21.838 37.81-41.83 59.648-59.648 12.992-10.6 30.455-12.726 45.292-6.553l98.165 40.84 40.541-98.309c6.128-14.865 19.994-25.714 36.688-27.395 13.866-1.396 27.926-2.11 42.141-2.11s28.275 0.714 42.141 2.11c16.694 1.681 30.56 12.531 36.688 27.395l40.541 98.309 98.163-40.84c14.838-6.173 32.301-4.047 45.293 6.553 21.837 17.818 41.83 37.81 59.648 59.648 10.602 12.992 12.726 30.455 6.554 45.292l-40.842 98.163 98.31 40.541c14.864 6.131 25.712 19.994 27.392 36.688 1.398 13.866 2.112 27.926 2.112 42.141 0 14.218-0.714 28.275-2.112 42.144-1.68 16.694-12.528 30.557-27.395 36.688l-98.307 40.541 40.842 98.16c6.173 14.838 4.045 32.301-6.554 45.293-17.821 21.837-37.811 41.83-59.651 59.648-12.992 10.602-30.454 12.726-45.29 6.554l-98.163-40.838-40.538 98.304c-6.131 14.867-19.994 25.715-36.688 27.395-13.869 1.398-27.93 2.112-42.144 2.112zM444.451 757.984l43.386 105.2c7.981 0.541 16.038 0.816 24.163 0.816s16.182-0.275 24.163-0.816l43.382-105.2c9.456-22.925 35.731-33.808 58.627-24.285l105.056 43.709c12.157-10.602 23.578-22.022 34.179-34.179l-43.709-105.056c-9.526-22.893 1.36-49.171 24.282-58.624l105.203-43.386c0.541-7.978 0.816-16.038 0.816-24.163s-0.275-16.182-0.816-24.16l-105.203-43.386c-22.922-9.453-33.808-35.731-24.282-58.624l43.709-105.060c-10.602-12.156-22.022-23.577-34.176-34.177l-105.059 43.708c-22.896 9.525-49.171-1.359-58.627-24.283l-43.382-105.204c-7.981-0.54-16.038-0.815-24.163-0.815s-16.182 0.275-24.163 0.815l-43.386 105.204c-9.453 22.924-35.728 33.808-58.624 24.283l-105.058-43.708c-12.156 10.6-23.577 22.021-34.177 34.177l43.708 105.059c9.525 22.893-1.359 49.171-24.284 58.624l-105.203 43.386c-0.54 7.978-0.815 16.035-0.815 24.16 0 8.128 0.275 16.186 0.815 24.163l105.203 43.386c22.924 9.453 33.809 35.731 24.284 58.624l-43.708 105.056c10.601 12.157 22.022 23.578 34.178 34.179l105.056-43.709c22.896-9.523 49.171 1.36 58.624 24.285zM416 512c0-53.021 42.979-96 96-96s96 42.979 96 96c0 53.021-42.979 96-96 96s-96-42.979-96-96zM512 352c-88.365 0-160 71.635-160 160s71.635 160 160 160c88.365 0 160-71.635 160-160s-71.635-160-160-160z"],"attrs":[{"fill":"rgb(108, 114, 122)"}],"isMulticolor":false,"isMulticolor2":false,"colorPermutations":{"1081141221158162168120320620912282312341243190812456992125519219212552552551291162451452241651699010019902101":[{"f":2}]},"tags":["administration"],"grid":0},"attrs":[{"fill":"rgb(108, 114, 122)"}],"properties":{"order":159,"id":16,"name":"administration","prevSize":32,"code":59657},"setIdx":0,"setId":4,"iconIdx":23},{"icon":{"paths":["M878.739 567.622c-41.853-41.136-161.235-29.824-220.925-22.282-59.005-35.997-98.458-85.706-126.243-158.73 13.379-55.194 34.646-139.185 18.525-191.98-14.41-89.82-129.674-80.907-146.141-20.227-15.094 55.195-1.373 131.988 24.013 230.034-34.304 81.936-85.421 191.984-121.441 255.062-68.611 35.312-161.235 89.821-174.957 158.384-11.321 54.166 89.194 189.238 261.063-106.96 76.845-25.37 160.547-56.566 234.65-68.909 64.835 34.97 140.65 58.282 191.421 58.282 87.478 0 96.054-96.678 60.035-132.675zM199.152 834.342c17.496-46.97 84.048-101.133 104.288-119.99-65.18 103.875-104.288 122.39-104.288 119.99zM479.082 180.918c25.386 0 22.986 110.047 6.176 139.873-15.094-47.653-14.752-139.873-6.176-139.873zM395.379 649.216c33.274-57.936 61.747-126.845 84.733-187.526 28.474 51.766 64.838 93.251 103.258 121.706-71.354 14.739-133.446 44.909-187.99 65.821zM846.835 632.074c0 0-17.152 20.57-127.958-26.739 120.413-8.912 140.307 18.512 127.958 26.739z"],"width":1056,"attrs":[{"fill":"rgb(108, 114, 122)"}],"isMulticolor":false,"isMulticolor2":false,"colorPermutations":{"1081141221158162168120320620912282312341243190812456992125519219212552552551291162451452241651699010019902101":[{"f":2}]},"tags":["adobe-reader-monochromatic"],"grid":0},"attrs":[{"fill":"rgb(108, 114, 122)"}],"properties":{"order":161,"id":17,"name":"adobe-reader-monochromatic","prevSize":32,"code":59658},"setIdx":0,"setId":4,"iconIdx":24},{"icon":{"paths":["M448 188.865c0 33.615 27.251 60.865 60.864 60.865 33.616 0 60.867-27.25 60.867-60.865s-27.251-60.865-60.867-60.865c-33.613 0-60.864 27.25-60.864 60.865zM384 188.865c0 59.026 40.957 108.485 96 121.512v77.745c-44.314 11.69-78.986 47.13-89.578 91.878h-80.045c-13.027-55.043-62.486-96-121.512-96-68.961 0-124.865 55.904-124.865 124.864 0 68.963 55.904 124.867 124.865 124.867 56.762 0 104.678-37.875 119.854-89.731h83.361c12.227 41.773 45.696 74.47 87.92 85.61v77.744c-55.043 13.027-96 62.486-96 121.51 0 68.963 55.904 124.867 124.864 124.867 68.963 0 124.867-55.904 124.867-124.867 0-56.762-37.875-104.675-89.731-119.853v-79.437c42.163-11.171 75.578-43.846 87.789-85.574h77.222c15.178 51.856 63.091 89.731 119.853 89.731 68.963 0 124.867-55.904 124.867-124.867 0-68.96-55.904-124.864-124.867-124.864-59.024 0-108.483 40.957-121.51 96h-73.907c-10.579-44.707-45.194-80.122-89.446-91.843v-79.438c51.856-15.176 89.731-63.092 89.731-119.854 0-68.961-55.904-124.865-124.867-124.865-68.96 0-124.864 55.904-124.864 124.865zM828.864 569.731c-33.613 0-60.864-27.251-60.864-60.867 0-33.613 27.251-60.864 60.864-60.864 33.616 0 60.867 27.251 60.867 60.864 0 33.616-27.251 60.867-60.867 60.867zM188.865 569.731c-33.615 0-60.865-27.251-60.865-60.867 0-33.613 27.25-60.864 60.865-60.864s60.865 27.251 60.865 60.864c0 33.616-27.25 60.867-60.865 60.867zM451.069 508.864c0 33.616 27.251 60.867 60.867 60.867 33.613 0 60.864-27.251 60.864-60.867 0-33.613-27.251-60.864-60.864-60.864-33.616 0-60.867 27.251-60.867 60.864zM508.864 889.731c-33.613 0-60.864-27.251-60.864-60.867 0-33.613 27.251-60.864 60.864-60.864 33.616 0 60.867 27.251 60.867 60.864 0 33.616-27.251 60.867-60.867 60.867z"],"attrs":[{"fill":"rgb(108, 114, 122)"}],"isMulticolor":false,"isMulticolor2":false,"colorPermutations":{"1081141221158162168120320620912282312341243190812456992125519219212552552551291162451452241651699010019902101":[{"f":2}]},"tags":["all-contacts-in-channels"],"grid":0},"attrs":[{"fill":"rgb(108, 114, 122)"}],"properties":{"order":162,"id":18,"name":"all-contacts-in-channels","prevSize":32,"code":59659},"setIdx":0,"setId":4,"iconIdx":25},{"icon":{"paths":["M861.437 160c17.67 0 32 14.327 32 32s-14.33 32-32 32h-384c-17.674 0-32-14.327-32-32s14.326-32 32-32h384zM334.717 442.397c-24.962 0-45.197-20.237-45.197-45.2 0-24.96 20.236-45.197 45.197-45.197 24.963 0 45.2 20.237 45.2 45.197 0 24.963-20.237 45.2-45.2 45.2zM334.717 506.397c-60.308 0-109.197-48.89-109.197-109.2 0-60.307 48.89-109.197 109.197-109.197 60.31 0 109.2 48.89 109.2 109.197 0 60.31-48.89 109.2-109.2 109.2zM456.278 535.504c-18.288-4.899-37.504-5.2-55.939-0.88l-45.005 10.547c-13.194 3.091-26.947 2.877-40.036-0.63l-31.676-8.483c-19.669-5.27-40.384-5.562-60.154-0.928-55.68 13.050-95.468 62.781-95.468 120.179v34.752c0 42.906 34.783 77.686 77.689 77.686h258.057c42.906 0 77.69-34.781 77.69-77.686v-43.587c0-52-34.928-97.514-85.158-110.97zM414.944 596.934c8.166-1.914 16.675-1.779 24.774 0.39 22.246 5.958 37.718 26.118 37.718 49.149v43.587c0 7.558-6.131 13.686-13.69 13.686h-258.057c-7.56 0-13.689-6.128-13.689-13.686v-34.752c0-27.469 19.123-51.552 46.072-57.869 9.556-2.24 19.564-2.086 28.99 0.438l31.676 8.483c23.277 6.237 47.738 6.621 71.2 1.12l45.005-10.547zM893.437 512c0-17.674-14.33-32-32-32h-224c-17.674 0-32 14.326-32 32s14.326 32 32 32h224c17.67 0 32-14.326 32-32zM861.437 640c17.67 0 32 14.326 32 32s-14.33 32-32 32h-192c-17.674 0-32-14.326-32-32s14.326-32 32-32h192zM893.437 352c0-17.674-14.33-32-32-32h-288c-17.674 0-32 14.326-32 32s14.326 32 32 32h288c17.67 0 32-14.326 32-32zM861.437 800c17.67 0 32 14.326 32 32s-14.33 32-32 32h-256c-17.674 0-32-14.326-32-32s14.326-32 32-32h256z"],"attrs":[{"fill":"rgb(108, 114, 122)"}],"isMulticolor":false,"isMulticolor2":false,"colorPermutations":{"1081141221158162168120320620912282312341243190812456992125519219212552552551291162451452241651699010019902101":[{"f":2}]},"tags":["all-contacts-in-queue"],"grid":0},"attrs":[{"fill":"rgb(108, 114, 122)"}],"properties":{"order":163,"id":19,"name":"all-contacts-in-queue","prevSize":32,"code":59660},"setIdx":0,"setId":4,"iconIdx":26},{"icon":{"paths":["M523.571 295.385c33.133 0 74.669-22.133 99.402-51.645 22.4-26.745 38.733-64.095 38.733-101.445 0-5.072-0.467-10.144-1.402-14.294-36.864 1.383-81.2 24.439-107.798 55.334-21.002 23.517-40.134 60.406-40.134 98.218 0 5.533 0.934 11.067 1.402 12.911 2.333 0.461 6.067 0.922 9.798 0.922zM406.906 853.334c45.267 0 65.334-29.974 121.798-29.974 57.402 0 70 29.050 120.4 29.050 49.469 0 82.602-45.187 113.869-89.456 34.998-50.72 49.466-100.522 50.4-102.829-3.267-0.922-98-39.194-98-146.634 0-93.146 74.666-135.107 78.867-138.333-49.469-70.090-124.602-71.935-145.136-71.935-55.533 0-100.8 33.199-129.264 33.199-30.8 0-71.402-31.354-119.469-31.354-91.466 0-184.333 74.701-184.333 215.802 0 87.61 34.533 180.294 77 240.24 36.402 50.723 68.133 92.224 113.867 92.224z"],"width":1056,"attrs":[{"fill":"rgb(108, 114, 122)"}],"isMulticolor":false,"isMulticolor2":false,"colorPermutations":{"1081141221158162168120320620912282312341243190812456992125519219212552552551291162451452241651699010019902101":[{"f":2}]},"tags":["apple-monochromatic"],"grid":0},"attrs":[{"fill":"rgb(108, 114, 122)"}],"properties":{"order":236,"id":20,"name":"apple-monochromatic","prevSize":32,"code":59662},"setIdx":0,"setId":4,"iconIdx":27},{"icon":{"paths":["M498.694 141.561l-298.666 136.533c-11.39 5.207-18.696 16.58-18.696 29.103v386.844c0 11.818 6.513 22.675 16.941 28.237l298.667 159.286c9.411 5.021 20.707 5.021 30.118 0l298.666-159.286c10.429-5.562 16.941-16.419 16.941-28.237v-386.844c0-12.524-7.306-23.896-18.694-29.103l-298.666-136.533c-8.451-3.862-18.16-3.862-26.611 0zM245.333 357.011l234.667 107.277v335.709l-234.667-125.155v-317.83zM544 799.997l234.666-125.155v-317.83l-234.666 107.277v335.709zM512 408.544l-221.7-101.347 221.7-101.348 221.699 101.348-221.699 101.347z"],"attrs":[{"fill":"rgb(108, 114, 122)"}],"isMulticolor":false,"isMulticolor2":false,"colorPermutations":{"1081141221158162168120320620912282312341243190812456992125519219212552552551291162451452241651699010019902101":[{"f":2}]},"tags":["apps"],"grid":0},"attrs":[{"fill":"rgb(108, 114, 122)"}],"properties":{"order":166,"id":21,"name":"apps","prevSize":32,"code":59663},"setIdx":0,"setId":4,"iconIdx":28},{"icon":{"paths":["M374.627 297.372c-12.496-12.497-32.758-12.497-45.254 0l-192 192c-12.497 12.496-12.497 32.758 0 45.254l192 192c12.496 12.496 32.758 12.496 45.254 0s12.496-32.758 0-45.254l-137.372-137.373h578.745v128c0 17.674 14.326 32 32 32s32-14.326 32-32v-160c0-17.674-14.326-32-32-32h-610.745l137.372-137.373c12.496-12.496 12.496-32.758 0-45.255z"],"attrs":[{"fill":"rgb(108, 114, 122)"}],"isMulticolor":false,"isMulticolor2":false,"colorPermutations":{"1081141221158162168120320620912282312341243190812456992125519219212552552551291162451452241651699010019902101":[{"f":2}]},"tags":["arrow-back"],"grid":0},"attrs":[{"fill":"rgb(108, 114, 122)"}],"properties":{"order":167,"id":22,"name":"arrow-back","prevSize":32,"code":59664},"setIdx":0,"setId":4,"iconIdx":29},{"icon":{"paths":["M551.392 242.502c0.189-17.672 14.669-31.845 32.339-31.656 17.674 0.189 31.846 14.668 31.658 32.34l-1.318 123.489 193.44-193.439c12.496-12.497 32.755-12.497 45.254 0 12.496 12.497 12.496 32.758 0 45.255l-193.44 193.439 123.488-1.318c17.674-0.189 32.154 13.984 32.339 31.654 0.189 17.674-13.984 32.154-31.654 32.342l-201.92 2.154c-8.605 0.093-16.886-3.283-22.97-9.37-6.086-6.083-9.462-14.365-9.373-22.97l2.157-201.92zM475.981 782.147c-0.189 17.674-14.669 31.846-32.339 31.658-17.674-0.189-31.846-14.669-31.658-32.342l1.318-123.488-193.438 193.44c-12.497 12.496-32.758 12.496-45.255 0s-12.497-32.758 0-45.254l193.438-193.44-123.488 1.318c-17.672 0.189-32.151-13.984-32.34-31.654-0.189-17.674 13.984-32.154 31.656-32.342l201.922-2.154c8.605-0.093 16.883 3.283 22.966 9.37 6.086 6.083 9.462 14.365 9.373 22.97l-2.157 201.92z"],"width":1056,"attrs":[{"fill":"rgb(108, 114, 122)"}],"isMulticolor":false,"isMulticolor2":false,"colorPermutations":{"1081141221158162168120320620912282312341243190812456992125519219212552552551291162451452241651699010019902101":[{"f":2}]},"tags":["arrow-collapse"],"grid":0},"attrs":[{"fill":"rgb(108, 114, 122)"}],"properties":{"order":168,"id":23,"name":"arrow-collapse","prevSize":32,"code":59665},"setIdx":0,"setId":4,"iconIdx":30},{"icon":{"paths":["M576 672c-17.674 0-32 14.326-32 32s14.326 32 32 32h224c17.674 0 32-14.326 32-32v-208c0-17.674-14.326-32-32-32s-32 14.326-32 32v130.746l-233.373-233.373c-12.496-12.496-32.758-12.496-45.254 0l-73.373 73.373-169.372-169.373c-12.497-12.497-32.758-12.497-45.255 0s-12.497 32.759 0 45.255l192 192c12.496 12.496 32.758 12.496 45.254 0l73.373-73.373 210.746 210.746h-146.746z"],"attrs":[{"fill":"rgb(108, 114, 122)"}],"isMulticolor":false,"isMulticolor2":false,"colorPermutations":{"1081141221158162168120320620912282312341243190812456992125519219212552552551291162451452241651699010019902101":[{"f":2}]},"tags":["arrow-decrease"],"grid":0},"attrs":[{"fill":"rgb(108, 114, 122)"}],"properties":{"order":169,"id":24,"name":"arrow-decrease","prevSize":32,"code":59666},"setIdx":0,"setId":4,"iconIdx":31},{"icon":{"paths":["M329.373 550.627c-12.497-12.496-12.497-32.758 0-45.254s32.758-12.496 45.254 0l105.373 105.373v-418.746c0-17.673 14.326-32 32-32s32 14.327 32 32v418.746l105.373-105.373c12.496-12.496 32.758-12.496 45.254 0s12.496 32.758 0 45.254l-160 160c-12.496 12.496-32.758 12.496-45.254 0l-160-160zM112 864c0 17.674 14.327 32 32 32h768c17.674 0 32-14.326 32-32v-512c0-17.674-14.326-32-32-32h-96c-17.674 0-32 14.326-32 32s14.326 32 32 32h64v448h-704v-448h64c17.673 0 32-14.326 32-32s-14.327-32-32-32h-96c-17.673 0-32 14.326-32 32v512z"],"attrs":[{"fill":"rgb(108, 114, 122)"}],"isMulticolor":false,"isMulticolor2":false,"colorPermutations":{"1081141221158162168120320620912282312341243190812456992125519219212552552551291162451452241651699010019902101":[{"f":2}]},"tags":["arrow-down-box"],"grid":0},"attrs":[{"fill":"rgb(108, 114, 122)"}],"properties":{"order":170,"id":25,"name":"arrow-down-box","prevSize":32,"code":59667},"setIdx":0,"setId":4,"iconIdx":32},{"icon":{"paths":["M865.139 512c0-194.404-157.802-352-352.464-352-194.66 0-352.464 157.596-352.464 352s157.804 352 352.464 352c194.662 0 352.464-157.597 352.464-352zM929.226 512c0 229.75-186.496 416-416.55 416-230.053 0-416.548-186.25-416.548-416s186.495-416 416.548-416c230.054 0 416.55 186.25 416.55 416zM695.178 571.37l-160.182 155.715c-12.438 12.093-32.259 12.093-44.701 0l-160.179-155.715c-12.682-12.33-12.955-32.589-0.611-45.251 12.342-12.666 32.63-12.938 45.309-0.611l105.789 102.842 0.003-276.349c0-17.674 14.346-32 32.042-32s32.042 14.326 32.042 32v276.349l105.789-102.842c12.682-12.326 32.966-12.054 45.309 0.611 12.346 12.662 12.070 32.922-0.608 45.251z"],"width":1056,"attrs":[{"fill":"rgb(108, 114, 122)"}],"isMulticolor":false,"isMulticolor2":false,"colorPermutations":{"1081141221158162168120320620912282312341243190812456992125519219212552552551291162451452241651699010019902101":[{"f":2}]},"tags":["arrow-down-circle"],"grid":0},"attrs":[{"fill":"rgb(108, 114, 122)"}],"properties":{"order":171,"id":26,"name":"arrow-down-circle","prevSize":32,"code":59668},"setIdx":0,"setId":4,"iconIdx":33},{"icon":{"paths":["M726.88 526.064c12.355 12.637 12.128 32.896-0.509 45.254l-191.968 187.715c-12.438 12.163-32.31 12.163-44.746 0l-191.97-187.715c-12.636-12.358-12.863-32.618-0.507-45.254 12.356-12.634 32.615-12.861 45.252-0.506l137.597 134.55v-372.109c0-17.673 14.33-32 32-32 17.674 0 32 14.327 32 32v372.109l137.6-134.55c12.634-12.355 32.896-12.128 45.251 0.506z"],"attrs":[{"fill":"rgb(108, 114, 122)"}],"isMulticolor":false,"isMulticolor2":false,"colorPermutations":{"1081141221158162168120320620912282312341243190812456992125519219212552552551291162451452241651699010019902101":[{"f":2}]},"tags":["arrow-down"],"grid":0},"attrs":[{"fill":"rgb(108, 114, 122)"}],"properties":{"order":172,"id":27,"name":"arrow-down","prevSize":32,"code":59669},"setIdx":0,"setId":4,"iconIdx":34},{"icon":{"paths":["M859.978 398.15c-0.189 17.67-14.666 31.843-32.339 31.654-17.67-0.189-31.846-14.666-31.658-32.339l1.318-123.488-193.437 193.437c-12.496 12.499-32.758 12.499-45.254 0-12.496-12.496-12.496-32.755 0-45.254l193.437-193.437-123.488 1.318c-17.67 0.189-32.15-13.984-32.339-31.656s13.984-32.151 31.658-32.34l201.92-2.156c8.605-0.092 16.883 3.286 22.97 9.371 6.083 6.085 9.462 14.364 9.37 22.969l-2.157 201.922zM167.394 626.522c0.189-17.674 14.668-31.846 32.34-31.658s31.845 14.669 31.657 32.339l-1.319 123.488 193.438-193.437c12.496-12.499 32.758-12.499 45.254 0 12.496 12.496 12.496 32.758 0 45.254l-193.438 193.437 123.489-1.318c17.67-0.189 32.15 13.984 32.339 31.658 0.189 17.67-13.984 32.15-31.658 32.339l-201.92 2.157c-8.605 0.093-16.884-3.286-22.969-9.37-6.085-6.086-9.463-14.365-9.371-22.97l2.156-201.92z"],"width":1056,"attrs":[{"fill":"rgb(108, 114, 122)"}],"isMulticolor":false,"isMulticolor2":false,"colorPermutations":{"1081141221158162168120320620912282312341243190812456992125519219212552552551291162451452241651699010019902101":[{"f":2}]},"tags":["arrow-expand"],"grid":0},"attrs":[{"fill":"rgb(108, 114, 122)"}],"properties":{"order":173,"id":28,"name":"arrow-expand","prevSize":32,"code":59670},"setIdx":0,"setId":4,"iconIdx":35},{"icon":{"paths":["M576 352c-17.674 0-32-14.326-32-32s14.326-32 32-32h224c17.674 0 32 14.327 32 32v208c0 17.674-14.326 32-32 32s-32-14.326-32-32v-130.746l-233.373 233.373c-12.496 12.496-32.758 12.496-45.254 0l-73.373-73.373-169.372 169.373c-12.497 12.496-32.758 12.496-45.255 0s-12.497-32.758 0-45.254l192-192c12.496-12.496 32.758-12.496 45.254 0l73.373 73.373 210.746-210.746h-146.746z"],"attrs":[{"fill":"rgb(108, 114, 122)"}],"isMulticolor":false,"isMulticolor2":false,"colorPermutations":{"1081141221158162168120320620912282312341243190812456992125519219212552552551291162451452241651699010019902101":[{"f":2}]},"tags":["arrow-increase"],"grid":0},"attrs":[{"fill":"rgb(108, 114, 122)"}],"properties":{"order":174,"id":29,"name":"arrow-increase","prevSize":32,"code":59671},"setIdx":0,"setId":4,"iconIdx":36},{"icon":{"paths":["M297.766 105.372c12.513-12.497 32.801-12.497 45.316 0 12.512 12.497 12.512 32.758 0 45.255l-105.513 105.372h611.551c17.699 0 32.045 14.327 32.045 32v112c0 17.674-14.346 32-32.045 32-17.696 0-32.042-14.326-32.042-32v-80h-579.51l105.513 105.373c12.512 12.496 12.512 32.758 0 45.254-12.515 12.496-32.803 12.496-45.316 0l-160.212-160c-12.513-12.497-12.513-32.758 0-45.255l160.212-160zM711.568 918.627c-12.515 12.496-32.803 12.496-45.315 0-12.515-12.496-12.515-32.758 0-45.254l105.51-105.373h-611.552c-17.696 0-32.042-14.326-32.042-32v-112c0-17.674 14.346-32 32.042-32s32.042 14.326 32.042 32v80h579.509l-105.51-105.373c-12.515-12.496-12.515-32.758 0-45.254 12.512-12.496 32.8-12.496 45.315 0l160.211 160c12.512 12.496 12.512 32.758 0 45.254l-160.211 160z"],"width":1056,"attrs":[{"fill":"rgb(108, 114, 122)"}],"isMulticolor":false,"isMulticolor2":false,"colorPermutations":{"1081141221158162168120320620912282312341243190812456992125519219212552552551291162451452241651699010019902101":[{"f":2}]},"tags":["arrow-looping"],"grid":0},"attrs":[{"fill":"rgb(108, 114, 122)"}],"properties":{"order":175,"id":30,"name":"arrow-looping","prevSize":32,"code":59672},"setIdx":0,"setId":4,"iconIdx":37},{"icon":{"paths":["M374.627 769.296c-12.496 12.496-32.758 12.496-45.254 0l-192-192c-12.497-12.496-12.497-32.758 0-45.254l192-192c12.496-12.499 32.758-12.499 45.254 0 12.496 12.496 12.496 32.758 0 45.254l-137.372 137.373h578.745v-192h-192c-17.674 0-32-14.328-32-32.001s14.326-32 32-32h224c17.674 0 32 14.327 32 32v256.001c0 17.674-14.326 32-32 32h-610.745l137.372 137.373c12.496 12.496 12.496 32.758 0 45.254z"],"attrs":[{"fill":"rgb(108, 114, 122)"}],"isMulticolor":false,"isMulticolor2":false,"colorPermutations":{"1081141221158162168120320620912282312341243190812456992125519219212552552551291162451452241651699010019902101":[{"f":2}]},"tags":["arrow-return"],"grid":0},"attrs":[{"fill":"rgb(108, 114, 122)"}],"properties":{"order":176,"id":31,"name":"arrow-return","prevSize":32,"code":59673},"setIdx":0,"setId":4,"iconIdx":38},{"icon":{"paths":["M694.627 473.373c12.496 12.496 12.496 32.758 0 45.254s-32.758 12.496-45.254 0l-105.373-105.373v418.746c0 17.674-14.326 32-32 32s-32-14.326-32-32v-418.746l-105.373 105.373c-12.496 12.496-32.758 12.496-45.254 0s-12.497-32.758 0-45.254l160-160c12.496-12.497 32.758-12.497 45.254 0l160 160zM912 160c0-17.673-14.326-32-32-32h-768c-17.673 0-32 14.327-32 32v512c0 17.674 14.327 32 32 32h96c17.673 0 32-14.326 32-32s-14.327-32-32-32h-64v-448h704v448h-64c-17.674 0-32 14.326-32 32s14.326 32 32 32h96c17.674 0 32-14.326 32-32v-512z"],"attrs":[{"fill":"rgb(108, 114, 122)"}],"isMulticolor":false,"isMulticolor2":false,"colorPermutations":{"1081141221158162168120320620912282312341243190812456992125519219212552552551291162451452241651699010019902101":[{"f":2}]},"tags":["arrow-up-box"],"grid":0},"attrs":[{"fill":"rgb(108, 114, 122)"}],"properties":{"order":177,"id":32,"name":"arrow-up-box","prevSize":32,"code":59674},"setIdx":0,"setId":4,"iconIdx":39},{"icon":{"paths":["M297.181 498.090c-12.356-12.634-12.129-32.896 0.507-45.251l191.97-187.717c12.435-12.161 32.307-12.161 44.746 0l191.968 187.717c12.637 12.355 12.864 32.618 0.509 45.251-12.355 12.637-32.618 12.864-45.251 0.509l-137.6-134.55v372.109c0 17.674-14.326 32-32 32-17.67 0-32-14.326-32-32v-372.109l-137.597 134.55c-12.637 12.355-32.895 12.128-45.251-0.509z"],"attrs":[{"fill":"rgb(108, 114, 122)"}],"isMulticolor":false,"isMulticolor2":false,"colorPermutations":{"1081141221158162168120320620912282312341243190812456992125519219212552552551291162451452241651699010019902101":[{"f":2}]},"tags":["arrow-up"],"grid":0},"attrs":[{"fill":"rgb(108, 114, 122)"}],"properties":{"order":178,"id":33,"name":"arrow-up","prevSize":32,"code":59675},"setIdx":0,"setId":4,"iconIdx":40},{"icon":{"paths":["M866.128 153.127c-12.496-12.497-32.758-12.497-45.254 0l-668.246 668.245c-12.497 12.496-12.497 32.758 0 45.254s32.758 12.496 45.255 0l668.246-668.245c12.496-12.497 12.496-32.758 0-45.255zM674.643 480.358l55.92-55.923c16.259 79.565 14.515 161.866-5.229 240.842l-11.622 46.49c-4.288 17.146-21.661 27.571-38.806 23.283-17.146-4.285-27.568-21.661-23.283-38.806l11.622-46.486c13.875-55.507 17.677-112.874 11.398-169.398zM817.162 385.923l-11.312-36.771 51.203-51.206 21.28 69.155c33.344 108.368 31.994 224.445-3.859 332.010l-33.45 100.342c-5.587 16.765-23.709 25.827-40.477 20.24-16.765-5.59-25.827-23.712-20.237-40.48l33.446-100.339c31.635-94.912 32.826-197.334 3.405-292.95zM490.666 664.333l64-64v210.346c0 23.562-19.101 42.666-42.666 42.666h-85.334c-35.459 0-68.394-10.816-95.683-29.325l46.611-46.611c14.701 7.629 31.395 11.936 49.072 11.936h64v-125.011zM128 682.678c0 19.738 13.403 36.346 31.604 41.216l62.552-62.55h-30.156v-298.666h118.99l12.367-48.049c11.843-46.020 53.696-79.953 103.309-79.953h64v158.155l64-64v-115.488c0-23.564-19.101-42.667-42.666-42.667h-85.334c-79.523 0-146.343 54.39-165.289 128h-90.71c-23.564 0-42.667 19.102-42.667 42.667v341.334z"],"attrs":[{"fill":"rgb(108, 114, 122)"}],"isMulticolor":false,"isMulticolor2":false,"colorPermutations":{"1081141221158162168120320620912282312341243190812456992125519219212552552551291162451452241651699010019902101":[{"f":2}]},"tags":["audio-disabled"],"grid":0},"attrs":[{"fill":"rgb(108, 114, 122)"}],"properties":{"order":180,"id":35,"name":"audio-disabled","prevSize":32,"code":59677},"setIdx":0,"setId":4,"iconIdx":41},{"icon":{"paths":["M310.99 661.344h-118.99v-298.666h118.99l12.367-48.049c11.843-46.020 53.696-79.953 103.309-79.953h64v554.667h-64c-49.613 0-91.466-33.933-103.309-79.952l-12.367-48.048zM170.667 725.344h90.71c18.946 73.61 85.766 128 165.289 128h85.334c23.565 0 42.666-19.104 42.666-42.666v-597.335c0-23.564-19.101-42.667-42.666-42.667h-85.334c-79.523 0-146.343 54.39-165.289 128h-90.71c-23.564 0-42.667 19.102-42.667 42.667v341.334c0 23.562 19.103 42.666 42.667 42.666zM886.627 393.373c12.496 12.496 12.496 32.758 0 45.254l-73.373 73.373 73.373 73.373c12.496 12.496 12.496 32.758 0 45.254s-32.758 12.496-45.254 0l-73.373-73.373-73.373 73.373c-12.496 12.496-32.758 12.496-45.254 0s-12.496-32.758 0-45.254l73.373-73.373-73.373-73.373c-12.496-12.496-12.496-32.758 0-45.254s32.758-12.496 45.254 0l73.373 73.373 73.373-73.373c12.496-12.496 32.758-12.496 45.254 0z"],"attrs":[{"fill":"rgb(108, 114, 122)"}],"isMulticolor":false,"isMulticolor2":false,"colorPermutations":{"1081141221158162168120320620912282312341243190812456992125519219212552552551291162451452241651699010019902101":[{"f":2}]},"tags":["audio-unavailable"],"grid":0},"attrs":[{"fill":"rgb(108, 114, 122)"}],"properties":{"order":181,"id":36,"name":"audio-unavailable","prevSize":32,"code":59678},"setIdx":0,"setId":4,"iconIdx":42},{"icon":{"paths":["M300.1 631.12h-113.433v-280.89h113.433l12.366-48.048c11.054-42.953 50.123-74.619 96.423-74.619h58.666v526.223h-58.666c-46.301 0-85.37-31.667-96.423-74.621l-12.366-48.045zM163.556 695.12h86.931c18.156 70.541 82.192 122.666 158.403 122.666h81.776c22.582 0 40.89-18.307 40.89-40.89v-572.444c0-22.582-18.307-40.889-40.89-40.889h-81.776c-76.211 0-140.247 52.124-158.403 122.667h-86.931c-22.582 0-40.889 18.306-40.889 40.89v327.11c0 22.582 18.307 40.89 40.889 40.89zM646.461 316.515c17.146-4.286 34.518 6.138 38.806 23.284l11.136 44.55c20.81 83.229 20.81 170.301 0 253.533l-11.136 44.55c-4.288 17.146-21.661 27.568-38.806 23.283-17.146-4.288-27.571-21.661-23.283-38.806l11.136-44.55c18.262-73.040 18.262-149.45 0.003-222.486l-11.139-44.55c-4.288-17.146 6.138-34.522 23.283-38.807zM807.472 235.936c-5.197-16.892-23.104-26.372-39.994-21.174-16.893 5.197-26.371 23.104-21.174 39.996l35.536 115.489c28.112 91.37 26.976 189.242-3.254 279.933l-32.054 96.16c-5.59 16.765 3.472 34.886 20.237 40.477 16.768 5.587 34.89-3.472 40.48-20.24l32.051-96.16c34.448-103.344 35.747-214.87 3.709-318.989l-35.536-115.491z"],"attrs":[{"fill":"rgb(108, 114, 122)"}],"isMulticolor":false,"isMulticolor2":false,"colorPermutations":{"1081141221158162168120320620912282312341243190812456992125519219212552552551291162451452241651699010019902101":[{"f":2}]},"tags":["audio"],"grid":0},"attrs":[{"fill":"rgb(108, 114, 122)"}],"properties":{"order":182,"id":37,"name":"audio","prevSize":32,"code":59679},"setIdx":0,"setId":4,"iconIdx":43},{"icon":{"paths":["M418.704 128c-35.344 0-64 28.654-64 64v226.637c20.774-2.822 42.134-3.456 64-1.526v-225.11h176v180.707c0 35.344 28.656 64 64 64h176v331.293h-120.554c-17.155 22.179-36.323 43.869-57.312 64h177.866c35.347 0 64-28.653 64-64v-363.293c0-6.413-1.923-12.675-5.526-17.978l-156.63-230.681c-11.914-17.544-31.741-28.049-52.947-28.049h-264.896zM658.704 372.707v-180.707h24.896l122.698 180.707h-147.594zM167.939 668.547c120.524 156.138 218.24 174.586 285.133 158.739 73.293-17.36 139.232-81.648 183.466-151.763-115.155-155.869-211.581-174.589-279.149-158.915-74.362 17.251-142.707 81.683-189.45 151.939zM104.428 649.037c100.621-162.8 337.62-357.19 593.252 1.789 9.072 12.739 10.32 29.818 2.422 43.315-95.27 162.854-326.394 358.346-593.234-0.224-9.745-13.094-11.022-30.995-2.44-44.88zM401.664 735.994c31.514 0 60.269-26.858 60.269-64 0-37.146-28.755-64-60.269-64-31.51 0-60.266 26.854-60.266 64 0 37.142 28.755 64 60.266 64zM401.664 799.994c68.634 0 124.269-57.309 124.269-128 0-70.694-55.635-128-124.269-128-68.63 0-124.267 57.306-124.267 128 0 70.691 55.636 128 124.267 128z"],"width":1056,"attrs":[{"fill":"rgb(108, 114, 122)"}],"isMulticolor":false,"isMulticolor2":false,"colorPermutations":{"1081141221158162168120320620912282312341243190812456992125519219212552552551291162451452241651699010019902101":[{"f":2}]},"tags":["auditing"],"grid":0},"attrs":[{"fill":"rgb(108, 114, 122)"}],"properties":{"order":183,"id":38,"name":"auditing","prevSize":32,"code":59680},"setIdx":0,"setId":4,"iconIdx":44},{"icon":{"paths":["M224 224c-17.673 0-32 14.327-32 32v544c0 17.674 14.327 32 32 32h544c17.674 0 32-14.326 32-32v-544c0-17.673-14.326-32-32-32h-544zM128 256c0-53.019 42.981-96 96-96h544c53.021 0 96 42.981 96 96v544c0 53.021-42.979 96-96 96h-544c-53.019 0-96-42.979-96-96v-544zM608 460.813c0 41.798-26.714 77.357-64 90.538v133.462h-64v-133.462c-37.286-13.181-64-48.739-64-90.538 0-53.021 42.979-96 96-96s96 42.979 96 96zM608 588.826c38.861-29.19 64-75.667 64-128.013 0-88.365-71.635-160-160-160s-160 71.636-160 160c0 52.346 25.139 98.822 64 128.013v127.987c0 17.674 14.326 32 32 32h128c17.674 0 32-14.326 32-32v-127.987z"],"attrs":[{"fill":"rgb(108, 114, 122)"}],"isMulticolor":false,"isMulticolor2":false,"colorPermutations":{"1081141221158162168120320620912282312341243190812456992125519219212552552551291162451452241651699010019902101":[{"f":2}]},"tags":["auth"],"grid":0},"attrs":[{"fill":"rgb(108, 114, 122)"}],"properties":{"order":184,"id":39,"name":"auth","prevSize":32,"code":59681},"setIdx":0,"setId":4,"iconIdx":45},{"icon":{"paths":["M513.35 554.019c66.467 0 120.349-52.493 120.349-117.242 0-64.752-53.882-117.243-120.349-117.243-66.464 0-120.346 52.491-120.346 117.243 0 64.749 53.882 117.242 120.346 117.242zM513.35 490.019c-32.704 0-56.346-25.405-56.346-53.242 0-27.84 23.642-53.242 56.346-53.242 32.707 0 56.349 25.402 56.349 53.242 0 27.837-23.642 53.242-56.349 53.242z","M365.478 894.144h-172.126c-17.673 0-32-14.33-32-32v-702.144c0-17.673 14.327-32 32-32h640.001c17.674 0 32 14.327 32 32v702.144c0 17.67-14.326 32-32 32h-172.128c-6.24 1.274-12.701 1.942-19.318 1.942h-257.11c-6.618 0-13.078-0.669-19.318-1.942zM225.353 830.144h68.244c-3.114-9.456-4.799-19.558-4.799-30.058v-93.446c0-56.109 37.881-105.142 92.172-119.309 19.171-5.002 39.264-5.312 58.579-0.902l42.778 9.766c20.051 4.579 40.909 4.259 60.81-0.934l28.070-7.325c20.694-5.398 42.384-5.734 63.232-0.973 60.534 13.821 103.469 67.664 103.469 129.754v83.37c0 10.499-1.686 20.602-4.8 30.058h68.246v-638.144h-576.001v638.144zM652.918 830.144c12.246-4.49 20.989-16.253 20.989-30.058v-83.37c0-32.234-22.288-60.186-53.715-67.36-10.822-2.47-22.083-2.298-32.826 0.506l-28.070 7.325c-29.853 7.789-61.139 8.272-91.216 1.405l-42.774-9.766c-9.293-2.122-18.957-1.974-28.176 0.432-26.112 6.813-44.333 30.397-44.333 57.382v93.446c0 13.805 8.742 25.568 20.989 30.058h279.133z"],"width":1056,"attrs":[{"fill":"rgb(108, 114, 122)"},{"fill":"rgb(108, 114, 122)"}],"isMulticolor":false,"isMulticolor2":false,"colorPermutations":{"1081141221158162168120320620912282312341243190812456992125519219212552552551291162451452241651699010019902101":[{"f":2},{"f":2}]},"tags":["avatar"],"grid":0},"attrs":[{"fill":"rgb(108, 114, 122)"},{"fill":"rgb(108, 114, 122)"}],"properties":{"order":185,"id":40,"name":"avatar","prevSize":32,"code":59682},"setIdx":0,"setId":4,"iconIdx":46},{"icon":{"paths":["M737.779 361.376c12.499 12.496 12.499 32.758 0 45.254l-110.947 110.95 110.947 110.947c12.499 12.496 12.499 32.758 0 45.254-12.496 12.499-32.758 12.499-45.254 0l-110.947-110.947-110.95 110.947c-12.496 12.499-32.758 12.499-45.254 0-12.496-12.496-12.496-32.758 0-45.254l110.95-110.947-110.95-110.95c-12.496-12.496-12.496-32.758 0-45.254s32.758-12.496 45.254 0l110.95 110.95 110.947-110.95c12.496-12.496 32.758-12.496 45.254 0z","M312.246 218.073c12.061-16.393 31.2-26.073 51.552-26.073h468.202c35.347 0 64 28.654 64 64v512c0 35.347-28.653 64-64 64h-468.202c-20.352 0-39.491-9.68-51.552-26.074l-188.343-256c-16.598-22.56-16.598-53.293 0-75.853l188.343-256.001zM363.798 256l-188.343 256 188.343 256h468.202v-512h-468.202z"],"attrs":[{"fill":"rgb(108, 114, 122)"},{"fill":"rgb(108, 114, 122)"}],"isMulticolor":false,"isMulticolor2":false,"colorPermutations":{"1081141221158162168120320620912282312341243190812456992125519219212552552551291162451452241651699010019902101":[{"f":2},{"f":2}]},"tags":["backspace"],"grid":0},"attrs":[{"fill":"rgb(108, 114, 122)"},{"fill":"rgb(108, 114, 122)"}],"properties":{"order":186,"id":41,"name":"backspace","prevSize":32,"code":59683},"setIdx":0,"setId":4,"iconIdx":47},{"icon":{"paths":["M376 775.418c-13.254 0-24-10.746-24-24v-469.168c0-13.255 10.746-24 24-24h145.075c56.118 0 98.269 11.603 126.448 34.809 28.416 23.206 42.624 57.542 42.624 103.008 0 24.154-6.867 45.584-20.602 64.291-13.734 18.47-32.442 32.794-56.122 42.976 27.942 7.814 49.965 22.733 66.067 44.755 16.339 21.786 24.509 47.834 24.509 78.144 0 46.413-15.037 82.88-45.11 109.402s-72.579 39.782-127.517 39.782h-155.373zM420.198 533.526v186.125h112.595c31.731 0 56.714-8.17 74.947-24.509 18.47-16.576 27.706-39.309 27.706-68.198 0-62.278-33.862-93.418-101.587-93.418h-113.661zM420.198 478.829h103.008c29.834 0 53.632-7.459 71.392-22.378 17.997-14.918 26.995-35.165 26.995-60.739 0-28.416-8.288-49.018-24.864-61.805-16.576-13.024-41.795-19.536-75.654-19.536h-100.877v164.458z"],"attrs":[{"fill":"rgb(108, 114, 122)"}],"isMulticolor":false,"isMulticolor2":false,"colorPermutations":{"1081141221158162168120320620912282312341243190812456992125519219212552552551291162451452241651699010019902101":[{"f":2}]},"tags":["bold"],"grid":0},"attrs":[{"fill":"rgb(108, 114, 122)"}],"properties":{"order":187,"id":42,"name":"bold","prevSize":32,"code":59684},"setIdx":0,"setId":4,"iconIdx":48},{"icon":{"paths":["M352 445.437c0-17.67 14.326-32 32-32h256c17.674 0 32 14.33 32 32 0 17.674-14.326 32-32 32h-256c-17.674 0-32-14.326-32-32z","M352 322.557c0-17.672 14.326-31.999 32-31.999h256c17.674 0 32 14.327 32 31.999 0 17.674-14.326 32-32 32h-256c-17.674 0-32-14.326-32-32z","M864 679.68c0 17.674-14.326 32-32 32h-18.509c-8.218 40.547-8.218 82.333 0 122.88h19.789c16.966 0 30.72 13.754 30.72 30.72s-13.754 30.72-30.72 30.72h-545.28c-70.692 0-128-55.014-128-122.88v-453.12c0-106.038 85.961-192 192-192h480c17.674 0 32 14.327 32 32v519.68zM748.419 834.56c-6.787-40.678-6.787-82.202 0-122.88h-460.419c-35.346 0-64 27.507-64 61.44s28.654 61.44 64 61.44h460.419zM224 647.68h576v-455.68h-448c-70.692 0-128 57.308-128 128v327.68z"],"attrs":[{"fill":"rgb(108, 114, 122)"},{"fill":"rgb(108, 114, 122)"},{"fill":"rgb(108, 114, 122)"}],"isMulticolor":false,"isMulticolor2":false,"colorPermutations":{"1081141221158162168120320620912282312341243190812456992125519219212552552551291162451452241651699010019902101":[{"f":2},{"f":2},{"f":2}]},"tags":["book"],"grid":0},"attrs":[{"fill":"rgb(108, 114, 122)"},{"fill":"rgb(108, 114, 122)"},{"fill":"rgb(108, 114, 122)"}],"properties":{"order":188,"id":43,"name":"book","prevSize":32,"code":59685},"setIdx":0,"setId":4,"iconIdx":49},{"icon":{"paths":["M224 224h320v576h-96v-112c0-8.835-7.165-16-16-16h-96c-8.835 0-16 7.165-16 16v112h-96v-576zM608 448h192v352h-192v-352zM832 384h-224v-192c0-17.673-14.326-32-32-32h-384c-17.673 0-32 14.327-32 32v640c0 17.674 14.327 32 32 32h640c17.674 0 32-14.326 32-32v-416c0-17.674-14.326-32-32-32zM304 288c-8.836 0-16 7.164-16 16v32c0 8.835 7.164 16 16 16h32c8.835 0 16-7.165 16-16v-32c0-8.836-7.165-16-16-16h-32zM288 432c0-8.835 7.164-16 16-16h32c8.835 0 16 7.165 16 16v32c0 8.835-7.165 16-16 16h-32c-8.836 0-16-7.165-16-16v-32zM304 544c-8.836 0-16 7.165-16 16v32c0 8.835 7.164 16 16 16h32c8.835 0 16-7.165 16-16v-32c0-8.835-7.165-16-16-16h-32zM416 304c0-8.836 7.165-16 16-16h32c8.835 0 16 7.164 16 16v32c0 8.835-7.165 16-16 16h-32c-8.835 0-16-7.165-16-16v-32zM432 416c-8.835 0-16 7.165-16 16v32c0 8.835 7.165 16 16 16h32c8.835 0 16-7.165 16-16v-32c0-8.835-7.165-16-16-16h-32zM416 560c0-8.835 7.165-16 16-16h32c8.835 0 16 7.165 16 16v32c0 8.835-7.165 16-16 16h-32c-8.835 0-16-7.165-16-16v-32zM688 512c-8.835 0-16 7.165-16 16v32c0 8.835 7.165 16 16 16h32c8.835 0 16-7.165 16-16v-32c0-8.835-7.165-16-16-16h-32zM672 656c0-8.835 7.165-16 16-16h32c8.835 0 16 7.165 16 16v32c0 8.835-7.165 16-16 16h-32c-8.835 0-16-7.165-16-16v-32z"],"attrs":[{"fill":"rgb(108, 114, 122)"}],"isMulticolor":false,"isMulticolor2":false,"colorPermutations":{"1081141221158162168120320620912282312341243190812456992125519219212552552551291162451452241651699010019902101":[{"f":2}]},"tags":["business"],"grid":0},"attrs":[{"fill":"rgb(108, 114, 122)"}],"properties":{"order":189,"id":44,"name":"business","prevSize":32,"code":59686},"setIdx":0,"setId":4,"iconIdx":50},{"icon":{"paths":["M277.831 157.44c0-16.259 13.181-29.44 29.44-29.44s29.439 13.181 29.439 29.44v58.876h353.28v-58.876c0-16.259 13.181-29.44 29.44-29.44s29.44 13.181 29.44 29.44v58.876h85.76c17.674 0 32 14.327 32 32v583.68c0 17.674-14.326 32-32 32h-642.559c-17.673 0-32-14.326-32-32v-583.68c0-1.105 0.056-2.196 0.165-3.272 1.639-16.136 15.266-28.728 31.835-28.728h85.76v-58.876zM802.63 392.957h-578.559v407.040h578.559v-407.040zM425.034 644.474c0-8.835 7.162-16 16-16h26.88c8.835 0 16 7.165 16 16v26.88c0 8.838-7.165 16-16 16h-26.88c-8.838 0-16-7.162-16-16v-26.88zM323.27 510.72c-8.836 0-15.999 7.162-15.999 16v26.88c0 8.835 7.163 16 15.999 16h26.88c8.838 0 16-7.165 16-16v-26.88c0-8.838-7.162-16-16-16h-26.88zM542.79 526.72c0-8.835 7.165-16 16-16h26.88c8.838 0 16 7.165 16 16v26.88c0 8.835-7.162 16-16 16h-26.88c-8.835 0-16-7.165-16-16v-26.88zM323.27 628.474c-8.835 0-15.999 7.165-15.999 16v26.88c0 8.838 7.164 16 15.999 16h26.88c8.838 0 16-7.162 16-16v-26.88c0-8.835-7.162-16-16-16h-26.88zM542.79 644.474c0-8.835 7.165-16 16-16h26.88c8.838 0 16 7.165 16 16v26.88c0 8.838-7.162 16-16 16h-26.88c-8.835 0-16-7.162-16-16v-26.88zM441.030 510.72c-8.835 0-16 7.165-16 16v26.88c0 8.835 7.165 16 16 16h26.88c8.838 0 16-7.165 16-16v-26.88c0-8.835-7.162-16-16-16h-26.88zM660.55 526.72c0-8.835 7.165-16 16-16h26.88c8.838 0 16 7.165 16 16v26.88c0 8.835-7.162 16-16 16h-26.88c-8.835 0-16-7.165-16-16v-26.88zM676.55 628.474c-8.835 0-16 7.165-16 16v26.88c0 8.838 7.165 16 16 16h26.88c8.838 0 16-7.162 16-16v-26.88c0-8.835-7.162-16-16-16h-26.88z"],"width":1056,"attrs":[{"fill":"rgb(108, 114, 122)"}],"isMulticolor":false,"isMulticolor2":false,"colorPermutations":{"1081141221158162168120320620912282312341243190812456992125519219212552552551291162451452241651699010019902101":[{"f":2}]},"tags":["calendar"],"grid":0},"attrs":[{"fill":"rgb(108, 114, 122)"}],"properties":{"order":190,"id":45,"name":"calendar","prevSize":32,"code":59687},"setIdx":0,"setId":4,"iconIdx":51},{"icon":{"paths":["M866.128 153.126c-12.496-12.497-32.758-12.497-45.254 0l-668.246 668.246c-12.497 12.496-12.497 32.758 0 45.254s32.758 12.496 45.255 0l668.246-668.246c12.496-12.497 12.496-32.758 0-45.255zM298.667 170.671c-23.564 0-42.667 14.327-42.667 32s19.102 32 42.667 32h255.999c23.565 0 42.669-14.327 42.669-32s-19.104-32-42.669-32h-255.999zM574.173 309.327h-403.506c-41.237 0-74.667 33.428-74.667 74.667v384c0 6.010 0.71 11.856 2.051 17.453l61.949-61.949v-339.504c0-5.891 4.776-10.666 10.667-10.666h339.506l64-64.001zM376.339 778.659h306.326c5.891 0 10.669-4.774 10.669-10.666v-85.334c0-11.373 6.038-21.891 15.859-27.629s21.949-5.83 31.856-0.243l97.83 55.162c2.531 1.427 4.858 3.194 6.912 5.248 6.72 6.72 18.208 1.962 18.208-7.542v-263.322c0-9.501-11.488-14.262-18.208-7.542-2.054 2.054-4.381 3.821-6.912 5.248l-97.83 55.162c-9.907 5.587-22.035 5.494-31.856-0.243-9.821-5.734-15.859-16.256-15.859-27.629v-7.661l110.778-73.498c47.418-41.99 123.888-8.701 123.888 56.163v263.322c0 64.864-76.47 98.154-123.888 56.163l-46.778-26.378v30.554c0 41.238-33.43 74.666-74.669 74.666h-370.327l64.001-64z"],"attrs":[{"fill":"rgb(108, 114, 122)"}],"isMulticolor":false,"isMulticolor2":false,"colorPermutations":{"1081141221158162168120320620912282312341243190812456992125519219212552552551291162451452241651699010019902101":[{"f":2}]},"tags":["camera-disabled"],"grid":0},"attrs":[{"fill":"rgb(108, 114, 122)"}],"properties":{"order":191,"id":46,"name":"camera-disabled","prevSize":32,"code":59688},"setIdx":0,"setId":4,"iconIdx":52},{"icon":{"paths":["M288 224c-17.673 0-32 14.327-32 32s14.327 32 32 32h256c17.674 0 32-14.327 32-32s-14.326-32-32-32h-256z","M170.667 341.328c-23.564 0-42.667 19.104-42.667 42.666v384c0 23.565 19.102 42.669 42.667 42.669h511.999c23.565 0 42.669-19.104 42.669-42.669v-128l97.83 97.83c26.877 26.88 72.835 7.843 72.835-30.17v-263.318c0-38.013-45.958-57.050-72.835-30.173l-97.83 97.83v-128c0-23.562-19.104-42.666-42.669-42.666h-511.999z"],"attrs":[{"fill":"rgb(108, 114, 122)"},{"fill":"rgb(108, 114, 122)"}],"isMulticolor":false,"isMulticolor2":false,"colorPermutations":{"1081141221158162168120320620912282312341243190812456992125519219212552552551291162451452241651699010019902101":[{"f":2},{"f":2}]},"tags":["camera-filled"],"grid":0},"attrs":[{"fill":"rgb(108, 114, 122)"},{"fill":"rgb(108, 114, 122)"}],"properties":{"order":192,"id":47,"name":"camera-filled","prevSize":32,"code":59689},"setIdx":0,"setId":4,"iconIdx":53},{"icon":{"paths":["M196.731 191.997c0-15.807 12.814-28.622 28.622-28.622h128.001c15.805 0 28.621 12.814 28.621 28.622s-12.816 28.621-28.621 28.621h-128.001c-15.807 0-28.622-12.814-28.622-28.621z","M737.354 559.997c0 97.203-78.8 176-176 176-97.203 0-176-78.797-176-176s78.797-176 176-176c97.2 0 176 78.797 176 176zM673.354 559.997c0-61.856-50.144-112-112-112s-112 50.144-112 112c0 61.856 50.144 112 112 112s112-50.144 112-112z","M193.353 255.997c-35.346 0-64 28.654-64 64v448c0 35.347 28.654 64 64 64h640.001c35.344 0 64-28.653 64-64v-448c0-35.346-28.656-64-64-64h-640.001zM833.354 319.997v448h-640.001v-448h640.001z"],"width":1056,"attrs":[{"fill":"rgb(108, 114, 122)"},{"fill":"rgb(108, 114, 122)"},{"fill":"rgb(108, 114, 122)"}],"isMulticolor":false,"isMulticolor2":false,"colorPermutations":{"1081141221158162168120320620912282312341243190812456992125519219212552552551291162451452241651699010019902101":[{"f":2},{"f":2},{"f":2}]},"tags":["camera-photo"],"grid":0},"attrs":[{"fill":"rgb(108, 114, 122)"},{"fill":"rgb(108, 114, 122)"},{"fill":"rgb(108, 114, 122)"}],"properties":{"order":193,"id":48,"name":"camera-photo","prevSize":32,"code":59690},"setIdx":0,"setId":4,"iconIdx":54},{"icon":{"paths":["M298.667 170.672c-23.564 0-42.667 14.327-42.667 32s19.102 32 42.667 32h255.999c23.565 0 42.669-14.327 42.669-32s-19.104-32-42.669-32h-255.999z","M545.712 503.453c11.267-11.267 11.19-29.61-0.17-40.97s-29.706-11.437-40.973-0.17l-71.402 71.402-71.994-71.997c-11.363-11.36-29.706-11.437-40.973-0.17s-11.19 29.61 0.17 40.97l71.997 71.997-71.402 71.402c-11.266 11.267-11.19 29.61 0.17 40.97 11.363 11.36 29.706 11.437 40.973 0.17l71.402-71.402 71.997 71.997c11.36 11.36 29.702 11.437 40.97 0.17s11.19-29.61-0.17-40.97l-71.997-71.997 71.402-71.402z","M96 383.994c0-41.235 33.429-74.666 74.667-74.666h511.999c41.238 0 74.669 33.43 74.669 74.666v30.554l46.778-26.378c47.418-41.99 123.888-8.698 123.888 56.166v263.318c0 64.864-76.47 98.154-123.888 56.163l-46.778-26.374v30.55c0 41.238-33.43 74.669-74.669 74.669h-511.999c-41.237 0-74.667-33.43-74.667-74.669v-384zM170.667 373.328c-5.891 0-10.667 4.774-10.667 10.666v384c0 5.891 4.776 10.669 10.667 10.669h511.999c5.891 0 10.669-4.778 10.669-10.669v-85.331c0-11.376 6.038-21.894 15.859-27.632s21.949-5.83 31.856-0.243l97.83 55.165c2.531 1.427 4.858 3.19 6.912 5.245 6.72 6.72 18.208 1.962 18.208-7.542v-263.318c0-9.504-11.488-14.262-18.208-7.546-2.054 2.058-4.381 3.821-6.912 5.248l-97.83 55.165c-9.907 5.587-22.035 5.494-31.856-0.243s-15.859-16.256-15.859-27.632v-85.334c0-5.891-4.778-10.666-10.669-10.666h-511.999z"],"attrs":[{"fill":"rgb(108, 114, 122)"},{"fill":"rgb(108, 114, 122)"},{"fill":"rgb(108, 114, 122)"}],"isMulticolor":false,"isMulticolor2":false,"colorPermutations":{"1081141221158162168120320620912282312341243190812456992125519219212552552551291162451452241651699010019902101":[{"f":2},{"f":2},{"f":2}]},"tags":["camera-unavailable"],"grid":0},"attrs":[{"fill":"rgb(108, 114, 122)"},{"fill":"rgb(108, 114, 122)"},{"fill":"rgb(108, 114, 122)"}],"properties":{"order":194,"id":49,"name":"camera-unavailable","prevSize":32,"code":59691},"setIdx":0,"setId":4,"iconIdx":55},{"icon":{"paths":["M256 202.672c0-17.673 19.102-32 42.667-32h255.999c23.565 0 42.669 14.327 42.669 32s-19.104 32-42.669 32h-255.999c-23.564 0-42.667-14.327-42.667-32zM160 383.994c0-5.891 4.776-10.666 10.667-10.666h511.999c5.891 0 10.669 4.774 10.669 10.666v85.334c0 11.376 6.038 21.894 15.859 27.632s21.949 5.83 31.856 0.243l97.83-55.165c2.531-1.427 4.858-3.19 6.912-5.248 6.72-6.717 18.208-1.958 18.208 7.546v263.318c0 9.504-11.488 14.262-18.208 7.542-2.054-2.054-4.381-3.818-6.912-5.245l-97.83-55.165c-9.907-5.587-22.035-5.494-31.856 0.243s-15.859 16.256-15.859 27.632v85.331c0 5.891-4.778 10.669-10.669 10.669h-511.999c-5.891 0-10.667-4.778-10.667-10.669v-384zM170.667 309.328c-41.237 0-74.667 33.43-74.667 74.666v384c0 41.238 33.429 74.669 74.667 74.669h511.999c41.238 0 74.669-33.43 74.669-74.669v-30.55l46.778 26.374c47.418 41.99 123.888 8.701 123.888-56.163v-263.318c0-64.864-76.47-98.157-123.888-56.166l-46.778 26.378v-30.554c0-41.235-33.43-74.666-74.669-74.666h-511.999z"],"attrs":[{"fill":"rgb(108, 114, 122)"}],"isMulticolor":false,"isMulticolor2":false,"colorPermutations":{"1081141221158162168120320620912282312341243190812456992125519219212552552551291162451452241651699010019902101":[{"f":2}]},"tags":["camera"],"grid":0},"attrs":[{"fill":"rgb(108, 114, 122)"}],"properties":{"order":195,"id":50,"name":"camera","prevSize":32,"code":59692},"setIdx":0,"setId":4,"iconIdx":56},{"icon":{"paths":["M224.248 304.026c-49.642 68.947-66.502 152.646-66.502 207.968v1.453l-0.132 1.446c-9.702 106.717 28.59 181.93 90.135 234.006 62.938 53.254 152.152 83.731 244.197 93.958 91.965 10.218 193.27 1.446 273.306-15.482 40.022-8.461 73.616-18.733 97.443-29.075 9.245-4.013 16.438-7.786 21.734-11.126-2.464-1.565-5.446-3.306-9.002-5.197-9.222-4.912-19.779-9.578-30.733-14.368l-1.914-0.835c-9.667-4.221-20.47-8.941-28.656-13.517-14.835-8.298-29.389-17.734-40.006-27.776-5.222-4.941-11.165-11.571-15.146-19.827-4.208-8.742-7.226-21.792-1.306-35.597 31.978-74.621 47.178-115.494 54.538-142.483 6.874-25.2 6.874-37.888 6.874-58.064v-0.182c0-16.035-9.318-89.517-55.811-158.032-45.018-66.338-125.99-129.968-274.854-129.968-134.637 0-215.698 55.382-264.165 122.698zM172.309 266.63c60.333-83.796 160.606-149.302 316.103-149.302 171.136 0 271.494 75.037 327.811 158.032 54.842 80.819 66.854 167.338 66.854 193.968 0 22.384-0.022 41.696-9.126 75.088-8.131 29.805-23.485 70.928-51.946 137.923 5.261 4.166 13.072 9.306 23.36 15.062 5.315 2.97 13.485 6.55 24.963 11.568 10.653 4.659 23.437 10.266 35.174 16.515 11.258 5.994 24.416 14.029 34.202 24.538 10.234 10.992 20.973 29.846 13.299 52.864-5.056 15.168-16.794 25.939-26.576 33.094-10.63 7.776-23.818 14.762-38.253 21.030-29.008 12.589-67.030 23.962-109.683 32.982-85.309 18.038-193.581 27.587-293.616 16.474-99.955-11.107-202.74-44.634-278.468-108.71-76.833-65.011-123.811-159.994-112.66-287.222 0.286-65.549 19.841-162.349 78.561-243.904zM493.744 320c17.674 0 32 14.326 32 32v224c0 17.674-14.326 32-32 32s-32-14.326-32-32v-224c0-17.674 14.326-32 32-32zM525.744 672c0-17.674-14.326-32-32-32s-32 14.326-32 32c0 17.674 14.326 32 32 32s32-14.326 32-32z"],"attrs":[{"fill":"rgb(108, 114, 122)"}],"isMulticolor":false,"isMulticolor2":false,"colorPermutations":{"1081141221158162168120320620912282312341243190812456992125519219212552552551291162451452241651699010019902101":[{"f":2}]},"tags":["canned-response"],"grid":0},"attrs":[{"fill":"rgb(108, 114, 122)"}],"properties":{"order":196,"id":51,"name":"canned-response","prevSize":32,"code":59693},"setIdx":0,"setId":4,"iconIdx":57},{"icon":{"paths":["M193.352 181.331c-53.020 0-96 42.981-96 96v469.335c0 53.018 42.98 96 96 96h639.999c53.021 0 96-42.982 96-96v-469.335c0-53.019-42.979-96-96-96h-639.999zM161.352 277.331c0-17.673 14.327-32 32-32h639.999c17.674 0 32 14.327 32 32v202.673h-703.999v-202.673zM161.352 544.003h703.999v202.662c0 17.67-14.326 32-32 32h-639.999c-17.673 0-32-14.33-32-32v-202.662zM812.016 661.331c0-35.347-28.653-64-64-64-35.344 0-64 28.653-64 64s28.656 64 64 64c35.347 0 64-28.653 64-64z"],"width":1056,"attrs":[{"fill":"rgb(108, 114, 122)"}],"isMulticolor":false,"isMulticolor2":false,"colorPermutations":{"1081141221158162168120320620912282312341243190812456992125519219212552552551291162451452241651699010019902101":[{"f":2}]},"tags":["card"],"grid":0},"attrs":[{"fill":"rgb(108, 114, 122)"}],"properties":{"order":197,"id":52,"name":"card","prevSize":32,"code":59694},"setIdx":0,"setId":4,"iconIdx":58},{"icon":{"paths":["M368 160c0-17.673-14.326-32-32-32s-32 14.327-32 32v144h-144c-17.673 0-32 14.327-32 32s14.327 32 32 32h144v288h-144c-17.673 0-32 14.326-32 32s14.327 32 32 32h144v144c0 17.674 14.327 32 32 32s32-14.326 32-32v-144h288v144c0 17.674 14.326 32 32 32s32-14.326 32-32v-144h144c17.674 0 32-14.326 32-32s-14.326-32-32-32h-144v-80h-58.666c-1.786 0-3.565-0.042-5.334-0.118v80.118h-288v-288h168.79c-0.522-5.264-0.79-10.602-0.79-16v-48h-168v-144z","M760 96c-57.437 0-104 46.562-104 104v56h-24c-17.674 0-32 14.327-32 32v192c0 17.674 14.326 32 32 32h256c17.674 0 32-14.326 32-32v-192c0-17.673-14.326-32-32-32h-24v-56c0-57.438-46.563-104-104-104zM800 255.238h-80v-55.238c0-22.092 17.907-40 40-40s40 17.908 40 40v55.238z"],"width":1056,"attrs":[{"fill":"rgb(108, 114, 122)"},{"fill":"rgb(108, 114, 122)"}],"isMulticolor":false,"isMulticolor2":false,"colorPermutations":{"1081141221158162168120320620912282312341243190812456992125519219212552552551291162451452241651699010019902101":[{"f":2},{"f":2}]},"tags":["channel-private"],"grid":0},"attrs":[{"fill":"rgb(108, 114, 122)"},{"fill":"rgb(108, 114, 122)"}],"properties":{"order":198,"id":53,"name":"channel-private","prevSize":32,"code":59695},"setIdx":0,"setId":4,"iconIdx":59},{"icon":{"paths":["M336 128c17.674 0 32 14.327 32 32v144h288v-144c0-17.673 14.326-32 32-32s32 14.327 32 32v144h144c17.674 0 32 14.327 32 32s-14.326 32-32 32h-144v288h144c17.674 0 32 14.326 32 32s-14.326 32-32 32h-144v144c0 17.674-14.326 32-32 32s-32-14.326-32-32v-144h-288v144c0 17.674-14.326 32-32 32s-32-14.326-32-32v-144h-144c-17.673 0-32-14.326-32-32s14.327-32 32-32h144v-288h-144c-17.673 0-32-14.326-32-32s14.327-32 32-32h144v-144c0-17.673 14.327-32 32-32zM368 368v288h288v-288h-288z"],"attrs":[{"fill":"rgb(108, 114, 122)"}],"isMulticolor":false,"isMulticolor2":false,"colorPermutations":{"1081141221158162168120320620912282312341243190812456992125519219212552552551291162451452241651699010019902101":[{"f":2}]},"tags":["channel-public"],"grid":0},"attrs":[{"fill":"rgb(108, 114, 122)"}],"properties":{"order":199,"id":54,"name":"channel-public","prevSize":32,"code":59696},"setIdx":0,"setId":4,"iconIdx":60},{"icon":{"paths":["M886.627 105.372c12.496 12.497 12.496 32.758 0 45.255l-89.373 89.372 89.373 89.373c12.496 12.496 12.496 32.758 0 45.254s-32.758 12.496-45.254 0l-89.373-89.372-89.373 89.372c-12.496 12.496-32.758 12.496-45.254 0s-12.496-32.758 0-45.254l89.373-89.373-89.373-89.372c-12.496-12.497-12.496-32.758 0-45.255s32.758-12.497 45.254 0l89.373 89.373 89.373-89.373c12.496-12.497 32.758-12.497 45.254 0zM226.501 304.042c-49.642 68.947-66.502 152.646-66.502 207.968v1.453l-0.132 1.446c-9.701 106.717 28.59 181.93 90.135 234.006 62.938 53.254 152.151 83.731 244.196 93.958 91.968 10.218 193.27 1.446 273.309-15.482 40.019-8.461 73.613-18.733 97.44-29.075 9.245-4.013 16.438-7.786 21.738-11.126-2.467-1.565-5.446-3.306-9.005-5.2-9.222-4.909-19.776-9.574-30.733-14.365l-1.917-0.838c-9.667-4.221-20.47-8.938-28.653-13.517-14.835-8.294-29.389-17.731-40.003-27.773-5.226-4.941-11.168-11.571-15.146-19.827-4.211-8.742-7.226-21.792-1.309-35.6 42.086-98.205 54.957-137.722 59.219-163.318 2.906-17.434 19.392-29.21 36.822-26.307 17.434 2.906 29.213 19.389 26.307 36.822-5.453 32.749-20.333 76.41-58.006 165.088 5.261 4.166 13.069 9.306 23.357 15.059 5.315 2.973 13.485 6.554 24.963 11.571 10.656 4.656 23.437 10.266 35.174 16.515 11.261 5.994 24.419 14.029 34.202 24.538 10.234 10.992 20.973 29.846 13.299 52.864-5.053 15.168-16.794 25.939-26.576 33.094-10.627 7.776-23.814 14.762-38.253 21.027-29.005 12.592-67.027 23.965-109.68 32.986-85.312 18.038-193.584 27.587-293.616 16.47-99.955-11.104-202.742-44.63-278.471-108.707-76.833-65.014-123.811-159.997-112.66-287.222 0.286-65.549 19.841-162.349 78.561-243.904 60.333-83.796 160.605-149.302 316.103-149.302 17.674 0 32 14.327 32 32s-14.326 32-32 32c-134.637 0-215.697 55.382-264.164 122.698z"],"attrs":[{"fill":"rgb(108, 114, 122)"}],"isMulticolor":false,"isMulticolor2":false,"colorPermutations":{"1081141221158162168120320620912282312341243190812456992125519219212552552551291162451452241651699010019902101":[{"f":2}]},"tags":["chat-close"],"grid":0},"attrs":[{"fill":"rgb(108, 114, 122)"}],"properties":{"order":200,"id":55,"name":"chat-close","prevSize":32,"code":59697},"setIdx":0,"setId":4,"iconIdx":61},{"icon":{"paths":["M778 93.833c-11.795-13.162-32.026-14.271-45.187-2.477s-14.272 32.025-2.477 45.187l81.222 90.645h-216.358c-17.674 0-32 14.327-32 32s14.326 32 32 32h216.358l-81.222 90.646c-11.795 13.162-10.685 33.392 2.477 45.187 13.162 11.792 33.392 10.685 45.187-2.477l129.030-144.001c10.893-12.154 10.893-30.556 0-42.71l-129.030-144zM159.999 512.010c0-55.322 16.86-139.021 66.502-207.968 48.467-67.316 129.527-122.698 264.164-122.698 17.674 0 32-14.327 32-32s-14.326-32-32-32c-155.498 0-255.77 65.507-316.102 149.302-58.72 81.555-78.275 178.355-78.561 243.904-11.151 127.229 35.827 222.211 112.66 287.222 75.729 64.077 178.516 97.603 278.471 108.707 100.032 11.117 208.304 1.568 293.616-16.47 42.653-9.021 80.675-20.394 109.68-32.982 14.438-6.269 27.626-13.254 38.253-21.030 9.782-7.155 21.523-17.926 26.579-33.094 7.67-23.018-3.069-41.872-13.302-52.864-9.782-10.509-22.941-18.544-34.202-24.538-11.738-6.25-24.518-11.859-35.171-16.515-11.482-5.018-19.651-8.598-24.966-11.571-10.288-5.754-18.096-10.89-23.357-15.059 37.674-88.678 52.554-132.339 58.010-165.088 2.902-17.43-8.877-33.917-26.31-36.822-17.43-2.902-33.917 8.877-36.822 26.307-4.262 25.597-17.133 65.114-59.219 163.318-5.917 13.808-2.902 26.858 1.309 35.6 3.978 8.256 9.92 14.886 15.146 19.827 10.614 10.042 25.171 19.478 40.003 27.776 8.186 4.576 18.989 9.296 28.656 13.517v0l1.914 0.835c10.957 4.79 21.51 9.456 30.733 14.368 3.558 1.891 6.541 3.632 9.005 5.197-5.299 3.341-12.493 7.114-21.738 11.126-23.827 10.342-57.421 20.614-97.44 29.075-80.038 16.928-181.341 25.699-273.309 15.482-92.045-10.227-181.258-40.704-244.196-93.958-61.545-52.077-99.836-127.29-90.135-234.006l0.132-1.446v-1.453z"],"attrs":[{"fill":"rgb(108, 114, 122)"}],"isMulticolor":false,"isMulticolor2":false,"colorPermutations":{"1081141221158162168120320620912282312341243190812456992125519219212552552551291162451452241651699010019902101":[{"f":2}]},"tags":["chat-forward"],"grid":0},"attrs":[{"fill":"rgb(108, 114, 122)"}],"properties":{"order":201,"id":56,"name":"chat-forward","prevSize":32,"code":59698},"setIdx":0,"setId":4,"iconIdx":62},{"icon":{"paths":["M854.506 233.252c12.563 12.429 12.672 32.691 0.243 45.254l-474.877 480c-6.013 6.077-14.208 9.498-22.755 9.494-8.55-0.003-16.742-3.427-22.752-9.507l-165.126-167.088c-12.423-12.57-12.303-32.832 0.268-45.254s32.831-12.304 45.254 0.269l142.375 144.067 452.115-456.992c12.429-12.564 32.691-12.672 45.254-0.243z"],"attrs":[{"fill":"rgb(108, 114, 122)"}],"isMulticolor":false,"isMulticolor2":false,"colorPermutations":{"1081141221158162168120320620912282312341243190812456992125519219212552552551291162451452241651699010019902101":[{"f":2}]},"tags":["check"],"grid":0},"attrs":[{"fill":"rgb(108, 114, 122)"}],"properties":{"order":202,"id":57,"name":"check","prevSize":32,"code":59699},"setIdx":0,"setId":4,"iconIdx":63},{"icon":{"paths":["M281.372 436.042c12.497-12.499 32.758-12.499 45.255 0l185.373 185.373 185.373-185.373c12.496-12.499 32.758-12.499 45.254 0 12.496 12.496 12.496 32.758 0 45.254l-208 208c-12.496 12.496-32.758 12.496-45.254 0l-208-208c-12.497-12.496-12.497-32.758 0-45.254z"],"attrs":[{"fill":"rgb(108, 114, 122)"}],"isMulticolor":false,"isMulticolor2":false,"colorPermutations":{"1081141221158162168120320620912282312341243190812456992125519219212552552551291162451452241651699010019902101":[{"f":2}]},"tags":["chevron-down"],"grid":0},"attrs":[{"fill":"rgb(108, 114, 122)"}],"properties":{"order":203,"id":58,"name":"chevron-down","prevSize":32,"code":59700},"setIdx":0,"setId":4,"iconIdx":64},{"icon":{"paths":["M670.17 183.165c16.662 16.662 16.662 43.677 0 60.34l-268.496 268.495 268.496 268.499c16.662 16.662 16.662 43.677 0 60.339s-43.677 16.662-60.339 0l-298.668-298.669c-8.002-8-12.497-18.851-12.497-30.17 0-11.315 4.495-22.166 12.497-30.17l298.668-298.666c16.662-16.662 43.677-16.662 60.339 0z"],"attrs":[{"fill":"rgb(108, 114, 122)"}],"isMulticolor":false,"isMulticolor2":false,"colorPermutations":{"1081141221158162168120320620912282312341243190812456992125519219212552552551291162451452241651699010019902101":[{"f":2}]},"tags":["chevron-left-big"],"grid":0},"attrs":[{"fill":"rgb(108, 114, 122)"}],"properties":{"order":204,"id":59,"name":"chevron-left-big","prevSize":32,"code":59701},"setIdx":0,"setId":4,"iconIdx":65},{"icon":{"paths":["M587.962 281.372c12.496 12.497 12.496 32.758 0 45.255l-185.373 185.373 185.373 185.373c12.496 12.496 12.496 32.758 0 45.254-12.499 12.496-32.758 12.496-45.258 0l-208-208c-12.496-12.496-12.496-32.758 0-45.254l208-208c12.499-12.497 32.758-12.497 45.258 0z"],"attrs":[{"fill":"rgb(108, 114, 122)"}],"isMulticolor":false,"isMulticolor2":false,"colorPermutations":{"1081141221158162168120320620912282312341243190812456992125519219212552552551291162451452241651699010019902101":[{"f":2}]},"tags":["chevron-left"],"grid":0},"attrs":[{"fill":"rgb(108, 114, 122)"}],"properties":{"order":205,"id":60,"name":"chevron-left","prevSize":32,"code":59702},"setIdx":0,"setId":4,"iconIdx":66},{"icon":{"paths":["M436.038 742.627c-12.496-12.496-12.496-32.758 0-45.254l185.373-185.373-185.373-185.373c-12.496-12.497-12.496-32.758 0-45.254 12.499-12.497 32.758-12.497 45.254 0l208 208c12.499 12.496 12.499 32.758 0 45.254l-207.997 208c-12.499 12.496-32.758 12.496-45.258 0z"],"attrs":[{"fill":"rgb(108, 114, 122)"}],"isMulticolor":false,"isMulticolor2":false,"colorPermutations":{"1081141221158162168120320620912282312341243190812456992125519219212552552551291162451452241651699010019902101":[{"f":2}]},"tags":["chevron-right"],"grid":0},"attrs":[{"fill":"rgb(108, 114, 122)"}],"properties":{"order":206,"id":61,"name":"chevron-right","prevSize":32,"code":59703},"setIdx":0,"setId":4,"iconIdx":67},{"icon":{"paths":["M742.627 587.958c-12.496 12.499-32.758 12.499-45.254 0l-185.373-185.373-185.373 185.373c-12.496 12.499-32.758 12.499-45.254 0-12.497-12.496-12.497-32.758 0-45.254l208-208c12.496-12.496 32.758-12.496 45.254 0l208 208c12.496 12.496 12.496 32.758 0 45.254z"],"attrs":[{"fill":"rgb(108, 114, 122)"}],"isMulticolor":false,"isMulticolor2":false,"colorPermutations":{"1081141221158162168120320620912282312341243190812456992125519219212552552551291162451452241651699010019902101":[{"f":2}]},"tags":["chevron-up"],"grid":0},"attrs":[{"fill":"rgb(108, 114, 122)"}],"properties":{"order":207,"id":62,"name":"chevron-up","prevSize":32,"code":59704},"setIdx":0,"setId":4,"iconIdx":68},{"icon":{"paths":["M512 864c194.403 0 352-157.597 352-352 0-46.522-9.024-90.931-25.418-131.581l48.518-48.518c26.211 54.496 40.899 115.581 40.899 180.099 0 229.75-186.25 416-416 416s-416-186.25-416-416c0-229.75 186.25-416 416-416 95.376 0 183.254 32.096 253.424 86.076l-45.712 45.712c-58.221-42.623-130.029-67.788-207.712-67.788-194.404 0-352 157.596-352 352s157.596 352 352 352zM902.63 230.623c12.496-12.499 12.493-32.76-0.006-45.255s-32.762-12.491-45.254 0.008l-345.386 345.503-105.341-105.491c-12.486-12.506-32.749-12.522-45.254-0.032-12.506 12.486-12.522 32.749-0.032 45.254l127.971 128.157c6 6.006 14.144 9.386 22.634 9.389 8.493 0 16.637-3.373 22.64-9.376l368.029-368.157z"],"attrs":[{"fill":"rgb(108, 114, 122)"}],"isMulticolor":false,"isMulticolor2":false,"colorPermutations":{"1081141221158162168120320620912282312341243190812456992125519219212552552551291162451452241651699010019902101":[{"f":2}]},"tags":["circle-check"],"grid":0},"attrs":[{"fill":"rgb(108, 114, 122)"}],"properties":{"order":208,"id":63,"name":"circle-check","prevSize":32,"code":59705},"setIdx":0,"setId":4,"iconIdx":69},{"icon":{"paths":["M608 192c0-53.019-42.979-96-96-96s-96 42.981-96 96h-192c-17.673 0-32 14.327-32 32v672c0 17.674 14.327 32 32 32h576c17.674 0 32-14.326 32-32v-672c0-17.673-14.326-32-32-32h-192zM256 864v-608h96v64c0 17.674 14.326 32 32 32h256c17.674 0 32-14.326 32-32v-64h96v608h-512zM512 224c17.674 0 32-14.327 32-32s-14.326-32-32-32c-17.674 0-32 14.327-32 32s14.326 32 32 32z"],"attrs":[{"fill":"rgb(108, 114, 122)"}],"isMulticolor":false,"isMulticolor2":false,"colorPermutations":{"1081141221158162168120320620912282312341243190812456992125519219212552552551291162451452241651699010019902101":[{"f":2}]},"tags":["clipboard"],"grid":0},"attrs":[{"fill":"rgb(108, 114, 122)"}],"properties":{"order":209,"id":64,"name":"clipboard","prevSize":32,"code":59706},"setIdx":0,"setId":4,"iconIdx":70},{"icon":{"paths":["M864 512c0 194.403-157.597 352-352 352s-352-157.597-352-352c0-194.404 157.596-352 352-352s352 157.596 352 352zM928 512c0-229.75-186.25-416-416-416s-416 186.25-416 416c0 229.75 186.25 416 416 416s416-186.25 416-416zM544 288c0-17.673-14.326-32-32-32s-32 14.327-32 32v224c0 8.486 3.373 16.627 9.373 22.627l96 96c12.496 12.496 32.758 12.496 45.254 0s12.496-32.758 0-45.254l-86.627-86.627v-210.746z"],"attrs":[{"fill":"rgb(108, 114, 122)"}],"isMulticolor":false,"isMulticolor2":false,"colorPermutations":{"1081141221158162168120320620912282312341243190812456992125519219212552552551291162451452241651699010019902101":[{"f":2}]},"tags":["clock"],"grid":0},"attrs":[{"fill":"rgb(108, 114, 122)"}],"properties":{"order":210,"id":65,"name":"clock","prevSize":32,"code":59707},"setIdx":0,"setId":4,"iconIdx":71},{"icon":{"paths":["M806.627 262.628c12.496-12.497 12.496-32.758 0-45.255s-32.758-12.497-45.254 0l-249.373 249.373-249.372-249.373c-12.497-12.497-32.758-12.497-45.255 0s-12.497 32.758 0 45.255l249.373 249.372-249.373 249.373c-12.497 12.496-12.497 32.758 0 45.254s32.758 12.496 45.255 0l249.372-249.373 249.373 249.373c12.496 12.496 32.758 12.496 45.254 0s12.496-32.758 0-45.254l-249.373-249.373 249.373-249.372z"],"attrs":[{"fill":"rgb(108, 114, 122)"}],"isMulticolor":false,"isMulticolor2":false,"colorPermutations":{"1081141221158162168120320620912282312341243190812456992125519219212552552551291162451452241651699010019902101":[{"f":2}]},"tags":["close"],"grid":0},"attrs":[{"fill":"rgb(108, 114, 122)"}],"properties":{"order":211,"id":66,"name":"close","prevSize":32,"code":59708},"setIdx":0,"setId":4,"iconIdx":72},{"icon":{"paths":["M273.129 356.678c6.747-28.298 25.696-52.004 51.21-67.152 25.6-15.2 56.323-20.858 84.698-14.53 27.642 6.163 55.117 24.12 74.874 60.339l22.541 41.325 30.134-36.16c27.238-32.689 85.126-39.713 134.714-14.064 23.562 12.186 42.208 30.618 52.064 53.488 9.654 22.406 12.112 51.898-1.434 89.149l-15.616 42.938h45.686c53.606 0 82.419 15.882 97.642 33.75 15.651 18.374 21.898 44.646 18.557 74.714-3.344 30.083-16.054 60.518-33.456 82.89-17.939 23.066-36.646 32.646-50.742 32.646h-543.998c-18.791 0-37.068-10.362-52.195-31.578-15.217-21.344-24.978-51.050-25.818-81.312-0.84-30.227 7.237-57.914 23.733-77.491 15.796-18.746 42.268-33.619 86.279-33.619h59.791l-33.165-49.75c-27.882-41.824-32.118-77.814-25.498-105.581zM518.218 272.084c-26.339-32.073-59.667-51.619-95.251-59.554-45.626-10.174-92.902-0.833-131.301 21.965-38.487 22.85-69.538 60.142-80.791 107.342-8.278 34.72-5.369 72.758 10.731 111.77-35.67 8.464-64.099 26.186-84.825 50.784-29.004 34.422-39.927 78.733-38.766 120.506 1.159 41.738 14.399 84.032 37.682 116.688 23.373 32.784 59.097 58.426 104.306 58.426h543.999c41.907 0 77.2-26.419 101.261-57.354 24.598-31.629 41.888-73.197 46.544-115.114 4.659-41.933-3.094-87.658-33.443-123.283-24.106-28.301-59.504-46.774-105.616-53.456 5.83-35.194 1.686-67.674-10.605-96.205-16.646-38.628-46.998-67.197-81.437-85.010-54.902-28.397-128.733-32.652-182.486 2.495zM512 437.331c17.674 0 32 14.33 32 32v53.328h53.334c17.674 0 32 14.33 32 32 0 17.674-14.326 32-32 32h-53.334v53.341c0 17.674-14.326 32-32 32s-32-14.326-32-32v-53.341h-53.331c-17.674 0-32-14.326-32-32 0-17.67 14.326-32 32-32h53.331v-53.328c0-17.67 14.326-32 32-32z"],"attrs":[{"fill":"rgb(108, 114, 122)"}],"isMulticolor":false,"isMulticolor2":false,"colorPermutations":{"1081141221158162168120320620912282312341243190812456992125519219212552552551291162451452241651699010019902101":[{"f":2}]},"tags":["cloud-connectivity"],"grid":0},"attrs":[{"fill":"rgb(108, 114, 122)"}],"properties":{"order":212,"id":67,"name":"cloud-connectivity","prevSize":32,"code":59709},"setIdx":0,"setId":4,"iconIdx":73},{"icon":{"paths":["M630.154 204.798c16.496 6.344 24.723 24.859 18.381 41.355l-213.334 554.667c-6.342 16.496-24.858 24.723-41.354 18.381-16.496-6.346-24.723-24.861-18.381-41.357l213.334-554.666c6.346-16.495 24.858-24.724 41.354-18.38zM321.293 361.37c12.499 12.499 12.499 32.758 0 45.258l-105.371 105.37 105.371 105.373c12.499 12.499 12.499 32.758 0 45.258-12.495 12.496-32.756 12.496-45.253 0l-128-128c-12.497-12.499-12.497-32.758 0-45.258l128-128c12.497-12.496 32.758-12.496 45.253 0zM702.707 361.37c12.496-12.496 32.758-12.496 45.254 0l128 128c12.496 12.499 12.496 32.758 0 45.258l-128 128c-12.496 12.496-32.758 12.496-45.254 0-12.499-12.499-12.499-32.758 0-45.258l105.373-105.373-105.373-105.37c-12.499-12.499-12.499-32.758 0-45.258z"],"attrs":[{"fill":"rgb(108, 114, 122)"}],"isMulticolor":false,"isMulticolor2":false,"colorPermutations":{"1081141221158162168120320620912282312341243190812456992125519219212552552551291162451452241651699010019902101":[{"f":2}]},"tags":["code"],"grid":0},"attrs":[{"fill":"rgb(108, 114, 122)"}],"properties":{"order":213,"id":68,"name":"code","prevSize":32,"code":59710},"setIdx":0,"setId":4,"iconIdx":74},{"icon":{"paths":["M770.704 224c17.674 0 32 14.327 32 32v544c0 17.674-14.326 32-32 32h-543.999c-17.673 0-32-14.326-32-32v-128c17.673 0 32-14.326 32-32s-14.327-32-32-32v-192c17.673 0 32-14.326 32-32s-14.327-32-32-32v-96c0-17.673 14.327-32 32-32h543.999zM130.705 608c-17.673 0-32 14.326-32 32s14.327 32 32 32v128c0 53.021 42.981 96 96 96h543.999c53.021 0 96-42.979 96-96v-544c0-53.019-42.979-96-96-96h-543.999c-53.019 0-96 42.981-96 96v96c-17.673 0-32 14.326-32 32s14.327 32 32 32v192zM427.91 514.266c13.315-3.568 27.309-3.789 40.73-0.643l31.52 7.389c8.73 2.045 17.83 1.904 26.49-0.416l22.186-5.942c14.285-3.827 29.328-4.042 43.683-0.675 40.429 9.475 69.325 45.584 69.325 87.277v24.336c0 31.811-25.789 57.6-57.6 57.6h-180.739c-31.811 0-57.6-25.789-57.6-57.6v-30.525c0-37.862 25.434-71.005 62.006-80.8zM456.957 563.472c-5.206-1.219-10.634-1.133-15.798 0.25-14.189 3.798-24.054 16.656-24.054 31.344v30.525c0 3.536 2.867 6.4 6.4 6.4h180.739c3.533 0 6.4-2.864 6.4-6.4v-24.336c0-17.75-12.365-33.341-29.808-37.427-6.186-1.45-12.662-1.35-18.752 0.282l-22.186 5.942c-16.813 4.502-34.474 4.781-51.421 0.81l-31.52-7.389zM539.155 420.48c0-13.962-11.318-25.28-25.28-25.28s-25.283 11.318-25.283 25.28c0 13.962 11.322 25.28 25.283 25.28s25.28-11.318 25.28-25.28zM590.355 420.48c0 42.24-34.243 76.48-76.48 76.48-42.24 0-76.483-34.24-76.483-76.48s34.243-76.48 76.483-76.48c42.237 0 76.48 34.24 76.48 76.48z"],"width":1056,"attrs":[{"fill":"rgb(108, 114, 122)"}],"isMulticolor":false,"isMulticolor2":false,"colorPermutations":{"1081141221158162168120320620912282312341243190812456992125519219212552552551291162451452241651699010019902101":[{"f":2}]},"tags":["contacts"],"grid":0},"attrs":[{"fill":"rgb(108, 114, 122)"}],"properties":{"order":214,"id":69,"name":"contacts","prevSize":32,"code":59711},"setIdx":0,"setId":4,"iconIdx":75},{"icon":{"paths":["M464 272c-35.347 0-64 28.654-64 64v480c0 35.347 28.653 64 64 64h352c35.347 0 64-28.653 64-64v-304c0-6.509-1.984-12.864-5.69-18.214l-134.458-194.215c-11.952-17.267-31.619-27.571-52.621-27.571h-223.232zM464 336h144v144c0 35.347 28.653 64 64 64h144v272h-352v-480zM672 480v-144h15.232l99.693 144h-114.925zM144 208c0-35.346 28.654-64 64-64h241.844c18.032 0 35.229 7.607 47.357 20.949l39.136 43.051h-328.336v480h128v64h-128c-35.346 0-64-28.653-64-64v-480z"],"attrs":[{"fill":"rgb(108, 114, 122)"}],"isMulticolor":false,"isMulticolor2":false,"colorPermutations":{"1081141221158162168120320620912282312341243190812456992125519219212552552551291162451452241651699010019902101":[{"f":2}]},"tags":["copy"],"grid":0},"attrs":[{"fill":"rgb(108, 114, 122)"}],"properties":{"order":215,"id":70,"name":"copy","prevSize":32,"code":59712},"setIdx":0,"setId":4,"iconIdx":76},{"icon":{"paths":["M824.682 183.521c-37.19-37.986-98.202-38.583-136.131-1.333l-348.48 342.237c-12.739 12.512-21.733 28.32-25.976 45.654l-23.681 96.749c-6.94 28.355 16.754 54.845 45.747 51.142l90.691-11.578c20.224-2.582 39.104-11.52 53.907-25.52l360.486-340.922c38.986-36.868 40.173-98.482 2.637-136.82l-19.2-19.61zM733.485 227.821c12.643-12.417 32.979-12.218 45.376 0.444l19.2 19.61c12.512 12.78 12.115 33.317-0.88 45.607l-69.965 66.169-63.446-63.364 69.715-68.466zM618.074 341.162l62.592 62.512-243.971 230.73c-4.934 4.666-11.229 7.645-17.968 8.506l-58.307 7.443 15.926-65.075c1.414-5.779 4.413-11.046 8.659-15.219l233.069-228.896zM193.608 265.602c0-17.673 14.346-32 32.042-32h281.332c17.696 0 32.042-14.327 32.042-32s-14.346-32-32.042-32h-281.332c-53.089 0-96.127 42.981-96.127 96v534.402c0 53.018 43.037 95.997 96.127 95.997h529.764c53.091 0 96.128-42.979 96.128-96v-279.414c0-17.67-14.346-32-32.042-32s-32.042 14.33-32.042 32v279.414c0 17.674-14.346 32-32.045 32h-529.764c-17.696 0-32.042-14.326-32.042-31.997v-534.402z"],"width":1056,"attrs":[{"fill":"rgb(108, 114, 122)"}],"isMulticolor":false,"isMulticolor2":false,"colorPermutations":{"1081141221158162168120320620912282312341243190812456992125519219212552552551291162451452241651699010019902101":[{"f":2}]},"tags":["create"],"grid":0},"attrs":[{"fill":"rgb(108, 114, 122)"}],"properties":{"order":216,"id":71,"name":"create","prevSize":32,"code":59713},"setIdx":0,"setId":4,"iconIdx":77},{"icon":{"paths":["M717.373 298.663c0-17.673-14.326-32-32-32s-32 14.327-32 32v426.665c0 17.674 14.326 32 32 32s32-14.326 32-32v-426.665z","M514.704 394.672c17.674 0 32 14.326 32 32v298.666c0 17.674-14.326 32-32 32s-32-14.326-32-32v-298.666c0-17.674 14.326-32 32-32z","M376.038 554.672c0-17.674-14.326-32-32-32s-32 14.326-32 32v170.669c0 17.67 14.327 32 32 32s32-14.33 32-32v-170.669z","M130.705 199.556v624.889c0 39.52 32.036 71.555 71.556 71.555h624.888c39.52 0 71.555-32.035 71.555-71.555v-624.889c0-39.519-32.035-71.556-71.555-71.556h-624.888c-39.519 0-71.556 32.036-71.556 71.556zM202.26 192h624.888c4.173 0 7.555 3.383 7.555 7.556v624.889c0 4.173-3.382 7.555-7.555 7.555h-624.888c-4.173 0-7.556-3.382-7.556-7.555v-624.889c0-4.173 3.383-7.556 7.556-7.556z"],"width":1056,"attrs":[{"fill":"rgb(108, 114, 122)"},{"fill":"rgb(108, 114, 122)"},{"fill":"rgb(108, 114, 122)"},{"fill":"rgb(108, 114, 122)"}],"isMulticolor":false,"isMulticolor2":false,"colorPermutations":{"1081141221158162168120320620912282312341243190812456992125519219212552552551291162451452241651699010019902101":[{"f":2},{"f":2},{"f":2},{"f":2}]},"tags":["dashboard"],"grid":0},"attrs":[{"fill":"rgb(108, 114, 122)"},{"fill":"rgb(108, 114, 122)"},{"fill":"rgb(108, 114, 122)"},{"fill":"rgb(108, 114, 122)"}],"properties":{"order":217,"id":72,"name":"dashboard","prevSize":32,"code":59714},"setIdx":0,"setId":4,"iconIdx":78},{"icon":{"paths":["M739.68 864v-448h-448.593v448h448.593zM227.003 864v-448c-35.393 0-64.084-28.653-64.084-64v-128c0-35.346 28.692-64 64.084-64h224.297c0-35.346 28.691-64 64.083-64 35.395 0 64.086 28.654 64.086 64h224.294c35.395 0 64.086 28.654 64.086 64v128c0 35.347-28.691 64-64.086 64v448c0 35.347-28.691 64-64.083 64h-448.593c-35.393 0-64.085-28.653-64.085-64zM803.763 224h-576.761v128h576.761v-128zM419.258 544v192c0 17.674 14.346 32 32.042 32s32.042-14.326 32.042-32v-192c0-17.674-14.346-32-32.042-32s-32.042 14.326-32.042 32zM579.469 512c17.696 0 32.042 14.326 32.042 32v192c0 17.674-14.346 32-32.042 32s-32.042-14.326-32.042-32v-192c0-17.674 14.346-32 32.042-32z"],"width":1056,"attrs":[{"fill":"rgb(108, 114, 122)"}],"isMulticolor":false,"isMulticolor2":false,"colorPermutations":{"1081141221158162168120320620912282312341243190812456992125519219212552552551291162451452241651699010019902101":[{"f":2}]},"tags":["delete"],"grid":0},"attrs":[{"fill":"rgb(108, 114, 122)"}],"properties":{"order":218,"id":73,"name":"delete","prevSize":32,"code":59715},"setIdx":0,"setId":4,"iconIdx":79},{"icon":{"paths":["M341.334 778.672c-17.674 0-32 14.326-32 32s14.327 32 32 32h341.334c17.67 0 32-14.326 32-32s-14.33-32-32-32h-341.334z","M85.334 298.672c0-70.692 57.308-128 128-128h597.335c70.691 0 128 57.308 128 128v298.666c0 70.694-57.309 128-128 128h-597.335c-70.692 0-128-57.306-128-128v-298.666zM213.334 234.672c-35.346 0-64 28.654-64 64v298.666c0 35.347 28.654 64 64 64h597.335c35.344 0 64-28.653 64-64v-298.666c0-35.347-28.656-64-64-64h-597.335z"],"attrs":[{"fill":"rgb(108, 114, 122)"},{"fill":"rgb(108, 114, 122)"}],"isMulticolor":false,"isMulticolor2":false,"colorPermutations":{"1081141221158162168120320620912282312341243190812456992125519219212552552551291162451452241651699010019902101":[{"f":2},{"f":2}]},"tags":["desktop"],"grid":0},"attrs":[{"fill":"rgb(108, 114, 122)"},{"fill":"rgb(108, 114, 122)"}],"properties":{"order":219,"id":74,"name":"desktop","prevSize":32,"code":59716},"setIdx":0,"setId":4,"iconIdx":80},{"icon":{"paths":["M325.837 160c0-17.673-14.347-32-32.043-32h-64.085c-17.696 0-32.042 14.327-32.042 32v64c0 17.673 14.346 32 32.042 32h64.085c17.696 0 32.043-14.327 32.043-32v-64zM325.837 586.666c0-17.674-14.347-32-32.043-32h-64.085c-17.696 0-32.042 14.326-32.042 32v64c0 17.674 14.346 32 32.042 32h64.085c17.696 0 32.043-14.326 32.043-32v-64zM454.006 160c0-17.673 14.346-32 32.042-32h64.083c17.696 0 32.042 14.327 32.042 32v64c0 17.673-14.346 32-32.042 32h-64.083c-17.696 0-32.042-14.327-32.042-32v-64zM582.173 373.334c0-17.674-14.346-32-32.042-32h-64.083c-17.696 0-32.042 14.326-32.042 32v64c0 17.674 14.346 32 32.042 32h64.083c17.696 0 32.042-14.326 32.042-32v-64zM454.006 586.666c0-17.674 14.346-32 32.042-32h64.083c17.696 0 32.042 14.326 32.042 32v64c0 17.674-14.346 32-32.042 32h-64.083c-17.696 0-32.042-14.326-32.042-32v-64zM582.173 800c0-17.674-14.346-32-32.042-32h-64.083c-17.696 0-32.042 14.326-32.042 32v64c0 17.674 14.346 32 32.042 32h64.083c17.696 0 32.042-14.326 32.042-32v-64zM710.342 160c0-17.673 14.346-32 32.045-32h64.083c17.696 0 32.042 14.327 32.042 32v64c0 17.673-14.346 32-32.042 32h-64.083c-17.699 0-32.045-14.327-32.045-32v-64zM838.512 373.334c0-17.674-14.346-32-32.042-32h-64.083c-17.699 0-32.045 14.326-32.045 32v64c0 17.674 14.346 32 32.045 32h64.083c17.696 0 32.042-14.326 32.042-32v-64zM710.342 586.666c0-17.674 14.346-32 32.045-32h64.083c17.696 0 32.042 14.326 32.042 32v64c0 17.674-14.346 32-32.042 32h-64.083c-17.699 0-32.045-14.326-32.045-32v-64zM325.837 373.334c0-17.674-14.347-32-32.043-32h-64.085c-17.696 0-32.042 14.326-32.042 32v64c0 17.674 14.346 32 32.042 32h64.085c17.696 0 32.043-14.326 32.043-32v-64z"],"width":1056,"attrs":[{"fill":"rgb(108, 114, 122)"}],"isMulticolor":false,"isMulticolor2":false,"colorPermutations":{"1081141221158162168120320620912282312341243190812456992125519219212552552551291162451452241651699010019902101":[{"f":2}]},"tags":["dialpad"],"grid":0},"attrs":[{"fill":"rgb(108, 114, 122)"}],"properties":{"order":220,"id":75,"name":"dialpad","prevSize":32,"code":59717},"setIdx":0,"setId":4,"iconIdx":81},{"icon":{"paths":["M514.704 96c80.096 0 154.906 22.636 218.378 61.859l-46.746 46.746c-24.739-13.843-51.322-24.785-79.286-32.368 12.166 22.395 23.078 49.095 32.403 79.249l-51.997 51.999c-5.654-22.994-12.17-44.005-19.347-62.666-12.822-33.339-26.522-55.927-38.474-69.070-8.4-9.235-13.43-11.291-14.928-11.698-1.501 0.407-6.531 2.463-14.931 11.698-11.949 13.143-25.651 35.731-38.474 69.070-16.298 42.377-29.174 96.867-36.339 159.18h65.974l-63.997 64h-7.117c-0.115 2.47-0.221 4.95-0.32 7.437l-64.538 64.538c-0.173-7.933-0.259-15.926-0.259-23.974 0-16.234 0.355-32.25 1.053-48h-189.81c-2.14 15.696-3.245 31.718-3.245 48 0 33.28 4.619 65.485 13.251 96h106.984l-64 64h-17.852c2.004 3.92 4.078 7.798 6.223 11.629l-46.746 46.749c-39.223-63.475-61.859-138.282-61.859-218.378 0-229.75 186.25-416 415.999-416zM868.845 293.623l-46.746 46.748c10.56 18.87 19.434 38.816 26.413 59.629h-86.045l-64 64h164.992c2.141 15.696 3.245 31.718 3.245 48 0 33.28-4.618 65.485-13.248 96h-183.030c2.8-30.816 4.282-62.957 4.282-96 0-8.045-0.090-16.042-0.262-23.974l-64.538 64.534c-0.752 19.008-2.022 37.523-3.763 55.44h-51.677l-64 64h107.091c-7.37 42.458-17.488 80.083-29.45 111.184-12.822 33.338-26.522 55.926-38.474 69.069-8.397 9.235-13.43 11.29-14.928 11.699-1.501-0.41-6.531-2.464-14.931-11.699-11.949-13.142-25.651-35.731-38.474-69.069-7.178-18.662-13.693-39.677-19.347-62.669l-52 51.997c9.328 30.154 20.24 56.854 32.406 79.251-27.965-7.584-54.547-18.525-79.286-32.368l-46.747 46.746c63.348 39.146 137.985 61.77 217.899 61.859h0.957c229.53-0.259 415.52-186.41 415.52-416 0-80.096-22.634-154.902-61.859-218.377zM422.362 172.237c-113.55 30.788-204.31 116.98-241.464 227.763h179.676c10-93.226 32.176-173.252 61.789-227.763zM607.050 851.763c24.397-44.902 43.741-107.117 55.395-179.763h165.878c-44.653 87.35-124.723 153.584-221.274 179.763zM828.077 153.372c12.499-12.497 32.758-12.497 45.254 0 12.499 12.497 12.499 32.758 0 45.255l-671.999 672c-12.497 12.496-32.758 12.496-45.255 0s-12.497-32.758 0-45.254l671.999-672z"],"width":1056,"attrs":[{"fill":"rgb(108, 114, 122)"}],"isMulticolor":false,"isMulticolor2":false,"colorPermutations":{"1081141221158162168120320620912282312341243190812456992125519219212552552551291162451452241651699010019902101":[{"f":2}]},"tags":["directory-disabled"],"grid":0},"attrs":[{"fill":"rgb(108, 114, 122)"}],"properties":{"order":221,"id":76,"name":"directory-disabled","prevSize":32,"code":59718},"setIdx":0,"setId":4,"iconIdx":82},{"icon":{"paths":["M866.493 512c0 33.28-4.624 65.485-13.267 96h-183.27c2.803-30.816 4.285-62.957 4.285-96 0-16.234-0.358-32.25-1.053-48h190.058c2.141 15.696 3.248 31.718 3.248 48zM609.037 464c0.736 15.67 1.12 31.686 1.12 48 0 33.398-1.606 65.555-4.57 96h-183.117c-2.96-30.445-4.566-62.602-4.566-96 0-16.314 0.381-32.33 1.12-48h190.013zM668.368 400c-10.013-93.226-32.218-173.252-61.872-227.763 113.699 30.788 204.579 116.981 241.782 227.763h-179.91zM421.565 172.237c-29.654 54.51-51.859 134.537-61.872 227.763h-179.913c37.204-110.782 128.083-196.975 241.785-227.763zM424.17 400c7.171-62.314 20.067-116.804 36.387-159.18 12.838-33.339 26.557-55.927 38.525-69.070 8.41-9.235 13.446-11.291 14.947-11.698 1.501 0.407 6.541 2.463 14.95 11.698 11.965 13.143 25.683 35.731 38.525 69.070 16.32 42.377 29.213 96.867 36.387 159.18h-179.722zM354.874 464c-0.698 15.75-1.056 31.766-1.056 48 0 33.043 1.485 65.184 4.288 96h-183.274c-8.643-30.515-13.268-62.72-13.268-96 0-16.282 1.107-32.304 3.249-48h190.060zM366.096 672c11.667 72.646 31.040 134.861 55.466 179.763-96.675-26.179-176.853-92.413-221.565-179.763h166.099zM514.509 928c229.834-0.259 416.070-186.41 416.070-416 0-229.75-186.496-416-416.55-416s-416.549 186.25-416.549 416c0 229.59 186.237 415.741 416.073 416 0.16 0 0.317 0 0.477 0s0.32 0 0.48 0zM606.496 851.763c24.426-44.902 43.798-107.117 55.466-179.763h166.099c-44.71 87.35-124.886 153.584-221.565 179.763zM596.992 672c-7.379 42.458-17.51 80.083-29.488 111.184-12.842 33.338-26.56 55.926-38.525 69.069-8.41 9.235-13.45 11.29-14.95 11.699-1.501-0.41-6.538-2.464-14.947-11.699-11.968-13.142-25.686-35.731-38.525-69.069-11.978-31.101-22.112-68.726-29.491-111.184h165.926z"],"width":1056,"attrs":[{"fill":"rgb(108, 114, 122)"}],"isMulticolor":false,"isMulticolor2":false,"colorPermutations":{"1081141221158162168120320620912282312341243190812456992125519219212552552551291162451452241651699010019902101":[{"f":2}]},"tags":["directory"],"grid":0},"attrs":[{"fill":"rgb(108, 114, 122)"}],"properties":{"order":222,"id":77,"name":"directory","prevSize":32,"code":59719},"setIdx":0,"setId":4,"iconIdx":83},{"icon":{"paths":["M561.667 127.992c-121.696 0-200.973 50.509-248.813 115.801-46.216 63.073-61.638 137.752-61.933 188.616-8.705 98.746 28.601 172.896 89.422 223.469 59.686 49.626 140.202 75.258 217.85 83.738 77.75 8.486 161.715 1.197 227.856-12.547 33.066-6.87 62.774-15.581 85.642-25.331 11.366-4.848 22.029-10.368 30.797-16.669 7.875-5.661 18.541-14.976 23.242-28.835 7.286-21.475-3.133-38.784-11.965-48.102-8.41-8.877-19.427-15.405-28.24-20.016-9.306-4.867-19.379-9.206-27.533-12.707-8.973-3.856-14.858-6.4-18.56-8.432-4.845-2.662-8.842-5.088-12.026-7.203 20.256-47.142 31.549-77.043 37.696-99.19 7.293-26.272 7.315-41.725 7.315-58.909 0-21.523-9.603-88.542-52.81-151.108-44.701-64.73-124.074-122.573-257.939-122.573zM314.916 433.898c0-40.416 12.607-101.84 49.564-152.277 35.782-48.836 95.882-89.628 197.187-89.628 112.086 0 172.090 46.886 205.277 94.94 34.678 50.219 41.472 104.040 41.472 114.741v0.198c0 14.918 0 23.638-4.982 41.594-5.491 19.779-16.963 50.189-41.539 106.538-5.802 13.296-2.762 25.77 1.155 33.754 3.664 7.478 9.005 13.242 13.331 17.261 8.835 8.211 20.653 15.686 32.224 22.045 6.618 3.638 15.238 7.334 22.563 10.477l1.562 0.672c5.904 2.534 11.52 4.97 16.688 7.418-0.909 0.406-1.856 0.819-2.835 1.238-17.741 7.568-43.078 15.206-73.555 21.539-60.947 12.666-138.064 19.21-207.888 11.587-69.926-7.635-136.982-30.336-183.878-69.328-45.459-37.798-73.674-92.064-66.481-169.821l0.136-1.469v-1.478zM819.162 553.354l-0.074-0.086c0 0.003 0.010 0.013 0.029 0.035 0.010 0.013 0.026 0.029 0.045 0.051z","M178.552 502.474c7.496-11.258 16.26-22.259 26.436-32.592 0.876 31.747 6.169 61.226 15.216 88.358-15.094 30.877-18.374 59.315-18.374 65.357v0.186c0 11.382 0 17.536 3.524 30.701 3.993 14.918 12.441 38.211 30.867 82.022 5.256 12.496 2.48 24.099-0.985 31.43-3.249 6.874-7.925 12.058-11.512 15.514-7.319 7.053-16.852 13.254-25.75 18.326-5.008 2.854-11.333 5.706-16.546 8.029 11.182 3.939 24.98 7.814 40.802 11.226 44.977 9.693 101.833 14.669 153.062 8.87 51.28-5.808 99.776-23.014 133.35-51.965l0.608-0.528c14.794 2.784 29.53 4.938 44.051 6.525 10.886 1.187 21.862 2.086 32.877 2.72-10.122 14.797-22.163 28.045-35.741 39.754-46.362 39.974-108.547 60.362-167.946 67.088-59.45 6.73-123.405 0.947-173.744-9.901-25.17-5.424-48.056-12.352-65.901-20.243-8.86-3.92-17.458-8.502-24.686-13.891-6.431-4.794-15.831-13.171-20.001-25.92-6.422-19.632 2.792-35.443 10.458-43.834 7.193-7.872 16.405-13.462 23.248-17.174 7.309-3.965 15.158-7.466 21.235-10.173 6.907-3.078 10.854-4.858 13.183-6.186 1.349-0.768 2.591-1.501 3.727-2.195-13.937-33.885-21.976-56.118-26.48-72.947-5.68-21.222-5.7-33.875-5.7-47.434 0-17.712 7.436-71.139 40.721-121.123zM155.337 797.248c-0.012 0 0.084 0.102 0.317 0.301-0.19-0.202-0.306-0.301-0.317-0.301zM179.587 737.085c-0.004 0-0.052 0.051-0.137 0.15l0.112-0.118c0.019-0.022 0.027-0.032 0.025-0.032z"],"attrs":[{"fill":"rgb(108, 114, 122)"},{"fill":"rgb(108, 114, 122)"}],"isMulticolor":false,"isMulticolor2":false,"colorPermutations":{"1081141221158162168120320620912282312341243190812456992125519219212552552551291162451452241651699010019902101":[{"f":2},{"f":2}]},"tags":["discussions"],"grid":0},"attrs":[{"fill":"rgb(108, 114, 122)"},{"fill":"rgb(108, 114, 122)"}],"properties":{"order":223,"id":78,"name":"discussions","prevSize":32,"code":59720},"setIdx":0,"setId":4,"iconIdx":84},{"icon":{"paths":["M160 256c0-17.673 14.327-32 32-32h640c17.674 0 32 14.327 32 32s-14.326 32-32 32h-640c-17.673 0-32-14.327-32-32zM160 421.162c0-17.674 14.327-32 32-32h640c17.674 0 32 14.326 32 32s-14.326 32-32 32h-640c-17.673 0-32-14.326-32-32zM160 602.838c0-17.674 14.327-32 32-32h640c17.674 0 32 14.326 32 32s-14.326 32-32 32h-640c-17.673 0-32-14.326-32-32zM160 768c0-17.674 14.327-32 32-32h344.614c17.674 0 32 14.326 32 32s-14.326 32-32 32h-344.614c-17.673 0-32-14.326-32-32z"],"attrs":[{"fill":"rgb(108, 114, 122)"}],"isMulticolor":false,"isMulticolor2":false,"colorPermutations":{"1081141221158162168120320620912282312341243190812456992125519219212552552551291162451452241651699010019902101":[{"f":2}]},"tags":["document"],"grid":0},"attrs":[{"fill":"rgb(108, 114, 122)"}],"properties":{"order":224,"id":79,"name":"document","prevSize":32,"code":59721},"setIdx":0,"setId":4,"iconIdx":85},{"icon":{"paths":["M128.169 352c0-17.674 14.346-32 32.042-32h704.928c17.696 0 32.045 14.326 32.045 32s-14.349 32-32.045 32h-704.928c-17.696 0-32.042-14.326-32.042-32zM213.615 522.669c0-17.674 14.346-32 32.042-32h534.036c17.699 0 32.045 14.326 32.045 32s-14.346 32-32.045 32h-534.036c-17.697 0-32.042-14.326-32.042-32zM331.104 661.331c-17.698 0-32.043 14.326-32.043 32s14.346 32 32.043 32h363.146c17.696 0 32.042-14.326 32.042-32s-14.346-32-32.042-32h-363.146z"],"width":1056,"attrs":[{"fill":"rgb(108, 114, 122)"}],"isMulticolor":false,"isMulticolor2":false,"colorPermutations":{"1081141221158162168120320620912282312341243190812456992125519219212552552551291162451452241651699010019902101":[{"f":2}]},"tags":["donner"],"grid":0},"attrs":[{"fill":"rgb(108, 114, 122)"}],"properties":{"order":225,"id":80,"name":"donner","prevSize":32,"code":59722},"setIdx":0,"setId":4,"iconIdx":86},{"icon":{"paths":["M273.128 356.678c-6.62 27.766-2.384 63.757 25.498 105.581l21.374 32.061v17.69h-48c-44.011 0-70.483 14.874-86.278 33.619-16.496 19.578-24.573 47.264-23.734 77.491 0.841 30.262 10.601 59.968 25.818 81.312 15.127 21.216 33.404 31.578 52.195 31.578h79.999v64h-80c-45.209 0-80.932-25.642-104.306-58.426-23.283-32.656-36.522-74.95-37.682-116.688-1.16-41.773 9.763-86.083 38.766-120.506 20.726-24.598 49.155-42.32 84.825-50.784-16.1-39.011-19.009-77.050-10.731-111.77 11.253-47.2 42.304-84.492 80.791-107.342 38.4-22.798 85.677-32.139 131.303-21.965 35.584 7.935 68.909 27.48 95.251 59.554 53.75-35.147 127.584-30.892 182.483-2.495 34.438 17.812 64.794 46.382 81.437 85.010 12.294 28.531 16.438 61.011 10.608 96.205 46.112 6.682 81.507 25.155 105.613 53.456 30.349 35.626 38.106 81.35 33.446 123.283-4.659 41.917-21.946 83.485-46.544 115.114-24.061 30.934-59.354 57.354-101.261 57.354h-80v-64h80c14.093 0 32.8-9.581 50.742-32.646 17.398-22.371 30.112-52.806 33.453-82.89 3.341-30.067-2.902-56.339-18.554-74.714-15.222-17.869-44.035-33.75-97.642-33.75h-45.686l15.613-42.938c13.546-37.251 11.091-66.742 1.437-89.149-9.856-22.87-28.502-41.302-52.064-53.488-49.587-25.649-107.475-18.625-134.717 14.064l-30.134 36.16-22.541-41.325c-19.757-36.219-47.232-54.175-74.87-60.339-28.378-6.327-59.098-0.669-84.701 14.53-25.512 15.148-44.461 38.855-51.208 67.152zM630.979 787.222c12.298-12.691 11.981-32.95-0.707-45.251-12.691-12.298-32.95-11.981-45.251 0.707l-41.021 42.326v-273.005c0-17.674-14.326-32-32-32s-32 14.326-32 32v273.005l-41.021-42.326c-12.301-12.688-32.56-13.005-45.251-0.707-12.688 12.301-13.005 32.56-0.707 45.251l96 99.050c6.029 6.218 14.32 9.728 22.979 9.728s16.95-3.51 22.979-9.728l96-99.050z"],"attrs":[{"fill":"rgb(108, 114, 122)"}],"isMulticolor":false,"isMulticolor2":false,"colorPermutations":{"1081141221158162168120320620912282312341243190812456992125519219212552552551291162451452241651699010019902101":[{"f":2}]},"tags":["download"],"grid":0},"attrs":[{"fill":"rgb(108, 114, 122)"}],"properties":{"order":226,"id":81,"name":"download","prevSize":32,"code":59723},"setIdx":0,"setId":4,"iconIdx":87},{"icon":{"paths":["M795.648 132.004c-25.027-25.027-65.603-25.027-90.63-0l-530.467 530.469c-9.577 9.574-15.873 21.939-17.985 35.318l-19.611 124.186c-1.386 8.771-0.942 17.299 1.006 25.261 7.597 31.037 38.083 53.44 72.291 48.038l124.184-19.613c13.379-2.112 25.744-8.41 35.322-17.984l530.467-530.47c12.512-12.513 18.768-28.914 18.768-45.316 0-10.379-2.506-20.757-7.517-30.15-2.906-5.451-6.656-10.57-11.251-15.164l-104.576-104.575zM630.675 296.979l119.658-119.658 104.576 104.574-119.658 119.657-104.576-104.573zM200.255 831.974l19.611-124.186 365.494-365.494 104.576 104.573-365.494 365.494-124.187 19.613z"],"width":1056,"attrs":[{"fill":"rgb(108, 114, 122)"}],"isMulticolor":false,"isMulticolor2":false,"colorPermutations":{"1081141221158162168120320620912282312341243190812456992125519219212552552551291162451452241651699010019902101":[{"f":2}]},"tags":["edit"],"grid":0},"attrs":[{"fill":"rgb(108, 114, 122)"}],"properties":{"order":227,"id":82,"name":"edit","prevSize":32,"code":59724},"setIdx":0,"setId":4,"iconIdx":88},{"icon":{"paths":["M864 512c0-194.404-157.597-352-352-352s-352 157.596-352 352c0 194.403 157.596 352 352 352s352-157.597 352-352zM928 512c0 229.75-186.25 416-416 416s-416-186.25-416-416c0-229.75 186.25-416 416-416s416 186.25 416 416zM400.166 480c-35.347 0-64-28.653-64-64s28.653-64 64-64c35.347 0 64 28.653 64 64s-28.653 64-64 64zM688.166 416c0-35.347-28.653-64-64-64s-64 28.653-64 64c0 35.347 28.653 64 64 64s64-28.653 64-64zM353.226 720c8.963 0 17.526-3.53 24.272-9.437 21.603-18.918 42.64-31.958 62.701-40.509 36.563-15.59 71.805-17.107 104.794-9.939 37.632 8.176 72.659 27.808 102.109 51.341 6.726 5.376 14.995 8.544 23.606 8.544 30.218 0 45.616-34.256 22.397-53.594-36.912-30.742-82.79-57.59-134.522-68.832-44.794-9.734-93.67-7.632-143.485 13.606-28.79 12.275-57.232 30.653-85.024 55.933-21.572 19.619-6.010 52.886 23.152 52.886z"],"attrs":[{"fill":"rgb(108, 114, 122)"}],"isMulticolor":false,"isMulticolor2":false,"colorPermutations":{"1081141221158162168120320620912282312341243190812456992125519219212552552551291162451452241651699010019902101":[{"f":2}]},"tags":["emoji-bad-mood"],"grid":0},"attrs":[{"fill":"rgb(108, 114, 122)"}],"properties":{"order":228,"id":83,"name":"emoji-bad-mood","prevSize":32,"code":59725},"setIdx":0,"setId":4,"iconIdx":89},{"icon":{"paths":["M864 512c0-194.404-157.597-352-352-352s-352 157.596-352 352c0 194.403 157.596 352 352 352s352-157.597 352-352zM928 512c0 229.75-186.25 416-416 416s-416-186.25-416-416c0-229.75 186.25-416 416-416s416 186.25 416 416zM400.166 480c-35.347 0-64-28.653-64-64s28.653-64 64-64c35.347 0 64 28.653 64 64s-28.653 64-64 64zM688.166 416c0-35.347-28.653-64-64-64s-64 28.653-64 64c0 35.347 28.653 64 64 64s64-28.653 64-64zM384 640h256c17.674 0 32 14.326 32 32s-14.326 32-32 32h-256c-17.674 0-32-14.326-32-32s14.326-32 32-32z"],"attrs":[{"fill":"rgb(108, 114, 122)"}],"isMulticolor":false,"isMulticolor2":false,"colorPermutations":{"1081141221158162168120320620912282312341243190812456992125519219212552552551291162451452241651699010019902101":[{"f":2}]},"tags":["emoji-neutral-mood"],"grid":0},"attrs":[{"fill":"rgb(108, 114, 122)"}],"properties":{"order":229,"id":84,"name":"emoji-neutral-mood","prevSize":32,"code":59726},"setIdx":0,"setId":4,"iconIdx":90},{"icon":{"paths":["M330.074 644.886c-21.572-19.619-6.010-52.886 23.152-52.886 8.963 0 17.526 3.53 24.272 9.437 21.603 18.918 42.64 31.958 62.701 40.509 36.563 15.59 71.805 17.107 104.794 9.939 37.632-8.176 72.659-27.808 102.109-51.341 6.726-5.376 14.995-8.544 23.606-8.544 30.218 0 45.616 34.256 22.397 53.594-36.912 30.742-82.79 57.59-134.522 68.832-44.794 9.734-93.67 7.632-143.485-13.606-28.79-12.275-57.232-30.653-85.024-55.933z","M400.17 480c35.344 0 64-28.653 64-64s-28.656-64-64-64c-35.347 0-64 28.653-64 64s28.653 64 64 64z","M624.17 480c35.344 0 64-28.653 64-64s-28.656-64-64-64c-35.347 0-64 28.653-64 64s28.653 64 64 64z","M928 512c0 229.75-186.25 416-416 416s-416-186.25-416-416c0-229.75 186.25-416 416-416s416 186.25 416 416zM864 512c0-194.404-157.597-352-352-352s-352 157.596-352 352c0 194.403 157.596 352 352 352s352-157.597 352-352z"],"attrs":[{"fill":"rgb(108, 114, 122)"},{"fill":"rgb(108, 114, 122)"},{"fill":"rgb(108, 114, 122)"},{"fill":"rgb(108, 114, 122)"}],"isMulticolor":false,"isMulticolor2":false,"colorPermutations":{"1081141221158162168120320620912282312341243190812456992125519219212552552551291162451452241651699010019902101":[{"f":2},{"f":2},{"f":2},{"f":2}]},"tags":["emoji"],"grid":0},"attrs":[{"fill":"rgb(108, 114, 122)"},{"fill":"rgb(108, 114, 122)"},{"fill":"rgb(108, 114, 122)"},{"fill":"rgb(108, 114, 122)"}],"properties":{"order":230,"id":85,"name":"emoji","prevSize":32,"code":59727},"setIdx":0,"setId":4,"iconIdx":91},{"icon":{"paths":["M655.744 512c88.365 0 160-71.635 160-160s-71.635-160-160-160c-88.368 0-160 71.635-160 160 0 26.934 6.653 52.314 18.41 74.582l-11.914 11.914 0.128 0.131-299.135 299.136c-3.533 9.926-6.41 20.976-7.738 31.606-1.652 13.219-0.563 22.966 1.874 28.938 1.768 4.333 4.22 7.232 10.772 9.014 8.316 2.262 24.518 2.794 52.822-5.501 8.524-3.808 27.721-16.285 45.132-35.382 18.18-19.939 29.648-41.856 29.648-62.438 0-15.642 11.309-28.992 26.736-31.565l91.75-15.293c3.766-2.656 18.768-15.693 10.134-58.867-2.099-10.49 1.184-21.338 8.749-28.902l88.198-88.195c26.467 19.379 59.114 30.822 94.432 30.822zM439.571 410.915c-5.104-18.771-7.827-38.525-7.827-58.915 0-123.712 100.288-224 224-224 123.709 0 224 100.288 224 224s-100.291 224-224 224c-29.29 0-57.264-5.619-82.906-15.843l-43.008 43.008c7.158 65.494-23.99 104.534-55.968 115.194l-2.384 0.794-74.854 12.477c-7.085 31.405-25.174 58.122-43.235 77.933-23.123 25.357-50.958 44.627-69.762 52.15l-1.324 0.528-1.365 0.41c-34.714 10.416-64.73 13.19-89.594 6.429-26.782-7.286-44.33-24.784-53.228-46.586-8.23-20.163-8.473-42.282-6.126-61.062 2.402-19.216 7.899-37.958 14.042-53.315 1.61-4.022 4.020-7.677 7.084-10.742l286.456-286.458zM623.744 336c0 26.509 21.488 48 48 48 26.509 0 48-21.491 48-48s-21.491-48-48-48c-26.512 0-48 21.49-48 48z"],"width":1056,"attrs":[{"fill":"rgb(108, 114, 122)"}],"isMulticolor":false,"isMulticolor2":false,"colorPermutations":{"1081141221158162168120320620912282312341243190812456992125519219212552552551291162451452241651699010019902101":[{"f":2}]},"tags":["encrypted"],"grid":0},"attrs":[{"fill":"rgb(108, 114, 122)"}],"properties":{"order":231,"id":86,"name":"encrypted","prevSize":32,"code":59728},"setIdx":0,"setId":4,"iconIdx":92},{"icon":{"paths":["M536.89 64c233.677 0 423.11 189.433 423.11 423.11h-423.11v-423.11z","M64 536.89c0-233.678 189.433-423.112 423.11-423.112v423.112h423.11c0 233.677-189.43 423.11-423.11 423.11-233.677 0-423.11-189.434-423.11-423.11z"],"attrs":[{"fill":"rgb(108, 114, 122)"},{"fill":"rgb(108, 114, 122)"}],"isMulticolor":false,"isMulticolor2":false,"colorPermutations":{"1081141221158162168120320620912282312341243190812456992125519219212552552551291162451452241651699010019902101":[{"f":2},{"f":2}]},"tags":["engagement-dashboard"],"grid":0},"attrs":[{"fill":"rgb(108, 114, 122)"},{"fill":"rgb(108, 114, 122)"}],"properties":{"order":232,"id":87,"name":"engagement-dashboard","prevSize":32,"code":59729},"setIdx":0,"setId":4,"iconIdx":93},{"icon":{"paths":["M416 586.445v177.232l75.514-62.928c11.869-9.888 29.104-9.888 40.973 0l75.514 62.928v-177.232c-29.098 13.821-61.645 21.555-96 21.555s-66.902-7.734-96-21.555zM352 540.768v291.232c0 12.416 7.184 23.712 18.426 28.979 11.245 5.267 24.522 3.552 34.061-4.397l107.514-89.594 107.514 89.594c9.539 7.949 22.816 9.664 34.061 4.397 11.242-5.267 18.426-16.563 18.426-28.979v-291.232c39.59-40.403 64-95.734 64-156.768 0-123.712-100.288-224.001-224-224.001s-224 100.288-224 224.001c0 61.034 24.41 116.365 64 156.768zM416 512.013l-0.016-0.013c-38.854-29.19-63.984-75.661-63.984-128 0-88.366 71.635-160.001 160-160.001s160 71.635 160 160.001c0 52.339-25.13 98.81-63.984 128l-0.016 0.013c-26.742 20.083-59.981 31.987-96 31.987s-69.258-11.904-96-31.987z"],"attrs":[{"fill":"rgb(108, 114, 122)"}],"isMulticolor":false,"isMulticolor2":false,"colorPermutations":{"1081141221158162168120320620912282312341243190812456992125519219212552552551291162451452241651699010019902101":[{"f":2}]},"tags":["enterprise-feature"],"grid":0},"attrs":[{"fill":"rgb(108, 114, 122)"}],"properties":{"order":233,"id":88,"name":"enterprise-feature","prevSize":32,"code":59730},"setIdx":0,"setId":4,"iconIdx":94},{"icon":{"paths":["M500.64 128c213.35 0 386.336 172.985 386.336 386.336 0 192.87-141.254 352.707-325.974 381.664v-269.958h90.022l17.114-111.706h-107.136v-72.47c0-11.462 2.102-22.822 7.274-32.544 2.474-4.656 5.651-8.934 9.635-12.666 9.866-9.245 24.688-15.152 46.058-15.152h48.733v-95.080c0 0-44.224-7.552-86.493-7.552-84.698 0-141.258 49.313-145.651 138.907-0.182 3.738-0.275 7.546-0.275 11.424v85.133h-98.122v111.706h98.122v269.958c-184.721-29.011-325.978-188.848-325.978-381.664 0-213.351 172.985-386.336 386.336-386.336z"],"width":1056,"attrs":[{"fill":"rgb(108, 114, 122)"}],"isMulticolor":false,"isMulticolor2":false,"colorPermutations":{"1081141221158162168120320620912282312341243190812456992125519219212552552551291162451452241651699010019902101":[{"f":2}]},"tags":["facebook-monochromatic"],"grid":0},"attrs":[{"fill":"rgb(108, 114, 122)"}],"properties":{"order":30,"id":89,"name":"facebook-monochromatic","prevSize":32,"code":59731},"setIdx":0,"setId":4,"iconIdx":95},{"icon":{"paths":["M373.334 448c0-17.674 14.326-32 32-32h213.331c17.674 0 32 14.326 32 32s-14.326 32-32 32h-213.331c-17.674 0-32-14.326-32-32z","M405.334 544c-17.674 0-32 14.326-32 32s14.326 32 32 32h213.331c17.674 0 32-14.326 32-32s-14.326-32-32-32h-213.331z","M256 128c-17.673 0-32 14.327-32 32v704c0 17.674 14.327 32 32 32h512c17.674 0 32-14.326 32-32v-501.744c0-6.672-2.083-13.174-5.962-18.602l-144.467-202.254c-6.006-8.409-15.706-13.4-26.038-13.4h-367.533zM736 372.509v459.491h-448v-640h319.066l128.934 180.509z"],"attrs":[{"fill":"rgb(108, 114, 122)"},{"fill":"rgb(108, 114, 122)"},{"fill":"rgb(108, 114, 122)"}],"isMulticolor":false,"isMulticolor2":false,"colorPermutations":{"1081141221158162168120320620912282312341243190812456992125519219212552552551291162451452241651699010019902101":[{"f":2},{"f":2},{"f":2}]},"tags":["file-document"],"grid":0},"attrs":[{"fill":"rgb(108, 114, 122)"},{"fill":"rgb(108, 114, 122)"},{"fill":"rgb(108, 114, 122)"}],"properties":{"order":29,"id":90,"name":"file-document","prevSize":32,"code":59732},"setIdx":0,"setId":4,"iconIdx":96},{"icon":{"paths":["M128 192c-17.673 0-32 14.327-32 32v576.019c0 17.674 14.327 32 32 32h768c17.674 0 32-14.326 32-32v-576.019c0-17.673-14.326-32-32-32h-768zM160 378.301v-122.301h149.333v122.301h-149.333zM160 442.301h149.333v141.722h-149.333v-141.722zM160 648.022h149.333v119.997h-149.333v-119.997zM373.334 768.019v-119.997h490.666v119.997h-490.666zM864 584.022h-490.666v-141.722h490.666v141.722zM864 378.301h-490.666v-122.301h490.666v122.301z"],"attrs":[{"fill":"rgb(108, 114, 122)"}],"isMulticolor":false,"isMulticolor2":false,"colorPermutations":{"1081141221158162168120320620912282312341243190812456992125519219212552552551291162451452241651699010019902101":[{"f":2}]},"tags":["file-sheet"],"grid":0},"attrs":[{"fill":"rgb(108, 114, 122)"}],"properties":{"order":28,"id":91,"name":"file-sheet","prevSize":32,"code":59733},"setIdx":0,"setId":4,"iconIdx":97},{"icon":{"paths":["M206.667 293.692c-30.421-42.402-0.116-101.442 52.070-101.442h518.572c51.174 0 81.706 57.026 53.334 99.615l-180.678 271.207v220.762c0 46.352-47.693 77.373-90.067 58.582l-121.424-53.85c-23.168-10.275-38.102-33.238-38.102-58.582v-166.304l-193.704-269.988zM777.309 256.334h-518.572l193.705 269.989c7.811 10.89 12.013 23.955 12.013 37.357v166.304l121.424 53.85v-220.762c0-12.646 3.741-25.008 10.752-35.533l180.678-271.205z"],"width":1056,"attrs":[{"fill":"rgb(108, 114, 122)"}],"isMulticolor":false,"isMulticolor2":false,"colorPermutations":{"1081141221158162168120320620912282312341243190812456992125519219212552552551291162451452241651699010019902101":[{"f":2}]},"tags":["filter"],"grid":0},"attrs":[{"fill":"rgb(108, 114, 122)"}],"properties":{"order":27,"id":92,"name":"filter","prevSize":32,"code":59734},"setIdx":0,"setId":4,"iconIdx":98},{"icon":{"paths":["M623.091 896c-2.806 0-5.296-0.624-7.168-0.938-62-16.858-102.816-39.648-145.811-80.858-55.149-54.010-85.37-125.814-85.37-202.301 0-65.875 56.704-119.571 126.496-119.571s126.496 53.696 126.496 119.571c0 34.963 31.469 63.373 69.792 63.373s69.789-28.41 69.789-63.373c0-135.808-119.642-246.637-266.701-246.637-104.998 0-200.338 57.133-243.334 145.795-14.332 29.347-21.498 63.066-21.498 100.842 0 28.72 2.492 73.363 24.925 131.744 2.804 7.181 2.492 14.675-0.623 21.856-3.116 6.867-9.035 11.862-16.201 14.358-2.804 1.251-6.231 1.562-9.659 1.562-11.84 0-22.433-7.181-26.484-18.106-19.005-50.266-28.353-99.904-28.353-151.728 0-46.205 9.036-88.352 26.795-125.504 52.343-108.019 167.936-177.638 294.432-177.638 178.528 0 323.718 135.804 323.718 302.828 0 65.875-56.704 119.571-126.806 119.571s-126.81-53.696-126.81-119.571c0-34.963-31.469-63.373-69.792-63.373-38.634 0-69.789 28.41-69.789 63.373 0 61.504 24.301 119.261 68.544 162.342 35.206 34.029 68.858 53.072 120.576 67.123 7.168 1.872 13.398 6.557 17.136 13.11 3.741 6.557 4.675 14.362 2.806 21.229-2.806 11.866-14.022 20.918-27.107 20.918zM426.803 888.195c-7.789 0-15.267-3.123-20.253-8.742-33.338-32.781-51.718-54.010-77.891-100.525-26.795-47.142-41.127-105.21-41.127-167.338 0-116.448 100.948-211.357 224.951-211.357s224.954 94.909 224.954 211.357c0 15.61-12.464 28.096-28.352 28.096-15.891 0-28.666-12.173-28.666-28.096 0-85.542-75.398-155.162-168.246-155.162s-168.246 69.619-168.246 155.162c0 52.448 11.84 100.528 34.272 139.552 23.366 41.52 38.947 59.005 68.858 88.662 10.902 11.238 10.902 28.723 0 39.648-5.92 5.933-13.088 8.742-20.253 8.742zM699.738 818.886c-47.36 0-88.797-11.862-123.382-34.963-59.197-39.651-94.717-103.962-94.717-172.333 0-15.61 12.464-28.099 28.352-28.099 15.891 0 28.355 12.49 28.355 28.099 0 49.638 26.17 96.781 69.789 125.501 25.238 16.861 55.149 24.976 91.603 24.976 7.789 0 22.432-0.934 38.010-3.744 1.558-0.314 3.427-0.314 4.986-0.314 13.709 0 25.238 9.99 27.728 23.414 1.248 7.181-0.31 14.672-4.362 20.605-4.362 6.243-10.902 10.614-18.694 11.862-23.366 4.685-43.93 4.995-47.667 4.995zM188.765 435.824c-5.608 0-11.217-1.562-16.202-4.995-6.543-4.058-10.593-10.614-12.151-18.106-1.246-7.494 0.311-14.986 4.985-21.232 38.635-53.696 87.862-95.843 146.125-125.501 60.132-30.595 129.613-46.829 200.961-46.829 71.037 0 140.205 15.922 200.029 46.205 58.573 29.659 107.802 71.492 146.125 124.567 4.362 5.93 6.23 13.424 4.986 20.915-1.248 7.494-5.61 14.048-11.84 18.419-4.986 3.437-10.595 4.995-16.515 4.995-9.034 0-17.757-4.371-23.056-11.862-33.338-45.891-75.709-82.109-125.562-107.083-52.342-26.224-112.787-40.273-174.477-40.273-62.314 0-122.758 14.049-175.101 40.585-49.852 25.913-92.537 62.128-126.186 108.643-3.739 6.87-12.463 11.552-22.121 11.552zM733.696 239.141c-4.672 0-9.347-1.249-13.395-3.434-71.35-35.902-133.354-51.512-207.504-51.512-74.467 0-144.256 17.483-207.817 51.824-4.050 2.185-8.724 3.122-13.397 3.122-10.282 0-19.629-5.62-24.925-14.361-3.739-6.556-4.673-14.361-2.492-21.541s7.166-13.424 13.709-16.859c72.594-38.712 151.733-58.38 234.924-58.38 82.563 0 154.848 17.795 233.987 58.068 6.854 3.434 11.84 9.366 14.33 16.859 2.182 7.18 1.248 14.673-2.179 21.229-4.986 9.054-14.643 14.985-25.238 14.985z"],"attrs":[{"fill":"rgb(108, 114, 122)"}],"isMulticolor":false,"isMulticolor2":false,"colorPermutations":{"1081141221158162168120320620912282312341243190812456992125519219212552552551291162451452241651699010019902101":[{"f":2}]},"tags":["fingerprint"],"grid":0},"attrs":[{"fill":"rgb(108, 114, 122)"}],"properties":{"order":26,"id":93,"name":"fingerprint","prevSize":32,"code":59735},"setIdx":0,"setId":4,"iconIdx":99},{"icon":{"paths":["M266.667 170.664c0-17.673 14.327-32 32-32h500.623c12.122 0 23.2 6.848 28.621 17.689s4.253 23.814-3.021 33.511l-122.134 162.843 122.134 162.845c7.274 9.696 8.442 22.672 3.021 33.51-5.421 10.842-16.499 17.69-28.621 17.69h-468.624v286.579c0 17.674-14.325 32-31.999 32s-32-14.326-32-32v-682.667zM330.666 502.752h404.624l-98.134-130.845c-8.531-11.376-8.531-27.021 0-38.4l98.134-130.843h-404.624v300.088z"],"attrs":[{"fill":"rgb(108, 114, 122)"}],"isMulticolor":false,"isMulticolor2":false,"colorPermutations":{"1081141221158162168120320620912282312341243190812456992125519219212552552551291162451452241651699010019902101":[{"f":2}]},"tags":["flag"],"grid":0},"attrs":[{"fill":"rgb(108, 114, 122)"}],"properties":{"order":25,"id":94,"name":"flag","prevSize":32,"code":59736},"setIdx":0,"setId":4,"iconIdx":100},{"icon":{"paths":["M140.020 213.336c0-17.673 14.327-32 32-32h234.057c7.181 0 14.157 2.416 19.798 6.86l88.813 69.94h339.997c17.674 0 32 14.327 32 32v520.533c0 17.674-14.326 32-32 32h-682.665c-17.673 0-32-14.326-32-32v-597.333zM204.020 245.336v533.333h618.665v-456.534h-319.085c-7.181 0-14.154-2.415-19.798-6.858l-88.813-69.94h-190.969z"],"width":1056,"attrs":[{"fill":"rgb(108, 114, 122)"}],"isMulticolor":false,"isMulticolor2":false,"colorPermutations":{"1081141221158162168120320620912282312341243190812456992125519219212552552551291162451452241651699010019902101":[{"f":2}]},"tags":["folder"],"grid":0},"attrs":[{"fill":"rgb(108, 114, 122)"}],"properties":{"order":24,"id":95,"name":"folder","prevSize":32,"code":59737},"setIdx":0,"setId":4,"iconIdx":101},{"icon":{"paths":["M370.704 544c0-17.674-14.326-32-32-32s-31.999 14.326-31.999 32v32h-32c-17.673 0-32 14.326-32 32s14.327 32 32 32h32v32c0 17.674 14.325 32 31.999 32s32-14.326 32-32v-32h32c17.674 0 32-14.326 32-32s-14.326-32-32-32h-32v-32z","M746.704 624c30.928 0 56-25.072 56-56s-25.072-56-56-56c-30.928 0-56 25.072-56 56s25.072 56 56 56z","M674.704 664c0 30.928-25.072 56-56 56s-56-25.072-56-56c0-30.928 25.072-56 56-56s56 25.072 56 56z","M706.704 128c0-17.673-14.326-32-32-32s-32 14.327-32 32v96h-128c-17.674 0-32 14.327-32 32v96h-191.999c-106.038 0-192 85.962-192 192v128c0 106.038 85.961 192 192 192h447.999c106.038 0 192-85.962 192-192v-128c0-106.038-85.962-192-192-192h-192v-64h128c17.674 0 32-14.327 32-32v-128zM866.704 544v128c0 70.691-57.306 128-128 128h-447.999c-70.692 0-128-57.309-128-128v-128c0-70.691 57.308-128 128-128h447.999c70.694 0 128 57.309 128 128z"],"width":1056,"attrs":[{"fill":"rgb(108, 114, 122)"},{"fill":"rgb(108, 114, 122)"},{"fill":"rgb(108, 114, 122)"},{"fill":"rgb(108, 114, 122)"}],"isMulticolor":false,"isMulticolor2":false,"colorPermutations":{"1081141221158162168120320620912282312341243190812456992125519219212552552551291162451452241651699010019902101":[{"f":2},{"f":2},{"f":2},{"f":2}]},"tags":["game"],"grid":0},"attrs":[{"fill":"rgb(108, 114, 122)"},{"fill":"rgb(108, 114, 122)"},{"fill":"rgb(108, 114, 122)"},{"fill":"rgb(108, 114, 122)"}],"properties":{"order":23,"id":96,"name":"game","prevSize":32,"code":59738},"setIdx":0,"setId":4,"iconIdx":102},{"icon":{"paths":["M494.31 170.648l23.037 24.005 23.629-24.005 74.669 0.041v75.854h74.669v75.856h74.666v26.518h0.003v504.419h-522.678v-682.689h252.006zM540.976 246.503h-224.004v530.979h373.341v-379.229h-149.338v-151.75z"],"width":1056,"attrs":[{"fill":"rgb(108, 114, 122)"}],"isMulticolor":false,"isMulticolor2":false,"colorPermutations":{"1081141221158162168120320620912282312341243190812456992125519219212552552551291162451452241651699010019902101":[{"f":2}]},"tags":["giphy-monochromatic"],"grid":0},"attrs":[{"fill":"rgb(108, 114, 122)"}],"properties":{"order":21,"id":97,"name":"giphy-monochromatic","prevSize":32,"code":59739},"setIdx":0,"setId":4,"iconIdx":103},{"icon":{"paths":["M634.803 170.664h-256.112l-264.387 460.802 124.984 221.866h534.916l124.982-221.866-264.384-460.802zM367.814 631.466l138.931-239.789 138.934 239.789h-277.866z"],"width":1056,"attrs":[{"fill":"rgb(108, 114, 122)"}],"isMulticolor":false,"isMulticolor2":false,"colorPermutations":{"1081141221158162168120320620912282312341243190812456992125519219212552552551291162451452241651699010019902101":[{"f":2}]},"tags":["google-drive-monochromatic"],"grid":0},"attrs":[{"fill":"rgb(108, 114, 122)"}],"properties":{"order":19,"id":98,"name":"google-drive-monochromatic","prevSize":32,"code":59756},"setIdx":0,"setId":4,"iconIdx":104},{"icon":{"paths":["M129.354 272c0-17.673 14.327-32 32-32h704c17.674 0 32 14.327 32 32s-14.326 32-32 32h-704c-17.673 0-32-14.327-32-32zM289.354 432c0 17.674-14.327 32-32 32s-32-14.326-32-32c0-17.674 14.327-32 32-32s32 14.326 32 32zM289.354 752c0 17.674-14.327 32-32 32s-32-14.326-32-32c0-17.674 14.327-32 32-32s32 14.326 32 32zM449.354 624c17.674 0 32-14.326 32-32s-14.326-32-32-32c-17.674 0-32 14.326-32 32s14.326 32 32 32zM385.354 400c-17.674 0-32 14.326-32 32s14.326 32 32 32h480c17.674 0 32-14.326 32-32s-14.326-32-32-32h-480zM353.354 752c0-17.674 14.326-32 32-32h480c17.674 0 32 14.326 32 32s-14.326 32-32 32h-480c-17.674 0-32-14.326-32-32zM577.354 560c-17.674 0-32 14.326-32 32s14.326 32 32 32h288c17.674 0 32-14.326 32-32s-14.326-32-32-32h-288z"],"width":1056,"attrs":[{"fill":"rgb(108, 114, 122)"}],"isMulticolor":false,"isMulticolor2":false,"colorPermutations":{"1081141221158162168120320620912282312341243190812456992125519219212552552551291162451452241651699010019902101":[{"f":2}]},"tags":["group-by-type"],"grid":0},"attrs":[{"fill":"rgb(108, 114, 122)"}],"properties":{"order":150,"id":99,"name":"group-by-type","prevSize":32,"code":59757},"setIdx":0,"setId":4,"iconIdx":105},{"icon":{"paths":["M170.668 245.336c0-17.673 14.327-32 32-32h640.846c17.674 0 32 14.327 32 32s-14.326 32-32 32h-640.846c-17.673 0-32-14.327-32-32zM170.668 501.334c0-17.67 14.327-32 32-32h640.846c17.674 0 32 14.33 32 32 0 17.674-14.326 32-32 32h-640.846c-17.673 0-32-14.326-32-32zM170.668 757.334c0-17.67 14.327-32 32-32h640.846c17.674 0 32 14.33 32 32 0 17.674-14.326 32-32 32h-640.846c-17.673 0-32-14.326-32-32z"],"attrs":[{"fill":"rgb(108, 114, 122)"}],"isMulticolor":false,"isMulticolor2":false,"colorPermutations":{"1081141221158162168120320620912282312341243190812456992125519219212552552551291162451452241651699010019902101":[{"f":2}]},"tags":["hamburguer"],"grid":0},"attrs":[{"fill":"rgb(108, 114, 122)"}],"properties":{"order":148,"id":100,"name":"hamburguer","prevSize":32,"code":59758},"setIdx":0,"setId":4,"iconIdx":106},{"icon":{"paths":["M832 512c0 176.73-143.27 320-320 320s-320-143.27-320-320h-64c0 212.077 171.923 384 384 384s384-171.923 384-384c0-212.077-171.923-384-384-384-123.718 0-233.772 58.508-304 149.364v-101.364c0-17.673-14.327-32-32-32s-32 14.327-32 32v192c0 17.674 14.327 32 32 32h176c17.674 0 32-14.326 32-32s-14.326-32-32-32h-107.295c57.24-86.756 155.583-144 267.295-144 176.73 0 320 143.27 320 320z","M544 320c0-17.673-14.326-32-32-32s-32 14.327-32 32v224c0 8.486 3.373 16.627 9.373 22.627l96 96c12.496 12.496 32.758 12.496 45.254 0s12.496-32.758 0-45.254l-86.627-86.627v-210.746z"],"attrs":[{"fill":"rgb(108, 114, 122)"},{"fill":"rgb(108, 114, 122)"}],"isMulticolor":false,"isMulticolor2":false,"colorPermutations":{"1081141221158162168120320620912282312341243190812456992125519219212552552551291162451452241651699010019902101":[{"f":2},{"f":2}]},"tags":["history"],"grid":0},"attrs":[{"fill":"rgb(108, 114, 122)"},{"fill":"rgb(108, 114, 122)"}],"properties":{"order":145,"id":101,"name":"history","prevSize":32,"code":59759},"setIdx":0,"setId":4,"iconIdx":107},{"icon":{"paths":["M522.042 195.354l224.464 260.044v366.234c0 5.856-4.752 10.605-10.614 10.605h-136.416v-149.821c0-23.424-19.014-42.413-42.47-42.413h-85.955c-23.453 0-42.467 18.989-42.467 42.413v149.821h-136.41c-5.864 0-10.617-4.749-10.617-10.605v-366.307l224.403-259.971c4.237-4.907 11.85-4.907 16.083 0zM560.57 895.856h175.322c41.043 0 74.32-33.232 74.32-74.224v-244.205h56.227c12.454 0 23.766-7.251 28.954-18.557 5.19-11.309 3.302-24.602-4.829-34.022l-320.272-371.033c-29.648-34.347-82.934-34.347-112.582 0l-320.27 371.033c-8.132 9.421-10.020 22.714-4.831 34.022 5.188 11.306 16.501 18.557 28.956 18.557h56.288v244.205c0 40.992 33.274 74.224 74.32 74.224h175.316c1.174 0.096 2.362 0.147 3.562 0.147h85.955c1.2 0 2.39-0.051 3.565-0.147z"],"width":1056,"attrs":[{"fill":"rgb(108, 114, 122)"}],"isMulticolor":false,"isMulticolor2":false,"colorPermutations":{"1081141221158162168120320620912282312341243190812456992125519219212552552551291162451452241651699010019902101":[{"f":2}]},"tags":["home"],"grid":0},"attrs":[{"fill":"rgb(108, 114, 122)"}],"properties":{"order":146,"id":102,"name":"home","prevSize":32,"code":59760},"setIdx":0,"setId":4,"iconIdx":108},{"icon":{"paths":["M406.685 405.334c0 47.126-38.205 85.331-85.334 85.331-47.127 0-85.332-38.205-85.332-85.331 0-47.13 38.205-85.334 85.332-85.334 47.13 0 85.334 38.205 85.334 85.334z","M97.352 192c0-17.673 14.327-32 32-32h767.999c17.674 0 32 14.327 32 32v640c0 17.674-14.326 32-32 32h-767.999c-17.673 0-32-14.326-32-32v-640zM161.352 764.163l151.704-176.989c9.271-10.813 24.57-14.202 37.536-8.307l153.123 69.603 160.474-204.24c6.010-7.651 15.174-12.15 24.902-12.23s18.963 4.272 25.098 11.821l151.162 186.048v-405.869h-703.999v540.163zM214.927 800h650.423v-68.64l-175.581-216.099-166.781 212.269-176.989-80.448-131.073 152.918z"],"width":1056,"attrs":[{"fill":"rgb(108, 114, 122)"},{"fill":"rgb(108, 114, 122)"}],"isMulticolor":false,"isMulticolor2":false,"colorPermutations":{"1081141221158162168120320620912282312341243190812456992125519219212552552551291162451452241651699010019902101":[{"f":2},{"f":2}]},"tags":["image"],"grid":0},"attrs":[{"fill":"rgb(108, 114, 122)"},{"fill":"rgb(108, 114, 122)"}],"properties":{"order":147,"id":103,"name":"image","prevSize":32,"code":59761},"setIdx":0,"setId":4,"iconIdx":109},{"icon":{"paths":["M512 873.027c-199.389 0-361.026-161.635-361.026-361.024s161.636-361.026 361.026-361.026c199.389 0 361.024 161.637 361.024 361.026s-161.635 361.024-361.024 361.024zM512 938.669c235.642 0 426.666-191.024 426.666-426.666s-191.024-426.667-426.666-426.667c-235.642 0-426.667 191.025-426.667 426.667s191.025 426.666 426.667 426.666zM544.819 347.901c0 18.125-14.694 32.819-32.819 32.819-18.128 0-32.822-14.694-32.822-32.819 0-18.128 14.694-32.821 32.822-32.821 18.125 0 32.819 14.693 32.819 32.821zM512 413.542c-18.128 0-32.822 14.694-32.822 32.819v229.744c0 18.125 14.694 32.819 32.822 32.819 18.125 0 32.819-14.694 32.819-32.819v-229.744c0-18.125-14.694-32.819-32.819-32.819z"],"attrs":[{"fill":"rgb(108, 114, 122)"}],"isMulticolor":false,"isMulticolor2":false,"colorPermutations":{"1081141221158162168120320620912282312341243190812456992125519219212552552551291162451452241651699010019902101":[{"f":2}]},"tags":["info"],"grid":0},"attrs":[{"fill":"rgb(108, 114, 122)"}],"properties":{"order":144,"id":104,"name":"info","prevSize":32,"code":59762},"setIdx":0,"setId":4,"iconIdx":110},{"icon":{"paths":["M512 864c-194.404 0-352-157.597-352-352s157.596-352 352-352c194.403 0 352 157.596 352 352s-157.597 352-352 352zM512 928c229.75 0 416-186.25 416-416s-186.25-416-416-416c-229.75 0-416 186.25-416 416s186.25 416 416 416zM662.627 361.373c12.496 12.496 12.496 32.758 0 45.254l-105.373 105.373 105.373 105.373c12.496 12.496 12.496 32.758 0 45.254s-32.758 12.496-45.254 0l-105.373-105.373-105.373 105.373c-12.496 12.496-32.758 12.496-45.254 0s-12.496-32.758 0-45.254l105.373-105.373-105.373-105.373c-12.496-12.496-12.496-32.758 0-45.254s32.758-12.496 45.254 0l105.373 105.373 105.373-105.373c12.496-12.496 32.758-12.496 45.254 0z"],"attrs":[{"fill":"rgb(108, 114, 122)"}],"isMulticolor":false,"isMulticolor2":false,"colorPermutations":{"1081141221158162168120320620912282312341243190812456992125519219212552552551291162451452241651699010019902101":[{"f":2}]},"tags":["input-clear"],"grid":0},"attrs":[{"fill":"rgb(108, 114, 122)"}],"properties":{"order":143,"id":105,"name":"input-clear","prevSize":32,"code":59763},"setIdx":0,"setId":4,"iconIdx":111},{"icon":{"paths":["M384 288c-17.674 0-32 14.327-32 32s14.326 32 32 32h256c17.674 0 32-14.326 32-32s-14.326-32-32-32h-256z","M352 448c0-17.674 14.326-32 32-32h256c17.674 0 32 14.326 32 32s-14.326 32-32 32h-256c-17.674 0-32-14.326-32-32z","M512 640c-17.674 0-32 14.326-32 32s14.326 32 32 32c17.674 0 32-14.326 32-32s-14.326-32-32-32z","M224 224v576c0 35.347 28.654 64 64 64h448c35.347 0 64-28.653 64-64v-576c0-35.346-28.653-64-64-64h-448c-35.346 0-64 28.654-64 64zM288 800v-576h448v576h-448z"],"attrs":[{"fill":"rgb(108, 114, 122)"},{"fill":"rgb(108, 114, 122)"},{"fill":"rgb(108, 114, 122)"},{"fill":"rgb(108, 114, 122)"}],"isMulticolor":false,"isMulticolor2":false,"colorPermutations":{"1081141221158162168120320620912282312341243190812456992125519219212552552551291162451452241651699010019902101":[{"f":2},{"f":2},{"f":2},{"f":2}]},"tags":["instance"],"grid":0},"attrs":[{"fill":"rgb(108, 114, 122)"},{"fill":"rgb(108, 114, 122)"},{"fill":"rgb(108, 114, 122)"},{"fill":"rgb(108, 114, 122)"}],"properties":{"order":18,"id":106,"name":"instance","prevSize":32,"code":59764},"setIdx":0,"setId":4,"iconIdx":112},{"icon":{"paths":["M544 352c17.674 0 32-14.326 32-32s-14.326-32-32-32c-17.674 0-32 14.327-32 32s14.326 32 32 32zM559.61 436.995c2.755-17.456-9.162-33.843-26.618-36.598-17.456-2.758-33.843 9.162-36.598 26.618l-48 304c-2.758 17.456 9.158 33.843 26.618 36.598 17.456 2.755 33.84-9.162 36.598-26.618l48-304z"],"attrs":[{"fill":"rgb(108, 114, 122)"}],"isMulticolor":false,"isMulticolor2":false,"colorPermutations":{"1081141221158162168120320620912282312341243190812456992125519219212552552551291162451452241651699010019902101":[{"f":2}]},"tags":["italic"],"grid":0},"attrs":[{"fill":"rgb(108, 114, 122)"}],"properties":{"order":17,"id":107,"name":"italic","prevSize":32,"code":59765},"setIdx":0,"setId":4,"iconIdx":113},{"icon":{"paths":["M497.136 169.372c12.499 12.497 12.499 32.758 0 45.255l-35.958 35.96c1.078-0.016 2.163-0.025 3.245-0.025h191.152c115.11 0 208.426 93.316 208.426 208.426 0 115.107-93.315 208.422-208.426 208.422h-15.574v-64h15.574c79.763 0 144.426-64.659 144.426-144.422 0-79.766-64.662-144.426-144.426-144.426h-191.152c-1.030 0-2.058 0.011-3.082 0.032l35.795 35.796c12.499 12.499 12.499 32.758 0 45.258-12.496 12.496-32.758 12.496-45.254 0l-90.509-90.511c-12.496-12.497-12.496-32.758 0-45.255l90.509-90.51c12.496-12.497 32.758-12.497 45.254 0zM201.318 500.746h56.159v325.818h-59.023v-268.387h-1.909l-76.204 48.682v-54.090l80.977-52.022zM570.41 719.494c0 64.749-48.045 111.523-116.931 111.523-63.638 0-110.886-38.979-112.48-93.069h57.274c2.070 26.726 25.773 45.341 55.206 45.341 34.838 0 59.978-25.933 59.818-62.365 0.16-36.909-25.613-63.318-61.411-63.475-19.568-0.16-40.25 7.955-51.226 20.045l-53.296-8.749 17.024-168h188.998v49.318h-140.16l-9.386 86.384h1.91c12.090-14.317 35.475-24.816 61.885-24.816 59.184 0 102.774 45.181 102.774 107.862z"],"attrs":[{"fill":"rgb(108, 114, 122)"}],"isMulticolor":false,"isMulticolor2":false,"colorPermutations":{"1081141221158162168120320620912282312341243190812456992125519219212552552551291162451452241651699010019902101":[{"f":2}]},"tags":["jump-backward"],"grid":0},"attrs":[{"fill":"rgb(108, 114, 122)"}],"properties":{"order":16,"id":108,"name":"jump-backward","prevSize":32,"code":59766},"setIdx":0,"setId":4,"iconIdx":114},{"icon":{"paths":["M494.861 169.372c-12.496 12.497-12.496 32.758 0 45.255l35.962 35.96c-1.082-0.016-2.163-0.025-3.248-0.025h-191.149c-115.111 0-208.426 93.316-208.426 208.426 0 115.107 93.315 208.422 208.426 208.422h15.574v-64h-15.574c-79.764 0-144.426-64.659-144.426-144.422 0-79.766 64.661-144.426 144.426-144.426h191.149c1.030 0 2.061 0.011 3.085 0.032l-35.798 35.796c-12.496 12.499-12.496 32.758 0 45.258 12.499 12.496 32.758 12.496 45.258 0l90.509-90.511c12.496-12.497 12.496-32.758 0-45.255l-90.509-90.51c-12.499-12.497-32.758-12.497-45.258 0zM521.318 500.746h56.157v325.818h-59.021v-268.387h-1.91l-76.205 48.682v-54.090l80.979-52.022zM890.41 719.494c0 64.749-48.048 111.523-116.934 111.523-63.635 0-110.886-38.979-112.477-93.069h57.274c2.067 26.726 25.773 45.341 55.203 45.341 34.842 0 59.978-25.933 59.821-62.365 0.157-36.909-25.616-63.318-61.411-63.475-19.568-0.16-40.25 7.955-51.226 20.045l-53.296-8.749 17.021-168h189.002v49.318h-140.16l-9.386 86.384h1.91c12.090-14.317 35.475-24.816 61.885-24.816 59.181 0 102.774 45.181 102.774 107.862z"],"attrs":[{"fill":"rgb(108, 114, 122)"}],"isMulticolor":false,"isMulticolor2":false,"colorPermutations":{"1081141221158162168120320620912282312341243190812456992125519219212552552551291162451452241651699010019902101":[{"f":2}]},"tags":["jump-forward"],"grid":0},"attrs":[{"fill":"rgb(108, 114, 122)"}],"properties":{"order":15,"id":109,"name":"jump-forward","prevSize":32,"code":59767},"setIdx":0,"setId":4,"iconIdx":115},{"icon":{"paths":["M769.296 649.373c12.496 12.496 12.496 32.758 0 45.254l-192 192c-12.499 12.496-32.758 12.496-45.258 0l-192-192c-12.496-12.496-12.496-32.758 0-45.254 12.499-12.496 32.758-12.496 45.258 0l137.37 137.373v-578.746h-192v192c0 17.674-14.325 32-31.999 32s-32-14.326-32-32v-224c0-17.673 14.327-32 32-32h255.999c17.674 0 32 14.327 32 32v610.746l137.373-137.373c12.499-12.496 32.758-12.496 45.258 0z"],"attrs":[{"fill":"rgb(108, 114, 122)"}],"isMulticolor":false,"isMulticolor2":false,"colorPermutations":{"1081141221158162168120320620912282312341243190812456992125519219212552552551291162451452241651699010019902101":[{"f":2}]},"tags":["jump-to-message"],"grid":0},"attrs":[{"fill":"rgb(108, 114, 122)"}],"properties":{"order":14,"id":110,"name":"jump-to-message","prevSize":32,"code":59768},"setIdx":0,"setId":4,"iconIdx":116},{"icon":{"paths":["M576 256c0 35.346-28.653 64-64 64s-64-28.654-64-64c0-35.346 28.653-64 64-64s64 28.654 64 64z","M576 512c0 35.347-28.653 64-64 64s-64-28.653-64-64c0-35.347 28.653-64 64-64s64 28.653 64 64z","M576 768c0 35.347-28.653 64-64 64s-64-28.653-64-64c0-35.347 28.653-64 64-64s64 28.653 64 64z"],"attrs":[{"fill":"rgb(108, 114, 122)"},{"fill":"rgb(108, 114, 122)"},{"fill":"rgb(108, 114, 122)"}],"isMulticolor":false,"isMulticolor2":false,"colorPermutations":{"1081141221158162168120320620912282312341243190812456992125519219212552552551291162451452241651699010019902101":[{"f":2},{"f":2},{"f":2}]},"tags":["kebab"],"grid":0},"attrs":[{"fill":"rgb(108, 114, 122)"},{"fill":"rgb(108, 114, 122)"},{"fill":"rgb(108, 114, 122)"}],"properties":{"order":13,"id":111,"name":"kebab","prevSize":32,"code":59769},"setIdx":0,"setId":4,"iconIdx":117},{"icon":{"paths":["M160 224c-35.346 0-64 28.654-64 64v448c0 35.347 28.654 64 64 64h704c35.347 0 64-28.653 64-64v-448c0-35.346-28.653-64-64-64h-704zM160 288h704v448h-704v-448zM256 352c-17.673 0-32 14.326-32 32s14.327 32 32 32h64c17.674 0 32-14.326 32-32s-14.326-32-32-32h-64zM256 512c0-17.674 14.327-32 32-32h64c17.674 0 32 14.326 32 32s-14.326 32-32 32h-64c-17.673 0-32-14.326-32-32zM480 480c-17.674 0-32 14.326-32 32s14.326 32 32 32h64c17.674 0 32-14.326 32-32s-14.326-32-32-32h-64zM640 512c0-17.674 14.326-32 32-32h64c17.674 0 32 14.326 32 32s-14.326 32-32 32h-64c-17.674 0-32-14.326-32-32zM480 352c-17.674 0-32 14.326-32 32s14.326 32 32 32h64c17.674 0 32-14.326 32-32s-14.326-32-32-32h-64zM320 640c0-17.674 14.326-32 32-32h320c17.674 0 32 14.326 32 32s-14.326 32-32 32h-320c-17.674 0-32-14.326-32-32zM704 352c-17.674 0-32 14.326-32 32s14.326 32 32 32h64c17.674 0 32-14.326 32-32s-14.326-32-32-32h-64z"],"attrs":[{"fill":"rgb(108, 114, 122)"}],"isMulticolor":false,"isMulticolor2":false,"colorPermutations":{"1081141221158162168120320620912282312341243190812456992125519219212552552551291162451452241651699010019902101":[{"f":2}]},"tags":["keyboard"],"grid":0},"attrs":[{"fill":"rgb(108, 114, 122)"}],"properties":{"order":12,"id":112,"name":"keyboard","prevSize":32,"code":59770},"setIdx":0,"setId":4,"iconIdx":118},{"icon":{"paths":["M681.904 256c0-17.673-14.326-32-32-32s-32 14.327-32 32v56.875l-80.346 13.998c-17.411 3.034-29.069 19.61-26.035 37.021 3.034 17.408 19.61 29.066 37.021 26.032l69.36-12.086v69.373c-30.384 6.851-60.461 20.074-84.154 43.139-27.923 27.184-44.070 65.238-44.070 113.808 0 25.741 6.262 48.262 18.451 66.621 12.186 18.349 29.062 30.682 47.251 38 35.357 14.221 76.72 10.173 108.128-4.579l1.206-0.566c31.126-14.621 62.493-29.354 90.723-57.818 21.325-21.507 39.709-49.539 56.848-88.678 5.654 9.498 9.594 20.966 10.285 34.339 1.632 31.526-14.275 82.813-87.955 153.418-12.758 12.227-13.19 32.483-0.963 45.245 12.227 12.758 32.486 13.19 45.245 0.963 80.192-76.851 110.586-145.034 107.59-202.934-2.986-57.658-38.586-96.022-70.675-113.955-20.774-13.014-50.214-22.826-81.216-28.288-16.624-2.931-34.47-4.749-52.694-4.995v-74.243l101.718-17.722c17.411-3.034 29.066-19.61 26.032-37.019-3.034-17.411-19.606-29.066-37.018-26.032l-90.733 15.809v-45.724zM578.394 536.208c10.163-9.891 23.565-17.475 39.51-22.704v138.653c-13.443 2.547-27.485 1.731-38.634-2.752-7.712-3.104-13.658-7.757-17.824-14.029-4.157-6.262-7.766-15.997-7.766-31.216 0-33.35 10.563-54.176 24.714-67.952zM709.994 600.752c-8.682 8.755-17.782 15.706-28.090 22.074v-117.888c14.125 0.24 28.224 1.661 41.587 4.016 13.587 2.397 25.683 5.622 35.763 9.165-16.88 42.038-33.069 66.304-49.261 82.634zM247.704 565.334h98.386l-49.193-184.883-49.193 184.883zM390.851 733.562l-27.734-104.227h-132.442l-27.732 104.227c-4.544 17.078-22.073 27.242-39.152 22.694-17.079-4.544-27.24-22.070-22.696-39.152l106.323-399.598c13.494-50.714 85.462-50.713 98.956 0l106.323 399.598c4.544 17.082-5.616 34.608-22.694 39.152-17.078 4.547-34.608-5.616-39.152-22.694z"],"width":1056,"attrs":[{"fill":"rgb(108, 114, 122)"}],"isMulticolor":false,"isMulticolor2":false,"colorPermutations":{"1081141221158162168120320620912282312341243190812456992125519219212552552551291162451452241651699010019902101":[{"f":2}]},"tags":["language"],"grid":0},"attrs":[{"fill":"rgb(108, 114, 122)"}],"properties":{"order":11,"id":113,"name":"language","prevSize":32,"code":59771},"setIdx":0,"setId":4,"iconIdx":119},{"icon":{"paths":["M439.274 704.374c0-33.645 26.278-47.677 72.726-47.677s72.73 14.032 72.73 47.677c0 32.96-13.19 111.069-23.914 149.76-4.963 17.808-22.080 25.171-48.816 25.171s-43.85-7.363-48.813-25.174c-10.717-38.666-23.914-116.688-23.914-149.757zM616.778 870.374l0.026-0.090c6.176-22.291 12.566-53.869 17.386-83.453 4.688-28.787 8.72-60.707 8.72-82.458 0-35.891-15.811-67.802-46.797-87.114-26.035-16.227-57.152-19.926-84.112-19.926-26.957 0-58.077 3.699-84.112 19.926-30.982 19.312-46.797 51.222-46.797 87.114 0 21.805 4.035 53.728 8.726 82.515 4.819 29.578 11.21 61.123 17.379 83.392l0.026 0.086c7.402 26.557 24.982 45.664 46.87 56.467 19.472 9.61 40.426 11.834 57.907 11.834 17.485 0 38.435-2.224 57.907-11.83 21.888-10.8 39.469-29.907 46.87-56.464zM459.635 460.8c0-28.275 23.446-51.2 52.365-51.2s52.365 22.925 52.365 51.2c0 28.278-23.446 51.2-52.365 51.2s-52.365-22.922-52.365-51.2zM512 341.334c-67.478 0-122.182 53.488-122.182 119.466 0 65.981 54.704 119.469 122.182 119.469s122.182-53.488 122.182-119.469c0-65.978-54.704-119.466-122.182-119.466zM677.802 537.254c-6.662 13.792-3.882 31.11 6.278 42.573 14.086 15.894 39.85 17.939 50.205-0.602 19.642-35.174 30.806-75.526 30.806-118.426 0-136.672-113.315-247.465-253.091-247.465-139.779 0-253.092 110.793-253.092 247.465 0 42.899 11.164 83.251 30.806 118.426 10.354 18.541 36.119 16.496 50.205 0.602 10.16-11.462 12.938-28.781 6.275-42.573-11.203-23.187-17.469-49.104-17.469-76.454 0-98.97 82.054-179.199 183.274-179.199s183.27 80.229 183.27 179.199c0 27.35-6.262 53.267-17.469 76.454zM730.16 699.795c-0.304-10.659 3.542-21.072 10.928-28.762 52.771-54.957 85.094-128.902 85.094-210.234 0-169.661-140.666-307.199-314.182-307.199s-314.182 137.538-314.182 307.199c0 81.331 32.323 155.28 85.093 210.234 7.386 7.69 11.234 18.102 10.928 28.762-0.833 29.018-31.273 47.917-52.121 27.715-70.223-68.042-113.718-162.41-113.718-266.71 0-207.363 171.923-375.465 384-375.465s384 168.102 384 375.465c0 104.304-43.498 198.672-113.722 266.714-20.848 20.202-51.286 1.302-52.118-27.718z"],"attrs":[{"fill":"rgb(108, 114, 122)"}],"isMulticolor":false,"isMulticolor2":false,"colorPermutations":{"1081141221158162168120320620912282312341243190812456992125519219212552552551291162451452241651699010019902101":[{"f":2}]},"tags":["live-streaming"],"grid":0},"attrs":[{"fill":"rgb(108, 114, 122)"}],"properties":{"order":9,"id":115,"name":"live-streaming","prevSize":32,"code":59773},"setIdx":0,"setId":4,"iconIdx":120},{"icon":{"paths":["M700.144 361.891c4.685-24.973 34.704-34.093 49.13-13.171 31.994 46.403 50.726 102.653 50.726 163.28s-18.733 116.88-50.726 163.283c-14.426 20.922-44.445 11.802-49.13-13.174l-1.706-9.101c-1.581-8.429 0.384-17.082 4.858-24.403 20.749-33.965 32.704-73.888 32.704-116.605 0-42.714-11.955-82.637-32.704-116.605-4.474-7.318-6.438-15.971-4.858-24.4l1.706-9.104z","M320.704 395.395c-20.748 33.968-32.704 73.891-32.704 116.605 0 42.717 11.956 82.64 32.704 116.605 4.474 7.322 6.438 15.974 4.858 24.403l-1.706 9.101c-4.684 24.976-34.705 34.096-49.128 13.174-31.994-46.403-50.728-102.656-50.728-163.283s18.733-116.877 50.728-163.28c14.424-20.922 44.444-11.802 49.128 13.171l1.706 9.104c1.581 8.429-0.384 17.082-4.858 24.4z","M728.765 209.256l-0.515 2.747c-2.234 11.911 2.534 23.967 11.763 31.821 75.866 64.565 123.987 160.751 123.987 268.175 0 107.427-48.122 203.613-123.987 268.176-9.229 7.856-13.997 19.914-11.763 31.824l0.515 2.746c4.192 22.362 29.69 33.194 47.261 18.746 92.794-76.294 151.974-191.981 151.974-321.491 0-129.507-59.181-245.193-151.974-321.489-17.571-14.448-43.069-3.615-47.261 18.745z","M283.986 243.825c9.228-7.854 13.998-19.911 11.764-31.821l-0.515-2.747c-4.192-22.359-29.69-33.193-47.262-18.745-92.793 76.296-151.973 191.981-151.973 321.489 0 129.51 59.18 245.197 151.973 321.491 17.572 14.448 43.070 3.616 47.262-18.746l0.515-2.746c2.233-11.91-2.536-23.968-11.764-31.824-75.864-64.563-123.986-160.749-123.986-268.176 0-107.424 48.122-203.61 123.986-268.175z","M608 512c0 53.021-42.979 96-96 96s-96-42.979-96-96c0-53.018 42.979-96 96-96s96 42.982 96 96z"],"attrs":[{"fill":"rgb(108, 114, 122)"},{"fill":"rgb(108, 114, 122)"},{"fill":"rgb(108, 114, 122)"},{"fill":"rgb(108, 114, 122)"},{"fill":"rgb(108, 114, 122)"}],"isMulticolor":false,"isMulticolor2":false,"colorPermutations":{"1081141221158162168120320620912282312341243190812456992125519219212552552551291162451452241651699010019902101":[{"f":2},{"f":2},{"f":2},{"f":2},{"f":2}]},"tags":["live"],"grid":0},"attrs":[{"fill":"rgb(108, 114, 122)"},{"fill":"rgb(108, 114, 122)"},{"fill":"rgb(108, 114, 122)"},{"fill":"rgb(108, 114, 122)"},{"fill":"rgb(108, 114, 122)"}],"properties":{"order":8,"id":116,"name":"live","prevSize":32,"code":59774},"setIdx":0,"setId":4,"iconIdx":121},{"icon":{"paths":["M397.011 527.334c26.576 0 48.122-21.587 48.122-48.214s-21.546-48.214-48.122-48.214c-26.576 0-48.118 21.587-48.118 48.214s21.542 48.214 48.118 48.214z","M589.491 479.12c0 26.627-21.542 48.214-48.118 48.214s-48.122-21.587-48.122-48.214c0-26.627 21.546-48.214 48.122-48.214s48.118 21.587 48.118 48.214z","M733.853 479.12c0 26.627-21.542 48.214-48.118 48.214s-48.122-21.587-48.122-48.214c0-26.627 21.546-48.214 48.122-48.214s48.118 21.587 48.118 48.214z","M88.039 813.683l119.625 31.283c85.312 22.307 173.45-16.256 238.691-79.709 29.501 4.794 59.875 7.242 90.678 7.242 218.294 0 404.339-122.864 404.339-294.518 0-171.664-186.042-294.52-404.339-294.52-218.314 0-404.351 122.852-404.34 294.523 0 65.072 27.642 125.014 75.655 173.587-2.847 24.835-14.596 44.73-36.049 68.55l-84.261 93.562zM537.034 258.997c183.13 0 331.6 98.043 331.6 218.984 0 120.931-148.47 218.982-331.6 218.982-40.781 0-79.834-4.877-115.91-13.763-36.669 45.6-117.335 109.008-195.697 88.518 25.489-28.304 63.251-76.131 55.168-154.909-46.968-37.779-75.162-86.134-75.162-138.829-0.008-120.95 148.461-218.984 331.6-218.984z"],"width":1056,"attrs":[{"fill":"rgb(108, 114, 122)"},{"fill":"rgb(108, 114, 122)"},{"fill":"rgb(108, 114, 122)"},{"fill":"rgb(108, 114, 122)"}],"isMulticolor":false,"isMulticolor2":false,"colorPermutations":{"1081141221158162168120320620912282312341243190812456992125519219212552552551291162451452241651699010019902101":[{"f":2},{"f":2},{"f":2},{"f":2}]},"tags":["livechat-monochromatic"],"grid":0},"attrs":[{"fill":"rgb(108, 114, 122)"},{"fill":"rgb(108, 114, 122)"},{"fill":"rgb(108, 114, 122)"},{"fill":"rgb(108, 114, 122)"}],"properties":{"order":31,"id":117,"name":"livechat-monochromatic","prevSize":32,"code":59775},"setIdx":0,"setId":4,"iconIdx":122},{"icon":{"paths":["M341.334 778.672c-17.674 0-32 14.326-32 32s14.326 32 32 32h341.334c17.674 0 32-14.326 32-32s-14.326-32-32-32h-341.334zM85.335 298.672c0-70.692 57.308-128 128-128h597.334c70.691 0 128 57.308 128 128v298.666c0 70.694-57.309 128-128 128h-597.334c-70.692 0-128-57.306-128-128v-298.666zM213.335 234.672c-35.346 0-64 28.654-64 64v298.666c0 35.347 28.654 64 64 64h597.334c35.344 0 64-28.653 64-64v-298.666c0-35.347-28.656-64-64-64h-597.334zM256 320c0-11.782 9.551-21.333 21.333-21.333h170.667c11.782 0 21.334 9.551 21.334 21.333s-9.552 21.334-21.334 21.334h-170.667c-11.782 0-21.333-9.552-21.333-21.334zM277.333 554.666c-11.782 0-21.333 9.552-21.333 21.334s9.551 21.334 21.333 21.334h85.332c11.782 0 21.334-9.552 21.334-21.334s-9.552-21.334-21.334-21.334h-85.332zM554.666 320c0-11.782 9.552-21.333 21.334-21.333h170.666c11.782 0 21.334 9.551 21.334 21.333s-9.552 21.334-21.334 21.334h-170.666c-11.782 0-21.334-9.552-21.334-21.334zM448 554.666c-11.782 0-21.334 9.552-21.334 21.334s9.552 21.334 21.334 21.334h298.666c11.782 0 21.334-9.552 21.334-21.334s-9.552-21.334-21.334-21.334h-298.666zM256 448c0-11.782 9.551-21.334 21.333-21.334h213.332c11.782 0 21.334 9.552 21.334 21.334s-9.552 21.334-21.334 21.334h-213.332c-11.782 0-21.333-9.552-21.333-21.334zM618.666 426.666c-11.782 0-21.331 9.552-21.331 21.334s9.549 21.334 21.331 21.334h128c11.782 0 21.334-9.552 21.334-21.334s-9.552-21.334-21.334-21.334h-128z"],"attrs":[{"fill":"rgb(108, 114, 122)"}],"isMulticolor":false,"isMulticolor2":false,"colorPermutations":{"1081141221158162168120320620912282312341243190812456992125519219212552552551291162451452241651699010019902101":[{"f":2}]},"tags":["log-view"],"grid":0},"attrs":[{"fill":"rgb(108, 114, 122)"}],"properties":{"order":33,"id":119,"name":"log-view","prevSize":32,"code":59778},"setIdx":0,"setId":4,"iconIdx":123},{"icon":{"paths":["M176 96c-17.673 0-32 14.327-32 32v768c0 17.674 14.327 32 32 32h512c17.674 0 32-14.326 32-32v-96c0-17.674-14.326-32-32-32s-32 14.326-32 32v64h-448v-704h448v64c0 17.673 14.326 32 32 32s32-14.327 32-32v-96c0-17.673-14.326-32-32-32h-512zM521.373 329.373c12.496-12.497 32.758-12.497 45.254 0s12.496 32.758 0 45.254l-105.373 105.373h418.746c17.674 0 32 14.326 32 32s-14.326 32-32 32h-418.746l105.373 105.373c12.496 12.496 12.496 32.758 0 45.254s-32.758 12.496-45.254 0l-160-160c-12.496-12.496-12.496-32.758 0-45.254l160-160z"],"attrs":[{"fill":"rgb(108, 114, 122)"}],"isMulticolor":false,"isMulticolor2":false,"colorPermutations":{"1081141221158162168120320620912282312341243190812456992125519219212552552551291162451452241651699010019902101":[{"f":2}]},"tags":["login"],"grid":0},"attrs":[{"fill":"rgb(108, 114, 122)"}],"properties":{"order":34,"id":120,"name":"login","prevSize":32,"code":59779},"setIdx":0,"setId":4,"iconIdx":124},{"icon":{"paths":["M268.099 96c-17.673 0-32 14.327-32 32v768c0 17.674 14.327 32 32 32h512c17.674 0 32-14.326 32-32v-96c0-17.674-14.326-32-32-32s-32 14.326-32 32v64h-448v-704h448v64c0 17.673 14.326 32 32 32s32-14.327 32-32v-96c0-17.673-14.326-32-32-32h-512zM994.726 489.373l-160-160c-12.496-12.497-32.758-12.497-45.254 0s-12.496 32.758 0 45.254l105.373 105.373h-418.746c-17.674 0-32 14.326-32 32s14.326 32 32 32h418.746l-105.373 105.373c-12.496 12.496-12.496 32.758 0 45.254s32.758 12.496 45.254 0l160-160c12.496-12.496 12.496-32.758 0-45.254z"],"width":1056,"attrs":[{"fill":"rgb(108, 114, 122)"}],"isMulticolor":false,"isMulticolor2":false,"colorPermutations":{"1081141221158162168120320620912282312341243190812456992125519219212552552551291162451452241651699010019902101":[{"f":2}]},"tags":["logout"],"grid":0},"attrs":[{"fill":"rgb(108, 114, 122)"}],"properties":{"order":35,"id":121,"name":"logout","prevSize":32,"code":59780},"setIdx":0,"setId":4,"iconIdx":125},{"icon":{"paths":["M192 736h640v-448h-640v448zM128 256c0-17.673 14.327-32 32-32h704c17.674 0 32 14.327 32 32v512c0 17.674-14.326 32-32 32h-704c-17.673 0-32-14.326-32-32v-512zM305.304 389.082c-14.866-9.555-34.665-5.251-44.222 9.613-9.557 14.867-5.253 34.666 9.613 44.224l241.304 155.123 241.306-155.123c14.864-9.558 19.168-29.357 9.613-44.224-9.558-14.864-29.357-19.168-44.224-9.613l-206.694 132.877-206.696-132.877z"],"attrs":[{"fill":"rgb(108, 114, 122)"}],"isMulticolor":false,"isMulticolor2":false,"colorPermutations":{"1081141221158162168120320620912282312341243190812456992125519219212552552551291162451452241651699010019902101":[{"f":2}]},"tags":["mail"],"grid":0},"attrs":[{"fill":"rgb(108, 114, 122)"}],"properties":{"order":36,"id":122,"name":"mail","prevSize":32,"code":59781},"setIdx":0,"setId":4,"iconIdx":126},{"icon":{"paths":["M302.769 192h418.463l23.187 72.727h-0.211l23.792 63.999c0 41.27-31.306 69.818-64 69.818s-64-28.547-64-69.818c0-18.476-14.326-33.454-32-33.454s-32 14.978-32 33.454c0 41.27-31.306 69.818-64 69.818s-64-28.547-64-69.818c0-18.476-14.326-33.454-32-33.454s-32 14.978-32 33.454c0 41.27-31.306 69.818-64 69.818s-64-28.547-64-69.818l23.794-63.999h-0.213l23.188-72.727zM212.406 264.727l36.491-114.448c4.231-13.27 16.56-22.279 30.488-22.279h465.23c13.93 0 26.259 9.009 30.49 22.279l56.896 178.447c0 33.939-12.083 64.925-32 88.515v350.778c0 53.018-42.979 96-96 96h-384c-53.019 0-96-42.982-96-96v-350.778c-19.916-23.59-32-54.576-32-88.515l20.406-63.999zM288 458.33v309.69c0 17.67 14.327 32 32 32h128v-192.019h128v192.019h128c17.674 0 32-14.33 32-32v-309.69c-10.227 2.752-20.95 4.214-32 4.214-38.23 0-72.547-17.52-96-45.302-23.453 27.782-57.77 45.302-96 45.302s-72.547-17.52-96-45.302c-23.453 27.782-57.77 45.302-96 45.302-11.050 0-21.772-1.462-32-4.214z"],"attrs":[{"fill":"rgb(108, 114, 122)"}],"isMulticolor":false,"isMulticolor2":false,"colorPermutations":{"1081141221158162168120320620912282312341243190812456992125519219212552552551291162451452241651699010019902101":[{"f":2}]},"tags":["marketplace"],"grid":0},"attrs":[{"fill":"rgb(108, 114, 122)"}],"properties":{"order":37,"id":123,"name":"marketplace","prevSize":32,"code":59782},"setIdx":0,"setId":4,"iconIdx":127},{"icon":{"paths":["M773.072 576c-35.344 0-64-28.653-64-64s28.656-64 64-64c35.347 0 64 28.653 64 64s-28.653 64-64 64z","M517.072 576c-35.344 0-64-28.653-64-64s28.656-64 64-64c35.347 0 64 28.653 64 64s-28.653 64-64 64z","M261.073 576c-35.346 0-64-28.653-64-64s28.654-64 64-64c35.346 0 63.999 28.653 63.999 64s-28.652 64-63.999 64z"],"attrs":[{"fill":"rgb(108, 114, 122)"},{"fill":"rgb(108, 114, 122)"},{"fill":"rgb(108, 114, 122)"}],"isMulticolor":false,"isMulticolor2":false,"colorPermutations":{"1081141221158162168120320620912282312341243190812456992125519219212552552551291162451452241651699010019902101":[{"f":2},{"f":2},{"f":2}]},"tags":["meatballs"],"grid":0},"attrs":[{"fill":"rgb(108, 114, 122)"},{"fill":"rgb(108, 114, 122)"},{"fill":"rgb(108, 114, 122)"}],"properties":{"order":38,"id":124,"name":"meatballs","prevSize":32,"code":59783},"setIdx":0,"setId":4,"iconIdx":128},{"icon":{"paths":["M651.36 116.071c-57.242-19.989-105.792-20.069-138.358-20.071v64l-1.002-64c-92.006 0.342-297.345 47.824-381.242 242.995-17.897 38.97-34.758 103.344-34.758 173.005 0 69.958 17.020 146.285 52.216 207.875 23.229 40.653 92.799 131.376 191.179 173.536 94.861 40.656 206.368 52.349 296.49 16.301 16.41-6.563 24.39-25.187 17.827-41.597s-25.187-24.39-41.597-17.827c-69.878 27.952-163.171 20.445-247.51-15.699-80.819-34.64-141.384-112.451-160.821-146.464-28.804-50.41-43.784-115.418-43.784-176.125 0-60.765 15.020-116.182 29.055-146.589l0.184-0.4 0.173-0.406c69.507-162.181 243.823-204.604 323.589-204.605 31.594 0.002 70.877 0.296 117.258 16.493 46.147 16.114 101.389 48.779 161.824 116.767 43.658 49.115 63.533 114.977 69.389 177.713 5.891 63.12-2.854 118.189-11.546 142.093-6.4 17.6-20.429 45.44-59.392 45.699-18.259-0.806-72.822-14.672-83.12-69.568v-235.062c0-17.674-3.414-34.134-29.014-34.134-19.338 0-26.454 16.461-26.454 34.134v34.131c-35.181-39.859-95.402-68.266-152.746-68.266-106.038 0-192 85.962-192 192s85.962 192 192 192c62.179 0 117.658-29.555 152.746-75.386 25.715 71.078 102.57 93.027 137.014 94.134l0.515 0.016h0.512c82.643 0 111.715-64.806 120.086-87.83 12.64-34.762 21.674-99.696 15.12-169.907-6.589-70.595-29.379-151.401-85.277-214.287-66.902-75.265-131.075-114.597-188.557-134.67zM627.2 512c0 70.691-57.309 128-128 128s-128-57.309-128-128c0-70.691 57.309-128 128-128s128 57.309 128 128z"],"attrs":[{"fill":"rgb(108, 114, 122)"}],"isMulticolor":false,"isMulticolor2":false,"colorPermutations":{"1081141221158162168120320620912282312341243190812456992125519219212552552551291162451452241651699010019902101":[{"f":2}]},"tags":["mention"],"grid":0},"attrs":[{"fill":"rgb(108, 114, 122)"}],"properties":{"order":142,"id":125,"name":"mention","prevSize":32,"code":59784},"setIdx":0,"setId":4,"iconIdx":129},{"icon":{"paths":["M477.84 128c104.256 0 181.251 29.018 237.494 70.652l-44.317 44.317c-45.52-31.22-107.747-53.057-193.178-53.057-129.725 0-207.83 53.576-254.529 118.696-47.832 66.7-64.077 147.667-64.077 201.187v1.405l-0.127 1.398c-7.328 80.928 13.761 143.126 51.784 190.499l-43.879 43.878c-50.179-59.901-78.131-139.043-69.441-238.595 0.276-63.411 19.117-157.053 75.696-235.948 58.132-81.063 154.749-144.433 304.573-144.433zM822.848 332.499l-47.008 47.008c16.502 42.634 20.608 78.525 20.608 89.011v0.179c0 19.517 0 31.792-6.621 56.17-7.094 26.109-21.738 65.648-52.554 137.834-5.699 13.357-2.794 25.981 1.261 34.435 3.834 7.99 9.562 14.403 14.595 19.184 10.227 9.712 24.253 18.842 38.544 26.867 7.888 4.429 18.298 8.995 27.613 13.078l1.843 0.81c10.554 4.634 20.726 9.146 29.613 13.894 3.427 1.834 6.298 3.517 8.672 5.030-5.104 3.229-12.035 6.883-20.941 10.765-22.96 10.003-55.328 19.939-93.888 28.128-77.12 16.371-174.73 24.858-263.341 14.973-43.744-4.88-86.826-14.525-126.534-29.229l-47.542 47.542c52.771 23.018 110.492 36.886 167.267 43.222 96.387 10.752 200.71 1.517 282.909-15.936 41.098-8.726 77.731-19.731 105.68-31.907 13.91-6.064 26.618-12.822 36.858-20.342 9.427-6.925 20.739-17.344 25.61-32.016 7.392-22.269-2.957-40.509-12.816-51.139-9.427-10.166-22.106-17.939-32.954-23.738-11.309-6.048-23.626-11.472-33.891-15.978-11.059-4.854-18.934-8.317-24.054-11.194-9.914-5.565-17.437-10.538-22.506-14.57 27.421-64.81 42.214-104.589 50.048-133.424 8.774-32.304 8.797-50.986 8.797-72.64 0-20.106-7.053-75.501-35.267-136.019zM836.038 153.372c12.499-12.497 32.758-12.497 45.254 0 12.499 12.497 12.499 32.758 0 45.255l-682.665 682.665c-12.497 12.499-32.758 12.499-45.255 0-12.497-12.496-12.497-32.755 0-45.254l682.666-682.666z"],"attrs":[{"fill":"rgb(108, 114, 122)"}],"isMulticolor":false,"isMulticolor2":false,"colorPermutations":{"1081141221158162168120320620912282312341243190812456992125519219212552552551291162451452241651699010019902101":[{"f":2}]},"tags":["message-disabled"],"grid":0},"attrs":[{"fill":"rgb(108, 114, 122)"}],"properties":{"order":57,"id":126,"name":"message-disabled","prevSize":32,"code":59785},"setIdx":0,"setId":4,"iconIdx":130},{"icon":{"paths":["M223.311 308.609c-47.832 66.7-64.077 147.667-64.077 201.187v1.405l-0.127 1.398c-9.348 103.235 27.547 175.997 86.848 226.374 60.643 51.52 146.602 80.998 235.29 90.893 88.614 9.885 186.224 1.398 263.341-14.973 38.56-8.189 70.928-18.125 93.888-28.128 8.906-3.882 15.837-7.536 20.944-10.765-2.378-1.514-5.248-3.197-8.675-5.030-8.886-4.749-19.059-9.261-29.613-13.894l-1.843-0.81c-9.315-4.083-19.725-8.65-27.613-13.078-14.291-8.026-28.317-17.155-38.544-26.867-5.034-4.781-10.762-11.194-14.595-19.184-4.054-8.454-6.96-21.078-1.261-34.435 30.816-72.186 45.459-111.725 52.554-137.834 6.621-24.378 6.621-36.653 6.621-56.17v-0.179c0-15.51-8.979-86.595-53.776-152.876-43.376-64.174-121.395-125.729-264.832-125.729-129.725 0-207.83 53.576-254.529 118.696zM173.267 272.433c58.132-81.063 154.749-144.433 304.573-144.433 164.896 0 261.594 72.589 315.859 152.878 52.838 78.181 64.416 161.881 64.416 187.641 0 21.654-0.022 40.336-8.797 72.64-7.83 28.835-22.627 68.614-50.048 133.424 5.069 4.032 12.592 9.005 22.506 14.57 5.123 2.877 12.995 6.339 24.054 11.194 10.266 4.506 22.582 9.93 33.891 15.978 10.848 5.798 23.526 13.571 32.954 23.738 9.859 10.63 20.208 28.87 12.816 51.139-4.87 14.672-16.182 25.091-25.61 32.016-10.24 7.52-22.947 14.278-36.858 20.342-27.946 12.176-64.582 23.181-105.68 31.907-82.198 17.453-186.522 26.688-282.909 15.936-96.31-10.746-195.346-43.178-268.313-105.165-74.031-62.893-119.295-154.778-108.551-277.856 0.276-63.411 19.117-157.053 75.696-235.948z"],"attrs":[{"fill":"rgb(108, 114, 122)"}],"isMulticolor":false,"isMulticolor2":false,"colorPermutations":{"1081141221158162168120320620912282312341243190812456992125519219212552552551291162451452241651699010019902101":[{"f":2}]},"tags":["message"],"grid":0},"attrs":[{"fill":"rgb(108, 114, 122)"}],"properties":{"order":58,"id":127,"name":"message","prevSize":32,"code":59786},"setIdx":0,"setId":4,"iconIdx":131},{"icon":{"paths":["M512 128c75.546 0 138.861 52.356 155.645 122.762l-59.645 59.644v-22.405c0-53.019-42.979-96-96-96s-96 42.981-96 96v128c0 24.067 8.858 46.067 23.488 62.915l-45.322 45.325c-26.182-28.49-42.166-66.499-42.166-108.24v-128c0-88.365 71.635-160 160-160zM561.35 568.243l102.893-102.893c-15.763 48.672-54.221 87.13-102.893 102.893zM288 416c0 72.154 23.181 123.101 55.328 159.078l-45.304 45.302c-43.428-47.35-74.024-113.99-74.024-204.381 0-17.674 14.327-32 32-32s32 14.326 32 32zM478.659 650.938l-51.808 51.808c18.56 6.374 36.579 10.806 53.149 13.635v115.619h-160c-17.673 0-32 14.326-32 32s14.327 32 32 32h384c17.674 0 32-14.326 32-32s-14.326-32-32-32h-160v-115.619c44.64-7.619 99.818-26.896 147.722-64.381 60.704-47.501 108.278-123.286 108.278-236 0-17.674-14.326-32-32-32s-32 14.326-32 32c0 92.086-37.757 149.632-83.722 185.6-46.464 36.358-102.736 51.581-140.278 54.326-9.971-0.73-21.264-2.339-33.341-4.989zM825.373 153.372c12.496-12.497 32.758-12.497 45.254 0s12.496 32.758 0 45.255l-672 672c-12.497 12.496-32.758 12.496-45.255 0s-12.497-32.758 0-45.254l672-672z"],"attrs":[{"fill":"rgb(108, 114, 122)"}],"isMulticolor":false,"isMulticolor2":false,"colorPermutations":{"1081141221158162168120320620912282312341243190812456992125519219212552552551291162451452241651699010019902101":[{"f":2}]},"tags":["microphone-disabled"],"grid":0},"attrs":[{"fill":"rgb(108, 114, 122)"}],"properties":{"order":59,"id":128,"name":"microphone-disabled","prevSize":32,"code":59787},"setIdx":0,"setId":4,"iconIdx":132},{"icon":{"paths":["M608 288c0-53.019-42.979-96-96-96s-96 42.981-96 96v128c0 53.021 42.979 96 96 96s96-42.979 96-96v-128zM352 288c0-88.365 71.635-160 160-160s160 71.635 160 160v128c0 88.365-71.635 160-160 160s-160-71.635-160-160v-128zM256 384c17.673 0 32 14.326 32 32 0 92.086 37.757 149.632 83.722 185.6 46.464 36.358 102.736 51.581 140.278 54.326 37.542-2.746 93.814-17.968 140.278-54.326 45.962-35.968 83.722-93.514 83.722-185.6 0-17.674 14.326-32 32-32s32 14.326 32 32c0 112.714-47.574 188.499-108.278 236-47.904 37.485-103.082 56.762-147.722 64.381v115.619h160c17.674 0 32 14.326 32 32s-14.326 32-32 32h-384c-17.673 0-32-14.326-32-32s14.327-32 32-32h160v-115.619c-44.64-7.619-99.818-26.896-147.722-64.381-60.703-47.501-108.278-123.286-108.278-236 0-17.674 14.327-32 32-32z"],"attrs":[{"fill":"rgb(108, 114, 122)"}],"isMulticolor":false,"isMulticolor2":false,"colorPermutations":{"1081141221158162168120320620912282312341243190812456992125519219212552552551291162451452241651699010019902101":[{"f":2}]},"tags":["microphone"],"grid":0},"attrs":[{"fill":"rgb(108, 114, 122)"}],"properties":{"order":60,"id":129,"name":"microphone","prevSize":32,"code":59788},"setIdx":0,"setId":4,"iconIdx":133},{"icon":{"paths":["M234.666 170.661c0-47.128 38.205-85.333 85.333-85.333h384.001c47.126 0 85.331 38.205 85.331 85.333v682.667c0 47.13-38.205 85.334-85.331 85.334h-384.001c-47.128 0-85.333-38.205-85.333-85.334v-682.667zM298.666 170.661v682.667c0 11.782 9.551 21.334 21.333 21.334h384.001c11.782 0 21.331-9.552 21.331-21.334v-682.667c0-11.782-9.549-21.333-21.331-21.333h-96.291c-2.653 24.002-23.002 42.672-47.709 42.672h-96c-24.707 0-45.056-18.67-47.709-42.672h-96.292c-11.782 0-21.333 9.551-21.333 21.333z"],"attrs":[{"fill":"rgb(108, 114, 122)"}],"isMulticolor":false,"isMulticolor2":false,"colorPermutations":{"1081141221158162168120320620912282312341243190812456992125519219212552552551291162451452241651699010019902101":[{"f":2}]},"tags":["mobile"],"grid":0},"attrs":[{"fill":"rgb(108, 114, 122)"}],"properties":{"order":61,"id":130,"name":"mobile","prevSize":32,"code":59789},"setIdx":0,"setId":4,"iconIdx":134},{"icon":{"paths":["M319.247 231.566c-62.882 49.504-135.086 136.549-141.94 266.127-5.762 108.922 37.404 187.184 89.915 241.51 53.258 55.098 115.702 84.925 144.25 94.438 41.859 13.955 114.269 29.536 234.643-15.603 34.858-13.072 73.165-42.096 108.304-78.426 14.272-14.755 27.616-30.294 39.6-45.773-28.778 9.293-61.699 17.754-96.589 23.594-56.192 9.405-119.29 12.32-179.411-0.237-2.49-0.518-4.96-1.030-7.408-1.536-22.195-4.576-42.733-8.816-62.589-17.648-23.091-10.275-43.805-25.891-69.299-51.386-42.096-42.096-89.142-107.222-89.371-213.843-1.569-34.080 4.622-81.878 13.764-129.216 4.624-23.946 10.142-48.465 16.132-72.003zM345.562 138.217c32.8-17.15 63.709 15.843 53.875 45.907-12.234 37.414-24.586 85.511-33.482 131.58-9.024 46.732-13.949 88.633-12.643 114.7l0.038 0.797v0.8c0 84.915 36.173 134.918 70.627 169.373 22.509 22.509 36.835 32.278 50.064 38.166 13.229 5.885 26.832 8.717 51.085 13.763 1.923 0.4 3.917 0.816 5.978 1.248 49.914 10.426 104.534 8.336 155.76-0.237 65.434-10.954 122.384-31.981 152.374-47.386 17.562-9.021 34.992-2.47 44.477 5.965 9.661 8.589 19.376 27.152 8.886 46.954-20.637 38.95-53.645 84.419-92.182 124.259-38.211 39.51-84.317 76.038-131.834 93.859-135.626 50.858-223.216 34.438-277.354 16.394-36.515-12.173-108.392-46.912-170.026-110.675-62.381-64.534-114.684-159.427-107.81-289.373 10.79-203.979 157.583-317.098 232.165-356.093z"],"width":1056,"attrs":[{"fill":"rgb(108, 114, 122)"}],"isMulticolor":false,"isMulticolor2":false,"colorPermutations":{"1081141221158162168120320620912282312341243190812456992125519219212552552551291162451452241651699010019902101":[{"f":2}]},"tags":["moon"],"grid":0},"attrs":[{"fill":"rgb(108, 114, 122)"}],"properties":{"order":62,"id":131,"name":"moon","prevSize":32,"code":59790},"setIdx":0,"setId":4,"iconIdx":135},{"icon":{"paths":["M144 160c-17.673 0-32 14.327-32 32s14.327 32 32 32h192c17.674 0 32-14.327 32-32s-14.326-32-32-32h-192zM700.4 346.646c11.795-13.165 32.026-14.272 45.187-2.48 13.162 11.795 14.272 32.026 2.477 45.187l-81.222 90.646h216.358c17.674 0 32 14.326 32 32s-14.326 32-32 32h-216.358l81.222 90.646c11.795 13.162 10.685 33.392-2.477 45.187-13.162 11.792-33.392 10.685-45.187-2.48l-129.030-144c-10.893-12.154-10.893-30.554 0-42.707l129.030-144zM112 512c0-17.674 14.327-32 32-32h192c17.674 0 32 14.326 32 32s-14.326 32-32 32h-192c-17.673 0-32-14.326-32-32zM144 640c-17.673 0-32 14.326-32 32s14.327 32 32 32h192c17.674 0 32-14.326 32-32s-14.326-32-32-32h-192zM112 352c0-17.674 14.327-32 32-32h192c17.674 0 32 14.326 32 32s-14.326 32-32 32h-192c-17.673 0-32-14.326-32-32zM144 800c-17.673 0-32 14.326-32 32s14.327 32 32 32h192c17.674 0 32-14.326 32-32s-14.326-32-32-32h-192z"],"attrs":[{"fill":"rgb(108, 114, 122)"}],"isMulticolor":false,"isMulticolor2":false,"colorPermutations":{"1081141221158162168120320620912282312341243190812456992125519219212552552551291162451452241651699010019902101":[{"f":2}]},"tags":["move-to-the-queue"],"grid":0},"attrs":[{"fill":"rgb(108, 114, 122)"}],"properties":{"order":63,"id":132,"name":"move-to-the-queue","prevSize":32,"code":59791},"setIdx":0,"setId":4,"iconIdx":136},{"icon":{"paths":["M809.002 166.758c7.782 6.063 12.333 15.377 12.333 25.242v448h-0.112c0.074 1.734 0.112 3.478 0.112 5.229 0 69.053-57.309 125.030-128 125.030-70.694 0-128-55.978-128-125.030s57.306-125.030 128-125.030c23.312 0 45.171 6.090 64 16.73v-303.86l-384 96.798v409.136c0 69.053-57.309 125.037-128.001 125.037s-128-55.978-128-125.030c0-69.050 57.308-125.027 128-125.027 23.314 0 45.173 6.086 64 16.726v-325.777c0-14.66 9.962-27.446 24.177-31.029l448-112.93c9.568-2.411 19.709-0.276 27.491 5.788z"],"attrs":[{"fill":"rgb(108, 114, 122)"}],"isMulticolor":false,"isMulticolor2":false,"colorPermutations":{"1081141221158162168120320620912282312341243190812456992125519219212552552551291162451452241651699010019902101":[{"f":2}]},"tags":["musical-note"],"grid":0},"attrs":[{"fill":"rgb(108, 114, 122)"}],"properties":{"order":64,"id":133,"name":"musical-note","prevSize":32,"code":59792},"setIdx":0,"setId":4,"iconIdx":137},{"icon":{"paths":["M208 176c-35.346 0-64 28.654-64 64v576c0 35.347 28.654 64 64 64h576c35.347 0 64-28.653 64-64v-576c0-35.346-28.653-64-64-64h-576zM208 240h576v576h-576v-576zM698.627 558.15c-0.189 17.674-14.669 31.846-32.339 31.658-17.674-0.189-31.846-14.669-31.658-32.339l1.318-123.594-309.341 308.774c-12.51 12.483-32.771 12.464-45.256-0.042-12.485-12.509-12.467-32.771 0.042-45.258l309.195-308.624-123.382 1.315c-17.674 0.189-32.154-13.984-32.339-31.654-0.189-17.674 13.984-32.15 31.654-32.339l201.92-2.157c8.605-0.093 16.886 3.286 22.97 9.37 6.086 6.086 9.462 14.365 9.373 22.97l-2.157 201.92z"],"attrs":[{"fill":"rgb(108, 114, 122)"}],"isMulticolor":false,"isMulticolor2":false,"colorPermutations":{"1081141221158162168120320620912282312341243190812456992125519219212552552551291162451452241651699010019902101":[{"f":2}]},"tags":["new-window"],"grid":0},"attrs":[{"fill":"rgb(108, 114, 122)"}],"properties":{"order":65,"id":134,"name":"new-window","prevSize":32,"code":59793},"setIdx":0,"setId":4,"iconIdx":138},{"icon":{"paths":["M781.837 402.634c0-5.245-0.154-10.454-0.461-15.622l-63.539 63.539v265.363h-265.363l-66.979 66.979h425.363c12.944 0 24.611-7.795 29.565-19.754 4.954-11.955 2.214-25.722-6.938-34.874l-51.648-51.648v-273.984zM704.765 217.373l-45.254 45.255c-35.638-35.351-84.704-57.189-138.867-57.189-108.909 0-197.194 88.287-197.194 197.195v196.054l-64.001 64v-260.054c0-144.254 116.941-261.195 261.194-261.195 71.837 0 136.899 29.001 184.122 75.934zM433.578 808.934c0 48.086 38.982 87.066 87.066 87.066s87.066-38.979 87.066-87.066h-174.131zM854.275 190.982c-11.334-11.334-29.709-11.334-41.043 0l-612.732 612.733c-11.333 11.331-11.333 29.709 0 41.040 11.334 11.334 29.709 11.334 41.043 0l612.732-612.731c11.334-11.333 11.334-29.709 0-41.043z"],"attrs":[{"fill":"rgb(108, 114, 122)"}],"isMulticolor":false,"isMulticolor2":false,"colorPermutations":{"1081141221158162168120320620912282312341243190812456992125519219212552552551291162451452241651699010019902101":[{"f":2}]},"tags":["notification-disabled"],"grid":0},"attrs":[{"fill":"rgb(108, 114, 122)"}],"properties":{"order":66,"id":135,"name":"notification-disabled","prevSize":32,"code":59794},"setIdx":0,"setId":4,"iconIdx":139},{"icon":{"paths":["M601.331 808.928h-174.154c0.003 48.090 38.989 87.072 87.078 87.072s87.075-38.982 87.075-87.072zM815.597 731.677c7.274 9.696 8.442 22.669 3.021 33.51s-16.499 17.69-28.621 17.69h-565.996c-12.943 0-24.611-7.798-29.564-19.757-4.953-11.955-2.215-25.718 6.937-34.87l51.653-51.654v-274.032c0-144.272 116.957-261.228 261.229-261.228s261.229 116.956 261.229 261.228v275.629l40.112 53.485zM711.485 715.894v-313.331c0-108.926-88.304-197.228-197.229-197.228-108.928 0-197.229 88.302-197.229 197.228v313.331h394.458z"],"attrs":[{"fill":"rgb(108, 114, 122)"}],"isMulticolor":false,"isMulticolor2":false,"colorPermutations":{"1081141221158162168120320620912282312341243190812456992125519219212552552551291162451452241651699010019902101":[{"f":2}]},"tags":["notification"],"grid":0},"attrs":[{"fill":"rgb(108, 114, 122)"}],"properties":{"order":67,"id":136,"name":"notification","prevSize":32,"code":59795},"setIdx":0,"setId":4,"iconIdx":140},{"icon":{"paths":["M712.051 512.675v54.89c-0.195 76.736-43.741 143.283-107.44 176.445-5.53-25.67-28.362-44.906-55.683-44.906h-72.502c-31.459 0-56.963 25.501-56.963 56.963v41.427c0 31.462 25.504 56.963 56.963 56.963h72.502c28.509 0 52.128-20.944 56.307-48.288 69.261-26.829 123.962-82.883 148.966-153.030 4.723 1.27 9.69 1.946 14.813 1.946h28.483c31.459 0 56.963-25.504 56.963-56.963v-85.446c0-31.459-25.504-56.963-56.963-56.963h-28.483v-28.483c0-141.572-114.765-256.338-256.336-256.338s-256.339 114.766-256.339 256.338v23.302h-28.483c-31.46 0-56.964 25.504-56.964 56.966v103.571c0 31.459 25.504 56.963 56.964 56.963h28.482c31.46 0 56.964-25.504 56.964-56.963v-36.253h0.149c-0.099-2.576-0.148-5.165-0.148-7.766v-139.821c0-110.111 89.263-199.374 199.375-199.374s199.373 89.263 199.373 199.374v85.446z"],"width":1056,"attrs":[{"fill":"rgb(108, 114, 122)"}],"isMulticolor":false,"isMulticolor2":false,"colorPermutations":{"1081141221158162168120320620912282312341243190812456992125519219212552552551291162451452241651699010019902101":[{"f":2}]},"tags":["omnichannel"],"grid":0},"attrs":[{"fill":"rgb(108, 114, 122)"}],"properties":{"order":123,"id":137,"name":"omnichannel","prevSize":32,"code":59796},"setIdx":0,"setId":4,"iconIdx":141},{"icon":{"paths":["M705.578 633.158c9.507-9.235 24.701-9.018 33.939 0.486 9.238 9.507 9.021 24.701-0.486 33.939l-208.275 202.387c-9.312 9.050-24.138 9.050-33.45 0l-208.276-202.387c-9.506-9.238-9.724-24.432-0.487-33.939 9.237-9.504 24.432-9.722 33.937-0.486l191.549 186.134 191.549-186.134zM705.578 411.584c9.507 9.238 24.701 9.021 33.939-0.486s9.021-24.701-0.486-33.939l-208.275-202.385c-9.312-9.051-24.138-9.051-33.45 0l-208.276 202.385c-9.506 9.238-9.724 24.432-0.487 33.939 9.237 9.504 24.432 9.725 33.937 0.486l191.549-186.134 191.549 186.134z"],"width":1056,"attrs":[{"fill":"rgb(108, 114, 122)"}],"isMulticolor":false,"isMulticolor2":false,"colorPermutations":{"1081141221158162168120320620912282312341243190812456992125519219212552552551291162451452241651699010019902101":[{"f":2}]},"tags":["order"],"grid":0},"attrs":[{"fill":"rgb(108, 114, 122)"}],"properties":{"order":124,"id":138,"name":"order","prevSize":32,"code":59797},"setIdx":0,"setId":4,"iconIdx":142},{"icon":{"paths":["M742.317 652.566c12.666-12.323 12.944-32.582 0.618-45.248-12.323-12.669-32.582-12.944-45.251-0.621l44.634 45.869zM512 832.019l-22.317 22.934c12.422 12.086 32.211 12.086 44.634 0l-22.317-22.934zM326.317 606.698c-12.667-12.323-32.927-12.048-45.252 0.621-12.324 12.666-12.047 32.925 0.619 45.248l44.632-45.869zM697.683 606.698l-208 202.387 44.634 45.869 208-202.387-44.634-45.869zM534.317 809.085l-208-202.387-44.632 45.869 207.999 202.387 44.634-45.869z","M742.317 371.456c12.666 12.323 12.944 32.582 0.618 45.251-12.323 12.666-32.582 12.944-45.251 0.618l44.634-45.869zM512 192.004l-22.317-22.935c12.422-12.087 32.211-12.087 44.634 0l-22.317 22.935zM326.317 417.325c-12.668 12.326-32.927 12.048-45.252-0.618-12.325-12.669-12.048-32.928 0.619-45.251l44.633 45.869zM697.683 417.325l-208-202.386 44.634-45.87 208 202.387-44.634 45.869zM534.317 214.939l-208 202.386-44.633-45.869 207.999-202.387 44.634 45.87z"],"attrs":[{"fill":"rgb(108, 114, 122)"},{"fill":"rgb(158, 162, 168)","opacity":0.7}],"isMulticolor":true,"isMulticolor2":true,"colorPermutations":{"1081141221158162168120320620912282312341243190812456992125519219212552552551291162451452241651699010019902101":[{"f":2},{"f":7}]},"tags":["ordering-ascending"],"grid":0},"attrs":[{"fill":"rgb(108, 114, 122)"},{"fill":"rgb(158, 162, 168)","opacity":0.7}],"properties":{"order":125,"id":139,"name":"ordering-ascending","prevSize":32,"code":59798,"codes":[59798,59799]},"setIdx":0,"setId":4,"iconIdx":143},{"icon":{"paths":["M281.684 371.434c-12.667 12.323-12.944 32.582-0.619 45.248 12.324 12.669 32.584 12.944 45.252 0.621l-44.633-45.869zM512 191.981l22.317-22.935c-12.422-12.087-32.211-12.087-44.634 0l22.317 22.935zM697.683 417.302c12.669 12.323 32.928 12.048 45.251-0.621 12.326-12.666 12.048-32.925-0.618-45.248l-44.634 45.869zM326.317 417.302l208-202.387-44.634-45.869-207.999 202.387 44.633 45.869zM489.683 214.916l208 202.387 44.634-45.869-208-202.387-44.634 45.869z","M281.684 652.544c-12.667-12.323-12.944-32.582-0.619-45.251 12.324-12.666 32.584-12.944 45.252-0.618l-44.633 45.869zM512 831.997l22.317 22.934c-12.422 12.086-32.211 12.086-44.634 0l22.317-22.934zM697.683 606.675c12.669-12.326 32.928-12.048 45.251 0.618 12.326 12.669 12.048 32.928-0.618 45.251l-44.634-45.869zM326.317 606.675l208 202.384-44.634 45.872-207.999-202.387 44.633-45.869zM489.683 809.059l208-202.384 44.634 45.869-208 202.387-44.634-45.872z"],"attrs":[{"fill":"rgb(108, 114, 122)"},{"fill":"rgb(158, 162, 168)","opacity":0.7}],"isMulticolor":true,"isMulticolor2":true,"colorPermutations":{"1081141221158162168120320620912282312341243190812456992125519219212552552551291162451452241651699010019902101":[{"f":2},{"f":7}]},"tags":["ordering-descending"],"grid":0},"attrs":[{"fill":"rgb(108, 114, 122)"},{"fill":"rgb(158, 162, 168)","opacity":0.7}],"properties":{"order":126,"id":140,"name":"ordering-descending","prevSize":32,"code":59800,"codes":[59800,59801]},"setIdx":0,"setId":4,"iconIdx":144},{"icon":{"paths":["M512 928c229.75 0 416-186.25 416-416s-186.25-416-416-416c-229.752 0-416.001 186.25-416.001 416s186.25 416 416.001 416zM399.997 383.994c0-17.67 14.326-32 32-32s32 14.33 32 32v256c0 17.674-14.326 32-32 32s-32-14.326-32-32v-256zM559.997 383.994c0-17.67 14.326-32 32-32s32 14.33 32 32v256c0 17.674-14.326 32-32 32s-32-14.326-32-32v-256z"],"attrs":[{"fill":"rgb(108, 114, 122)"}],"isMulticolor":false,"isMulticolor2":false,"colorPermutations":{"1081141221158162168120320620912282312341243190812456992125519219212552552551291162451452241651699010019902101":[{"f":2}]},"tags":["pause-filled"],"grid":0},"attrs":[{"fill":"rgb(108, 114, 122)"}],"properties":{"order":128,"id":141,"name":"pause-filled","prevSize":32,"code":59802},"setIdx":0,"setId":4,"iconIdx":145},{"icon":{"paths":["M864 512c0-194.404-157.597-352-352-352-194.405 0-352.001 157.596-352.001 352s157.596 352 352.001 352c194.403 0 352-157.597 352-352zM928 512c0 229.75-186.25 416-416 416-229.752 0-416.001-186.25-416.001-416s186.25-416 416.001-416c229.75 0 416 186.25 416 416zM399.997 383.994v256c0 17.674 14.326 32 32 32s32-14.326 32-32v-256c0-17.67-14.326-32-32-32s-32 14.33-32 32zM559.997 383.994v256c0 17.674 14.326 32 32 32s32-14.326 32-32v-256c0-17.67-14.326-32-32-32s-32 14.33-32 32z"],"attrs":[{"fill":"rgb(108, 114, 122)"}],"isMulticolor":false,"isMulticolor2":false,"colorPermutations":{"1081141221158162168120320620912282312341243190812456992125519219212552552551291162451452241651699010019902101":[{"f":2}]},"tags":["pause"],"grid":0},"attrs":[{"fill":"rgb(108, 114, 122)"}],"properties":{"order":129,"id":142,"name":"pause","prevSize":32,"code":59803},"setIdx":0,"setId":4,"iconIdx":146},{"icon":{"paths":["M825.373 153.372c12.496-12.497 32.758-12.497 45.254 0s12.496 32.758 0 45.255l-672 672c-12.497 12.496-32.758 12.496-45.255 0s-12.497-32.758 0-45.254l672-672zM575.613 569.069l-44.707 44.707c7.846 5.904 15.846 11.453 23.533 16.016 9.2 5.459 22.838 12.579 36.973 13.222 16.224 0.736 31.446-5.302 42.47-10.976 11.741-6.042 22.79-13.824 31.744-20.944 1.053-0.838 2.134-1.232 2.883-1.341 0.403-0.061 0.611-0.032 0.688-0.013l121.094 59.075c-5.578 29.331-20.381 66.771-42.39 92.621-11.229 13.187-23.197 22.038-35.389 26.32-11.597 4.074-25.402 4.762-42.653-1.677-48.422-18.070-103.405-53.152-151.69-89.261-14.026-10.49-27.299-20.922-39.469-30.842l-44.387 44.39c14.186 11.683 29.84 24.061 46.445 36.48 49.808 37.248 110.448 76.56 167.261 97.76 30.275 11.299 59.149 11.238 85.197 2.086 25.45-8.938 46.090-25.786 62.246-44.755 31.866-37.424 50.634-88.144 57.059-126.246 4.72-27.987-11.776-51.77-33.136-62.192l-122.81-59.91c-24.41-11.907-51.462-6-69.834 8.611-7.008 5.571-14.544 10.739-21.443 14.291-5.574 2.867-8.931 3.741-10.314 4.003l-0.093-0.038c-0.992-0.4-3.731-1.514-8.57-4.387-3.277-1.942-6.87-4.301-10.71-7.002zM313.636 589.683l44.389-44.387c-9.92-12.17-20.349-25.44-30.838-39.466-36.109-48.285-71.192-103.267-89.263-151.69-6.437-17.251-5.748-31.056-1.675-42.652 4.283-12.192 13.134-24.16 26.319-35.388 25.849-22.012 63.291-36.814 92.622-42.392l59.075 121.095c0.019 0.077 0.048 0.285-0.013 0.688-0.109 0.752-0.502 1.83-1.341 2.883-7.12 8.954-14.902 20.003-20.944 31.744-5.674 11.024-11.715 26.246-10.976 42.47 0.643 14.134 7.763 27.773 13.222 36.973 4.563 7.686 10.109 15.683 16.013 23.53l44.707-44.707c-2.701-3.837-5.056-7.434-7.002-10.707-2.87-4.838-3.984-7.578-4.387-8.57l-0.038-0.093c0.266-1.382 1.139-4.739 4.006-10.314 3.552-6.899 8.72-14.435 14.291-21.443 14.611-18.371 20.518-45.424 8.611-69.834l-59.91-122.809c-10.422-21.362-34.205-37.856-62.192-33.137-38.103 6.425-88.824 25.194-126.246 57.060-18.972 16.155-35.817 36.795-44.757 62.246-9.15 26.048-9.211 54.921 2.087 85.196 21.202 56.813 60.513 117.453 97.761 167.261 12.417 16.605 24.795 32.256 36.478 46.442z"],"attrs":[{"fill":"rgb(108, 114, 122)"}],"isMulticolor":false,"isMulticolor2":false,"colorPermutations":{"1081141221158162168120320620912282312341243190812456992125519219212552552551291162451452241651699010019902101":[{"f":2}]},"tags":["phone-disabled"],"grid":0},"attrs":[{"fill":"rgb(108, 114, 122)"}],"properties":{"order":130,"id":143,"name":"phone-disabled","prevSize":32,"code":59804},"setIdx":0,"setId":4,"iconIdx":147},{"icon":{"paths":["M801.123 657.59c22.474 7.734 50.954 2.582 67.408-20.544 22.4-31.488 44.992-80.624 48.922-129.619 1.99-24.838-0.691-51.344-12.368-75.661-11.949-24.89-32.32-45.35-61.718-58.768-55.165-25.181-125.84-40.262-187.398-49.146-61.946-8.936-117.494-11.98-143.965-11.98v62.469c23.2 0 75.757 2.787 135.043 11.341 59.677 8.611 123.36 22.682 170.381 44.144 16.749 7.645 26.022 17.894 31.344 28.973 5.59 11.651 7.795 26.371 6.413 43.635-2.717 33.843-18.723 70.784-35.52 95.469l-127.398-43.853c-0.067-0.042-0.237-0.17-0.48-0.496-0.451-0.608-0.934-1.651-1.088-2.989-1.296-11.363-3.606-24.678-7.635-37.254-3.786-11.808-10.278-26.842-22.272-37.792-10.451-9.539-25.126-14.15-35.494-16.794-11.914-3.040-25.568-5.181-38.944-6.717-26.858-3.088-55.773-4.093-74.352-4.093v62.47c16.902 0 43.338 0.938 67.219 3.683 11.99 1.379 22.554 3.123 30.64 5.187 5.45 1.389 8.173 2.541 9.162 2.957l0.093 0.038c0.79 1.165 2.544 4.154 4.458 10.125 2.368 7.392 4.045 16.374 5.059 25.267 2.659 23.325 17.61 46.63 43.29 55.469l129.203 44.477zM222.875 657.584c-22.474 7.738-50.954 2.586-67.407-20.544-22.4-31.485-44.993-80.621-48.922-129.616-1.992-24.838 0.691-51.344 12.366-75.664 11.949-24.886 32.321-45.347 61.719-58.765 55.165-25.181 125.841-40.262 187.4-49.146 61.946-8.937 117.494-11.98 143.965-11.98v62.47c-23.2 0-75.757 2.787-135.046 11.341-59.674 8.608-123.358 22.682-170.378 44.144-16.748 7.645-26.024 17.894-31.343 28.973-5.593 11.651-7.797 26.371-6.412 43.635 2.714 33.843 18.721 70.784 35.518 95.469l127.4-43.856c0.067-0.038 0.234-0.166 0.477-0.493 0.454-0.611 0.938-1.651 1.091-2.989 1.296-11.363 3.606-24.682 7.635-37.254 3.786-11.808 10.275-26.842 22.272-37.792 10.448-9.542 25.126-14.15 35.491-16.794 11.917-3.040 25.568-5.181 38.947-6.717 26.858-3.088 55.77-4.093 74.349-4.093v62.47c-16.899 0-43.338 0.938-67.216 3.683-11.99 1.376-22.554 3.123-30.64 5.187-5.453 1.389-8.176 2.541-9.162 2.957l-0.093 0.038c-0.79 1.162-2.547 4.154-4.458 10.125-2.371 7.389-4.045 16.371-5.059 25.267-2.659 23.322-17.61 46.627-43.293 55.469l-129.202 44.474z"],"attrs":[{"fill":"rgb(108, 114, 122)"}],"isMulticolor":false,"isMulticolor2":false,"colorPermutations":{"1081141221158162168120320620912282312341243190812456992125519219212552552551291162451452241651699010019902101":[{"f":2}]},"tags":["phone-end"],"grid":0},"attrs":[{"fill":"rgb(108, 114, 122)"}],"properties":{"order":131,"id":144,"name":"phone-end","prevSize":32,"code":59805},"setIdx":0,"setId":4,"iconIdx":148},{"icon":{"paths":["M410.502 204.616c-10.419-21.362-34.202-37.856-62.189-33.137-38.104 6.425-88.825 25.194-126.247 57.060-18.972 16.155-35.817 36.795-44.757 62.246-9.15 26.048-9.211 54.919 2.087 85.195 21.202 56.816 60.513 117.456 97.761 167.264 37.482 50.122 74.609 91.552 93.329 110.269l44.173-44.173c-16.406-16.403-51.6-55.536-87.472-103.51-36.11-48.285-71.192-103.264-89.264-151.69-6.437-17.248-5.748-31.056-1.675-42.651 4.283-12.192 13.134-24.16 26.319-35.388 25.849-22.012 63.292-36.814 92.623-42.392l59.075 121.097c0.019 0.074 0.045 0.285-0.013 0.688-0.112 0.749-0.502 1.827-1.344 2.883-7.117 8.95-14.899 20-20.941 31.741-5.674 11.024-11.715 26.246-10.976 42.47 0.643 14.138 7.76 27.773 13.222 36.973 6.275 10.576 14.416 21.741 22.79 32.291 16.806 21.171 36.541 42.326 49.68 55.466l44.173-44.173c-11.952-11.952-29.981-31.309-44.928-50.134-7.504-9.453-13.738-18.157-17.997-25.334-2.87-4.838-3.984-7.578-4.387-8.57l-0.038-0.093c0.266-1.382 1.139-4.736 4.006-10.31 3.552-6.902 8.717-14.438 14.291-21.443 14.611-18.374 20.518-45.424 8.611-69.837l-59.914-122.808zM819.386 613.504c21.36 10.419 37.856 34.202 33.136 62.189-6.426 38.106-25.194 88.826-57.059 126.246-16.157 18.973-36.797 35.818-62.246 44.758-26.048 9.149-54.922 9.21-85.197-2.086-56.813-21.203-117.453-60.515-167.261-97.763-50.122-37.482-91.555-74.608-110.272-93.328l44.173-44.173c16.403 16.406 55.539 51.6 103.51 87.472 48.285 36.109 103.267 71.194 151.69 89.264 17.248 6.435 31.056 5.747 42.653 1.674 12.192-4.282 24.16-13.133 35.386-26.317 22.013-25.85 36.816-63.293 42.394-92.624l-121.094-59.075c-0.077-0.019-0.288-0.048-0.688 0.013-0.752 0.112-1.83 0.502-2.886 1.344-8.95 7.117-20 14.899-31.741 20.941-11.024 5.674-26.246 11.715-42.47 10.976-14.134-0.643-27.773-7.76-36.973-13.222-10.576-6.275-21.741-14.416-32.288-22.79-21.174-16.806-42.33-36.541-55.469-49.68l44.173-44.173c11.952 11.952 31.309 29.981 50.134 44.928 9.453 7.504 18.16 13.738 25.334 17.997 4.838 2.87 7.578 3.984 8.57 4.387l0.093 0.038c1.382-0.266 4.739-1.139 10.314-4.006 6.899-3.552 14.435-8.717 21.44-14.291 18.374-14.611 45.427-20.518 69.837-8.611l122.81 59.914z"],"attrs":[{"fill":"rgb(108, 114, 122)"}],"isMulticolor":false,"isMulticolor2":false,"colorPermutations":{"1081141221158162168120320620912282312341243190812456992125519219212552552551291162451452241651699010019902101":[{"f":2}]},"tags":["phone"],"grid":0},"attrs":[{"fill":"rgb(108, 114, 122)"}],"properties":{"order":68,"id":145,"name":"phone","prevSize":32,"code":59806},"setIdx":0,"setId":4,"iconIdx":149},{"icon":{"paths":["M512.608 128.019c-72.378-1.376-144.906 25.78-199.307 80.524-54.654 54.999-89.301 136.056-89.301 239.464 0 80.234 44.5 174.87 97.546 252.806 53.066 77.965 120.829 148.157 176.141 175.821l15.194 7.6 14.81-8.326c217.158-122.154 272.31-333.882 272.31-427.898 0-101.731-27.923-181.776-80.179-236.932-52.346-55.248-125.296-81.503-207.213-83.060zM288 448.006c0-88.589 29.353-152.745 70.698-194.351 41.6-41.862 97.072-62.705 152.694-61.648 68.992 1.311 124.038 23.054 161.968 63.088 38.019 40.126 62.64 102.649 62.64 192.914 0 74.55-44.691 253.677-224.176 363.030-39.683-25.61-92.186-79.853-137.37-146.237-50.954-74.864-86.454-156.221-86.454-216.797zM544 416c0-17.674-14.326-32-32-32s-32 14.326-32 32c0 17.674 14.326 32 32 32s32-14.326 32-32zM608 416c0 53.021-42.979 96-96 96s-96-42.979-96-96c0-53.021 42.979-96 96-96s96 42.979 96 96z"],"attrs":[{"fill":"rgb(108, 114, 122)"}],"isMulticolor":false,"isMulticolor2":false,"colorPermutations":{"1081141221158162168120320620912282312341243190812456992125519219212552552551291162451452241651699010019902101":[{"f":2}]},"tags":["pin-map"],"grid":0},"attrs":[{"fill":"rgb(108, 114, 122)"}],"properties":{"order":69,"id":146,"name":"pin-map","prevSize":32,"code":59807},"setIdx":0,"setId":4,"iconIdx":150},{"icon":{"paths":["M428.346 199.399c17.542-17.543 45.984-17.543 63.53 0 17.542 17.543 17.542 45.986 0 63.53l-43.661 43.659 177.83 177.828 60.339-60.339c24.992-24.995 65.517-24.995 90.509 0l45.254 45.254-331.869 331.869-45.254-45.254c-24.992-24.995-24.992-65.517 0-90.509l60.339-60.339-177.827-177.83-43.661 43.661c-17.543 17.542-45.987 17.542-63.53 0s-17.543-45.987 0-63.53l208.001-207.999zM175.090 362.144c-42.537 42.538-42.537 111.501 0 154.038 42.001 42.003 109.771 42.531 152.42 1.587l87.334 87.334-15.075 15.075c-49.987 49.987-49.987 131.034 0 181.021l67.882 67.882c12.496 12.496 32.758 12.496 45.254 0l167.936-167.933 88.013 92.003c12.218 12.771 32.474 13.219 45.245 1.002 12.771-12.214 13.219-32.47 1.002-45.242l-88.995-93.030 163.923-163.923c12.499-12.496 12.499-32.758 0-45.254l-67.882-67.882c-49.987-49.987-131.030-49.987-181.018 0l-15.907 15.907-87.325-87.323c41.766-42.596 41.51-110.983-0.768-153.262-42.538-42.537-111.504-42.537-154.042 0l-207.998 208z"],"width":1056,"attrs":[{"fill":"rgb(108, 114, 122)"}],"isMulticolor":false,"isMulticolor2":false,"colorPermutations":{"1081141221158162168120320620912282312341243190812456992125519219212552552551291162451452241651699010019902101":[{"f":2}]},"tags":["pin"],"grid":0},"attrs":[{"fill":"rgb(108, 114, 122)"}],"properties":{"order":70,"id":147,"name":"pin","prevSize":32,"code":59808},"setIdx":0,"setId":4,"iconIdx":151},{"icon":{"paths":["M513.354 160c17.674 0 32 13.133 32 29.333v645.332c0 16.202-14.326 29.334-32 29.334s-32-13.133-32-29.334v-645.332c0-16.2 14.326-29.333 32-29.333z"],"width":1056,"attrs":[{"fill":"rgb(108, 114, 122)"}],"isMulticolor":false,"isMulticolor2":false,"colorPermutations":{"1081141221158162168120320620912282312341243190812456992125519219212552552551291162451452241651699010019902101":[{"f":2}]},"tags":["Pipe"],"grid":0},"attrs":[{"fill":"rgb(108, 114, 122)"}],"properties":{"order":71,"id":148,"name":"Pipe","prevSize":32,"code":59809},"setIdx":0,"setId":4,"iconIdx":152},{"icon":{"paths":["M512 928.003c229.75 0 416-186.25 416-416s-186.25-415.999-416-415.999c-229.75 0-416 186.25-416 415.999s186.25 416 416 416zM451.846 357.19l195.258 136.768c14.205 9.952 18.496 30.874 9.578 46.73-2.429 4.323-5.706 7.978-9.578 10.691l-195.258 136.768c-14.205 9.952-32.95 5.165-41.866-10.691-3.037-5.398-4.646-11.645-4.646-18.019v-273.536c0-18.72 13.597-33.894 30.368-33.894 5.712 0 11.309 1.795 16.144 5.184z"],"attrs":[{"fill":"rgb(108, 114, 122)"}],"isMulticolor":false,"isMulticolor2":false,"colorPermutations":{"1081141221158162168120320620912282312341243190812456992125519219212552552551291162451452241651699010019902101":[{"f":2}]},"tags":["play-filled"],"grid":0},"attrs":[{"fill":"rgb(108, 114, 122)"}],"properties":{"order":72,"id":149,"name":"play-filled","prevSize":32,"code":59810},"setIdx":0,"setId":4,"iconIdx":153},{"icon":{"paths":["M864 512c0-194.404-157.597-352-352-352s-352 157.596-352 352c0 194.403 157.596 352 352 352s352-157.597 352-352zM928 512c0 229.75-186.25 416-416 416s-416-186.25-416-416c0-229.75 186.25-416 416-416s416 186.25 416 416zM451.85 357.187l195.254 136.768c14.208 9.949 18.496 30.87 9.581 46.726-2.432 4.326-5.706 7.981-9.581 10.694l-195.254 136.768c-14.208 9.952-32.954 5.165-41.869-10.694-3.037-5.398-4.646-11.642-4.646-18.016v-273.536c0-18.723 13.597-33.898 30.371-33.898 5.709 0 11.306 1.798 16.144 5.187z"],"attrs":[{"fill":"rgb(108, 114, 122)"}],"isMulticolor":false,"isMulticolor2":false,"colorPermutations":{"1081141221158162168120320620912282312341243190812456992125519219212552552551291162451452241651699010019902101":[{"f":2}]},"tags":["play"],"grid":0},"attrs":[{"fill":"rgb(108, 114, 122)"}],"properties":{"order":73,"id":150,"name":"play","prevSize":32,"code":59811},"setIdx":0,"setId":4,"iconIdx":154},{"icon":{"paths":["M325.686 430.88l224.49 224.49-126.118 126.118-224.491-224.49 126.12-126.118zM370.941 385.626l192.115-192.117 224.49 224.491-192.115 192.115-224.49-224.49zM585.683 125.627c-12.496-12.497-32.758-12.497-45.254 0l-408.745 408.745c-12.497 12.496-12.497 32.758 0 45.254l269.746 269.747c5.229 5.229 11.818 8.269 18.63 9.123v0.067h0.57c2.278 0.243 4.576 0.243 6.851 0h440.579c17.674 0 32-14.33 32-32 0-17.674-14.326-32.003-32-32.003h-366.566l353.936-353.933c12.496-12.496 12.496-32.758 0-45.254l-269.747-269.746z"],"width":1056,"attrs":[{"fill":"rgb(108, 114, 122)"}],"isMulticolor":false,"isMulticolor2":false,"colorPermutations":{"1081141221158162168120320620912282312341243190812456992125519219212552552551291162451452241651699010019902101":[{"f":2}]},"tags":["prune"],"grid":0},"attrs":[{"fill":"rgb(108, 114, 122)"}],"properties":{"order":77,"id":154,"name":"prune","prevSize":32,"code":59817},"setIdx":0,"setId":4,"iconIdx":155},{"icon":{"paths":["M230.486 636.688c-14.92-9.472-34.694-5.056-44.167 9.862-9.473 14.922-5.057 34.694 9.862 44.166l298.666 189.632c10.47 6.646 23.837 6.646 34.304 0l298.669-189.632c14.918-9.472 19.334-29.245 9.862-44.166-9.475-14.918-29.248-19.334-44.166-9.862l-281.517 178.739-281.514-178.739zM186.319 494.848c9.473-14.922 29.247-19.334 44.167-9.862l281.514 178.739 281.517-178.739c14.918-9.472 34.691-5.059 44.166 9.862 9.472 14.918 5.056 34.694-9.862 44.166l-298.669 189.632c-10.467 6.646-23.834 6.646-34.304 0l-298.666-189.632c-14.92-9.472-19.335-29.248-9.862-44.166zM529.152 143.657l298.669 189.629c9.245 5.872 14.848 16.064 14.848 27.014 0 10.954-5.603 21.146-14.848 27.014l-298.669 189.632c-10.467 6.646-23.834 6.646-34.304 0l-298.666-189.632c-9.246-5.869-14.848-16.061-14.848-27.014 0-10.95 5.602-21.142 14.848-27.014l298.666-189.629c10.47-6.647 23.837-6.647 34.304 0zM273.035 360.301l238.965 151.725 238.966-151.725-238.966-151.724-238.965 151.724z"],"attrs":[{"fill":"rgb(108, 114, 122)"}],"isMulticolor":false,"isMulticolor2":false,"colorPermutations":{"1081141221158162168120320620912282312341243190812456992125519219212552552551291162451452241651699010019902101":[{"f":2}]},"tags":["queue"],"grid":0},"attrs":[{"fill":"rgb(108, 114, 122)"}],"properties":{"order":78,"id":155,"name":"queue","prevSize":32,"code":59818},"setIdx":0,"setId":4,"iconIdx":156},{"icon":{"paths":["M161.352 800c-11.706 0-22.477-6.39-28.087-16.666s-5.161-22.79 1.169-32.64l112.304-174.694h-69.387c-17.673 0-32-14.326-32-32v-288c0-17.673 14.327-32 32-32h255.999c17.674 0 32 14.327 32 32v288c0 6.138-1.763 12.144-5.082 17.306l-143.999 224c-5.888 9.158-16.029 14.694-26.918 14.694h-128zM332.269 561.306l-112.304 174.694h51.916l129.469-201.398v-246.602h-191.999v224h96c11.706 0 22.479 6.39 28.085 16.666 5.61 10.275 5.162 22.79-1.168 32.64zM577.35 800c-11.706 0-22.477-6.39-28.086-16.666s-5.162-22.79 1.171-32.64l112.304-174.694h-69.389c-17.67 0-32-14.326-32-32v-288c0-17.673 14.33-32 32-32h256c17.674 0 32 14.327 32 32v288c0 6.138-1.763 12.144-5.082 17.306l-144 224c-5.888 9.158-16.029 14.694-26.918 14.694h-128zM748.269 561.306l-112.304 174.694h51.917l129.469-201.398v-246.602h-192v224h96c11.706 0 22.48 6.39 28.086 16.666 5.61 10.275 5.162 22.79-1.168 32.64z"],"width":1056,"attrs":[{"fill":"rgb(108, 114, 122)"}],"isMulticolor":false,"isMulticolor2":false,"colorPermutations":{"1081141221158162168120320620912282312341243190812456992125519219212552552551291162451452241651699010019902101":[{"f":2}]},"tags":["quote"],"grid":0},"attrs":[{"fill":"rgb(108, 114, 122)"}],"properties":{"order":79,"id":156,"name":"quote","prevSize":32,"code":59819},"setIdx":0,"setId":4,"iconIdx":157},{"icon":{"paths":["M800 560c0 176.73-143.27 320-320 320-176.731 0-320-143.27-320-320s143.269-320 320-320v-64c-212.077 0-384 171.923-384 384s171.923 384 384 384c212.077 0 384-171.923 384-384 0-10.778-0.445-21.45-1.315-32h-64.266c1.046 10.525 1.581 21.2 1.581 32zM800 128c0-17.673-14.326-32-32-32s-32 14.327-32 32v112h-112c-17.674 0-32 14.327-32 32s14.326 32 32 32h112v112c0 17.674 14.326 32 32 32s32-14.326 32-32v-112h112c17.674 0 32-14.327 32-32s-14.326-32-32-32h-112v-112zM384 528c35.347 0 64-28.653 64-64s-28.653-64-64-64c-35.347 0-64 28.653-64 64s28.653 64 64 64zM640 464c0 35.347-28.653 64-64 64s-64-28.653-64-64c0-35.347 28.653-64 64-64s64 28.653 64 64zM329.805 605.075c-10.451-14.25-30.477-17.331-44.728-6.88s-17.333 30.477-6.882 44.73c37.658 51.35 77.754 84.624 119.178 102.662 41.741 18.179 82.797 19.99 120.362 11.651 73.469-16.307 132.211-70.87 164.070-114.314 10.451-14.253 7.37-34.278-6.88-44.73-14.253-10.451-34.278-7.37-44.73 6.88-26.81 36.557-73.664 77.994-126.33 89.686-25.501 5.661-52.643 4.474-80.938-7.85-28.608-12.461-60.381-37.187-93.123-81.837z"],"attrs":[{"fill":"rgb(108, 114, 122)"}],"isMulticolor":false,"isMulticolor2":false,"colorPermutations":{"1081141221158162168120320620912282312341243190812456992125519219212552552551291162451452241651699010019902101":[{"f":2}]},"tags":["reaction-add"],"grid":0},"attrs":[{"fill":"rgb(108, 114, 122)"}],"properties":{"order":132,"id":157,"name":"reaction-add","prevSize":32,"code":59820},"setIdx":0,"setId":4,"iconIdx":158},{"icon":{"paths":["M832 512c0-176.73-143.27-320-320-320s-320 143.27-320 320c0 176.73 143.27 320 320 320s320-143.27 320-320zM896 512c0 212.077-171.923 384-384 384s-384-171.923-384-384c0-212.077 171.923-384 384-384s384 171.923 384 384zM512 704c-106.038 0-192-85.962-192-192s85.962-192 192-192c106.038 0 192 85.962 192 192s-85.962 192-192 192z"],"attrs":[{"fill":"rgb(108, 114, 122)"}],"isMulticolor":false,"isMulticolor2":false,"colorPermutations":{"1081141221158162168120320620912282312341243190812456992125519219212552552551291162451452241651699010019902101":[{"f":2}]},"tags":["record"],"grid":0},"attrs":[{"fill":"rgb(108, 114, 122)"}],"properties":{"order":133,"id":158,"name":"record","prevSize":32,"code":59821},"setIdx":0,"setId":4,"iconIdx":159},{"icon":{"paths":["M896 512h-63.984c0-175.414-145.754-320-328.518-320-115.27 0-215.818 57.513-274.362 144h110.768c17.674 0 32 14.326 32 32s-14.326 32-32 32h-179.904c-17.673 0-32-14.326-32-32v-192c0-17.673 14.327-32 32-32s32 14.327 32 32v102.32c71.751-91.401 184.589-150.32 311.498-150.32 216.781 0 392.502 171.923 392.502 384 0 1.114 0.010 2.227 0 3.338v-3.338z","M127.997 512h63.986c0 175.414 145.751 320 328.519 320 115.27 0 215.818-57.514 274.358-144h-110.768c-17.67 0-32-14.326-32-32s14.33-32 32-32h179.907c17.67 0 32 14.326 32 32v192c0 17.674-14.33 32-32 32-17.674 0-32-14.326-32-32v-102.32c-71.754 91.402-184.592 150.32-311.498 150.32-216.782 0-392.505-171.923-392.505-384 0-1.082-0.009-2.166 0-3.245v3.245z"],"attrs":[{"fill":"rgb(108, 114, 122)"},{"fill":"rgb(108, 114, 122)"}],"isMulticolor":false,"isMulticolor2":false,"colorPermutations":{"1081141221158162168120320620912282312341243190812456992125519219212552552551291162451452241651699010019902101":[{"f":2},{"f":2}]},"tags":["refresh"],"grid":0},"attrs":[{"fill":"rgb(108, 114, 122)"},{"fill":"rgb(108, 114, 122)"}],"properties":{"order":134,"id":159,"name":"refresh","prevSize":32,"code":59822},"setIdx":0,"setId":4,"iconIdx":160},{"icon":{"paths":["M713.718 450.362c0-142.689-115.824-258.362-258.701-258.362-142.878 0-258.704 115.673-258.704 258.362 0 142.691 115.826 258.365 258.704 258.365 142.877 0 258.701-115.674 258.701-258.365zM659.302 699.965c-55.645 45.475-126.774 72.762-204.285 72.762-178.271 0-322.788-144.326-322.788-322.365 0-178.035 144.517-322.362 322.788-322.362 178.269 0 322.787 144.327 322.787 322.362 0 77.408-27.318 148.442-72.854 204.013l186.838 186.592c12.608 12.589 12.608 33.002 0 45.59-12.605 12.589-33.043 12.589-45.648 0l-186.838-186.592z"],"width":1056,"attrs":[{"fill":"rgb(108, 114, 122)"}],"isMulticolor":false,"isMulticolor2":false,"colorPermutations":{"1081141221158162168120320620912282312341243190812456992125519219212552552551291162451452241651699010019902101":[{"f":2}]},"tags":["search"],"grid":0},"attrs":[{"fill":"rgb(108, 114, 122)"}],"properties":{"order":136,"id":160,"name":"search","prevSize":32,"code":59823},"setIdx":0,"setId":4,"iconIdx":161},{"icon":{"paths":["M891.494 238.96l-297.475 637.446c-16.854 36.115-69.622 31.459-79.891-7.050l-66-247.498 151.248-189.059-219.994 109.997-226.833-113.418c-35.43-17.715-29.696-69.949 8.733-79.555l681.197-170.3c34.842-8.71 64.202 26.892 49.014 59.436z"],"attrs":[{"fill":"rgb(108, 114, 122)"}],"isMulticolor":false,"isMulticolor2":false,"colorPermutations":{"1081141221158162168120320620912282312341243190812456992125519219212552552551291162451452241651699010019902101":[{"f":2}]},"tags":["send-filled"],"grid":0},"attrs":[{"fill":"rgb(108, 114, 122)"}],"properties":{"order":137,"id":161,"name":"send-filled","prevSize":32,"code":59824},"setIdx":0,"setId":4,"iconIdx":162},{"icon":{"paths":["M878.022 192.974c7.85 9.521 9.526 22.708 4.31 33.891l-298.669 640.002c-5.69 12.195-18.403 19.526-31.811 18.342-13.405-1.184-24.637-10.627-28.106-23.632l-81.619-306.070-285.772-142.886c-11.978-5.987-18.959-18.8-17.498-32.112s11.056-24.307 24.048-27.552l682.665-170.668c11.974-2.993 24.598 1.165 32.451 10.686zM505.821 545.968l57.082 214.051 233.027-499.35-533.58 133.395 203.606 101.802 69.51-52.131c14.141-10.605 34.198-7.741 44.8 6.4 10.605 14.138 7.741 34.195-6.4 44.8l-68.045 51.034z"],"attrs":[{"fill":"rgb(108, 114, 122)"}],"isMulticolor":false,"isMulticolor2":false,"colorPermutations":{"1081141221158162168120320620912282312341243190812456992125519219212552552551291162451452241651699010019902101":[{"f":2}]},"tags":["send"],"grid":0},"attrs":[{"fill":"rgb(108, 114, 122)"}],"properties":{"order":138,"id":162,"name":"send","prevSize":32,"code":59825},"setIdx":0,"setId":4,"iconIdx":163},{"icon":{"paths":["M421.334 256c0-44.183-35.818-80-80-80s-80 35.817-80 80c0 44.183 35.817 80 80 80s80-35.817 80-80zM465.302 288c-14.211 55.206-64.326 96-123.968 96-59.643 0-109.758-40.794-123.968-96h-89.367c-17.673 0-32-14.327-32-32s14.327-32 32-32h89.367c14.209-55.207 64.324-96 123.968-96 59.642 0 109.757 40.793 123.968 96h430.698c17.674 0 32 14.327 32 32s-14.326 32-32 32h-430.698zM96 768c0-17.674 14.327-32 32-32h89.367c14.209-55.206 64.324-96 123.968-96 60.781 0 111.67 42.365 124.742 99.181 4.208-2.038 8.934-3.181 13.923-3.181h416c17.674 0 32 14.326 32 32s-14.326 32-32 32h-416c-4.989 0-9.715-1.142-13.923-3.181-13.072 56.816-63.962 99.181-124.742 99.181-59.643 0-109.758-40.794-123.968-96h-89.367c-17.673 0-32-14.326-32-32zM341.334 848c44.182 0 80-35.818 80-80s-35.818-80-80-80c-44.183 0-80 35.818-80 80s35.817 80 80 80zM796.029 543.757c-14.122 55.331-64.298 96.243-124.029 96.243s-109.904-40.912-124.029-96.243c-1.302 0.16-2.627 0.243-3.971 0.243h-416c-17.673 0-32-14.326-32-32s14.327-32 32-32h416c1.344 0 2.669 0.083 3.971 0.243 14.125-55.331 64.298-96.243 124.029-96.243s109.907 40.912 124.029 96.243c1.302-0.16 2.627-0.243 3.971-0.243h96c17.674 0 32 14.326 32 32s-14.326 32-32 32h-96c-1.344 0-2.669-0.083-3.971-0.243zM752 512c0-44.182-35.818-80-80-80s-80 35.818-80 80c0 44.182 35.818 80 80 80s80-35.818 80-80z"],"attrs":[{"fill":"rgb(108, 114, 122)"}],"isMulticolor":false,"isMulticolor2":false,"colorPermutations":{"1081141221158162168120320620912282312341243190812456992125519219212552552551291162451452241651699010019902101":[{"f":2}]},"tags":["settings"],"grid":0},"attrs":[{"fill":"rgb(108, 114, 122)"}],"properties":{"order":139,"id":163,"name":"settings","prevSize":32,"code":59826},"setIdx":0,"setId":4,"iconIdx":164},{"icon":{"paths":["M690.176 301.708c11.645-11.977 11.645-31.396 0-43.374l-149.091-153.351c-11.645-11.977-30.525-11.977-42.17 0l-149.091 153.351c-11.645 11.977-11.645 31.397 0 43.374s30.525 11.978 42.17 0l98.189-100.993v401.343c0 16.938 13.35 30.669 29.818 30.669s29.818-13.731 29.818-30.669v-401.343l98.189 100.993c11.645 11.978 30.525 11.978 42.17 0z","M221.818 379.274h149.091v59.635h-119.272v387.635h536.728v-387.635h-119.274v-59.635h149.091c16.467 0 29.818 13.35 29.818 29.818v447.274c0 16.467-13.35 29.818-29.818 29.818h-596.364c-16.468 0-29.818-13.35-29.818-29.818v-447.274c0-16.467 13.35-29.818 29.818-29.818z"],"attrs":[{"fill":"rgb(108, 114, 122)"},{"fill":"rgb(108, 114, 122)"}],"isMulticolor":false,"isMulticolor2":false,"colorPermutations":{"1081141221158162168120320620912282312341243190812456992125519219212552552551291162451452241651699010019902101":[{"f":2},{"f":2}]},"tags":["share"],"grid":0},"attrs":[{"fill":"rgb(108, 114, 122)"},{"fill":"rgb(108, 114, 122)"}],"properties":{"order":244,"id":164,"name":"share","prevSize":32,"code":59827},"setIdx":0,"setId":4,"iconIdx":165},{"icon":{"paths":["M664.083 405.072c11.638-13.299 10.288-33.517-3.011-45.155s-33.517-10.288-45.155 3.011l-125.251 143.142-39.917-45.619c-11.638-13.299-31.853-14.646-45.155-3.011-13.299 11.638-14.646 31.856-3.008 45.155l64 73.142c6.077 6.944 14.854 10.928 24.080 10.928 9.229 0 18.006-3.984 24.083-10.928l149.334-170.666z","M541.99 143.050c-12.854-3.634-26.448-3.753-39.363-0.345l-264.724 69.849c-29.793 7.861-52.548 33.743-54.753 65.633-23.589 341.205 187.752 520.29 276.51 579.794 33.136 22.211 75.363 22.144 108.416-0.259 88.218-59.792 297.117-239.072 272.611-580.214-2.25-31.321-24.339-56.895-53.504-65.14l-245.194-69.318zM518.957 204.587c1.843-0.487 3.786-0.47 5.622 0.049l245.194 69.318c4.294 1.214 6.838 4.781 7.082 8.139 22.15 308.362-165.306 468.851-244.685 522.65-11.437 7.754-25.363 7.792-36.87 0.077-80.086-53.686-269.606-214.054-248.301-522.218 0.234-3.389 2.833-7.004 7.233-8.164l264.725-69.849z"],"attrs":[{"fill":"rgb(108, 114, 122)"},{"fill":"rgb(108, 114, 122)"}],"isMulticolor":false,"isMulticolor2":false,"colorPermutations":{"1081141221158162168120320620912282312341243190812456992125519219212552552551291162451452241651699010019902101":[{"f":2},{"f":2}]},"tags":["shield-check"],"grid":0},"attrs":[{"fill":"rgb(108, 114, 122)"},{"fill":"rgb(108, 114, 122)"}],"properties":{"order":80,"id":165,"name":"shield-check","prevSize":32,"code":59828},"setIdx":0,"setId":4,"iconIdx":166},{"icon":{"paths":["M513.302 142.705c12.915-3.408 26.509-3.289 39.36 0.345l245.197 69.318c29.165 8.245 51.254 33.818 53.504 65.14 24.506 341.142-184.397 520.422-272.611 580.214-33.053 22.403-75.28 22.47-108.416 0.259-88.762-59.504-300.101-238.589-276.511-579.794 2.205-31.89 24.96-57.772 54.753-65.633l264.725-69.849zM535.251 204.637c-1.834-0.519-3.776-0.536-5.622-0.050l-264.723 69.849c-4.4 1.161-6.999 4.775-7.234 8.164-21.305 308.164 168.216 468.532 248.299 522.218 11.507 7.715 25.434 7.677 36.874-0.077 79.379-53.798 266.832-214.288 244.682-522.65-0.24-3.358-2.784-6.925-7.078-8.139l-245.197-69.317z","M490.672 337.334c-19.76 4.672-47.245 12.31-81.149 24.554 20.81 108.771 53.219 187.014 81.149 238.832v-263.386zM492.867 271.316c33.77-6.898 61.805 19.742 61.805 51.125v360.963c0 17.024-10.333 31.747-25.642 37.52-15.67 5.91-33.779 1.331-44.861-12.675-32.656-41.267-106.323-152.95-141.19-354.563-3.242-18.746 7.066-37.695 25.328-44.726 56.186-21.63 99.094-32.442 124.56-37.644z"],"attrs":[{"fill":"rgb(108, 114, 122)"},{"fill":"rgb(108, 114, 122)"}],"isMulticolor":false,"isMulticolor2":false,"colorPermutations":{"1081141221158162168120320620912282312341243190812456992125519219212552552551291162451452241651699010019902101":[{"f":2},{"f":2}]},"tags":["shield"],"grid":0},"attrs":[{"fill":"rgb(108, 114, 122)"},{"fill":"rgb(108, 114, 122)"}],"properties":{"order":81,"id":166,"name":"shield-alt","prevSize":32,"code":59829},"setIdx":0,"setId":4,"iconIdx":167},{"icon":{"paths":["M778.64 213.336c-17.674 0-32 14.327-32 32v533.333c0 17.674 14.326 32 32 32s32-14.326 32-32v-533.333c0-17.673-14.326-32-32-32z","M600.87 341.334c-17.674 0-32 14.33-32 32v405.334c0 17.674 14.326 32 32 32s32-14.326 32-32v-405.334c0-17.67-14.326-32-32-32z","M423.104 810.669c-17.674 0-32-14.326-32-32v-277.334c0-17.67 14.326-32 32-32 17.67 0 32 14.33 32 32v277.334c0 17.674-14.33 32-32 32z","M245.333 597.334c-17.673 0-32 14.33-32 32v149.334c0 17.674 14.327 32 32 32s32-14.326 32-32v-149.334c0-17.67-14.327-32-32-32z"],"attrs":[{"fill":"rgb(108, 114, 122)"},{"fill":"rgb(108, 114, 122)"},{"fill":"rgb(108, 114, 122)"},{"fill":"rgb(108, 114, 122)"}],"isMulticolor":false,"isMulticolor2":false,"colorPermutations":{"1081141221158162168120320620912282312341243190812456992125519219212552552551291162451452241651699010019902101":[{"f":2},{"f":2},{"f":2},{"f":2}]},"tags":["signal"],"grid":0},"attrs":[{"fill":"rgb(108, 114, 122)"},{"fill":"rgb(108, 114, 122)"},{"fill":"rgb(108, 114, 122)"},{"fill":"rgb(108, 114, 122)"}],"properties":{"order":82,"id":167,"name":"signal","prevSize":32,"code":59830},"setIdx":0,"setId":4,"iconIdx":168},{"icon":{"paths":["M289.362 192c13.364 0 25.321 8.305 29.987 20.829l96.001 257.699c6.17 16.56-2.256 34.986-18.816 41.155-16.563 6.17-34.989-2.253-41.158-18.816l-20.477-54.963h-91.074l-20.476 54.963c-6.17 16.563-24.597 24.986-41.158 18.816s-24.986-24.595-18.816-41.155l96-257.699c4.666-12.524 16.622-20.829 29.987-20.829zM311.058 373.904l-21.695-58.238-21.695 58.238h43.391z","M522.131 626.435c-12.154 12.829-11.606 33.082 1.222 45.238l160 151.587c12.342 11.693 31.674 11.693 44.016 0l160-151.587c12.832-12.157 13.376-32.41 1.222-45.238s-32.41-13.376-45.238-1.222l-105.99 100.419v-501.632c0-17.673-14.326-32-32-32s-32 14.327-32 32v501.632l-105.994-100.419c-12.829-12.154-33.082-11.606-45.238 1.222z","M193.362 570.947c-17.673 0-32 14.326-32 32 0 17.67 14.327 32 32 32h116.145l-139.065 142.73c-8.979 9.216-11.565 22.915-6.564 34.771 5.001 11.853 16.617 19.562 29.484 19.562h192.001c17.674 0 32-14.326 32-32s-14.326-32-32-32h-116.146l139.064-142.733c8.979-9.216 11.565-22.915 6.563-34.768-4.998-11.856-16.614-19.562-29.482-19.562h-192.001z"],"width":1056,"attrs":[{"fill":"rgb(108, 114, 122)"},{"fill":"rgb(108, 114, 122)"},{"fill":"rgb(108, 114, 122)"}],"isMulticolor":false,"isMulticolor2":false,"colorPermutations":{"1081141221158162168120320620912282312341243190812456992125519219212552552551291162451452241651699010019902101":[{"f":2},{"f":2},{"f":2}]},"tags":["sort-az"],"grid":0},"attrs":[{"fill":"rgb(108, 114, 122)"},{"fill":"rgb(108, 114, 122)"},{"fill":"rgb(108, 114, 122)"}],"properties":{"order":83,"id":168,"name":"sort-az","prevSize":32,"code":59831},"setIdx":0,"setId":4,"iconIdx":169},{"icon":{"paths":["M919.258 667.229c12.605-12.253 12.877-32.394 0.605-44.982-12.269-12.589-32.435-12.858-45.040-0.605l-106.112 103.155v-500.8c0-17.568-14.259-31.81-31.853-31.81-17.59 0-31.85 14.242-31.85 31.81v500.8l-106.115-103.155c-12.605-12.253-32.768-11.984-45.040 0.605-12.269 12.589-11.997 32.73 0.608 44.982l160.179 155.718c12.368 12.019 32.070 12.019 44.435 0l160.182-155.718zM560.659 333.667c17.59 0 31.85-14.243 31.85-31.811s-14.259-31.809-31.85-31.809h-432.49c-17.591 0-31.852 14.242-31.852 31.809s14.26 31.811 31.852 31.811h432.49zM464.55 536.099c17.59 0 31.85-14.243 31.85-31.811 0-17.565-14.259-31.808-31.85-31.808h-336.381c-17.591 0-31.852 14.24-31.852 31.808s14.26 31.811 31.852 31.811h336.381zM384.458 722.96c17.594 0 31.853-14.24 31.853-31.808s-14.259-31.811-31.853-31.811h-256.289c-17.591 0-31.852 14.243-31.852 31.811s14.26 31.808 31.852 31.808h256.289z"],"width":1056,"attrs":[{"fill":"rgb(108, 114, 122)"}],"isMulticolor":false,"isMulticolor2":false,"colorPermutations":{"1081141221158162168120320620912282312341243190812456992125519219212552552551291162451452241651699010019902101":[{"f":2}]},"tags":["sort"],"grid":0},"attrs":[{"fill":"rgb(108, 114, 122)"}],"properties":{"order":84,"id":169,"name":"sort","prevSize":32,"code":59832},"setIdx":0,"setId":4,"iconIdx":170},{"icon":{"paths":["M593.939 170.244c-20.867-57.726-103.155-55.816-121.322 2.815l-58.976 190.348h-221.513c-58.947 0-86.549 72.944-42.37 111.968l157.591 139.206-53.209 216.928c-14.17 57.77 51.25 101.936 99.533 67.197l177.741-127.875 177.741 127.875c48.285 34.739 113.706-9.427 99.536-67.197l-53.386-217.651 147.888-139.968c42.032-39.779 13.878-110.483-43.99-110.483h-195.443l-69.821-193.164z"],"attrs":[{"fill":"rgb(108, 114, 122)"}],"isMulticolor":false,"isMulticolor2":false,"colorPermutations":{"1081141221158162168120320620912282312341243190812456992125519219212552552551291162451452241651699010019902101":[{"f":2}]},"tags":["star-filled"],"grid":0},"attrs":[{"fill":"rgb(108, 114, 122)"}],"properties":{"order":85,"id":170,"name":"star-filled","prevSize":32,"code":59833},"setIdx":0,"setId":4,"iconIdx":171},{"icon":{"paths":["M472.618 173.508c18.166-58.554 100.454-60.461 121.322-2.812l69.821 192.91h195.44c57.872 0 86.026 70.611 43.994 110.336l-147.888 139.782 53.386 217.363c14.17 57.696-51.251 101.805-99.536 67.11l-177.741-127.709-177.741 127.709c-48.283 34.691-113.703-9.414-99.533-67.11l53.209-216.64-157.591-139.024c-44.179-38.973-16.577-111.818 42.37-111.818h221.513l58.976-190.098zM603.574 385.334l-69.824-192.91-58.976 190.098c-8.304 26.758-33.085 45.002-61.133 45.002h-221.513l157.59 139.021c17.837 15.731 25.456 40.048 19.789 63.13l-53.209 216.643 177.74-127.709c22.33-16.045 52.426-16.045 74.755 0l177.738 127.709-53.386-217.363c-5.478-22.317 1.456-45.856 18.166-61.648l147.888-139.782h-195.44c-26.957 0-51.024-16.87-60.186-42.189z"],"attrs":[{"fill":"rgb(108, 114, 122)"}],"isMulticolor":false,"isMulticolor2":false,"colorPermutations":{"1081141221158162168120320620912282312341243190812456992125519219212552552551291162451452241651699010019902101":[{"f":2}]},"tags":["star"],"grid":0},"attrs":[{"fill":"rgb(108, 114, 122)"}],"properties":{"order":86,"id":171,"name":"star","prevSize":32,"code":59834},"setIdx":0,"setId":4,"iconIdx":172},{"icon":{"paths":["M499.952 539.082c2.714 0.819 5.462 1.629 8.25 2.429 45.341 13.12 76.643 26.47 93.904 40.048 17.264 13.35 25.894 32.339 25.894 56.966s-9.322 44.074-27.965 58.346c-18.643 14.269-45.456 21.405-80.442 21.405-37.514 0-67.552-8.749-90.106-26.24-15.216-12.077-25.245-27.094-30.090-45.050-3.942-14.605-15.664-27.104-30.794-27.104h-11.843c-15.13 0-27.722 12.378-24.893 27.242 3.514 18.47 10.736 35.514 21.667 51.126 16.339 23.018 39.472 41.2 69.392 54.547 29.92 13.12 62.144 19.68 96.666 19.68 53.168 0 95.632-12.198 127.395-36.595 31.76-24.627 47.642-57.309 47.642-98.048 0-25.549-5.754-47.757-17.261-66.63-6.947-11.626-16.25-22.33-27.91-32.122h99.962c15.13 0 27.395-12.266 27.395-27.395s-12.266-27.392-27.395-27.392h-217.398c-1.709-0.493-3.437-0.986-5.178-1.472-41.658-11.738-71.235-24.627-88.726-38.669-17.261-14.269-25.894-31.645-25.894-52.131 0-25.546 9.091-45.456 27.277-59.725 18.41-14.5 43.958-21.75 76.64-21.75 35.216 0 62.49 8.746 81.824 26.24 13.139 11.731 21.814 26.496 26.022 44.288 3.485 14.723 15.242 27.174 30.371 27.174h11.84c15.13 0 27.702-12.374 24.88-27.238-3.331-17.552-9.974-34.134-19.923-49.75-14.733-23.475-35.677-41.888-62.835-55.237-26.928-13.349-57.654-20.024-92.179-20.024-50.634 0-91.834 13.004-123.594 39.012-31.533 25.779-47.299 58.46-47.299 98.047 0 34.986 12.89 64.445 38.669 88.381 1.050 0.957 2.125 1.907 3.222 2.854h-112.56c-15.13 0-27.395 12.262-27.395 27.392s12.265 27.395 27.395 27.395h225.373z"],"attrs":[{"fill":"rgb(108, 114, 122)"}],"isMulticolor":false,"isMulticolor2":false,"colorPermutations":{"1081141221158162168120320620912282312341243190812456992125519219212552552551291162451452241651699010019902101":[{"f":2}]},"tags":["strike"],"grid":0},"attrs":[{"fill":"rgb(108, 114, 122)"}],"properties":{"order":94,"id":172,"name":"strike","prevSize":32,"code":59846},"setIdx":0,"setId":4,"iconIdx":173},{"icon":{"paths":["M481.35 117.336c0-17.673 14.326-32 32-32s32 14.327 32 32v106.667c0 17.673-14.326 32-32 32s-32-14.327-32-32v-106.667zM771.392 214.631c12.496-12.497 32.758-12.497 45.254 0s12.496 32.758 0 45.255l-75.411 75.413c-12.499 12.496-32.758 12.496-45.254 0-12.499-12.496-12.499-32.759 0-45.255l75.411-75.412zM336.73 694.63c-12.499-12.496-32.759-12.496-45.256 0l-75.495 75.498c-12.497 12.496-12.497 32.755 0 45.254 12.497 12.496 32.758 12.496 45.255 0l75.496-75.498c12.496-12.496 12.496-32.755 0-45.254zM481.35 800.003c0-17.674 14.326-32 32-32s32 14.326 32 32v106.669c0 17.67-14.326 32-32 32s-32-14.33-32-32v-106.669zM213.352 212.001c-12.497 12.497-12.497 32.758 0 45.255l75.349 75.348c12.497 12.496 32.758 12.496 45.254 0 12.499-12.496 12.496-32.757 0-45.254l-75.348-75.349c-12.497-12.497-32.758-12.497-45.255 0zM695.978 739.885c-12.496-12.496-12.496-32.758 0-45.254 12.499-12.496 32.758-12.496 45.254 0l75.331 75.328c12.496 12.496 12.496 32.758 0 45.254-12.499 12.496-32.758 12.496-45.258 0l-75.328-75.328zM87.751 512.003c0 17.674 14.327 32 32 32h106.667c17.673 0 32-14.326 32-32s-14.327-32-32-32h-106.667c-17.673 0-32 14.326-32 32zM801.35 544.003c-17.674 0-32-14.326-32-32s14.326-32 32-32h106.669c17.67 0 32 14.326 32 32s-14.33 32-32 32h-106.669zM668.17 512c0-85.504-69.315-154.816-154.819-154.816-85.507 0-154.819 69.312-154.819 154.816 0 85.507 69.312 154.819 154.819 154.819 85.504 0 154.819-69.312 154.819-154.819zM726.682 512c0 117.821-95.51 213.334-213.331 213.334s-213.335-95.514-213.335-213.334c0-117.821 95.514-213.332 213.335-213.332s213.331 95.511 213.331 213.332z"],"width":1056,"attrs":[{"fill":"rgb(108, 114, 122)"}],"isMulticolor":false,"isMulticolor2":false,"colorPermutations":{"1081141221158162168120320620912282312341243190812456992125519219212552552551291162451452241651699010019902101":[{"f":2}]},"tags":["sun"],"grid":0},"attrs":[{"fill":"rgb(108, 114, 122)"}],"properties":{"order":95,"id":173,"name":"sun","prevSize":32,"code":59847},"setIdx":0,"setId":4,"iconIdx":174},{"icon":{"paths":["M930.704 512c0 229.75-186.25 416-416 416s-415.999-186.25-415.999-416c0-229.75 186.25-416 415.999-416s416 186.25 416 416zM570.49 859.603l-41.827-156.102c-4.611 0.33-9.264 0.499-13.958 0.499-4.57 0-9.101-0.16-13.594-0.474l-41.837 156.134c18.058 2.854 36.573 4.339 55.43 4.339 18.986 0 37.616-1.504 55.786-4.397zM438.893 688.451c-47.549-20.454-85.181-59.571-103.674-108.125l-155.029 41.539c33.968 103.485 114.617 185.805 217.045 222.058l41.658-155.472zM162.705 512c0 16.090 1.080 31.926 3.17 47.443l156.906-42.042c-0.051-1.795-0.077-3.594-0.077-5.402 0-4.909 0.186-9.776 0.547-14.595l-156.051-41.814c-2.958 18.368-4.496 37.21-4.496 56.41zM396.31 180.407c-99.16 35.408-177.786 114.033-213.196 213.19l155.535 41.677c19.357-44.352 54.982-79.978 99.334-99.331l-41.674-155.536zM514.704 160c-19.197 0-38.035 1.537-56.4 4.494l41.814 156.053c4.813-0.362 9.68-0.547 14.586-0.547 5.030 0 10.019 0.192 14.95 0.573l41.808-156.021c-18.477-2.995-37.437-4.552-56.758-4.552zM632.512 843.802c102.659-36.451 183.392-119.194 217.094-223.12l-154.973-41.526c-18.291 48.982-56.010 88.493-103.786 109.155l41.664 155.491zM863.699 558.198c1.984-15.117 3.005-30.538 3.005-46.198 0-18.771-1.469-37.197-4.298-55.171l-156.157 41.84c0.301 4.406 0.454 8.851 0.454 13.331 0 1.376-0.013 2.752-0.042 4.122l157.037 42.077zM846.714 394.774c-35.165-99.6-113.885-178.641-213.277-214.247l-41.68 155.559c44.582 19.555 80.314 55.565 99.504 100.342l155.453-41.654zM642.704 512c0-70.691-57.306-128-128-128-70.691 0-128 57.309-128 128s57.309 128 128 128c70.694 0 128-57.309 128-128z"],"width":1056,"attrs":[{"fill":"rgb(108, 114, 122)"}],"isMulticolor":false,"isMulticolor2":false,"colorPermutations":{"1081141221158162168120320620912282312341243190812456992125519219212552552551291162451452241651699010019902101":[{"f":2}]},"tags":["support"],"grid":0},"attrs":[{"fill":"rgb(108, 114, 122)"}],"properties":{"order":96,"id":174,"name":"support","prevSize":32,"code":59848},"setIdx":0,"setId":4,"iconIdx":175},{"icon":{"paths":["M368 412.982c-53.592 0-96-42.877-96-94.491 0-51.616 42.408-94.491 96-94.491 53.594 0 96 42.876 96 94.491 0 51.614-42.406 94.491-96 94.491zM368 476.982c88.365 0 160-70.96 160-158.491s-71.635-158.491-160-158.491c-88.365 0-160 70.959-160 158.491s71.635 158.491 160 158.491zM713.6 397.133c-35.92 0-64-28.685-64-62.794s28.080-62.792 64-62.792c35.92 0 64 28.684 64 62.792s-28.080 62.794-64 62.794zM713.6 461.133c70.691 0 128-56.768 128-126.794s-57.309-126.792-128-126.792c-70.691 0-128 56.767-128 126.792s57.309 126.794 128 126.794zM197.459 527.267c27.344-8.707 56.67-9.242 84.319-1.539l48.491 13.51c24.205 6.742 49.882 6.275 73.824-1.347l30.099-9.584c29.475-9.386 61.085-9.962 90.89-1.658 67.962 18.934 114.918 80.333 114.918 150.269v91.987c0 52.518-42.979 95.094-96 95.094h-352c-53.019 0-96-42.576-96-95.094v-103.766c0-62.909 40.999-118.621 101.459-137.872zM264.451 586.758c-15.545-4.333-32.034-4.032-47.407 0.864-33.993 10.822-57.044 42.147-57.044 77.517v103.766c0 17.507 14.327 31.699 32 31.699h352c17.674 0 32-14.192 32-31.699v-91.987c0-41.533-27.885-77.997-68.246-89.242-17.699-4.931-36.474-4.589-53.978 0.986l-30.099 9.584c-35.91 11.434-74.426 12.138-110.737 2.019l-48.489-13.507zM691.2 778.717h140.8c53.021 0 96-42.979 96-96v-30.611c0-56.877-38.614-106.49-93.747-120.454-21.398-5.418-43.853-5.040-65.056 1.098l-16.4 4.746c-21.843 6.323-44.973 6.714-67.018 1.13l-29.805-7.549c-19.907-5.043-40.797-4.691-60.522 1.018-1.066 0.31-2.122 0.634-3.174 0.97 10.71 4.048 20.896 9.539 30.253 16.374l2.429 1.776 15.040 13.206c9.939 8.726 18.141 19.248 24.182 31.014l2.208 4.301 3.677 0.931c33.062 8.374 67.76 7.789 100.525-1.693l16.4-4.749c10.282-2.976 21.171-3.158 31.546-0.531 26.736 6.771 45.462 30.832 45.462 58.413v30.611c0 17.674-14.326 32-32 32h-140.8v64z"],"attrs":[{"fill":"rgb(108, 114, 122)"}],"isMulticolor":false,"isMulticolor2":false,"colorPermutations":{"1081141221158162168120320620912282312341243190812456992125519219212552552551291162451452241651699010019902101":[{"f":2}]},"tags":["team"],"grid":0},"attrs":[{"fill":"rgb(108, 114, 122)"}],"properties":{"order":97,"id":175,"name":"team","prevSize":32,"code":59849},"setIdx":0,"setId":4,"iconIdx":176},{"icon":{"paths":["M223.311 308.609c-47.832 66.7-64.077 147.667-64.077 201.187v1.405l-0.127 1.398c-9.348 103.235 27.547 175.997 86.848 226.374 60.642 51.52 146.602 80.998 235.29 90.893 88.611 9.885 186.221 1.398 263.341-14.973 38.56-8.189 70.928-18.125 93.888-28.128 8.906-3.882 15.837-7.536 20.941-10.765-2.374-1.514-5.245-3.197-8.672-5.030-8.886-4.749-19.059-9.261-29.613-13.894l-1.843-0.81c-9.315-4.083-19.725-8.65-27.613-13.078-14.291-8.026-28.317-17.155-38.544-26.867-5.034-4.781-10.762-11.194-14.595-19.184-4.054-8.454-6.96-21.078-1.261-34.435 30.816-72.186 45.459-111.725 52.554-137.834 6.621-24.378 6.621-36.653 6.621-56.17v-0.179c0-15.51-8.979-86.595-53.776-152.876-43.376-64.174-121.398-125.729-264.832-125.729-129.725 0-207.83 53.576-254.529 118.696zM173.267 272.433c58.132-81.063 154.749-144.433 304.573-144.433 164.896 0 261.594 72.589 315.859 152.878 52.838 78.181 64.416 161.881 64.416 187.641 0 21.654-0.022 40.336-8.797 72.64-7.834 28.835-22.627 68.614-50.048 133.424 5.069 4.032 12.592 9.005 22.506 14.57 5.12 2.877 12.995 6.339 24.054 11.194 10.266 4.506 22.582 9.93 33.891 15.978 10.848 5.798 23.526 13.571 32.954 23.738 9.859 10.63 20.208 28.87 12.816 51.139-4.87 14.672-16.182 25.091-25.61 32.016-10.24 7.52-22.947 14.278-36.858 20.342-27.949 12.176-64.582 23.181-105.68 31.907-82.198 17.453-186.522 26.688-282.909 15.936-96.31-10.746-195.346-43.178-268.313-105.165-74.031-62.893-119.295-154.778-108.551-277.856 0.276-63.411 19.117-157.053 75.696-235.948zM333.952 422.051c0-17.648 14.25-31.955 31.83-31.955h183.008c17.578 0 31.827 14.307 31.827 31.955s-14.25 31.955-31.827 31.955h-183.008c-17.581 0-31.83-14.307-31.83-31.955zM365.782 539.709c-17.581 0-31.83 14.307-31.83 31.955s14.25 31.955 31.83 31.955h224.118c17.578 0 31.827-14.307 31.827-31.955s-14.25-31.955-31.827-31.955h-224.118z"],"attrs":[{"fill":"rgb(108, 114, 122)"}],"isMulticolor":false,"isMulticolor2":false,"colorPermutations":{"1081141221158162168120320620912282312341243190812456992125519219212552552551291162451452241651699010019902101":[{"f":2}]},"tags":["threads"],"grid":0},"attrs":[{"fill":"rgb(108, 114, 122)"}],"properties":{"order":98,"id":176,"name":"threads","prevSize":32,"code":59850},"setIdx":0,"setId":4,"iconIdx":177},{"icon":{"paths":["M353.354 320c0-17.673 14.326-32 32-32h256c17.674 0 32 14.327 32 32s-14.326 32-32 32h-256c-17.674 0-32-14.326-32-32z","M385.354 416c-17.674 0-32 14.326-32 32s14.326 32 32 32c17.674 0 32-14.326 32-32s-14.326-32-32-32z","M481.354 448c0-17.674 14.326-32 32-32s32 14.326 32 32c0 17.674-14.326 32-32 32s-32-14.326-32-32z","M641.354 416c-17.674 0-32 14.326-32 32s14.326 32 32 32c17.674 0 32-14.326 32-32s-14.326-32-32-32z","M353.354 576c0-17.674 14.326-32 32-32s32 14.326 32 32c0 17.674-14.326 32-32 32s-32-14.326-32-32z","M513.354 544c-17.674 0-32 14.326-32 32s14.326 32 32 32c17.674 0 32-14.326 32-32s-14.326-32-32-32z","M609.354 576c0-17.674 14.326-32 32-32s32 14.326 32 32c0 17.674-14.326 32-32 32s-32-14.326-32-32z","M385.354 672c-17.674 0-32 14.326-32 32s14.326 32 32 32c17.674 0 32-14.326 32-32s-14.326-32-32-32z","M481.354 704c0-17.674 14.326-32 32-32s32 14.326 32 32c0 17.674-14.326 32-32 32s-32-14.326-32-32z","M641.354 672c-17.674 0-32 14.326-32 32s14.326 32 32 32c17.674 0 32-14.326 32-32s-14.326-32-32-32z","M289.353 160h448.001c35.344 0 64 28.654 64 64v576c0 35.347-28.656 64-64 64h-448.001c-35.346 0-64-28.653-64-64v-576c0-35.346 28.654-64 64-64zM289.353 224v576h448.001v-576h-448.001z"],"width":1056,"attrs":[{"fill":"rgb(108, 114, 122)"},{"fill":"rgb(108, 114, 122)"},{"fill":"rgb(108, 114, 122)"},{"fill":"rgb(108, 114, 122)"},{"fill":"rgb(108, 114, 122)"},{"fill":"rgb(108, 114, 122)"},{"fill":"rgb(108, 114, 122)"},{"fill":"rgb(108, 114, 122)"},{"fill":"rgb(108, 114, 122)"},{"fill":"rgb(108, 114, 122)"},{"fill":"rgb(108, 114, 122)"}],"isMulticolor":false,"isMulticolor2":false,"colorPermutations":{"1081141221158162168120320620912282312341243190812456992125519219212552552551291162451452241651699010019902101":[{"f":2},{"f":2},{"f":2},{"f":2},{"f":2},{"f":2},{"f":2},{"f":2},{"f":2},{"f":2},{"f":2}]},"tags":["total"],"grid":0},"attrs":[{"fill":"rgb(108, 114, 122)"},{"fill":"rgb(108, 114, 122)"},{"fill":"rgb(108, 114, 122)"},{"fill":"rgb(108, 114, 122)"},{"fill":"rgb(108, 114, 122)"},{"fill":"rgb(108, 114, 122)"},{"fill":"rgb(108, 114, 122)"},{"fill":"rgb(108, 114, 122)"},{"fill":"rgb(108, 114, 122)"},{"fill":"rgb(108, 114, 122)"},{"fill":"rgb(108, 114, 122)"}],"properties":{"order":99,"id":177,"name":"total","prevSize":32,"code":59851},"setIdx":0,"setId":4,"iconIdx":178},{"icon":{"paths":["M713.613 91.356c13.162-11.794 33.392-10.685 45.187 2.477l129.034 144c10.89 12.154 10.89 30.556 0 42.71l-129.034 144.001c-11.795 13.162-32.026 14.269-45.187 2.477-13.162-11.795-14.272-32.026-2.477-45.187l81.222-90.646h-216.358c-17.674 0-32-14.327-32-32s14.326-32 32-32h216.358l-81.222-90.645c-11.795-13.162-10.685-33.393 2.477-45.187zM340.026 464.461c8.586-15.45 28.067-21.018 43.514-12.432l128.461 71.366 128.461-71.366c15.446-8.586 34.928-3.018 43.514 12.432 8.582 15.45 3.014 34.931-12.435 43.514l-159.539 88.634-159.539-88.634c-15.45-8.582-21.018-28.064-12.435-43.514zM192 288v448h640v-192c0-17.674 14.326-32 32-32s32 14.326 32 32v224c0 17.674-14.326 32-32 32h-704c-17.673 0-32-14.326-32-32v-512c0-17.673 14.327-32 32-32h272c17.674 0 32 14.327 32 32s-14.326 32-32 32h-240z"],"attrs":[{"fill":"rgb(108, 114, 122)"}],"isMulticolor":false,"isMulticolor2":false,"colorPermutations":{"1081141221158162168120320620912282312341243190812456992125519219212552552551291162451452241651699010019902101":[{"f":2}]},"tags":["transcript"],"grid":0},"attrs":[{"fill":"rgb(108, 114, 122)"}],"properties":{"order":100,"id":178,"name":"transcript","prevSize":32,"code":59852},"setIdx":0,"setId":4,"iconIdx":179},{"icon":{"paths":["M384 320c0-17.673-14.326-32-32-32s-32 14.327-32 32v256c0 106.038 85.962 192 192 192s192-85.962 192-192v-256c0-17.673-14.326-32-32-32s-32 14.327-32 32v256c0 70.691-57.309 128-128 128s-128-57.309-128-128v-256zM352 856c-13.254 0-24 10.746-24 24s10.746 24 24 24h320c13.254 0 24-10.746 24-24s-10.746-24-24-24h-320z"],"attrs":[{"fill":"rgb(108, 114, 122)"}],"isMulticolor":false,"isMulticolor2":false,"colorPermutations":{"1081141221158162168120320620912282312341243190812456992125519219212552552551291162451452241651699010019902101":[{"f":2}]},"tags":["underline"],"grid":0},"attrs":[{"fill":"rgb(108, 114, 122)"}],"properties":{"order":101,"id":179,"name":"underline","prevSize":32,"code":59853},"setIdx":0,"setId":4,"iconIdx":180},{"icon":{"paths":["M512 832c176.73 0 320-143.27 320-320s-143.27-320-320-320c-111.712 0-210.056 57.244-267.295 144h107.295c17.674 0 32 14.326 32 32s-14.326 32-32 32h-176c-17.673 0-32-14.326-32-32v-192c0-17.673 14.327-32 32-32s32 14.327 32 32v101.364c70.228-90.856 180.282-149.364 304-149.364 212.077 0 384 171.923 384 384s-171.923 384-384 384c-212.077 0-384-171.923-384-384h64c0 176.73 143.27 320 320 320z"],"attrs":[{"fill":"rgb(108, 114, 122)"}],"isMulticolor":false,"isMulticolor2":false,"colorPermutations":{"1081141221158162168120320620912282312341243190812456992125519219212552552551291162451452241651699010019902101":[{"f":2}]},"tags":["undo"],"grid":0},"attrs":[{"fill":"rgb(108, 114, 122)"}],"properties":{"order":102,"id":180,"name":"undo","prevSize":32,"code":59854},"setIdx":0,"setId":4,"iconIdx":181},{"icon":{"paths":["M467.808 512c0-63.322-61.053-128-153.903-128s-153.905 64.678-153.905 128c0 63.322 61.054 128 153.905 128s153.903-64.678 153.903-128zM512 592.099c34.454 66.042 110.195 111.901 198.096 111.901 120.346 0 217.904-85.962 217.904-192s-97.558-192-217.904-192c-87.901 0-163.642 45.859-198.096 111.901-34.451-66.042-110.195-111.901-198.095-111.901-120.345 0-217.905 85.962-217.905 192s97.559 192 217.905 192c87.9 0 163.644-45.859 198.095-111.901zM864 512c0 63.322-61.053 128-153.904 128s-153.904-64.678-153.904-128c0-63.322 61.053-128 153.904-128s153.904 64.678 153.904 128z"],"attrs":[{"fill":"rgb(108, 114, 122)"}],"isMulticolor":false,"isMulticolor2":false,"colorPermutations":{"1081141221158162168120320620912282312341243190812456992125519219212552552551291162451452241651699010019902101":[{"f":2}]},"tags":["Unlimited"],"grid":0},"attrs":[{"fill":"rgb(108, 114, 122)"}],"properties":{"order":103,"id":181,"name":"Unlimited","prevSize":32,"code":59855},"setIdx":0,"setId":4,"iconIdx":182},{"icon":{"paths":["M829.168 153.372c12.515-12.497 32.803-12.497 45.315 0 12.515 12.497 12.515 32.758 0 45.255l-672.887 672c-12.513 12.496-32.801 12.496-45.315 0s-12.513-32.758 0-45.254l672.887-672zM110.155 480.051c101.936-153.699 303.797-327.676 542.114-225.436l-49.578 49.512c-56.528-19.209-108.077-19.504-153.526-9.726-114.906 24.721-215.653 118.392-280.79 213.871 38.633 48 75.969 86.822 111.862 117.885l-45.363 45.302c-39.684-34.736-80.189-77.437-121.317-129.181-14.248-17.923-16.056-43.146-3.402-62.227zM797.981 350.454l-45.328 45.27c35.546 31.427 72.336 70.947 110.186 120.080-61.546 95.187-158.656 188.682-272.125 213.626-46.752 10.278-100.624 9.734-160.592-11.603l-49.331 49.267c244.662 107.334 443.389-69.158 540.778-224.253 11.674-18.589 9.894-42.656-3.395-60.128-40.493-53.235-80.64-96.931-120.192-132.259zM514.982 347.43c13.709 0 27.037 1.571 39.802 4.541l-203.738 203.469c-3.901-13.837-5.981-28.403-5.981-43.44 0-90.89 76.074-164.57 169.917-164.57zM679.091 469.184l-203.264 202.998c12.57 2.87 25.68 4.39 39.155 4.39 93.843 0 169.917-73.68 169.917-164.573 0-14.81-2.019-29.162-5.808-42.816z"],"width":1056,"attrs":[{"fill":"rgb(108, 114, 122)"}],"isMulticolor":false,"isMulticolor2":false,"colorPermutations":{"1081141221158162168120320620912282312341243190812456992125519219212552552551291162451452241651699010019902101":[{"f":2}]},"tags":["unread-on-top-disabled"],"grid":0},"attrs":[{"fill":"rgb(108, 114, 122)"}],"properties":{"order":104,"id":182,"name":"unread-on-top-disabled","prevSize":32,"code":59856},"setIdx":0,"setId":4,"iconIdx":183},{"icon":{"paths":["M589.36 729.43c-107.366 23.603-252.288-9.875-422.339-221.158 65.137-95.478 165.885-189.15 280.79-213.871 108.314-23.302 251.286 10.604 413.674 221.404-61.546 95.187-158.653 188.682-272.125 213.626zM916.819 482.714c-347.59-456.963-669.742-211.156-808.018-2.662-12.655 19.082-10.846 44.304 3.402 62.227 362.786 456.419 677.038 209.142 808.011 0.563 11.674-18.589 9.894-42.656-3.395-60.128zM619.462 512c0-53.709-45.517-100.57-105.834-100.57s-105.834 46.861-105.834 100.57c0 53.709 45.517 100.573 105.834 100.573s105.834-46.864 105.834-100.573zM683.546 512c0 90.893-76.074 164.573-169.917 164.573s-169.917-73.68-169.917-164.573c0-90.89 76.074-164.57 169.917-164.57s169.917 73.68 169.917 164.57z"],"width":1056,"attrs":[{"fill":"rgb(108, 114, 122)"}],"isMulticolor":false,"isMulticolor2":false,"colorPermutations":{"1081141221158162168120320620912282312341243190812456992125519219212552552551291162451452241651699010019902101":[{"f":2}]},"tags":["unread-on-top"],"grid":0},"attrs":[{"fill":"rgb(108, 114, 122)"}],"properties":{"order":105,"id":183,"name":"unread-on-top","prevSize":32,"code":59857},"setIdx":0,"setId":4,"iconIdx":184},{"icon":{"paths":["M273.128 356.678c-6.62 27.766-2.384 63.757 25.498 105.581l33.166 49.75h-59.792c-44.011 0-70.484 14.874-86.279 33.619-16.496 19.578-24.573 47.264-23.734 77.491 0.841 30.262 10.601 59.968 25.818 81.312 15.127 21.216 33.404 31.578 52.195 31.578h143.999v64h-144c-45.209 0-80.932-25.642-104.306-58.426-23.283-32.656-36.522-74.95-37.682-116.688-1.16-41.773 9.763-86.083 38.766-120.506 20.726-24.598 49.155-42.32 84.825-50.784-16.1-39.011-19.009-77.050-10.731-111.77 11.253-47.2 42.305-84.492 80.791-107.342 38.4-22.798 85.677-32.139 131.303-21.965 35.584 7.935 68.909 27.48 95.251 59.554 53.75-35.147 127.584-30.892 182.483-2.495 34.438 17.812 64.794 46.382 81.437 85.010 12.294 28.531 16.438 61.011 10.608 96.205 46.112 6.682 81.507 25.155 105.616 53.456 30.346 35.626 38.102 81.35 33.443 123.283-4.659 41.917-21.946 83.485-46.544 115.114-24.061 30.934-59.354 57.354-101.261 57.354h-144v-64h144c14.093 0 32.8-9.581 50.742-32.646 17.398-22.371 30.112-52.806 33.453-82.89 3.341-30.067-2.902-56.339-18.554-74.714-15.222-17.869-44.035-33.75-97.642-33.75h-45.686l15.613-42.938c13.546-37.251 11.091-66.742 1.437-89.149-9.856-22.87-28.502-41.302-52.064-53.488-49.587-25.649-107.475-18.625-134.717 14.064l-30.134 36.16-22.541-41.325c-19.757-36.219-47.232-54.175-74.87-60.339-28.378-6.327-59.098-0.669-84.701 14.53-25.512 15.148-44.461 38.855-51.208 67.152zM630.979 588.778l-96-99.050c-6.029-6.218-14.32-9.728-22.979-9.728s-16.95 3.51-22.979 9.728l-96 99.050c-12.298 12.691-11.981 32.95 0.707 45.251 12.691 12.298 32.95 11.981 45.251-0.707l41.021-42.326v273.005c0 17.674 14.326 32 32 32s32-14.326 32-32v-273.005l41.021 42.326c12.301 12.688 32.56 13.005 45.251 0.707 12.691-12.301 13.005-32.56 0.707-45.251z"],"attrs":[{"fill":"rgb(108, 114, 122)"}],"isMulticolor":false,"isMulticolor2":false,"colorPermutations":{"1081141221158162168120320620912282312341243190812456992125519219212552552551291162451452241651699010019902101":[{"f":2}]},"tags":["upload"],"grid":0},"attrs":[{"fill":"rgb(108, 114, 122)"}],"properties":{"order":106,"id":184,"name":"upload","prevSize":32,"code":59858},"setIdx":0,"setId":4,"iconIdx":185},{"icon":{"paths":["M553.411 326.282c0 91.578-75.846 165.818-169.411 165.818-93.564 0-169.412-74.24-169.412-165.818 0-91.581 75.848-165.821 169.412-165.821 93.565 0 169.411 74.24 169.411 165.821zM485.648 326.282c0-54.949-45.51-99.493-101.648-99.493s-101.647 44.544-101.647 99.493c0 54.947 45.509 99.491 101.647 99.491s101.648-44.544 101.648-99.491z","M203.427 511.232c28.952-9.11 60.004-9.67 89.279-1.61l51.342 14.131c25.632 7.056 52.819 6.566 78.166-1.408l31.872-10.026c31.206-9.821 64.678-10.422 96.234-1.738 71.962 19.811 121.68 84.051 121.68 157.219v96.24c0 54.947-45.51 99.491-101.648 99.491h-372.705c-56.138 0-101.647-44.544-101.647-99.491v-108.566c0-65.814 43.411-124.106 107.427-144.243zM274.359 573.472c-16.46-4.531-33.918-4.218-50.196 0.906-35.992 11.322-60.399 44.093-60.399 81.098v108.566c0 18.317 15.17 33.165 33.882 33.165h372.705c18.714 0 33.882-14.848 33.882-33.165v-96.24c0-43.453-29.523-81.603-72.259-93.366-18.739-5.158-38.618-4.8-57.152 1.030l-31.872 10.026c-38.022 11.962-78.803 12.698-117.248 2.115l-51.343-14.134z","M797.091 189.321c0-15.913-13.024-28.812-29.091-28.812s-29.091 12.9-29.091 28.812v100.844h-101.818c-16.067 0-29.091 12.9-29.091 28.812s13.024 28.812 29.091 28.812h101.818v100.845c0 15.914 13.024 28.813 29.091 28.813s29.091-12.899 29.091-28.813v-100.845h101.818c16.067 0 29.091-12.899 29.091-28.812s-13.024-28.812-29.091-28.812h-101.818v-100.844z"],"attrs":[{"fill":"rgb(108, 114, 122)"},{"fill":"rgb(108, 114, 122)"},{"fill":"rgb(108, 114, 122)"}],"isMulticolor":false,"isMulticolor2":false,"colorPermutations":{"1081141221158162168120320620912282312341243190812456992125519219212552552551291162451452241651699010019902101":[{"f":2},{"f":2},{"f":2}]},"tags":["user-add"],"grid":0},"attrs":[{"fill":"rgb(108, 114, 122)"},{"fill":"rgb(108, 114, 122)"},{"fill":"rgb(108, 114, 122)"}],"properties":{"order":107,"id":185,"name":"user-add","prevSize":32,"code":59859},"setIdx":0,"setId":4,"iconIdx":186},{"icon":{"paths":["M464 318.747c0-51.548-42.406-94.366-96-94.366-53.592 0-96 42.819-96 94.366s42.408 94.367 96 94.367c53.594 0 96-42.819 96-94.367zM528 318.747c0 87.416-71.635 158.284-160 158.284s-160-70.867-160-158.284c0-87.417 71.635-158.282 160-158.282s160 70.865 160 158.282zM281.778 525.712c-27.649-7.693-56.976-7.158-84.319 1.536-60.46 19.226-101.459 74.864-101.459 137.69v103.629c0 52.451 42.981 94.97 96 94.97h352c3.606 0 7.165-0.195 10.666-0.579v-64.534c-3.334 1.168-6.925 1.802-10.666 1.802h-352c-17.673 0-32-14.173-32-31.658v-103.629c0-35.325 23.051-66.605 57.044-77.414 15.373-4.89 31.862-5.187 47.407-0.864l48.489 13.491c36.311 10.102 74.827 9.402 110.737-2.016l30.099-9.571c17.504-5.568 36.278-5.91 53.978-0.986 18.899 5.261 35.066 16.042 46.912 30.282v-79.712c-9.309-4.749-19.203-8.627-29.584-11.517-29.805-8.291-61.414-7.715-90.89 1.654l-30.099 9.574c-23.942 7.61-49.619 8.080-73.824 1.344l-48.491-13.491zM763.366 489.709c-12.326-12.646-32.586-12.918-45.248-0.608-12.666 12.31-12.938 32.544-0.611 45.19l102.842 105.51h-324.349c-17.674 0-32 14.307-32 31.958 0 17.648 14.326 31.958 32 31.958h324.349l-102.842 105.507c-12.326 12.65-12.054 32.88 0.611 45.194 12.662 12.31 32.922 12.038 45.248-0.611l155.718-159.757c12.093-12.406 12.093-32.176 0-44.582l-155.718-159.76z"],"attrs":[{"fill":"rgb(108, 114, 122)"}],"isMulticolor":false,"isMulticolor2":false,"colorPermutations":{"1081141221158162168120320620912282312341243190812456992125519219212552552551291162451452241651699010019902101":[{"f":2}]},"tags":["user-forward"],"grid":0},"attrs":[{"fill":"rgb(108, 114, 122)"}],"properties":{"order":108,"id":186,"name":"user-forward","prevSize":32,"code":59860},"setIdx":0,"setId":4,"iconIdx":187},{"icon":{"paths":["M609.354 336c0-53.019-42.979-96-96-96s-96 42.981-96 96c0 53.021 42.979 96 96 96s96-42.979 96-96zM673.354 336c0 88.365-71.635 160-160 160s-160-71.635-160-160c0-88.365 71.635-160 160-160s160 71.635 160 160zM413.805 551.802c-24.621-5.77-50.285-5.366-74.714 1.178-67.086 17.968-113.738 78.762-113.738 148.211v66.81c0 53.021 42.98 96 96 96h384c53.021 0 96-42.979 96-96v-58.531c0-74.301-51.149-138.826-123.488-155.779l-6.458-1.514c-25.674-6.016-52.435-5.594-77.907 1.229l-49.626 13.293c-20.378 5.456-41.789 5.795-62.326 0.979l-67.744-15.875zM355.651 614.8c14.237-3.814 29.197-4.051 43.549-0.688l67.744 15.878c30.806 7.219 62.925 6.714 93.488-1.472l49.629-13.293c15.283-4.096 31.341-4.349 46.742-0.736l6.458 1.51c43.402 10.173 74.093 48.89 74.093 93.469v58.531c0 17.674-14.326 32-32 32h-384c-17.673 0-32-14.326-32-32v-66.81c0-40.483 27.193-75.917 66.298-86.39z"],"width":1056,"attrs":[{"fill":"rgb(108, 114, 122)"}],"isMulticolor":false,"isMulticolor2":false,"colorPermutations":{"1081141221158162168120320620912282312341243190812456992125519219212552552551291162451452241651699010019902101":[{"f":2}]},"tags":["user"],"grid":0},"attrs":[{"fill":"rgb(108, 114, 122)"}],"properties":{"order":109,"id":187,"name":"user","prevSize":32,"code":59861},"setIdx":0,"setId":4,"iconIdx":188},{"icon":{"paths":["M201.583 672c35.346 0 64-28.653 64-64s-28.654-64-64-64c-35.346 0-64 28.653-64 64s28.654 64 64 64z","M329.584 576c-17.674 0-32.001 14.326-32.001 32s14.327 32 32.001 32h544c17.674 0 32-14.326 32-32s-14.326-32-32-32h-544z","M201.583 480c35.346 0 64-28.653 64-64s-28.654-64-64-64c-35.346 0-64 28.653-64 64s28.654 64 64 64z","M329.584 384c-17.674 0-32.001 14.326-32.001 32s14.327 32 32.001 32h544c17.674 0 32-14.326 32-32s-14.326-32-32-32h-544z","M201.583 288c35.346 0 64-28.654 64-64s-28.654-64-64-64c-35.346 0-64 28.654-64 64s28.654 64 64 64z","M329.584 192c-17.674 0-32.001 14.327-32.001 32s14.327 32 32.001 32h544c17.674 0 32-14.327 32-32s-14.326-32-32-32h-544z","M201.583 864c35.346 0 64-28.653 64-64s-28.654-64-64-64c-35.346 0-64 28.653-64 64s28.654 64 64 64z","M329.584 768c-17.674 0-32.001 14.326-32.001 32s14.327 32 32.001 32h544c17.674 0 32-14.326 32-32s-14.326-32-32-32h-544z"],"attrs":[{"fill":"rgb(108, 114, 122)"},{"fill":"rgb(108, 114, 122)"},{"fill":"rgb(108, 114, 122)"},{"fill":"rgb(108, 114, 122)"},{"fill":"rgb(108, 114, 122)"},{"fill":"rgb(108, 114, 122)"},{"fill":"rgb(108, 114, 122)"},{"fill":"rgb(108, 114, 122)"}],"isMulticolor":false,"isMulticolor2":false,"colorPermutations":{"1081141221158162168120320620912282312341243190812456992125519219212552552551291162451452241651699010019902101":[{"f":2},{"f":2},{"f":2},{"f":2},{"f":2},{"f":2},{"f":2},{"f":2}]},"tags":["view-condensed"],"grid":0},"attrs":[{"fill":"rgb(108, 114, 122)"},{"fill":"rgb(108, 114, 122)"},{"fill":"rgb(108, 114, 122)"},{"fill":"rgb(108, 114, 122)"},{"fill":"rgb(108, 114, 122)"},{"fill":"rgb(108, 114, 122)"},{"fill":"rgb(108, 114, 122)"},{"fill":"rgb(108, 114, 122)"}],"properties":{"order":110,"id":188,"name":"view-condensed","prevSize":32,"code":59862},"setIdx":0,"setId":4,"iconIdx":189},{"icon":{"paths":["M288 192c0-17.673 14.327-32 32-32h544c17.674 0 32 14.327 32 32s-14.326 32-32 32h-544c-17.673 0-32-14.327-32-32zM288 288c0-17.673 14.327-32 32-32h448c17.674 0 32 14.327 32 32s-14.326 32-32 32h-448c-17.673 0-32-14.327-32-32zM192 304c35.346 0 64-28.654 64-64s-28.654-64-64-64c-35.346 0-64 28.654-64 64s28.654 64 64 64z","M288 464c0-17.674 14.327-32 32-32h544c17.674 0 32 14.326 32 32s-14.326 32-32 32h-544c-17.673 0-32-14.326-32-32zM288 560c0-17.674 14.327-32 32-32h448c17.674 0 32 14.326 32 32s-14.326 32-32 32h-448c-17.673 0-32-14.326-32-32zM192 576c35.346 0 64-28.653 64-64s-28.654-64-64-64c-35.346 0-64 28.653-64 64s28.654 64 64 64z","M288 736c0-17.674 14.327-32 32-32h544c17.674 0 32 14.326 32 32s-14.326 32-32 32h-544c-17.673 0-32-14.326-32-32zM288 832c0-17.674 14.327-32 32-32h448c17.674 0 32 14.326 32 32s-14.326 32-32 32h-448c-17.673 0-32-14.326-32-32zM192 848c35.346 0 64-28.653 64-64s-28.654-64-64-64c-35.346 0-64 28.653-64 64s28.654 64 64 64z"],"attrs":[{"fill":"rgb(108, 114, 122)"},{"fill":"rgb(108, 114, 122)"},{"fill":"rgb(108, 114, 122)"}],"isMulticolor":false,"isMulticolor2":false,"colorPermutations":{"1081141221158162168120320620912282312341243190812456992125519219212552552551291162451452241651699010019902101":[{"f":2},{"f":2},{"f":2}]},"tags":["view-extended"],"grid":0},"attrs":[{"fill":"rgb(108, 114, 122)"},{"fill":"rgb(108, 114, 122)"},{"fill":"rgb(108, 114, 122)"}],"properties":{"order":111,"id":189,"name":"view-extended","prevSize":32,"code":59863},"setIdx":0,"setId":4,"iconIdx":190},{"icon":{"paths":["M192 320c35.346 0 64-28.654 64-64s-28.654-64-64-64c-35.346 0-64 28.654-64 64s28.654 64 64 64z","M320 224c-17.673 0-32 14.327-32 32s14.327 32 32 32h544c17.674 0 32-14.327 32-32s-14.326-32-32-32h-544z","M192 576c35.346 0 64-28.653 64-64s-28.654-64-64-64c-35.346 0-64 28.653-64 64s28.654 64 64 64z","M320 480c-17.673 0-32 14.326-32 32s14.327 32 32 32h544c17.674 0 32-14.326 32-32s-14.326-32-32-32h-544z","M192 832c35.346 0 64-28.653 64-64s-28.654-64-64-64c-35.346 0-64 28.653-64 64s28.654 64 64 64z","M320 736c-17.673 0-32 14.326-32 32s14.327 32 32 32h544c17.674 0 32-14.326 32-32s-14.326-32-32-32h-544z"],"attrs":[{"fill":"rgb(108, 114, 122)"},{"fill":"rgb(108, 114, 122)"},{"fill":"rgb(108, 114, 122)"},{"fill":"rgb(108, 114, 122)"},{"fill":"rgb(108, 114, 122)"},{"fill":"rgb(108, 114, 122)"}],"isMulticolor":false,"isMulticolor2":false,"colorPermutations":{"1081141221158162168120320620912282312341243190812456992125519219212552552551291162451452241651699010019902101":[{"f":2},{"f":2},{"f":2},{"f":2},{"f":2},{"f":2}]},"tags":["view-medium"],"grid":0},"attrs":[{"fill":"rgb(108, 114, 122)"},{"fill":"rgb(108, 114, 122)"},{"fill":"rgb(108, 114, 122)"},{"fill":"rgb(108, 114, 122)"},{"fill":"rgb(108, 114, 122)"},{"fill":"rgb(108, 114, 122)"}],"properties":{"order":112,"id":190,"name":"view-medium","prevSize":32,"code":59864},"setIdx":0,"setId":4,"iconIdx":191},{"icon":{"paths":["M640.854 256c26.512 0 48-21.49 48-48s-21.488-48-48-48c-26.509 0-48 21.49-48 48s21.491 48 48 48zM640.854 320c61.856 0 112-50.144 112-112s-50.144-112-112-112c-61.856 0-112 50.144-112 112s50.144 112 112 112zM592.854 416v256h-160v128h32v-96h224v-288h-96zM528.854 768h160c35.347 0 64-28.653 64-64v-288c0-35.347-28.653-64-64-64h-96c-35.344 0-64 28.653-64 64v192h-96c-35.344 0-64 28.653-64 64v128c0 35.347 28.656 64 64 64h32c35.347 0 64-28.653 64-64v-32zM784.854 448c0-17.674 14.326-32 32-32s32 14.326 32 32v384c0 17.674-14.326 32-32 32h-224c-17.674 0-32-14.326-32-32s14.326-32 32-32h192v-352zM368.403 401.52c9.677-9.059 10.176-24.246 1.117-33.923l-48.272-51.558v-47.925c0-13.255-10.746-24-24-24s-24 10.745-24 24v57.406c0 6.093 2.316 11.955 6.48 16.403l54.752 58.48c9.059 9.677 24.246 10.176 33.923 1.117zM170.974 414.278c53.308 74.218 156.687 91.171 230.908 37.862 10.765-7.731 25.76-5.274 33.494 5.491 7.731 10.768 5.274 25.763-5.494 33.494-95.75 68.771-229.121 46.902-297.894-48.848s-46.902-229.123 48.848-297.895c75.545-54.26 174.453-52.073 246.597-1.796 10.874 7.578 13.546 22.538 5.968 33.412s-22.538 13.547-33.411 5.968c-55.971-39.005-132.65-40.618-191.153 1.402-74.219 53.308-91.171 156.688-37.864 230.909z"],"attrs":[{"fill":"rgb(108, 114, 122)"}],"isMulticolor":false,"isMulticolor2":false,"colorPermutations":{"1081141221158162168120320620912282312341243190812456992125519219212552552551291162451452241651699010019902101":[{"f":2}]},"tags":["waiting-on-me"],"grid":0},"attrs":[{"fill":"rgb(108, 114, 122)"}],"properties":{"order":113,"id":191,"name":"waiting-on-me","prevSize":32,"code":59865},"setIdx":0,"setId":4,"iconIdx":192},{"icon":{"paths":["M512 352.003c17.674 0 32 14.33 32 32v224c0 17.674-14.326 32-32 32s-32-14.326-32-32v-224c0-17.67 14.326-32 32-32z","M512 672.003c17.674 0 32 14.33 32 32 0 17.674-14.326 32-32 32s-32-14.326-32-32c0-17.67 14.326-32 32-32z","M567.101 158.348c-24.774-41.922-85.427-41.922-110.202 0l-359.92 609.099c-25.21 42.662 5.544 96.557 55.099 96.557h719.845c49.555 0 80.307-53.894 55.098-96.557l-359.92-609.099zM512 190.906l359.923 609.097h-719.845l359.922-609.097z"],"attrs":[{"fill":"rgb(108, 114, 122)"},{"fill":"rgb(108, 114, 122)"},{"fill":"rgb(108, 114, 122)"}],"isMulticolor":false,"isMulticolor2":false,"colorPermutations":{"1081141221158162168120320620912282312341243190812456992125519219212552552551291162451452241651699010019902101":[{"f":2},{"f":2},{"f":2}]},"tags":["warning"],"grid":0},"attrs":[{"fill":"rgb(108, 114, 122)"},{"fill":"rgb(108, 114, 122)"},{"fill":"rgb(108, 114, 122)"}],"properties":{"order":114,"id":192,"name":"warning","prevSize":32,"code":59866},"setIdx":0,"setId":4,"iconIdx":193},{"icon":{"paths":["M784.131 240.143c-35.43-35.658-77.581-63.931-124.016-83.181s-96.227-29.094-146.493-28.961c-210.863 0-382.322 171.532-382.414 382.376-0.085 67.104 17.523 133.043 51.047 191.171l-54.256 198.154 202.72-53.174c56.064 30.531 118.883 46.531 182.717 46.538h0.166c210.752 0 382.32-171.552 382.394-382.394 0.16-50.25-9.645-100.029-28.848-146.464-19.2-46.436-47.418-88.604-83.018-124.065zM513.622 828.486h-0.186c-56.922 0.006-112.797-15.293-161.776-44.298l-11.606-6.896-120.302 31.555 32.124-117.347-7.573-12.029c-31.783-50.64-48.608-109.232-48.535-169.021 0-175.235 142.653-317.816 317.981-317.816 84.301 0.049 165.13 33.58 224.707 93.218 59.581 59.638 93.034 140.499 92.998 224.8-0.074 175.254-142.653 317.834-317.834 317.834zM687.958 590.451c-9.552-4.787-56.528-27.907-65.293-31.171s-15.126-4.768-21.491 4.784c-6.362 9.555-24.678 31.171-30.253 37.462-5.574 6.288-11.149 7.187-20.701 2.4-9.555-4.784-40.339-14.87-76.845-47.434-28.403-25.322-47.584-56.621-53.174-66.192-5.594-9.571-0.589-14.669 4.198-19.491 4.291-4.291 9.552-11.168 14.32-16.742s6.381-9.571 9.552-15.933c3.174-6.362 1.597-11.955-0.787-16.739-2.384-4.787-21.491-51.818-29.466-70.96-7.757-18.63-15.622-16.099-21.491-16.394-5.501-0.275-11.955-0.349-18.336-0.349-4.842 0.131-9.606 1.264-13.994 3.325-4.387 2.058-8.298 5.005-11.491 8.65-8.749 9.552-33.428 32.675-33.428 79.706s34.234 92.467 39.002 98.848c4.765 6.381 67.382 102.883 163.187 144.266 17.792 7.68 35.974 14.413 54.477 20.17 22.902 7.334 43.731 6.237 60.179 3.779 18.336-2.733 56.547-23.104 64.506-45.418 7.955-22.317 7.955-41.459 5.501-45.456-2.458-3.997-8.618-6.326-18.173-11.11z"],"attrs":[{"fill":"rgb(108, 114, 122)"}],"isMulticolor":false,"isMulticolor2":false,"colorPermutations":{"1081141221158162168120320620912282312341243190812456992125519219212552552551291162451452241651699010019902101":[{"f":2}]},"tags":["whatsapp-monochromatic"],"grid":0},"attrs":[{"fill":"rgb(108, 114, 122)"}],"properties":{"order":237,"id":193,"name":"whatsapp-monochromatic","prevSize":32,"code":59868},"setIdx":0,"setId":4,"iconIdx":194},{"icon":{"paths":["M354.006 399.123l14.029 0.627-0.541-16.726-152.878 1.578c49.916-116.491 165.64-198.133 300.366-198.133 99.645 0 188.893 44.659 248.81 115.065-3.712 0.171-7.491 0.492-11.526 1.068 0 0-63.76 14.898-13.302 118.708 0 0 31.085 84.541-19.306 198.774l-28.403 73.306-99.101-264.723c0 0-5.984-28.154 23.61-28.154l23.76-1.472 0.339-16.035h-228.368v14.458c0 0 39.83-0.288 56.15 27.149l40.762 103.779-73.014 174.403-108.608-272.4c0 0-3.389-31.779 27.222-31.27z","M841.603 513.168c0-33.862-5.235-66.643-14.726-97.357l-145.949 378.755c96.134-56.88 160.675-161.571 160.675-281.398z","M411.478 823.011c32.49 10.912 67.267 16.778 103.488 16.778 37.85 0 74.102-6.406 107.898-18.256l-99.709-258.502-111.677 259.981z","M188.279 513.149c0-32.083 4.712-63.066 13.339-92.336l1 2.051 152.656 375.229c-99.606-55.882-166.994-162.538-166.994-284.944z","M130.705 512.093c0-211.775 172.316-384.093 384.076-384.093 211.725 0 383.923 172.318 383.923 384.093 0 211.776-172.198 384.010-383.923 384.010-211.757 0-384.076-172.234-384.076-384.010zM514.781 879.254c202.384 0 367.11-164.742 367.11-367.178 0-202.486-164.726-367.145-367.11-367.161-202.489 0-367.213 164.673-367.213 367.161 0 202.435 164.724 367.178 367.213 367.178z"],"width":1056,"attrs":[{"fill":"rgb(108, 114, 122)"},{"fill":"rgb(108, 114, 122)"},{"fill":"rgb(108, 114, 122)"},{"fill":"rgb(108, 114, 122)"},{"fill":"rgb(108, 114, 122)"}],"isMulticolor":false,"isMulticolor2":false,"colorPermutations":{"1081141221158162168120320620912282312341243190812456992125519219212552552551291162451452241651699010019902101":[{"f":2},{"f":2},{"f":2},{"f":2},{"f":2}]},"tags":["wordpress-monochromatic"],"grid":0},"attrs":[{"fill":"rgb(108, 114, 122)"},{"fill":"rgb(108, 114, 122)"},{"fill":"rgb(108, 114, 122)"},{"fill":"rgb(108, 114, 122)"},{"fill":"rgb(108, 114, 122)"}],"properties":{"order":241,"id":194,"name":"wordpress-monochromatic","prevSize":32,"code":59656},"setIdx":0,"setId":4,"iconIdx":195},{"icon":{"paths":["M193.353 405.334h213.332v-213.334h-213.332v213.334zM129.353 170.667c0-23.564 19.102-42.667 42.667-42.667h256c23.565 0 42.666 19.102 42.666 42.667v255.999c0 23.565-19.101 42.669-42.666 42.669h-256c-23.564 0-42.667-19.104-42.667-42.669v-255.999zM620.019 405.334h213.334v-213.334h-213.334v213.334zM556.019 170.667c0-23.564 19.104-42.667 42.666-42.667h256c23.565 0 42.669 19.102 42.669 42.667v255.999c0 23.565-19.104 42.669-42.669 42.669h-256c-23.562 0-42.666-19.104-42.666-42.669v-255.999zM620.019 618.666h213.334v213.334h-213.334v-213.334zM598.685 554.666c-23.562 0-42.666 19.104-42.666 42.669v256c0 23.562 19.104 42.666 42.666 42.666h256c23.565 0 42.669-19.104 42.669-42.666v-256c0-23.565-19.104-42.669-42.669-42.669h-256zM193.353 832h213.332v-213.334h-213.332v213.334zM129.353 597.334c0-23.565 19.102-42.669 42.667-42.669h256c23.565 0 42.666 19.104 42.666 42.669v256c0 23.562-19.101 42.666-42.666 42.666h-256c-23.564 0-42.667-19.104-42.667-42.666v-256z"],"width":1056,"attrs":[{"fill":"rgb(108, 114, 122)"}],"isMulticolor":false,"isMulticolor2":false,"colorPermutations":{"1081141221158162168120320620912282312341243190812456992125519219212552552551291162451452241651699010019902101":[{"f":2}]},"tags":["workspaces"],"grid":0},"attrs":[{"fill":"rgb(108, 114, 122)"}],"properties":{"order":119,"id":195,"name":"workspaces","prevSize":32,"code":59870},"setIdx":0,"setId":4,"iconIdx":196},{"icon":{"paths":["M384.509 149.333c0-11.782 9.562-21.333 21.36-21.333h85.446c11.798 0 21.363 9.551 21.363 21.333v106.667h-106.81c-11.798 0-21.36-9.551-21.36-21.333v-85.333z","M512.678 256h106.806c11.798 0 21.36 9.551 21.36 21.333v85.332c0 11.782-9.562 21.334-21.36 21.334h-106.806v-128z","M384.509 405.334c0-11.782 9.562-21.334 21.36-21.334h106.81v128h-106.81c-11.798 0-21.36-9.552-21.36-21.334v-85.331z","M512.678 512h106.806c11.798 0 21.36 9.552 21.36 21.334v106.666h-128.166v-128z","M427.232 640c-23.597 0-42.723 19.104-42.723 42.666v170.669c0 23.562 19.126 42.666 42.723 42.666h170.89c23.597 0 42.723-19.104 42.723-42.666v-213.334h-213.613zM491.315 725.334c-11.798 0-21.36 9.549-21.36 21.331v42.669c0 11.782 9.562 21.331 21.36 21.331h42.723c11.798 0 21.36-9.549 21.36-21.331v-42.669c0-11.782-9.562-21.331-21.36-21.331h-42.723z"],"width":1056,"attrs":[{"fill":"rgb(108, 114, 122)"},{"fill":"rgb(108, 114, 122)"},{"fill":"rgb(108, 114, 122)"},{"fill":"rgb(108, 114, 122)"},{"fill":"rgb(108, 114, 122)"}],"isMulticolor":false,"isMulticolor2":false,"colorPermutations":{"1081141221158162168120320620912282312341243190812456992125519219212552552551291162451452241651699010019902101":[{"f":2},{"f":2},{"f":2},{"f":2},{"f":2}]},"tags":["zip"],"grid":0},"attrs":[{"fill":"rgb(108, 114, 122)"},{"fill":"rgb(108, 114, 122)"},{"fill":"rgb(108, 114, 122)"},{"fill":"rgb(108, 114, 122)"},{"fill":"rgb(108, 114, 122)"}],"properties":{"order":120,"id":196,"name":"zip","prevSize":32,"code":59871},"setIdx":0,"setId":4,"iconIdx":197},{"icon":{"paths":["M544 208c0-17.673-14.326-32-32-32s-32 14.327-32 32v271.997h-271.998c-17.673 0-32 14.326-32 32s14.327 32 32 32h271.998v272.003c0 17.674 14.326 32 32 32s32-14.326 32-32v-272.003l272-0.003c17.674 0 32-14.326 32-32s-14.326-32-32-32l-272 0.003v-271.997z"],"attrs":[{"fill":"rgb(108, 114, 122)"}],"isMulticolor":false,"isMulticolor2":false,"colorPermutations":{"1081141221158162168120320620912282312341243190812456992125519219212552552551291162451452241651699010019902101":[{"f":2}]},"tags":["add"],"grid":0},"attrs":[{"fill":"rgb(108, 114, 122)"}],"properties":{"order":240,"id":197,"name":"add","prevSize":32,"code":59872},"setIdx":0,"setId":4,"iconIdx":198}],"height":1024,"metadata":{"name":"custom"},"preferences":{"showGlyphs":true,"showQuickUse":true,"showQuickUse2":true,"showSVGs":true,"fontPref":{"prefix":"icon-","metadata":{"fontFamily":"custom","majorVersion":1,"minorVersion":0},"metrics":{"emSize":1024,"baseline":6.25,"whitespace":50},"embed":false},"imagePref":{"prefix":"icon-","png":true,"useClassSelector":true,"color":0,"bgColor":16777215,"classSelector":".icon"},"historySize":50,"showCodes":true,"gridSize":16}} \ No newline at end of file +{ + "IcoMoonType": "selection", + "icons": [ + { + "icon": { + "paths": [ + "M649.427 192c-26.454 0-52.016 10.804-71.005 30.343l-305.1 313.906c-31.48 32.387-49.322 76.506-49.322 122.694 0 46.186 17.842 90.304 49.322 122.694 31.451 32.355 73.91 50.362 117.984 50.362s86.531-18.006 117.981-50.362l305.101-313.907c12.317-12.672 32.576-12.96 45.248-0.643 12.675 12.317 12.963 32.576 0.646 45.251l-305.101 313.904c-43.302 44.554-102.23 69.757-163.875 69.757s-120.574-25.203-163.877-69.757c-43.273-44.522-67.428-104.717-67.428-167.299s24.155-122.781 67.428-167.302l305.1-313.905c30.845-31.735 72.874-49.737 116.899-49.737s86.054 18.002 116.899 49.737c30.816 31.704 47.971 74.514 47.971 118.968s-17.155 87.263-47.971 118.969l-305.43 313.904c-0.003 0.006 0.003-0.003 0 0-18.384 18.909-43.523 29.718-69.923 29.718-26.406 0-51.539-10.8-69.923-29.718-18.356-18.883-28.512-44.31-28.512-70.634 0-26.326 10.156-51.754 28.512-70.637l281.872-289.668c12.326-12.666 32.586-12.942 45.251-0.617s12.941 32.585 0.618 45.251l-281.846 289.638c-6.557 6.752-10.406 16.106-10.406 26.032 0 9.93 3.843 19.277 10.406 26.029 6.531 6.72 15.194 10.323 24.029 10.323s17.498-3.603 24.029-10.323l305.43-313.907c19.024-19.568 29.866-46.301 29.866-74.361 0-28.059-10.842-54.791-29.866-74.362-18.989-19.54-44.55-30.343-71.005-30.343z" + ], + "attrs": [{ "fill": "rgb(108, 114, 122)" }], + "isMulticolor": false, + "isMulticolor2": false, + "grid": 0, + "tags": ["attach"], + "colorPermutations": { + "1081141221158162168120320620912282312341243190812456992125519219212552552551291162451452241651699010019902101": [ + { "f": 2 } + ] + } + }, + "attrs": [{ "fill": "rgb(108, 114, 122)" }], + "properties": { "order": 254, "id": 205, "name": "attach", "prevSize": 32, "code": 59676 }, + "setIdx": 0, + "setId": 4, + "iconIdx": 0 + }, + { + "icon": { + "paths": [ + "M254.841 275.612l-13.972 14.271c-37.092 37.883-36.449 98.664 1.435 135.758l145.619 142.573c37.885 37.091 98.666 36.448 135.76-1.437l13.971-14.269c0.723-0.739 1.43-1.488 2.128-2.243l0.099 0.099c5.805-5.904 13.888-9.568 22.822-9.568 17.674 0 32 14.326 32 32 0 9.6-4.227 18.211-10.922 24.077l-0.397 0.41-13.974 14.269c-61.818 63.142-163.12 64.214-226.259 2.394l-145.622-142.576c-63.141-61.818-64.212-163.119-2.392-226.26l13.972-14.27c61.82-63.141 163.12-64.212 226.263-2.392l74.691 73.131c0.976 0.847 1.901 1.752 2.768 2.71l0.374 0.366-0.026 0.026c4.934 5.63 7.923 13.005 7.923 21.078 0 17.674-14.326 32-32 32-7.83 0-15.005-2.813-20.566-7.482l-0.106 0.109-77.834-76.206c-37.885-37.092-98.666-36.45-135.757 1.435zM790.566 768.003l13.971-14.269c37.091-37.885 36.448-98.666-1.437-135.757l-145.619-142.576c-37.885-37.091-98.666-36.448-135.757 1.437l-13.971 14.269c-0.723 0.739-1.434 1.488-2.128 2.243l-0.102-0.099c-5.805 5.907-13.885 9.568-22.822 9.568-17.67 0-32-14.326-32-32 0-9.6 4.227-18.211 10.922-24.077l0.4-0.406 13.971-14.272c61.821-63.142 163.12-64.211 226.262-2.39l145.619 142.573c63.142 61.821 64.211 163.12 2.394 226.262l-13.971 14.269c-61.821 63.142-163.123 64.211-226.262 2.394l-74.694-73.133c-0.976-0.845-1.901-1.75-2.768-2.71l-0.374-0.365 0.026-0.026c-4.931-5.629-7.923-13.005-7.923-21.078 0-17.674 14.326-32 32-32 7.83 0 15.005 2.813 20.566 7.482l0.106-0.109 77.837 76.208c37.885 37.091 98.662 36.448 135.757-1.437z" + ], + "attrs": [{ "fill": "rgb(108, 114, 122)" }], + "width": 1056, + "isMulticolor": false, + "isMulticolor2": false, + "grid": 0, + "tags": ["link"], + "colorPermutations": { + "1081141221158162168120320620912282312341243190812456992125519219212552552551291162451452241651699010019902101": [ + { "f": 2 } + ] + } + }, + "attrs": [{ "fill": "rgb(108, 114, 122)" }], + "properties": { "order": 253, "id": 204, "name": "link", "prevSize": 32, "code": 59752 }, + "setIdx": 0, + "setId": 4, + "iconIdx": 1 + }, + { + "icon": { + "paths": [ + "M512 896c-212.077 0-384-171.923-384-384s171.923-384 384-384c212.077 0 384 171.923 384 384s-171.923 384-384 384zM565.334 288c0-29.455-23.878-53.333-53.334-53.333s-53.334 23.878-53.334 53.333v249.632l180.016 144.013c23.002 18.403 56.563 14.672 74.963-8.326 18.403-23.002 14.672-56.563-8.326-74.963l-139.984-111.987v-198.368z" + ], + "attrs": [{ "fill": "rgb(243, 190, 8)" }], + "isMulticolor": false, + "isMulticolor2": false, + "grid": 0, + "tags": ["status-away"], + "colorPermutations": { + "1081141221158162168120320620912282312341243190812456992125519219212552552551291162451452241651699010019902101": [ + { "f": 3 } + ] + } + }, + "attrs": [{ "fill": "rgb(243, 190, 8)" }], + "properties": { "order": 247, "id": 203, "name": "status-away", "prevSize": 32, "code": 59741 }, + "setIdx": 0, + "setId": 4, + "iconIdx": 2 + }, + { + "icon": { + "paths": [ + "M512 896c-212.077 0-384-171.923-384-384s171.923-384 384-384c212.077 0 384 171.923 384 384s-171.923 384-384 384zM384 458.666c-29.456 0-53.334 23.875-53.334 53.331s23.878 53.334 53.334 53.334h256c29.456 0 53.334-23.878 53.334-53.334s-23.878-53.331-53.334-53.331h-256z" + ], + "attrs": [{ "fill": "rgb(245, 69, 92)" }], + "isMulticolor": false, + "isMulticolor2": false, + "grid": 0, + "tags": ["status-busy"], + "colorPermutations": { + "1081141221158162168120320620912282312341243190812456992125519219212552552551291162451452241651699010019902101": [ + { "f": 6 } + ] + } + }, + "attrs": [{ "fill": "rgb(245, 69, 92)" }], + "properties": { "order": 248, "id": 202, "name": "status-busy", "prevSize": 32, "code": 59742 }, + "setIdx": 0, + "setId": 4, + "iconIdx": 3 + }, + { + "icon": { + "paths": [ + "M888.691 586.941l-125.568-24.838c3.187-16.102 4.877-32.842 4.877-50.102s-1.69-34-4.877-50.102l125.568-24.838c4.794 24.237 7.309 49.296 7.309 74.941s-2.515 50.704-7.309 74.941zM831.322 298.644l-106.365 71.209c-18.726-27.971-42.838-52.083-70.81-70.81l71.21-106.364c41.875 28.035 77.93 64.089 105.965 105.965zM586.941 135.309l-24.838 125.566c-16.102-3.185-32.842-4.876-50.102-4.876s-34 1.69-50.102 4.876l-24.838-125.566c24.237-4.795 49.296-7.309 74.941-7.309s50.704 2.514 74.941 7.309zM298.644 192.679l71.209 106.364c-27.971 18.727-52.083 42.839-70.81 70.81l-106.364-71.209c28.035-41.876 64.089-77.93 105.965-105.964zM135.309 437.059c-4.795 24.237-7.309 49.296-7.309 74.941s2.514 50.704 7.309 74.941l125.566-24.838c-3.185-16.102-4.876-32.842-4.876-50.102s1.69-34 4.876-50.102l-125.566-24.838zM192.679 725.357l106.364-71.21c18.727 27.971 42.839 52.083 70.81 70.81l-71.209 106.365c-41.876-28.035-77.93-64.090-105.964-105.965zM437.059 888.691l24.838-125.568c16.102 3.187 32.842 4.877 50.102 4.877s34-1.69 50.102-4.877l24.838 125.568c-24.237 4.794-49.296 7.309-74.941 7.309s-50.704-2.515-74.941-7.309zM725.357 831.322l-71.21-106.365c27.971-18.726 52.083-42.838 70.81-70.81l106.365 71.21c-28.035 41.875-64.090 77.93-105.965 105.965z" + ], + "attrs": [{ "fill": "rgb(158, 162, 168)" }], + "isMulticolor": false, + "isMulticolor2": false, + "grid": 0, + "tags": ["status-loading"], + "colorPermutations": { + "1081141221158162168120320620912282312341243190812456992125519219212552552551291162451452241651699010019902101": [ + { "f": 7 } + ] + } + }, + "attrs": [{ "fill": "rgb(158, 162, 168)" }], + "properties": { "order": 249, "id": 201, "name": "status-loading", "prevSize": 32, "code": 59743 }, + "setIdx": 0, + "setId": 4, + "iconIdx": 4 + }, + { + "icon": { + "paths": [ + "M512 789.334c-153.168 0-277.333-124.166-277.333-277.334s124.165-277.333 277.333-277.333c153.168 0 277.334 124.165 277.334 277.333s-124.166 277.334-277.334 277.334zM512 896c212.077 0 384-171.923 384-384s-171.923-384-384-384c-212.077 0-384 171.923-384 384s171.923 384 384 384z" + ], + "attrs": [{ "fill": "rgb(158, 162, 168)" }], + "isMulticolor": false, + "isMulticolor2": false, + "grid": 0, + "tags": ["status-offline"], + "colorPermutations": { + "1081141221158162168120320620912282312341243190812456992125519219212552552551291162451452241651699010019902101": [ + { "f": 7 } + ] + } + }, + "attrs": [{ "fill": "rgb(158, 162, 168)" }], + "properties": { "order": 250, "id": 200, "name": "status-offline", "prevSize": 32, "code": 59744 }, + "setIdx": 0, + "setId": 4, + "iconIdx": 5 + }, + { + "icon": { + "paths": [ + "M896 512c0 212.077-171.923 384-384 384s-384-171.923-384-384c0-212.077 171.923-384 384-384s384 171.923 384 384z" + ], + "attrs": [{ "fill": "rgb(45, 224, 165)" }], + "isMulticolor": false, + "isMulticolor2": false, + "grid": 0, + "tags": ["status-online"], + "colorPermutations": { + "1081141221158162168120320620912282312341243190812456992125519219212552552551291162451452241651699010019902101": [ + { "f": 4 } + ] + } + }, + "attrs": [{ "fill": "rgb(45, 224, 165)" }], + "properties": { "order": 251, "id": 199, "name": "status-online", "prevSize": 32, "code": 59745 }, + "setIdx": 0, + "setId": 4, + "iconIdx": 6 + }, + { + "icon": { + "paths": [ + "M631.997 256h24v-56c0-57.437 46.563-104 104-104 57.44 0 104 46.562 104 104v56h24c17.674 0 32 14.327 32 32v192c0 17.674-14.326 32-32 32h-256c-17.67 0-32-14.326-32-32v-192c0-17.673 14.33-32 32-32zM759.997 160c-22.090 0-40 17.908-40 40v55.238h80v-55.238c0-22.092-17.907-40-40-40z", + "M527.997 224c10.096 0 19.882 1.336 29.184 3.84-13.251 16.46-21.184 37.383-21.184 60.16v0.664c-2.602-0.436-5.274-0.664-8-0.664-26.509 0-48 21.49-48 48s21.491 48 48 48c2.726 0 5.398-0.227 8-0.662v64.381c-2.64 0.186-5.309 0.282-8 0.282-61.856 0-112-50.144-112-112s50.144-112 112-112z", + "M492.941 500.282c14.883 5.709 30.883 7.283 46.355 4.758 6.182 22.938 20.646 42.474 39.987 55.206-35.123 13.318-74.019 13.309-109.261-0.208l-15.040-5.77c-12.838-4.925-27.104-4.589-39.699 0.931-19.008 8.333-31.286 27.12-31.286 47.872v132.928c0 17.674 14.33 32 32 32h224c17.674 0 32-14.326 32-32v-125.062c0-12.842-4.122-24.995-11.325-34.938h70.291c3.29 11.162 5.034 22.902 5.034 34.938v125.062c0 53.021-42.979 96-96 96h-224c-53.018 0-95.999-42.979-95.999-96v-132.928c0-46.163 27.311-87.955 69.592-106.49 28.019-12.278 59.747-13.024 88.31-2.067l15.040 5.766z", + "M887.997 576h-15.286v25.766c0 17.674-14.326 32-32 32h-72.714v64h72.714c53.021 0 96-42.979 96-96v-39.027c-14.278 8.426-30.931 13.261-48.714 13.261z", + "M281.182 416c53.020 0 95.999-42.979 95.999-96 0-53.019-42.979-96-95.999-96s-96 42.981-96 96c0 53.021 42.98 96 96 96zM281.182 352c-17.673 0-32-14.326-32-32s14.327-32 32-32c17.673 0 32 14.327 32 32s-14.327 32-32 32z", + "M625.267 640h-0.8c0.262 0.598 0.528 1.194 0.8 1.786v-1.786z", + "M357.59 464.582c2.531-1.107 5.091-2.122 7.674-3.043-17.907-5.155-37.011-4.832-54.823 1.018l-14.183 4.659c-14.887 4.893-30.998 4.554-45.668-0.954l-4.554-1.709c-21.067-7.91-44.203-8.394-65.581-1.37-40.565 13.325-67.986 51.197-67.986 93.894v44.688c0 53.021 42.98 96 96 96h79.53v-64h-79.53c-17.673 0-32-14.326-32-32v-44.688c0-15.050 9.664-28.394 23.96-33.091 7.534-2.474 15.688-2.304 23.112 0.483l4.554 1.709c21.238 7.974 44.041 10.333 66.238 7.027 10.398-30.173 32.992-55.357 63.258-68.624z", + "M423.914 640h0.797c-0.259 0.598-0.525 1.194-0.797 1.786v-1.786z" + ], + "attrs": [ + { "fill": "rgb(108, 114, 122)" }, + { "fill": "rgb(108, 114, 122)" }, + { "fill": "rgb(108, 114, 122)" }, + { "fill": "rgb(108, 114, 122)" }, + { "fill": "rgb(108, 114, 122)" }, + { "fill": "rgb(108, 114, 122)" }, + { "fill": "rgb(108, 114, 122)" }, + { "fill": "rgb(108, 114, 122)" } + ], + "isMulticolor": false, + "isMulticolor2": false, + "grid": 0, + "tags": ["teams-private"], + "colorPermutations": { + "1081141221158162168120320620912282312341243190812456992125519219212552552551291162451452241651699010019902101": [ + { "f": 2 }, + { "f": 2 }, + { "f": 2 }, + { "f": 2 }, + { "f": 2 }, + { "f": 2 }, + { "f": 2 }, + { "f": 2 } + ] + } + }, + "attrs": [ + { "fill": "rgb(108, 114, 122)" }, + { "fill": "rgb(108, 114, 122)" }, + { "fill": "rgb(108, 114, 122)" }, + { "fill": "rgb(108, 114, 122)" }, + { "fill": "rgb(108, 114, 122)" }, + { "fill": "rgb(108, 114, 122)" }, + { "fill": "rgb(108, 114, 122)" }, + { "fill": "rgb(108, 114, 122)" } + ], + "properties": { "order": 252, "id": 198, "name": "teams-private", "prevSize": 32, "code": 59750 }, + "setIdx": 0, + "setId": 4, + "iconIdx": 7 + }, + { + "icon": { + "paths": [ + "M368 182.4c0-17.673-14.326-32-32-32s-32 14.327-32 32v144h-144c-17.673 0-32 14.326-32 32s14.327 32 32 32h144v288h-144c-17.673 0-32 14.326-32 32s14.327 32 32 32h144v144c0 17.674 14.327 32 32 32s32-14.326 32-32v-144h288v144c0 17.674 14.326 32 32 32s32-14.326 32-32v-144h144c17.674 0 32-14.326 32-32s-14.326-32-32-32h-144v-80h-64v80h-288v-288h80v-64h-80v-144z", + "M640.515 327.283c-15.328-3.59-31.306-3.338-46.512 0.733-41.763 11.187-70.803 49.030-70.803 92.269v35.539c0 36.003 29.187 65.194 65.194 65.194h210.413c36.006 0 65.194-29.19 65.194-65.194v-28.336c0-47.667-33.040-88.957-79.27-99.792-16.413-3.846-33.613-3.603-49.946 0.771l-25.827 6.918c-10.381 2.781-21.286 2.95-31.747 0.499l-36.694-8.602z", + "M782.637 217.037c0 49.174-39.862 89.037-89.037 89.037s-89.037-39.863-89.037-89.037c0-49.174 39.862-89.037 89.037-89.037s89.037 39.863 89.037 89.037z" + ], + "attrs": [{ "fill": "rgb(108, 114, 122)" }, { "fill": "rgb(108, 114, 122)" }, { "fill": "rgb(108, 114, 122)" }], + "isMulticolor": false, + "isMulticolor2": false, + "colorPermutations": { + "1081141221158162168120320620912282312341243190812456992125519219212552552551291162451452241651699010019902101": [ + { "f": 2 }, + { "f": 2 }, + { "f": 2 } + ] + }, + "tags": ["channel-auto-join"], + "grid": 0 + }, + "attrs": [{ "fill": "rgb(108, 114, 122)" }, { "fill": "rgb(108, 114, 122)" }, { "fill": "rgb(108, 114, 122)" }], + "properties": { "order": 2, "id": 0, "name": "channel-auto-join", "prevSize": 32, "code": 59746 }, + "setIdx": 0, + "setId": 4, + "iconIdx": 8 + }, + { + "icon": { + "paths": [ + "M236.709 162.578c11.779-5.037 25.426-2.564 34.688 6.286l150.709 144c6.32 6.037 9.894 14.396 9.894 23.136s-3.574 17.101-9.894 23.136l-150.709 144c-9.262 8.851-22.909 11.325-34.688 6.288s-19.419-16.614-19.419-29.424v-112h-73.29c-17.673 0-32-14.326-32-32 0-17.672 14.327-31.999 32-31.999h73.29v-112c0-12.81 7.64-24.386 19.419-29.423zM320 368.179v-0.179h0.189l-0.189 0.179zM320.189 304.001h-0.189v-0.179l0.189 0.179z", + "M492.899 303.258c8.762-9.388 21.245-15.258 35.101-15.258 26.509 0 48 21.49 48 48s-21.491 48-48 48c-16.582 0-31.203-8.41-39.824-21.197l-43.098 48.483c20.49 22.554 50.051 36.714 82.922 36.714 61.856 0 112-50.144 112-112s-50.144-112-112-112c-25.549 0-49.098 8.554-67.942 22.955l32.842 56.303z", + "M145.615 483.229l32.174 64.349c-0.861 3.040-1.318 6.23-1.318 9.501v44.688c0 17.674 14.327 32 32 32h79.53v64h-79.53c-53.019 0-96-42.979-96-96v-44.688c0-28.848 12.515-55.488 33.144-73.85z", + "M625.267 640h-0.797c0.259 0.598 0.525 1.194 0.797 1.786v-1.786z", + "M424.714 640h-0.797v1.786c0.272-0.592 0.538-1.187 0.797-1.786z", + "M477.901 494.515c-28.56-10.957-60.291-10.211-88.307 2.067-42.282 18.534-69.594 60.326-69.594 106.49v132.928c0 53.021 42.979 96 96 96h224c53.021 0 96-42.979 96-96v-125.062c0-51.162-31.536-97.034-79.306-115.354-30.352-11.642-64.067-10.851-93.84 2.198l-2.070 0.909c-21.523 9.434-45.901 10.006-67.843 1.59l-15.040-5.766zM415.286 555.2c12.595-5.52 26.858-5.856 39.699-0.931l15.040 5.77c37.664 14.445 79.504 13.462 116.451-2.73l2.070-0.909c14.349-6.288 30.602-6.669 45.229-1.059 23.024 8.829 38.224 30.938 38.224 55.597v125.062c0 17.674-14.326 32-32 32h-224c-17.674 0-32-14.326-32-32v-132.928c0-20.752 12.278-39.539 31.286-47.872z", + "M864 320c0-53.019-42.979-96-96-96s-96 42.981-96 96c0 53.021 42.979 96 96 96s96-42.979 96-96zM800 320c0 17.674-14.326 32-32 32s-32-14.326-32-32c0-17.673 14.326-32 32-32s32 14.327 32 32z", + "M840.714 697.766h-72.714v-64h72.714c17.674 0 32-14.326 32-32v-44.688c0-15.050-9.664-28.394-23.958-33.091-7.536-2.474-15.69-2.304-23.114 0.483l-4.554 1.709c-19.77 7.421-40.89 9.978-61.619 7.632-12.438-31.683-37.722-57.549-70.774-70.227-1.754-0.672-3.52-1.302-5.296-1.894 18.058-5.312 37.36-5.040 55.344 0.867l14.182 4.659c14.886 4.893 30.998 4.554 45.667-0.954l4.554-1.709c21.069-7.91 44.205-8.394 65.581-1.37 40.566 13.325 67.987 51.197 67.987 93.894v44.688c0 53.021-42.982 96-96 96z" + ], + "attrs": [ + { "fill": "rgb(108, 114, 122)" }, + { "fill": "rgb(108, 114, 122)" }, + { "fill": "rgb(108, 114, 122)" }, + { "fill": "rgb(108, 114, 122)" }, + { "fill": "rgb(108, 114, 122)" }, + { "fill": "rgb(108, 114, 122)" }, + { "fill": "rgb(108, 114, 122)" }, + { "fill": "rgb(108, 114, 122)" } + ], + "isMulticolor": false, + "isMulticolor2": false, + "colorPermutations": { + "1081141221158162168120320620912282312341243190812456992125519219212552552551291162451452241651699010019902101": [ + { "f": 2 }, + { "f": 2 }, + { "f": 2 }, + { "f": 2 }, + { "f": 2 }, + { "f": 2 }, + { "f": 2 }, + { "f": 2 } + ] + }, + "tags": ["channel-move-to-team"], + "grid": 0 + }, + "attrs": [ + { "fill": "rgb(108, 114, 122)" }, + { "fill": "rgb(108, 114, 122)" }, + { "fill": "rgb(108, 114, 122)" }, + { "fill": "rgb(108, 114, 122)" }, + { "fill": "rgb(108, 114, 122)" }, + { "fill": "rgb(108, 114, 122)" }, + { "fill": "rgb(108, 114, 122)" }, + { "fill": "rgb(108, 114, 122)" } + ], + "properties": { "order": 3, "id": 1, "name": "channel-move-to-team", "prevSize": 32, "code": 59747 }, + "setIdx": 0, + "setId": 4, + "iconIdx": 9 + }, + { + "icon": { + "paths": [ + "M512 128c-97.203 0-176 78.798-176 176v142.477h-16c-53.020 0-96 42.979-96 96v257.523c0 53.021 42.981 96 96 96h384c53.021 0 96-42.979 96-96v-257.523c0-53.021-42.979-96-96-96h-16v-142.477c0-97.202-78.797-176-176-176zM624 304v142.477h-224v-142.477c0-61.856 50.144-112 112-112s112 50.144 112 112z" + ], + "attrs": [{ "fill": "rgb(108, 114, 122)" }], + "isMulticolor": false, + "isMulticolor2": false, + "colorPermutations": { + "1081141221158162168120320620912282312341243190812456992125519219212552552551291162451452241651699010019902101": [ + { "f": 2 } + ] + }, + "tags": ["lock-filled"], + "grid": 0 + }, + "attrs": [{ "fill": "rgb(108, 114, 122)" }], + "properties": { "order": 4, "id": 2, "name": "lock-filled", "prevSize": 32, "code": 59748 }, + "setIdx": 0, + "setId": 4, + "iconIdx": 10 + }, + { + "icon": { + "paths": [ + "M336 304c0-97.202 78.797-176 176-176s176 78.798 176 176v142.477h16c53.021 0 96 42.979 96 96v257.523c0 53.021-42.979 96-96 96h-384c-53.019 0-96-42.979-96-96v-257.523c0-53.021 42.981-96 96-96h16v-142.477zM400 446.477h224v-142.477c0-61.856-50.144-112-112-112s-112 50.144-112 112v142.477zM320 510.477c-17.673 0-32 14.326-32 32v257.523c0 17.674 14.327 32 32 32h384c17.674 0 32-14.326 32-32v-257.523c0-17.674-14.326-32-32-32h-384z" + ], + "attrs": [{ "fill": "rgb(108, 114, 122)" }], + "isMulticolor": false, + "isMulticolor2": false, + "colorPermutations": { + "1081141221158162168120320620912282312341243190812456992125519219212552552551291162451452241651699010019902101": [ + { "f": 2 } + ] + }, + "tags": ["locker"], + "grid": 0 + }, + "attrs": [{ "fill": "rgb(108, 114, 122)" }], + "properties": { "order": 5, "id": 3, "name": "locker", "prevSize": 32, "code": 59749 }, + "setIdx": 0, + "setId": 4, + "iconIdx": 11 + }, + { + "icon": { + "paths": [ + "M281.184 336c17.673 0 32-14.326 32-32s-14.327-32-32-32c-17.673 0-32 14.327-32 32s14.327 32 32 32zM281.184 400c-53.020 0-96-42.979-96-96 0-53.019 42.98-96 96-96 53.018 0 96 42.981 96 96 0 53.021-42.982 96-96 96zM576 320c0-26.51-21.491-48-48-48s-48 21.49-48 48c0 26.509 21.491 48 48 48s48-21.491 48-48zM640 320c0 61.856-50.144 112-112 112s-112-50.144-112-112c0-61.856 50.144-112 112-112s112 50.144 112 112zM477.901 478.515c-28.56-10.957-60.291-10.211-88.307 2.067-42.282 18.534-69.594 60.326-69.594 106.49v132.928c0 53.021 42.979 96 96 96h224c53.021 0 96-42.979 96-96v-125.062c0-51.162-31.536-97.034-79.306-115.354-30.352-11.642-64.067-10.851-93.84 2.198l-2.070 0.909c-21.523 9.434-45.901 10.006-67.843 1.59l-15.040-5.766zM415.286 539.2c12.595-5.52 26.858-5.856 39.699-0.931l15.040 5.77c37.664 14.445 79.504 13.462 116.451-2.73l2.070-0.909c14.349-6.288 30.602-6.669 45.229-1.059 23.024 8.829 38.224 30.938 38.224 55.597v125.062c0 17.674-14.326 32-32 32h-224c-17.674 0-32-14.326-32-32v-132.928c0-20.752 12.278-39.539 31.286-47.872zM768 336c-17.674 0-32-14.326-32-32s14.326-32 32-32c17.674 0 32 14.327 32 32s-14.326 32-32 32zM768 400c53.021 0 96-42.979 96-96 0-53.019-42.979-96-96-96s-96 42.981-96 96c0 53.021 42.979 96 96 96zM840.714 681.766h-72.714v-64h72.714c17.674 0 32-14.326 32-32v-44.688c0-15.050-9.664-28.394-23.958-33.091-7.536-2.474-15.69-2.304-23.114 0.483l-4.554 1.709c-19.77 7.421-40.89 9.978-61.619 7.632-12.438-31.683-37.722-57.549-70.774-70.227-1.754-0.672-3.52-1.302-5.296-1.894 18.058-5.312 37.36-5.040 55.344 0.867l14.182 4.659c14.886 4.893 30.998 4.554 45.667-0.954l4.554-1.709c21.069-7.91 44.205-8.394 65.581-1.37 40.566 13.325 67.987 51.197 67.987 93.894v44.688c0 53.021-42.982 96-96 96zM625.267 624h-0.797c0.259 0.598 0.525 1.194 0.797 1.786v-1.786zM357.594 448.582c2.528-1.107 5.088-2.122 7.674-3.043-17.907-5.155-37.014-4.832-54.824 1.018l-14.183 4.659c-14.887 4.893-30.998 4.554-45.668-0.954l-4.554-1.709c-21.067-7.91-44.203-8.394-65.581-1.37-40.565 13.325-67.986 51.197-67.986 93.894v44.688c0 53.021 42.981 96 96 96h79.53v-64h-79.53c-17.673 0-32-14.326-32-32v-44.688c0-15.050 9.664-28.394 23.96-33.091 7.534-2.474 15.688-2.304 23.112 0.483l4.554 1.709c21.238 7.974 44.041 10.333 66.238 7.027 10.398-30.173 32.994-55.357 63.259-68.624zM423.917 624h0.797c-0.259 0.598-0.525 1.194-0.797 1.786v-1.786z" + ], + "attrs": [{ "fill": "rgb(108, 114, 122)" }], + "isMulticolor": false, + "isMulticolor2": false, + "colorPermutations": { + "1081141221158162168120320620912282312341243190812456992125519219212552552551291162451452241651699010019902101": [ + { "f": 2 } + ] + }, + "tags": ["teams"], + "grid": 0 + }, + "attrs": [{ "fill": "rgb(108, 114, 122)" }], + "properties": { "order": 7, "id": 5, "name": "teams", "prevSize": 32, "code": 59751 }, + "setIdx": 0, + "setId": 4, + "iconIdx": 12 + }, + { + "icon": { + "paths": [ + "M502.627 142.69c12.915-3.408 26.509-3.289 39.363 0.345l245.194 69.317c29.165 8.245 51.254 33.818 53.504 65.14 24.506 341.145-184.394 520.422-272.611 580.214-33.053 22.403-75.28 22.474-108.416 0.259-88.758-59.504-300.1-238.589-276.51-579.794 2.205-31.89 24.96-57.772 54.753-65.633l264.724-69.849zM524.579 204.621c-1.837-0.519-3.779-0.536-5.622-0.049l-264.725 69.849c-4.4 1.161-6.999 4.775-7.233 8.165-21.305 308.166 168.214 468.531 248.301 522.218 11.507 7.715 25.434 7.677 36.87-0.077 79.379-53.798 266.835-214.288 244.685-522.649-0.243-3.358-2.787-6.925-7.082-8.139l-245.194-69.317z" + ], + "attrs": [{ "fill": "rgb(108, 114, 122)" }], + "isMulticolor": false, + "isMulticolor2": false, + "colorPermutations": { + "1081141221158162168120320620912282312341243190812456992125519219212552552551291162451452241651699010019902101": [ + { "f": 2 } + ] + }, + "tags": ["set-as-moderator"], + "grid": 0 + }, + "attrs": [{ "fill": "rgb(108, 114, 122)" }], + "properties": { "order": 245, "id": 6, "name": "shield", "prevSize": 32, "code": 59661 }, + "setIdx": 0, + "setId": 4, + "iconIdx": 13 + }, + { + "icon": { + "paths": [ + "M864 512c0-86.89-31.482-166.429-83.664-227.826l-496.162 496.162c61.397 52.182 140.937 83.664 227.826 83.664 194.403 0 352-157.597 352-352zM239.349 734.65l495.3-495.3c-60.662-49.597-138.182-79.349-222.65-79.349-194.404 0-352 157.596-352 352 0 84.467 29.753 161.987 79.349 222.65zM928 512c0 229.75-186.25 416-416 416s-416-186.25-416-416c0-229.75 186.25-416 416-416s416 186.25 416 416z" + ], + "attrs": [{ "fill": "rgb(108, 114, 122)" }], + "isMulticolor": false, + "isMulticolor2": false, + "colorPermutations": { + "1081141221158162168120320620912282312341243190812456992125519219212552552551291162451452241651699010019902101": [ + { "f": 2 } + ] + }, + "tags": ["ignore"], + "grid": 0 + }, + "attrs": [{ "fill": "rgb(108, 114, 122)" }], + "properties": { "order": 246, "id": 7, "name": "ignore", "prevSize": 32, "code": 59740 }, + "setIdx": 0, + "setId": 4, + "iconIdx": 14 + }, + { + "icon": { + "paths": [ + "M819.2 204.8v614.4h-614.4v-614.4h614.4zM204.8 128c-42.415 0-76.8 34.385-76.8 76.8v614.4c0 42.416 34.385 76.8 76.8 76.8h614.4c42.416 0 76.8-34.384 76.8-76.8v-614.4c0-42.415-34.384-76.8-76.8-76.8h-614.4z" + ], + "attrs": [{ "fill": "rgb(203, 206, 209)" }], + "isMulticolor": false, + "isMulticolor2": false, + "colorPermutations": { + "1081141221158162168120320620912282312341243190812456992125519219212552552551291162451452241651699010019902101": [ + { "f": 8 } + ] + }, + "tags": ["checkbox-unchecked"], + "grid": 0 + }, + "attrs": [{ "fill": "rgb(203, 206, 209)" }], + "properties": { "order": 242, "id": 8, "name": "checkbox-unchecked", "prevSize": 32, "code": 59648 }, + "setIdx": 0, + "setId": 4, + "iconIdx": 15 + }, + { + "icon": { + "paths": [ + "M204.8 128h614.4c42.416 0 76.8 34.385 76.8 76.8v614.4c0 42.416-34.384 76.8-76.8 76.8h-614.4c-42.415 0-76.8-34.384-76.8-76.8v-614.4c0-42.415 34.385-76.8 76.8-76.8zM769.062 336.88c9.322-9.424 9.238-24.619-0.182-33.941-9.424-9.322-24.621-9.241-33.942 0.182l-339.085 342.745-106.782-108.051c-9.317-9.43-24.513-9.52-33.94-0.202s-9.518 24.512-0.201 33.939l123.842 125.318c4.509 4.56 10.653 7.126 17.066 7.13s12.557-2.563 17.069-7.12l356.157-360z" + ], + "attrs": [{ "fill": "rgb(29, 116, 245)" }], + "isMulticolor": false, + "isMulticolor2": false, + "colorPermutations": { + "1081141221158162168120320620912282312341243190812456992125519219212552552551291162451452241651699010019902101": [ + { "f": 5 } + ] + }, + "tags": ["checkbox-checked"], + "grid": 0 + }, + "attrs": [{ "fill": "rgb(29, 116, 245)" }], + "properties": { "order": 243, "id": 9, "name": "checkbox-checked", "prevSize": 32, "code": 59649 }, + "setIdx": 0, + "setId": 4, + "iconIdx": 16 + }, + { + "icon": { + "paths": [ + "M862.454 324.045c-35.2-60.31-82.944-108.057-143.248-143.253-60.314-35.198-126.16-52.792-197.581-52.792-71.414 0-137.28 17.6-197.581 52.792-60.31 35.194-108.053 82.943-143.253 143.253-35.194 60.307-52.792 126.166-52.792 197.571 0 85.77 25.024 162.899 75.086 231.405 50.056 68.509 114.721 115.917 193.989 142.224 9.229 1.712 16.058 0.509 20.499-3.584 4.442-4.096 6.662-9.226 6.662-15.37 0-1.024-0.090-10.246-0.259-27.674-0.176-17.43-0.259-32.637-0.259-45.61l-11.789 2.038c-7.517 1.379-16.998 1.962-28.445 1.795-11.443-0.16-23.322-1.357-35.619-3.587-12.304-2.211-23.747-7.334-34.342-15.366-10.588-8.029-18.104-18.538-22.547-31.514l-5.125-11.795c-3.416-7.853-8.795-16.573-16.142-26.134-7.348-9.571-14.778-16.058-22.294-19.475l-3.588-2.57c-2.391-1.706-4.61-3.766-6.662-6.154-2.050-2.39-3.585-4.781-4.61-7.174-1.027-2.397-0.176-4.365 2.562-5.907 2.738-1.539 7.685-2.288 14.864-2.288l10.247 1.53c6.834 1.37 15.287 5.462 25.371 12.298 10.078 6.835 18.363 15.715 24.856 26.646 7.863 14.013 17.335 24.688 28.445 32.038 11.101 7.347 22.294 11.014 33.568 11.014s21.011-0.854 29.216-2.557c8.192-1.709 15.882-4.275 23.062-7.69 3.075-22.902 11.446-40.499 25.11-52.797-19.475-2.045-36.982-5.13-52.534-9.226-15.542-4.106-31.603-10.765-48.173-20-16.579-9.222-30.331-20.672-41.262-34.333-10.932-13.67-19.905-31.613-26.904-53.818-7.003-22.214-10.505-47.837-10.505-76.88 0-41.35 13.5-76.541 40.493-105.584-12.645-31.088-11.451-65.939 3.585-104.55 9.908-3.079 24.606-0.768 44.078 6.916 19.478 7.689 33.738 14.275 42.797 19.736 9.059 5.46 16.317 10.087 21.786 13.837 31.782-8.88 64.582-13.322 98.406-13.322s66.63 4.442 98.416 13.322l19.475-12.295c13.318-8.204 29.046-15.722 47.142-22.556 18.112-6.83 31.958-8.712 41.53-5.633 15.37 38.612 16.739 73.46 4.093 104.548 26.992 29.046 40.496 64.243 40.496 105.587 0 29.043-3.514 54.746-10.506 77.13-7.002 22.387-16.051 40.314-27.152 53.818-11.114 13.501-24.957 24.864-41.526 34.083-16.573 9.226-32.637 15.888-48.179 19.99-15.552 4.102-33.059 7.187-52.534 9.238 17.763 15.37 26.646 39.632 26.646 72.774v108.134c0 6.141 2.134 11.27 6.41 15.37 4.272 4.090 11.018 5.296 20.243 3.581 79.28-26.304 143.946-73.712 194-142.224 50.048-68.502 75.082-145.632 75.082-231.405-0.019-71.395-17.626-137.248-52.803-197.555z" + ], + "attrs": [{ "fill": "rgb(108, 114, 122)" }], + "isMulticolor": false, + "isMulticolor2": false, + "colorPermutations": { + "1081141221158162168120320620912282312341243190812456992125519219212552552551291162451452241651699010019902101": [ + { "f": 2 } + ] + }, + "tags": ["github-monochromatic"], + "grid": 0 + }, + "attrs": [{ "fill": "rgb(108, 114, 122)" }], + "properties": { "order": 152, "id": 10, "name": "github-monochromatic", "prevSize": 32, "code": 59650 }, + "setIdx": 0, + "setId": 4, + "iconIdx": 17 + }, + { + "icon": { + "paths": [ + "M133.618 423.61h215.092l-92.537-284.607c-4.74-14.67-25.504-14.67-30.244 0l-92.311 284.607zM86.899 567.171l46.72-143.546h737.133l46.72 143.546c4.288 13.088-0.451 27.533-11.51 35.434l-403.776 293.408-403.776-293.408c-11.060-7.901-15.799-22.346-11.511-35.434zM655.661 423.61h215.091l-92.31-284.607c-4.739-14.67-25.504-14.67-30.243 0l-92.538 284.607z" + ], + "attrs": [{ "fill": "rgb(108, 114, 122)" }], + "isMulticolor": false, + "isMulticolor2": false, + "colorPermutations": { + "1081141221158162168120320620912282312341243190812456992125519219212552552551291162451452241651699010019902101": [ + { "f": 2 } + ] + }, + "tags": ["gitlab-monochromatic"], + "grid": 0 + }, + "attrs": [{ "fill": "rgb(108, 114, 122)" }], + "properties": { "order": 153, "id": 11, "name": "gitlab-monochromatic", "prevSize": 32, "code": 59651 }, + "setIdx": 0, + "setId": 4, + "iconIdx": 18 + }, + { + "icon": { + "paths": [ + "M658.794 338.154c-39.798-38.052-90.416-57.426-146.794-57.426-100.016 0-184.669 67.548-214.865 158.313l-0.002-0.003c-7.679 23.040-12.042 47.648-12.042 72.957s4.364 49.92 12.044 72.96l0 0.003c30.196 90.765 114.849 158.314 214.865 158.314 51.664 0 95.651-13.613 130.035-36.653v-0.016c40.669-27.229 67.725-67.898 76.627-115.898h-206.662v-148.538h361.658c4.538 25.136 6.982 51.315 6.982 78.547 0 116.944-41.891 215.389-114.502 282.24v0.013c-63.533 58.646-150.458 93.030-254.138 93.030-150.109 0-279.971-86.048-343.156-211.549l-0-0.003c-26.007-51.84-40.844-110.49-40.844-172.451 0-61.965 14.836-120.611 40.844-172.451h0.004c63.187-125.495 193.047-211.542 343.153-211.542 103.504 0 190.429 38.051 256.931 100.014l-110.138 110.139z" + ], + "width": 1056, + "attrs": [{ "fill": "rgb(108, 114, 122)" }], + "isMulticolor": false, + "isMulticolor2": false, + "colorPermutations": { + "1081141221158162168120320620912282312341243190812456992125519219212552552551291162451452241651699010019902101": [ + { "f": 2 } + ] + }, + "tags": ["google-monochromatic"], + "grid": 0 + }, + "attrs": [{ "fill": "rgb(108, 114, 122)" }], + "properties": { "order": 154, "id": 12, "name": "google-monochromatic", "prevSize": 32, "code": 59652 }, + "setIdx": 0, + "setId": 4, + "iconIdx": 19 + }, + { + "icon": { + "paths": [ + "M840.541 128c31.318 0 56.813 24.79 56.813 55.383v657.212c0 30.592-25.494 55.427-56.813 55.427h-654.546c-31.254 0-56.642-24.835-56.642-55.427v-657.212c0-30.593 25.387-55.383 56.642-55.383h654.546zM300.196 233.75c-36.588 0-66.093 29.59-66.093 66.050 0 36.482 29.505 66.072 66.093 66.072 36.437 0 66.005-29.59 66.005-66.072 0-36.46-29.568-66.050-66.005-66.050zM243.148 782.461h114.029v-366.515h-114.029v366.515zM537.814 415.923h-109.187v366.515h113.773v-181.274c0-47.83 9.046-94.147 68.333-94.147 58.454 0 59.181 54.678 59.181 97.174v178.246h113.901v-201.008c0-98.714-21.312-174.598-136.666-174.598-55.402 0-92.566 30.381-107.757 59.203h-1.578v-50.112z" + ], + "width": 1056, + "attrs": [{ "fill": "rgb(108, 114, 122)" }], + "isMulticolor": false, + "isMulticolor2": false, + "colorPermutations": { + "1081141221158162168120320620912282312341243190812456992125519219212552552551291162451452241651699010019902101": [ + { "f": 2 } + ] + }, + "tags": ["linkedin-monochromatic"], + "grid": 0 + }, + "attrs": [{ "fill": "rgb(108, 114, 122)" }], + "properties": { "order": 155, "id": 13, "name": "linkedin-monochromatic", "prevSize": 32, "code": 59653 }, + "setIdx": 0, + "setId": 4, + "iconIdx": 20 + }, + { + "icon": { + "paths": [ + "M86.686 85.336l730.792 774.088c0 0 24.899 17.558 43.936-2.928 19.040-20.486 4.394-40.973 4.394-40.973l-779.122-730.187zM318.080 158.503l556.516 599.955c0 0 24.896 17.558 43.936-2.928 19.037-20.486 4.394-40.973 4.394-40.973l-604.845-556.054zM712.035 915.030l-556.517-599.955 604.843 556.054c0 0 14.646 20.486-4.39 40.973-19.040 20.486-43.936 2.928-43.936 2.928zM513.693 221.419l388.803 419.15c0 0 17.395 12.269 30.694-2.042 13.302-14.314 3.069-28.627 3.069-28.627l-422.566-388.482zM597.878 915.677l-388.805-419.152 422.568 388.48c0 0 10.234 14.314-3.069 28.627-13.302 14.31-30.694 2.045-30.694 2.045zM713.498 312.143l176.221 190.551c0 0 8.605 5.747 15.184-0.96 6.579-6.704 1.517-13.411 1.517-13.411l-192.922-176.18zM482.582 880.23l-176.219-190.55 192.923 176.179c0 0 5.059 6.707-1.52 13.414-6.579 6.704-15.184 0.957-15.184 0.957z" + ], + "width": 1056, + "attrs": [{ "fill": "rgb(108, 114, 122)" }], + "isMulticolor": false, + "isMulticolor2": false, + "colorPermutations": { + "1081141221158162168120320620912282312341243190812456992125519219212552552551291162451452241651699010019902101": [ + { "f": 2 } + ] + }, + "tags": ["meteor-monochromatic"], + "grid": 0 + }, + "attrs": [{ "fill": "rgb(108, 114, 122)" }], + "properties": { "order": 156, "id": 14, "name": "meteor-monochromatic", "prevSize": 32, "code": 59654 }, + "setIdx": 0, + "setId": 4, + "iconIdx": 21 + }, + { + "icon": { + "paths": [ + "M378.861 853.331c317.456 0 491.091-262.662 491.091-490.442 0-7.462 0-14.89-0.506-22.282 33.779-24.401 62.938-54.614 86.112-89.224-31.501 13.94-64.918 23.082-99.136 27.12 36.032-21.542 62.998-55.424 75.882-95.34-33.878 20.078-70.944 34.228-109.597 41.839-53.501-56.814-138.515-70.72-207.37-33.919-68.851 36.801-104.426 115.155-86.768 191.127-138.774-6.947-268.074-72.409-355.715-180.093-45.811 78.76-22.412 179.517 53.436 230.1-27.467-0.813-54.335-8.214-78.337-21.574 0 0.704 0 1.443 0 2.182 0.022 82.051 57.937 152.723 138.47 168.97-25.41 6.922-52.071 7.933-77.933 2.957 22.611 70.218 87.409 118.32 161.25 119.706-61.116 47.968-136.616 74.010-214.35 73.933-13.732-0.026-27.452-0.858-41.087-2.486 78.931 50.586 170.772 77.418 264.557 77.293z" + ], + "width": 1056, + "attrs": [{ "fill": "rgb(108, 114, 122)" }], + "isMulticolor": false, + "isMulticolor2": false, + "colorPermutations": { + "1081141221158162168120320620912282312341243190812456992125519219212552552551291162451452241651699010019902101": [ + { "f": 2 } + ] + }, + "tags": ["twitter-monochromatic"], + "grid": 0 + }, + "attrs": [{ "fill": "rgb(108, 114, 122)" }], + "properties": { "order": 157, "id": 15, "name": "twitter-monochromatic", "prevSize": 32, "code": 59655 }, + "setIdx": 0, + "setId": 4, + "iconIdx": 22 + }, + { + "icon": { + "paths": [ + "M512 928c-14.218 0-28.275-0.714-42.144-2.112-16.694-1.68-30.557-12.528-36.688-27.395l-40.538-98.304-98.162 40.838c-14.837 6.173-32.3 4.048-45.292-6.554-21.838-17.818-41.831-37.811-59.65-59.648-10.601-12.992-12.726-30.454-6.553-45.293l40.839-98.16-98.307-40.541c-14.864-6.131-25.714-19.994-27.395-36.688-1.396-13.869-2.111-27.926-2.111-42.144 0-14.214 0.714-28.275 2.11-42.141 1.681-16.694 12.531-30.557 27.395-36.688l98.308-40.541-40.84-98.163c-6.173-14.837-4.047-32.3 6.553-45.292 17.818-21.838 37.81-41.83 59.648-59.648 12.992-10.6 30.455-12.726 45.292-6.553l98.165 40.84 40.541-98.309c6.128-14.865 19.994-25.714 36.688-27.395 13.866-1.396 27.926-2.11 42.141-2.11s28.275 0.714 42.141 2.11c16.694 1.681 30.56 12.531 36.688 27.395l40.541 98.309 98.163-40.84c14.838-6.173 32.301-4.047 45.293 6.553 21.837 17.818 41.83 37.81 59.648 59.648 10.602 12.992 12.726 30.455 6.554 45.292l-40.842 98.163 98.31 40.541c14.864 6.131 25.712 19.994 27.392 36.688 1.398 13.866 2.112 27.926 2.112 42.141 0 14.218-0.714 28.275-2.112 42.144-1.68 16.694-12.528 30.557-27.395 36.688l-98.307 40.541 40.842 98.16c6.173 14.838 4.045 32.301-6.554 45.293-17.821 21.837-37.811 41.83-59.651 59.648-12.992 10.602-30.454 12.726-45.29 6.554l-98.163-40.838-40.538 98.304c-6.131 14.867-19.994 25.715-36.688 27.395-13.869 1.398-27.93 2.112-42.144 2.112zM444.451 757.984l43.386 105.2c7.981 0.541 16.038 0.816 24.163 0.816s16.182-0.275 24.163-0.816l43.382-105.2c9.456-22.925 35.731-33.808 58.627-24.285l105.056 43.709c12.157-10.602 23.578-22.022 34.179-34.179l-43.709-105.056c-9.526-22.893 1.36-49.171 24.282-58.624l105.203-43.386c0.541-7.978 0.816-16.038 0.816-24.163s-0.275-16.182-0.816-24.16l-105.203-43.386c-22.922-9.453-33.808-35.731-24.282-58.624l43.709-105.060c-10.602-12.156-22.022-23.577-34.176-34.177l-105.059 43.708c-22.896 9.525-49.171-1.359-58.627-24.283l-43.382-105.204c-7.981-0.54-16.038-0.815-24.163-0.815s-16.182 0.275-24.163 0.815l-43.386 105.204c-9.453 22.924-35.728 33.808-58.624 24.283l-105.058-43.708c-12.156 10.6-23.577 22.021-34.177 34.177l43.708 105.059c9.525 22.893-1.359 49.171-24.284 58.624l-105.203 43.386c-0.54 7.978-0.815 16.035-0.815 24.16 0 8.128 0.275 16.186 0.815 24.163l105.203 43.386c22.924 9.453 33.809 35.731 24.284 58.624l-43.708 105.056c10.601 12.157 22.022 23.578 34.178 34.179l105.056-43.709c22.896-9.523 49.171 1.36 58.624 24.285zM416 512c0-53.021 42.979-96 96-96s96 42.979 96 96c0 53.021-42.979 96-96 96s-96-42.979-96-96zM512 352c-88.365 0-160 71.635-160 160s71.635 160 160 160c88.365 0 160-71.635 160-160s-71.635-160-160-160z" + ], + "attrs": [{ "fill": "rgb(108, 114, 122)" }], + "isMulticolor": false, + "isMulticolor2": false, + "colorPermutations": { + "1081141221158162168120320620912282312341243190812456992125519219212552552551291162451452241651699010019902101": [ + { "f": 2 } + ] + }, + "tags": ["administration"], + "grid": 0 + }, + "attrs": [{ "fill": "rgb(108, 114, 122)" }], + "properties": { "order": 159, "id": 16, "name": "administration", "prevSize": 32, "code": 59657 }, + "setIdx": 0, + "setId": 4, + "iconIdx": 23 + }, + { + "icon": { + "paths": [ + "M878.739 567.622c-41.853-41.136-161.235-29.824-220.925-22.282-59.005-35.997-98.458-85.706-126.243-158.73 13.379-55.194 34.646-139.185 18.525-191.98-14.41-89.82-129.674-80.907-146.141-20.227-15.094 55.195-1.373 131.988 24.013 230.034-34.304 81.936-85.421 191.984-121.441 255.062-68.611 35.312-161.235 89.821-174.957 158.384-11.321 54.166 89.194 189.238 261.063-106.96 76.845-25.37 160.547-56.566 234.65-68.909 64.835 34.97 140.65 58.282 191.421 58.282 87.478 0 96.054-96.678 60.035-132.675zM199.152 834.342c17.496-46.97 84.048-101.133 104.288-119.99-65.18 103.875-104.288 122.39-104.288 119.99zM479.082 180.918c25.386 0 22.986 110.047 6.176 139.873-15.094-47.653-14.752-139.873-6.176-139.873zM395.379 649.216c33.274-57.936 61.747-126.845 84.733-187.526 28.474 51.766 64.838 93.251 103.258 121.706-71.354 14.739-133.446 44.909-187.99 65.821zM846.835 632.074c0 0-17.152 20.57-127.958-26.739 120.413-8.912 140.307 18.512 127.958 26.739z" + ], + "width": 1056, + "attrs": [{ "fill": "rgb(108, 114, 122)" }], + "isMulticolor": false, + "isMulticolor2": false, + "colorPermutations": { + "1081141221158162168120320620912282312341243190812456992125519219212552552551291162451452241651699010019902101": [ + { "f": 2 } + ] + }, + "tags": ["adobe-reader-monochromatic"], + "grid": 0 + }, + "attrs": [{ "fill": "rgb(108, 114, 122)" }], + "properties": { "order": 161, "id": 17, "name": "adobe-reader-monochromatic", "prevSize": 32, "code": 59658 }, + "setIdx": 0, + "setId": 4, + "iconIdx": 24 + }, + { + "icon": { + "paths": [ + "M448 188.865c0 33.615 27.251 60.865 60.864 60.865 33.616 0 60.867-27.25 60.867-60.865s-27.251-60.865-60.867-60.865c-33.613 0-60.864 27.25-60.864 60.865zM384 188.865c0 59.026 40.957 108.485 96 121.512v77.745c-44.314 11.69-78.986 47.13-89.578 91.878h-80.045c-13.027-55.043-62.486-96-121.512-96-68.961 0-124.865 55.904-124.865 124.864 0 68.963 55.904 124.867 124.865 124.867 56.762 0 104.678-37.875 119.854-89.731h83.361c12.227 41.773 45.696 74.47 87.92 85.61v77.744c-55.043 13.027-96 62.486-96 121.51 0 68.963 55.904 124.867 124.864 124.867 68.963 0 124.867-55.904 124.867-124.867 0-56.762-37.875-104.675-89.731-119.853v-79.437c42.163-11.171 75.578-43.846 87.789-85.574h77.222c15.178 51.856 63.091 89.731 119.853 89.731 68.963 0 124.867-55.904 124.867-124.867 0-68.96-55.904-124.864-124.867-124.864-59.024 0-108.483 40.957-121.51 96h-73.907c-10.579-44.707-45.194-80.122-89.446-91.843v-79.438c51.856-15.176 89.731-63.092 89.731-119.854 0-68.961-55.904-124.865-124.867-124.865-68.96 0-124.864 55.904-124.864 124.865zM828.864 569.731c-33.613 0-60.864-27.251-60.864-60.867 0-33.613 27.251-60.864 60.864-60.864 33.616 0 60.867 27.251 60.867 60.864 0 33.616-27.251 60.867-60.867 60.867zM188.865 569.731c-33.615 0-60.865-27.251-60.865-60.867 0-33.613 27.25-60.864 60.865-60.864s60.865 27.251 60.865 60.864c0 33.616-27.25 60.867-60.865 60.867zM451.069 508.864c0 33.616 27.251 60.867 60.867 60.867 33.613 0 60.864-27.251 60.864-60.867 0-33.613-27.251-60.864-60.864-60.864-33.616 0-60.867 27.251-60.867 60.864zM508.864 889.731c-33.613 0-60.864-27.251-60.864-60.867 0-33.613 27.251-60.864 60.864-60.864 33.616 0 60.867 27.251 60.867 60.864 0 33.616-27.251 60.867-60.867 60.867z" + ], + "attrs": [{ "fill": "rgb(108, 114, 122)" }], + "isMulticolor": false, + "isMulticolor2": false, + "colorPermutations": { + "1081141221158162168120320620912282312341243190812456992125519219212552552551291162451452241651699010019902101": [ + { "f": 2 } + ] + }, + "tags": ["all-contacts-in-channels"], + "grid": 0 + }, + "attrs": [{ "fill": "rgb(108, 114, 122)" }], + "properties": { "order": 162, "id": 18, "name": "all-contacts-in-channels", "prevSize": 32, "code": 59659 }, + "setIdx": 0, + "setId": 4, + "iconIdx": 25 + }, + { + "icon": { + "paths": [ + "M861.437 160c17.67 0 32 14.327 32 32s-14.33 32-32 32h-384c-17.674 0-32-14.327-32-32s14.326-32 32-32h384zM334.717 442.397c-24.962 0-45.197-20.237-45.197-45.2 0-24.96 20.236-45.197 45.197-45.197 24.963 0 45.2 20.237 45.2 45.197 0 24.963-20.237 45.2-45.2 45.2zM334.717 506.397c-60.308 0-109.197-48.89-109.197-109.2 0-60.307 48.89-109.197 109.197-109.197 60.31 0 109.2 48.89 109.2 109.197 0 60.31-48.89 109.2-109.2 109.2zM456.278 535.504c-18.288-4.899-37.504-5.2-55.939-0.88l-45.005 10.547c-13.194 3.091-26.947 2.877-40.036-0.63l-31.676-8.483c-19.669-5.27-40.384-5.562-60.154-0.928-55.68 13.050-95.468 62.781-95.468 120.179v34.752c0 42.906 34.783 77.686 77.689 77.686h258.057c42.906 0 77.69-34.781 77.69-77.686v-43.587c0-52-34.928-97.514-85.158-110.97zM414.944 596.934c8.166-1.914 16.675-1.779 24.774 0.39 22.246 5.958 37.718 26.118 37.718 49.149v43.587c0 7.558-6.131 13.686-13.69 13.686h-258.057c-7.56 0-13.689-6.128-13.689-13.686v-34.752c0-27.469 19.123-51.552 46.072-57.869 9.556-2.24 19.564-2.086 28.99 0.438l31.676 8.483c23.277 6.237 47.738 6.621 71.2 1.12l45.005-10.547zM893.437 512c0-17.674-14.33-32-32-32h-224c-17.674 0-32 14.326-32 32s14.326 32 32 32h224c17.67 0 32-14.326 32-32zM861.437 640c17.67 0 32 14.326 32 32s-14.33 32-32 32h-192c-17.674 0-32-14.326-32-32s14.326-32 32-32h192zM893.437 352c0-17.674-14.33-32-32-32h-288c-17.674 0-32 14.326-32 32s14.326 32 32 32h288c17.67 0 32-14.326 32-32zM861.437 800c17.67 0 32 14.326 32 32s-14.33 32-32 32h-256c-17.674 0-32-14.326-32-32s14.326-32 32-32h256z" + ], + "attrs": [{ "fill": "rgb(108, 114, 122)" }], + "isMulticolor": false, + "isMulticolor2": false, + "colorPermutations": { + "1081141221158162168120320620912282312341243190812456992125519219212552552551291162451452241651699010019902101": [ + { "f": 2 } + ] + }, + "tags": ["all-contacts-in-queue"], + "grid": 0 + }, + "attrs": [{ "fill": "rgb(108, 114, 122)" }], + "properties": { "order": 163, "id": 19, "name": "all-contacts-in-queue", "prevSize": 32, "code": 59660 }, + "setIdx": 0, + "setId": 4, + "iconIdx": 26 + }, + { + "icon": { + "paths": [ + "M523.571 295.385c33.133 0 74.669-22.133 99.402-51.645 22.4-26.745 38.733-64.095 38.733-101.445 0-5.072-0.467-10.144-1.402-14.294-36.864 1.383-81.2 24.439-107.798 55.334-21.002 23.517-40.134 60.406-40.134 98.218 0 5.533 0.934 11.067 1.402 12.911 2.333 0.461 6.067 0.922 9.798 0.922zM406.906 853.334c45.267 0 65.334-29.974 121.798-29.974 57.402 0 70 29.050 120.4 29.050 49.469 0 82.602-45.187 113.869-89.456 34.998-50.72 49.466-100.522 50.4-102.829-3.267-0.922-98-39.194-98-146.634 0-93.146 74.666-135.107 78.867-138.333-49.469-70.090-124.602-71.935-145.136-71.935-55.533 0-100.8 33.199-129.264 33.199-30.8 0-71.402-31.354-119.469-31.354-91.466 0-184.333 74.701-184.333 215.802 0 87.61 34.533 180.294 77 240.24 36.402 50.723 68.133 92.224 113.867 92.224z" + ], + "width": 1056, + "attrs": [{ "fill": "rgb(108, 114, 122)" }], + "isMulticolor": false, + "isMulticolor2": false, + "colorPermutations": { + "1081141221158162168120320620912282312341243190812456992125519219212552552551291162451452241651699010019902101": [ + { "f": 2 } + ] + }, + "tags": ["apple-monochromatic"], + "grid": 0 + }, + "attrs": [{ "fill": "rgb(108, 114, 122)" }], + "properties": { "order": 236, "id": 20, "name": "apple-monochromatic", "prevSize": 32, "code": 59662 }, + "setIdx": 0, + "setId": 4, + "iconIdx": 27 + }, + { + "icon": { + "paths": [ + "M498.694 141.561l-298.666 136.533c-11.39 5.207-18.696 16.58-18.696 29.103v386.844c0 11.818 6.513 22.675 16.941 28.237l298.667 159.286c9.411 5.021 20.707 5.021 30.118 0l298.666-159.286c10.429-5.562 16.941-16.419 16.941-28.237v-386.844c0-12.524-7.306-23.896-18.694-29.103l-298.666-136.533c-8.451-3.862-18.16-3.862-26.611 0zM245.333 357.011l234.667 107.277v335.709l-234.667-125.155v-317.83zM544 799.997l234.666-125.155v-317.83l-234.666 107.277v335.709zM512 408.544l-221.7-101.347 221.7-101.348 221.699 101.348-221.699 101.347z" + ], + "attrs": [{ "fill": "rgb(108, 114, 122)" }], + "isMulticolor": false, + "isMulticolor2": false, + "colorPermutations": { + "1081141221158162168120320620912282312341243190812456992125519219212552552551291162451452241651699010019902101": [ + { "f": 2 } + ] + }, + "tags": ["apps"], + "grid": 0 + }, + "attrs": [{ "fill": "rgb(108, 114, 122)" }], + "properties": { "order": 166, "id": 21, "name": "apps", "prevSize": 32, "code": 59663 }, + "setIdx": 0, + "setId": 4, + "iconIdx": 28 + }, + { + "icon": { + "paths": [ + "M374.627 297.372c-12.496-12.497-32.758-12.497-45.254 0l-192 192c-12.497 12.496-12.497 32.758 0 45.254l192 192c12.496 12.496 32.758 12.496 45.254 0s12.496-32.758 0-45.254l-137.372-137.373h578.745v128c0 17.674 14.326 32 32 32s32-14.326 32-32v-160c0-17.674-14.326-32-32-32h-610.745l137.372-137.373c12.496-12.496 12.496-32.758 0-45.255z" + ], + "attrs": [{ "fill": "rgb(108, 114, 122)" }], + "isMulticolor": false, + "isMulticolor2": false, + "colorPermutations": { + "1081141221158162168120320620912282312341243190812456992125519219212552552551291162451452241651699010019902101": [ + { "f": 2 } + ] + }, + "tags": ["arrow-back"], + "grid": 0 + }, + "attrs": [{ "fill": "rgb(108, 114, 122)" }], + "properties": { "order": 167, "id": 22, "name": "arrow-back", "prevSize": 32, "code": 59664 }, + "setIdx": 0, + "setId": 4, + "iconIdx": 29 + }, + { + "icon": { + "paths": [ + "M551.392 242.502c0.189-17.672 14.669-31.845 32.339-31.656 17.674 0.189 31.846 14.668 31.658 32.34l-1.318 123.489 193.44-193.439c12.496-12.497 32.755-12.497 45.254 0 12.496 12.497 12.496 32.758 0 45.255l-193.44 193.439 123.488-1.318c17.674-0.189 32.154 13.984 32.339 31.654 0.189 17.674-13.984 32.154-31.654 32.342l-201.92 2.154c-8.605 0.093-16.886-3.283-22.97-9.37-6.086-6.083-9.462-14.365-9.373-22.97l2.157-201.92zM475.981 782.147c-0.189 17.674-14.669 31.846-32.339 31.658-17.674-0.189-31.846-14.669-31.658-32.342l1.318-123.488-193.438 193.44c-12.497 12.496-32.758 12.496-45.255 0s-12.497-32.758 0-45.254l193.438-193.44-123.488 1.318c-17.672 0.189-32.151-13.984-32.34-31.654-0.189-17.674 13.984-32.154 31.656-32.342l201.922-2.154c8.605-0.093 16.883 3.283 22.966 9.37 6.086 6.083 9.462 14.365 9.373 22.97l-2.157 201.92z" + ], + "width": 1056, + "attrs": [{ "fill": "rgb(108, 114, 122)" }], + "isMulticolor": false, + "isMulticolor2": false, + "colorPermutations": { + "1081141221158162168120320620912282312341243190812456992125519219212552552551291162451452241651699010019902101": [ + { "f": 2 } + ] + }, + "tags": ["arrow-collapse"], + "grid": 0 + }, + "attrs": [{ "fill": "rgb(108, 114, 122)" }], + "properties": { "order": 168, "id": 23, "name": "arrow-collapse", "prevSize": 32, "code": 59665 }, + "setIdx": 0, + "setId": 4, + "iconIdx": 30 + }, + { + "icon": { + "paths": [ + "M576 672c-17.674 0-32 14.326-32 32s14.326 32 32 32h224c17.674 0 32-14.326 32-32v-208c0-17.674-14.326-32-32-32s-32 14.326-32 32v130.746l-233.373-233.373c-12.496-12.496-32.758-12.496-45.254 0l-73.373 73.373-169.372-169.373c-12.497-12.497-32.758-12.497-45.255 0s-12.497 32.759 0 45.255l192 192c12.496 12.496 32.758 12.496 45.254 0l73.373-73.373 210.746 210.746h-146.746z" + ], + "attrs": [{ "fill": "rgb(108, 114, 122)" }], + "isMulticolor": false, + "isMulticolor2": false, + "colorPermutations": { + "1081141221158162168120320620912282312341243190812456992125519219212552552551291162451452241651699010019902101": [ + { "f": 2 } + ] + }, + "tags": ["arrow-decrease"], + "grid": 0 + }, + "attrs": [{ "fill": "rgb(108, 114, 122)" }], + "properties": { "order": 169, "id": 24, "name": "arrow-decrease", "prevSize": 32, "code": 59666 }, + "setIdx": 0, + "setId": 4, + "iconIdx": 31 + }, + { + "icon": { + "paths": [ + "M329.373 550.627c-12.497-12.496-12.497-32.758 0-45.254s32.758-12.496 45.254 0l105.373 105.373v-418.746c0-17.673 14.326-32 32-32s32 14.327 32 32v418.746l105.373-105.373c12.496-12.496 32.758-12.496 45.254 0s12.496 32.758 0 45.254l-160 160c-12.496 12.496-32.758 12.496-45.254 0l-160-160zM112 864c0 17.674 14.327 32 32 32h768c17.674 0 32-14.326 32-32v-512c0-17.674-14.326-32-32-32h-96c-17.674 0-32 14.326-32 32s14.326 32 32 32h64v448h-704v-448h64c17.673 0 32-14.326 32-32s-14.327-32-32-32h-96c-17.673 0-32 14.326-32 32v512z" + ], + "attrs": [{ "fill": "rgb(108, 114, 122)" }], + "isMulticolor": false, + "isMulticolor2": false, + "colorPermutations": { + "1081141221158162168120320620912282312341243190812456992125519219212552552551291162451452241651699010019902101": [ + { "f": 2 } + ] + }, + "tags": ["arrow-down-box"], + "grid": 0 + }, + "attrs": [{ "fill": "rgb(108, 114, 122)" }], + "properties": { "order": 170, "id": 25, "name": "arrow-down-box", "prevSize": 32, "code": 59667 }, + "setIdx": 0, + "setId": 4, + "iconIdx": 32 + }, + { + "icon": { + "paths": [ + "M865.139 512c0-194.404-157.802-352-352.464-352-194.66 0-352.464 157.596-352.464 352s157.804 352 352.464 352c194.662 0 352.464-157.597 352.464-352zM929.226 512c0 229.75-186.496 416-416.55 416-230.053 0-416.548-186.25-416.548-416s186.495-416 416.548-416c230.054 0 416.55 186.25 416.55 416zM695.178 571.37l-160.182 155.715c-12.438 12.093-32.259 12.093-44.701 0l-160.179-155.715c-12.682-12.33-12.955-32.589-0.611-45.251 12.342-12.666 32.63-12.938 45.309-0.611l105.789 102.842 0.003-276.349c0-17.674 14.346-32 32.042-32s32.042 14.326 32.042 32v276.349l105.789-102.842c12.682-12.326 32.966-12.054 45.309 0.611 12.346 12.662 12.070 32.922-0.608 45.251z" + ], + "width": 1056, + "attrs": [{ "fill": "rgb(108, 114, 122)" }], + "isMulticolor": false, + "isMulticolor2": false, + "colorPermutations": { + "1081141221158162168120320620912282312341243190812456992125519219212552552551291162451452241651699010019902101": [ + { "f": 2 } + ] + }, + "tags": ["arrow-down-circle"], + "grid": 0 + }, + "attrs": [{ "fill": "rgb(108, 114, 122)" }], + "properties": { "order": 171, "id": 26, "name": "arrow-down-circle", "prevSize": 32, "code": 59668 }, + "setIdx": 0, + "setId": 4, + "iconIdx": 33 + }, + { + "icon": { + "paths": [ + "M726.88 526.064c12.355 12.637 12.128 32.896-0.509 45.254l-191.968 187.715c-12.438 12.163-32.31 12.163-44.746 0l-191.97-187.715c-12.636-12.358-12.863-32.618-0.507-45.254 12.356-12.634 32.615-12.861 45.252-0.506l137.597 134.55v-372.109c0-17.673 14.33-32 32-32 17.674 0 32 14.327 32 32v372.109l137.6-134.55c12.634-12.355 32.896-12.128 45.251 0.506z" + ], + "attrs": [{ "fill": "rgb(108, 114, 122)" }], + "isMulticolor": false, + "isMulticolor2": false, + "colorPermutations": { + "1081141221158162168120320620912282312341243190812456992125519219212552552551291162451452241651699010019902101": [ + { "f": 2 } + ] + }, + "tags": ["arrow-down"], + "grid": 0 + }, + "attrs": [{ "fill": "rgb(108, 114, 122)" }], + "properties": { "order": 172, "id": 27, "name": "arrow-down", "prevSize": 32, "code": 59669 }, + "setIdx": 0, + "setId": 4, + "iconIdx": 34 + }, + { + "icon": { + "paths": [ + "M859.978 398.15c-0.189 17.67-14.666 31.843-32.339 31.654-17.67-0.189-31.846-14.666-31.658-32.339l1.318-123.488-193.437 193.437c-12.496 12.499-32.758 12.499-45.254 0-12.496-12.496-12.496-32.755 0-45.254l193.437-193.437-123.488 1.318c-17.67 0.189-32.15-13.984-32.339-31.656s13.984-32.151 31.658-32.34l201.92-2.156c8.605-0.092 16.883 3.286 22.97 9.371 6.083 6.085 9.462 14.364 9.37 22.969l-2.157 201.922zM167.394 626.522c0.189-17.674 14.668-31.846 32.34-31.658s31.845 14.669 31.657 32.339l-1.319 123.488 193.438-193.437c12.496-12.499 32.758-12.499 45.254 0 12.496 12.496 12.496 32.758 0 45.254l-193.438 193.437 123.489-1.318c17.67-0.189 32.15 13.984 32.339 31.658 0.189 17.67-13.984 32.15-31.658 32.339l-201.92 2.157c-8.605 0.093-16.884-3.286-22.969-9.37-6.085-6.086-9.463-14.365-9.371-22.97l2.156-201.92z" + ], + "width": 1056, + "attrs": [{ "fill": "rgb(108, 114, 122)" }], + "isMulticolor": false, + "isMulticolor2": false, + "colorPermutations": { + "1081141221158162168120320620912282312341243190812456992125519219212552552551291162451452241651699010019902101": [ + { "f": 2 } + ] + }, + "tags": ["arrow-expand"], + "grid": 0 + }, + "attrs": [{ "fill": "rgb(108, 114, 122)" }], + "properties": { "order": 173, "id": 28, "name": "arrow-expand", "prevSize": 32, "code": 59670 }, + "setIdx": 0, + "setId": 4, + "iconIdx": 35 + }, + { + "icon": { + "paths": [ + "M576 352c-17.674 0-32-14.326-32-32s14.326-32 32-32h224c17.674 0 32 14.327 32 32v208c0 17.674-14.326 32-32 32s-32-14.326-32-32v-130.746l-233.373 233.373c-12.496 12.496-32.758 12.496-45.254 0l-73.373-73.373-169.372 169.373c-12.497 12.496-32.758 12.496-45.255 0s-12.497-32.758 0-45.254l192-192c12.496-12.496 32.758-12.496 45.254 0l73.373 73.373 210.746-210.746h-146.746z" + ], + "attrs": [{ "fill": "rgb(108, 114, 122)" }], + "isMulticolor": false, + "isMulticolor2": false, + "colorPermutations": { + "1081141221158162168120320620912282312341243190812456992125519219212552552551291162451452241651699010019902101": [ + { "f": 2 } + ] + }, + "tags": ["arrow-increase"], + "grid": 0 + }, + "attrs": [{ "fill": "rgb(108, 114, 122)" }], + "properties": { "order": 174, "id": 29, "name": "arrow-increase", "prevSize": 32, "code": 59671 }, + "setIdx": 0, + "setId": 4, + "iconIdx": 36 + }, + { + "icon": { + "paths": [ + "M297.766 105.372c12.513-12.497 32.801-12.497 45.316 0 12.512 12.497 12.512 32.758 0 45.255l-105.513 105.372h611.551c17.699 0 32.045 14.327 32.045 32v112c0 17.674-14.346 32-32.045 32-17.696 0-32.042-14.326-32.042-32v-80h-579.51l105.513 105.373c12.512 12.496 12.512 32.758 0 45.254-12.515 12.496-32.803 12.496-45.316 0l-160.212-160c-12.513-12.497-12.513-32.758 0-45.255l160.212-160zM711.568 918.627c-12.515 12.496-32.803 12.496-45.315 0-12.515-12.496-12.515-32.758 0-45.254l105.51-105.373h-611.552c-17.696 0-32.042-14.326-32.042-32v-112c0-17.674 14.346-32 32.042-32s32.042 14.326 32.042 32v80h579.509l-105.51-105.373c-12.515-12.496-12.515-32.758 0-45.254 12.512-12.496 32.8-12.496 45.315 0l160.211 160c12.512 12.496 12.512 32.758 0 45.254l-160.211 160z" + ], + "width": 1056, + "attrs": [{ "fill": "rgb(108, 114, 122)" }], + "isMulticolor": false, + "isMulticolor2": false, + "colorPermutations": { + "1081141221158162168120320620912282312341243190812456992125519219212552552551291162451452241651699010019902101": [ + { "f": 2 } + ] + }, + "tags": ["arrow-looping"], + "grid": 0 + }, + "attrs": [{ "fill": "rgb(108, 114, 122)" }], + "properties": { "order": 175, "id": 30, "name": "arrow-looping", "prevSize": 32, "code": 59672 }, + "setIdx": 0, + "setId": 4, + "iconIdx": 37 + }, + { + "icon": { + "paths": [ + "M374.627 769.296c-12.496 12.496-32.758 12.496-45.254 0l-192-192c-12.497-12.496-12.497-32.758 0-45.254l192-192c12.496-12.499 32.758-12.499 45.254 0 12.496 12.496 12.496 32.758 0 45.254l-137.372 137.373h578.745v-192h-192c-17.674 0-32-14.328-32-32.001s14.326-32 32-32h224c17.674 0 32 14.327 32 32v256.001c0 17.674-14.326 32-32 32h-610.745l137.372 137.373c12.496 12.496 12.496 32.758 0 45.254z" + ], + "attrs": [{ "fill": "rgb(108, 114, 122)" }], + "isMulticolor": false, + "isMulticolor2": false, + "colorPermutations": { + "1081141221158162168120320620912282312341243190812456992125519219212552552551291162451452241651699010019902101": [ + { "f": 2 } + ] + }, + "tags": ["arrow-return"], + "grid": 0 + }, + "attrs": [{ "fill": "rgb(108, 114, 122)" }], + "properties": { "order": 176, "id": 31, "name": "arrow-return", "prevSize": 32, "code": 59673 }, + "setIdx": 0, + "setId": 4, + "iconIdx": 38 + }, + { + "icon": { + "paths": [ + "M694.627 473.373c12.496 12.496 12.496 32.758 0 45.254s-32.758 12.496-45.254 0l-105.373-105.373v418.746c0 17.674-14.326 32-32 32s-32-14.326-32-32v-418.746l-105.373 105.373c-12.496 12.496-32.758 12.496-45.254 0s-12.497-32.758 0-45.254l160-160c12.496-12.497 32.758-12.497 45.254 0l160 160zM912 160c0-17.673-14.326-32-32-32h-768c-17.673 0-32 14.327-32 32v512c0 17.674 14.327 32 32 32h96c17.673 0 32-14.326 32-32s-14.327-32-32-32h-64v-448h704v448h-64c-17.674 0-32 14.326-32 32s14.326 32 32 32h96c17.674 0 32-14.326 32-32v-512z" + ], + "attrs": [{ "fill": "rgb(108, 114, 122)" }], + "isMulticolor": false, + "isMulticolor2": false, + "colorPermutations": { + "1081141221158162168120320620912282312341243190812456992125519219212552552551291162451452241651699010019902101": [ + { "f": 2 } + ] + }, + "tags": ["arrow-up-box"], + "grid": 0 + }, + "attrs": [{ "fill": "rgb(108, 114, 122)" }], + "properties": { "order": 177, "id": 32, "name": "arrow-up-box", "prevSize": 32, "code": 59674 }, + "setIdx": 0, + "setId": 4, + "iconIdx": 39 + }, + { + "icon": { + "paths": [ + "M297.181 498.090c-12.356-12.634-12.129-32.896 0.507-45.251l191.97-187.717c12.435-12.161 32.307-12.161 44.746 0l191.968 187.717c12.637 12.355 12.864 32.618 0.509 45.251-12.355 12.637-32.618 12.864-45.251 0.509l-137.6-134.55v372.109c0 17.674-14.326 32-32 32-17.67 0-32-14.326-32-32v-372.109l-137.597 134.55c-12.637 12.355-32.895 12.128-45.251-0.509z" + ], + "attrs": [{ "fill": "rgb(108, 114, 122)" }], + "isMulticolor": false, + "isMulticolor2": false, + "colorPermutations": { + "1081141221158162168120320620912282312341243190812456992125519219212552552551291162451452241651699010019902101": [ + { "f": 2 } + ] + }, + "tags": ["arrow-up"], + "grid": 0 + }, + "attrs": [{ "fill": "rgb(108, 114, 122)" }], + "properties": { "order": 178, "id": 33, "name": "arrow-up", "prevSize": 32, "code": 59675 }, + "setIdx": 0, + "setId": 4, + "iconIdx": 40 + }, + { + "icon": { + "paths": [ + "M866.128 153.127c-12.496-12.497-32.758-12.497-45.254 0l-668.246 668.245c-12.497 12.496-12.497 32.758 0 45.254s32.758 12.496 45.255 0l668.246-668.245c12.496-12.497 12.496-32.758 0-45.255zM674.643 480.358l55.92-55.923c16.259 79.565 14.515 161.866-5.229 240.842l-11.622 46.49c-4.288 17.146-21.661 27.571-38.806 23.283-17.146-4.285-27.568-21.661-23.283-38.806l11.622-46.486c13.875-55.507 17.677-112.874 11.398-169.398zM817.162 385.923l-11.312-36.771 51.203-51.206 21.28 69.155c33.344 108.368 31.994 224.445-3.859 332.010l-33.45 100.342c-5.587 16.765-23.709 25.827-40.477 20.24-16.765-5.59-25.827-23.712-20.237-40.48l33.446-100.339c31.635-94.912 32.826-197.334 3.405-292.95zM490.666 664.333l64-64v210.346c0 23.562-19.101 42.666-42.666 42.666h-85.334c-35.459 0-68.394-10.816-95.683-29.325l46.611-46.611c14.701 7.629 31.395 11.936 49.072 11.936h64v-125.011zM128 682.678c0 19.738 13.403 36.346 31.604 41.216l62.552-62.55h-30.156v-298.666h118.99l12.367-48.049c11.843-46.020 53.696-79.953 103.309-79.953h64v158.155l64-64v-115.488c0-23.564-19.101-42.667-42.666-42.667h-85.334c-79.523 0-146.343 54.39-165.289 128h-90.71c-23.564 0-42.667 19.102-42.667 42.667v341.334z" + ], + "attrs": [{ "fill": "rgb(108, 114, 122)" }], + "isMulticolor": false, + "isMulticolor2": false, + "colorPermutations": { + "1081141221158162168120320620912282312341243190812456992125519219212552552551291162451452241651699010019902101": [ + { "f": 2 } + ] + }, + "tags": ["audio-disabled"], + "grid": 0 + }, + "attrs": [{ "fill": "rgb(108, 114, 122)" }], + "properties": { "order": 180, "id": 35, "name": "audio-disabled", "prevSize": 32, "code": 59677 }, + "setIdx": 0, + "setId": 4, + "iconIdx": 41 + }, + { + "icon": { + "paths": [ + "M310.99 661.344h-118.99v-298.666h118.99l12.367-48.049c11.843-46.020 53.696-79.953 103.309-79.953h64v554.667h-64c-49.613 0-91.466-33.933-103.309-79.952l-12.367-48.048zM170.667 725.344h90.71c18.946 73.61 85.766 128 165.289 128h85.334c23.565 0 42.666-19.104 42.666-42.666v-597.335c0-23.564-19.101-42.667-42.666-42.667h-85.334c-79.523 0-146.343 54.39-165.289 128h-90.71c-23.564 0-42.667 19.102-42.667 42.667v341.334c0 23.562 19.103 42.666 42.667 42.666zM886.627 393.373c12.496 12.496 12.496 32.758 0 45.254l-73.373 73.373 73.373 73.373c12.496 12.496 12.496 32.758 0 45.254s-32.758 12.496-45.254 0l-73.373-73.373-73.373 73.373c-12.496 12.496-32.758 12.496-45.254 0s-12.496-32.758 0-45.254l73.373-73.373-73.373-73.373c-12.496-12.496-12.496-32.758 0-45.254s32.758-12.496 45.254 0l73.373 73.373 73.373-73.373c12.496-12.496 32.758-12.496 45.254 0z" + ], + "attrs": [{ "fill": "rgb(108, 114, 122)" }], + "isMulticolor": false, + "isMulticolor2": false, + "colorPermutations": { + "1081141221158162168120320620912282312341243190812456992125519219212552552551291162451452241651699010019902101": [ + { "f": 2 } + ] + }, + "tags": ["audio-unavailable"], + "grid": 0 + }, + "attrs": [{ "fill": "rgb(108, 114, 122)" }], + "properties": { "order": 181, "id": 36, "name": "audio-unavailable", "prevSize": 32, "code": 59678 }, + "setIdx": 0, + "setId": 4, + "iconIdx": 42 + }, + { + "icon": { + "paths": [ + "M300.1 631.12h-113.433v-280.89h113.433l12.366-48.048c11.054-42.953 50.123-74.619 96.423-74.619h58.666v526.223h-58.666c-46.301 0-85.37-31.667-96.423-74.621l-12.366-48.045zM163.556 695.12h86.931c18.156 70.541 82.192 122.666 158.403 122.666h81.776c22.582 0 40.89-18.307 40.89-40.89v-572.444c0-22.582-18.307-40.889-40.89-40.889h-81.776c-76.211 0-140.247 52.124-158.403 122.667h-86.931c-22.582 0-40.889 18.306-40.889 40.89v327.11c0 22.582 18.307 40.89 40.889 40.89zM646.461 316.515c17.146-4.286 34.518 6.138 38.806 23.284l11.136 44.55c20.81 83.229 20.81 170.301 0 253.533l-11.136 44.55c-4.288 17.146-21.661 27.568-38.806 23.283-17.146-4.288-27.571-21.661-23.283-38.806l11.136-44.55c18.262-73.040 18.262-149.45 0.003-222.486l-11.139-44.55c-4.288-17.146 6.138-34.522 23.283-38.807zM807.472 235.936c-5.197-16.892-23.104-26.372-39.994-21.174-16.893 5.197-26.371 23.104-21.174 39.996l35.536 115.489c28.112 91.37 26.976 189.242-3.254 279.933l-32.054 96.16c-5.59 16.765 3.472 34.886 20.237 40.477 16.768 5.587 34.89-3.472 40.48-20.24l32.051-96.16c34.448-103.344 35.747-214.87 3.709-318.989l-35.536-115.491z" + ], + "attrs": [{ "fill": "rgb(108, 114, 122)" }], + "isMulticolor": false, + "isMulticolor2": false, + "colorPermutations": { + "1081141221158162168120320620912282312341243190812456992125519219212552552551291162451452241651699010019902101": [ + { "f": 2 } + ] + }, + "tags": ["audio"], + "grid": 0 + }, + "attrs": [{ "fill": "rgb(108, 114, 122)" }], + "properties": { "order": 182, "id": 37, "name": "audio", "prevSize": 32, "code": 59679 }, + "setIdx": 0, + "setId": 4, + "iconIdx": 43 + }, + { + "icon": { + "paths": [ + "M418.704 128c-35.344 0-64 28.654-64 64v226.637c20.774-2.822 42.134-3.456 64-1.526v-225.11h176v180.707c0 35.344 28.656 64 64 64h176v331.293h-120.554c-17.155 22.179-36.323 43.869-57.312 64h177.866c35.347 0 64-28.653 64-64v-363.293c0-6.413-1.923-12.675-5.526-17.978l-156.63-230.681c-11.914-17.544-31.741-28.049-52.947-28.049h-264.896zM658.704 372.707v-180.707h24.896l122.698 180.707h-147.594zM167.939 668.547c120.524 156.138 218.24 174.586 285.133 158.739 73.293-17.36 139.232-81.648 183.466-151.763-115.155-155.869-211.581-174.589-279.149-158.915-74.362 17.251-142.707 81.683-189.45 151.939zM104.428 649.037c100.621-162.8 337.62-357.19 593.252 1.789 9.072 12.739 10.32 29.818 2.422 43.315-95.27 162.854-326.394 358.346-593.234-0.224-9.745-13.094-11.022-30.995-2.44-44.88zM401.664 735.994c31.514 0 60.269-26.858 60.269-64 0-37.146-28.755-64-60.269-64-31.51 0-60.266 26.854-60.266 64 0 37.142 28.755 64 60.266 64zM401.664 799.994c68.634 0 124.269-57.309 124.269-128 0-70.694-55.635-128-124.269-128-68.63 0-124.267 57.306-124.267 128 0 70.691 55.636 128 124.267 128z" + ], + "width": 1056, + "attrs": [{ "fill": "rgb(108, 114, 122)" }], + "isMulticolor": false, + "isMulticolor2": false, + "colorPermutations": { + "1081141221158162168120320620912282312341243190812456992125519219212552552551291162451452241651699010019902101": [ + { "f": 2 } + ] + }, + "tags": ["auditing"], + "grid": 0 + }, + "attrs": [{ "fill": "rgb(108, 114, 122)" }], + "properties": { "order": 183, "id": 38, "name": "auditing", "prevSize": 32, "code": 59680 }, + "setIdx": 0, + "setId": 4, + "iconIdx": 44 + }, + { + "icon": { + "paths": [ + "M224 224c-17.673 0-32 14.327-32 32v544c0 17.674 14.327 32 32 32h544c17.674 0 32-14.326 32-32v-544c0-17.673-14.326-32-32-32h-544zM128 256c0-53.019 42.981-96 96-96h544c53.021 0 96 42.981 96 96v544c0 53.021-42.979 96-96 96h-544c-53.019 0-96-42.979-96-96v-544zM608 460.813c0 41.798-26.714 77.357-64 90.538v133.462h-64v-133.462c-37.286-13.181-64-48.739-64-90.538 0-53.021 42.979-96 96-96s96 42.979 96 96zM608 588.826c38.861-29.19 64-75.667 64-128.013 0-88.365-71.635-160-160-160s-160 71.636-160 160c0 52.346 25.139 98.822 64 128.013v127.987c0 17.674 14.326 32 32 32h128c17.674 0 32-14.326 32-32v-127.987z" + ], + "attrs": [{ "fill": "rgb(108, 114, 122)" }], + "isMulticolor": false, + "isMulticolor2": false, + "colorPermutations": { + "1081141221158162168120320620912282312341243190812456992125519219212552552551291162451452241651699010019902101": [ + { "f": 2 } + ] + }, + "tags": ["auth"], + "grid": 0 + }, + "attrs": [{ "fill": "rgb(108, 114, 122)" }], + "properties": { "order": 184, "id": 39, "name": "auth", "prevSize": 32, "code": 59681 }, + "setIdx": 0, + "setId": 4, + "iconIdx": 45 + }, + { + "icon": { + "paths": [ + "M513.35 554.019c66.467 0 120.349-52.493 120.349-117.242 0-64.752-53.882-117.243-120.349-117.243-66.464 0-120.346 52.491-120.346 117.243 0 64.749 53.882 117.242 120.346 117.242zM513.35 490.019c-32.704 0-56.346-25.405-56.346-53.242 0-27.84 23.642-53.242 56.346-53.242 32.707 0 56.349 25.402 56.349 53.242 0 27.837-23.642 53.242-56.349 53.242z", + "M365.478 894.144h-172.126c-17.673 0-32-14.33-32-32v-702.144c0-17.673 14.327-32 32-32h640.001c17.674 0 32 14.327 32 32v702.144c0 17.67-14.326 32-32 32h-172.128c-6.24 1.274-12.701 1.942-19.318 1.942h-257.11c-6.618 0-13.078-0.669-19.318-1.942zM225.353 830.144h68.244c-3.114-9.456-4.799-19.558-4.799-30.058v-93.446c0-56.109 37.881-105.142 92.172-119.309 19.171-5.002 39.264-5.312 58.579-0.902l42.778 9.766c20.051 4.579 40.909 4.259 60.81-0.934l28.070-7.325c20.694-5.398 42.384-5.734 63.232-0.973 60.534 13.821 103.469 67.664 103.469 129.754v83.37c0 10.499-1.686 20.602-4.8 30.058h68.246v-638.144h-576.001v638.144zM652.918 830.144c12.246-4.49 20.989-16.253 20.989-30.058v-83.37c0-32.234-22.288-60.186-53.715-67.36-10.822-2.47-22.083-2.298-32.826 0.506l-28.070 7.325c-29.853 7.789-61.139 8.272-91.216 1.405l-42.774-9.766c-9.293-2.122-18.957-1.974-28.176 0.432-26.112 6.813-44.333 30.397-44.333 57.382v93.446c0 13.805 8.742 25.568 20.989 30.058h279.133z" + ], + "width": 1056, + "attrs": [{ "fill": "rgb(108, 114, 122)" }, { "fill": "rgb(108, 114, 122)" }], + "isMulticolor": false, + "isMulticolor2": false, + "colorPermutations": { + "1081141221158162168120320620912282312341243190812456992125519219212552552551291162451452241651699010019902101": [ + { "f": 2 }, + { "f": 2 } + ] + }, + "tags": ["avatar"], + "grid": 0 + }, + "attrs": [{ "fill": "rgb(108, 114, 122)" }, { "fill": "rgb(108, 114, 122)" }], + "properties": { "order": 185, "id": 40, "name": "avatar", "prevSize": 32, "code": 59682 }, + "setIdx": 0, + "setId": 4, + "iconIdx": 46 + }, + { + "icon": { + "paths": [ + "M737.779 361.376c12.499 12.496 12.499 32.758 0 45.254l-110.947 110.95 110.947 110.947c12.499 12.496 12.499 32.758 0 45.254-12.496 12.499-32.758 12.499-45.254 0l-110.947-110.947-110.95 110.947c-12.496 12.499-32.758 12.499-45.254 0-12.496-12.496-12.496-32.758 0-45.254l110.95-110.947-110.95-110.95c-12.496-12.496-12.496-32.758 0-45.254s32.758-12.496 45.254 0l110.95 110.95 110.947-110.95c12.496-12.496 32.758-12.496 45.254 0z", + "M312.246 218.073c12.061-16.393 31.2-26.073 51.552-26.073h468.202c35.347 0 64 28.654 64 64v512c0 35.347-28.653 64-64 64h-468.202c-20.352 0-39.491-9.68-51.552-26.074l-188.343-256c-16.598-22.56-16.598-53.293 0-75.853l188.343-256.001zM363.798 256l-188.343 256 188.343 256h468.202v-512h-468.202z" + ], + "attrs": [{ "fill": "rgb(108, 114, 122)" }, { "fill": "rgb(108, 114, 122)" }], + "isMulticolor": false, + "isMulticolor2": false, + "colorPermutations": { + "1081141221158162168120320620912282312341243190812456992125519219212552552551291162451452241651699010019902101": [ + { "f": 2 }, + { "f": 2 } + ] + }, + "tags": ["backspace"], + "grid": 0 + }, + "attrs": [{ "fill": "rgb(108, 114, 122)" }, { "fill": "rgb(108, 114, 122)" }], + "properties": { "order": 186, "id": 41, "name": "backspace", "prevSize": 32, "code": 59683 }, + "setIdx": 0, + "setId": 4, + "iconIdx": 47 + }, + { + "icon": { + "paths": [ + "M376 775.418c-13.254 0-24-10.746-24-24v-469.168c0-13.255 10.746-24 24-24h145.075c56.118 0 98.269 11.603 126.448 34.809 28.416 23.206 42.624 57.542 42.624 103.008 0 24.154-6.867 45.584-20.602 64.291-13.734 18.47-32.442 32.794-56.122 42.976 27.942 7.814 49.965 22.733 66.067 44.755 16.339 21.786 24.509 47.834 24.509 78.144 0 46.413-15.037 82.88-45.11 109.402s-72.579 39.782-127.517 39.782h-155.373zM420.198 533.526v186.125h112.595c31.731 0 56.714-8.17 74.947-24.509 18.47-16.576 27.706-39.309 27.706-68.198 0-62.278-33.862-93.418-101.587-93.418h-113.661zM420.198 478.829h103.008c29.834 0 53.632-7.459 71.392-22.378 17.997-14.918 26.995-35.165 26.995-60.739 0-28.416-8.288-49.018-24.864-61.805-16.576-13.024-41.795-19.536-75.654-19.536h-100.877v164.458z" + ], + "attrs": [{ "fill": "rgb(108, 114, 122)" }], + "isMulticolor": false, + "isMulticolor2": false, + "colorPermutations": { + "1081141221158162168120320620912282312341243190812456992125519219212552552551291162451452241651699010019902101": [ + { "f": 2 } + ] + }, + "tags": ["bold"], + "grid": 0 + }, + "attrs": [{ "fill": "rgb(108, 114, 122)" }], + "properties": { "order": 187, "id": 42, "name": "bold", "prevSize": 32, "code": 59684 }, + "setIdx": 0, + "setId": 4, + "iconIdx": 48 + }, + { + "icon": { + "paths": [ + "M352 445.437c0-17.67 14.326-32 32-32h256c17.674 0 32 14.33 32 32 0 17.674-14.326 32-32 32h-256c-17.674 0-32-14.326-32-32z", + "M352 322.557c0-17.672 14.326-31.999 32-31.999h256c17.674 0 32 14.327 32 31.999 0 17.674-14.326 32-32 32h-256c-17.674 0-32-14.326-32-32z", + "M864 679.68c0 17.674-14.326 32-32 32h-18.509c-8.218 40.547-8.218 82.333 0 122.88h19.789c16.966 0 30.72 13.754 30.72 30.72s-13.754 30.72-30.72 30.72h-545.28c-70.692 0-128-55.014-128-122.88v-453.12c0-106.038 85.961-192 192-192h480c17.674 0 32 14.327 32 32v519.68zM748.419 834.56c-6.787-40.678-6.787-82.202 0-122.88h-460.419c-35.346 0-64 27.507-64 61.44s28.654 61.44 64 61.44h460.419zM224 647.68h576v-455.68h-448c-70.692 0-128 57.308-128 128v327.68z" + ], + "attrs": [{ "fill": "rgb(108, 114, 122)" }, { "fill": "rgb(108, 114, 122)" }, { "fill": "rgb(108, 114, 122)" }], + "isMulticolor": false, + "isMulticolor2": false, + "colorPermutations": { + "1081141221158162168120320620912282312341243190812456992125519219212552552551291162451452241651699010019902101": [ + { "f": 2 }, + { "f": 2 }, + { "f": 2 } + ] + }, + "tags": ["book"], + "grid": 0 + }, + "attrs": [{ "fill": "rgb(108, 114, 122)" }, { "fill": "rgb(108, 114, 122)" }, { "fill": "rgb(108, 114, 122)" }], + "properties": { "order": 188, "id": 43, "name": "book", "prevSize": 32, "code": 59685 }, + "setIdx": 0, + "setId": 4, + "iconIdx": 49 + }, + { + "icon": { + "paths": [ + "M224 224h320v576h-96v-112c0-8.835-7.165-16-16-16h-96c-8.835 0-16 7.165-16 16v112h-96v-576zM608 448h192v352h-192v-352zM832 384h-224v-192c0-17.673-14.326-32-32-32h-384c-17.673 0-32 14.327-32 32v640c0 17.674 14.327 32 32 32h640c17.674 0 32-14.326 32-32v-416c0-17.674-14.326-32-32-32zM304 288c-8.836 0-16 7.164-16 16v32c0 8.835 7.164 16 16 16h32c8.835 0 16-7.165 16-16v-32c0-8.836-7.165-16-16-16h-32zM288 432c0-8.835 7.164-16 16-16h32c8.835 0 16 7.165 16 16v32c0 8.835-7.165 16-16 16h-32c-8.836 0-16-7.165-16-16v-32zM304 544c-8.836 0-16 7.165-16 16v32c0 8.835 7.164 16 16 16h32c8.835 0 16-7.165 16-16v-32c0-8.835-7.165-16-16-16h-32zM416 304c0-8.836 7.165-16 16-16h32c8.835 0 16 7.164 16 16v32c0 8.835-7.165 16-16 16h-32c-8.835 0-16-7.165-16-16v-32zM432 416c-8.835 0-16 7.165-16 16v32c0 8.835 7.165 16 16 16h32c8.835 0 16-7.165 16-16v-32c0-8.835-7.165-16-16-16h-32zM416 560c0-8.835 7.165-16 16-16h32c8.835 0 16 7.165 16 16v32c0 8.835-7.165 16-16 16h-32c-8.835 0-16-7.165-16-16v-32zM688 512c-8.835 0-16 7.165-16 16v32c0 8.835 7.165 16 16 16h32c8.835 0 16-7.165 16-16v-32c0-8.835-7.165-16-16-16h-32zM672 656c0-8.835 7.165-16 16-16h32c8.835 0 16 7.165 16 16v32c0 8.835-7.165 16-16 16h-32c-8.835 0-16-7.165-16-16v-32z" + ], + "attrs": [{ "fill": "rgb(108, 114, 122)" }], + "isMulticolor": false, + "isMulticolor2": false, + "colorPermutations": { + "1081141221158162168120320620912282312341243190812456992125519219212552552551291162451452241651699010019902101": [ + { "f": 2 } + ] + }, + "tags": ["business"], + "grid": 0 + }, + "attrs": [{ "fill": "rgb(108, 114, 122)" }], + "properties": { "order": 189, "id": 44, "name": "business", "prevSize": 32, "code": 59686 }, + "setIdx": 0, + "setId": 4, + "iconIdx": 50 + }, + { + "icon": { + "paths": [ + "M277.831 157.44c0-16.259 13.181-29.44 29.44-29.44s29.439 13.181 29.439 29.44v58.876h353.28v-58.876c0-16.259 13.181-29.44 29.44-29.44s29.44 13.181 29.44 29.44v58.876h85.76c17.674 0 32 14.327 32 32v583.68c0 17.674-14.326 32-32 32h-642.559c-17.673 0-32-14.326-32-32v-583.68c0-1.105 0.056-2.196 0.165-3.272 1.639-16.136 15.266-28.728 31.835-28.728h85.76v-58.876zM802.63 392.957h-578.559v407.040h578.559v-407.040zM425.034 644.474c0-8.835 7.162-16 16-16h26.88c8.835 0 16 7.165 16 16v26.88c0 8.838-7.165 16-16 16h-26.88c-8.838 0-16-7.162-16-16v-26.88zM323.27 510.72c-8.836 0-15.999 7.162-15.999 16v26.88c0 8.835 7.163 16 15.999 16h26.88c8.838 0 16-7.165 16-16v-26.88c0-8.838-7.162-16-16-16h-26.88zM542.79 526.72c0-8.835 7.165-16 16-16h26.88c8.838 0 16 7.165 16 16v26.88c0 8.835-7.162 16-16 16h-26.88c-8.835 0-16-7.165-16-16v-26.88zM323.27 628.474c-8.835 0-15.999 7.165-15.999 16v26.88c0 8.838 7.164 16 15.999 16h26.88c8.838 0 16-7.162 16-16v-26.88c0-8.835-7.162-16-16-16h-26.88zM542.79 644.474c0-8.835 7.165-16 16-16h26.88c8.838 0 16 7.165 16 16v26.88c0 8.838-7.162 16-16 16h-26.88c-8.835 0-16-7.162-16-16v-26.88zM441.030 510.72c-8.835 0-16 7.165-16 16v26.88c0 8.835 7.165 16 16 16h26.88c8.838 0 16-7.165 16-16v-26.88c0-8.835-7.162-16-16-16h-26.88zM660.55 526.72c0-8.835 7.165-16 16-16h26.88c8.838 0 16 7.165 16 16v26.88c0 8.835-7.162 16-16 16h-26.88c-8.835 0-16-7.165-16-16v-26.88zM676.55 628.474c-8.835 0-16 7.165-16 16v26.88c0 8.838 7.165 16 16 16h26.88c8.838 0 16-7.162 16-16v-26.88c0-8.835-7.162-16-16-16h-26.88z" + ], + "width": 1056, + "attrs": [{ "fill": "rgb(108, 114, 122)" }], + "isMulticolor": false, + "isMulticolor2": false, + "colorPermutations": { + "1081141221158162168120320620912282312341243190812456992125519219212552552551291162451452241651699010019902101": [ + { "f": 2 } + ] + }, + "tags": ["calendar"], + "grid": 0 + }, + "attrs": [{ "fill": "rgb(108, 114, 122)" }], + "properties": { "order": 190, "id": 45, "name": "calendar", "prevSize": 32, "code": 59687 }, + "setIdx": 0, + "setId": 4, + "iconIdx": 51 + }, + { + "icon": { + "paths": [ + "M866.128 153.126c-12.496-12.497-32.758-12.497-45.254 0l-668.246 668.246c-12.497 12.496-12.497 32.758 0 45.254s32.758 12.496 45.255 0l668.246-668.246c12.496-12.497 12.496-32.758 0-45.255zM298.667 170.671c-23.564 0-42.667 14.327-42.667 32s19.102 32 42.667 32h255.999c23.565 0 42.669-14.327 42.669-32s-19.104-32-42.669-32h-255.999zM574.173 309.327h-403.506c-41.237 0-74.667 33.428-74.667 74.667v384c0 6.010 0.71 11.856 2.051 17.453l61.949-61.949v-339.504c0-5.891 4.776-10.666 10.667-10.666h339.506l64-64.001zM376.339 778.659h306.326c5.891 0 10.669-4.774 10.669-10.666v-85.334c0-11.373 6.038-21.891 15.859-27.629s21.949-5.83 31.856-0.243l97.83 55.162c2.531 1.427 4.858 3.194 6.912 5.248 6.72 6.72 18.208 1.962 18.208-7.542v-263.322c0-9.501-11.488-14.262-18.208-7.542-2.054 2.054-4.381 3.821-6.912 5.248l-97.83 55.162c-9.907 5.587-22.035 5.494-31.856-0.243-9.821-5.734-15.859-16.256-15.859-27.629v-7.661l110.778-73.498c47.418-41.99 123.888-8.701 123.888 56.163v263.322c0 64.864-76.47 98.154-123.888 56.163l-46.778-26.378v30.554c0 41.238-33.43 74.666-74.669 74.666h-370.327l64.001-64z" + ], + "attrs": [{ "fill": "rgb(108, 114, 122)" }], + "isMulticolor": false, + "isMulticolor2": false, + "colorPermutations": { + "1081141221158162168120320620912282312341243190812456992125519219212552552551291162451452241651699010019902101": [ + { "f": 2 } + ] + }, + "tags": ["camera-disabled"], + "grid": 0 + }, + "attrs": [{ "fill": "rgb(108, 114, 122)" }], + "properties": { "order": 191, "id": 46, "name": "camera-disabled", "prevSize": 32, "code": 59688 }, + "setIdx": 0, + "setId": 4, + "iconIdx": 52 + }, + { + "icon": { + "paths": [ + "M288 224c-17.673 0-32 14.327-32 32s14.327 32 32 32h256c17.674 0 32-14.327 32-32s-14.326-32-32-32h-256z", + "M170.667 341.328c-23.564 0-42.667 19.104-42.667 42.666v384c0 23.565 19.102 42.669 42.667 42.669h511.999c23.565 0 42.669-19.104 42.669-42.669v-128l97.83 97.83c26.877 26.88 72.835 7.843 72.835-30.17v-263.318c0-38.013-45.958-57.050-72.835-30.173l-97.83 97.83v-128c0-23.562-19.104-42.666-42.669-42.666h-511.999z" + ], + "attrs": [{ "fill": "rgb(108, 114, 122)" }, { "fill": "rgb(108, 114, 122)" }], + "isMulticolor": false, + "isMulticolor2": false, + "colorPermutations": { + "1081141221158162168120320620912282312341243190812456992125519219212552552551291162451452241651699010019902101": [ + { "f": 2 }, + { "f": 2 } + ] + }, + "tags": ["camera-filled"], + "grid": 0 + }, + "attrs": [{ "fill": "rgb(108, 114, 122)" }, { "fill": "rgb(108, 114, 122)" }], + "properties": { "order": 192, "id": 47, "name": "camera-filled", "prevSize": 32, "code": 59689 }, + "setIdx": 0, + "setId": 4, + "iconIdx": 53 + }, + { + "icon": { + "paths": [ + "M196.731 191.997c0-15.807 12.814-28.622 28.622-28.622h128.001c15.805 0 28.621 12.814 28.621 28.622s-12.816 28.621-28.621 28.621h-128.001c-15.807 0-28.622-12.814-28.622-28.621z", + "M737.354 559.997c0 97.203-78.8 176-176 176-97.203 0-176-78.797-176-176s78.797-176 176-176c97.2 0 176 78.797 176 176zM673.354 559.997c0-61.856-50.144-112-112-112s-112 50.144-112 112c0 61.856 50.144 112 112 112s112-50.144 112-112z", + "M193.353 255.997c-35.346 0-64 28.654-64 64v448c0 35.347 28.654 64 64 64h640.001c35.344 0 64-28.653 64-64v-448c0-35.346-28.656-64-64-64h-640.001zM833.354 319.997v448h-640.001v-448h640.001z" + ], + "width": 1056, + "attrs": [{ "fill": "rgb(108, 114, 122)" }, { "fill": "rgb(108, 114, 122)" }, { "fill": "rgb(108, 114, 122)" }], + "isMulticolor": false, + "isMulticolor2": false, + "colorPermutations": { + "1081141221158162168120320620912282312341243190812456992125519219212552552551291162451452241651699010019902101": [ + { "f": 2 }, + { "f": 2 }, + { "f": 2 } + ] + }, + "tags": ["camera-photo"], + "grid": 0 + }, + "attrs": [{ "fill": "rgb(108, 114, 122)" }, { "fill": "rgb(108, 114, 122)" }, { "fill": "rgb(108, 114, 122)" }], + "properties": { "order": 193, "id": 48, "name": "camera-photo", "prevSize": 32, "code": 59690 }, + "setIdx": 0, + "setId": 4, + "iconIdx": 54 + }, + { + "icon": { + "paths": [ + "M298.667 170.672c-23.564 0-42.667 14.327-42.667 32s19.102 32 42.667 32h255.999c23.565 0 42.669-14.327 42.669-32s-19.104-32-42.669-32h-255.999z", + "M545.712 503.453c11.267-11.267 11.19-29.61-0.17-40.97s-29.706-11.437-40.973-0.17l-71.402 71.402-71.994-71.997c-11.363-11.36-29.706-11.437-40.973-0.17s-11.19 29.61 0.17 40.97l71.997 71.997-71.402 71.402c-11.266 11.267-11.19 29.61 0.17 40.97 11.363 11.36 29.706 11.437 40.973 0.17l71.402-71.402 71.997 71.997c11.36 11.36 29.702 11.437 40.97 0.17s11.19-29.61-0.17-40.97l-71.997-71.997 71.402-71.402z", + "M96 383.994c0-41.235 33.429-74.666 74.667-74.666h511.999c41.238 0 74.669 33.43 74.669 74.666v30.554l46.778-26.378c47.418-41.99 123.888-8.698 123.888 56.166v263.318c0 64.864-76.47 98.154-123.888 56.163l-46.778-26.374v30.55c0 41.238-33.43 74.669-74.669 74.669h-511.999c-41.237 0-74.667-33.43-74.667-74.669v-384zM170.667 373.328c-5.891 0-10.667 4.774-10.667 10.666v384c0 5.891 4.776 10.669 10.667 10.669h511.999c5.891 0 10.669-4.778 10.669-10.669v-85.331c0-11.376 6.038-21.894 15.859-27.632s21.949-5.83 31.856-0.243l97.83 55.165c2.531 1.427 4.858 3.19 6.912 5.245 6.72 6.72 18.208 1.962 18.208-7.542v-263.318c0-9.504-11.488-14.262-18.208-7.546-2.054 2.058-4.381 3.821-6.912 5.248l-97.83 55.165c-9.907 5.587-22.035 5.494-31.856-0.243s-15.859-16.256-15.859-27.632v-85.334c0-5.891-4.778-10.666-10.669-10.666h-511.999z" + ], + "attrs": [{ "fill": "rgb(108, 114, 122)" }, { "fill": "rgb(108, 114, 122)" }, { "fill": "rgb(108, 114, 122)" }], + "isMulticolor": false, + "isMulticolor2": false, + "colorPermutations": { + "1081141221158162168120320620912282312341243190812456992125519219212552552551291162451452241651699010019902101": [ + { "f": 2 }, + { "f": 2 }, + { "f": 2 } + ] + }, + "tags": ["camera-unavailable"], + "grid": 0 + }, + "attrs": [{ "fill": "rgb(108, 114, 122)" }, { "fill": "rgb(108, 114, 122)" }, { "fill": "rgb(108, 114, 122)" }], + "properties": { "order": 194, "id": 49, "name": "camera-unavailable", "prevSize": 32, "code": 59691 }, + "setIdx": 0, + "setId": 4, + "iconIdx": 55 + }, + { + "icon": { + "paths": [ + "M256 202.672c0-17.673 19.102-32 42.667-32h255.999c23.565 0 42.669 14.327 42.669 32s-19.104 32-42.669 32h-255.999c-23.564 0-42.667-14.327-42.667-32zM160 383.994c0-5.891 4.776-10.666 10.667-10.666h511.999c5.891 0 10.669 4.774 10.669 10.666v85.334c0 11.376 6.038 21.894 15.859 27.632s21.949 5.83 31.856 0.243l97.83-55.165c2.531-1.427 4.858-3.19 6.912-5.248 6.72-6.717 18.208-1.958 18.208 7.546v263.318c0 9.504-11.488 14.262-18.208 7.542-2.054-2.054-4.381-3.818-6.912-5.245l-97.83-55.165c-9.907-5.587-22.035-5.494-31.856 0.243s-15.859 16.256-15.859 27.632v85.331c0 5.891-4.778 10.669-10.669 10.669h-511.999c-5.891 0-10.667-4.778-10.667-10.669v-384zM170.667 309.328c-41.237 0-74.667 33.43-74.667 74.666v384c0 41.238 33.429 74.669 74.667 74.669h511.999c41.238 0 74.669-33.43 74.669-74.669v-30.55l46.778 26.374c47.418 41.99 123.888 8.701 123.888-56.163v-263.318c0-64.864-76.47-98.157-123.888-56.166l-46.778 26.378v-30.554c0-41.235-33.43-74.666-74.669-74.666h-511.999z" + ], + "attrs": [{ "fill": "rgb(108, 114, 122)" }], + "isMulticolor": false, + "isMulticolor2": false, + "colorPermutations": { + "1081141221158162168120320620912282312341243190812456992125519219212552552551291162451452241651699010019902101": [ + { "f": 2 } + ] + }, + "tags": ["camera"], + "grid": 0 + }, + "attrs": [{ "fill": "rgb(108, 114, 122)" }], + "properties": { "order": 195, "id": 50, "name": "camera", "prevSize": 32, "code": 59692 }, + "setIdx": 0, + "setId": 4, + "iconIdx": 56 + }, + { + "icon": { + "paths": [ + "M224.248 304.026c-49.642 68.947-66.502 152.646-66.502 207.968v1.453l-0.132 1.446c-9.702 106.717 28.59 181.93 90.135 234.006 62.938 53.254 152.152 83.731 244.197 93.958 91.965 10.218 193.27 1.446 273.306-15.482 40.022-8.461 73.616-18.733 97.443-29.075 9.245-4.013 16.438-7.786 21.734-11.126-2.464-1.565-5.446-3.306-9.002-5.197-9.222-4.912-19.779-9.578-30.733-14.368l-1.914-0.835c-9.667-4.221-20.47-8.941-28.656-13.517-14.835-8.298-29.389-17.734-40.006-27.776-5.222-4.941-11.165-11.571-15.146-19.827-4.208-8.742-7.226-21.792-1.306-35.597 31.978-74.621 47.178-115.494 54.538-142.483 6.874-25.2 6.874-37.888 6.874-58.064v-0.182c0-16.035-9.318-89.517-55.811-158.032-45.018-66.338-125.99-129.968-274.854-129.968-134.637 0-215.698 55.382-264.165 122.698zM172.309 266.63c60.333-83.796 160.606-149.302 316.103-149.302 171.136 0 271.494 75.037 327.811 158.032 54.842 80.819 66.854 167.338 66.854 193.968 0 22.384-0.022 41.696-9.126 75.088-8.131 29.805-23.485 70.928-51.946 137.923 5.261 4.166 13.072 9.306 23.36 15.062 5.315 2.97 13.485 6.55 24.963 11.568 10.653 4.659 23.437 10.266 35.174 16.515 11.258 5.994 24.416 14.029 34.202 24.538 10.234 10.992 20.973 29.846 13.299 52.864-5.056 15.168-16.794 25.939-26.576 33.094-10.63 7.776-23.818 14.762-38.253 21.030-29.008 12.589-67.030 23.962-109.683 32.982-85.309 18.038-193.581 27.587-293.616 16.474-99.955-11.107-202.74-44.634-278.468-108.71-76.833-65.011-123.811-159.994-112.66-287.222 0.286-65.549 19.841-162.349 78.561-243.904zM493.744 320c17.674 0 32 14.326 32 32v224c0 17.674-14.326 32-32 32s-32-14.326-32-32v-224c0-17.674 14.326-32 32-32zM525.744 672c0-17.674-14.326-32-32-32s-32 14.326-32 32c0 17.674 14.326 32 32 32s32-14.326 32-32z" + ], + "attrs": [{ "fill": "rgb(108, 114, 122)" }], + "isMulticolor": false, + "isMulticolor2": false, + "colorPermutations": { + "1081141221158162168120320620912282312341243190812456992125519219212552552551291162451452241651699010019902101": [ + { "f": 2 } + ] + }, + "tags": ["canned-response"], + "grid": 0 + }, + "attrs": [{ "fill": "rgb(108, 114, 122)" }], + "properties": { "order": 196, "id": 51, "name": "canned-response", "prevSize": 32, "code": 59693 }, + "setIdx": 0, + "setId": 4, + "iconIdx": 57 + }, + { + "icon": { + "paths": [ + "M193.352 181.331c-53.020 0-96 42.981-96 96v469.335c0 53.018 42.98 96 96 96h639.999c53.021 0 96-42.982 96-96v-469.335c0-53.019-42.979-96-96-96h-639.999zM161.352 277.331c0-17.673 14.327-32 32-32h639.999c17.674 0 32 14.327 32 32v202.673h-703.999v-202.673zM161.352 544.003h703.999v202.662c0 17.67-14.326 32-32 32h-639.999c-17.673 0-32-14.33-32-32v-202.662zM812.016 661.331c0-35.347-28.653-64-64-64-35.344 0-64 28.653-64 64s28.656 64 64 64c35.347 0 64-28.653 64-64z" + ], + "width": 1056, + "attrs": [{ "fill": "rgb(108, 114, 122)" }], + "isMulticolor": false, + "isMulticolor2": false, + "colorPermutations": { + "1081141221158162168120320620912282312341243190812456992125519219212552552551291162451452241651699010019902101": [ + { "f": 2 } + ] + }, + "tags": ["card"], + "grid": 0 + }, + "attrs": [{ "fill": "rgb(108, 114, 122)" }], + "properties": { "order": 197, "id": 52, "name": "card", "prevSize": 32, "code": 59694 }, + "setIdx": 0, + "setId": 4, + "iconIdx": 58 + }, + { + "icon": { + "paths": [ + "M368 160c0-17.673-14.326-32-32-32s-32 14.327-32 32v144h-144c-17.673 0-32 14.327-32 32s14.327 32 32 32h144v288h-144c-17.673 0-32 14.326-32 32s14.327 32 32 32h144v144c0 17.674 14.327 32 32 32s32-14.326 32-32v-144h288v144c0 17.674 14.326 32 32 32s32-14.326 32-32v-144h144c17.674 0 32-14.326 32-32s-14.326-32-32-32h-144v-80h-58.666c-1.786 0-3.565-0.042-5.334-0.118v80.118h-288v-288h168.79c-0.522-5.264-0.79-10.602-0.79-16v-48h-168v-144z", + "M760 96c-57.437 0-104 46.562-104 104v56h-24c-17.674 0-32 14.327-32 32v192c0 17.674 14.326 32 32 32h256c17.674 0 32-14.326 32-32v-192c0-17.673-14.326-32-32-32h-24v-56c0-57.438-46.563-104-104-104zM800 255.238h-80v-55.238c0-22.092 17.907-40 40-40s40 17.908 40 40v55.238z" + ], + "width": 1056, + "attrs": [{ "fill": "rgb(108, 114, 122)" }, { "fill": "rgb(108, 114, 122)" }], + "isMulticolor": false, + "isMulticolor2": false, + "colorPermutations": { + "1081141221158162168120320620912282312341243190812456992125519219212552552551291162451452241651699010019902101": [ + { "f": 2 }, + { "f": 2 } + ] + }, + "tags": ["channel-private"], + "grid": 0 + }, + "attrs": [{ "fill": "rgb(108, 114, 122)" }, { "fill": "rgb(108, 114, 122)" }], + "properties": { "order": 198, "id": 53, "name": "channel-private", "prevSize": 32, "code": 59695 }, + "setIdx": 0, + "setId": 4, + "iconIdx": 59 + }, + { + "icon": { + "paths": [ + "M336 128c17.674 0 32 14.327 32 32v144h288v-144c0-17.673 14.326-32 32-32s32 14.327 32 32v144h144c17.674 0 32 14.327 32 32s-14.326 32-32 32h-144v288h144c17.674 0 32 14.326 32 32s-14.326 32-32 32h-144v144c0 17.674-14.326 32-32 32s-32-14.326-32-32v-144h-288v144c0 17.674-14.326 32-32 32s-32-14.326-32-32v-144h-144c-17.673 0-32-14.326-32-32s14.327-32 32-32h144v-288h-144c-17.673 0-32-14.326-32-32s14.327-32 32-32h144v-144c0-17.673 14.327-32 32-32zM368 368v288h288v-288h-288z" + ], + "attrs": [{ "fill": "rgb(108, 114, 122)" }], + "isMulticolor": false, + "isMulticolor2": false, + "colorPermutations": { + "1081141221158162168120320620912282312341243190812456992125519219212552552551291162451452241651699010019902101": [ + { "f": 2 } + ] + }, + "tags": ["channel-public"], + "grid": 0 + }, + "attrs": [{ "fill": "rgb(108, 114, 122)" }], + "properties": { "order": 199, "id": 54, "name": "channel-public", "prevSize": 32, "code": 59696 }, + "setIdx": 0, + "setId": 4, + "iconIdx": 60 + }, + { + "icon": { + "paths": [ + "M886.627 105.372c12.496 12.497 12.496 32.758 0 45.255l-89.373 89.372 89.373 89.373c12.496 12.496 12.496 32.758 0 45.254s-32.758 12.496-45.254 0l-89.373-89.372-89.373 89.372c-12.496 12.496-32.758 12.496-45.254 0s-12.496-32.758 0-45.254l89.373-89.373-89.373-89.372c-12.496-12.497-12.496-32.758 0-45.255s32.758-12.497 45.254 0l89.373 89.373 89.373-89.373c12.496-12.497 32.758-12.497 45.254 0zM226.501 304.042c-49.642 68.947-66.502 152.646-66.502 207.968v1.453l-0.132 1.446c-9.701 106.717 28.59 181.93 90.135 234.006 62.938 53.254 152.151 83.731 244.196 93.958 91.968 10.218 193.27 1.446 273.309-15.482 40.019-8.461 73.613-18.733 97.44-29.075 9.245-4.013 16.438-7.786 21.738-11.126-2.467-1.565-5.446-3.306-9.005-5.2-9.222-4.909-19.776-9.574-30.733-14.365l-1.917-0.838c-9.667-4.221-20.47-8.938-28.653-13.517-14.835-8.294-29.389-17.731-40.003-27.773-5.226-4.941-11.168-11.571-15.146-19.827-4.211-8.742-7.226-21.792-1.309-35.6 42.086-98.205 54.957-137.722 59.219-163.318 2.906-17.434 19.392-29.21 36.822-26.307 17.434 2.906 29.213 19.389 26.307 36.822-5.453 32.749-20.333 76.41-58.006 165.088 5.261 4.166 13.069 9.306 23.357 15.059 5.315 2.973 13.485 6.554 24.963 11.571 10.656 4.656 23.437 10.266 35.174 16.515 11.261 5.994 24.419 14.029 34.202 24.538 10.234 10.992 20.973 29.846 13.299 52.864-5.053 15.168-16.794 25.939-26.576 33.094-10.627 7.776-23.814 14.762-38.253 21.027-29.005 12.592-67.027 23.965-109.68 32.986-85.312 18.038-193.584 27.587-293.616 16.47-99.955-11.104-202.742-44.63-278.471-108.707-76.833-65.014-123.811-159.997-112.66-287.222 0.286-65.549 19.841-162.349 78.561-243.904 60.333-83.796 160.605-149.302 316.103-149.302 17.674 0 32 14.327 32 32s-14.326 32-32 32c-134.637 0-215.697 55.382-264.164 122.698z" + ], + "attrs": [{ "fill": "rgb(108, 114, 122)" }], + "isMulticolor": false, + "isMulticolor2": false, + "colorPermutations": { + "1081141221158162168120320620912282312341243190812456992125519219212552552551291162451452241651699010019902101": [ + { "f": 2 } + ] + }, + "tags": ["chat-close"], + "grid": 0 + }, + "attrs": [{ "fill": "rgb(108, 114, 122)" }], + "properties": { "order": 200, "id": 55, "name": "chat-close", "prevSize": 32, "code": 59697 }, + "setIdx": 0, + "setId": 4, + "iconIdx": 61 + }, + { + "icon": { + "paths": [ + "M778 93.833c-11.795-13.162-32.026-14.271-45.187-2.477s-14.272 32.025-2.477 45.187l81.222 90.645h-216.358c-17.674 0-32 14.327-32 32s14.326 32 32 32h216.358l-81.222 90.646c-11.795 13.162-10.685 33.392 2.477 45.187 13.162 11.792 33.392 10.685 45.187-2.477l129.030-144.001c10.893-12.154 10.893-30.556 0-42.71l-129.030-144zM159.999 512.010c0-55.322 16.86-139.021 66.502-207.968 48.467-67.316 129.527-122.698 264.164-122.698 17.674 0 32-14.327 32-32s-14.326-32-32-32c-155.498 0-255.77 65.507-316.102 149.302-58.72 81.555-78.275 178.355-78.561 243.904-11.151 127.229 35.827 222.211 112.66 287.222 75.729 64.077 178.516 97.603 278.471 108.707 100.032 11.117 208.304 1.568 293.616-16.47 42.653-9.021 80.675-20.394 109.68-32.982 14.438-6.269 27.626-13.254 38.253-21.030 9.782-7.155 21.523-17.926 26.579-33.094 7.67-23.018-3.069-41.872-13.302-52.864-9.782-10.509-22.941-18.544-34.202-24.538-11.738-6.25-24.518-11.859-35.171-16.515-11.482-5.018-19.651-8.598-24.966-11.571-10.288-5.754-18.096-10.89-23.357-15.059 37.674-88.678 52.554-132.339 58.010-165.088 2.902-17.43-8.877-33.917-26.31-36.822-17.43-2.902-33.917 8.877-36.822 26.307-4.262 25.597-17.133 65.114-59.219 163.318-5.917 13.808-2.902 26.858 1.309 35.6 3.978 8.256 9.92 14.886 15.146 19.827 10.614 10.042 25.171 19.478 40.003 27.776 8.186 4.576 18.989 9.296 28.656 13.517v0l1.914 0.835c10.957 4.79 21.51 9.456 30.733 14.368 3.558 1.891 6.541 3.632 9.005 5.197-5.299 3.341-12.493 7.114-21.738 11.126-23.827 10.342-57.421 20.614-97.44 29.075-80.038 16.928-181.341 25.699-273.309 15.482-92.045-10.227-181.258-40.704-244.196-93.958-61.545-52.077-99.836-127.29-90.135-234.006l0.132-1.446v-1.453z" + ], + "attrs": [{ "fill": "rgb(108, 114, 122)" }], + "isMulticolor": false, + "isMulticolor2": false, + "colorPermutations": { + "1081141221158162168120320620912282312341243190812456992125519219212552552551291162451452241651699010019902101": [ + { "f": 2 } + ] + }, + "tags": ["chat-forward"], + "grid": 0 + }, + "attrs": [{ "fill": "rgb(108, 114, 122)" }], + "properties": { "order": 201, "id": 56, "name": "chat-forward", "prevSize": 32, "code": 59698 }, + "setIdx": 0, + "setId": 4, + "iconIdx": 62 + }, + { + "icon": { + "paths": [ + "M854.506 233.252c12.563 12.429 12.672 32.691 0.243 45.254l-474.877 480c-6.013 6.077-14.208 9.498-22.755 9.494-8.55-0.003-16.742-3.427-22.752-9.507l-165.126-167.088c-12.423-12.57-12.303-32.832 0.268-45.254s32.831-12.304 45.254 0.269l142.375 144.067 452.115-456.992c12.429-12.564 32.691-12.672 45.254-0.243z" + ], + "attrs": [{ "fill": "rgb(108, 114, 122)" }], + "isMulticolor": false, + "isMulticolor2": false, + "colorPermutations": { + "1081141221158162168120320620912282312341243190812456992125519219212552552551291162451452241651699010019902101": [ + { "f": 2 } + ] + }, + "tags": ["check"], + "grid": 0 + }, + "attrs": [{ "fill": "rgb(108, 114, 122)" }], + "properties": { "order": 202, "id": 57, "name": "check", "prevSize": 32, "code": 59699 }, + "setIdx": 0, + "setId": 4, + "iconIdx": 63 + }, + { + "icon": { + "paths": [ + "M281.372 436.042c12.497-12.499 32.758-12.499 45.255 0l185.373 185.373 185.373-185.373c12.496-12.499 32.758-12.499 45.254 0 12.496 12.496 12.496 32.758 0 45.254l-208 208c-12.496 12.496-32.758 12.496-45.254 0l-208-208c-12.497-12.496-12.497-32.758 0-45.254z" + ], + "attrs": [{ "fill": "rgb(108, 114, 122)" }], + "isMulticolor": false, + "isMulticolor2": false, + "colorPermutations": { + "1081141221158162168120320620912282312341243190812456992125519219212552552551291162451452241651699010019902101": [ + { "f": 2 } + ] + }, + "tags": ["chevron-down"], + "grid": 0 + }, + "attrs": [{ "fill": "rgb(108, 114, 122)" }], + "properties": { "order": 203, "id": 58, "name": "chevron-down", "prevSize": 32, "code": 59700 }, + "setIdx": 0, + "setId": 4, + "iconIdx": 64 + }, + { + "icon": { + "paths": [ + "M670.17 183.165c16.662 16.662 16.662 43.677 0 60.34l-268.496 268.495 268.496 268.499c16.662 16.662 16.662 43.677 0 60.339s-43.677 16.662-60.339 0l-298.668-298.669c-8.002-8-12.497-18.851-12.497-30.17 0-11.315 4.495-22.166 12.497-30.17l298.668-298.666c16.662-16.662 43.677-16.662 60.339 0z" + ], + "attrs": [{ "fill": "rgb(108, 114, 122)" }], + "isMulticolor": false, + "isMulticolor2": false, + "colorPermutations": { + "1081141221158162168120320620912282312341243190812456992125519219212552552551291162451452241651699010019902101": [ + { "f": 2 } + ] + }, + "tags": ["chevron-left-big"], + "grid": 0 + }, + "attrs": [{ "fill": "rgb(108, 114, 122)" }], + "properties": { "order": 204, "id": 59, "name": "chevron-left-big", "prevSize": 32, "code": 59701 }, + "setIdx": 0, + "setId": 4, + "iconIdx": 65 + }, + { + "icon": { + "paths": [ + "M587.962 281.372c12.496 12.497 12.496 32.758 0 45.255l-185.373 185.373 185.373 185.373c12.496 12.496 12.496 32.758 0 45.254-12.499 12.496-32.758 12.496-45.258 0l-208-208c-12.496-12.496-12.496-32.758 0-45.254l208-208c12.499-12.497 32.758-12.497 45.258 0z" + ], + "attrs": [{ "fill": "rgb(108, 114, 122)" }], + "isMulticolor": false, + "isMulticolor2": false, + "colorPermutations": { + "1081141221158162168120320620912282312341243190812456992125519219212552552551291162451452241651699010019902101": [ + { "f": 2 } + ] + }, + "tags": ["chevron-left"], + "grid": 0 + }, + "attrs": [{ "fill": "rgb(108, 114, 122)" }], + "properties": { "order": 205, "id": 60, "name": "chevron-left", "prevSize": 32, "code": 59702 }, + "setIdx": 0, + "setId": 4, + "iconIdx": 66 + }, + { + "icon": { + "paths": [ + "M436.038 742.627c-12.496-12.496-12.496-32.758 0-45.254l185.373-185.373-185.373-185.373c-12.496-12.497-12.496-32.758 0-45.254 12.499-12.497 32.758-12.497 45.254 0l208 208c12.499 12.496 12.499 32.758 0 45.254l-207.997 208c-12.499 12.496-32.758 12.496-45.258 0z" + ], + "attrs": [{ "fill": "rgb(108, 114, 122)" }], + "isMulticolor": false, + "isMulticolor2": false, + "colorPermutations": { + "1081141221158162168120320620912282312341243190812456992125519219212552552551291162451452241651699010019902101": [ + { "f": 2 } + ] + }, + "tags": ["chevron-right"], + "grid": 0 + }, + "attrs": [{ "fill": "rgb(108, 114, 122)" }], + "properties": { "order": 206, "id": 61, "name": "chevron-right", "prevSize": 32, "code": 59703 }, + "setIdx": 0, + "setId": 4, + "iconIdx": 67 + }, + { + "icon": { + "paths": [ + "M742.627 587.958c-12.496 12.499-32.758 12.499-45.254 0l-185.373-185.373-185.373 185.373c-12.496 12.499-32.758 12.499-45.254 0-12.497-12.496-12.497-32.758 0-45.254l208-208c12.496-12.496 32.758-12.496 45.254 0l208 208c12.496 12.496 12.496 32.758 0 45.254z" + ], + "attrs": [{ "fill": "rgb(108, 114, 122)" }], + "isMulticolor": false, + "isMulticolor2": false, + "colorPermutations": { + "1081141221158162168120320620912282312341243190812456992125519219212552552551291162451452241651699010019902101": [ + { "f": 2 } + ] + }, + "tags": ["chevron-up"], + "grid": 0 + }, + "attrs": [{ "fill": "rgb(108, 114, 122)" }], + "properties": { "order": 207, "id": 62, "name": "chevron-up", "prevSize": 32, "code": 59704 }, + "setIdx": 0, + "setId": 4, + "iconIdx": 68 + }, + { + "icon": { + "paths": [ + "M512 864c194.403 0 352-157.597 352-352 0-46.522-9.024-90.931-25.418-131.581l48.518-48.518c26.211 54.496 40.899 115.581 40.899 180.099 0 229.75-186.25 416-416 416s-416-186.25-416-416c0-229.75 186.25-416 416-416 95.376 0 183.254 32.096 253.424 86.076l-45.712 45.712c-58.221-42.623-130.029-67.788-207.712-67.788-194.404 0-352 157.596-352 352s157.596 352 352 352zM902.63 230.623c12.496-12.499 12.493-32.76-0.006-45.255s-32.762-12.491-45.254 0.008l-345.386 345.503-105.341-105.491c-12.486-12.506-32.749-12.522-45.254-0.032-12.506 12.486-12.522 32.749-0.032 45.254l127.971 128.157c6 6.006 14.144 9.386 22.634 9.389 8.493 0 16.637-3.373 22.64-9.376l368.029-368.157z" + ], + "attrs": [{ "fill": "rgb(108, 114, 122)" }], + "isMulticolor": false, + "isMulticolor2": false, + "colorPermutations": { + "1081141221158162168120320620912282312341243190812456992125519219212552552551291162451452241651699010019902101": [ + { "f": 2 } + ] + }, + "tags": ["circle-check"], + "grid": 0 + }, + "attrs": [{ "fill": "rgb(108, 114, 122)" }], + "properties": { "order": 208, "id": 63, "name": "circle-check", "prevSize": 32, "code": 59705 }, + "setIdx": 0, + "setId": 4, + "iconIdx": 69 + }, + { + "icon": { + "paths": [ + "M608 192c0-53.019-42.979-96-96-96s-96 42.981-96 96h-192c-17.673 0-32 14.327-32 32v672c0 17.674 14.327 32 32 32h576c17.674 0 32-14.326 32-32v-672c0-17.673-14.326-32-32-32h-192zM256 864v-608h96v64c0 17.674 14.326 32 32 32h256c17.674 0 32-14.326 32-32v-64h96v608h-512zM512 224c17.674 0 32-14.327 32-32s-14.326-32-32-32c-17.674 0-32 14.327-32 32s14.326 32 32 32z" + ], + "attrs": [{ "fill": "rgb(108, 114, 122)" }], + "isMulticolor": false, + "isMulticolor2": false, + "colorPermutations": { + "1081141221158162168120320620912282312341243190812456992125519219212552552551291162451452241651699010019902101": [ + { "f": 2 } + ] + }, + "tags": ["clipboard"], + "grid": 0 + }, + "attrs": [{ "fill": "rgb(108, 114, 122)" }], + "properties": { "order": 209, "id": 64, "name": "clipboard", "prevSize": 32, "code": 59706 }, + "setIdx": 0, + "setId": 4, + "iconIdx": 70 + }, + { + "icon": { + "paths": [ + "M864 512c0 194.403-157.597 352-352 352s-352-157.597-352-352c0-194.404 157.596-352 352-352s352 157.596 352 352zM928 512c0-229.75-186.25-416-416-416s-416 186.25-416 416c0 229.75 186.25 416 416 416s416-186.25 416-416zM544 288c0-17.673-14.326-32-32-32s-32 14.327-32 32v224c0 8.486 3.373 16.627 9.373 22.627l96 96c12.496 12.496 32.758 12.496 45.254 0s12.496-32.758 0-45.254l-86.627-86.627v-210.746z" + ], + "attrs": [{ "fill": "rgb(108, 114, 122)" }], + "isMulticolor": false, + "isMulticolor2": false, + "colorPermutations": { + "1081141221158162168120320620912282312341243190812456992125519219212552552551291162451452241651699010019902101": [ + { "f": 2 } + ] + }, + "tags": ["clock"], + "grid": 0 + }, + "attrs": [{ "fill": "rgb(108, 114, 122)" }], + "properties": { "order": 210, "id": 65, "name": "clock", "prevSize": 32, "code": 59707 }, + "setIdx": 0, + "setId": 4, + "iconIdx": 71 + }, + { + "icon": { + "paths": [ + "M806.627 262.628c12.496-12.497 12.496-32.758 0-45.255s-32.758-12.497-45.254 0l-249.373 249.373-249.372-249.373c-12.497-12.497-32.758-12.497-45.255 0s-12.497 32.758 0 45.255l249.373 249.372-249.373 249.373c-12.497 12.496-12.497 32.758 0 45.254s32.758 12.496 45.255 0l249.372-249.373 249.373 249.373c12.496 12.496 32.758 12.496 45.254 0s12.496-32.758 0-45.254l-249.373-249.373 249.373-249.372z" + ], + "attrs": [{ "fill": "rgb(108, 114, 122)" }], + "isMulticolor": false, + "isMulticolor2": false, + "colorPermutations": { + "1081141221158162168120320620912282312341243190812456992125519219212552552551291162451452241651699010019902101": [ + { "f": 2 } + ] + }, + "tags": ["close"], + "grid": 0 + }, + "attrs": [{ "fill": "rgb(108, 114, 122)" }], + "properties": { "order": 211, "id": 66, "name": "close", "prevSize": 32, "code": 59708 }, + "setIdx": 0, + "setId": 4, + "iconIdx": 72 + }, + { + "icon": { + "paths": [ + "M273.129 356.678c6.747-28.298 25.696-52.004 51.21-67.152 25.6-15.2 56.323-20.858 84.698-14.53 27.642 6.163 55.117 24.12 74.874 60.339l22.541 41.325 30.134-36.16c27.238-32.689 85.126-39.713 134.714-14.064 23.562 12.186 42.208 30.618 52.064 53.488 9.654 22.406 12.112 51.898-1.434 89.149l-15.616 42.938h45.686c53.606 0 82.419 15.882 97.642 33.75 15.651 18.374 21.898 44.646 18.557 74.714-3.344 30.083-16.054 60.518-33.456 82.89-17.939 23.066-36.646 32.646-50.742 32.646h-543.998c-18.791 0-37.068-10.362-52.195-31.578-15.217-21.344-24.978-51.050-25.818-81.312-0.84-30.227 7.237-57.914 23.733-77.491 15.796-18.746 42.268-33.619 86.279-33.619h59.791l-33.165-49.75c-27.882-41.824-32.118-77.814-25.498-105.581zM518.218 272.084c-26.339-32.073-59.667-51.619-95.251-59.554-45.626-10.174-92.902-0.833-131.301 21.965-38.487 22.85-69.538 60.142-80.791 107.342-8.278 34.72-5.369 72.758 10.731 111.77-35.67 8.464-64.099 26.186-84.825 50.784-29.004 34.422-39.927 78.733-38.766 120.506 1.159 41.738 14.399 84.032 37.682 116.688 23.373 32.784 59.097 58.426 104.306 58.426h543.999c41.907 0 77.2-26.419 101.261-57.354 24.598-31.629 41.888-73.197 46.544-115.114 4.659-41.933-3.094-87.658-33.443-123.283-24.106-28.301-59.504-46.774-105.616-53.456 5.83-35.194 1.686-67.674-10.605-96.205-16.646-38.628-46.998-67.197-81.437-85.010-54.902-28.397-128.733-32.652-182.486 2.495zM512 437.331c17.674 0 32 14.33 32 32v53.328h53.334c17.674 0 32 14.33 32 32 0 17.674-14.326 32-32 32h-53.334v53.341c0 17.674-14.326 32-32 32s-32-14.326-32-32v-53.341h-53.331c-17.674 0-32-14.326-32-32 0-17.67 14.326-32 32-32h53.331v-53.328c0-17.67 14.326-32 32-32z" + ], + "attrs": [{ "fill": "rgb(108, 114, 122)" }], + "isMulticolor": false, + "isMulticolor2": false, + "colorPermutations": { + "1081141221158162168120320620912282312341243190812456992125519219212552552551291162451452241651699010019902101": [ + { "f": 2 } + ] + }, + "tags": ["cloud-connectivity"], + "grid": 0 + }, + "attrs": [{ "fill": "rgb(108, 114, 122)" }], + "properties": { "order": 212, "id": 67, "name": "cloud-connectivity", "prevSize": 32, "code": 59709 }, + "setIdx": 0, + "setId": 4, + "iconIdx": 73 + }, + { + "icon": { + "paths": [ + "M630.154 204.798c16.496 6.344 24.723 24.859 18.381 41.355l-213.334 554.667c-6.342 16.496-24.858 24.723-41.354 18.381-16.496-6.346-24.723-24.861-18.381-41.357l213.334-554.666c6.346-16.495 24.858-24.724 41.354-18.38zM321.293 361.37c12.499 12.499 12.499 32.758 0 45.258l-105.371 105.37 105.371 105.373c12.499 12.499 12.499 32.758 0 45.258-12.495 12.496-32.756 12.496-45.253 0l-128-128c-12.497-12.499-12.497-32.758 0-45.258l128-128c12.497-12.496 32.758-12.496 45.253 0zM702.707 361.37c12.496-12.496 32.758-12.496 45.254 0l128 128c12.496 12.499 12.496 32.758 0 45.258l-128 128c-12.496 12.496-32.758 12.496-45.254 0-12.499-12.499-12.499-32.758 0-45.258l105.373-105.373-105.373-105.37c-12.499-12.499-12.499-32.758 0-45.258z" + ], + "attrs": [{ "fill": "rgb(108, 114, 122)" }], + "isMulticolor": false, + "isMulticolor2": false, + "colorPermutations": { + "1081141221158162168120320620912282312341243190812456992125519219212552552551291162451452241651699010019902101": [ + { "f": 2 } + ] + }, + "tags": ["code"], + "grid": 0 + }, + "attrs": [{ "fill": "rgb(108, 114, 122)" }], + "properties": { "order": 213, "id": 68, "name": "code", "prevSize": 32, "code": 59710 }, + "setIdx": 0, + "setId": 4, + "iconIdx": 74 + }, + { + "icon": { + "paths": [ + "M770.704 224c17.674 0 32 14.327 32 32v544c0 17.674-14.326 32-32 32h-543.999c-17.673 0-32-14.326-32-32v-128c17.673 0 32-14.326 32-32s-14.327-32-32-32v-192c17.673 0 32-14.326 32-32s-14.327-32-32-32v-96c0-17.673 14.327-32 32-32h543.999zM130.705 608c-17.673 0-32 14.326-32 32s14.327 32 32 32v128c0 53.021 42.981 96 96 96h543.999c53.021 0 96-42.979 96-96v-544c0-53.019-42.979-96-96-96h-543.999c-53.019 0-96 42.981-96 96v96c-17.673 0-32 14.326-32 32s14.327 32 32 32v192zM427.91 514.266c13.315-3.568 27.309-3.789 40.73-0.643l31.52 7.389c8.73 2.045 17.83 1.904 26.49-0.416l22.186-5.942c14.285-3.827 29.328-4.042 43.683-0.675 40.429 9.475 69.325 45.584 69.325 87.277v24.336c0 31.811-25.789 57.6-57.6 57.6h-180.739c-31.811 0-57.6-25.789-57.6-57.6v-30.525c0-37.862 25.434-71.005 62.006-80.8zM456.957 563.472c-5.206-1.219-10.634-1.133-15.798 0.25-14.189 3.798-24.054 16.656-24.054 31.344v30.525c0 3.536 2.867 6.4 6.4 6.4h180.739c3.533 0 6.4-2.864 6.4-6.4v-24.336c0-17.75-12.365-33.341-29.808-37.427-6.186-1.45-12.662-1.35-18.752 0.282l-22.186 5.942c-16.813 4.502-34.474 4.781-51.421 0.81l-31.52-7.389zM539.155 420.48c0-13.962-11.318-25.28-25.28-25.28s-25.283 11.318-25.283 25.28c0 13.962 11.322 25.28 25.283 25.28s25.28-11.318 25.28-25.28zM590.355 420.48c0 42.24-34.243 76.48-76.48 76.48-42.24 0-76.483-34.24-76.483-76.48s34.243-76.48 76.483-76.48c42.237 0 76.48 34.24 76.48 76.48z" + ], + "width": 1056, + "attrs": [{ "fill": "rgb(108, 114, 122)" }], + "isMulticolor": false, + "isMulticolor2": false, + "colorPermutations": { + "1081141221158162168120320620912282312341243190812456992125519219212552552551291162451452241651699010019902101": [ + { "f": 2 } + ] + }, + "tags": ["contacts"], + "grid": 0 + }, + "attrs": [{ "fill": "rgb(108, 114, 122)" }], + "properties": { "order": 214, "id": 69, "name": "contacts", "prevSize": 32, "code": 59711 }, + "setIdx": 0, + "setId": 4, + "iconIdx": 75 + }, + { + "icon": { + "paths": [ + "M464 272c-35.347 0-64 28.654-64 64v480c0 35.347 28.653 64 64 64h352c35.347 0 64-28.653 64-64v-304c0-6.509-1.984-12.864-5.69-18.214l-134.458-194.215c-11.952-17.267-31.619-27.571-52.621-27.571h-223.232zM464 336h144v144c0 35.347 28.653 64 64 64h144v272h-352v-480zM672 480v-144h15.232l99.693 144h-114.925zM144 208c0-35.346 28.654-64 64-64h241.844c18.032 0 35.229 7.607 47.357 20.949l39.136 43.051h-328.336v480h128v64h-128c-35.346 0-64-28.653-64-64v-480z" + ], + "attrs": [{ "fill": "rgb(108, 114, 122)" }], + "isMulticolor": false, + "isMulticolor2": false, + "colorPermutations": { + "1081141221158162168120320620912282312341243190812456992125519219212552552551291162451452241651699010019902101": [ + { "f": 2 } + ] + }, + "tags": ["copy"], + "grid": 0 + }, + "attrs": [{ "fill": "rgb(108, 114, 122)" }], + "properties": { "order": 215, "id": 70, "name": "copy", "prevSize": 32, "code": 59712 }, + "setIdx": 0, + "setId": 4, + "iconIdx": 76 + }, + { + "icon": { + "paths": [ + "M824.682 183.521c-37.19-37.986-98.202-38.583-136.131-1.333l-348.48 342.237c-12.739 12.512-21.733 28.32-25.976 45.654l-23.681 96.749c-6.94 28.355 16.754 54.845 45.747 51.142l90.691-11.578c20.224-2.582 39.104-11.52 53.907-25.52l360.486-340.922c38.986-36.868 40.173-98.482 2.637-136.82l-19.2-19.61zM733.485 227.821c12.643-12.417 32.979-12.218 45.376 0.444l19.2 19.61c12.512 12.78 12.115 33.317-0.88 45.607l-69.965 66.169-63.446-63.364 69.715-68.466zM618.074 341.162l62.592 62.512-243.971 230.73c-4.934 4.666-11.229 7.645-17.968 8.506l-58.307 7.443 15.926-65.075c1.414-5.779 4.413-11.046 8.659-15.219l233.069-228.896zM193.608 265.602c0-17.673 14.346-32 32.042-32h281.332c17.696 0 32.042-14.327 32.042-32s-14.346-32-32.042-32h-281.332c-53.089 0-96.127 42.981-96.127 96v534.402c0 53.018 43.037 95.997 96.127 95.997h529.764c53.091 0 96.128-42.979 96.128-96v-279.414c0-17.67-14.346-32-32.042-32s-32.042 14.33-32.042 32v279.414c0 17.674-14.346 32-32.045 32h-529.764c-17.696 0-32.042-14.326-32.042-31.997v-534.402z" + ], + "width": 1056, + "attrs": [{ "fill": "rgb(108, 114, 122)" }], + "isMulticolor": false, + "isMulticolor2": false, + "colorPermutations": { + "1081141221158162168120320620912282312341243190812456992125519219212552552551291162451452241651699010019902101": [ + { "f": 2 } + ] + }, + "tags": ["create"], + "grid": 0 + }, + "attrs": [{ "fill": "rgb(108, 114, 122)" }], + "properties": { "order": 216, "id": 71, "name": "create", "prevSize": 32, "code": 59713 }, + "setIdx": 0, + "setId": 4, + "iconIdx": 77 + }, + { + "icon": { + "paths": [ + "M717.373 298.663c0-17.673-14.326-32-32-32s-32 14.327-32 32v426.665c0 17.674 14.326 32 32 32s32-14.326 32-32v-426.665z", + "M514.704 394.672c17.674 0 32 14.326 32 32v298.666c0 17.674-14.326 32-32 32s-32-14.326-32-32v-298.666c0-17.674 14.326-32 32-32z", + "M376.038 554.672c0-17.674-14.326-32-32-32s-32 14.326-32 32v170.669c0 17.67 14.327 32 32 32s32-14.33 32-32v-170.669z", + "M130.705 199.556v624.889c0 39.52 32.036 71.555 71.556 71.555h624.888c39.52 0 71.555-32.035 71.555-71.555v-624.889c0-39.519-32.035-71.556-71.555-71.556h-624.888c-39.519 0-71.556 32.036-71.556 71.556zM202.26 192h624.888c4.173 0 7.555 3.383 7.555 7.556v624.889c0 4.173-3.382 7.555-7.555 7.555h-624.888c-4.173 0-7.556-3.382-7.556-7.555v-624.889c0-4.173 3.383-7.556 7.556-7.556z" + ], + "width": 1056, + "attrs": [ + { "fill": "rgb(108, 114, 122)" }, + { "fill": "rgb(108, 114, 122)" }, + { "fill": "rgb(108, 114, 122)" }, + { "fill": "rgb(108, 114, 122)" } + ], + "isMulticolor": false, + "isMulticolor2": false, + "colorPermutations": { + "1081141221158162168120320620912282312341243190812456992125519219212552552551291162451452241651699010019902101": [ + { "f": 2 }, + { "f": 2 }, + { "f": 2 }, + { "f": 2 } + ] + }, + "tags": ["dashboard"], + "grid": 0 + }, + "attrs": [ + { "fill": "rgb(108, 114, 122)" }, + { "fill": "rgb(108, 114, 122)" }, + { "fill": "rgb(108, 114, 122)" }, + { "fill": "rgb(108, 114, 122)" } + ], + "properties": { "order": 217, "id": 72, "name": "dashboard", "prevSize": 32, "code": 59714 }, + "setIdx": 0, + "setId": 4, + "iconIdx": 78 + }, + { + "icon": { + "paths": [ + "M739.68 864v-448h-448.593v448h448.593zM227.003 864v-448c-35.393 0-64.084-28.653-64.084-64v-128c0-35.346 28.692-64 64.084-64h224.297c0-35.346 28.691-64 64.083-64 35.395 0 64.086 28.654 64.086 64h224.294c35.395 0 64.086 28.654 64.086 64v128c0 35.347-28.691 64-64.086 64v448c0 35.347-28.691 64-64.083 64h-448.593c-35.393 0-64.085-28.653-64.085-64zM803.763 224h-576.761v128h576.761v-128zM419.258 544v192c0 17.674 14.346 32 32.042 32s32.042-14.326 32.042-32v-192c0-17.674-14.346-32-32.042-32s-32.042 14.326-32.042 32zM579.469 512c17.696 0 32.042 14.326 32.042 32v192c0 17.674-14.346 32-32.042 32s-32.042-14.326-32.042-32v-192c0-17.674 14.346-32 32.042-32z" + ], + "width": 1056, + "attrs": [{ "fill": "rgb(108, 114, 122)" }], + "isMulticolor": false, + "isMulticolor2": false, + "colorPermutations": { + "1081141221158162168120320620912282312341243190812456992125519219212552552551291162451452241651699010019902101": [ + { "f": 2 } + ] + }, + "tags": ["delete"], + "grid": 0 + }, + "attrs": [{ "fill": "rgb(108, 114, 122)" }], + "properties": { "order": 218, "id": 73, "name": "delete", "prevSize": 32, "code": 59715 }, + "setIdx": 0, + "setId": 4, + "iconIdx": 79 + }, + { + "icon": { + "paths": [ + "M341.334 778.672c-17.674 0-32 14.326-32 32s14.327 32 32 32h341.334c17.67 0 32-14.326 32-32s-14.33-32-32-32h-341.334z", + "M85.334 298.672c0-70.692 57.308-128 128-128h597.335c70.691 0 128 57.308 128 128v298.666c0 70.694-57.309 128-128 128h-597.335c-70.692 0-128-57.306-128-128v-298.666zM213.334 234.672c-35.346 0-64 28.654-64 64v298.666c0 35.347 28.654 64 64 64h597.335c35.344 0 64-28.653 64-64v-298.666c0-35.347-28.656-64-64-64h-597.335z" + ], + "attrs": [{ "fill": "rgb(108, 114, 122)" }, { "fill": "rgb(108, 114, 122)" }], + "isMulticolor": false, + "isMulticolor2": false, + "colorPermutations": { + "1081141221158162168120320620912282312341243190812456992125519219212552552551291162451452241651699010019902101": [ + { "f": 2 }, + { "f": 2 } + ] + }, + "tags": ["desktop"], + "grid": 0 + }, + "attrs": [{ "fill": "rgb(108, 114, 122)" }, { "fill": "rgb(108, 114, 122)" }], + "properties": { "order": 219, "id": 74, "name": "desktop", "prevSize": 32, "code": 59716 }, + "setIdx": 0, + "setId": 4, + "iconIdx": 80 + }, + { + "icon": { + "paths": [ + "M325.837 160c0-17.673-14.347-32-32.043-32h-64.085c-17.696 0-32.042 14.327-32.042 32v64c0 17.673 14.346 32 32.042 32h64.085c17.696 0 32.043-14.327 32.043-32v-64zM325.837 586.666c0-17.674-14.347-32-32.043-32h-64.085c-17.696 0-32.042 14.326-32.042 32v64c0 17.674 14.346 32 32.042 32h64.085c17.696 0 32.043-14.326 32.043-32v-64zM454.006 160c0-17.673 14.346-32 32.042-32h64.083c17.696 0 32.042 14.327 32.042 32v64c0 17.673-14.346 32-32.042 32h-64.083c-17.696 0-32.042-14.327-32.042-32v-64zM582.173 373.334c0-17.674-14.346-32-32.042-32h-64.083c-17.696 0-32.042 14.326-32.042 32v64c0 17.674 14.346 32 32.042 32h64.083c17.696 0 32.042-14.326 32.042-32v-64zM454.006 586.666c0-17.674 14.346-32 32.042-32h64.083c17.696 0 32.042 14.326 32.042 32v64c0 17.674-14.346 32-32.042 32h-64.083c-17.696 0-32.042-14.326-32.042-32v-64zM582.173 800c0-17.674-14.346-32-32.042-32h-64.083c-17.696 0-32.042 14.326-32.042 32v64c0 17.674 14.346 32 32.042 32h64.083c17.696 0 32.042-14.326 32.042-32v-64zM710.342 160c0-17.673 14.346-32 32.045-32h64.083c17.696 0 32.042 14.327 32.042 32v64c0 17.673-14.346 32-32.042 32h-64.083c-17.699 0-32.045-14.327-32.045-32v-64zM838.512 373.334c0-17.674-14.346-32-32.042-32h-64.083c-17.699 0-32.045 14.326-32.045 32v64c0 17.674 14.346 32 32.045 32h64.083c17.696 0 32.042-14.326 32.042-32v-64zM710.342 586.666c0-17.674 14.346-32 32.045-32h64.083c17.696 0 32.042 14.326 32.042 32v64c0 17.674-14.346 32-32.042 32h-64.083c-17.699 0-32.045-14.326-32.045-32v-64zM325.837 373.334c0-17.674-14.347-32-32.043-32h-64.085c-17.696 0-32.042 14.326-32.042 32v64c0 17.674 14.346 32 32.042 32h64.085c17.696 0 32.043-14.326 32.043-32v-64z" + ], + "width": 1056, + "attrs": [{ "fill": "rgb(108, 114, 122)" }], + "isMulticolor": false, + "isMulticolor2": false, + "colorPermutations": { + "1081141221158162168120320620912282312341243190812456992125519219212552552551291162451452241651699010019902101": [ + { "f": 2 } + ] + }, + "tags": ["dialpad"], + "grid": 0 + }, + "attrs": [{ "fill": "rgb(108, 114, 122)" }], + "properties": { "order": 220, "id": 75, "name": "dialpad", "prevSize": 32, "code": 59717 }, + "setIdx": 0, + "setId": 4, + "iconIdx": 81 + }, + { + "icon": { + "paths": [ + "M514.704 96c80.096 0 154.906 22.636 218.378 61.859l-46.746 46.746c-24.739-13.843-51.322-24.785-79.286-32.368 12.166 22.395 23.078 49.095 32.403 79.249l-51.997 51.999c-5.654-22.994-12.17-44.005-19.347-62.666-12.822-33.339-26.522-55.927-38.474-69.070-8.4-9.235-13.43-11.291-14.928-11.698-1.501 0.407-6.531 2.463-14.931 11.698-11.949 13.143-25.651 35.731-38.474 69.070-16.298 42.377-29.174 96.867-36.339 159.18h65.974l-63.997 64h-7.117c-0.115 2.47-0.221 4.95-0.32 7.437l-64.538 64.538c-0.173-7.933-0.259-15.926-0.259-23.974 0-16.234 0.355-32.25 1.053-48h-189.81c-2.14 15.696-3.245 31.718-3.245 48 0 33.28 4.619 65.485 13.251 96h106.984l-64 64h-17.852c2.004 3.92 4.078 7.798 6.223 11.629l-46.746 46.749c-39.223-63.475-61.859-138.282-61.859-218.378 0-229.75 186.25-416 415.999-416zM868.845 293.623l-46.746 46.748c10.56 18.87 19.434 38.816 26.413 59.629h-86.045l-64 64h164.992c2.141 15.696 3.245 31.718 3.245 48 0 33.28-4.618 65.485-13.248 96h-183.030c2.8-30.816 4.282-62.957 4.282-96 0-8.045-0.090-16.042-0.262-23.974l-64.538 64.534c-0.752 19.008-2.022 37.523-3.763 55.44h-51.677l-64 64h107.091c-7.37 42.458-17.488 80.083-29.45 111.184-12.822 33.338-26.522 55.926-38.474 69.069-8.397 9.235-13.43 11.29-14.928 11.699-1.501-0.41-6.531-2.464-14.931-11.699-11.949-13.142-25.651-35.731-38.474-69.069-7.178-18.662-13.693-39.677-19.347-62.669l-52 51.997c9.328 30.154 20.24 56.854 32.406 79.251-27.965-7.584-54.547-18.525-79.286-32.368l-46.747 46.746c63.348 39.146 137.985 61.77 217.899 61.859h0.957c229.53-0.259 415.52-186.41 415.52-416 0-80.096-22.634-154.902-61.859-218.377zM422.362 172.237c-113.55 30.788-204.31 116.98-241.464 227.763h179.676c10-93.226 32.176-173.252 61.789-227.763zM607.050 851.763c24.397-44.902 43.741-107.117 55.395-179.763h165.878c-44.653 87.35-124.723 153.584-221.274 179.763zM828.077 153.372c12.499-12.497 32.758-12.497 45.254 0 12.499 12.497 12.499 32.758 0 45.255l-671.999 672c-12.497 12.496-32.758 12.496-45.255 0s-12.497-32.758 0-45.254l671.999-672z" + ], + "width": 1056, + "attrs": [{ "fill": "rgb(108, 114, 122)" }], + "isMulticolor": false, + "isMulticolor2": false, + "colorPermutations": { + "1081141221158162168120320620912282312341243190812456992125519219212552552551291162451452241651699010019902101": [ + { "f": 2 } + ] + }, + "tags": ["directory-disabled"], + "grid": 0 + }, + "attrs": [{ "fill": "rgb(108, 114, 122)" }], + "properties": { "order": 221, "id": 76, "name": "directory-disabled", "prevSize": 32, "code": 59718 }, + "setIdx": 0, + "setId": 4, + "iconIdx": 82 + }, + { + "icon": { + "paths": [ + "M866.493 512c0 33.28-4.624 65.485-13.267 96h-183.27c2.803-30.816 4.285-62.957 4.285-96 0-16.234-0.358-32.25-1.053-48h190.058c2.141 15.696 3.248 31.718 3.248 48zM609.037 464c0.736 15.67 1.12 31.686 1.12 48 0 33.398-1.606 65.555-4.57 96h-183.117c-2.96-30.445-4.566-62.602-4.566-96 0-16.314 0.381-32.33 1.12-48h190.013zM668.368 400c-10.013-93.226-32.218-173.252-61.872-227.763 113.699 30.788 204.579 116.981 241.782 227.763h-179.91zM421.565 172.237c-29.654 54.51-51.859 134.537-61.872 227.763h-179.913c37.204-110.782 128.083-196.975 241.785-227.763zM424.17 400c7.171-62.314 20.067-116.804 36.387-159.18 12.838-33.339 26.557-55.927 38.525-69.070 8.41-9.235 13.446-11.291 14.947-11.698 1.501 0.407 6.541 2.463 14.95 11.698 11.965 13.143 25.683 35.731 38.525 69.070 16.32 42.377 29.213 96.867 36.387 159.18h-179.722zM354.874 464c-0.698 15.75-1.056 31.766-1.056 48 0 33.043 1.485 65.184 4.288 96h-183.274c-8.643-30.515-13.268-62.72-13.268-96 0-16.282 1.107-32.304 3.249-48h190.060zM366.096 672c11.667 72.646 31.040 134.861 55.466 179.763-96.675-26.179-176.853-92.413-221.565-179.763h166.099zM514.509 928c229.834-0.259 416.070-186.41 416.070-416 0-229.75-186.496-416-416.55-416s-416.549 186.25-416.549 416c0 229.59 186.237 415.741 416.073 416 0.16 0 0.317 0 0.477 0s0.32 0 0.48 0zM606.496 851.763c24.426-44.902 43.798-107.117 55.466-179.763h166.099c-44.71 87.35-124.886 153.584-221.565 179.763zM596.992 672c-7.379 42.458-17.51 80.083-29.488 111.184-12.842 33.338-26.56 55.926-38.525 69.069-8.41 9.235-13.45 11.29-14.95 11.699-1.501-0.41-6.538-2.464-14.947-11.699-11.968-13.142-25.686-35.731-38.525-69.069-11.978-31.101-22.112-68.726-29.491-111.184h165.926z" + ], + "width": 1056, + "attrs": [{ "fill": "rgb(108, 114, 122)" }], + "isMulticolor": false, + "isMulticolor2": false, + "colorPermutations": { + "1081141221158162168120320620912282312341243190812456992125519219212552552551291162451452241651699010019902101": [ + { "f": 2 } + ] + }, + "tags": ["directory"], + "grid": 0 + }, + "attrs": [{ "fill": "rgb(108, 114, 122)" }], + "properties": { "order": 222, "id": 77, "name": "directory", "prevSize": 32, "code": 59719 }, + "setIdx": 0, + "setId": 4, + "iconIdx": 83 + }, + { + "icon": { + "paths": [ + "M561.667 127.992c-121.696 0-200.973 50.509-248.813 115.801-46.216 63.073-61.638 137.752-61.933 188.616-8.705 98.746 28.601 172.896 89.422 223.469 59.686 49.626 140.202 75.258 217.85 83.738 77.75 8.486 161.715 1.197 227.856-12.547 33.066-6.87 62.774-15.581 85.642-25.331 11.366-4.848 22.029-10.368 30.797-16.669 7.875-5.661 18.541-14.976 23.242-28.835 7.286-21.475-3.133-38.784-11.965-48.102-8.41-8.877-19.427-15.405-28.24-20.016-9.306-4.867-19.379-9.206-27.533-12.707-8.973-3.856-14.858-6.4-18.56-8.432-4.845-2.662-8.842-5.088-12.026-7.203 20.256-47.142 31.549-77.043 37.696-99.19 7.293-26.272 7.315-41.725 7.315-58.909 0-21.523-9.603-88.542-52.81-151.108-44.701-64.73-124.074-122.573-257.939-122.573zM314.916 433.898c0-40.416 12.607-101.84 49.564-152.277 35.782-48.836 95.882-89.628 197.187-89.628 112.086 0 172.090 46.886 205.277 94.94 34.678 50.219 41.472 104.040 41.472 114.741v0.198c0 14.918 0 23.638-4.982 41.594-5.491 19.779-16.963 50.189-41.539 106.538-5.802 13.296-2.762 25.77 1.155 33.754 3.664 7.478 9.005 13.242 13.331 17.261 8.835 8.211 20.653 15.686 32.224 22.045 6.618 3.638 15.238 7.334 22.563 10.477l1.562 0.672c5.904 2.534 11.52 4.97 16.688 7.418-0.909 0.406-1.856 0.819-2.835 1.238-17.741 7.568-43.078 15.206-73.555 21.539-60.947 12.666-138.064 19.21-207.888 11.587-69.926-7.635-136.982-30.336-183.878-69.328-45.459-37.798-73.674-92.064-66.481-169.821l0.136-1.469v-1.478zM819.162 553.354l-0.074-0.086c0 0.003 0.010 0.013 0.029 0.035 0.010 0.013 0.026 0.029 0.045 0.051z", + "M178.552 502.474c7.496-11.258 16.26-22.259 26.436-32.592 0.876 31.747 6.169 61.226 15.216 88.358-15.094 30.877-18.374 59.315-18.374 65.357v0.186c0 11.382 0 17.536 3.524 30.701 3.993 14.918 12.441 38.211 30.867 82.022 5.256 12.496 2.48 24.099-0.985 31.43-3.249 6.874-7.925 12.058-11.512 15.514-7.319 7.053-16.852 13.254-25.75 18.326-5.008 2.854-11.333 5.706-16.546 8.029 11.182 3.939 24.98 7.814 40.802 11.226 44.977 9.693 101.833 14.669 153.062 8.87 51.28-5.808 99.776-23.014 133.35-51.965l0.608-0.528c14.794 2.784 29.53 4.938 44.051 6.525 10.886 1.187 21.862 2.086 32.877 2.72-10.122 14.797-22.163 28.045-35.741 39.754-46.362 39.974-108.547 60.362-167.946 67.088-59.45 6.73-123.405 0.947-173.744-9.901-25.17-5.424-48.056-12.352-65.901-20.243-8.86-3.92-17.458-8.502-24.686-13.891-6.431-4.794-15.831-13.171-20.001-25.92-6.422-19.632 2.792-35.443 10.458-43.834 7.193-7.872 16.405-13.462 23.248-17.174 7.309-3.965 15.158-7.466 21.235-10.173 6.907-3.078 10.854-4.858 13.183-6.186 1.349-0.768 2.591-1.501 3.727-2.195-13.937-33.885-21.976-56.118-26.48-72.947-5.68-21.222-5.7-33.875-5.7-47.434 0-17.712 7.436-71.139 40.721-121.123zM155.337 797.248c-0.012 0 0.084 0.102 0.317 0.301-0.19-0.202-0.306-0.301-0.317-0.301zM179.587 737.085c-0.004 0-0.052 0.051-0.137 0.15l0.112-0.118c0.019-0.022 0.027-0.032 0.025-0.032z" + ], + "attrs": [{ "fill": "rgb(108, 114, 122)" }, { "fill": "rgb(108, 114, 122)" }], + "isMulticolor": false, + "isMulticolor2": false, + "colorPermutations": { + "1081141221158162168120320620912282312341243190812456992125519219212552552551291162451452241651699010019902101": [ + { "f": 2 }, + { "f": 2 } + ] + }, + "tags": ["discussions"], + "grid": 0 + }, + "attrs": [{ "fill": "rgb(108, 114, 122)" }, { "fill": "rgb(108, 114, 122)" }], + "properties": { "order": 223, "id": 78, "name": "discussions", "prevSize": 32, "code": 59720 }, + "setIdx": 0, + "setId": 4, + "iconIdx": 84 + }, + { + "icon": { + "paths": [ + "M160 256c0-17.673 14.327-32 32-32h640c17.674 0 32 14.327 32 32s-14.326 32-32 32h-640c-17.673 0-32-14.327-32-32zM160 421.162c0-17.674 14.327-32 32-32h640c17.674 0 32 14.326 32 32s-14.326 32-32 32h-640c-17.673 0-32-14.326-32-32zM160 602.838c0-17.674 14.327-32 32-32h640c17.674 0 32 14.326 32 32s-14.326 32-32 32h-640c-17.673 0-32-14.326-32-32zM160 768c0-17.674 14.327-32 32-32h344.614c17.674 0 32 14.326 32 32s-14.326 32-32 32h-344.614c-17.673 0-32-14.326-32-32z" + ], + "attrs": [{ "fill": "rgb(108, 114, 122)" }], + "isMulticolor": false, + "isMulticolor2": false, + "colorPermutations": { + "1081141221158162168120320620912282312341243190812456992125519219212552552551291162451452241651699010019902101": [ + { "f": 2 } + ] + }, + "tags": ["document"], + "grid": 0 + }, + "attrs": [{ "fill": "rgb(108, 114, 122)" }], + "properties": { "order": 224, "id": 79, "name": "document", "prevSize": 32, "code": 59721 }, + "setIdx": 0, + "setId": 4, + "iconIdx": 85 + }, + { + "icon": { + "paths": [ + "M128.169 352c0-17.674 14.346-32 32.042-32h704.928c17.696 0 32.045 14.326 32.045 32s-14.349 32-32.045 32h-704.928c-17.696 0-32.042-14.326-32.042-32zM213.615 522.669c0-17.674 14.346-32 32.042-32h534.036c17.699 0 32.045 14.326 32.045 32s-14.346 32-32.045 32h-534.036c-17.697 0-32.042-14.326-32.042-32zM331.104 661.331c-17.698 0-32.043 14.326-32.043 32s14.346 32 32.043 32h363.146c17.696 0 32.042-14.326 32.042-32s-14.346-32-32.042-32h-363.146z" + ], + "width": 1056, + "attrs": [{ "fill": "rgb(108, 114, 122)" }], + "isMulticolor": false, + "isMulticolor2": false, + "colorPermutations": { + "1081141221158162168120320620912282312341243190812456992125519219212552552551291162451452241651699010019902101": [ + { "f": 2 } + ] + }, + "tags": ["donner"], + "grid": 0 + }, + "attrs": [{ "fill": "rgb(108, 114, 122)" }], + "properties": { "order": 225, "id": 80, "name": "donner", "prevSize": 32, "code": 59722 }, + "setIdx": 0, + "setId": 4, + "iconIdx": 86 + }, + { + "icon": { + "paths": [ + "M273.128 356.678c-6.62 27.766-2.384 63.757 25.498 105.581l21.374 32.061v17.69h-48c-44.011 0-70.483 14.874-86.278 33.619-16.496 19.578-24.573 47.264-23.734 77.491 0.841 30.262 10.601 59.968 25.818 81.312 15.127 21.216 33.404 31.578 52.195 31.578h79.999v64h-80c-45.209 0-80.932-25.642-104.306-58.426-23.283-32.656-36.522-74.95-37.682-116.688-1.16-41.773 9.763-86.083 38.766-120.506 20.726-24.598 49.155-42.32 84.825-50.784-16.1-39.011-19.009-77.050-10.731-111.77 11.253-47.2 42.304-84.492 80.791-107.342 38.4-22.798 85.677-32.139 131.303-21.965 35.584 7.935 68.909 27.48 95.251 59.554 53.75-35.147 127.584-30.892 182.483-2.495 34.438 17.812 64.794 46.382 81.437 85.010 12.294 28.531 16.438 61.011 10.608 96.205 46.112 6.682 81.507 25.155 105.613 53.456 30.349 35.626 38.106 81.35 33.446 123.283-4.659 41.917-21.946 83.485-46.544 115.114-24.061 30.934-59.354 57.354-101.261 57.354h-80v-64h80c14.093 0 32.8-9.581 50.742-32.646 17.398-22.371 30.112-52.806 33.453-82.89 3.341-30.067-2.902-56.339-18.554-74.714-15.222-17.869-44.035-33.75-97.642-33.75h-45.686l15.613-42.938c13.546-37.251 11.091-66.742 1.437-89.149-9.856-22.87-28.502-41.302-52.064-53.488-49.587-25.649-107.475-18.625-134.717 14.064l-30.134 36.16-22.541-41.325c-19.757-36.219-47.232-54.175-74.87-60.339-28.378-6.327-59.098-0.669-84.701 14.53-25.512 15.148-44.461 38.855-51.208 67.152zM630.979 787.222c12.298-12.691 11.981-32.95-0.707-45.251-12.691-12.298-32.95-11.981-45.251 0.707l-41.021 42.326v-273.005c0-17.674-14.326-32-32-32s-32 14.326-32 32v273.005l-41.021-42.326c-12.301-12.688-32.56-13.005-45.251-0.707-12.688 12.301-13.005 32.56-0.707 45.251l96 99.050c6.029 6.218 14.32 9.728 22.979 9.728s16.95-3.51 22.979-9.728l96-99.050z" + ], + "attrs": [{ "fill": "rgb(108, 114, 122)" }], + "isMulticolor": false, + "isMulticolor2": false, + "colorPermutations": { + "1081141221158162168120320620912282312341243190812456992125519219212552552551291162451452241651699010019902101": [ + { "f": 2 } + ] + }, + "tags": ["download"], + "grid": 0 + }, + "attrs": [{ "fill": "rgb(108, 114, 122)" }], + "properties": { "order": 226, "id": 81, "name": "download", "prevSize": 32, "code": 59723 }, + "setIdx": 0, + "setId": 4, + "iconIdx": 87 + }, + { + "icon": { + "paths": [ + "M795.648 132.004c-25.027-25.027-65.603-25.027-90.63-0l-530.467 530.469c-9.577 9.574-15.873 21.939-17.985 35.318l-19.611 124.186c-1.386 8.771-0.942 17.299 1.006 25.261 7.597 31.037 38.083 53.44 72.291 48.038l124.184-19.613c13.379-2.112 25.744-8.41 35.322-17.984l530.467-530.47c12.512-12.513 18.768-28.914 18.768-45.316 0-10.379-2.506-20.757-7.517-30.15-2.906-5.451-6.656-10.57-11.251-15.164l-104.576-104.575zM630.675 296.979l119.658-119.658 104.576 104.574-119.658 119.657-104.576-104.573zM200.255 831.974l19.611-124.186 365.494-365.494 104.576 104.573-365.494 365.494-124.187 19.613z" + ], + "width": 1056, + "attrs": [{ "fill": "rgb(108, 114, 122)" }], + "isMulticolor": false, + "isMulticolor2": false, + "colorPermutations": { + "1081141221158162168120320620912282312341243190812456992125519219212552552551291162451452241651699010019902101": [ + { "f": 2 } + ] + }, + "tags": ["edit"], + "grid": 0 + }, + "attrs": [{ "fill": "rgb(108, 114, 122)" }], + "properties": { "order": 227, "id": 82, "name": "edit", "prevSize": 32, "code": 59724 }, + "setIdx": 0, + "setId": 4, + "iconIdx": 88 + }, + { + "icon": { + "paths": [ + "M864 512c0-194.404-157.597-352-352-352s-352 157.596-352 352c0 194.403 157.596 352 352 352s352-157.597 352-352zM928 512c0 229.75-186.25 416-416 416s-416-186.25-416-416c0-229.75 186.25-416 416-416s416 186.25 416 416zM400.166 480c-35.347 0-64-28.653-64-64s28.653-64 64-64c35.347 0 64 28.653 64 64s-28.653 64-64 64zM688.166 416c0-35.347-28.653-64-64-64s-64 28.653-64 64c0 35.347 28.653 64 64 64s64-28.653 64-64zM353.226 720c8.963 0 17.526-3.53 24.272-9.437 21.603-18.918 42.64-31.958 62.701-40.509 36.563-15.59 71.805-17.107 104.794-9.939 37.632 8.176 72.659 27.808 102.109 51.341 6.726 5.376 14.995 8.544 23.606 8.544 30.218 0 45.616-34.256 22.397-53.594-36.912-30.742-82.79-57.59-134.522-68.832-44.794-9.734-93.67-7.632-143.485 13.606-28.79 12.275-57.232 30.653-85.024 55.933-21.572 19.619-6.010 52.886 23.152 52.886z" + ], + "attrs": [{ "fill": "rgb(108, 114, 122)" }], + "isMulticolor": false, + "isMulticolor2": false, + "colorPermutations": { + "1081141221158162168120320620912282312341243190812456992125519219212552552551291162451452241651699010019902101": [ + { "f": 2 } + ] + }, + "tags": ["emoji-bad-mood"], + "grid": 0 + }, + "attrs": [{ "fill": "rgb(108, 114, 122)" }], + "properties": { "order": 228, "id": 83, "name": "emoji-bad-mood", "prevSize": 32, "code": 59725 }, + "setIdx": 0, + "setId": 4, + "iconIdx": 89 + }, + { + "icon": { + "paths": [ + "M864 512c0-194.404-157.597-352-352-352s-352 157.596-352 352c0 194.403 157.596 352 352 352s352-157.597 352-352zM928 512c0 229.75-186.25 416-416 416s-416-186.25-416-416c0-229.75 186.25-416 416-416s416 186.25 416 416zM400.166 480c-35.347 0-64-28.653-64-64s28.653-64 64-64c35.347 0 64 28.653 64 64s-28.653 64-64 64zM688.166 416c0-35.347-28.653-64-64-64s-64 28.653-64 64c0 35.347 28.653 64 64 64s64-28.653 64-64zM384 640h256c17.674 0 32 14.326 32 32s-14.326 32-32 32h-256c-17.674 0-32-14.326-32-32s14.326-32 32-32z" + ], + "attrs": [{ "fill": "rgb(108, 114, 122)" }], + "isMulticolor": false, + "isMulticolor2": false, + "colorPermutations": { + "1081141221158162168120320620912282312341243190812456992125519219212552552551291162451452241651699010019902101": [ + { "f": 2 } + ] + }, + "tags": ["emoji-neutral-mood"], + "grid": 0 + }, + "attrs": [{ "fill": "rgb(108, 114, 122)" }], + "properties": { "order": 229, "id": 84, "name": "emoji-neutral-mood", "prevSize": 32, "code": 59726 }, + "setIdx": 0, + "setId": 4, + "iconIdx": 90 + }, + { + "icon": { + "paths": [ + "M330.074 644.886c-21.572-19.619-6.010-52.886 23.152-52.886 8.963 0 17.526 3.53 24.272 9.437 21.603 18.918 42.64 31.958 62.701 40.509 36.563 15.59 71.805 17.107 104.794 9.939 37.632-8.176 72.659-27.808 102.109-51.341 6.726-5.376 14.995-8.544 23.606-8.544 30.218 0 45.616 34.256 22.397 53.594-36.912 30.742-82.79 57.59-134.522 68.832-44.794 9.734-93.67 7.632-143.485-13.606-28.79-12.275-57.232-30.653-85.024-55.933z", + "M400.17 480c35.344 0 64-28.653 64-64s-28.656-64-64-64c-35.347 0-64 28.653-64 64s28.653 64 64 64z", + "M624.17 480c35.344 0 64-28.653 64-64s-28.656-64-64-64c-35.347 0-64 28.653-64 64s28.653 64 64 64z", + "M928 512c0 229.75-186.25 416-416 416s-416-186.25-416-416c0-229.75 186.25-416 416-416s416 186.25 416 416zM864 512c0-194.404-157.597-352-352-352s-352 157.596-352 352c0 194.403 157.596 352 352 352s352-157.597 352-352z" + ], + "attrs": [ + { "fill": "rgb(108, 114, 122)" }, + { "fill": "rgb(108, 114, 122)" }, + { "fill": "rgb(108, 114, 122)" }, + { "fill": "rgb(108, 114, 122)" } + ], + "isMulticolor": false, + "isMulticolor2": false, + "colorPermutations": { + "1081141221158162168120320620912282312341243190812456992125519219212552552551291162451452241651699010019902101": [ + { "f": 2 }, + { "f": 2 }, + { "f": 2 }, + { "f": 2 } + ] + }, + "tags": ["emoji"], + "grid": 0 + }, + "attrs": [ + { "fill": "rgb(108, 114, 122)" }, + { "fill": "rgb(108, 114, 122)" }, + { "fill": "rgb(108, 114, 122)" }, + { "fill": "rgb(108, 114, 122)" } + ], + "properties": { "order": 230, "id": 85, "name": "emoji", "prevSize": 32, "code": 59727 }, + "setIdx": 0, + "setId": 4, + "iconIdx": 91 + }, + { + "icon": { + "paths": [ + "M655.744 512c88.365 0 160-71.635 160-160s-71.635-160-160-160c-88.368 0-160 71.635-160 160 0 26.934 6.653 52.314 18.41 74.582l-11.914 11.914 0.128 0.131-299.135 299.136c-3.533 9.926-6.41 20.976-7.738 31.606-1.652 13.219-0.563 22.966 1.874 28.938 1.768 4.333 4.22 7.232 10.772 9.014 8.316 2.262 24.518 2.794 52.822-5.501 8.524-3.808 27.721-16.285 45.132-35.382 18.18-19.939 29.648-41.856 29.648-62.438 0-15.642 11.309-28.992 26.736-31.565l91.75-15.293c3.766-2.656 18.768-15.693 10.134-58.867-2.099-10.49 1.184-21.338 8.749-28.902l88.198-88.195c26.467 19.379 59.114 30.822 94.432 30.822zM439.571 410.915c-5.104-18.771-7.827-38.525-7.827-58.915 0-123.712 100.288-224 224-224 123.709 0 224 100.288 224 224s-100.291 224-224 224c-29.29 0-57.264-5.619-82.906-15.843l-43.008 43.008c7.158 65.494-23.99 104.534-55.968 115.194l-2.384 0.794-74.854 12.477c-7.085 31.405-25.174 58.122-43.235 77.933-23.123 25.357-50.958 44.627-69.762 52.15l-1.324 0.528-1.365 0.41c-34.714 10.416-64.73 13.19-89.594 6.429-26.782-7.286-44.33-24.784-53.228-46.586-8.23-20.163-8.473-42.282-6.126-61.062 2.402-19.216 7.899-37.958 14.042-53.315 1.61-4.022 4.020-7.677 7.084-10.742l286.456-286.458zM623.744 336c0 26.509 21.488 48 48 48 26.509 0 48-21.491 48-48s-21.491-48-48-48c-26.512 0-48 21.49-48 48z" + ], + "width": 1056, + "attrs": [{ "fill": "rgb(108, 114, 122)" }], + "isMulticolor": false, + "isMulticolor2": false, + "colorPermutations": { + "1081141221158162168120320620912282312341243190812456992125519219212552552551291162451452241651699010019902101": [ + { "f": 2 } + ] + }, + "tags": ["encrypted"], + "grid": 0 + }, + "attrs": [{ "fill": "rgb(108, 114, 122)" }], + "properties": { "order": 231, "id": 86, "name": "encrypted", "prevSize": 32, "code": 59728 }, + "setIdx": 0, + "setId": 4, + "iconIdx": 92 + }, + { + "icon": { + "paths": [ + "M536.89 64c233.677 0 423.11 189.433 423.11 423.11h-423.11v-423.11z", + "M64 536.89c0-233.678 189.433-423.112 423.11-423.112v423.112h423.11c0 233.677-189.43 423.11-423.11 423.11-233.677 0-423.11-189.434-423.11-423.11z" + ], + "attrs": [{ "fill": "rgb(108, 114, 122)" }, { "fill": "rgb(108, 114, 122)" }], + "isMulticolor": false, + "isMulticolor2": false, + "colorPermutations": { + "1081141221158162168120320620912282312341243190812456992125519219212552552551291162451452241651699010019902101": [ + { "f": 2 }, + { "f": 2 } + ] + }, + "tags": ["engagement-dashboard"], + "grid": 0 + }, + "attrs": [{ "fill": "rgb(108, 114, 122)" }, { "fill": "rgb(108, 114, 122)" }], + "properties": { "order": 232, "id": 87, "name": "engagement-dashboard", "prevSize": 32, "code": 59729 }, + "setIdx": 0, + "setId": 4, + "iconIdx": 93 + }, + { + "icon": { + "paths": [ + "M416 586.445v177.232l75.514-62.928c11.869-9.888 29.104-9.888 40.973 0l75.514 62.928v-177.232c-29.098 13.821-61.645 21.555-96 21.555s-66.902-7.734-96-21.555zM352 540.768v291.232c0 12.416 7.184 23.712 18.426 28.979 11.245 5.267 24.522 3.552 34.061-4.397l107.514-89.594 107.514 89.594c9.539 7.949 22.816 9.664 34.061 4.397 11.242-5.267 18.426-16.563 18.426-28.979v-291.232c39.59-40.403 64-95.734 64-156.768 0-123.712-100.288-224.001-224-224.001s-224 100.288-224 224.001c0 61.034 24.41 116.365 64 156.768zM416 512.013l-0.016-0.013c-38.854-29.19-63.984-75.661-63.984-128 0-88.366 71.635-160.001 160-160.001s160 71.635 160 160.001c0 52.339-25.13 98.81-63.984 128l-0.016 0.013c-26.742 20.083-59.981 31.987-96 31.987s-69.258-11.904-96-31.987z" + ], + "attrs": [{ "fill": "rgb(108, 114, 122)" }], + "isMulticolor": false, + "isMulticolor2": false, + "colorPermutations": { + "1081141221158162168120320620912282312341243190812456992125519219212552552551291162451452241651699010019902101": [ + { "f": 2 } + ] + }, + "tags": ["enterprise-feature"], + "grid": 0 + }, + "attrs": [{ "fill": "rgb(108, 114, 122)" }], + "properties": { "order": 233, "id": 88, "name": "enterprise-feature", "prevSize": 32, "code": 59730 }, + "setIdx": 0, + "setId": 4, + "iconIdx": 94 + }, + { + "icon": { + "paths": [ + "M500.64 128c213.35 0 386.336 172.985 386.336 386.336 0 192.87-141.254 352.707-325.974 381.664v-269.958h90.022l17.114-111.706h-107.136v-72.47c0-11.462 2.102-22.822 7.274-32.544 2.474-4.656 5.651-8.934 9.635-12.666 9.866-9.245 24.688-15.152 46.058-15.152h48.733v-95.080c0 0-44.224-7.552-86.493-7.552-84.698 0-141.258 49.313-145.651 138.907-0.182 3.738-0.275 7.546-0.275 11.424v85.133h-98.122v111.706h98.122v269.958c-184.721-29.011-325.978-188.848-325.978-381.664 0-213.351 172.985-386.336 386.336-386.336z" + ], + "width": 1056, + "attrs": [{ "fill": "rgb(108, 114, 122)" }], + "isMulticolor": false, + "isMulticolor2": false, + "colorPermutations": { + "1081141221158162168120320620912282312341243190812456992125519219212552552551291162451452241651699010019902101": [ + { "f": 2 } + ] + }, + "tags": ["facebook-monochromatic"], + "grid": 0 + }, + "attrs": [{ "fill": "rgb(108, 114, 122)" }], + "properties": { "order": 30, "id": 89, "name": "facebook-monochromatic", "prevSize": 32, "code": 59731 }, + "setIdx": 0, + "setId": 4, + "iconIdx": 95 + }, + { + "icon": { + "paths": [ + "M373.334 448c0-17.674 14.326-32 32-32h213.331c17.674 0 32 14.326 32 32s-14.326 32-32 32h-213.331c-17.674 0-32-14.326-32-32z", + "M405.334 544c-17.674 0-32 14.326-32 32s14.326 32 32 32h213.331c17.674 0 32-14.326 32-32s-14.326-32-32-32h-213.331z", + "M256 128c-17.673 0-32 14.327-32 32v704c0 17.674 14.327 32 32 32h512c17.674 0 32-14.326 32-32v-501.744c0-6.672-2.083-13.174-5.962-18.602l-144.467-202.254c-6.006-8.409-15.706-13.4-26.038-13.4h-367.533zM736 372.509v459.491h-448v-640h319.066l128.934 180.509z" + ], + "attrs": [{ "fill": "rgb(108, 114, 122)" }, { "fill": "rgb(108, 114, 122)" }, { "fill": "rgb(108, 114, 122)" }], + "isMulticolor": false, + "isMulticolor2": false, + "colorPermutations": { + "1081141221158162168120320620912282312341243190812456992125519219212552552551291162451452241651699010019902101": [ + { "f": 2 }, + { "f": 2 }, + { "f": 2 } + ] + }, + "tags": ["file-document"], + "grid": 0 + }, + "attrs": [{ "fill": "rgb(108, 114, 122)" }, { "fill": "rgb(108, 114, 122)" }, { "fill": "rgb(108, 114, 122)" }], + "properties": { "order": 29, "id": 90, "name": "file-document", "prevSize": 32, "code": 59732 }, + "setIdx": 0, + "setId": 4, + "iconIdx": 96 + }, + { + "icon": { + "paths": [ + "M128 192c-17.673 0-32 14.327-32 32v576.019c0 17.674 14.327 32 32 32h768c17.674 0 32-14.326 32-32v-576.019c0-17.673-14.326-32-32-32h-768zM160 378.301v-122.301h149.333v122.301h-149.333zM160 442.301h149.333v141.722h-149.333v-141.722zM160 648.022h149.333v119.997h-149.333v-119.997zM373.334 768.019v-119.997h490.666v119.997h-490.666zM864 584.022h-490.666v-141.722h490.666v141.722zM864 378.301h-490.666v-122.301h490.666v122.301z" + ], + "attrs": [{ "fill": "rgb(108, 114, 122)" }], + "isMulticolor": false, + "isMulticolor2": false, + "colorPermutations": { + "1081141221158162168120320620912282312341243190812456992125519219212552552551291162451452241651699010019902101": [ + { "f": 2 } + ] + }, + "tags": ["file-sheet"], + "grid": 0 + }, + "attrs": [{ "fill": "rgb(108, 114, 122)" }], + "properties": { "order": 28, "id": 91, "name": "file-sheet", "prevSize": 32, "code": 59733 }, + "setIdx": 0, + "setId": 4, + "iconIdx": 97 + }, + { + "icon": { + "paths": [ + "M206.667 293.692c-30.421-42.402-0.116-101.442 52.070-101.442h518.572c51.174 0 81.706 57.026 53.334 99.615l-180.678 271.207v220.762c0 46.352-47.693 77.373-90.067 58.582l-121.424-53.85c-23.168-10.275-38.102-33.238-38.102-58.582v-166.304l-193.704-269.988zM777.309 256.334h-518.572l193.705 269.989c7.811 10.89 12.013 23.955 12.013 37.357v166.304l121.424 53.85v-220.762c0-12.646 3.741-25.008 10.752-35.533l180.678-271.205z" + ], + "width": 1056, + "attrs": [{ "fill": "rgb(108, 114, 122)" }], + "isMulticolor": false, + "isMulticolor2": false, + "colorPermutations": { + "1081141221158162168120320620912282312341243190812456992125519219212552552551291162451452241651699010019902101": [ + { "f": 2 } + ] + }, + "tags": ["filter"], + "grid": 0 + }, + "attrs": [{ "fill": "rgb(108, 114, 122)" }], + "properties": { "order": 27, "id": 92, "name": "filter", "prevSize": 32, "code": 59734 }, + "setIdx": 0, + "setId": 4, + "iconIdx": 98 + }, + { + "icon": { + "paths": [ + "M623.091 896c-2.806 0-5.296-0.624-7.168-0.938-62-16.858-102.816-39.648-145.811-80.858-55.149-54.010-85.37-125.814-85.37-202.301 0-65.875 56.704-119.571 126.496-119.571s126.496 53.696 126.496 119.571c0 34.963 31.469 63.373 69.792 63.373s69.789-28.41 69.789-63.373c0-135.808-119.642-246.637-266.701-246.637-104.998 0-200.338 57.133-243.334 145.795-14.332 29.347-21.498 63.066-21.498 100.842 0 28.72 2.492 73.363 24.925 131.744 2.804 7.181 2.492 14.675-0.623 21.856-3.116 6.867-9.035 11.862-16.201 14.358-2.804 1.251-6.231 1.562-9.659 1.562-11.84 0-22.433-7.181-26.484-18.106-19.005-50.266-28.353-99.904-28.353-151.728 0-46.205 9.036-88.352 26.795-125.504 52.343-108.019 167.936-177.638 294.432-177.638 178.528 0 323.718 135.804 323.718 302.828 0 65.875-56.704 119.571-126.806 119.571s-126.81-53.696-126.81-119.571c0-34.963-31.469-63.373-69.792-63.373-38.634 0-69.789 28.41-69.789 63.373 0 61.504 24.301 119.261 68.544 162.342 35.206 34.029 68.858 53.072 120.576 67.123 7.168 1.872 13.398 6.557 17.136 13.11 3.741 6.557 4.675 14.362 2.806 21.229-2.806 11.866-14.022 20.918-27.107 20.918zM426.803 888.195c-7.789 0-15.267-3.123-20.253-8.742-33.338-32.781-51.718-54.010-77.891-100.525-26.795-47.142-41.127-105.21-41.127-167.338 0-116.448 100.948-211.357 224.951-211.357s224.954 94.909 224.954 211.357c0 15.61-12.464 28.096-28.352 28.096-15.891 0-28.666-12.173-28.666-28.096 0-85.542-75.398-155.162-168.246-155.162s-168.246 69.619-168.246 155.162c0 52.448 11.84 100.528 34.272 139.552 23.366 41.52 38.947 59.005 68.858 88.662 10.902 11.238 10.902 28.723 0 39.648-5.92 5.933-13.088 8.742-20.253 8.742zM699.738 818.886c-47.36 0-88.797-11.862-123.382-34.963-59.197-39.651-94.717-103.962-94.717-172.333 0-15.61 12.464-28.099 28.352-28.099 15.891 0 28.355 12.49 28.355 28.099 0 49.638 26.17 96.781 69.789 125.501 25.238 16.861 55.149 24.976 91.603 24.976 7.789 0 22.432-0.934 38.010-3.744 1.558-0.314 3.427-0.314 4.986-0.314 13.709 0 25.238 9.99 27.728 23.414 1.248 7.181-0.31 14.672-4.362 20.605-4.362 6.243-10.902 10.614-18.694 11.862-23.366 4.685-43.93 4.995-47.667 4.995zM188.765 435.824c-5.608 0-11.217-1.562-16.202-4.995-6.543-4.058-10.593-10.614-12.151-18.106-1.246-7.494 0.311-14.986 4.985-21.232 38.635-53.696 87.862-95.843 146.125-125.501 60.132-30.595 129.613-46.829 200.961-46.829 71.037 0 140.205 15.922 200.029 46.205 58.573 29.659 107.802 71.492 146.125 124.567 4.362 5.93 6.23 13.424 4.986 20.915-1.248 7.494-5.61 14.048-11.84 18.419-4.986 3.437-10.595 4.995-16.515 4.995-9.034 0-17.757-4.371-23.056-11.862-33.338-45.891-75.709-82.109-125.562-107.083-52.342-26.224-112.787-40.273-174.477-40.273-62.314 0-122.758 14.049-175.101 40.585-49.852 25.913-92.537 62.128-126.186 108.643-3.739 6.87-12.463 11.552-22.121 11.552zM733.696 239.141c-4.672 0-9.347-1.249-13.395-3.434-71.35-35.902-133.354-51.512-207.504-51.512-74.467 0-144.256 17.483-207.817 51.824-4.050 2.185-8.724 3.122-13.397 3.122-10.282 0-19.629-5.62-24.925-14.361-3.739-6.556-4.673-14.361-2.492-21.541s7.166-13.424 13.709-16.859c72.594-38.712 151.733-58.38 234.924-58.38 82.563 0 154.848 17.795 233.987 58.068 6.854 3.434 11.84 9.366 14.33 16.859 2.182 7.18 1.248 14.673-2.179 21.229-4.986 9.054-14.643 14.985-25.238 14.985z" + ], + "attrs": [{ "fill": "rgb(108, 114, 122)" }], + "isMulticolor": false, + "isMulticolor2": false, + "colorPermutations": { + "1081141221158162168120320620912282312341243190812456992125519219212552552551291162451452241651699010019902101": [ + { "f": 2 } + ] + }, + "tags": ["fingerprint"], + "grid": 0 + }, + "attrs": [{ "fill": "rgb(108, 114, 122)" }], + "properties": { "order": 26, "id": 93, "name": "fingerprint", "prevSize": 32, "code": 59735 }, + "setIdx": 0, + "setId": 4, + "iconIdx": 99 + }, + { + "icon": { + "paths": [ + "M266.667 170.664c0-17.673 14.327-32 32-32h500.623c12.122 0 23.2 6.848 28.621 17.689s4.253 23.814-3.021 33.511l-122.134 162.843 122.134 162.845c7.274 9.696 8.442 22.672 3.021 33.51-5.421 10.842-16.499 17.69-28.621 17.69h-468.624v286.579c0 17.674-14.325 32-31.999 32s-32-14.326-32-32v-682.667zM330.666 502.752h404.624l-98.134-130.845c-8.531-11.376-8.531-27.021 0-38.4l98.134-130.843h-404.624v300.088z" + ], + "attrs": [{ "fill": "rgb(108, 114, 122)" }], + "isMulticolor": false, + "isMulticolor2": false, + "colorPermutations": { + "1081141221158162168120320620912282312341243190812456992125519219212552552551291162451452241651699010019902101": [ + { "f": 2 } + ] + }, + "tags": ["flag"], + "grid": 0 + }, + "attrs": [{ "fill": "rgb(108, 114, 122)" }], + "properties": { "order": 25, "id": 94, "name": "flag", "prevSize": 32, "code": 59736 }, + "setIdx": 0, + "setId": 4, + "iconIdx": 100 + }, + { + "icon": { + "paths": [ + "M140.020 213.336c0-17.673 14.327-32 32-32h234.057c7.181 0 14.157 2.416 19.798 6.86l88.813 69.94h339.997c17.674 0 32 14.327 32 32v520.533c0 17.674-14.326 32-32 32h-682.665c-17.673 0-32-14.326-32-32v-597.333zM204.020 245.336v533.333h618.665v-456.534h-319.085c-7.181 0-14.154-2.415-19.798-6.858l-88.813-69.94h-190.969z" + ], + "width": 1056, + "attrs": [{ "fill": "rgb(108, 114, 122)" }], + "isMulticolor": false, + "isMulticolor2": false, + "colorPermutations": { + "1081141221158162168120320620912282312341243190812456992125519219212552552551291162451452241651699010019902101": [ + { "f": 2 } + ] + }, + "tags": ["folder"], + "grid": 0 + }, + "attrs": [{ "fill": "rgb(108, 114, 122)" }], + "properties": { "order": 24, "id": 95, "name": "folder", "prevSize": 32, "code": 59737 }, + "setIdx": 0, + "setId": 4, + "iconIdx": 101 + }, + { + "icon": { + "paths": [ + "M370.704 544c0-17.674-14.326-32-32-32s-31.999 14.326-31.999 32v32h-32c-17.673 0-32 14.326-32 32s14.327 32 32 32h32v32c0 17.674 14.325 32 31.999 32s32-14.326 32-32v-32h32c17.674 0 32-14.326 32-32s-14.326-32-32-32h-32v-32z", + "M746.704 624c30.928 0 56-25.072 56-56s-25.072-56-56-56c-30.928 0-56 25.072-56 56s25.072 56 56 56z", + "M674.704 664c0 30.928-25.072 56-56 56s-56-25.072-56-56c0-30.928 25.072-56 56-56s56 25.072 56 56z", + "M706.704 128c0-17.673-14.326-32-32-32s-32 14.327-32 32v96h-128c-17.674 0-32 14.327-32 32v96h-191.999c-106.038 0-192 85.962-192 192v128c0 106.038 85.961 192 192 192h447.999c106.038 0 192-85.962 192-192v-128c0-106.038-85.962-192-192-192h-192v-64h128c17.674 0 32-14.327 32-32v-128zM866.704 544v128c0 70.691-57.306 128-128 128h-447.999c-70.692 0-128-57.309-128-128v-128c0-70.691 57.308-128 128-128h447.999c70.694 0 128 57.309 128 128z" + ], + "width": 1056, + "attrs": [ + { "fill": "rgb(108, 114, 122)" }, + { "fill": "rgb(108, 114, 122)" }, + { "fill": "rgb(108, 114, 122)" }, + { "fill": "rgb(108, 114, 122)" } + ], + "isMulticolor": false, + "isMulticolor2": false, + "colorPermutations": { + "1081141221158162168120320620912282312341243190812456992125519219212552552551291162451452241651699010019902101": [ + { "f": 2 }, + { "f": 2 }, + { "f": 2 }, + { "f": 2 } + ] + }, + "tags": ["game"], + "grid": 0 + }, + "attrs": [ + { "fill": "rgb(108, 114, 122)" }, + { "fill": "rgb(108, 114, 122)" }, + { "fill": "rgb(108, 114, 122)" }, + { "fill": "rgb(108, 114, 122)" } + ], + "properties": { "order": 23, "id": 96, "name": "game", "prevSize": 32, "code": 59738 }, + "setIdx": 0, + "setId": 4, + "iconIdx": 102 + }, + { + "icon": { + "paths": [ + "M494.31 170.648l23.037 24.005 23.629-24.005 74.669 0.041v75.854h74.669v75.856h74.666v26.518h0.003v504.419h-522.678v-682.689h252.006zM540.976 246.503h-224.004v530.979h373.341v-379.229h-149.338v-151.75z" + ], + "width": 1056, + "attrs": [{ "fill": "rgb(108, 114, 122)" }], + "isMulticolor": false, + "isMulticolor2": false, + "colorPermutations": { + "1081141221158162168120320620912282312341243190812456992125519219212552552551291162451452241651699010019902101": [ + { "f": 2 } + ] + }, + "tags": ["giphy-monochromatic"], + "grid": 0 + }, + "attrs": [{ "fill": "rgb(108, 114, 122)" }], + "properties": { "order": 21, "id": 97, "name": "giphy-monochromatic", "prevSize": 32, "code": 59739 }, + "setIdx": 0, + "setId": 4, + "iconIdx": 103 + }, + { + "icon": { + "paths": [ + "M634.803 170.664h-256.112l-264.387 460.802 124.984 221.866h534.916l124.982-221.866-264.384-460.802zM367.814 631.466l138.931-239.789 138.934 239.789h-277.866z" + ], + "width": 1056, + "attrs": [{ "fill": "rgb(108, 114, 122)" }], + "isMulticolor": false, + "isMulticolor2": false, + "colorPermutations": { + "1081141221158162168120320620912282312341243190812456992125519219212552552551291162451452241651699010019902101": [ + { "f": 2 } + ] + }, + "tags": ["google-drive-monochromatic"], + "grid": 0 + }, + "attrs": [{ "fill": "rgb(108, 114, 122)" }], + "properties": { "order": 19, "id": 98, "name": "google-drive-monochromatic", "prevSize": 32, "code": 59756 }, + "setIdx": 0, + "setId": 4, + "iconIdx": 104 + }, + { + "icon": { + "paths": [ + "M129.354 272c0-17.673 14.327-32 32-32h704c17.674 0 32 14.327 32 32s-14.326 32-32 32h-704c-17.673 0-32-14.327-32-32zM289.354 432c0 17.674-14.327 32-32 32s-32-14.326-32-32c0-17.674 14.327-32 32-32s32 14.326 32 32zM289.354 752c0 17.674-14.327 32-32 32s-32-14.326-32-32c0-17.674 14.327-32 32-32s32 14.326 32 32zM449.354 624c17.674 0 32-14.326 32-32s-14.326-32-32-32c-17.674 0-32 14.326-32 32s14.326 32 32 32zM385.354 400c-17.674 0-32 14.326-32 32s14.326 32 32 32h480c17.674 0 32-14.326 32-32s-14.326-32-32-32h-480zM353.354 752c0-17.674 14.326-32 32-32h480c17.674 0 32 14.326 32 32s-14.326 32-32 32h-480c-17.674 0-32-14.326-32-32zM577.354 560c-17.674 0-32 14.326-32 32s14.326 32 32 32h288c17.674 0 32-14.326 32-32s-14.326-32-32-32h-288z" + ], + "width": 1056, + "attrs": [{ "fill": "rgb(108, 114, 122)" }], + "isMulticolor": false, + "isMulticolor2": false, + "colorPermutations": { + "1081141221158162168120320620912282312341243190812456992125519219212552552551291162451452241651699010019902101": [ + { "f": 2 } + ] + }, + "tags": ["group-by-type"], + "grid": 0 + }, + "attrs": [{ "fill": "rgb(108, 114, 122)" }], + "properties": { "order": 150, "id": 99, "name": "group-by-type", "prevSize": 32, "code": 59757 }, + "setIdx": 0, + "setId": 4, + "iconIdx": 105 + }, + { + "icon": { + "paths": [ + "M170.668 245.336c0-17.673 14.327-32 32-32h640.846c17.674 0 32 14.327 32 32s-14.326 32-32 32h-640.846c-17.673 0-32-14.327-32-32zM170.668 501.334c0-17.67 14.327-32 32-32h640.846c17.674 0 32 14.33 32 32 0 17.674-14.326 32-32 32h-640.846c-17.673 0-32-14.326-32-32zM170.668 757.334c0-17.67 14.327-32 32-32h640.846c17.674 0 32 14.33 32 32 0 17.674-14.326 32-32 32h-640.846c-17.673 0-32-14.326-32-32z" + ], + "attrs": [{ "fill": "rgb(108, 114, 122)" }], + "isMulticolor": false, + "isMulticolor2": false, + "colorPermutations": { + "1081141221158162168120320620912282312341243190812456992125519219212552552551291162451452241651699010019902101": [ + { "f": 2 } + ] + }, + "tags": ["hamburguer"], + "grid": 0 + }, + "attrs": [{ "fill": "rgb(108, 114, 122)" }], + "properties": { "order": 148, "id": 100, "name": "hamburguer", "prevSize": 32, "code": 59758 }, + "setIdx": 0, + "setId": 4, + "iconIdx": 106 + }, + { + "icon": { + "paths": [ + "M832 512c0 176.73-143.27 320-320 320s-320-143.27-320-320h-64c0 212.077 171.923 384 384 384s384-171.923 384-384c0-212.077-171.923-384-384-384-123.718 0-233.772 58.508-304 149.364v-101.364c0-17.673-14.327-32-32-32s-32 14.327-32 32v192c0 17.674 14.327 32 32 32h176c17.674 0 32-14.326 32-32s-14.326-32-32-32h-107.295c57.24-86.756 155.583-144 267.295-144 176.73 0 320 143.27 320 320z", + "M544 320c0-17.673-14.326-32-32-32s-32 14.327-32 32v224c0 8.486 3.373 16.627 9.373 22.627l96 96c12.496 12.496 32.758 12.496 45.254 0s12.496-32.758 0-45.254l-86.627-86.627v-210.746z" + ], + "attrs": [{ "fill": "rgb(108, 114, 122)" }, { "fill": "rgb(108, 114, 122)" }], + "isMulticolor": false, + "isMulticolor2": false, + "colorPermutations": { + "1081141221158162168120320620912282312341243190812456992125519219212552552551291162451452241651699010019902101": [ + { "f": 2 }, + { "f": 2 } + ] + }, + "tags": ["history"], + "grid": 0 + }, + "attrs": [{ "fill": "rgb(108, 114, 122)" }, { "fill": "rgb(108, 114, 122)" }], + "properties": { "order": 145, "id": 101, "name": "history", "prevSize": 32, "code": 59759 }, + "setIdx": 0, + "setId": 4, + "iconIdx": 107 + }, + { + "icon": { + "paths": [ + "M522.042 195.354l224.464 260.044v366.234c0 5.856-4.752 10.605-10.614 10.605h-136.416v-149.821c0-23.424-19.014-42.413-42.47-42.413h-85.955c-23.453 0-42.467 18.989-42.467 42.413v149.821h-136.41c-5.864 0-10.617-4.749-10.617-10.605v-366.307l224.403-259.971c4.237-4.907 11.85-4.907 16.083 0zM560.57 895.856h175.322c41.043 0 74.32-33.232 74.32-74.224v-244.205h56.227c12.454 0 23.766-7.251 28.954-18.557 5.19-11.309 3.302-24.602-4.829-34.022l-320.272-371.033c-29.648-34.347-82.934-34.347-112.582 0l-320.27 371.033c-8.132 9.421-10.020 22.714-4.831 34.022 5.188 11.306 16.501 18.557 28.956 18.557h56.288v244.205c0 40.992 33.274 74.224 74.32 74.224h175.316c1.174 0.096 2.362 0.147 3.562 0.147h85.955c1.2 0 2.39-0.051 3.565-0.147z" + ], + "width": 1056, + "attrs": [{ "fill": "rgb(108, 114, 122)" }], + "isMulticolor": false, + "isMulticolor2": false, + "colorPermutations": { + "1081141221158162168120320620912282312341243190812456992125519219212552552551291162451452241651699010019902101": [ + { "f": 2 } + ] + }, + "tags": ["home"], + "grid": 0 + }, + "attrs": [{ "fill": "rgb(108, 114, 122)" }], + "properties": { "order": 146, "id": 102, "name": "home", "prevSize": 32, "code": 59760 }, + "setIdx": 0, + "setId": 4, + "iconIdx": 108 + }, + { + "icon": { + "paths": [ + "M406.685 405.334c0 47.126-38.205 85.331-85.334 85.331-47.127 0-85.332-38.205-85.332-85.331 0-47.13 38.205-85.334 85.332-85.334 47.13 0 85.334 38.205 85.334 85.334z", + "M97.352 192c0-17.673 14.327-32 32-32h767.999c17.674 0 32 14.327 32 32v640c0 17.674-14.326 32-32 32h-767.999c-17.673 0-32-14.326-32-32v-640zM161.352 764.163l151.704-176.989c9.271-10.813 24.57-14.202 37.536-8.307l153.123 69.603 160.474-204.24c6.010-7.651 15.174-12.15 24.902-12.23s18.963 4.272 25.098 11.821l151.162 186.048v-405.869h-703.999v540.163zM214.927 800h650.423v-68.64l-175.581-216.099-166.781 212.269-176.989-80.448-131.073 152.918z" + ], + "width": 1056, + "attrs": [{ "fill": "rgb(108, 114, 122)" }, { "fill": "rgb(108, 114, 122)" }], + "isMulticolor": false, + "isMulticolor2": false, + "colorPermutations": { + "1081141221158162168120320620912282312341243190812456992125519219212552552551291162451452241651699010019902101": [ + { "f": 2 }, + { "f": 2 } + ] + }, + "tags": ["image"], + "grid": 0 + }, + "attrs": [{ "fill": "rgb(108, 114, 122)" }, { "fill": "rgb(108, 114, 122)" }], + "properties": { "order": 147, "id": 103, "name": "image", "prevSize": 32, "code": 59761 }, + "setIdx": 0, + "setId": 4, + "iconIdx": 109 + }, + { + "icon": { + "paths": [ + "M512 873.027c-199.389 0-361.026-161.635-361.026-361.024s161.636-361.026 361.026-361.026c199.389 0 361.024 161.637 361.024 361.026s-161.635 361.024-361.024 361.024zM512 938.669c235.642 0 426.666-191.024 426.666-426.666s-191.024-426.667-426.666-426.667c-235.642 0-426.667 191.025-426.667 426.667s191.025 426.666 426.667 426.666zM544.819 347.901c0 18.125-14.694 32.819-32.819 32.819-18.128 0-32.822-14.694-32.822-32.819 0-18.128 14.694-32.821 32.822-32.821 18.125 0 32.819 14.693 32.819 32.821zM512 413.542c-18.128 0-32.822 14.694-32.822 32.819v229.744c0 18.125 14.694 32.819 32.822 32.819 18.125 0 32.819-14.694 32.819-32.819v-229.744c0-18.125-14.694-32.819-32.819-32.819z" + ], + "attrs": [{ "fill": "rgb(108, 114, 122)" }], + "isMulticolor": false, + "isMulticolor2": false, + "colorPermutations": { + "1081141221158162168120320620912282312341243190812456992125519219212552552551291162451452241651699010019902101": [ + { "f": 2 } + ] + }, + "tags": ["info"], + "grid": 0 + }, + "attrs": [{ "fill": "rgb(108, 114, 122)" }], + "properties": { "order": 144, "id": 104, "name": "info", "prevSize": 32, "code": 59762 }, + "setIdx": 0, + "setId": 4, + "iconIdx": 110 + }, + { + "icon": { + "paths": [ + "M512 864c-194.404 0-352-157.597-352-352s157.596-352 352-352c194.403 0 352 157.596 352 352s-157.597 352-352 352zM512 928c229.75 0 416-186.25 416-416s-186.25-416-416-416c-229.75 0-416 186.25-416 416s186.25 416 416 416zM662.627 361.373c12.496 12.496 12.496 32.758 0 45.254l-105.373 105.373 105.373 105.373c12.496 12.496 12.496 32.758 0 45.254s-32.758 12.496-45.254 0l-105.373-105.373-105.373 105.373c-12.496 12.496-32.758 12.496-45.254 0s-12.496-32.758 0-45.254l105.373-105.373-105.373-105.373c-12.496-12.496-12.496-32.758 0-45.254s32.758-12.496 45.254 0l105.373 105.373 105.373-105.373c12.496-12.496 32.758-12.496 45.254 0z" + ], + "attrs": [{ "fill": "rgb(108, 114, 122)" }], + "isMulticolor": false, + "isMulticolor2": false, + "colorPermutations": { + "1081141221158162168120320620912282312341243190812456992125519219212552552551291162451452241651699010019902101": [ + { "f": 2 } + ] + }, + "tags": ["input-clear"], + "grid": 0 + }, + "attrs": [{ "fill": "rgb(108, 114, 122)" }], + "properties": { "order": 143, "id": 105, "name": "input-clear", "prevSize": 32, "code": 59763 }, + "setIdx": 0, + "setId": 4, + "iconIdx": 111 + }, + { + "icon": { + "paths": [ + "M384 288c-17.674 0-32 14.327-32 32s14.326 32 32 32h256c17.674 0 32-14.326 32-32s-14.326-32-32-32h-256z", + "M352 448c0-17.674 14.326-32 32-32h256c17.674 0 32 14.326 32 32s-14.326 32-32 32h-256c-17.674 0-32-14.326-32-32z", + "M512 640c-17.674 0-32 14.326-32 32s14.326 32 32 32c17.674 0 32-14.326 32-32s-14.326-32-32-32z", + "M224 224v576c0 35.347 28.654 64 64 64h448c35.347 0 64-28.653 64-64v-576c0-35.346-28.653-64-64-64h-448c-35.346 0-64 28.654-64 64zM288 800v-576h448v576h-448z" + ], + "attrs": [ + { "fill": "rgb(108, 114, 122)" }, + { "fill": "rgb(108, 114, 122)" }, + { "fill": "rgb(108, 114, 122)" }, + { "fill": "rgb(108, 114, 122)" } + ], + "isMulticolor": false, + "isMulticolor2": false, + "colorPermutations": { + "1081141221158162168120320620912282312341243190812456992125519219212552552551291162451452241651699010019902101": [ + { "f": 2 }, + { "f": 2 }, + { "f": 2 }, + { "f": 2 } + ] + }, + "tags": ["instance"], + "grid": 0 + }, + "attrs": [ + { "fill": "rgb(108, 114, 122)" }, + { "fill": "rgb(108, 114, 122)" }, + { "fill": "rgb(108, 114, 122)" }, + { "fill": "rgb(108, 114, 122)" } + ], + "properties": { "order": 18, "id": 106, "name": "instance", "prevSize": 32, "code": 59764 }, + "setIdx": 0, + "setId": 4, + "iconIdx": 112 + }, + { + "icon": { + "paths": [ + "M544 352c17.674 0 32-14.326 32-32s-14.326-32-32-32c-17.674 0-32 14.327-32 32s14.326 32 32 32zM559.61 436.995c2.755-17.456-9.162-33.843-26.618-36.598-17.456-2.758-33.843 9.162-36.598 26.618l-48 304c-2.758 17.456 9.158 33.843 26.618 36.598 17.456 2.755 33.84-9.162 36.598-26.618l48-304z" + ], + "attrs": [{ "fill": "rgb(108, 114, 122)" }], + "isMulticolor": false, + "isMulticolor2": false, + "colorPermutations": { + "1081141221158162168120320620912282312341243190812456992125519219212552552551291162451452241651699010019902101": [ + { "f": 2 } + ] + }, + "tags": ["italic"], + "grid": 0 + }, + "attrs": [{ "fill": "rgb(108, 114, 122)" }], + "properties": { "order": 17, "id": 107, "name": "italic", "prevSize": 32, "code": 59765 }, + "setIdx": 0, + "setId": 4, + "iconIdx": 113 + }, + { + "icon": { + "paths": [ + "M497.136 169.372c12.499 12.497 12.499 32.758 0 45.255l-35.958 35.96c1.078-0.016 2.163-0.025 3.245-0.025h191.152c115.11 0 208.426 93.316 208.426 208.426 0 115.107-93.315 208.422-208.426 208.422h-15.574v-64h15.574c79.763 0 144.426-64.659 144.426-144.422 0-79.766-64.662-144.426-144.426-144.426h-191.152c-1.030 0-2.058 0.011-3.082 0.032l35.795 35.796c12.499 12.499 12.499 32.758 0 45.258-12.496 12.496-32.758 12.496-45.254 0l-90.509-90.511c-12.496-12.497-12.496-32.758 0-45.255l90.509-90.51c12.496-12.497 32.758-12.497 45.254 0zM201.318 500.746h56.159v325.818h-59.023v-268.387h-1.909l-76.204 48.682v-54.090l80.977-52.022zM570.41 719.494c0 64.749-48.045 111.523-116.931 111.523-63.638 0-110.886-38.979-112.48-93.069h57.274c2.070 26.726 25.773 45.341 55.206 45.341 34.838 0 59.978-25.933 59.818-62.365 0.16-36.909-25.613-63.318-61.411-63.475-19.568-0.16-40.25 7.955-51.226 20.045l-53.296-8.749 17.024-168h188.998v49.318h-140.16l-9.386 86.384h1.91c12.090-14.317 35.475-24.816 61.885-24.816 59.184 0 102.774 45.181 102.774 107.862z" + ], + "attrs": [{ "fill": "rgb(108, 114, 122)" }], + "isMulticolor": false, + "isMulticolor2": false, + "colorPermutations": { + "1081141221158162168120320620912282312341243190812456992125519219212552552551291162451452241651699010019902101": [ + { "f": 2 } + ] + }, + "tags": ["jump-backward"], + "grid": 0 + }, + "attrs": [{ "fill": "rgb(108, 114, 122)" }], + "properties": { "order": 16, "id": 108, "name": "jump-backward", "prevSize": 32, "code": 59766 }, + "setIdx": 0, + "setId": 4, + "iconIdx": 114 + }, + { + "icon": { + "paths": [ + "M494.861 169.372c-12.496 12.497-12.496 32.758 0 45.255l35.962 35.96c-1.082-0.016-2.163-0.025-3.248-0.025h-191.149c-115.111 0-208.426 93.316-208.426 208.426 0 115.107 93.315 208.422 208.426 208.422h15.574v-64h-15.574c-79.764 0-144.426-64.659-144.426-144.422 0-79.766 64.661-144.426 144.426-144.426h191.149c1.030 0 2.061 0.011 3.085 0.032l-35.798 35.796c-12.496 12.499-12.496 32.758 0 45.258 12.499 12.496 32.758 12.496 45.258 0l90.509-90.511c12.496-12.497 12.496-32.758 0-45.255l-90.509-90.51c-12.499-12.497-32.758-12.497-45.258 0zM521.318 500.746h56.157v325.818h-59.021v-268.387h-1.91l-76.205 48.682v-54.090l80.979-52.022zM890.41 719.494c0 64.749-48.048 111.523-116.934 111.523-63.635 0-110.886-38.979-112.477-93.069h57.274c2.067 26.726 25.773 45.341 55.203 45.341 34.842 0 59.978-25.933 59.821-62.365 0.157-36.909-25.616-63.318-61.411-63.475-19.568-0.16-40.25 7.955-51.226 20.045l-53.296-8.749 17.021-168h189.002v49.318h-140.16l-9.386 86.384h1.91c12.090-14.317 35.475-24.816 61.885-24.816 59.181 0 102.774 45.181 102.774 107.862z" + ], + "attrs": [{ "fill": "rgb(108, 114, 122)" }], + "isMulticolor": false, + "isMulticolor2": false, + "colorPermutations": { + "1081141221158162168120320620912282312341243190812456992125519219212552552551291162451452241651699010019902101": [ + { "f": 2 } + ] + }, + "tags": ["jump-forward"], + "grid": 0 + }, + "attrs": [{ "fill": "rgb(108, 114, 122)" }], + "properties": { "order": 15, "id": 109, "name": "jump-forward", "prevSize": 32, "code": 59767 }, + "setIdx": 0, + "setId": 4, + "iconIdx": 115 + }, + { + "icon": { + "paths": [ + "M769.296 649.373c12.496 12.496 12.496 32.758 0 45.254l-192 192c-12.499 12.496-32.758 12.496-45.258 0l-192-192c-12.496-12.496-12.496-32.758 0-45.254 12.499-12.496 32.758-12.496 45.258 0l137.37 137.373v-578.746h-192v192c0 17.674-14.325 32-31.999 32s-32-14.326-32-32v-224c0-17.673 14.327-32 32-32h255.999c17.674 0 32 14.327 32 32v610.746l137.373-137.373c12.499-12.496 32.758-12.496 45.258 0z" + ], + "attrs": [{ "fill": "rgb(108, 114, 122)" }], + "isMulticolor": false, + "isMulticolor2": false, + "colorPermutations": { + "1081141221158162168120320620912282312341243190812456992125519219212552552551291162451452241651699010019902101": [ + { "f": 2 } + ] + }, + "tags": ["jump-to-message"], + "grid": 0 + }, + "attrs": [{ "fill": "rgb(108, 114, 122)" }], + "properties": { "order": 14, "id": 110, "name": "jump-to-message", "prevSize": 32, "code": 59768 }, + "setIdx": 0, + "setId": 4, + "iconIdx": 116 + }, + { + "icon": { + "paths": [ + "M576 256c0 35.346-28.653 64-64 64s-64-28.654-64-64c0-35.346 28.653-64 64-64s64 28.654 64 64z", + "M576 512c0 35.347-28.653 64-64 64s-64-28.653-64-64c0-35.347 28.653-64 64-64s64 28.653 64 64z", + "M576 768c0 35.347-28.653 64-64 64s-64-28.653-64-64c0-35.347 28.653-64 64-64s64 28.653 64 64z" + ], + "attrs": [{ "fill": "rgb(108, 114, 122)" }, { "fill": "rgb(108, 114, 122)" }, { "fill": "rgb(108, 114, 122)" }], + "isMulticolor": false, + "isMulticolor2": false, + "colorPermutations": { + "1081141221158162168120320620912282312341243190812456992125519219212552552551291162451452241651699010019902101": [ + { "f": 2 }, + { "f": 2 }, + { "f": 2 } + ] + }, + "tags": ["kebab"], + "grid": 0 + }, + "attrs": [{ "fill": "rgb(108, 114, 122)" }, { "fill": "rgb(108, 114, 122)" }, { "fill": "rgb(108, 114, 122)" }], + "properties": { "order": 13, "id": 111, "name": "kebab", "prevSize": 32, "code": 59769 }, + "setIdx": 0, + "setId": 4, + "iconIdx": 117 + }, + { + "icon": { + "paths": [ + "M160 224c-35.346 0-64 28.654-64 64v448c0 35.347 28.654 64 64 64h704c35.347 0 64-28.653 64-64v-448c0-35.346-28.653-64-64-64h-704zM160 288h704v448h-704v-448zM256 352c-17.673 0-32 14.326-32 32s14.327 32 32 32h64c17.674 0 32-14.326 32-32s-14.326-32-32-32h-64zM256 512c0-17.674 14.327-32 32-32h64c17.674 0 32 14.326 32 32s-14.326 32-32 32h-64c-17.673 0-32-14.326-32-32zM480 480c-17.674 0-32 14.326-32 32s14.326 32 32 32h64c17.674 0 32-14.326 32-32s-14.326-32-32-32h-64zM640 512c0-17.674 14.326-32 32-32h64c17.674 0 32 14.326 32 32s-14.326 32-32 32h-64c-17.674 0-32-14.326-32-32zM480 352c-17.674 0-32 14.326-32 32s14.326 32 32 32h64c17.674 0 32-14.326 32-32s-14.326-32-32-32h-64zM320 640c0-17.674 14.326-32 32-32h320c17.674 0 32 14.326 32 32s-14.326 32-32 32h-320c-17.674 0-32-14.326-32-32zM704 352c-17.674 0-32 14.326-32 32s14.326 32 32 32h64c17.674 0 32-14.326 32-32s-14.326-32-32-32h-64z" + ], + "attrs": [{ "fill": "rgb(108, 114, 122)" }], + "isMulticolor": false, + "isMulticolor2": false, + "colorPermutations": { + "1081141221158162168120320620912282312341243190812456992125519219212552552551291162451452241651699010019902101": [ + { "f": 2 } + ] + }, + "tags": ["keyboard"], + "grid": 0 + }, + "attrs": [{ "fill": "rgb(108, 114, 122)" }], + "properties": { "order": 12, "id": 112, "name": "keyboard", "prevSize": 32, "code": 59770 }, + "setIdx": 0, + "setId": 4, + "iconIdx": 118 + }, + { + "icon": { + "paths": [ + "M681.904 256c0-17.673-14.326-32-32-32s-32 14.327-32 32v56.875l-80.346 13.998c-17.411 3.034-29.069 19.61-26.035 37.021 3.034 17.408 19.61 29.066 37.021 26.032l69.36-12.086v69.373c-30.384 6.851-60.461 20.074-84.154 43.139-27.923 27.184-44.070 65.238-44.070 113.808 0 25.741 6.262 48.262 18.451 66.621 12.186 18.349 29.062 30.682 47.251 38 35.357 14.221 76.72 10.173 108.128-4.579l1.206-0.566c31.126-14.621 62.493-29.354 90.723-57.818 21.325-21.507 39.709-49.539 56.848-88.678 5.654 9.498 9.594 20.966 10.285 34.339 1.632 31.526-14.275 82.813-87.955 153.418-12.758 12.227-13.19 32.483-0.963 45.245 12.227 12.758 32.486 13.19 45.245 0.963 80.192-76.851 110.586-145.034 107.59-202.934-2.986-57.658-38.586-96.022-70.675-113.955-20.774-13.014-50.214-22.826-81.216-28.288-16.624-2.931-34.47-4.749-52.694-4.995v-74.243l101.718-17.722c17.411-3.034 29.066-19.61 26.032-37.019-3.034-17.411-19.606-29.066-37.018-26.032l-90.733 15.809v-45.724zM578.394 536.208c10.163-9.891 23.565-17.475 39.51-22.704v138.653c-13.443 2.547-27.485 1.731-38.634-2.752-7.712-3.104-13.658-7.757-17.824-14.029-4.157-6.262-7.766-15.997-7.766-31.216 0-33.35 10.563-54.176 24.714-67.952zM709.994 600.752c-8.682 8.755-17.782 15.706-28.090 22.074v-117.888c14.125 0.24 28.224 1.661 41.587 4.016 13.587 2.397 25.683 5.622 35.763 9.165-16.88 42.038-33.069 66.304-49.261 82.634zM247.704 565.334h98.386l-49.193-184.883-49.193 184.883zM390.851 733.562l-27.734-104.227h-132.442l-27.732 104.227c-4.544 17.078-22.073 27.242-39.152 22.694-17.079-4.544-27.24-22.070-22.696-39.152l106.323-399.598c13.494-50.714 85.462-50.713 98.956 0l106.323 399.598c4.544 17.082-5.616 34.608-22.694 39.152-17.078 4.547-34.608-5.616-39.152-22.694z" + ], + "width": 1056, + "attrs": [{ "fill": "rgb(108, 114, 122)" }], + "isMulticolor": false, + "isMulticolor2": false, + "colorPermutations": { + "1081141221158162168120320620912282312341243190812456992125519219212552552551291162451452241651699010019902101": [ + { "f": 2 } + ] + }, + "tags": ["language"], + "grid": 0 + }, + "attrs": [{ "fill": "rgb(108, 114, 122)" }], + "properties": { "order": 11, "id": 113, "name": "language", "prevSize": 32, "code": 59771 }, + "setIdx": 0, + "setId": 4, + "iconIdx": 119 + }, + { + "icon": { + "paths": [ + "M439.274 704.374c0-33.645 26.278-47.677 72.726-47.677s72.73 14.032 72.73 47.677c0 32.96-13.19 111.069-23.914 149.76-4.963 17.808-22.080 25.171-48.816 25.171s-43.85-7.363-48.813-25.174c-10.717-38.666-23.914-116.688-23.914-149.757zM616.778 870.374l0.026-0.090c6.176-22.291 12.566-53.869 17.386-83.453 4.688-28.787 8.72-60.707 8.72-82.458 0-35.891-15.811-67.802-46.797-87.114-26.035-16.227-57.152-19.926-84.112-19.926-26.957 0-58.077 3.699-84.112 19.926-30.982 19.312-46.797 51.222-46.797 87.114 0 21.805 4.035 53.728 8.726 82.515 4.819 29.578 11.21 61.123 17.379 83.392l0.026 0.086c7.402 26.557 24.982 45.664 46.87 56.467 19.472 9.61 40.426 11.834 57.907 11.834 17.485 0 38.435-2.224 57.907-11.83 21.888-10.8 39.469-29.907 46.87-56.464zM459.635 460.8c0-28.275 23.446-51.2 52.365-51.2s52.365 22.925 52.365 51.2c0 28.278-23.446 51.2-52.365 51.2s-52.365-22.922-52.365-51.2zM512 341.334c-67.478 0-122.182 53.488-122.182 119.466 0 65.981 54.704 119.469 122.182 119.469s122.182-53.488 122.182-119.469c0-65.978-54.704-119.466-122.182-119.466zM677.802 537.254c-6.662 13.792-3.882 31.11 6.278 42.573 14.086 15.894 39.85 17.939 50.205-0.602 19.642-35.174 30.806-75.526 30.806-118.426 0-136.672-113.315-247.465-253.091-247.465-139.779 0-253.092 110.793-253.092 247.465 0 42.899 11.164 83.251 30.806 118.426 10.354 18.541 36.119 16.496 50.205 0.602 10.16-11.462 12.938-28.781 6.275-42.573-11.203-23.187-17.469-49.104-17.469-76.454 0-98.97 82.054-179.199 183.274-179.199s183.27 80.229 183.27 179.199c0 27.35-6.262 53.267-17.469 76.454zM730.16 699.795c-0.304-10.659 3.542-21.072 10.928-28.762 52.771-54.957 85.094-128.902 85.094-210.234 0-169.661-140.666-307.199-314.182-307.199s-314.182 137.538-314.182 307.199c0 81.331 32.323 155.28 85.093 210.234 7.386 7.69 11.234 18.102 10.928 28.762-0.833 29.018-31.273 47.917-52.121 27.715-70.223-68.042-113.718-162.41-113.718-266.71 0-207.363 171.923-375.465 384-375.465s384 168.102 384 375.465c0 104.304-43.498 198.672-113.722 266.714-20.848 20.202-51.286 1.302-52.118-27.718z" + ], + "attrs": [{ "fill": "rgb(108, 114, 122)" }], + "isMulticolor": false, + "isMulticolor2": false, + "colorPermutations": { + "1081141221158162168120320620912282312341243190812456992125519219212552552551291162451452241651699010019902101": [ + { "f": 2 } + ] + }, + "tags": ["live-streaming"], + "grid": 0 + }, + "attrs": [{ "fill": "rgb(108, 114, 122)" }], + "properties": { "order": 9, "id": 115, "name": "live-streaming", "prevSize": 32, "code": 59773 }, + "setIdx": 0, + "setId": 4, + "iconIdx": 120 + }, + { + "icon": { + "paths": [ + "M700.144 361.891c4.685-24.973 34.704-34.093 49.13-13.171 31.994 46.403 50.726 102.653 50.726 163.28s-18.733 116.88-50.726 163.283c-14.426 20.922-44.445 11.802-49.13-13.174l-1.706-9.101c-1.581-8.429 0.384-17.082 4.858-24.403 20.749-33.965 32.704-73.888 32.704-116.605 0-42.714-11.955-82.637-32.704-116.605-4.474-7.318-6.438-15.971-4.858-24.4l1.706-9.104z", + "M320.704 395.395c-20.748 33.968-32.704 73.891-32.704 116.605 0 42.717 11.956 82.64 32.704 116.605 4.474 7.322 6.438 15.974 4.858 24.403l-1.706 9.101c-4.684 24.976-34.705 34.096-49.128 13.174-31.994-46.403-50.728-102.656-50.728-163.283s18.733-116.877 50.728-163.28c14.424-20.922 44.444-11.802 49.128 13.171l1.706 9.104c1.581 8.429-0.384 17.082-4.858 24.4z", + "M728.765 209.256l-0.515 2.747c-2.234 11.911 2.534 23.967 11.763 31.821 75.866 64.565 123.987 160.751 123.987 268.175 0 107.427-48.122 203.613-123.987 268.176-9.229 7.856-13.997 19.914-11.763 31.824l0.515 2.746c4.192 22.362 29.69 33.194 47.261 18.746 92.794-76.294 151.974-191.981 151.974-321.491 0-129.507-59.181-245.193-151.974-321.489-17.571-14.448-43.069-3.615-47.261 18.745z", + "M283.986 243.825c9.228-7.854 13.998-19.911 11.764-31.821l-0.515-2.747c-4.192-22.359-29.69-33.193-47.262-18.745-92.793 76.296-151.973 191.981-151.973 321.489 0 129.51 59.18 245.197 151.973 321.491 17.572 14.448 43.070 3.616 47.262-18.746l0.515-2.746c2.233-11.91-2.536-23.968-11.764-31.824-75.864-64.563-123.986-160.749-123.986-268.176 0-107.424 48.122-203.61 123.986-268.175z", + "M608 512c0 53.021-42.979 96-96 96s-96-42.979-96-96c0-53.018 42.979-96 96-96s96 42.982 96 96z" + ], + "attrs": [ + { "fill": "rgb(108, 114, 122)" }, + { "fill": "rgb(108, 114, 122)" }, + { "fill": "rgb(108, 114, 122)" }, + { "fill": "rgb(108, 114, 122)" }, + { "fill": "rgb(108, 114, 122)" } + ], + "isMulticolor": false, + "isMulticolor2": false, + "colorPermutations": { + "1081141221158162168120320620912282312341243190812456992125519219212552552551291162451452241651699010019902101": [ + { "f": 2 }, + { "f": 2 }, + { "f": 2 }, + { "f": 2 }, + { "f": 2 } + ] + }, + "tags": ["live"], + "grid": 0 + }, + "attrs": [ + { "fill": "rgb(108, 114, 122)" }, + { "fill": "rgb(108, 114, 122)" }, + { "fill": "rgb(108, 114, 122)" }, + { "fill": "rgb(108, 114, 122)" }, + { "fill": "rgb(108, 114, 122)" } + ], + "properties": { "order": 8, "id": 116, "name": "live", "prevSize": 32, "code": 59774 }, + "setIdx": 0, + "setId": 4, + "iconIdx": 121 + }, + { + "icon": { + "paths": [ + "M397.011 527.334c26.576 0 48.122-21.587 48.122-48.214s-21.546-48.214-48.122-48.214c-26.576 0-48.118 21.587-48.118 48.214s21.542 48.214 48.118 48.214z", + "M589.491 479.12c0 26.627-21.542 48.214-48.118 48.214s-48.122-21.587-48.122-48.214c0-26.627 21.546-48.214 48.122-48.214s48.118 21.587 48.118 48.214z", + "M733.853 479.12c0 26.627-21.542 48.214-48.118 48.214s-48.122-21.587-48.122-48.214c0-26.627 21.546-48.214 48.122-48.214s48.118 21.587 48.118 48.214z", + "M88.039 813.683l119.625 31.283c85.312 22.307 173.45-16.256 238.691-79.709 29.501 4.794 59.875 7.242 90.678 7.242 218.294 0 404.339-122.864 404.339-294.518 0-171.664-186.042-294.52-404.339-294.52-218.314 0-404.351 122.852-404.34 294.523 0 65.072 27.642 125.014 75.655 173.587-2.847 24.835-14.596 44.73-36.049 68.55l-84.261 93.562zM537.034 258.997c183.13 0 331.6 98.043 331.6 218.984 0 120.931-148.47 218.982-331.6 218.982-40.781 0-79.834-4.877-115.91-13.763-36.669 45.6-117.335 109.008-195.697 88.518 25.489-28.304 63.251-76.131 55.168-154.909-46.968-37.779-75.162-86.134-75.162-138.829-0.008-120.95 148.461-218.984 331.6-218.984z" + ], + "width": 1056, + "attrs": [ + { "fill": "rgb(108, 114, 122)" }, + { "fill": "rgb(108, 114, 122)" }, + { "fill": "rgb(108, 114, 122)" }, + { "fill": "rgb(108, 114, 122)" } + ], + "isMulticolor": false, + "isMulticolor2": false, + "colorPermutations": { + "1081141221158162168120320620912282312341243190812456992125519219212552552551291162451452241651699010019902101": [ + { "f": 2 }, + { "f": 2 }, + { "f": 2 }, + { "f": 2 } + ] + }, + "tags": ["livechat-monochromatic"], + "grid": 0 + }, + "attrs": [ + { "fill": "rgb(108, 114, 122)" }, + { "fill": "rgb(108, 114, 122)" }, + { "fill": "rgb(108, 114, 122)" }, + { "fill": "rgb(108, 114, 122)" } + ], + "properties": { "order": 31, "id": 117, "name": "livechat-monochromatic", "prevSize": 32, "code": 59775 }, + "setIdx": 0, + "setId": 4, + "iconIdx": 122 + }, + { + "icon": { + "paths": [ + "M341.334 778.672c-17.674 0-32 14.326-32 32s14.326 32 32 32h341.334c17.674 0 32-14.326 32-32s-14.326-32-32-32h-341.334zM85.335 298.672c0-70.692 57.308-128 128-128h597.334c70.691 0 128 57.308 128 128v298.666c0 70.694-57.309 128-128 128h-597.334c-70.692 0-128-57.306-128-128v-298.666zM213.335 234.672c-35.346 0-64 28.654-64 64v298.666c0 35.347 28.654 64 64 64h597.334c35.344 0 64-28.653 64-64v-298.666c0-35.347-28.656-64-64-64h-597.334zM256 320c0-11.782 9.551-21.333 21.333-21.333h170.667c11.782 0 21.334 9.551 21.334 21.333s-9.552 21.334-21.334 21.334h-170.667c-11.782 0-21.333-9.552-21.333-21.334zM277.333 554.666c-11.782 0-21.333 9.552-21.333 21.334s9.551 21.334 21.333 21.334h85.332c11.782 0 21.334-9.552 21.334-21.334s-9.552-21.334-21.334-21.334h-85.332zM554.666 320c0-11.782 9.552-21.333 21.334-21.333h170.666c11.782 0 21.334 9.551 21.334 21.333s-9.552 21.334-21.334 21.334h-170.666c-11.782 0-21.334-9.552-21.334-21.334zM448 554.666c-11.782 0-21.334 9.552-21.334 21.334s9.552 21.334 21.334 21.334h298.666c11.782 0 21.334-9.552 21.334-21.334s-9.552-21.334-21.334-21.334h-298.666zM256 448c0-11.782 9.551-21.334 21.333-21.334h213.332c11.782 0 21.334 9.552 21.334 21.334s-9.552 21.334-21.334 21.334h-213.332c-11.782 0-21.333-9.552-21.333-21.334zM618.666 426.666c-11.782 0-21.331 9.552-21.331 21.334s9.549 21.334 21.331 21.334h128c11.782 0 21.334-9.552 21.334-21.334s-9.552-21.334-21.334-21.334h-128z" + ], + "attrs": [{ "fill": "rgb(108, 114, 122)" }], + "isMulticolor": false, + "isMulticolor2": false, + "colorPermutations": { + "1081141221158162168120320620912282312341243190812456992125519219212552552551291162451452241651699010019902101": [ + { "f": 2 } + ] + }, + "tags": ["log-view"], + "grid": 0 + }, + "attrs": [{ "fill": "rgb(108, 114, 122)" }], + "properties": { "order": 33, "id": 119, "name": "log-view", "prevSize": 32, "code": 59778 }, + "setIdx": 0, + "setId": 4, + "iconIdx": 123 + }, + { + "icon": { + "paths": [ + "M176 96c-17.673 0-32 14.327-32 32v768c0 17.674 14.327 32 32 32h512c17.674 0 32-14.326 32-32v-96c0-17.674-14.326-32-32-32s-32 14.326-32 32v64h-448v-704h448v64c0 17.673 14.326 32 32 32s32-14.327 32-32v-96c0-17.673-14.326-32-32-32h-512zM521.373 329.373c12.496-12.497 32.758-12.497 45.254 0s12.496 32.758 0 45.254l-105.373 105.373h418.746c17.674 0 32 14.326 32 32s-14.326 32-32 32h-418.746l105.373 105.373c12.496 12.496 12.496 32.758 0 45.254s-32.758 12.496-45.254 0l-160-160c-12.496-12.496-12.496-32.758 0-45.254l160-160z" + ], + "attrs": [{ "fill": "rgb(108, 114, 122)" }], + "isMulticolor": false, + "isMulticolor2": false, + "colorPermutations": { + "1081141221158162168120320620912282312341243190812456992125519219212552552551291162451452241651699010019902101": [ + { "f": 2 } + ] + }, + "tags": ["login"], + "grid": 0 + }, + "attrs": [{ "fill": "rgb(108, 114, 122)" }], + "properties": { "order": 34, "id": 120, "name": "login", "prevSize": 32, "code": 59779 }, + "setIdx": 0, + "setId": 4, + "iconIdx": 124 + }, + { + "icon": { + "paths": [ + "M268.099 96c-17.673 0-32 14.327-32 32v768c0 17.674 14.327 32 32 32h512c17.674 0 32-14.326 32-32v-96c0-17.674-14.326-32-32-32s-32 14.326-32 32v64h-448v-704h448v64c0 17.673 14.326 32 32 32s32-14.327 32-32v-96c0-17.673-14.326-32-32-32h-512zM994.726 489.373l-160-160c-12.496-12.497-32.758-12.497-45.254 0s-12.496 32.758 0 45.254l105.373 105.373h-418.746c-17.674 0-32 14.326-32 32s14.326 32 32 32h418.746l-105.373 105.373c-12.496 12.496-12.496 32.758 0 45.254s32.758 12.496 45.254 0l160-160c12.496-12.496 12.496-32.758 0-45.254z" + ], + "width": 1056, + "attrs": [{ "fill": "rgb(108, 114, 122)" }], + "isMulticolor": false, + "isMulticolor2": false, + "colorPermutations": { + "1081141221158162168120320620912282312341243190812456992125519219212552552551291162451452241651699010019902101": [ + { "f": 2 } + ] + }, + "tags": ["logout"], + "grid": 0 + }, + "attrs": [{ "fill": "rgb(108, 114, 122)" }], + "properties": { "order": 35, "id": 121, "name": "logout", "prevSize": 32, "code": 59780 }, + "setIdx": 0, + "setId": 4, + "iconIdx": 125 + }, + { + "icon": { + "paths": [ + "M192 736h640v-448h-640v448zM128 256c0-17.673 14.327-32 32-32h704c17.674 0 32 14.327 32 32v512c0 17.674-14.326 32-32 32h-704c-17.673 0-32-14.326-32-32v-512zM305.304 389.082c-14.866-9.555-34.665-5.251-44.222 9.613-9.557 14.867-5.253 34.666 9.613 44.224l241.304 155.123 241.306-155.123c14.864-9.558 19.168-29.357 9.613-44.224-9.558-14.864-29.357-19.168-44.224-9.613l-206.694 132.877-206.696-132.877z" + ], + "attrs": [{ "fill": "rgb(108, 114, 122)" }], + "isMulticolor": false, + "isMulticolor2": false, + "colorPermutations": { + "1081141221158162168120320620912282312341243190812456992125519219212552552551291162451452241651699010019902101": [ + { "f": 2 } + ] + }, + "tags": ["mail"], + "grid": 0 + }, + "attrs": [{ "fill": "rgb(108, 114, 122)" }], + "properties": { "order": 36, "id": 122, "name": "mail", "prevSize": 32, "code": 59781 }, + "setIdx": 0, + "setId": 4, + "iconIdx": 126 + }, + { + "icon": { + "paths": [ + "M302.769 192h418.463l23.187 72.727h-0.211l23.792 63.999c0 41.27-31.306 69.818-64 69.818s-64-28.547-64-69.818c0-18.476-14.326-33.454-32-33.454s-32 14.978-32 33.454c0 41.27-31.306 69.818-64 69.818s-64-28.547-64-69.818c0-18.476-14.326-33.454-32-33.454s-32 14.978-32 33.454c0 41.27-31.306 69.818-64 69.818s-64-28.547-64-69.818l23.794-63.999h-0.213l23.188-72.727zM212.406 264.727l36.491-114.448c4.231-13.27 16.56-22.279 30.488-22.279h465.23c13.93 0 26.259 9.009 30.49 22.279l56.896 178.447c0 33.939-12.083 64.925-32 88.515v350.778c0 53.018-42.979 96-96 96h-384c-53.019 0-96-42.982-96-96v-350.778c-19.916-23.59-32-54.576-32-88.515l20.406-63.999zM288 458.33v309.69c0 17.67 14.327 32 32 32h128v-192.019h128v192.019h128c17.674 0 32-14.33 32-32v-309.69c-10.227 2.752-20.95 4.214-32 4.214-38.23 0-72.547-17.52-96-45.302-23.453 27.782-57.77 45.302-96 45.302s-72.547-17.52-96-45.302c-23.453 27.782-57.77 45.302-96 45.302-11.050 0-21.772-1.462-32-4.214z" + ], + "attrs": [{ "fill": "rgb(108, 114, 122)" }], + "isMulticolor": false, + "isMulticolor2": false, + "colorPermutations": { + "1081141221158162168120320620912282312341243190812456992125519219212552552551291162451452241651699010019902101": [ + { "f": 2 } + ] + }, + "tags": ["marketplace"], + "grid": 0 + }, + "attrs": [{ "fill": "rgb(108, 114, 122)" }], + "properties": { "order": 37, "id": 123, "name": "marketplace", "prevSize": 32, "code": 59782 }, + "setIdx": 0, + "setId": 4, + "iconIdx": 127 + }, + { + "icon": { + "paths": [ + "M773.072 576c-35.344 0-64-28.653-64-64s28.656-64 64-64c35.347 0 64 28.653 64 64s-28.653 64-64 64z", + "M517.072 576c-35.344 0-64-28.653-64-64s28.656-64 64-64c35.347 0 64 28.653 64 64s-28.653 64-64 64z", + "M261.073 576c-35.346 0-64-28.653-64-64s28.654-64 64-64c35.346 0 63.999 28.653 63.999 64s-28.652 64-63.999 64z" + ], + "attrs": [{ "fill": "rgb(108, 114, 122)" }, { "fill": "rgb(108, 114, 122)" }, { "fill": "rgb(108, 114, 122)" }], + "isMulticolor": false, + "isMulticolor2": false, + "colorPermutations": { + "1081141221158162168120320620912282312341243190812456992125519219212552552551291162451452241651699010019902101": [ + { "f": 2 }, + { "f": 2 }, + { "f": 2 } + ] + }, + "tags": ["meatballs"], + "grid": 0 + }, + "attrs": [{ "fill": "rgb(108, 114, 122)" }, { "fill": "rgb(108, 114, 122)" }, { "fill": "rgb(108, 114, 122)" }], + "properties": { "order": 38, "id": 124, "name": "meatballs", "prevSize": 32, "code": 59783 }, + "setIdx": 0, + "setId": 4, + "iconIdx": 128 + }, + { + "icon": { + "paths": [ + "M651.36 116.071c-57.242-19.989-105.792-20.069-138.358-20.071v64l-1.002-64c-92.006 0.342-297.345 47.824-381.242 242.995-17.897 38.97-34.758 103.344-34.758 173.005 0 69.958 17.020 146.285 52.216 207.875 23.229 40.653 92.799 131.376 191.179 173.536 94.861 40.656 206.368 52.349 296.49 16.301 16.41-6.563 24.39-25.187 17.827-41.597s-25.187-24.39-41.597-17.827c-69.878 27.952-163.171 20.445-247.51-15.699-80.819-34.64-141.384-112.451-160.821-146.464-28.804-50.41-43.784-115.418-43.784-176.125 0-60.765 15.020-116.182 29.055-146.589l0.184-0.4 0.173-0.406c69.507-162.181 243.823-204.604 323.589-204.605 31.594 0.002 70.877 0.296 117.258 16.493 46.147 16.114 101.389 48.779 161.824 116.767 43.658 49.115 63.533 114.977 69.389 177.713 5.891 63.12-2.854 118.189-11.546 142.093-6.4 17.6-20.429 45.44-59.392 45.699-18.259-0.806-72.822-14.672-83.12-69.568v-235.062c0-17.674-3.414-34.134-29.014-34.134-19.338 0-26.454 16.461-26.454 34.134v34.131c-35.181-39.859-95.402-68.266-152.746-68.266-106.038 0-192 85.962-192 192s85.962 192 192 192c62.179 0 117.658-29.555 152.746-75.386 25.715 71.078 102.57 93.027 137.014 94.134l0.515 0.016h0.512c82.643 0 111.715-64.806 120.086-87.83 12.64-34.762 21.674-99.696 15.12-169.907-6.589-70.595-29.379-151.401-85.277-214.287-66.902-75.265-131.075-114.597-188.557-134.67zM627.2 512c0 70.691-57.309 128-128 128s-128-57.309-128-128c0-70.691 57.309-128 128-128s128 57.309 128 128z" + ], + "attrs": [{ "fill": "rgb(108, 114, 122)" }], + "isMulticolor": false, + "isMulticolor2": false, + "colorPermutations": { + "1081141221158162168120320620912282312341243190812456992125519219212552552551291162451452241651699010019902101": [ + { "f": 2 } + ] + }, + "tags": ["mention"], + "grid": 0 + }, + "attrs": [{ "fill": "rgb(108, 114, 122)" }], + "properties": { "order": 142, "id": 125, "name": "mention", "prevSize": 32, "code": 59784 }, + "setIdx": 0, + "setId": 4, + "iconIdx": 129 + }, + { + "icon": { + "paths": [ + "M477.84 128c104.256 0 181.251 29.018 237.494 70.652l-44.317 44.317c-45.52-31.22-107.747-53.057-193.178-53.057-129.725 0-207.83 53.576-254.529 118.696-47.832 66.7-64.077 147.667-64.077 201.187v1.405l-0.127 1.398c-7.328 80.928 13.761 143.126 51.784 190.499l-43.879 43.878c-50.179-59.901-78.131-139.043-69.441-238.595 0.276-63.411 19.117-157.053 75.696-235.948 58.132-81.063 154.749-144.433 304.573-144.433zM822.848 332.499l-47.008 47.008c16.502 42.634 20.608 78.525 20.608 89.011v0.179c0 19.517 0 31.792-6.621 56.17-7.094 26.109-21.738 65.648-52.554 137.834-5.699 13.357-2.794 25.981 1.261 34.435 3.834 7.99 9.562 14.403 14.595 19.184 10.227 9.712 24.253 18.842 38.544 26.867 7.888 4.429 18.298 8.995 27.613 13.078l1.843 0.81c10.554 4.634 20.726 9.146 29.613 13.894 3.427 1.834 6.298 3.517 8.672 5.030-5.104 3.229-12.035 6.883-20.941 10.765-22.96 10.003-55.328 19.939-93.888 28.128-77.12 16.371-174.73 24.858-263.341 14.973-43.744-4.88-86.826-14.525-126.534-29.229l-47.542 47.542c52.771 23.018 110.492 36.886 167.267 43.222 96.387 10.752 200.71 1.517 282.909-15.936 41.098-8.726 77.731-19.731 105.68-31.907 13.91-6.064 26.618-12.822 36.858-20.342 9.427-6.925 20.739-17.344 25.61-32.016 7.392-22.269-2.957-40.509-12.816-51.139-9.427-10.166-22.106-17.939-32.954-23.738-11.309-6.048-23.626-11.472-33.891-15.978-11.059-4.854-18.934-8.317-24.054-11.194-9.914-5.565-17.437-10.538-22.506-14.57 27.421-64.81 42.214-104.589 50.048-133.424 8.774-32.304 8.797-50.986 8.797-72.64 0-20.106-7.053-75.501-35.267-136.019zM836.038 153.372c12.499-12.497 32.758-12.497 45.254 0 12.499 12.497 12.499 32.758 0 45.255l-682.665 682.665c-12.497 12.499-32.758 12.499-45.255 0-12.497-12.496-12.497-32.755 0-45.254l682.666-682.666z" + ], + "attrs": [{ "fill": "rgb(108, 114, 122)" }], + "isMulticolor": false, + "isMulticolor2": false, + "colorPermutations": { + "1081141221158162168120320620912282312341243190812456992125519219212552552551291162451452241651699010019902101": [ + { "f": 2 } + ] + }, + "tags": ["message-disabled"], + "grid": 0 + }, + "attrs": [{ "fill": "rgb(108, 114, 122)" }], + "properties": { "order": 57, "id": 126, "name": "message-disabled", "prevSize": 32, "code": 59785 }, + "setIdx": 0, + "setId": 4, + "iconIdx": 130 + }, + { + "icon": { + "paths": [ + "M223.311 308.609c-47.832 66.7-64.077 147.667-64.077 201.187v1.405l-0.127 1.398c-9.348 103.235 27.547 175.997 86.848 226.374 60.643 51.52 146.602 80.998 235.29 90.893 88.614 9.885 186.224 1.398 263.341-14.973 38.56-8.189 70.928-18.125 93.888-28.128 8.906-3.882 15.837-7.536 20.944-10.765-2.378-1.514-5.248-3.197-8.675-5.030-8.886-4.749-19.059-9.261-29.613-13.894l-1.843-0.81c-9.315-4.083-19.725-8.65-27.613-13.078-14.291-8.026-28.317-17.155-38.544-26.867-5.034-4.781-10.762-11.194-14.595-19.184-4.054-8.454-6.96-21.078-1.261-34.435 30.816-72.186 45.459-111.725 52.554-137.834 6.621-24.378 6.621-36.653 6.621-56.17v-0.179c0-15.51-8.979-86.595-53.776-152.876-43.376-64.174-121.395-125.729-264.832-125.729-129.725 0-207.83 53.576-254.529 118.696zM173.267 272.433c58.132-81.063 154.749-144.433 304.573-144.433 164.896 0 261.594 72.589 315.859 152.878 52.838 78.181 64.416 161.881 64.416 187.641 0 21.654-0.022 40.336-8.797 72.64-7.83 28.835-22.627 68.614-50.048 133.424 5.069 4.032 12.592 9.005 22.506 14.57 5.123 2.877 12.995 6.339 24.054 11.194 10.266 4.506 22.582 9.93 33.891 15.978 10.848 5.798 23.526 13.571 32.954 23.738 9.859 10.63 20.208 28.87 12.816 51.139-4.87 14.672-16.182 25.091-25.61 32.016-10.24 7.52-22.947 14.278-36.858 20.342-27.946 12.176-64.582 23.181-105.68 31.907-82.198 17.453-186.522 26.688-282.909 15.936-96.31-10.746-195.346-43.178-268.313-105.165-74.031-62.893-119.295-154.778-108.551-277.856 0.276-63.411 19.117-157.053 75.696-235.948z" + ], + "attrs": [{ "fill": "rgb(108, 114, 122)" }], + "isMulticolor": false, + "isMulticolor2": false, + "colorPermutations": { + "1081141221158162168120320620912282312341243190812456992125519219212552552551291162451452241651699010019902101": [ + { "f": 2 } + ] + }, + "tags": ["message"], + "grid": 0 + }, + "attrs": [{ "fill": "rgb(108, 114, 122)" }], + "properties": { "order": 58, "id": 127, "name": "message", "prevSize": 32, "code": 59786 }, + "setIdx": 0, + "setId": 4, + "iconIdx": 131 + }, + { + "icon": { + "paths": [ + "M512 128c75.546 0 138.861 52.356 155.645 122.762l-59.645 59.644v-22.405c0-53.019-42.979-96-96-96s-96 42.981-96 96v128c0 24.067 8.858 46.067 23.488 62.915l-45.322 45.325c-26.182-28.49-42.166-66.499-42.166-108.24v-128c0-88.365 71.635-160 160-160zM561.35 568.243l102.893-102.893c-15.763 48.672-54.221 87.13-102.893 102.893zM288 416c0 72.154 23.181 123.101 55.328 159.078l-45.304 45.302c-43.428-47.35-74.024-113.99-74.024-204.381 0-17.674 14.327-32 32-32s32 14.326 32 32zM478.659 650.938l-51.808 51.808c18.56 6.374 36.579 10.806 53.149 13.635v115.619h-160c-17.673 0-32 14.326-32 32s14.327 32 32 32h384c17.674 0 32-14.326 32-32s-14.326-32-32-32h-160v-115.619c44.64-7.619 99.818-26.896 147.722-64.381 60.704-47.501 108.278-123.286 108.278-236 0-17.674-14.326-32-32-32s-32 14.326-32 32c0 92.086-37.757 149.632-83.722 185.6-46.464 36.358-102.736 51.581-140.278 54.326-9.971-0.73-21.264-2.339-33.341-4.989zM825.373 153.372c12.496-12.497 32.758-12.497 45.254 0s12.496 32.758 0 45.255l-672 672c-12.497 12.496-32.758 12.496-45.255 0s-12.497-32.758 0-45.254l672-672z" + ], + "attrs": [{ "fill": "rgb(108, 114, 122)" }], + "isMulticolor": false, + "isMulticolor2": false, + "colorPermutations": { + "1081141221158162168120320620912282312341243190812456992125519219212552552551291162451452241651699010019902101": [ + { "f": 2 } + ] + }, + "tags": ["microphone-disabled"], + "grid": 0 + }, + "attrs": [{ "fill": "rgb(108, 114, 122)" }], + "properties": { "order": 59, "id": 128, "name": "microphone-disabled", "prevSize": 32, "code": 59787 }, + "setIdx": 0, + "setId": 4, + "iconIdx": 132 + }, + { + "icon": { + "paths": [ + "M608 288c0-53.019-42.979-96-96-96s-96 42.981-96 96v128c0 53.021 42.979 96 96 96s96-42.979 96-96v-128zM352 288c0-88.365 71.635-160 160-160s160 71.635 160 160v128c0 88.365-71.635 160-160 160s-160-71.635-160-160v-128zM256 384c17.673 0 32 14.326 32 32 0 92.086 37.757 149.632 83.722 185.6 46.464 36.358 102.736 51.581 140.278 54.326 37.542-2.746 93.814-17.968 140.278-54.326 45.962-35.968 83.722-93.514 83.722-185.6 0-17.674 14.326-32 32-32s32 14.326 32 32c0 112.714-47.574 188.499-108.278 236-47.904 37.485-103.082 56.762-147.722 64.381v115.619h160c17.674 0 32 14.326 32 32s-14.326 32-32 32h-384c-17.673 0-32-14.326-32-32s14.327-32 32-32h160v-115.619c-44.64-7.619-99.818-26.896-147.722-64.381-60.703-47.501-108.278-123.286-108.278-236 0-17.674 14.327-32 32-32z" + ], + "attrs": [{ "fill": "rgb(108, 114, 122)" }], + "isMulticolor": false, + "isMulticolor2": false, + "colorPermutations": { + "1081141221158162168120320620912282312341243190812456992125519219212552552551291162451452241651699010019902101": [ + { "f": 2 } + ] + }, + "tags": ["microphone"], + "grid": 0 + }, + "attrs": [{ "fill": "rgb(108, 114, 122)" }], + "properties": { "order": 60, "id": 129, "name": "microphone", "prevSize": 32, "code": 59788 }, + "setIdx": 0, + "setId": 4, + "iconIdx": 133 + }, + { + "icon": { + "paths": [ + "M234.666 170.661c0-47.128 38.205-85.333 85.333-85.333h384.001c47.126 0 85.331 38.205 85.331 85.333v682.667c0 47.13-38.205 85.334-85.331 85.334h-384.001c-47.128 0-85.333-38.205-85.333-85.334v-682.667zM298.666 170.661v682.667c0 11.782 9.551 21.334 21.333 21.334h384.001c11.782 0 21.331-9.552 21.331-21.334v-682.667c0-11.782-9.549-21.333-21.331-21.333h-96.291c-2.653 24.002-23.002 42.672-47.709 42.672h-96c-24.707 0-45.056-18.67-47.709-42.672h-96.292c-11.782 0-21.333 9.551-21.333 21.333z" + ], + "attrs": [{ "fill": "rgb(108, 114, 122)" }], + "isMulticolor": false, + "isMulticolor2": false, + "colorPermutations": { + "1081141221158162168120320620912282312341243190812456992125519219212552552551291162451452241651699010019902101": [ + { "f": 2 } + ] + }, + "tags": ["mobile"], + "grid": 0 + }, + "attrs": [{ "fill": "rgb(108, 114, 122)" }], + "properties": { "order": 61, "id": 130, "name": "mobile", "prevSize": 32, "code": 59789 }, + "setIdx": 0, + "setId": 4, + "iconIdx": 134 + }, + { + "icon": { + "paths": [ + "M319.247 231.566c-62.882 49.504-135.086 136.549-141.94 266.127-5.762 108.922 37.404 187.184 89.915 241.51 53.258 55.098 115.702 84.925 144.25 94.438 41.859 13.955 114.269 29.536 234.643-15.603 34.858-13.072 73.165-42.096 108.304-78.426 14.272-14.755 27.616-30.294 39.6-45.773-28.778 9.293-61.699 17.754-96.589 23.594-56.192 9.405-119.29 12.32-179.411-0.237-2.49-0.518-4.96-1.030-7.408-1.536-22.195-4.576-42.733-8.816-62.589-17.648-23.091-10.275-43.805-25.891-69.299-51.386-42.096-42.096-89.142-107.222-89.371-213.843-1.569-34.080 4.622-81.878 13.764-129.216 4.624-23.946 10.142-48.465 16.132-72.003zM345.562 138.217c32.8-17.15 63.709 15.843 53.875 45.907-12.234 37.414-24.586 85.511-33.482 131.58-9.024 46.732-13.949 88.633-12.643 114.7l0.038 0.797v0.8c0 84.915 36.173 134.918 70.627 169.373 22.509 22.509 36.835 32.278 50.064 38.166 13.229 5.885 26.832 8.717 51.085 13.763 1.923 0.4 3.917 0.816 5.978 1.248 49.914 10.426 104.534 8.336 155.76-0.237 65.434-10.954 122.384-31.981 152.374-47.386 17.562-9.021 34.992-2.47 44.477 5.965 9.661 8.589 19.376 27.152 8.886 46.954-20.637 38.95-53.645 84.419-92.182 124.259-38.211 39.51-84.317 76.038-131.834 93.859-135.626 50.858-223.216 34.438-277.354 16.394-36.515-12.173-108.392-46.912-170.026-110.675-62.381-64.534-114.684-159.427-107.81-289.373 10.79-203.979 157.583-317.098 232.165-356.093z" + ], + "width": 1056, + "attrs": [{ "fill": "rgb(108, 114, 122)" }], + "isMulticolor": false, + "isMulticolor2": false, + "colorPermutations": { + "1081141221158162168120320620912282312341243190812456992125519219212552552551291162451452241651699010019902101": [ + { "f": 2 } + ] + }, + "tags": ["moon"], + "grid": 0 + }, + "attrs": [{ "fill": "rgb(108, 114, 122)" }], + "properties": { "order": 62, "id": 131, "name": "moon", "prevSize": 32, "code": 59790 }, + "setIdx": 0, + "setId": 4, + "iconIdx": 135 + }, + { + "icon": { + "paths": [ + "M144 160c-17.673 0-32 14.327-32 32s14.327 32 32 32h192c17.674 0 32-14.327 32-32s-14.326-32-32-32h-192zM700.4 346.646c11.795-13.165 32.026-14.272 45.187-2.48 13.162 11.795 14.272 32.026 2.477 45.187l-81.222 90.646h216.358c17.674 0 32 14.326 32 32s-14.326 32-32 32h-216.358l81.222 90.646c11.795 13.162 10.685 33.392-2.477 45.187-13.162 11.792-33.392 10.685-45.187-2.48l-129.030-144c-10.893-12.154-10.893-30.554 0-42.707l129.030-144zM112 512c0-17.674 14.327-32 32-32h192c17.674 0 32 14.326 32 32s-14.326 32-32 32h-192c-17.673 0-32-14.326-32-32zM144 640c-17.673 0-32 14.326-32 32s14.327 32 32 32h192c17.674 0 32-14.326 32-32s-14.326-32-32-32h-192zM112 352c0-17.674 14.327-32 32-32h192c17.674 0 32 14.326 32 32s-14.326 32-32 32h-192c-17.673 0-32-14.326-32-32zM144 800c-17.673 0-32 14.326-32 32s14.327 32 32 32h192c17.674 0 32-14.326 32-32s-14.326-32-32-32h-192z" + ], + "attrs": [{ "fill": "rgb(108, 114, 122)" }], + "isMulticolor": false, + "isMulticolor2": false, + "colorPermutations": { + "1081141221158162168120320620912282312341243190812456992125519219212552552551291162451452241651699010019902101": [ + { "f": 2 } + ] + }, + "tags": ["move-to-the-queue"], + "grid": 0 + }, + "attrs": [{ "fill": "rgb(108, 114, 122)" }], + "properties": { "order": 63, "id": 132, "name": "move-to-the-queue", "prevSize": 32, "code": 59791 }, + "setIdx": 0, + "setId": 4, + "iconIdx": 136 + }, + { + "icon": { + "paths": [ + "M809.002 166.758c7.782 6.063 12.333 15.377 12.333 25.242v448h-0.112c0.074 1.734 0.112 3.478 0.112 5.229 0 69.053-57.309 125.030-128 125.030-70.694 0-128-55.978-128-125.030s57.306-125.030 128-125.030c23.312 0 45.171 6.090 64 16.73v-303.86l-384 96.798v409.136c0 69.053-57.309 125.037-128.001 125.037s-128-55.978-128-125.030c0-69.050 57.308-125.027 128-125.027 23.314 0 45.173 6.086 64 16.726v-325.777c0-14.66 9.962-27.446 24.177-31.029l448-112.93c9.568-2.411 19.709-0.276 27.491 5.788z" + ], + "attrs": [{ "fill": "rgb(108, 114, 122)" }], + "isMulticolor": false, + "isMulticolor2": false, + "colorPermutations": { + "1081141221158162168120320620912282312341243190812456992125519219212552552551291162451452241651699010019902101": [ + { "f": 2 } + ] + }, + "tags": ["musical-note"], + "grid": 0 + }, + "attrs": [{ "fill": "rgb(108, 114, 122)" }], + "properties": { "order": 64, "id": 133, "name": "musical-note", "prevSize": 32, "code": 59792 }, + "setIdx": 0, + "setId": 4, + "iconIdx": 137 + }, + { + "icon": { + "paths": [ + "M208 176c-35.346 0-64 28.654-64 64v576c0 35.347 28.654 64 64 64h576c35.347 0 64-28.653 64-64v-576c0-35.346-28.653-64-64-64h-576zM208 240h576v576h-576v-576zM698.627 558.15c-0.189 17.674-14.669 31.846-32.339 31.658-17.674-0.189-31.846-14.669-31.658-32.339l1.318-123.594-309.341 308.774c-12.51 12.483-32.771 12.464-45.256-0.042-12.485-12.509-12.467-32.771 0.042-45.258l309.195-308.624-123.382 1.315c-17.674 0.189-32.154-13.984-32.339-31.654-0.189-17.674 13.984-32.15 31.654-32.339l201.92-2.157c8.605-0.093 16.886 3.286 22.97 9.37 6.086 6.086 9.462 14.365 9.373 22.97l-2.157 201.92z" + ], + "attrs": [{ "fill": "rgb(108, 114, 122)" }], + "isMulticolor": false, + "isMulticolor2": false, + "colorPermutations": { + "1081141221158162168120320620912282312341243190812456992125519219212552552551291162451452241651699010019902101": [ + { "f": 2 } + ] + }, + "tags": ["new-window"], + "grid": 0 + }, + "attrs": [{ "fill": "rgb(108, 114, 122)" }], + "properties": { "order": 65, "id": 134, "name": "new-window", "prevSize": 32, "code": 59793 }, + "setIdx": 0, + "setId": 4, + "iconIdx": 138 + }, + { + "icon": { + "paths": [ + "M781.837 402.634c0-5.245-0.154-10.454-0.461-15.622l-63.539 63.539v265.363h-265.363l-66.979 66.979h425.363c12.944 0 24.611-7.795 29.565-19.754 4.954-11.955 2.214-25.722-6.938-34.874l-51.648-51.648v-273.984zM704.765 217.373l-45.254 45.255c-35.638-35.351-84.704-57.189-138.867-57.189-108.909 0-197.194 88.287-197.194 197.195v196.054l-64.001 64v-260.054c0-144.254 116.941-261.195 261.194-261.195 71.837 0 136.899 29.001 184.122 75.934zM433.578 808.934c0 48.086 38.982 87.066 87.066 87.066s87.066-38.979 87.066-87.066h-174.131zM854.275 190.982c-11.334-11.334-29.709-11.334-41.043 0l-612.732 612.733c-11.333 11.331-11.333 29.709 0 41.040 11.334 11.334 29.709 11.334 41.043 0l612.732-612.731c11.334-11.333 11.334-29.709 0-41.043z" + ], + "attrs": [{ "fill": "rgb(108, 114, 122)" }], + "isMulticolor": false, + "isMulticolor2": false, + "colorPermutations": { + "1081141221158162168120320620912282312341243190812456992125519219212552552551291162451452241651699010019902101": [ + { "f": 2 } + ] + }, + "tags": ["notification-disabled"], + "grid": 0 + }, + "attrs": [{ "fill": "rgb(108, 114, 122)" }], + "properties": { "order": 66, "id": 135, "name": "notification-disabled", "prevSize": 32, "code": 59794 }, + "setIdx": 0, + "setId": 4, + "iconIdx": 139 + }, + { + "icon": { + "paths": [ + "M601.331 808.928h-174.154c0.003 48.090 38.989 87.072 87.078 87.072s87.075-38.982 87.075-87.072zM815.597 731.677c7.274 9.696 8.442 22.669 3.021 33.51s-16.499 17.69-28.621 17.69h-565.996c-12.943 0-24.611-7.798-29.564-19.757-4.953-11.955-2.215-25.718 6.937-34.87l51.653-51.654v-274.032c0-144.272 116.957-261.228 261.229-261.228s261.229 116.956 261.229 261.228v275.629l40.112 53.485zM711.485 715.894v-313.331c0-108.926-88.304-197.228-197.229-197.228-108.928 0-197.229 88.302-197.229 197.228v313.331h394.458z" + ], + "attrs": [{ "fill": "rgb(108, 114, 122)" }], + "isMulticolor": false, + "isMulticolor2": false, + "colorPermutations": { + "1081141221158162168120320620912282312341243190812456992125519219212552552551291162451452241651699010019902101": [ + { "f": 2 } + ] + }, + "tags": ["notification"], + "grid": 0 + }, + "attrs": [{ "fill": "rgb(108, 114, 122)" }], + "properties": { "order": 67, "id": 136, "name": "notification", "prevSize": 32, "code": 59795 }, + "setIdx": 0, + "setId": 4, + "iconIdx": 140 + }, + { + "icon": { + "paths": [ + "M712.051 512.675v54.89c-0.195 76.736-43.741 143.283-107.44 176.445-5.53-25.67-28.362-44.906-55.683-44.906h-72.502c-31.459 0-56.963 25.501-56.963 56.963v41.427c0 31.462 25.504 56.963 56.963 56.963h72.502c28.509 0 52.128-20.944 56.307-48.288 69.261-26.829 123.962-82.883 148.966-153.030 4.723 1.27 9.69 1.946 14.813 1.946h28.483c31.459 0 56.963-25.504 56.963-56.963v-85.446c0-31.459-25.504-56.963-56.963-56.963h-28.483v-28.483c0-141.572-114.765-256.338-256.336-256.338s-256.339 114.766-256.339 256.338v23.302h-28.483c-31.46 0-56.964 25.504-56.964 56.966v103.571c0 31.459 25.504 56.963 56.964 56.963h28.482c31.46 0 56.964-25.504 56.964-56.963v-36.253h0.149c-0.099-2.576-0.148-5.165-0.148-7.766v-139.821c0-110.111 89.263-199.374 199.375-199.374s199.373 89.263 199.373 199.374v85.446z" + ], + "width": 1056, + "attrs": [{ "fill": "rgb(108, 114, 122)" }], + "isMulticolor": false, + "isMulticolor2": false, + "colorPermutations": { + "1081141221158162168120320620912282312341243190812456992125519219212552552551291162451452241651699010019902101": [ + { "f": 2 } + ] + }, + "tags": ["omnichannel"], + "grid": 0 + }, + "attrs": [{ "fill": "rgb(108, 114, 122)" }], + "properties": { "order": 123, "id": 137, "name": "omnichannel", "prevSize": 32, "code": 59796 }, + "setIdx": 0, + "setId": 4, + "iconIdx": 141 + }, + { + "icon": { + "paths": [ + "M705.578 633.158c9.507-9.235 24.701-9.018 33.939 0.486 9.238 9.507 9.021 24.701-0.486 33.939l-208.275 202.387c-9.312 9.050-24.138 9.050-33.45 0l-208.276-202.387c-9.506-9.238-9.724-24.432-0.487-33.939 9.237-9.504 24.432-9.722 33.937-0.486l191.549 186.134 191.549-186.134zM705.578 411.584c9.507 9.238 24.701 9.021 33.939-0.486s9.021-24.701-0.486-33.939l-208.275-202.385c-9.312-9.051-24.138-9.051-33.45 0l-208.276 202.385c-9.506 9.238-9.724 24.432-0.487 33.939 9.237 9.504 24.432 9.725 33.937 0.486l191.549-186.134 191.549 186.134z" + ], + "width": 1056, + "attrs": [{ "fill": "rgb(108, 114, 122)" }], + "isMulticolor": false, + "isMulticolor2": false, + "colorPermutations": { + "1081141221158162168120320620912282312341243190812456992125519219212552552551291162451452241651699010019902101": [ + { "f": 2 } + ] + }, + "tags": ["order"], + "grid": 0 + }, + "attrs": [{ "fill": "rgb(108, 114, 122)" }], + "properties": { "order": 124, "id": 138, "name": "order", "prevSize": 32, "code": 59797 }, + "setIdx": 0, + "setId": 4, + "iconIdx": 142 + }, + { + "icon": { + "paths": [ + "M742.317 652.566c12.666-12.323 12.944-32.582 0.618-45.248-12.323-12.669-32.582-12.944-45.251-0.621l44.634 45.869zM512 832.019l-22.317 22.934c12.422 12.086 32.211 12.086 44.634 0l-22.317-22.934zM326.317 606.698c-12.667-12.323-32.927-12.048-45.252 0.621-12.324 12.666-12.047 32.925 0.619 45.248l44.632-45.869zM697.683 606.698l-208 202.387 44.634 45.869 208-202.387-44.634-45.869zM534.317 809.085l-208-202.387-44.632 45.869 207.999 202.387 44.634-45.869z", + "M742.317 371.456c12.666 12.323 12.944 32.582 0.618 45.251-12.323 12.666-32.582 12.944-45.251 0.618l44.634-45.869zM512 192.004l-22.317-22.935c12.422-12.087 32.211-12.087 44.634 0l-22.317 22.935zM326.317 417.325c-12.668 12.326-32.927 12.048-45.252-0.618-12.325-12.669-12.048-32.928 0.619-45.251l44.633 45.869zM697.683 417.325l-208-202.386 44.634-45.87 208 202.387-44.634 45.869zM534.317 214.939l-208 202.386-44.633-45.869 207.999-202.387 44.634 45.87z" + ], + "attrs": [{ "fill": "rgb(108, 114, 122)" }, { "fill": "rgb(158, 162, 168)", "opacity": 0.7 }], + "isMulticolor": true, + "isMulticolor2": true, + "colorPermutations": { + "1081141221158162168120320620912282312341243190812456992125519219212552552551291162451452241651699010019902101": [ + { "f": 2 }, + { "f": 7 } + ] + }, + "tags": ["ordering-ascending"], + "grid": 0 + }, + "attrs": [{ "fill": "rgb(108, 114, 122)" }, { "fill": "rgb(158, 162, 168)", "opacity": 0.7 }], + "properties": { + "order": 125, + "id": 139, + "name": "ordering-ascending", + "prevSize": 32, + "code": 59798, + "codes": [59798, 59799] + }, + "setIdx": 0, + "setId": 4, + "iconIdx": 143 + }, + { + "icon": { + "paths": [ + "M281.684 371.434c-12.667 12.323-12.944 32.582-0.619 45.248 12.324 12.669 32.584 12.944 45.252 0.621l-44.633-45.869zM512 191.981l22.317-22.935c-12.422-12.087-32.211-12.087-44.634 0l22.317 22.935zM697.683 417.302c12.669 12.323 32.928 12.048 45.251-0.621 12.326-12.666 12.048-32.925-0.618-45.248l-44.634 45.869zM326.317 417.302l208-202.387-44.634-45.869-207.999 202.387 44.633 45.869zM489.683 214.916l208 202.387 44.634-45.869-208-202.387-44.634 45.869z", + "M281.684 652.544c-12.667-12.323-12.944-32.582-0.619-45.251 12.324-12.666 32.584-12.944 45.252-0.618l-44.633 45.869zM512 831.997l22.317 22.934c-12.422 12.086-32.211 12.086-44.634 0l22.317-22.934zM697.683 606.675c12.669-12.326 32.928-12.048 45.251 0.618 12.326 12.669 12.048 32.928-0.618 45.251l-44.634-45.869zM326.317 606.675l208 202.384-44.634 45.872-207.999-202.387 44.633-45.869zM489.683 809.059l208-202.384 44.634 45.869-208 202.387-44.634-45.872z" + ], + "attrs": [{ "fill": "rgb(108, 114, 122)" }, { "fill": "rgb(158, 162, 168)", "opacity": 0.7 }], + "isMulticolor": true, + "isMulticolor2": true, + "colorPermutations": { + "1081141221158162168120320620912282312341243190812456992125519219212552552551291162451452241651699010019902101": [ + { "f": 2 }, + { "f": 7 } + ] + }, + "tags": ["ordering-descending"], + "grid": 0 + }, + "attrs": [{ "fill": "rgb(108, 114, 122)" }, { "fill": "rgb(158, 162, 168)", "opacity": 0.7 }], + "properties": { + "order": 126, + "id": 140, + "name": "ordering-descending", + "prevSize": 32, + "code": 59800, + "codes": [59800, 59801] + }, + "setIdx": 0, + "setId": 4, + "iconIdx": 144 + }, + { + "icon": { + "paths": [ + "M512 928c229.75 0 416-186.25 416-416s-186.25-416-416-416c-229.752 0-416.001 186.25-416.001 416s186.25 416 416.001 416zM399.997 383.994c0-17.67 14.326-32 32-32s32 14.33 32 32v256c0 17.674-14.326 32-32 32s-32-14.326-32-32v-256zM559.997 383.994c0-17.67 14.326-32 32-32s32 14.33 32 32v256c0 17.674-14.326 32-32 32s-32-14.326-32-32v-256z" + ], + "attrs": [{ "fill": "rgb(108, 114, 122)" }], + "isMulticolor": false, + "isMulticolor2": false, + "colorPermutations": { + "1081141221158162168120320620912282312341243190812456992125519219212552552551291162451452241651699010019902101": [ + { "f": 2 } + ] + }, + "tags": ["pause-filled"], + "grid": 0 + }, + "attrs": [{ "fill": "rgb(108, 114, 122)" }], + "properties": { "order": 128, "id": 141, "name": "pause-filled", "prevSize": 32, "code": 59802 }, + "setIdx": 0, + "setId": 4, + "iconIdx": 145 + }, + { + "icon": { + "paths": [ + "M864 512c0-194.404-157.597-352-352-352-194.405 0-352.001 157.596-352.001 352s157.596 352 352.001 352c194.403 0 352-157.597 352-352zM928 512c0 229.75-186.25 416-416 416-229.752 0-416.001-186.25-416.001-416s186.25-416 416.001-416c229.75 0 416 186.25 416 416zM399.997 383.994v256c0 17.674 14.326 32 32 32s32-14.326 32-32v-256c0-17.67-14.326-32-32-32s-32 14.33-32 32zM559.997 383.994v256c0 17.674 14.326 32 32 32s32-14.326 32-32v-256c0-17.67-14.326-32-32-32s-32 14.33-32 32z" + ], + "attrs": [{ "fill": "rgb(108, 114, 122)" }], + "isMulticolor": false, + "isMulticolor2": false, + "colorPermutations": { + "1081141221158162168120320620912282312341243190812456992125519219212552552551291162451452241651699010019902101": [ + { "f": 2 } + ] + }, + "tags": ["pause"], + "grid": 0 + }, + "attrs": [{ "fill": "rgb(108, 114, 122)" }], + "properties": { "order": 129, "id": 142, "name": "pause", "prevSize": 32, "code": 59803 }, + "setIdx": 0, + "setId": 4, + "iconIdx": 146 + }, + { + "icon": { + "paths": [ + "M825.373 153.372c12.496-12.497 32.758-12.497 45.254 0s12.496 32.758 0 45.255l-672 672c-12.497 12.496-32.758 12.496-45.255 0s-12.497-32.758 0-45.254l672-672zM575.613 569.069l-44.707 44.707c7.846 5.904 15.846 11.453 23.533 16.016 9.2 5.459 22.838 12.579 36.973 13.222 16.224 0.736 31.446-5.302 42.47-10.976 11.741-6.042 22.79-13.824 31.744-20.944 1.053-0.838 2.134-1.232 2.883-1.341 0.403-0.061 0.611-0.032 0.688-0.013l121.094 59.075c-5.578 29.331-20.381 66.771-42.39 92.621-11.229 13.187-23.197 22.038-35.389 26.32-11.597 4.074-25.402 4.762-42.653-1.677-48.422-18.070-103.405-53.152-151.69-89.261-14.026-10.49-27.299-20.922-39.469-30.842l-44.387 44.39c14.186 11.683 29.84 24.061 46.445 36.48 49.808 37.248 110.448 76.56 167.261 97.76 30.275 11.299 59.149 11.238 85.197 2.086 25.45-8.938 46.090-25.786 62.246-44.755 31.866-37.424 50.634-88.144 57.059-126.246 4.72-27.987-11.776-51.77-33.136-62.192l-122.81-59.91c-24.41-11.907-51.462-6-69.834 8.611-7.008 5.571-14.544 10.739-21.443 14.291-5.574 2.867-8.931 3.741-10.314 4.003l-0.093-0.038c-0.992-0.4-3.731-1.514-8.57-4.387-3.277-1.942-6.87-4.301-10.71-7.002zM313.636 589.683l44.389-44.387c-9.92-12.17-20.349-25.44-30.838-39.466-36.109-48.285-71.192-103.267-89.263-151.69-6.437-17.251-5.748-31.056-1.675-42.652 4.283-12.192 13.134-24.16 26.319-35.388 25.849-22.012 63.291-36.814 92.622-42.392l59.075 121.095c0.019 0.077 0.048 0.285-0.013 0.688-0.109 0.752-0.502 1.83-1.341 2.883-7.12 8.954-14.902 20.003-20.944 31.744-5.674 11.024-11.715 26.246-10.976 42.47 0.643 14.134 7.763 27.773 13.222 36.973 4.563 7.686 10.109 15.683 16.013 23.53l44.707-44.707c-2.701-3.837-5.056-7.434-7.002-10.707-2.87-4.838-3.984-7.578-4.387-8.57l-0.038-0.093c0.266-1.382 1.139-4.739 4.006-10.314 3.552-6.899 8.72-14.435 14.291-21.443 14.611-18.371 20.518-45.424 8.611-69.834l-59.91-122.809c-10.422-21.362-34.205-37.856-62.192-33.137-38.103 6.425-88.824 25.194-126.246 57.060-18.972 16.155-35.817 36.795-44.757 62.246-9.15 26.048-9.211 54.921 2.087 85.196 21.202 56.813 60.513 117.453 97.761 167.261 12.417 16.605 24.795 32.256 36.478 46.442z" + ], + "attrs": [{ "fill": "rgb(108, 114, 122)" }], + "isMulticolor": false, + "isMulticolor2": false, + "colorPermutations": { + "1081141221158162168120320620912282312341243190812456992125519219212552552551291162451452241651699010019902101": [ + { "f": 2 } + ] + }, + "tags": ["phone-disabled"], + "grid": 0 + }, + "attrs": [{ "fill": "rgb(108, 114, 122)" }], + "properties": { "order": 130, "id": 143, "name": "phone-disabled", "prevSize": 32, "code": 59804 }, + "setIdx": 0, + "setId": 4, + "iconIdx": 147 + }, + { + "icon": { + "paths": [ + "M801.123 657.59c22.474 7.734 50.954 2.582 67.408-20.544 22.4-31.488 44.992-80.624 48.922-129.619 1.99-24.838-0.691-51.344-12.368-75.661-11.949-24.89-32.32-45.35-61.718-58.768-55.165-25.181-125.84-40.262-187.398-49.146-61.946-8.936-117.494-11.98-143.965-11.98v62.469c23.2 0 75.757 2.787 135.043 11.341 59.677 8.611 123.36 22.682 170.381 44.144 16.749 7.645 26.022 17.894 31.344 28.973 5.59 11.651 7.795 26.371 6.413 43.635-2.717 33.843-18.723 70.784-35.52 95.469l-127.398-43.853c-0.067-0.042-0.237-0.17-0.48-0.496-0.451-0.608-0.934-1.651-1.088-2.989-1.296-11.363-3.606-24.678-7.635-37.254-3.786-11.808-10.278-26.842-22.272-37.792-10.451-9.539-25.126-14.15-35.494-16.794-11.914-3.040-25.568-5.181-38.944-6.717-26.858-3.088-55.773-4.093-74.352-4.093v62.47c16.902 0 43.338 0.938 67.219 3.683 11.99 1.379 22.554 3.123 30.64 5.187 5.45 1.389 8.173 2.541 9.162 2.957l0.093 0.038c0.79 1.165 2.544 4.154 4.458 10.125 2.368 7.392 4.045 16.374 5.059 25.267 2.659 23.325 17.61 46.63 43.29 55.469l129.203 44.477zM222.875 657.584c-22.474 7.738-50.954 2.586-67.407-20.544-22.4-31.485-44.993-80.621-48.922-129.616-1.992-24.838 0.691-51.344 12.366-75.664 11.949-24.886 32.321-45.347 61.719-58.765 55.165-25.181 125.841-40.262 187.4-49.146 61.946-8.937 117.494-11.98 143.965-11.98v62.47c-23.2 0-75.757 2.787-135.046 11.341-59.674 8.608-123.358 22.682-170.378 44.144-16.748 7.645-26.024 17.894-31.343 28.973-5.593 11.651-7.797 26.371-6.412 43.635 2.714 33.843 18.721 70.784 35.518 95.469l127.4-43.856c0.067-0.038 0.234-0.166 0.477-0.493 0.454-0.611 0.938-1.651 1.091-2.989 1.296-11.363 3.606-24.682 7.635-37.254 3.786-11.808 10.275-26.842 22.272-37.792 10.448-9.542 25.126-14.15 35.491-16.794 11.917-3.040 25.568-5.181 38.947-6.717 26.858-3.088 55.77-4.093 74.349-4.093v62.47c-16.899 0-43.338 0.938-67.216 3.683-11.99 1.376-22.554 3.123-30.64 5.187-5.453 1.389-8.176 2.541-9.162 2.957l-0.093 0.038c-0.79 1.162-2.547 4.154-4.458 10.125-2.371 7.389-4.045 16.371-5.059 25.267-2.659 23.322-17.61 46.627-43.293 55.469l-129.202 44.474z" + ], + "attrs": [{ "fill": "rgb(108, 114, 122)" }], + "isMulticolor": false, + "isMulticolor2": false, + "colorPermutations": { + "1081141221158162168120320620912282312341243190812456992125519219212552552551291162451452241651699010019902101": [ + { "f": 2 } + ] + }, + "tags": ["phone-end"], + "grid": 0 + }, + "attrs": [{ "fill": "rgb(108, 114, 122)" }], + "properties": { "order": 131, "id": 144, "name": "phone-end", "prevSize": 32, "code": 59805 }, + "setIdx": 0, + "setId": 4, + "iconIdx": 148 + }, + { + "icon": { + "paths": [ + "M410.502 204.616c-10.419-21.362-34.202-37.856-62.189-33.137-38.104 6.425-88.825 25.194-126.247 57.060-18.972 16.155-35.817 36.795-44.757 62.246-9.15 26.048-9.211 54.919 2.087 85.195 21.202 56.816 60.513 117.456 97.761 167.264 37.482 50.122 74.609 91.552 93.329 110.269l44.173-44.173c-16.406-16.403-51.6-55.536-87.472-103.51-36.11-48.285-71.192-103.264-89.264-151.69-6.437-17.248-5.748-31.056-1.675-42.651 4.283-12.192 13.134-24.16 26.319-35.388 25.849-22.012 63.292-36.814 92.623-42.392l59.075 121.097c0.019 0.074 0.045 0.285-0.013 0.688-0.112 0.749-0.502 1.827-1.344 2.883-7.117 8.95-14.899 20-20.941 31.741-5.674 11.024-11.715 26.246-10.976 42.47 0.643 14.138 7.76 27.773 13.222 36.973 6.275 10.576 14.416 21.741 22.79 32.291 16.806 21.171 36.541 42.326 49.68 55.466l44.173-44.173c-11.952-11.952-29.981-31.309-44.928-50.134-7.504-9.453-13.738-18.157-17.997-25.334-2.87-4.838-3.984-7.578-4.387-8.57l-0.038-0.093c0.266-1.382 1.139-4.736 4.006-10.31 3.552-6.902 8.717-14.438 14.291-21.443 14.611-18.374 20.518-45.424 8.611-69.837l-59.914-122.808zM819.386 613.504c21.36 10.419 37.856 34.202 33.136 62.189-6.426 38.106-25.194 88.826-57.059 126.246-16.157 18.973-36.797 35.818-62.246 44.758-26.048 9.149-54.922 9.21-85.197-2.086-56.813-21.203-117.453-60.515-167.261-97.763-50.122-37.482-91.555-74.608-110.272-93.328l44.173-44.173c16.403 16.406 55.539 51.6 103.51 87.472 48.285 36.109 103.267 71.194 151.69 89.264 17.248 6.435 31.056 5.747 42.653 1.674 12.192-4.282 24.16-13.133 35.386-26.317 22.013-25.85 36.816-63.293 42.394-92.624l-121.094-59.075c-0.077-0.019-0.288-0.048-0.688 0.013-0.752 0.112-1.83 0.502-2.886 1.344-8.95 7.117-20 14.899-31.741 20.941-11.024 5.674-26.246 11.715-42.47 10.976-14.134-0.643-27.773-7.76-36.973-13.222-10.576-6.275-21.741-14.416-32.288-22.79-21.174-16.806-42.33-36.541-55.469-49.68l44.173-44.173c11.952 11.952 31.309 29.981 50.134 44.928 9.453 7.504 18.16 13.738 25.334 17.997 4.838 2.87 7.578 3.984 8.57 4.387l0.093 0.038c1.382-0.266 4.739-1.139 10.314-4.006 6.899-3.552 14.435-8.717 21.44-14.291 18.374-14.611 45.427-20.518 69.837-8.611l122.81 59.914z" + ], + "attrs": [{ "fill": "rgb(108, 114, 122)" }], + "isMulticolor": false, + "isMulticolor2": false, + "colorPermutations": { + "1081141221158162168120320620912282312341243190812456992125519219212552552551291162451452241651699010019902101": [ + { "f": 2 } + ] + }, + "tags": ["phone"], + "grid": 0 + }, + "attrs": [{ "fill": "rgb(108, 114, 122)" }], + "properties": { "order": 68, "id": 145, "name": "phone", "prevSize": 32, "code": 59806 }, + "setIdx": 0, + "setId": 4, + "iconIdx": 149 + }, + { + "icon": { + "paths": [ + "M512.608 128.019c-72.378-1.376-144.906 25.78-199.307 80.524-54.654 54.999-89.301 136.056-89.301 239.464 0 80.234 44.5 174.87 97.546 252.806 53.066 77.965 120.829 148.157 176.141 175.821l15.194 7.6 14.81-8.326c217.158-122.154 272.31-333.882 272.31-427.898 0-101.731-27.923-181.776-80.179-236.932-52.346-55.248-125.296-81.503-207.213-83.060zM288 448.006c0-88.589 29.353-152.745 70.698-194.351 41.6-41.862 97.072-62.705 152.694-61.648 68.992 1.311 124.038 23.054 161.968 63.088 38.019 40.126 62.64 102.649 62.64 192.914 0 74.55-44.691 253.677-224.176 363.030-39.683-25.61-92.186-79.853-137.37-146.237-50.954-74.864-86.454-156.221-86.454-216.797zM544 416c0-17.674-14.326-32-32-32s-32 14.326-32 32c0 17.674 14.326 32 32 32s32-14.326 32-32zM608 416c0 53.021-42.979 96-96 96s-96-42.979-96-96c0-53.021 42.979-96 96-96s96 42.979 96 96z" + ], + "attrs": [{ "fill": "rgb(108, 114, 122)" }], + "isMulticolor": false, + "isMulticolor2": false, + "colorPermutations": { + "1081141221158162168120320620912282312341243190812456992125519219212552552551291162451452241651699010019902101": [ + { "f": 2 } + ] + }, + "tags": ["pin-map"], + "grid": 0 + }, + "attrs": [{ "fill": "rgb(108, 114, 122)" }], + "properties": { "order": 69, "id": 146, "name": "pin-map", "prevSize": 32, "code": 59807 }, + "setIdx": 0, + "setId": 4, + "iconIdx": 150 + }, + { + "icon": { + "paths": [ + "M428.346 199.399c17.542-17.543 45.984-17.543 63.53 0 17.542 17.543 17.542 45.986 0 63.53l-43.661 43.659 177.83 177.828 60.339-60.339c24.992-24.995 65.517-24.995 90.509 0l45.254 45.254-331.869 331.869-45.254-45.254c-24.992-24.995-24.992-65.517 0-90.509l60.339-60.339-177.827-177.83-43.661 43.661c-17.543 17.542-45.987 17.542-63.53 0s-17.543-45.987 0-63.53l208.001-207.999zM175.090 362.144c-42.537 42.538-42.537 111.501 0 154.038 42.001 42.003 109.771 42.531 152.42 1.587l87.334 87.334-15.075 15.075c-49.987 49.987-49.987 131.034 0 181.021l67.882 67.882c12.496 12.496 32.758 12.496 45.254 0l167.936-167.933 88.013 92.003c12.218 12.771 32.474 13.219 45.245 1.002 12.771-12.214 13.219-32.47 1.002-45.242l-88.995-93.030 163.923-163.923c12.499-12.496 12.499-32.758 0-45.254l-67.882-67.882c-49.987-49.987-131.030-49.987-181.018 0l-15.907 15.907-87.325-87.323c41.766-42.596 41.51-110.983-0.768-153.262-42.538-42.537-111.504-42.537-154.042 0l-207.998 208z" + ], + "width": 1056, + "attrs": [{ "fill": "rgb(108, 114, 122)" }], + "isMulticolor": false, + "isMulticolor2": false, + "colorPermutations": { + "1081141221158162168120320620912282312341243190812456992125519219212552552551291162451452241651699010019902101": [ + { "f": 2 } + ] + }, + "tags": ["pin"], + "grid": 0 + }, + "attrs": [{ "fill": "rgb(108, 114, 122)" }], + "properties": { "order": 70, "id": 147, "name": "pin", "prevSize": 32, "code": 59808 }, + "setIdx": 0, + "setId": 4, + "iconIdx": 151 + }, + { + "icon": { + "paths": [ + "M513.354 160c17.674 0 32 13.133 32 29.333v645.332c0 16.202-14.326 29.334-32 29.334s-32-13.133-32-29.334v-645.332c0-16.2 14.326-29.333 32-29.333z" + ], + "width": 1056, + "attrs": [{ "fill": "rgb(108, 114, 122)" }], + "isMulticolor": false, + "isMulticolor2": false, + "colorPermutations": { + "1081141221158162168120320620912282312341243190812456992125519219212552552551291162451452241651699010019902101": [ + { "f": 2 } + ] + }, + "tags": ["Pipe"], + "grid": 0 + }, + "attrs": [{ "fill": "rgb(108, 114, 122)" }], + "properties": { "order": 71, "id": 148, "name": "Pipe", "prevSize": 32, "code": 59809 }, + "setIdx": 0, + "setId": 4, + "iconIdx": 152 + }, + { + "icon": { + "paths": [ + "M512 928.003c229.75 0 416-186.25 416-416s-186.25-415.999-416-415.999c-229.75 0-416 186.25-416 415.999s186.25 416 416 416zM451.846 357.19l195.258 136.768c14.205 9.952 18.496 30.874 9.578 46.73-2.429 4.323-5.706 7.978-9.578 10.691l-195.258 136.768c-14.205 9.952-32.95 5.165-41.866-10.691-3.037-5.398-4.646-11.645-4.646-18.019v-273.536c0-18.72 13.597-33.894 30.368-33.894 5.712 0 11.309 1.795 16.144 5.184z" + ], + "attrs": [{ "fill": "rgb(108, 114, 122)" }], + "isMulticolor": false, + "isMulticolor2": false, + "colorPermutations": { + "1081141221158162168120320620912282312341243190812456992125519219212552552551291162451452241651699010019902101": [ + { "f": 2 } + ] + }, + "tags": ["play-filled"], + "grid": 0 + }, + "attrs": [{ "fill": "rgb(108, 114, 122)" }], + "properties": { "order": 72, "id": 149, "name": "play-filled", "prevSize": 32, "code": 59810 }, + "setIdx": 0, + "setId": 4, + "iconIdx": 153 + }, + { + "icon": { + "paths": [ + "M864 512c0-194.404-157.597-352-352-352s-352 157.596-352 352c0 194.403 157.596 352 352 352s352-157.597 352-352zM928 512c0 229.75-186.25 416-416 416s-416-186.25-416-416c0-229.75 186.25-416 416-416s416 186.25 416 416zM451.85 357.187l195.254 136.768c14.208 9.949 18.496 30.87 9.581 46.726-2.432 4.326-5.706 7.981-9.581 10.694l-195.254 136.768c-14.208 9.952-32.954 5.165-41.869-10.694-3.037-5.398-4.646-11.642-4.646-18.016v-273.536c0-18.723 13.597-33.898 30.371-33.898 5.709 0 11.306 1.798 16.144 5.187z" + ], + "attrs": [{ "fill": "rgb(108, 114, 122)" }], + "isMulticolor": false, + "isMulticolor2": false, + "colorPermutations": { + "1081141221158162168120320620912282312341243190812456992125519219212552552551291162451452241651699010019902101": [ + { "f": 2 } + ] + }, + "tags": ["play"], + "grid": 0 + }, + "attrs": [{ "fill": "rgb(108, 114, 122)" }], + "properties": { "order": 73, "id": 150, "name": "play", "prevSize": 32, "code": 59811 }, + "setIdx": 0, + "setId": 4, + "iconIdx": 154 + }, + { + "icon": { + "paths": [ + "M325.686 430.88l224.49 224.49-126.118 126.118-224.491-224.49 126.12-126.118zM370.941 385.626l192.115-192.117 224.49 224.491-192.115 192.115-224.49-224.49zM585.683 125.627c-12.496-12.497-32.758-12.497-45.254 0l-408.745 408.745c-12.497 12.496-12.497 32.758 0 45.254l269.746 269.747c5.229 5.229 11.818 8.269 18.63 9.123v0.067h0.57c2.278 0.243 4.576 0.243 6.851 0h440.579c17.674 0 32-14.33 32-32 0-17.674-14.326-32.003-32-32.003h-366.566l353.936-353.933c12.496-12.496 12.496-32.758 0-45.254l-269.747-269.746z" + ], + "width": 1056, + "attrs": [{ "fill": "rgb(108, 114, 122)" }], + "isMulticolor": false, + "isMulticolor2": false, + "colorPermutations": { + "1081141221158162168120320620912282312341243190812456992125519219212552552551291162451452241651699010019902101": [ + { "f": 2 } + ] + }, + "tags": ["prune"], + "grid": 0 + }, + "attrs": [{ "fill": "rgb(108, 114, 122)" }], + "properties": { "order": 77, "id": 154, "name": "prune", "prevSize": 32, "code": 59817 }, + "setIdx": 0, + "setId": 4, + "iconIdx": 155 + }, + { + "icon": { + "paths": [ + "M230.486 636.688c-14.92-9.472-34.694-5.056-44.167 9.862-9.473 14.922-5.057 34.694 9.862 44.166l298.666 189.632c10.47 6.646 23.837 6.646 34.304 0l298.669-189.632c14.918-9.472 19.334-29.245 9.862-44.166-9.475-14.918-29.248-19.334-44.166-9.862l-281.517 178.739-281.514-178.739zM186.319 494.848c9.473-14.922 29.247-19.334 44.167-9.862l281.514 178.739 281.517-178.739c14.918-9.472 34.691-5.059 44.166 9.862 9.472 14.918 5.056 34.694-9.862 44.166l-298.669 189.632c-10.467 6.646-23.834 6.646-34.304 0l-298.666-189.632c-14.92-9.472-19.335-29.248-9.862-44.166zM529.152 143.657l298.669 189.629c9.245 5.872 14.848 16.064 14.848 27.014 0 10.954-5.603 21.146-14.848 27.014l-298.669 189.632c-10.467 6.646-23.834 6.646-34.304 0l-298.666-189.632c-9.246-5.869-14.848-16.061-14.848-27.014 0-10.95 5.602-21.142 14.848-27.014l298.666-189.629c10.47-6.647 23.837-6.647 34.304 0zM273.035 360.301l238.965 151.725 238.966-151.725-238.966-151.724-238.965 151.724z" + ], + "attrs": [{ "fill": "rgb(108, 114, 122)" }], + "isMulticolor": false, + "isMulticolor2": false, + "colorPermutations": { + "1081141221158162168120320620912282312341243190812456992125519219212552552551291162451452241651699010019902101": [ + { "f": 2 } + ] + }, + "tags": ["queue"], + "grid": 0 + }, + "attrs": [{ "fill": "rgb(108, 114, 122)" }], + "properties": { "order": 78, "id": 155, "name": "queue", "prevSize": 32, "code": 59818 }, + "setIdx": 0, + "setId": 4, + "iconIdx": 156 + }, + { + "icon": { + "paths": [ + "M161.352 800c-11.706 0-22.477-6.39-28.087-16.666s-5.161-22.79 1.169-32.64l112.304-174.694h-69.387c-17.673 0-32-14.326-32-32v-288c0-17.673 14.327-32 32-32h255.999c17.674 0 32 14.327 32 32v288c0 6.138-1.763 12.144-5.082 17.306l-143.999 224c-5.888 9.158-16.029 14.694-26.918 14.694h-128zM332.269 561.306l-112.304 174.694h51.916l129.469-201.398v-246.602h-191.999v224h96c11.706 0 22.479 6.39 28.085 16.666 5.61 10.275 5.162 22.79-1.168 32.64zM577.35 800c-11.706 0-22.477-6.39-28.086-16.666s-5.162-22.79 1.171-32.64l112.304-174.694h-69.389c-17.67 0-32-14.326-32-32v-288c0-17.673 14.33-32 32-32h256c17.674 0 32 14.327 32 32v288c0 6.138-1.763 12.144-5.082 17.306l-144 224c-5.888 9.158-16.029 14.694-26.918 14.694h-128zM748.269 561.306l-112.304 174.694h51.917l129.469-201.398v-246.602h-192v224h96c11.706 0 22.48 6.39 28.086 16.666 5.61 10.275 5.162 22.79-1.168 32.64z" + ], + "width": 1056, + "attrs": [{ "fill": "rgb(108, 114, 122)" }], + "isMulticolor": false, + "isMulticolor2": false, + "colorPermutations": { + "1081141221158162168120320620912282312341243190812456992125519219212552552551291162451452241651699010019902101": [ + { "f": 2 } + ] + }, + "tags": ["quote"], + "grid": 0 + }, + "attrs": [{ "fill": "rgb(108, 114, 122)" }], + "properties": { "order": 79, "id": 156, "name": "quote", "prevSize": 32, "code": 59819 }, + "setIdx": 0, + "setId": 4, + "iconIdx": 157 + }, + { + "icon": { + "paths": [ + "M800 560c0 176.73-143.27 320-320 320-176.731 0-320-143.27-320-320s143.269-320 320-320v-64c-212.077 0-384 171.923-384 384s171.923 384 384 384c212.077 0 384-171.923 384-384 0-10.778-0.445-21.45-1.315-32h-64.266c1.046 10.525 1.581 21.2 1.581 32zM800 128c0-17.673-14.326-32-32-32s-32 14.327-32 32v112h-112c-17.674 0-32 14.327-32 32s14.326 32 32 32h112v112c0 17.674 14.326 32 32 32s32-14.326 32-32v-112h112c17.674 0 32-14.327 32-32s-14.326-32-32-32h-112v-112zM384 528c35.347 0 64-28.653 64-64s-28.653-64-64-64c-35.347 0-64 28.653-64 64s28.653 64 64 64zM640 464c0 35.347-28.653 64-64 64s-64-28.653-64-64c0-35.347 28.653-64 64-64s64 28.653 64 64zM329.805 605.075c-10.451-14.25-30.477-17.331-44.728-6.88s-17.333 30.477-6.882 44.73c37.658 51.35 77.754 84.624 119.178 102.662 41.741 18.179 82.797 19.99 120.362 11.651 73.469-16.307 132.211-70.87 164.070-114.314 10.451-14.253 7.37-34.278-6.88-44.73-14.253-10.451-34.278-7.37-44.73 6.88-26.81 36.557-73.664 77.994-126.33 89.686-25.501 5.661-52.643 4.474-80.938-7.85-28.608-12.461-60.381-37.187-93.123-81.837z" + ], + "attrs": [{ "fill": "rgb(108, 114, 122)" }], + "isMulticolor": false, + "isMulticolor2": false, + "colorPermutations": { + "1081141221158162168120320620912282312341243190812456992125519219212552552551291162451452241651699010019902101": [ + { "f": 2 } + ] + }, + "tags": ["reaction-add"], + "grid": 0 + }, + "attrs": [{ "fill": "rgb(108, 114, 122)" }], + "properties": { "order": 132, "id": 157, "name": "reaction-add", "prevSize": 32, "code": 59820 }, + "setIdx": 0, + "setId": 4, + "iconIdx": 158 + }, + { + "icon": { + "paths": [ + "M832 512c0-176.73-143.27-320-320-320s-320 143.27-320 320c0 176.73 143.27 320 320 320s320-143.27 320-320zM896 512c0 212.077-171.923 384-384 384s-384-171.923-384-384c0-212.077 171.923-384 384-384s384 171.923 384 384zM512 704c-106.038 0-192-85.962-192-192s85.962-192 192-192c106.038 0 192 85.962 192 192s-85.962 192-192 192z" + ], + "attrs": [{ "fill": "rgb(108, 114, 122)" }], + "isMulticolor": false, + "isMulticolor2": false, + "colorPermutations": { + "1081141221158162168120320620912282312341243190812456992125519219212552552551291162451452241651699010019902101": [ + { "f": 2 } + ] + }, + "tags": ["record"], + "grid": 0 + }, + "attrs": [{ "fill": "rgb(108, 114, 122)" }], + "properties": { "order": 133, "id": 158, "name": "record", "prevSize": 32, "code": 59821 }, + "setIdx": 0, + "setId": 4, + "iconIdx": 159 + }, + { + "icon": { + "paths": [ + "M896 512h-63.984c0-175.414-145.754-320-328.518-320-115.27 0-215.818 57.513-274.362 144h110.768c17.674 0 32 14.326 32 32s-14.326 32-32 32h-179.904c-17.673 0-32-14.326-32-32v-192c0-17.673 14.327-32 32-32s32 14.327 32 32v102.32c71.751-91.401 184.589-150.32 311.498-150.32 216.781 0 392.502 171.923 392.502 384 0 1.114 0.010 2.227 0 3.338v-3.338z", + "M127.997 512h63.986c0 175.414 145.751 320 328.519 320 115.27 0 215.818-57.514 274.358-144h-110.768c-17.67 0-32-14.326-32-32s14.33-32 32-32h179.907c17.67 0 32 14.326 32 32v192c0 17.674-14.33 32-32 32-17.674 0-32-14.326-32-32v-102.32c-71.754 91.402-184.592 150.32-311.498 150.32-216.782 0-392.505-171.923-392.505-384 0-1.082-0.009-2.166 0-3.245v3.245z" + ], + "attrs": [{ "fill": "rgb(108, 114, 122)" }, { "fill": "rgb(108, 114, 122)" }], + "isMulticolor": false, + "isMulticolor2": false, + "colorPermutations": { + "1081141221158162168120320620912282312341243190812456992125519219212552552551291162451452241651699010019902101": [ + { "f": 2 }, + { "f": 2 } + ] + }, + "tags": ["refresh"], + "grid": 0 + }, + "attrs": [{ "fill": "rgb(108, 114, 122)" }, { "fill": "rgb(108, 114, 122)" }], + "properties": { "order": 134, "id": 159, "name": "refresh", "prevSize": 32, "code": 59822 }, + "setIdx": 0, + "setId": 4, + "iconIdx": 160 + }, + { + "icon": { + "paths": [ + "M713.718 450.362c0-142.689-115.824-258.362-258.701-258.362-142.878 0-258.704 115.673-258.704 258.362 0 142.691 115.826 258.365 258.704 258.365 142.877 0 258.701-115.674 258.701-258.365zM659.302 699.965c-55.645 45.475-126.774 72.762-204.285 72.762-178.271 0-322.788-144.326-322.788-322.365 0-178.035 144.517-322.362 322.788-322.362 178.269 0 322.787 144.327 322.787 322.362 0 77.408-27.318 148.442-72.854 204.013l186.838 186.592c12.608 12.589 12.608 33.002 0 45.59-12.605 12.589-33.043 12.589-45.648 0l-186.838-186.592z" + ], + "width": 1056, + "attrs": [{ "fill": "rgb(108, 114, 122)" }], + "isMulticolor": false, + "isMulticolor2": false, + "colorPermutations": { + "1081141221158162168120320620912282312341243190812456992125519219212552552551291162451452241651699010019902101": [ + { "f": 2 } + ] + }, + "tags": ["search"], + "grid": 0 + }, + "attrs": [{ "fill": "rgb(108, 114, 122)" }], + "properties": { "order": 136, "id": 160, "name": "search", "prevSize": 32, "code": 59823 }, + "setIdx": 0, + "setId": 4, + "iconIdx": 161 + }, + { + "icon": { + "paths": [ + "M891.494 238.96l-297.475 637.446c-16.854 36.115-69.622 31.459-79.891-7.050l-66-247.498 151.248-189.059-219.994 109.997-226.833-113.418c-35.43-17.715-29.696-69.949 8.733-79.555l681.197-170.3c34.842-8.71 64.202 26.892 49.014 59.436z" + ], + "attrs": [{ "fill": "rgb(108, 114, 122)" }], + "isMulticolor": false, + "isMulticolor2": false, + "colorPermutations": { + "1081141221158162168120320620912282312341243190812456992125519219212552552551291162451452241651699010019902101": [ + { "f": 2 } + ] + }, + "tags": ["send-filled"], + "grid": 0 + }, + "attrs": [{ "fill": "rgb(108, 114, 122)" }], + "properties": { "order": 137, "id": 161, "name": "send-filled", "prevSize": 32, "code": 59824 }, + "setIdx": 0, + "setId": 4, + "iconIdx": 162 + }, + { + "icon": { + "paths": [ + "M878.022 192.974c7.85 9.521 9.526 22.708 4.31 33.891l-298.669 640.002c-5.69 12.195-18.403 19.526-31.811 18.342-13.405-1.184-24.637-10.627-28.106-23.632l-81.619-306.070-285.772-142.886c-11.978-5.987-18.959-18.8-17.498-32.112s11.056-24.307 24.048-27.552l682.665-170.668c11.974-2.993 24.598 1.165 32.451 10.686zM505.821 545.968l57.082 214.051 233.027-499.35-533.58 133.395 203.606 101.802 69.51-52.131c14.141-10.605 34.198-7.741 44.8 6.4 10.605 14.138 7.741 34.195-6.4 44.8l-68.045 51.034z" + ], + "attrs": [{ "fill": "rgb(108, 114, 122)" }], + "isMulticolor": false, + "isMulticolor2": false, + "colorPermutations": { + "1081141221158162168120320620912282312341243190812456992125519219212552552551291162451452241651699010019902101": [ + { "f": 2 } + ] + }, + "tags": ["send"], + "grid": 0 + }, + "attrs": [{ "fill": "rgb(108, 114, 122)" }], + "properties": { "order": 138, "id": 162, "name": "send", "prevSize": 32, "code": 59825 }, + "setIdx": 0, + "setId": 4, + "iconIdx": 163 + }, + { + "icon": { + "paths": [ + "M421.334 256c0-44.183-35.818-80-80-80s-80 35.817-80 80c0 44.183 35.817 80 80 80s80-35.817 80-80zM465.302 288c-14.211 55.206-64.326 96-123.968 96-59.643 0-109.758-40.794-123.968-96h-89.367c-17.673 0-32-14.327-32-32s14.327-32 32-32h89.367c14.209-55.207 64.324-96 123.968-96 59.642 0 109.757 40.793 123.968 96h430.698c17.674 0 32 14.327 32 32s-14.326 32-32 32h-430.698zM96 768c0-17.674 14.327-32 32-32h89.367c14.209-55.206 64.324-96 123.968-96 60.781 0 111.67 42.365 124.742 99.181 4.208-2.038 8.934-3.181 13.923-3.181h416c17.674 0 32 14.326 32 32s-14.326 32-32 32h-416c-4.989 0-9.715-1.142-13.923-3.181-13.072 56.816-63.962 99.181-124.742 99.181-59.643 0-109.758-40.794-123.968-96h-89.367c-17.673 0-32-14.326-32-32zM341.334 848c44.182 0 80-35.818 80-80s-35.818-80-80-80c-44.183 0-80 35.818-80 80s35.817 80 80 80zM796.029 543.757c-14.122 55.331-64.298 96.243-124.029 96.243s-109.904-40.912-124.029-96.243c-1.302 0.16-2.627 0.243-3.971 0.243h-416c-17.673 0-32-14.326-32-32s14.327-32 32-32h416c1.344 0 2.669 0.083 3.971 0.243 14.125-55.331 64.298-96.243 124.029-96.243s109.907 40.912 124.029 96.243c1.302-0.16 2.627-0.243 3.971-0.243h96c17.674 0 32 14.326 32 32s-14.326 32-32 32h-96c-1.344 0-2.669-0.083-3.971-0.243zM752 512c0-44.182-35.818-80-80-80s-80 35.818-80 80c0 44.182 35.818 80 80 80s80-35.818 80-80z" + ], + "attrs": [{ "fill": "rgb(108, 114, 122)" }], + "isMulticolor": false, + "isMulticolor2": false, + "colorPermutations": { + "1081141221158162168120320620912282312341243190812456992125519219212552552551291162451452241651699010019902101": [ + { "f": 2 } + ] + }, + "tags": ["settings"], + "grid": 0 + }, + "attrs": [{ "fill": "rgb(108, 114, 122)" }], + "properties": { "order": 139, "id": 163, "name": "settings", "prevSize": 32, "code": 59826 }, + "setIdx": 0, + "setId": 4, + "iconIdx": 164 + }, + { + "icon": { + "paths": [ + "M690.176 301.708c11.645-11.977 11.645-31.396 0-43.374l-149.091-153.351c-11.645-11.977-30.525-11.977-42.17 0l-149.091 153.351c-11.645 11.977-11.645 31.397 0 43.374s30.525 11.978 42.17 0l98.189-100.993v401.343c0 16.938 13.35 30.669 29.818 30.669s29.818-13.731 29.818-30.669v-401.343l98.189 100.993c11.645 11.978 30.525 11.978 42.17 0z", + "M221.818 379.274h149.091v59.635h-119.272v387.635h536.728v-387.635h-119.274v-59.635h149.091c16.467 0 29.818 13.35 29.818 29.818v447.274c0 16.467-13.35 29.818-29.818 29.818h-596.364c-16.468 0-29.818-13.35-29.818-29.818v-447.274c0-16.467 13.35-29.818 29.818-29.818z" + ], + "attrs": [{ "fill": "rgb(108, 114, 122)" }, { "fill": "rgb(108, 114, 122)" }], + "isMulticolor": false, + "isMulticolor2": false, + "colorPermutations": { + "1081141221158162168120320620912282312341243190812456992125519219212552552551291162451452241651699010019902101": [ + { "f": 2 }, + { "f": 2 } + ] + }, + "tags": ["share"], + "grid": 0 + }, + "attrs": [{ "fill": "rgb(108, 114, 122)" }, { "fill": "rgb(108, 114, 122)" }], + "properties": { "order": 244, "id": 164, "name": "share", "prevSize": 32, "code": 59827 }, + "setIdx": 0, + "setId": 4, + "iconIdx": 165 + }, + { + "icon": { + "paths": [ + "M664.083 405.072c11.638-13.299 10.288-33.517-3.011-45.155s-33.517-10.288-45.155 3.011l-125.251 143.142-39.917-45.619c-11.638-13.299-31.853-14.646-45.155-3.011-13.299 11.638-14.646 31.856-3.008 45.155l64 73.142c6.077 6.944 14.854 10.928 24.080 10.928 9.229 0 18.006-3.984 24.083-10.928l149.334-170.666z", + "M541.99 143.050c-12.854-3.634-26.448-3.753-39.363-0.345l-264.724 69.849c-29.793 7.861-52.548 33.743-54.753 65.633-23.589 341.205 187.752 520.29 276.51 579.794 33.136 22.211 75.363 22.144 108.416-0.259 88.218-59.792 297.117-239.072 272.611-580.214-2.25-31.321-24.339-56.895-53.504-65.14l-245.194-69.318zM518.957 204.587c1.843-0.487 3.786-0.47 5.622 0.049l245.194 69.318c4.294 1.214 6.838 4.781 7.082 8.139 22.15 308.362-165.306 468.851-244.685 522.65-11.437 7.754-25.363 7.792-36.87 0.077-80.086-53.686-269.606-214.054-248.301-522.218 0.234-3.389 2.833-7.004 7.233-8.164l264.725-69.849z" + ], + "attrs": [{ "fill": "rgb(108, 114, 122)" }, { "fill": "rgb(108, 114, 122)" }], + "isMulticolor": false, + "isMulticolor2": false, + "colorPermutations": { + "1081141221158162168120320620912282312341243190812456992125519219212552552551291162451452241651699010019902101": [ + { "f": 2 }, + { "f": 2 } + ] + }, + "tags": ["shield-check"], + "grid": 0 + }, + "attrs": [{ "fill": "rgb(108, 114, 122)" }, { "fill": "rgb(108, 114, 122)" }], + "properties": { "order": 80, "id": 165, "name": "shield-check", "prevSize": 32, "code": 59828 }, + "setIdx": 0, + "setId": 4, + "iconIdx": 166 + }, + { + "icon": { + "paths": [ + "M513.302 142.705c12.915-3.408 26.509-3.289 39.36 0.345l245.197 69.318c29.165 8.245 51.254 33.818 53.504 65.14 24.506 341.142-184.397 520.422-272.611 580.214-33.053 22.403-75.28 22.47-108.416 0.259-88.762-59.504-300.101-238.589-276.511-579.794 2.205-31.89 24.96-57.772 54.753-65.633l264.725-69.849zM535.251 204.637c-1.834-0.519-3.776-0.536-5.622-0.050l-264.723 69.849c-4.4 1.161-6.999 4.775-7.234 8.164-21.305 308.164 168.216 468.532 248.299 522.218 11.507 7.715 25.434 7.677 36.874-0.077 79.379-53.798 266.832-214.288 244.682-522.65-0.24-3.358-2.784-6.925-7.078-8.139l-245.197-69.317z", + "M490.672 337.334c-19.76 4.672-47.245 12.31-81.149 24.554 20.81 108.771 53.219 187.014 81.149 238.832v-263.386zM492.867 271.316c33.77-6.898 61.805 19.742 61.805 51.125v360.963c0 17.024-10.333 31.747-25.642 37.52-15.67 5.91-33.779 1.331-44.861-12.675-32.656-41.267-106.323-152.95-141.19-354.563-3.242-18.746 7.066-37.695 25.328-44.726 56.186-21.63 99.094-32.442 124.56-37.644z" + ], + "attrs": [{ "fill": "rgb(108, 114, 122)" }, { "fill": "rgb(108, 114, 122)" }], + "isMulticolor": false, + "isMulticolor2": false, + "colorPermutations": { + "1081141221158162168120320620912282312341243190812456992125519219212552552551291162451452241651699010019902101": [ + { "f": 2 }, + { "f": 2 } + ] + }, + "tags": ["shield"], + "grid": 0 + }, + "attrs": [{ "fill": "rgb(108, 114, 122)" }, { "fill": "rgb(108, 114, 122)" }], + "properties": { "order": 81, "id": 166, "name": "shield-alt", "prevSize": 32, "code": 59829 }, + "setIdx": 0, + "setId": 4, + "iconIdx": 167 + }, + { + "icon": { + "paths": [ + "M778.64 213.336c-17.674 0-32 14.327-32 32v533.333c0 17.674 14.326 32 32 32s32-14.326 32-32v-533.333c0-17.673-14.326-32-32-32z", + "M600.87 341.334c-17.674 0-32 14.33-32 32v405.334c0 17.674 14.326 32 32 32s32-14.326 32-32v-405.334c0-17.67-14.326-32-32-32z", + "M423.104 810.669c-17.674 0-32-14.326-32-32v-277.334c0-17.67 14.326-32 32-32 17.67 0 32 14.33 32 32v277.334c0 17.674-14.33 32-32 32z", + "M245.333 597.334c-17.673 0-32 14.33-32 32v149.334c0 17.674 14.327 32 32 32s32-14.326 32-32v-149.334c0-17.67-14.327-32-32-32z" + ], + "attrs": [ + { "fill": "rgb(108, 114, 122)" }, + { "fill": "rgb(108, 114, 122)" }, + { "fill": "rgb(108, 114, 122)" }, + { "fill": "rgb(108, 114, 122)" } + ], + "isMulticolor": false, + "isMulticolor2": false, + "colorPermutations": { + "1081141221158162168120320620912282312341243190812456992125519219212552552551291162451452241651699010019902101": [ + { "f": 2 }, + { "f": 2 }, + { "f": 2 }, + { "f": 2 } + ] + }, + "tags": ["signal"], + "grid": 0 + }, + "attrs": [ + { "fill": "rgb(108, 114, 122)" }, + { "fill": "rgb(108, 114, 122)" }, + { "fill": "rgb(108, 114, 122)" }, + { "fill": "rgb(108, 114, 122)" } + ], + "properties": { "order": 82, "id": 167, "name": "signal", "prevSize": 32, "code": 59830 }, + "setIdx": 0, + "setId": 4, + "iconIdx": 168 + }, + { + "icon": { + "paths": [ + "M289.362 192c13.364 0 25.321 8.305 29.987 20.829l96.001 257.699c6.17 16.56-2.256 34.986-18.816 41.155-16.563 6.17-34.989-2.253-41.158-18.816l-20.477-54.963h-91.074l-20.476 54.963c-6.17 16.563-24.597 24.986-41.158 18.816s-24.986-24.595-18.816-41.155l96-257.699c4.666-12.524 16.622-20.829 29.987-20.829zM311.058 373.904l-21.695-58.238-21.695 58.238h43.391z", + "M522.131 626.435c-12.154 12.829-11.606 33.082 1.222 45.238l160 151.587c12.342 11.693 31.674 11.693 44.016 0l160-151.587c12.832-12.157 13.376-32.41 1.222-45.238s-32.41-13.376-45.238-1.222l-105.99 100.419v-501.632c0-17.673-14.326-32-32-32s-32 14.327-32 32v501.632l-105.994-100.419c-12.829-12.154-33.082-11.606-45.238 1.222z", + "M193.362 570.947c-17.673 0-32 14.326-32 32 0 17.67 14.327 32 32 32h116.145l-139.065 142.73c-8.979 9.216-11.565 22.915-6.564 34.771 5.001 11.853 16.617 19.562 29.484 19.562h192.001c17.674 0 32-14.326 32-32s-14.326-32-32-32h-116.146l139.064-142.733c8.979-9.216 11.565-22.915 6.563-34.768-4.998-11.856-16.614-19.562-29.482-19.562h-192.001z" + ], + "width": 1056, + "attrs": [{ "fill": "rgb(108, 114, 122)" }, { "fill": "rgb(108, 114, 122)" }, { "fill": "rgb(108, 114, 122)" }], + "isMulticolor": false, + "isMulticolor2": false, + "colorPermutations": { + "1081141221158162168120320620912282312341243190812456992125519219212552552551291162451452241651699010019902101": [ + { "f": 2 }, + { "f": 2 }, + { "f": 2 } + ] + }, + "tags": ["sort-az"], + "grid": 0 + }, + "attrs": [{ "fill": "rgb(108, 114, 122)" }, { "fill": "rgb(108, 114, 122)" }, { "fill": "rgb(108, 114, 122)" }], + "properties": { "order": 83, "id": 168, "name": "sort-az", "prevSize": 32, "code": 59831 }, + "setIdx": 0, + "setId": 4, + "iconIdx": 169 + }, + { + "icon": { + "paths": [ + "M919.258 667.229c12.605-12.253 12.877-32.394 0.605-44.982-12.269-12.589-32.435-12.858-45.040-0.605l-106.112 103.155v-500.8c0-17.568-14.259-31.81-31.853-31.81-17.59 0-31.85 14.242-31.85 31.81v500.8l-106.115-103.155c-12.605-12.253-32.768-11.984-45.040 0.605-12.269 12.589-11.997 32.73 0.608 44.982l160.179 155.718c12.368 12.019 32.070 12.019 44.435 0l160.182-155.718zM560.659 333.667c17.59 0 31.85-14.243 31.85-31.811s-14.259-31.809-31.85-31.809h-432.49c-17.591 0-31.852 14.242-31.852 31.809s14.26 31.811 31.852 31.811h432.49zM464.55 536.099c17.59 0 31.85-14.243 31.85-31.811 0-17.565-14.259-31.808-31.85-31.808h-336.381c-17.591 0-31.852 14.24-31.852 31.808s14.26 31.811 31.852 31.811h336.381zM384.458 722.96c17.594 0 31.853-14.24 31.853-31.808s-14.259-31.811-31.853-31.811h-256.289c-17.591 0-31.852 14.243-31.852 31.811s14.26 31.808 31.852 31.808h256.289z" + ], + "width": 1056, + "attrs": [{ "fill": "rgb(108, 114, 122)" }], + "isMulticolor": false, + "isMulticolor2": false, + "colorPermutations": { + "1081141221158162168120320620912282312341243190812456992125519219212552552551291162451452241651699010019902101": [ + { "f": 2 } + ] + }, + "tags": ["sort"], + "grid": 0 + }, + "attrs": [{ "fill": "rgb(108, 114, 122)" }], + "properties": { "order": 84, "id": 169, "name": "sort", "prevSize": 32, "code": 59832 }, + "setIdx": 0, + "setId": 4, + "iconIdx": 170 + }, + { + "icon": { + "paths": [ + "M593.939 170.244c-20.867-57.726-103.155-55.816-121.322 2.815l-58.976 190.348h-221.513c-58.947 0-86.549 72.944-42.37 111.968l157.591 139.206-53.209 216.928c-14.17 57.77 51.25 101.936 99.533 67.197l177.741-127.875 177.741 127.875c48.285 34.739 113.706-9.427 99.536-67.197l-53.386-217.651 147.888-139.968c42.032-39.779 13.878-110.483-43.99-110.483h-195.443l-69.821-193.164z" + ], + "attrs": [{ "fill": "rgb(108, 114, 122)" }], + "isMulticolor": false, + "isMulticolor2": false, + "colorPermutations": { + "1081141221158162168120320620912282312341243190812456992125519219212552552551291162451452241651699010019902101": [ + { "f": 2 } + ] + }, + "tags": ["star-filled"], + "grid": 0 + }, + "attrs": [{ "fill": "rgb(108, 114, 122)" }], + "properties": { "order": 85, "id": 170, "name": "star-filled", "prevSize": 32, "code": 59833 }, + "setIdx": 0, + "setId": 4, + "iconIdx": 171 + }, + { + "icon": { + "paths": [ + "M472.618 173.508c18.166-58.554 100.454-60.461 121.322-2.812l69.821 192.91h195.44c57.872 0 86.026 70.611 43.994 110.336l-147.888 139.782 53.386 217.363c14.17 57.696-51.251 101.805-99.536 67.11l-177.741-127.709-177.741 127.709c-48.283 34.691-113.703-9.414-99.533-67.11l53.209-216.64-157.591-139.024c-44.179-38.973-16.577-111.818 42.37-111.818h221.513l58.976-190.098zM603.574 385.334l-69.824-192.91-58.976 190.098c-8.304 26.758-33.085 45.002-61.133 45.002h-221.513l157.59 139.021c17.837 15.731 25.456 40.048 19.789 63.13l-53.209 216.643 177.74-127.709c22.33-16.045 52.426-16.045 74.755 0l177.738 127.709-53.386-217.363c-5.478-22.317 1.456-45.856 18.166-61.648l147.888-139.782h-195.44c-26.957 0-51.024-16.87-60.186-42.189z" + ], + "attrs": [{ "fill": "rgb(108, 114, 122)" }], + "isMulticolor": false, + "isMulticolor2": false, + "colorPermutations": { + "1081141221158162168120320620912282312341243190812456992125519219212552552551291162451452241651699010019902101": [ + { "f": 2 } + ] + }, + "tags": ["star"], + "grid": 0 + }, + "attrs": [{ "fill": "rgb(108, 114, 122)" }], + "properties": { "order": 86, "id": 171, "name": "star", "prevSize": 32, "code": 59834 }, + "setIdx": 0, + "setId": 4, + "iconIdx": 172 + }, + { + "icon": { + "paths": [ + "M499.952 539.082c2.714 0.819 5.462 1.629 8.25 2.429 45.341 13.12 76.643 26.47 93.904 40.048 17.264 13.35 25.894 32.339 25.894 56.966s-9.322 44.074-27.965 58.346c-18.643 14.269-45.456 21.405-80.442 21.405-37.514 0-67.552-8.749-90.106-26.24-15.216-12.077-25.245-27.094-30.090-45.050-3.942-14.605-15.664-27.104-30.794-27.104h-11.843c-15.13 0-27.722 12.378-24.893 27.242 3.514 18.47 10.736 35.514 21.667 51.126 16.339 23.018 39.472 41.2 69.392 54.547 29.92 13.12 62.144 19.68 96.666 19.68 53.168 0 95.632-12.198 127.395-36.595 31.76-24.627 47.642-57.309 47.642-98.048 0-25.549-5.754-47.757-17.261-66.63-6.947-11.626-16.25-22.33-27.91-32.122h99.962c15.13 0 27.395-12.266 27.395-27.395s-12.266-27.392-27.395-27.392h-217.398c-1.709-0.493-3.437-0.986-5.178-1.472-41.658-11.738-71.235-24.627-88.726-38.669-17.261-14.269-25.894-31.645-25.894-52.131 0-25.546 9.091-45.456 27.277-59.725 18.41-14.5 43.958-21.75 76.64-21.75 35.216 0 62.49 8.746 81.824 26.24 13.139 11.731 21.814 26.496 26.022 44.288 3.485 14.723 15.242 27.174 30.371 27.174h11.84c15.13 0 27.702-12.374 24.88-27.238-3.331-17.552-9.974-34.134-19.923-49.75-14.733-23.475-35.677-41.888-62.835-55.237-26.928-13.349-57.654-20.024-92.179-20.024-50.634 0-91.834 13.004-123.594 39.012-31.533 25.779-47.299 58.46-47.299 98.047 0 34.986 12.89 64.445 38.669 88.381 1.050 0.957 2.125 1.907 3.222 2.854h-112.56c-15.13 0-27.395 12.262-27.395 27.392s12.265 27.395 27.395 27.395h225.373z" + ], + "attrs": [{ "fill": "rgb(108, 114, 122)" }], + "isMulticolor": false, + "isMulticolor2": false, + "colorPermutations": { + "1081141221158162168120320620912282312341243190812456992125519219212552552551291162451452241651699010019902101": [ + { "f": 2 } + ] + }, + "tags": ["strike"], + "grid": 0 + }, + "attrs": [{ "fill": "rgb(108, 114, 122)" }], + "properties": { "order": 94, "id": 172, "name": "strike", "prevSize": 32, "code": 59846 }, + "setIdx": 0, + "setId": 4, + "iconIdx": 173 + }, + { + "icon": { + "paths": [ + "M481.35 117.336c0-17.673 14.326-32 32-32s32 14.327 32 32v106.667c0 17.673-14.326 32-32 32s-32-14.327-32-32v-106.667zM771.392 214.631c12.496-12.497 32.758-12.497 45.254 0s12.496 32.758 0 45.255l-75.411 75.413c-12.499 12.496-32.758 12.496-45.254 0-12.499-12.496-12.499-32.759 0-45.255l75.411-75.412zM336.73 694.63c-12.499-12.496-32.759-12.496-45.256 0l-75.495 75.498c-12.497 12.496-12.497 32.755 0 45.254 12.497 12.496 32.758 12.496 45.255 0l75.496-75.498c12.496-12.496 12.496-32.755 0-45.254zM481.35 800.003c0-17.674 14.326-32 32-32s32 14.326 32 32v106.669c0 17.67-14.326 32-32 32s-32-14.33-32-32v-106.669zM213.352 212.001c-12.497 12.497-12.497 32.758 0 45.255l75.349 75.348c12.497 12.496 32.758 12.496 45.254 0 12.499-12.496 12.496-32.757 0-45.254l-75.348-75.349c-12.497-12.497-32.758-12.497-45.255 0zM695.978 739.885c-12.496-12.496-12.496-32.758 0-45.254 12.499-12.496 32.758-12.496 45.254 0l75.331 75.328c12.496 12.496 12.496 32.758 0 45.254-12.499 12.496-32.758 12.496-45.258 0l-75.328-75.328zM87.751 512.003c0 17.674 14.327 32 32 32h106.667c17.673 0 32-14.326 32-32s-14.327-32-32-32h-106.667c-17.673 0-32 14.326-32 32zM801.35 544.003c-17.674 0-32-14.326-32-32s14.326-32 32-32h106.669c17.67 0 32 14.326 32 32s-14.33 32-32 32h-106.669zM668.17 512c0-85.504-69.315-154.816-154.819-154.816-85.507 0-154.819 69.312-154.819 154.816 0 85.507 69.312 154.819 154.819 154.819 85.504 0 154.819-69.312 154.819-154.819zM726.682 512c0 117.821-95.51 213.334-213.331 213.334s-213.335-95.514-213.335-213.334c0-117.821 95.514-213.332 213.335-213.332s213.331 95.511 213.331 213.332z" + ], + "width": 1056, + "attrs": [{ "fill": "rgb(108, 114, 122)" }], + "isMulticolor": false, + "isMulticolor2": false, + "colorPermutations": { + "1081141221158162168120320620912282312341243190812456992125519219212552552551291162451452241651699010019902101": [ + { "f": 2 } + ] + }, + "tags": ["sun"], + "grid": 0 + }, + "attrs": [{ "fill": "rgb(108, 114, 122)" }], + "properties": { "order": 95, "id": 173, "name": "sun", "prevSize": 32, "code": 59847 }, + "setIdx": 0, + "setId": 4, + "iconIdx": 174 + }, + { + "icon": { + "paths": [ + "M930.704 512c0 229.75-186.25 416-416 416s-415.999-186.25-415.999-416c0-229.75 186.25-416 415.999-416s416 186.25 416 416zM570.49 859.603l-41.827-156.102c-4.611 0.33-9.264 0.499-13.958 0.499-4.57 0-9.101-0.16-13.594-0.474l-41.837 156.134c18.058 2.854 36.573 4.339 55.43 4.339 18.986 0 37.616-1.504 55.786-4.397zM438.893 688.451c-47.549-20.454-85.181-59.571-103.674-108.125l-155.029 41.539c33.968 103.485 114.617 185.805 217.045 222.058l41.658-155.472zM162.705 512c0 16.090 1.080 31.926 3.17 47.443l156.906-42.042c-0.051-1.795-0.077-3.594-0.077-5.402 0-4.909 0.186-9.776 0.547-14.595l-156.051-41.814c-2.958 18.368-4.496 37.21-4.496 56.41zM396.31 180.407c-99.16 35.408-177.786 114.033-213.196 213.19l155.535 41.677c19.357-44.352 54.982-79.978 99.334-99.331l-41.674-155.536zM514.704 160c-19.197 0-38.035 1.537-56.4 4.494l41.814 156.053c4.813-0.362 9.68-0.547 14.586-0.547 5.030 0 10.019 0.192 14.95 0.573l41.808-156.021c-18.477-2.995-37.437-4.552-56.758-4.552zM632.512 843.802c102.659-36.451 183.392-119.194 217.094-223.12l-154.973-41.526c-18.291 48.982-56.010 88.493-103.786 109.155l41.664 155.491zM863.699 558.198c1.984-15.117 3.005-30.538 3.005-46.198 0-18.771-1.469-37.197-4.298-55.171l-156.157 41.84c0.301 4.406 0.454 8.851 0.454 13.331 0 1.376-0.013 2.752-0.042 4.122l157.037 42.077zM846.714 394.774c-35.165-99.6-113.885-178.641-213.277-214.247l-41.68 155.559c44.582 19.555 80.314 55.565 99.504 100.342l155.453-41.654zM642.704 512c0-70.691-57.306-128-128-128-70.691 0-128 57.309-128 128s57.309 128 128 128c70.694 0 128-57.309 128-128z" + ], + "width": 1056, + "attrs": [{ "fill": "rgb(108, 114, 122)" }], + "isMulticolor": false, + "isMulticolor2": false, + "colorPermutations": { + "1081141221158162168120320620912282312341243190812456992125519219212552552551291162451452241651699010019902101": [ + { "f": 2 } + ] + }, + "tags": ["support"], + "grid": 0 + }, + "attrs": [{ "fill": "rgb(108, 114, 122)" }], + "properties": { "order": 96, "id": 174, "name": "support", "prevSize": 32, "code": 59848 }, + "setIdx": 0, + "setId": 4, + "iconIdx": 175 + }, + { + "icon": { + "paths": [ + "M368 412.982c-53.592 0-96-42.877-96-94.491 0-51.616 42.408-94.491 96-94.491 53.594 0 96 42.876 96 94.491 0 51.614-42.406 94.491-96 94.491zM368 476.982c88.365 0 160-70.96 160-158.491s-71.635-158.491-160-158.491c-88.365 0-160 70.959-160 158.491s71.635 158.491 160 158.491zM713.6 397.133c-35.92 0-64-28.685-64-62.794s28.080-62.792 64-62.792c35.92 0 64 28.684 64 62.792s-28.080 62.794-64 62.794zM713.6 461.133c70.691 0 128-56.768 128-126.794s-57.309-126.792-128-126.792c-70.691 0-128 56.767-128 126.792s57.309 126.794 128 126.794zM197.459 527.267c27.344-8.707 56.67-9.242 84.319-1.539l48.491 13.51c24.205 6.742 49.882 6.275 73.824-1.347l30.099-9.584c29.475-9.386 61.085-9.962 90.89-1.658 67.962 18.934 114.918 80.333 114.918 150.269v91.987c0 52.518-42.979 95.094-96 95.094h-352c-53.019 0-96-42.576-96-95.094v-103.766c0-62.909 40.999-118.621 101.459-137.872zM264.451 586.758c-15.545-4.333-32.034-4.032-47.407 0.864-33.993 10.822-57.044 42.147-57.044 77.517v103.766c0 17.507 14.327 31.699 32 31.699h352c17.674 0 32-14.192 32-31.699v-91.987c0-41.533-27.885-77.997-68.246-89.242-17.699-4.931-36.474-4.589-53.978 0.986l-30.099 9.584c-35.91 11.434-74.426 12.138-110.737 2.019l-48.489-13.507zM691.2 778.717h140.8c53.021 0 96-42.979 96-96v-30.611c0-56.877-38.614-106.49-93.747-120.454-21.398-5.418-43.853-5.040-65.056 1.098l-16.4 4.746c-21.843 6.323-44.973 6.714-67.018 1.13l-29.805-7.549c-19.907-5.043-40.797-4.691-60.522 1.018-1.066 0.31-2.122 0.634-3.174 0.97 10.71 4.048 20.896 9.539 30.253 16.374l2.429 1.776 15.040 13.206c9.939 8.726 18.141 19.248 24.182 31.014l2.208 4.301 3.677 0.931c33.062 8.374 67.76 7.789 100.525-1.693l16.4-4.749c10.282-2.976 21.171-3.158 31.546-0.531 26.736 6.771 45.462 30.832 45.462 58.413v30.611c0 17.674-14.326 32-32 32h-140.8v64z" + ], + "attrs": [{ "fill": "rgb(108, 114, 122)" }], + "isMulticolor": false, + "isMulticolor2": false, + "colorPermutations": { + "1081141221158162168120320620912282312341243190812456992125519219212552552551291162451452241651699010019902101": [ + { "f": 2 } + ] + }, + "tags": ["team"], + "grid": 0 + }, + "attrs": [{ "fill": "rgb(108, 114, 122)" }], + "properties": { "order": 97, "id": 175, "name": "team", "prevSize": 32, "code": 59849 }, + "setIdx": 0, + "setId": 4, + "iconIdx": 176 + }, + { + "icon": { + "paths": [ + "M223.311 308.609c-47.832 66.7-64.077 147.667-64.077 201.187v1.405l-0.127 1.398c-9.348 103.235 27.547 175.997 86.848 226.374 60.642 51.52 146.602 80.998 235.29 90.893 88.611 9.885 186.221 1.398 263.341-14.973 38.56-8.189 70.928-18.125 93.888-28.128 8.906-3.882 15.837-7.536 20.941-10.765-2.374-1.514-5.245-3.197-8.672-5.030-8.886-4.749-19.059-9.261-29.613-13.894l-1.843-0.81c-9.315-4.083-19.725-8.65-27.613-13.078-14.291-8.026-28.317-17.155-38.544-26.867-5.034-4.781-10.762-11.194-14.595-19.184-4.054-8.454-6.96-21.078-1.261-34.435 30.816-72.186 45.459-111.725 52.554-137.834 6.621-24.378 6.621-36.653 6.621-56.17v-0.179c0-15.51-8.979-86.595-53.776-152.876-43.376-64.174-121.398-125.729-264.832-125.729-129.725 0-207.83 53.576-254.529 118.696zM173.267 272.433c58.132-81.063 154.749-144.433 304.573-144.433 164.896 0 261.594 72.589 315.859 152.878 52.838 78.181 64.416 161.881 64.416 187.641 0 21.654-0.022 40.336-8.797 72.64-7.834 28.835-22.627 68.614-50.048 133.424 5.069 4.032 12.592 9.005 22.506 14.57 5.12 2.877 12.995 6.339 24.054 11.194 10.266 4.506 22.582 9.93 33.891 15.978 10.848 5.798 23.526 13.571 32.954 23.738 9.859 10.63 20.208 28.87 12.816 51.139-4.87 14.672-16.182 25.091-25.61 32.016-10.24 7.52-22.947 14.278-36.858 20.342-27.949 12.176-64.582 23.181-105.68 31.907-82.198 17.453-186.522 26.688-282.909 15.936-96.31-10.746-195.346-43.178-268.313-105.165-74.031-62.893-119.295-154.778-108.551-277.856 0.276-63.411 19.117-157.053 75.696-235.948zM333.952 422.051c0-17.648 14.25-31.955 31.83-31.955h183.008c17.578 0 31.827 14.307 31.827 31.955s-14.25 31.955-31.827 31.955h-183.008c-17.581 0-31.83-14.307-31.83-31.955zM365.782 539.709c-17.581 0-31.83 14.307-31.83 31.955s14.25 31.955 31.83 31.955h224.118c17.578 0 31.827-14.307 31.827-31.955s-14.25-31.955-31.827-31.955h-224.118z" + ], + "attrs": [{ "fill": "rgb(108, 114, 122)" }], + "isMulticolor": false, + "isMulticolor2": false, + "colorPermutations": { + "1081141221158162168120320620912282312341243190812456992125519219212552552551291162451452241651699010019902101": [ + { "f": 2 } + ] + }, + "tags": ["threads"], + "grid": 0 + }, + "attrs": [{ "fill": "rgb(108, 114, 122)" }], + "properties": { "order": 98, "id": 176, "name": "threads", "prevSize": 32, "code": 59850 }, + "setIdx": 0, + "setId": 4, + "iconIdx": 177 + }, + { + "icon": { + "paths": [ + "M353.354 320c0-17.673 14.326-32 32-32h256c17.674 0 32 14.327 32 32s-14.326 32-32 32h-256c-17.674 0-32-14.326-32-32z", + "M385.354 416c-17.674 0-32 14.326-32 32s14.326 32 32 32c17.674 0 32-14.326 32-32s-14.326-32-32-32z", + "M481.354 448c0-17.674 14.326-32 32-32s32 14.326 32 32c0 17.674-14.326 32-32 32s-32-14.326-32-32z", + "M641.354 416c-17.674 0-32 14.326-32 32s14.326 32 32 32c17.674 0 32-14.326 32-32s-14.326-32-32-32z", + "M353.354 576c0-17.674 14.326-32 32-32s32 14.326 32 32c0 17.674-14.326 32-32 32s-32-14.326-32-32z", + "M513.354 544c-17.674 0-32 14.326-32 32s14.326 32 32 32c17.674 0 32-14.326 32-32s-14.326-32-32-32z", + "M609.354 576c0-17.674 14.326-32 32-32s32 14.326 32 32c0 17.674-14.326 32-32 32s-32-14.326-32-32z", + "M385.354 672c-17.674 0-32 14.326-32 32s14.326 32 32 32c17.674 0 32-14.326 32-32s-14.326-32-32-32z", + "M481.354 704c0-17.674 14.326-32 32-32s32 14.326 32 32c0 17.674-14.326 32-32 32s-32-14.326-32-32z", + "M641.354 672c-17.674 0-32 14.326-32 32s14.326 32 32 32c17.674 0 32-14.326 32-32s-14.326-32-32-32z", + "M289.353 160h448.001c35.344 0 64 28.654 64 64v576c0 35.347-28.656 64-64 64h-448.001c-35.346 0-64-28.653-64-64v-576c0-35.346 28.654-64 64-64zM289.353 224v576h448.001v-576h-448.001z" + ], + "width": 1056, + "attrs": [ + { "fill": "rgb(108, 114, 122)" }, + { "fill": "rgb(108, 114, 122)" }, + { "fill": "rgb(108, 114, 122)" }, + { "fill": "rgb(108, 114, 122)" }, + { "fill": "rgb(108, 114, 122)" }, + { "fill": "rgb(108, 114, 122)" }, + { "fill": "rgb(108, 114, 122)" }, + { "fill": "rgb(108, 114, 122)" }, + { "fill": "rgb(108, 114, 122)" }, + { "fill": "rgb(108, 114, 122)" }, + { "fill": "rgb(108, 114, 122)" } + ], + "isMulticolor": false, + "isMulticolor2": false, + "colorPermutations": { + "1081141221158162168120320620912282312341243190812456992125519219212552552551291162451452241651699010019902101": [ + { "f": 2 }, + { "f": 2 }, + { "f": 2 }, + { "f": 2 }, + { "f": 2 }, + { "f": 2 }, + { "f": 2 }, + { "f": 2 }, + { "f": 2 }, + { "f": 2 }, + { "f": 2 } + ] + }, + "tags": ["total"], + "grid": 0 + }, + "attrs": [ + { "fill": "rgb(108, 114, 122)" }, + { "fill": "rgb(108, 114, 122)" }, + { "fill": "rgb(108, 114, 122)" }, + { "fill": "rgb(108, 114, 122)" }, + { "fill": "rgb(108, 114, 122)" }, + { "fill": "rgb(108, 114, 122)" }, + { "fill": "rgb(108, 114, 122)" }, + { "fill": "rgb(108, 114, 122)" }, + { "fill": "rgb(108, 114, 122)" }, + { "fill": "rgb(108, 114, 122)" }, + { "fill": "rgb(108, 114, 122)" } + ], + "properties": { "order": 99, "id": 177, "name": "total", "prevSize": 32, "code": 59851 }, + "setIdx": 0, + "setId": 4, + "iconIdx": 178 + }, + { + "icon": { + "paths": [ + "M713.613 91.356c13.162-11.794 33.392-10.685 45.187 2.477l129.034 144c10.89 12.154 10.89 30.556 0 42.71l-129.034 144.001c-11.795 13.162-32.026 14.269-45.187 2.477-13.162-11.795-14.272-32.026-2.477-45.187l81.222-90.646h-216.358c-17.674 0-32-14.327-32-32s14.326-32 32-32h216.358l-81.222-90.645c-11.795-13.162-10.685-33.393 2.477-45.187zM340.026 464.461c8.586-15.45 28.067-21.018 43.514-12.432l128.461 71.366 128.461-71.366c15.446-8.586 34.928-3.018 43.514 12.432 8.582 15.45 3.014 34.931-12.435 43.514l-159.539 88.634-159.539-88.634c-15.45-8.582-21.018-28.064-12.435-43.514zM192 288v448h640v-192c0-17.674 14.326-32 32-32s32 14.326 32 32v224c0 17.674-14.326 32-32 32h-704c-17.673 0-32-14.326-32-32v-512c0-17.673 14.327-32 32-32h272c17.674 0 32 14.327 32 32s-14.326 32-32 32h-240z" + ], + "attrs": [{ "fill": "rgb(108, 114, 122)" }], + "isMulticolor": false, + "isMulticolor2": false, + "colorPermutations": { + "1081141221158162168120320620912282312341243190812456992125519219212552552551291162451452241651699010019902101": [ + { "f": 2 } + ] + }, + "tags": ["transcript"], + "grid": 0 + }, + "attrs": [{ "fill": "rgb(108, 114, 122)" }], + "properties": { "order": 100, "id": 178, "name": "transcript", "prevSize": 32, "code": 59852 }, + "setIdx": 0, + "setId": 4, + "iconIdx": 179 + }, + { + "icon": { + "paths": [ + "M384 320c0-17.673-14.326-32-32-32s-32 14.327-32 32v256c0 106.038 85.962 192 192 192s192-85.962 192-192v-256c0-17.673-14.326-32-32-32s-32 14.327-32 32v256c0 70.691-57.309 128-128 128s-128-57.309-128-128v-256zM352 856c-13.254 0-24 10.746-24 24s10.746 24 24 24h320c13.254 0 24-10.746 24-24s-10.746-24-24-24h-320z" + ], + "attrs": [{ "fill": "rgb(108, 114, 122)" }], + "isMulticolor": false, + "isMulticolor2": false, + "colorPermutations": { + "1081141221158162168120320620912282312341243190812456992125519219212552552551291162451452241651699010019902101": [ + { "f": 2 } + ] + }, + "tags": ["underline"], + "grid": 0 + }, + "attrs": [{ "fill": "rgb(108, 114, 122)" }], + "properties": { "order": 101, "id": 179, "name": "underline", "prevSize": 32, "code": 59853 }, + "setIdx": 0, + "setId": 4, + "iconIdx": 180 + }, + { + "icon": { + "paths": [ + "M512 832c176.73 0 320-143.27 320-320s-143.27-320-320-320c-111.712 0-210.056 57.244-267.295 144h107.295c17.674 0 32 14.326 32 32s-14.326 32-32 32h-176c-17.673 0-32-14.326-32-32v-192c0-17.673 14.327-32 32-32s32 14.327 32 32v101.364c70.228-90.856 180.282-149.364 304-149.364 212.077 0 384 171.923 384 384s-171.923 384-384 384c-212.077 0-384-171.923-384-384h64c0 176.73 143.27 320 320 320z" + ], + "attrs": [{ "fill": "rgb(108, 114, 122)" }], + "isMulticolor": false, + "isMulticolor2": false, + "colorPermutations": { + "1081141221158162168120320620912282312341243190812456992125519219212552552551291162451452241651699010019902101": [ + { "f": 2 } + ] + }, + "tags": ["undo"], + "grid": 0 + }, + "attrs": [{ "fill": "rgb(108, 114, 122)" }], + "properties": { "order": 102, "id": 180, "name": "undo", "prevSize": 32, "code": 59854 }, + "setIdx": 0, + "setId": 4, + "iconIdx": 181 + }, + { + "icon": { + "paths": [ + "M467.808 512c0-63.322-61.053-128-153.903-128s-153.905 64.678-153.905 128c0 63.322 61.054 128 153.905 128s153.903-64.678 153.903-128zM512 592.099c34.454 66.042 110.195 111.901 198.096 111.901 120.346 0 217.904-85.962 217.904-192s-97.558-192-217.904-192c-87.901 0-163.642 45.859-198.096 111.901-34.451-66.042-110.195-111.901-198.095-111.901-120.345 0-217.905 85.962-217.905 192s97.559 192 217.905 192c87.9 0 163.644-45.859 198.095-111.901zM864 512c0 63.322-61.053 128-153.904 128s-153.904-64.678-153.904-128c0-63.322 61.053-128 153.904-128s153.904 64.678 153.904 128z" + ], + "attrs": [{ "fill": "rgb(108, 114, 122)" }], + "isMulticolor": false, + "isMulticolor2": false, + "colorPermutations": { + "1081141221158162168120320620912282312341243190812456992125519219212552552551291162451452241651699010019902101": [ + { "f": 2 } + ] + }, + "tags": ["Unlimited"], + "grid": 0 + }, + "attrs": [{ "fill": "rgb(108, 114, 122)" }], + "properties": { "order": 103, "id": 181, "name": "Unlimited", "prevSize": 32, "code": 59855 }, + "setIdx": 0, + "setId": 4, + "iconIdx": 182 + }, + { + "icon": { + "paths": [ + "M829.168 153.372c12.515-12.497 32.803-12.497 45.315 0 12.515 12.497 12.515 32.758 0 45.255l-672.887 672c-12.513 12.496-32.801 12.496-45.315 0s-12.513-32.758 0-45.254l672.887-672zM110.155 480.051c101.936-153.699 303.797-327.676 542.114-225.436l-49.578 49.512c-56.528-19.209-108.077-19.504-153.526-9.726-114.906 24.721-215.653 118.392-280.79 213.871 38.633 48 75.969 86.822 111.862 117.885l-45.363 45.302c-39.684-34.736-80.189-77.437-121.317-129.181-14.248-17.923-16.056-43.146-3.402-62.227zM797.981 350.454l-45.328 45.27c35.546 31.427 72.336 70.947 110.186 120.080-61.546 95.187-158.656 188.682-272.125 213.626-46.752 10.278-100.624 9.734-160.592-11.603l-49.331 49.267c244.662 107.334 443.389-69.158 540.778-224.253 11.674-18.589 9.894-42.656-3.395-60.128-40.493-53.235-80.64-96.931-120.192-132.259zM514.982 347.43c13.709 0 27.037 1.571 39.802 4.541l-203.738 203.469c-3.901-13.837-5.981-28.403-5.981-43.44 0-90.89 76.074-164.57 169.917-164.57zM679.091 469.184l-203.264 202.998c12.57 2.87 25.68 4.39 39.155 4.39 93.843 0 169.917-73.68 169.917-164.573 0-14.81-2.019-29.162-5.808-42.816z" + ], + "width": 1056, + "attrs": [{ "fill": "rgb(108, 114, 122)" }], + "isMulticolor": false, + "isMulticolor2": false, + "colorPermutations": { + "1081141221158162168120320620912282312341243190812456992125519219212552552551291162451452241651699010019902101": [ + { "f": 2 } + ] + }, + "tags": ["unread-on-top-disabled"], + "grid": 0 + }, + "attrs": [{ "fill": "rgb(108, 114, 122)" }], + "properties": { "order": 104, "id": 182, "name": "unread-on-top-disabled", "prevSize": 32, "code": 59856 }, + "setIdx": 0, + "setId": 4, + "iconIdx": 183 + }, + { + "icon": { + "paths": [ + "M589.36 729.43c-107.366 23.603-252.288-9.875-422.339-221.158 65.137-95.478 165.885-189.15 280.79-213.871 108.314-23.302 251.286 10.604 413.674 221.404-61.546 95.187-158.653 188.682-272.125 213.626zM916.819 482.714c-347.59-456.963-669.742-211.156-808.018-2.662-12.655 19.082-10.846 44.304 3.402 62.227 362.786 456.419 677.038 209.142 808.011 0.563 11.674-18.589 9.894-42.656-3.395-60.128zM619.462 512c0-53.709-45.517-100.57-105.834-100.57s-105.834 46.861-105.834 100.57c0 53.709 45.517 100.573 105.834 100.573s105.834-46.864 105.834-100.573zM683.546 512c0 90.893-76.074 164.573-169.917 164.573s-169.917-73.68-169.917-164.573c0-90.89 76.074-164.57 169.917-164.57s169.917 73.68 169.917 164.57z" + ], + "width": 1056, + "attrs": [{ "fill": "rgb(108, 114, 122)" }], + "isMulticolor": false, + "isMulticolor2": false, + "colorPermutations": { + "1081141221158162168120320620912282312341243190812456992125519219212552552551291162451452241651699010019902101": [ + { "f": 2 } + ] + }, + "tags": ["unread-on-top"], + "grid": 0 + }, + "attrs": [{ "fill": "rgb(108, 114, 122)" }], + "properties": { "order": 105, "id": 183, "name": "unread-on-top", "prevSize": 32, "code": 59857 }, + "setIdx": 0, + "setId": 4, + "iconIdx": 184 + }, + { + "icon": { + "paths": [ + "M273.128 356.678c-6.62 27.766-2.384 63.757 25.498 105.581l33.166 49.75h-59.792c-44.011 0-70.484 14.874-86.279 33.619-16.496 19.578-24.573 47.264-23.734 77.491 0.841 30.262 10.601 59.968 25.818 81.312 15.127 21.216 33.404 31.578 52.195 31.578h143.999v64h-144c-45.209 0-80.932-25.642-104.306-58.426-23.283-32.656-36.522-74.95-37.682-116.688-1.16-41.773 9.763-86.083 38.766-120.506 20.726-24.598 49.155-42.32 84.825-50.784-16.1-39.011-19.009-77.050-10.731-111.77 11.253-47.2 42.305-84.492 80.791-107.342 38.4-22.798 85.677-32.139 131.303-21.965 35.584 7.935 68.909 27.48 95.251 59.554 53.75-35.147 127.584-30.892 182.483-2.495 34.438 17.812 64.794 46.382 81.437 85.010 12.294 28.531 16.438 61.011 10.608 96.205 46.112 6.682 81.507 25.155 105.616 53.456 30.346 35.626 38.102 81.35 33.443 123.283-4.659 41.917-21.946 83.485-46.544 115.114-24.061 30.934-59.354 57.354-101.261 57.354h-144v-64h144c14.093 0 32.8-9.581 50.742-32.646 17.398-22.371 30.112-52.806 33.453-82.89 3.341-30.067-2.902-56.339-18.554-74.714-15.222-17.869-44.035-33.75-97.642-33.75h-45.686l15.613-42.938c13.546-37.251 11.091-66.742 1.437-89.149-9.856-22.87-28.502-41.302-52.064-53.488-49.587-25.649-107.475-18.625-134.717 14.064l-30.134 36.16-22.541-41.325c-19.757-36.219-47.232-54.175-74.87-60.339-28.378-6.327-59.098-0.669-84.701 14.53-25.512 15.148-44.461 38.855-51.208 67.152zM630.979 588.778l-96-99.050c-6.029-6.218-14.32-9.728-22.979-9.728s-16.95 3.51-22.979 9.728l-96 99.050c-12.298 12.691-11.981 32.95 0.707 45.251 12.691 12.298 32.95 11.981 45.251-0.707l41.021-42.326v273.005c0 17.674 14.326 32 32 32s32-14.326 32-32v-273.005l41.021 42.326c12.301 12.688 32.56 13.005 45.251 0.707 12.691-12.301 13.005-32.56 0.707-45.251z" + ], + "attrs": [{ "fill": "rgb(108, 114, 122)" }], + "isMulticolor": false, + "isMulticolor2": false, + "colorPermutations": { + "1081141221158162168120320620912282312341243190812456992125519219212552552551291162451452241651699010019902101": [ + { "f": 2 } + ] + }, + "tags": ["upload"], + "grid": 0 + }, + "attrs": [{ "fill": "rgb(108, 114, 122)" }], + "properties": { "order": 106, "id": 184, "name": "upload", "prevSize": 32, "code": 59858 }, + "setIdx": 0, + "setId": 4, + "iconIdx": 185 + }, + { + "icon": { + "paths": [ + "M553.411 326.282c0 91.578-75.846 165.818-169.411 165.818-93.564 0-169.412-74.24-169.412-165.818 0-91.581 75.848-165.821 169.412-165.821 93.565 0 169.411 74.24 169.411 165.821zM485.648 326.282c0-54.949-45.51-99.493-101.648-99.493s-101.647 44.544-101.647 99.493c0 54.947 45.509 99.491 101.647 99.491s101.648-44.544 101.648-99.491z", + "M203.427 511.232c28.952-9.11 60.004-9.67 89.279-1.61l51.342 14.131c25.632 7.056 52.819 6.566 78.166-1.408l31.872-10.026c31.206-9.821 64.678-10.422 96.234-1.738 71.962 19.811 121.68 84.051 121.68 157.219v96.24c0 54.947-45.51 99.491-101.648 99.491h-372.705c-56.138 0-101.647-44.544-101.647-99.491v-108.566c0-65.814 43.411-124.106 107.427-144.243zM274.359 573.472c-16.46-4.531-33.918-4.218-50.196 0.906-35.992 11.322-60.399 44.093-60.399 81.098v108.566c0 18.317 15.17 33.165 33.882 33.165h372.705c18.714 0 33.882-14.848 33.882-33.165v-96.24c0-43.453-29.523-81.603-72.259-93.366-18.739-5.158-38.618-4.8-57.152 1.030l-31.872 10.026c-38.022 11.962-78.803 12.698-117.248 2.115l-51.343-14.134z", + "M797.091 189.321c0-15.913-13.024-28.812-29.091-28.812s-29.091 12.9-29.091 28.812v100.844h-101.818c-16.067 0-29.091 12.9-29.091 28.812s13.024 28.812 29.091 28.812h101.818v100.845c0 15.914 13.024 28.813 29.091 28.813s29.091-12.899 29.091-28.813v-100.845h101.818c16.067 0 29.091-12.899 29.091-28.812s-13.024-28.812-29.091-28.812h-101.818v-100.844z" + ], + "attrs": [{ "fill": "rgb(108, 114, 122)" }, { "fill": "rgb(108, 114, 122)" }, { "fill": "rgb(108, 114, 122)" }], + "isMulticolor": false, + "isMulticolor2": false, + "colorPermutations": { + "1081141221158162168120320620912282312341243190812456992125519219212552552551291162451452241651699010019902101": [ + { "f": 2 }, + { "f": 2 }, + { "f": 2 } + ] + }, + "tags": ["user-add"], + "grid": 0 + }, + "attrs": [{ "fill": "rgb(108, 114, 122)" }, { "fill": "rgb(108, 114, 122)" }, { "fill": "rgb(108, 114, 122)" }], + "properties": { "order": 107, "id": 185, "name": "user-add", "prevSize": 32, "code": 59859 }, + "setIdx": 0, + "setId": 4, + "iconIdx": 186 + }, + { + "icon": { + "paths": [ + "M464 318.747c0-51.548-42.406-94.366-96-94.366-53.592 0-96 42.819-96 94.366s42.408 94.367 96 94.367c53.594 0 96-42.819 96-94.367zM528 318.747c0 87.416-71.635 158.284-160 158.284s-160-70.867-160-158.284c0-87.417 71.635-158.282 160-158.282s160 70.865 160 158.282zM281.778 525.712c-27.649-7.693-56.976-7.158-84.319 1.536-60.46 19.226-101.459 74.864-101.459 137.69v103.629c0 52.451 42.981 94.97 96 94.97h352c3.606 0 7.165-0.195 10.666-0.579v-64.534c-3.334 1.168-6.925 1.802-10.666 1.802h-352c-17.673 0-32-14.173-32-31.658v-103.629c0-35.325 23.051-66.605 57.044-77.414 15.373-4.89 31.862-5.187 47.407-0.864l48.489 13.491c36.311 10.102 74.827 9.402 110.737-2.016l30.099-9.571c17.504-5.568 36.278-5.91 53.978-0.986 18.899 5.261 35.066 16.042 46.912 30.282v-79.712c-9.309-4.749-19.203-8.627-29.584-11.517-29.805-8.291-61.414-7.715-90.89 1.654l-30.099 9.574c-23.942 7.61-49.619 8.080-73.824 1.344l-48.491-13.491zM763.366 489.709c-12.326-12.646-32.586-12.918-45.248-0.608-12.666 12.31-12.938 32.544-0.611 45.19l102.842 105.51h-324.349c-17.674 0-32 14.307-32 31.958 0 17.648 14.326 31.958 32 31.958h324.349l-102.842 105.507c-12.326 12.65-12.054 32.88 0.611 45.194 12.662 12.31 32.922 12.038 45.248-0.611l155.718-159.757c12.093-12.406 12.093-32.176 0-44.582l-155.718-159.76z" + ], + "attrs": [{ "fill": "rgb(108, 114, 122)" }], + "isMulticolor": false, + "isMulticolor2": false, + "colorPermutations": { + "1081141221158162168120320620912282312341243190812456992125519219212552552551291162451452241651699010019902101": [ + { "f": 2 } + ] + }, + "tags": ["user-forward"], + "grid": 0 + }, + "attrs": [{ "fill": "rgb(108, 114, 122)" }], + "properties": { "order": 108, "id": 186, "name": "user-forward", "prevSize": 32, "code": 59860 }, + "setIdx": 0, + "setId": 4, + "iconIdx": 187 + }, + { + "icon": { + "paths": [ + "M609.354 336c0-53.019-42.979-96-96-96s-96 42.981-96 96c0 53.021 42.979 96 96 96s96-42.979 96-96zM673.354 336c0 88.365-71.635 160-160 160s-160-71.635-160-160c0-88.365 71.635-160 160-160s160 71.635 160 160zM413.805 551.802c-24.621-5.77-50.285-5.366-74.714 1.178-67.086 17.968-113.738 78.762-113.738 148.211v66.81c0 53.021 42.98 96 96 96h384c53.021 0 96-42.979 96-96v-58.531c0-74.301-51.149-138.826-123.488-155.779l-6.458-1.514c-25.674-6.016-52.435-5.594-77.907 1.229l-49.626 13.293c-20.378 5.456-41.789 5.795-62.326 0.979l-67.744-15.875zM355.651 614.8c14.237-3.814 29.197-4.051 43.549-0.688l67.744 15.878c30.806 7.219 62.925 6.714 93.488-1.472l49.629-13.293c15.283-4.096 31.341-4.349 46.742-0.736l6.458 1.51c43.402 10.173 74.093 48.89 74.093 93.469v58.531c0 17.674-14.326 32-32 32h-384c-17.673 0-32-14.326-32-32v-66.81c0-40.483 27.193-75.917 66.298-86.39z" + ], + "width": 1056, + "attrs": [{ "fill": "rgb(108, 114, 122)" }], + "isMulticolor": false, + "isMulticolor2": false, + "colorPermutations": { + "1081141221158162168120320620912282312341243190812456992125519219212552552551291162451452241651699010019902101": [ + { "f": 2 } + ] + }, + "tags": ["user"], + "grid": 0 + }, + "attrs": [{ "fill": "rgb(108, 114, 122)" }], + "properties": { "order": 109, "id": 187, "name": "user", "prevSize": 32, "code": 59861 }, + "setIdx": 0, + "setId": 4, + "iconIdx": 188 + }, + { + "icon": { + "paths": [ + "M201.583 672c35.346 0 64-28.653 64-64s-28.654-64-64-64c-35.346 0-64 28.653-64 64s28.654 64 64 64z", + "M329.584 576c-17.674 0-32.001 14.326-32.001 32s14.327 32 32.001 32h544c17.674 0 32-14.326 32-32s-14.326-32-32-32h-544z", + "M201.583 480c35.346 0 64-28.653 64-64s-28.654-64-64-64c-35.346 0-64 28.653-64 64s28.654 64 64 64z", + "M329.584 384c-17.674 0-32.001 14.326-32.001 32s14.327 32 32.001 32h544c17.674 0 32-14.326 32-32s-14.326-32-32-32h-544z", + "M201.583 288c35.346 0 64-28.654 64-64s-28.654-64-64-64c-35.346 0-64 28.654-64 64s28.654 64 64 64z", + "M329.584 192c-17.674 0-32.001 14.327-32.001 32s14.327 32 32.001 32h544c17.674 0 32-14.327 32-32s-14.326-32-32-32h-544z", + "M201.583 864c35.346 0 64-28.653 64-64s-28.654-64-64-64c-35.346 0-64 28.653-64 64s28.654 64 64 64z", + "M329.584 768c-17.674 0-32.001 14.326-32.001 32s14.327 32 32.001 32h544c17.674 0 32-14.326 32-32s-14.326-32-32-32h-544z" + ], + "attrs": [ + { "fill": "rgb(108, 114, 122)" }, + { "fill": "rgb(108, 114, 122)" }, + { "fill": "rgb(108, 114, 122)" }, + { "fill": "rgb(108, 114, 122)" }, + { "fill": "rgb(108, 114, 122)" }, + { "fill": "rgb(108, 114, 122)" }, + { "fill": "rgb(108, 114, 122)" }, + { "fill": "rgb(108, 114, 122)" } + ], + "isMulticolor": false, + "isMulticolor2": false, + "colorPermutations": { + "1081141221158162168120320620912282312341243190812456992125519219212552552551291162451452241651699010019902101": [ + { "f": 2 }, + { "f": 2 }, + { "f": 2 }, + { "f": 2 }, + { "f": 2 }, + { "f": 2 }, + { "f": 2 }, + { "f": 2 } + ] + }, + "tags": ["view-condensed"], + "grid": 0 + }, + "attrs": [ + { "fill": "rgb(108, 114, 122)" }, + { "fill": "rgb(108, 114, 122)" }, + { "fill": "rgb(108, 114, 122)" }, + { "fill": "rgb(108, 114, 122)" }, + { "fill": "rgb(108, 114, 122)" }, + { "fill": "rgb(108, 114, 122)" }, + { "fill": "rgb(108, 114, 122)" }, + { "fill": "rgb(108, 114, 122)" } + ], + "properties": { "order": 110, "id": 188, "name": "view-condensed", "prevSize": 32, "code": 59862 }, + "setIdx": 0, + "setId": 4, + "iconIdx": 189 + }, + { + "icon": { + "paths": [ + "M288 192c0-17.673 14.327-32 32-32h544c17.674 0 32 14.327 32 32s-14.326 32-32 32h-544c-17.673 0-32-14.327-32-32zM288 288c0-17.673 14.327-32 32-32h448c17.674 0 32 14.327 32 32s-14.326 32-32 32h-448c-17.673 0-32-14.327-32-32zM192 304c35.346 0 64-28.654 64-64s-28.654-64-64-64c-35.346 0-64 28.654-64 64s28.654 64 64 64z", + "M288 464c0-17.674 14.327-32 32-32h544c17.674 0 32 14.326 32 32s-14.326 32-32 32h-544c-17.673 0-32-14.326-32-32zM288 560c0-17.674 14.327-32 32-32h448c17.674 0 32 14.326 32 32s-14.326 32-32 32h-448c-17.673 0-32-14.326-32-32zM192 576c35.346 0 64-28.653 64-64s-28.654-64-64-64c-35.346 0-64 28.653-64 64s28.654 64 64 64z", + "M288 736c0-17.674 14.327-32 32-32h544c17.674 0 32 14.326 32 32s-14.326 32-32 32h-544c-17.673 0-32-14.326-32-32zM288 832c0-17.674 14.327-32 32-32h448c17.674 0 32 14.326 32 32s-14.326 32-32 32h-448c-17.673 0-32-14.326-32-32zM192 848c35.346 0 64-28.653 64-64s-28.654-64-64-64c-35.346 0-64 28.653-64 64s28.654 64 64 64z" + ], + "attrs": [{ "fill": "rgb(108, 114, 122)" }, { "fill": "rgb(108, 114, 122)" }, { "fill": "rgb(108, 114, 122)" }], + "isMulticolor": false, + "isMulticolor2": false, + "colorPermutations": { + "1081141221158162168120320620912282312341243190812456992125519219212552552551291162451452241651699010019902101": [ + { "f": 2 }, + { "f": 2 }, + { "f": 2 } + ] + }, + "tags": ["view-extended"], + "grid": 0 + }, + "attrs": [{ "fill": "rgb(108, 114, 122)" }, { "fill": "rgb(108, 114, 122)" }, { "fill": "rgb(108, 114, 122)" }], + "properties": { "order": 111, "id": 189, "name": "view-extended", "prevSize": 32, "code": 59863 }, + "setIdx": 0, + "setId": 4, + "iconIdx": 190 + }, + { + "icon": { + "paths": [ + "M192 320c35.346 0 64-28.654 64-64s-28.654-64-64-64c-35.346 0-64 28.654-64 64s28.654 64 64 64z", + "M320 224c-17.673 0-32 14.327-32 32s14.327 32 32 32h544c17.674 0 32-14.327 32-32s-14.326-32-32-32h-544z", + "M192 576c35.346 0 64-28.653 64-64s-28.654-64-64-64c-35.346 0-64 28.653-64 64s28.654 64 64 64z", + "M320 480c-17.673 0-32 14.326-32 32s14.327 32 32 32h544c17.674 0 32-14.326 32-32s-14.326-32-32-32h-544z", + "M192 832c35.346 0 64-28.653 64-64s-28.654-64-64-64c-35.346 0-64 28.653-64 64s28.654 64 64 64z", + "M320 736c-17.673 0-32 14.326-32 32s14.327 32 32 32h544c17.674 0 32-14.326 32-32s-14.326-32-32-32h-544z" + ], + "attrs": [ + { "fill": "rgb(108, 114, 122)" }, + { "fill": "rgb(108, 114, 122)" }, + { "fill": "rgb(108, 114, 122)" }, + { "fill": "rgb(108, 114, 122)" }, + { "fill": "rgb(108, 114, 122)" }, + { "fill": "rgb(108, 114, 122)" } + ], + "isMulticolor": false, + "isMulticolor2": false, + "colorPermutations": { + "1081141221158162168120320620912282312341243190812456992125519219212552552551291162451452241651699010019902101": [ + { "f": 2 }, + { "f": 2 }, + { "f": 2 }, + { "f": 2 }, + { "f": 2 }, + { "f": 2 } + ] + }, + "tags": ["view-medium"], + "grid": 0 + }, + "attrs": [ + { "fill": "rgb(108, 114, 122)" }, + { "fill": "rgb(108, 114, 122)" }, + { "fill": "rgb(108, 114, 122)" }, + { "fill": "rgb(108, 114, 122)" }, + { "fill": "rgb(108, 114, 122)" }, + { "fill": "rgb(108, 114, 122)" } + ], + "properties": { "order": 112, "id": 190, "name": "view-medium", "prevSize": 32, "code": 59864 }, + "setIdx": 0, + "setId": 4, + "iconIdx": 191 + }, + { + "icon": { + "paths": [ + "M640.854 256c26.512 0 48-21.49 48-48s-21.488-48-48-48c-26.509 0-48 21.49-48 48s21.491 48 48 48zM640.854 320c61.856 0 112-50.144 112-112s-50.144-112-112-112c-61.856 0-112 50.144-112 112s50.144 112 112 112zM592.854 416v256h-160v128h32v-96h224v-288h-96zM528.854 768h160c35.347 0 64-28.653 64-64v-288c0-35.347-28.653-64-64-64h-96c-35.344 0-64 28.653-64 64v192h-96c-35.344 0-64 28.653-64 64v128c0 35.347 28.656 64 64 64h32c35.347 0 64-28.653 64-64v-32zM784.854 448c0-17.674 14.326-32 32-32s32 14.326 32 32v384c0 17.674-14.326 32-32 32h-224c-17.674 0-32-14.326-32-32s14.326-32 32-32h192v-352zM368.403 401.52c9.677-9.059 10.176-24.246 1.117-33.923l-48.272-51.558v-47.925c0-13.255-10.746-24-24-24s-24 10.745-24 24v57.406c0 6.093 2.316 11.955 6.48 16.403l54.752 58.48c9.059 9.677 24.246 10.176 33.923 1.117zM170.974 414.278c53.308 74.218 156.687 91.171 230.908 37.862 10.765-7.731 25.76-5.274 33.494 5.491 7.731 10.768 5.274 25.763-5.494 33.494-95.75 68.771-229.121 46.902-297.894-48.848s-46.902-229.123 48.848-297.895c75.545-54.26 174.453-52.073 246.597-1.796 10.874 7.578 13.546 22.538 5.968 33.412s-22.538 13.547-33.411 5.968c-55.971-39.005-132.65-40.618-191.153 1.402-74.219 53.308-91.171 156.688-37.864 230.909z" + ], + "attrs": [{ "fill": "rgb(108, 114, 122)" }], + "isMulticolor": false, + "isMulticolor2": false, + "colorPermutations": { + "1081141221158162168120320620912282312341243190812456992125519219212552552551291162451452241651699010019902101": [ + { "f": 2 } + ] + }, + "tags": ["waiting-on-me"], + "grid": 0 + }, + "attrs": [{ "fill": "rgb(108, 114, 122)" }], + "properties": { "order": 113, "id": 191, "name": "waiting-on-me", "prevSize": 32, "code": 59865 }, + "setIdx": 0, + "setId": 4, + "iconIdx": 192 + }, + { + "icon": { + "paths": [ + "M512 352.003c17.674 0 32 14.33 32 32v224c0 17.674-14.326 32-32 32s-32-14.326-32-32v-224c0-17.67 14.326-32 32-32z", + "M512 672.003c17.674 0 32 14.33 32 32 0 17.674-14.326 32-32 32s-32-14.326-32-32c0-17.67 14.326-32 32-32z", + "M567.101 158.348c-24.774-41.922-85.427-41.922-110.202 0l-359.92 609.099c-25.21 42.662 5.544 96.557 55.099 96.557h719.845c49.555 0 80.307-53.894 55.098-96.557l-359.92-609.099zM512 190.906l359.923 609.097h-719.845l359.922-609.097z" + ], + "attrs": [{ "fill": "rgb(108, 114, 122)" }, { "fill": "rgb(108, 114, 122)" }, { "fill": "rgb(108, 114, 122)" }], + "isMulticolor": false, + "isMulticolor2": false, + "colorPermutations": { + "1081141221158162168120320620912282312341243190812456992125519219212552552551291162451452241651699010019902101": [ + { "f": 2 }, + { "f": 2 }, + { "f": 2 } + ] + }, + "tags": ["warning"], + "grid": 0 + }, + "attrs": [{ "fill": "rgb(108, 114, 122)" }, { "fill": "rgb(108, 114, 122)" }, { "fill": "rgb(108, 114, 122)" }], + "properties": { "order": 114, "id": 192, "name": "warning", "prevSize": 32, "code": 59866 }, + "setIdx": 0, + "setId": 4, + "iconIdx": 193 + }, + { + "icon": { + "paths": [ + "M784.131 240.143c-35.43-35.658-77.581-63.931-124.016-83.181s-96.227-29.094-146.493-28.961c-210.863 0-382.322 171.532-382.414 382.376-0.085 67.104 17.523 133.043 51.047 191.171l-54.256 198.154 202.72-53.174c56.064 30.531 118.883 46.531 182.717 46.538h0.166c210.752 0 382.32-171.552 382.394-382.394 0.16-50.25-9.645-100.029-28.848-146.464-19.2-46.436-47.418-88.604-83.018-124.065zM513.622 828.486h-0.186c-56.922 0.006-112.797-15.293-161.776-44.298l-11.606-6.896-120.302 31.555 32.124-117.347-7.573-12.029c-31.783-50.64-48.608-109.232-48.535-169.021 0-175.235 142.653-317.816 317.981-317.816 84.301 0.049 165.13 33.58 224.707 93.218 59.581 59.638 93.034 140.499 92.998 224.8-0.074 175.254-142.653 317.834-317.834 317.834zM687.958 590.451c-9.552-4.787-56.528-27.907-65.293-31.171s-15.126-4.768-21.491 4.784c-6.362 9.555-24.678 31.171-30.253 37.462-5.574 6.288-11.149 7.187-20.701 2.4-9.555-4.784-40.339-14.87-76.845-47.434-28.403-25.322-47.584-56.621-53.174-66.192-5.594-9.571-0.589-14.669 4.198-19.491 4.291-4.291 9.552-11.168 14.32-16.742s6.381-9.571 9.552-15.933c3.174-6.362 1.597-11.955-0.787-16.739-2.384-4.787-21.491-51.818-29.466-70.96-7.757-18.63-15.622-16.099-21.491-16.394-5.501-0.275-11.955-0.349-18.336-0.349-4.842 0.131-9.606 1.264-13.994 3.325-4.387 2.058-8.298 5.005-11.491 8.65-8.749 9.552-33.428 32.675-33.428 79.706s34.234 92.467 39.002 98.848c4.765 6.381 67.382 102.883 163.187 144.266 17.792 7.68 35.974 14.413 54.477 20.17 22.902 7.334 43.731 6.237 60.179 3.779 18.336-2.733 56.547-23.104 64.506-45.418 7.955-22.317 7.955-41.459 5.501-45.456-2.458-3.997-8.618-6.326-18.173-11.11z" + ], + "attrs": [{ "fill": "rgb(108, 114, 122)" }], + "isMulticolor": false, + "isMulticolor2": false, + "colorPermutations": { + "1081141221158162168120320620912282312341243190812456992125519219212552552551291162451452241651699010019902101": [ + { "f": 2 } + ] + }, + "tags": ["whatsapp-monochromatic"], + "grid": 0 + }, + "attrs": [{ "fill": "rgb(108, 114, 122)" }], + "properties": { "order": 237, "id": 193, "name": "whatsapp-monochromatic", "prevSize": 32, "code": 59868 }, + "setIdx": 0, + "setId": 4, + "iconIdx": 194 + }, + { + "icon": { + "paths": [ + "M354.006 399.123l14.029 0.627-0.541-16.726-152.878 1.578c49.916-116.491 165.64-198.133 300.366-198.133 99.645 0 188.893 44.659 248.81 115.065-3.712 0.171-7.491 0.492-11.526 1.068 0 0-63.76 14.898-13.302 118.708 0 0 31.085 84.541-19.306 198.774l-28.403 73.306-99.101-264.723c0 0-5.984-28.154 23.61-28.154l23.76-1.472 0.339-16.035h-228.368v14.458c0 0 39.83-0.288 56.15 27.149l40.762 103.779-73.014 174.403-108.608-272.4c0 0-3.389-31.779 27.222-31.27z", + "M841.603 513.168c0-33.862-5.235-66.643-14.726-97.357l-145.949 378.755c96.134-56.88 160.675-161.571 160.675-281.398z", + "M411.478 823.011c32.49 10.912 67.267 16.778 103.488 16.778 37.85 0 74.102-6.406 107.898-18.256l-99.709-258.502-111.677 259.981z", + "M188.279 513.149c0-32.083 4.712-63.066 13.339-92.336l1 2.051 152.656 375.229c-99.606-55.882-166.994-162.538-166.994-284.944z", + "M130.705 512.093c0-211.775 172.316-384.093 384.076-384.093 211.725 0 383.923 172.318 383.923 384.093 0 211.776-172.198 384.010-383.923 384.010-211.757 0-384.076-172.234-384.076-384.010zM514.781 879.254c202.384 0 367.11-164.742 367.11-367.178 0-202.486-164.726-367.145-367.11-367.161-202.489 0-367.213 164.673-367.213 367.161 0 202.435 164.724 367.178 367.213 367.178z" + ], + "width": 1056, + "attrs": [ + { "fill": "rgb(108, 114, 122)" }, + { "fill": "rgb(108, 114, 122)" }, + { "fill": "rgb(108, 114, 122)" }, + { "fill": "rgb(108, 114, 122)" }, + { "fill": "rgb(108, 114, 122)" } + ], + "isMulticolor": false, + "isMulticolor2": false, + "colorPermutations": { + "1081141221158162168120320620912282312341243190812456992125519219212552552551291162451452241651699010019902101": [ + { "f": 2 }, + { "f": 2 }, + { "f": 2 }, + { "f": 2 }, + { "f": 2 } + ] + }, + "tags": ["wordpress-monochromatic"], + "grid": 0 + }, + "attrs": [ + { "fill": "rgb(108, 114, 122)" }, + { "fill": "rgb(108, 114, 122)" }, + { "fill": "rgb(108, 114, 122)" }, + { "fill": "rgb(108, 114, 122)" }, + { "fill": "rgb(108, 114, 122)" } + ], + "properties": { "order": 241, "id": 194, "name": "wordpress-monochromatic", "prevSize": 32, "code": 59656 }, + "setIdx": 0, + "setId": 4, + "iconIdx": 195 + }, + { + "icon": { + "paths": [ + "M193.353 405.334h213.332v-213.334h-213.332v213.334zM129.353 170.667c0-23.564 19.102-42.667 42.667-42.667h256c23.565 0 42.666 19.102 42.666 42.667v255.999c0 23.565-19.101 42.669-42.666 42.669h-256c-23.564 0-42.667-19.104-42.667-42.669v-255.999zM620.019 405.334h213.334v-213.334h-213.334v213.334zM556.019 170.667c0-23.564 19.104-42.667 42.666-42.667h256c23.565 0 42.669 19.102 42.669 42.667v255.999c0 23.565-19.104 42.669-42.669 42.669h-256c-23.562 0-42.666-19.104-42.666-42.669v-255.999zM620.019 618.666h213.334v213.334h-213.334v-213.334zM598.685 554.666c-23.562 0-42.666 19.104-42.666 42.669v256c0 23.562 19.104 42.666 42.666 42.666h256c23.565 0 42.669-19.104 42.669-42.666v-256c0-23.565-19.104-42.669-42.669-42.669h-256zM193.353 832h213.332v-213.334h-213.332v213.334zM129.353 597.334c0-23.565 19.102-42.669 42.667-42.669h256c23.565 0 42.666 19.104 42.666 42.669v256c0 23.562-19.101 42.666-42.666 42.666h-256c-23.564 0-42.667-19.104-42.667-42.666v-256z" + ], + "width": 1056, + "attrs": [{ "fill": "rgb(108, 114, 122)" }], + "isMulticolor": false, + "isMulticolor2": false, + "colorPermutations": { + "1081141221158162168120320620912282312341243190812456992125519219212552552551291162451452241651699010019902101": [ + { "f": 2 } + ] + }, + "tags": ["workspaces"], + "grid": 0 + }, + "attrs": [{ "fill": "rgb(108, 114, 122)" }], + "properties": { "order": 119, "id": 195, "name": "workspaces", "prevSize": 32, "code": 59870 }, + "setIdx": 0, + "setId": 4, + "iconIdx": 196 + }, + { + "icon": { + "paths": [ + "M384.509 149.333c0-11.782 9.562-21.333 21.36-21.333h85.446c11.798 0 21.363 9.551 21.363 21.333v106.667h-106.81c-11.798 0-21.36-9.551-21.36-21.333v-85.333z", + "M512.678 256h106.806c11.798 0 21.36 9.551 21.36 21.333v85.332c0 11.782-9.562 21.334-21.36 21.334h-106.806v-128z", + "M384.509 405.334c0-11.782 9.562-21.334 21.36-21.334h106.81v128h-106.81c-11.798 0-21.36-9.552-21.36-21.334v-85.331z", + "M512.678 512h106.806c11.798 0 21.36 9.552 21.36 21.334v106.666h-128.166v-128z", + "M427.232 640c-23.597 0-42.723 19.104-42.723 42.666v170.669c0 23.562 19.126 42.666 42.723 42.666h170.89c23.597 0 42.723-19.104 42.723-42.666v-213.334h-213.613zM491.315 725.334c-11.798 0-21.36 9.549-21.36 21.331v42.669c0 11.782 9.562 21.331 21.36 21.331h42.723c11.798 0 21.36-9.549 21.36-21.331v-42.669c0-11.782-9.562-21.331-21.36-21.331h-42.723z" + ], + "width": 1056, + "attrs": [ + { "fill": "rgb(108, 114, 122)" }, + { "fill": "rgb(108, 114, 122)" }, + { "fill": "rgb(108, 114, 122)" }, + { "fill": "rgb(108, 114, 122)" }, + { "fill": "rgb(108, 114, 122)" } + ], + "isMulticolor": false, + "isMulticolor2": false, + "colorPermutations": { + "1081141221158162168120320620912282312341243190812456992125519219212552552551291162451452241651699010019902101": [ + { "f": 2 }, + { "f": 2 }, + { "f": 2 }, + { "f": 2 }, + { "f": 2 } + ] + }, + "tags": ["zip"], + "grid": 0 + }, + "attrs": [ + { "fill": "rgb(108, 114, 122)" }, + { "fill": "rgb(108, 114, 122)" }, + { "fill": "rgb(108, 114, 122)" }, + { "fill": "rgb(108, 114, 122)" }, + { "fill": "rgb(108, 114, 122)" } + ], + "properties": { "order": 120, "id": 196, "name": "zip", "prevSize": 32, "code": 59871 }, + "setIdx": 0, + "setId": 4, + "iconIdx": 197 + }, + { + "icon": { + "paths": [ + "M544 208c0-17.673-14.326-32-32-32s-32 14.327-32 32v271.997h-271.998c-17.673 0-32 14.326-32 32s14.327 32 32 32h271.998v272.003c0 17.674 14.326 32 32 32s32-14.326 32-32v-272.003l272-0.003c17.674 0 32-14.326 32-32s-14.326-32-32-32l-272 0.003v-271.997z" + ], + "attrs": [{ "fill": "rgb(108, 114, 122)" }], + "isMulticolor": false, + "isMulticolor2": false, + "colorPermutations": { + "1081141221158162168120320620912282312341243190812456992125519219212552552551291162451452241651699010019902101": [ + { "f": 2 } + ] + }, + "tags": ["add"], + "grid": 0 + }, + "attrs": [{ "fill": "rgb(108, 114, 122)" }], + "properties": { "order": 240, "id": 197, "name": "add", "prevSize": 32, "code": 59872 }, + "setIdx": 0, + "setId": 4, + "iconIdx": 198 + } + ], + "height": 1024, + "metadata": { "name": "custom" }, + "preferences": { + "showGlyphs": true, + "showQuickUse": true, + "showQuickUse2": true, + "showSVGs": true, + "fontPref": { + "prefix": "icon-", + "metadata": { "fontFamily": "custom", "majorVersion": 1, "minorVersion": 0 }, + "metrics": { "emSize": 1024, "baseline": 6.25, "whitespace": 50 }, + "embed": false + }, + "imagePref": { + "prefix": "icon-", + "png": true, + "useClassSelector": true, + "color": 0, + "bgColor": 16777215, + "classSelector": ".icon" + }, + "historySize": 50, + "showCodes": true, + "gridSize": 16 + } +} diff --git a/app/lib/utils.js b/app/lib/utils.js index ec7a398ee0..5776a3389e 100644 --- a/app/lib/utils.js +++ b/app/lib/utils.js @@ -1,15 +1,13 @@ -import { - coerce, gt, gte, lt, lte -} from 'semver'; +import { coerce, gt, gte, lt, lte } from 'semver'; export const formatAttachmentUrl = (attachmentUrl, userId, token, server) => { if (attachmentUrl.startsWith('http')) { if (attachmentUrl.includes('rc_token')) { return encodeURI(attachmentUrl); } - return encodeURI(`${ attachmentUrl }?rc_uid=${ userId }&rc_token=${ token }`); + return encodeURI(`${attachmentUrl}?rc_uid=${userId}&rc_token=${token}`); } - return encodeURI(`${ server }${ attachmentUrl }?rc_uid=${ userId }&rc_token=${ token }`); + return encodeURI(`${server}${attachmentUrl}?rc_uid=${userId}&rc_token=${token}`); }; export const methods = { @@ -19,6 +17,7 @@ export const methods = { greaterThanOrEqualTo: gte }; -export const compareServerVersion = (currentServerVersion, versionToCompare, func) => currentServerVersion && func(coerce(currentServerVersion), versionToCompare); +export const compareServerVersion = (currentServerVersion, versionToCompare, func) => + currentServerVersion && func(coerce(currentServerVersion), versionToCompare); -export const generateLoadMoreId = id => `load-more-${ id }`; +export const generateLoadMoreId = id => `load-more-${id}`; diff --git a/app/notifications/push/index.js b/app/notifications/push/index.js index 8e6db991ac..074e22bf38 100644 --- a/app/notifications/push/index.js +++ b/app/notifications/push/index.js @@ -5,17 +5,18 @@ import { deepLinkingOpen } from '../../actions/deepLinking'; import { isFDroidBuild } from '../../constants/environment'; import PushNotification from './push'; -export const onNotification = (notification) => { +export const onNotification = notification => { if (notification) { const data = notification.getData(); if (data) { try { - const { - rid, name, sender, type, host, messageType, messageId - } = EJSON.parse(data.ejson); + const { rid, name, sender, type, host, messageType, messageId } = EJSON.parse(data.ejson); const types = { - c: 'channel', d: 'direct', p: 'group', l: 'channels' + c: 'channel', + d: 'direct', + p: 'group', + l: 'channels' }; let roomName = type === 'd' ? sender.username : name; if (type === 'l') { @@ -26,7 +27,7 @@ export const onNotification = (notification) => { host, rid, messageId, - path: `${ types[type] }/${ roomName }`, + path: `${types[type]}/${roomName}`, isCall: messageType === 'jitsi_call_started' }; store.dispatch(deepLinkingOpen(params)); diff --git a/app/notifications/push/push.android.js b/app/notifications/push/push.android.js index d831845940..51e767ad37 100644 --- a/app/notifications/push/push.android.js +++ b/app/notifications/push/push.android.js @@ -6,11 +6,11 @@ class PushNotification { this.onNotification = null; this.deviceToken = null; - NotificationsAndroid.setRegistrationTokenUpdateListener((deviceToken) => { + NotificationsAndroid.setRegistrationTokenUpdateListener(deviceToken => { this.deviceToken = deviceToken; }); - NotificationsAndroid.setNotificationOpenedListener((notification) => { + NotificationsAndroid.setNotificationOpenedListener(notification => { this.onNotification(notification); }); } @@ -19,7 +19,7 @@ class PushNotification { return this.deviceToken; } - setBadgeCount = () => {} + setBadgeCount = () => {}; configure(params) { this.onRegister = params.onRegister; diff --git a/app/notifications/push/push.ios.js b/app/notifications/push/push.ios.js index 5207e843da..068be4ee90 100644 --- a/app/notifications/push/push.ios.js +++ b/app/notifications/push/push.ios.js @@ -19,7 +19,7 @@ class PushNotification { this.onNotification = null; this.deviceToken = null; - NotificationsIOS.addEventListener('remoteNotificationsRegistered', (deviceToken) => { + NotificationsIOS.addEventListener('remoteNotificationsRegistered', deviceToken => { this.deviceToken = deviceToken; }); @@ -32,10 +32,12 @@ class PushNotification { }); const actions = []; - actions.push(new NotificationCategory({ - identifier: 'MESSAGE', - actions: [replyAction] - })); + actions.push( + new NotificationCategory({ + identifier: 'MESSAGE', + actions: [replyAction] + }) + ); NotificationsIOS.requestPermissions(actions); } @@ -45,7 +47,7 @@ class PushNotification { setBadgeCount = (count = 0) => { NotificationsIOS.setBadgesCount(count); - } + }; async configure(params) { this.onRegister = params.onRegister; diff --git a/app/presentation/DirectoryItem/index.tsx b/app/presentation/DirectoryItem/index.tsx index 6e07bc4548..d818b3edbf 100644 --- a/app/presentation/DirectoryItem/index.tsx +++ b/app/presentation/DirectoryItem/index.tsx @@ -36,28 +36,33 @@ const DirectoryItemLabel = React.memo(({ text, theme }: IDirectoryItemLabel) => }); const DirectoryItem = ({ - title, description, avatar, onPress, testID, style, rightLabel, type, rid, theme, teamMain, + title, + description, + avatar, + onPress, + testID, + style, + rightLabel, + type, + rid, + theme, + teamMain }: IDirectoryItem) => ( - <Touch - onPress={onPress} - style={{ backgroundColor: themes[theme].backgroundColor }} - testID={testID} - theme={theme} - > + <Touch onPress={onPress} style={{ backgroundColor: themes[theme].backgroundColor }} testID={testID} theme={theme}> <View style={[styles.directoryItemContainer, styles.directoryItemButton, style]}> - <Avatar - text={avatar} - size={30} - type={type} - rid={rid} - style={styles.directoryItemAvatar} - /> + <Avatar text={avatar} size={30} type={type} rid={rid} style={styles.directoryItemAvatar} /> <View style={styles.directoryItemTextContainer}> <View style={styles.directoryItemTextTitle}> <RoomTypeIcon type={type} teamMain={teamMain} theme={theme} /> - <Text style={[styles.directoryItemName, { color: themes[theme].titleText }]} numberOfLines={1}>{title}</Text> + <Text style={[styles.directoryItemName, { color: themes[theme].titleText }]} numberOfLines={1}> + {title} + </Text> </View> - { description ? <Text style={[styles.directoryItemUsername, { color: themes[theme].auxiliaryText }]} numberOfLines={1}>{description}</Text> : null } + {description ? ( + <Text style={[styles.directoryItemUsername, { color: themes[theme].auxiliaryText }]} numberOfLines={1}> + {description} + </Text> + ) : null} </View> <DirectoryItemLabel text={rightLabel} theme={theme} /> </View> diff --git a/app/presentation/DirectoryItem/styles.ts b/app/presentation/DirectoryItem/styles.ts index d0dbc8e9b8..55fa36c47c 100644 --- a/app/presentation/DirectoryItem/styles.ts +++ b/app/presentation/DirectoryItem/styles.ts @@ -6,39 +6,39 @@ export const ROW_HEIGHT = 54; export default StyleSheet.create({ directoryItemButton: { - height: ROW_HEIGHT, + height: ROW_HEIGHT }, directoryItemContainer: { flex: 1, flexDirection: 'row', alignItems: 'center', justifyContent: 'center', - paddingHorizontal: 15, + paddingHorizontal: 15 }, directoryItemAvatar: { - marginRight: 12, + marginRight: 12 }, directoryItemTextTitle: { flexDirection: 'row', - alignItems: 'center', + alignItems: 'center' }, directoryItemTextContainer: { flex: 1, flexDirection: 'column', - justifyContent: 'center', + justifyContent: 'center' }, directoryItemName: { flex: 1, fontSize: 17, - ...sharedStyles.textMedium, + ...sharedStyles.textMedium }, directoryItemUsername: { fontSize: 14, - ...sharedStyles.textRegular, + ...sharedStyles.textRegular }, directoryItemLabel: { fontSize: 14, paddingLeft: 10, - ...sharedStyles.textRegular, - }, + ...sharedStyles.textRegular + } }); diff --git a/app/presentation/ImageViewer/ImageViewer.android.tsx b/app/presentation/ImageViewer/ImageViewer.android.tsx index 431d8679e7..4c8cf59592 100644 --- a/app/presentation/ImageViewer/ImageViewer.android.tsx +++ b/app/presentation/ImageViewer/ImageViewer.android.tsx @@ -8,11 +8,11 @@ import { themes } from '../../constants/colors'; const styles = StyleSheet.create({ flex: { - flex: 1, + flex: 1 }, image: { - backgroundColor: 'transparent', - }, + backgroundColor: 'transparent' + } }); const { @@ -37,7 +37,7 @@ const { clockRunning, Value, Clock, - event, + event } = Animated; function scaleDiff(value: any) { @@ -49,11 +49,7 @@ function scaleDiff(value: any) { function dragDiff(value: any, updating: any) { const tmp = new Value(0); const prev = new Value(0); - return cond( - updating, - [set(tmp, sub(value, prev)), set(prev, value), tmp], - set(prev, 0), - ); + return cond(updating, [set(tmp, sub(value, prev)), set(prev, value), tmp], set(prev, 0)); } // returns linear friction coeff. When `value` is 0 coeff is 1 (no friction), then @@ -62,10 +58,7 @@ function dragDiff(value: any, updating: any) { function friction(value: any) { const MAX_FRICTION = 5; const MAX_VALUE = 100; - return max( - 1, - min(MAX_FRICTION, add(1, multiply(value, (MAX_FRICTION - 1) / MAX_VALUE))), - ); + return max(1, min(MAX_FRICTION, add(1, multiply(value, (MAX_FRICTION - 1) / MAX_VALUE)))); } function speed(value: any) { @@ -78,11 +71,7 @@ const MIN_SCALE = 1; const MAX_SCALE = 2; function scaleRest(value: any) { - return cond( - lessThan(value, MIN_SCALE), - MIN_SCALE, - cond(lessThan(MAX_SCALE, value), MAX_SCALE, value), - ); + return cond(lessThan(value, MIN_SCALE), MIN_SCALE, cond(lessThan(MAX_SCALE, value), MAX_SCALE, value)); } function scaleFriction(value: any, rest: any, delta: any) { @@ -90,15 +79,8 @@ function scaleFriction(value: any, rest: any, delta: any) { const MAX_VALUE = 0.5; const res = multiply(value, delta); const howFar = abs(sub(rest, value)); - const f = max( - 1, - min(MAX_FRICTION, add(1, multiply(howFar, (MAX_FRICTION - 1) / MAX_VALUE))), - ); - return cond( - lessThan(0, howFar), - multiply(value, add(1, divide(add(delta, -1), f))), - res, - ); + const f = max(1, min(MAX_FRICTION, add(1, multiply(howFar, (MAX_FRICTION - 1) / MAX_VALUE)))); + return cond(lessThan(0, howFar), multiply(value, add(1, divide(add(delta, -1), f))), res); } function runTiming(clock: any, value: any, dest: any, startStopClock: any = true) { @@ -106,13 +88,13 @@ function runTiming(clock: any, value: any, dest: any, startStopClock: any = true finished: new Value(0), position: new Value(0), frameTime: new Value(0), - time: new Value(0), + time: new Value(0) }; const config = { toValue: new Value(0), duration: 300, - easing: Easing.inOut(Easing.cubic), + easing: Easing.inOut(Easing.cubic) }; return [ @@ -122,11 +104,11 @@ function runTiming(clock: any, value: any, dest: any, startStopClock: any = true set(state.time, 0), set(state.position, value), set(config.toValue, dest), - startStopClock && startClock(clock), + startStopClock && startClock(clock) ]), timing(clock, state, config), cond(state.finished, startStopClock && stopClock(clock)), - state.position, + state.position ]; } @@ -135,7 +117,7 @@ function runDecay(clock: any, value: any, velocity: any) { finished: new Value(0), velocity: new Value(0), position: new Value(0), - time: new Value(0), + time: new Value(0) }; const config = { deceleration: 0.99 }; @@ -146,12 +128,12 @@ function runDecay(clock: any, value: any, velocity: any) { set(state.velocity, velocity), set(state.position, value), set(state.time, 0), - startClock(clock), + startClock(clock) ]), set(state.position, value), decay(clock, state, config), cond(state.finished, stopClock(clock)), - state.position, + state.position ]; } @@ -162,22 +144,14 @@ function bouncyPinch( focalX: any, displacementX: any, focalY: any, - displacementY: any, + displacementY: any ) { const clock = new Clock(); const delta = scaleDiff(gesture); const rest = scaleRest(value); - const focalXRest = cond( - lessThan(value, 1), - 0, - sub(displacementX, multiply(focalX, add(-1, divide(rest, value)))), - ); - const focalYRest = cond( - lessThan(value, 1), - 0, - sub(displacementY, multiply(focalY, add(-1, divide(rest, value)))), - ); + const focalXRest = cond(lessThan(value, 1), 0, sub(displacementX, multiply(focalX, add(-1, divide(rest, value))))); + const focalYRest = cond(lessThan(value, 1), 0, sub(displacementY, multiply(focalY, add(-1, divide(rest, value))))); const nextScale = new Value(1); return cond( @@ -185,71 +159,43 @@ function bouncyPinch( [ stopClock(clock), set(nextScale, scaleFriction(value, rest, delta)), - set( - displacementX, - sub(displacementX, multiply(focalX, add(-1, divide(nextScale, value)))), - ), - set( - displacementY, - sub(displacementY, multiply(focalY, add(-1, divide(nextScale, value)))), - ), - nextScale, + set(displacementX, sub(displacementX, multiply(focalX, add(-1, divide(nextScale, value))))), + set(displacementY, sub(displacementY, multiply(focalY, add(-1, divide(nextScale, value))))), + nextScale ], cond( or(clockRunning(clock), not(eq(rest, value))), [ set(displacementX, runTiming(clock, displacementX, focalXRest, false)), set(displacementY, runTiming(clock, displacementY, focalYRest, false)), - runTiming(clock, value, rest), + runTiming(clock, value, rest) ], - value, - ), + value + ) ); } -function bouncy( - value: any, - gestureDiv: any, - gestureActive: any, - lowerBound: any, - upperBound: any, - f: any, -) { +function bouncy(value: any, gestureDiv: any, gestureActive: any, lowerBound: any, upperBound: any, f: any) { const timingClock = new Clock(); const decayClock = new Clock(); const velocity = speed(value); // did value go beyond the limits (lower, upper) - const isOutOfBounds = or( - lessThan(value, lowerBound), - lessThan(upperBound, value), - ); + const isOutOfBounds = or(lessThan(value, lowerBound), lessThan(upperBound, value)); // position to snap to (upper or lower is beyond or the current value elsewhere) - const rest = cond( - lessThan(value, lowerBound), - lowerBound, - cond(lessThan(upperBound, value), upperBound, value), - ); + const rest = cond(lessThan(value, lowerBound), lowerBound, cond(lessThan(upperBound, value), upperBound, value)); // how much the value exceeds the bounds, this is used to calculate friction const outOfBounds = abs(sub(rest, value)); return cond( [gestureDiv, velocity, gestureActive], - [ - stopClock(timingClock), - stopClock(decayClock), - add(value, divide(gestureDiv, f(outOfBounds))), - ], + [stopClock(timingClock), stopClock(decayClock), add(value, divide(gestureDiv, f(outOfBounds)))], cond( or(clockRunning(timingClock), isOutOfBounds), [stopClock(decayClock), runTiming(timingClock, value, rest)], - cond( - or(clockRunning(decayClock), lessThan(5, abs(velocity))), - runDecay(decayClock, value, velocity), - value, - ), - ), + cond(or(clockRunning(decayClock), lessThan(5, abs(velocity))), runDecay(decayClock, value, velocity), value) + ) ); } @@ -257,7 +203,7 @@ const WIDTH = 300; const HEIGHT = 300; interface IImageProps { - imageComponentType: string + imageComponentType: string; } class Image extends React.PureComponent<IImageProps, any> { @@ -316,24 +262,18 @@ export class ImageViewer extends React.Component<IImageViewerProps, any> { state: pinchState, scale: pinchScale, focalX: pinchFocalX, - focalY: pinchFocalY, - }, - }, + focalY: pinchFocalY + } + } ]); // SCALE const scale = new Value(1); const pinchActive = eq(pinchState, State.ACTIVE); this._focalDisplacementX = new Value(0); - const relativeFocalX = sub( - pinchFocalX, - add(panTransX, this._focalDisplacementX), - ); + const relativeFocalX = sub(pinchFocalX, add(panTransX, this._focalDisplacementX)); this._focalDisplacementY = new Value(0); - const relativeFocalY = sub( - pinchFocalY, - add(panTransY, this._focalDisplacementY), - ); + const relativeFocalY = sub(pinchFocalY, add(panTransY, this._focalDisplacementY)); this._scale = set( scale, bouncyPinch( @@ -343,8 +283,8 @@ export class ImageViewer extends React.Component<IImageViewerProps, any> { relativeFocalX, this._focalDisplacementX, relativeFocalY, - this._focalDisplacementY, - ), + this._focalDisplacementY + ) ); // PAN @@ -356,53 +296,28 @@ export class ImageViewer extends React.Component<IImageViewerProps, any> { nativeEvent: { translationX: dragX, translationY: dragY, - state: panState, - }, - }, + state: panState + } + } ]); const panActive = eq(panState, State.ACTIVE); const panFriction = (value: any) => friction(value); // X - const panUpX = cond( - lessThan(this._scale, 1), - 0, - multiply(-1, this._focalDisplacementX), - ); + const panUpX = cond(lessThan(this._scale, 1), 0, multiply(-1, this._focalDisplacementX)); const panLowX = add(panUpX, multiply(-WIDTH, add(max(1, this._scale), -1))); this._panTransX = set( panTransX, - bouncy( - panTransX, - dragDiff(dragX, panActive), - or(panActive, pinchActive), - panLowX, - panUpX, - panFriction, - ), + bouncy(panTransX, dragDiff(dragX, panActive), or(panActive, pinchActive), panLowX, panUpX, panFriction) ); // Y - const panUpY = cond( - lessThan(this._scale, 1), - 0, - multiply(-1, this._focalDisplacementY), - ); - const panLowY = add( - panUpY, - multiply(-HEIGHT, add(max(1, this._scale), -1)), - ); + const panUpY = cond(lessThan(this._scale, 1), 0, multiply(-1, this._focalDisplacementY)); + const panLowY = add(panUpY, multiply(-HEIGHT, add(max(1, this._scale), -1))); this._panTransY = set( panTransY, - bouncy( - panTransY, - dragDiff(dragY, panActive), - or(panActive, pinchActive), - panLowY, - panUpY, - panFriction, - ), + bouncy(panTransY, dragDiff(dragY, panActive), or(panActive, pinchActive), panLowY, panUpY, panFriction) ); } @@ -411,9 +326,7 @@ export class ImageViewer extends React.Component<IImageViewerProps, any> { panRef = React.createRef(); render() { - const { - uri, width, height, imageComponentType, theme, ...props - } = this.props; + const { uri, width, height, imageComponentType, theme, ...props } = this.props; // The below two animated values makes it so that scale appears to be done // from the top left corner of the image view instead of its center. This @@ -428,8 +341,7 @@ export class ImageViewer extends React.Component<IImageViewerProps, any> { ref={this.pinchRef} simultaneousHandlers={this.panRef} onGestureEvent={this._onPinchEvent} - onHandlerStateChange={this._onPinchEvent} - > + onHandlerStateChange={this._onPinchEvent}> <Animated.View> <PanGestureHandler ref={this.panRef} @@ -437,14 +349,13 @@ export class ImageViewer extends React.Component<IImageViewerProps, any> { avgTouches simultaneousHandlers={this.pinchRef} onGestureEvent={this._onPanEvent} - onHandlerStateChange={this._onPanEvent} - > + onHandlerStateChange={this._onPanEvent}> <AnimatedImage style={[ styles.image, { width, - height: '100%', + height: '100%' }, { transform: [ @@ -454,9 +365,9 @@ export class ImageViewer extends React.Component<IImageViewerProps, any> { { translateY: this._focalDisplacementY }, { translateX: scaleTopLeftFixX }, { translateY: scaleTopLeftFixY }, - { scale: this._scale }, - ], - }, + { scale: this._scale } + ] + } ]} imageComponentType={imageComponentType} resizeMode='contain' diff --git a/app/presentation/ImageViewer/ImageViewer.ios.tsx b/app/presentation/ImageViewer/ImageViewer.ios.tsx index f3eafeea9d..a666ee38a9 100644 --- a/app/presentation/ImageViewer/ImageViewer.ios.tsx +++ b/app/presentation/ImageViewer/ImageViewer.ios.tsx @@ -7,11 +7,11 @@ import { themes } from '../../constants/colors'; const styles = StyleSheet.create({ scrollContent: { width: '100%', - height: '100%', + height: '100%' }, image: { - flex: 1, - }, + flex: 1 + } }); interface IImageViewer { @@ -22,30 +22,18 @@ interface IImageViewer { theme: string; } -export const ImageViewer = ({ - uri, imageComponentType, theme, width, height, ...props -}: IImageViewer) => { +export const ImageViewer = ({ uri, imageComponentType, theme, width, height, ...props }: IImageViewer) => { const backgroundColor = themes[theme].previewBackground; const Component = ImageComponent(imageComponentType); return ( // @ts-ignore <ScrollView style={{ backgroundColor }} - contentContainerStyle={[ - styles.scrollContent, - width && { width }, - height && { height }, - ]} + contentContainerStyle={[styles.scrollContent, width && { width }, height && { height }]} showsHorizontalScrollIndicator={false} showsVerticalScrollIndicator={false} - maximumZoomScale={2} - > - <Component - style={styles.image} - resizeMode='contain' - source={{ uri }} - {...props} - /> + maximumZoomScale={2}> + <Component style={styles.image} resizeMode='contain' source={{ uri }} {...props} /> </ScrollView> ); }; diff --git a/app/presentation/ImageViewer/types.ts b/app/presentation/ImageViewer/types.ts index 6af8284b90..56c4a7d27d 100644 --- a/app/presentation/ImageViewer/types.ts +++ b/app/presentation/ImageViewer/types.ts @@ -1,4 +1,4 @@ export const types = { FAST_IMAGE: 'FAST_IMAGE', - REACT_NATIVE_IMAGE: 'REACT_NATIVE', + REACT_NATIVE_IMAGE: 'REACT_NATIVE' }; diff --git a/app/presentation/KeyboardView.tsx b/app/presentation/KeyboardView.tsx index 0214ab662a..e5a4d39103 100644 --- a/app/presentation/KeyboardView.tsx +++ b/app/presentation/KeyboardView.tsx @@ -4,18 +4,16 @@ import { KeyboardAwareScrollView } from '@codler/react-native-keyboard-aware-scr import scrollPersistTaps from '../utils/scrollPersistTaps'; interface IKeyboardViewProps { - style: any, - contentContainerStyle: any, - keyboardVerticalOffset: number, - scrollEnabled: boolean, + style: any; + contentContainerStyle: any; + keyboardVerticalOffset: number; + scrollEnabled: boolean; children: JSX.Element; } export default class KeyboardView extends React.PureComponent<IKeyboardViewProps, any> { render() { - const { - style, contentContainerStyle, scrollEnabled, keyboardVerticalOffset, children, - } = this.props; + const { style, contentContainerStyle, scrollEnabled, keyboardVerticalOffset, children } = this.props; return ( <KeyboardAwareScrollView @@ -26,8 +24,7 @@ export default class KeyboardView extends React.PureComponent<IKeyboardViewProps alwaysBounceVertical={false} extraHeight={keyboardVerticalOffset} // @ts-ignore - behavior='position' - > + behavior='position'> {children} </KeyboardAwareScrollView> ); diff --git a/app/presentation/RoomItem/Actions.tsx b/app/presentation/RoomItem/Actions.tsx index 9569d1ab1a..92fbf98b51 100644 --- a/app/presentation/RoomItem/Actions.tsx +++ b/app/presentation/RoomItem/Actions.tsx @@ -26,21 +26,16 @@ interface IRightActions { const reverse = new Animated.Value(isRTL() ? -1 : 1); -export const LeftActions = React.memo(({ - theme, transX, isRead, width, onToggleReadPress, -}: ILeftActions) => { +export const LeftActions = React.memo(({ theme, transX, isRead, width, onToggleReadPress }: ILeftActions) => { const translateX = Animated.multiply( transX.interpolate({ inputRange: [0, ACTION_WIDTH], - outputRange: [-ACTION_WIDTH, 0], + outputRange: [-ACTION_WIDTH, 0] }), - reverse, + reverse ); return ( - <View - style={[styles.actionsContainer, styles.actionLeftContainer]} - pointerEvents='box-none' - > + <View style={[styles.actionsContainer, styles.actionLeftContainer]} pointerEvents='box-none'> <Animated.View style={[ styles.actionLeftButtonContainer, @@ -48,10 +43,9 @@ export const LeftActions = React.memo(({ right: width - ACTION_WIDTH, width, transform: [{ translateX }], - backgroundColor: themes[theme].tintColor, - }, - ]} - > + backgroundColor: themes[theme].tintColor + } + ]}> <View style={styles.actionLeftButtonContainer}> <RectButton style={styles.actionButton} onPress={onToggleReadPress}> <> @@ -65,22 +59,20 @@ export const LeftActions = React.memo(({ ); }); -export const RightActions = React.memo(({ - transX, favorite, width, toggleFav, onHidePress, theme, -}: IRightActions) => { +export const RightActions = React.memo(({ transX, favorite, width, toggleFav, onHidePress, theme }: IRightActions) => { const translateXFav = Animated.multiply( transX.interpolate({ inputRange: [-width / 2, -ACTION_WIDTH * 2, 0], - outputRange: [width / 2, width - ACTION_WIDTH * 2, width], + outputRange: [width / 2, width - ACTION_WIDTH * 2, width] }), - reverse, + reverse ); const translateXHide = Animated.multiply( transX.interpolate({ inputRange: [-width, -LONG_SWIPE, -ACTION_WIDTH * 2, 0], - outputRange: [0, width - LONG_SWIPE, width - ACTION_WIDTH, width], + outputRange: [0, width - LONG_SWIPE, width - ACTION_WIDTH, width] }), - reverse, + reverse ); return ( <View @@ -89,24 +81,24 @@ export const RightActions = React.memo(({ left: 0, right: 0, height: 75, - flexDirection: 'row', + flexDirection: 'row' }} - pointerEvents='box-none' - > + pointerEvents='box-none'> <Animated.View style={[ styles.actionRightButtonContainer, { width, transform: [{ translateX: translateXFav }], - backgroundColor: themes[theme].hideBackground, - }, - ]} - > + backgroundColor: themes[theme].hideBackground + } + ]}> <RectButton style={[styles.actionButton, { backgroundColor: themes[theme].favoriteBackground }]} onPress={toggleFav}> <> <CustomIcon size={20} name={favorite ? 'star-filled' : 'star'} color={themes[theme].buttonText} /> - <Text style={[styles.actionText, { color: themes[theme].buttonText }]}>{I18n.t(favorite ? 'Unfavorite' : 'Favorite')}</Text> + <Text style={[styles.actionText, { color: themes[theme].buttonText }]}> + {I18n.t(favorite ? 'Unfavorite' : 'Favorite')} + </Text> </> </RectButton> </Animated.View> @@ -115,10 +107,9 @@ export const RightActions = React.memo(({ styles.actionRightButtonContainer, { width, - transform: [{ translateX: translateXHide }], - }, - ]} - > + transform: [{ translateX: translateXHide }] + } + ]}> <RectButton style={[styles.actionButton, { backgroundColor: themes[theme].hideBackground }]} onPress={onHidePress}> <> <CustomIcon size={20} name='unread-on-top-disabled' color={themes[theme].buttonText} /> diff --git a/app/presentation/RoomItem/LastMessage.tsx b/app/presentation/RoomItem/LastMessage.tsx index 186d72ca49..a6ae195137 100644 --- a/app/presentation/RoomItem/LastMessage.tsx +++ b/app/presentation/RoomItem/LastMessage.tsx @@ -16,7 +16,6 @@ interface ILastMessage { attachments: any; msg: string; e2e: string; - }; type: string; showLastMessage: boolean; @@ -25,9 +24,7 @@ interface ILastMessage { alert: boolean; } -const formatMsg = ({ - lastMessage, type, showLastMessage, username, useRealName, -}: Partial<ILastMessage>) => { +const formatMsg = ({ lastMessage, type, showLastMessage, username, useRealName }: Partial<ILastMessage>) => { if (!showLastMessage) { return ''; } @@ -54,31 +51,38 @@ const formatMsg = ({ if (isLastMessageSentByMe) { prefix = I18n.t('You_colon'); - } else if (type !== 'd') { - const { u: { name } } = lastMessage; - prefix = `${ useRealName ? name : lastMessage.u.username }: `; + } else if (type !== 'd') { + const { + u: { name } + } = lastMessage; + prefix = `${useRealName ? name : lastMessage.u.username}: `; } - return `${ prefix }${ lastMessage.msg }`; + return `${prefix}${lastMessage.msg}`; }; const arePropsEqual = (oldProps: any, newProps: any) => dequal(oldProps, newProps); -const LastMessage = React.memo(({ - lastMessage, type, showLastMessage, username, alert, useRealName, theme, -}: ILastMessage) => ( - // @ts-ignore - <Markdown - msg={formatMsg({ - lastMessage, type, showLastMessage, username, useRealName, - })} - style={[styles.markdownText, { color: alert ? themes[theme].bodyText : themes[theme].auxiliaryText }]} - customEmojis={false} - useRealName={useRealName} - numberOfLines={2} - preview - theme={theme} - /> -), arePropsEqual); +const LastMessage = React.memo( + ({ lastMessage, type, showLastMessage, username, alert, useRealName, theme }: ILastMessage) => ( + // @ts-ignore + <Markdown + msg={formatMsg({ + lastMessage, + type, + showLastMessage, + username, + useRealName + })} + style={[styles.markdownText, { color: alert ? themes[theme].bodyText : themes[theme].auxiliaryText }]} + customEmojis={false} + useRealName={useRealName} + numberOfLines={2} + preview + theme={theme} + /> + ), + arePropsEqual +); export default LastMessage; diff --git a/app/presentation/RoomItem/RoomItem.tsx b/app/presentation/RoomItem/RoomItem.tsx index 95a00af37a..36f8921fd1 100644 --- a/app/presentation/RoomItem/RoomItem.tsx +++ b/app/presentation/RoomItem/RoomItem.tsx @@ -95,7 +95,7 @@ const RoomItem = ({ toggleRead, hideChannel, teamMain, - autoJoin, + autoJoin }: IRoomItem) => ( <Touchable onPress={onPress} @@ -111,84 +111,26 @@ const RoomItem = ({ type={type} theme={theme} isFocused={isFocused} - swipeEnabled={swipeEnabled} - > - <Wrapper - accessibilityLabel={accessibilityLabel} - avatar={avatar} - avatarSize={avatarSize} - type={type} - theme={theme} - rid={rid} - > - {showLastMessage - ? ( - <> - <View style={styles.titleContainer}> - <TypeIcon - type={type} - prid={prid} - status={status} - isGroupChat={isGroupChat} - theme={theme} - teamMain={teamMain} - /> - <Title - name={name} - theme={theme} - hideUnreadStatus={hideUnreadStatus} - alert={alert} - /> - { - autoJoin ? <Tag testID='auto-join-tag' name={I18n.t('Auto-join')} /> : null - } - <UpdatedAt - date={date} - theme={theme} - hideUnreadStatus={hideUnreadStatus} - alert={alert} - /> - </View> - <View style={styles.row}> - <LastMessage - lastMessage={lastMessage} - type={type} - showLastMessage={showLastMessage} - username={username} - alert={alert && !hideUnreadStatus} - useRealName={useRealName} - theme={theme} - /> - <UnreadBadge - unread={unread} - userMentions={userMentions} - groupMentions={groupMentions} - tunread={tunread} - tunreadUser={tunreadUser} - tunreadGroup={tunreadGroup} - /> - </View> - </> - ) - : ( - <View style={[styles.titleContainer, styles.flex]}> - <TypeIcon + swipeEnabled={swipeEnabled}> + <Wrapper accessibilityLabel={accessibilityLabel} avatar={avatar} avatarSize={avatarSize} type={type} theme={theme} rid={rid}> + {showLastMessage ? ( + <> + <View style={styles.titleContainer}> + <TypeIcon type={type} prid={prid} status={status} isGroupChat={isGroupChat} theme={theme} teamMain={teamMain} /> + <Title name={name} theme={theme} hideUnreadStatus={hideUnreadStatus} alert={alert} /> + {autoJoin ? <Tag testID='auto-join-tag' name={I18n.t('Auto-join')} /> : null} + <UpdatedAt date={date} theme={theme} hideUnreadStatus={hideUnreadStatus} alert={alert} /> + </View> + <View style={styles.row}> + <LastMessage + lastMessage={lastMessage} type={type} - prid={prid} - status={status} - isGroupChat={isGroupChat} - theme={theme} - teamMain={teamMain} - /> - <Title - name={name} + showLastMessage={showLastMessage} + username={username} + alert={alert && !hideUnreadStatus} + useRealName={useRealName} theme={theme} - hideUnreadStatus={hideUnreadStatus} - alert={alert} /> - { - autoJoin ? <Tag name={I18n.t('Auto-join')} /> : null - } <UnreadBadge unread={unread} userMentions={userMentions} @@ -198,8 +140,22 @@ const RoomItem = ({ tunreadGroup={tunreadGroup} /> </View> - ) - } + </> + ) : ( + <View style={[styles.titleContainer, styles.flex]}> + <TypeIcon type={type} prid={prid} status={status} isGroupChat={isGroupChat} theme={theme} teamMain={teamMain} /> + <Title name={name} theme={theme} hideUnreadStatus={hideUnreadStatus} alert={alert} /> + {autoJoin ? <Tag name={I18n.t('Auto-join')} /> : null} + <UnreadBadge + unread={unread} + userMentions={userMentions} + groupMentions={groupMentions} + tunread={tunread} + tunreadUser={tunreadUser} + tunreadGroup={tunreadGroup} + /> + </View> + )} </Wrapper> </Touchable> ); diff --git a/app/presentation/RoomItem/Tag.tsx b/app/presentation/RoomItem/Tag.tsx index a9201f186f..084e03e884 100644 --- a/app/presentation/RoomItem/Tag.tsx +++ b/app/presentation/RoomItem/Tag.tsx @@ -15,13 +15,7 @@ const Tag = React.memo(({ name, testID }: ITag) => { return ( <View style={[styles.tagContainer, { backgroundColor: themes[theme].borderColor }]}> - <Text - style={[ - styles.tagText, { color: themes[theme].infoText }, - ]} - numberOfLines={1} - testID={testID} - > + <Text style={[styles.tagText, { color: themes[theme].infoText }]} numberOfLines={1} testID={testID}> {name} </Text> </View> diff --git a/app/presentation/RoomItem/Title.tsx b/app/presentation/RoomItem/Title.tsx index bc3f265200..93f74bf219 100644 --- a/app/presentation/RoomItem/Title.tsx +++ b/app/presentation/RoomItem/Title.tsx @@ -13,14 +13,9 @@ interface ITitle { const Title = React.memo(({ name, theme, hideUnreadStatus, alert }: ITitle) => ( <Text - style={[ - styles.title, - alert && !hideUnreadStatus && styles.alert, - { color: themes[theme].titleText }, - ]} + style={[styles.title, alert && !hideUnreadStatus && styles.alert, { color: themes[theme].titleText }]} ellipsizeMode='tail' - numberOfLines={1} - > + numberOfLines={1}> {name} </Text> )); diff --git a/app/presentation/RoomItem/Touchable.tsx b/app/presentation/RoomItem/Touchable.tsx index 246256dd8e..84071bbef0 100644 --- a/app/presentation/RoomItem/Touchable.tsx +++ b/app/presentation/RoomItem/Touchable.tsx @@ -1,15 +1,9 @@ import React from 'react'; import { Animated } from 'react-native'; -import { - LongPressGestureHandler, PanGestureHandler, State, -} from 'react-native-gesture-handler'; +import { LongPressGestureHandler, PanGestureHandler, State } from 'react-native-gesture-handler'; import Touch from '../../utils/touch'; -import { - ACTION_WIDTH, - LONG_SWIPE, - SMALL_SWIPE, -} from './styles'; +import { ACTION_WIDTH, LONG_SWIPE, SMALL_SWIPE } from './styles'; import { isRTL } from '../../i18n'; import { themes } from '../../constants/colors'; import { LeftActions, RightActions } from './Actions'; @@ -52,20 +46,12 @@ class Touchable extends React.Component<ITouchableProps, any> { this.dragX = new Animated.Value(0); this.rowOffSet = new Animated.Value(0); this.reverse = new Animated.Value(isRTL() ? -1 : 1); - this.transX = Animated.add( - this.rowOffSet, - this.dragX, - ); - this.transXReverse = Animated.multiply( - this.transX, - this.reverse, - ); + this.transX = Animated.add(this.rowOffSet, this.dragX); + this.transXReverse = Animated.multiply(this.transX, this.reverse); this.state = { - rowState: 0, // 0: closed, 1: right opened, -1: left opened + rowState: 0 // 0: closed, 1: right opened, -1: left opened }; - this._onGestureEvent = Animated.event( - [{ nativeEvent: { translationX: this.dragX } }], { useNativeDriver: true }, - ); + this._onGestureEvent = Animated.event([{ nativeEvent: { translationX: this.dragX } }], { useNativeDriver: true }); this._value = 0; } @@ -73,14 +59,13 @@ class Touchable extends React.Component<ITouchableProps, any> { if (nativeEvent.oldState === State.ACTIVE) { this._handleRelease(nativeEvent); } - } + }; onLongPressHandlerStateChange = ({ nativeEvent }: any) => { if (nativeEvent.state === State.ACTIVE) { this.onLongPress(); } - } - + }; _handleRelease = (nativeEvent: any) => { const { translationX } = nativeEvent; @@ -88,7 +73,8 @@ class Touchable extends React.Component<ITouchableProps, any> { this._value += translationX; let toValue = 0; - if (rowState === 0) { // if no option is opened + if (rowState === 0) { + // if no option is opened if (translationX > 0 && translationX < LONG_SWIPE) { // open leading option if he swipe right but not enough to trigger action if (isRTL()) { @@ -125,7 +111,8 @@ class Touchable extends React.Component<ITouchableProps, any> { } } - if (rowState === -1) { // if left option is opened + if (rowState === -1) { + // if left option is opened if (this._value < SMALL_SWIPE) { toValue = 0; this.setState({ rowState: 0 }); @@ -144,7 +131,8 @@ class Touchable extends React.Component<ITouchableProps, any> { } } - if (rowState === 1) { // if right option is opened + if (rowState === 1) { + // if right option is opened if (this._value > -2 * SMALL_SWIPE) { toValue = 0; this.setState({ rowState: 0 }); @@ -163,7 +151,7 @@ class Touchable extends React.Component<ITouchableProps, any> { } } this._animateRow(toValue); - } + }; _animateRow = (toValue: any) => { this.rowOffSet.setValue(this._value); @@ -172,14 +160,14 @@ class Touchable extends React.Component<ITouchableProps, any> { Animated.spring(this.rowOffSet, { toValue, bounciness: 0, - useNativeDriver: true, + useNativeDriver: true }).start(); - } + }; close = () => { this.setState({ rowState: 0 }); this._animateRow(0); - } + }; toggleFav = () => { const { toggleFav, rid, favorite } = this.props; @@ -239,9 +227,7 @@ class Touchable extends React.Component<ITouchableProps, any> { }; render() { - const { - testID, isRead, width, favorite, children, theme, isFocused, swipeEnabled, - } = this.props; + const { testID, isRead, width, favorite, children, theme, isFocused, swipeEnabled } = this.props; return ( <LongPressGestureHandler onHandlerStateChange={this.onLongPressHandlerStateChange}> @@ -250,8 +236,7 @@ class Touchable extends React.Component<ITouchableProps, any> { minDeltaX={20} onGestureEvent={this._onGestureEvent} onHandlerStateChange={this._onHandlerStateChange} - enabled={swipeEnabled} - > + enabled={swipeEnabled}> <Animated.View> <LeftActions transX={this.transXReverse} @@ -270,22 +255,19 @@ class Touchable extends React.Component<ITouchableProps, any> { /> <Animated.View style={{ - transform: [{ translateX: this.transX }], - }} - > + transform: [{ translateX: this.transX }] + }}> <Touch onPress={this.onPress} theme={theme} testID={testID} style={{ - backgroundColor: isFocused ? themes[theme].chatComponentBackground : themes[theme].backgroundColor, - }} - > + backgroundColor: isFocused ? themes[theme].chatComponentBackground : themes[theme].backgroundColor + }}> {children} </Touch> </Animated.View> </Animated.View> - </PanGestureHandler> </Animated.View> </LongPressGestureHandler> diff --git a/app/presentation/RoomItem/TypeIcon.tsx b/app/presentation/RoomItem/TypeIcon.tsx index 1e9dff188d..414c16724f 100644 --- a/app/presentation/RoomItem/TypeIcon.tsx +++ b/app/presentation/RoomItem/TypeIcon.tsx @@ -11,8 +11,8 @@ interface ITypeIcon { theme?: string; } -const TypeIcon = React.memo(({ - type, prid, status, isGroupChat, teamMain, -}: ITypeIcon) => <RoomTypeIcon type={prid ? 'discussion' : type} isGroupChat={isGroupChat} status={status} teamMain={teamMain} />); +const TypeIcon = React.memo(({ type, prid, status, isGroupChat, teamMain }: ITypeIcon) => ( + <RoomTypeIcon type={prid ? 'discussion' : type} isGroupChat={isGroupChat} status={status} teamMain={teamMain} /> +)); export default TypeIcon; diff --git a/app/presentation/RoomItem/UpdatedAt.tsx b/app/presentation/RoomItem/UpdatedAt.tsx index 8e08f8bcb4..eed4416aab 100644 --- a/app/presentation/RoomItem/UpdatedAt.tsx +++ b/app/presentation/RoomItem/UpdatedAt.tsx @@ -21,22 +21,18 @@ const UpdatedAt = React.memo(({ date, theme, hideUnreadStatus, alert }: IUpdated style={[ styles.date, { - color: - themes[theme] - .auxiliaryText, + color: themes[theme].auxiliaryText }, - alert && !hideUnreadStatus && [ - styles.updateAlert, - { - color: - themes[theme] - .tintColor, - }, - ], + alert && + !hideUnreadStatus && [ + styles.updateAlert, + { + color: themes[theme].tintColor + } + ] ]} ellipsizeMode='tail' - numberOfLines={1} - > + numberOfLines={1}> {capitalize(date)} </Text> ); diff --git a/app/presentation/RoomItem/Wrapper.tsx b/app/presentation/RoomItem/Wrapper.tsx index 3ce8686315..903a5edca7 100644 --- a/app/presentation/RoomItem/Wrapper.tsx +++ b/app/presentation/RoomItem/Wrapper.tsx @@ -15,34 +15,16 @@ interface IWrapper { children: JSX.Element; } -const Wrapper = ({ - accessibilityLabel, - avatar, - avatarSize, - type, - theme, - rid, - children, -}: IWrapper) => ( - <View - style={styles.container} - accessibilityLabel={accessibilityLabel} - > - <Avatar - text={avatar} - size={avatarSize} - type={type} - style={styles.avatar} - rid={rid} - /> +const Wrapper = ({ accessibilityLabel, avatar, avatarSize, type, theme, rid, children }: IWrapper) => ( + <View style={styles.container} accessibilityLabel={accessibilityLabel}> + <Avatar text={avatar} size={avatarSize} type={type} style={styles.avatar} rid={rid} /> <View style={[ styles.centerContainer, { - borderColor: themes[theme].separatorColor, - }, - ]} - > + borderColor: themes[theme].separatorColor + } + ]}> {children} </View> </View> diff --git a/app/presentation/RoomItem/index.tsx b/app/presentation/RoomItem/index.tsx index 3cad440550..eedc1f4ff5 100644 --- a/app/presentation/RoomItem/index.tsx +++ b/app/presentation/RoomItem/index.tsx @@ -34,16 +34,7 @@ interface IRoomItemContainerProps { autoJoin: boolean; } -const attrs = [ - 'width', - 'status', - 'connected', - 'theme', - 'isFocused', - 'forceUpdate', - 'showLastMessage', - 'autoJoin', -]; +const attrs = ['width', 'status', 'connected', 'theme', 'isFocused', 'forceUpdate', 'showLastMessage', 'autoJoin']; class RoomItemContainer extends React.Component<IRoomItemContainerProps, any> { private mounted: boolean; @@ -58,8 +49,8 @@ class RoomItemContainer extends React.Component<IRoomItemContainerProps, any> { getRoomAvatar: () => '', getIsGroupChat: () => false, getIsRead: () => false, - swipeEnabled: true, - } + swipeEnabled: true + }; constructor(props: IRoomItemContainerProps) { super(props); @@ -77,7 +68,7 @@ class RoomItemContainer extends React.Component<IRoomItemContainerProps, any> { shouldComponentUpdate(nextProps: any) { const { props }: any = this; - return !attrs.every((key) => props[key] === nextProps[key]); + return !attrs.every(key => props[key] === nextProps[key]); } componentDidUpdate(prevProps: any) { @@ -99,7 +90,10 @@ class RoomItemContainer extends React.Component<IRoomItemContainerProps, any> { } get isDirect() { - const { item: { t }, id }: any = this.props; + const { + item: { t }, + id + }: any = this.props; return t === 'd' && id && !this.isGroupChat; } @@ -111,19 +105,19 @@ class RoomItemContainer extends React.Component<IRoomItemContainerProps, any> { this.forceUpdate(); }); } - } + }; onPress = () => { const { item, onPress } = this.props; return onPress(item); - } + }; onLongPress = () => { const { item, onLongPress } = this.props; if (onLongPress) { return onLongPress(item); } - } + }; render() { const { @@ -143,10 +137,10 @@ class RoomItemContainer extends React.Component<IRoomItemContainerProps, any> { username, useRealName, swipeEnabled, - autoJoin, + autoJoin } = this.props; const name = getRoomTitle(item); - const testID = `rooms-list-view-item-${ name }`; + const testID = `rooms-list-view-item-${name}`; const avatar = getRoomAvatar(item); const isRead = getIsRead(item); const date = item.roomUpdatedAt && formatDate(item.roomUpdatedAt); @@ -154,17 +148,17 @@ class RoomItemContainer extends React.Component<IRoomItemContainerProps, any> { let accessibilityLabel = name; if (item.unread === 1) { - accessibilityLabel += `, ${ item.unread } ${ I18n.t('alert') }`; + accessibilityLabel += `, ${item.unread} ${I18n.t('alert')}`; } else if (item.unread > 1) { - accessibilityLabel += `, ${ item.unread } ${ I18n.t('alerts') }`; + accessibilityLabel += `, ${item.unread} ${I18n.t('alerts')}`; } if (item.userMentions > 0) { - accessibilityLabel += `, ${ I18n.t('you_were_mentioned') }`; + accessibilityLabel += `, ${I18n.t('you_were_mentioned')}`; } if (date) { - accessibilityLabel += `, ${ I18n.t('last_message') } ${ date }`; + accessibilityLabel += `, ${I18n.t('last_message')} ${date}`; } return ( @@ -223,7 +217,7 @@ const mapStateToProps = (state: any, ownProps: any) => { } return { connected: state.meteor.connected, - status, + status }; }; diff --git a/app/presentation/RoomItem/styles.ts b/app/presentation/RoomItem/styles.ts index 6e9fe75587..953217a275 100644 --- a/app/presentation/RoomItem/styles.ts +++ b/app/presentation/RoomItem/styles.ts @@ -9,103 +9,103 @@ export const LONG_SWIPE = ACTION_WIDTH * 3; export default StyleSheet.create<any>({ flex: { - flex: 1, + flex: 1 }, container: { flexDirection: 'row', alignItems: 'center', paddingLeft: 14, - height: ROW_HEIGHT, + height: ROW_HEIGHT }, centerContainer: { flex: 1, paddingVertical: 10, paddingRight: 14, - borderBottomWidth: StyleSheet.hairlineWidth, + borderBottomWidth: StyleSheet.hairlineWidth }, title: { flex: 1, fontSize: 17, lineHeight: 20, - ...sharedStyles.textMedium, + ...sharedStyles.textMedium }, alert: { - ...sharedStyles.textSemibold, + ...sharedStyles.textSemibold }, row: { flex: 1, flexDirection: 'row', - alignItems: 'flex-start', + alignItems: 'flex-start' }, titleContainer: { width: '100%', flexDirection: 'row', alignItems: 'center', - justifyContent: 'center', + justifyContent: 'center' }, date: { fontSize: 13, marginLeft: 4, - ...sharedStyles.textRegular, + ...sharedStyles.textRegular }, updateAlert: { - ...sharedStyles.textSemibold, + ...sharedStyles.textSemibold }, status: { - marginRight: 2, + marginRight: 2 }, markdownText: { flex: 1, fontSize: 14, lineHeight: 17, - ...sharedStyles.textRegular, + ...sharedStyles.textRegular }, avatar: { - marginRight: 10, + marginRight: 10 }, upperContainer: { - overflow: 'hidden', + overflow: 'hidden' }, actionsContainer: { position: 'absolute', left: 0, right: 0, - height: ROW_HEIGHT, + height: ROW_HEIGHT }, actionText: { fontSize: 15, justifyContent: 'center', marginTop: 4, - ...sharedStyles.textSemibold, + ...sharedStyles.textSemibold }, actionLeftButtonContainer: { position: 'absolute', height: ROW_HEIGHT, justifyContent: 'center', top: 0, - right: 0, + right: 0 }, actionRightButtonContainer: { position: 'absolute', height: ROW_HEIGHT, justifyContent: 'center', - top: 0, + top: 0 }, actionButton: { width: ACTION_WIDTH, height: '100%', alignItems: 'center', - justifyContent: 'center', + justifyContent: 'center' }, tagContainer: { alignSelf: 'center', alignItems: 'center', borderRadius: 4, - marginHorizontal: 4, + marginHorizontal: 4 }, tagText: { fontSize: 13, paddingHorizontal: 4, - ...sharedStyles.textSemibold, - }, + ...sharedStyles.textSemibold + } }); diff --git a/app/presentation/ServerItem/index.tsx b/app/presentation/ServerItem/index.tsx index 07192994f8..772fac212b 100644 --- a/app/presentation/ServerItem/index.tsx +++ b/app/presentation/ServerItem/index.tsx @@ -25,46 +25,39 @@ interface IServerItem { const defaultLogo = require('../../static/images/logo.png'); -const ServerItem = React.memo(({ - item, onPress, onLongPress, hasCheck, theme, -}: IServerItem) => ( +const ServerItem = React.memo(({ item, onPress, onLongPress, hasCheck, theme }: IServerItem) => ( <Pressable onPress={onPress} onLongPress={() => onLongPress?.()} - testID={`rooms-list-header-server-${ item.id }`} + testID={`rooms-list-header-server-${item.id}`} android_ripple={{ - color: themes[theme].bannerBackground, + color: themes[theme].bannerBackground }} style={({ pressed }: any) => ({ - backgroundColor: isIOS && pressed - ? themes[theme].bannerBackground - : themes[theme].backgroundColor, - })} - > + backgroundColor: isIOS && pressed ? themes[theme].bannerBackground : themes[theme].backgroundColor + })}> <View style={styles.serverItemContainer}> - {item.iconURL - ? ( - <FastImage - source={{ - uri: item.iconURL, - priority: FastImage.priority.high, - }} - // @ts-ignore - defaultSource={defaultLogo} - style={styles.serverIcon} - onError={() => console.log('err_loading_server_icon')} - /> - ) - : ( - <FastImage - source={defaultLogo} - style={styles.serverIcon} - /> - ) - } + {item.iconURL ? ( + <FastImage + source={{ + uri: item.iconURL, + priority: FastImage.priority.high + }} + // @ts-ignore + defaultSource={defaultLogo} + style={styles.serverIcon} + onError={() => console.log('err_loading_server_icon')} + /> + ) : ( + <FastImage source={defaultLogo} style={styles.serverIcon} /> + )} <View style={styles.serverTextContainer}> - <Text numberOfLines={1} style={[styles.serverName, { color: themes[theme].titleText }]}>{item.name || item.id}</Text> - <Text numberOfLines={1} style={[styles.serverUrl, { color: themes[theme].auxiliaryText }]}>{item.id}</Text> + <Text numberOfLines={1} style={[styles.serverName, { color: themes[theme].titleText }]}> + {item.name || item.id} + </Text> + <Text numberOfLines={1} style={[styles.serverUrl, { color: themes[theme].auxiliaryText }]}> + {item.id} + </Text> </View> {hasCheck ? <Check theme={theme} /> : null} </View> diff --git a/app/presentation/ServerItem/styles.ts b/app/presentation/ServerItem/styles.ts index ac13679433..ece4105dff 100644 --- a/app/presentation/ServerItem/styles.ts +++ b/app/presentation/ServerItem/styles.ts @@ -7,27 +7,27 @@ export const ROW_HEIGHT = 56; export default StyleSheet.create({ serverItemContainer: { flexDirection: 'row', - alignItems: 'center', + alignItems: 'center' }, serverIcon: { width: 44, height: 44, margin: 12, borderRadius: 4, - resizeMode: 'contain', + resizeMode: 'contain' }, serverTextContainer: { flex: 1, flexDirection: 'column', justifyContent: 'center', - paddingRight: 18, + paddingRight: 18 }, serverName: { fontSize: 18, - ...sharedStyles.textSemibold, + ...sharedStyles.textSemibold }, serverUrl: { fontSize: 16, - ...sharedStyles.textRegular, - }, + ...sharedStyles.textRegular + } }); diff --git a/app/presentation/TextInput.tsx b/app/presentation/TextInput.tsx index 546c8f1a46..c68584ed4d 100644 --- a/app/presentation/TextInput.tsx +++ b/app/presentation/TextInput.tsx @@ -5,10 +5,8 @@ import { themes } from '../constants/colors'; const styles = StyleSheet.create({ input: { - ...I18nManager.isRTL - ? { textAlign: 'right' } - : { textAlign: 'auto' }, - }, + ...(I18nManager.isRTL ? { textAlign: 'right' } : { textAlign: 'auto' }) + } }); interface IThemedTextInput { diff --git a/app/presentation/UnreadBadge/getUnreadStyle.test.js b/app/presentation/UnreadBadge/getUnreadStyle.test.js index a0704b1380..8ac3ea0477 100644 --- a/app/presentation/UnreadBadge/getUnreadStyle.test.js +++ b/app/presentation/UnreadBadge/getUnreadStyle.test.js @@ -2,7 +2,7 @@ import { themes } from '../../constants/colors'; import { getUnreadStyle } from './getUnreadStyle'; -const testsForTheme = (theme) => { +const testsForTheme = theme => { const getUnreadStyleUtil = ({ ...props }) => getUnreadStyle({ theme, ...props }); test('render empty', () => { @@ -10,65 +10,79 @@ const testsForTheme = (theme) => { }); test('render unread', () => { - expect(getUnreadStyleUtil({ - unread: 1 - })).toEqual({ + expect( + getUnreadStyleUtil({ + unread: 1 + }) + ).toEqual({ backgroundColor: themes[theme].unreadColor, color: themes[theme].buttonText }); }); test('render thread unread', () => { - expect(getUnreadStyleUtil({ - tunread: [1] - })).toEqual({ + expect( + getUnreadStyleUtil({ + tunread: [1] + }) + ).toEqual({ backgroundColor: themes[theme].tunreadColor, color: themes[theme].buttonText }); }); test('render user mention', () => { - expect(getUnreadStyleUtil({ - unread: 1, - userMentions: 1 - })).toEqual({ + expect( + getUnreadStyleUtil({ + unread: 1, + userMentions: 1 + }) + ).toEqual({ backgroundColor: themes[theme].mentionMeColor, color: themes[theme].buttonText }); }); test('render group mention', () => { - expect(getUnreadStyleUtil({ - unread: 1, - groupMentions: 1 - })).toEqual({ + expect( + getUnreadStyleUtil({ + unread: 1, + groupMentions: 1 + }) + ).toEqual({ backgroundColor: themes[theme].mentionGroupColor, color: themes[theme].buttonText }); }); test('mentions priority', () => { - expect(getUnreadStyleUtil({ - unread: 1, - userMentions: 1, - groupMentions: 1, - tunread: [1] - })).toEqual({ + expect( + getUnreadStyleUtil({ + unread: 1, + userMentions: 1, + groupMentions: 1, + tunread: [1] + }) + ).toEqual({ backgroundColor: themes[theme].mentionMeColor, color: themes[theme].buttonText }); - expect(getUnreadStyleUtil({ - unread: 1, - groupMentions: 1, - tunread: [1] - })).toEqual({ + expect( + getUnreadStyleUtil({ + unread: 1, + groupMentions: 1, + tunread: [1] + }) + ).toEqual({ backgroundColor: themes[theme].mentionGroupColor, color: themes[theme].buttonText }); - expect(getUnreadStyleUtil({ - unread: 1, - tunread: [1] - })).toEqual({ + expect( + getUnreadStyleUtil({ + unread: 1, + tunread: [1] + }) + ).toEqual({ backgroundColor: themes[theme].tunreadColor, color: themes[theme].buttonText }); diff --git a/app/presentation/UnreadBadge/getUnreadStyle.ts b/app/presentation/UnreadBadge/getUnreadStyle.ts index dcfb15209a..94e7acca41 100644 --- a/app/presentation/UnreadBadge/getUnreadStyle.ts +++ b/app/presentation/UnreadBadge/getUnreadStyle.ts @@ -1,8 +1,6 @@ import { themes } from '../../constants/colors'; -export const getUnreadStyle = ({ - unread, userMentions, groupMentions, theme, tunread, tunreadUser, tunreadGroup, -}: any) => { +export const getUnreadStyle = ({ unread, userMentions, groupMentions, theme, tunread, tunreadUser, tunreadGroup }: any) => { if ((!unread || unread <= 0) && !tunread?.length) { return {}; } @@ -18,6 +16,7 @@ export const getUnreadStyle = ({ } return { - backgroundColor, color, + backgroundColor, + color }; }; diff --git a/app/presentation/UnreadBadge/index.tsx b/app/presentation/UnreadBadge/index.tsx index 6b47d511e7..609278b92f 100644 --- a/app/presentation/UnreadBadge/index.tsx +++ b/app/presentation/UnreadBadge/index.tsx @@ -13,20 +13,20 @@ const styles = StyleSheet.create({ borderRadius: 10.5, alignItems: 'center', justifyContent: 'center', - marginLeft: 10, + marginLeft: 10 }, unreadNumberContainerSmall: { borderRadius: 10.5, alignItems: 'center', - justifyContent: 'center', + justifyContent: 'center' }, unreadText: { fontSize: 13, - ...sharedStyles.textSemibold, + ...sharedStyles.textSemibold }, textSmall: { - fontSize: 10, - }, + fontSize: 10 + } }); interface IUnreadBadge { @@ -41,52 +41,51 @@ interface IUnreadBadge { small: boolean; } -const UnreadBadge = React.memo(({ - theme, unread, userMentions, groupMentions, style, tunread, tunreadUser, tunreadGroup, small, -}: IUnreadBadge) => { - if ((!unread || unread <= 0) && !tunread?.length) { - return null; - } - const { backgroundColor, color } = getUnreadStyle({ - theme, unread, userMentions, groupMentions, tunread, tunreadUser, tunreadGroup, - }); +const UnreadBadge = React.memo( + ({ theme, unread, userMentions, groupMentions, style, tunread, tunreadUser, tunreadGroup, small }: IUnreadBadge) => { + if ((!unread || unread <= 0) && !tunread?.length) { + return null; + } + const { backgroundColor, color } = getUnreadStyle({ + theme, + unread, + userMentions, + groupMentions, + tunread, + tunreadUser, + tunreadGroup + }); - if (!backgroundColor) { - return null; - } - let text: any = unread || tunread?.length; - if (small && text >= 100) { - text = '+99'; - } - if (!small && text >= 1000) { - text = '+999'; - } - text = text.toString(); + if (!backgroundColor) { + return null; + } + let text: any = unread || tunread?.length; + if (small && text >= 100) { + text = '+99'; + } + if (!small && text >= 1000) { + text = '+999'; + } + text = text.toString(); - let minWidth = 21; - if (small) { - minWidth = 11 + text.length * 5; - } + let minWidth = 21; + if (small) { + minWidth = 11 + text.length * 5; + } - return ( - <View - style={[ - small ? styles.unreadNumberContainerSmall : styles.unreadNumberContainerNormal, - { backgroundColor, minWidth }, - style, - ]} - > - <Text + return ( + <View style={[ - styles.unreadText, - small && styles.textSmall, - { color }, - ]} - numberOfLines={1} - >{text} - </Text> - </View> - ); -}); + small ? styles.unreadNumberContainerSmall : styles.unreadNumberContainerNormal, + { backgroundColor, minWidth }, + style + ]}> + <Text style={[styles.unreadText, small && styles.textSmall, { color }]} numberOfLines={1}> + {text} + </Text> + </View> + ); + } +); export default withTheme(UnreadBadge); diff --git a/app/presentation/UserItem.tsx b/app/presentation/UserItem.tsx index c12b360348..56e6b9fcbc 100644 --- a/app/presentation/UserItem.tsx +++ b/app/presentation/UserItem.tsx @@ -10,33 +10,33 @@ import { isIOS } from '../utils/deviceInfo'; const styles = StyleSheet.create({ button: { - height: 54, + height: 54 }, container: { - flexDirection: 'row', + flexDirection: 'row' }, avatar: { marginHorizontal: 15, - marginVertical: 12, + marginVertical: 12 }, textContainer: { flex: 1, flexDirection: 'column', justifyContent: 'center', - marginRight: 15, + marginRight: 15 }, name: { fontSize: 17, - ...sharedStyles.textMedium, + ...sharedStyles.textMedium }, username: { fontSize: 14, - ...sharedStyles.textRegular, + ...sharedStyles.textRegular }, icon: { marginHorizontal: 15, - alignSelf: 'center', - }, + alignSelf: 'center' + } }); interface IUserItem { @@ -50,27 +50,26 @@ interface IUserItem { theme: string; } -const UserItem = ({ - name, username, onPress, testID, onLongPress, style, icon, theme, -}: IUserItem) => ( +const UserItem = ({ name, username, onPress, testID, onLongPress, style, icon, theme }: IUserItem) => ( <Pressable onPress={onPress} onLongPress={onLongPress} testID={testID} android_ripple={{ - color: themes[theme].bannerBackground, + color: themes[theme].bannerBackground }} style={({ pressed }: any) => ({ - backgroundColor: isIOS && pressed - ? themes[theme].bannerBackground - : 'transparent', - })} - > + backgroundColor: isIOS && pressed ? themes[theme].bannerBackground : 'transparent' + })}> <View style={[styles.container, styles.button, style]}> <Avatar text={username} size={30} style={styles.avatar} /> <View style={styles.textContainer}> - <Text style={[styles.name, { color: themes[theme].titleText }]} numberOfLines={1}>{name}</Text> - <Text style={[styles.username, { color: themes[theme].auxiliaryText }]} numberOfLines={1}>@{username}</Text> + <Text style={[styles.name, { color: themes[theme].titleText }]} numberOfLines={1}> + {name} + </Text> + <Text style={[styles.username, { color: themes[theme].auxiliaryText }]} numberOfLines={1}> + @{username} + </Text> </View> {icon ? <CustomIcon name={icon} size={22} style={[styles.icon, { color: themes[theme].actionTintColor }]} /> : null} </View> diff --git a/app/reducers/createChannel.js b/app/reducers/createChannel.js index 7d94513a4a..60e13f007c 100644 --- a/app/reducers/createChannel.js +++ b/app/reducers/createChannel.js @@ -7,7 +7,7 @@ const initialState = { error: {} }; -export default function(state = initialState, action) { +export default function (state = initialState, action) { switch (action.type) { case CREATE_CHANNEL.REQUEST: return { diff --git a/app/reducers/createDiscussion.js b/app/reducers/createDiscussion.js index 582164f711..04081d157c 100644 --- a/app/reducers/createDiscussion.js +++ b/app/reducers/createDiscussion.js @@ -7,7 +7,7 @@ const initialState = { error: {} }; -export default function(state = initialState, action) { +export default function (state = initialState, action) { switch (action.type) { case CREATE_DISCUSSION.REQUEST: return { diff --git a/app/reducers/room.js b/app/reducers/room.js index 980715051a..086e43f5cc 100644 --- a/app/reducers/room.js +++ b/app/reducers/room.js @@ -6,7 +6,7 @@ const initialState = { rooms: [] }; -export default function(state = initialState, action) { +export default function (state = initialState, action) { switch (action.type) { case ROOM.SUBSCRIBE: return { @@ -16,8 +16,7 @@ export default function(state = initialState, action) { case ROOM.UNSUBSCRIBE: return { ...state, - rooms: state.rooms - .filter(rid => rid !== action.rid) + rooms: state.rooms.filter(rid => rid !== action.rid) }; case ROOM.LEAVE: return { diff --git a/app/reducers/selectedUsers.js b/app/reducers/selectedUsers.js index 0d8fa4cf72..42d7982c1c 100644 --- a/app/reducers/selectedUsers.js +++ b/app/reducers/selectedUsers.js @@ -5,7 +5,7 @@ const initialState = { loading: false }; -export default function(state = initialState, action) { +export default function (state = initialState, action) { switch (action.type) { case SELECTED_USERS.ADD_USER: return { diff --git a/app/reducers/server.js b/app/reducers/server.js index 2c5b98199d..f3934a68d1 100644 --- a/app/reducers/server.js +++ b/app/reducers/server.js @@ -12,7 +12,6 @@ const initialState = { changingServer: false }; - export default function server(state = initialState, action) { switch (action.type) { case SERVER.REQUEST: diff --git a/app/reducers/sortPreferences.js b/app/reducers/sortPreferences.js index eee86ea6d6..1e7c0b2dd0 100644 --- a/app/reducers/sortPreferences.js +++ b/app/reducers/sortPreferences.js @@ -7,7 +7,6 @@ const initialState = { showUnread: false }; - export default (state = initialState, action) => { switch (action.type) { case SORT_PREFERENCES.SET_ALL: diff --git a/app/sagas/createChannel.js b/app/sagas/createChannel.js index a9ed567d01..c12d18a554 100644 --- a/app/sagas/createChannel.js +++ b/app/sagas/createChannel.js @@ -1,6 +1,4 @@ -import { - call, put, select, take, takeLatest -} from 'redux-saga/effects'; +import { call, put, select, take, takeLatest } from 'redux-saga/effects'; import { sanitizedRaw } from '@nozbe/watermelondb/RawRecord'; import { CREATE_CHANNEL, LOGIN } from '../actions/actionsTypes'; @@ -34,17 +32,12 @@ const handleRequest = function* handleRequest({ data }) { let sub; if (data.isTeam) { - const { - type, - readOnly, - broadcast, - encrypted - } = data; + const { type, readOnly, broadcast, encrypted } = data; logEvent(events.CT_CREATE, { - type: `${ type }`, - readOnly: `${ readOnly }`, - broadcast: `${ broadcast }`, - encrypted: `${ encrypted }` + type: `${type}`, + readOnly: `${readOnly}`, + broadcast: `${broadcast}`, + encrypted: `${encrypted}` }); const result = yield call(createTeam, data); sub = { @@ -62,12 +55,7 @@ const handleRequest = function* handleRequest({ data }) { }; } } else { - const { - type, - readOnly, - broadcast, - encrypted - } = data; + const { type, readOnly, broadcast, encrypted } = data; logEvent(events.CR_CREATE, { type: type ? 'private' : 'public', readOnly, @@ -84,8 +72,8 @@ const handleRequest = function* handleRequest({ data }) { try { const db = database.active; const subCollection = db.get('subscriptions'); - yield db.action(async() => { - await subCollection.create((s) => { + yield db.action(async () => { + await subCollection.create(s => { s._raw = sanitizedRaw({ id: sub.rid }, subCollection.schema); Object.assign(s, sub); }); @@ -120,9 +108,13 @@ const handleFailure = function handleFailure({ err, isTeam }) { setTimeout(() => { let msg = ''; - const actionError = I18n.t('There_was_an_error_while_action', { action: isTeam ? I18n.t('creating_team') : I18n.t('creating_channel') }); + const actionError = I18n.t('There_was_an_error_while_action', { + action: isTeam ? I18n.t('creating_team') : I18n.t('creating_channel') + }); if (err?.data?.errorType && err?.data?.details?.channel_name) { - msg = errorArray.includes(err.data.errorType) ? I18n.t(err.data.errorType, { room_name: err.data.details.channel_name }) : actionError; + msg = errorArray.includes(err.data.errorType) + ? I18n.t(err.data.errorType, { room_name: err.data.details.channel_name }) + : actionError; } else { msg = err?.reason || (errorArray.includes(err?.data?.error) ? I18n.t(err.data.error) : err.data.error || actionError); } diff --git a/app/sagas/createDiscussion.js b/app/sagas/createDiscussion.js index ddbc32f9f4..6009fe8b20 100644 --- a/app/sagas/createDiscussion.js +++ b/app/sagas/createDiscussion.js @@ -1,6 +1,4 @@ -import { - call, put, select, take, takeLatest -} from 'redux-saga/effects'; +import { call, put, select, take, takeLatest } from 'redux-saga/effects'; import { sanitizedRaw } from '@nozbe/watermelondb/RawRecord'; import { CREATE_DISCUSSION, LOGIN } from '../actions/actionsTypes'; @@ -28,8 +26,8 @@ const handleRequest = function* handleRequest({ data }) { try { const db = database.active; const subCollection = db.get('subscriptions'); - yield db.action(async() => { - await subCollection.create((s) => { + yield db.action(async () => { + await subCollection.create(s => { s._raw = sanitizedRaw({ id: sub.rid }, subCollection.schema); Object.assign(s, sub); }); diff --git a/app/sagas/deepLinking.js b/app/sagas/deepLinking.js index b577163eab..959a0802d8 100644 --- a/app/sagas/deepLinking.js +++ b/app/sagas/deepLinking.js @@ -1,6 +1,4 @@ -import { - all, delay, put, select, take, takeLatest -} from 'redux-saga/effects'; +import { all, delay, put, select, take, takeLatest } from 'redux-saga/effects'; import UserPreferences from '../lib/userPreferences'; import Navigation from '../lib/Navigation'; @@ -10,16 +8,17 @@ import { inviteLinksRequest, inviteLinksSetToken } from '../actions/inviteLinks' import database from '../lib/database'; import RocketChat from '../lib/rocketchat'; import EventEmitter from '../utils/events'; -import { - ROOT_INSIDE, ROOT_NEW_SERVER, appInit, appStart -} from '../actions/app'; +import { ROOT_INSIDE, ROOT_NEW_SERVER, appInit, appStart } from '../actions/app'; import { localAuthenticate } from '../utils/localAuthentication'; import { goRoom } from '../utils/goRoom'; import { loginRequest } from '../actions/login'; import log from '../utils/log'; const roomTypes = { - channel: 'c', direct: 'd', group: 'p', channels: 'l' + channel: 'c', + direct: 'd', + group: 'p', + channels: 'l' }; const handleInviteLink = function* handleInviteLink({ params, requireLogin = false }) { @@ -132,9 +131,9 @@ const handleOpen = function* handleOpen({ params }) { // If there's host, continue if (!/^(http|https)/.test(host)) { if (/^localhost(:\d+)?/.test(host)) { - host = `http://${ host }`; + host = `http://${host}`; } else { - host = `https://${ host }`; + host = `https://${host}`; } } else { // Notification should always come from https @@ -147,7 +146,7 @@ const handleOpen = function* handleOpen({ params }) { const [server, user] = yield all([ UserPreferences.getStringAsync(RocketChat.CURRENT_SERVER), - UserPreferences.getStringAsync(`${ RocketChat.TOKEN_KEY }-${ host }`) + UserPreferences.getStringAsync(`${RocketChat.TOKEN_KEY}-${host}`) ]); // TODO: needs better test diff --git a/app/sagas/encryption.js b/app/sagas/encryption.js index beb33a863e..cdf938bcd2 100644 --- a/app/sagas/encryption.js +++ b/app/sagas/encryption.js @@ -5,12 +5,7 @@ import { ENCRYPTION } from '../actions/actionsTypes'; import { encryptionSet } from '../actions/encryption'; import { Encryption } from '../lib/encryption'; import Navigation from '../lib/Navigation'; -import { - E2E_BANNER_TYPE, - E2E_PRIVATE_KEY, - E2E_PUBLIC_KEY, - E2E_RANDOM_PASSWORD_KEY -} from '../lib/encryption/constants'; +import { E2E_BANNER_TYPE, E2E_PRIVATE_KEY, E2E_PUBLIC_KEY, E2E_RANDOM_PASSWORD_KEY } from '../lib/encryption/constants'; import database from '../lib/database'; import RocketChat from '../lib/rocketchat'; import UserPreferences from '../lib/userPreferences'; @@ -44,7 +39,7 @@ const handleEncryptionInit = function* handleEncryptionInit() { } // Fetch stored private e2e key for this server - const storedPrivateKey = yield UserPreferences.getStringAsync(`${ server }-${ E2E_PRIVATE_KEY }`); + const storedPrivateKey = yield UserPreferences.getStringAsync(`${server}-${E2E_PRIVATE_KEY}`); // Fetch server stored e2e keys const keys = yield RocketChat.e2eFetchMyKeys(); @@ -57,19 +52,18 @@ const handleEncryptionInit = function* handleEncryptionInit() { } // If the user has a private key stored, but never entered the password - const storedRandomPassword = yield UserPreferences.getStringAsync(`${ server }-${ E2E_RANDOM_PASSWORD_KEY }`); + const storedRandomPassword = yield UserPreferences.getStringAsync(`${server}-${E2E_RANDOM_PASSWORD_KEY}`); if (storedRandomPassword) { yield put(encryptionSet(true, E2E_BANNER_TYPE.SAVE_PASSWORD)); } // Fetch stored public e2e key for this server - let storedPublicKey = yield UserPreferences.getStringAsync(`${ server }-${ E2E_PUBLIC_KEY }`); + let storedPublicKey = yield UserPreferences.getStringAsync(`${server}-${E2E_PUBLIC_KEY}`); // Prevent parse undefined if (storedPublicKey) { storedPublicKey = EJSON.parse(storedPublicKey); } - if (storedPublicKey && storedPrivateKey && !storedRandomPassword) { // Persist these keys yield Encryption.persistKeys(server, storedPublicKey, storedPrivateKey); diff --git a/app/sagas/init.js b/app/sagas/init.js index 2986e90fd8..af42c4faad 100644 --- a/app/sagas/init.js +++ b/app/sagas/init.js @@ -19,7 +19,7 @@ export const initLocalSettings = function* initLocalSettings() { const restore = function* restore() { try { const server = yield UserPreferences.getStringAsync(RocketChat.CURRENT_SERVER); - let userId = yield UserPreferences.getStringAsync(`${ RocketChat.TOKEN_KEY }-${ server }`); + let userId = yield UserPreferences.getStringAsync(`${RocketChat.TOKEN_KEY}-${server}`); if (!server) { yield put(appStart({ root: ROOT_OUTSIDE })); @@ -32,7 +32,7 @@ const restore = function* restore() { if (servers.length > 0) { for (let i = 0; i < servers.length; i += 1) { const newServer = servers[i].id; - userId = yield UserPreferences.getStringAsync(`${ RocketChat.TOKEN_KEY }-${ newServer }`); + userId = yield UserPreferences.getStringAsync(`${RocketChat.TOKEN_KEY}-${newServer}`); if (userId) { return yield put(selectServerRequest(newServer)); } diff --git a/app/sagas/inviteLinks.js b/app/sagas/inviteLinks.js index 89aeb0b4b8..2fd536614e 100644 --- a/app/sagas/inviteLinks.js +++ b/app/sagas/inviteLinks.js @@ -1,6 +1,4 @@ -import { - delay, put, select, takeLatest -} from 'redux-saga/effects'; +import { delay, put, select, takeLatest } from 'redux-saga/effects'; import { Alert } from 'react-native'; import { INVITE_LINKS } from '../actions/actionsTypes'; @@ -50,7 +48,9 @@ const handleCreateInviteLink = function* handleCreateInviteLink({ rid }) { try { const inviteLinks = yield select(state => state.inviteLinks); const result = yield RocketChat.findOrCreateInvite({ - rid, days: inviteLinks.days, maxUses: inviteLinks.maxUses + rid, + days: inviteLinks.days, + maxUses: inviteLinks.maxUses }); if (!result.success) { Alert.alert(I18n.t('Oops'), I18n.t('There_was_an_error_while_action', { action: I18n.t('creating_invite') })); diff --git a/app/sagas/login.js b/app/sagas/login.js index c608cb65ef..516599c3dc 100644 --- a/app/sagas/login.js +++ b/app/sagas/login.js @@ -1,17 +1,11 @@ -import { - call, cancel, delay, fork, put, race, select, take, takeLatest -} from 'redux-saga/effects'; +import { call, cancel, delay, fork, put, race, select, take, takeLatest } from 'redux-saga/effects'; import { sanitizedRaw } from '@nozbe/watermelondb/RawRecord'; import { Q } from '@nozbe/watermelondb'; import * as types from '../actions/actionsTypes'; -import { - ROOT_INSIDE, ROOT_LOADING, ROOT_OUTSIDE, ROOT_SET_USERNAME, appStart -} from '../actions/app'; +import { ROOT_INSIDE, ROOT_LOADING, ROOT_OUTSIDE, ROOT_SET_USERNAME, appStart } from '../actions/app'; import { selectServerRequest, serverFinishAdd } from '../actions/server'; -import { - loginFailure, loginSuccess, logout, setUser -} from '../actions/login'; +import { loginFailure, loginSuccess, logout, setUser } from '../actions/login'; import { roomsRequest } from '../actions/rooms'; import RocketChat from '../lib/rocketchat'; import log, { events, logEvent } from '../utils/log'; @@ -53,14 +47,14 @@ const handleLoginRequest = function* handleLoginRequest({ credentials, logoutOnE // Saves username on server history const serversDB = database.servers; const serversHistoryCollection = serversDB.get('servers_history'); - yield serversDB.action(async() => { + yield serversDB.action(async () => { try { const serversHistory = await serversHistoryCollection.query(Q.where('url', server)).fetch(); if (serversHistory?.length) { const serverHistoryRecord = serversHistory[0]; // this is updating on every login just to save `updated_at` // keeping this server as the most recent on autocomplete order - await serverHistoryRecord.update((s) => { + await serverHistoryRecord.update(s => { s.username = result.username; }); } @@ -71,7 +65,7 @@ const handleLoginRequest = function* handleLoginRequest({ credentials, logoutOnE yield put(loginSuccess(result)); } } catch (e) { - if (logoutOnError && (e.data && e.data.message && /you've been logged out by the server/i.test(e.data.message))) { + if (logoutOnError && e.data && e.data.message && /you've been logged out by the server/i.test(e.data.message)) { yield put(logout(true)); } else { logEvent(events.LOGIN_DEFAULT_LOGIN_F); @@ -156,23 +150,23 @@ const handleLoginSuccess = function* handleLoginSuccess({ user }) { showMessageInMainThread: user.showMessageInMainThread, avatarETag: user.avatarETag }; - yield serversDB.action(async() => { + yield serversDB.action(async () => { try { const userRecord = await usersCollection.find(user.id); - await userRecord.update((record) => { + await userRecord.update(record => { record._raw = sanitizedRaw({ id: user.id, ...record._raw }, usersCollection.schema); Object.assign(record, u); }); } catch (e) { - await usersCollection.create((record) => { + await usersCollection.create(record => { record._raw = sanitizedRaw({ id: user.id }, usersCollection.schema); Object.assign(record, u); }); } }); - yield UserPreferences.setStringAsync(`${ RocketChat.TOKEN_KEY }-${ server }`, user.id); - yield UserPreferences.setStringAsync(`${ RocketChat.TOKEN_KEY }-${ user.id }`, user.token); + yield UserPreferences.setStringAsync(`${RocketChat.TOKEN_KEY}-${server}`, user.id); + yield UserPreferences.setStringAsync(`${RocketChat.TOKEN_KEY}-${user.id}`, user.token); yield put(setUser(user)); EventEmitter.emit('connected'); @@ -226,7 +220,7 @@ const handleLogout = function* handleLogout({ forcedByServer }) { if (servers.length > 0) { for (let i = 0; i < servers.length; i += 1) { const newServer = servers[i].id; - const token = yield UserPreferences.getStringAsync(`${ RocketChat.TOKEN_KEY }-${ newServer }`); + const token = yield UserPreferences.getStringAsync(`${RocketChat.TOKEN_KEY}-${newServer}`); if (token) { yield put(selectServerRequest(newServer)); return; diff --git a/app/sagas/room.js b/app/sagas/room.js index 813baa1eab..e3437a4ae1 100644 --- a/app/sagas/room.js +++ b/app/sagas/room.js @@ -1,8 +1,6 @@ import { Alert } from 'react-native'; import prompt from 'react-native-prompt-android'; -import { - delay, put, race, select, take, takeLatest -} from 'redux-saga/effects'; +import { delay, put, race, select, take, takeLatest } from 'redux-saga/effects'; import EventEmitter from '../utils/events'; import Navigation from '../lib/Navigation'; @@ -41,13 +39,16 @@ const handleRemovedRoom = function* handleRemovedRoom(roomType, actionType) { } if (actionType === 'leave') { - EventEmitter.emit(LISTENER, { message: roomType === 'team' ? I18n.t('Left_The_Team_Successfully') : I18n.t('Left_The_Room_Successfully') }); + EventEmitter.emit(LISTENER, { + message: roomType === 'team' ? I18n.t('Left_The_Team_Successfully') : I18n.t('Left_The_Room_Successfully') + }); } if (actionType === 'delete') { - EventEmitter.emit(LISTENER, { message: roomType === 'team' ? I18n.t('Deleted_The_Team_Successfully') : I18n.t('Deleted_The_Room_Successfully') }); + EventEmitter.emit(LISTENER, { + message: roomType === 'team' ? I18n.t('Deleted_The_Team_Successfully') : I18n.t('Deleted_The_Room_Successfully') + }); } - // types.ROOM.REMOVE is triggered by `subscriptions-changed` with `removed` arg const { timeout } = yield race({ deleteFinished: take(types.ROOM.REMOVED), @@ -66,7 +67,7 @@ const handleLeaveRoom = function* handleLeaveRoom({ room, roomType, selected }) if (roomType === 'channel') { result = yield RocketChat.leaveRoom(room.rid, room.t); } else if (roomType === 'team') { - result = yield RocketChat.leaveTeam({ teamName: room.name, ...selected && { rooms: selected } }); + result = yield RocketChat.leaveTeam({ teamName: room.name, ...(selected && { rooms: selected }) }); } if (result?.success) { @@ -92,7 +93,7 @@ const handleDeleteRoom = function* handleDeleteRoom({ room, roomType, selected } if (roomType === 'channel') { result = yield RocketChat.deleteRoom(room.rid, room.t); } else if (roomType === 'team') { - result = yield RocketChat.deleteTeam({ teamId: room.teamId, ...selected && { roomsToRemove: selected } }); + result = yield RocketChat.deleteTeam({ teamId: room.teamId, ...(selected && { roomsToRemove: selected }) }); } if (result?.success) { @@ -100,7 +101,12 @@ const handleDeleteRoom = function* handleDeleteRoom({ room, roomType, selected } } } catch (e) { logEvent(events.RI_EDIT_DELETE_F); - Alert.alert(I18n.t('Oops'), I18n.t('There_was_an_error_while_action', { action: roomType === 'team' ? I18n.t('deleting_team') : I18n.t('deleting_room') })); + Alert.alert( + I18n.t('Oops'), + I18n.t('There_was_an_error_while_action', { + action: roomType === 'team' ? I18n.t('deleting_team') : I18n.t('deleting_room') + }) + ); } }; @@ -108,7 +114,7 @@ const handleCloseRoom = function* handleCloseRoom({ rid }) { const isMasterDetail = yield select(state => state.app.isMasterDetail); const requestComment = yield select(state => state.settings.Livechat_request_comment_when_closing_conversation); - const closeRoom = async(comment = '') => { + const closeRoom = async (comment = '') => { try { await RocketChat.closeLivechat(rid, comment); if (isMasterDetail) { @@ -130,7 +136,7 @@ const handleCloseRoom = function* handleCloseRoom({ rid }) { I18n.t('Closing_chat'), I18n.t('Please_add_a_comment'), [ - { text: I18n.t('Cancel'), onPress: () => { }, style: 'cancel' }, + { text: I18n.t('Cancel'), onPress: () => {}, style: 'cancel' }, { text: I18n.t('Submit'), onPress: comment => closeRoom(comment) diff --git a/app/sagas/rooms.js b/app/sagas/rooms.js index 54a1125b33..56d6c6c42b 100644 --- a/app/sagas/rooms.js +++ b/app/sagas/rooms.js @@ -1,6 +1,4 @@ -import { - cancel, delay, fork, put, race, select, take -} from 'redux-saga/effects'; +import { cancel, delay, fork, put, race, select, take } from 'redux-saga/effects'; import { Q } from '@nozbe/watermelondb'; import { sanitizedRaw } from '@nozbe/watermelondb/RawRecord'; @@ -20,8 +18,8 @@ const updateRooms = function* updateRooms({ server, newRoomsUpdatedAt }) { try { const serverRecord = yield serversCollection.find(server); - return serversDB.action(async() => { - await serverRecord.update((record) => { + return serversDB.action(async () => { + await serverRecord.update(record => { record.roomsUpdatedAt = newRoomsUpdatedAt; }); }); @@ -51,7 +49,7 @@ const handleRoomsRequest = function* handleRoomsRequest({ params }) { // Force fetch all subscriptions to update columns related to Teams feature // TODO: remove it a couple of releases - const teamsMigrationKey = `${ server }_TEAMS_MIGRATION`; + const teamsMigrationKey = `${server}_TEAMS_MIGRATION`; const teamsMigration = yield UserPreferences.getBoolAsync(teamsMigrationKey); if (!teamsMigration) { roomsUpdatedAt = null; @@ -87,11 +85,13 @@ const handleRoomsRequest = function* handleRoomsRequest({ params }) { const messagesToCreate = lastMessages.filter(i1 => !existingMessages.find(i2 => i1._id === i2.id)); const allRecords = [ - ...subsToCreate.map(subscription => subCollection.prepareCreate((s) => { - s._raw = sanitizedRaw({ id: subscription.rid }, subCollection.schema); - return Object.assign(s, subscription); - })), - ...subsToUpdate.map((subscription) => { + ...subsToCreate.map(subscription => + subCollection.prepareCreate(s => { + s._raw = sanitizedRaw({ id: subscription.rid }, subCollection.schema); + return Object.assign(s, subscription); + }) + ), + ...subsToUpdate.map(subscription => { const newSub = subscriptions.find(s => s._id === subscription._id); return subscription.prepareUpdate(() => { if (newSub.announcement) { @@ -103,20 +103,26 @@ const handleRoomsRequest = function* handleRoomsRequest({ params }) { }); }), ...subsToDelete.map(subscription => subscription.prepareDestroyPermanently()), - ...messagesToCreate.map(message => messagesCollection.prepareCreate(protectedFunction((m) => { - m._raw = sanitizedRaw({ id: message._id }, messagesCollection.schema); - m.subscription.id = message.rid; - return Object.assign(m, message); - }))), - ...messagesToUpdate.map((message) => { + ...messagesToCreate.map(message => + messagesCollection.prepareCreate( + protectedFunction(m => { + m._raw = sanitizedRaw({ id: message._id }, messagesCollection.schema); + m.subscription.id = message.rid; + return Object.assign(m, message); + }) + ) + ), + ...messagesToUpdate.map(message => { const newMessage = lastMessages.find(m => m._id === message.id); - return message.prepareUpdate(protectedFunction(() => { - Object.assign(message, newMessage); - })); + return message.prepareUpdate( + protectedFunction(() => { + Object.assign(message, newMessage); + }) + ); }) ]; - yield db.action(async() => { + yield db.action(async () => { await db.batch(...allRecords); }); } diff --git a/app/sagas/selectServer.js b/app/sagas/selectServer.js index 41c04f504c..5aacd2b11e 100644 --- a/app/sagas/selectServer.js +++ b/app/sagas/selectServer.js @@ -7,9 +7,7 @@ import coerce from 'semver/functions/coerce'; import Navigation from '../lib/Navigation'; import { SERVER } from '../actions/actionsTypes'; -import { - selectServerFailure, selectServerRequest, selectServerSuccess, serverFailure -} from '../actions/server'; +import { selectServerFailure, selectServerRequest, selectServerSuccess, serverFailure } from '../actions/server'; import { clearSettings } from '../actions/settings'; import { setUser } from '../actions/login'; import RocketChat from '../lib/rocketchat'; @@ -46,14 +44,14 @@ const getServerInfo = function* getServerInfo({ server, raiseError = true }) { const serversDB = database.servers; const serversCollection = serversDB.get('servers'); - yield serversDB.action(async() => { + yield serversDB.action(async () => { try { const serverRecord = await serversCollection.find(server); - await serverRecord.update((record) => { + await serverRecord.update(record => { record.version = serverVersion; }); } catch (e) { - await serversCollection.create((record) => { + await serversCollection.create(record => { record._raw = sanitizedRaw({ id: server }, serversCollection.schema); record.version = serverVersion; }); @@ -69,14 +67,14 @@ const getServerInfo = function* getServerInfo({ server, raiseError = true }) { const handleSelectServer = function* handleSelectServer({ server, version, fetchVersion }) { try { // SSL Pinning - Read certificate alias and set it to be used by network requests - const certificate = yield UserPreferences.getStringAsync(`${ RocketChat.CERTIFICATE_KEY }-${ server }`); + const certificate = yield UserPreferences.getStringAsync(`${RocketChat.CERTIFICATE_KEY}-${server}`); yield SSLPinning.setCertificate(certificate, server); yield put(inquiryReset()); yield put(encryptionStop()); const serversDB = database.servers; yield UserPreferences.setStringAsync(RocketChat.CURRENT_SERVER, server); - const userId = yield UserPreferences.getStringAsync(`${ RocketChat.TOKEN_KEY }-${ server }`); + const userId = yield UserPreferences.getStringAsync(`${RocketChat.TOKEN_KEY}-${server}`); const userCollections = serversDB.get('users'); let user = null; if (userId) { @@ -96,14 +94,14 @@ const handleSelectServer = function* handleSelectServer({ server, version, fetch }; } catch { // search credentials on shared credentials (Experimental/Official) - const token = yield UserPreferences.getStringAsync(`${ RocketChat.TOKEN_KEY }-${ userId }`); + const token = yield UserPreferences.getStringAsync(`${RocketChat.TOKEN_KEY}-${userId}`); if (token) { user = { token }; } } } - const basicAuth = yield UserPreferences.getStringAsync(`${ BASIC_AUTH_KEY }-${ server }`); + const basicAuth = yield UserPreferences.getStringAsync(`${BASIC_AUTH_KEY}-${server}`); setBasicAuth(basicAuth); // Check for running requests and abort them before connecting to the server @@ -147,7 +145,7 @@ const handleSelectServer = function* handleSelectServer({ server, version, fetch const handleServerRequest = function* handleServerRequest({ server, username, fromServerHistory }) { try { // SSL Pinning - Read certificate alias and set it to be used by network requests - const certificate = yield UserPreferences.getStringAsync(`${ RocketChat.CERTIFICATE_KEY }-${ server }`); + const certificate = yield UserPreferences.getStringAsync(`${RocketChat.CERTIFICATE_KEY}-${server}`); yield SSLPinning.setCertificate(certificate, server); const serverInfo = yield getServerInfo({ server }); @@ -163,11 +161,11 @@ const handleServerRequest = function* handleServerRequest({ server, username, fr Navigation.navigate('LoginView', { username }); } - yield serversDB.action(async() => { + yield serversDB.action(async () => { try { const serversHistory = await serversHistoryCollection.query(Q.where('url', server)).fetch(); if (!serversHistory?.length) { - await serversHistoryCollection.create((s) => { + await serversHistoryCollection.create(s => { s.url = server; }); } diff --git a/app/selectors/login.js b/app/selectors/login.js index b5278a3e3e..03e3a2ecb5 100644 --- a/app/selectors/login.js +++ b/app/selectors/login.js @@ -1,7 +1,7 @@ import { createSelector } from 'reselect'; import isEmpty from 'lodash/isEmpty'; -const getUser = (state) => { +const getUser = state => { if (!isEmpty(state.share?.user)) { return state.share.user; } @@ -11,10 +11,7 @@ const getLoginServices = state => state.login.services || {}; const getShowFormLoginSetting = state => state.settings.Accounts_ShowFormLogin || false; const getIframeEnabledSetting = state => state.settings.Accounts_iframe_enabled || false; -export const getUserSelector = createSelector( - [getUser], - user => user -); +export const getUserSelector = createSelector([getUser], user => user); export const getShowLoginButton = createSelector( [getLoginServices, getShowFormLoginSetting, getIframeEnabledSetting], diff --git a/app/share.tsx b/app/share.tsx index 2efc03df9e..e210e3c9af 100644 --- a/app/share.tsx +++ b/app/share.tsx @@ -27,18 +27,18 @@ import { DimensionsContext } from './dimensions'; import debounce from './utils/debounce'; interface IDimensions { - width: number, - height: number, - scale: number, - fontScale: number + width: number; + height: number; + scale: number; + fontScale: number; } interface IState { - theme: string, + theme: string; themePreferences: { - currentTheme: 'automatic' | 'light', - darkLevel: string - }, + currentTheme: 'automatic' | 'light'; + darkLevel: string; + }; root: any; width: number; height: number; @@ -52,25 +52,15 @@ const InsideStack = () => { const screenOptions = { ...defaultHeader, - ...themedHeader(theme), + ...themedHeader(theme) }; screenOptions.headerStyle = { ...screenOptions.headerStyle, height: 57 }; return ( <Inside.Navigator screenOptions={screenOptions}> - <Inside.Screen - name='ShareListView' - component={ShareListView} - /> - <Inside.Screen - name='ShareView' - component={ShareView} - /> - <Inside.Screen - name='SelectServerView' - component={SelectServerView} - options={SelectServerView.navigationOptions} - /> + <Inside.Screen name='ShareListView' component={ShareListView} /> + <Inside.Screen name='ShareView' component={ShareView} /> + <Inside.Screen name='SelectServerView' component={SelectServerView} options={SelectServerView.navigationOptions} /> </Inside.Navigator> ); }; @@ -96,24 +86,9 @@ const Stack = createStackNavigator(); export const App = ({ root }: any) => ( <Stack.Navigator screenOptions={{ headerShown: false, animationEnabled: false }}> <> - {!root ? ( - <Stack.Screen - name='AuthLoading' - component={AuthLoadingView} - /> - ) : null} - {root === 'outside' ? ( - <Stack.Screen - name='OutsideStack' - component={OutsideStack} - /> - ) : null} - {root === 'inside' ? ( - <Stack.Screen - name='InsideStack' - component={InsideStack} - /> - ) : null} + {!root ? <Stack.Screen name='AuthLoading' component={AuthLoadingView} /> : null} + {root === 'outside' ? <Stack.Screen name='OutsideStack' component={OutsideStack} /> : null} + {root === 'inside' ? <Stack.Screen name='InsideStack' component={InsideStack} /> : null} </> </Stack.Navigator> ); @@ -126,13 +101,13 @@ class Root extends React.Component<{}, IState> { theme: defaultTheme(), themePreferences: { currentTheme: supportSystemTheme() ? 'automatic' : 'light', - darkLevel: 'black', + darkLevel: 'black' }, root: '', width, height, scale, - fontScale, + fontScale }; this.init(); } @@ -159,27 +134,33 @@ class Root extends React.Component<{}, IState> { const currentRouteName = getActiveRouteName(state); Navigation.routeNameRef.current = currentRouteName; setCurrentScreen(currentRouteName); - } + }; setTheme = (newTheme = {}) => { // change theme state - this.setState((prevState) => newThemeState(prevState, newTheme), () => { - const { themePreferences } = this.state; - // subscribe to Appearance changes - subscribeTheme(themePreferences, this.setTheme); - }); - } + this.setState( + prevState => newThemeState(prevState, newTheme), + () => { + const { themePreferences } = this.state; + // subscribe to Appearance changes + subscribeTheme(themePreferences, this.setTheme); + } + ); + }; // Dimensions update fires twice - onDimensionsChange = debounce(({ window: { width, height, scale, fontScale } }: {window: IDimensions}) => { + onDimensionsChange = debounce(({ window: { width, height, scale, fontScale } }: { window: IDimensions }) => { this.setDimensions({ width, height, scale, fontScale }); - }) + }); setDimensions = ({ width, height, scale, fontScale }: IDimensions) => { this.setState({ - width, height, scale, fontScale, + width, + height, + scale, + fontScale }); - } + }; render() { const { theme, root, width, height, scale, fontScale } = this.state; @@ -194,21 +175,19 @@ class Root extends React.Component<{}, IState> { height, scale, fontScale, - setDimensions: this.setDimensions, - }} - > + setDimensions: this.setDimensions + }}> <NavigationContainer theme={navTheme} ref={Navigation.navigationRef} - onStateChange={(state) => { + onStateChange={state => { const previousRouteName = Navigation.routeNameRef.current; const currentRouteName = getActiveRouteName(state); if (previousRouteName !== currentRouteName) { setCurrentScreen(currentRouteName); } Navigation.routeNameRef.current = currentRouteName; - }} - > + }}> <App root={root} /> </NavigationContainer> <ScreenLockedView /> diff --git a/app/stacks/InsideStack.js b/app/stacks/InsideStack.js index ab436f329f..f59cd81777 100644 --- a/app/stacks/InsideStack.js +++ b/app/stacks/InsideStack.js @@ -4,9 +4,7 @@ import { createStackNavigator } from '@react-navigation/stack'; import { createDrawerNavigator } from '@react-navigation/drawer'; import { ThemeContext } from '../theme'; -import { - ModalAnimation, StackAnimation, defaultHeader, themedHeader -} from '../utils/navigation'; +import { ModalAnimation, StackAnimation, defaultHeader, themedHeader } from '../utils/navigation'; import Sidebar from '../views/SidebarView'; // Chats Stack @@ -79,72 +77,28 @@ const ChatsStackNavigator = () => { const { theme } = React.useContext(ThemeContext); return ( <ChatsStack.Navigator screenOptions={{ ...defaultHeader, ...themedHeader(theme), ...StackAnimation }}> - <ChatsStack.Screen - name='RoomsListView' - component={RoomsListView} - /> - <ChatsStack.Screen - name='RoomView' - component={RoomView} - /> - <ChatsStack.Screen - name='RoomActionsView' - component={RoomActionsView} - options={RoomActionsView.navigationOptions} - /> - <ChatsStack.Screen - name='SelectListView' - component={SelectListView} - options={SelectListView.navigationOptions} - /> - <ChatsStack.Screen - name='RoomInfoView' - component={RoomInfoView} - options={RoomInfoView.navigationOptions} - /> - <ChatsStack.Screen - name='RoomInfoEditView' - component={RoomInfoEditView} - options={RoomInfoEditView.navigationOptions} - /> - <ChatsStack.Screen - name='RoomMembersView' - component={RoomMembersView} - options={RoomMembersView.navigationOptions} - /> + <ChatsStack.Screen name='RoomsListView' component={RoomsListView} /> + <ChatsStack.Screen name='RoomView' component={RoomView} /> + <ChatsStack.Screen name='RoomActionsView' component={RoomActionsView} options={RoomActionsView.navigationOptions} /> + <ChatsStack.Screen name='SelectListView' component={SelectListView} options={SelectListView.navigationOptions} /> + <ChatsStack.Screen name='RoomInfoView' component={RoomInfoView} options={RoomInfoView.navigationOptions} /> + <ChatsStack.Screen name='RoomInfoEditView' component={RoomInfoEditView} options={RoomInfoEditView.navigationOptions} /> + <ChatsStack.Screen name='RoomMembersView' component={RoomMembersView} options={RoomMembersView.navigationOptions} /> <ChatsStack.Screen name='SearchMessagesView' component={SearchMessagesView} options={SearchMessagesView.navigationOptions} /> - <ChatsStack.Screen - name='SelectedUsersView' - component={SelectedUsersView} - /> - <ChatsStack.Screen - name='InviteUsersView' - component={InviteUsersView} - options={InviteUsersView.navigationOptions} - /> + <ChatsStack.Screen name='SelectedUsersView' component={SelectedUsersView} /> + <ChatsStack.Screen name='InviteUsersView' component={InviteUsersView} options={InviteUsersView.navigationOptions} /> <ChatsStack.Screen name='InviteUsersEditView' component={InviteUsersEditView} options={InviteUsersEditView.navigationOptions} /> - <ChatsStack.Screen - name='MessagesView' - component={MessagesView} - /> - <ChatsStack.Screen - name='AutoTranslateView' - component={AutoTranslateView} - options={AutoTranslateView.navigationOptions} - /> - <ChatsStack.Screen - name='DirectoryView' - component={DirectoryView} - options={DirectoryView.navigationOptions} - /> + <ChatsStack.Screen name='MessagesView' component={MessagesView} /> + <ChatsStack.Screen name='AutoTranslateView' component={AutoTranslateView} options={AutoTranslateView.navigationOptions} /> + <ChatsStack.Screen name='DirectoryView' component={DirectoryView} options={DirectoryView.navigationOptions} /> <ChatsStack.Screen name='NotificationPrefView' component={NotificationPrefView} @@ -160,31 +114,15 @@ const ChatsStackNavigator = () => { component={ForwardLivechatView} options={ForwardLivechatView.navigationOptions} /> - <ChatsStack.Screen - name='LivechatEditView' - component={LivechatEditView} - options={LivechatEditView.navigationOptions} - /> - <ChatsStack.Screen - name='PickerView' - component={PickerView} - options={PickerView.navigationOptions} - /> + <ChatsStack.Screen name='LivechatEditView' component={LivechatEditView} options={LivechatEditView.navigationOptions} /> + <ChatsStack.Screen name='PickerView' component={PickerView} options={PickerView.navigationOptions} /> <ChatsStack.Screen name='ThreadMessagesView' component={ThreadMessagesView} options={ThreadMessagesView.navigationOptions} /> - <ChatsStack.Screen - name='TeamChannelsView' - component={TeamChannelsView} - options={TeamChannelsView.navigationOptions} - /> - <ChatsStack.Screen - name='CreateChannelView' - component={CreateChannelView} - options={CreateChannelView.navigationOptions} - /> + <ChatsStack.Screen name='TeamChannelsView' component={TeamChannelsView} options={TeamChannelsView.navigationOptions} /> + <ChatsStack.Screen name='CreateChannelView' component={CreateChannelView} options={CreateChannelView.navigationOptions} /> <ChatsStack.Screen name='AddChannelTeamView' component={AddChannelTeamView} @@ -195,21 +133,9 @@ const ChatsStackNavigator = () => { component={AddExistingChannelView} options={AddExistingChannelView.navigationOptions} /> - <ChatsStack.Screen - name='MarkdownTableView' - component={MarkdownTableView} - options={MarkdownTableView.navigationOptions} - /> - <ChatsStack.Screen - name='ReadReceiptsView' - component={ReadReceiptsView} - options={ReadReceiptsView.navigationOptions} - /> - <ChatsStack.Screen - name='QueueListView' - component={QueueListView} - options={QueueListView.navigationOptions} - /> + <ChatsStack.Screen name='MarkdownTableView' component={MarkdownTableView} options={MarkdownTableView.navigationOptions} /> + <ChatsStack.Screen name='ReadReceiptsView' component={ReadReceiptsView} options={ReadReceiptsView.navigationOptions} /> + <ChatsStack.Screen name='QueueListView' component={QueueListView} options={QueueListView.navigationOptions} /> </ChatsStack.Navigator> ); }; @@ -220,11 +146,7 @@ const ProfileStackNavigator = () => { const { theme } = React.useContext(ThemeContext); return ( <ProfileStack.Navigator screenOptions={{ ...defaultHeader, ...themedHeader(theme), ...StackAnimation }}> - <ProfileStack.Screen - name='ProfileView' - component={ProfileView} - options={ProfileView.navigationOptions} - /> + <ProfileStack.Screen name='ProfileView' component={ProfileView} options={ProfileView.navigationOptions} /> <ProfileStack.Screen name='UserPreferencesView' component={UserPreferencesView} @@ -235,11 +157,7 @@ const ProfileStackNavigator = () => { component={UserNotificationPrefView} options={UserNotificationPrefView.navigationOptions} /> - <ProfileStack.Screen - name='PickerView' - component={PickerView} - options={PickerView.navigationOptions} - /> + <ProfileStack.Screen name='PickerView' component={PickerView} options={PickerView.navigationOptions} /> </ProfileStack.Navigator> ); }; @@ -251,11 +169,7 @@ const SettingsStackNavigator = () => { return ( <SettingsStack.Navigator screenOptions={{ ...defaultHeader, ...themedHeader(theme), ...StackAnimation }}> - <SettingsStack.Screen - name='SettingsView' - component={SettingsView} - options={SettingsView.navigationOptions} - /> + <SettingsStack.Screen name='SettingsView' component={SettingsView} options={SettingsView.navigationOptions} /> <SettingsStack.Screen name='SecurityPrivacyView' component={SecurityPrivacyView} @@ -266,16 +180,8 @@ const SettingsStackNavigator = () => { component={E2EEncryptionSecurityView} options={E2EEncryptionSecurityView.navigationOptions} /> - <SettingsStack.Screen - name='LanguageView' - component={LanguageView} - options={LanguageView.navigationOptions} - /> - <SettingsStack.Screen - name='ThemeView' - component={ThemeView} - options={ThemeView.navigationOptions} - /> + <SettingsStack.Screen name='LanguageView' component={LanguageView} options={LanguageView.navigationOptions} /> + <SettingsStack.Screen name='ThemeView' component={ThemeView} options={ThemeView.navigationOptions} /> <SettingsStack.Screen name='DefaultBrowserView' component={DefaultBrowserView} @@ -297,11 +203,7 @@ const AdminPanelStackNavigator = () => { return ( <AdminPanelStack.Navigator screenOptions={{ ...defaultHeader, ...themedHeader(theme), ...StackAnimation }}> - <AdminPanelStack.Screen - name='AdminPanelView' - component={AdminPanelView} - options={AdminPanelView.navigationOptions} - /> + <AdminPanelStack.Screen name='AdminPanelView' component={AdminPanelView} options={AdminPanelView.navigationOptions} /> </AdminPanelStack.Navigator> ); }; @@ -317,8 +219,7 @@ const DrawerNavigator = () => { drawerPosition={I18nManager.isRTL ? 'right' : 'left'} screenOptions={{ swipeEnabled: false }} drawerType='back' - overlayColor={`rgba(0,0,0,${ themes[theme].backdropOpacity })`} - > + overlayColor={`rgba(0,0,0,${themes[theme].backdropOpacity})`}> <Drawer.Screen name='ChatsStackNavigator' component={ChatsStackNavigator} /> <Drawer.Screen name='ProfileStackNavigator' component={ProfileStackNavigator} /> <Drawer.Screen name='SettingsStackNavigator' component={SettingsStackNavigator} /> @@ -334,24 +235,14 @@ const NewMessageStackNavigator = () => { return ( <NewMessageStack.Navigator screenOptions={{ ...defaultHeader, ...themedHeader(theme), ...StackAnimation }}> - <NewMessageStack.Screen - name='NewMessageView' - component={NewMessageView} - options={NewMessageView.navigationOptions} - /> - <NewMessageStack.Screen - name='SelectedUsersViewCreateChannel' - component={SelectedUsersView} - /> + <NewMessageStack.Screen name='NewMessageView' component={NewMessageView} options={NewMessageView.navigationOptions} /> + <NewMessageStack.Screen name='SelectedUsersViewCreateChannel' component={SelectedUsersView} /> <NewMessageStack.Screen name='CreateChannelView' component={CreateChannelView} options={CreateChannelView.navigationOptions} /> - <NewMessageStack.Screen - name='CreateDiscussionView' - component={CreateDiscussionView} - /> + <NewMessageStack.Screen name='CreateDiscussionView' component={CreateDiscussionView} /> </NewMessageStack.Navigator> ); }; @@ -400,16 +291,8 @@ const InsideStackNavigator = () => { return ( <InsideStack.Navigator mode='modal' screenOptions={{ ...defaultHeader, ...themedHeader(theme), ...ModalAnimation }}> - <InsideStack.Screen - name='DrawerNavigator' - component={DrawerNavigator} - options={{ headerShown: false }} - /> - <InsideStack.Screen - name='NewMessageStackNavigator' - component={NewMessageStackNavigator} - options={{ headerShown: false }} - /> + <InsideStack.Screen name='DrawerNavigator' component={DrawerNavigator} options={{ headerShown: false }} /> + <InsideStack.Screen name='NewMessageStackNavigator' component={NewMessageStackNavigator} options={{ headerShown: false }} /> <InsideStack.Screen name='E2ESaveYourPasswordStackNavigator' component={E2ESaveYourPasswordStackNavigator} @@ -420,28 +303,11 @@ const InsideStackNavigator = () => { component={E2EEnterYourPasswordStackNavigator} options={{ headerShown: false }} /> - <InsideStack.Screen - name='AttachmentView' - component={AttachmentView} - /> - <InsideStack.Screen - name='StatusView' - component={StatusView} - /> - <InsideStack.Screen - name='ShareView' - component={ShareView} - /> - <InsideStack.Screen - name='ModalBlockView' - component={ModalBlockView} - options={ModalBlockView.navigationOptions} - /> - <InsideStack.Screen - name='JitsiMeetView' - component={JitsiMeetView} - options={{ headerShown: false }} - /> + <InsideStack.Screen name='AttachmentView' component={AttachmentView} /> + <InsideStack.Screen name='StatusView' component={StatusView} /> + <InsideStack.Screen name='ShareView' component={ShareView} /> + <InsideStack.Screen name='ModalBlockView' component={ModalBlockView} options={ModalBlockView.navigationOptions} /> + <InsideStack.Screen name='JitsiMeetView' component={JitsiMeetView} options={{ headerShown: false }} /> </InsideStack.Navigator> ); }; diff --git a/app/stacks/MasterDetailStack/ModalContainer.js b/app/stacks/MasterDetailStack/ModalContainer.js index f100c3b47d..7be11f8c7e 100644 --- a/app/stacks/MasterDetailStack/ModalContainer.js +++ b/app/stacks/MasterDetailStack/ModalContainer.js @@ -17,13 +17,11 @@ const styles = StyleSheet.create({ }); export const ModalContainer = ({ navigation, children, theme }) => ( - <View style={[styles.root, { backgroundColor: `${ themes[theme].backdropColor }70` }]}> + <View style={[styles.root, { backgroundColor: `${themes[theme].backdropColor}70` }]}> <TouchableWithoutFeedback onPress={() => navigation.pop()}> <View style={styles.backdrop} /> </TouchableWithoutFeedback> - <View style={sharedStyles.modalFormSheet}> - {children} - </View> + <View style={sharedStyles.modalFormSheet}>{children}</View> </View> ); diff --git a/app/stacks/MasterDetailStack/index.js b/app/stacks/MasterDetailStack/index.js index 5cc5cd7ba1..7e75a6ed45 100644 --- a/app/stacks/MasterDetailStack/index.js +++ b/app/stacks/MasterDetailStack/index.js @@ -5,9 +5,7 @@ import { createStackNavigator } from '@react-navigation/stack'; import { createDrawerNavigator } from '@react-navigation/drawer'; import { ThemeContext } from '../../theme'; -import { - FadeFromCenterModal, StackAnimation, defaultHeader, themedHeader -} from '../../utils/navigation'; +import { FadeFromCenterModal, StackAnimation, defaultHeader, themedHeader } from '../../utils/navigation'; // Chats Stack import RoomView from '../../views/RoomView'; @@ -82,11 +80,7 @@ const ChatsStackNavigator = React.memo(() => { return ( <ChatsStack.Navigator screenOptions={{ ...defaultHeader, ...themedHeader(theme), ...StackAnimation }}> - <ChatsStack.Screen - name='RoomView' - component={RoomView} - options={{ headerShown: false }} - /> + <ChatsStack.Screen name='RoomView' component={RoomView} options={{ headerShown: false }} /> </ChatsStack.Navigator> ); }); @@ -96,8 +90,7 @@ const Drawer = createDrawerNavigator(); const DrawerNavigator = React.memo(() => ( <Drawer.Navigator drawerContent={({ navigation, state }) => <RoomsListView navigation={navigation} state={state} />} - drawerType='permanent' - > + drawerType='permanent'> <Drawer.Screen name='ChatsStackNavigator' component={ChatsStackNavigator} /> </Drawer.Navigator> )); @@ -113,40 +106,17 @@ const ModalStackNavigator = React.memo(({ navigation }) => { component={RoomActionsView} options={props => RoomActionsView.navigationOptions({ ...props, isMasterDetail: true })} /> - <ModalStack.Screen - name='RoomInfoView' - component={RoomInfoView} - options={RoomInfoView.navigationOptions} - /> - <ModalStack.Screen - name='SelectListView' - component={SelectListView} - options={SelectListView.navigationOptions} - /> - <ModalStack.Screen - name='RoomInfoEditView' - component={RoomInfoEditView} - options={RoomInfoEditView.navigationOptions} - /> - <ModalStack.Screen - name='RoomMembersView' - component={RoomMembersView} - options={RoomMembersView.navigationOptions} - /> + <ModalStack.Screen name='RoomInfoView' component={RoomInfoView} options={RoomInfoView.navigationOptions} /> + <ModalStack.Screen name='SelectListView' component={SelectListView} options={SelectListView.navigationOptions} /> + <ModalStack.Screen name='RoomInfoEditView' component={RoomInfoEditView} options={RoomInfoEditView.navigationOptions} /> + <ModalStack.Screen name='RoomMembersView' component={RoomMembersView} options={RoomMembersView.navigationOptions} /> <ModalStack.Screen name='SearchMessagesView' component={SearchMessagesView} options={SearchMessagesView.navigationOptions} /> - <ModalStack.Screen - name='SelectedUsersView' - component={SelectedUsersView} - /> - <ModalStack.Screen - name='InviteUsersView' - component={InviteUsersView} - options={InviteUsersView.navigationOptions} - /> + <ModalStack.Screen name='SelectedUsersView' component={SelectedUsersView} /> + <ModalStack.Screen name='InviteUsersView' component={InviteUsersView} options={InviteUsersView.navigationOptions} /> <ModalStack.Screen name='AddChannelTeamView' component={AddChannelTeamView} @@ -162,15 +132,8 @@ const ModalStackNavigator = React.memo(({ navigation }) => { component={InviteUsersEditView} options={InviteUsersEditView.navigationOptions} /> - <ModalStack.Screen - name='MessagesView' - component={MessagesView} - /> - <ModalStack.Screen - name='AutoTranslateView' - component={AutoTranslateView} - options={AutoTranslateView.navigationOptions} - /> + <ModalStack.Screen name='MessagesView' component={MessagesView} /> + <ModalStack.Screen name='AutoTranslateView' component={AutoTranslateView} options={AutoTranslateView.navigationOptions} /> <ModalStack.Screen name='DirectoryView' component={DirectoryView} @@ -196,30 +159,11 @@ const ModalStackNavigator = React.memo(({ navigation }) => { component={ForwardLivechatView} options={ForwardLivechatView.navigationOptions} /> - <ModalStack.Screen - name='LivechatEditView' - component={LivechatEditView} - options={LivechatEditView.navigationOptions} - /> - <ModalStack.Screen - name='PickerView' - component={PickerView} - options={PickerView.navigationOptions} - /> - <ModalStack.Screen - name='ThreadMessagesView' - component={ThreadMessagesView} - /> - <ModalStack.Screen - name='TeamChannelsView' - component={TeamChannelsView} - options={TeamChannelsView.navigationOptions} - /> - <ModalStack.Screen - name='MarkdownTableView' - component={MarkdownTableView} - options={MarkdownTableView.navigationOptions} - /> + <ModalStack.Screen name='LivechatEditView' component={LivechatEditView} options={LivechatEditView.navigationOptions} /> + <ModalStack.Screen name='PickerView' component={PickerView} options={PickerView.navigationOptions} /> + <ModalStack.Screen name='ThreadMessagesView' component={ThreadMessagesView} /> + <ModalStack.Screen name='TeamChannelsView' component={TeamChannelsView} options={TeamChannelsView.navigationOptions} /> + <ModalStack.Screen name='MarkdownTableView' component={MarkdownTableView} options={MarkdownTableView.navigationOptions} /> <ModalStack.Screen name='ReadReceiptsView' component={ReadReceiptsView} @@ -230,16 +174,8 @@ const ModalStackNavigator = React.memo(({ navigation }) => { component={SettingsView} options={props => SettingsView.navigationOptions({ ...props, isMasterDetail: true })} /> - <ModalStack.Screen - name='LanguageView' - component={LanguageView} - options={LanguageView.navigationOptions} - /> - <ModalStack.Screen - name='ThemeView' - component={ThemeView} - options={ThemeView.navigationOptions} - /> + <ModalStack.Screen name='LanguageView' component={LanguageView} options={LanguageView.navigationOptions} /> + <ModalStack.Screen name='ThemeView' component={ThemeView} options={ThemeView.navigationOptions} /> <ModalStack.Screen name='DefaultBrowserView' component={DefaultBrowserView} @@ -250,10 +186,7 @@ const ModalStackNavigator = React.memo(({ navigation }) => { component={ScreenLockConfigView} options={ScreenLockConfigView.navigationOptions} /> - <ModalStack.Screen - name='StatusView' - component={StatusView} - /> + <ModalStack.Screen name='StatusView' component={StatusView} /> <ModalStack.Screen name='ProfileView' component={ProfileView} @@ -264,34 +197,16 @@ const ModalStackNavigator = React.memo(({ navigation }) => { component={AdminPanelView} options={props => AdminPanelView.navigationOptions({ ...props, isMasterDetail: true })} /> - <ModalStack.Screen - name='NewMessageView' - component={NewMessageView} - options={NewMessageView.navigationOptions} - /> - <ModalStack.Screen - name='SelectedUsersViewCreateChannel' - component={SelectedUsersView} - /> - <ModalStack.Screen - name='CreateChannelView' - component={CreateChannelView} - options={CreateChannelView.navigationOptions} - /> - <ModalStack.Screen - name='CreateDiscussionView' - component={CreateDiscussionView} - /> + <ModalStack.Screen name='NewMessageView' component={NewMessageView} options={NewMessageView.navigationOptions} /> + <ModalStack.Screen name='SelectedUsersViewCreateChannel' component={SelectedUsersView} /> + <ModalStack.Screen name='CreateChannelView' component={CreateChannelView} options={CreateChannelView.navigationOptions} /> + <ModalStack.Screen name='CreateDiscussionView' component={CreateDiscussionView} /> <ModalStack.Screen name='E2ESaveYourPasswordView' component={E2ESaveYourPasswordView} options={E2ESaveYourPasswordView.navigationOptions} /> - <ModalStack.Screen - name='E2EHowItWorksView' - component={E2EHowItWorksView} - options={E2EHowItWorksView.navigationOptions} - /> + <ModalStack.Screen name='E2EHowItWorksView' component={E2EHowItWorksView} options={E2EHowItWorksView.navigationOptions} /> <ModalStack.Screen name='E2EEnterYourPasswordView' component={E2EEnterYourPasswordView} @@ -332,34 +247,12 @@ const InsideStackNavigator = React.memo(() => { const { theme } = React.useContext(ThemeContext); return ( <InsideStack.Navigator mode='modal' screenOptions={{ ...defaultHeader, ...themedHeader(theme), ...FadeFromCenterModal }}> - <InsideStack.Screen - name='DrawerNavigator' - component={DrawerNavigator} - options={{ headerShown: false }} - /> - <InsideStack.Screen - name='ModalStackNavigator' - component={ModalStackNavigator} - options={{ headerShown: false }} - /> - <InsideStack.Screen - name='AttachmentView' - component={AttachmentView} - /> - <InsideStack.Screen - name='ModalBlockView' - component={ModalBlockView} - options={ModalBlockView.navigationOptions} - /> - <InsideStack.Screen - name='JitsiMeetView' - component={JitsiMeetView} - options={{ headerShown: false }} - /> - <InsideStack.Screen - name='ShareView' - component={ShareView} - /> + <InsideStack.Screen name='DrawerNavigator' component={DrawerNavigator} options={{ headerShown: false }} /> + <InsideStack.Screen name='ModalStackNavigator' component={ModalStackNavigator} options={{ headerShown: false }} /> + <InsideStack.Screen name='AttachmentView' component={AttachmentView} /> + <InsideStack.Screen name='ModalBlockView' component={ModalBlockView} options={ModalBlockView.navigationOptions} /> + <InsideStack.Screen name='JitsiMeetView' component={JitsiMeetView} options={{ headerShown: false }} /> + <InsideStack.Screen name='ShareView' component={ShareView} /> </InsideStack.Navigator> ); }); diff --git a/app/stacks/OutsideStack.js b/app/stacks/OutsideStack.js index ee98ae7b91..0e8a8f62e1 100644 --- a/app/stacks/OutsideStack.js +++ b/app/stacks/OutsideStack.js @@ -4,9 +4,7 @@ import { connect } from 'react-redux'; import PropTypes from 'prop-types'; import { ThemeContext } from '../theme'; -import { - ModalAnimation, StackAnimation, defaultHeader, themedHeader -} from '../utils/navigation'; +import { ModalAnimation, StackAnimation, defaultHeader, themedHeader } from '../utils/navigation'; // Outside Stack import OnboardingView from '../views/OnboardingView'; @@ -27,42 +25,14 @@ const _OutsideStack = ({ root }) => { return ( <Outside.Navigator screenOptions={{ ...defaultHeader, ...themedHeader(theme), ...StackAnimation }}> {root === ROOT_OUTSIDE ? ( - <Outside.Screen - name='OnboardingView' - component={OnboardingView} - options={OnboardingView.navigationOptions} - /> + <Outside.Screen name='OnboardingView' component={OnboardingView} options={OnboardingView.navigationOptions} /> ) : null} - <Outside.Screen - name='NewServerView' - component={NewServerView} - options={NewServerView.navigationOptions} - /> - <Outside.Screen - name='WorkspaceView' - component={WorkspaceView} - options={WorkspaceView.navigationOptions} - /> - <Outside.Screen - name='LoginView' - component={LoginView} - options={LoginView.navigationOptions} - /> - <Outside.Screen - name='ForgotPasswordView' - component={ForgotPasswordView} - options={ForgotPasswordView.navigationOptions} - /> - <Outside.Screen - name='RegisterView' - component={RegisterView} - options={RegisterView.navigationOptions} - /> - <Outside.Screen - name='LegalView' - component={LegalView} - options={LegalView.navigationOptions} - /> + <Outside.Screen name='NewServerView' component={NewServerView} options={NewServerView.navigationOptions} /> + <Outside.Screen name='WorkspaceView' component={WorkspaceView} options={WorkspaceView.navigationOptions} /> + <Outside.Screen name='LoginView' component={LoginView} options={LoginView.navigationOptions} /> + <Outside.Screen name='ForgotPasswordView' component={ForgotPasswordView} options={ForgotPasswordView.navigationOptions} /> + <Outside.Screen name='RegisterView' component={RegisterView} options={RegisterView.navigationOptions} /> + <Outside.Screen name='LegalView' component={LegalView} options={LegalView.navigationOptions} /> </Outside.Navigator> ); }; @@ -84,11 +54,7 @@ const OutsideStackModal = () => { return ( <OutsideModal.Navigator mode='modal' screenOptions={{ ...defaultHeader, ...themedHeader(theme), ...ModalAnimation }}> - <OutsideModal.Screen - name='OutsideStack' - component={OutsideStack} - options={{ headerShown: false }} - /> + <OutsideModal.Screen name='OutsideStack' component={OutsideStack} options={{ headerShown: false }} /> <OutsideModal.Screen name='AuthenticationWebView' component={AuthenticationWebView} diff --git a/app/theme.tsx b/app/theme.tsx index 9122e0f10b..450bc28015 100644 --- a/app/theme.tsx +++ b/app/theme.tsx @@ -2,11 +2,11 @@ import React from 'react'; import hoistNonReactStatics from 'hoist-non-react-statics'; interface IThemeContextProps { - theme: string, + theme: string; themePreferences: { - currentTheme: 'automatic' | 'light', - darkLevel: string - }, + currentTheme: 'automatic' | 'light'; + darkLevel: string; + }; setTheme: (newTheme?: {}) => void; } @@ -14,9 +14,7 @@ export const ThemeContext = React.createContext<Partial<IThemeContextProps>>({ t export function withTheme(Component: any) { const ThemedComponent = (props: any) => ( - <ThemeContext.Consumer> - {(contexts) => <Component {...props} {...contexts} />} - </ThemeContext.Consumer> + <ThemeContext.Consumer>{contexts => <Component {...props} {...contexts} />}</ThemeContext.Consumer> ); hoistNonReactStatics(ThemedComponent, Component); return ThemedComponent; diff --git a/app/utils/avatar.js b/app/utils/avatar.js index 722d6997d3..4cc15cdade 100644 --- a/app/utils/avatar.js +++ b/app/utils/avatar.js @@ -1,26 +1,35 @@ import { compareServerVersion, methods } from '../lib/utils'; -const formatUrl = (url, size, query) => `${ url }?format=png&size=${ size }${ query }`; +const formatUrl = (url, size, query) => `${url}?format=png&size=${size}${query}`; export const avatarURL = ({ - type, text, size = 25, user = {}, avatar, server, avatarETag, rid, blockUnauthenticatedAccess, serverVersion + type, + text, + size = 25, + user = {}, + avatar, + server, + avatarETag, + rid, + blockUnauthenticatedAccess, + serverVersion }) => { let room; if (type === 'd') { room = text; } else if (rid && !compareServerVersion(serverVersion, '3.6.0', methods.lowerThan)) { - room = `room/${ rid }`; + room = `room/${rid}`; } else { - room = `@${ text }`; + room = `@${text}`; } const { id, token } = user; let query = ''; if (id && token && blockUnauthenticatedAccess) { - query += `&rc_token=${ token }&rc_uid=${ id }`; + query += `&rc_token=${token}&rc_uid=${id}`; } if (avatarETag) { - query += `&etag=${ avatarETag }`; + query += `&etag=${avatarETag}`; } if (avatar) { @@ -28,8 +37,8 @@ export const avatarURL = ({ return avatar; } - return formatUrl(`${ server }${ avatar }`, size, query); + return formatUrl(`${server}${avatar}`, size, query); } - return formatUrl(`${ server }/avatar/${ room }`, size, query); + return formatUrl(`${server}/avatar/${room}`, size, query); }; diff --git a/app/utils/base64-js/base64-js.test.js b/app/utils/base64-js/base64-js.test.js index 6ecad3be7b..a05ceb95be 100644 --- a/app/utils/base64-js/base64-js.test.js +++ b/app/utils/base64-js/base64-js.test.js @@ -2,11 +2,7 @@ /* eslint-disable no-bitwise */ // https://github.com/beatgammit/base64-js/tree/master/test -import { - byteLength, - fromByteArray, - toByteArray -} from './index'; +import { byteLength, fromByteArray, toByteArray } from './index'; const map = (arr, callback) => { const res = []; @@ -37,7 +33,7 @@ expect.extend({ }; } for (i = 0; i < length; i += 1) { - if ((a[i] & 0xFF) !== (b[i] & 0xFF)) { + if ((a[i] & 0xff) !== (b[i] & 0xff)) { return { pass: false }; @@ -76,17 +72,7 @@ test('padding bytes found inside base64 string', () => { expect(byteLength(str)).toBe(1); }); -const checks = [ - 'a', - 'aa', - 'aaa', - 'hi', - 'hi!', - 'hi!!', - 'sup', - 'sup?', - 'sup?!' -]; +const checks = ['a', 'aa', 'aaa', 'hi', 'hi!', 'hi!!', 'sup', 'sup?', 'sup?!']; test('convert to base64 and back', () => { for (let i = 0; i < checks.length; i += 1) { diff --git a/app/utils/base64-js/index.js b/app/utils/base64-js/index.js index 22d535825b..5616f71df3 100644 --- a/app/utils/base64-js/index.js +++ b/app/utils/base64-js/index.js @@ -16,7 +16,7 @@ for (let i = 0, len = code.length; i < len; i += 1) { revLookup['-'.charCodeAt(0)] = 62; revLookup['_'.charCodeAt(0)] = 63; -const getLens = (b64) => { +const getLens = b64 => { const len = b64.length; // We're encoding some strings not multiple of 4, so, disable this check @@ -27,26 +27,26 @@ const getLens = (b64) => { // Trim off extra bytes after placeholder bytes are found // See: https://github.com/beatgammit/base64-js/issues/42 let validLen = b64.indexOf('='); - if (validLen === -1) { validLen = len; } + if (validLen === -1) { + validLen = len; + } - const placeHoldersLen = validLen === len - ? 0 - : 4 - (validLen % 4); + const placeHoldersLen = validLen === len ? 0 : 4 - (validLen % 4); return [validLen, placeHoldersLen]; }; // base64 is 4/3 + up to two characters of the original data -export const byteLength = (b64) => { +export const byteLength = b64 => { const lens = getLens(b64); const validLen = lens[0]; const placeHoldersLen = lens[1]; - return (((validLen + placeHoldersLen) * 3) / 4) - placeHoldersLen; + return ((validLen + placeHoldersLen) * 3) / 4 - placeHoldersLen; }; -const _byteLength = (b64, validLen, placeHoldersLen) => (((validLen + placeHoldersLen) * 3) / 4) - placeHoldersLen; +const _byteLength = (b64, validLen, placeHoldersLen) => ((validLen + placeHoldersLen) * 3) / 4 - placeHoldersLen; -export const toByteArray = (b64) => { +export const toByteArray = b64 => { let tmp; const lens = getLens(b64); const validLen = lens[0]; @@ -57,60 +57,55 @@ export const toByteArray = (b64) => { let curByte = 0; // if there are placeholders, only get up to the last complete 4 chars - const len = placeHoldersLen > 0 - ? validLen - 4 - : validLen; + const len = placeHoldersLen > 0 ? validLen - 4 : validLen; let i; for (i = 0; i < len; i += 4) { - tmp = (revLookup[b64.charCodeAt(i)] << 18) - | (revLookup[b64.charCodeAt(i + 1)] << 12) - | (revLookup[b64.charCodeAt(i + 2)] << 6) - | revLookup[b64.charCodeAt(i + 3)]; - arr[curByte] = (tmp >> 16) & 0xFF; + tmp = + (revLookup[b64.charCodeAt(i)] << 18) | + (revLookup[b64.charCodeAt(i + 1)] << 12) | + (revLookup[b64.charCodeAt(i + 2)] << 6) | + revLookup[b64.charCodeAt(i + 3)]; + arr[curByte] = (tmp >> 16) & 0xff; curByte += 1; - arr[curByte] = (tmp >> 8) & 0xFF; + arr[curByte] = (tmp >> 8) & 0xff; curByte += 1; - arr[curByte] = tmp & 0xFF; + arr[curByte] = tmp & 0xff; curByte += 1; } if (placeHoldersLen === 2) { - tmp = (revLookup[b64.charCodeAt(i)] << 2) - | (revLookup[b64.charCodeAt(i + 1)] >> 4); - arr[curByte] = tmp & 0xFF; + tmp = (revLookup[b64.charCodeAt(i)] << 2) | (revLookup[b64.charCodeAt(i + 1)] >> 4); + arr[curByte] = tmp & 0xff; curByte += 1; } if (placeHoldersLen === 1) { - tmp = (revLookup[b64.charCodeAt(i)] << 10) - | (revLookup[b64.charCodeAt(i + 1)] << 4) - | (revLookup[b64.charCodeAt(i + 2)] >> 2); - arr[curByte] = (tmp >> 8) & 0xFF; + tmp = + (revLookup[b64.charCodeAt(i)] << 10) | (revLookup[b64.charCodeAt(i + 1)] << 4) | (revLookup[b64.charCodeAt(i + 2)] >> 2); + arr[curByte] = (tmp >> 8) & 0xff; curByte += 1; - arr[curByte] = tmp & 0xFF; + arr[curByte] = tmp & 0xff; curByte += 1; } return arr; }; -const tripletToBase64 = num => lookup[(num >> 18) & 0x3F] - + lookup[(num >> 12) & 0x3F] - + lookup[(num >> 6) & 0x3F] - + lookup[num & 0x3F]; +const tripletToBase64 = num => + lookup[(num >> 18) & 0x3f] + lookup[(num >> 12) & 0x3f] + lookup[(num >> 6) & 0x3f] + lookup[num & 0x3f]; const encodeChunk = (uint8, start, end) => { let tmp; const output = []; for (let i = start; i < end; i += 3) { - tmp = ((uint8[i] << 16) & 0xFF0000) + ((uint8[i + 1] << 8) & 0xFF00) + (uint8[i + 2] & 0xFF); + tmp = ((uint8[i] << 16) & 0xff0000) + ((uint8[i + 1] << 8) & 0xff00) + (uint8[i + 2] & 0xff); output.push(tripletToBase64(tmp)); } return output.join(''); }; -export const fromByteArray = (uint8) => { +export const fromByteArray = uint8 => { let tmp; const len = uint8.length; const extraBytes = len % 3; // if we have 1 byte left, pad 2 bytes @@ -119,22 +114,16 @@ export const fromByteArray = (uint8) => { // go through the array every three bytes, we'll deal with trailing stuff later for (let i = 0, len2 = len - extraBytes; i < len2; i += maxChunkLength) { - parts.push(encodeChunk( - uint8, i, (i + maxChunkLength) > len2 ? len2 : i + maxChunkLength - )); + parts.push(encodeChunk(uint8, i, i + maxChunkLength > len2 ? len2 : i + maxChunkLength)); } // pad the end with zeros, but make sure to not forget the extra bytes if (extraBytes === 1) { tmp = uint8[len - 1]; - parts.push( - `${ lookup[tmp >> 2] + lookup[(tmp << 4) & 0x3F] }==` - ); + parts.push(`${lookup[tmp >> 2] + lookup[(tmp << 4) & 0x3f]}==`); } else if (extraBytes === 2) { tmp = (uint8[len - 2] << 8) + uint8[len - 1]; - parts.push( - `${ lookup[tmp >> 10] + lookup[(tmp >> 4) & 0x3F] + lookup[(tmp << 2) & 0x3F] }=` - ); + parts.push(`${lookup[tmp >> 10] + lookup[(tmp >> 4) & 0x3f] + lookup[(tmp << 2) & 0x3f]}=`); } return parts.join(''); diff --git a/app/utils/debounce.js b/app/utils/debounce.js index 27fdffc999..106c61d00c 100644 --- a/app/utils/debounce.js +++ b/app/utils/debounce.js @@ -4,12 +4,16 @@ export default function debounce(func, wait, immediate) { const context = this; const later = function __debounce() { timeout = null; - if (!immediate) { func.apply(context, args); } + if (!immediate) { + func.apply(context, args); + } }; const callNow = immediate && !timeout; clearTimeout(timeout); timeout = setTimeout(later, wait); - if (callNow) { func.apply(context, args); } + if (callNow) { + func.apply(context, args); + } } _debounce.stop = () => clearTimeout(timeout); return _debounce; diff --git a/app/utils/events.js b/app/utils/events.js index 40a1962424..8e67fc82e7 100644 --- a/app/utils/events.js +++ b/app/utils/events.js @@ -27,7 +27,7 @@ class EventEmitter { emit(event, ...args) { if (typeof this.events[event] === 'object') { - this.events[event].forEach((listener) => { + this.events[event].forEach(listener => { try { listener.apply(this, args); } catch (e) { diff --git a/app/utils/fetch.js b/app/utils/fetch.js index 795b3ee34c..84f5669aeb 100644 --- a/app/utils/fetch.js +++ b/app/utils/fetch.js @@ -6,14 +6,16 @@ import RocketChat from '../lib/rocketchat'; // this form is required by Rocket.Chat's parser in "app/statistics/server/lib/UAParserCustom.js" export const headers = { - 'User-Agent': `RC Mobile; ${ Platform.OS } ${ DeviceInfo.getSystemVersion() }; v${ DeviceInfo.getVersion() } (${ DeviceInfo.getBuildNumber() })` + 'User-Agent': `RC Mobile; ${ + Platform.OS + } ${DeviceInfo.getSystemVersion()}; v${DeviceInfo.getVersion()} (${DeviceInfo.getBuildNumber()})` }; let _basicAuth; -export const setBasicAuth = (basicAuth) => { +export const setBasicAuth = basicAuth => { _basicAuth = basicAuth; if (basicAuth) { - RocketChatSettings.customHeaders = { ...headers, Authorization: `Basic ${ _basicAuth }` }; + RocketChatSettings.customHeaders = { ...headers, Authorization: `Basic ${_basicAuth}` }; } else { RocketChatSettings.customHeaders = headers; } diff --git a/app/utils/fileUpload/index.android.js b/app/utils/fileUpload/index.android.js index 6cf4524688..5c45c27bd3 100644 --- a/app/utils/fileUpload/index.android.js +++ b/app/utils/fileUpload/index.android.js @@ -2,7 +2,7 @@ import RNFetchBlob from 'rn-fetch-blob'; class FileUpload { fetch = (method, url, headers, data) => { - const formData = data.map((item) => { + const formData = data.map(item => { if (item.uri) { return { name: item.name, @@ -15,7 +15,7 @@ class FileUpload { }); return RNFetchBlob.fetch(method, url, headers, formData); - } + }; } const fileUpload = new FileUpload(); diff --git a/app/utils/fileUpload/index.ios.js b/app/utils/fileUpload/index.ios.js index 9b8d8d08e3..a97640553c 100644 --- a/app/utils/fileUpload/index.ios.js +++ b/app/utils/fileUpload/index.ios.js @@ -4,23 +4,23 @@ class Upload { this.formData = new FormData(); } - then = (callback) => { + then = callback => { this.xhr.onload = () => callback({ respInfo: this.xhr }); this.xhr.send(this.formData); - } + }; - catch = (callback) => { + catch = callback => { this.xhr.onerror = callback; - } + }; - uploadProgress = (callback) => { + uploadProgress = callback => { this.xhr.upload.onprogress = ({ total, loaded }) => callback(loaded, total); - } + }; cancel = () => { this.xhr.abort(); return Promise.resolve(); - } + }; } class FileUpload { @@ -28,11 +28,11 @@ class FileUpload { const upload = new Upload(); upload.xhr.open(method, url); - Object.keys(headers).forEach((key) => { + Object.keys(headers).forEach(key => { upload.xhr.setRequestHeader(key, headers[key]); }); - data.forEach((item) => { + data.forEach(item => { if (item.uri) { upload.formData.append(item.name, { uri: item.uri, @@ -45,7 +45,7 @@ class FileUpload { }); return upload; - } + }; } const fileUpload = new FileUpload(); diff --git a/app/utils/goRoom.js b/app/utils/goRoom.js index e9811e6515..1025a17d4f 100644 --- a/app/utils/goRoom.js +++ b/app/utils/goRoom.js @@ -20,7 +20,7 @@ const navigate = ({ item, isMasterDetail, ...props }) => { }); }; -export const goRoom = async({ item = {}, isMasterDetail = false, ...props }) => { +export const goRoom = async ({ item = {}, isMasterDetail = false, ...props }) => { if (item.t === 'd' && item.search) { // if user is using the search we need first to join/create room try { diff --git a/app/utils/info.js b/app/utils/info.js index a211d9f756..5d72f200e5 100644 --- a/app/utils/info.js +++ b/app/utils/info.js @@ -2,11 +2,10 @@ import { Alert } from 'react-native'; import I18n from '../i18n'; -export const showErrorAlert = (message, title, onPress = () => {}) => Alert.alert(title, message, [{ text: 'OK', onPress }], { cancelable: true }); +export const showErrorAlert = (message, title, onPress = () => {}) => + Alert.alert(title, message, [{ text: 'OK', onPress }], { cancelable: true }); -export const showConfirmationAlert = ({ - title, message, confirmationText, dismissText = I18n.t('Cancel'), onPress, onCancel -}) => +export const showConfirmationAlert = ({ title, message, confirmationText, dismissText = I18n.t('Cancel'), onPress, onCancel }) => Alert.alert( title || I18n.t('Are_you_sure_question_mark'), message, @@ -24,4 +23,3 @@ export const showConfirmationAlert = ({ ], { cancelable: false } ); - diff --git a/app/utils/isReadOnly.js b/app/utils/isReadOnly.js index f6f1937f64..62ae4fffee 100644 --- a/app/utils/isReadOnly.js +++ b/app/utils/isReadOnly.js @@ -1,7 +1,7 @@ import RocketChat from '../lib/rocketchat'; import reduxStore from '../lib/createStore'; -const canPostReadOnly = async({ rid }) => { +const canPostReadOnly = async ({ rid }) => { // TODO: this is not reactive. If this permission changes, the component won't be updated const postReadOnlyPermission = reduxStore.getState().permissions['post-readonly']; const permission = await RocketChat.hasPermission([postReadOnlyPermission], rid); @@ -10,7 +10,7 @@ const canPostReadOnly = async({ rid }) => { const isMuted = (room, user) => room && room.muted && room.muted.find && !!room.muted.find(m => m === user.username); -export const isReadOnly = async(room, user) => { +export const isReadOnly = async (room, user) => { if (room.archived) { return true; } diff --git a/app/utils/isValidEmail.js b/app/utils/isValidEmail.js index 58cc9077bb..a8bd490f98 100644 --- a/app/utils/isValidEmail.js +++ b/app/utils/isValidEmail.js @@ -1,5 +1,6 @@ export default function isValidEmail(email) { /* eslint-disable no-useless-escape */ - const reg = /^(([^<>()\[\]\\.,;:\s@"]+(\.[^<>()\[\]\\.,;:\s@"]+)*)|(".+"))@((\[[0-9]{1,3}\.[0-9]{1,3}\.[0-9]{1,3}\.[0-9]{1,3}])|(([a-zA-Z\-0-9]+\.)+[a-zA-Z]{2,}))$/; + const reg = + /^(([^<>()\[\]\\.,;:\s@"]+(\.[^<>()\[\]\\.,;:\s@"]+)*)|(".+"))@((\[[0-9]{1,3}\.[0-9]{1,3}\.[0-9]{1,3}\.[0-9]{1,3}])|(([a-zA-Z\-0-9]+\.)+[a-zA-Z]{2,}))$/; return reg.test(email); } diff --git a/app/utils/layoutAnimation.js b/app/utils/layoutAnimation.js index b338c7a3d6..d4a26627db 100644 --- a/app/utils/layoutAnimation.js +++ b/app/utils/layoutAnimation.js @@ -3,21 +3,25 @@ import { LayoutAnimation } from 'react-native'; import debounce from './debounce'; import { isIOS } from './deviceInfo'; -export const animateNextTransition = debounce(() => { - if (isIOS) { - LayoutAnimation.configureNext({ - duration: 200, - create: { - type: LayoutAnimation.Types.easeInEaseOut, - property: LayoutAnimation.Properties.opacity - }, - update: { - type: LayoutAnimation.Types.easeInEaseOut - }, - delete: { - type: LayoutAnimation.Types.easeInEaseOut, - property: LayoutAnimation.Properties.opacity - } - }); - } -}, 200, true); +export const animateNextTransition = debounce( + () => { + if (isIOS) { + LayoutAnimation.configureNext({ + duration: 200, + create: { + type: LayoutAnimation.Types.easeInEaseOut, + property: LayoutAnimation.Properties.opacity + }, + update: { + type: LayoutAnimation.Types.easeInEaseOut + }, + delete: { + type: LayoutAnimation.Types.easeInEaseOut, + property: LayoutAnimation.Properties.opacity + } + }); + } + }, + 200, + true +); diff --git a/app/utils/localAuthentication.js b/app/utils/localAuthentication.js index 2419709f35..87df36f466 100644 --- a/app/utils/localAuthentication.js +++ b/app/utils/localAuthentication.js @@ -8,22 +8,26 @@ import UserPreferences from '../lib/userPreferences'; import store from '../lib/createStore'; import database from '../lib/database'; import { - ATTEMPTS_KEY, CHANGE_PASSCODE_EMITTER, LOCAL_AUTHENTICATE_EMITTER, LOCKED_OUT_TIMER_KEY, PASSCODE_KEY + ATTEMPTS_KEY, + CHANGE_PASSCODE_EMITTER, + LOCAL_AUTHENTICATE_EMITTER, + LOCKED_OUT_TIMER_KEY, + PASSCODE_KEY } from '../constants/localAuthentication'; import I18n from '../i18n'; import { setLocalAuthenticated } from '../actions/login'; import EventEmitter from './events'; import { isIOS } from './deviceInfo'; -export const saveLastLocalAuthenticationSession = async(server, serverRecord) => { +export const saveLastLocalAuthenticationSession = async (server, serverRecord) => { const serversDB = database.servers; const serversCollection = serversDB.get('servers'); - await serversDB.action(async() => { + await serversDB.action(async () => { try { if (!serverRecord) { serverRecord = await serversCollection.find(server); } - await serverRecord.update((record) => { + await serverRecord.update(record => { record.lastLocalAuthenticatedSession = new Date(); }); } catch (e) { @@ -34,43 +38,46 @@ export const saveLastLocalAuthenticationSession = async(server, serverRecord) => export const resetAttempts = () => AsyncStorage.multiRemove([LOCKED_OUT_TIMER_KEY, ATTEMPTS_KEY]); -const openModal = hasBiometry => new Promise((resolve) => { - EventEmitter.emit(LOCAL_AUTHENTICATE_EMITTER, { - submit: () => resolve(), - hasBiometry +const openModal = hasBiometry => + new Promise(resolve => { + EventEmitter.emit(LOCAL_AUTHENTICATE_EMITTER, { + submit: () => resolve(), + hasBiometry + }); }); -}); -const openChangePasscodeModal = ({ force }) => new Promise((resolve, reject) => { - EventEmitter.emit(CHANGE_PASSCODE_EMITTER, { - submit: passcode => resolve(passcode), - cancel: () => reject(), - force +const openChangePasscodeModal = ({ force }) => + new Promise((resolve, reject) => { + EventEmitter.emit(CHANGE_PASSCODE_EMITTER, { + submit: passcode => resolve(passcode), + cancel: () => reject(), + force + }); }); -}); -export const changePasscode = async({ force = false }) => { +export const changePasscode = async ({ force = false }) => { const passcode = await openChangePasscodeModal({ force }); await UserPreferences.setStringAsync(PASSCODE_KEY, sha256(passcode)); }; -export const biometryAuth = force => LocalAuthentication.authenticateAsync({ - disableDeviceFallback: true, - cancelLabel: force ? I18n.t('Dont_activate') : I18n.t('Local_authentication_biometry_fallback'), - promptMessage: I18n.t('Local_authentication_biometry_title') -}); +export const biometryAuth = force => + LocalAuthentication.authenticateAsync({ + disableDeviceFallback: true, + cancelLabel: force ? I18n.t('Dont_activate') : I18n.t('Local_authentication_biometry_fallback'), + promptMessage: I18n.t('Local_authentication_biometry_title') + }); /* * It'll help us to get the permission to use FaceID * and enable/disable the biometry when user put their first passcode -*/ -const checkBiometry = async(serverRecord) => { + */ +const checkBiometry = async serverRecord => { const serversDB = database.servers; const result = await biometryAuth(true); - await serversDB.action(async() => { + await serversDB.action(async () => { try { - await serverRecord.update((record) => { + await serverRecord.update(record => { record.biometry = !!result?.success; }); } catch { @@ -79,7 +86,7 @@ const checkBiometry = async(serverRecord) => { }); }; -export const checkHasPasscode = async({ force = true, serverRecord }) => { +export const checkHasPasscode = async ({ force = true, serverRecord }) => { const storedPasscode = await UserPreferences.getStringAsync(PASSCODE_KEY); if (!storedPasscode) { await changePasscode({ force }); @@ -89,7 +96,7 @@ export const checkHasPasscode = async({ force = true, serverRecord }) => { return Promise.resolve(); }; -export const localAuthenticate = async(server) => { +export const localAuthenticate = async server => { const serversDB = database.servers; const serversCollection = serversDB.get('servers'); @@ -139,7 +146,7 @@ export const localAuthenticate = async(server) => { } }; -export const supportedBiometryLabel = async() => { +export const supportedBiometryLabel = async () => { try { const enrolled = await LocalAuthentication.isEnrolledAsync(); diff --git a/app/utils/log/index.js b/app/utils/log/index.js index 52aaf1de93..41074832f1 100644 --- a/app/utils/log/index.js +++ b/app/utils/log/index.js @@ -12,7 +12,6 @@ let reportAnalyticsEvents = true; export const getReportCrashErrorsValue = () => reportCrashErrors; export const getReportAnalyticsEventsValue = () => reportAnalyticsEvents; - if (!isFDroidBuild) { bugsnag = require('@bugsnag/react-native').default; bugsnag.start({ @@ -20,7 +19,9 @@ if (!isFDroidBuild) { return reportAnalyticsEvents; }, onError(error) { - if (!reportAnalyticsEvents) { error.breadcrumbs = []; } + if (!reportAnalyticsEvents) { + error.breadcrumbs = []; + } return reportCrashErrors; } }); @@ -33,7 +34,7 @@ export { events }; let metadata = {}; -export const logServerVersion = (serverVersion) => { +export const logServerVersion = serverVersion => { metadata = { serverVersion }; @@ -50,26 +51,26 @@ export const logEvent = (eventName, payload) => { } }; -export const setCurrentScreen = (currentScreen) => { +export const setCurrentScreen = currentScreen => { if (!isFDroidBuild) { analytics().setCurrentScreen(currentScreen); bugsnag.leaveBreadcrumb(currentScreen, { type: 'navigation' }); } }; -export const toggleCrashErrorsReport = (value) => { +export const toggleCrashErrorsReport = value => { crashlytics().setCrashlyticsCollectionEnabled(value); - return reportCrashErrors = value; + return (reportCrashErrors = value); }; -export const toggleAnalyticsEventsReport = (value) => { +export const toggleAnalyticsEventsReport = value => { analytics().setAnalyticsCollectionEnabled(value); - return reportAnalyticsEvents = value; + return (reportAnalyticsEvents = value); }; -export default (e) => { +export default e => { if (e instanceof Error && bugsnag && e.message !== 'Aborted' && !__DEV__) { - bugsnag.notify(e, (event) => { + bugsnag.notify(e, event => { event.addMetadata('details', { ...metadata }); }); if (!isFDroidBuild) { diff --git a/app/utils/messageTypes.js b/app/utils/messageTypes.js index eacd2c514e..d1f6fbf691 100644 --- a/app/utils/messageTypes.js +++ b/app/utils/messageTypes.js @@ -2,40 +2,52 @@ export const MessageTypeValues = [ { value: 'uj', text: 'Message_HideType_uj' - }, { + }, + { value: 'ul', text: 'Message_HideType_ul' - }, { + }, + { value: 'ru', text: 'Message_HideType_ru' - }, { + }, + { value: 'au', text: 'Message_HideType_au' - }, { + }, + { value: 'mute_unmute', text: 'Message_HideType_mute_unmute' - }, { + }, + { value: 'r', text: 'Message_HideType_r' - }, { + }, + { value: 'ut', text: 'Message_HideType_ut' - }, { + }, + { value: 'wm', text: 'Message_HideType_wm' - }, { + }, + { value: 'rm', text: 'Message_HideType_rm' - }, { + }, + { value: 'subscription-role-added', text: 'Message_HideType_subscription_role_added' - }, { + }, + { value: 'subscription-role-removed', text: 'Message_HideType_subscription_role_removed' - }, { + }, + { value: 'room_archived', text: 'Message_HideType_room_archived' - }, { + }, + { value: 'room_unarchived', text: 'Message_HideType_room_unarchived' } diff --git a/app/utils/navigation/animations.js b/app/utils/navigation/animations.js index 7f379fcbfb..9f99764c4f 100644 --- a/app/utils/navigation/animations.js +++ b/app/utils/navigation/animations.js @@ -6,10 +6,7 @@ import conditional from './conditional'; const { multiply } = Animated; -const forFadeFromCenter = ({ - current, - closing -}) => { +const forFadeFromCenter = ({ current, closing }) => { const opacity = conditional( closing, current.progress, @@ -51,11 +48,7 @@ export const FadeFromCenterModal = { cardStyleInterpolator: forFadeFromCenter }; -const forStackAndroid = ({ - current, - inverted, - layouts: { screen } -}) => { +const forStackAndroid = ({ current, inverted, layouts: { screen } }) => { const translateX = multiply( current.progress.interpolate({ inputRange: [0, 1], diff --git a/app/utils/navigation/index.ts b/app/utils/navigation/index.ts index 98a6e2de23..9314e88e8b 100644 --- a/app/utils/navigation/index.ts +++ b/app/utils/navigation/index.ts @@ -8,27 +8,26 @@ export * from './animations'; export const defaultHeader = { headerBackTitleVisible: false, cardOverlayEnabled: true, - cardStyle: { backgroundColor: 'transparent' }, + cardStyle: { backgroundColor: 'transparent' } }; - export const cardStyle = { - backgroundColor: 'rgba(0,0,0,0)', + backgroundColor: 'rgba(0,0,0,0)' }; export const borderBottom: any = (theme: any) => ({ borderBottomWidth: StyleSheet.hairlineWidth, borderBottomColor: themes[theme].headerBorder, - elevation: 0, + elevation: 0 }); export const themedHeader = (theme: any) => ({ headerStyle: { ...borderBottom(theme), - backgroundColor: themes[theme].headerBackground, + backgroundColor: themes[theme].headerBackground }, headerTintColor: themes[theme].headerTintColor, - headerTitleStyle: { color: themes[theme].headerTitleColor }, + headerTitleStyle: { color: themes[theme].headerTitleColor } }); export const navigationTheme = (theme: any) => { @@ -39,8 +38,8 @@ export const navigationTheme = (theme: any) => { colors: { ...defaultNavTheme.colors, background: themes[theme].backgroundColor, - border: themes[theme].borderColor, - }, + border: themes[theme].borderColor + } }; }; diff --git a/app/utils/openLink.js b/app/utils/openLink.js index 7036254978..92df16a70a 100644 --- a/app/utils/openLink.js +++ b/app/utils/openLink.js @@ -27,15 +27,15 @@ const appSchemeURL = (url, browser) => { schemeUrl = url.replace(protocol, scheme.chromeSecure); } } else if (browser === 'firefox') { - schemeUrl = `${ scheme.firefox }//open-url?url=${ url }`; + schemeUrl = `${scheme.firefox}//open-url?url=${url}`; } else if (browser === 'brave') { - schemeUrl = `${ scheme.brave }//open-url?url=${ url }`; + schemeUrl = `${scheme.brave}//open-url?url=${url}`; } return schemeUrl; }; -const openLink = async(url, theme = 'light') => { +const openLink = async (url, theme = 'light') => { try { const browser = await UserPreferences.getStringAsync(DEFAULT_BROWSER_KEY); diff --git a/app/utils/review.js b/app/utils/review.js index 2070dbb837..15f1cf968f 100644 --- a/app/utils/review.js +++ b/app/utils/review.js @@ -32,7 +32,7 @@ const onCancelPress = () => { } }; -export const onReviewPress = async() => { +export const onReviewPress = async () => { logEvent(events.SE_REVIEW_THIS_APP); await onCancelPress(); try { @@ -59,20 +59,19 @@ const onReviewButton = { text: I18n.t('Review_app_yes'), onPress: onReviewPress const onAskMeLaterButton = { text: I18n.t('Review_app_later'), onPress: onAskMeLaterPress }; const onCancelButton = { text: I18n.t('Review_app_no'), onPress: onCancelPress }; -const askReview = () => Alert.alert( - I18n.t('Review_app_title'), - I18n.t('Review_app_desc', { store }), - isIOS - ? [onReviewButton, onAskMeLaterButton, onCancelButton] - : [onAskMeLaterButton, onCancelButton, onReviewButton], - { - cancelable: true, - onDismiss: onAskMeLaterPress - } -); +const askReview = () => + Alert.alert( + I18n.t('Review_app_title'), + I18n.t('Review_app_desc', { store }), + isIOS ? [onReviewButton, onAskMeLaterButton, onCancelButton] : [onAskMeLaterButton, onCancelButton, onReviewButton], + { + cancelable: true, + onDismiss: onAskMeLaterPress + } + ); -const tryReview = async() => { - const data = await AsyncStorage.getItem(reviewKey) || '{}'; +const tryReview = async () => { + const data = (await AsyncStorage.getItem(reviewKey)) || '{}'; const reviewData = JSON.parse(data); const { lastReview = 0, doneReview = false } = reviewData; const lastReviewDate = new Date(lastReview); @@ -97,7 +96,7 @@ class ReviewApp { tryReview(); } } - } + }; } export const Review = new ReviewApp(); diff --git a/app/utils/room.js b/app/utils/room.js index e6955d8ee5..67df65a98c 100644 --- a/app/utils/room.js +++ b/app/utils/room.js @@ -3,7 +3,7 @@ import moment from 'moment'; import { themes } from '../constants/colors'; import I18n from '../i18n'; -export const isBlocked = (room) => { +export const isBlocked = room => { if (room) { const { t, blocked, blocker } = room; if (t === 'd' && (blocked || blocker)) { @@ -13,24 +13,28 @@ export const isBlocked = (room) => { return false; }; -export const capitalize = (s) => { - if (typeof s !== 'string') { return ''; } +export const capitalize = s => { + if (typeof s !== 'string') { + return ''; + } return s.charAt(0).toUpperCase() + s.slice(1); }; -export const formatDate = date => moment(date).calendar(null, { - lastDay: `[${ I18n.t('Yesterday') }]`, - sameDay: 'LT', - lastWeek: 'dddd', - sameElse: 'L' -}); - -export const formatDateThreads = date => moment(date).calendar(null, { - sameDay: 'LT', - lastDay: `[${ I18n.t('Yesterday') }] LT`, - lastWeek: 'dddd LT', - sameElse: 'LL' -}); +export const formatDate = date => + moment(date).calendar(null, { + lastDay: `[${I18n.t('Yesterday')}]`, + sameDay: 'LT', + lastWeek: 'dddd', + sameElse: 'L' + }); + +export const formatDateThreads = date => + moment(date).calendar(null, { + sameDay: 'LT', + lastDay: `[${I18n.t('Yesterday')}] LT`, + lastWeek: 'dddd LT', + sameElse: 'LL' + }); export const getBadgeColor = ({ subscription, messageId, theme }) => { if (subscription?.tunreadUser?.includes(messageId)) { diff --git a/app/utils/scaling.js b/app/utils/scaling.js index 1168cc6148..f154a50a98 100644 --- a/app/utils/scaling.js +++ b/app/utils/scaling.js @@ -9,6 +9,6 @@ const guidelineBaseHeight = isTablet ? 800 : 667; const scale = size => (width / guidelineBaseWidth) * size; const verticalScale = size => (height / guidelineBaseHeight) * size; -const moderateScale = (size, factor = 0.5) => size + ((scale(size) - size) * factor); +const moderateScale = (size, factor = 0.5) => size + (scale(size) - size) * factor; export { scale, verticalScale, moderateScale }; diff --git a/app/utils/server.js b/app/utils/server.js index 0dcc105465..e7be96b305 100644 --- a/app/utils/server.js +++ b/app/utils/server.js @@ -3,11 +3,11 @@ url = 'https://open.rocket.chat/method' hostname = 'open.rocket.chat' */ -export const extractHostname = (url) => { +export const extractHostname = url => { let hostname; if (url.indexOf('//') > -1) { - [,, hostname] = url.split('/'); + [, , hostname] = url.split('/'); } else { [hostname] = url.split('/'); } diff --git a/app/utils/shortnameToUnicode/ascii.js b/app/utils/shortnameToUnicode/ascii.js index be3cae336d..4d9d04cd3a 100644 --- a/app/utils/shortnameToUnicode/ascii.js +++ b/app/utils/shortnameToUnicode/ascii.js @@ -3,8 +3,125 @@ /* eslint-disable object-curly-spacing */ /* eslint-disable comma-spacing */ /* eslint-disable key-spacing */ -const ascii = {'*\\0/*':'🙆','*\\O/*':'🙆','-___-':'😑',':\'-)':'😂','\':-)':'😅','\':-D':'😅','>:-)':'😆','\':-(':'😓','>:-(':'😠',':\'-(':'😢','O:-)':'😇','0:-3':'😇','0:-)':'😇','0;^)':'😇','O;-)':'😇','0;-)':'😇','O:-3':'😇','-__-':'😑',':-Þ':'😛','</3':'💔',':\')':'😂',':-D':'😃','\':)':'😅','\'=)':'😅','\':D':'😅','\'=D':'😅','>:)':'😆','>;)':'😆','>=)':'😆',';-)':'😉','*-)':'😉',';-]':'😉',';^)':'😉','\':(':'😓','\'=(':'😓',':-*':'😘',':^*':'😘','>:P':'😜','X-P':'😜','>:[':'😞',':-(':'😞',':-[':'😞','>:(':'😠',':\'(':'😢',';-(':'😢','>.<':'😣','#-)':'😵','%-)':'😵','X-)':'😵','\\0/':'🙆','\\O/':'🙆','0:3':'😇','0:)':'😇','O:)':'😇','O=)':'😇','O:3':'😇','B-)':'😎','8-)':'😎','B-D':'😎','8-D':'😎','-_-':'😑','>:\\':'😕','>:/':'😕',':-/':'😕',':-.':'😕',':-P':'😛',':Þ':'😛',':-b':'😛',':-O':'😮','O_O':'😮','>:O':'😮',':-X':'😶',':-#':'😶',':-)':'🙂','(y)':'👍','<3':'❤','=D':'😃',';)':'😉','*)':'😉',';]':'😉',';D':'😉',':*':'😘','=*':'😘',':(':'😞',':[':'😞','=(':'😞',':@':'😠',';(':'😢','D:':'😨',':$':'😳','=$':'😳','#)':'😵','%)':'😵','X)':'😵','B)':'😎','8)':'😎',':/':'😕',':\\':'😕','=/':'😕','=\\':'😕',':L':'😕','=L':'😕',':P':'😛','=P':'😛',':b':'😛',':O':'😮',':X':'😶',':#':'😶','=X':'😶','=#':'😶',':)':'🙂','=]':'🙂','=)':'🙂',':]':'🙂',':D':'😄'}; +const ascii = { + '*\\0/*': '🙆', + '*\\O/*': '🙆', + '-___-': '😑', + ":'-)": '😂', + "':-)": '😅', + "':-D": '😅', + '>:-)': '😆', + "':-(": '😓', + '>:-(': '😠', + ":'-(": '😢', + 'O:-)': '😇', + '0:-3': '😇', + '0:-)': '😇', + '0;^)': '😇', + 'O;-)': '😇', + '0;-)': '😇', + 'O:-3': '😇', + '-__-': '😑', + ':-Þ': '😛', + '</3': '💔', + ":')": '😂', + ':-D': '😃', + "':)": '😅', + "'=)": '😅', + "':D": '😅', + "'=D": '😅', + '>:)': '😆', + '>;)': '😆', + '>=)': '😆', + ';-)': '😉', + '*-)': '😉', + ';-]': '😉', + ';^)': '😉', + "':(": '😓', + "'=(": '😓', + ':-*': '😘', + ':^*': '😘', + '>:P': '😜', + 'X-P': '😜', + '>:[': '😞', + ':-(': '😞', + ':-[': '😞', + '>:(': '😠', + ":'(": '😢', + ';-(': '😢', + '>.<': '😣', + '#-)': '😵', + '%-)': '😵', + 'X-)': '😵', + '\\0/': '🙆', + '\\O/': '🙆', + '0:3': '😇', + '0:)': '😇', + 'O:)': '😇', + 'O=)': '😇', + 'O:3': '😇', + 'B-)': '😎', + '8-)': '😎', + 'B-D': '😎', + '8-D': '😎', + '-_-': '😑', + '>:\\': '😕', + '>:/': '😕', + ':-/': '😕', + ':-.': '😕', + ':-P': '😛', + ':Þ': '😛', + ':-b': '😛', + ':-O': '😮', + O_O: '😮', + '>:O': '😮', + ':-X': '😶', + ':-#': '😶', + ':-)': '🙂', + '(y)': '👍', + '<3': '❤', + '=D': '😃', + ';)': '😉', + '*)': '😉', + ';]': '😉', + ';D': '😉', + ':*': '😘', + '=*': '😘', + ':(': '😞', + ':[': '😞', + '=(': '😞', + ':@': '😠', + ';(': '😢', + 'D:': '😨', + ':$': '😳', + '=$': '😳', + '#)': '😵', + '%)': '😵', + 'X)': '😵', + 'B)': '😎', + '8)': '😎', + ':/': '😕', + ':\\': '😕', + '=/': '😕', + '=\\': '😕', + ':L': '😕', + '=L': '😕', + ':P': '😛', + '=P': '😛', + ':b': '😛', + ':O': '😮', + ':X': '😶', + ':#': '😶', + '=X': '😶', + '=#': '😶', + ':)': '🙂', + '=]': '🙂', + '=)': '🙂', + ':]': '🙂', + ':D': '😄' +}; -export const asciiRegexp = '(\\*\\\\0\\/\\*|\\*\\\\O\\/\\*|\\-___\\-|\\:\'\\-\\)|\'\\:\\-\\)|\'\\:\\-D|\\>\\:\\-\\)|>\\:\\-\\)|\'\\:\\-\\(|\\>\\:\\-\\(|>\\:\\-\\(|\\:\'\\-\\(|O\\:\\-\\)|0\\:\\-3|0\\:\\-\\)|0;\\^\\)|O;\\-\\)|0;\\-\\)|O\\:\\-3|\\-__\\-|\\:\\-Þ|\\:\\-Þ|\\<\\/3|<\\/3|\\:\'\\)|\\:\\-D|\'\\:\\)|\'\\=\\)|\'\\:D|\'\\=D|\\>\\:\\)|>\\:\\)|\\>;\\)|>;\\)|\\>\\=\\)|>\\=\\)|;\\-\\)|\\*\\-\\)|;\\-\\]|;\\^\\)|\'\\:\\(|\'\\=\\(|\\:\\-\\*|\\:\\^\\*|\\>\\:P|>\\:P|X\\-P|\\>\\:\\[|>\\:\\[|\\:\\-\\(|\\:\\-\\[|\\>\\:\\(|>\\:\\(|\\:\'\\(|;\\-\\(|\\>\\.\\<|>\\.<|#\\-\\)|%\\-\\)|X\\-\\)|\\\\0\\/|\\\\O\\/|0\\:3|0\\:\\)|O\\:\\)|O\\=\\)|O\\:3|B\\-\\)|8\\-\\)|B\\-D|8\\-D|\\-_\\-|\\>\\:\\\\|>\\:\\\\|\\>\\:\\/|>\\:\\/|\\:\\-\\/|\\:\\-\\.|\\:\\-P|\\:Þ|\\:Þ|\\:\\-b|\\:\\-O|O_O|\\>\\:O|>\\:O|\\:\\-X|\\:\\-#|\\:\\-\\)|\\(y\\)|\\<3|<3|\\=D|;\\)|\\*\\)|;\\]|;D|\\:\\*|\\=\\*|\\:\\(|\\:\\[|\\=\\(|\\:@|;\\(|D\\:|\\:\\$|\\=\\$|#\\)|%\\)|X\\)|B\\)|8\\)|\\:\\/|\\:\\\\|\\=\\/|\\=\\\\|\\:L|\\=L|\\:P|\\=P|\\:b|\\:O|\\:X|\\:#|\\=X|\\=#|\\:\\)|\\=\\]|\\=\\)|\\:\\]|\\:D)'; +export const asciiRegexp = + "(\\*\\\\0\\/\\*|\\*\\\\O\\/\\*|\\-___\\-|\\:'\\-\\)|'\\:\\-\\)|'\\:\\-D|\\>\\:\\-\\)|>\\:\\-\\)|'\\:\\-\\(|\\>\\:\\-\\(|>\\:\\-\\(|\\:'\\-\\(|O\\:\\-\\)|0\\:\\-3|0\\:\\-\\)|0;\\^\\)|O;\\-\\)|0;\\-\\)|O\\:\\-3|\\-__\\-|\\:\\-Þ|\\:\\-Þ|\\<\\/3|<\\/3|\\:'\\)|\\:\\-D|'\\:\\)|'\\=\\)|'\\:D|'\\=D|\\>\\:\\)|>\\:\\)|\\>;\\)|>;\\)|\\>\\=\\)|>\\=\\)|;\\-\\)|\\*\\-\\)|;\\-\\]|;\\^\\)|'\\:\\(|'\\=\\(|\\:\\-\\*|\\:\\^\\*|\\>\\:P|>\\:P|X\\-P|\\>\\:\\[|>\\:\\[|\\:\\-\\(|\\:\\-\\[|\\>\\:\\(|>\\:\\(|\\:'\\(|;\\-\\(|\\>\\.\\<|>\\.<|#\\-\\)|%\\-\\)|X\\-\\)|\\\\0\\/|\\\\O\\/|0\\:3|0\\:\\)|O\\:\\)|O\\=\\)|O\\:3|B\\-\\)|8\\-\\)|B\\-D|8\\-D|\\-_\\-|\\>\\:\\\\|>\\:\\\\|\\>\\:\\/|>\\:\\/|\\:\\-\\/|\\:\\-\\.|\\:\\-P|\\:Þ|\\:Þ|\\:\\-b|\\:\\-O|O_O|\\>\\:O|>\\:O|\\:\\-X|\\:\\-#|\\:\\-\\)|\\(y\\)|\\<3|<3|\\=D|;\\)|\\*\\)|;\\]|;D|\\:\\*|\\=\\*|\\:\\(|\\:\\[|\\=\\(|\\:@|;\\(|D\\:|\\:\\$|\\=\\$|#\\)|%\\)|X\\)|B\\)|8\\)|\\:\\/|\\:\\\\|\\=\\/|\\=\\\\|\\:L|\\=L|\\:P|\\=P|\\:b|\\:O|\\:X|\\:#|\\=X|\\=#|\\:\\)|\\=\\]|\\=\\)|\\:\\]|\\:D)"; export default ascii; diff --git a/app/utils/shortnameToUnicode/emojis.js b/app/utils/shortnameToUnicode/emojis.js index e6f2947196..14cd61337c 100644 --- a/app/utils/shortnameToUnicode/emojis.js +++ b/app/utils/shortnameToUnicode/emojis.js @@ -3,5 +3,4633 @@ /* eslint-disable object-curly-spacing */ /* eslint-disable comma-spacing */ /* eslint-disable key-spacing */ -const emojis = {':england:':'🏴󠁧󠁢󠁥󠁮󠁧󠁿',':scotland:':'🏴󠁧󠁢󠁳󠁣󠁴󠁿',':wales:':'🏴󠁧󠁢󠁷󠁬󠁳󠁿',':men_holding_hands_medium_light_skin_tone_light_skin_tone:':'👨🏼‍🤝‍👨🏻',':men_holding_hands_tone2_tone1:':'👨🏼‍🤝‍👨🏻',':men_holding_hands_medium_skin_tone_light_skin_tone:':'👨🏽‍🤝‍👨🏻',':men_holding_hands_tone3_tone1:':'👨🏽‍🤝‍👨🏻',':men_holding_hands_medium_skin_tone_medium_light_skin_tone:':'👨🏽‍🤝‍👨🏼',':men_holding_hands_tone3_tone2:':'👨🏽‍🤝‍👨🏼',':men_holding_hands_medium_dark_skin_tone_light_skin_tone:':'👨🏾‍🤝‍👨🏻',':men_holding_hands_tone4_tone1:':'👨🏾‍🤝‍👨🏻',':men_holding_hands_medium_dark_skin_tone_medium_light_skin_tone:':'👨🏾‍🤝‍👨🏼',':men_holding_hands_tone4_tone2:':'👨🏾‍🤝‍👨🏼',':men_holding_hands_medium_dark_skin_tone_medium_skin_tone:':'👨🏾‍🤝‍👨🏽',':men_holding_hands_tone4_tone3:':'👨🏾‍🤝‍👨🏽',':men_holding_hands_dark_skin_tone_light_skin_tone:':'👨🏿‍🤝‍👨🏻',':men_holding_hands_tone5_tone1:':'👨🏿‍🤝‍👨🏻',':men_holding_hands_dark_skin_tone_medium_light_skin_tone:':'👨🏿‍🤝‍👨🏼',':men_holding_hands_tone5_tone2:':'👨🏿‍🤝‍👨🏼',':men_holding_hands_dark_skin_tone_medium_skin_tone:':'👨🏿‍🤝‍👨🏽',':men_holding_hands_tone5_tone3:':'👨🏿‍🤝‍👨🏽',':men_holding_hands_dark_skin_tone_medium_dark_skin_tone:':'👨🏿‍🤝‍👨🏾',':men_holding_hands_tone5_tone4:':'👨🏿‍🤝‍👨🏾',':people_holding_hands_light_skin_tone:':'🧑🏻‍🤝‍🧑🏻',':people_holding_hands_tone1:':'🧑🏻‍🤝‍🧑🏻',':people_holding_hands_medium_light_skin_tone:':'🧑🏼‍🤝‍🧑🏼',':people_holding_hands_tone2:':'🧑🏼‍🤝‍🧑🏼',':people_holding_hands_medium_light_skin_tone_light_skin_tone:':'🧑🏼‍🤝‍🧑🏻',':people_holding_hands_tone2_tone1:':'🧑🏼‍🤝‍🧑🏻',':people_holding_hands_medium_skin_tone:':'🧑🏽‍🤝‍🧑🏽',':people_holding_hands_tone3:':'🧑🏽‍🤝‍🧑🏽',':people_holding_hands_medium_skin_tone_light_skin_tone:':'🧑🏽‍🤝‍🧑🏻',':people_holding_hands_tone3_tone1:':'🧑🏽‍🤝‍🧑🏻',':people_holding_hands_medium_skin_tone_medium_light_skin_tone:':'🧑🏽‍🤝‍🧑🏼',':people_holding_hands_tone3_tone2:':'🧑🏽‍🤝‍🧑🏼',':people_holding_hands_medium_dark_skin_tone:':'🧑🏾‍🤝‍🧑🏾',':people_holding_hands_tone4:':'🧑🏾‍🤝‍🧑🏾',':people_holding_hands_medium_dark_skin_tone_light_skin_tone:':'🧑🏾‍🤝‍🧑🏻',':people_holding_hands_tone4_tone1:':'🧑🏾‍🤝‍🧑🏻',':people_holding_hands_medium_dark_skin_tone_medium_light_skin_tone:':'🧑🏾‍🤝‍🧑🏼',':people_holding_hands_tone4_tone2:':'🧑🏾‍🤝‍🧑🏼',':people_holding_hands_medium_dark_skin_tone_medium_skin_tone:':'🧑🏾‍🤝‍🧑🏽',':people_holding_hands_tone4_tone3:':'🧑🏾‍🤝‍🧑🏽',':people_holding_hands_dark_skin_tone:':'🧑🏿‍🤝‍🧑🏿',':people_holding_hands_tone5:':'🧑🏿‍🤝‍🧑🏿',':people_holding_hands_dark_skin_tone_light_skin_tone:':'🧑🏿‍🤝‍🧑🏻',':people_holding_hands_tone5_tone1:':'🧑🏿‍🤝‍🧑🏻',':people_holding_hands_dark_skin_tone_medium_light_skin_tone:':'🧑🏿‍🤝‍🧑🏼',':people_holding_hands_tone5_tone2:':'🧑🏿‍🤝‍🧑🏼',':people_holding_hands_dark_skin_tone_medium_skin_tone:':'🧑🏿‍🤝‍🧑🏽',':people_holding_hands_tone5_tone3:':'🧑🏿‍🤝‍🧑🏽',':people_holding_hands_dark_skin_tone_medium_dark_skin_tone:':'🧑🏿‍🤝‍🧑🏾',':people_holding_hands_tone5_tone4:':'🧑🏿‍🤝‍🧑🏾',':woman_and_man_holding_hands_light_skin_tone_medium_light_skin_tone:':'👩🏻‍🤝‍👨🏼',':woman_and_man_holding_hands_tone1_tone2:':'👩🏻‍🤝‍👨🏼',':woman_and_man_holding_hands_light_skin_tone_medium_skin_tone:':'👩🏻‍🤝‍👨🏽',':woman_and_man_holding_hands_tone1_tone3:':'👩🏻‍🤝‍👨🏽',':woman_and_man_holding_hands_light_skin_tone_medium_dark_skin_tone:':'👩🏻‍🤝‍👨🏾',':woman_and_man_holding_hands_tone1_tone4:':'👩🏻‍🤝‍👨🏾',':woman_and_man_holding_hands_light_skin_tone_dark_skin_tone:':'👩🏻‍🤝‍👨🏿',':woman_and_man_holding_hands_tone1_tone5:':'👩🏻‍🤝‍👨🏿',':woman_and_man_holding_hands_medium_light_skin_tone_light_skin_tone:':'👩🏼‍🤝‍👨🏻',':woman_and_man_holding_hands_tone2_tone1:':'👩🏼‍🤝‍👨🏻',':woman_and_man_holding_hands_medium_light_skin_tone_medium_skin_tone:':'👩🏼‍🤝‍👨🏽',':woman_and_man_holding_hands_tone2_tone3:':'👩🏼‍🤝‍👨🏽',':woman_and_man_holding_hands_medium_light_skin_tone_medium_dark_skin_tone:':'👩🏼‍🤝‍👨🏾',':woman_and_man_holding_hands_tone2_tone4:':'👩🏼‍🤝‍👨🏾',':woman_and_man_holding_hands_medium_light_skin_tone_dark_skin_tone:':'👩🏼‍🤝‍👨🏿',':woman_and_man_holding_hands_tone2_tone5:':'👩🏼‍🤝‍👨🏿',':woman_and_man_holding_hands_medium_skin_tone_light_skin_tone:':'👩🏽‍🤝‍👨🏻',':woman_and_man_holding_hands_tone3_tone1:':'👩🏽‍🤝‍👨🏻',':woman_and_man_holding_hands_medium_skin_tone_medium_light_skin_tone:':'👩🏽‍🤝‍👨🏼',':woman_and_man_holding_hands_tone3_tone2:':'👩🏽‍🤝‍👨🏼',':woman_and_man_holding_hands_medium_skin_tone_medium_dark_skin_tone:':'👩🏽‍🤝‍👨🏾',':woman_and_man_holding_hands_tone3_tone4:':'👩🏽‍🤝‍👨🏾',':woman_and_man_holding_hands_medium_skin_tone_dark_skin_tone:':'👩🏽‍🤝‍👨🏿',':woman_and_man_holding_hands_tone3_tone5:':'👩🏽‍🤝‍👨🏿',':woman_and_man_holding_hands_medium_dark_skin_tone_light_skin_tone:':'👩🏾‍🤝‍👨🏻',':woman_and_man_holding_hands_tone4_tone1:':'👩🏾‍🤝‍👨🏻',':woman_and_man_holding_hands_medium_dark_skin_tone_medium_light_skin_tone:':'👩🏾‍🤝‍👨🏼',':woman_and_man_holding_hands_tone4_tone2:':'👩🏾‍🤝‍👨🏼',':woman_and_man_holding_hands_medium_dark_skin_tone_medium_skin_tone:':'👩🏾‍🤝‍👨🏽',':woman_and_man_holding_hands_tone4_tone3:':'👩🏾‍🤝‍👨🏽',':woman_and_man_holding_hands_medium_dark_skin_tone_dark_skin_tone:':'👩🏾‍🤝‍👨🏿',':woman_and_man_holding_hands_tone4_tone5:':'👩🏾‍🤝‍👨🏿',':woman_and_man_holding_hands_dark_skin_tone_light_skin_tone:':'👩🏿‍🤝‍👨🏻',':woman_and_man_holding_hands_tone5_tone1:':'👩🏿‍🤝‍👨🏻',':woman_and_man_holding_hands_dark_skin_tone_medium_light_skin_tone:':'👩🏿‍🤝‍👨🏼',':woman_and_man_holding_hands_tone5_tone2:':'👩🏿‍🤝‍👨🏼',':woman_and_man_holding_hands_dark_skin_tone_medium_skin_tone:':'👩🏿‍🤝‍👨🏽',':woman_and_man_holding_hands_tone5_tone3:':'👩🏿‍🤝‍👨🏽',':woman_and_man_holding_hands_dark_skin_tone_medium_dark_skin_tone:':'👩🏿‍🤝‍👨🏾',':woman_and_man_holding_hands_tone5_tone4:':'👩🏿‍🤝‍👨🏾',':women_holding_hands_medium_light_skin_tone_light_skin_tone:':'👩🏼‍🤝‍👩🏻',':women_holding_hands_tone2_tone1:':'👩🏼‍🤝‍👩🏻',':women_holding_hands_medium_skin_tone_light_skin_tone:':'👩🏽‍🤝‍👩🏻',':women_holding_hands_tone3_tone1:':'👩🏽‍🤝‍👩🏻',':women_holding_hands_medium_skin_tone_medium_light_skin_tone:':'👩🏽‍🤝‍👩🏼',':women_holding_hands_tone3_tone2:':'👩🏽‍🤝‍👩🏼',':women_holding_hands_medium_dark_skin_tone_light_skin_tone:':'👩🏾‍🤝‍👩🏻',':women_holding_hands_tone4_tone1:':'👩🏾‍🤝‍👩🏻',':women_holding_hands_medium_dark_skin_tone_medium_light_skin_tone:':'👩🏾‍🤝‍👩🏼',':women_holding_hands_tone4_tone2:':'👩🏾‍🤝‍👩🏼',':women_holding_hands_medium_dark_skin_tone_medium_skin_tone:':'👩🏾‍🤝‍👩🏽',':women_holding_hands_tone4_tone3:':'👩🏾‍🤝‍👩🏽',':women_holding_hands_dark_skin_tone_light_skin_tone:':'👩🏿‍🤝‍👩🏻',':women_holding_hands_tone5_tone1:':'👩🏿‍🤝‍👩🏻',':women_holding_hands_dark_skin_tone_medium_light_skin_tone:':'👩🏿‍🤝‍👩🏼',':women_holding_hands_tone5_tone2:':'👩🏿‍🤝‍👩🏼',':women_holding_hands_dark_skin_tone_medium_skin_tone:':'👩🏿‍🤝‍👩🏽',':women_holding_hands_tone5_tone3:':'👩🏿‍🤝‍👩🏽',':women_holding_hands_dark_skin_tone_medium_dark_skin_tone:':'👩🏿‍🤝‍👩🏾',':women_holding_hands_tone5_tone4:':'👩🏿‍🤝‍👩🏾',':family_mmbb:':'👨‍👨‍👦‍👦',':family_mmgb:':'👨‍👨‍👧‍👦',':family_mmgg:':'👨‍👨‍👧‍👧',':family_mwbb:':'👨‍👩‍👦‍👦',':family_mwgb:':'👨‍👩‍👧‍👦',':family_mwgg:':'👨‍👩‍👧‍👧',':family_wwbb:':'👩‍👩‍👦‍👦',':family_wwgb:':'👩‍👩‍👧‍👦',':family_wwgg:':'👩‍👩‍👧‍👧',':couplekiss_mm:':'👨‍❤️‍💋👨',':kiss_mm:':'👨‍❤️‍💋👨',':kiss_woman_man:':'👩‍❤️‍💋👨',':couplekiss_ww:':'👩‍❤️‍💋👩',':kiss_ww:':'👩‍❤️‍💋👩',':family_man_boy_boy:':'👨‍👦‍👦',':family_man_girl_boy:':'👨‍👧‍👦',':family_man_girl_girl:':'👨‍👧‍👧',':family_man_woman_boy:':'👨‍👩‍👦',':family_mmb:':'👨‍👨‍👦',':family_mmg:':'👨‍👨‍👧',':family_mwg:':'👨‍👩‍👧',':family_woman_boy_boy:':'👩‍👦‍👦',':family_woman_girl_boy:':'👩‍👧‍👦',':family_woman_girl_girl:':'👩‍👧‍👧',':family_wwb:':'👩‍👩‍👦',':family_wwg:':'👩‍👩‍👧',':man_artist_light_skin_tone:':'👨🏻‍🎨',':man_artist_tone1:':'👨🏻‍🎨',':man_artist_medium_light_skin_tone:':'👨🏼‍🎨',':man_artist_tone2:':'👨🏼‍🎨',':man_artist_medium_skin_tone:':'👨🏽‍🎨',':man_artist_tone3:':'👨🏽‍🎨',':man_artist_medium_dark_skin_tone:':'👨🏾‍🎨',':man_artist_tone4:':'👨🏾‍🎨',':man_artist_dark_skin_tone:':'👨🏿‍🎨',':man_artist_tone5:':'👨🏿‍🎨',':man_astronaut_light_skin_tone:':'👨🏻‍🚀',':man_astronaut_tone1:':'👨🏻‍🚀',':man_astronaut_medium_light_skin_tone:':'👨🏼‍🚀',':man_astronaut_tone2:':'👨🏼‍🚀',':man_astronaut_medium_skin_tone:':'👨🏽‍🚀',':man_astronaut_tone3:':'👨🏽‍🚀',':man_astronaut_medium_dark_skin_tone:':'👨🏾‍🚀',':man_astronaut_tone4:':'👨🏾‍🚀',':man_astronaut_dark_skin_tone:':'👨🏿‍🚀',':man_astronaut_tone5:':'👨🏿‍🚀',':man_bald_light_skin_tone:':'👨🏻‍🦲',':man_bald_tone1:':'👨🏻‍🦲',':man_bald_medium_light_skin_tone:':'👨🏼‍🦲',':man_bald_tone2:':'👨🏼‍🦲',':man_bald_medium_skin_tone:':'👨🏽‍🦲',':man_bald_tone3:':'👨🏽‍🦲',':man_bald_medium_dark_skin_tone:':'👨🏾‍🦲',':man_bald_tone4:':'👨🏾‍🦲',':man_bald_dark_skin_tone:':'👨🏿‍🦲',':man_bald_tone5:':'👨🏿‍🦲',':man_cook_light_skin_tone:':'👨🏻‍🍳',':man_cook_tone1:':'👨🏻‍🍳',':man_cook_medium_light_skin_tone:':'👨🏼‍🍳',':man_cook_tone2:':'👨🏼‍🍳',':man_cook_medium_skin_tone:':'👨🏽‍🍳',':man_cook_tone3:':'👨🏽‍🍳',':man_cook_medium_dark_skin_tone:':'👨🏾‍🍳',':man_cook_tone4:':'👨🏾‍🍳',':man_cook_dark_skin_tone:':'👨🏿‍🍳',':man_cook_tone5:':'👨🏿‍🍳',':man_curly_haired_light_skin_tone:':'👨🏻‍🦱',':man_curly_haired_tone1:':'👨🏻‍🦱',':man_curly_haired_medium_light_skin_tone:':'👨🏼‍🦱',':man_curly_haired_tone2:':'👨🏼‍🦱',':man_curly_haired_medium_skin_tone:':'👨🏽‍🦱',':man_curly_haired_tone3:':'👨🏽‍🦱',':man_curly_haired_medium_dark_skin_tone:':'👨🏾‍🦱',':man_curly_haired_tone4:':'👨🏾‍🦱',':man_curly_haired_dark_skin_tone:':'👨🏿‍🦱',':man_curly_haired_tone5:':'👨🏿‍🦱',':man_factory_worker_light_skin_tone:':'👨🏻‍🏭',':man_factory_worker_tone1:':'👨🏻‍🏭',':man_factory_worker_medium_light_skin_tone:':'👨🏼‍🏭',':man_factory_worker_tone2:':'👨🏼‍🏭',':man_factory_worker_medium_skin_tone:':'👨🏽‍🏭',':man_factory_worker_tone3:':'👨🏽‍🏭',':man_factory_worker_medium_dark_skin_tone:':'👨🏾‍🏭',':man_factory_worker_tone4:':'👨🏾‍🏭',':man_factory_worker_dark_skin_tone:':'👨🏿‍🏭',':man_factory_worker_tone5:':'👨🏿‍🏭',':man_farmer_light_skin_tone:':'👨🏻‍🌾',':man_farmer_tone1:':'👨🏻‍🌾',':man_farmer_medium_light_skin_tone:':'👨🏼‍🌾',':man_farmer_tone2:':'👨🏼‍🌾',':man_farmer_medium_skin_tone:':'👨🏽‍🌾',':man_farmer_tone3:':'👨🏽‍🌾',':man_farmer_medium_dark_skin_tone:':'👨🏾‍🌾',':man_farmer_tone4:':'👨🏾‍🌾',':man_farmer_dark_skin_tone:':'👨🏿‍🌾',':man_farmer_tone5:':'👨🏿‍🌾',':man_firefighter_light_skin_tone:':'👨🏻‍🚒',':man_firefighter_tone1:':'👨🏻‍🚒',':man_firefighter_medium_light_skin_tone:':'👨🏼‍🚒',':man_firefighter_tone2:':'👨🏼‍🚒',':man_firefighter_medium_skin_tone:':'👨🏽‍🚒',':man_firefighter_tone3:':'👨🏽‍🚒',':man_firefighter_medium_dark_skin_tone:':'👨🏾‍🚒',':man_firefighter_tone4:':'👨🏾‍🚒',':man_firefighter_dark_skin_tone:':'👨🏿‍🚒',':man_firefighter_tone5:':'👨🏿‍🚒',':man_in_manual_wheelchair_light_skin_tone:':'👨🏻‍🦽',':man_in_manual_wheelchair_tone1:':'👨🏻‍🦽',':man_in_manual_wheelchair_medium_light_skin_tone:':'👨🏼‍🦽',':man_in_manual_wheelchair_tone2:':'👨🏼‍🦽',':man_in_manual_wheelchair_medium_skin_tone:':'👨🏽‍🦽',':man_in_manual_wheelchair_tone3:':'👨🏽‍🦽',':man_in_manual_wheelchair_medium_dark_skin_tone:':'👨🏾‍🦽',':man_in_manual_wheelchair_tone4:':'👨🏾‍🦽',':man_in_manual_wheelchair_dark_skin_tone:':'👨🏿‍🦽',':man_in_manual_wheelchair_tone5:':'👨🏿‍🦽',':man_in_motorized_wheelchair_light_skin_tone:':'👨🏻‍🦼',':man_in_motorized_wheelchair_tone1:':'👨🏻‍🦼',':man_in_motorized_wheelchair_medium_light_skin_tone:':'👨🏼‍🦼',':man_in_motorized_wheelchair_tone2:':'👨🏼‍🦼',':man_in_motorized_wheelchair_medium_skin_tone:':'👨🏽‍🦼',':man_in_motorized_wheelchair_tone3:':'👨🏽‍🦼',':man_in_motorized_wheelchair_medium_dark_skin_tone:':'👨🏾‍🦼',':man_in_motorized_wheelchair_tone4:':'👨🏾‍🦼',':man_in_motorized_wheelchair_dark_skin_tone:':'👨🏿‍🦼',':man_in_motorized_wheelchair_tone5:':'👨🏿‍🦼',':man_mechanic_light_skin_tone:':'👨🏻‍🔧',':man_mechanic_tone1:':'👨🏻‍🔧',':man_mechanic_medium_light_skin_tone:':'👨🏼‍🔧',':man_mechanic_tone2:':'👨🏼‍🔧',':man_mechanic_medium_skin_tone:':'👨🏽‍🔧',':man_mechanic_tone3:':'👨🏽‍🔧',':man_mechanic_medium_dark_skin_tone:':'👨🏾‍🔧',':man_mechanic_tone4:':'👨🏾‍🔧',':man_mechanic_dark_skin_tone:':'👨🏿‍🔧',':man_mechanic_tone5:':'👨🏿‍🔧',':man_office_worker_light_skin_tone:':'👨🏻‍💼',':man_office_worker_tone1:':'👨🏻‍💼',':man_office_worker_medium_light_skin_tone:':'👨🏼‍💼',':man_office_worker_tone2:':'👨🏼‍💼',':man_office_worker_medium_skin_tone:':'👨🏽‍💼',':man_office_worker_tone3:':'👨🏽‍💼',':man_office_worker_medium_dark_skin_tone:':'👨🏾‍💼',':man_office_worker_tone4:':'👨🏾‍💼',':man_office_worker_dark_skin_tone:':'👨🏿‍💼',':man_office_worker_tone5:':'👨🏿‍💼',':man_red_haired_light_skin_tone:':'👨🏻‍🦰',':man_red_haired_tone1:':'👨🏻‍🦰',':man_red_haired_medium_light_skin_tone:':'👨🏼‍🦰',':man_red_haired_tone2:':'👨🏼‍🦰',':man_red_haired_medium_skin_tone:':'👨🏽‍🦰',':man_red_haired_tone3:':'👨🏽‍🦰',':man_red_haired_medium_dark_skin_tone:':'👨🏾‍🦰',':man_red_haired_tone4:':'👨🏾‍🦰',':man_red_haired_dark_skin_tone:':'👨🏿‍🦰',':man_red_haired_tone5:':'👨🏿‍🦰',':man_scientist_light_skin_tone:':'👨🏻‍🔬',':man_scientist_tone1:':'👨🏻‍🔬',':man_scientist_medium_light_skin_tone:':'👨🏼‍🔬',':man_scientist_tone2:':'👨🏼‍🔬',':man_scientist_medium_skin_tone:':'👨🏽‍🔬',':man_scientist_tone3:':'👨🏽‍🔬',':man_scientist_medium_dark_skin_tone:':'👨🏾‍🔬',':man_scientist_tone4:':'👨🏾‍🔬',':man_scientist_dark_skin_tone:':'👨🏿‍🔬',':man_scientist_tone5:':'👨🏿‍🔬',':man_singer_light_skin_tone:':'👨🏻‍🎤',':man_singer_tone1:':'👨🏻‍🎤',':man_singer_medium_light_skin_tone:':'👨🏼‍🎤',':man_singer_tone2:':'👨🏼‍🎤',':man_singer_medium_skin_tone:':'👨🏽‍🎤',':man_singer_tone3:':'👨🏽‍🎤',':man_singer_medium_dark_skin_tone:':'👨🏾‍🎤',':man_singer_tone4:':'👨🏾‍🎤',':man_singer_dark_skin_tone:':'👨🏿‍🎤',':man_singer_tone5:':'👨🏿‍🎤',':man_student_light_skin_tone:':'👨🏻‍🎓',':man_student_tone1:':'👨🏻‍🎓',':man_student_medium_light_skin_tone:':'👨🏼‍🎓',':man_student_tone2:':'👨🏼‍🎓',':man_student_medium_skin_tone:':'👨🏽‍🎓',':man_student_tone3:':'👨🏽‍🎓',':man_student_medium_dark_skin_tone:':'👨🏾‍🎓',':man_student_tone4:':'👨🏾‍🎓',':man_student_dark_skin_tone:':'👨🏿‍🎓',':man_student_tone5:':'👨🏿‍🎓',':man_teacher_light_skin_tone:':'👨🏻‍🏫',':man_teacher_tone1:':'👨🏻‍🏫',':man_teacher_medium_light_skin_tone:':'👨🏼‍🏫',':man_teacher_tone2:':'👨🏼‍🏫',':man_teacher_medium_skin_tone:':'👨🏽‍🏫',':man_teacher_tone3:':'👨🏽‍🏫',':man_teacher_medium_dark_skin_tone:':'👨🏾‍🏫',':man_teacher_tone4:':'👨🏾‍🏫',':man_teacher_dark_skin_tone:':'👨🏿‍🏫',':man_teacher_tone5:':'👨🏿‍🏫',':man_technologist_light_skin_tone:':'👨🏻‍💻',':man_technologist_tone1:':'👨🏻‍💻',':man_technologist_medium_light_skin_tone:':'👨🏼‍💻',':man_technologist_tone2:':'👨🏼‍💻',':man_technologist_medium_skin_tone:':'👨🏽‍💻',':man_technologist_tone3:':'👨🏽‍💻',':man_technologist_medium_dark_skin_tone:':'👨🏾‍💻',':man_technologist_tone4:':'👨🏾‍💻',':man_technologist_dark_skin_tone:':'👨🏿‍💻',':man_technologist_tone5:':'👨🏿‍💻',':man_white_haired_light_skin_tone:':'👨🏻‍🦳',':man_white_haired_tone1:':'👨🏻‍🦳',':man_white_haired_medium_light_skin_tone:':'👨🏼‍🦳',':man_white_haired_tone2:':'👨🏼‍🦳',':man_white_haired_medium_skin_tone:':'👨🏽‍🦳',':man_white_haired_tone3:':'👨🏽‍🦳',':man_white_haired_medium_dark_skin_tone:':'👨🏾‍🦳',':man_white_haired_tone4:':'👨🏾‍🦳',':man_white_haired_dark_skin_tone:':'👨🏿‍🦳',':man_white_haired_tone5:':'👨🏿‍🦳',':man_with_probing_cane_light_skin_tone:':'👨🏻‍🦯',':man_with_probing_cane_tone1:':'👨🏻‍🦯',':man_with_probing_cane_medium_light_skin_tone:':'👨🏼‍🦯',':man_with_probing_cane_tone2:':'👨🏼‍🦯',':man_with_probing_cane_medium_skin_tone:':'👨🏽‍🦯',':man_with_probing_cane_tone3:':'👨🏽‍🦯',':man_with_probing_cane_medium_dark_skin_tone:':'👨🏾‍🦯',':man_with_probing_cane_tone4:':'👨🏾‍🦯',':man_with_probing_cane_dark_skin_tone:':'👨🏿‍🦯',':man_with_probing_cane_tone5:':'👨🏿‍🦯',':people_holding_hands:':'🧑‍🤝‍🧑',':woman_artist_light_skin_tone:':'👩🏻‍🎨',':woman_artist_tone1:':'👩🏻‍🎨',':woman_artist_medium_light_skin_tone:':'👩🏼‍🎨',':woman_artist_tone2:':'👩🏼‍🎨',':woman_artist_medium_skin_tone:':'👩🏽‍🎨',':woman_artist_tone3:':'👩🏽‍🎨',':woman_artist_medium_dark_skin_tone:':'👩🏾‍🎨',':woman_artist_tone4:':'👩🏾‍🎨',':woman_artist_dark_skin_tone:':'👩🏿‍🎨',':woman_artist_tone5:':'👩🏿‍🎨',':woman_astronaut_light_skin_tone:':'👩🏻‍🚀',':woman_astronaut_tone1:':'👩🏻‍🚀',':woman_astronaut_medium_light_skin_tone:':'👩🏼‍🚀',':woman_astronaut_tone2:':'👩🏼‍🚀',':woman_astronaut_medium_skin_tone:':'👩🏽‍🚀',':woman_astronaut_tone3:':'👩🏽‍🚀',':woman_astronaut_medium_dark_skin_tone:':'👩🏾‍🚀',':woman_astronaut_tone4:':'👩🏾‍🚀',':woman_astronaut_dark_skin_tone:':'👩🏿‍🚀',':woman_astronaut_tone5:':'👩🏿‍🚀',':woman_bald_light_skin_tone:':'👩🏻‍🦲',':woman_bald_tone1:':'👩🏻‍🦲',':woman_bald_medium_light_skin_tone:':'👩🏼‍🦲',':woman_bald_tone2:':'👩🏼‍🦲',':woman_bald_medium_skin_tone:':'👩🏽‍🦲',':woman_bald_tone3:':'👩🏽‍🦲',':woman_bald_medium_dark_skin_tone:':'👩🏾‍🦲',':woman_bald_tone4:':'👩🏾‍🦲',':woman_bald_dark_skin_tone:':'👩🏿‍🦲',':woman_bald_tone5:':'👩🏿‍🦲',':woman_cook_light_skin_tone:':'👩🏻‍🍳',':woman_cook_tone1:':'👩🏻‍🍳',':woman_cook_medium_light_skin_tone:':'👩🏼‍🍳',':woman_cook_tone2:':'👩🏼‍🍳',':woman_cook_medium_skin_tone:':'👩🏽‍🍳',':woman_cook_tone3:':'👩🏽‍🍳',':woman_cook_medium_dark_skin_tone:':'👩🏾‍🍳',':woman_cook_tone4:':'👩🏾‍🍳',':woman_cook_dark_skin_tone:':'👩🏿‍🍳',':woman_cook_tone5:':'👩🏿‍🍳',':woman_curly_haired_light_skin_tone:':'👩🏻‍🦱',':woman_curly_haired_tone1:':'👩🏻‍🦱',':woman_curly_haired_medium_light_skin_tone:':'👩🏼‍🦱',':woman_curly_haired_tone2:':'👩🏼‍🦱',':woman_curly_haired_medium_skin_tone:':'👩🏽‍🦱',':woman_curly_haired_tone3:':'👩🏽‍🦱',':woman_curly_haired_medium_dark_skin_tone:':'👩🏾‍🦱',':woman_curly_haired_tone4:':'👩🏾‍🦱',':woman_curly_haired_dark_skin_tone:':'👩🏿‍🦱',':woman_curly_haired_tone5:':'👩🏿‍🦱',':woman_factory_worker_light_skin_tone:':'👩🏻‍🏭',':woman_factory_worker_tone1:':'👩🏻‍🏭',':woman_factory_worker_medium_light_skin_tone:':'👩🏼‍🏭',':woman_factory_worker_tone2:':'👩🏼‍🏭',':woman_factory_worker_medium_skin_tone:':'👩🏽‍🏭',':woman_factory_worker_tone3:':'👩🏽‍🏭',':woman_factory_worker_medium_dark_skin_tone:':'👩🏾‍🏭',':woman_factory_worker_tone4:':'👩🏾‍🏭',':woman_factory_worker_dark_skin_tone:':'👩🏿‍🏭',':woman_factory_worker_tone5:':'👩🏿‍🏭',':woman_farmer_light_skin_tone:':'👩🏻‍🌾',':woman_farmer_tone1:':'👩🏻‍🌾',':woman_farmer_medium_light_skin_tone:':'👩🏼‍🌾',':woman_farmer_tone2:':'👩🏼‍🌾',':woman_farmer_medium_skin_tone:':'👩🏽‍🌾',':woman_farmer_tone3:':'👩🏽‍🌾',':woman_farmer_medium_dark_skin_tone:':'👩🏾‍🌾',':woman_farmer_tone4:':'👩🏾‍🌾',':woman_farmer_dark_skin_tone:':'👩🏿‍🌾',':woman_farmer_tone5:':'👩🏿‍🌾',':woman_firefighter_light_skin_tone:':'👩🏻‍🚒',':woman_firefighter_tone1:':'👩🏻‍🚒',':woman_firefighter_medium_light_skin_tone:':'👩🏼‍🚒',':woman_firefighter_tone2:':'👩🏼‍🚒',':woman_firefighter_medium_skin_tone:':'👩🏽‍🚒',':woman_firefighter_tone3:':'👩🏽‍🚒',':woman_firefighter_medium_dark_skin_tone:':'👩🏾‍🚒',':woman_firefighter_tone4:':'👩🏾‍🚒',':woman_firefighter_dark_skin_tone:':'👩🏿‍🚒',':woman_firefighter_tone5:':'👩🏿‍🚒',':woman_in_manual_wheelchair_light_skin_tone:':'👩🏻‍🦽',':woman_in_manual_wheelchair_tone1:':'👩🏻‍🦽',':woman_in_manual_wheelchair_medium_light_skin_tone:':'👩🏼‍🦽',':woman_in_manual_wheelchair_tone2:':'👩🏼‍🦽',':woman_in_manual_wheelchair_medium_skin_tone:':'👩🏽‍🦽',':woman_in_manual_wheelchair_tone3:':'👩🏽‍🦽',':woman_in_manual_wheelchair_medium_dark_skin_tone:':'👩🏾‍🦽',':woman_in_manual_wheelchair_tone4:':'👩🏾‍🦽',':woman_in_manual_wheelchair_dark_skin_tone:':'👩🏿‍🦽',':woman_in_manual_wheelchair_tone5:':'👩🏿‍🦽',':woman_in_motorized_wheelchair_light_skin_tone:':'👩🏻‍🦼',':woman_in_motorized_wheelchair_tone1:':'👩🏻‍🦼',':woman_in_motorized_wheelchair_medium_light_skin_tone:':'👩🏼‍🦼',':woman_in_motorized_wheelchair_tone2:':'👩🏼‍🦼',':woman_in_motorized_wheelchair_medium_skin_tone:':'👩🏽‍🦼',':woman_in_motorized_wheelchair_tone3:':'👩🏽‍🦼',':woman_in_motorized_wheelchair_medium_dark_skin_tone:':'👩🏾‍🦼',':woman_in_motorized_wheelchair_tone4:':'👩🏾‍🦼',':woman_in_motorized_wheelchair_dark_skin_tone:':'👩🏿‍🦼',':woman_in_motorized_wheelchair_tone5:':'👩🏿‍🦼',':woman_mechanic_light_skin_tone:':'👩🏻‍🔧',':woman_mechanic_tone1:':'👩🏻‍🔧',':woman_mechanic_medium_light_skin_tone:':'👩🏼‍🔧',':woman_mechanic_tone2:':'👩🏼‍🔧',':woman_mechanic_medium_skin_tone:':'👩🏽‍🔧',':woman_mechanic_tone3:':'👩🏽‍🔧',':woman_mechanic_medium_dark_skin_tone:':'👩🏾‍🔧',':woman_mechanic_tone4:':'👩🏾‍🔧',':woman_mechanic_dark_skin_tone:':'👩🏿‍🔧',':woman_mechanic_tone5:':'👩🏿‍🔧',':woman_office_worker_light_skin_tone:':'👩🏻‍💼',':woman_office_worker_tone1:':'👩🏻‍💼',':woman_office_worker_medium_light_skin_tone:':'👩🏼‍💼',':woman_office_worker_tone2:':'👩🏼‍💼',':woman_office_worker_medium_skin_tone:':'👩🏽‍💼',':woman_office_worker_tone3:':'👩🏽‍💼',':woman_office_worker_medium_dark_skin_tone:':'👩🏾‍💼',':woman_office_worker_tone4:':'👩🏾‍💼',':woman_office_worker_dark_skin_tone:':'👩🏿‍💼',':woman_office_worker_tone5:':'👩🏿‍💼',':woman_red_haired_light_skin_tone:':'👩🏻‍🦰',':woman_red_haired_tone1:':'👩🏻‍🦰',':woman_red_haired_medium_light_skin_tone:':'👩🏼‍🦰',':woman_red_haired_tone2:':'👩🏼‍🦰',':woman_red_haired_medium_skin_tone:':'👩🏽‍🦰',':woman_red_haired_tone3:':'👩🏽‍🦰',':woman_red_haired_medium_dark_skin_tone:':'👩🏾‍🦰',':woman_red_haired_tone4:':'👩🏾‍🦰',':woman_red_haired_dark_skin_tone:':'👩🏿‍🦰',':woman_red_haired_tone5:':'👩🏿‍🦰',':woman_scientist_light_skin_tone:':'👩🏻‍🔬',':woman_scientist_tone1:':'👩🏻‍🔬',':woman_scientist_medium_light_skin_tone:':'👩🏼‍🔬',':woman_scientist_tone2:':'👩🏼‍🔬',':woman_scientist_medium_skin_tone:':'👩🏽‍🔬',':woman_scientist_tone3:':'👩🏽‍🔬',':woman_scientist_medium_dark_skin_tone:':'👩🏾‍🔬',':woman_scientist_tone4:':'👩🏾‍🔬',':woman_scientist_dark_skin_tone:':'👩🏿‍🔬',':woman_scientist_tone5:':'👩🏿‍🔬',':woman_singer_light_skin_tone:':'👩🏻‍🎤',':woman_singer_tone1:':'👩🏻‍🎤',':woman_singer_medium_light_skin_tone:':'👩🏼‍🎤',':woman_singer_tone2:':'👩🏼‍🎤',':woman_singer_medium_skin_tone:':'👩🏽‍🎤',':woman_singer_tone3:':'👩🏽‍🎤',':woman_singer_medium_dark_skin_tone:':'👩🏾‍🎤',':woman_singer_tone4:':'👩🏾‍🎤',':woman_singer_dark_skin_tone:':'👩🏿‍🎤',':woman_singer_tone5:':'👩🏿‍🎤',':woman_student_light_skin_tone:':'👩🏻‍🎓',':woman_student_tone1:':'👩🏻‍🎓',':woman_student_medium_light_skin_tone:':'👩🏼‍🎓',':woman_student_tone2:':'👩🏼‍🎓',':woman_student_medium_skin_tone:':'👩🏽‍🎓',':woman_student_tone3:':'👩🏽‍🎓',':woman_student_medium_dark_skin_tone:':'👩🏾‍🎓',':woman_student_tone4:':'👩🏾‍🎓',':woman_student_dark_skin_tone:':'👩🏿‍🎓',':woman_student_tone5:':'👩🏿‍🎓',':woman_teacher_light_skin_tone:':'👩🏻‍🏫',':woman_teacher_tone1:':'👩🏻‍🏫',':woman_teacher_medium_light_skin_tone:':'👩🏼‍🏫',':woman_teacher_tone2:':'👩🏼‍🏫',':woman_teacher_medium_skin_tone:':'👩🏽‍🏫',':woman_teacher_tone3:':'👩🏽‍🏫',':woman_teacher_medium_dark_skin_tone:':'👩🏾‍🏫',':woman_teacher_tone4:':'👩🏾‍🏫',':woman_teacher_dark_skin_tone:':'👩🏿‍🏫',':woman_teacher_tone5:':'👩🏿‍🏫',':woman_technologist_light_skin_tone:':'👩🏻‍💻',':woman_technologist_tone1:':'👩🏻‍💻',':woman_technologist_medium_light_skin_tone:':'👩🏼‍💻',':woman_technologist_tone2:':'👩🏼‍💻',':woman_technologist_medium_skin_tone:':'👩🏽‍💻',':woman_technologist_tone3:':'👩🏽‍💻',':woman_technologist_medium_dark_skin_tone:':'👩🏾‍💻',':woman_technologist_tone4:':'👩🏾‍💻',':woman_technologist_dark_skin_tone:':'👩🏿‍💻',':woman_technologist_tone5:':'👩🏿‍💻',':woman_white_haired_light_skin_tone:':'👩🏻‍🦳',':woman_white_haired_tone1:':'👩🏻‍🦳',':woman_white_haired_medium_light_skin_tone:':'👩🏼‍🦳',':woman_white_haired_tone2:':'👩🏼‍🦳',':woman_white_haired_medium_skin_tone:':'👩🏽‍🦳',':woman_white_haired_tone3:':'👩🏽‍🦳',':woman_white_haired_medium_dark_skin_tone:':'👩🏾‍🦳',':woman_white_haired_tone4:':'👩🏾‍🦳',':woman_white_haired_dark_skin_tone:':'👩🏿‍🦳',':woman_white_haired_tone5:':'👩🏿‍🦳',':woman_with_probing_cane_light_skin_tone:':'👩🏻‍🦯',':woman_with_probing_cane_tone1:':'👩🏻‍🦯',':woman_with_probing_cane_medium_light_skin_tone:':'👩🏼‍🦯',':woman_with_probing_cane_tone2:':'👩🏼‍🦯',':woman_with_probing_cane_medium_skin_tone:':'👩🏽‍🦯',':woman_with_probing_cane_tone3:':'👩🏽‍🦯',':woman_with_probing_cane_medium_dark_skin_tone:':'👩🏾‍🦯',':woman_with_probing_cane_tone4:':'👩🏾‍🦯',':woman_with_probing_cane_dark_skin_tone:':'👩🏿‍🦯',':woman_with_probing_cane_tone5:':'👩🏿‍🦯',':blond-haired_man_light_skin_tone:':'👱🏻‍♂️',':blond-haired_man_tone1:':'👱🏻‍♂️',':blond-haired_man_medium_light_skin_tone:':'👱🏼‍♂️',':blond-haired_man_tone2:':'👱🏼‍♂️',':blond-haired_man_medium_skin_tone:':'👱🏽‍♂️',':blond-haired_man_tone3:':'👱🏽‍♂️',':blond-haired_man_medium_dark_skin_tone:':'👱🏾‍♂️',':blond-haired_man_tone4:':'👱🏾‍♂️',':blond-haired_man_dark_skin_tone:':'👱🏿‍♂️',':blond-haired_man_tone5:':'👱🏿‍♂️',':blond-haired_woman_light_skin_tone:':'👱🏻‍♀️',':blond-haired_woman_tone1:':'👱🏻‍♀️',':blond-haired_woman_medium_light_skin_tone:':'👱🏼‍♀️',':blond-haired_woman_tone2:':'👱🏼‍♀️',':blond-haired_woman_medium_skin_tone:':'👱🏽‍♀️',':blond-haired_woman_tone3:':'👱🏽‍♀️',':blond-haired_woman_medium_dark_skin_tone:':'👱🏾‍♀️',':blond-haired_woman_tone4:':'👱🏾‍♀️',':blond-haired_woman_dark_skin_tone:':'👱🏿‍♀️',':blond-haired_woman_tone5:':'👱🏿‍♀️',':couple_with_heart_mm:':'👨‍❤️‍👨',':couple_mm:':'👨‍❤️‍👨',':couple_with_heart_woman_man:':'👩‍❤️‍👨',':couple_with_heart_ww:':'👩‍❤️‍👩',':couple_ww:':'👩‍❤️‍👩',':deaf_man_light_skin_tone:':'🧏🏻‍♂️',':deaf_man_tone1:':'🧏🏻‍♂️',':deaf_man_medium_light_skin_tone:':'🧏🏼‍♂️',':deaf_man_tone2:':'🧏🏼‍♂️',':deaf_man_medium_skin_tone:':'🧏🏽‍♂️',':deaf_man_tone3:':'🧏🏽‍♂️',':deaf_man_medium_dark_skin_tone:':'🧏🏾‍♂️',':deaf_man_tone4:':'🧏🏾‍♂️',':deaf_man_dark_skin_tone:':'🧏🏿‍♂️',':deaf_man_tone5:':'🧏🏿‍♂️',':deaf_woman_light_skin_tone:':'🧏🏻‍♀️',':deaf_woman_tone1:':'🧏🏻‍♀️',':deaf_woman_medium_light_skin_tone:':'🧏🏼‍♀️',':deaf_woman_tone2:':'🧏🏼‍♀️',':deaf_woman_medium_skin_tone:':'🧏🏽‍♀️',':deaf_woman_tone3:':'🧏🏽‍♀️',':deaf_woman_medium_dark_skin_tone:':'🧏🏾‍♀️',':deaf_woman_tone4:':'🧏🏾‍♀️',':deaf_woman_dark_skin_tone:':'🧏🏿‍♀️',':deaf_woman_tone5:':'🧏🏿‍♀️',':man_biking_light_skin_tone:':'🚴🏻‍♂️',':man_biking_tone1:':'🚴🏻‍♂️',':man_biking_medium_light_skin_tone:':'🚴🏼‍♂️',':man_biking_tone2:':'🚴🏼‍♂️',':man_biking_medium_skin_tone:':'🚴🏽‍♂️',':man_biking_tone3:':'🚴🏽‍♂️',':man_biking_medium_dark_skin_tone:':'🚴🏾‍♂️',':man_biking_tone4:':'🚴🏾‍♂️',':man_biking_dark_skin_tone:':'🚴🏿‍♂️',':man_biking_tone5:':'🚴🏿‍♂️',':man_bowing_light_skin_tone:':'🙇🏻‍♂️',':man_bowing_tone1:':'🙇🏻‍♂️',':man_bowing_medium_light_skin_tone:':'🙇🏼‍♂️',':man_bowing_tone2:':'🙇🏼‍♂️',':man_bowing_medium_skin_tone:':'🙇🏽‍♂️',':man_bowing_tone3:':'🙇🏽‍♂️',':man_bowing_medium_dark_skin_tone:':'🙇🏾‍♂️',':man_bowing_tone4:':'🙇🏾‍♂️',':man_bowing_dark_skin_tone:':'🙇🏿‍♂️',':man_bowing_tone5:':'🙇🏿‍♂️',':man_cartwheeling_light_skin_tone:':'🤸🏻‍♂️',':man_cartwheeling_tone1:':'🤸🏻‍♂️',':man_cartwheeling_medium_light_skin_tone:':'🤸🏼‍♂️',':man_cartwheeling_tone2:':'🤸🏼‍♂️',':man_cartwheeling_medium_skin_tone:':'🤸🏽‍♂️',':man_cartwheeling_tone3:':'🤸🏽‍♂️',':man_cartwheeling_medium_dark_skin_tone:':'🤸🏾‍♂️',':man_cartwheeling_tone4:':'🤸🏾‍♂️',':man_cartwheeling_dark_skin_tone:':'🤸🏿‍♂️',':man_cartwheeling_tone5:':'🤸🏿‍♂️',':man_climbing_light_skin_tone:':'🧗🏻‍♂️',':man_climbing_tone1:':'🧗🏻‍♂️',':man_climbing_medium_light_skin_tone:':'🧗🏼‍♂️',':man_climbing_tone2:':'🧗🏼‍♂️',':man_climbing_medium_skin_tone:':'🧗🏽‍♂️',':man_climbing_tone3:':'🧗🏽‍♂️',':man_climbing_medium_dark_skin_tone:':'🧗🏾‍♂️',':man_climbing_tone4:':'🧗🏾‍♂️',':man_climbing_dark_skin_tone:':'🧗🏿‍♂️',':man_climbing_tone5:':'🧗🏿‍♂️',':man_construction_worker_light_skin_tone:':'👷🏻‍♂️',':man_construction_worker_tone1:':'👷🏻‍♂️',':man_construction_worker_medium_light_skin_tone:':'👷🏼‍♂️',':man_construction_worker_tone2:':'👷🏼‍♂️',':man_construction_worker_medium_skin_tone:':'👷🏽‍♂️',':man_construction_worker_tone3:':'👷🏽‍♂️',':man_construction_worker_medium_dark_skin_tone:':'👷🏾‍♂️',':man_construction_worker_tone4:':'👷🏾‍♂️',':man_construction_worker_dark_skin_tone:':'👷🏿‍♂️',':man_construction_worker_tone5:':'👷🏿‍♂️',':man_detective_light_skin_tone:':'🕵️🏻‍♂️',':man_detective_tone1:':'🕵️🏻‍♂️',':man_detective_medium_light_skin_tone:':'🕵️🏼‍♂️',':man_detective_tone2:':'🕵️🏼‍♂️',':man_detective_medium_skin_tone:':'🕵️🏽‍♂️',':man_detective_tone3:':'🕵️🏽‍♂️',':man_detective_medium_dark_skin_tone:':'🕵️🏾‍♂️',':man_detective_tone4:':'🕵️🏾‍♂️',':man_detective_dark_skin_tone:':'🕵️🏿‍♂️',':man_detective_tone5:':'🕵️🏿‍♂️',':man_elf_light_skin_tone:':'🧝🏻‍♂️',':man_elf_tone1:':'🧝🏻‍♂️',':man_elf_medium_light_skin_tone:':'🧝🏼‍♂️',':man_elf_tone2:':'🧝🏼‍♂️',':man_elf_medium_skin_tone:':'🧝🏽‍♂️',':man_elf_tone3:':'🧝🏽‍♂️',':man_elf_medium_dark_skin_tone:':'🧝🏾‍♂️',':man_elf_tone4:':'🧝🏾‍♂️',':man_elf_dark_skin_tone:':'🧝🏿‍♂️',':man_elf_tone5:':'🧝🏿‍♂️',':man_facepalming_light_skin_tone:':'🤦🏻‍♂️',':man_facepalming_tone1:':'🤦🏻‍♂️',':man_facepalming_medium_light_skin_tone:':'🤦🏼‍♂️',':man_facepalming_tone2:':'🤦🏼‍♂️',':man_facepalming_medium_skin_tone:':'🤦🏽‍♂️',':man_facepalming_tone3:':'🤦🏽‍♂️',':man_facepalming_medium_dark_skin_tone:':'🤦🏾‍♂️',':man_facepalming_tone4:':'🤦🏾‍♂️',':man_facepalming_dark_skin_tone:':'🤦🏿‍♂️',':man_facepalming_tone5:':'🤦🏿‍♂️',':man_fairy_light_skin_tone:':'🧚🏻‍♂️',':man_fairy_tone1:':'🧚🏻‍♂️',':man_fairy_medium_light_skin_tone:':'🧚🏼‍♂️',':man_fairy_tone2:':'🧚🏼‍♂️',':man_fairy_medium_skin_tone:':'🧚🏽‍♂️',':man_fairy_tone3:':'🧚🏽‍♂️',':man_fairy_medium_dark_skin_tone:':'🧚🏾‍♂️',':man_fairy_tone4:':'🧚🏾‍♂️',':man_fairy_dark_skin_tone:':'🧚🏿‍♂️',':man_fairy_tone5:':'🧚🏿‍♂️',':man_frowning_light_skin_tone:':'🙍🏻‍♂️',':man_frowning_tone1:':'🙍🏻‍♂️',':man_frowning_medium_light_skin_tone:':'🙍🏼‍♂️',':man_frowning_tone2:':'🙍🏼‍♂️',':man_frowning_medium_skin_tone:':'🙍🏽‍♂️',':man_frowning_tone3:':'🙍🏽‍♂️',':man_frowning_medium_dark_skin_tone:':'🙍🏾‍♂️',':man_frowning_tone4:':'🙍🏾‍♂️',':man_frowning_dark_skin_tone:':'🙍🏿‍♂️',':man_frowning_tone5:':'🙍🏿‍♂️',':man_gesturing_no_light_skin_tone:':'🙅🏻‍♂️',':man_gesturing_no_tone1:':'🙅🏻‍♂️',':man_gesturing_no_medium_light_skin_tone:':'🙅🏼‍♂️',':man_gesturing_no_tone2:':'🙅🏼‍♂️',':man_gesturing_no_medium_skin_tone:':'🙅🏽‍♂️',':man_gesturing_no_tone3:':'🙅🏽‍♂️',':man_gesturing_no_medium_dark_skin_tone:':'🙅🏾‍♂️',':man_gesturing_no_tone4:':'🙅🏾‍♂️',':man_gesturing_no_dark_skin_tone:':'🙅🏿‍♂️',':man_gesturing_no_tone5:':'🙅🏿‍♂️',':man_gesturing_ok_light_skin_tone:':'🙆🏻‍♂️',':man_gesturing_ok_tone1:':'🙆🏻‍♂️',':man_gesturing_ok_medium_light_skin_tone:':'🙆🏼‍♂️',':man_gesturing_ok_tone2:':'🙆🏼‍♂️',':man_gesturing_ok_medium_skin_tone:':'🙆🏽‍♂️',':man_gesturing_ok_tone3:':'🙆🏽‍♂️',':man_gesturing_ok_medium_dark_skin_tone:':'🙆🏾‍♂️',':man_gesturing_ok_tone4:':'🙆🏾‍♂️',':man_gesturing_ok_dark_skin_tone:':'🙆🏿‍♂️',':man_gesturing_ok_tone5:':'🙆🏿‍♂️',':man_getting_face_massage_light_skin_tone:':'💆🏻‍♂️',':man_getting_face_massage_tone1:':'💆🏻‍♂️',':man_getting_face_massage_medium_light_skin_tone:':'💆🏼‍♂️',':man_getting_face_massage_tone2:':'💆🏼‍♂️',':man_getting_face_massage_medium_skin_tone:':'💆🏽‍♂️',':man_getting_face_massage_tone3:':'💆🏽‍♂️',':man_getting_face_massage_medium_dark_skin_tone:':'💆🏾‍♂️',':man_getting_face_massage_tone4:':'💆🏾‍♂️',':man_getting_face_massage_dark_skin_tone:':'💆🏿‍♂️',':man_getting_face_massage_tone5:':'💆🏿‍♂️',':man_getting_haircut_light_skin_tone:':'💇🏻‍♂️',':man_getting_haircut_tone1:':'💇🏻‍♂️',':man_getting_haircut_medium_light_skin_tone:':'💇🏼‍♂️',':man_getting_haircut_tone2:':'💇🏼‍♂️',':man_getting_haircut_medium_skin_tone:':'💇🏽‍♂️',':man_getting_haircut_tone3:':'💇🏽‍♂️',':man_getting_haircut_medium_dark_skin_tone:':'💇🏾‍♂️',':man_getting_haircut_tone4:':'💇🏾‍♂️',':man_getting_haircut_dark_skin_tone:':'💇🏿‍♂️',':man_getting_haircut_tone5:':'💇🏿‍♂️',':man_golfing_light_skin_tone:':'🏌️🏻‍♂️',':man_golfing_tone1:':'🏌️🏻‍♂️',':man_golfing_medium_light_skin_tone:':'🏌️🏼‍♂️',':man_golfing_tone2:':'🏌️🏼‍♂️',':man_golfing_medium_skin_tone:':'🏌️🏽‍♂️',':man_golfing_tone3:':'🏌️🏽‍♂️',':man_golfing_medium_dark_skin_tone:':'🏌️🏾‍♂️',':man_golfing_tone4:':'🏌️🏾‍♂️',':man_golfing_dark_skin_tone:':'🏌️🏿‍♂️',':man_golfing_tone5:':'🏌️🏿‍♂️',':man_guard_light_skin_tone:':'💂🏻‍♂️',':man_guard_tone1:':'💂🏻‍♂️',':man_guard_medium_light_skin_tone:':'💂🏼‍♂️',':man_guard_tone2:':'💂🏼‍♂️',':man_guard_medium_skin_tone:':'💂🏽‍♂️',':man_guard_tone3:':'💂🏽‍♂️',':man_guard_medium_dark_skin_tone:':'💂🏾‍♂️',':man_guard_tone4:':'💂🏾‍♂️',':man_guard_dark_skin_tone:':'💂🏿‍♂️',':man_guard_tone5:':'💂🏿‍♂️',':man_health_worker_light_skin_tone:':'👨🏻‍⚕️',':man_health_worker_tone1:':'👨🏻‍⚕️',':man_health_worker_medium_light_skin_tone:':'👨🏼‍⚕️',':man_health_worker_tone2:':'👨🏼‍⚕️',':man_health_worker_medium_skin_tone:':'👨🏽‍⚕️',':man_health_worker_tone3:':'👨🏽‍⚕️',':man_health_worker_medium_dark_skin_tone:':'👨🏾‍⚕️',':man_health_worker_tone4:':'👨🏾‍⚕️',':man_health_worker_dark_skin_tone:':'👨🏿‍⚕️',':man_health_worker_tone5:':'👨🏿‍⚕️',':man_in_lotus_position_light_skin_tone:':'🧘🏻‍♂️',':man_in_lotus_position_tone1:':'🧘🏻‍♂️',':man_in_lotus_position_medium_light_skin_tone:':'🧘🏼‍♂️',':man_in_lotus_position_tone2:':'🧘🏼‍♂️',':man_in_lotus_position_medium_skin_tone:':'🧘🏽‍♂️',':man_in_lotus_position_tone3:':'🧘🏽‍♂️',':man_in_lotus_position_medium_dark_skin_tone:':'🧘🏾‍♂️',':man_in_lotus_position_tone4:':'🧘🏾‍♂️',':man_in_lotus_position_dark_skin_tone:':'🧘🏿‍♂️',':man_in_lotus_position_tone5:':'🧘🏿‍♂️',':man_in_steamy_room_light_skin_tone:':'🧖🏻‍♂️',':man_in_steamy_room_tone1:':'🧖🏻‍♂️',':man_in_steamy_room_medium_light_skin_tone:':'🧖🏼‍♂️',':man_in_steamy_room_tone2:':'🧖🏼‍♂️',':man_in_steamy_room_medium_skin_tone:':'🧖🏽‍♂️',':man_in_steamy_room_tone3:':'🧖🏽‍♂️',':man_in_steamy_room_medium_dark_skin_tone:':'🧖🏾‍♂️',':man_in_steamy_room_tone4:':'🧖🏾‍♂️',':man_in_steamy_room_dark_skin_tone:':'🧖🏿‍♂️',':man_in_steamy_room_tone5:':'🧖🏿‍♂️',':man_judge_light_skin_tone:':'👨🏻‍⚖️',':man_judge_tone1:':'👨🏻‍⚖️',':man_judge_medium_light_skin_tone:':'👨🏼‍⚖️',':man_judge_tone2:':'👨🏼‍⚖️',':man_judge_medium_skin_tone:':'👨🏽‍⚖️',':man_judge_tone3:':'👨🏽‍⚖️',':man_judge_medium_dark_skin_tone:':'👨🏾‍⚖️',':man_judge_tone4:':'👨🏾‍⚖️',':man_judge_dark_skin_tone:':'👨🏿‍⚖️',':man_judge_tone5:':'👨🏿‍⚖️',':man_juggling_light_skin_tone:':'🤹🏻‍♂️',':man_juggling_tone1:':'🤹🏻‍♂️',':man_juggling_medium_light_skin_tone:':'🤹🏼‍♂️',':man_juggling_tone2:':'🤹🏼‍♂️',':man_juggling_medium_skin_tone:':'🤹🏽‍♂️',':man_juggling_tone3:':'🤹🏽‍♂️',':man_juggling_medium_dark_skin_tone:':'🤹🏾‍♂️',':man_juggling_tone4:':'🤹🏾‍♂️',':man_juggling_dark_skin_tone:':'🤹🏿‍♂️',':man_juggling_tone5:':'🤹🏿‍♂️',':man_kneeling_light_skin_tone:':'🧎🏻‍♂️',':man_kneeling_tone1:':'🧎🏻‍♂️',':man_kneeling_medium_light_skin_tone:':'🧎🏼‍♂️',':man_kneeling_tone2:':'🧎🏼‍♂️',':man_kneeling_medium_skin_tone:':'🧎🏽‍♂️',':man_kneeling_tone3:':'🧎🏽‍♂️',':man_kneeling_medium_dark_skin_tone:':'🧎🏾‍♂️',':man_kneeling_tone4:':'🧎🏾‍♂️',':man_kneeling_dark_skin_tone:':'🧎🏿‍♂️',':man_kneeling_tone5:':'🧎🏿‍♂️',':man_lifting_weights_light_skin_tone:':'🏋️🏻‍♂️',':man_lifting_weights_tone1:':'🏋️🏻‍♂️',':man_lifting_weights_medium_light_skin_tone:':'🏋️🏼‍♂️',':man_lifting_weights_tone2:':'🏋️🏼‍♂️',':man_lifting_weights_medium_skin_tone:':'🏋️🏽‍♂️',':man_lifting_weights_tone3:':'🏋️🏽‍♂️',':man_lifting_weights_medium_dark_skin_tone:':'🏋️🏾‍♂️',':man_lifting_weights_tone4:':'🏋️🏾‍♂️',':man_lifting_weights_dark_skin_tone:':'🏋️🏿‍♂️',':man_lifting_weights_tone5:':'🏋️🏿‍♂️',':man_mage_light_skin_tone:':'🧙🏻‍♂️',':man_mage_tone1:':'🧙🏻‍♂️',':man_mage_medium_light_skin_tone:':'🧙🏼‍♂️',':man_mage_tone2:':'🧙🏼‍♂️',':man_mage_medium_skin_tone:':'🧙🏽‍♂️',':man_mage_tone3:':'🧙🏽‍♂️',':man_mage_medium_dark_skin_tone:':'🧙🏾‍♂️',':man_mage_tone4:':'🧙🏾‍♂️',':man_mage_dark_skin_tone:':'🧙🏿‍♂️',':man_mage_tone5:':'🧙🏿‍♂️',':man_mountain_biking_light_skin_tone:':'🚵🏻‍♂️',':man_mountain_biking_tone1:':'🚵🏻‍♂️',':man_mountain_biking_medium_light_skin_tone:':'🚵🏼‍♂️',':man_mountain_biking_tone2:':'🚵🏼‍♂️',':man_mountain_biking_medium_skin_tone:':'🚵🏽‍♂️',':man_mountain_biking_tone3:':'🚵🏽‍♂️',':man_mountain_biking_medium_dark_skin_tone:':'🚵🏾‍♂️',':man_mountain_biking_tone4:':'🚵🏾‍♂️',':man_mountain_biking_dark_skin_tone:':'🚵🏿‍♂️',':man_mountain_biking_tone5:':'🚵🏿‍♂️',':man_pilot_light_skin_tone:':'👨🏻‍✈️',':man_pilot_tone1:':'👨🏻‍✈️',':man_pilot_medium_light_skin_tone:':'👨🏼‍✈️',':man_pilot_tone2:':'👨🏼‍✈️',':man_pilot_medium_skin_tone:':'👨🏽‍✈️',':man_pilot_tone3:':'👨🏽‍✈️',':man_pilot_medium_dark_skin_tone:':'👨🏾‍✈️',':man_pilot_tone4:':'👨🏾‍✈️',':man_pilot_dark_skin_tone:':'👨🏿‍✈️',':man_pilot_tone5:':'👨🏿‍✈️',':man_playing_handball_light_skin_tone:':'🤾🏻‍♂️',':man_playing_handball_tone1:':'🤾🏻‍♂️',':man_playing_handball_medium_light_skin_tone:':'🤾🏼‍♂️',':man_playing_handball_tone2:':'🤾🏼‍♂️',':man_playing_handball_medium_skin_tone:':'🤾🏽‍♂️',':man_playing_handball_tone3:':'🤾🏽‍♂️',':man_playing_handball_medium_dark_skin_tone:':'🤾🏾‍♂️',':man_playing_handball_tone4:':'🤾🏾‍♂️',':man_playing_handball_dark_skin_tone:':'🤾🏿‍♂️',':man_playing_handball_tone5:':'🤾🏿‍♂️',':man_playing_water_polo_light_skin_tone:':'🤽🏻‍♂️',':man_playing_water_polo_tone1:':'🤽🏻‍♂️',':man_playing_water_polo_medium_light_skin_tone:':'🤽🏼‍♂️',':man_playing_water_polo_tone2:':'🤽🏼‍♂️',':man_playing_water_polo_medium_skin_tone:':'🤽🏽‍♂️',':man_playing_water_polo_tone3:':'🤽🏽‍♂️',':man_playing_water_polo_medium_dark_skin_tone:':'🤽🏾‍♂️',':man_playing_water_polo_tone4:':'🤽🏾‍♂️',':man_playing_water_polo_dark_skin_tone:':'🤽🏿‍♂️',':man_playing_water_polo_tone5:':'🤽🏿‍♂️',':man_police_officer_light_skin_tone:':'👮🏻‍♂️',':man_police_officer_tone1:':'👮🏻‍♂️',':man_police_officer_medium_light_skin_tone:':'👮🏼‍♂️',':man_police_officer_tone2:':'👮🏼‍♂️',':man_police_officer_medium_skin_tone:':'👮🏽‍♂️',':man_police_officer_tone3:':'👮🏽‍♂️',':man_police_officer_medium_dark_skin_tone:':'👮🏾‍♂️',':man_police_officer_tone4:':'👮🏾‍♂️',':man_police_officer_dark_skin_tone:':'👮🏿‍♂️',':man_police_officer_tone5:':'👮🏿‍♂️',':man_pouting_light_skin_tone:':'🙎🏻‍♂️',':man_pouting_tone1:':'🙎🏻‍♂️',':man_pouting_medium_light_skin_tone:':'🙎🏼‍♂️',':man_pouting_tone2:':'🙎🏼‍♂️',':man_pouting_medium_skin_tone:':'🙎🏽‍♂️',':man_pouting_tone3:':'🙎🏽‍♂️',':man_pouting_medium_dark_skin_tone:':'🙎🏾‍♂️',':man_pouting_tone4:':'🙎🏾‍♂️',':man_pouting_dark_skin_tone:':'🙎🏿‍♂️',':man_pouting_tone5:':'🙎🏿‍♂️',':man_raising_hand_light_skin_tone:':'🙋🏻‍♂️',':man_raising_hand_tone1:':'🙋🏻‍♂️',':man_raising_hand_medium_light_skin_tone:':'🙋🏼‍♂️',':man_raising_hand_tone2:':'🙋🏼‍♂️',':man_raising_hand_medium_skin_tone:':'🙋🏽‍♂️',':man_raising_hand_tone3:':'🙋🏽‍♂️',':man_raising_hand_medium_dark_skin_tone:':'🙋🏾‍♂️',':man_raising_hand_tone4:':'🙋🏾‍♂️',':man_raising_hand_dark_skin_tone:':'🙋🏿‍♂️',':man_raising_hand_tone5:':'🙋🏿‍♂️',':man_rowing_boat_light_skin_tone:':'🚣🏻‍♂️',':man_rowing_boat_tone1:':'🚣🏻‍♂️',':man_rowing_boat_medium_light_skin_tone:':'🚣🏼‍♂️',':man_rowing_boat_tone2:':'🚣🏼‍♂️',':man_rowing_boat_medium_skin_tone:':'🚣🏽‍♂️',':man_rowing_boat_tone3:':'🚣🏽‍♂️',':man_rowing_boat_medium_dark_skin_tone:':'🚣🏾‍♂️',':man_rowing_boat_tone4:':'🚣🏾‍♂️',':man_rowing_boat_dark_skin_tone:':'🚣🏿‍♂️',':man_rowing_boat_tone5:':'🚣🏿‍♂️',':man_running_light_skin_tone:':'🏃🏻‍♂️',':man_running_tone1:':'🏃🏻‍♂️',':man_running_medium_light_skin_tone:':'🏃🏼‍♂️',':man_running_tone2:':'🏃🏼‍♂️',':man_running_medium_skin_tone:':'🏃🏽‍♂️',':man_running_tone3:':'🏃🏽‍♂️',':man_running_medium_dark_skin_tone:':'🏃🏾‍♂️',':man_running_tone4:':'🏃🏾‍♂️',':man_running_dark_skin_tone:':'🏃🏿‍♂️',':man_running_tone5:':'🏃🏿‍♂️',':man_shrugging_light_skin_tone:':'🤷🏻‍♂️',':man_shrugging_tone1:':'🤷🏻‍♂️',':man_shrugging_medium_light_skin_tone:':'🤷🏼‍♂️',':man_shrugging_tone2:':'🤷🏼‍♂️',':man_shrugging_medium_skin_tone:':'🤷🏽‍♂️',':man_shrugging_tone3:':'🤷🏽‍♂️',':man_shrugging_medium_dark_skin_tone:':'🤷🏾‍♂️',':man_shrugging_tone4:':'🤷🏾‍♂️',':man_shrugging_dark_skin_tone:':'🤷🏿‍♂️',':man_shrugging_tone5:':'🤷🏿‍♂️',':man_standing_light_skin_tone:':'🧍🏻‍♂️',':man_standing_tone1:':'🧍🏻‍♂️',':man_standing_medium_light_skin_tone:':'🧍🏼‍♂️',':man_standing_tone2:':'🧍🏼‍♂️',':man_standing_medium_skin_tone:':'🧍🏽‍♂️',':man_standing_tone3:':'🧍🏽‍♂️',':man_standing_medium_dark_skin_tone:':'🧍🏾‍♂️',':man_standing_tone4:':'🧍🏾‍♂️',':man_standing_dark_skin_tone:':'🧍🏿‍♂️',':man_standing_tone5:':'🧍🏿‍♂️',':man_superhero_light_skin_tone:':'🦸🏻‍♂️',':man_superhero_tone1:':'🦸🏻‍♂️',':man_superhero_medium_light_skin_tone:':'🦸🏼‍♂️',':man_superhero_tone2:':'🦸🏼‍♂️',':man_superhero_medium_skin_tone:':'🦸🏽‍♂️',':man_superhero_tone3:':'🦸🏽‍♂️',':man_superhero_medium_dark_skin_tone:':'🦸🏾‍♂️',':man_superhero_tone4:':'🦸🏾‍♂️',':man_superhero_dark_skin_tone:':'🦸🏿‍♂️',':man_superhero_tone5:':'🦸🏿‍♂️',':man_supervillain_light_skin_tone:':'🦹🏻‍♂️',':man_supervillain_tone1:':'🦹🏻‍♂️',':man_supervillain_medium_light_skin_tone:':'🦹🏼‍♂️',':man_supervillain_tone2:':'🦹🏼‍♂️',':man_supervillain_medium_skin_tone:':'🦹🏽‍♂️',':man_supervillain_tone3:':'🦹🏽‍♂️',':man_supervillain_medium_dark_skin_tone:':'🦹🏾‍♂️',':man_supervillain_tone4:':'🦹🏾‍♂️',':man_supervillain_dark_skin_tone:':'🦹🏿‍♂️',':man_supervillain_tone5:':'🦹🏿‍♂️',':man_surfing_light_skin_tone:':'🏄🏻‍♂️',':man_surfing_tone1:':'🏄🏻‍♂️',':man_surfing_medium_light_skin_tone:':'🏄🏼‍♂️',':man_surfing_tone2:':'🏄🏼‍♂️',':man_surfing_medium_skin_tone:':'🏄🏽‍♂️',':man_surfing_tone3:':'🏄🏽‍♂️',':man_surfing_medium_dark_skin_tone:':'🏄🏾‍♂️',':man_surfing_tone4:':'🏄🏾‍♂️',':man_surfing_dark_skin_tone:':'🏄🏿‍♂️',':man_surfing_tone5:':'🏄🏿‍♂️',':man_swimming_light_skin_tone:':'🏊🏻‍♂️',':man_swimming_tone1:':'🏊🏻‍♂️',':man_swimming_medium_light_skin_tone:':'🏊🏼‍♂️',':man_swimming_tone2:':'🏊🏼‍♂️',':man_swimming_medium_skin_tone:':'🏊🏽‍♂️',':man_swimming_tone3:':'🏊🏽‍♂️',':man_swimming_medium_dark_skin_tone:':'🏊🏾‍♂️',':man_swimming_tone4:':'🏊🏾‍♂️',':man_swimming_dark_skin_tone:':'🏊🏿‍♂️',':man_swimming_tone5:':'🏊🏿‍♂️',':man_tipping_hand_light_skin_tone:':'💁🏻‍♂️',':man_tipping_hand_tone1:':'💁🏻‍♂️',':man_tipping_hand_medium_light_skin_tone:':'💁🏼‍♂️',':man_tipping_hand_tone2:':'💁🏼‍♂️',':man_tipping_hand_medium_skin_tone:':'💁🏽‍♂️',':man_tipping_hand_tone3:':'💁🏽‍♂️',':man_tipping_hand_medium_dark_skin_tone:':'💁🏾‍♂️',':man_tipping_hand_tone4:':'💁🏾‍♂️',':man_tipping_hand_dark_skin_tone:':'💁🏿‍♂️',':man_tipping_hand_tone5:':'💁🏿‍♂️',':man_vampire_light_skin_tone:':'🧛🏻‍♂️',':man_vampire_tone1:':'🧛🏻‍♂️',':man_vampire_medium_light_skin_tone:':'🧛🏼‍♂️',':man_vampire_tone2:':'🧛🏼‍♂️',':man_vampire_medium_skin_tone:':'🧛🏽‍♂️',':man_vampire_tone3:':'🧛🏽‍♂️',':man_vampire_medium_dark_skin_tone:':'🧛🏾‍♂️',':man_vampire_tone4:':'🧛🏾‍♂️',':man_vampire_dark_skin_tone:':'🧛🏿‍♂️',':man_vampire_tone5:':'🧛🏿‍♂️',':man_walking_light_skin_tone:':'🚶🏻‍♂️',':man_walking_tone1:':'🚶🏻‍♂️',':man_walking_medium_light_skin_tone:':'🚶🏼‍♂️',':man_walking_tone2:':'🚶🏼‍♂️',':man_walking_medium_skin_tone:':'🚶🏽‍♂️',':man_walking_tone3:':'🚶🏽‍♂️',':man_walking_medium_dark_skin_tone:':'🚶🏾‍♂️',':man_walking_tone4:':'🚶🏾‍♂️',':man_walking_dark_skin_tone:':'🚶🏿‍♂️',':man_walking_tone5:':'🚶🏿‍♂️',':man_wearing_turban_light_skin_tone:':'👳🏻‍♂️',':man_wearing_turban_tone1:':'👳🏻‍♂️',':man_wearing_turban_medium_light_skin_tone:':'👳🏼‍♂️',':man_wearing_turban_tone2:':'👳🏼‍♂️',':man_wearing_turban_medium_skin_tone:':'👳🏽‍♂️',':man_wearing_turban_tone3:':'👳🏽‍♂️',':man_wearing_turban_medium_dark_skin_tone:':'👳🏾‍♂️',':man_wearing_turban_tone4:':'👳🏾‍♂️',':man_wearing_turban_dark_skin_tone:':'👳🏿‍♂️',':man_wearing_turban_tone5:':'👳🏿‍♂️',':mermaid_light_skin_tone:':'🧜🏻‍♀️',':mermaid_tone1:':'🧜🏻‍♀️',':mermaid_medium_light_skin_tone:':'🧜🏼‍♀️',':mermaid_tone2:':'🧜🏼‍♀️',':mermaid_medium_skin_tone:':'🧜🏽‍♀️',':mermaid_tone3:':'🧜🏽‍♀️',':mermaid_medium_dark_skin_tone:':'🧜🏾‍♀️',':mermaid_tone4:':'🧜🏾‍♀️',':mermaid_dark_skin_tone:':'🧜🏿‍♀️',':mermaid_tone5:':'🧜🏿‍♀️',':merman_light_skin_tone:':'🧜🏻‍♂️',':merman_tone1:':'🧜🏻‍♂️',':merman_medium_light_skin_tone:':'🧜🏼‍♂️',':merman_tone2:':'🧜🏼‍♂️',':merman_medium_skin_tone:':'🧜🏽‍♂️',':merman_tone3:':'🧜🏽‍♂️',':merman_medium_dark_skin_tone:':'🧜🏾‍♂️',':merman_tone4:':'🧜🏾‍♂️',':merman_dark_skin_tone:':'🧜🏿‍♂️',':merman_tone5:':'🧜🏿‍♂️',':woman_biking_light_skin_tone:':'🚴🏻‍♀️',':woman_biking_tone1:':'🚴🏻‍♀️',':woman_biking_medium_light_skin_tone:':'🚴🏼‍♀️',':woman_biking_tone2:':'🚴🏼‍♀️',':woman_biking_medium_skin_tone:':'🚴🏽‍♀️',':woman_biking_tone3:':'🚴🏽‍♀️',':woman_biking_medium_dark_skin_tone:':'🚴🏾‍♀️',':woman_biking_tone4:':'🚴🏾‍♀️',':woman_biking_dark_skin_tone:':'🚴🏿‍♀️',':woman_biking_tone5:':'🚴🏿‍♀️',':woman_bowing_light_skin_tone:':'🙇🏻‍♀️',':woman_bowing_tone1:':'🙇🏻‍♀️',':woman_bowing_medium_light_skin_tone:':'🙇🏼‍♀️',':woman_bowing_tone2:':'🙇🏼‍♀️',':woman_bowing_medium_skin_tone:':'🙇🏽‍♀️',':woman_bowing_tone3:':'🙇🏽‍♀️',':woman_bowing_medium_dark_skin_tone:':'🙇🏾‍♀️',':woman_bowing_tone4:':'🙇🏾‍♀️',':woman_bowing_dark_skin_tone:':'🙇🏿‍♀️',':woman_bowing_tone5:':'🙇🏿‍♀️',':woman_cartwheeling_light_skin_tone:':'🤸🏻‍♀️',':woman_cartwheeling_tone1:':'🤸🏻‍♀️',':woman_cartwheeling_medium_light_skin_tone:':'🤸🏼‍♀️',':woman_cartwheeling_tone2:':'🤸🏼‍♀️',':woman_cartwheeling_medium_skin_tone:':'🤸🏽‍♀️',':woman_cartwheeling_tone3:':'🤸🏽‍♀️',':woman_cartwheeling_medium_dark_skin_tone:':'🤸🏾‍♀️',':woman_cartwheeling_tone4:':'🤸🏾‍♀️',':woman_cartwheeling_dark_skin_tone:':'🤸🏿‍♀️',':woman_cartwheeling_tone5:':'🤸🏿‍♀️',':woman_climbing_light_skin_tone:':'🧗🏻‍♀️',':woman_climbing_tone1:':'🧗🏻‍♀️',':woman_climbing_medium_light_skin_tone:':'🧗🏼‍♀️',':woman_climbing_tone2:':'🧗🏼‍♀️',':woman_climbing_medium_skin_tone:':'🧗🏽‍♀️',':woman_climbing_tone3:':'🧗🏽‍♀️',':woman_climbing_medium_dark_skin_tone:':'🧗🏾‍♀️',':woman_climbing_tone4:':'🧗🏾‍♀️',':woman_climbing_dark_skin_tone:':'🧗🏿‍♀️',':woman_climbing_tone5:':'🧗🏿‍♀️',':woman_construction_worker_light_skin_tone:':'👷🏻‍♀️',':woman_construction_worker_tone1:':'👷🏻‍♀️',':woman_construction_worker_medium_light_skin_tone:':'👷🏼‍♀️',':woman_construction_worker_tone2:':'👷🏼‍♀️',':woman_construction_worker_medium_skin_tone:':'👷🏽‍♀️',':woman_construction_worker_tone3:':'👷🏽‍♀️',':woman_construction_worker_medium_dark_skin_tone:':'👷🏾‍♀️',':woman_construction_worker_tone4:':'👷🏾‍♀️',':woman_construction_worker_dark_skin_tone:':'👷🏿‍♀️',':woman_construction_worker_tone5:':'👷🏿‍♀️',':woman_detective_light_skin_tone:':'🕵️🏻‍♀️',':woman_detective_tone1:':'🕵️🏻‍♀️',':woman_detective_medium_light_skin_tone:':'🕵️🏼‍♀️',':woman_detective_tone2:':'🕵️🏼‍♀️',':woman_detective_medium_skin_tone:':'🕵️🏽‍♀️',':woman_detective_tone3:':'🕵️🏽‍♀️',':woman_detective_medium_dark_skin_tone:':'🕵️🏾‍♀️',':woman_detective_tone4:':'🕵️🏾‍♀️',':woman_detective_dark_skin_tone:':'🕵️🏿‍♀️',':woman_detective_tone5:':'🕵️🏿‍♀️',':woman_elf_light_skin_tone:':'🧝🏻‍♀️',':woman_elf_tone1:':'🧝🏻‍♀️',':woman_elf_medium_light_skin_tone:':'🧝🏼‍♀️',':woman_elf_tone2:':'🧝🏼‍♀️',':woman_elf_medium_skin_tone:':'🧝🏽‍♀️',':woman_elf_tone3:':'🧝🏽‍♀️',':woman_elf_medium_dark_skin_tone:':'🧝🏾‍♀️',':woman_elf_tone4:':'🧝🏾‍♀️',':woman_elf_dark_skin_tone:':'🧝🏿‍♀️',':woman_elf_tone5:':'🧝🏿‍♀️',':woman_facepalming_light_skin_tone:':'🤦🏻‍♀️',':woman_facepalming_tone1:':'🤦🏻‍♀️',':woman_facepalming_medium_light_skin_tone:':'🤦🏼‍♀️',':woman_facepalming_tone2:':'🤦🏼‍♀️',':woman_facepalming_medium_skin_tone:':'🤦🏽‍♀️',':woman_facepalming_tone3:':'🤦🏽‍♀️',':woman_facepalming_medium_dark_skin_tone:':'🤦🏾‍♀️',':woman_facepalming_tone4:':'🤦🏾‍♀️',':woman_facepalming_dark_skin_tone:':'🤦🏿‍♀️',':woman_facepalming_tone5:':'🤦🏿‍♀️',':woman_fairy_light_skin_tone:':'🧚🏻‍♀️',':woman_fairy_tone1:':'🧚🏻‍♀️',':woman_fairy_medium_light_skin_tone:':'🧚🏼‍♀️',':woman_fairy_tone2:':'🧚🏼‍♀️',':woman_fairy_medium_skin_tone:':'🧚🏽‍♀️',':woman_fairy_tone3:':'🧚🏽‍♀️',':woman_fairy_medium_dark_skin_tone:':'🧚🏾‍♀️',':woman_fairy_tone4:':'🧚🏾‍♀️',':woman_fairy_dark_skin_tone:':'🧚🏿‍♀️',':woman_fairy_tone5:':'🧚🏿‍♀️',':woman_frowning_light_skin_tone:':'🙍🏻‍♀️',':woman_frowning_tone1:':'🙍🏻‍♀️',':woman_frowning_medium_light_skin_tone:':'🙍🏼‍♀️',':woman_frowning_tone2:':'🙍🏼‍♀️',':woman_frowning_medium_skin_tone:':'🙍🏽‍♀️',':woman_frowning_tone3:':'🙍🏽‍♀️',':woman_frowning_medium_dark_skin_tone:':'🙍🏾‍♀️',':woman_frowning_tone4:':'🙍🏾‍♀️',':woman_frowning_dark_skin_tone:':'🙍🏿‍♀️',':woman_frowning_tone5:':'🙍🏿‍♀️',':woman_gesturing_no_light_skin_tone:':'🙅🏻‍♀️',':woman_gesturing_no_tone1:':'🙅🏻‍♀️',':woman_gesturing_no_medium_light_skin_tone:':'🙅🏼‍♀️',':woman_gesturing_no_tone2:':'🙅🏼‍♀️',':woman_gesturing_no_medium_skin_tone:':'🙅🏽‍♀️',':woman_gesturing_no_tone3:':'🙅🏽‍♀️',':woman_gesturing_no_medium_dark_skin_tone:':'🙅🏾‍♀️',':woman_gesturing_no_tone4:':'🙅🏾‍♀️',':woman_gesturing_no_dark_skin_tone:':'🙅🏿‍♀️',':woman_gesturing_no_tone5:':'🙅🏿‍♀️',':woman_gesturing_ok_light_skin_tone:':'🙆🏻‍♀️',':woman_gesturing_ok_tone1:':'🙆🏻‍♀️',':woman_gesturing_ok_medium_light_skin_tone:':'🙆🏼‍♀️',':woman_gesturing_ok_tone2:':'🙆🏼‍♀️',':woman_gesturing_ok_medium_skin_tone:':'🙆🏽‍♀️',':woman_gesturing_ok_tone3:':'🙆🏽‍♀️',':woman_gesturing_ok_medium_dark_skin_tone:':'🙆🏾‍♀️',':woman_gesturing_ok_tone4:':'🙆🏾‍♀️',':woman_gesturing_ok_dark_skin_tone:':'🙆🏿‍♀️',':woman_gesturing_ok_tone5:':'🙆🏿‍♀️',':woman_getting_face_massage_light_skin_tone:':'💆🏻‍♀️',':woman_getting_face_massage_tone1:':'💆🏻‍♀️',':woman_getting_face_massage_medium_light_skin_tone:':'💆🏼‍♀️',':woman_getting_face_massage_tone2:':'💆🏼‍♀️',':woman_getting_face_massage_medium_skin_tone:':'💆🏽‍♀️',':woman_getting_face_massage_tone3:':'💆🏽‍♀️',':woman_getting_face_massage_medium_dark_skin_tone:':'💆🏾‍♀️',':woman_getting_face_massage_tone4:':'💆🏾‍♀️',':woman_getting_face_massage_dark_skin_tone:':'💆🏿‍♀️',':woman_getting_face_massage_tone5:':'💆🏿‍♀️',':woman_getting_haircut_light_skin_tone:':'💇🏻‍♀️',':woman_getting_haircut_tone1:':'💇🏻‍♀️',':woman_getting_haircut_medium_light_skin_tone:':'💇🏼‍♀️',':woman_getting_haircut_tone2:':'💇🏼‍♀️',':woman_getting_haircut_medium_skin_tone:':'💇🏽‍♀️',':woman_getting_haircut_tone3:':'💇🏽‍♀️',':woman_getting_haircut_medium_dark_skin_tone:':'💇🏾‍♀️',':woman_getting_haircut_tone4:':'💇🏾‍♀️',':woman_getting_haircut_dark_skin_tone:':'💇🏿‍♀️',':woman_getting_haircut_tone5:':'💇🏿‍♀️',':woman_golfing_light_skin_tone:':'🏌️🏻‍♀️',':woman_golfing_tone1:':'🏌️🏻‍♀️',':woman_golfing_medium_light_skin_tone:':'🏌️🏼‍♀️',':woman_golfing_tone2:':'🏌️🏼‍♀️',':woman_golfing_medium_skin_tone:':'🏌️🏽‍♀️',':woman_golfing_tone3:':'🏌️🏽‍♀️',':woman_golfing_medium_dark_skin_tone:':'🏌️🏾‍♀️',':woman_golfing_tone4:':'🏌️🏾‍♀️',':woman_golfing_dark_skin_tone:':'🏌️🏿‍♀️',':woman_golfing_tone5:':'🏌️🏿‍♀️',':woman_guard_light_skin_tone:':'💂🏻‍♀️',':woman_guard_tone1:':'💂🏻‍♀️',':woman_guard_medium_light_skin_tone:':'💂🏼‍♀️',':woman_guard_tone2:':'💂🏼‍♀️',':woman_guard_medium_skin_tone:':'💂🏽‍♀️',':woman_guard_tone3:':'💂🏽‍♀️',':woman_guard_medium_dark_skin_tone:':'💂🏾‍♀️',':woman_guard_tone4:':'💂🏾‍♀️',':woman_guard_dark_skin_tone:':'💂🏿‍♀️',':woman_guard_tone5:':'💂🏿‍♀️',':woman_health_worker_light_skin_tone:':'👩🏻‍⚕️',':woman_health_worker_tone1:':'👩🏻‍⚕️',':woman_health_worker_medium_light_skin_tone:':'👩🏼‍⚕️',':woman_health_worker_tone2:':'👩🏼‍⚕️',':woman_health_worker_medium_skin_tone:':'👩🏽‍⚕️',':woman_health_worker_tone3:':'👩🏽‍⚕️',':woman_health_worker_medium_dark_skin_tone:':'👩🏾‍⚕️',':woman_health_worker_tone4:':'👩🏾‍⚕️',':woman_health_worker_dark_skin_tone:':'👩🏿‍⚕️',':woman_health_worker_tone5:':'👩🏿‍⚕️',':woman_in_lotus_position_light_skin_tone:':'🧘🏻‍♀️',':woman_in_lotus_position_tone1:':'🧘🏻‍♀️',':woman_in_lotus_position_medium_light_skin_tone:':'🧘🏼‍♀️',':woman_in_lotus_position_tone2:':'🧘🏼‍♀️',':woman_in_lotus_position_medium_skin_tone:':'🧘🏽‍♀️',':woman_in_lotus_position_tone3:':'🧘🏽‍♀️',':woman_in_lotus_position_medium_dark_skin_tone:':'🧘🏾‍♀️',':woman_in_lotus_position_tone4:':'🧘🏾‍♀️',':woman_in_lotus_position_dark_skin_tone:':'🧘🏿‍♀️',':woman_in_lotus_position_tone5:':'🧘🏿‍♀️',':woman_in_steamy_room_light_skin_tone:':'🧖🏻‍♀️',':woman_in_steamy_room_tone1:':'🧖🏻‍♀️',':woman_in_steamy_room_medium_light_skin_tone:':'🧖🏼‍♀️',':woman_in_steamy_room_tone2:':'🧖🏼‍♀️',':woman_in_steamy_room_medium_skin_tone:':'🧖🏽‍♀️',':woman_in_steamy_room_tone3:':'🧖🏽‍♀️',':woman_in_steamy_room_medium_dark_skin_tone:':'🧖🏾‍♀️',':woman_in_steamy_room_tone4:':'🧖🏾‍♀️',':woman_in_steamy_room_dark_skin_tone:':'🧖🏿‍♀️',':woman_in_steamy_room_tone5:':'🧖🏿‍♀️',':woman_judge_light_skin_tone:':'👩🏻‍⚖️',':woman_judge_tone1:':'👩🏻‍⚖️',':woman_judge_medium_light_skin_tone:':'👩🏼‍⚖️',':woman_judge_tone2:':'👩🏼‍⚖️',':woman_judge_medium_skin_tone:':'👩🏽‍⚖️',':woman_judge_tone3:':'👩🏽‍⚖️',':woman_judge_medium_dark_skin_tone:':'👩🏾‍⚖️',':woman_judge_tone4:':'👩🏾‍⚖️',':woman_judge_dark_skin_tone:':'👩🏿‍⚖️',':woman_judge_tone5:':'👩🏿‍⚖️',':woman_juggling_light_skin_tone:':'🤹🏻‍♀️',':woman_juggling_tone1:':'🤹🏻‍♀️',':woman_juggling_medium_light_skin_tone:':'🤹🏼‍♀️',':woman_juggling_tone2:':'🤹🏼‍♀️',':woman_juggling_medium_skin_tone:':'🤹🏽‍♀️',':woman_juggling_tone3:':'🤹🏽‍♀️',':woman_juggling_medium_dark_skin_tone:':'🤹🏾‍♀️',':woman_juggling_tone4:':'🤹🏾‍♀️',':woman_juggling_dark_skin_tone:':'🤹🏿‍♀️',':woman_juggling_tone5:':'🤹🏿‍♀️',':woman_kneeling_light_skin_tone:':'🧎🏻‍♀️',':woman_kneeling_tone1:':'🧎🏻‍♀️',':woman_kneeling_medium_light_skin_tone:':'🧎🏼‍♀️',':woman_kneeling_tone2:':'🧎🏼‍♀️',':woman_kneeling_medium_skin_tone:':'🧎🏽‍♀️',':woman_kneeling_tone3:':'🧎🏽‍♀️',':woman_kneeling_medium_dark_skin_tone:':'🧎🏾‍♀️',':woman_kneeling_tone4:':'🧎🏾‍♀️',':woman_kneeling_dark_skin_tone:':'🧎🏿‍♀️',':woman_kneeling_tone5:':'🧎🏿‍♀️',':woman_lifting_weights_light_skin_tone:':'🏋️🏻‍♀️',':woman_lifting_weights_tone1:':'🏋️🏻‍♀️',':woman_lifting_weights_medium_light_skin_tone:':'🏋️🏼‍♀️',':woman_lifting_weights_tone2:':'🏋️🏼‍♀️',':woman_lifting_weights_medium_skin_tone:':'🏋️🏽‍♀️',':woman_lifting_weights_tone3:':'🏋️🏽‍♀️',':woman_lifting_weights_medium_dark_skin_tone:':'🏋️🏾‍♀️',':woman_lifting_weights_tone4:':'🏋️🏾‍♀️',':woman_lifting_weights_dark_skin_tone:':'🏋️🏿‍♀️',':woman_lifting_weights_tone5:':'🏋️🏿‍♀️',':woman_mage_light_skin_tone:':'🧙🏻‍♀️',':woman_mage_tone1:':'🧙🏻‍♀️',':woman_mage_medium_light_skin_tone:':'🧙🏼‍♀️',':woman_mage_tone2:':'🧙🏼‍♀️',':woman_mage_medium_skin_tone:':'🧙🏽‍♀️',':woman_mage_tone3:':'🧙🏽‍♀️',':woman_mage_medium_dark_skin_tone:':'🧙🏾‍♀️',':woman_mage_tone4:':'🧙🏾‍♀️',':woman_mage_dark_skin_tone:':'🧙🏿‍♀️',':woman_mage_tone5:':'🧙🏿‍♀️',':woman_mountain_biking_light_skin_tone:':'🚵🏻‍♀️',':woman_mountain_biking_tone1:':'🚵🏻‍♀️',':woman_mountain_biking_medium_light_skin_tone:':'🚵🏼‍♀️',':woman_mountain_biking_tone2:':'🚵🏼‍♀️',':woman_mountain_biking_medium_skin_tone:':'🚵🏽‍♀️',':woman_mountain_biking_tone3:':'🚵🏽‍♀️',':woman_mountain_biking_medium_dark_skin_tone:':'🚵🏾‍♀️',':woman_mountain_biking_tone4:':'🚵🏾‍♀️',':woman_mountain_biking_dark_skin_tone:':'🚵🏿‍♀️',':woman_mountain_biking_tone5:':'🚵🏿‍♀️',':woman_pilot_light_skin_tone:':'👩🏻‍✈️',':woman_pilot_tone1:':'👩🏻‍✈️',':woman_pilot_medium_light_skin_tone:':'👩🏼‍✈️',':woman_pilot_tone2:':'👩🏼‍✈️',':woman_pilot_medium_skin_tone:':'👩🏽‍✈️',':woman_pilot_tone3:':'👩🏽‍✈️',':woman_pilot_medium_dark_skin_tone:':'👩🏾‍✈️',':woman_pilot_tone4:':'👩🏾‍✈️',':woman_pilot_dark_skin_tone:':'👩🏿‍✈️',':woman_pilot_tone5:':'👩🏿‍✈️',':woman_playing_handball_light_skin_tone:':'🤾🏻‍♀️',':woman_playing_handball_tone1:':'🤾🏻‍♀️',':woman_playing_handball_medium_light_skin_tone:':'🤾🏼‍♀️',':woman_playing_handball_tone2:':'🤾🏼‍♀️',':woman_playing_handball_medium_skin_tone:':'🤾🏽‍♀️',':woman_playing_handball_tone3:':'🤾🏽‍♀️',':woman_playing_handball_medium_dark_skin_tone:':'🤾🏾‍♀️',':woman_playing_handball_tone4:':'🤾🏾‍♀️',':woman_playing_handball_dark_skin_tone:':'🤾🏿‍♀️',':woman_playing_handball_tone5:':'🤾🏿‍♀️',':woman_playing_water_polo_light_skin_tone:':'🤽🏻‍♀️',':woman_playing_water_polo_tone1:':'🤽🏻‍♀️',':woman_playing_water_polo_medium_light_skin_tone:':'🤽🏼‍♀️',':woman_playing_water_polo_tone2:':'🤽🏼‍♀️',':woman_playing_water_polo_medium_skin_tone:':'🤽🏽‍♀️',':woman_playing_water_polo_tone3:':'🤽🏽‍♀️',':woman_playing_water_polo_medium_dark_skin_tone:':'🤽🏾‍♀️',':woman_playing_water_polo_tone4:':'🤽🏾‍♀️',':woman_playing_water_polo_dark_skin_tone:':'🤽🏿‍♀️',':woman_playing_water_polo_tone5:':'🤽🏿‍♀️',':woman_police_officer_light_skin_tone:':'👮🏻‍♀️',':woman_police_officer_tone1:':'👮🏻‍♀️',':woman_police_officer_medium_light_skin_tone:':'👮🏼‍♀️',':woman_police_officer_tone2:':'👮🏼‍♀️',':woman_police_officer_medium_skin_tone:':'👮🏽‍♀️',':woman_police_officer_tone3:':'👮🏽‍♀️',':woman_police_officer_medium_dark_skin_tone:':'👮🏾‍♀️',':woman_police_officer_tone4:':'👮🏾‍♀️',':woman_police_officer_dark_skin_tone:':'👮🏿‍♀️',':woman_police_officer_tone5:':'👮🏿‍♀️',':woman_pouting_light_skin_tone:':'🙎🏻‍♀️',':woman_pouting_tone1:':'🙎🏻‍♀️',':woman_pouting_medium_light_skin_tone:':'🙎🏼‍♀️',':woman_pouting_tone2:':'🙎🏼‍♀️',':woman_pouting_medium_skin_tone:':'🙎🏽‍♀️',':woman_pouting_tone3:':'🙎🏽‍♀️',':woman_pouting_medium_dark_skin_tone:':'🙎🏾‍♀️',':woman_pouting_tone4:':'🙎🏾‍♀️',':woman_pouting_dark_skin_tone:':'🙎🏿‍♀️',':woman_pouting_tone5:':'🙎🏿‍♀️',':woman_raising_hand_light_skin_tone:':'🙋🏻‍♀️',':woman_raising_hand_tone1:':'🙋🏻‍♀️',':woman_raising_hand_medium_light_skin_tone:':'🙋🏼‍♀️',':woman_raising_hand_tone2:':'🙋🏼‍♀️',':woman_raising_hand_medium_skin_tone:':'🙋🏽‍♀️',':woman_raising_hand_tone3:':'🙋🏽‍♀️',':woman_raising_hand_medium_dark_skin_tone:':'🙋🏾‍♀️',':woman_raising_hand_tone4:':'🙋🏾‍♀️',':woman_raising_hand_dark_skin_tone:':'🙋🏿‍♀️',':woman_raising_hand_tone5:':'🙋🏿‍♀️',':woman_rowing_boat_light_skin_tone:':'🚣🏻‍♀️',':woman_rowing_boat_tone1:':'🚣🏻‍♀️',':woman_rowing_boat_medium_light_skin_tone:':'🚣🏼‍♀️',':woman_rowing_boat_tone2:':'🚣🏼‍♀️',':woman_rowing_boat_medium_skin_tone:':'🚣🏽‍♀️',':woman_rowing_boat_tone3:':'🚣🏽‍♀️',':woman_rowing_boat_medium_dark_skin_tone:':'🚣🏾‍♀️',':woman_rowing_boat_tone4:':'🚣🏾‍♀️',':woman_rowing_boat_dark_skin_tone:':'🚣🏿‍♀️',':woman_rowing_boat_tone5:':'🚣🏿‍♀️',':woman_running_light_skin_tone:':'🏃🏻‍♀️',':woman_running_tone1:':'🏃🏻‍♀️',':woman_running_medium_light_skin_tone:':'🏃🏼‍♀️',':woman_running_tone2:':'🏃🏼‍♀️',':woman_running_medium_skin_tone:':'🏃🏽‍♀️',':woman_running_tone3:':'🏃🏽‍♀️',':woman_running_medium_dark_skin_tone:':'🏃🏾‍♀️',':woman_running_tone4:':'🏃🏾‍♀️',':woman_running_dark_skin_tone:':'🏃🏿‍♀️',':woman_running_tone5:':'🏃🏿‍♀️',':woman_shrugging_light_skin_tone:':'🤷🏻‍♀️',':woman_shrugging_tone1:':'🤷🏻‍♀️',':woman_shrugging_medium_light_skin_tone:':'🤷🏼‍♀️',':woman_shrugging_tone2:':'🤷🏼‍♀️',':woman_shrugging_medium_skin_tone:':'🤷🏽‍♀️',':woman_shrugging_tone3:':'🤷🏽‍♀️',':woman_shrugging_medium_dark_skin_tone:':'🤷🏾‍♀️',':woman_shrugging_tone4:':'🤷🏾‍♀️',':woman_shrugging_dark_skin_tone:':'🤷🏿‍♀️',':woman_shrugging_tone5:':'🤷🏿‍♀️',':woman_standing_light_skin_tone:':'🧍🏻‍♀️',':woman_standing_tone1:':'🧍🏻‍♀️',':woman_standing_medium_light_skin_tone:':'🧍🏼‍♀️',':woman_standing_tone2:':'🧍🏼‍♀️',':woman_standing_medium_skin_tone:':'🧍🏽‍♀️',':woman_standing_tone3:':'🧍🏽‍♀️',':woman_standing_medium_dark_skin_tone:':'🧍🏾‍♀️',':woman_standing_tone4:':'🧍🏾‍♀️',':woman_standing_dark_skin_tone:':'🧍🏿‍♀️',':woman_standing_tone5:':'🧍🏿‍♀️',':woman_superhero_light_skin_tone:':'🦸🏻‍♀️',':woman_superhero_tone1:':'🦸🏻‍♀️',':woman_superhero_medium_light_skin_tone:':'🦸🏼‍♀️',':woman_superhero_tone2:':'🦸🏼‍♀️',':woman_superhero_medium_skin_tone:':'🦸🏽‍♀️',':woman_superhero_tone3:':'🦸🏽‍♀️',':woman_superhero_medium_dark_skin_tone:':'🦸🏾‍♀️',':woman_superhero_tone4:':'🦸🏾‍♀️',':woman_superhero_dark_skin_tone:':'🦸🏿‍♀️',':woman_superhero_tone5:':'🦸🏿‍♀️',':woman_supervillain_light_skin_tone:':'🦹🏻‍♀️',':woman_supervillain_tone1:':'🦹🏻‍♀️',':woman_supervillain_medium_light_skin_tone:':'🦹🏼‍♀️',':woman_supervillain_tone2:':'🦹🏼‍♀️',':woman_supervillain_medium_skin_tone:':'🦹🏽‍♀️',':woman_supervillain_tone3:':'🦹🏽‍♀️',':woman_supervillain_medium_dark_skin_tone:':'🦹🏾‍♀️',':woman_supervillain_tone4:':'🦹🏾‍♀️',':woman_supervillain_dark_skin_tone:':'🦹🏿‍♀️',':woman_supervillain_tone5:':'🦹🏿‍♀️',':woman_surfing_light_skin_tone:':'🏄🏻‍♀️',':woman_surfing_tone1:':'🏄🏻‍♀️',':woman_surfing_medium_light_skin_tone:':'🏄🏼‍♀️',':woman_surfing_tone2:':'🏄🏼‍♀️',':woman_surfing_medium_skin_tone:':'🏄🏽‍♀️',':woman_surfing_tone3:':'🏄🏽‍♀️',':woman_surfing_medium_dark_skin_tone:':'🏄🏾‍♀️',':woman_surfing_tone4:':'🏄🏾‍♀️',':woman_surfing_dark_skin_tone:':'🏄🏿‍♀️',':woman_surfing_tone5:':'🏄🏿‍♀️',':woman_swimming_light_skin_tone:':'🏊🏻‍♀️',':woman_swimming_tone1:':'🏊🏻‍♀️',':woman_swimming_medium_light_skin_tone:':'🏊🏼‍♀️',':woman_swimming_tone2:':'🏊🏼‍♀️',':woman_swimming_medium_skin_tone:':'🏊🏽‍♀️',':woman_swimming_tone3:':'🏊🏽‍♀️',':woman_swimming_medium_dark_skin_tone:':'🏊🏾‍♀️',':woman_swimming_tone4:':'🏊🏾‍♀️',':woman_swimming_dark_skin_tone:':'🏊🏿‍♀️',':woman_swimming_tone5:':'🏊🏿‍♀️',':woman_tipping_hand_light_skin_tone:':'💁🏻‍♀️',':woman_tipping_hand_tone1:':'💁🏻‍♀️',':woman_tipping_hand_medium_light_skin_tone:':'💁🏼‍♀️',':woman_tipping_hand_tone2:':'💁🏼‍♀️',':woman_tipping_hand_medium_skin_tone:':'💁🏽‍♀️',':woman_tipping_hand_tone3:':'💁🏽‍♀️',':woman_tipping_hand_medium_dark_skin_tone:':'💁🏾‍♀️',':woman_tipping_hand_tone4:':'💁🏾‍♀️',':woman_tipping_hand_dark_skin_tone:':'💁🏿‍♀️',':woman_tipping_hand_tone5:':'💁🏿‍♀️',':woman_vampire_light_skin_tone:':'🧛🏻‍♀️',':woman_vampire_tone1:':'🧛🏻‍♀️',':woman_vampire_medium_light_skin_tone:':'🧛🏼‍♀️',':woman_vampire_tone2:':'🧛🏼‍♀️',':woman_vampire_medium_skin_tone:':'🧛🏽‍♀️',':woman_vampire_tone3:':'🧛🏽‍♀️',':woman_vampire_medium_dark_skin_tone:':'🧛🏾‍♀️',':woman_vampire_tone4:':'🧛🏾‍♀️',':woman_vampire_dark_skin_tone:':'🧛🏿‍♀️',':woman_vampire_tone5:':'🧛🏿‍♀️',':woman_walking_light_skin_tone:':'🚶🏻‍♀️',':woman_walking_tone1:':'🚶🏻‍♀️',':woman_walking_medium_light_skin_tone:':'🚶🏼‍♀️',':woman_walking_tone2:':'🚶🏼‍♀️',':woman_walking_medium_skin_tone:':'🚶🏽‍♀️',':woman_walking_tone3:':'🚶🏽‍♀️',':woman_walking_medium_dark_skin_tone:':'🚶🏾‍♀️',':woman_walking_tone4:':'🚶🏾‍♀️',':woman_walking_dark_skin_tone:':'🚶🏿‍♀️',':woman_walking_tone5:':'🚶🏿‍♀️',':woman_wearing_turban_light_skin_tone:':'👳🏻‍♀️',':woman_wearing_turban_tone1:':'👳🏻‍♀️',':woman_wearing_turban_medium_light_skin_tone:':'👳🏼‍♀️',':woman_wearing_turban_tone2:':'👳🏼‍♀️',':woman_wearing_turban_medium_skin_tone:':'👳🏽‍♀️',':woman_wearing_turban_tone3:':'👳🏽‍♀️',':woman_wearing_turban_medium_dark_skin_tone:':'👳🏾‍♀️',':woman_wearing_turban_tone4:':'👳🏾‍♀️',':woman_wearing_turban_dark_skin_tone:':'👳🏿‍♀️',':woman_wearing_turban_tone5:':'👳🏿‍♀️',':man_bouncing_ball_light_skin_tone:':'⛹️🏻‍♂️',':man_bouncing_ball_tone1:':'⛹️🏻‍♂️',':man_bouncing_ball_medium_light_skin_tone:':'⛹️🏼‍♂️',':man_bouncing_ball_tone2:':'⛹️🏼‍♂️',':man_bouncing_ball_medium_skin_tone:':'⛹️🏽‍♂️',':man_bouncing_ball_tone3:':'⛹️🏽‍♂️',':man_bouncing_ball_medium_dark_skin_tone:':'⛹️🏾‍♂️',':man_bouncing_ball_tone4:':'⛹️🏾‍♂️',':man_bouncing_ball_dark_skin_tone:':'⛹️🏿‍♂️',':man_bouncing_ball_tone5:':'⛹️🏿‍♂️',':woman_bouncing_ball_light_skin_tone:':'⛹️🏻‍♀️',':woman_bouncing_ball_tone1:':'⛹️🏻‍♀️',':woman_bouncing_ball_medium_light_skin_tone:':'⛹️🏼‍♀️',':woman_bouncing_ball_tone2:':'⛹️🏼‍♀️',':woman_bouncing_ball_medium_skin_tone:':'⛹️🏽‍♀️',':woman_bouncing_ball_tone3:':'⛹️🏽‍♀️',':woman_bouncing_ball_medium_dark_skin_tone:':'⛹️🏾‍♀️',':woman_bouncing_ball_tone4:':'⛹️🏾‍♀️',':woman_bouncing_ball_dark_skin_tone:':'⛹️🏿‍♀️',':woman_bouncing_ball_tone5:':'⛹️🏿‍♀️',':adult_light_skin_tone:':'🧑🏻',':adult_tone1:':'🧑🏻',':adult_medium_light_skin_tone:':'🧑🏼',':adult_tone2:':'🧑🏼',':adult_medium_skin_tone:':'🧑🏽',':adult_tone3:':'🧑🏽',':adult_medium_dark_skin_tone:':'🧑🏾',':adult_tone4:':'🧑🏾',':adult_dark_skin_tone:':'🧑🏿',':adult_tone5:':'🧑🏿',':angel_tone1:':'👼🏻',':angel_tone2:':'👼🏼',':angel_tone3:':'👼🏽',':angel_tone4:':'👼🏾',':angel_tone5:':'👼🏿',':baby_tone1:':'👶🏻',':baby_tone2:':'👶🏼',':baby_tone3:':'👶🏽',':baby_tone4:':'👶🏾',':baby_tone5:':'👶🏿',':bath_tone1:':'🛀🏻',':bath_tone2:':'🛀🏼',':bath_tone3:':'🛀🏽',':bath_tone4:':'🛀🏾',':bath_tone5:':'🛀🏿',':bearded_person_light_skin_tone:':'🧔🏻',':bearded_person_tone1:':'🧔🏻',':bearded_person_medium_light_skin_tone:':'🧔🏼',':bearded_person_tone2:':'🧔🏼',':bearded_person_medium_skin_tone:':'🧔🏽',':bearded_person_tone3:':'🧔🏽',':bearded_person_medium_dark_skin_tone:':'🧔🏾',':bearded_person_tone4:':'🧔🏾',':bearded_person_dark_skin_tone:':'🧔🏿',':bearded_person_tone5:':'🧔🏿',':person_with_blond_hair_tone1:':'👱🏻',':blond_haired_person_tone1:':'👱🏻',':person_with_blond_hair_tone2:':'👱🏼',':blond_haired_person_tone2:':'👱🏼',':person_with_blond_hair_tone3:':'👱🏽',':blond_haired_person_tone3:':'👱🏽',':person_with_blond_hair_tone4:':'👱🏾',':blond_haired_person_tone4:':'👱🏾',':person_with_blond_hair_tone5:':'👱🏿',':blond_haired_person_tone5:':'👱🏿',':boy_tone1:':'👦🏻',':boy_tone2:':'👦🏼',':boy_tone3:':'👦🏽',':boy_tone4:':'👦🏾',':boy_tone5:':'👦🏿',':breast_feeding_light_skin_tone:':'🤱🏻',':breast_feeding_tone1:':'🤱🏻',':breast_feeding_medium_light_skin_tone:':'🤱🏼',':breast_feeding_tone2:':'🤱🏼',':breast_feeding_medium_skin_tone:':'🤱🏽',':breast_feeding_tone3:':'🤱🏽',':breast_feeding_medium_dark_skin_tone:':'🤱🏾',':breast_feeding_tone4:':'🤱🏾',':breast_feeding_dark_skin_tone:':'🤱🏿',':breast_feeding_tone5:':'🤱🏿',':bride_with_veil_tone1:':'👰🏻',':bride_with_veil_tone2:':'👰🏼',':bride_with_veil_tone3:':'👰🏽',':bride_with_veil_tone4:':'👰🏾',':bride_with_veil_tone5:':'👰🏿',':call_me_hand_tone1:':'🤙🏻',':call_me_tone1:':'🤙🏻',':call_me_hand_tone2:':'🤙🏼',':call_me_tone2:':'🤙🏼',':call_me_hand_tone3:':'🤙🏽',':call_me_tone3:':'🤙🏽',':call_me_hand_tone4:':'🤙🏾',':call_me_tone4:':'🤙🏾',':call_me_hand_tone5:':'🤙🏿',':call_me_tone5:':'🤙🏿',':child_light_skin_tone:':'🧒🏻',':child_tone1:':'🧒🏻',':child_medium_light_skin_tone:':'🧒🏼',':child_tone2:':'🧒🏼',':child_medium_skin_tone:':'🧒🏽',':child_tone3:':'🧒🏽',':child_medium_dark_skin_tone:':'🧒🏾',':child_tone4:':'🧒🏾',':child_dark_skin_tone:':'🧒🏿',':child_tone5:':'🧒🏿',':clap_tone1:':'👏🏻',':clap_tone2:':'👏🏼',':clap_tone3:':'👏🏽',':clap_tone4:':'👏🏾',':clap_tone5:':'👏🏿',':construction_worker_tone1:':'👷🏻',':construction_worker_tone2:':'👷🏼',':construction_worker_tone3:':'👷🏽',':construction_worker_tone4:':'👷🏾',':construction_worker_tone5:':'👷🏿',':dancer_tone1:':'💃🏻',':dancer_tone2:':'💃🏼',':dancer_tone3:':'💃🏽',':dancer_tone4:':'💃🏾',':dancer_tone5:':'💃🏿',':deaf_person_light_skin_tone:':'🧏🏻',':deaf_person_tone1:':'🧏🏻',':deaf_person_medium_light_skin_tone:':'🧏🏼',':deaf_person_tone2:':'🧏🏼',':deaf_person_medium_skin_tone:':'🧏🏽',':deaf_person_tone3:':'🧏🏽',':deaf_person_medium_dark_skin_tone:':'🧏🏾',':deaf_person_tone4:':'🧏🏾',':deaf_person_dark_skin_tone:':'🧏🏿',':deaf_person_tone5:':'🧏🏿',':spy_tone1:':'🕵️🏻',':sleuth_or_spy_tone1:':'🕵️🏻',':detective_tone1:':'🕵️🏻',':spy_tone2:':'🕵️🏼',':sleuth_or_spy_tone2:':'🕵️🏼',':detective_tone2:':'🕵️🏼',':spy_tone3:':'🕵️🏽',':sleuth_or_spy_tone3:':'🕵️🏽',':detective_tone3:':'🕵️🏽',':spy_tone4:':'🕵️🏾',':sleuth_or_spy_tone4:':'🕵️🏾',':detective_tone4:':'🕵️🏾',':spy_tone5:':'🕵️🏿',':sleuth_or_spy_tone5:':'🕵️🏿',':detective_tone5:':'🕵️🏿',':ear_tone1:':'👂🏻',':ear_tone2:':'👂🏼',':ear_tone3:':'👂🏽',':ear_tone4:':'👂🏾',':ear_tone5:':'👂🏿',':ear_with_hearing_aid_light_skin_tone:':'🦻🏻',':ear_with_hearing_aid_tone1:':'🦻🏻',':ear_with_hearing_aid_medium_light_skin_tone:':'🦻🏼',':ear_with_hearing_aid_tone2:':'🦻🏼',':ear_with_hearing_aid_medium_skin_tone:':'🦻🏽',':ear_with_hearing_aid_tone3:':'🦻🏽',':ear_with_hearing_aid_medium_dark_skin_tone:':'🦻🏾',':ear_with_hearing_aid_tone4:':'🦻🏾',':ear_with_hearing_aid_dark_skin_tone:':'🦻🏿',':ear_with_hearing_aid_tone5:':'🦻🏿',':elf_light_skin_tone:':'🧝🏻',':elf_tone1:':'🧝🏻',':elf_medium_light_skin_tone:':'🧝🏼',':elf_tone2:':'🧝🏼',':elf_medium_skin_tone:':'🧝🏽',':elf_tone3:':'🧝🏽',':elf_medium_dark_skin_tone:':'🧝🏾',':elf_tone4:':'🧝🏾',':elf_dark_skin_tone:':'🧝🏿',':elf_tone5:':'🧝🏿',':eye_in_speech_bubble:':'👁️‍🗨️',':fairy_light_skin_tone:':'🧚🏻',':fairy_tone1:':'🧚🏻',':fairy_medium_light_skin_tone:':'🧚🏼',':fairy_tone2:':'🧚🏼',':fairy_medium_skin_tone:':'🧚🏽',':fairy_tone3:':'🧚🏽',':fairy_medium_dark_skin_tone:':'🧚🏾',':fairy_tone4:':'🧚🏾',':fairy_dark_skin_tone:':'🧚🏿',':fairy_tone5:':'🧚🏿',':family_man_boy:':'👨‍👦',':family_man_girl:':'👨‍👧',':family_woman_boy:':'👩‍👦',':family_woman_girl:':'👩‍👧',':hand_with_index_and_middle_fingers_crossed_tone1:':'🤞🏻',':fingers_crossed_tone1:':'🤞🏻',':hand_with_index_and_middle_fingers_crossed_tone2:':'🤞🏼',':fingers_crossed_tone2:':'🤞🏼',':hand_with_index_and_middle_fingers_crossed_tone3:':'🤞🏽',':fingers_crossed_tone3:':'🤞🏽',':hand_with_index_and_middle_fingers_crossed_tone4:':'🤞🏾',':fingers_crossed_tone4:':'🤞🏾',':hand_with_index_and_middle_fingers_crossed_tone5:':'🤞🏿',':fingers_crossed_tone5:':'🤞🏿',':ac:':'🇦🇨',':flag_ac:':'🇦🇨',':ad:':'🇦🇩',':flag_ad:':'🇦🇩',':ae:':'🇦🇪',':flag_ae:':'🇦🇪',':af:':'🇦🇫',':flag_af:':'🇦🇫',':ag:':'🇦🇬',':flag_ag:':'🇦🇬',':ai:':'🇦🇮',':flag_ai:':'🇦🇮',':al:':'🇦🇱',':flag_al:':'🇦🇱',':am:':'🇦🇲',':flag_am:':'🇦🇲',':ao:':'🇦🇴',':flag_ao:':'🇦🇴',':aq:':'🇦🇶',':flag_aq:':'🇦🇶',':ar:':'🇦🇷',':flag_ar:':'🇦🇷',':as:':'🇦🇸',':flag_as:':'🇦🇸',':at:':'🇦🇹',':flag_at:':'🇦🇹',':au:':'🇦🇺',':flag_au:':'🇦🇺',':aw:':'🇦🇼',':flag_aw:':'🇦🇼',':ax:':'🇦🇽',':flag_ax:':'🇦🇽',':az:':'🇦🇿',':flag_az:':'🇦🇿',':ba:':'🇧🇦',':flag_ba:':'🇧🇦',':bb:':'🇧🇧',':flag_bb:':'🇧🇧',':bd:':'🇧🇩',':flag_bd:':'🇧🇩',':be:':'🇧🇪',':flag_be:':'🇧🇪',':bf:':'🇧🇫',':flag_bf:':'🇧🇫',':bg:':'🇧🇬',':flag_bg:':'🇧🇬',':bh:':'🇧🇭',':flag_bh:':'🇧🇭',':bi:':'🇧🇮',':flag_bi:':'🇧🇮',':bj:':'🇧🇯',':flag_bj:':'🇧🇯',':bm:':'🇧🇲',':flag_bm:':'🇧🇲',':bn:':'🇧🇳',':flag_bn:':'🇧🇳',':bo:':'🇧🇴',':flag_bo:':'🇧🇴',':br:':'🇧🇷',':flag_br:':'🇧🇷',':bs:':'🇧🇸',':flag_bs:':'🇧🇸',':bt:':'🇧🇹',':flag_bt:':'🇧🇹',':bv:':'🇧🇻',':flag_bv:':'🇧🇻',':bw:':'🇧🇼',':flag_bw:':'🇧🇼',':by:':'🇧🇾',':flag_by:':'🇧🇾',':bz:':'🇧🇿',':flag_bz:':'🇧🇿',':ca:':'🇨🇦',':flag_ca:':'🇨🇦',':cc:':'🇨🇨',':flag_cc:':'🇨🇨',':congo:':'🇨🇩',':flag_cd:':'🇨🇩',':cf:':'🇨🇫',':flag_cf:':'🇨🇫',':cg:':'🇨🇬',':flag_cg:':'🇨🇬',':ch:':'🇨🇭',':flag_ch:':'🇨🇭',':ci:':'🇨🇮',':flag_ci:':'🇨🇮',':ck:':'🇨🇰',':flag_ck:':'🇨🇰',':chile:':'🇨🇱',':flag_cl:':'🇨🇱',':cm:':'🇨🇲',':flag_cm:':'🇨🇲',':cn:':'🇨🇳',':flag_cn:':'🇨🇳',':co:':'🇨🇴',':flag_co:':'🇨🇴',':cp:':'🇨🇵',':flag_cp:':'🇨🇵',':cr:':'🇨🇷',':flag_cr:':'🇨🇷',':cu:':'🇨🇺',':flag_cu:':'🇨🇺',':cv:':'🇨🇻',':flag_cv:':'🇨🇻',':cw:':'🇨🇼',':flag_cw:':'🇨🇼',':cx:':'🇨🇽',':flag_cx:':'🇨🇽',':cy:':'🇨🇾',':flag_cy:':'🇨🇾',':cz:':'🇨🇿',':flag_cz:':'🇨🇿',':de:':'🇩🇪',':flag_de:':'🇩🇪',':dj:':'🇩🇯',':flag_dj:':'🇩🇯',':dk:':'🇩🇰',':flag_dk:':'🇩🇰',':dm:':'🇩🇲',':flag_dm:':'🇩🇲',':do:':'🇩🇴',':flag_do:':'🇩🇴',':dz:':'🇩🇿',':flag_dz:':'🇩🇿',':ec:':'🇪🇨',':flag_ec:':'🇪🇨',':ee:':'🇪🇪',':flag_ee:':'🇪🇪',':eg:':'🇪🇬',':flag_eg:':'🇪🇬',':er:':'🇪🇷',':flag_er:':'🇪🇷',':es:':'🇪🇸',':flag_es:':'🇪🇸',':et:':'🇪🇹',':flag_et:':'🇪🇹',':eu:':'🇪🇺',':flag_eu:':'🇪🇺',':fi:':'🇫🇮',':flag_fi:':'🇫🇮',':fj:':'🇫🇯',':flag_fj:':'🇫🇯',':fm:':'🇫🇲',':flag_fm:':'🇫🇲',':fo:':'🇫🇴',':flag_fo:':'🇫🇴',':fr:':'🇫🇷',':flag_fr:':'🇫🇷',':ga:':'🇬🇦',':flag_ga:':'🇬🇦',':gb:':'🇬🇧',':flag_gb:':'🇬🇧',':gd:':'🇬🇩',':flag_gd:':'🇬🇩',':ge:':'🇬🇪',':flag_ge:':'🇬🇪',':gg:':'🇬🇬',':flag_gg:':'🇬🇬',':gh:':'🇬🇭',':flag_gh:':'🇬🇭',':gi:':'🇬🇮',':flag_gi:':'🇬🇮',':gl:':'🇬🇱',':flag_gl:':'🇬🇱',':gm:':'🇬🇲',':flag_gm:':'🇬🇲',':gn:':'🇬🇳',':flag_gn:':'🇬🇳',':gq:':'🇬🇶',':flag_gq:':'🇬🇶',':gr:':'🇬🇷',':flag_gr:':'🇬🇷',':gt:':'🇬🇹',':flag_gt:':'🇬🇹',':gu:':'🇬🇺',':flag_gu:':'🇬🇺',':gw:':'🇬🇼',':flag_gw:':'🇬🇼',':gy:':'🇬🇾',':flag_gy:':'🇬🇾',':hk:':'🇭🇰',':flag_hk:':'🇭🇰',':hm:':'🇭🇲',':flag_hm:':'🇭🇲',':hn:':'🇭🇳',':flag_hn:':'🇭🇳',':hr:':'🇭🇷',':flag_hr:':'🇭🇷',':ht:':'🇭🇹',':flag_ht:':'🇭🇹',':hu:':'🇭🇺',':flag_hu:':'🇭🇺',':ic:':'🇮🇨',':flag_ic:':'🇮🇨',':indonesia:':'🇮🇩',':flag_id:':'🇮🇩',':ie:':'🇮🇪',':flag_ie:':'🇮🇪',':il:':'🇮🇱',':flag_il:':'🇮🇱',':im:':'🇮🇲',':flag_im:':'🇮🇲',':in:':'🇮🇳',':flag_in:':'🇮🇳',':io:':'🇮🇴',':flag_io:':'🇮🇴',':iq:':'🇮🇶',':flag_iq:':'🇮🇶',':ir:':'🇮🇷',':flag_ir:':'🇮🇷',':is:':'🇮🇸',':flag_is:':'🇮🇸',':it:':'🇮🇹',':flag_it:':'🇮🇹',':je:':'🇯🇪',':flag_je:':'🇯🇪',':jm:':'🇯🇲',':flag_jm:':'🇯🇲',':jo:':'🇯🇴',':flag_jo:':'🇯🇴',':jp:':'🇯🇵',':flag_jp:':'🇯🇵',':ke:':'🇰🇪',':flag_ke:':'🇰🇪',':kg:':'🇰🇬',':flag_kg:':'🇰🇬',':kh:':'🇰🇭',':flag_kh:':'🇰🇭',':ki:':'🇰🇮',':flag_ki:':'🇰🇮',':km:':'🇰🇲',':flag_km:':'🇰🇲',':kn:':'🇰🇳',':flag_kn:':'🇰🇳',':kp:':'🇰🇵',':flag_kp:':'🇰🇵',':kr:':'🇰🇷',':flag_kr:':'🇰🇷',':kw:':'🇰🇼',':flag_kw:':'🇰🇼',':ky:':'🇰🇾',':flag_ky:':'🇰🇾',':kz:':'🇰🇿',':flag_kz:':'🇰🇿',':la:':'🇱🇦',':flag_la:':'🇱🇦',':lb:':'🇱🇧',':flag_lb:':'🇱🇧',':lc:':'🇱🇨',':flag_lc:':'🇱🇨',':li:':'🇱🇮',':flag_li:':'🇱🇮',':lk:':'🇱🇰',':flag_lk:':'🇱🇰',':lr:':'🇱🇷',':flag_lr:':'🇱🇷',':ls:':'🇱🇸',':flag_ls:':'🇱🇸',':lt:':'🇱🇹',':flag_lt:':'🇱🇹',':lu:':'🇱🇺',':flag_lu:':'🇱🇺',':lv:':'🇱🇻',':flag_lv:':'🇱🇻',':ly:':'🇱🇾',':flag_ly:':'🇱🇾',':ma:':'🇲🇦',':flag_ma:':'🇲🇦',':mc:':'🇲🇨',':flag_mc:':'🇲🇨',':md:':'🇲🇩',':flag_md:':'🇲🇩',':me:':'🇲🇪',':flag_me:':'🇲🇪',':mg:':'🇲🇬',':flag_mg:':'🇲🇬',':mh:':'🇲🇭',':flag_mh:':'🇲🇭',':mk:':'🇲🇰',':flag_mk:':'🇲🇰',':ml:':'🇲🇱',':flag_ml:':'🇲🇱',':mm:':'🇲🇲',':flag_mm:':'🇲🇲',':mn:':'🇲🇳',':flag_mn:':'🇲🇳',':mo:':'🇲🇴',':flag_mo:':'🇲🇴',':mp:':'🇲🇵',':flag_mp:':'🇲🇵',':mr:':'🇲🇷',':flag_mr:':'🇲🇷',':ms:':'🇲🇸',':flag_ms:':'🇲🇸',':mt:':'🇲🇹',':flag_mt:':'🇲🇹',':mu:':'🇲🇺',':flag_mu:':'🇲🇺',':mv:':'🇲🇻',':flag_mv:':'🇲🇻',':mw:':'🇲🇼',':flag_mw:':'🇲🇼',':mx:':'🇲🇽',':flag_mx:':'🇲🇽',':my:':'🇲🇾',':flag_my:':'🇲🇾',':mz:':'🇲🇿',':flag_mz:':'🇲🇿',':na:':'🇳🇦',':flag_na:':'🇳🇦',':ne:':'🇳🇪',':flag_ne:':'🇳🇪',':nf:':'🇳🇫',':flag_nf:':'🇳🇫',':nigeria:':'🇳🇬',':flag_ng:':'🇳🇬',':ni:':'🇳🇮',':flag_ni:':'🇳🇮',':nl:':'🇳🇱',':flag_nl:':'🇳🇱',':no:':'🇳🇴',':flag_no:':'🇳🇴',':np:':'🇳🇵',':flag_np:':'🇳🇵',':nr:':'🇳🇷',':flag_nr:':'🇳🇷',':nu:':'🇳🇺',':flag_nu:':'🇳🇺',':nz:':'🇳🇿',':flag_nz:':'🇳🇿',':om:':'🇴🇲',':flag_om:':'🇴🇲',':pa:':'🇵🇦',':flag_pa:':'🇵🇦',':pe:':'🇵🇪',':flag_pe:':'🇵🇪',':pf:':'🇵🇫',':flag_pf:':'🇵🇫',':pg:':'🇵🇬',':flag_pg:':'🇵🇬',':ph:':'🇵🇭',':flag_ph:':'🇵🇭',':pk:':'🇵🇰',':flag_pk:':'🇵🇰',':pl:':'🇵🇱',':flag_pl:':'🇵🇱',':pn:':'🇵🇳',':flag_pn:':'🇵🇳',':pr:':'🇵🇷',':flag_pr:':'🇵🇷',':ps:':'🇵🇸',':flag_ps:':'🇵🇸',':pt:':'🇵🇹',':flag_pt:':'🇵🇹',':pw:':'🇵🇼',':flag_pw:':'🇵🇼',':py:':'🇵🇾',':flag_py:':'🇵🇾',':qa:':'🇶🇦',':flag_qa:':'🇶🇦',':ro:':'🇷🇴',':flag_ro:':'🇷🇴',':rs:':'🇷🇸',':flag_rs:':'🇷🇸',':ru:':'🇷🇺',':flag_ru:':'🇷🇺',':rw:':'🇷🇼',':flag_rw:':'🇷🇼',':saudiarabia:':'🇸🇦',':saudi:':'🇸🇦',':flag_sa:':'🇸🇦',':sb:':'🇸🇧',':flag_sb:':'🇸🇧',':sc:':'🇸🇨',':flag_sc:':'🇸🇨',':sd:':'🇸🇩',':flag_sd:':'🇸🇩',':se:':'🇸🇪',':flag_se:':'🇸🇪',':sg:':'🇸🇬',':flag_sg:':'🇸🇬',':sh:':'🇸🇭',':flag_sh:':'🇸🇭',':si:':'🇸🇮',':flag_si:':'🇸🇮',':sj:':'🇸🇯',':flag_sj:':'🇸🇯',':sk:':'🇸🇰',':flag_sk:':'🇸🇰',':sl:':'🇸🇱',':flag_sl:':'🇸🇱',':sm:':'🇸🇲',':flag_sm:':'🇸🇲',':sn:':'🇸🇳',':flag_sn:':'🇸🇳',':so:':'🇸🇴',':flag_so:':'🇸🇴',':sr:':'🇸🇷',':flag_sr:':'🇸🇷',':ss:':'🇸🇸',':flag_ss:':'🇸🇸',':st:':'🇸🇹',':flag_st:':'🇸🇹',':sv:':'🇸🇻',':flag_sv:':'🇸🇻',':sx:':'🇸🇽',':flag_sx:':'🇸🇽',':sy:':'🇸🇾',':flag_sy:':'🇸🇾',':sz:':'🇸🇿',':flag_sz:':'🇸🇿',':ta:':'🇹🇦',':flag_ta:':'🇹🇦',':tc:':'🇹🇨',':flag_tc:':'🇹🇨',':td:':'🇹🇩',':flag_td:':'🇹🇩',':tg:':'🇹🇬',':flag_tg:':'🇹🇬',':th:':'🇹🇭',':flag_th:':'🇹🇭',':tj:':'🇹🇯',':flag_tj:':'🇹🇯',':tk:':'🇹🇰',':flag_tk:':'🇹🇰',':tl:':'🇹🇱',':flag_tl:':'🇹🇱',':turkmenistan:':'🇹🇲',':flag_tm:':'🇹🇲',':tn:':'🇹🇳',':flag_tn:':'🇹🇳',':to:':'🇹🇴',':flag_to:':'🇹🇴',':tr:':'🇹🇷',':flag_tr:':'🇹🇷',':tt:':'🇹🇹',':flag_tt:':'🇹🇹',':tuvalu:':'🇹🇻',':flag_tv:':'🇹🇻',':tw:':'🇹🇼',':flag_tw:':'🇹🇼',':tz:':'🇹🇿',':flag_tz:':'🇹🇿',':ua:':'🇺🇦',':flag_ua:':'🇺🇦',':ug:':'🇺🇬',':flag_ug:':'🇺🇬',':um:':'🇺🇲',':flag_um:':'🇺🇲',':us:':'🇺🇸',':flag_us:':'🇺🇸',':uy:':'🇺🇾',':flag_uy:':'🇺🇾',':uz:':'🇺🇿',':flag_uz:':'🇺🇿',':va:':'🇻🇦',':flag_va:':'🇻🇦',':vc:':'🇻🇨',':flag_vc:':'🇻🇨',':ve:':'🇻🇪',':flag_ve:':'🇻🇪',':vg:':'🇻🇬',':flag_vg:':'🇻🇬',':vi:':'🇻🇮',':flag_vi:':'🇻🇮',':vn:':'🇻🇳',':flag_vn:':'🇻🇳',':vu:':'🇻🇺',':flag_vu:':'🇻🇺',':ws:':'🇼🇸',':flag_ws:':'🇼🇸',':ye:':'🇾🇪',':flag_ye:':'🇾🇪',':za:':'🇿🇦',':flag_za:':'🇿🇦',':zm:':'🇿🇲',':flag_zm:':'🇿🇲',':zw:':'🇿🇼',':flag_zw:':'🇿🇼',':foot_light_skin_tone:':'🦶🏻',':foot_tone1:':'🦶🏻',':foot_medium_light_skin_tone:':'🦶🏼',':foot_tone2:':'🦶🏼',':foot_medium_skin_tone:':'🦶🏽',':foot_tone3:':'🦶🏽',':foot_medium_dark_skin_tone:':'🦶🏾',':foot_tone4:':'🦶🏾',':foot_dark_skin_tone:':'🦶🏿',':foot_tone5:':'🦶🏿',':girl_tone1:':'👧🏻',':girl_tone2:':'👧🏼',':girl_tone3:':'👧🏽',':girl_tone4:':'👧🏾',':girl_tone5:':'👧🏿',':guardsman_tone1:':'💂🏻',':guard_tone1:':'💂🏻',':guardsman_tone2:':'💂🏼',':guard_tone2:':'💂🏼',':guardsman_tone3:':'💂🏽',':guard_tone3:':'💂🏽',':guardsman_tone4:':'💂🏾',':guard_tone4:':'💂🏾',':guardsman_tone5:':'💂🏿',':guard_tone5:':'💂🏿',':raised_hand_with_fingers_splayed_tone1:':'🖐️🏻',':hand_splayed_tone1:':'🖐️🏻',':raised_hand_with_fingers_splayed_tone2:':'🖐️🏼',':hand_splayed_tone2:':'🖐️🏼',':raised_hand_with_fingers_splayed_tone3:':'🖐️🏽',':hand_splayed_tone3:':'🖐️🏽',':raised_hand_with_fingers_splayed_tone4:':'🖐️🏾',':hand_splayed_tone4:':'🖐️🏾',':raised_hand_with_fingers_splayed_tone5:':'🖐️🏿',':hand_splayed_tone5:':'🖐️🏿',':horse_racing_tone1:':'🏇🏻',':horse_racing_tone2:':'🏇🏼',':horse_racing_tone3:':'🏇🏽',':horse_racing_tone4:':'🏇🏾',':horse_racing_tone5:':'🏇🏿',':left_fist_tone1:':'🤛🏻',':left_facing_fist_tone1:':'🤛🏻',':left_fist_tone2:':'🤛🏼',':left_facing_fist_tone2:':'🤛🏼',':left_fist_tone3:':'🤛🏽',':left_facing_fist_tone3:':'🤛🏽',':left_fist_tone4:':'🤛🏾',':left_facing_fist_tone4:':'🤛🏾',':left_fist_tone5:':'🤛🏿',':left_facing_fist_tone5:':'🤛🏿',':leg_light_skin_tone:':'🦵🏻',':leg_tone1:':'🦵🏻',':leg_medium_light_skin_tone:':'🦵🏼',':leg_tone2:':'🦵🏼',':leg_medium_skin_tone:':'🦵🏽',':leg_tone3:':'🦵🏽',':leg_medium_dark_skin_tone:':'🦵🏾',':leg_tone4:':'🦵🏾',':leg_dark_skin_tone:':'🦵🏿',':leg_tone5:':'🦵🏿',':man_in_business_suit_levitating_tone1:':'🕴️🏻',':man_in_business_suit_levitating_light_skin_tone:':'🕴️🏻',':levitate_tone1:':'🕴️🏻',':man_in_business_suit_levitating_tone2:':'🕴️🏼',':man_in_business_suit_levitating_medium_light_skin_tone:':'🕴️🏼',':levitate_tone2:':'🕴️🏼',':man_in_business_suit_levitating_tone3:':'🕴️🏽',':man_in_business_suit_levitating_medium_skin_tone:':'🕴️🏽',':levitate_tone3:':'🕴️🏽',':man_in_business_suit_levitating_tone4:':'🕴️🏾',':man_in_business_suit_levitating_medium_dark_skin_tone:':'🕴️🏾',':levitate_tone4:':'🕴️🏾',':man_in_business_suit_levitating_tone5:':'🕴️🏿',':man_in_business_suit_levitating_dark_skin_tone:':'🕴️🏿',':levitate_tone5:':'🕴️🏿',':love_you_gesture_light_skin_tone:':'🤟🏻',':love_you_gesture_tone1:':'🤟🏻',':love_you_gesture_medium_light_skin_tone:':'🤟🏼',':love_you_gesture_tone2:':'🤟🏼',':love_you_gesture_medium_skin_tone:':'🤟🏽',':love_you_gesture_tone3:':'🤟🏽',':love_you_gesture_medium_dark_skin_tone:':'🤟🏾',':love_you_gesture_tone4:':'🤟🏾',':love_you_gesture_dark_skin_tone:':'🤟🏿',':love_you_gesture_tone5:':'🤟🏿',':mage_light_skin_tone:':'🧙🏻',':mage_tone1:':'🧙🏻',':mage_medium_light_skin_tone:':'🧙🏼',':mage_tone2:':'🧙🏼',':mage_medium_skin_tone:':'🧙🏽',':mage_tone3:':'🧙🏽',':mage_medium_dark_skin_tone:':'🧙🏾',':mage_tone4:':'🧙🏾',':mage_dark_skin_tone:':'🧙🏿',':mage_tone5:':'🧙🏿',':man_artist:':'👨‍🎨',':man_astronaut:':'👨‍🚀',':man_bald:':'👨‍🦲',':man_cook:':'👨‍🍳',':man_curly_haired:':'👨‍🦱',':male_dancer_tone1:':'🕺🏻',':man_dancing_tone1:':'🕺🏻',':male_dancer_tone2:':'🕺🏼',':man_dancing_tone2:':'🕺🏼',':male_dancer_tone3:':'🕺🏽',':man_dancing_tone3:':'🕺🏽',':male_dancer_tone4:':'🕺🏾',':man_dancing_tone4:':'🕺🏾',':male_dancer_tone5:':'🕺🏿',':man_dancing_tone5:':'🕺🏿',':man_factory_worker:':'👨‍🏭',':man_farmer:':'👨‍🌾',':man_firefighter:':'👨‍🚒',':man_in_manual_wheelchair:':'👨‍🦽',':man_in_motorized_wheelchair:':'👨‍🦼',':tuxedo_tone1:':'🤵🏻',':man_in_tuxedo_tone1:':'🤵🏻',':tuxedo_tone2:':'🤵🏼',':man_in_tuxedo_tone2:':'🤵🏼',':tuxedo_tone3:':'🤵🏽',':man_in_tuxedo_tone3:':'🤵🏽',':tuxedo_tone4:':'🤵🏾',':man_in_tuxedo_tone4:':'🤵🏾',':tuxedo_tone5:':'🤵🏿',':man_in_tuxedo_tone5:':'🤵🏿',':man_mechanic:':'👨‍🔧',':man_office_worker:':'👨‍💼',':man_red_haired:':'👨‍🦰',':man_scientist:':'👨‍🔬',':man_singer:':'👨‍🎤',':man_student:':'👨‍🎓',':man_teacher:':'👨‍🏫',':man_technologist:':'👨‍💻',':man_tone1:':'👨🏻',':man_tone2:':'👨🏼',':man_tone3:':'👨🏽',':man_tone4:':'👨🏾',':man_tone5:':'👨🏿',':man_white_haired:':'👨‍🦳',':man_with_gua_pi_mao_tone1:':'👲🏻',':man_with_chinese_cap_tone1:':'👲🏻',':man_with_gua_pi_mao_tone2:':'👲🏼',':man_with_chinese_cap_tone2:':'👲🏼',':man_with_gua_pi_mao_tone3:':'👲🏽',':man_with_chinese_cap_tone3:':'👲🏽',':man_with_gua_pi_mao_tone4:':'👲🏾',':man_with_chinese_cap_tone4:':'👲🏾',':man_with_gua_pi_mao_tone5:':'👲🏿',':man_with_chinese_cap_tone5:':'👲🏿',':man_with_probing_cane:':'👨‍🦯',':men_holding_hands_light_skin_tone:':'👬🏻',':men_holding_hands_tone1:':'👬🏻',':men_holding_hands_medium_light_skin_tone:':'👬🏼',':men_holding_hands_tone2:':'👬🏼',':men_holding_hands_medium_skin_tone:':'👬🏽',':men_holding_hands_tone3:':'👬🏽',':men_holding_hands_medium_dark_skin_tone:':'👬🏾',':men_holding_hands_tone4:':'👬🏾',':men_holding_hands_dark_skin_tone:':'👬🏿',':men_holding_hands_tone5:':'👬🏿',':merperson_light_skin_tone:':'🧜🏻',':merperson_tone1:':'🧜🏻',':merperson_medium_light_skin_tone:':'🧜🏼',':merperson_tone2:':'🧜🏼',':merperson_medium_skin_tone:':'🧜🏽',':merperson_tone3:':'🧜🏽',':merperson_medium_dark_skin_tone:':'🧜🏾',':merperson_tone4:':'🧜🏾',':merperson_dark_skin_tone:':'🧜🏿',':merperson_tone5:':'🧜🏿',':sign_of_the_horns_tone1:':'🤘🏻',':metal_tone1:':'🤘🏻',':sign_of_the_horns_tone2:':'🤘🏼',':metal_tone2:':'🤘🏼',':sign_of_the_horns_tone3:':'🤘🏽',':metal_tone3:':'🤘🏽',':sign_of_the_horns_tone4:':'🤘🏾',':metal_tone4:':'🤘🏾',':sign_of_the_horns_tone5:':'🤘🏿',':metal_tone5:':'🤘🏿',':reversed_hand_with_middle_finger_extended_tone1:':'🖕🏻',':middle_finger_tone1:':'🖕🏻',':reversed_hand_with_middle_finger_extended_tone2:':'🖕🏼',':middle_finger_tone2:':'🖕🏼',':reversed_hand_with_middle_finger_extended_tone3:':'🖕🏽',':middle_finger_tone3:':'🖕🏽',':reversed_hand_with_middle_finger_extended_tone4:':'🖕🏾',':middle_finger_tone4:':'🖕🏾',':reversed_hand_with_middle_finger_extended_tone5:':'🖕🏿',':middle_finger_tone5:':'🖕🏿',':mother_christmas_tone1:':'🤶🏻',':mrs_claus_tone1:':'🤶🏻',':mother_christmas_tone2:':'🤶🏼',':mrs_claus_tone2:':'🤶🏼',':mother_christmas_tone3:':'🤶🏽',':mrs_claus_tone3:':'🤶🏽',':mother_christmas_tone4:':'🤶🏾',':mrs_claus_tone4:':'🤶🏾',':mother_christmas_tone5:':'🤶🏿',':mrs_claus_tone5:':'🤶🏿',':muscle_tone1:':'💪🏻',':muscle_tone2:':'💪🏼',':muscle_tone3:':'💪🏽',':muscle_tone4:':'💪🏾',':muscle_tone5:':'💪🏿',':nail_care_tone1:':'💅🏻',':nail_care_tone2:':'💅🏼',':nail_care_tone3:':'💅🏽',':nail_care_tone4:':'💅🏾',':nail_care_tone5:':'💅🏿',':nose_tone1:':'👃🏻',':nose_tone2:':'👃🏼',':nose_tone3:':'👃🏽',':nose_tone4:':'👃🏾',':nose_tone5:':'👃🏿',':ok_hand_tone1:':'👌🏻',':ok_hand_tone2:':'👌🏼',':ok_hand_tone3:':'👌🏽',':ok_hand_tone4:':'👌🏾',':ok_hand_tone5:':'👌🏿',':older_adult_light_skin_tone:':'🧓🏻',':older_adult_tone1:':'🧓🏻',':older_adult_medium_light_skin_tone:':'🧓🏼',':older_adult_tone2:':'🧓🏼',':older_adult_medium_skin_tone:':'🧓🏽',':older_adult_tone3:':'🧓🏽',':older_adult_medium_dark_skin_tone:':'🧓🏾',':older_adult_tone4:':'🧓🏾',':older_adult_dark_skin_tone:':'🧓🏿',':older_adult_tone5:':'🧓🏿',':older_man_tone1:':'👴🏻',':older_man_tone2:':'👴🏼',':older_man_tone3:':'👴🏽',':older_man_tone4:':'👴🏾',':older_man_tone5:':'👴🏿',':grandma_tone1:':'👵🏻',':older_woman_tone1:':'👵🏻',':grandma_tone2:':'👵🏼',':older_woman_tone2:':'👵🏼',':grandma_tone3:':'👵🏽',':older_woman_tone3:':'👵🏽',':grandma_tone4:':'👵🏾',':older_woman_tone4:':'👵🏾',':grandma_tone5:':'👵🏿',':older_woman_tone5:':'👵🏿',':open_hands_tone1:':'👐🏻',':open_hands_tone2:':'👐🏼',':open_hands_tone3:':'👐🏽',':open_hands_tone4:':'👐🏾',':open_hands_tone5:':'👐🏿',':palms_up_together_light_skin_tone:':'🤲🏻',':palms_up_together_tone1:':'🤲🏻',':palms_up_together_medium_light_skin_tone:':'🤲🏼',':palms_up_together_tone2:':'🤲🏼',':palms_up_together_medium_skin_tone:':'🤲🏽',':palms_up_together_tone3:':'🤲🏽',':palms_up_together_medium_dark_skin_tone:':'🤲🏾',':palms_up_together_tone4:':'🤲🏾',':palms_up_together_dark_skin_tone:':'🤲🏿',':palms_up_together_tone5:':'🤲🏿',':bicyclist_tone1:':'🚴🏻',':person_biking_tone1:':'🚴🏻',':bicyclist_tone2:':'🚴🏼',':person_biking_tone2:':'🚴🏼',':bicyclist_tone3:':'🚴🏽',':person_biking_tone3:':'🚴🏽',':bicyclist_tone4:':'🚴🏾',':person_biking_tone4:':'🚴🏾',':bicyclist_tone5:':'🚴🏿',':person_biking_tone5:':'🚴🏿',':bow_tone1:':'🙇🏻',':person_bowing_tone1:':'🙇🏻',':bow_tone2:':'🙇🏼',':person_bowing_tone2:':'🙇🏼',':bow_tone3:':'🙇🏽',':person_bowing_tone3:':'🙇🏽',':bow_tone4:':'🙇🏾',':person_bowing_tone4:':'🙇🏾',':bow_tone5:':'🙇🏿',':person_bowing_tone5:':'🙇🏿',':person_climbing_light_skin_tone:':'🧗🏻',':person_climbing_tone1:':'🧗🏻',':person_climbing_medium_light_skin_tone:':'🧗🏼',':person_climbing_tone2:':'🧗🏼',':person_climbing_medium_skin_tone:':'🧗🏽',':person_climbing_tone3:':'🧗🏽',':person_climbing_medium_dark_skin_tone:':'🧗🏾',':person_climbing_tone4:':'🧗🏾',':person_climbing_dark_skin_tone:':'🧗🏿',':person_climbing_tone5:':'🧗🏿',':cartwheel_tone1:':'🤸🏻',':person_doing_cartwheel_tone1:':'🤸🏻',':cartwheel_tone2:':'🤸🏼',':person_doing_cartwheel_tone2:':'🤸🏼',':cartwheel_tone3:':'🤸🏽',':person_doing_cartwheel_tone3:':'🤸🏽',':cartwheel_tone4:':'🤸🏾',':person_doing_cartwheel_tone4:':'🤸🏾',':cartwheel_tone5:':'🤸🏿',':person_doing_cartwheel_tone5:':'🤸🏿',':face_palm_tone1:':'🤦🏻',':facepalm_tone1:':'🤦🏻',':person_facepalming_tone1:':'🤦🏻',':face_palm_tone2:':'🤦🏼',':facepalm_tone2:':'🤦🏼',':person_facepalming_tone2:':'🤦🏼',':face_palm_tone3:':'🤦🏽',':facepalm_tone3:':'🤦🏽',':person_facepalming_tone3:':'🤦🏽',':face_palm_tone4:':'🤦🏾',':facepalm_tone4:':'🤦🏾',':person_facepalming_tone4:':'🤦🏾',':face_palm_tone5:':'🤦🏿',':facepalm_tone5:':'🤦🏿',':person_facepalming_tone5:':'🤦🏿',':person_frowning_tone1:':'🙍🏻',':person_frowning_tone2:':'🙍🏼',':person_frowning_tone3:':'🙍🏽',':person_frowning_tone4:':'🙍🏾',':person_frowning_tone5:':'🙍🏿',':no_good_tone1:':'🙅🏻',':person_gesturing_no_tone1:':'🙅🏻',':no_good_tone2:':'🙅🏼',':person_gesturing_no_tone2:':'🙅🏼',':no_good_tone3:':'🙅🏽',':person_gesturing_no_tone3:':'🙅🏽',':no_good_tone4:':'🙅🏾',':person_gesturing_no_tone4:':'🙅🏾',':no_good_tone5:':'🙅🏿',':person_gesturing_no_tone5:':'🙅🏿',':ok_woman_tone1:':'🙆🏻',':person_gesturing_ok_tone1:':'🙆🏻',':ok_woman_tone2:':'🙆🏼',':person_gesturing_ok_tone2:':'🙆🏼',':ok_woman_tone3:':'🙆🏽',':person_gesturing_ok_tone3:':'🙆🏽',':ok_woman_tone4:':'🙆🏾',':person_gesturing_ok_tone4:':'🙆🏾',':ok_woman_tone5:':'🙆🏿',':person_gesturing_ok_tone5:':'🙆🏿',':haircut_tone1:':'💇🏻',':person_getting_haircut_tone1:':'💇🏻',':haircut_tone2:':'💇🏼',':person_getting_haircut_tone2:':'💇🏼',':haircut_tone3:':'💇🏽',':person_getting_haircut_tone3:':'💇🏽',':haircut_tone4:':'💇🏾',':person_getting_haircut_tone4:':'💇🏾',':haircut_tone5:':'💇🏿',':person_getting_haircut_tone5:':'💇🏿',':massage_tone1:':'💆🏻',':person_getting_massage_tone1:':'💆🏻',':massage_tone2:':'💆🏼',':person_getting_massage_tone2:':'💆🏼',':massage_tone3:':'💆🏽',':person_getting_massage_tone3:':'💆🏽',':massage_tone4:':'💆🏾',':person_getting_massage_tone4:':'💆🏾',':massage_tone5:':'💆🏿',':person_getting_massage_tone5:':'💆🏿',':person_golfing_light_skin_tone:':'🏌️🏻',':person_golfing_tone1:':'🏌️🏻',':person_golfing_medium_light_skin_tone:':'🏌️🏼',':person_golfing_tone2:':'🏌️🏼',':person_golfing_medium_skin_tone:':'🏌️🏽',':person_golfing_tone3:':'🏌️🏽',':person_golfing_medium_dark_skin_tone:':'🏌️🏾',':person_golfing_tone4:':'🏌️🏾',':person_golfing_dark_skin_tone:':'🏌️🏿',':person_golfing_tone5:':'🏌️🏿',':person_in_bed_light_skin_tone:':'🛌🏻',':person_in_bed_tone1:':'🛌🏻',':person_in_bed_medium_light_skin_tone:':'🛌🏼',':person_in_bed_tone2:':'🛌🏼',':person_in_bed_medium_skin_tone:':'🛌🏽',':person_in_bed_tone3:':'🛌🏽',':person_in_bed_medium_dark_skin_tone:':'🛌🏾',':person_in_bed_tone4:':'🛌🏾',':person_in_bed_dark_skin_tone:':'🛌🏿',':person_in_bed_tone5:':'🛌🏿',':person_in_lotus_position_light_skin_tone:':'🧘🏻',':person_in_lotus_position_tone1:':'🧘🏻',':person_in_lotus_position_medium_light_skin_tone:':'🧘🏼',':person_in_lotus_position_tone2:':'🧘🏼',':person_in_lotus_position_medium_skin_tone:':'🧘🏽',':person_in_lotus_position_tone3:':'🧘🏽',':person_in_lotus_position_medium_dark_skin_tone:':'🧘🏾',':person_in_lotus_position_tone4:':'🧘🏾',':person_in_lotus_position_dark_skin_tone:':'🧘🏿',':person_in_lotus_position_tone5:':'🧘🏿',':person_in_steamy_room_light_skin_tone:':'🧖🏻',':person_in_steamy_room_tone1:':'🧖🏻',':person_in_steamy_room_medium_light_skin_tone:':'🧖🏼',':person_in_steamy_room_tone2:':'🧖🏼',':person_in_steamy_room_medium_skin_tone:':'🧖🏽',':person_in_steamy_room_tone3:':'🧖🏽',':person_in_steamy_room_medium_dark_skin_tone:':'🧖🏾',':person_in_steamy_room_tone4:':'🧖🏾',':person_in_steamy_room_dark_skin_tone:':'🧖🏿',':person_in_steamy_room_tone5:':'🧖🏿',':juggling_tone1:':'🤹🏻',':juggler_tone1:':'🤹🏻',':person_juggling_tone1:':'🤹🏻',':juggling_tone2:':'🤹🏼',':juggler_tone2:':'🤹🏼',':person_juggling_tone2:':'🤹🏼',':juggling_tone3:':'🤹🏽',':juggler_tone3:':'🤹🏽',':person_juggling_tone3:':'🤹🏽',':juggling_tone4:':'🤹🏾',':juggler_tone4:':'🤹🏾',':person_juggling_tone4:':'🤹🏾',':juggling_tone5:':'🤹🏿',':juggler_tone5:':'🤹🏿',':person_juggling_tone5:':'🤹🏿',':person_kneeling_light_skin_tone:':'🧎🏻',':person_kneeling_tone1:':'🧎🏻',':person_kneeling_medium_light_skin_tone:':'🧎🏼',':person_kneeling_tone2:':'🧎🏼',':person_kneeling_medium_skin_tone:':'🧎🏽',':person_kneeling_tone3:':'🧎🏽',':person_kneeling_medium_dark_skin_tone:':'🧎🏾',':person_kneeling_tone4:':'🧎🏾',':person_kneeling_dark_skin_tone:':'🧎🏿',':person_kneeling_tone5:':'🧎🏿',':lifter_tone1:':'🏋️🏻',':weight_lifter_tone1:':'🏋️🏻',':person_lifting_weights_tone1:':'🏋️🏻',':lifter_tone2:':'🏋️🏼',':weight_lifter_tone2:':'🏋️🏼',':person_lifting_weights_tone2:':'🏋️🏼',':lifter_tone3:':'🏋️🏽',':weight_lifter_tone3:':'🏋️🏽',':person_lifting_weights_tone3:':'🏋️🏽',':lifter_tone4:':'🏋️🏾',':weight_lifter_tone4:':'🏋️🏾',':person_lifting_weights_tone4:':'🏋️🏾',':lifter_tone5:':'🏋️🏿',':weight_lifter_tone5:':'🏋️🏿',':person_lifting_weights_tone5:':'🏋️🏿',':mountain_bicyclist_tone1:':'🚵🏻',':person_mountain_biking_tone1:':'🚵🏻',':mountain_bicyclist_tone2:':'🚵🏼',':person_mountain_biking_tone2:':'🚵🏼',':mountain_bicyclist_tone3:':'🚵🏽',':person_mountain_biking_tone3:':'🚵🏽',':mountain_bicyclist_tone4:':'🚵🏾',':person_mountain_biking_tone4:':'🚵🏾',':mountain_bicyclist_tone5:':'🚵🏿',':person_mountain_biking_tone5:':'🚵🏿',':handball_tone1:':'🤾🏻',':person_playing_handball_tone1:':'🤾🏻',':handball_tone2:':'🤾🏼',':person_playing_handball_tone2:':'🤾🏼',':handball_tone3:':'🤾🏽',':person_playing_handball_tone3:':'🤾🏽',':handball_tone4:':'🤾🏾',':person_playing_handball_tone4:':'🤾🏾',':handball_tone5:':'🤾🏿',':person_playing_handball_tone5:':'🤾🏿',':water_polo_tone1:':'🤽🏻',':person_playing_water_polo_tone1:':'🤽🏻',':water_polo_tone2:':'🤽🏼',':person_playing_water_polo_tone2:':'🤽🏼',':water_polo_tone3:':'🤽🏽',':person_playing_water_polo_tone3:':'🤽🏽',':water_polo_tone4:':'🤽🏾',':person_playing_water_polo_tone4:':'🤽🏾',':water_polo_tone5:':'🤽🏿',':person_playing_water_polo_tone5:':'🤽🏿',':person_with_pouting_face_tone1:':'🙎🏻',':person_pouting_tone1:':'🙎🏻',':person_with_pouting_face_tone2:':'🙎🏼',':person_pouting_tone2:':'🙎🏼',':person_with_pouting_face_tone3:':'🙎🏽',':person_pouting_tone3:':'🙎🏽',':person_with_pouting_face_tone4:':'🙎🏾',':person_pouting_tone4:':'🙎🏾',':person_with_pouting_face_tone5:':'🙎🏿',':person_pouting_tone5:':'🙎🏿',':raising_hand_tone1:':'🙋🏻',':person_raising_hand_tone1:':'🙋🏻',':raising_hand_tone2:':'🙋🏼',':person_raising_hand_tone2:':'🙋🏼',':raising_hand_tone3:':'🙋🏽',':person_raising_hand_tone3:':'🙋🏽',':raising_hand_tone4:':'🙋🏾',':person_raising_hand_tone4:':'🙋🏾',':raising_hand_tone5:':'🙋🏿',':person_raising_hand_tone5:':'🙋🏿',':rowboat_tone1:':'🚣🏻',':person_rowing_boat_tone1:':'🚣🏻',':rowboat_tone2:':'🚣🏼',':person_rowing_boat_tone2:':'🚣🏼',':rowboat_tone3:':'🚣🏽',':person_rowing_boat_tone3:':'🚣🏽',':rowboat_tone4:':'🚣🏾',':person_rowing_boat_tone4:':'🚣🏾',':rowboat_tone5:':'🚣🏿',':person_rowing_boat_tone5:':'🚣🏿',':runner_tone1:':'🏃🏻',':person_running_tone1:':'🏃🏻',':runner_tone2:':'🏃🏼',':person_running_tone2:':'🏃🏼',':runner_tone3:':'🏃🏽',':person_running_tone3:':'🏃🏽',':runner_tone4:':'🏃🏾',':person_running_tone4:':'🏃🏾',':runner_tone5:':'🏃🏿',':person_running_tone5:':'🏃🏿',':shrug_tone1:':'🤷🏻',':person_shrugging_tone1:':'🤷🏻',':shrug_tone2:':'🤷🏼',':person_shrugging_tone2:':'🤷🏼',':shrug_tone3:':'🤷🏽',':person_shrugging_tone3:':'🤷🏽',':shrug_tone4:':'🤷🏾',':person_shrugging_tone4:':'🤷🏾',':shrug_tone5:':'🤷🏿',':person_shrugging_tone5:':'🤷🏿',':person_standing_light_skin_tone:':'🧍🏻',':person_standing_tone1:':'🧍🏻',':person_standing_medium_light_skin_tone:':'🧍🏼',':person_standing_tone2:':'🧍🏼',':person_standing_medium_skin_tone:':'🧍🏽',':person_standing_tone3:':'🧍🏽',':person_standing_medium_dark_skin_tone:':'🧍🏾',':person_standing_tone4:':'🧍🏾',':person_standing_dark_skin_tone:':'🧍🏿',':person_standing_tone5:':'🧍🏿',':surfer_tone1:':'🏄🏻',':person_surfing_tone1:':'🏄🏻',':surfer_tone2:':'🏄🏼',':person_surfing_tone2:':'🏄🏼',':surfer_tone3:':'🏄🏽',':person_surfing_tone3:':'🏄🏽',':surfer_tone4:':'🏄🏾',':person_surfing_tone4:':'🏄🏾',':surfer_tone5:':'🏄🏿',':person_surfing_tone5:':'🏄🏿',':swimmer_tone1:':'🏊🏻',':person_swimming_tone1:':'🏊🏻',':swimmer_tone2:':'🏊🏼',':person_swimming_tone2:':'🏊🏼',':swimmer_tone3:':'🏊🏽',':person_swimming_tone3:':'🏊🏽',':swimmer_tone4:':'🏊🏾',':person_swimming_tone4:':'🏊🏾',':swimmer_tone5:':'🏊🏿',':person_swimming_tone5:':'🏊🏿',':information_desk_person_tone1:':'💁🏻',':person_tipping_hand_tone1:':'💁🏻',':information_desk_person_tone2:':'💁🏼',':person_tipping_hand_tone2:':'💁🏼',':information_desk_person_tone3:':'💁🏽',':person_tipping_hand_tone3:':'💁🏽',':information_desk_person_tone4:':'💁🏾',':person_tipping_hand_tone4:':'💁🏾',':information_desk_person_tone5:':'💁🏿',':person_tipping_hand_tone5:':'💁🏿',':walking_tone1:':'🚶🏻',':person_walking_tone1:':'🚶🏻',':walking_tone2:':'🚶🏼',':person_walking_tone2:':'🚶🏼',':walking_tone3:':'🚶🏽',':person_walking_tone3:':'🚶🏽',':walking_tone4:':'🚶🏾',':person_walking_tone4:':'🚶🏾',':walking_tone5:':'🚶🏿',':person_walking_tone5:':'🚶🏿',':man_with_turban_tone1:':'👳🏻',':person_wearing_turban_tone1:':'👳🏻',':man_with_turban_tone2:':'👳🏼',':person_wearing_turban_tone2:':'👳🏼',':man_with_turban_tone3:':'👳🏽',':person_wearing_turban_tone3:':'👳🏽',':man_with_turban_tone4:':'👳🏾',':person_wearing_turban_tone4:':'👳🏾',':man_with_turban_tone5:':'👳🏿',':person_wearing_turban_tone5:':'👳🏿',':pinching_hand_light_skin_tone:':'🤏🏻',':pinching_hand_tone1:':'🤏🏻',':pinching_hand_medium_light_skin_tone:':'🤏🏼',':pinching_hand_tone2:':'🤏🏼',':pinching_hand_medium_skin_tone:':'🤏🏽',':pinching_hand_tone3:':'🤏🏽',':pinching_hand_medium_dark_skin_tone:':'🤏🏾',':pinching_hand_tone4:':'🤏🏾',':pinching_hand_dark_skin_tone:':'🤏🏿',':pinching_hand_tone5:':'🤏🏿',':point_down_tone1:':'👇🏻',':point_down_tone2:':'👇🏼',':point_down_tone3:':'👇🏽',':point_down_tone4:':'👇🏾',':point_down_tone5:':'👇🏿',':point_left_tone1:':'👈🏻',':point_left_tone2:':'👈🏼',':point_left_tone3:':'👈🏽',':point_left_tone4:':'👈🏾',':point_left_tone5:':'👈🏿',':point_right_tone1:':'👉🏻',':point_right_tone2:':'👉🏼',':point_right_tone3:':'👉🏽',':point_right_tone4:':'👉🏾',':point_right_tone5:':'👉🏿',':point_up_2_tone1:':'👆🏻',':point_up_2_tone2:':'👆🏼',':point_up_2_tone3:':'👆🏽',':point_up_2_tone4:':'👆🏾',':point_up_2_tone5:':'👆🏿',':cop_tone1:':'👮🏻',':police_officer_tone1:':'👮🏻',':cop_tone2:':'👮🏼',':police_officer_tone2:':'👮🏼',':cop_tone3:':'👮🏽',':police_officer_tone3:':'👮🏽',':cop_tone4:':'👮🏾',':police_officer_tone4:':'👮🏾',':cop_tone5:':'👮🏿',':police_officer_tone5:':'👮🏿',':pray_tone1:':'🙏🏻',':pray_tone2:':'🙏🏼',':pray_tone3:':'🙏🏽',':pray_tone4:':'🙏🏾',':pray_tone5:':'🙏🏿',':expecting_woman_tone1:':'🤰🏻',':pregnant_woman_tone1:':'🤰🏻',':expecting_woman_tone2:':'🤰🏼',':pregnant_woman_tone2:':'🤰🏼',':expecting_woman_tone3:':'🤰🏽',':pregnant_woman_tone3:':'🤰🏽',':expecting_woman_tone4:':'🤰🏾',':pregnant_woman_tone4:':'🤰🏾',':expecting_woman_tone5:':'🤰🏿',':pregnant_woman_tone5:':'🤰🏿',':prince_tone1:':'🤴🏻',':prince_tone2:':'🤴🏼',':prince_tone3:':'🤴🏽',':prince_tone4:':'🤴🏾',':prince_tone5:':'🤴🏿',':princess_tone1:':'👸🏻',':princess_tone2:':'👸🏼',':princess_tone3:':'👸🏽',':princess_tone4:':'👸🏾',':princess_tone5:':'👸🏿',':punch_tone1:':'👊🏻',':punch_tone2:':'👊🏼',':punch_tone3:':'👊🏽',':punch_tone4:':'👊🏾',':punch_tone5:':'👊🏿',':gay_pride_flag:':'🏳️‍🌈',':rainbow_flag:':'🏳️‍🌈',':back_of_hand_tone1:':'🤚🏻',':raised_back_of_hand_tone1:':'🤚🏻',':back_of_hand_tone2:':'🤚🏼',':raised_back_of_hand_tone2:':'🤚🏼',':back_of_hand_tone3:':'🤚🏽',':raised_back_of_hand_tone3:':'🤚🏽',':back_of_hand_tone4:':'🤚🏾',':raised_back_of_hand_tone4:':'🤚🏾',':back_of_hand_tone5:':'🤚🏿',':raised_back_of_hand_tone5:':'🤚🏿',':raised_hands_tone1:':'🙌🏻',':raised_hands_tone2:':'🙌🏼',':raised_hands_tone3:':'🙌🏽',':raised_hands_tone4:':'🙌🏾',':raised_hands_tone5:':'🙌🏿',':right_fist_tone1:':'🤜🏻',':right_facing_fist_tone1:':'🤜🏻',':right_fist_tone2:':'🤜🏼',':right_facing_fist_tone2:':'🤜🏼',':right_fist_tone3:':'🤜🏽',':right_facing_fist_tone3:':'🤜🏽',':right_fist_tone4:':'🤜🏾',':right_facing_fist_tone4:':'🤜🏾',':right_fist_tone5:':'🤜🏿',':right_facing_fist_tone5:':'🤜🏿',':santa_tone1:':'🎅🏻',':santa_tone2:':'🎅🏼',':santa_tone3:':'🎅🏽',':santa_tone4:':'🎅🏾',':santa_tone5:':'🎅🏿',':selfie_tone1:':'🤳🏻',':selfie_tone2:':'🤳🏼',':selfie_tone3:':'🤳🏽',':selfie_tone4:':'🤳🏾',':selfie_tone5:':'🤳🏿',':service_dog:':'🐕‍🦺',':snowboarder_light_skin_tone:':'🏂🏻',':snowboarder_tone1:':'🏂🏻',':snowboarder_medium_light_skin_tone:':'🏂🏼',':snowboarder_tone2:':'🏂🏼',':snowboarder_medium_skin_tone:':'🏂🏽',':snowboarder_tone3:':'🏂🏽',':snowboarder_medium_dark_skin_tone:':'🏂🏾',':snowboarder_tone4:':'🏂🏾',':snowboarder_dark_skin_tone:':'🏂🏿',':snowboarder_tone5:':'🏂🏿',':superhero_light_skin_tone:':'🦸🏻',':superhero_tone1:':'🦸🏻',':superhero_medium_light_skin_tone:':'🦸🏼',':superhero_tone2:':'🦸🏼',':superhero_medium_skin_tone:':'🦸🏽',':superhero_tone3:':'🦸🏽',':superhero_medium_dark_skin_tone:':'🦸🏾',':superhero_tone4:':'🦸🏾',':superhero_dark_skin_tone:':'🦸🏿',':superhero_tone5:':'🦸🏿',':supervillain_light_skin_tone:':'🦹🏻',':supervillain_tone1:':'🦹🏻',':supervillain_medium_light_skin_tone:':'🦹🏼',':supervillain_tone2:':'🦹🏼',':supervillain_medium_skin_tone:':'🦹🏽',':supervillain_tone3:':'🦹🏽',':supervillain_medium_dark_skin_tone:':'🦹🏾',':supervillain_tone4:':'🦹🏾',':supervillain_dark_skin_tone:':'🦹🏿',':supervillain_tone5:':'🦹🏿',':-1_tone1:':'👎🏻',':thumbdown_tone1:':'👎🏻',':thumbsdown_tone1:':'👎🏻',':-1_tone2:':'👎🏼',':thumbdown_tone2:':'👎🏼',':thumbsdown_tone2:':'👎🏼',':-1_tone3:':'👎🏽',':thumbdown_tone3:':'👎🏽',':thumbsdown_tone3:':'👎🏽',':-1_tone4:':'👎🏾',':thumbdown_tone4:':'👎🏾',':thumbsdown_tone4:':'👎🏾',':-1_tone5:':'👎🏿',':thumbdown_tone5:':'👎🏿',':thumbsdown_tone5:':'👎🏿',':+1_tone1:':'👍🏻',':thumbup_tone1:':'👍🏻',':thumbsup_tone1:':'👍🏻',':+1_tone2:':'👍🏼',':thumbup_tone2:':'👍🏼',':thumbsup_tone2:':'👍🏼',':+1_tone3:':'👍🏽',':thumbup_tone3:':'👍🏽',':thumbsup_tone3:':'👍🏽',':+1_tone4:':'👍🏾',':thumbup_tone4:':'👍🏾',':thumbsup_tone4:':'👍🏾',':+1_tone5:':'👍🏿',':thumbup_tone5:':'👍🏿',':thumbsup_tone5:':'👍🏿',':united_nations:':'🇺🇳',':vampire_light_skin_tone:':'🧛🏻',':vampire_tone1:':'🧛🏻',':vampire_medium_light_skin_tone:':'🧛🏼',':vampire_tone2:':'🧛🏼',':vampire_medium_skin_tone:':'🧛🏽',':vampire_tone3:':'🧛🏽',':vampire_medium_dark_skin_tone:':'🧛🏾',':vampire_tone4:':'🧛🏾',':vampire_dark_skin_tone:':'🧛🏿',':vampire_tone5:':'🧛🏿',':raised_hand_with_part_between_middle_and_ring_fingers_tone1:':'🖖🏻',':vulcan_tone1:':'🖖🏻',':raised_hand_with_part_between_middle_and_ring_fingers_tone2:':'🖖🏼',':vulcan_tone2:':'🖖🏼',':raised_hand_with_part_between_middle_and_ring_fingers_tone3:':'🖖🏽',':vulcan_tone3:':'🖖🏽',':raised_hand_with_part_between_middle_and_ring_fingers_tone4:':'🖖🏾',':vulcan_tone4:':'🖖🏾',':raised_hand_with_part_between_middle_and_ring_fingers_tone5:':'🖖🏿',':vulcan_tone5:':'🖖🏿',':wave_tone1:':'👋🏻',':wave_tone2:':'👋🏼',':wave_tone3:':'👋🏽',':wave_tone4:':'👋🏾',':wave_tone5:':'👋🏿',':woman_and_man_holding_hands_light_skin_tone:':'👫🏻',':woman_and_man_holding_hands_tone1:':'👫🏻',':woman_and_man_holding_hands_medium_light_skin_tone:':'👫🏼',':woman_and_man_holding_hands_tone2:':'👫🏼',':woman_and_man_holding_hands_medium_skin_tone:':'👫🏽',':woman_and_man_holding_hands_tone3:':'👫🏽',':woman_and_man_holding_hands_medium_dark_skin_tone:':'👫🏾',':woman_and_man_holding_hands_tone4:':'👫🏾',':woman_and_man_holding_hands_dark_skin_tone:':'👫🏿',':woman_and_man_holding_hands_tone5:':'👫🏿',':woman_artist:':'👩‍🎨',':woman_astronaut:':'👩‍🚀',':woman_bald:':'👩‍🦲',':woman_cook:':'👩‍🍳',':woman_curly_haired:':'👩‍🦱',':woman_factory_worker:':'👩‍🏭',':woman_farmer:':'👩‍🌾',':woman_firefighter:':'👩‍🚒',':woman_in_manual_wheelchair:':'👩‍🦽',':woman_in_motorized_wheelchair:':'👩‍🦼',':woman_mechanic:':'👩‍🔧',':woman_office_worker:':'👩‍💼',':woman_red_haired:':'👩‍🦰',':woman_scientist:':'👩‍🔬',':woman_singer:':'👩‍🎤',':woman_student:':'👩‍🎓',':woman_teacher:':'👩‍🏫',':woman_technologist:':'👩‍💻',':woman_tone1:':'👩🏻',':woman_tone2:':'👩🏼',':woman_tone3:':'👩🏽',':woman_tone4:':'👩🏾',':woman_tone5:':'👩🏿',':woman_white_haired:':'👩‍🦳',':woman_with_headscarf_light_skin_tone:':'🧕🏻',':woman_with_headscarf_tone1:':'🧕🏻',':woman_with_headscarf_medium_light_skin_tone:':'🧕🏼',':woman_with_headscarf_tone2:':'🧕🏼',':woman_with_headscarf_medium_skin_tone:':'🧕🏽',':woman_with_headscarf_tone3:':'🧕🏽',':woman_with_headscarf_medium_dark_skin_tone:':'🧕🏾',':woman_with_headscarf_tone4:':'🧕🏾',':woman_with_headscarf_dark_skin_tone:':'🧕🏿',':woman_with_headscarf_tone5:':'🧕🏿',':woman_with_probing_cane:':'👩‍🦯',':women_holding_hands_light_skin_tone:':'👭🏻',':women_holding_hands_tone1:':'👭🏻',':women_holding_hands_medium_light_skin_tone:':'👭🏼',':women_holding_hands_tone2:':'👭🏼',':women_holding_hands_medium_skin_tone:':'👭🏽',':women_holding_hands_tone3:':'👭🏽',':women_holding_hands_medium_dark_skin_tone:':'👭🏾',':women_holding_hands_tone4:':'👭🏾',':women_holding_hands_dark_skin_tone:':'👭🏿',':women_holding_hands_tone5:':'👭🏿',':blond-haired_man:':'👱‍♂️',':blond-haired_woman:':'👱‍♀️',':deaf_man:':'🧏‍♂️',':deaf_woman:':'🧏‍♀️',':fist_tone1:':'✊🏻',':fist_tone2:':'✊🏼',':fist_tone3:':'✊🏽',':fist_tone4:':'✊🏾',':fist_tone5:':'✊🏿',':man_biking:':'🚴‍♂️',':man_bowing:':'🙇‍♂️',':man_cartwheeling:':'🤸‍♂️',':man_climbing:':'🧗‍♂️',':man_construction_worker:':'👷‍♂️',':man_detective:':'🕵️‍♂️',':man_elf:':'🧝‍♂️',':man_facepalming:':'🤦‍♂️',':man_fairy:':'🧚‍♂️',':man_frowning:':'🙍‍♂️',':man_genie:':'🧞‍♂️',':man_gesturing_no:':'🙅‍♂️',':man_gesturing_ok:':'🙆‍♂️',':man_getting_face_massage:':'💆‍♂️',':man_getting_haircut:':'💇‍♂️',':man_golfing:':'🏌️‍♂️',':man_guard:':'💂‍♂️',':man_health_worker:':'👨‍⚕️',':man_in_lotus_position:':'🧘‍♂️',':man_in_steamy_room:':'🧖‍♂️',':man_judge:':'👨‍⚖️',':man_juggling:':'🤹‍♂️',':man_kneeling:':'🧎‍♂️',':man_lifting_weights:':'🏋️‍♂️',':man_mage:':'🧙‍♂️',':man_mountain_biking:':'🚵‍♂️',':man_pilot:':'👨‍✈️',':man_playing_handball:':'🤾‍♂️',':man_playing_water_polo:':'🤽‍♂️',':man_police_officer:':'👮‍♂️',':man_pouting:':'🙎‍♂️',':man_raising_hand:':'🙋‍♂️',':man_rowing_boat:':'🚣‍♂️',':man_running:':'🏃‍♂️',':man_shrugging:':'🤷‍♂️',':man_standing:':'🧍‍♂️',':man_superhero:':'🦸‍♂️',':man_supervillain:':'🦹‍♂️',':man_surfing:':'🏄‍♂️',':man_swimming:':'🏊‍♂️',':man_tipping_hand:':'💁‍♂️',':man_vampire:':'🧛‍♂️',':man_walking:':'🚶‍♂️',':man_wearing_turban:':'👳‍♂️',':man_zombie:':'🧟‍♂️',':men_with_bunny_ears_partying:':'👯‍♂️',':men_wrestling:':'🤼♂️',':mermaid:':'🧜‍♀️',':merman:':'🧜‍♂️',':basketball_player_tone1:':'⛹️🏻',':person_with_ball_tone1:':'⛹️🏻',':person_bouncing_ball_tone1:':'⛹️🏻',':basketball_player_tone2:':'⛹️🏼',':person_with_ball_tone2:':'⛹️🏼',':person_bouncing_ball_tone2:':'⛹️🏼',':basketball_player_tone3:':'⛹️🏽',':person_with_ball_tone3:':'⛹️🏽',':person_bouncing_ball_tone3:':'⛹️🏽',':basketball_player_tone4:':'⛹️🏾',':person_with_ball_tone4:':'⛹️🏾',':person_bouncing_ball_tone4:':'⛹️🏾',':basketball_player_tone5:':'⛹️🏿',':person_with_ball_tone5:':'⛹️🏿',':person_bouncing_ball_tone5:':'⛹️🏿',':pirate_flag:':'🏴‍☠️',':point_up_tone1:':'☝️🏻',':point_up_tone2:':'☝️🏼',':point_up_tone3:':'☝️🏽',':point_up_tone4:':'☝️🏾',':point_up_tone5:':'☝️🏿',':raised_hand_tone1:':'✋🏻',':raised_hand_tone2:':'✋🏼',':raised_hand_tone3:':'✋🏽',':raised_hand_tone4:':'✋🏾',':raised_hand_tone5:':'✋🏿',':v_tone1:':'✌️🏻',':v_tone2:':'✌️🏼',':v_tone3:':'✌️🏽',':v_tone4:':'✌️🏾',':v_tone5:':'✌️🏿',':woman_biking:':'🚴‍♀️',':woman_bowing:':'🙇‍♀️',':woman_cartwheeling:':'🤸‍♀️',':woman_climbing:':'🧗‍♀️',':woman_construction_worker:':'👷‍♀️',':woman_detective:':'🕵️‍♀️',':woman_elf:':'🧝‍♀️',':woman_facepalming:':'🤦‍♀️',':woman_fairy:':'🧚‍♀️',':woman_frowning:':'🙍‍♀️',':woman_genie:':'🧞‍♀️',':woman_gesturing_no:':'🙅‍♀️',':woman_gesturing_ok:':'🙆‍♀️',':woman_getting_face_massage:':'💆‍♀️',':woman_getting_haircut:':'💇‍♀️',':woman_golfing:':'🏌️‍♀️',':woman_guard:':'💂‍♀️',':woman_health_worker:':'👩‍⚕️',':woman_in_lotus_position:':'🧘‍♀️',':woman_in_steamy_room:':'🧖‍♀️',':woman_judge:':'👩‍⚖️',':woman_juggling:':'🤹‍♀️',':woman_kneeling:':'🧎‍♀️',':woman_lifting_weights:':'🏋️‍♀️',':woman_mage:':'🧙‍♀️',':woman_mountain_biking:':'🚵‍♀️',':woman_pilot:':'👩‍✈️',':woman_playing_handball:':'🤾‍♀️',':woman_playing_water_polo:':'🤽‍♀️',':woman_police_officer:':'👮‍♀️',':woman_pouting:':'🙎‍♀️',':woman_raising_hand:':'🙋‍♀️',':woman_rowing_boat:':'🚣‍♀️',':woman_running:':'🏃‍♀️',':woman_shrugging:':'🤷‍♀️',':woman_standing:':'🧍‍♀️',':woman_superhero:':'🦸‍♀️',':woman_supervillain:':'🦹‍♀️',':woman_surfing:':'🏄‍♀️',':woman_swimming:':'🏊‍♀️',':woman_tipping_hand:':'💁‍♀️',':woman_vampire:':'🧛‍♀️',':woman_walking:':'🚶‍♀️',':woman_wearing_turban:':'👳‍♀️',':woman_zombie:':'🧟‍♀️',':women_with_bunny_ears_partying:':'👯‍♀️',':women_wrestling:':'🤼♀️',':writing_hand_tone1:':'✍️🏻',':writing_hand_tone2:':'✍️🏼',':writing_hand_tone3:':'✍️🏽',':writing_hand_tone4:':'✍️🏾',':writing_hand_tone5:':'✍️🏿',':keycap_asterisk:':'*️⃣',':asterisk:':'*️⃣',':eight:':'8️⃣',':five:':'5️⃣',':four:':'4️⃣',':hash:':'#️⃣',':man_bouncing_ball:':'⛹️‍♂️',':nine:':'9️⃣',':one:':'1️⃣',':seven:':'7️⃣',':six:':'6️⃣',':three:':'3️⃣',':two:':'2️⃣',':woman_bouncing_ball:':'⛹️‍♀️',':zero:':'0️⃣',':100:':'💯',':1234:':'🔢',':8ball:':'🎱',':a:':'🅰️',':ab:':'🆎',':abacus:':'🧮',':abc:':'🔤',':abcd:':'🔡',':accept:':'🉑',':adhesive_bandage:':'🩹',':adult:':'🧑',':aerial_tramway:':'🚡',':airplane_arriving:':'🛬',':airplane_departure:':'🛫',':small_airplane:':'🛩️',':airplane_small:':'🛩️',':alien:':'👽',':ambulance:':'🚑',':amphora:':'🏺',':angel:':'👼',':anger:':'💢',':right_anger_bubble:':'🗯️',':anger_right:':'🗯️',':angry:':'😠',':anguished:':'😧',':ant:':'🐜',':apple:':'🍎',':arrow_down_small:':'🔽',':arrow_up_small:':'🔼',':arrows_clockwise:':'🔃',':arrows_counterclockwise:':'🔄',':art:':'🎨',':articulated_lorry:':'🚛',':astonished:':'😲',':athletic_shoe:':'👟',':atm:':'🏧',':auto_rickshaw:':'🛺',':avocado:':'🥑',':axe:':'🪓',':b:':'🅱️',':baby:':'👶',':baby_bottle:':'🍼',':baby_chick:':'🐤',':baby_symbol:':'🚼',':back:':'🔙',':bacon:':'🥓',':badger:':'🦡',':badminton:':'🏸',':bagel:':'🥯',':baggage_claim:':'🛄',':bald:':'🦲',':ballet_shoes:':'🩰',':balloon:':'🎈',':ballot_box_with_ballot:':'🗳️',':ballot_box:':'🗳️',':bamboo:':'🎍',':banana:':'🍌',':banjo:':'🪕',':bank:':'🏦',':bar_chart:':'📊',':barber:':'💈',':basket:':'🧺',':basketball:':'🏀',':bat:':'🦇',':bath:':'🛀',':bathtub:':'🛁',':battery:':'🔋',':beach_with_umbrella:':'🏖️',':beach:':'🏖️',':bear:':'🐻',':bearded_person:':'🧔',':bed:':'🛏️',':bee:':'🐝',':beer:':'🍺',':beers:':'🍻',':beetle:':'🐞',':beginner:':'🔰',':bell:':'🔔',':bellhop_bell:':'🛎️',':bellhop:':'🛎️',':bento:':'🍱',':beverage_box:':'🧃',':bike:':'🚲',':bikini:':'👙',':billed_cap:':'🧢',':bird:':'🐦',':birthday:':'🎂',':black_heart:':'🖤',':black_joker:':'🃏',':black_square_button:':'🔲',':person_with_blond_hair:':'👱',':blond_haired_person:':'👱',':blossom:':'🌼',':blowfish:':'🐡',':blue_book:':'📘',':blue_car:':'🚙',':blue_circle:':'🔵',':blue_heart:':'💙',':blue_square:':'🟦',':blush:':'😊',':boar:':'🐗',':bomb:':'💣',':bone:':'🦴',':book:':'📖',':bookmark:':'🔖',':bookmark_tabs:':'📑',':books:':'📚',':boom:':'💥',':boot:':'👢',':bouquet:':'💐',':archery:':'🏹',':bow_and_arrow:':'🏹',':bowl_with_spoon:':'🥣',':bowling:':'🎳',':boxing_gloves:':'🥊',':boxing_glove:':'🥊',':boy:':'👦',':brain:':'🧠',':bread:':'🍞',':breast_feeding:':'🤱',':bricks:':'🧱',':bride_with_veil:':'👰',':bridge_at_night:':'🌉',':briefcase:':'💼',':briefs:':'🩲',':broccoli:':'🥦',':broken_heart:':'💔',':broom:':'🧹',':brown_circle:':'🟤',':brown_heart:':'🤎',':brown_square:':'🟫',':bug:':'🐛',':bulb:':'💡',':bullettrain_front:':'🚅',':bullettrain_side:':'🚄',':burrito:':'🌯',':bus:':'🚌',':busstop:':'🚏',':bust_in_silhouette:':'👤',':busts_in_silhouette:':'👥',':butter:':'🧈',':butterfly:':'🦋',':cactus:':'🌵',':cake:':'🍰',':calendar:':'📆',':spiral_calendar_pad:':'🗓️',':calendar_spiral:':'🗓️',':call_me_hand:':'🤙',':call_me:':'🤙',':calling:':'📲',':camel:':'🐫',':camera:':'📷',':camera_with_flash:':'📸',':camping:':'🏕️',':candle:':'🕯️',':candy:':'🍬',':canned_food:':'🥫',':kayak:':'🛶',':canoe:':'🛶',':capital_abcd:':'🔠',':card_file_box:':'🗃️',':card_box:':'🗃️',':card_index:':'📇',':carousel_horse:':'🎠',':carrot:':'🥕',':cat2:':'🐈',':cat:':'🐱',':cd:':'💿',':chair:':'🪑',':bottle_with_popping_cork:':'🍾',':champagne:':'🍾',':clinking_glass:':'🥂',':champagne_glass:':'🥂',':chart:':'💹',':chart_with_downwards_trend:':'📉',':chart_with_upwards_trend:':'📈',':checkered_flag:':'🏁',':cheese_wedge:':'🧀',':cheese:':'🧀',':cherries:':'🍒',':cherry_blossom:':'🌸',':chestnut:':'🌰',':chicken:':'🐔',':child:':'🧒',':children_crossing:':'🚸',':chipmunk:':'🐿️',':chocolate_bar:':'🍫',':chopsticks:':'🥢',':christmas_tree:':'🎄',':cinema:':'🎦',':circus_tent:':'🎪',':city_dusk:':'🌆',':city_sunrise:':'🌇',':city_sunset:':'🌇',':cityscape:':'🏙️',':cl:':'🆑',':clap:':'👏',':clapper:':'🎬',':classical_building:':'🏛️',':clipboard:':'📋',':clock1030:':'🕥',':clock10:':'🕙',':clock1130:':'🕦',':clock11:':'🕚',':clock1230:':'🕧',':clock12:':'🕛',':clock130:':'🕜',':clock1:':'🕐',':clock230:':'🕝',':clock2:':'🕑',':clock330:':'🕞',':clock3:':'🕒',':clock430:':'🕟',':clock4:':'🕓',':clock530:':'🕠',':clock5:':'🕔',':clock630:':'🕡',':clock6:':'🕕',':clock730:':'🕢',':clock7:':'🕖',':clock830:':'🕣',':clock8:':'🕗',':clock930:':'🕤',':clock9:':'🕘',':mantlepiece_clock:':'🕰️',':clock:':'🕰️',':closed_book:':'📕',':closed_lock_with_key:':'🔐',':closed_umbrella:':'🌂',':cloud_with_lightning:':'🌩️',':cloud_lightning:':'🌩️',':cloud_with_rain:':'🌧️',':cloud_rain:':'🌧️',':cloud_with_snow:':'🌨️',':cloud_snow:':'🌨️',':cloud_with_tornado:':'🌪️',':cloud_tornado:':'🌪️',':clown_face:':'🤡',':clown:':'🤡',':coat:':'🧥',':cocktail:':'🍸',':coconut:':'🥥',':cold_face:':'🥶',':cold_sweat:':'😰',':compass:':'🧭',':compression:':'🗜️',':computer:':'💻',':confetti_ball:':'🎊',':confounded:':'😖',':confused:':'😕',':construction:':'🚧',':building_construction:':'🏗️',':construction_site:':'🏗️',':construction_worker:':'👷',':control_knobs:':'🎛️',':convenience_store:':'🏪',':cookie:':'🍪',':cooking:':'🍳',':cool:':'🆒',':corn:':'🌽',':couch_and_lamp:':'🛋️',':couch:':'🛋️',':couple:':'👫',':couple_with_heart:':'💑',':couplekiss:':'💏',':cow2:':'🐄',':cow:':'🐮',':face_with_cowboy_hat:':'🤠',':cowboy:':'🤠',':crab:':'🦀',':lower_left_crayon:':'🖍️',':crayon:':'🖍️',':credit_card:':'💳',':crescent_moon:':'🌙',':cricket:':'🦗',':cricket_bat_ball:':'🏏',':cricket_game:':'🏏',':crocodile:':'🐊',':croissant:':'🥐',':crossed_flags:':'🎌',':crown:':'👑',':passenger_ship:':'🛳️',':cruise_ship:':'🛳️',':cry:':'😢',':crying_cat_face:':'😿',':crystal_ball:':'🔮',':cucumber:':'🥒',':cup_with_straw:':'🥤',':cupcake:':'🧁',':cupid:':'💘',':curling_stone:':'🥌',':curly_haired:':'🦱',':currency_exchange:':'💱',':curry:':'🍛',':pudding:':'🍮',':flan:':'🍮',':custard:':'🍮',':customs:':'🛃',':cut_of_meat:':'🥩',':cyclone:':'🌀',':dagger_knife:':'🗡️',':dagger:':'🗡️',':dancer:':'💃',':dango:':'🍡',':dark_sunglasses:':'🕶️',':dart:':'🎯',':dash:':'💨',':date:':'📅',':deaf_person:':'🧏',':deciduous_tree:':'🌳',':deer:':'🦌',':department_store:':'🏬',':desert:':'🏜️',':desktop_computer:':'🖥️',':desktop:':'🖥️',':spy:':'🕵️',':sleuth_or_spy:':'🕵️',':detective:':'🕵️',':diamond_shape_with_a_dot_inside:':'💠',':disappointed:':'😞',':disappointed_relieved:':'😥',':card_index_dividers:':'🗂️',':dividers:':'🗂️',':diving_mask:':'🤿',':diya_lamp:':'🪔',':dizzy:':'💫',':dizzy_face:':'😵',':dna:':'🧬',':do_not_litter:':'🚯',':dog2:':'🐕',':dog:':'🐶',':dollar:':'💵',':dolls:':'🎎',':dolphin:':'🐬',':door:':'🚪',':doughnut:':'🍩',':dove_of_peace:':'🕊️',':dove:':'🕊️',':dragon:':'🐉',':dragon_face:':'🐲',':dress:':'👗',':dromedary_camel:':'🐪',':drool:':'🤤',':drooling_face:':'🤤',':drop_of_blood:':'🩸',':droplet:':'💧',':drum_with_drumsticks:':'🥁',':drum:':'🥁',':duck:':'🦆',':dumpling:':'🥟',':dvd:':'📀',':email:':'📧',':e-mail:':'📧',':eagle:':'🦅',':ear:':'👂',':ear_of_rice:':'🌾',':ear_with_hearing_aid:':'🦻',':earth_africa:':'🌍',':earth_americas:':'🌎',':earth_asia:':'🌏',':egg:':'🥚',':eggplant:':'🍆',':electric_plug:':'🔌',':elephant:':'🐘',':elf:':'🧝',':end:':'🔚',':envelope_with_arrow:':'📩',':euro:':'💶',':european_castle:':'🏰',':european_post_office:':'🏤',':evergreen_tree:':'🌲',':exploding_head:':'🤯',':expressionless:':'😑',':eye:':'👁️',':eyeglasses:':'👓',':eyes:':'👀',':face_vomiting:':'🤮',':face_with_hand_over_mouth:':'🤭',':face_with_monocle:':'🧐',':face_with_raised_eyebrow:':'🤨',':face_with_symbols_over_mouth:':'🤬',':factory:':'🏭',':fairy:':'🧚',':falafel:':'🧆',':fallen_leaf:':'🍂',':family:':'👪',':fax:':'📠',':fearful:':'😨',':paw_prints:':'🐾',':feet:':'🐾',':ferris_wheel:':'🎡',':field_hockey:':'🏑',':file_cabinet:':'🗄️',':file_folder:':'📁',':film_frames:':'🎞️',':hand_with_index_and_middle_finger_crossed:':'🤞',':fingers_crossed:':'🤞',':flame:':'🔥',':fire:':'🔥',':fire_engine:':'🚒',':fire_extinguisher:':'🧯',':firecracker:':'🧨',':fireworks:':'🎆',':first_place_medal:':'🥇',':first_place:':'🥇',':first_quarter_moon:':'🌓',':first_quarter_moon_with_face:':'🌛',':fish:':'🐟',':fish_cake:':'🍥',':fishing_pole_and_fish:':'🎣',':waving_black_flag:':'🏴',':flag_black:':'🏴',':waving_white_flag:':'🏳️',':flag_white:':'🏳️',':flags:':'🎏',':flamingo:':'🦩',':flashlight:':'🔦',':floppy_disk:':'💾',':flower_playing_cards:':'🎴',':flushed:':'😳',':flying_disc:':'🥏',':flying_saucer:':'🛸',':fog:':'🌫️',':foggy:':'🌁',':foot:':'🦶',':football:':'🏈',':footprints:':'👣',':fork_and_knife:':'🍴',':fork_and_knife_with_plate:':'🍽️',':fork_knife_plate:':'🍽️',':fortune_cookie:':'🥠',':four_leaf_clover:':'🍀',':fox_face:':'🦊',':fox:':'🦊',':frame_with_picture:':'🖼️',':frame_photo:':'🖼️',':free:':'🆓',':baguette_bread:':'🥖',':french_bread:':'🥖',':fried_shrimp:':'🍤',':fries:':'🍟',':frog:':'🐸',':frowning:':'😦',':full_moon:':'🌕',':full_moon_with_face:':'🌝',':game_die:':'🎲',':garlic:':'🧄',':gem:':'💎',':genie:':'🧞',':ghost:':'👻',':gift:':'🎁',':gift_heart:':'💝',':giraffe:':'🦒',':girl:':'👧',':globe_with_meridians:':'🌐',':gloves:':'🧤',':goal_net:':'🥅',':goal:':'🥅',':goat:':'🐐',':goggles:':'🥽',':gorilla:':'🦍',':grapes:':'🍇',':green_apple:':'🍏',':green_book:':'📗',':green_circle:':'🟢',':green_heart:':'💚',':green_square:':'🟩',':grimacing:':'😬',':grin:':'😁',':grinning:':'😀',':guardsman:':'💂',':guard:':'💂',':guide_dog:':'🦮',':guitar:':'🎸',':gun:':'🔫',':hamburger:':'🍔',':hammer:':'🔨',':hamster:':'🐹',':raised_hand_with_fingers_splayed:':'🖐️',':hand_splayed:':'🖐️',':handbag:':'👜',':shaking_hands:':'🤝',':handshake:':'🤝',':hatched_chick:':'🐥',':hatching_chick:':'🐣',':face_with_head_bandage:':'🤕',':head_bandage:':'🤕',':headphones:':'🎧',':hear_no_evil:':'🙉',':heart_decoration:':'💟',':heart_eyes:':'😍',':heart_eyes_cat:':'😻',':heartbeat:':'💓',':heartpulse:':'💗',':heavy_dollar_sign:':'💲',':hedgehog:':'🦔',':helicopter:':'🚁',':herb:':'🌿',':hibiscus:':'🌺',':high_brightness:':'🔆',':high_heel:':'👠',':hiking_boot:':'🥾',':hindu_temple:':'🛕',':hippopotamus:':'🦛',':hockey:':'🏒',':hole:':'🕳️',':house_buildings:':'🏘️',':homes:':'🏘️',':honey_pot:':'🍯',':horse:':'🐴',':horse_racing:':'🏇',':hospital:':'🏥',':hot_face:':'🥵',':hot_pepper:':'🌶️',':hot_dog:':'🌭',':hotdog:':'🌭',':hotel:':'🏨',':house:':'🏠',':derelict_house_building:':'🏚️',':house_abandoned:':'🏚️',':house_with_garden:':'🏡',':hugging_face:':'🤗',':hugging:':'🤗',':hushed:':'😯',':ice_cream:':'🍨',':ice_cube:':'🧊',':icecream:':'🍦',':id:':'🆔',':ideograph_advantage:':'🉐',':imp:':'👿',':inbox_tray:':'📥',':incoming_envelope:':'📨',':innocent:':'😇',':iphone:':'📱',':desert_island:':'🏝️',':island:':'🏝️',':izakaya_lantern:':'🏮',':jack_o_lantern:':'🎃',':japan:':'🗾',':japanese_castle:':'🏯',':japanese_goblin:':'👺',':japanese_ogre:':'👹',':jeans:':'👖',':jigsaw:':'🧩',':joy:':'😂',':joy_cat:':'😹',':joystick:':'🕹️',':kaaba:':'🕋',':kangaroo:':'🦘',':old_key:':'🗝️',':key2:':'🗝️',':key:':'🔑',':keycap_ten:':'🔟',':kimono:':'👘',':kiss:':'💋',':kissing:':'😗',':kissing_cat:':'😽',':kissing_closed_eyes:':'😚',':kissing_heart:':'😘',':kissing_smiling_eyes:':'😙',':kite:':'🪁',':kiwifruit:':'🥝',':kiwi:':'🥝',':knife:':'🔪',':koala:':'🐨',':koko:':'🈁',':lab_coat:':'🥼',':label:':'🏷️',':lacrosse:':'🥍',':large_blue_diamond:':'🔷',':large_orange_diamond:':'🔶',':last_quarter_moon:':'🌗',':last_quarter_moon_with_face:':'🌜',':satisfied:':'😆',':laughing:':'😆',':leafy_green:':'🥬',':leaves:':'🍃',':ledger:':'📒',':left_fist:':'🤛',':left_facing_fist:':'🤛',':left_luggage:':'🛅',':leg:':'🦵',':lemon:':'🍋',':leopard:':'🐆',':level_slider:':'🎚️',':man_in_business_suit_levitating:':'🕴️',':levitate:':'🕴️',':light_rail:':'🚈',':link:':'🔗',':lion:':'🦁',':lion_face:':'🦁',':lips:':'👄',':lipstick:':'💄',':lizard:':'🦎',':llama:':'🦙',':lobster:':'🦞',':lock:':'🔒',':lock_with_ink_pen:':'🔏',':lollipop:':'🍭',':loud_sound:':'🔊',':loudspeaker:':'📢',':love_hotel:':'🏩',':love_letter:':'💌',':love_you_gesture:':'🤟',':low_brightness:':'🔅',':luggage:':'🧳',':liar:':'🤥',':lying_face:':'🤥',':mag:':'🔍',':mag_right:':'🔎',':mage:':'🧙',':magnet:':'🧲',':mahjong:':'🀄',':mailbox:':'📫',':mailbox_closed:':'📪',':mailbox_with_mail:':'📬',':mailbox_with_no_mail:':'📭',':man:':'👨',':male_dancer:':'🕺',':man_dancing:':'🕺',':man_in_tuxedo:':'🤵',':man_with_gua_pi_mao:':'👲',':man_with_chinese_cap:':'👲',':mango:':'🥭',':mans_shoe:':'👞',':manual_wheelchair:':'🦽',':world_map:':'🗺️',':map:':'🗺️',':maple_leaf:':'🍁',':karate_uniform:':'🥋',':martial_arts_uniform:':'🥋',':mask:':'😷',':mate:':'🧉',':meat_on_bone:':'🍖',':mechanical_arm:':'🦾',':mechanical_leg:':'🦿',':sports_medal:':'🏅',':medal:':'🏅',':mega:':'📣',':melon:':'🍈',':menorah:':'🕎',':mens:':'🚹',':merperson:':'🧜',':sign_of_the_horns:':'🤘',':metal:':'🤘',':metro:':'🚇',':microbe:':'🦠',':studio_microphone:':'🎙️',':microphone2:':'🎙️',':microphone:':'🎤',':microscope:':'🔬',':reversed_hand_with_middle_finger_extended:':'🖕',':middle_finger:':'🖕',':military_medal:':'🎖️',':glass_of_milk:':'🥛',':milk:':'🥛',':milky_way:':'🌌',':minibus:':'🚐',':minidisc:':'💽',':mobile_phone_off:':'📴',':money_mouth_face:':'🤑',':money_mouth:':'🤑',':money_with_wings:':'💸',':moneybag:':'💰',':monkey:':'🐒',':monkey_face:':'🐵',':monorail:':'🚝',':moon_cake:':'🥮',':mortar_board:':'🎓',':mosque:':'🕌',':mosquito:':'🦟',':motorbike:':'🛵',':motor_scooter:':'🛵',':motorboat:':'🛥️',':racing_motorcycle:':'🏍️',':motorcycle:':'🏍️',':motorized_wheelchair:':'🦼',':motorway:':'🛣️',':mount_fuji:':'🗻',':mountain_cableway:':'🚠',':mountain_railway:':'🚞',':snow_capped_mountain:':'🏔️',':mountain_snow:':'🏔️',':mouse2:':'🐁',':mouse:':'🐭',':three_button_mouse:':'🖱️',':mouse_three_button:':'🖱️',':movie_camera:':'🎥',':moyai:':'🗿',':mother_christmas:':'🤶',':mrs_claus:':'🤶',':muscle:':'💪',':mushroom:':'🍄',':musical_keyboard:':'🎹',':musical_note:':'🎵',':musical_score:':'🎼',':mute:':'🔇',':nail_care:':'💅',':name_badge:':'📛',':sick:':'🤢',':nauseated_face:':'🤢',':nazar_amulet:':'🧿',':necktie:':'👔',':nerd_face:':'🤓',':nerd:':'🤓',':neutral_face:':'😐',':new:':'🆕',':new_moon:':'🌑',':new_moon_with_face:':'🌚',':rolled_up_newspaper:':'🗞️',':newspaper2:':'🗞️',':newspaper:':'📰',':ng:':'🆖',':night_with_stars:':'🌃',':no_bell:':'🔕',':no_bicycles:':'🚳',':no_entry_sign:':'🚫',':no_mobile_phones:':'📵',':no_mouth:':'😶',':no_pedestrians:':'🚷',':no_smoking:':'🚭',':non-potable_water:':'🚱',':nose:':'👃',':notebook:':'📓',':notebook_with_decorative_cover:':'📔',':spiral_note_pad:':'🗒️',':notepad_spiral:':'🗒️',':notes:':'🎶',':nut_and_bolt:':'🔩',':o2:':'🅾️',':ocean:':'🌊',':stop_sign:':'🛑',':octagonal_sign:':'🛑',':octopus:':'🐙',':oden:':'🍢',':office:':'🏢',':oil_drum:':'🛢️',':oil:':'🛢️',':ok:':'🆗',':ok_hand:':'👌',':older_adult:':'🧓',':older_man:':'👴',':grandma:':'👵',':older_woman:':'👵',':om_symbol:':'🕉️',':on:':'🔛',':oncoming_automobile:':'🚘',':oncoming_bus:':'🚍',':oncoming_police_car:':'🚔',':oncoming_taxi:':'🚖',':one_piece_swimsuit:':'🩱',':onion:':'🧅',':open_file_folder:':'📂',':open_hands:':'👐',':open_mouth:':'😮',':orange_book:':'📙',':orange_circle:':'🟠',':orange_heart:':'🧡',':orange_square:':'🟧',':orangutan:':'🦧',':otter:':'🦦',':outbox_tray:':'📤',':owl:':'🦉',':ox:':'🐂',':oyster:':'🦪',':package:':'📦',':page_facing_up:':'📄',':page_with_curl:':'📃',':pager:':'📟',':lower_left_paintbrush:':'🖌️',':paintbrush:':'🖌️',':palm_tree:':'🌴',':palms_up_together:':'🤲',':pancakes:':'🥞',':panda_face:':'🐼',':paperclip:':'📎',':linked_paperclips:':'🖇️',':paperclips:':'🖇️',':parachute:':'🪂',':national_park:':'🏞️',':park:':'🏞️',':parking:':'🅿️',':parrot:':'🦜',':partying_face:':'🥳',':passport_control:':'🛂',':peach:':'🍑',':peacock:':'🦚',':shelled_peanut:':'🥜',':peanuts:':'🥜',':pear:':'🍐',':lower_left_ballpoint_pen:':'🖊️',':pen_ballpoint:':'🖊️',':lower_left_fountain_pen:':'🖋️',':pen_fountain:':'🖋️',':memo:':'📝',':pencil:':'📝',':penguin:':'🐧',':pensive:':'😔',':dancers:':'👯',':people_with_bunny_ears_partying:':'👯',':wrestlers:':'🤼',':wrestling:':'🤼',':people_wrestling:':'🤼',':performing_arts:':'🎭',':persevere:':'😣',':bicyclist:':'🚴',':person_biking:':'🚴',':bow:':'🙇',':person_bowing:':'🙇',':person_climbing:':'🧗',':cartwheel:':'🤸',':person_doing_cartwheel:':'🤸',':face_palm:':'🤦',':facepalm:':'🤦',':person_facepalming:':'🤦',':fencer:':'🤺',':fencing:':'🤺',':person_fencing:':'🤺',':person_frowning:':'🙍',':no_good:':'🙅',':person_gesturing_no:':'🙅',':ok_woman:':'🙆',':person_gesturing_ok:':'🙆',':haircut:':'💇',':person_getting_haircut:':'💇',':massage:':'💆',':person_getting_massage:':'💆',':golfer:':'🏌️',':person_golfing:':'🏌️',':person_in_lotus_position:':'🧘',':person_in_steamy_room:':'🧖',':juggling:':'🤹',':juggler:':'🤹',':person_juggling:':'🤹',':person_kneeling:':'🧎',':lifter:':'🏋️',':weight_lifter:':'🏋️',':person_lifting_weights:':'🏋️',':mountain_bicyclist:':'🚵',':person_mountain_biking:':'🚵',':handball:':'🤾',':person_playing_handball:':'🤾',':water_polo:':'🤽',':person_playing_water_polo:':'🤽',':person_with_pouting_face:':'🙎',':person_pouting:':'🙎',':raising_hand:':'🙋',':person_raising_hand:':'🙋',':rowboat:':'🚣',':person_rowing_boat:':'🚣',':runner:':'🏃',':person_running:':'🏃',':shrug:':'🤷',':person_shrugging:':'🤷',':person_standing:':'🧍',':surfer:':'🏄',':person_surfing:':'🏄',':swimmer:':'🏊',':person_swimming:':'🏊',':information_desk_person:':'💁',':person_tipping_hand:':'💁',':walking:':'🚶',':person_walking:':'🚶',':man_with_turban:':'👳',':person_wearing_turban:':'👳',':petri_dish:':'🧫',':pie:':'🥧',':pig2:':'🐖',':pig:':'🐷',':pig_nose:':'🐽',':pill:':'💊',':pinching_hand:':'🤏',':pineapple:':'🍍',':table_tennis:':'🏓',':ping_pong:':'🏓',':pizza:':'🍕',':worship_symbol:':'🛐',':place_of_worship:':'🛐',':pleading_face:':'🥺',':point_down:':'👇',':point_left:':'👈',':point_right:':'👉',':point_up_2:':'👆',':police_car:':'🚓',':cop:':'👮',':police_officer:':'👮',':poodle:':'🐩',':shit:':'💩',':hankey:':'💩',':poo:':'💩',':poop:':'💩',':popcorn:':'🍿',':post_office:':'🏣',':postal_horn:':'📯',':postbox:':'📮',':potable_water:':'🚰',':potato:':'🥔',':pouch:':'👝',':poultry_leg:':'🍗',':pound:':'💷',':pouting_cat:':'😾',':pray:':'🙏',':prayer_beads:':'📿',':expecting_woman:':'🤰',':pregnant_woman:':'🤰',':pretzel:':'🥨',':prince:':'🤴',':princess:':'👸',':printer:':'🖨️',':probing_cane:':'🦯',':film_projector:':'📽️',':projector:':'📽️',':punch:':'👊',':purple_circle:':'🟣',':purple_heart:':'💜',':purple_square:':'🟪',':purse:':'👛',':pushpin:':'📌',':put_litter_in_its_place:':'🚮',':rabbit2:':'🐇',':rabbit:':'🐰',':raccoon:':'🦝',':racing_car:':'🏎️',':race_car:':'🏎️',':racehorse:':'🐎',':radio:':'📻',':radio_button:':'🔘',':rage:':'😡',':railway_car:':'🚃',':railroad_track:':'🛤️',':railway_track:':'🛤️',':rainbow:':'🌈',':back_of_hand:':'🤚',':raised_back_of_hand:':'🤚',':raised_hands:':'🙌',':ram:':'🐏',':ramen:':'🍜',':rat:':'🐀',':razor:':'🪒',':receipt:':'🧾',':red_car:':'🚗',':red_circle:':'🔴',':red_envelope:':'🧧',':red_haired:':'🦰',':red_square:':'🟥',':regional_indicator_a:':'🇦',':regional_indicator_b:':'🇧',':regional_indicator_c:':'🇨',':regional_indicator_d:':'🇩',':regional_indicator_e:':'🇪',':regional_indicator_f:':'🇫',':regional_indicator_g:':'🇬',':regional_indicator_h:':'🇭',':regional_indicator_i:':'🇮',':regional_indicator_j:':'🇯',':regional_indicator_k:':'🇰',':regional_indicator_l:':'🇱',':regional_indicator_m:':'🇲',':regional_indicator_n:':'🇳',':regional_indicator_o:':'🇴',':regional_indicator_p:':'🇵',':regional_indicator_q:':'🇶',':regional_indicator_r:':'🇷',':regional_indicator_s:':'🇸',':regional_indicator_t:':'🇹',':regional_indicator_u:':'🇺',':regional_indicator_v:':'🇻',':regional_indicator_w:':'🇼',':regional_indicator_x:':'🇽',':regional_indicator_y:':'🇾',':regional_indicator_z:':'🇿',':relieved:':'😌',':reminder_ribbon:':'🎗️',':repeat:':'🔁',':repeat_one:':'🔂',':restroom:':'🚻',':revolving_hearts:':'💞',':rhinoceros:':'🦏',':rhino:':'🦏',':ribbon:':'🎀',':rice:':'🍚',':rice_ball:':'🍙',':rice_cracker:':'🍘',':rice_scene:':'🎑',':right_fist:':'🤜',':right_facing_fist:':'🤜',':ring:':'💍',':ringed_planet:':'🪐',':robot_face:':'🤖',':robot:':'🤖',':rocket:':'🚀',':rolling_on_the_floor_laughing:':'🤣',':rofl:':'🤣',':roll_of_paper:':'🧻',':roller_coaster:':'🎢',':face_with_rolling_eyes:':'🙄',':rolling_eyes:':'🙄',':rooster:':'🐓',':rose:':'🌹',':rosette:':'🏵️',':rotating_light:':'🚨',':round_pushpin:':'📍',':rugby_football:':'🏉',':running_shirt_with_sash:':'🎽',':sa:':'🈂️',':safety_pin:':'🧷',':safety_vest:':'🦺',':sake:':'🍶',':green_salad:':'🥗',':salad:':'🥗',':salt:':'🧂',':sandal:':'👡',':sandwich:':'🥪',':santa:':'🎅',':sari:':'🥻',':satellite:':'📡',':satellite_orbital:':'🛰️',':sauropod:':'🦕',':saxophone:':'🎷',':scarf:':'🧣',':school:':'🏫',':school_satchel:':'🎒',':scooter:':'🛴',':scorpion:':'🦂',':scream:':'😱',':scream_cat:':'🙀',':scroll:':'📜',':seat:':'💺',':second_place_medal:':'🥈',':second_place:':'🥈',':see_no_evil:':'🙈',':seedling:':'🌱',':selfie:':'🤳',':paella:':'🥘',':shallow_pan_of_food:':'🥘',':shark:':'🦈',':shaved_ice:':'🍧',':sheep:':'🐑',':shell:':'🐚',':shield:':'🛡️',':ship:':'🚢',':shirt:':'👕',':shopping_bags:':'🛍️',':shopping_trolley:':'🛒',':shopping_cart:':'🛒',':shorts:':'🩳',':shower:':'🚿',':shrimp:':'🦐',':shushing_face:':'🤫',':signal_strength:':'📶',':six_pointed_star:':'🔯',':skateboard:':'🛹',':ski:':'🎿',':skeleton:':'💀',':skull:':'💀',':skunk:':'🦨',':sled:':'🛷',':sleeping:':'😴',':sleeping_accommodation:':'🛌',':sleepy:':'😪',':slightly_frowning_face:':'🙁',':slight_frown:':'🙁',':slightly_smiling_face:':'🙂',':slight_smile:':'🙂',':slot_machine:':'🎰',':sloth:':'🦥',':small_blue_diamond:':'🔹',':small_orange_diamond:':'🔸',':small_red_triangle:':'🔺',':small_red_triangle_down:':'🔻',':smile:':'😄',':smile_cat:':'😸',':smiley:':'😃',':smiley_cat:':'😺',':smiling_face_with_3_hearts:':'🥰',':smiling_imp:':'😈',':smirk:':'😏',':smirk_cat:':'😼',':smoking:':'🚬',':snail:':'🐌',':snake:':'🐍',':sneeze:':'🤧',':sneezing_face:':'🤧',':snowboarder:':'🏂',':soap:':'🧼',':sob:':'😭',':socks:':'🧦',':softball:':'🥎',':soon:':'🔜',':sos:':'🆘',':sound:':'🔉',':space_invader:':'👾',':spaghetti:':'🍝',':sparkler:':'🎇',':sparkling_heart:':'💖',':speak_no_evil:':'🙊',':speaker:':'🔈',':speaking_head_in_silhouette:':'🗣️',':speaking_head:':'🗣️',':speech_balloon:':'💬',':left_speech_bubble:':'🗨️',':speech_left:':'🗨️',':speedboat:':'🚤',':spider:':'🕷️',':spider_web:':'🕸️',':sponge:':'🧽',':spoon:':'🥄',':squeeze_bottle:':'🧴',':squid:':'🦑',':stadium:':'🏟️',':star2:':'🌟',':star_struck:':'🤩',':stars:':'🌠',':station:':'🚉',':statue_of_liberty:':'🗽',':steam_locomotive:':'🚂',':stethoscope:':'🩺',':stew:':'🍲',':straight_ruler:':'📏',':strawberry:':'🍓',':stuck_out_tongue:':'😛',':stuck_out_tongue_closed_eyes:':'😝',':stuck_out_tongue_winking_eye:':'😜',':stuffed_pita:':'🥙',':stuffed_flatbread:':'🥙',':sun_with_face:':'🌞',':sunflower:':'🌻',':sunglasses:':'😎',':sunrise:':'🌅',':sunrise_over_mountains:':'🌄',':superhero:':'🦸',':supervillain:':'🦹',':sushi:':'🍣',':suspension_railway:':'🚟',':swan:':'🦢',':sweat:':'😓',':sweat_drops:':'💦',':sweat_smile:':'😅',':sweet_potato:':'🍠',':symbols:':'🔣',':synagogue:':'🕍',':syringe:':'💉',':t_rex:':'🦖',':taco:':'🌮',':tada:':'🎉',':takeout_box:':'🥡',':tanabata_tree:':'🎋',':tangerine:':'🍊',':taxi:':'🚕',':tea:':'🍵',':teddy_bear:':'🧸',':telephone_receiver:':'📞',':telescope:':'🔭',':tennis:':'🎾',':test_tube:':'🧪',':thermometer:':'🌡️',':face_with_thermometer:':'🤒',':thermometer_face:':'🤒',':thinking_face:':'🤔',':thinking:':'🤔',':third_place_medal:':'🥉',':third_place:':'🥉',':thought_balloon:':'💭',':thread:':'🧵',':-1:':'👎',':thumbdown:':'👎',':thumbsdown:':'👎',':+1:':'👍',':thumbup:':'👍',':thumbsup:':'👍',':ticket:':'🎫',':admission_tickets:':'🎟️',':tickets:':'🎟️',':tiger2:':'🐅',':tiger:':'🐯',':tired_face:':'😫',':toilet:':'🚽',':tokyo_tower:':'🗼',':tomato:':'🍅',':tone1:':'🏻',':tone2:':'🏼',':tone3:':'🏽',':tone4:':'🏾',':tone5:':'🏿',':tongue:':'👅',':toolbox:':'🧰',':hammer_and_wrench:':'🛠️',':tools:':'🛠️',':tooth:':'🦷',':top:':'🔝',':tophat:':'🎩',':trackball:':'🖲️',':tractor:':'🚜',':traffic_light:':'🚥',':train2:':'🚆',':train:':'🚋',':tram:':'🚊',':triangular_flag_on_post:':'🚩',':triangular_ruler:':'📐',':trident:':'🔱',':triumph:':'😤',':trolleybus:':'🚎',':trophy:':'🏆',':tropical_drink:':'🍹',':tropical_fish:':'🐠',':truck:':'🚚',':trumpet:':'🎺',':tulip:':'🌷',':whisky:':'🥃',':tumbler_glass:':'🥃',':turkey:':'🦃',':turtle:':'🐢',':tv:':'📺',':twisted_rightwards_arrows:':'🔀',':two_hearts:':'💕',':two_men_holding_hands:':'👬',':two_women_holding_hands:':'👭',':u5272:':'🈹',':u5408:':'🈴',':u55b6:':'🈺',':u6307:':'🈯',':u6708:':'🈷️',':u6709:':'🈶',':u6e80:':'🈵',':u7121:':'🈚',':u7533:':'🈸',':u7981:':'🈲',':u7a7a:':'🈳',':unamused:':'😒',':underage:':'🔞',':unicorn_face:':'🦄',':unicorn:':'🦄',':unlock:':'🔓',':up:':'🆙',':upside_down_face:':'🙃',':upside_down:':'🙃',':vampire:':'🧛',':vertical_traffic_light:':'🚦',':vhs:':'📼',':vibration_mode:':'📳',':video_camera:':'📹',':video_game:':'🎮',':violin:':'🎻',':volcano:':'🌋',':volleyball:':'🏐',':vs:':'🆚',':raised_hand_with_part_between_middle_and_ring_fingers:':'🖖',':vulcan:':'🖖',':waffle:':'🧇',':waning_crescent_moon:':'🌘',':waning_gibbous_moon:':'🌖',':wastebasket:':'🗑️',':water_buffalo:':'🐃',':watermelon:':'🍉',':wave:':'👋',':waxing_crescent_moon:':'🌒',':waxing_gibbous_moon:':'🌔',':wc:':'🚾',':weary:':'😩',':wedding:':'💒',':whale2:':'🐋',':whale:':'🐳',':white_flower:':'💮',':white_haired:':'🦳',':white_heart:':'🤍',':white_square_button:':'🔳',':white_sun_behind_cloud:':'🌥️',':white_sun_cloud:':'🌥️',':white_sun_behind_cloud_with_rain:':'🌦️',':white_sun_rain_cloud:':'🌦️',':white_sun_with_small_cloud:':'🌤️',':white_sun_small_cloud:':'🌤️',':wilted_flower:':'🥀',':wilted_rose:':'🥀',':wind_blowing_face:':'🌬️',':wind_chime:':'🎐',':wine_glass:':'🍷',':wink:':'😉',':wolf:':'🐺',':woman:':'👩',':woman_with_headscarf:':'🧕',':womans_clothes:':'👚',':womans_flat_shoe:':'🥿',':womans_hat:':'👒',':womens:':'🚺',':woozy_face:':'🥴',':worried:':'😟',':wrench:':'🔧',':yarn:':'🧶',':yawning_face:':'🥱',':yellow_circle:':'🟡',':yellow_heart:':'💛',':yellow_square:':'🟨',':yen:':'💴',':yo_yo:':'🪀',':yum:':'😋',':zany_face:':'🤪',':zebra:':'🦓',':zipper_mouth_face:':'🤐',':zipper_mouth:':'🤐',':zombie:':'🧟',':zzz:':'💤',':airplane:':'✈️',':alarm_clock:':'⏰',':alembic:':'⚗️',':anchor:':'⚓',':aquarius:':'♒',':aries:':'♈',':arrow_backward:':'◀️',':arrow_double_down:':'⏬',':arrow_double_up:':'⏫',':arrow_down:':'⬇️',':arrow_forward:':'▶️',':arrow_heading_down:':'⤵️',':arrow_heading_up:':'⤴️',':arrow_left:':'⬅️',':arrow_lower_left:':'↙️',':arrow_lower_right:':'↘️',':arrow_right:':'➡️',':arrow_right_hook:':'↪️',':arrow_up:':'⬆️',':arrow_up_down:':'↕️',':arrow_upper_left:':'↖️',':arrow_upper_right:':'↗️',':asterisk_symbol:':'*️',':atom_symbol:':'⚛️',':atom:':'⚛️',':ballot_box_with_check:':'☑️',':bangbang:':'‼️',':baseball:':'⚾',':umbrella_on_ground:':'⛱️',':beach_umbrella:':'⛱️',':biohazard_sign:':'☣️',':biohazard:':'☣️',':black_circle:':'⚫',':black_large_square:':'⬛',':black_medium_small_square:':'◾',':black_medium_square:':'◼️',':black_nib:':'✒️',':black_small_square:':'▪️',':cancer:':'♋',':capricorn:':'♑',':chains:':'⛓️',':chess_pawn:':'♟️',':church:':'⛪',':cloud:':'☁️',':clubs:':'♣️',':coffee:':'☕',':coffin:':'⚰️',':comet:':'☄️',':congratulations:':'㊗️',':copyright:':'©️',':latin_cross:':'✝️',':cross:':'✝️',':crossed_swords:':'⚔️',':curly_loop:':'➰',':diamonds:':'♦️',':digit_eight:':'8️',':digit_five:':'5️',':digit_four:':'4️',':digit_nine:':'9️',':digit_one:':'1️',':digit_seven:':'7️',':digit_six:':'6️',':digit_three:':'3️',':digit_two:':'2️',':digit_zero:':'0️',':eight_pointed_black_star:':'✴️',':eight_spoked_asterisk:':'✳️',':eject_symbol:':'⏏️',':eject:':'⏏️',':envelope:':'✉️',':exclamation:':'❗',':fast_forward:':'⏩',':female_sign:':'♀️',':ferry:':'⛴️',':fist:':'✊',':fleur-de-lis:':'⚜️',':fountain:':'⛲',':white_frowning_face:':'☹️',':frowning2:':'☹️',':fuelpump:':'⛽',':gear:':'⚙️',':gemini:':'♊',':golf:':'⛳',':grey_exclamation:':'❕',':grey_question:':'❔',':hammer_and_pick:':'⚒️',':hammer_pick:':'⚒️',':heart:':'❤️',':heavy_heart_exclamation_mark_ornament:':'❣️',':heart_exclamation:':'❣️',':hearts:':'♥️',':heavy_check_mark:':'✔️',':heavy_division_sign:':'➗',':heavy_minus_sign:':'➖',':heavy_multiplication_x:':'✖️',':heavy_plus_sign:':'➕',':helmet_with_white_cross:':'⛑️',':helmet_with_cross:':'⛑️',':hotsprings:':'♨️',':hourglass:':'⌛',':hourglass_flowing_sand:':'⏳',':ice_skate:':'⛸️',':infinity:':'♾️',':information_source:':'ℹ️',':interrobang:':'⁉️',':keyboard:':'⌨️',':left_right_arrow:':'↔️',':leftwards_arrow_with_hook:':'↩️',':leo:':'♌',':libra:':'♎',':loop:':'➿',':m:':'Ⓜ️',':male_sign:':'♂️',':medical_symbol:':'⚕️',':mountain:':'⛰️',':negative_squared_cross_mark:':'❎',':no_entry:':'⛔',':o:':'⭕',':ophiuchus:':'⛎',':orthodox_cross:':'☦️',':part_alternation_mark:':'〽️',':partly_sunny:':'⛅',':double_vertical_bar:':'⏸️',':pause_button:':'⏸️',':peace_symbol:':'☮️',':peace:':'☮️',':pencil2:':'✏️',':basketball_player:':'⛹️',':person_with_ball:':'⛹️',':person_bouncing_ball:':'⛹️',':pick:':'⛏️',':pisces:':'♓',':play_pause:':'⏯️',':point_up:':'☝️',':pound_symbol:':'#️',':question:':'❓',':radioactive_sign:':'☢️',':radioactive:':'☢️',':raised_hand:':'✋',':record_button:':'⏺️',':recycle:':'♻️',':registered:':'®️',':relaxed:':'☺️',':rewind:':'⏪',':sagittarius:':'♐',':sailboat:':'⛵',':scales:':'⚖️',':scissors:':'✂️',':scorpius:':'♏',':secret:':'㊙️',':shamrock:':'☘️',':shinto_shrine:':'⛩️',':skier:':'⛷️',':skull_and_crossbones:':'☠️',':skull_crossbones:':'☠️',':snowflake:':'❄️',':snowman2:':'☃️',':snowman:':'⛄',':soccer:':'⚽',':spades:':'♠️',':sparkle:':'❇️',':sparkles:':'✨',':star:':'⭐',':star_and_crescent:':'☪️',':star_of_david:':'✡️',':stop_button:':'⏹️',':stopwatch:':'⏱️',':sunny:':'☀️',':taurus:':'♉',':telephone:':'☎️',':tent:':'⛺',':thunder_cloud_and_rain:':'⛈️',':thunder_cloud_rain:':'⛈️',':timer_clock:':'⏲️',':timer:':'⏲️',':tm:':'™️',':next_track:':'⏭️',':track_next:':'⏭️',':previous_track:':'⏮️',':track_previous:':'⏮️',':umbrella2:':'☂️',':umbrella:':'☔',':funeral_urn:':'⚱️',':urn:':'⚱️',':v:':'✌️',':virgo:':'♍',':warning:':'⚠️',':watch:':'⌚',':wavy_dash:':'〰️',':wheel_of_dharma:':'☸️',':wheelchair:':'♿',':white_check_mark:':'✅',':white_circle:':'⚪',':white_large_square:':'⬜',':white_medium_small_square:':'◽',':white_medium_square:':'◻️',':white_small_square:':'▫️',':writing_hand:':'✍️',':x:':'❌',':yin_yang:':'☯️',':zap:':'⚡'}; +const emojis = { + ':england:': '🏴󠁧󠁢󠁥󠁮󠁧󠁿', + ':scotland:': '🏴󠁧󠁢󠁳󠁣󠁴󠁿', + ':wales:': '🏴󠁧󠁢󠁷󠁬󠁳󠁿', + ':men_holding_hands_medium_light_skin_tone_light_skin_tone:': '👨🏼‍🤝‍👨🏻', + ':men_holding_hands_tone2_tone1:': '👨🏼‍🤝‍👨🏻', + ':men_holding_hands_medium_skin_tone_light_skin_tone:': '👨🏽‍🤝‍👨🏻', + ':men_holding_hands_tone3_tone1:': '👨🏽‍🤝‍👨🏻', + ':men_holding_hands_medium_skin_tone_medium_light_skin_tone:': '👨🏽‍🤝‍👨🏼', + ':men_holding_hands_tone3_tone2:': '👨🏽‍🤝‍👨🏼', + ':men_holding_hands_medium_dark_skin_tone_light_skin_tone:': '👨🏾‍🤝‍👨🏻', + ':men_holding_hands_tone4_tone1:': '👨🏾‍🤝‍👨🏻', + ':men_holding_hands_medium_dark_skin_tone_medium_light_skin_tone:': '👨🏾‍🤝‍👨🏼', + ':men_holding_hands_tone4_tone2:': '👨🏾‍🤝‍👨🏼', + ':men_holding_hands_medium_dark_skin_tone_medium_skin_tone:': '👨🏾‍🤝‍👨🏽', + ':men_holding_hands_tone4_tone3:': '👨🏾‍🤝‍👨🏽', + ':men_holding_hands_dark_skin_tone_light_skin_tone:': '👨🏿‍🤝‍👨🏻', + ':men_holding_hands_tone5_tone1:': '👨🏿‍🤝‍👨🏻', + ':men_holding_hands_dark_skin_tone_medium_light_skin_tone:': '👨🏿‍🤝‍👨🏼', + ':men_holding_hands_tone5_tone2:': '👨🏿‍🤝‍👨🏼', + ':men_holding_hands_dark_skin_tone_medium_skin_tone:': '👨🏿‍🤝‍👨🏽', + ':men_holding_hands_tone5_tone3:': '👨🏿‍🤝‍👨🏽', + ':men_holding_hands_dark_skin_tone_medium_dark_skin_tone:': '👨🏿‍🤝‍👨🏾', + ':men_holding_hands_tone5_tone4:': '👨🏿‍🤝‍👨🏾', + ':people_holding_hands_light_skin_tone:': '🧑🏻‍🤝‍🧑🏻', + ':people_holding_hands_tone1:': '🧑🏻‍🤝‍🧑🏻', + ':people_holding_hands_medium_light_skin_tone:': '🧑🏼‍🤝‍🧑🏼', + ':people_holding_hands_tone2:': '🧑🏼‍🤝‍🧑🏼', + ':people_holding_hands_medium_light_skin_tone_light_skin_tone:': '🧑🏼‍🤝‍🧑🏻', + ':people_holding_hands_tone2_tone1:': '🧑🏼‍🤝‍🧑🏻', + ':people_holding_hands_medium_skin_tone:': '🧑🏽‍🤝‍🧑🏽', + ':people_holding_hands_tone3:': '🧑🏽‍🤝‍🧑🏽', + ':people_holding_hands_medium_skin_tone_light_skin_tone:': '🧑🏽‍🤝‍🧑🏻', + ':people_holding_hands_tone3_tone1:': '🧑🏽‍🤝‍🧑🏻', + ':people_holding_hands_medium_skin_tone_medium_light_skin_tone:': '🧑🏽‍🤝‍🧑🏼', + ':people_holding_hands_tone3_tone2:': '🧑🏽‍🤝‍🧑🏼', + ':people_holding_hands_medium_dark_skin_tone:': '🧑🏾‍🤝‍🧑🏾', + ':people_holding_hands_tone4:': '🧑🏾‍🤝‍🧑🏾', + ':people_holding_hands_medium_dark_skin_tone_light_skin_tone:': '🧑🏾‍🤝‍🧑🏻', + ':people_holding_hands_tone4_tone1:': '🧑🏾‍🤝‍🧑🏻', + ':people_holding_hands_medium_dark_skin_tone_medium_light_skin_tone:': '🧑🏾‍🤝‍🧑🏼', + ':people_holding_hands_tone4_tone2:': '🧑🏾‍🤝‍🧑🏼', + ':people_holding_hands_medium_dark_skin_tone_medium_skin_tone:': '🧑🏾‍🤝‍🧑🏽', + ':people_holding_hands_tone4_tone3:': '🧑🏾‍🤝‍🧑🏽', + ':people_holding_hands_dark_skin_tone:': '🧑🏿‍🤝‍🧑🏿', + ':people_holding_hands_tone5:': '🧑🏿‍🤝‍🧑🏿', + ':people_holding_hands_dark_skin_tone_light_skin_tone:': '🧑🏿‍🤝‍🧑🏻', + ':people_holding_hands_tone5_tone1:': '🧑🏿‍🤝‍🧑🏻', + ':people_holding_hands_dark_skin_tone_medium_light_skin_tone:': '🧑🏿‍🤝‍🧑🏼', + ':people_holding_hands_tone5_tone2:': '🧑🏿‍🤝‍🧑🏼', + ':people_holding_hands_dark_skin_tone_medium_skin_tone:': '🧑🏿‍🤝‍🧑🏽', + ':people_holding_hands_tone5_tone3:': '🧑🏿‍🤝‍🧑🏽', + ':people_holding_hands_dark_skin_tone_medium_dark_skin_tone:': '🧑🏿‍🤝‍🧑🏾', + ':people_holding_hands_tone5_tone4:': '🧑🏿‍🤝‍🧑🏾', + ':woman_and_man_holding_hands_light_skin_tone_medium_light_skin_tone:': '👩🏻‍🤝‍👨🏼', + ':woman_and_man_holding_hands_tone1_tone2:': '👩🏻‍🤝‍👨🏼', + ':woman_and_man_holding_hands_light_skin_tone_medium_skin_tone:': '👩🏻‍🤝‍👨🏽', + ':woman_and_man_holding_hands_tone1_tone3:': '👩🏻‍🤝‍👨🏽', + ':woman_and_man_holding_hands_light_skin_tone_medium_dark_skin_tone:': '👩🏻‍🤝‍👨🏾', + ':woman_and_man_holding_hands_tone1_tone4:': '👩🏻‍🤝‍👨🏾', + ':woman_and_man_holding_hands_light_skin_tone_dark_skin_tone:': '👩🏻‍🤝‍👨🏿', + ':woman_and_man_holding_hands_tone1_tone5:': '👩🏻‍🤝‍👨🏿', + ':woman_and_man_holding_hands_medium_light_skin_tone_light_skin_tone:': '👩🏼‍🤝‍👨🏻', + ':woman_and_man_holding_hands_tone2_tone1:': '👩🏼‍🤝‍👨🏻', + ':woman_and_man_holding_hands_medium_light_skin_tone_medium_skin_tone:': '👩🏼‍🤝‍👨🏽', + ':woman_and_man_holding_hands_tone2_tone3:': '👩🏼‍🤝‍👨🏽', + ':woman_and_man_holding_hands_medium_light_skin_tone_medium_dark_skin_tone:': '👩🏼‍🤝‍👨🏾', + ':woman_and_man_holding_hands_tone2_tone4:': '👩🏼‍🤝‍👨🏾', + ':woman_and_man_holding_hands_medium_light_skin_tone_dark_skin_tone:': '👩🏼‍🤝‍👨🏿', + ':woman_and_man_holding_hands_tone2_tone5:': '👩🏼‍🤝‍👨🏿', + ':woman_and_man_holding_hands_medium_skin_tone_light_skin_tone:': '👩🏽‍🤝‍👨🏻', + ':woman_and_man_holding_hands_tone3_tone1:': '👩🏽‍🤝‍👨🏻', + ':woman_and_man_holding_hands_medium_skin_tone_medium_light_skin_tone:': '👩🏽‍🤝‍👨🏼', + ':woman_and_man_holding_hands_tone3_tone2:': '👩🏽‍🤝‍👨🏼', + ':woman_and_man_holding_hands_medium_skin_tone_medium_dark_skin_tone:': '👩🏽‍🤝‍👨🏾', + ':woman_and_man_holding_hands_tone3_tone4:': '👩🏽‍🤝‍👨🏾', + ':woman_and_man_holding_hands_medium_skin_tone_dark_skin_tone:': '👩🏽‍🤝‍👨🏿', + ':woman_and_man_holding_hands_tone3_tone5:': '👩🏽‍🤝‍👨🏿', + ':woman_and_man_holding_hands_medium_dark_skin_tone_light_skin_tone:': '👩🏾‍🤝‍👨🏻', + ':woman_and_man_holding_hands_tone4_tone1:': '👩🏾‍🤝‍👨🏻', + ':woman_and_man_holding_hands_medium_dark_skin_tone_medium_light_skin_tone:': '👩🏾‍🤝‍👨🏼', + ':woman_and_man_holding_hands_tone4_tone2:': '👩🏾‍🤝‍👨🏼', + ':woman_and_man_holding_hands_medium_dark_skin_tone_medium_skin_tone:': '👩🏾‍🤝‍👨🏽', + ':woman_and_man_holding_hands_tone4_tone3:': '👩🏾‍🤝‍👨🏽', + ':woman_and_man_holding_hands_medium_dark_skin_tone_dark_skin_tone:': '👩🏾‍🤝‍👨🏿', + ':woman_and_man_holding_hands_tone4_tone5:': '👩🏾‍🤝‍👨🏿', + ':woman_and_man_holding_hands_dark_skin_tone_light_skin_tone:': '👩🏿‍🤝‍👨🏻', + ':woman_and_man_holding_hands_tone5_tone1:': '👩🏿‍🤝‍👨🏻', + ':woman_and_man_holding_hands_dark_skin_tone_medium_light_skin_tone:': '👩🏿‍🤝‍👨🏼', + ':woman_and_man_holding_hands_tone5_tone2:': '👩🏿‍🤝‍👨🏼', + ':woman_and_man_holding_hands_dark_skin_tone_medium_skin_tone:': '👩🏿‍🤝‍👨🏽', + ':woman_and_man_holding_hands_tone5_tone3:': '👩🏿‍🤝‍👨🏽', + ':woman_and_man_holding_hands_dark_skin_tone_medium_dark_skin_tone:': '👩🏿‍🤝‍👨🏾', + ':woman_and_man_holding_hands_tone5_tone4:': '👩🏿‍🤝‍👨🏾', + ':women_holding_hands_medium_light_skin_tone_light_skin_tone:': '👩🏼‍🤝‍👩🏻', + ':women_holding_hands_tone2_tone1:': '👩🏼‍🤝‍👩🏻', + ':women_holding_hands_medium_skin_tone_light_skin_tone:': '👩🏽‍🤝‍👩🏻', + ':women_holding_hands_tone3_tone1:': '👩🏽‍🤝‍👩🏻', + ':women_holding_hands_medium_skin_tone_medium_light_skin_tone:': '👩🏽‍🤝‍👩🏼', + ':women_holding_hands_tone3_tone2:': '👩🏽‍🤝‍👩🏼', + ':women_holding_hands_medium_dark_skin_tone_light_skin_tone:': '👩🏾‍🤝‍👩🏻', + ':women_holding_hands_tone4_tone1:': '👩🏾‍🤝‍👩🏻', + ':women_holding_hands_medium_dark_skin_tone_medium_light_skin_tone:': '👩🏾‍🤝‍👩🏼', + ':women_holding_hands_tone4_tone2:': '👩🏾‍🤝‍👩🏼', + ':women_holding_hands_medium_dark_skin_tone_medium_skin_tone:': '👩🏾‍🤝‍👩🏽', + ':women_holding_hands_tone4_tone3:': '👩🏾‍🤝‍👩🏽', + ':women_holding_hands_dark_skin_tone_light_skin_tone:': '👩🏿‍🤝‍👩🏻', + ':women_holding_hands_tone5_tone1:': '👩🏿‍🤝‍👩🏻', + ':women_holding_hands_dark_skin_tone_medium_light_skin_tone:': '👩🏿‍🤝‍👩🏼', + ':women_holding_hands_tone5_tone2:': '👩🏿‍🤝‍👩🏼', + ':women_holding_hands_dark_skin_tone_medium_skin_tone:': '👩🏿‍🤝‍👩🏽', + ':women_holding_hands_tone5_tone3:': '👩🏿‍🤝‍👩🏽', + ':women_holding_hands_dark_skin_tone_medium_dark_skin_tone:': '👩🏿‍🤝‍👩🏾', + ':women_holding_hands_tone5_tone4:': '👩🏿‍🤝‍👩🏾', + ':family_mmbb:': '👨‍👨‍👦‍👦', + ':family_mmgb:': '👨‍👨‍👧‍👦', + ':family_mmgg:': '👨‍👨‍👧‍👧', + ':family_mwbb:': '👨‍👩‍👦‍👦', + ':family_mwgb:': '👨‍👩‍👧‍👦', + ':family_mwgg:': '👨‍👩‍👧‍👧', + ':family_wwbb:': '👩‍👩‍👦‍👦', + ':family_wwgb:': '👩‍👩‍👧‍👦', + ':family_wwgg:': '👩‍👩‍👧‍👧', + ':couplekiss_mm:': '👨‍❤️‍💋👨', + ':kiss_mm:': '👨‍❤️‍💋👨', + ':kiss_woman_man:': '👩‍❤️‍💋👨', + ':couplekiss_ww:': '👩‍❤️‍💋👩', + ':kiss_ww:': '👩‍❤️‍💋👩', + ':family_man_boy_boy:': '👨‍👦‍👦', + ':family_man_girl_boy:': '👨‍👧‍👦', + ':family_man_girl_girl:': '👨‍👧‍👧', + ':family_man_woman_boy:': '👨‍👩‍👦', + ':family_mmb:': '👨‍👨‍👦', + ':family_mmg:': '👨‍👨‍👧', + ':family_mwg:': '👨‍👩‍👧', + ':family_woman_boy_boy:': '👩‍👦‍👦', + ':family_woman_girl_boy:': '👩‍👧‍👦', + ':family_woman_girl_girl:': '👩‍👧‍👧', + ':family_wwb:': '👩‍👩‍👦', + ':family_wwg:': '👩‍👩‍👧', + ':man_artist_light_skin_tone:': '👨🏻‍🎨', + ':man_artist_tone1:': '👨🏻‍🎨', + ':man_artist_medium_light_skin_tone:': '👨🏼‍🎨', + ':man_artist_tone2:': '👨🏼‍🎨', + ':man_artist_medium_skin_tone:': '👨🏽‍🎨', + ':man_artist_tone3:': '👨🏽‍🎨', + ':man_artist_medium_dark_skin_tone:': '👨🏾‍🎨', + ':man_artist_tone4:': '👨🏾‍🎨', + ':man_artist_dark_skin_tone:': '👨🏿‍🎨', + ':man_artist_tone5:': '👨🏿‍🎨', + ':man_astronaut_light_skin_tone:': '👨🏻‍🚀', + ':man_astronaut_tone1:': '👨🏻‍🚀', + ':man_astronaut_medium_light_skin_tone:': '👨🏼‍🚀', + ':man_astronaut_tone2:': '👨🏼‍🚀', + ':man_astronaut_medium_skin_tone:': '👨🏽‍🚀', + ':man_astronaut_tone3:': '👨🏽‍🚀', + ':man_astronaut_medium_dark_skin_tone:': '👨🏾‍🚀', + ':man_astronaut_tone4:': '👨🏾‍🚀', + ':man_astronaut_dark_skin_tone:': '👨🏿‍🚀', + ':man_astronaut_tone5:': '👨🏿‍🚀', + ':man_bald_light_skin_tone:': '👨🏻‍🦲', + ':man_bald_tone1:': '👨🏻‍🦲', + ':man_bald_medium_light_skin_tone:': '👨🏼‍🦲', + ':man_bald_tone2:': '👨🏼‍🦲', + ':man_bald_medium_skin_tone:': '👨🏽‍🦲', + ':man_bald_tone3:': '👨🏽‍🦲', + ':man_bald_medium_dark_skin_tone:': '👨🏾‍🦲', + ':man_bald_tone4:': '👨🏾‍🦲', + ':man_bald_dark_skin_tone:': '👨🏿‍🦲', + ':man_bald_tone5:': '👨🏿‍🦲', + ':man_cook_light_skin_tone:': '👨🏻‍🍳', + ':man_cook_tone1:': '👨🏻‍🍳', + ':man_cook_medium_light_skin_tone:': '👨🏼‍🍳', + ':man_cook_tone2:': '👨🏼‍🍳', + ':man_cook_medium_skin_tone:': '👨🏽‍🍳', + ':man_cook_tone3:': '👨🏽‍🍳', + ':man_cook_medium_dark_skin_tone:': '👨🏾‍🍳', + ':man_cook_tone4:': '👨🏾‍🍳', + ':man_cook_dark_skin_tone:': '👨🏿‍🍳', + ':man_cook_tone5:': '👨🏿‍🍳', + ':man_curly_haired_light_skin_tone:': '👨🏻‍🦱', + ':man_curly_haired_tone1:': '👨🏻‍🦱', + ':man_curly_haired_medium_light_skin_tone:': '👨🏼‍🦱', + ':man_curly_haired_tone2:': '👨🏼‍🦱', + ':man_curly_haired_medium_skin_tone:': '👨🏽‍🦱', + ':man_curly_haired_tone3:': '👨🏽‍🦱', + ':man_curly_haired_medium_dark_skin_tone:': '👨🏾‍🦱', + ':man_curly_haired_tone4:': '👨🏾‍🦱', + ':man_curly_haired_dark_skin_tone:': '👨🏿‍🦱', + ':man_curly_haired_tone5:': '👨🏿‍🦱', + ':man_factory_worker_light_skin_tone:': '👨🏻‍🏭', + ':man_factory_worker_tone1:': '👨🏻‍🏭', + ':man_factory_worker_medium_light_skin_tone:': '👨🏼‍🏭', + ':man_factory_worker_tone2:': '👨🏼‍🏭', + ':man_factory_worker_medium_skin_tone:': '👨🏽‍🏭', + ':man_factory_worker_tone3:': '👨🏽‍🏭', + ':man_factory_worker_medium_dark_skin_tone:': '👨🏾‍🏭', + ':man_factory_worker_tone4:': '👨🏾‍🏭', + ':man_factory_worker_dark_skin_tone:': '👨🏿‍🏭', + ':man_factory_worker_tone5:': '👨🏿‍🏭', + ':man_farmer_light_skin_tone:': '👨🏻‍🌾', + ':man_farmer_tone1:': '👨🏻‍🌾', + ':man_farmer_medium_light_skin_tone:': '👨🏼‍🌾', + ':man_farmer_tone2:': '👨🏼‍🌾', + ':man_farmer_medium_skin_tone:': '👨🏽‍🌾', + ':man_farmer_tone3:': '👨🏽‍🌾', + ':man_farmer_medium_dark_skin_tone:': '👨🏾‍🌾', + ':man_farmer_tone4:': '👨🏾‍🌾', + ':man_farmer_dark_skin_tone:': '👨🏿‍🌾', + ':man_farmer_tone5:': '👨🏿‍🌾', + ':man_firefighter_light_skin_tone:': '👨🏻‍🚒', + ':man_firefighter_tone1:': '👨🏻‍🚒', + ':man_firefighter_medium_light_skin_tone:': '👨🏼‍🚒', + ':man_firefighter_tone2:': '👨🏼‍🚒', + ':man_firefighter_medium_skin_tone:': '👨🏽‍🚒', + ':man_firefighter_tone3:': '👨🏽‍🚒', + ':man_firefighter_medium_dark_skin_tone:': '👨🏾‍🚒', + ':man_firefighter_tone4:': '👨🏾‍🚒', + ':man_firefighter_dark_skin_tone:': '👨🏿‍🚒', + ':man_firefighter_tone5:': '👨🏿‍🚒', + ':man_in_manual_wheelchair_light_skin_tone:': '👨🏻‍🦽', + ':man_in_manual_wheelchair_tone1:': '👨🏻‍🦽', + ':man_in_manual_wheelchair_medium_light_skin_tone:': '👨🏼‍🦽', + ':man_in_manual_wheelchair_tone2:': '👨🏼‍🦽', + ':man_in_manual_wheelchair_medium_skin_tone:': '👨🏽‍🦽', + ':man_in_manual_wheelchair_tone3:': '👨🏽‍🦽', + ':man_in_manual_wheelchair_medium_dark_skin_tone:': '👨🏾‍🦽', + ':man_in_manual_wheelchair_tone4:': '👨🏾‍🦽', + ':man_in_manual_wheelchair_dark_skin_tone:': '👨🏿‍🦽', + ':man_in_manual_wheelchair_tone5:': '👨🏿‍🦽', + ':man_in_motorized_wheelchair_light_skin_tone:': '👨🏻‍🦼', + ':man_in_motorized_wheelchair_tone1:': '👨🏻‍🦼', + ':man_in_motorized_wheelchair_medium_light_skin_tone:': '👨🏼‍🦼', + ':man_in_motorized_wheelchair_tone2:': '👨🏼‍🦼', + ':man_in_motorized_wheelchair_medium_skin_tone:': '👨🏽‍🦼', + ':man_in_motorized_wheelchair_tone3:': '👨🏽‍🦼', + ':man_in_motorized_wheelchair_medium_dark_skin_tone:': '👨🏾‍🦼', + ':man_in_motorized_wheelchair_tone4:': '👨🏾‍🦼', + ':man_in_motorized_wheelchair_dark_skin_tone:': '👨🏿‍🦼', + ':man_in_motorized_wheelchair_tone5:': '👨🏿‍🦼', + ':man_mechanic_light_skin_tone:': '👨🏻‍🔧', + ':man_mechanic_tone1:': '👨🏻‍🔧', + ':man_mechanic_medium_light_skin_tone:': '👨🏼‍🔧', + ':man_mechanic_tone2:': '👨🏼‍🔧', + ':man_mechanic_medium_skin_tone:': '👨🏽‍🔧', + ':man_mechanic_tone3:': '👨🏽‍🔧', + ':man_mechanic_medium_dark_skin_tone:': '👨🏾‍🔧', + ':man_mechanic_tone4:': '👨🏾‍🔧', + ':man_mechanic_dark_skin_tone:': '👨🏿‍🔧', + ':man_mechanic_tone5:': '👨🏿‍🔧', + ':man_office_worker_light_skin_tone:': '👨🏻‍💼', + ':man_office_worker_tone1:': '👨🏻‍💼', + ':man_office_worker_medium_light_skin_tone:': '👨🏼‍💼', + ':man_office_worker_tone2:': '👨🏼‍💼', + ':man_office_worker_medium_skin_tone:': '👨🏽‍💼', + ':man_office_worker_tone3:': '👨🏽‍💼', + ':man_office_worker_medium_dark_skin_tone:': '👨🏾‍💼', + ':man_office_worker_tone4:': '👨🏾‍💼', + ':man_office_worker_dark_skin_tone:': '👨🏿‍💼', + ':man_office_worker_tone5:': '👨🏿‍💼', + ':man_red_haired_light_skin_tone:': '👨🏻‍🦰', + ':man_red_haired_tone1:': '👨🏻‍🦰', + ':man_red_haired_medium_light_skin_tone:': '👨🏼‍🦰', + ':man_red_haired_tone2:': '👨🏼‍🦰', + ':man_red_haired_medium_skin_tone:': '👨🏽‍🦰', + ':man_red_haired_tone3:': '👨🏽‍🦰', + ':man_red_haired_medium_dark_skin_tone:': '👨🏾‍🦰', + ':man_red_haired_tone4:': '👨🏾‍🦰', + ':man_red_haired_dark_skin_tone:': '👨🏿‍🦰', + ':man_red_haired_tone5:': '👨🏿‍🦰', + ':man_scientist_light_skin_tone:': '👨🏻‍🔬', + ':man_scientist_tone1:': '👨🏻‍🔬', + ':man_scientist_medium_light_skin_tone:': '👨🏼‍🔬', + ':man_scientist_tone2:': '👨🏼‍🔬', + ':man_scientist_medium_skin_tone:': '👨🏽‍🔬', + ':man_scientist_tone3:': '👨🏽‍🔬', + ':man_scientist_medium_dark_skin_tone:': '👨🏾‍🔬', + ':man_scientist_tone4:': '👨🏾‍🔬', + ':man_scientist_dark_skin_tone:': '👨🏿‍🔬', + ':man_scientist_tone5:': '👨🏿‍🔬', + ':man_singer_light_skin_tone:': '👨🏻‍🎤', + ':man_singer_tone1:': '👨🏻‍🎤', + ':man_singer_medium_light_skin_tone:': '👨🏼‍🎤', + ':man_singer_tone2:': '👨🏼‍🎤', + ':man_singer_medium_skin_tone:': '👨🏽‍🎤', + ':man_singer_tone3:': '👨🏽‍🎤', + ':man_singer_medium_dark_skin_tone:': '👨🏾‍🎤', + ':man_singer_tone4:': '👨🏾‍🎤', + ':man_singer_dark_skin_tone:': '👨🏿‍🎤', + ':man_singer_tone5:': '👨🏿‍🎤', + ':man_student_light_skin_tone:': '👨🏻‍🎓', + ':man_student_tone1:': '👨🏻‍🎓', + ':man_student_medium_light_skin_tone:': '👨🏼‍🎓', + ':man_student_tone2:': '👨🏼‍🎓', + ':man_student_medium_skin_tone:': '👨🏽‍🎓', + ':man_student_tone3:': '👨🏽‍🎓', + ':man_student_medium_dark_skin_tone:': '👨🏾‍🎓', + ':man_student_tone4:': '👨🏾‍🎓', + ':man_student_dark_skin_tone:': '👨🏿‍🎓', + ':man_student_tone5:': '👨🏿‍🎓', + ':man_teacher_light_skin_tone:': '👨🏻‍🏫', + ':man_teacher_tone1:': '👨🏻‍🏫', + ':man_teacher_medium_light_skin_tone:': '👨🏼‍🏫', + ':man_teacher_tone2:': '👨🏼‍🏫', + ':man_teacher_medium_skin_tone:': '👨🏽‍🏫', + ':man_teacher_tone3:': '👨🏽‍🏫', + ':man_teacher_medium_dark_skin_tone:': '👨🏾‍🏫', + ':man_teacher_tone4:': '👨🏾‍🏫', + ':man_teacher_dark_skin_tone:': '👨🏿‍🏫', + ':man_teacher_tone5:': '👨🏿‍🏫', + ':man_technologist_light_skin_tone:': '👨🏻‍💻', + ':man_technologist_tone1:': '👨🏻‍💻', + ':man_technologist_medium_light_skin_tone:': '👨🏼‍💻', + ':man_technologist_tone2:': '👨🏼‍💻', + ':man_technologist_medium_skin_tone:': '👨🏽‍💻', + ':man_technologist_tone3:': '👨🏽‍💻', + ':man_technologist_medium_dark_skin_tone:': '👨🏾‍💻', + ':man_technologist_tone4:': '👨🏾‍💻', + ':man_technologist_dark_skin_tone:': '👨🏿‍💻', + ':man_technologist_tone5:': '👨🏿‍💻', + ':man_white_haired_light_skin_tone:': '👨🏻‍🦳', + ':man_white_haired_tone1:': '👨🏻‍🦳', + ':man_white_haired_medium_light_skin_tone:': '👨🏼‍🦳', + ':man_white_haired_tone2:': '👨🏼‍🦳', + ':man_white_haired_medium_skin_tone:': '👨🏽‍🦳', + ':man_white_haired_tone3:': '👨🏽‍🦳', + ':man_white_haired_medium_dark_skin_tone:': '👨🏾‍🦳', + ':man_white_haired_tone4:': '👨🏾‍🦳', + ':man_white_haired_dark_skin_tone:': '👨🏿‍🦳', + ':man_white_haired_tone5:': '👨🏿‍🦳', + ':man_with_probing_cane_light_skin_tone:': '👨🏻‍🦯', + ':man_with_probing_cane_tone1:': '👨🏻‍🦯', + ':man_with_probing_cane_medium_light_skin_tone:': '👨🏼‍🦯', + ':man_with_probing_cane_tone2:': '👨🏼‍🦯', + ':man_with_probing_cane_medium_skin_tone:': '👨🏽‍🦯', + ':man_with_probing_cane_tone3:': '👨🏽‍🦯', + ':man_with_probing_cane_medium_dark_skin_tone:': '👨🏾‍🦯', + ':man_with_probing_cane_tone4:': '👨🏾‍🦯', + ':man_with_probing_cane_dark_skin_tone:': '👨🏿‍🦯', + ':man_with_probing_cane_tone5:': '👨🏿‍🦯', + ':people_holding_hands:': '🧑‍🤝‍🧑', + ':woman_artist_light_skin_tone:': '👩🏻‍🎨', + ':woman_artist_tone1:': '👩🏻‍🎨', + ':woman_artist_medium_light_skin_tone:': '👩🏼‍🎨', + ':woman_artist_tone2:': '👩🏼‍🎨', + ':woman_artist_medium_skin_tone:': '👩🏽‍🎨', + ':woman_artist_tone3:': '👩🏽‍🎨', + ':woman_artist_medium_dark_skin_tone:': '👩🏾‍🎨', + ':woman_artist_tone4:': '👩🏾‍🎨', + ':woman_artist_dark_skin_tone:': '👩🏿‍🎨', + ':woman_artist_tone5:': '👩🏿‍🎨', + ':woman_astronaut_light_skin_tone:': '👩🏻‍🚀', + ':woman_astronaut_tone1:': '👩🏻‍🚀', + ':woman_astronaut_medium_light_skin_tone:': '👩🏼‍🚀', + ':woman_astronaut_tone2:': '👩🏼‍🚀', + ':woman_astronaut_medium_skin_tone:': '👩🏽‍🚀', + ':woman_astronaut_tone3:': '👩🏽‍🚀', + ':woman_astronaut_medium_dark_skin_tone:': '👩🏾‍🚀', + ':woman_astronaut_tone4:': '👩🏾‍🚀', + ':woman_astronaut_dark_skin_tone:': '👩🏿‍🚀', + ':woman_astronaut_tone5:': '👩🏿‍🚀', + ':woman_bald_light_skin_tone:': '👩🏻‍🦲', + ':woman_bald_tone1:': '👩🏻‍🦲', + ':woman_bald_medium_light_skin_tone:': '👩🏼‍🦲', + ':woman_bald_tone2:': '👩🏼‍🦲', + ':woman_bald_medium_skin_tone:': '👩🏽‍🦲', + ':woman_bald_tone3:': '👩🏽‍🦲', + ':woman_bald_medium_dark_skin_tone:': '👩🏾‍🦲', + ':woman_bald_tone4:': '👩🏾‍🦲', + ':woman_bald_dark_skin_tone:': '👩🏿‍🦲', + ':woman_bald_tone5:': '👩🏿‍🦲', + ':woman_cook_light_skin_tone:': '👩🏻‍🍳', + ':woman_cook_tone1:': '👩🏻‍🍳', + ':woman_cook_medium_light_skin_tone:': '👩🏼‍🍳', + ':woman_cook_tone2:': '👩🏼‍🍳', + ':woman_cook_medium_skin_tone:': '👩🏽‍🍳', + ':woman_cook_tone3:': '👩🏽‍🍳', + ':woman_cook_medium_dark_skin_tone:': '👩🏾‍🍳', + ':woman_cook_tone4:': '👩🏾‍🍳', + ':woman_cook_dark_skin_tone:': '👩🏿‍🍳', + ':woman_cook_tone5:': '👩🏿‍🍳', + ':woman_curly_haired_light_skin_tone:': '👩🏻‍🦱', + ':woman_curly_haired_tone1:': '👩🏻‍🦱', + ':woman_curly_haired_medium_light_skin_tone:': '👩🏼‍🦱', + ':woman_curly_haired_tone2:': '👩🏼‍🦱', + ':woman_curly_haired_medium_skin_tone:': '👩🏽‍🦱', + ':woman_curly_haired_tone3:': '👩🏽‍🦱', + ':woman_curly_haired_medium_dark_skin_tone:': '👩🏾‍🦱', + ':woman_curly_haired_tone4:': '👩🏾‍🦱', + ':woman_curly_haired_dark_skin_tone:': '👩🏿‍🦱', + ':woman_curly_haired_tone5:': '👩🏿‍🦱', + ':woman_factory_worker_light_skin_tone:': '👩🏻‍🏭', + ':woman_factory_worker_tone1:': '👩🏻‍🏭', + ':woman_factory_worker_medium_light_skin_tone:': '👩🏼‍🏭', + ':woman_factory_worker_tone2:': '👩🏼‍🏭', + ':woman_factory_worker_medium_skin_tone:': '👩🏽‍🏭', + ':woman_factory_worker_tone3:': '👩🏽‍🏭', + ':woman_factory_worker_medium_dark_skin_tone:': '👩🏾‍🏭', + ':woman_factory_worker_tone4:': '👩🏾‍🏭', + ':woman_factory_worker_dark_skin_tone:': '👩🏿‍🏭', + ':woman_factory_worker_tone5:': '👩🏿‍🏭', + ':woman_farmer_light_skin_tone:': '👩🏻‍🌾', + ':woman_farmer_tone1:': '👩🏻‍🌾', + ':woman_farmer_medium_light_skin_tone:': '👩🏼‍🌾', + ':woman_farmer_tone2:': '👩🏼‍🌾', + ':woman_farmer_medium_skin_tone:': '👩🏽‍🌾', + ':woman_farmer_tone3:': '👩🏽‍🌾', + ':woman_farmer_medium_dark_skin_tone:': '👩🏾‍🌾', + ':woman_farmer_tone4:': '👩🏾‍🌾', + ':woman_farmer_dark_skin_tone:': '👩🏿‍🌾', + ':woman_farmer_tone5:': '👩🏿‍🌾', + ':woman_firefighter_light_skin_tone:': '👩🏻‍🚒', + ':woman_firefighter_tone1:': '👩🏻‍🚒', + ':woman_firefighter_medium_light_skin_tone:': '👩🏼‍🚒', + ':woman_firefighter_tone2:': '👩🏼‍🚒', + ':woman_firefighter_medium_skin_tone:': '👩🏽‍🚒', + ':woman_firefighter_tone3:': '👩🏽‍🚒', + ':woman_firefighter_medium_dark_skin_tone:': '👩🏾‍🚒', + ':woman_firefighter_tone4:': '👩🏾‍🚒', + ':woman_firefighter_dark_skin_tone:': '👩🏿‍🚒', + ':woman_firefighter_tone5:': '👩🏿‍🚒', + ':woman_in_manual_wheelchair_light_skin_tone:': '👩🏻‍🦽', + ':woman_in_manual_wheelchair_tone1:': '👩🏻‍🦽', + ':woman_in_manual_wheelchair_medium_light_skin_tone:': '👩🏼‍🦽', + ':woman_in_manual_wheelchair_tone2:': '👩🏼‍🦽', + ':woman_in_manual_wheelchair_medium_skin_tone:': '👩🏽‍🦽', + ':woman_in_manual_wheelchair_tone3:': '👩🏽‍🦽', + ':woman_in_manual_wheelchair_medium_dark_skin_tone:': '👩🏾‍🦽', + ':woman_in_manual_wheelchair_tone4:': '👩🏾‍🦽', + ':woman_in_manual_wheelchair_dark_skin_tone:': '👩🏿‍🦽', + ':woman_in_manual_wheelchair_tone5:': '👩🏿‍🦽', + ':woman_in_motorized_wheelchair_light_skin_tone:': '👩🏻‍🦼', + ':woman_in_motorized_wheelchair_tone1:': '👩🏻‍🦼', + ':woman_in_motorized_wheelchair_medium_light_skin_tone:': '👩🏼‍🦼', + ':woman_in_motorized_wheelchair_tone2:': '👩🏼‍🦼', + ':woman_in_motorized_wheelchair_medium_skin_tone:': '👩🏽‍🦼', + ':woman_in_motorized_wheelchair_tone3:': '👩🏽‍🦼', + ':woman_in_motorized_wheelchair_medium_dark_skin_tone:': '👩🏾‍🦼', + ':woman_in_motorized_wheelchair_tone4:': '👩🏾‍🦼', + ':woman_in_motorized_wheelchair_dark_skin_tone:': '👩🏿‍🦼', + ':woman_in_motorized_wheelchair_tone5:': '👩🏿‍🦼', + ':woman_mechanic_light_skin_tone:': '👩🏻‍🔧', + ':woman_mechanic_tone1:': '👩🏻‍🔧', + ':woman_mechanic_medium_light_skin_tone:': '👩🏼‍🔧', + ':woman_mechanic_tone2:': '👩🏼‍🔧', + ':woman_mechanic_medium_skin_tone:': '👩🏽‍🔧', + ':woman_mechanic_tone3:': '👩🏽‍🔧', + ':woman_mechanic_medium_dark_skin_tone:': '👩🏾‍🔧', + ':woman_mechanic_tone4:': '👩🏾‍🔧', + ':woman_mechanic_dark_skin_tone:': '👩🏿‍🔧', + ':woman_mechanic_tone5:': '👩🏿‍🔧', + ':woman_office_worker_light_skin_tone:': '👩🏻‍💼', + ':woman_office_worker_tone1:': '👩🏻‍💼', + ':woman_office_worker_medium_light_skin_tone:': '👩🏼‍💼', + ':woman_office_worker_tone2:': '👩🏼‍💼', + ':woman_office_worker_medium_skin_tone:': '👩🏽‍💼', + ':woman_office_worker_tone3:': '👩🏽‍💼', + ':woman_office_worker_medium_dark_skin_tone:': '👩🏾‍💼', + ':woman_office_worker_tone4:': '👩🏾‍💼', + ':woman_office_worker_dark_skin_tone:': '👩🏿‍💼', + ':woman_office_worker_tone5:': '👩🏿‍💼', + ':woman_red_haired_light_skin_tone:': '👩🏻‍🦰', + ':woman_red_haired_tone1:': '👩🏻‍🦰', + ':woman_red_haired_medium_light_skin_tone:': '👩🏼‍🦰', + ':woman_red_haired_tone2:': '👩🏼‍🦰', + ':woman_red_haired_medium_skin_tone:': '👩🏽‍🦰', + ':woman_red_haired_tone3:': '👩🏽‍🦰', + ':woman_red_haired_medium_dark_skin_tone:': '👩🏾‍🦰', + ':woman_red_haired_tone4:': '👩🏾‍🦰', + ':woman_red_haired_dark_skin_tone:': '👩🏿‍🦰', + ':woman_red_haired_tone5:': '👩🏿‍🦰', + ':woman_scientist_light_skin_tone:': '👩🏻‍🔬', + ':woman_scientist_tone1:': '👩🏻‍🔬', + ':woman_scientist_medium_light_skin_tone:': '👩🏼‍🔬', + ':woman_scientist_tone2:': '👩🏼‍🔬', + ':woman_scientist_medium_skin_tone:': '👩🏽‍🔬', + ':woman_scientist_tone3:': '👩🏽‍🔬', + ':woman_scientist_medium_dark_skin_tone:': '👩🏾‍🔬', + ':woman_scientist_tone4:': '👩🏾‍🔬', + ':woman_scientist_dark_skin_tone:': '👩🏿‍🔬', + ':woman_scientist_tone5:': '👩🏿‍🔬', + ':woman_singer_light_skin_tone:': '👩🏻‍🎤', + ':woman_singer_tone1:': '👩🏻‍🎤', + ':woman_singer_medium_light_skin_tone:': '👩🏼‍🎤', + ':woman_singer_tone2:': '👩🏼‍🎤', + ':woman_singer_medium_skin_tone:': '👩🏽‍🎤', + ':woman_singer_tone3:': '👩🏽‍🎤', + ':woman_singer_medium_dark_skin_tone:': '👩🏾‍🎤', + ':woman_singer_tone4:': '👩🏾‍🎤', + ':woman_singer_dark_skin_tone:': '👩🏿‍🎤', + ':woman_singer_tone5:': '👩🏿‍🎤', + ':woman_student_light_skin_tone:': '👩🏻‍🎓', + ':woman_student_tone1:': '👩🏻‍🎓', + ':woman_student_medium_light_skin_tone:': '👩🏼‍🎓', + ':woman_student_tone2:': '👩🏼‍🎓', + ':woman_student_medium_skin_tone:': '👩🏽‍🎓', + ':woman_student_tone3:': '👩🏽‍🎓', + ':woman_student_medium_dark_skin_tone:': '👩🏾‍🎓', + ':woman_student_tone4:': '👩🏾‍🎓', + ':woman_student_dark_skin_tone:': '👩🏿‍🎓', + ':woman_student_tone5:': '👩🏿‍🎓', + ':woman_teacher_light_skin_tone:': '👩🏻‍🏫', + ':woman_teacher_tone1:': '👩🏻‍🏫', + ':woman_teacher_medium_light_skin_tone:': '👩🏼‍🏫', + ':woman_teacher_tone2:': '👩🏼‍🏫', + ':woman_teacher_medium_skin_tone:': '👩🏽‍🏫', + ':woman_teacher_tone3:': '👩🏽‍🏫', + ':woman_teacher_medium_dark_skin_tone:': '👩🏾‍🏫', + ':woman_teacher_tone4:': '👩🏾‍🏫', + ':woman_teacher_dark_skin_tone:': '👩🏿‍🏫', + ':woman_teacher_tone5:': '👩🏿‍🏫', + ':woman_technologist_light_skin_tone:': '👩🏻‍💻', + ':woman_technologist_tone1:': '👩🏻‍💻', + ':woman_technologist_medium_light_skin_tone:': '👩🏼‍💻', + ':woman_technologist_tone2:': '👩🏼‍💻', + ':woman_technologist_medium_skin_tone:': '👩🏽‍💻', + ':woman_technologist_tone3:': '👩🏽‍💻', + ':woman_technologist_medium_dark_skin_tone:': '👩🏾‍💻', + ':woman_technologist_tone4:': '👩🏾‍💻', + ':woman_technologist_dark_skin_tone:': '👩🏿‍💻', + ':woman_technologist_tone5:': '👩🏿‍💻', + ':woman_white_haired_light_skin_tone:': '👩🏻‍🦳', + ':woman_white_haired_tone1:': '👩🏻‍🦳', + ':woman_white_haired_medium_light_skin_tone:': '👩🏼‍🦳', + ':woman_white_haired_tone2:': '👩🏼‍🦳', + ':woman_white_haired_medium_skin_tone:': '👩🏽‍🦳', + ':woman_white_haired_tone3:': '👩🏽‍🦳', + ':woman_white_haired_medium_dark_skin_tone:': '👩🏾‍🦳', + ':woman_white_haired_tone4:': '👩🏾‍🦳', + ':woman_white_haired_dark_skin_tone:': '👩🏿‍🦳', + ':woman_white_haired_tone5:': '👩🏿‍🦳', + ':woman_with_probing_cane_light_skin_tone:': '👩🏻‍🦯', + ':woman_with_probing_cane_tone1:': '👩🏻‍🦯', + ':woman_with_probing_cane_medium_light_skin_tone:': '👩🏼‍🦯', + ':woman_with_probing_cane_tone2:': '👩🏼‍🦯', + ':woman_with_probing_cane_medium_skin_tone:': '👩🏽‍🦯', + ':woman_with_probing_cane_tone3:': '👩🏽‍🦯', + ':woman_with_probing_cane_medium_dark_skin_tone:': '👩🏾‍🦯', + ':woman_with_probing_cane_tone4:': '👩🏾‍🦯', + ':woman_with_probing_cane_dark_skin_tone:': '👩🏿‍🦯', + ':woman_with_probing_cane_tone5:': '👩🏿‍🦯', + ':blond-haired_man_light_skin_tone:': '👱🏻‍♂️', + ':blond-haired_man_tone1:': '👱🏻‍♂️', + ':blond-haired_man_medium_light_skin_tone:': '👱🏼‍♂️', + ':blond-haired_man_tone2:': '👱🏼‍♂️', + ':blond-haired_man_medium_skin_tone:': '👱🏽‍♂️', + ':blond-haired_man_tone3:': '👱🏽‍♂️', + ':blond-haired_man_medium_dark_skin_tone:': '👱🏾‍♂️', + ':blond-haired_man_tone4:': '👱🏾‍♂️', + ':blond-haired_man_dark_skin_tone:': '👱🏿‍♂️', + ':blond-haired_man_tone5:': '👱🏿‍♂️', + ':blond-haired_woman_light_skin_tone:': '👱🏻‍♀️', + ':blond-haired_woman_tone1:': '👱🏻‍♀️', + ':blond-haired_woman_medium_light_skin_tone:': '👱🏼‍♀️', + ':blond-haired_woman_tone2:': '👱🏼‍♀️', + ':blond-haired_woman_medium_skin_tone:': '👱🏽‍♀️', + ':blond-haired_woman_tone3:': '👱🏽‍♀️', + ':blond-haired_woman_medium_dark_skin_tone:': '👱🏾‍♀️', + ':blond-haired_woman_tone4:': '👱🏾‍♀️', + ':blond-haired_woman_dark_skin_tone:': '👱🏿‍♀️', + ':blond-haired_woman_tone5:': '👱🏿‍♀️', + ':couple_with_heart_mm:': '👨‍❤️‍👨', + ':couple_mm:': '👨‍❤️‍👨', + ':couple_with_heart_woman_man:': '👩‍❤️‍👨', + ':couple_with_heart_ww:': '👩‍❤️‍👩', + ':couple_ww:': '👩‍❤️‍👩', + ':deaf_man_light_skin_tone:': '🧏🏻‍♂️', + ':deaf_man_tone1:': '🧏🏻‍♂️', + ':deaf_man_medium_light_skin_tone:': '🧏🏼‍♂️', + ':deaf_man_tone2:': '🧏🏼‍♂️', + ':deaf_man_medium_skin_tone:': '🧏🏽‍♂️', + ':deaf_man_tone3:': '🧏🏽‍♂️', + ':deaf_man_medium_dark_skin_tone:': '🧏🏾‍♂️', + ':deaf_man_tone4:': '🧏🏾‍♂️', + ':deaf_man_dark_skin_tone:': '🧏🏿‍♂️', + ':deaf_man_tone5:': '🧏🏿‍♂️', + ':deaf_woman_light_skin_tone:': '🧏🏻‍♀️', + ':deaf_woman_tone1:': '🧏🏻‍♀️', + ':deaf_woman_medium_light_skin_tone:': '🧏🏼‍♀️', + ':deaf_woman_tone2:': '🧏🏼‍♀️', + ':deaf_woman_medium_skin_tone:': '🧏🏽‍♀️', + ':deaf_woman_tone3:': '🧏🏽‍♀️', + ':deaf_woman_medium_dark_skin_tone:': '🧏🏾‍♀️', + ':deaf_woman_tone4:': '🧏🏾‍♀️', + ':deaf_woman_dark_skin_tone:': '🧏🏿‍♀️', + ':deaf_woman_tone5:': '🧏🏿‍♀️', + ':man_biking_light_skin_tone:': '🚴🏻‍♂️', + ':man_biking_tone1:': '🚴🏻‍♂️', + ':man_biking_medium_light_skin_tone:': '🚴🏼‍♂️', + ':man_biking_tone2:': '🚴🏼‍♂️', + ':man_biking_medium_skin_tone:': '🚴🏽‍♂️', + ':man_biking_tone3:': '🚴🏽‍♂️', + ':man_biking_medium_dark_skin_tone:': '🚴🏾‍♂️', + ':man_biking_tone4:': '🚴🏾‍♂️', + ':man_biking_dark_skin_tone:': '🚴🏿‍♂️', + ':man_biking_tone5:': '🚴🏿‍♂️', + ':man_bowing_light_skin_tone:': '🙇🏻‍♂️', + ':man_bowing_tone1:': '🙇🏻‍♂️', + ':man_bowing_medium_light_skin_tone:': '🙇🏼‍♂️', + ':man_bowing_tone2:': '🙇🏼‍♂️', + ':man_bowing_medium_skin_tone:': '🙇🏽‍♂️', + ':man_bowing_tone3:': '🙇🏽‍♂️', + ':man_bowing_medium_dark_skin_tone:': '🙇🏾‍♂️', + ':man_bowing_tone4:': '🙇🏾‍♂️', + ':man_bowing_dark_skin_tone:': '🙇🏿‍♂️', + ':man_bowing_tone5:': '🙇🏿‍♂️', + ':man_cartwheeling_light_skin_tone:': '🤸🏻‍♂️', + ':man_cartwheeling_tone1:': '🤸🏻‍♂️', + ':man_cartwheeling_medium_light_skin_tone:': '🤸🏼‍♂️', + ':man_cartwheeling_tone2:': '🤸🏼‍♂️', + ':man_cartwheeling_medium_skin_tone:': '🤸🏽‍♂️', + ':man_cartwheeling_tone3:': '🤸🏽‍♂️', + ':man_cartwheeling_medium_dark_skin_tone:': '🤸🏾‍♂️', + ':man_cartwheeling_tone4:': '🤸🏾‍♂️', + ':man_cartwheeling_dark_skin_tone:': '🤸🏿‍♂️', + ':man_cartwheeling_tone5:': '🤸🏿‍♂️', + ':man_climbing_light_skin_tone:': '🧗🏻‍♂️', + ':man_climbing_tone1:': '🧗🏻‍♂️', + ':man_climbing_medium_light_skin_tone:': '🧗🏼‍♂️', + ':man_climbing_tone2:': '🧗🏼‍♂️', + ':man_climbing_medium_skin_tone:': '🧗🏽‍♂️', + ':man_climbing_tone3:': '🧗🏽‍♂️', + ':man_climbing_medium_dark_skin_tone:': '🧗🏾‍♂️', + ':man_climbing_tone4:': '🧗🏾‍♂️', + ':man_climbing_dark_skin_tone:': '🧗🏿‍♂️', + ':man_climbing_tone5:': '🧗🏿‍♂️', + ':man_construction_worker_light_skin_tone:': '👷🏻‍♂️', + ':man_construction_worker_tone1:': '👷🏻‍♂️', + ':man_construction_worker_medium_light_skin_tone:': '👷🏼‍♂️', + ':man_construction_worker_tone2:': '👷🏼‍♂️', + ':man_construction_worker_medium_skin_tone:': '👷🏽‍♂️', + ':man_construction_worker_tone3:': '👷🏽‍♂️', + ':man_construction_worker_medium_dark_skin_tone:': '👷🏾‍♂️', + ':man_construction_worker_tone4:': '👷🏾‍♂️', + ':man_construction_worker_dark_skin_tone:': '👷🏿‍♂️', + ':man_construction_worker_tone5:': '👷🏿‍♂️', + ':man_detective_light_skin_tone:': '🕵️🏻‍♂️', + ':man_detective_tone1:': '🕵️🏻‍♂️', + ':man_detective_medium_light_skin_tone:': '🕵️🏼‍♂️', + ':man_detective_tone2:': '🕵️🏼‍♂️', + ':man_detective_medium_skin_tone:': '🕵️🏽‍♂️', + ':man_detective_tone3:': '🕵️🏽‍♂️', + ':man_detective_medium_dark_skin_tone:': '🕵️🏾‍♂️', + ':man_detective_tone4:': '🕵️🏾‍♂️', + ':man_detective_dark_skin_tone:': '🕵️🏿‍♂️', + ':man_detective_tone5:': '🕵️🏿‍♂️', + ':man_elf_light_skin_tone:': '🧝🏻‍♂️', + ':man_elf_tone1:': '🧝🏻‍♂️', + ':man_elf_medium_light_skin_tone:': '🧝🏼‍♂️', + ':man_elf_tone2:': '🧝🏼‍♂️', + ':man_elf_medium_skin_tone:': '🧝🏽‍♂️', + ':man_elf_tone3:': '🧝🏽‍♂️', + ':man_elf_medium_dark_skin_tone:': '🧝🏾‍♂️', + ':man_elf_tone4:': '🧝🏾‍♂️', + ':man_elf_dark_skin_tone:': '🧝🏿‍♂️', + ':man_elf_tone5:': '🧝🏿‍♂️', + ':man_facepalming_light_skin_tone:': '🤦🏻‍♂️', + ':man_facepalming_tone1:': '🤦🏻‍♂️', + ':man_facepalming_medium_light_skin_tone:': '🤦🏼‍♂️', + ':man_facepalming_tone2:': '🤦🏼‍♂️', + ':man_facepalming_medium_skin_tone:': '🤦🏽‍♂️', + ':man_facepalming_tone3:': '🤦🏽‍♂️', + ':man_facepalming_medium_dark_skin_tone:': '🤦🏾‍♂️', + ':man_facepalming_tone4:': '🤦🏾‍♂️', + ':man_facepalming_dark_skin_tone:': '🤦🏿‍♂️', + ':man_facepalming_tone5:': '🤦🏿‍♂️', + ':man_fairy_light_skin_tone:': '🧚🏻‍♂️', + ':man_fairy_tone1:': '🧚🏻‍♂️', + ':man_fairy_medium_light_skin_tone:': '🧚🏼‍♂️', + ':man_fairy_tone2:': '🧚🏼‍♂️', + ':man_fairy_medium_skin_tone:': '🧚🏽‍♂️', + ':man_fairy_tone3:': '🧚🏽‍♂️', + ':man_fairy_medium_dark_skin_tone:': '🧚🏾‍♂️', + ':man_fairy_tone4:': '🧚🏾‍♂️', + ':man_fairy_dark_skin_tone:': '🧚🏿‍♂️', + ':man_fairy_tone5:': '🧚🏿‍♂️', + ':man_frowning_light_skin_tone:': '🙍🏻‍♂️', + ':man_frowning_tone1:': '🙍🏻‍♂️', + ':man_frowning_medium_light_skin_tone:': '🙍🏼‍♂️', + ':man_frowning_tone2:': '🙍🏼‍♂️', + ':man_frowning_medium_skin_tone:': '🙍🏽‍♂️', + ':man_frowning_tone3:': '🙍🏽‍♂️', + ':man_frowning_medium_dark_skin_tone:': '🙍🏾‍♂️', + ':man_frowning_tone4:': '🙍🏾‍♂️', + ':man_frowning_dark_skin_tone:': '🙍🏿‍♂️', + ':man_frowning_tone5:': '🙍🏿‍♂️', + ':man_gesturing_no_light_skin_tone:': '🙅🏻‍♂️', + ':man_gesturing_no_tone1:': '🙅🏻‍♂️', + ':man_gesturing_no_medium_light_skin_tone:': '🙅🏼‍♂️', + ':man_gesturing_no_tone2:': '🙅🏼‍♂️', + ':man_gesturing_no_medium_skin_tone:': '🙅🏽‍♂️', + ':man_gesturing_no_tone3:': '🙅🏽‍♂️', + ':man_gesturing_no_medium_dark_skin_tone:': '🙅🏾‍♂️', + ':man_gesturing_no_tone4:': '🙅🏾‍♂️', + ':man_gesturing_no_dark_skin_tone:': '🙅🏿‍♂️', + ':man_gesturing_no_tone5:': '🙅🏿‍♂️', + ':man_gesturing_ok_light_skin_tone:': '🙆🏻‍♂️', + ':man_gesturing_ok_tone1:': '🙆🏻‍♂️', + ':man_gesturing_ok_medium_light_skin_tone:': '🙆🏼‍♂️', + ':man_gesturing_ok_tone2:': '🙆🏼‍♂️', + ':man_gesturing_ok_medium_skin_tone:': '🙆🏽‍♂️', + ':man_gesturing_ok_tone3:': '🙆🏽‍♂️', + ':man_gesturing_ok_medium_dark_skin_tone:': '🙆🏾‍♂️', + ':man_gesturing_ok_tone4:': '🙆🏾‍♂️', + ':man_gesturing_ok_dark_skin_tone:': '🙆🏿‍♂️', + ':man_gesturing_ok_tone5:': '🙆🏿‍♂️', + ':man_getting_face_massage_light_skin_tone:': '💆🏻‍♂️', + ':man_getting_face_massage_tone1:': '💆🏻‍♂️', + ':man_getting_face_massage_medium_light_skin_tone:': '💆🏼‍♂️', + ':man_getting_face_massage_tone2:': '💆🏼‍♂️', + ':man_getting_face_massage_medium_skin_tone:': '💆🏽‍♂️', + ':man_getting_face_massage_tone3:': '💆🏽‍♂️', + ':man_getting_face_massage_medium_dark_skin_tone:': '💆🏾‍♂️', + ':man_getting_face_massage_tone4:': '💆🏾‍♂️', + ':man_getting_face_massage_dark_skin_tone:': '💆🏿‍♂️', + ':man_getting_face_massage_tone5:': '💆🏿‍♂️', + ':man_getting_haircut_light_skin_tone:': '💇🏻‍♂️', + ':man_getting_haircut_tone1:': '💇🏻‍♂️', + ':man_getting_haircut_medium_light_skin_tone:': '💇🏼‍♂️', + ':man_getting_haircut_tone2:': '💇🏼‍♂️', + ':man_getting_haircut_medium_skin_tone:': '💇🏽‍♂️', + ':man_getting_haircut_tone3:': '💇🏽‍♂️', + ':man_getting_haircut_medium_dark_skin_tone:': '💇🏾‍♂️', + ':man_getting_haircut_tone4:': '💇🏾‍♂️', + ':man_getting_haircut_dark_skin_tone:': '💇🏿‍♂️', + ':man_getting_haircut_tone5:': '💇🏿‍♂️', + ':man_golfing_light_skin_tone:': '🏌️🏻‍♂️', + ':man_golfing_tone1:': '🏌️🏻‍♂️', + ':man_golfing_medium_light_skin_tone:': '🏌️🏼‍♂️', + ':man_golfing_tone2:': '🏌️🏼‍♂️', + ':man_golfing_medium_skin_tone:': '🏌️🏽‍♂️', + ':man_golfing_tone3:': '🏌️🏽‍♂️', + ':man_golfing_medium_dark_skin_tone:': '🏌️🏾‍♂️', + ':man_golfing_tone4:': '🏌️🏾‍♂️', + ':man_golfing_dark_skin_tone:': '🏌️🏿‍♂️', + ':man_golfing_tone5:': '🏌️🏿‍♂️', + ':man_guard_light_skin_tone:': '💂🏻‍♂️', + ':man_guard_tone1:': '💂🏻‍♂️', + ':man_guard_medium_light_skin_tone:': '💂🏼‍♂️', + ':man_guard_tone2:': '💂🏼‍♂️', + ':man_guard_medium_skin_tone:': '💂🏽‍♂️', + ':man_guard_tone3:': '💂🏽‍♂️', + ':man_guard_medium_dark_skin_tone:': '💂🏾‍♂️', + ':man_guard_tone4:': '💂🏾‍♂️', + ':man_guard_dark_skin_tone:': '💂🏿‍♂️', + ':man_guard_tone5:': '💂🏿‍♂️', + ':man_health_worker_light_skin_tone:': '👨🏻‍⚕️', + ':man_health_worker_tone1:': '👨🏻‍⚕️', + ':man_health_worker_medium_light_skin_tone:': '👨🏼‍⚕️', + ':man_health_worker_tone2:': '👨🏼‍⚕️', + ':man_health_worker_medium_skin_tone:': '👨🏽‍⚕️', + ':man_health_worker_tone3:': '👨🏽‍⚕️', + ':man_health_worker_medium_dark_skin_tone:': '👨🏾‍⚕️', + ':man_health_worker_tone4:': '👨🏾‍⚕️', + ':man_health_worker_dark_skin_tone:': '👨🏿‍⚕️', + ':man_health_worker_tone5:': '👨🏿‍⚕️', + ':man_in_lotus_position_light_skin_tone:': '🧘🏻‍♂️', + ':man_in_lotus_position_tone1:': '🧘🏻‍♂️', + ':man_in_lotus_position_medium_light_skin_tone:': '🧘🏼‍♂️', + ':man_in_lotus_position_tone2:': '🧘🏼‍♂️', + ':man_in_lotus_position_medium_skin_tone:': '🧘🏽‍♂️', + ':man_in_lotus_position_tone3:': '🧘🏽‍♂️', + ':man_in_lotus_position_medium_dark_skin_tone:': '🧘🏾‍♂️', + ':man_in_lotus_position_tone4:': '🧘🏾‍♂️', + ':man_in_lotus_position_dark_skin_tone:': '🧘🏿‍♂️', + ':man_in_lotus_position_tone5:': '🧘🏿‍♂️', + ':man_in_steamy_room_light_skin_tone:': '🧖🏻‍♂️', + ':man_in_steamy_room_tone1:': '🧖🏻‍♂️', + ':man_in_steamy_room_medium_light_skin_tone:': '🧖🏼‍♂️', + ':man_in_steamy_room_tone2:': '🧖🏼‍♂️', + ':man_in_steamy_room_medium_skin_tone:': '🧖🏽‍♂️', + ':man_in_steamy_room_tone3:': '🧖🏽‍♂️', + ':man_in_steamy_room_medium_dark_skin_tone:': '🧖🏾‍♂️', + ':man_in_steamy_room_tone4:': '🧖🏾‍♂️', + ':man_in_steamy_room_dark_skin_tone:': '🧖🏿‍♂️', + ':man_in_steamy_room_tone5:': '🧖🏿‍♂️', + ':man_judge_light_skin_tone:': '👨🏻‍⚖️', + ':man_judge_tone1:': '👨🏻‍⚖️', + ':man_judge_medium_light_skin_tone:': '👨🏼‍⚖️', + ':man_judge_tone2:': '👨🏼‍⚖️', + ':man_judge_medium_skin_tone:': '👨🏽‍⚖️', + ':man_judge_tone3:': '👨🏽‍⚖️', + ':man_judge_medium_dark_skin_tone:': '👨🏾‍⚖️', + ':man_judge_tone4:': '👨🏾‍⚖️', + ':man_judge_dark_skin_tone:': '👨🏿‍⚖️', + ':man_judge_tone5:': '👨🏿‍⚖️', + ':man_juggling_light_skin_tone:': '🤹🏻‍♂️', + ':man_juggling_tone1:': '🤹🏻‍♂️', + ':man_juggling_medium_light_skin_tone:': '🤹🏼‍♂️', + ':man_juggling_tone2:': '🤹🏼‍♂️', + ':man_juggling_medium_skin_tone:': '🤹🏽‍♂️', + ':man_juggling_tone3:': '🤹🏽‍♂️', + ':man_juggling_medium_dark_skin_tone:': '🤹🏾‍♂️', + ':man_juggling_tone4:': '🤹🏾‍♂️', + ':man_juggling_dark_skin_tone:': '🤹🏿‍♂️', + ':man_juggling_tone5:': '🤹🏿‍♂️', + ':man_kneeling_light_skin_tone:': '🧎🏻‍♂️', + ':man_kneeling_tone1:': '🧎🏻‍♂️', + ':man_kneeling_medium_light_skin_tone:': '🧎🏼‍♂️', + ':man_kneeling_tone2:': '🧎🏼‍♂️', + ':man_kneeling_medium_skin_tone:': '🧎🏽‍♂️', + ':man_kneeling_tone3:': '🧎🏽‍♂️', + ':man_kneeling_medium_dark_skin_tone:': '🧎🏾‍♂️', + ':man_kneeling_tone4:': '🧎🏾‍♂️', + ':man_kneeling_dark_skin_tone:': '🧎🏿‍♂️', + ':man_kneeling_tone5:': '🧎🏿‍♂️', + ':man_lifting_weights_light_skin_tone:': '🏋️🏻‍♂️', + ':man_lifting_weights_tone1:': '🏋️🏻‍♂️', + ':man_lifting_weights_medium_light_skin_tone:': '🏋️🏼‍♂️', + ':man_lifting_weights_tone2:': '🏋️🏼‍♂️', + ':man_lifting_weights_medium_skin_tone:': '🏋️🏽‍♂️', + ':man_lifting_weights_tone3:': '🏋️🏽‍♂️', + ':man_lifting_weights_medium_dark_skin_tone:': '🏋️🏾‍♂️', + ':man_lifting_weights_tone4:': '🏋️🏾‍♂️', + ':man_lifting_weights_dark_skin_tone:': '🏋️🏿‍♂️', + ':man_lifting_weights_tone5:': '🏋️🏿‍♂️', + ':man_mage_light_skin_tone:': '🧙🏻‍♂️', + ':man_mage_tone1:': '🧙🏻‍♂️', + ':man_mage_medium_light_skin_tone:': '🧙🏼‍♂️', + ':man_mage_tone2:': '🧙🏼‍♂️', + ':man_mage_medium_skin_tone:': '🧙🏽‍♂️', + ':man_mage_tone3:': '🧙🏽‍♂️', + ':man_mage_medium_dark_skin_tone:': '🧙🏾‍♂️', + ':man_mage_tone4:': '🧙🏾‍♂️', + ':man_mage_dark_skin_tone:': '🧙🏿‍♂️', + ':man_mage_tone5:': '🧙🏿‍♂️', + ':man_mountain_biking_light_skin_tone:': '🚵🏻‍♂️', + ':man_mountain_biking_tone1:': '🚵🏻‍♂️', + ':man_mountain_biking_medium_light_skin_tone:': '🚵🏼‍♂️', + ':man_mountain_biking_tone2:': '🚵🏼‍♂️', + ':man_mountain_biking_medium_skin_tone:': '🚵🏽‍♂️', + ':man_mountain_biking_tone3:': '🚵🏽‍♂️', + ':man_mountain_biking_medium_dark_skin_tone:': '🚵🏾‍♂️', + ':man_mountain_biking_tone4:': '🚵🏾‍♂️', + ':man_mountain_biking_dark_skin_tone:': '🚵🏿‍♂️', + ':man_mountain_biking_tone5:': '🚵🏿‍♂️', + ':man_pilot_light_skin_tone:': '👨🏻‍✈️', + ':man_pilot_tone1:': '👨🏻‍✈️', + ':man_pilot_medium_light_skin_tone:': '👨🏼‍✈️', + ':man_pilot_tone2:': '👨🏼‍✈️', + ':man_pilot_medium_skin_tone:': '👨🏽‍✈️', + ':man_pilot_tone3:': '👨🏽‍✈️', + ':man_pilot_medium_dark_skin_tone:': '👨🏾‍✈️', + ':man_pilot_tone4:': '👨🏾‍✈️', + ':man_pilot_dark_skin_tone:': '👨🏿‍✈️', + ':man_pilot_tone5:': '👨🏿‍✈️', + ':man_playing_handball_light_skin_tone:': '🤾🏻‍♂️', + ':man_playing_handball_tone1:': '🤾🏻‍♂️', + ':man_playing_handball_medium_light_skin_tone:': '🤾🏼‍♂️', + ':man_playing_handball_tone2:': '🤾🏼‍♂️', + ':man_playing_handball_medium_skin_tone:': '🤾🏽‍♂️', + ':man_playing_handball_tone3:': '🤾🏽‍♂️', + ':man_playing_handball_medium_dark_skin_tone:': '🤾🏾‍♂️', + ':man_playing_handball_tone4:': '🤾🏾‍♂️', + ':man_playing_handball_dark_skin_tone:': '🤾🏿‍♂️', + ':man_playing_handball_tone5:': '🤾🏿‍♂️', + ':man_playing_water_polo_light_skin_tone:': '🤽🏻‍♂️', + ':man_playing_water_polo_tone1:': '🤽🏻‍♂️', + ':man_playing_water_polo_medium_light_skin_tone:': '🤽🏼‍♂️', + ':man_playing_water_polo_tone2:': '🤽🏼‍♂️', + ':man_playing_water_polo_medium_skin_tone:': '🤽🏽‍♂️', + ':man_playing_water_polo_tone3:': '🤽🏽‍♂️', + ':man_playing_water_polo_medium_dark_skin_tone:': '🤽🏾‍♂️', + ':man_playing_water_polo_tone4:': '🤽🏾‍♂️', + ':man_playing_water_polo_dark_skin_tone:': '🤽🏿‍♂️', + ':man_playing_water_polo_tone5:': '🤽🏿‍♂️', + ':man_police_officer_light_skin_tone:': '👮🏻‍♂️', + ':man_police_officer_tone1:': '👮🏻‍♂️', + ':man_police_officer_medium_light_skin_tone:': '👮🏼‍♂️', + ':man_police_officer_tone2:': '👮🏼‍♂️', + ':man_police_officer_medium_skin_tone:': '👮🏽‍♂️', + ':man_police_officer_tone3:': '👮🏽‍♂️', + ':man_police_officer_medium_dark_skin_tone:': '👮🏾‍♂️', + ':man_police_officer_tone4:': '👮🏾‍♂️', + ':man_police_officer_dark_skin_tone:': '👮🏿‍♂️', + ':man_police_officer_tone5:': '👮🏿‍♂️', + ':man_pouting_light_skin_tone:': '🙎🏻‍♂️', + ':man_pouting_tone1:': '🙎🏻‍♂️', + ':man_pouting_medium_light_skin_tone:': '🙎🏼‍♂️', + ':man_pouting_tone2:': '🙎🏼‍♂️', + ':man_pouting_medium_skin_tone:': '🙎🏽‍♂️', + ':man_pouting_tone3:': '🙎🏽‍♂️', + ':man_pouting_medium_dark_skin_tone:': '🙎🏾‍♂️', + ':man_pouting_tone4:': '🙎🏾‍♂️', + ':man_pouting_dark_skin_tone:': '🙎🏿‍♂️', + ':man_pouting_tone5:': '🙎🏿‍♂️', + ':man_raising_hand_light_skin_tone:': '🙋🏻‍♂️', + ':man_raising_hand_tone1:': '🙋🏻‍♂️', + ':man_raising_hand_medium_light_skin_tone:': '🙋🏼‍♂️', + ':man_raising_hand_tone2:': '🙋🏼‍♂️', + ':man_raising_hand_medium_skin_tone:': '🙋🏽‍♂️', + ':man_raising_hand_tone3:': '🙋🏽‍♂️', + ':man_raising_hand_medium_dark_skin_tone:': '🙋🏾‍♂️', + ':man_raising_hand_tone4:': '🙋🏾‍♂️', + ':man_raising_hand_dark_skin_tone:': '🙋🏿‍♂️', + ':man_raising_hand_tone5:': '🙋🏿‍♂️', + ':man_rowing_boat_light_skin_tone:': '🚣🏻‍♂️', + ':man_rowing_boat_tone1:': '🚣🏻‍♂️', + ':man_rowing_boat_medium_light_skin_tone:': '🚣🏼‍♂️', + ':man_rowing_boat_tone2:': '🚣🏼‍♂️', + ':man_rowing_boat_medium_skin_tone:': '🚣🏽‍♂️', + ':man_rowing_boat_tone3:': '🚣🏽‍♂️', + ':man_rowing_boat_medium_dark_skin_tone:': '🚣🏾‍♂️', + ':man_rowing_boat_tone4:': '🚣🏾‍♂️', + ':man_rowing_boat_dark_skin_tone:': '🚣🏿‍♂️', + ':man_rowing_boat_tone5:': '🚣🏿‍♂️', + ':man_running_light_skin_tone:': '🏃🏻‍♂️', + ':man_running_tone1:': '🏃🏻‍♂️', + ':man_running_medium_light_skin_tone:': '🏃🏼‍♂️', + ':man_running_tone2:': '🏃🏼‍♂️', + ':man_running_medium_skin_tone:': '🏃🏽‍♂️', + ':man_running_tone3:': '🏃🏽‍♂️', + ':man_running_medium_dark_skin_tone:': '🏃🏾‍♂️', + ':man_running_tone4:': '🏃🏾‍♂️', + ':man_running_dark_skin_tone:': '🏃🏿‍♂️', + ':man_running_tone5:': '🏃🏿‍♂️', + ':man_shrugging_light_skin_tone:': '🤷🏻‍♂️', + ':man_shrugging_tone1:': '🤷🏻‍♂️', + ':man_shrugging_medium_light_skin_tone:': '🤷🏼‍♂️', + ':man_shrugging_tone2:': '🤷🏼‍♂️', + ':man_shrugging_medium_skin_tone:': '🤷🏽‍♂️', + ':man_shrugging_tone3:': '🤷🏽‍♂️', + ':man_shrugging_medium_dark_skin_tone:': '🤷🏾‍♂️', + ':man_shrugging_tone4:': '🤷🏾‍♂️', + ':man_shrugging_dark_skin_tone:': '🤷🏿‍♂️', + ':man_shrugging_tone5:': '🤷🏿‍♂️', + ':man_standing_light_skin_tone:': '🧍🏻‍♂️', + ':man_standing_tone1:': '🧍🏻‍♂️', + ':man_standing_medium_light_skin_tone:': '🧍🏼‍♂️', + ':man_standing_tone2:': '🧍🏼‍♂️', + ':man_standing_medium_skin_tone:': '🧍🏽‍♂️', + ':man_standing_tone3:': '🧍🏽‍♂️', + ':man_standing_medium_dark_skin_tone:': '🧍🏾‍♂️', + ':man_standing_tone4:': '🧍🏾‍♂️', + ':man_standing_dark_skin_tone:': '🧍🏿‍♂️', + ':man_standing_tone5:': '🧍🏿‍♂️', + ':man_superhero_light_skin_tone:': '🦸🏻‍♂️', + ':man_superhero_tone1:': '🦸🏻‍♂️', + ':man_superhero_medium_light_skin_tone:': '🦸🏼‍♂️', + ':man_superhero_tone2:': '🦸🏼‍♂️', + ':man_superhero_medium_skin_tone:': '🦸🏽‍♂️', + ':man_superhero_tone3:': '🦸🏽‍♂️', + ':man_superhero_medium_dark_skin_tone:': '🦸🏾‍♂️', + ':man_superhero_tone4:': '🦸🏾‍♂️', + ':man_superhero_dark_skin_tone:': '🦸🏿‍♂️', + ':man_superhero_tone5:': '🦸🏿‍♂️', + ':man_supervillain_light_skin_tone:': '🦹🏻‍♂️', + ':man_supervillain_tone1:': '🦹🏻‍♂️', + ':man_supervillain_medium_light_skin_tone:': '🦹🏼‍♂️', + ':man_supervillain_tone2:': '🦹🏼‍♂️', + ':man_supervillain_medium_skin_tone:': '🦹🏽‍♂️', + ':man_supervillain_tone3:': '🦹🏽‍♂️', + ':man_supervillain_medium_dark_skin_tone:': '🦹🏾‍♂️', + ':man_supervillain_tone4:': '🦹🏾‍♂️', + ':man_supervillain_dark_skin_tone:': '🦹🏿‍♂️', + ':man_supervillain_tone5:': '🦹🏿‍♂️', + ':man_surfing_light_skin_tone:': '🏄🏻‍♂️', + ':man_surfing_tone1:': '🏄🏻‍♂️', + ':man_surfing_medium_light_skin_tone:': '🏄🏼‍♂️', + ':man_surfing_tone2:': '🏄🏼‍♂️', + ':man_surfing_medium_skin_tone:': '🏄🏽‍♂️', + ':man_surfing_tone3:': '🏄🏽‍♂️', + ':man_surfing_medium_dark_skin_tone:': '🏄🏾‍♂️', + ':man_surfing_tone4:': '🏄🏾‍♂️', + ':man_surfing_dark_skin_tone:': '🏄🏿‍♂️', + ':man_surfing_tone5:': '🏄🏿‍♂️', + ':man_swimming_light_skin_tone:': '🏊🏻‍♂️', + ':man_swimming_tone1:': '🏊🏻‍♂️', + ':man_swimming_medium_light_skin_tone:': '🏊🏼‍♂️', + ':man_swimming_tone2:': '🏊🏼‍♂️', + ':man_swimming_medium_skin_tone:': '🏊🏽‍♂️', + ':man_swimming_tone3:': '🏊🏽‍♂️', + ':man_swimming_medium_dark_skin_tone:': '🏊🏾‍♂️', + ':man_swimming_tone4:': '🏊🏾‍♂️', + ':man_swimming_dark_skin_tone:': '🏊🏿‍♂️', + ':man_swimming_tone5:': '🏊🏿‍♂️', + ':man_tipping_hand_light_skin_tone:': '💁🏻‍♂️', + ':man_tipping_hand_tone1:': '💁🏻‍♂️', + ':man_tipping_hand_medium_light_skin_tone:': '💁🏼‍♂️', + ':man_tipping_hand_tone2:': '💁🏼‍♂️', + ':man_tipping_hand_medium_skin_tone:': '💁🏽‍♂️', + ':man_tipping_hand_tone3:': '💁🏽‍♂️', + ':man_tipping_hand_medium_dark_skin_tone:': '💁🏾‍♂️', + ':man_tipping_hand_tone4:': '💁🏾‍♂️', + ':man_tipping_hand_dark_skin_tone:': '💁🏿‍♂️', + ':man_tipping_hand_tone5:': '💁🏿‍♂️', + ':man_vampire_light_skin_tone:': '🧛🏻‍♂️', + ':man_vampire_tone1:': '🧛🏻‍♂️', + ':man_vampire_medium_light_skin_tone:': '🧛🏼‍♂️', + ':man_vampire_tone2:': '🧛🏼‍♂️', + ':man_vampire_medium_skin_tone:': '🧛🏽‍♂️', + ':man_vampire_tone3:': '🧛🏽‍♂️', + ':man_vampire_medium_dark_skin_tone:': '🧛🏾‍♂️', + ':man_vampire_tone4:': '🧛🏾‍♂️', + ':man_vampire_dark_skin_tone:': '🧛🏿‍♂️', + ':man_vampire_tone5:': '🧛🏿‍♂️', + ':man_walking_light_skin_tone:': '🚶🏻‍♂️', + ':man_walking_tone1:': '🚶🏻‍♂️', + ':man_walking_medium_light_skin_tone:': '🚶🏼‍♂️', + ':man_walking_tone2:': '🚶🏼‍♂️', + ':man_walking_medium_skin_tone:': '🚶🏽‍♂️', + ':man_walking_tone3:': '🚶🏽‍♂️', + ':man_walking_medium_dark_skin_tone:': '🚶🏾‍♂️', + ':man_walking_tone4:': '🚶🏾‍♂️', + ':man_walking_dark_skin_tone:': '🚶🏿‍♂️', + ':man_walking_tone5:': '🚶🏿‍♂️', + ':man_wearing_turban_light_skin_tone:': '👳🏻‍♂️', + ':man_wearing_turban_tone1:': '👳🏻‍♂️', + ':man_wearing_turban_medium_light_skin_tone:': '👳🏼‍♂️', + ':man_wearing_turban_tone2:': '👳🏼‍♂️', + ':man_wearing_turban_medium_skin_tone:': '👳🏽‍♂️', + ':man_wearing_turban_tone3:': '👳🏽‍♂️', + ':man_wearing_turban_medium_dark_skin_tone:': '👳🏾‍♂️', + ':man_wearing_turban_tone4:': '👳🏾‍♂️', + ':man_wearing_turban_dark_skin_tone:': '👳🏿‍♂️', + ':man_wearing_turban_tone5:': '👳🏿‍♂️', + ':mermaid_light_skin_tone:': '🧜🏻‍♀️', + ':mermaid_tone1:': '🧜🏻‍♀️', + ':mermaid_medium_light_skin_tone:': '🧜🏼‍♀️', + ':mermaid_tone2:': '🧜🏼‍♀️', + ':mermaid_medium_skin_tone:': '🧜🏽‍♀️', + ':mermaid_tone3:': '🧜🏽‍♀️', + ':mermaid_medium_dark_skin_tone:': '🧜🏾‍♀️', + ':mermaid_tone4:': '🧜🏾‍♀️', + ':mermaid_dark_skin_tone:': '🧜🏿‍♀️', + ':mermaid_tone5:': '🧜🏿‍♀️', + ':merman_light_skin_tone:': '🧜🏻‍♂️', + ':merman_tone1:': '🧜🏻‍♂️', + ':merman_medium_light_skin_tone:': '🧜🏼‍♂️', + ':merman_tone2:': '🧜🏼‍♂️', + ':merman_medium_skin_tone:': '🧜🏽‍♂️', + ':merman_tone3:': '🧜🏽‍♂️', + ':merman_medium_dark_skin_tone:': '🧜🏾‍♂️', + ':merman_tone4:': '🧜🏾‍♂️', + ':merman_dark_skin_tone:': '🧜🏿‍♂️', + ':merman_tone5:': '🧜🏿‍♂️', + ':woman_biking_light_skin_tone:': '🚴🏻‍♀️', + ':woman_biking_tone1:': '🚴🏻‍♀️', + ':woman_biking_medium_light_skin_tone:': '🚴🏼‍♀️', + ':woman_biking_tone2:': '🚴🏼‍♀️', + ':woman_biking_medium_skin_tone:': '🚴🏽‍♀️', + ':woman_biking_tone3:': '🚴🏽‍♀️', + ':woman_biking_medium_dark_skin_tone:': '🚴🏾‍♀️', + ':woman_biking_tone4:': '🚴🏾‍♀️', + ':woman_biking_dark_skin_tone:': '🚴🏿‍♀️', + ':woman_biking_tone5:': '🚴🏿‍♀️', + ':woman_bowing_light_skin_tone:': '🙇🏻‍♀️', + ':woman_bowing_tone1:': '🙇🏻‍♀️', + ':woman_bowing_medium_light_skin_tone:': '🙇🏼‍♀️', + ':woman_bowing_tone2:': '🙇🏼‍♀️', + ':woman_bowing_medium_skin_tone:': '🙇🏽‍♀️', + ':woman_bowing_tone3:': '🙇🏽‍♀️', + ':woman_bowing_medium_dark_skin_tone:': '🙇🏾‍♀️', + ':woman_bowing_tone4:': '🙇🏾‍♀️', + ':woman_bowing_dark_skin_tone:': '🙇🏿‍♀️', + ':woman_bowing_tone5:': '🙇🏿‍♀️', + ':woman_cartwheeling_light_skin_tone:': '🤸🏻‍♀️', + ':woman_cartwheeling_tone1:': '🤸🏻‍♀️', + ':woman_cartwheeling_medium_light_skin_tone:': '🤸🏼‍♀️', + ':woman_cartwheeling_tone2:': '🤸🏼‍♀️', + ':woman_cartwheeling_medium_skin_tone:': '🤸🏽‍♀️', + ':woman_cartwheeling_tone3:': '🤸🏽‍♀️', + ':woman_cartwheeling_medium_dark_skin_tone:': '🤸🏾‍♀️', + ':woman_cartwheeling_tone4:': '🤸🏾‍♀️', + ':woman_cartwheeling_dark_skin_tone:': '🤸🏿‍♀️', + ':woman_cartwheeling_tone5:': '🤸🏿‍♀️', + ':woman_climbing_light_skin_tone:': '🧗🏻‍♀️', + ':woman_climbing_tone1:': '🧗🏻‍♀️', + ':woman_climbing_medium_light_skin_tone:': '🧗🏼‍♀️', + ':woman_climbing_tone2:': '🧗🏼‍♀️', + ':woman_climbing_medium_skin_tone:': '🧗🏽‍♀️', + ':woman_climbing_tone3:': '🧗🏽‍♀️', + ':woman_climbing_medium_dark_skin_tone:': '🧗🏾‍♀️', + ':woman_climbing_tone4:': '🧗🏾‍♀️', + ':woman_climbing_dark_skin_tone:': '🧗🏿‍♀️', + ':woman_climbing_tone5:': '🧗🏿‍♀️', + ':woman_construction_worker_light_skin_tone:': '👷🏻‍♀️', + ':woman_construction_worker_tone1:': '👷🏻‍♀️', + ':woman_construction_worker_medium_light_skin_tone:': '👷🏼‍♀️', + ':woman_construction_worker_tone2:': '👷🏼‍♀️', + ':woman_construction_worker_medium_skin_tone:': '👷🏽‍♀️', + ':woman_construction_worker_tone3:': '👷🏽‍♀️', + ':woman_construction_worker_medium_dark_skin_tone:': '👷🏾‍♀️', + ':woman_construction_worker_tone4:': '👷🏾‍♀️', + ':woman_construction_worker_dark_skin_tone:': '👷🏿‍♀️', + ':woman_construction_worker_tone5:': '👷🏿‍♀️', + ':woman_detective_light_skin_tone:': '🕵️🏻‍♀️', + ':woman_detective_tone1:': '🕵️🏻‍♀️', + ':woman_detective_medium_light_skin_tone:': '🕵️🏼‍♀️', + ':woman_detective_tone2:': '🕵️🏼‍♀️', + ':woman_detective_medium_skin_tone:': '🕵️🏽‍♀️', + ':woman_detective_tone3:': '🕵️🏽‍♀️', + ':woman_detective_medium_dark_skin_tone:': '🕵️🏾‍♀️', + ':woman_detective_tone4:': '🕵️🏾‍♀️', + ':woman_detective_dark_skin_tone:': '🕵️🏿‍♀️', + ':woman_detective_tone5:': '🕵️🏿‍♀️', + ':woman_elf_light_skin_tone:': '🧝🏻‍♀️', + ':woman_elf_tone1:': '🧝🏻‍♀️', + ':woman_elf_medium_light_skin_tone:': '🧝🏼‍♀️', + ':woman_elf_tone2:': '🧝🏼‍♀️', + ':woman_elf_medium_skin_tone:': '🧝🏽‍♀️', + ':woman_elf_tone3:': '🧝🏽‍♀️', + ':woman_elf_medium_dark_skin_tone:': '🧝🏾‍♀️', + ':woman_elf_tone4:': '🧝🏾‍♀️', + ':woman_elf_dark_skin_tone:': '🧝🏿‍♀️', + ':woman_elf_tone5:': '🧝🏿‍♀️', + ':woman_facepalming_light_skin_tone:': '🤦🏻‍♀️', + ':woman_facepalming_tone1:': '🤦🏻‍♀️', + ':woman_facepalming_medium_light_skin_tone:': '🤦🏼‍♀️', + ':woman_facepalming_tone2:': '🤦🏼‍♀️', + ':woman_facepalming_medium_skin_tone:': '🤦🏽‍♀️', + ':woman_facepalming_tone3:': '🤦🏽‍♀️', + ':woman_facepalming_medium_dark_skin_tone:': '🤦🏾‍♀️', + ':woman_facepalming_tone4:': '🤦🏾‍♀️', + ':woman_facepalming_dark_skin_tone:': '🤦🏿‍♀️', + ':woman_facepalming_tone5:': '🤦🏿‍♀️', + ':woman_fairy_light_skin_tone:': '🧚🏻‍♀️', + ':woman_fairy_tone1:': '🧚🏻‍♀️', + ':woman_fairy_medium_light_skin_tone:': '🧚🏼‍♀️', + ':woman_fairy_tone2:': '🧚🏼‍♀️', + ':woman_fairy_medium_skin_tone:': '🧚🏽‍♀️', + ':woman_fairy_tone3:': '🧚🏽‍♀️', + ':woman_fairy_medium_dark_skin_tone:': '🧚🏾‍♀️', + ':woman_fairy_tone4:': '🧚🏾‍♀️', + ':woman_fairy_dark_skin_tone:': '🧚🏿‍♀️', + ':woman_fairy_tone5:': '🧚🏿‍♀️', + ':woman_frowning_light_skin_tone:': '🙍🏻‍♀️', + ':woman_frowning_tone1:': '🙍🏻‍♀️', + ':woman_frowning_medium_light_skin_tone:': '🙍🏼‍♀️', + ':woman_frowning_tone2:': '🙍🏼‍♀️', + ':woman_frowning_medium_skin_tone:': '🙍🏽‍♀️', + ':woman_frowning_tone3:': '🙍🏽‍♀️', + ':woman_frowning_medium_dark_skin_tone:': '🙍🏾‍♀️', + ':woman_frowning_tone4:': '🙍🏾‍♀️', + ':woman_frowning_dark_skin_tone:': '🙍🏿‍♀️', + ':woman_frowning_tone5:': '🙍🏿‍♀️', + ':woman_gesturing_no_light_skin_tone:': '🙅🏻‍♀️', + ':woman_gesturing_no_tone1:': '🙅🏻‍♀️', + ':woman_gesturing_no_medium_light_skin_tone:': '🙅🏼‍♀️', + ':woman_gesturing_no_tone2:': '🙅🏼‍♀️', + ':woman_gesturing_no_medium_skin_tone:': '🙅🏽‍♀️', + ':woman_gesturing_no_tone3:': '🙅🏽‍♀️', + ':woman_gesturing_no_medium_dark_skin_tone:': '🙅🏾‍♀️', + ':woman_gesturing_no_tone4:': '🙅🏾‍♀️', + ':woman_gesturing_no_dark_skin_tone:': '🙅🏿‍♀️', + ':woman_gesturing_no_tone5:': '🙅🏿‍♀️', + ':woman_gesturing_ok_light_skin_tone:': '🙆🏻‍♀️', + ':woman_gesturing_ok_tone1:': '🙆🏻‍♀️', + ':woman_gesturing_ok_medium_light_skin_tone:': '🙆🏼‍♀️', + ':woman_gesturing_ok_tone2:': '🙆🏼‍♀️', + ':woman_gesturing_ok_medium_skin_tone:': '🙆🏽‍♀️', + ':woman_gesturing_ok_tone3:': '🙆🏽‍♀️', + ':woman_gesturing_ok_medium_dark_skin_tone:': '🙆🏾‍♀️', + ':woman_gesturing_ok_tone4:': '🙆🏾‍♀️', + ':woman_gesturing_ok_dark_skin_tone:': '🙆🏿‍♀️', + ':woman_gesturing_ok_tone5:': '🙆🏿‍♀️', + ':woman_getting_face_massage_light_skin_tone:': '💆🏻‍♀️', + ':woman_getting_face_massage_tone1:': '💆🏻‍♀️', + ':woman_getting_face_massage_medium_light_skin_tone:': '💆🏼‍♀️', + ':woman_getting_face_massage_tone2:': '💆🏼‍♀️', + ':woman_getting_face_massage_medium_skin_tone:': '💆🏽‍♀️', + ':woman_getting_face_massage_tone3:': '💆🏽‍♀️', + ':woman_getting_face_massage_medium_dark_skin_tone:': '💆🏾‍♀️', + ':woman_getting_face_massage_tone4:': '💆🏾‍♀️', + ':woman_getting_face_massage_dark_skin_tone:': '💆🏿‍♀️', + ':woman_getting_face_massage_tone5:': '💆🏿‍♀️', + ':woman_getting_haircut_light_skin_tone:': '💇🏻‍♀️', + ':woman_getting_haircut_tone1:': '💇🏻‍♀️', + ':woman_getting_haircut_medium_light_skin_tone:': '💇🏼‍♀️', + ':woman_getting_haircut_tone2:': '💇🏼‍♀️', + ':woman_getting_haircut_medium_skin_tone:': '💇🏽‍♀️', + ':woman_getting_haircut_tone3:': '💇🏽‍♀️', + ':woman_getting_haircut_medium_dark_skin_tone:': '💇🏾‍♀️', + ':woman_getting_haircut_tone4:': '💇🏾‍♀️', + ':woman_getting_haircut_dark_skin_tone:': '💇🏿‍♀️', + ':woman_getting_haircut_tone5:': '💇🏿‍♀️', + ':woman_golfing_light_skin_tone:': '🏌️🏻‍♀️', + ':woman_golfing_tone1:': '🏌️🏻‍♀️', + ':woman_golfing_medium_light_skin_tone:': '🏌️🏼‍♀️', + ':woman_golfing_tone2:': '🏌️🏼‍♀️', + ':woman_golfing_medium_skin_tone:': '🏌️🏽‍♀️', + ':woman_golfing_tone3:': '🏌️🏽‍♀️', + ':woman_golfing_medium_dark_skin_tone:': '🏌️🏾‍♀️', + ':woman_golfing_tone4:': '🏌️🏾‍♀️', + ':woman_golfing_dark_skin_tone:': '🏌️🏿‍♀️', + ':woman_golfing_tone5:': '🏌️🏿‍♀️', + ':woman_guard_light_skin_tone:': '💂🏻‍♀️', + ':woman_guard_tone1:': '💂🏻‍♀️', + ':woman_guard_medium_light_skin_tone:': '💂🏼‍♀️', + ':woman_guard_tone2:': '💂🏼‍♀️', + ':woman_guard_medium_skin_tone:': '💂🏽‍♀️', + ':woman_guard_tone3:': '💂🏽‍♀️', + ':woman_guard_medium_dark_skin_tone:': '💂🏾‍♀️', + ':woman_guard_tone4:': '💂🏾‍♀️', + ':woman_guard_dark_skin_tone:': '💂🏿‍♀️', + ':woman_guard_tone5:': '💂🏿‍♀️', + ':woman_health_worker_light_skin_tone:': '👩🏻‍⚕️', + ':woman_health_worker_tone1:': '👩🏻‍⚕️', + ':woman_health_worker_medium_light_skin_tone:': '👩🏼‍⚕️', + ':woman_health_worker_tone2:': '👩🏼‍⚕️', + ':woman_health_worker_medium_skin_tone:': '👩🏽‍⚕️', + ':woman_health_worker_tone3:': '👩🏽‍⚕️', + ':woman_health_worker_medium_dark_skin_tone:': '👩🏾‍⚕️', + ':woman_health_worker_tone4:': '👩🏾‍⚕️', + ':woman_health_worker_dark_skin_tone:': '👩🏿‍⚕️', + ':woman_health_worker_tone5:': '👩🏿‍⚕️', + ':woman_in_lotus_position_light_skin_tone:': '🧘🏻‍♀️', + ':woman_in_lotus_position_tone1:': '🧘🏻‍♀️', + ':woman_in_lotus_position_medium_light_skin_tone:': '🧘🏼‍♀️', + ':woman_in_lotus_position_tone2:': '🧘🏼‍♀️', + ':woman_in_lotus_position_medium_skin_tone:': '🧘🏽‍♀️', + ':woman_in_lotus_position_tone3:': '🧘🏽‍♀️', + ':woman_in_lotus_position_medium_dark_skin_tone:': '🧘🏾‍♀️', + ':woman_in_lotus_position_tone4:': '🧘🏾‍♀️', + ':woman_in_lotus_position_dark_skin_tone:': '🧘🏿‍♀️', + ':woman_in_lotus_position_tone5:': '🧘🏿‍♀️', + ':woman_in_steamy_room_light_skin_tone:': '🧖🏻‍♀️', + ':woman_in_steamy_room_tone1:': '🧖🏻‍♀️', + ':woman_in_steamy_room_medium_light_skin_tone:': '🧖🏼‍♀️', + ':woman_in_steamy_room_tone2:': '🧖🏼‍♀️', + ':woman_in_steamy_room_medium_skin_tone:': '🧖🏽‍♀️', + ':woman_in_steamy_room_tone3:': '🧖🏽‍♀️', + ':woman_in_steamy_room_medium_dark_skin_tone:': '🧖🏾‍♀️', + ':woman_in_steamy_room_tone4:': '🧖🏾‍♀️', + ':woman_in_steamy_room_dark_skin_tone:': '🧖🏿‍♀️', + ':woman_in_steamy_room_tone5:': '🧖🏿‍♀️', + ':woman_judge_light_skin_tone:': '👩🏻‍⚖️', + ':woman_judge_tone1:': '👩🏻‍⚖️', + ':woman_judge_medium_light_skin_tone:': '👩🏼‍⚖️', + ':woman_judge_tone2:': '👩🏼‍⚖️', + ':woman_judge_medium_skin_tone:': '👩🏽‍⚖️', + ':woman_judge_tone3:': '👩🏽‍⚖️', + ':woman_judge_medium_dark_skin_tone:': '👩🏾‍⚖️', + ':woman_judge_tone4:': '👩🏾‍⚖️', + ':woman_judge_dark_skin_tone:': '👩🏿‍⚖️', + ':woman_judge_tone5:': '👩🏿‍⚖️', + ':woman_juggling_light_skin_tone:': '🤹🏻‍♀️', + ':woman_juggling_tone1:': '🤹🏻‍♀️', + ':woman_juggling_medium_light_skin_tone:': '🤹🏼‍♀️', + ':woman_juggling_tone2:': '🤹🏼‍♀️', + ':woman_juggling_medium_skin_tone:': '🤹🏽‍♀️', + ':woman_juggling_tone3:': '🤹🏽‍♀️', + ':woman_juggling_medium_dark_skin_tone:': '🤹🏾‍♀️', + ':woman_juggling_tone4:': '🤹🏾‍♀️', + ':woman_juggling_dark_skin_tone:': '🤹🏿‍♀️', + ':woman_juggling_tone5:': '🤹🏿‍♀️', + ':woman_kneeling_light_skin_tone:': '🧎🏻‍♀️', + ':woman_kneeling_tone1:': '🧎🏻‍♀️', + ':woman_kneeling_medium_light_skin_tone:': '🧎🏼‍♀️', + ':woman_kneeling_tone2:': '🧎🏼‍♀️', + ':woman_kneeling_medium_skin_tone:': '🧎🏽‍♀️', + ':woman_kneeling_tone3:': '🧎🏽‍♀️', + ':woman_kneeling_medium_dark_skin_tone:': '🧎🏾‍♀️', + ':woman_kneeling_tone4:': '🧎🏾‍♀️', + ':woman_kneeling_dark_skin_tone:': '🧎🏿‍♀️', + ':woman_kneeling_tone5:': '🧎🏿‍♀️', + ':woman_lifting_weights_light_skin_tone:': '🏋️🏻‍♀️', + ':woman_lifting_weights_tone1:': '🏋️🏻‍♀️', + ':woman_lifting_weights_medium_light_skin_tone:': '🏋️🏼‍♀️', + ':woman_lifting_weights_tone2:': '🏋️🏼‍♀️', + ':woman_lifting_weights_medium_skin_tone:': '🏋️🏽‍♀️', + ':woman_lifting_weights_tone3:': '🏋️🏽‍♀️', + ':woman_lifting_weights_medium_dark_skin_tone:': '🏋️🏾‍♀️', + ':woman_lifting_weights_tone4:': '🏋️🏾‍♀️', + ':woman_lifting_weights_dark_skin_tone:': '🏋️🏿‍♀️', + ':woman_lifting_weights_tone5:': '🏋️🏿‍♀️', + ':woman_mage_light_skin_tone:': '🧙🏻‍♀️', + ':woman_mage_tone1:': '🧙🏻‍♀️', + ':woman_mage_medium_light_skin_tone:': '🧙🏼‍♀️', + ':woman_mage_tone2:': '🧙🏼‍♀️', + ':woman_mage_medium_skin_tone:': '🧙🏽‍♀️', + ':woman_mage_tone3:': '🧙🏽‍♀️', + ':woman_mage_medium_dark_skin_tone:': '🧙🏾‍♀️', + ':woman_mage_tone4:': '🧙🏾‍♀️', + ':woman_mage_dark_skin_tone:': '🧙🏿‍♀️', + ':woman_mage_tone5:': '🧙🏿‍♀️', + ':woman_mountain_biking_light_skin_tone:': '🚵🏻‍♀️', + ':woman_mountain_biking_tone1:': '🚵🏻‍♀️', + ':woman_mountain_biking_medium_light_skin_tone:': '🚵🏼‍♀️', + ':woman_mountain_biking_tone2:': '🚵🏼‍♀️', + ':woman_mountain_biking_medium_skin_tone:': '🚵🏽‍♀️', + ':woman_mountain_biking_tone3:': '🚵🏽‍♀️', + ':woman_mountain_biking_medium_dark_skin_tone:': '🚵🏾‍♀️', + ':woman_mountain_biking_tone4:': '🚵🏾‍♀️', + ':woman_mountain_biking_dark_skin_tone:': '🚵🏿‍♀️', + ':woman_mountain_biking_tone5:': '🚵🏿‍♀️', + ':woman_pilot_light_skin_tone:': '👩🏻‍✈️', + ':woman_pilot_tone1:': '👩🏻‍✈️', + ':woman_pilot_medium_light_skin_tone:': '👩🏼‍✈️', + ':woman_pilot_tone2:': '👩🏼‍✈️', + ':woman_pilot_medium_skin_tone:': '👩🏽‍✈️', + ':woman_pilot_tone3:': '👩🏽‍✈️', + ':woman_pilot_medium_dark_skin_tone:': '👩🏾‍✈️', + ':woman_pilot_tone4:': '👩🏾‍✈️', + ':woman_pilot_dark_skin_tone:': '👩🏿‍✈️', + ':woman_pilot_tone5:': '👩🏿‍✈️', + ':woman_playing_handball_light_skin_tone:': '🤾🏻‍♀️', + ':woman_playing_handball_tone1:': '🤾🏻‍♀️', + ':woman_playing_handball_medium_light_skin_tone:': '🤾🏼‍♀️', + ':woman_playing_handball_tone2:': '🤾🏼‍♀️', + ':woman_playing_handball_medium_skin_tone:': '🤾🏽‍♀️', + ':woman_playing_handball_tone3:': '🤾🏽‍♀️', + ':woman_playing_handball_medium_dark_skin_tone:': '🤾🏾‍♀️', + ':woman_playing_handball_tone4:': '🤾🏾‍♀️', + ':woman_playing_handball_dark_skin_tone:': '🤾🏿‍♀️', + ':woman_playing_handball_tone5:': '🤾🏿‍♀️', + ':woman_playing_water_polo_light_skin_tone:': '🤽🏻‍♀️', + ':woman_playing_water_polo_tone1:': '🤽🏻‍♀️', + ':woman_playing_water_polo_medium_light_skin_tone:': '🤽🏼‍♀️', + ':woman_playing_water_polo_tone2:': '🤽🏼‍♀️', + ':woman_playing_water_polo_medium_skin_tone:': '🤽🏽‍♀️', + ':woman_playing_water_polo_tone3:': '🤽🏽‍♀️', + ':woman_playing_water_polo_medium_dark_skin_tone:': '🤽🏾‍♀️', + ':woman_playing_water_polo_tone4:': '🤽🏾‍♀️', + ':woman_playing_water_polo_dark_skin_tone:': '🤽🏿‍♀️', + ':woman_playing_water_polo_tone5:': '🤽🏿‍♀️', + ':woman_police_officer_light_skin_tone:': '👮🏻‍♀️', + ':woman_police_officer_tone1:': '👮🏻‍♀️', + ':woman_police_officer_medium_light_skin_tone:': '👮🏼‍♀️', + ':woman_police_officer_tone2:': '👮🏼‍♀️', + ':woman_police_officer_medium_skin_tone:': '👮🏽‍♀️', + ':woman_police_officer_tone3:': '👮🏽‍♀️', + ':woman_police_officer_medium_dark_skin_tone:': '👮🏾‍♀️', + ':woman_police_officer_tone4:': '👮🏾‍♀️', + ':woman_police_officer_dark_skin_tone:': '👮🏿‍♀️', + ':woman_police_officer_tone5:': '👮🏿‍♀️', + ':woman_pouting_light_skin_tone:': '🙎🏻‍♀️', + ':woman_pouting_tone1:': '🙎🏻‍♀️', + ':woman_pouting_medium_light_skin_tone:': '🙎🏼‍♀️', + ':woman_pouting_tone2:': '🙎🏼‍♀️', + ':woman_pouting_medium_skin_tone:': '🙎🏽‍♀️', + ':woman_pouting_tone3:': '🙎🏽‍♀️', + ':woman_pouting_medium_dark_skin_tone:': '🙎🏾‍♀️', + ':woman_pouting_tone4:': '🙎🏾‍♀️', + ':woman_pouting_dark_skin_tone:': '🙎🏿‍♀️', + ':woman_pouting_tone5:': '🙎🏿‍♀️', + ':woman_raising_hand_light_skin_tone:': '🙋🏻‍♀️', + ':woman_raising_hand_tone1:': '🙋🏻‍♀️', + ':woman_raising_hand_medium_light_skin_tone:': '🙋🏼‍♀️', + ':woman_raising_hand_tone2:': '🙋🏼‍♀️', + ':woman_raising_hand_medium_skin_tone:': '🙋🏽‍♀️', + ':woman_raising_hand_tone3:': '🙋🏽‍♀️', + ':woman_raising_hand_medium_dark_skin_tone:': '🙋🏾‍♀️', + ':woman_raising_hand_tone4:': '🙋🏾‍♀️', + ':woman_raising_hand_dark_skin_tone:': '🙋🏿‍♀️', + ':woman_raising_hand_tone5:': '🙋🏿‍♀️', + ':woman_rowing_boat_light_skin_tone:': '🚣🏻‍♀️', + ':woman_rowing_boat_tone1:': '🚣🏻‍♀️', + ':woman_rowing_boat_medium_light_skin_tone:': '🚣🏼‍♀️', + ':woman_rowing_boat_tone2:': '🚣🏼‍♀️', + ':woman_rowing_boat_medium_skin_tone:': '🚣🏽‍♀️', + ':woman_rowing_boat_tone3:': '🚣🏽‍♀️', + ':woman_rowing_boat_medium_dark_skin_tone:': '🚣🏾‍♀️', + ':woman_rowing_boat_tone4:': '🚣🏾‍♀️', + ':woman_rowing_boat_dark_skin_tone:': '🚣🏿‍♀️', + ':woman_rowing_boat_tone5:': '🚣🏿‍♀️', + ':woman_running_light_skin_tone:': '🏃🏻‍♀️', + ':woman_running_tone1:': '🏃🏻‍♀️', + ':woman_running_medium_light_skin_tone:': '🏃🏼‍♀️', + ':woman_running_tone2:': '🏃🏼‍♀️', + ':woman_running_medium_skin_tone:': '🏃🏽‍♀️', + ':woman_running_tone3:': '🏃🏽‍♀️', + ':woman_running_medium_dark_skin_tone:': '🏃🏾‍♀️', + ':woman_running_tone4:': '🏃🏾‍♀️', + ':woman_running_dark_skin_tone:': '🏃🏿‍♀️', + ':woman_running_tone5:': '🏃🏿‍♀️', + ':woman_shrugging_light_skin_tone:': '🤷🏻‍♀️', + ':woman_shrugging_tone1:': '🤷🏻‍♀️', + ':woman_shrugging_medium_light_skin_tone:': '🤷🏼‍♀️', + ':woman_shrugging_tone2:': '🤷🏼‍♀️', + ':woman_shrugging_medium_skin_tone:': '🤷🏽‍♀️', + ':woman_shrugging_tone3:': '🤷🏽‍♀️', + ':woman_shrugging_medium_dark_skin_tone:': '🤷🏾‍♀️', + ':woman_shrugging_tone4:': '🤷🏾‍♀️', + ':woman_shrugging_dark_skin_tone:': '🤷🏿‍♀️', + ':woman_shrugging_tone5:': '🤷🏿‍♀️', + ':woman_standing_light_skin_tone:': '🧍🏻‍♀️', + ':woman_standing_tone1:': '🧍🏻‍♀️', + ':woman_standing_medium_light_skin_tone:': '🧍🏼‍♀️', + ':woman_standing_tone2:': '🧍🏼‍♀️', + ':woman_standing_medium_skin_tone:': '🧍🏽‍♀️', + ':woman_standing_tone3:': '🧍🏽‍♀️', + ':woman_standing_medium_dark_skin_tone:': '🧍🏾‍♀️', + ':woman_standing_tone4:': '🧍🏾‍♀️', + ':woman_standing_dark_skin_tone:': '🧍🏿‍♀️', + ':woman_standing_tone5:': '🧍🏿‍♀️', + ':woman_superhero_light_skin_tone:': '🦸🏻‍♀️', + ':woman_superhero_tone1:': '🦸🏻‍♀️', + ':woman_superhero_medium_light_skin_tone:': '🦸🏼‍♀️', + ':woman_superhero_tone2:': '🦸🏼‍♀️', + ':woman_superhero_medium_skin_tone:': '🦸🏽‍♀️', + ':woman_superhero_tone3:': '🦸🏽‍♀️', + ':woman_superhero_medium_dark_skin_tone:': '🦸🏾‍♀️', + ':woman_superhero_tone4:': '🦸🏾‍♀️', + ':woman_superhero_dark_skin_tone:': '🦸🏿‍♀️', + ':woman_superhero_tone5:': '🦸🏿‍♀️', + ':woman_supervillain_light_skin_tone:': '🦹🏻‍♀️', + ':woman_supervillain_tone1:': '🦹🏻‍♀️', + ':woman_supervillain_medium_light_skin_tone:': '🦹🏼‍♀️', + ':woman_supervillain_tone2:': '🦹🏼‍♀️', + ':woman_supervillain_medium_skin_tone:': '🦹🏽‍♀️', + ':woman_supervillain_tone3:': '🦹🏽‍♀️', + ':woman_supervillain_medium_dark_skin_tone:': '🦹🏾‍♀️', + ':woman_supervillain_tone4:': '🦹🏾‍♀️', + ':woman_supervillain_dark_skin_tone:': '🦹🏿‍♀️', + ':woman_supervillain_tone5:': '🦹🏿‍♀️', + ':woman_surfing_light_skin_tone:': '🏄🏻‍♀️', + ':woman_surfing_tone1:': '🏄🏻‍♀️', + ':woman_surfing_medium_light_skin_tone:': '🏄🏼‍♀️', + ':woman_surfing_tone2:': '🏄🏼‍♀️', + ':woman_surfing_medium_skin_tone:': '🏄🏽‍♀️', + ':woman_surfing_tone3:': '🏄🏽‍♀️', + ':woman_surfing_medium_dark_skin_tone:': '🏄🏾‍♀️', + ':woman_surfing_tone4:': '🏄🏾‍♀️', + ':woman_surfing_dark_skin_tone:': '🏄🏿‍♀️', + ':woman_surfing_tone5:': '🏄🏿‍♀️', + ':woman_swimming_light_skin_tone:': '🏊🏻‍♀️', + ':woman_swimming_tone1:': '🏊🏻‍♀️', + ':woman_swimming_medium_light_skin_tone:': '🏊🏼‍♀️', + ':woman_swimming_tone2:': '🏊🏼‍♀️', + ':woman_swimming_medium_skin_tone:': '🏊🏽‍♀️', + ':woman_swimming_tone3:': '🏊🏽‍♀️', + ':woman_swimming_medium_dark_skin_tone:': '🏊🏾‍♀️', + ':woman_swimming_tone4:': '🏊🏾‍♀️', + ':woman_swimming_dark_skin_tone:': '🏊🏿‍♀️', + ':woman_swimming_tone5:': '🏊🏿‍♀️', + ':woman_tipping_hand_light_skin_tone:': '💁🏻‍♀️', + ':woman_tipping_hand_tone1:': '💁🏻‍♀️', + ':woman_tipping_hand_medium_light_skin_tone:': '💁🏼‍♀️', + ':woman_tipping_hand_tone2:': '💁🏼‍♀️', + ':woman_tipping_hand_medium_skin_tone:': '💁🏽‍♀️', + ':woman_tipping_hand_tone3:': '💁🏽‍♀️', + ':woman_tipping_hand_medium_dark_skin_tone:': '💁🏾‍♀️', + ':woman_tipping_hand_tone4:': '💁🏾‍♀️', + ':woman_tipping_hand_dark_skin_tone:': '💁🏿‍♀️', + ':woman_tipping_hand_tone5:': '💁🏿‍♀️', + ':woman_vampire_light_skin_tone:': '🧛🏻‍♀️', + ':woman_vampire_tone1:': '🧛🏻‍♀️', + ':woman_vampire_medium_light_skin_tone:': '🧛🏼‍♀️', + ':woman_vampire_tone2:': '🧛🏼‍♀️', + ':woman_vampire_medium_skin_tone:': '🧛🏽‍♀️', + ':woman_vampire_tone3:': '🧛🏽‍♀️', + ':woman_vampire_medium_dark_skin_tone:': '🧛🏾‍♀️', + ':woman_vampire_tone4:': '🧛🏾‍♀️', + ':woman_vampire_dark_skin_tone:': '🧛🏿‍♀️', + ':woman_vampire_tone5:': '🧛🏿‍♀️', + ':woman_walking_light_skin_tone:': '🚶🏻‍♀️', + ':woman_walking_tone1:': '🚶🏻‍♀️', + ':woman_walking_medium_light_skin_tone:': '🚶🏼‍♀️', + ':woman_walking_tone2:': '🚶🏼‍♀️', + ':woman_walking_medium_skin_tone:': '🚶🏽‍♀️', + ':woman_walking_tone3:': '🚶🏽‍♀️', + ':woman_walking_medium_dark_skin_tone:': '🚶🏾‍♀️', + ':woman_walking_tone4:': '🚶🏾‍♀️', + ':woman_walking_dark_skin_tone:': '🚶🏿‍♀️', + ':woman_walking_tone5:': '🚶🏿‍♀️', + ':woman_wearing_turban_light_skin_tone:': '👳🏻‍♀️', + ':woman_wearing_turban_tone1:': '👳🏻‍♀️', + ':woman_wearing_turban_medium_light_skin_tone:': '👳🏼‍♀️', + ':woman_wearing_turban_tone2:': '👳🏼‍♀️', + ':woman_wearing_turban_medium_skin_tone:': '👳🏽‍♀️', + ':woman_wearing_turban_tone3:': '👳🏽‍♀️', + ':woman_wearing_turban_medium_dark_skin_tone:': '👳🏾‍♀️', + ':woman_wearing_turban_tone4:': '👳🏾‍♀️', + ':woman_wearing_turban_dark_skin_tone:': '👳🏿‍♀️', + ':woman_wearing_turban_tone5:': '👳🏿‍♀️', + ':man_bouncing_ball_light_skin_tone:': '⛹️🏻‍♂️', + ':man_bouncing_ball_tone1:': '⛹️🏻‍♂️', + ':man_bouncing_ball_medium_light_skin_tone:': '⛹️🏼‍♂️', + ':man_bouncing_ball_tone2:': '⛹️🏼‍♂️', + ':man_bouncing_ball_medium_skin_tone:': '⛹️🏽‍♂️', + ':man_bouncing_ball_tone3:': '⛹️🏽‍♂️', + ':man_bouncing_ball_medium_dark_skin_tone:': '⛹️🏾‍♂️', + ':man_bouncing_ball_tone4:': '⛹️🏾‍♂️', + ':man_bouncing_ball_dark_skin_tone:': '⛹️🏿‍♂️', + ':man_bouncing_ball_tone5:': '⛹️🏿‍♂️', + ':woman_bouncing_ball_light_skin_tone:': '⛹️🏻‍♀️', + ':woman_bouncing_ball_tone1:': '⛹️🏻‍♀️', + ':woman_bouncing_ball_medium_light_skin_tone:': '⛹️🏼‍♀️', + ':woman_bouncing_ball_tone2:': '⛹️🏼‍♀️', + ':woman_bouncing_ball_medium_skin_tone:': '⛹️🏽‍♀️', + ':woman_bouncing_ball_tone3:': '⛹️🏽‍♀️', + ':woman_bouncing_ball_medium_dark_skin_tone:': '⛹️🏾‍♀️', + ':woman_bouncing_ball_tone4:': '⛹️🏾‍♀️', + ':woman_bouncing_ball_dark_skin_tone:': '⛹️🏿‍♀️', + ':woman_bouncing_ball_tone5:': '⛹️🏿‍♀️', + ':adult_light_skin_tone:': '🧑🏻', + ':adult_tone1:': '🧑🏻', + ':adult_medium_light_skin_tone:': '🧑🏼', + ':adult_tone2:': '🧑🏼', + ':adult_medium_skin_tone:': '🧑🏽', + ':adult_tone3:': '🧑🏽', + ':adult_medium_dark_skin_tone:': '🧑🏾', + ':adult_tone4:': '🧑🏾', + ':adult_dark_skin_tone:': '🧑🏿', + ':adult_tone5:': '🧑🏿', + ':angel_tone1:': '👼🏻', + ':angel_tone2:': '👼🏼', + ':angel_tone3:': '👼🏽', + ':angel_tone4:': '👼🏾', + ':angel_tone5:': '👼🏿', + ':baby_tone1:': '👶🏻', + ':baby_tone2:': '👶🏼', + ':baby_tone3:': '👶🏽', + ':baby_tone4:': '👶🏾', + ':baby_tone5:': '👶🏿', + ':bath_tone1:': '🛀🏻', + ':bath_tone2:': '🛀🏼', + ':bath_tone3:': '🛀🏽', + ':bath_tone4:': '🛀🏾', + ':bath_tone5:': '🛀🏿', + ':bearded_person_light_skin_tone:': '🧔🏻', + ':bearded_person_tone1:': '🧔🏻', + ':bearded_person_medium_light_skin_tone:': '🧔🏼', + ':bearded_person_tone2:': '🧔🏼', + ':bearded_person_medium_skin_tone:': '🧔🏽', + ':bearded_person_tone3:': '🧔🏽', + ':bearded_person_medium_dark_skin_tone:': '🧔🏾', + ':bearded_person_tone4:': '🧔🏾', + ':bearded_person_dark_skin_tone:': '🧔🏿', + ':bearded_person_tone5:': '🧔🏿', + ':person_with_blond_hair_tone1:': '👱🏻', + ':blond_haired_person_tone1:': '👱🏻', + ':person_with_blond_hair_tone2:': '👱🏼', + ':blond_haired_person_tone2:': '👱🏼', + ':person_with_blond_hair_tone3:': '👱🏽', + ':blond_haired_person_tone3:': '👱🏽', + ':person_with_blond_hair_tone4:': '👱🏾', + ':blond_haired_person_tone4:': '👱🏾', + ':person_with_blond_hair_tone5:': '👱🏿', + ':blond_haired_person_tone5:': '👱🏿', + ':boy_tone1:': '👦🏻', + ':boy_tone2:': '👦🏼', + ':boy_tone3:': '👦🏽', + ':boy_tone4:': '👦🏾', + ':boy_tone5:': '👦🏿', + ':breast_feeding_light_skin_tone:': '🤱🏻', + ':breast_feeding_tone1:': '🤱🏻', + ':breast_feeding_medium_light_skin_tone:': '🤱🏼', + ':breast_feeding_tone2:': '🤱🏼', + ':breast_feeding_medium_skin_tone:': '🤱🏽', + ':breast_feeding_tone3:': '🤱🏽', + ':breast_feeding_medium_dark_skin_tone:': '🤱🏾', + ':breast_feeding_tone4:': '🤱🏾', + ':breast_feeding_dark_skin_tone:': '🤱🏿', + ':breast_feeding_tone5:': '🤱🏿', + ':bride_with_veil_tone1:': '👰🏻', + ':bride_with_veil_tone2:': '👰🏼', + ':bride_with_veil_tone3:': '👰🏽', + ':bride_with_veil_tone4:': '👰🏾', + ':bride_with_veil_tone5:': '👰🏿', + ':call_me_hand_tone1:': '🤙🏻', + ':call_me_tone1:': '🤙🏻', + ':call_me_hand_tone2:': '🤙🏼', + ':call_me_tone2:': '🤙🏼', + ':call_me_hand_tone3:': '🤙🏽', + ':call_me_tone3:': '🤙🏽', + ':call_me_hand_tone4:': '🤙🏾', + ':call_me_tone4:': '🤙🏾', + ':call_me_hand_tone5:': '🤙🏿', + ':call_me_tone5:': '🤙🏿', + ':child_light_skin_tone:': '🧒🏻', + ':child_tone1:': '🧒🏻', + ':child_medium_light_skin_tone:': '🧒🏼', + ':child_tone2:': '🧒🏼', + ':child_medium_skin_tone:': '🧒🏽', + ':child_tone3:': '🧒🏽', + ':child_medium_dark_skin_tone:': '🧒🏾', + ':child_tone4:': '🧒🏾', + ':child_dark_skin_tone:': '🧒🏿', + ':child_tone5:': '🧒🏿', + ':clap_tone1:': '👏🏻', + ':clap_tone2:': '👏🏼', + ':clap_tone3:': '👏🏽', + ':clap_tone4:': '👏🏾', + ':clap_tone5:': '👏🏿', + ':construction_worker_tone1:': '👷🏻', + ':construction_worker_tone2:': '👷🏼', + ':construction_worker_tone3:': '👷🏽', + ':construction_worker_tone4:': '👷🏾', + ':construction_worker_tone5:': '👷🏿', + ':dancer_tone1:': '💃🏻', + ':dancer_tone2:': '💃🏼', + ':dancer_tone3:': '💃🏽', + ':dancer_tone4:': '💃🏾', + ':dancer_tone5:': '💃🏿', + ':deaf_person_light_skin_tone:': '🧏🏻', + ':deaf_person_tone1:': '🧏🏻', + ':deaf_person_medium_light_skin_tone:': '🧏🏼', + ':deaf_person_tone2:': '🧏🏼', + ':deaf_person_medium_skin_tone:': '🧏🏽', + ':deaf_person_tone3:': '🧏🏽', + ':deaf_person_medium_dark_skin_tone:': '🧏🏾', + ':deaf_person_tone4:': '🧏🏾', + ':deaf_person_dark_skin_tone:': '🧏🏿', + ':deaf_person_tone5:': '🧏🏿', + ':spy_tone1:': '🕵️🏻', + ':sleuth_or_spy_tone1:': '🕵️🏻', + ':detective_tone1:': '🕵️🏻', + ':spy_tone2:': '🕵️🏼', + ':sleuth_or_spy_tone2:': '🕵️🏼', + ':detective_tone2:': '🕵️🏼', + ':spy_tone3:': '🕵️🏽', + ':sleuth_or_spy_tone3:': '🕵️🏽', + ':detective_tone3:': '🕵️🏽', + ':spy_tone4:': '🕵️🏾', + ':sleuth_or_spy_tone4:': '🕵️🏾', + ':detective_tone4:': '🕵️🏾', + ':spy_tone5:': '🕵️🏿', + ':sleuth_or_spy_tone5:': '🕵️🏿', + ':detective_tone5:': '🕵️🏿', + ':ear_tone1:': '👂🏻', + ':ear_tone2:': '👂🏼', + ':ear_tone3:': '👂🏽', + ':ear_tone4:': '👂🏾', + ':ear_tone5:': '👂🏿', + ':ear_with_hearing_aid_light_skin_tone:': '🦻🏻', + ':ear_with_hearing_aid_tone1:': '🦻🏻', + ':ear_with_hearing_aid_medium_light_skin_tone:': '🦻🏼', + ':ear_with_hearing_aid_tone2:': '🦻🏼', + ':ear_with_hearing_aid_medium_skin_tone:': '🦻🏽', + ':ear_with_hearing_aid_tone3:': '🦻🏽', + ':ear_with_hearing_aid_medium_dark_skin_tone:': '🦻🏾', + ':ear_with_hearing_aid_tone4:': '🦻🏾', + ':ear_with_hearing_aid_dark_skin_tone:': '🦻🏿', + ':ear_with_hearing_aid_tone5:': '🦻🏿', + ':elf_light_skin_tone:': '🧝🏻', + ':elf_tone1:': '🧝🏻', + ':elf_medium_light_skin_tone:': '🧝🏼', + ':elf_tone2:': '🧝🏼', + ':elf_medium_skin_tone:': '🧝🏽', + ':elf_tone3:': '🧝🏽', + ':elf_medium_dark_skin_tone:': '🧝🏾', + ':elf_tone4:': '🧝🏾', + ':elf_dark_skin_tone:': '🧝🏿', + ':elf_tone5:': '🧝🏿', + ':eye_in_speech_bubble:': '👁️‍🗨️', + ':fairy_light_skin_tone:': '🧚🏻', + ':fairy_tone1:': '🧚🏻', + ':fairy_medium_light_skin_tone:': '🧚🏼', + ':fairy_tone2:': '🧚🏼', + ':fairy_medium_skin_tone:': '🧚🏽', + ':fairy_tone3:': '🧚🏽', + ':fairy_medium_dark_skin_tone:': '🧚🏾', + ':fairy_tone4:': '🧚🏾', + ':fairy_dark_skin_tone:': '🧚🏿', + ':fairy_tone5:': '🧚🏿', + ':family_man_boy:': '👨‍👦', + ':family_man_girl:': '👨‍👧', + ':family_woman_boy:': '👩‍👦', + ':family_woman_girl:': '👩‍👧', + ':hand_with_index_and_middle_fingers_crossed_tone1:': '🤞🏻', + ':fingers_crossed_tone1:': '🤞🏻', + ':hand_with_index_and_middle_fingers_crossed_tone2:': '🤞🏼', + ':fingers_crossed_tone2:': '🤞🏼', + ':hand_with_index_and_middle_fingers_crossed_tone3:': '🤞🏽', + ':fingers_crossed_tone3:': '🤞🏽', + ':hand_with_index_and_middle_fingers_crossed_tone4:': '🤞🏾', + ':fingers_crossed_tone4:': '🤞🏾', + ':hand_with_index_and_middle_fingers_crossed_tone5:': '🤞🏿', + ':fingers_crossed_tone5:': '🤞🏿', + ':ac:': '🇦🇨', + ':flag_ac:': '🇦🇨', + ':ad:': '🇦🇩', + ':flag_ad:': '🇦🇩', + ':ae:': '🇦🇪', + ':flag_ae:': '🇦🇪', + ':af:': '🇦🇫', + ':flag_af:': '🇦🇫', + ':ag:': '🇦🇬', + ':flag_ag:': '🇦🇬', + ':ai:': '🇦🇮', + ':flag_ai:': '🇦🇮', + ':al:': '🇦🇱', + ':flag_al:': '🇦🇱', + ':am:': '🇦🇲', + ':flag_am:': '🇦🇲', + ':ao:': '🇦🇴', + ':flag_ao:': '🇦🇴', + ':aq:': '🇦🇶', + ':flag_aq:': '🇦🇶', + ':ar:': '🇦🇷', + ':flag_ar:': '🇦🇷', + ':as:': '🇦🇸', + ':flag_as:': '🇦🇸', + ':at:': '🇦🇹', + ':flag_at:': '🇦🇹', + ':au:': '🇦🇺', + ':flag_au:': '🇦🇺', + ':aw:': '🇦🇼', + ':flag_aw:': '🇦🇼', + ':ax:': '🇦🇽', + ':flag_ax:': '🇦🇽', + ':az:': '🇦🇿', + ':flag_az:': '🇦🇿', + ':ba:': '🇧🇦', + ':flag_ba:': '🇧🇦', + ':bb:': '🇧🇧', + ':flag_bb:': '🇧🇧', + ':bd:': '🇧🇩', + ':flag_bd:': '🇧🇩', + ':be:': '🇧🇪', + ':flag_be:': '🇧🇪', + ':bf:': '🇧🇫', + ':flag_bf:': '🇧🇫', + ':bg:': '🇧🇬', + ':flag_bg:': '🇧🇬', + ':bh:': '🇧🇭', + ':flag_bh:': '🇧🇭', + ':bi:': '🇧🇮', + ':flag_bi:': '🇧🇮', + ':bj:': '🇧🇯', + ':flag_bj:': '🇧🇯', + ':bm:': '🇧🇲', + ':flag_bm:': '🇧🇲', + ':bn:': '🇧🇳', + ':flag_bn:': '🇧🇳', + ':bo:': '🇧🇴', + ':flag_bo:': '🇧🇴', + ':br:': '🇧🇷', + ':flag_br:': '🇧🇷', + ':bs:': '🇧🇸', + ':flag_bs:': '🇧🇸', + ':bt:': '🇧🇹', + ':flag_bt:': '🇧🇹', + ':bv:': '🇧🇻', + ':flag_bv:': '🇧🇻', + ':bw:': '🇧🇼', + ':flag_bw:': '🇧🇼', + ':by:': '🇧🇾', + ':flag_by:': '🇧🇾', + ':bz:': '🇧🇿', + ':flag_bz:': '🇧🇿', + ':ca:': '🇨🇦', + ':flag_ca:': '🇨🇦', + ':cc:': '🇨🇨', + ':flag_cc:': '🇨🇨', + ':congo:': '🇨🇩', + ':flag_cd:': '🇨🇩', + ':cf:': '🇨🇫', + ':flag_cf:': '🇨🇫', + ':cg:': '🇨🇬', + ':flag_cg:': '🇨🇬', + ':ch:': '🇨🇭', + ':flag_ch:': '🇨🇭', + ':ci:': '🇨🇮', + ':flag_ci:': '🇨🇮', + ':ck:': '🇨🇰', + ':flag_ck:': '🇨🇰', + ':chile:': '🇨🇱', + ':flag_cl:': '🇨🇱', + ':cm:': '🇨🇲', + ':flag_cm:': '🇨🇲', + ':cn:': '🇨🇳', + ':flag_cn:': '🇨🇳', + ':co:': '🇨🇴', + ':flag_co:': '🇨🇴', + ':cp:': '🇨🇵', + ':flag_cp:': '🇨🇵', + ':cr:': '🇨🇷', + ':flag_cr:': '🇨🇷', + ':cu:': '🇨🇺', + ':flag_cu:': '🇨🇺', + ':cv:': '🇨🇻', + ':flag_cv:': '🇨🇻', + ':cw:': '🇨🇼', + ':flag_cw:': '🇨🇼', + ':cx:': '🇨🇽', + ':flag_cx:': '🇨🇽', + ':cy:': '🇨🇾', + ':flag_cy:': '🇨🇾', + ':cz:': '🇨🇿', + ':flag_cz:': '🇨🇿', + ':de:': '🇩🇪', + ':flag_de:': '🇩🇪', + ':dj:': '🇩🇯', + ':flag_dj:': '🇩🇯', + ':dk:': '🇩🇰', + ':flag_dk:': '🇩🇰', + ':dm:': '🇩🇲', + ':flag_dm:': '🇩🇲', + ':do:': '🇩🇴', + ':flag_do:': '🇩🇴', + ':dz:': '🇩🇿', + ':flag_dz:': '🇩🇿', + ':ec:': '🇪🇨', + ':flag_ec:': '🇪🇨', + ':ee:': '🇪🇪', + ':flag_ee:': '🇪🇪', + ':eg:': '🇪🇬', + ':flag_eg:': '🇪🇬', + ':er:': '🇪🇷', + ':flag_er:': '🇪🇷', + ':es:': '🇪🇸', + ':flag_es:': '🇪🇸', + ':et:': '🇪🇹', + ':flag_et:': '🇪🇹', + ':eu:': '🇪🇺', + ':flag_eu:': '🇪🇺', + ':fi:': '🇫🇮', + ':flag_fi:': '🇫🇮', + ':fj:': '🇫🇯', + ':flag_fj:': '🇫🇯', + ':fm:': '🇫🇲', + ':flag_fm:': '🇫🇲', + ':fo:': '🇫🇴', + ':flag_fo:': '🇫🇴', + ':fr:': '🇫🇷', + ':flag_fr:': '🇫🇷', + ':ga:': '🇬🇦', + ':flag_ga:': '🇬🇦', + ':gb:': '🇬🇧', + ':flag_gb:': '🇬🇧', + ':gd:': '🇬🇩', + ':flag_gd:': '🇬🇩', + ':ge:': '🇬🇪', + ':flag_ge:': '🇬🇪', + ':gg:': '🇬🇬', + ':flag_gg:': '🇬🇬', + ':gh:': '🇬🇭', + ':flag_gh:': '🇬🇭', + ':gi:': '🇬🇮', + ':flag_gi:': '🇬🇮', + ':gl:': '🇬🇱', + ':flag_gl:': '🇬🇱', + ':gm:': '🇬🇲', + ':flag_gm:': '🇬🇲', + ':gn:': '🇬🇳', + ':flag_gn:': '🇬🇳', + ':gq:': '🇬🇶', + ':flag_gq:': '🇬🇶', + ':gr:': '🇬🇷', + ':flag_gr:': '🇬🇷', + ':gt:': '🇬🇹', + ':flag_gt:': '🇬🇹', + ':gu:': '🇬🇺', + ':flag_gu:': '🇬🇺', + ':gw:': '🇬🇼', + ':flag_gw:': '🇬🇼', + ':gy:': '🇬🇾', + ':flag_gy:': '🇬🇾', + ':hk:': '🇭🇰', + ':flag_hk:': '🇭🇰', + ':hm:': '🇭🇲', + ':flag_hm:': '🇭🇲', + ':hn:': '🇭🇳', + ':flag_hn:': '🇭🇳', + ':hr:': '🇭🇷', + ':flag_hr:': '🇭🇷', + ':ht:': '🇭🇹', + ':flag_ht:': '🇭🇹', + ':hu:': '🇭🇺', + ':flag_hu:': '🇭🇺', + ':ic:': '🇮🇨', + ':flag_ic:': '🇮🇨', + ':indonesia:': '🇮🇩', + ':flag_id:': '🇮🇩', + ':ie:': '🇮🇪', + ':flag_ie:': '🇮🇪', + ':il:': '🇮🇱', + ':flag_il:': '🇮🇱', + ':im:': '🇮🇲', + ':flag_im:': '🇮🇲', + ':in:': '🇮🇳', + ':flag_in:': '🇮🇳', + ':io:': '🇮🇴', + ':flag_io:': '🇮🇴', + ':iq:': '🇮🇶', + ':flag_iq:': '🇮🇶', + ':ir:': '🇮🇷', + ':flag_ir:': '🇮🇷', + ':is:': '🇮🇸', + ':flag_is:': '🇮🇸', + ':it:': '🇮🇹', + ':flag_it:': '🇮🇹', + ':je:': '🇯🇪', + ':flag_je:': '🇯🇪', + ':jm:': '🇯🇲', + ':flag_jm:': '🇯🇲', + ':jo:': '🇯🇴', + ':flag_jo:': '🇯🇴', + ':jp:': '🇯🇵', + ':flag_jp:': '🇯🇵', + ':ke:': '🇰🇪', + ':flag_ke:': '🇰🇪', + ':kg:': '🇰🇬', + ':flag_kg:': '🇰🇬', + ':kh:': '🇰🇭', + ':flag_kh:': '🇰🇭', + ':ki:': '🇰🇮', + ':flag_ki:': '🇰🇮', + ':km:': '🇰🇲', + ':flag_km:': '🇰🇲', + ':kn:': '🇰🇳', + ':flag_kn:': '🇰🇳', + ':kp:': '🇰🇵', + ':flag_kp:': '🇰🇵', + ':kr:': '🇰🇷', + ':flag_kr:': '🇰🇷', + ':kw:': '🇰🇼', + ':flag_kw:': '🇰🇼', + ':ky:': '🇰🇾', + ':flag_ky:': '🇰🇾', + ':kz:': '🇰🇿', + ':flag_kz:': '🇰🇿', + ':la:': '🇱🇦', + ':flag_la:': '🇱🇦', + ':lb:': '🇱🇧', + ':flag_lb:': '🇱🇧', + ':lc:': '🇱🇨', + ':flag_lc:': '🇱🇨', + ':li:': '🇱🇮', + ':flag_li:': '🇱🇮', + ':lk:': '🇱🇰', + ':flag_lk:': '🇱🇰', + ':lr:': '🇱🇷', + ':flag_lr:': '🇱🇷', + ':ls:': '🇱🇸', + ':flag_ls:': '🇱🇸', + ':lt:': '🇱🇹', + ':flag_lt:': '🇱🇹', + ':lu:': '🇱🇺', + ':flag_lu:': '🇱🇺', + ':lv:': '🇱🇻', + ':flag_lv:': '🇱🇻', + ':ly:': '🇱🇾', + ':flag_ly:': '🇱🇾', + ':ma:': '🇲🇦', + ':flag_ma:': '🇲🇦', + ':mc:': '🇲🇨', + ':flag_mc:': '🇲🇨', + ':md:': '🇲🇩', + ':flag_md:': '🇲🇩', + ':me:': '🇲🇪', + ':flag_me:': '🇲🇪', + ':mg:': '🇲🇬', + ':flag_mg:': '🇲🇬', + ':mh:': '🇲🇭', + ':flag_mh:': '🇲🇭', + ':mk:': '🇲🇰', + ':flag_mk:': '🇲🇰', + ':ml:': '🇲🇱', + ':flag_ml:': '🇲🇱', + ':mm:': '🇲🇲', + ':flag_mm:': '🇲🇲', + ':mn:': '🇲🇳', + ':flag_mn:': '🇲🇳', + ':mo:': '🇲🇴', + ':flag_mo:': '🇲🇴', + ':mp:': '🇲🇵', + ':flag_mp:': '🇲🇵', + ':mr:': '🇲🇷', + ':flag_mr:': '🇲🇷', + ':ms:': '🇲🇸', + ':flag_ms:': '🇲🇸', + ':mt:': '🇲🇹', + ':flag_mt:': '🇲🇹', + ':mu:': '🇲🇺', + ':flag_mu:': '🇲🇺', + ':mv:': '🇲🇻', + ':flag_mv:': '🇲🇻', + ':mw:': '🇲🇼', + ':flag_mw:': '🇲🇼', + ':mx:': '🇲🇽', + ':flag_mx:': '🇲🇽', + ':my:': '🇲🇾', + ':flag_my:': '🇲🇾', + ':mz:': '🇲🇿', + ':flag_mz:': '🇲🇿', + ':na:': '🇳🇦', + ':flag_na:': '🇳🇦', + ':ne:': '🇳🇪', + ':flag_ne:': '🇳🇪', + ':nf:': '🇳🇫', + ':flag_nf:': '🇳🇫', + ':nigeria:': '🇳🇬', + ':flag_ng:': '🇳🇬', + ':ni:': '🇳🇮', + ':flag_ni:': '🇳🇮', + ':nl:': '🇳🇱', + ':flag_nl:': '🇳🇱', + ':no:': '🇳🇴', + ':flag_no:': '🇳🇴', + ':np:': '🇳🇵', + ':flag_np:': '🇳🇵', + ':nr:': '🇳🇷', + ':flag_nr:': '🇳🇷', + ':nu:': '🇳🇺', + ':flag_nu:': '🇳🇺', + ':nz:': '🇳🇿', + ':flag_nz:': '🇳🇿', + ':om:': '🇴🇲', + ':flag_om:': '🇴🇲', + ':pa:': '🇵🇦', + ':flag_pa:': '🇵🇦', + ':pe:': '🇵🇪', + ':flag_pe:': '🇵🇪', + ':pf:': '🇵🇫', + ':flag_pf:': '🇵🇫', + ':pg:': '🇵🇬', + ':flag_pg:': '🇵🇬', + ':ph:': '🇵🇭', + ':flag_ph:': '🇵🇭', + ':pk:': '🇵🇰', + ':flag_pk:': '🇵🇰', + ':pl:': '🇵🇱', + ':flag_pl:': '🇵🇱', + ':pn:': '🇵🇳', + ':flag_pn:': '🇵🇳', + ':pr:': '🇵🇷', + ':flag_pr:': '🇵🇷', + ':ps:': '🇵🇸', + ':flag_ps:': '🇵🇸', + ':pt:': '🇵🇹', + ':flag_pt:': '🇵🇹', + ':pw:': '🇵🇼', + ':flag_pw:': '🇵🇼', + ':py:': '🇵🇾', + ':flag_py:': '🇵🇾', + ':qa:': '🇶🇦', + ':flag_qa:': '🇶🇦', + ':ro:': '🇷🇴', + ':flag_ro:': '🇷🇴', + ':rs:': '🇷🇸', + ':flag_rs:': '🇷🇸', + ':ru:': '🇷🇺', + ':flag_ru:': '🇷🇺', + ':rw:': '🇷🇼', + ':flag_rw:': '🇷🇼', + ':saudiarabia:': '🇸🇦', + ':saudi:': '🇸🇦', + ':flag_sa:': '🇸🇦', + ':sb:': '🇸🇧', + ':flag_sb:': '🇸🇧', + ':sc:': '🇸🇨', + ':flag_sc:': '🇸🇨', + ':sd:': '🇸🇩', + ':flag_sd:': '🇸🇩', + ':se:': '🇸🇪', + ':flag_se:': '🇸🇪', + ':sg:': '🇸🇬', + ':flag_sg:': '🇸🇬', + ':sh:': '🇸🇭', + ':flag_sh:': '🇸🇭', + ':si:': '🇸🇮', + ':flag_si:': '🇸🇮', + ':sj:': '🇸🇯', + ':flag_sj:': '🇸🇯', + ':sk:': '🇸🇰', + ':flag_sk:': '🇸🇰', + ':sl:': '🇸🇱', + ':flag_sl:': '🇸🇱', + ':sm:': '🇸🇲', + ':flag_sm:': '🇸🇲', + ':sn:': '🇸🇳', + ':flag_sn:': '🇸🇳', + ':so:': '🇸🇴', + ':flag_so:': '🇸🇴', + ':sr:': '🇸🇷', + ':flag_sr:': '🇸🇷', + ':ss:': '🇸🇸', + ':flag_ss:': '🇸🇸', + ':st:': '🇸🇹', + ':flag_st:': '🇸🇹', + ':sv:': '🇸🇻', + ':flag_sv:': '🇸🇻', + ':sx:': '🇸🇽', + ':flag_sx:': '🇸🇽', + ':sy:': '🇸🇾', + ':flag_sy:': '🇸🇾', + ':sz:': '🇸🇿', + ':flag_sz:': '🇸🇿', + ':ta:': '🇹🇦', + ':flag_ta:': '🇹🇦', + ':tc:': '🇹🇨', + ':flag_tc:': '🇹🇨', + ':td:': '🇹🇩', + ':flag_td:': '🇹🇩', + ':tg:': '🇹🇬', + ':flag_tg:': '🇹🇬', + ':th:': '🇹🇭', + ':flag_th:': '🇹🇭', + ':tj:': '🇹🇯', + ':flag_tj:': '🇹🇯', + ':tk:': '🇹🇰', + ':flag_tk:': '🇹🇰', + ':tl:': '🇹🇱', + ':flag_tl:': '🇹🇱', + ':turkmenistan:': '🇹🇲', + ':flag_tm:': '🇹🇲', + ':tn:': '🇹🇳', + ':flag_tn:': '🇹🇳', + ':to:': '🇹🇴', + ':flag_to:': '🇹🇴', + ':tr:': '🇹🇷', + ':flag_tr:': '🇹🇷', + ':tt:': '🇹🇹', + ':flag_tt:': '🇹🇹', + ':tuvalu:': '🇹🇻', + ':flag_tv:': '🇹🇻', + ':tw:': '🇹🇼', + ':flag_tw:': '🇹🇼', + ':tz:': '🇹🇿', + ':flag_tz:': '🇹🇿', + ':ua:': '🇺🇦', + ':flag_ua:': '🇺🇦', + ':ug:': '🇺🇬', + ':flag_ug:': '🇺🇬', + ':um:': '🇺🇲', + ':flag_um:': '🇺🇲', + ':us:': '🇺🇸', + ':flag_us:': '🇺🇸', + ':uy:': '🇺🇾', + ':flag_uy:': '🇺🇾', + ':uz:': '🇺🇿', + ':flag_uz:': '🇺🇿', + ':va:': '🇻🇦', + ':flag_va:': '🇻🇦', + ':vc:': '🇻🇨', + ':flag_vc:': '🇻🇨', + ':ve:': '🇻🇪', + ':flag_ve:': '🇻🇪', + ':vg:': '🇻🇬', + ':flag_vg:': '🇻🇬', + ':vi:': '🇻🇮', + ':flag_vi:': '🇻🇮', + ':vn:': '🇻🇳', + ':flag_vn:': '🇻🇳', + ':vu:': '🇻🇺', + ':flag_vu:': '🇻🇺', + ':ws:': '🇼🇸', + ':flag_ws:': '🇼🇸', + ':ye:': '🇾🇪', + ':flag_ye:': '🇾🇪', + ':za:': '🇿🇦', + ':flag_za:': '🇿🇦', + ':zm:': '🇿🇲', + ':flag_zm:': '🇿🇲', + ':zw:': '🇿🇼', + ':flag_zw:': '🇿🇼', + ':foot_light_skin_tone:': '🦶🏻', + ':foot_tone1:': '🦶🏻', + ':foot_medium_light_skin_tone:': '🦶🏼', + ':foot_tone2:': '🦶🏼', + ':foot_medium_skin_tone:': '🦶🏽', + ':foot_tone3:': '🦶🏽', + ':foot_medium_dark_skin_tone:': '🦶🏾', + ':foot_tone4:': '🦶🏾', + ':foot_dark_skin_tone:': '🦶🏿', + ':foot_tone5:': '🦶🏿', + ':girl_tone1:': '👧🏻', + ':girl_tone2:': '👧🏼', + ':girl_tone3:': '👧🏽', + ':girl_tone4:': '👧🏾', + ':girl_tone5:': '👧🏿', + ':guardsman_tone1:': '💂🏻', + ':guard_tone1:': '💂🏻', + ':guardsman_tone2:': '💂🏼', + ':guard_tone2:': '💂🏼', + ':guardsman_tone3:': '💂🏽', + ':guard_tone3:': '💂🏽', + ':guardsman_tone4:': '💂🏾', + ':guard_tone4:': '💂🏾', + ':guardsman_tone5:': '💂🏿', + ':guard_tone5:': '💂🏿', + ':raised_hand_with_fingers_splayed_tone1:': '🖐️🏻', + ':hand_splayed_tone1:': '🖐️🏻', + ':raised_hand_with_fingers_splayed_tone2:': '🖐️🏼', + ':hand_splayed_tone2:': '🖐️🏼', + ':raised_hand_with_fingers_splayed_tone3:': '🖐️🏽', + ':hand_splayed_tone3:': '🖐️🏽', + ':raised_hand_with_fingers_splayed_tone4:': '🖐️🏾', + ':hand_splayed_tone4:': '🖐️🏾', + ':raised_hand_with_fingers_splayed_tone5:': '🖐️🏿', + ':hand_splayed_tone5:': '🖐️🏿', + ':horse_racing_tone1:': '🏇🏻', + ':horse_racing_tone2:': '🏇🏼', + ':horse_racing_tone3:': '🏇🏽', + ':horse_racing_tone4:': '🏇🏾', + ':horse_racing_tone5:': '🏇🏿', + ':left_fist_tone1:': '🤛🏻', + ':left_facing_fist_tone1:': '🤛🏻', + ':left_fist_tone2:': '🤛🏼', + ':left_facing_fist_tone2:': '🤛🏼', + ':left_fist_tone3:': '🤛🏽', + ':left_facing_fist_tone3:': '🤛🏽', + ':left_fist_tone4:': '🤛🏾', + ':left_facing_fist_tone4:': '🤛🏾', + ':left_fist_tone5:': '🤛🏿', + ':left_facing_fist_tone5:': '🤛🏿', + ':leg_light_skin_tone:': '🦵🏻', + ':leg_tone1:': '🦵🏻', + ':leg_medium_light_skin_tone:': '🦵🏼', + ':leg_tone2:': '🦵🏼', + ':leg_medium_skin_tone:': '🦵🏽', + ':leg_tone3:': '🦵🏽', + ':leg_medium_dark_skin_tone:': '🦵🏾', + ':leg_tone4:': '🦵🏾', + ':leg_dark_skin_tone:': '🦵🏿', + ':leg_tone5:': '🦵🏿', + ':man_in_business_suit_levitating_tone1:': '🕴️🏻', + ':man_in_business_suit_levitating_light_skin_tone:': '🕴️🏻', + ':levitate_tone1:': '🕴️🏻', + ':man_in_business_suit_levitating_tone2:': '🕴️🏼', + ':man_in_business_suit_levitating_medium_light_skin_tone:': '🕴️🏼', + ':levitate_tone2:': '🕴️🏼', + ':man_in_business_suit_levitating_tone3:': '🕴️🏽', + ':man_in_business_suit_levitating_medium_skin_tone:': '🕴️🏽', + ':levitate_tone3:': '🕴️🏽', + ':man_in_business_suit_levitating_tone4:': '🕴️🏾', + ':man_in_business_suit_levitating_medium_dark_skin_tone:': '🕴️🏾', + ':levitate_tone4:': '🕴️🏾', + ':man_in_business_suit_levitating_tone5:': '🕴️🏿', + ':man_in_business_suit_levitating_dark_skin_tone:': '🕴️🏿', + ':levitate_tone5:': '🕴️🏿', + ':love_you_gesture_light_skin_tone:': '🤟🏻', + ':love_you_gesture_tone1:': '🤟🏻', + ':love_you_gesture_medium_light_skin_tone:': '🤟🏼', + ':love_you_gesture_tone2:': '🤟🏼', + ':love_you_gesture_medium_skin_tone:': '🤟🏽', + ':love_you_gesture_tone3:': '🤟🏽', + ':love_you_gesture_medium_dark_skin_tone:': '🤟🏾', + ':love_you_gesture_tone4:': '🤟🏾', + ':love_you_gesture_dark_skin_tone:': '🤟🏿', + ':love_you_gesture_tone5:': '🤟🏿', + ':mage_light_skin_tone:': '🧙🏻', + ':mage_tone1:': '🧙🏻', + ':mage_medium_light_skin_tone:': '🧙🏼', + ':mage_tone2:': '🧙🏼', + ':mage_medium_skin_tone:': '🧙🏽', + ':mage_tone3:': '🧙🏽', + ':mage_medium_dark_skin_tone:': '🧙🏾', + ':mage_tone4:': '🧙🏾', + ':mage_dark_skin_tone:': '🧙🏿', + ':mage_tone5:': '🧙🏿', + ':man_artist:': '👨‍🎨', + ':man_astronaut:': '👨‍🚀', + ':man_bald:': '👨‍🦲', + ':man_cook:': '👨‍🍳', + ':man_curly_haired:': '👨‍🦱', + ':male_dancer_tone1:': '🕺🏻', + ':man_dancing_tone1:': '🕺🏻', + ':male_dancer_tone2:': '🕺🏼', + ':man_dancing_tone2:': '🕺🏼', + ':male_dancer_tone3:': '🕺🏽', + ':man_dancing_tone3:': '🕺🏽', + ':male_dancer_tone4:': '🕺🏾', + ':man_dancing_tone4:': '🕺🏾', + ':male_dancer_tone5:': '🕺🏿', + ':man_dancing_tone5:': '🕺🏿', + ':man_factory_worker:': '👨‍🏭', + ':man_farmer:': '👨‍🌾', + ':man_firefighter:': '👨‍🚒', + ':man_in_manual_wheelchair:': '👨‍🦽', + ':man_in_motorized_wheelchair:': '👨‍🦼', + ':tuxedo_tone1:': '🤵🏻', + ':man_in_tuxedo_tone1:': '🤵🏻', + ':tuxedo_tone2:': '🤵🏼', + ':man_in_tuxedo_tone2:': '🤵🏼', + ':tuxedo_tone3:': '🤵🏽', + ':man_in_tuxedo_tone3:': '🤵🏽', + ':tuxedo_tone4:': '🤵🏾', + ':man_in_tuxedo_tone4:': '🤵🏾', + ':tuxedo_tone5:': '🤵🏿', + ':man_in_tuxedo_tone5:': '🤵🏿', + ':man_mechanic:': '👨‍🔧', + ':man_office_worker:': '👨‍💼', + ':man_red_haired:': '👨‍🦰', + ':man_scientist:': '👨‍🔬', + ':man_singer:': '👨‍🎤', + ':man_student:': '👨‍🎓', + ':man_teacher:': '👨‍🏫', + ':man_technologist:': '👨‍💻', + ':man_tone1:': '👨🏻', + ':man_tone2:': '👨🏼', + ':man_tone3:': '👨🏽', + ':man_tone4:': '👨🏾', + ':man_tone5:': '👨🏿', + ':man_white_haired:': '👨‍🦳', + ':man_with_gua_pi_mao_tone1:': '👲🏻', + ':man_with_chinese_cap_tone1:': '👲🏻', + ':man_with_gua_pi_mao_tone2:': '👲🏼', + ':man_with_chinese_cap_tone2:': '👲🏼', + ':man_with_gua_pi_mao_tone3:': '👲🏽', + ':man_with_chinese_cap_tone3:': '👲🏽', + ':man_with_gua_pi_mao_tone4:': '👲🏾', + ':man_with_chinese_cap_tone4:': '👲🏾', + ':man_with_gua_pi_mao_tone5:': '👲🏿', + ':man_with_chinese_cap_tone5:': '👲🏿', + ':man_with_probing_cane:': '👨‍🦯', + ':men_holding_hands_light_skin_tone:': '👬🏻', + ':men_holding_hands_tone1:': '👬🏻', + ':men_holding_hands_medium_light_skin_tone:': '👬🏼', + ':men_holding_hands_tone2:': '👬🏼', + ':men_holding_hands_medium_skin_tone:': '👬🏽', + ':men_holding_hands_tone3:': '👬🏽', + ':men_holding_hands_medium_dark_skin_tone:': '👬🏾', + ':men_holding_hands_tone4:': '👬🏾', + ':men_holding_hands_dark_skin_tone:': '👬🏿', + ':men_holding_hands_tone5:': '👬🏿', + ':merperson_light_skin_tone:': '🧜🏻', + ':merperson_tone1:': '🧜🏻', + ':merperson_medium_light_skin_tone:': '🧜🏼', + ':merperson_tone2:': '🧜🏼', + ':merperson_medium_skin_tone:': '🧜🏽', + ':merperson_tone3:': '🧜🏽', + ':merperson_medium_dark_skin_tone:': '🧜🏾', + ':merperson_tone4:': '🧜🏾', + ':merperson_dark_skin_tone:': '🧜🏿', + ':merperson_tone5:': '🧜🏿', + ':sign_of_the_horns_tone1:': '🤘🏻', + ':metal_tone1:': '🤘🏻', + ':sign_of_the_horns_tone2:': '🤘🏼', + ':metal_tone2:': '🤘🏼', + ':sign_of_the_horns_tone3:': '🤘🏽', + ':metal_tone3:': '🤘🏽', + ':sign_of_the_horns_tone4:': '🤘🏾', + ':metal_tone4:': '🤘🏾', + ':sign_of_the_horns_tone5:': '🤘🏿', + ':metal_tone5:': '🤘🏿', + ':reversed_hand_with_middle_finger_extended_tone1:': '🖕🏻', + ':middle_finger_tone1:': '🖕🏻', + ':reversed_hand_with_middle_finger_extended_tone2:': '🖕🏼', + ':middle_finger_tone2:': '🖕🏼', + ':reversed_hand_with_middle_finger_extended_tone3:': '🖕🏽', + ':middle_finger_tone3:': '🖕🏽', + ':reversed_hand_with_middle_finger_extended_tone4:': '🖕🏾', + ':middle_finger_tone4:': '🖕🏾', + ':reversed_hand_with_middle_finger_extended_tone5:': '🖕🏿', + ':middle_finger_tone5:': '🖕🏿', + ':mother_christmas_tone1:': '🤶🏻', + ':mrs_claus_tone1:': '🤶🏻', + ':mother_christmas_tone2:': '🤶🏼', + ':mrs_claus_tone2:': '🤶🏼', + ':mother_christmas_tone3:': '🤶🏽', + ':mrs_claus_tone3:': '🤶🏽', + ':mother_christmas_tone4:': '🤶🏾', + ':mrs_claus_tone4:': '🤶🏾', + ':mother_christmas_tone5:': '🤶🏿', + ':mrs_claus_tone5:': '🤶🏿', + ':muscle_tone1:': '💪🏻', + ':muscle_tone2:': '💪🏼', + ':muscle_tone3:': '💪🏽', + ':muscle_tone4:': '💪🏾', + ':muscle_tone5:': '💪🏿', + ':nail_care_tone1:': '💅🏻', + ':nail_care_tone2:': '💅🏼', + ':nail_care_tone3:': '💅🏽', + ':nail_care_tone4:': '💅🏾', + ':nail_care_tone5:': '💅🏿', + ':nose_tone1:': '👃🏻', + ':nose_tone2:': '👃🏼', + ':nose_tone3:': '👃🏽', + ':nose_tone4:': '👃🏾', + ':nose_tone5:': '👃🏿', + ':ok_hand_tone1:': '👌🏻', + ':ok_hand_tone2:': '👌🏼', + ':ok_hand_tone3:': '👌🏽', + ':ok_hand_tone4:': '👌🏾', + ':ok_hand_tone5:': '👌🏿', + ':older_adult_light_skin_tone:': '🧓🏻', + ':older_adult_tone1:': '🧓🏻', + ':older_adult_medium_light_skin_tone:': '🧓🏼', + ':older_adult_tone2:': '🧓🏼', + ':older_adult_medium_skin_tone:': '🧓🏽', + ':older_adult_tone3:': '🧓🏽', + ':older_adult_medium_dark_skin_tone:': '🧓🏾', + ':older_adult_tone4:': '🧓🏾', + ':older_adult_dark_skin_tone:': '🧓🏿', + ':older_adult_tone5:': '🧓🏿', + ':older_man_tone1:': '👴🏻', + ':older_man_tone2:': '👴🏼', + ':older_man_tone3:': '👴🏽', + ':older_man_tone4:': '👴🏾', + ':older_man_tone5:': '👴🏿', + ':grandma_tone1:': '👵🏻', + ':older_woman_tone1:': '👵🏻', + ':grandma_tone2:': '👵🏼', + ':older_woman_tone2:': '👵🏼', + ':grandma_tone3:': '👵🏽', + ':older_woman_tone3:': '👵🏽', + ':grandma_tone4:': '👵🏾', + ':older_woman_tone4:': '👵🏾', + ':grandma_tone5:': '👵🏿', + ':older_woman_tone5:': '👵🏿', + ':open_hands_tone1:': '👐🏻', + ':open_hands_tone2:': '👐🏼', + ':open_hands_tone3:': '👐🏽', + ':open_hands_tone4:': '👐🏾', + ':open_hands_tone5:': '👐🏿', + ':palms_up_together_light_skin_tone:': '🤲🏻', + ':palms_up_together_tone1:': '🤲🏻', + ':palms_up_together_medium_light_skin_tone:': '🤲🏼', + ':palms_up_together_tone2:': '🤲🏼', + ':palms_up_together_medium_skin_tone:': '🤲🏽', + ':palms_up_together_tone3:': '🤲🏽', + ':palms_up_together_medium_dark_skin_tone:': '🤲🏾', + ':palms_up_together_tone4:': '🤲🏾', + ':palms_up_together_dark_skin_tone:': '🤲🏿', + ':palms_up_together_tone5:': '🤲🏿', + ':bicyclist_tone1:': '🚴🏻', + ':person_biking_tone1:': '🚴🏻', + ':bicyclist_tone2:': '🚴🏼', + ':person_biking_tone2:': '🚴🏼', + ':bicyclist_tone3:': '🚴🏽', + ':person_biking_tone3:': '🚴🏽', + ':bicyclist_tone4:': '🚴🏾', + ':person_biking_tone4:': '🚴🏾', + ':bicyclist_tone5:': '🚴🏿', + ':person_biking_tone5:': '🚴🏿', + ':bow_tone1:': '🙇🏻', + ':person_bowing_tone1:': '🙇🏻', + ':bow_tone2:': '🙇🏼', + ':person_bowing_tone2:': '🙇🏼', + ':bow_tone3:': '🙇🏽', + ':person_bowing_tone3:': '🙇🏽', + ':bow_tone4:': '🙇🏾', + ':person_bowing_tone4:': '🙇🏾', + ':bow_tone5:': '🙇🏿', + ':person_bowing_tone5:': '🙇🏿', + ':person_climbing_light_skin_tone:': '🧗🏻', + ':person_climbing_tone1:': '🧗🏻', + ':person_climbing_medium_light_skin_tone:': '🧗🏼', + ':person_climbing_tone2:': '🧗🏼', + ':person_climbing_medium_skin_tone:': '🧗🏽', + ':person_climbing_tone3:': '🧗🏽', + ':person_climbing_medium_dark_skin_tone:': '🧗🏾', + ':person_climbing_tone4:': '🧗🏾', + ':person_climbing_dark_skin_tone:': '🧗🏿', + ':person_climbing_tone5:': '🧗🏿', + ':cartwheel_tone1:': '🤸🏻', + ':person_doing_cartwheel_tone1:': '🤸🏻', + ':cartwheel_tone2:': '🤸🏼', + ':person_doing_cartwheel_tone2:': '🤸🏼', + ':cartwheel_tone3:': '🤸🏽', + ':person_doing_cartwheel_tone3:': '🤸🏽', + ':cartwheel_tone4:': '🤸🏾', + ':person_doing_cartwheel_tone4:': '🤸🏾', + ':cartwheel_tone5:': '🤸🏿', + ':person_doing_cartwheel_tone5:': '🤸🏿', + ':face_palm_tone1:': '🤦🏻', + ':facepalm_tone1:': '🤦🏻', + ':person_facepalming_tone1:': '🤦🏻', + ':face_palm_tone2:': '🤦🏼', + ':facepalm_tone2:': '🤦🏼', + ':person_facepalming_tone2:': '🤦🏼', + ':face_palm_tone3:': '🤦🏽', + ':facepalm_tone3:': '🤦🏽', + ':person_facepalming_tone3:': '🤦🏽', + ':face_palm_tone4:': '🤦🏾', + ':facepalm_tone4:': '🤦🏾', + ':person_facepalming_tone4:': '🤦🏾', + ':face_palm_tone5:': '🤦🏿', + ':facepalm_tone5:': '🤦🏿', + ':person_facepalming_tone5:': '🤦🏿', + ':person_frowning_tone1:': '🙍🏻', + ':person_frowning_tone2:': '🙍🏼', + ':person_frowning_tone3:': '🙍🏽', + ':person_frowning_tone4:': '🙍🏾', + ':person_frowning_tone5:': '🙍🏿', + ':no_good_tone1:': '🙅🏻', + ':person_gesturing_no_tone1:': '🙅🏻', + ':no_good_tone2:': '🙅🏼', + ':person_gesturing_no_tone2:': '🙅🏼', + ':no_good_tone3:': '🙅🏽', + ':person_gesturing_no_tone3:': '🙅🏽', + ':no_good_tone4:': '🙅🏾', + ':person_gesturing_no_tone4:': '🙅🏾', + ':no_good_tone5:': '🙅🏿', + ':person_gesturing_no_tone5:': '🙅🏿', + ':ok_woman_tone1:': '🙆🏻', + ':person_gesturing_ok_tone1:': '🙆🏻', + ':ok_woman_tone2:': '🙆🏼', + ':person_gesturing_ok_tone2:': '🙆🏼', + ':ok_woman_tone3:': '🙆🏽', + ':person_gesturing_ok_tone3:': '🙆🏽', + ':ok_woman_tone4:': '🙆🏾', + ':person_gesturing_ok_tone4:': '🙆🏾', + ':ok_woman_tone5:': '🙆🏿', + ':person_gesturing_ok_tone5:': '🙆🏿', + ':haircut_tone1:': '💇🏻', + ':person_getting_haircut_tone1:': '💇🏻', + ':haircut_tone2:': '💇🏼', + ':person_getting_haircut_tone2:': '💇🏼', + ':haircut_tone3:': '💇🏽', + ':person_getting_haircut_tone3:': '💇🏽', + ':haircut_tone4:': '💇🏾', + ':person_getting_haircut_tone4:': '💇🏾', + ':haircut_tone5:': '💇🏿', + ':person_getting_haircut_tone5:': '💇🏿', + ':massage_tone1:': '💆🏻', + ':person_getting_massage_tone1:': '💆🏻', + ':massage_tone2:': '💆🏼', + ':person_getting_massage_tone2:': '💆🏼', + ':massage_tone3:': '💆🏽', + ':person_getting_massage_tone3:': '💆🏽', + ':massage_tone4:': '💆🏾', + ':person_getting_massage_tone4:': '💆🏾', + ':massage_tone5:': '💆🏿', + ':person_getting_massage_tone5:': '💆🏿', + ':person_golfing_light_skin_tone:': '🏌️🏻', + ':person_golfing_tone1:': '🏌️🏻', + ':person_golfing_medium_light_skin_tone:': '🏌️🏼', + ':person_golfing_tone2:': '🏌️🏼', + ':person_golfing_medium_skin_tone:': '🏌️🏽', + ':person_golfing_tone3:': '🏌️🏽', + ':person_golfing_medium_dark_skin_tone:': '🏌️🏾', + ':person_golfing_tone4:': '🏌️🏾', + ':person_golfing_dark_skin_tone:': '🏌️🏿', + ':person_golfing_tone5:': '🏌️🏿', + ':person_in_bed_light_skin_tone:': '🛌🏻', + ':person_in_bed_tone1:': '🛌🏻', + ':person_in_bed_medium_light_skin_tone:': '🛌🏼', + ':person_in_bed_tone2:': '🛌🏼', + ':person_in_bed_medium_skin_tone:': '🛌🏽', + ':person_in_bed_tone3:': '🛌🏽', + ':person_in_bed_medium_dark_skin_tone:': '🛌🏾', + ':person_in_bed_tone4:': '🛌🏾', + ':person_in_bed_dark_skin_tone:': '🛌🏿', + ':person_in_bed_tone5:': '🛌🏿', + ':person_in_lotus_position_light_skin_tone:': '🧘🏻', + ':person_in_lotus_position_tone1:': '🧘🏻', + ':person_in_lotus_position_medium_light_skin_tone:': '🧘🏼', + ':person_in_lotus_position_tone2:': '🧘🏼', + ':person_in_lotus_position_medium_skin_tone:': '🧘🏽', + ':person_in_lotus_position_tone3:': '🧘🏽', + ':person_in_lotus_position_medium_dark_skin_tone:': '🧘🏾', + ':person_in_lotus_position_tone4:': '🧘🏾', + ':person_in_lotus_position_dark_skin_tone:': '🧘🏿', + ':person_in_lotus_position_tone5:': '🧘🏿', + ':person_in_steamy_room_light_skin_tone:': '🧖🏻', + ':person_in_steamy_room_tone1:': '🧖🏻', + ':person_in_steamy_room_medium_light_skin_tone:': '🧖🏼', + ':person_in_steamy_room_tone2:': '🧖🏼', + ':person_in_steamy_room_medium_skin_tone:': '🧖🏽', + ':person_in_steamy_room_tone3:': '🧖🏽', + ':person_in_steamy_room_medium_dark_skin_tone:': '🧖🏾', + ':person_in_steamy_room_tone4:': '🧖🏾', + ':person_in_steamy_room_dark_skin_tone:': '🧖🏿', + ':person_in_steamy_room_tone5:': '🧖🏿', + ':juggling_tone1:': '🤹🏻', + ':juggler_tone1:': '🤹🏻', + ':person_juggling_tone1:': '🤹🏻', + ':juggling_tone2:': '🤹🏼', + ':juggler_tone2:': '🤹🏼', + ':person_juggling_tone2:': '🤹🏼', + ':juggling_tone3:': '🤹🏽', + ':juggler_tone3:': '🤹🏽', + ':person_juggling_tone3:': '🤹🏽', + ':juggling_tone4:': '🤹🏾', + ':juggler_tone4:': '🤹🏾', + ':person_juggling_tone4:': '🤹🏾', + ':juggling_tone5:': '🤹🏿', + ':juggler_tone5:': '🤹🏿', + ':person_juggling_tone5:': '🤹🏿', + ':person_kneeling_light_skin_tone:': '🧎🏻', + ':person_kneeling_tone1:': '🧎🏻', + ':person_kneeling_medium_light_skin_tone:': '🧎🏼', + ':person_kneeling_tone2:': '🧎🏼', + ':person_kneeling_medium_skin_tone:': '🧎🏽', + ':person_kneeling_tone3:': '🧎🏽', + ':person_kneeling_medium_dark_skin_tone:': '🧎🏾', + ':person_kneeling_tone4:': '🧎🏾', + ':person_kneeling_dark_skin_tone:': '🧎🏿', + ':person_kneeling_tone5:': '🧎🏿', + ':lifter_tone1:': '🏋️🏻', + ':weight_lifter_tone1:': '🏋️🏻', + ':person_lifting_weights_tone1:': '🏋️🏻', + ':lifter_tone2:': '🏋️🏼', + ':weight_lifter_tone2:': '🏋️🏼', + ':person_lifting_weights_tone2:': '🏋️🏼', + ':lifter_tone3:': '🏋️🏽', + ':weight_lifter_tone3:': '🏋️🏽', + ':person_lifting_weights_tone3:': '🏋️🏽', + ':lifter_tone4:': '🏋️🏾', + ':weight_lifter_tone4:': '🏋️🏾', + ':person_lifting_weights_tone4:': '🏋️🏾', + ':lifter_tone5:': '🏋️🏿', + ':weight_lifter_tone5:': '🏋️🏿', + ':person_lifting_weights_tone5:': '🏋️🏿', + ':mountain_bicyclist_tone1:': '🚵🏻', + ':person_mountain_biking_tone1:': '🚵🏻', + ':mountain_bicyclist_tone2:': '🚵🏼', + ':person_mountain_biking_tone2:': '🚵🏼', + ':mountain_bicyclist_tone3:': '🚵🏽', + ':person_mountain_biking_tone3:': '🚵🏽', + ':mountain_bicyclist_tone4:': '🚵🏾', + ':person_mountain_biking_tone4:': '🚵🏾', + ':mountain_bicyclist_tone5:': '🚵🏿', + ':person_mountain_biking_tone5:': '🚵🏿', + ':handball_tone1:': '🤾🏻', + ':person_playing_handball_tone1:': '🤾🏻', + ':handball_tone2:': '🤾🏼', + ':person_playing_handball_tone2:': '🤾🏼', + ':handball_tone3:': '🤾🏽', + ':person_playing_handball_tone3:': '🤾🏽', + ':handball_tone4:': '🤾🏾', + ':person_playing_handball_tone4:': '🤾🏾', + ':handball_tone5:': '🤾🏿', + ':person_playing_handball_tone5:': '🤾🏿', + ':water_polo_tone1:': '🤽🏻', + ':person_playing_water_polo_tone1:': '🤽🏻', + ':water_polo_tone2:': '🤽🏼', + ':person_playing_water_polo_tone2:': '🤽🏼', + ':water_polo_tone3:': '🤽🏽', + ':person_playing_water_polo_tone3:': '🤽🏽', + ':water_polo_tone4:': '🤽🏾', + ':person_playing_water_polo_tone4:': '🤽🏾', + ':water_polo_tone5:': '🤽🏿', + ':person_playing_water_polo_tone5:': '🤽🏿', + ':person_with_pouting_face_tone1:': '🙎🏻', + ':person_pouting_tone1:': '🙎🏻', + ':person_with_pouting_face_tone2:': '🙎🏼', + ':person_pouting_tone2:': '🙎🏼', + ':person_with_pouting_face_tone3:': '🙎🏽', + ':person_pouting_tone3:': '🙎🏽', + ':person_with_pouting_face_tone4:': '🙎🏾', + ':person_pouting_tone4:': '🙎🏾', + ':person_with_pouting_face_tone5:': '🙎🏿', + ':person_pouting_tone5:': '🙎🏿', + ':raising_hand_tone1:': '🙋🏻', + ':person_raising_hand_tone1:': '🙋🏻', + ':raising_hand_tone2:': '🙋🏼', + ':person_raising_hand_tone2:': '🙋🏼', + ':raising_hand_tone3:': '🙋🏽', + ':person_raising_hand_tone3:': '🙋🏽', + ':raising_hand_tone4:': '🙋🏾', + ':person_raising_hand_tone4:': '🙋🏾', + ':raising_hand_tone5:': '🙋🏿', + ':person_raising_hand_tone5:': '🙋🏿', + ':rowboat_tone1:': '🚣🏻', + ':person_rowing_boat_tone1:': '🚣🏻', + ':rowboat_tone2:': '🚣🏼', + ':person_rowing_boat_tone2:': '🚣🏼', + ':rowboat_tone3:': '🚣🏽', + ':person_rowing_boat_tone3:': '🚣🏽', + ':rowboat_tone4:': '🚣🏾', + ':person_rowing_boat_tone4:': '🚣🏾', + ':rowboat_tone5:': '🚣🏿', + ':person_rowing_boat_tone5:': '🚣🏿', + ':runner_tone1:': '🏃🏻', + ':person_running_tone1:': '🏃🏻', + ':runner_tone2:': '🏃🏼', + ':person_running_tone2:': '🏃🏼', + ':runner_tone3:': '🏃🏽', + ':person_running_tone3:': '🏃🏽', + ':runner_tone4:': '🏃🏾', + ':person_running_tone4:': '🏃🏾', + ':runner_tone5:': '🏃🏿', + ':person_running_tone5:': '🏃🏿', + ':shrug_tone1:': '🤷🏻', + ':person_shrugging_tone1:': '🤷🏻', + ':shrug_tone2:': '🤷🏼', + ':person_shrugging_tone2:': '🤷🏼', + ':shrug_tone3:': '🤷🏽', + ':person_shrugging_tone3:': '🤷🏽', + ':shrug_tone4:': '🤷🏾', + ':person_shrugging_tone4:': '🤷🏾', + ':shrug_tone5:': '🤷🏿', + ':person_shrugging_tone5:': '🤷🏿', + ':person_standing_light_skin_tone:': '🧍🏻', + ':person_standing_tone1:': '🧍🏻', + ':person_standing_medium_light_skin_tone:': '🧍🏼', + ':person_standing_tone2:': '🧍🏼', + ':person_standing_medium_skin_tone:': '🧍🏽', + ':person_standing_tone3:': '🧍🏽', + ':person_standing_medium_dark_skin_tone:': '🧍🏾', + ':person_standing_tone4:': '🧍🏾', + ':person_standing_dark_skin_tone:': '🧍🏿', + ':person_standing_tone5:': '🧍🏿', + ':surfer_tone1:': '🏄🏻', + ':person_surfing_tone1:': '🏄🏻', + ':surfer_tone2:': '🏄🏼', + ':person_surfing_tone2:': '🏄🏼', + ':surfer_tone3:': '🏄🏽', + ':person_surfing_tone3:': '🏄🏽', + ':surfer_tone4:': '🏄🏾', + ':person_surfing_tone4:': '🏄🏾', + ':surfer_tone5:': '🏄🏿', + ':person_surfing_tone5:': '🏄🏿', + ':swimmer_tone1:': '🏊🏻', + ':person_swimming_tone1:': '🏊🏻', + ':swimmer_tone2:': '🏊🏼', + ':person_swimming_tone2:': '🏊🏼', + ':swimmer_tone3:': '🏊🏽', + ':person_swimming_tone3:': '🏊🏽', + ':swimmer_tone4:': '🏊🏾', + ':person_swimming_tone4:': '🏊🏾', + ':swimmer_tone5:': '🏊🏿', + ':person_swimming_tone5:': '🏊🏿', + ':information_desk_person_tone1:': '💁🏻', + ':person_tipping_hand_tone1:': '💁🏻', + ':information_desk_person_tone2:': '💁🏼', + ':person_tipping_hand_tone2:': '💁🏼', + ':information_desk_person_tone3:': '💁🏽', + ':person_tipping_hand_tone3:': '💁🏽', + ':information_desk_person_tone4:': '💁🏾', + ':person_tipping_hand_tone4:': '💁🏾', + ':information_desk_person_tone5:': '💁🏿', + ':person_tipping_hand_tone5:': '💁🏿', + ':walking_tone1:': '🚶🏻', + ':person_walking_tone1:': '🚶🏻', + ':walking_tone2:': '🚶🏼', + ':person_walking_tone2:': '🚶🏼', + ':walking_tone3:': '🚶🏽', + ':person_walking_tone3:': '🚶🏽', + ':walking_tone4:': '🚶🏾', + ':person_walking_tone4:': '🚶🏾', + ':walking_tone5:': '🚶🏿', + ':person_walking_tone5:': '🚶🏿', + ':man_with_turban_tone1:': '👳🏻', + ':person_wearing_turban_tone1:': '👳🏻', + ':man_with_turban_tone2:': '👳🏼', + ':person_wearing_turban_tone2:': '👳🏼', + ':man_with_turban_tone3:': '👳🏽', + ':person_wearing_turban_tone3:': '👳🏽', + ':man_with_turban_tone4:': '👳🏾', + ':person_wearing_turban_tone4:': '👳🏾', + ':man_with_turban_tone5:': '👳🏿', + ':person_wearing_turban_tone5:': '👳🏿', + ':pinching_hand_light_skin_tone:': '🤏🏻', + ':pinching_hand_tone1:': '🤏🏻', + ':pinching_hand_medium_light_skin_tone:': '🤏🏼', + ':pinching_hand_tone2:': '🤏🏼', + ':pinching_hand_medium_skin_tone:': '🤏🏽', + ':pinching_hand_tone3:': '🤏🏽', + ':pinching_hand_medium_dark_skin_tone:': '🤏🏾', + ':pinching_hand_tone4:': '🤏🏾', + ':pinching_hand_dark_skin_tone:': '🤏🏿', + ':pinching_hand_tone5:': '🤏🏿', + ':point_down_tone1:': '👇🏻', + ':point_down_tone2:': '👇🏼', + ':point_down_tone3:': '👇🏽', + ':point_down_tone4:': '👇🏾', + ':point_down_tone5:': '👇🏿', + ':point_left_tone1:': '👈🏻', + ':point_left_tone2:': '👈🏼', + ':point_left_tone3:': '👈🏽', + ':point_left_tone4:': '👈🏾', + ':point_left_tone5:': '👈🏿', + ':point_right_tone1:': '👉🏻', + ':point_right_tone2:': '👉🏼', + ':point_right_tone3:': '👉🏽', + ':point_right_tone4:': '👉🏾', + ':point_right_tone5:': '👉🏿', + ':point_up_2_tone1:': '👆🏻', + ':point_up_2_tone2:': '👆🏼', + ':point_up_2_tone3:': '👆🏽', + ':point_up_2_tone4:': '👆🏾', + ':point_up_2_tone5:': '👆🏿', + ':cop_tone1:': '👮🏻', + ':police_officer_tone1:': '👮🏻', + ':cop_tone2:': '👮🏼', + ':police_officer_tone2:': '👮🏼', + ':cop_tone3:': '👮🏽', + ':police_officer_tone3:': '👮🏽', + ':cop_tone4:': '👮🏾', + ':police_officer_tone4:': '👮🏾', + ':cop_tone5:': '👮🏿', + ':police_officer_tone5:': '👮🏿', + ':pray_tone1:': '🙏🏻', + ':pray_tone2:': '🙏🏼', + ':pray_tone3:': '🙏🏽', + ':pray_tone4:': '🙏🏾', + ':pray_tone5:': '🙏🏿', + ':expecting_woman_tone1:': '🤰🏻', + ':pregnant_woman_tone1:': '🤰🏻', + ':expecting_woman_tone2:': '🤰🏼', + ':pregnant_woman_tone2:': '🤰🏼', + ':expecting_woman_tone3:': '🤰🏽', + ':pregnant_woman_tone3:': '🤰🏽', + ':expecting_woman_tone4:': '🤰🏾', + ':pregnant_woman_tone4:': '🤰🏾', + ':expecting_woman_tone5:': '🤰🏿', + ':pregnant_woman_tone5:': '🤰🏿', + ':prince_tone1:': '🤴🏻', + ':prince_tone2:': '🤴🏼', + ':prince_tone3:': '🤴🏽', + ':prince_tone4:': '🤴🏾', + ':prince_tone5:': '🤴🏿', + ':princess_tone1:': '👸🏻', + ':princess_tone2:': '👸🏼', + ':princess_tone3:': '👸🏽', + ':princess_tone4:': '👸🏾', + ':princess_tone5:': '👸🏿', + ':punch_tone1:': '👊🏻', + ':punch_tone2:': '👊🏼', + ':punch_tone3:': '👊🏽', + ':punch_tone4:': '👊🏾', + ':punch_tone5:': '👊🏿', + ':gay_pride_flag:': '🏳️‍🌈', + ':rainbow_flag:': '🏳️‍🌈', + ':back_of_hand_tone1:': '🤚🏻', + ':raised_back_of_hand_tone1:': '🤚🏻', + ':back_of_hand_tone2:': '🤚🏼', + ':raised_back_of_hand_tone2:': '🤚🏼', + ':back_of_hand_tone3:': '🤚🏽', + ':raised_back_of_hand_tone3:': '🤚🏽', + ':back_of_hand_tone4:': '🤚🏾', + ':raised_back_of_hand_tone4:': '🤚🏾', + ':back_of_hand_tone5:': '🤚🏿', + ':raised_back_of_hand_tone5:': '🤚🏿', + ':raised_hands_tone1:': '🙌🏻', + ':raised_hands_tone2:': '🙌🏼', + ':raised_hands_tone3:': '🙌🏽', + ':raised_hands_tone4:': '🙌🏾', + ':raised_hands_tone5:': '🙌🏿', + ':right_fist_tone1:': '🤜🏻', + ':right_facing_fist_tone1:': '🤜🏻', + ':right_fist_tone2:': '🤜🏼', + ':right_facing_fist_tone2:': '🤜🏼', + ':right_fist_tone3:': '🤜🏽', + ':right_facing_fist_tone3:': '🤜🏽', + ':right_fist_tone4:': '🤜🏾', + ':right_facing_fist_tone4:': '🤜🏾', + ':right_fist_tone5:': '🤜🏿', + ':right_facing_fist_tone5:': '🤜🏿', + ':santa_tone1:': '🎅🏻', + ':santa_tone2:': '🎅🏼', + ':santa_tone3:': '🎅🏽', + ':santa_tone4:': '🎅🏾', + ':santa_tone5:': '🎅🏿', + ':selfie_tone1:': '🤳🏻', + ':selfie_tone2:': '🤳🏼', + ':selfie_tone3:': '🤳🏽', + ':selfie_tone4:': '🤳🏾', + ':selfie_tone5:': '🤳🏿', + ':service_dog:': '🐕‍🦺', + ':snowboarder_light_skin_tone:': '🏂🏻', + ':snowboarder_tone1:': '🏂🏻', + ':snowboarder_medium_light_skin_tone:': '🏂🏼', + ':snowboarder_tone2:': '🏂🏼', + ':snowboarder_medium_skin_tone:': '🏂🏽', + ':snowboarder_tone3:': '🏂🏽', + ':snowboarder_medium_dark_skin_tone:': '🏂🏾', + ':snowboarder_tone4:': '🏂🏾', + ':snowboarder_dark_skin_tone:': '🏂🏿', + ':snowboarder_tone5:': '🏂🏿', + ':superhero_light_skin_tone:': '🦸🏻', + ':superhero_tone1:': '🦸🏻', + ':superhero_medium_light_skin_tone:': '🦸🏼', + ':superhero_tone2:': '🦸🏼', + ':superhero_medium_skin_tone:': '🦸🏽', + ':superhero_tone3:': '🦸🏽', + ':superhero_medium_dark_skin_tone:': '🦸🏾', + ':superhero_tone4:': '🦸🏾', + ':superhero_dark_skin_tone:': '🦸🏿', + ':superhero_tone5:': '🦸🏿', + ':supervillain_light_skin_tone:': '🦹🏻', + ':supervillain_tone1:': '🦹🏻', + ':supervillain_medium_light_skin_tone:': '🦹🏼', + ':supervillain_tone2:': '🦹🏼', + ':supervillain_medium_skin_tone:': '🦹🏽', + ':supervillain_tone3:': '🦹🏽', + ':supervillain_medium_dark_skin_tone:': '🦹🏾', + ':supervillain_tone4:': '🦹🏾', + ':supervillain_dark_skin_tone:': '🦹🏿', + ':supervillain_tone5:': '🦹🏿', + ':-1_tone1:': '👎🏻', + ':thumbdown_tone1:': '👎🏻', + ':thumbsdown_tone1:': '👎🏻', + ':-1_tone2:': '👎🏼', + ':thumbdown_tone2:': '👎🏼', + ':thumbsdown_tone2:': '👎🏼', + ':-1_tone3:': '👎🏽', + ':thumbdown_tone3:': '👎🏽', + ':thumbsdown_tone3:': '👎🏽', + ':-1_tone4:': '👎🏾', + ':thumbdown_tone4:': '👎🏾', + ':thumbsdown_tone4:': '👎🏾', + ':-1_tone5:': '👎🏿', + ':thumbdown_tone5:': '👎🏿', + ':thumbsdown_tone5:': '👎🏿', + ':+1_tone1:': '👍🏻', + ':thumbup_tone1:': '👍🏻', + ':thumbsup_tone1:': '👍🏻', + ':+1_tone2:': '👍🏼', + ':thumbup_tone2:': '👍🏼', + ':thumbsup_tone2:': '👍🏼', + ':+1_tone3:': '👍🏽', + ':thumbup_tone3:': '👍🏽', + ':thumbsup_tone3:': '👍🏽', + ':+1_tone4:': '👍🏾', + ':thumbup_tone4:': '👍🏾', + ':thumbsup_tone4:': '👍🏾', + ':+1_tone5:': '👍🏿', + ':thumbup_tone5:': '👍🏿', + ':thumbsup_tone5:': '👍🏿', + ':united_nations:': '🇺🇳', + ':vampire_light_skin_tone:': '🧛🏻', + ':vampire_tone1:': '🧛🏻', + ':vampire_medium_light_skin_tone:': '🧛🏼', + ':vampire_tone2:': '🧛🏼', + ':vampire_medium_skin_tone:': '🧛🏽', + ':vampire_tone3:': '🧛🏽', + ':vampire_medium_dark_skin_tone:': '🧛🏾', + ':vampire_tone4:': '🧛🏾', + ':vampire_dark_skin_tone:': '🧛🏿', + ':vampire_tone5:': '🧛🏿', + ':raised_hand_with_part_between_middle_and_ring_fingers_tone1:': '🖖🏻', + ':vulcan_tone1:': '🖖🏻', + ':raised_hand_with_part_between_middle_and_ring_fingers_tone2:': '🖖🏼', + ':vulcan_tone2:': '🖖🏼', + ':raised_hand_with_part_between_middle_and_ring_fingers_tone3:': '🖖🏽', + ':vulcan_tone3:': '🖖🏽', + ':raised_hand_with_part_between_middle_and_ring_fingers_tone4:': '🖖🏾', + ':vulcan_tone4:': '🖖🏾', + ':raised_hand_with_part_between_middle_and_ring_fingers_tone5:': '🖖🏿', + ':vulcan_tone5:': '🖖🏿', + ':wave_tone1:': '👋🏻', + ':wave_tone2:': '👋🏼', + ':wave_tone3:': '👋🏽', + ':wave_tone4:': '👋🏾', + ':wave_tone5:': '👋🏿', + ':woman_and_man_holding_hands_light_skin_tone:': '👫🏻', + ':woman_and_man_holding_hands_tone1:': '👫🏻', + ':woman_and_man_holding_hands_medium_light_skin_tone:': '👫🏼', + ':woman_and_man_holding_hands_tone2:': '👫🏼', + ':woman_and_man_holding_hands_medium_skin_tone:': '👫🏽', + ':woman_and_man_holding_hands_tone3:': '👫🏽', + ':woman_and_man_holding_hands_medium_dark_skin_tone:': '👫🏾', + ':woman_and_man_holding_hands_tone4:': '👫🏾', + ':woman_and_man_holding_hands_dark_skin_tone:': '👫🏿', + ':woman_and_man_holding_hands_tone5:': '👫🏿', + ':woman_artist:': '👩‍🎨', + ':woman_astronaut:': '👩‍🚀', + ':woman_bald:': '👩‍🦲', + ':woman_cook:': '👩‍🍳', + ':woman_curly_haired:': '👩‍🦱', + ':woman_factory_worker:': '👩‍🏭', + ':woman_farmer:': '👩‍🌾', + ':woman_firefighter:': '👩‍🚒', + ':woman_in_manual_wheelchair:': '👩‍🦽', + ':woman_in_motorized_wheelchair:': '👩‍🦼', + ':woman_mechanic:': '👩‍🔧', + ':woman_office_worker:': '👩‍💼', + ':woman_red_haired:': '👩‍🦰', + ':woman_scientist:': '👩‍🔬', + ':woman_singer:': '👩‍🎤', + ':woman_student:': '👩‍🎓', + ':woman_teacher:': '👩‍🏫', + ':woman_technologist:': '👩‍💻', + ':woman_tone1:': '👩🏻', + ':woman_tone2:': '👩🏼', + ':woman_tone3:': '👩🏽', + ':woman_tone4:': '👩🏾', + ':woman_tone5:': '👩🏿', + ':woman_white_haired:': '👩‍🦳', + ':woman_with_headscarf_light_skin_tone:': '🧕🏻', + ':woman_with_headscarf_tone1:': '🧕🏻', + ':woman_with_headscarf_medium_light_skin_tone:': '🧕🏼', + ':woman_with_headscarf_tone2:': '🧕🏼', + ':woman_with_headscarf_medium_skin_tone:': '🧕🏽', + ':woman_with_headscarf_tone3:': '🧕🏽', + ':woman_with_headscarf_medium_dark_skin_tone:': '🧕🏾', + ':woman_with_headscarf_tone4:': '🧕🏾', + ':woman_with_headscarf_dark_skin_tone:': '🧕🏿', + ':woman_with_headscarf_tone5:': '🧕🏿', + ':woman_with_probing_cane:': '👩‍🦯', + ':women_holding_hands_light_skin_tone:': '👭🏻', + ':women_holding_hands_tone1:': '👭🏻', + ':women_holding_hands_medium_light_skin_tone:': '👭🏼', + ':women_holding_hands_tone2:': '👭🏼', + ':women_holding_hands_medium_skin_tone:': '👭🏽', + ':women_holding_hands_tone3:': '👭🏽', + ':women_holding_hands_medium_dark_skin_tone:': '👭🏾', + ':women_holding_hands_tone4:': '👭🏾', + ':women_holding_hands_dark_skin_tone:': '👭🏿', + ':women_holding_hands_tone5:': '👭🏿', + ':blond-haired_man:': '👱‍♂️', + ':blond-haired_woman:': '👱‍♀️', + ':deaf_man:': '🧏‍♂️', + ':deaf_woman:': '🧏‍♀️', + ':fist_tone1:': '✊🏻', + ':fist_tone2:': '✊🏼', + ':fist_tone3:': '✊🏽', + ':fist_tone4:': '✊🏾', + ':fist_tone5:': '✊🏿', + ':man_biking:': '🚴‍♂️', + ':man_bowing:': '🙇‍♂️', + ':man_cartwheeling:': '🤸‍♂️', + ':man_climbing:': '🧗‍♂️', + ':man_construction_worker:': '👷‍♂️', + ':man_detective:': '🕵️‍♂️', + ':man_elf:': '🧝‍♂️', + ':man_facepalming:': '🤦‍♂️', + ':man_fairy:': '🧚‍♂️', + ':man_frowning:': '🙍‍♂️', + ':man_genie:': '🧞‍♂️', + ':man_gesturing_no:': '🙅‍♂️', + ':man_gesturing_ok:': '🙆‍♂️', + ':man_getting_face_massage:': '💆‍♂️', + ':man_getting_haircut:': '💇‍♂️', + ':man_golfing:': '🏌️‍♂️', + ':man_guard:': '💂‍♂️', + ':man_health_worker:': '👨‍⚕️', + ':man_in_lotus_position:': '🧘‍♂️', + ':man_in_steamy_room:': '🧖‍♂️', + ':man_judge:': '👨‍⚖️', + ':man_juggling:': '🤹‍♂️', + ':man_kneeling:': '🧎‍♂️', + ':man_lifting_weights:': '🏋️‍♂️', + ':man_mage:': '🧙‍♂️', + ':man_mountain_biking:': '🚵‍♂️', + ':man_pilot:': '👨‍✈️', + ':man_playing_handball:': '🤾‍♂️', + ':man_playing_water_polo:': '🤽‍♂️', + ':man_police_officer:': '👮‍♂️', + ':man_pouting:': '🙎‍♂️', + ':man_raising_hand:': '🙋‍♂️', + ':man_rowing_boat:': '🚣‍♂️', + ':man_running:': '🏃‍♂️', + ':man_shrugging:': '🤷‍♂️', + ':man_standing:': '🧍‍♂️', + ':man_superhero:': '🦸‍♂️', + ':man_supervillain:': '🦹‍♂️', + ':man_surfing:': '🏄‍♂️', + ':man_swimming:': '🏊‍♂️', + ':man_tipping_hand:': '💁‍♂️', + ':man_vampire:': '🧛‍♂️', + ':man_walking:': '🚶‍♂️', + ':man_wearing_turban:': '👳‍♂️', + ':man_zombie:': '🧟‍♂️', + ':men_with_bunny_ears_partying:': '👯‍♂️', + ':men_wrestling:': '🤼♂️', + ':mermaid:': '🧜‍♀️', + ':merman:': '🧜‍♂️', + ':basketball_player_tone1:': '⛹️🏻', + ':person_with_ball_tone1:': '⛹️🏻', + ':person_bouncing_ball_tone1:': '⛹️🏻', + ':basketball_player_tone2:': '⛹️🏼', + ':person_with_ball_tone2:': '⛹️🏼', + ':person_bouncing_ball_tone2:': '⛹️🏼', + ':basketball_player_tone3:': '⛹️🏽', + ':person_with_ball_tone3:': '⛹️🏽', + ':person_bouncing_ball_tone3:': '⛹️🏽', + ':basketball_player_tone4:': '⛹️🏾', + ':person_with_ball_tone4:': '⛹️🏾', + ':person_bouncing_ball_tone4:': '⛹️🏾', + ':basketball_player_tone5:': '⛹️🏿', + ':person_with_ball_tone5:': '⛹️🏿', + ':person_bouncing_ball_tone5:': '⛹️🏿', + ':pirate_flag:': '🏴‍☠️', + ':point_up_tone1:': '☝️🏻', + ':point_up_tone2:': '☝️🏼', + ':point_up_tone3:': '☝️🏽', + ':point_up_tone4:': '☝️🏾', + ':point_up_tone5:': '☝️🏿', + ':raised_hand_tone1:': '✋🏻', + ':raised_hand_tone2:': '✋🏼', + ':raised_hand_tone3:': '✋🏽', + ':raised_hand_tone4:': '✋🏾', + ':raised_hand_tone5:': '✋🏿', + ':v_tone1:': '✌️🏻', + ':v_tone2:': '✌️🏼', + ':v_tone3:': '✌️🏽', + ':v_tone4:': '✌️🏾', + ':v_tone5:': '✌️🏿', + ':woman_biking:': '🚴‍♀️', + ':woman_bowing:': '🙇‍♀️', + ':woman_cartwheeling:': '🤸‍♀️', + ':woman_climbing:': '🧗‍♀️', + ':woman_construction_worker:': '👷‍♀️', + ':woman_detective:': '🕵️‍♀️', + ':woman_elf:': '🧝‍♀️', + ':woman_facepalming:': '🤦‍♀️', + ':woman_fairy:': '🧚‍♀️', + ':woman_frowning:': '🙍‍♀️', + ':woman_genie:': '🧞‍♀️', + ':woman_gesturing_no:': '🙅‍♀️', + ':woman_gesturing_ok:': '🙆‍♀️', + ':woman_getting_face_massage:': '💆‍♀️', + ':woman_getting_haircut:': '💇‍♀️', + ':woman_golfing:': '🏌️‍♀️', + ':woman_guard:': '💂‍♀️', + ':woman_health_worker:': '👩‍⚕️', + ':woman_in_lotus_position:': '🧘‍♀️', + ':woman_in_steamy_room:': '🧖‍♀️', + ':woman_judge:': '👩‍⚖️', + ':woman_juggling:': '🤹‍♀️', + ':woman_kneeling:': '🧎‍♀️', + ':woman_lifting_weights:': '🏋️‍♀️', + ':woman_mage:': '🧙‍♀️', + ':woman_mountain_biking:': '🚵‍♀️', + ':woman_pilot:': '👩‍✈️', + ':woman_playing_handball:': '🤾‍♀️', + ':woman_playing_water_polo:': '🤽‍♀️', + ':woman_police_officer:': '👮‍♀️', + ':woman_pouting:': '🙎‍♀️', + ':woman_raising_hand:': '🙋‍♀️', + ':woman_rowing_boat:': '🚣‍♀️', + ':woman_running:': '🏃‍♀️', + ':woman_shrugging:': '🤷‍♀️', + ':woman_standing:': '🧍‍♀️', + ':woman_superhero:': '🦸‍♀️', + ':woman_supervillain:': '🦹‍♀️', + ':woman_surfing:': '🏄‍♀️', + ':woman_swimming:': '🏊‍♀️', + ':woman_tipping_hand:': '💁‍♀️', + ':woman_vampire:': '🧛‍♀️', + ':woman_walking:': '🚶‍♀️', + ':woman_wearing_turban:': '👳‍♀️', + ':woman_zombie:': '🧟‍♀️', + ':women_with_bunny_ears_partying:': '👯‍♀️', + ':women_wrestling:': '🤼♀️', + ':writing_hand_tone1:': '✍️🏻', + ':writing_hand_tone2:': '✍️🏼', + ':writing_hand_tone3:': '✍️🏽', + ':writing_hand_tone4:': '✍️🏾', + ':writing_hand_tone5:': '✍️🏿', + ':keycap_asterisk:': '*️⃣', + ':asterisk:': '*️⃣', + ':eight:': '8️⃣', + ':five:': '5️⃣', + ':four:': '4️⃣', + ':hash:': '#️⃣', + ':man_bouncing_ball:': '⛹️‍♂️', + ':nine:': '9️⃣', + ':one:': '1️⃣', + ':seven:': '7️⃣', + ':six:': '6️⃣', + ':three:': '3️⃣', + ':two:': '2️⃣', + ':woman_bouncing_ball:': '⛹️‍♀️', + ':zero:': '0️⃣', + ':100:': '💯', + ':1234:': '🔢', + ':8ball:': '🎱', + ':a:': '🅰️', + ':ab:': '🆎', + ':abacus:': '🧮', + ':abc:': '🔤', + ':abcd:': '🔡', + ':accept:': '🉑', + ':adhesive_bandage:': '🩹', + ':adult:': '🧑', + ':aerial_tramway:': '🚡', + ':airplane_arriving:': '🛬', + ':airplane_departure:': '🛫', + ':small_airplane:': '🛩️', + ':airplane_small:': '🛩️', + ':alien:': '👽', + ':ambulance:': '🚑', + ':amphora:': '🏺', + ':angel:': '👼', + ':anger:': '💢', + ':right_anger_bubble:': '🗯️', + ':anger_right:': '🗯️', + ':angry:': '😠', + ':anguished:': '😧', + ':ant:': '🐜', + ':apple:': '🍎', + ':arrow_down_small:': '🔽', + ':arrow_up_small:': '🔼', + ':arrows_clockwise:': '🔃', + ':arrows_counterclockwise:': '🔄', + ':art:': '🎨', + ':articulated_lorry:': '🚛', + ':astonished:': '😲', + ':athletic_shoe:': '👟', + ':atm:': '🏧', + ':auto_rickshaw:': '🛺', + ':avocado:': '🥑', + ':axe:': '🪓', + ':b:': '🅱️', + ':baby:': '👶', + ':baby_bottle:': '🍼', + ':baby_chick:': '🐤', + ':baby_symbol:': '🚼', + ':back:': '🔙', + ':bacon:': '🥓', + ':badger:': '🦡', + ':badminton:': '🏸', + ':bagel:': '🥯', + ':baggage_claim:': '🛄', + ':bald:': '🦲', + ':ballet_shoes:': '🩰', + ':balloon:': '🎈', + ':ballot_box_with_ballot:': '🗳️', + ':ballot_box:': '🗳️', + ':bamboo:': '🎍', + ':banana:': '🍌', + ':banjo:': '🪕', + ':bank:': '🏦', + ':bar_chart:': '📊', + ':barber:': '💈', + ':basket:': '🧺', + ':basketball:': '🏀', + ':bat:': '🦇', + ':bath:': '🛀', + ':bathtub:': '🛁', + ':battery:': '🔋', + ':beach_with_umbrella:': '🏖️', + ':beach:': '🏖️', + ':bear:': '🐻', + ':bearded_person:': '🧔', + ':bed:': '🛏️', + ':bee:': '🐝', + ':beer:': '🍺', + ':beers:': '🍻', + ':beetle:': '🐞', + ':beginner:': '🔰', + ':bell:': '🔔', + ':bellhop_bell:': '🛎️', + ':bellhop:': '🛎️', + ':bento:': '🍱', + ':beverage_box:': '🧃', + ':bike:': '🚲', + ':bikini:': '👙', + ':billed_cap:': '🧢', + ':bird:': '🐦', + ':birthday:': '🎂', + ':black_heart:': '🖤', + ':black_joker:': '🃏', + ':black_square_button:': '🔲', + ':person_with_blond_hair:': '👱', + ':blond_haired_person:': '👱', + ':blossom:': '🌼', + ':blowfish:': '🐡', + ':blue_book:': '📘', + ':blue_car:': '🚙', + ':blue_circle:': '🔵', + ':blue_heart:': '💙', + ':blue_square:': '🟦', + ':blush:': '😊', + ':boar:': '🐗', + ':bomb:': '💣', + ':bone:': '🦴', + ':book:': '📖', + ':bookmark:': '🔖', + ':bookmark_tabs:': '📑', + ':books:': '📚', + ':boom:': '💥', + ':boot:': '👢', + ':bouquet:': '💐', + ':archery:': '🏹', + ':bow_and_arrow:': '🏹', + ':bowl_with_spoon:': '🥣', + ':bowling:': '🎳', + ':boxing_gloves:': '🥊', + ':boxing_glove:': '🥊', + ':boy:': '👦', + ':brain:': '🧠', + ':bread:': '🍞', + ':breast_feeding:': '🤱', + ':bricks:': '🧱', + ':bride_with_veil:': '👰', + ':bridge_at_night:': '🌉', + ':briefcase:': '💼', + ':briefs:': '🩲', + ':broccoli:': '🥦', + ':broken_heart:': '💔', + ':broom:': '🧹', + ':brown_circle:': '🟤', + ':brown_heart:': '🤎', + ':brown_square:': '🟫', + ':bug:': '🐛', + ':bulb:': '💡', + ':bullettrain_front:': '🚅', + ':bullettrain_side:': '🚄', + ':burrito:': '🌯', + ':bus:': '🚌', + ':busstop:': '🚏', + ':bust_in_silhouette:': '👤', + ':busts_in_silhouette:': '👥', + ':butter:': '🧈', + ':butterfly:': '🦋', + ':cactus:': '🌵', + ':cake:': '🍰', + ':calendar:': '📆', + ':spiral_calendar_pad:': '🗓️', + ':calendar_spiral:': '🗓️', + ':call_me_hand:': '🤙', + ':call_me:': '🤙', + ':calling:': '📲', + ':camel:': '🐫', + ':camera:': '📷', + ':camera_with_flash:': '📸', + ':camping:': '🏕️', + ':candle:': '🕯️', + ':candy:': '🍬', + ':canned_food:': '🥫', + ':kayak:': '🛶', + ':canoe:': '🛶', + ':capital_abcd:': '🔠', + ':card_file_box:': '🗃️', + ':card_box:': '🗃️', + ':card_index:': '📇', + ':carousel_horse:': '🎠', + ':carrot:': '🥕', + ':cat2:': '🐈', + ':cat:': '🐱', + ':cd:': '💿', + ':chair:': '🪑', + ':bottle_with_popping_cork:': '🍾', + ':champagne:': '🍾', + ':clinking_glass:': '🥂', + ':champagne_glass:': '🥂', + ':chart:': '💹', + ':chart_with_downwards_trend:': '📉', + ':chart_with_upwards_trend:': '📈', + ':checkered_flag:': '🏁', + ':cheese_wedge:': '🧀', + ':cheese:': '🧀', + ':cherries:': '🍒', + ':cherry_blossom:': '🌸', + ':chestnut:': '🌰', + ':chicken:': '🐔', + ':child:': '🧒', + ':children_crossing:': '🚸', + ':chipmunk:': '🐿️', + ':chocolate_bar:': '🍫', + ':chopsticks:': '🥢', + ':christmas_tree:': '🎄', + ':cinema:': '🎦', + ':circus_tent:': '🎪', + ':city_dusk:': '🌆', + ':city_sunrise:': '🌇', + ':city_sunset:': '🌇', + ':cityscape:': '🏙️', + ':cl:': '🆑', + ':clap:': '👏', + ':clapper:': '🎬', + ':classical_building:': '🏛️', + ':clipboard:': '📋', + ':clock1030:': '🕥', + ':clock10:': '🕙', + ':clock1130:': '🕦', + ':clock11:': '🕚', + ':clock1230:': '🕧', + ':clock12:': '🕛', + ':clock130:': '🕜', + ':clock1:': '🕐', + ':clock230:': '🕝', + ':clock2:': '🕑', + ':clock330:': '🕞', + ':clock3:': '🕒', + ':clock430:': '🕟', + ':clock4:': '🕓', + ':clock530:': '🕠', + ':clock5:': '🕔', + ':clock630:': '🕡', + ':clock6:': '🕕', + ':clock730:': '🕢', + ':clock7:': '🕖', + ':clock830:': '🕣', + ':clock8:': '🕗', + ':clock930:': '🕤', + ':clock9:': '🕘', + ':mantlepiece_clock:': '🕰️', + ':clock:': '🕰️', + ':closed_book:': '📕', + ':closed_lock_with_key:': '🔐', + ':closed_umbrella:': '🌂', + ':cloud_with_lightning:': '🌩️', + ':cloud_lightning:': '🌩️', + ':cloud_with_rain:': '🌧️', + ':cloud_rain:': '🌧️', + ':cloud_with_snow:': '🌨️', + ':cloud_snow:': '🌨️', + ':cloud_with_tornado:': '🌪️', + ':cloud_tornado:': '🌪️', + ':clown_face:': '🤡', + ':clown:': '🤡', + ':coat:': '🧥', + ':cocktail:': '🍸', + ':coconut:': '🥥', + ':cold_face:': '🥶', + ':cold_sweat:': '😰', + ':compass:': '🧭', + ':compression:': '🗜️', + ':computer:': '💻', + ':confetti_ball:': '🎊', + ':confounded:': '😖', + ':confused:': '😕', + ':construction:': '🚧', + ':building_construction:': '🏗️', + ':construction_site:': '🏗️', + ':construction_worker:': '👷', + ':control_knobs:': '🎛️', + ':convenience_store:': '🏪', + ':cookie:': '🍪', + ':cooking:': '🍳', + ':cool:': '🆒', + ':corn:': '🌽', + ':couch_and_lamp:': '🛋️', + ':couch:': '🛋️', + ':couple:': '👫', + ':couple_with_heart:': '💑', + ':couplekiss:': '💏', + ':cow2:': '🐄', + ':cow:': '🐮', + ':face_with_cowboy_hat:': '🤠', + ':cowboy:': '🤠', + ':crab:': '🦀', + ':lower_left_crayon:': '🖍️', + ':crayon:': '🖍️', + ':credit_card:': '💳', + ':crescent_moon:': '🌙', + ':cricket:': '🦗', + ':cricket_bat_ball:': '🏏', + ':cricket_game:': '🏏', + ':crocodile:': '🐊', + ':croissant:': '🥐', + ':crossed_flags:': '🎌', + ':crown:': '👑', + ':passenger_ship:': '🛳️', + ':cruise_ship:': '🛳️', + ':cry:': '😢', + ':crying_cat_face:': '😿', + ':crystal_ball:': '🔮', + ':cucumber:': '🥒', + ':cup_with_straw:': '🥤', + ':cupcake:': '🧁', + ':cupid:': '💘', + ':curling_stone:': '🥌', + ':curly_haired:': '🦱', + ':currency_exchange:': '💱', + ':curry:': '🍛', + ':pudding:': '🍮', + ':flan:': '🍮', + ':custard:': '🍮', + ':customs:': '🛃', + ':cut_of_meat:': '🥩', + ':cyclone:': '🌀', + ':dagger_knife:': '🗡️', + ':dagger:': '🗡️', + ':dancer:': '💃', + ':dango:': '🍡', + ':dark_sunglasses:': '🕶️', + ':dart:': '🎯', + ':dash:': '💨', + ':date:': '📅', + ':deaf_person:': '🧏', + ':deciduous_tree:': '🌳', + ':deer:': '🦌', + ':department_store:': '🏬', + ':desert:': '🏜️', + ':desktop_computer:': '🖥️', + ':desktop:': '🖥️', + ':spy:': '🕵️', + ':sleuth_or_spy:': '🕵️', + ':detective:': '🕵️', + ':diamond_shape_with_a_dot_inside:': '💠', + ':disappointed:': '😞', + ':disappointed_relieved:': '😥', + ':card_index_dividers:': '🗂️', + ':dividers:': '🗂️', + ':diving_mask:': '🤿', + ':diya_lamp:': '🪔', + ':dizzy:': '💫', + ':dizzy_face:': '😵', + ':dna:': '🧬', + ':do_not_litter:': '🚯', + ':dog2:': '🐕', + ':dog:': '🐶', + ':dollar:': '💵', + ':dolls:': '🎎', + ':dolphin:': '🐬', + ':door:': '🚪', + ':doughnut:': '🍩', + ':dove_of_peace:': '🕊️', + ':dove:': '🕊️', + ':dragon:': '🐉', + ':dragon_face:': '🐲', + ':dress:': '👗', + ':dromedary_camel:': '🐪', + ':drool:': '🤤', + ':drooling_face:': '🤤', + ':drop_of_blood:': '🩸', + ':droplet:': '💧', + ':drum_with_drumsticks:': '🥁', + ':drum:': '🥁', + ':duck:': '🦆', + ':dumpling:': '🥟', + ':dvd:': '📀', + ':email:': '📧', + ':e-mail:': '📧', + ':eagle:': '🦅', + ':ear:': '👂', + ':ear_of_rice:': '🌾', + ':ear_with_hearing_aid:': '🦻', + ':earth_africa:': '🌍', + ':earth_americas:': '🌎', + ':earth_asia:': '🌏', + ':egg:': '🥚', + ':eggplant:': '🍆', + ':electric_plug:': '🔌', + ':elephant:': '🐘', + ':elf:': '🧝', + ':end:': '🔚', + ':envelope_with_arrow:': '📩', + ':euro:': '💶', + ':european_castle:': '🏰', + ':european_post_office:': '🏤', + ':evergreen_tree:': '🌲', + ':exploding_head:': '🤯', + ':expressionless:': '😑', + ':eye:': '👁️', + ':eyeglasses:': '👓', + ':eyes:': '👀', + ':face_vomiting:': '🤮', + ':face_with_hand_over_mouth:': '🤭', + ':face_with_monocle:': '🧐', + ':face_with_raised_eyebrow:': '🤨', + ':face_with_symbols_over_mouth:': '🤬', + ':factory:': '🏭', + ':fairy:': '🧚', + ':falafel:': '🧆', + ':fallen_leaf:': '🍂', + ':family:': '👪', + ':fax:': '📠', + ':fearful:': '😨', + ':paw_prints:': '🐾', + ':feet:': '🐾', + ':ferris_wheel:': '🎡', + ':field_hockey:': '🏑', + ':file_cabinet:': '🗄️', + ':file_folder:': '📁', + ':film_frames:': '🎞️', + ':hand_with_index_and_middle_finger_crossed:': '🤞', + ':fingers_crossed:': '🤞', + ':flame:': '🔥', + ':fire:': '🔥', + ':fire_engine:': '🚒', + ':fire_extinguisher:': '🧯', + ':firecracker:': '🧨', + ':fireworks:': '🎆', + ':first_place_medal:': '🥇', + ':first_place:': '🥇', + ':first_quarter_moon:': '🌓', + ':first_quarter_moon_with_face:': '🌛', + ':fish:': '🐟', + ':fish_cake:': '🍥', + ':fishing_pole_and_fish:': '🎣', + ':waving_black_flag:': '🏴', + ':flag_black:': '🏴', + ':waving_white_flag:': '🏳️', + ':flag_white:': '🏳️', + ':flags:': '🎏', + ':flamingo:': '🦩', + ':flashlight:': '🔦', + ':floppy_disk:': '💾', + ':flower_playing_cards:': '🎴', + ':flushed:': '😳', + ':flying_disc:': '🥏', + ':flying_saucer:': '🛸', + ':fog:': '🌫️', + ':foggy:': '🌁', + ':foot:': '🦶', + ':football:': '🏈', + ':footprints:': '👣', + ':fork_and_knife:': '🍴', + ':fork_and_knife_with_plate:': '🍽️', + ':fork_knife_plate:': '🍽️', + ':fortune_cookie:': '🥠', + ':four_leaf_clover:': '🍀', + ':fox_face:': '🦊', + ':fox:': '🦊', + ':frame_with_picture:': '🖼️', + ':frame_photo:': '🖼️', + ':free:': '🆓', + ':baguette_bread:': '🥖', + ':french_bread:': '🥖', + ':fried_shrimp:': '🍤', + ':fries:': '🍟', + ':frog:': '🐸', + ':frowning:': '😦', + ':full_moon:': '🌕', + ':full_moon_with_face:': '🌝', + ':game_die:': '🎲', + ':garlic:': '🧄', + ':gem:': '💎', + ':genie:': '🧞', + ':ghost:': '👻', + ':gift:': '🎁', + ':gift_heart:': '💝', + ':giraffe:': '🦒', + ':girl:': '👧', + ':globe_with_meridians:': '🌐', + ':gloves:': '🧤', + ':goal_net:': '🥅', + ':goal:': '🥅', + ':goat:': '🐐', + ':goggles:': '🥽', + ':gorilla:': '🦍', + ':grapes:': '🍇', + ':green_apple:': '🍏', + ':green_book:': '📗', + ':green_circle:': '🟢', + ':green_heart:': '💚', + ':green_square:': '🟩', + ':grimacing:': '😬', + ':grin:': '😁', + ':grinning:': '😀', + ':guardsman:': '💂', + ':guard:': '💂', + ':guide_dog:': '🦮', + ':guitar:': '🎸', + ':gun:': '🔫', + ':hamburger:': '🍔', + ':hammer:': '🔨', + ':hamster:': '🐹', + ':raised_hand_with_fingers_splayed:': '🖐️', + ':hand_splayed:': '🖐️', + ':handbag:': '👜', + ':shaking_hands:': '🤝', + ':handshake:': '🤝', + ':hatched_chick:': '🐥', + ':hatching_chick:': '🐣', + ':face_with_head_bandage:': '🤕', + ':head_bandage:': '🤕', + ':headphones:': '🎧', + ':hear_no_evil:': '🙉', + ':heart_decoration:': '💟', + ':heart_eyes:': '😍', + ':heart_eyes_cat:': '😻', + ':heartbeat:': '💓', + ':heartpulse:': '💗', + ':heavy_dollar_sign:': '💲', + ':hedgehog:': '🦔', + ':helicopter:': '🚁', + ':herb:': '🌿', + ':hibiscus:': '🌺', + ':high_brightness:': '🔆', + ':high_heel:': '👠', + ':hiking_boot:': '🥾', + ':hindu_temple:': '🛕', + ':hippopotamus:': '🦛', + ':hockey:': '🏒', + ':hole:': '🕳️', + ':house_buildings:': '🏘️', + ':homes:': '🏘️', + ':honey_pot:': '🍯', + ':horse:': '🐴', + ':horse_racing:': '🏇', + ':hospital:': '🏥', + ':hot_face:': '🥵', + ':hot_pepper:': '🌶️', + ':hot_dog:': '🌭', + ':hotdog:': '🌭', + ':hotel:': '🏨', + ':house:': '🏠', + ':derelict_house_building:': '🏚️', + ':house_abandoned:': '🏚️', + ':house_with_garden:': '🏡', + ':hugging_face:': '🤗', + ':hugging:': '🤗', + ':hushed:': '😯', + ':ice_cream:': '🍨', + ':ice_cube:': '🧊', + ':icecream:': '🍦', + ':id:': '🆔', + ':ideograph_advantage:': '🉐', + ':imp:': '👿', + ':inbox_tray:': '📥', + ':incoming_envelope:': '📨', + ':innocent:': '😇', + ':iphone:': '📱', + ':desert_island:': '🏝️', + ':island:': '🏝️', + ':izakaya_lantern:': '🏮', + ':jack_o_lantern:': '🎃', + ':japan:': '🗾', + ':japanese_castle:': '🏯', + ':japanese_goblin:': '👺', + ':japanese_ogre:': '👹', + ':jeans:': '👖', + ':jigsaw:': '🧩', + ':joy:': '😂', + ':joy_cat:': '😹', + ':joystick:': '🕹️', + ':kaaba:': '🕋', + ':kangaroo:': '🦘', + ':old_key:': '🗝️', + ':key2:': '🗝️', + ':key:': '🔑', + ':keycap_ten:': '🔟', + ':kimono:': '👘', + ':kiss:': '💋', + ':kissing:': '😗', + ':kissing_cat:': '😽', + ':kissing_closed_eyes:': '😚', + ':kissing_heart:': '😘', + ':kissing_smiling_eyes:': '😙', + ':kite:': '🪁', + ':kiwifruit:': '🥝', + ':kiwi:': '🥝', + ':knife:': '🔪', + ':koala:': '🐨', + ':koko:': '🈁', + ':lab_coat:': '🥼', + ':label:': '🏷️', + ':lacrosse:': '🥍', + ':large_blue_diamond:': '🔷', + ':large_orange_diamond:': '🔶', + ':last_quarter_moon:': '🌗', + ':last_quarter_moon_with_face:': '🌜', + ':satisfied:': '😆', + ':laughing:': '😆', + ':leafy_green:': '🥬', + ':leaves:': '🍃', + ':ledger:': '📒', + ':left_fist:': '🤛', + ':left_facing_fist:': '🤛', + ':left_luggage:': '🛅', + ':leg:': '🦵', + ':lemon:': '🍋', + ':leopard:': '🐆', + ':level_slider:': '🎚️', + ':man_in_business_suit_levitating:': '🕴️', + ':levitate:': '🕴️', + ':light_rail:': '🚈', + ':link:': '🔗', + ':lion:': '🦁', + ':lion_face:': '🦁', + ':lips:': '👄', + ':lipstick:': '💄', + ':lizard:': '🦎', + ':llama:': '🦙', + ':lobster:': '🦞', + ':lock:': '🔒', + ':lock_with_ink_pen:': '🔏', + ':lollipop:': '🍭', + ':loud_sound:': '🔊', + ':loudspeaker:': '📢', + ':love_hotel:': '🏩', + ':love_letter:': '💌', + ':love_you_gesture:': '🤟', + ':low_brightness:': '🔅', + ':luggage:': '🧳', + ':liar:': '🤥', + ':lying_face:': '🤥', + ':mag:': '🔍', + ':mag_right:': '🔎', + ':mage:': '🧙', + ':magnet:': '🧲', + ':mahjong:': '🀄', + ':mailbox:': '📫', + ':mailbox_closed:': '📪', + ':mailbox_with_mail:': '📬', + ':mailbox_with_no_mail:': '📭', + ':man:': '👨', + ':male_dancer:': '🕺', + ':man_dancing:': '🕺', + ':man_in_tuxedo:': '🤵', + ':man_with_gua_pi_mao:': '👲', + ':man_with_chinese_cap:': '👲', + ':mango:': '🥭', + ':mans_shoe:': '👞', + ':manual_wheelchair:': '🦽', + ':world_map:': '🗺️', + ':map:': '🗺️', + ':maple_leaf:': '🍁', + ':karate_uniform:': '🥋', + ':martial_arts_uniform:': '🥋', + ':mask:': '😷', + ':mate:': '🧉', + ':meat_on_bone:': '🍖', + ':mechanical_arm:': '🦾', + ':mechanical_leg:': '🦿', + ':sports_medal:': '🏅', + ':medal:': '🏅', + ':mega:': '📣', + ':melon:': '🍈', + ':menorah:': '🕎', + ':mens:': '🚹', + ':merperson:': '🧜', + ':sign_of_the_horns:': '🤘', + ':metal:': '🤘', + ':metro:': '🚇', + ':microbe:': '🦠', + ':studio_microphone:': '🎙️', + ':microphone2:': '🎙️', + ':microphone:': '🎤', + ':microscope:': '🔬', + ':reversed_hand_with_middle_finger_extended:': '🖕', + ':middle_finger:': '🖕', + ':military_medal:': '🎖️', + ':glass_of_milk:': '🥛', + ':milk:': '🥛', + ':milky_way:': '🌌', + ':minibus:': '🚐', + ':minidisc:': '💽', + ':mobile_phone_off:': '📴', + ':money_mouth_face:': '🤑', + ':money_mouth:': '🤑', + ':money_with_wings:': '💸', + ':moneybag:': '💰', + ':monkey:': '🐒', + ':monkey_face:': '🐵', + ':monorail:': '🚝', + ':moon_cake:': '🥮', + ':mortar_board:': '🎓', + ':mosque:': '🕌', + ':mosquito:': '🦟', + ':motorbike:': '🛵', + ':motor_scooter:': '🛵', + ':motorboat:': '🛥️', + ':racing_motorcycle:': '🏍️', + ':motorcycle:': '🏍️', + ':motorized_wheelchair:': '🦼', + ':motorway:': '🛣️', + ':mount_fuji:': '🗻', + ':mountain_cableway:': '🚠', + ':mountain_railway:': '🚞', + ':snow_capped_mountain:': '🏔️', + ':mountain_snow:': '🏔️', + ':mouse2:': '🐁', + ':mouse:': '🐭', + ':three_button_mouse:': '🖱️', + ':mouse_three_button:': '🖱️', + ':movie_camera:': '🎥', + ':moyai:': '🗿', + ':mother_christmas:': '🤶', + ':mrs_claus:': '🤶', + ':muscle:': '💪', + ':mushroom:': '🍄', + ':musical_keyboard:': '🎹', + ':musical_note:': '🎵', + ':musical_score:': '🎼', + ':mute:': '🔇', + ':nail_care:': '💅', + ':name_badge:': '📛', + ':sick:': '🤢', + ':nauseated_face:': '🤢', + ':nazar_amulet:': '🧿', + ':necktie:': '👔', + ':nerd_face:': '🤓', + ':nerd:': '🤓', + ':neutral_face:': '😐', + ':new:': '🆕', + ':new_moon:': '🌑', + ':new_moon_with_face:': '🌚', + ':rolled_up_newspaper:': '🗞️', + ':newspaper2:': '🗞️', + ':newspaper:': '📰', + ':ng:': '🆖', + ':night_with_stars:': '🌃', + ':no_bell:': '🔕', + ':no_bicycles:': '🚳', + ':no_entry_sign:': '🚫', + ':no_mobile_phones:': '📵', + ':no_mouth:': '😶', + ':no_pedestrians:': '🚷', + ':no_smoking:': '🚭', + ':non-potable_water:': '🚱', + ':nose:': '👃', + ':notebook:': '📓', + ':notebook_with_decorative_cover:': '📔', + ':spiral_note_pad:': '🗒️', + ':notepad_spiral:': '🗒️', + ':notes:': '🎶', + ':nut_and_bolt:': '🔩', + ':o2:': '🅾️', + ':ocean:': '🌊', + ':stop_sign:': '🛑', + ':octagonal_sign:': '🛑', + ':octopus:': '🐙', + ':oden:': '🍢', + ':office:': '🏢', + ':oil_drum:': '🛢️', + ':oil:': '🛢️', + ':ok:': '🆗', + ':ok_hand:': '👌', + ':older_adult:': '🧓', + ':older_man:': '👴', + ':grandma:': '👵', + ':older_woman:': '👵', + ':om_symbol:': '🕉️', + ':on:': '🔛', + ':oncoming_automobile:': '🚘', + ':oncoming_bus:': '🚍', + ':oncoming_police_car:': '🚔', + ':oncoming_taxi:': '🚖', + ':one_piece_swimsuit:': '🩱', + ':onion:': '🧅', + ':open_file_folder:': '📂', + ':open_hands:': '👐', + ':open_mouth:': '😮', + ':orange_book:': '📙', + ':orange_circle:': '🟠', + ':orange_heart:': '🧡', + ':orange_square:': '🟧', + ':orangutan:': '🦧', + ':otter:': '🦦', + ':outbox_tray:': '📤', + ':owl:': '🦉', + ':ox:': '🐂', + ':oyster:': '🦪', + ':package:': '📦', + ':page_facing_up:': '📄', + ':page_with_curl:': '📃', + ':pager:': '📟', + ':lower_left_paintbrush:': '🖌️', + ':paintbrush:': '🖌️', + ':palm_tree:': '🌴', + ':palms_up_together:': '🤲', + ':pancakes:': '🥞', + ':panda_face:': '🐼', + ':paperclip:': '📎', + ':linked_paperclips:': '🖇️', + ':paperclips:': '🖇️', + ':parachute:': '🪂', + ':national_park:': '🏞️', + ':park:': '🏞️', + ':parking:': '🅿️', + ':parrot:': '🦜', + ':partying_face:': '🥳', + ':passport_control:': '🛂', + ':peach:': '🍑', + ':peacock:': '🦚', + ':shelled_peanut:': '🥜', + ':peanuts:': '🥜', + ':pear:': '🍐', + ':lower_left_ballpoint_pen:': '🖊️', + ':pen_ballpoint:': '🖊️', + ':lower_left_fountain_pen:': '🖋️', + ':pen_fountain:': '🖋️', + ':memo:': '📝', + ':pencil:': '📝', + ':penguin:': '🐧', + ':pensive:': '😔', + ':dancers:': '👯', + ':people_with_bunny_ears_partying:': '👯', + ':wrestlers:': '🤼', + ':wrestling:': '🤼', + ':people_wrestling:': '🤼', + ':performing_arts:': '🎭', + ':persevere:': '😣', + ':bicyclist:': '🚴', + ':person_biking:': '🚴', + ':bow:': '🙇', + ':person_bowing:': '🙇', + ':person_climbing:': '🧗', + ':cartwheel:': '🤸', + ':person_doing_cartwheel:': '🤸', + ':face_palm:': '🤦', + ':facepalm:': '🤦', + ':person_facepalming:': '🤦', + ':fencer:': '🤺', + ':fencing:': '🤺', + ':person_fencing:': '🤺', + ':person_frowning:': '🙍', + ':no_good:': '🙅', + ':person_gesturing_no:': '🙅', + ':ok_woman:': '🙆', + ':person_gesturing_ok:': '🙆', + ':haircut:': '💇', + ':person_getting_haircut:': '💇', + ':massage:': '💆', + ':person_getting_massage:': '💆', + ':golfer:': '🏌️', + ':person_golfing:': '🏌️', + ':person_in_lotus_position:': '🧘', + ':person_in_steamy_room:': '🧖', + ':juggling:': '🤹', + ':juggler:': '🤹', + ':person_juggling:': '🤹', + ':person_kneeling:': '🧎', + ':lifter:': '🏋️', + ':weight_lifter:': '🏋️', + ':person_lifting_weights:': '🏋️', + ':mountain_bicyclist:': '🚵', + ':person_mountain_biking:': '🚵', + ':handball:': '🤾', + ':person_playing_handball:': '🤾', + ':water_polo:': '🤽', + ':person_playing_water_polo:': '🤽', + ':person_with_pouting_face:': '🙎', + ':person_pouting:': '🙎', + ':raising_hand:': '🙋', + ':person_raising_hand:': '🙋', + ':rowboat:': '🚣', + ':person_rowing_boat:': '🚣', + ':runner:': '🏃', + ':person_running:': '🏃', + ':shrug:': '🤷', + ':person_shrugging:': '🤷', + ':person_standing:': '🧍', + ':surfer:': '🏄', + ':person_surfing:': '🏄', + ':swimmer:': '🏊', + ':person_swimming:': '🏊', + ':information_desk_person:': '💁', + ':person_tipping_hand:': '💁', + ':walking:': '🚶', + ':person_walking:': '🚶', + ':man_with_turban:': '👳', + ':person_wearing_turban:': '👳', + ':petri_dish:': '🧫', + ':pie:': '🥧', + ':pig2:': '🐖', + ':pig:': '🐷', + ':pig_nose:': '🐽', + ':pill:': '💊', + ':pinching_hand:': '🤏', + ':pineapple:': '🍍', + ':table_tennis:': '🏓', + ':ping_pong:': '🏓', + ':pizza:': '🍕', + ':worship_symbol:': '🛐', + ':place_of_worship:': '🛐', + ':pleading_face:': '🥺', + ':point_down:': '👇', + ':point_left:': '👈', + ':point_right:': '👉', + ':point_up_2:': '👆', + ':police_car:': '🚓', + ':cop:': '👮', + ':police_officer:': '👮', + ':poodle:': '🐩', + ':shit:': '💩', + ':hankey:': '💩', + ':poo:': '💩', + ':poop:': '💩', + ':popcorn:': '🍿', + ':post_office:': '🏣', + ':postal_horn:': '📯', + ':postbox:': '📮', + ':potable_water:': '🚰', + ':potato:': '🥔', + ':pouch:': '👝', + ':poultry_leg:': '🍗', + ':pound:': '💷', + ':pouting_cat:': '😾', + ':pray:': '🙏', + ':prayer_beads:': '📿', + ':expecting_woman:': '🤰', + ':pregnant_woman:': '🤰', + ':pretzel:': '🥨', + ':prince:': '🤴', + ':princess:': '👸', + ':printer:': '🖨️', + ':probing_cane:': '🦯', + ':film_projector:': '📽️', + ':projector:': '📽️', + ':punch:': '👊', + ':purple_circle:': '🟣', + ':purple_heart:': '💜', + ':purple_square:': '🟪', + ':purse:': '👛', + ':pushpin:': '📌', + ':put_litter_in_its_place:': '🚮', + ':rabbit2:': '🐇', + ':rabbit:': '🐰', + ':raccoon:': '🦝', + ':racing_car:': '🏎️', + ':race_car:': '🏎️', + ':racehorse:': '🐎', + ':radio:': '📻', + ':radio_button:': '🔘', + ':rage:': '😡', + ':railway_car:': '🚃', + ':railroad_track:': '🛤️', + ':railway_track:': '🛤️', + ':rainbow:': '🌈', + ':back_of_hand:': '🤚', + ':raised_back_of_hand:': '🤚', + ':raised_hands:': '🙌', + ':ram:': '🐏', + ':ramen:': '🍜', + ':rat:': '🐀', + ':razor:': '🪒', + ':receipt:': '🧾', + ':red_car:': '🚗', + ':red_circle:': '🔴', + ':red_envelope:': '🧧', + ':red_haired:': '🦰', + ':red_square:': '🟥', + ':regional_indicator_a:': '🇦', + ':regional_indicator_b:': '🇧', + ':regional_indicator_c:': '🇨', + ':regional_indicator_d:': '🇩', + ':regional_indicator_e:': '🇪', + ':regional_indicator_f:': '🇫', + ':regional_indicator_g:': '🇬', + ':regional_indicator_h:': '🇭', + ':regional_indicator_i:': '🇮', + ':regional_indicator_j:': '🇯', + ':regional_indicator_k:': '🇰', + ':regional_indicator_l:': '🇱', + ':regional_indicator_m:': '🇲', + ':regional_indicator_n:': '🇳', + ':regional_indicator_o:': '🇴', + ':regional_indicator_p:': '🇵', + ':regional_indicator_q:': '🇶', + ':regional_indicator_r:': '🇷', + ':regional_indicator_s:': '🇸', + ':regional_indicator_t:': '🇹', + ':regional_indicator_u:': '🇺', + ':regional_indicator_v:': '🇻', + ':regional_indicator_w:': '🇼', + ':regional_indicator_x:': '🇽', + ':regional_indicator_y:': '🇾', + ':regional_indicator_z:': '🇿', + ':relieved:': '😌', + ':reminder_ribbon:': '🎗️', + ':repeat:': '🔁', + ':repeat_one:': '🔂', + ':restroom:': '🚻', + ':revolving_hearts:': '💞', + ':rhinoceros:': '🦏', + ':rhino:': '🦏', + ':ribbon:': '🎀', + ':rice:': '🍚', + ':rice_ball:': '🍙', + ':rice_cracker:': '🍘', + ':rice_scene:': '🎑', + ':right_fist:': '🤜', + ':right_facing_fist:': '🤜', + ':ring:': '💍', + ':ringed_planet:': '🪐', + ':robot_face:': '🤖', + ':robot:': '🤖', + ':rocket:': '🚀', + ':rolling_on_the_floor_laughing:': '🤣', + ':rofl:': '🤣', + ':roll_of_paper:': '🧻', + ':roller_coaster:': '🎢', + ':face_with_rolling_eyes:': '🙄', + ':rolling_eyes:': '🙄', + ':rooster:': '🐓', + ':rose:': '🌹', + ':rosette:': '🏵️', + ':rotating_light:': '🚨', + ':round_pushpin:': '📍', + ':rugby_football:': '🏉', + ':running_shirt_with_sash:': '🎽', + ':sa:': '🈂️', + ':safety_pin:': '🧷', + ':safety_vest:': '🦺', + ':sake:': '🍶', + ':green_salad:': '🥗', + ':salad:': '🥗', + ':salt:': '🧂', + ':sandal:': '👡', + ':sandwich:': '🥪', + ':santa:': '🎅', + ':sari:': '🥻', + ':satellite:': '📡', + ':satellite_orbital:': '🛰️', + ':sauropod:': '🦕', + ':saxophone:': '🎷', + ':scarf:': '🧣', + ':school:': '🏫', + ':school_satchel:': '🎒', + ':scooter:': '🛴', + ':scorpion:': '🦂', + ':scream:': '😱', + ':scream_cat:': '🙀', + ':scroll:': '📜', + ':seat:': '💺', + ':second_place_medal:': '🥈', + ':second_place:': '🥈', + ':see_no_evil:': '🙈', + ':seedling:': '🌱', + ':selfie:': '🤳', + ':paella:': '🥘', + ':shallow_pan_of_food:': '🥘', + ':shark:': '🦈', + ':shaved_ice:': '🍧', + ':sheep:': '🐑', + ':shell:': '🐚', + ':shield:': '🛡️', + ':ship:': '🚢', + ':shirt:': '👕', + ':shopping_bags:': '🛍️', + ':shopping_trolley:': '🛒', + ':shopping_cart:': '🛒', + ':shorts:': '🩳', + ':shower:': '🚿', + ':shrimp:': '🦐', + ':shushing_face:': '🤫', + ':signal_strength:': '📶', + ':six_pointed_star:': '🔯', + ':skateboard:': '🛹', + ':ski:': '🎿', + ':skeleton:': '💀', + ':skull:': '💀', + ':skunk:': '🦨', + ':sled:': '🛷', + ':sleeping:': '😴', + ':sleeping_accommodation:': '🛌', + ':sleepy:': '😪', + ':slightly_frowning_face:': '🙁', + ':slight_frown:': '🙁', + ':slightly_smiling_face:': '🙂', + ':slight_smile:': '🙂', + ':slot_machine:': '🎰', + ':sloth:': '🦥', + ':small_blue_diamond:': '🔹', + ':small_orange_diamond:': '🔸', + ':small_red_triangle:': '🔺', + ':small_red_triangle_down:': '🔻', + ':smile:': '😄', + ':smile_cat:': '😸', + ':smiley:': '😃', + ':smiley_cat:': '😺', + ':smiling_face_with_3_hearts:': '🥰', + ':smiling_imp:': '😈', + ':smirk:': '😏', + ':smirk_cat:': '😼', + ':smoking:': '🚬', + ':snail:': '🐌', + ':snake:': '🐍', + ':sneeze:': '🤧', + ':sneezing_face:': '🤧', + ':snowboarder:': '🏂', + ':soap:': '🧼', + ':sob:': '😭', + ':socks:': '🧦', + ':softball:': '🥎', + ':soon:': '🔜', + ':sos:': '🆘', + ':sound:': '🔉', + ':space_invader:': '👾', + ':spaghetti:': '🍝', + ':sparkler:': '🎇', + ':sparkling_heart:': '💖', + ':speak_no_evil:': '🙊', + ':speaker:': '🔈', + ':speaking_head_in_silhouette:': '🗣️', + ':speaking_head:': '🗣️', + ':speech_balloon:': '💬', + ':left_speech_bubble:': '🗨️', + ':speech_left:': '🗨️', + ':speedboat:': '🚤', + ':spider:': '🕷️', + ':spider_web:': '🕸️', + ':sponge:': '🧽', + ':spoon:': '🥄', + ':squeeze_bottle:': '🧴', + ':squid:': '🦑', + ':stadium:': '🏟️', + ':star2:': '🌟', + ':star_struck:': '🤩', + ':stars:': '🌠', + ':station:': '🚉', + ':statue_of_liberty:': '🗽', + ':steam_locomotive:': '🚂', + ':stethoscope:': '🩺', + ':stew:': '🍲', + ':straight_ruler:': '📏', + ':strawberry:': '🍓', + ':stuck_out_tongue:': '😛', + ':stuck_out_tongue_closed_eyes:': '😝', + ':stuck_out_tongue_winking_eye:': '😜', + ':stuffed_pita:': '🥙', + ':stuffed_flatbread:': '🥙', + ':sun_with_face:': '🌞', + ':sunflower:': '🌻', + ':sunglasses:': '😎', + ':sunrise:': '🌅', + ':sunrise_over_mountains:': '🌄', + ':superhero:': '🦸', + ':supervillain:': '🦹', + ':sushi:': '🍣', + ':suspension_railway:': '🚟', + ':swan:': '🦢', + ':sweat:': '😓', + ':sweat_drops:': '💦', + ':sweat_smile:': '😅', + ':sweet_potato:': '🍠', + ':symbols:': '🔣', + ':synagogue:': '🕍', + ':syringe:': '💉', + ':t_rex:': '🦖', + ':taco:': '🌮', + ':tada:': '🎉', + ':takeout_box:': '🥡', + ':tanabata_tree:': '🎋', + ':tangerine:': '🍊', + ':taxi:': '🚕', + ':tea:': '🍵', + ':teddy_bear:': '🧸', + ':telephone_receiver:': '📞', + ':telescope:': '🔭', + ':tennis:': '🎾', + ':test_tube:': '🧪', + ':thermometer:': '🌡️', + ':face_with_thermometer:': '🤒', + ':thermometer_face:': '🤒', + ':thinking_face:': '🤔', + ':thinking:': '🤔', + ':third_place_medal:': '🥉', + ':third_place:': '🥉', + ':thought_balloon:': '💭', + ':thread:': '🧵', + ':-1:': '👎', + ':thumbdown:': '👎', + ':thumbsdown:': '👎', + ':+1:': '👍', + ':thumbup:': '👍', + ':thumbsup:': '👍', + ':ticket:': '🎫', + ':admission_tickets:': '🎟️', + ':tickets:': '🎟️', + ':tiger2:': '🐅', + ':tiger:': '🐯', + ':tired_face:': '😫', + ':toilet:': '🚽', + ':tokyo_tower:': '🗼', + ':tomato:': '🍅', + ':tone1:': '🏻', + ':tone2:': '🏼', + ':tone3:': '🏽', + ':tone4:': '🏾', + ':tone5:': '🏿', + ':tongue:': '👅', + ':toolbox:': '🧰', + ':hammer_and_wrench:': '🛠️', + ':tools:': '🛠️', + ':tooth:': '🦷', + ':top:': '🔝', + ':tophat:': '🎩', + ':trackball:': '🖲️', + ':tractor:': '🚜', + ':traffic_light:': '🚥', + ':train2:': '🚆', + ':train:': '🚋', + ':tram:': '🚊', + ':triangular_flag_on_post:': '🚩', + ':triangular_ruler:': '📐', + ':trident:': '🔱', + ':triumph:': '😤', + ':trolleybus:': '🚎', + ':trophy:': '🏆', + ':tropical_drink:': '🍹', + ':tropical_fish:': '🐠', + ':truck:': '🚚', + ':trumpet:': '🎺', + ':tulip:': '🌷', + ':whisky:': '🥃', + ':tumbler_glass:': '🥃', + ':turkey:': '🦃', + ':turtle:': '🐢', + ':tv:': '📺', + ':twisted_rightwards_arrows:': '🔀', + ':two_hearts:': '💕', + ':two_men_holding_hands:': '👬', + ':two_women_holding_hands:': '👭', + ':u5272:': '🈹', + ':u5408:': '🈴', + ':u55b6:': '🈺', + ':u6307:': '🈯', + ':u6708:': '🈷️', + ':u6709:': '🈶', + ':u6e80:': '🈵', + ':u7121:': '🈚', + ':u7533:': '🈸', + ':u7981:': '🈲', + ':u7a7a:': '🈳', + ':unamused:': '😒', + ':underage:': '🔞', + ':unicorn_face:': '🦄', + ':unicorn:': '🦄', + ':unlock:': '🔓', + ':up:': '🆙', + ':upside_down_face:': '🙃', + ':upside_down:': '🙃', + ':vampire:': '🧛', + ':vertical_traffic_light:': '🚦', + ':vhs:': '📼', + ':vibration_mode:': '📳', + ':video_camera:': '📹', + ':video_game:': '🎮', + ':violin:': '🎻', + ':volcano:': '🌋', + ':volleyball:': '🏐', + ':vs:': '🆚', + ':raised_hand_with_part_between_middle_and_ring_fingers:': '🖖', + ':vulcan:': '🖖', + ':waffle:': '🧇', + ':waning_crescent_moon:': '🌘', + ':waning_gibbous_moon:': '🌖', + ':wastebasket:': '🗑️', + ':water_buffalo:': '🐃', + ':watermelon:': '🍉', + ':wave:': '👋', + ':waxing_crescent_moon:': '🌒', + ':waxing_gibbous_moon:': '🌔', + ':wc:': '🚾', + ':weary:': '😩', + ':wedding:': '💒', + ':whale2:': '🐋', + ':whale:': '🐳', + ':white_flower:': '💮', + ':white_haired:': '🦳', + ':white_heart:': '🤍', + ':white_square_button:': '🔳', + ':white_sun_behind_cloud:': '🌥️', + ':white_sun_cloud:': '🌥️', + ':white_sun_behind_cloud_with_rain:': '🌦️', + ':white_sun_rain_cloud:': '🌦️', + ':white_sun_with_small_cloud:': '🌤️', + ':white_sun_small_cloud:': '🌤️', + ':wilted_flower:': '🥀', + ':wilted_rose:': '🥀', + ':wind_blowing_face:': '🌬️', + ':wind_chime:': '🎐', + ':wine_glass:': '🍷', + ':wink:': '😉', + ':wolf:': '🐺', + ':woman:': '👩', + ':woman_with_headscarf:': '🧕', + ':womans_clothes:': '👚', + ':womans_flat_shoe:': '🥿', + ':womans_hat:': '👒', + ':womens:': '🚺', + ':woozy_face:': '🥴', + ':worried:': '😟', + ':wrench:': '🔧', + ':yarn:': '🧶', + ':yawning_face:': '🥱', + ':yellow_circle:': '🟡', + ':yellow_heart:': '💛', + ':yellow_square:': '🟨', + ':yen:': '💴', + ':yo_yo:': '🪀', + ':yum:': '😋', + ':zany_face:': '🤪', + ':zebra:': '🦓', + ':zipper_mouth_face:': '🤐', + ':zipper_mouth:': '🤐', + ':zombie:': '🧟', + ':zzz:': '💤', + ':airplane:': '✈️', + ':alarm_clock:': '⏰', + ':alembic:': '⚗️', + ':anchor:': '⚓', + ':aquarius:': '♒', + ':aries:': '♈', + ':arrow_backward:': '◀️', + ':arrow_double_down:': '⏬', + ':arrow_double_up:': '⏫', + ':arrow_down:': '⬇️', + ':arrow_forward:': '▶️', + ':arrow_heading_down:': '⤵️', + ':arrow_heading_up:': '⤴️', + ':arrow_left:': '⬅️', + ':arrow_lower_left:': '↙️', + ':arrow_lower_right:': '↘️', + ':arrow_right:': '➡️', + ':arrow_right_hook:': '↪️', + ':arrow_up:': '⬆️', + ':arrow_up_down:': '↕️', + ':arrow_upper_left:': '↖️', + ':arrow_upper_right:': '↗️', + ':asterisk_symbol:': '*️', + ':atom_symbol:': '⚛️', + ':atom:': '⚛️', + ':ballot_box_with_check:': '☑️', + ':bangbang:': '‼️', + ':baseball:': '⚾', + ':umbrella_on_ground:': '⛱️', + ':beach_umbrella:': '⛱️', + ':biohazard_sign:': '☣️', + ':biohazard:': '☣️', + ':black_circle:': '⚫', + ':black_large_square:': '⬛', + ':black_medium_small_square:': '◾', + ':black_medium_square:': '◼️', + ':black_nib:': '✒️', + ':black_small_square:': '▪️', + ':cancer:': '♋', + ':capricorn:': '♑', + ':chains:': '⛓️', + ':chess_pawn:': '♟️', + ':church:': '⛪', + ':cloud:': '☁️', + ':clubs:': '♣️', + ':coffee:': '☕', + ':coffin:': '⚰️', + ':comet:': '☄️', + ':congratulations:': '㊗️', + ':copyright:': '©️', + ':latin_cross:': '✝️', + ':cross:': '✝️', + ':crossed_swords:': '⚔️', + ':curly_loop:': '➰', + ':diamonds:': '♦️', + ':digit_eight:': '8️', + ':digit_five:': '5️', + ':digit_four:': '4️', + ':digit_nine:': '9️', + ':digit_one:': '1️', + ':digit_seven:': '7️', + ':digit_six:': '6️', + ':digit_three:': '3️', + ':digit_two:': '2️', + ':digit_zero:': '0️', + ':eight_pointed_black_star:': '✴️', + ':eight_spoked_asterisk:': '✳️', + ':eject_symbol:': '⏏️', + ':eject:': '⏏️', + ':envelope:': '✉️', + ':exclamation:': '❗', + ':fast_forward:': '⏩', + ':female_sign:': '♀️', + ':ferry:': '⛴️', + ':fist:': '✊', + ':fleur-de-lis:': '⚜️', + ':fountain:': '⛲', + ':white_frowning_face:': '☹️', + ':frowning2:': '☹️', + ':fuelpump:': '⛽', + ':gear:': '⚙️', + ':gemini:': '♊', + ':golf:': '⛳', + ':grey_exclamation:': '❕', + ':grey_question:': '❔', + ':hammer_and_pick:': '⚒️', + ':hammer_pick:': '⚒️', + ':heart:': '❤️', + ':heavy_heart_exclamation_mark_ornament:': '❣️', + ':heart_exclamation:': '❣️', + ':hearts:': '♥️', + ':heavy_check_mark:': '✔️', + ':heavy_division_sign:': '➗', + ':heavy_minus_sign:': '➖', + ':heavy_multiplication_x:': '✖️', + ':heavy_plus_sign:': '➕', + ':helmet_with_white_cross:': '⛑️', + ':helmet_with_cross:': '⛑️', + ':hotsprings:': '♨️', + ':hourglass:': '⌛', + ':hourglass_flowing_sand:': '⏳', + ':ice_skate:': '⛸️', + ':infinity:': '♾️', + ':information_source:': 'ℹ️', + ':interrobang:': '⁉️', + ':keyboard:': '⌨️', + ':left_right_arrow:': '↔️', + ':leftwards_arrow_with_hook:': '↩️', + ':leo:': '♌', + ':libra:': '♎', + ':loop:': '➿', + ':m:': 'Ⓜ️', + ':male_sign:': '♂️', + ':medical_symbol:': '⚕️', + ':mountain:': '⛰️', + ':negative_squared_cross_mark:': '❎', + ':no_entry:': '⛔', + ':o:': '⭕', + ':ophiuchus:': '⛎', + ':orthodox_cross:': '☦️', + ':part_alternation_mark:': '〽️', + ':partly_sunny:': '⛅', + ':double_vertical_bar:': '⏸️', + ':pause_button:': '⏸️', + ':peace_symbol:': '☮️', + ':peace:': '☮️', + ':pencil2:': '✏️', + ':basketball_player:': '⛹️', + ':person_with_ball:': '⛹️', + ':person_bouncing_ball:': '⛹️', + ':pick:': '⛏️', + ':pisces:': '♓', + ':play_pause:': '⏯️', + ':point_up:': '☝️', + ':pound_symbol:': '#️', + ':question:': '❓', + ':radioactive_sign:': '☢️', + ':radioactive:': '☢️', + ':raised_hand:': '✋', + ':record_button:': '⏺️', + ':recycle:': '♻️', + ':registered:': '®️', + ':relaxed:': '☺️', + ':rewind:': '⏪', + ':sagittarius:': '♐', + ':sailboat:': '⛵', + ':scales:': '⚖️', + ':scissors:': '✂️', + ':scorpius:': '♏', + ':secret:': '㊙️', + ':shamrock:': '☘️', + ':shinto_shrine:': '⛩️', + ':skier:': '⛷️', + ':skull_and_crossbones:': '☠️', + ':skull_crossbones:': '☠️', + ':snowflake:': '❄️', + ':snowman2:': '☃️', + ':snowman:': '⛄', + ':soccer:': '⚽', + ':spades:': '♠️', + ':sparkle:': '❇️', + ':sparkles:': '✨', + ':star:': '⭐', + ':star_and_crescent:': '☪️', + ':star_of_david:': '✡️', + ':stop_button:': '⏹️', + ':stopwatch:': '⏱️', + ':sunny:': '☀️', + ':taurus:': '♉', + ':telephone:': '☎️', + ':tent:': '⛺', + ':thunder_cloud_and_rain:': '⛈️', + ':thunder_cloud_rain:': '⛈️', + ':timer_clock:': '⏲️', + ':timer:': '⏲️', + ':tm:': '™️', + ':next_track:': '⏭️', + ':track_next:': '⏭️', + ':previous_track:': '⏮️', + ':track_previous:': '⏮️', + ':umbrella2:': '☂️', + ':umbrella:': '☔', + ':funeral_urn:': '⚱️', + ':urn:': '⚱️', + ':v:': '✌️', + ':virgo:': '♍', + ':warning:': '⚠️', + ':watch:': '⌚', + ':wavy_dash:': '〰️', + ':wheel_of_dharma:': '☸️', + ':wheelchair:': '♿', + ':white_check_mark:': '✅', + ':white_circle:': '⚪', + ':white_large_square:': '⬜', + ':white_medium_small_square:': '◽', + ':white_medium_square:': '◻️', + ':white_small_square:': '▫️', + ':writing_hand:': '✍️', + ':x:': '❌', + ':yin_yang:': '☯️', + ':zap:': '⚡' +}; export default emojis; diff --git a/app/utils/shortnameToUnicode/index.js b/app/utils/shortnameToUnicode/index.js index 0ecd8e732e..0a54aa3a30 100644 --- a/app/utils/shortnameToUnicode/index.js +++ b/app/utils/shortnameToUnicode/index.js @@ -3,9 +3,9 @@ import ascii, { asciiRegexp } from './ascii'; const shortnamePattern = new RegExp(/:[-+_a-z0-9]+:/, 'gi'); const replaceShortNameWithUnicode = shortname => emojis[shortname] || shortname; -const regAscii = new RegExp(`((\\s|^)${ asciiRegexp }(?=\\s|$|[!,.?]))`, 'gi'); +const regAscii = new RegExp(`((\\s|^)${asciiRegexp}(?=\\s|$|[!,.?]))`, 'gi'); -const unescapeHTML = (string) => { +const unescapeHTML = string => { const unescaped = { '&': '&', '&': '&', @@ -19,15 +19,15 @@ const unescapeHTML = (string) => { '"': '"', '"': '"', '"': '"', - ''': '\'', - ''': '\'', - ''': '\'' + ''': "'", + ''': "'", + ''': "'" }; - return string.replace(/&(?:amp|#38|#x26|lt|#60|#x3C|gt|#62|#x3E|apos|#39|#x27|quot|#34|#x22);/ig, match => unescaped[match]); + return string.replace(/&(?:amp|#38|#x26|lt|#60|#x3C|gt|#62|#x3E|apos|#39|#x27|quot|#34|#x22);/gi, match => unescaped[match]); }; -const shortnameToUnicode = (str) => { +const shortnameToUnicode = str => { str = str.replace(shortnamePattern, replaceShortNameWithUnicode); str = str.replace(regAscii, (entire, m1, m2, m3) => { diff --git a/app/utils/shortnameToUnicode/shortnameToUnicode.test.js b/app/utils/shortnameToUnicode/shortnameToUnicode.test.js index 62da51ca6b..b76d1bf845 100644 --- a/app/utils/shortnameToUnicode/shortnameToUnicode.test.js +++ b/app/utils/shortnameToUnicode/shortnameToUnicode.test.js @@ -26,7 +26,7 @@ test('render ascii smile', () => { }); test('render several ascii emojis', () => { - expect(shortnameToUnicode(':) :( -_- \':-D')).toBe('🙂😞😑😅'); + expect(shortnameToUnicode(":) :( -_- ':-D")).toBe('🙂😞😑😅'); }); test('render text with ascii emoji', () => { @@ -34,5 +34,5 @@ test('render text with ascii emoji', () => { }); test('render emoji and ascii emoji', () => { - expect(shortnameToUnicode('\':-D :joy:')).toBe('😅 😂'); + expect(shortnameToUnicode("':-D :joy:")).toBe('😅 😂'); }); diff --git a/app/utils/sslPinning.js b/app/utils/sslPinning.js index ce5b1bdea2..50f944e63f 100644 --- a/app/utils/sslPinning.js +++ b/app/utils/sslPinning.js @@ -10,45 +10,46 @@ const { SSLPinning } = NativeModules; const RCSSLPinning = Platform.select({ ios: { - pickCertificate: () => new Promise(async(resolve, reject) => { - try { - const res = await DocumentPicker.pick({ - type: ['com.rsa.pkcs-12'] - }); - const { uri, name } = res; - Alert.prompt( - I18n.t('Certificate_password'), - I18n.t('Whats_the_password_for_your_certificate'), - [ - { - text: 'OK', - onPress: async(password) => { - try { - const certificatePath = `${ FileSystem.documentDirectory }/${ name }`; + pickCertificate: () => + new Promise(async (resolve, reject) => { + try { + const res = await DocumentPicker.pick({ + type: ['com.rsa.pkcs-12'] + }); + const { uri, name } = res; + Alert.prompt( + I18n.t('Certificate_password'), + I18n.t('Whats_the_password_for_your_certificate'), + [ + { + text: 'OK', + onPress: async password => { + try { + const certificatePath = `${FileSystem.documentDirectory}/${name}`; - await FileSystem.copyAsync({ from: uri, to: certificatePath }); + await FileSystem.copyAsync({ from: uri, to: certificatePath }); - const certificate = { - path: certificatePath.replace('file://', ''), // file:// isn't allowed by obj-C - password - }; + const certificate = { + path: certificatePath.replace('file://', ''), // file:// isn't allowed by obj-C + password + }; - await UserPreferences.setMapAsync(name, certificate); + await UserPreferences.setMapAsync(name, certificate); - resolve(name); - } catch (e) { - reject(e); + resolve(name); + } catch (e) { + reject(e); + } } } - } - ], - 'secure-text' - ); - } catch (e) { - reject(e); - } - }), - setCertificate: async(alias, server) => { + ], + 'secure-text' + ); + } catch (e) { + reject(e); + } + }), + setCertificate: async (alias, server) => { if (alias) { const certificate = await UserPreferences.getMapAsync(alias); await UserPreferences.setMapAsync(extractHostname(server), certificate); diff --git a/app/utils/theme.js b/app/utils/theme.js index 877ee13f12..c9038941d8 100644 --- a/app/utils/theme.js +++ b/app/utils/theme.js @@ -15,7 +15,7 @@ export const defaultTheme = () => { return 'light'; }; -export const getTheme = (themePreferences) => { +export const getTheme = themePreferences => { const { darkLevel, currentTheme } = themePreferences; let theme = currentTheme; if (currentTheme === 'automatic') { @@ -35,7 +35,7 @@ export const newThemeState = (prevState, newTheme) => { return { themePreferences, theme: getTheme(themePreferences) }; }; -export const setNativeTheme = async(themePreferences) => { +export const setNativeTheme = async themePreferences => { const theme = getTheme(themePreferences); if (isAndroid) { const iconsLight = theme === 'light'; diff --git a/app/utils/touch.js b/app/utils/touch.js index d5c22d4df1..0bfece04a2 100644 --- a/app/utils/touch.js +++ b/app/utils/touch.js @@ -9,14 +9,12 @@ class Touch extends React.Component { this.ref.setNativeProps(props); } - getRef = (ref) => { + getRef = ref => { this.ref = ref; }; render() { - const { - children, onPress, theme, underlayColor, ...props - } = this.props; + const { children, onPress, theme, underlayColor, ...props } = this.props; return ( <RectButton @@ -25,8 +23,7 @@ class Touch extends React.Component { activeOpacity={1} underlayColor={underlayColor || themes[theme].bannerBackground} rippleColor={themes[theme].bannerBackground} - {...props} - > + {...props}> {children} </RectButton> ); diff --git a/app/utils/twoFactor.js b/app/utils/twoFactor.js index 78049a6ba6..6f2fa9c9de 100644 --- a/app/utils/twoFactor.js +++ b/app/utils/twoFactor.js @@ -3,18 +3,19 @@ import { settings } from '@rocket.chat/sdk'; import { TWO_FACTOR } from '../containers/TwoFactor'; import EventEmitter from './events'; -export const twoFactor = ({ method, invalid }) => new Promise((resolve, reject) => { - EventEmitter.emit(TWO_FACTOR, { - method, - invalid, - cancel: () => reject(), - submit: (code) => { - settings.customHeaders = { - ...settings.customHeaders, - 'x-2fa-code': code, - 'x-2fa-method': method - }; - resolve({ twoFactorCode: code, twoFactorMethod: method }); - } +export const twoFactor = ({ method, invalid }) => + new Promise((resolve, reject) => { + EventEmitter.emit(TWO_FACTOR, { + method, + invalid, + cancel: () => reject(), + submit: code => { + settings.customHeaders = { + ...settings.customHeaders, + 'x-2fa-code': code, + 'x-2fa-method': method + }; + resolve({ twoFactorCode: code, twoFactorMethod: method }); + } + }); }); -}); diff --git a/app/utils/url.js b/app/utils/url.js index 16506ed138..623524d7a4 100644 --- a/app/utils/url.js +++ b/app/utils/url.js @@ -1,10 +1,13 @@ -export const isValidURL = (url) => { - const pattern = new RegExp('^(https?:\\/\\/)?' // protocol - + '((([a-z\\d]([a-z\\d-]*[a-z\\d])*)\\.)+[a-z]{2,}|' // domain name - + '((\\d{1,3}\\.){3}\\d{1,3}))' // OR ip (v4) address - + '(\\:\\d+)?(\\/[-a-z\\d%_.~+]*)*' // port and path - + '(\\?[;&a-z\\d%_.~+=-]*)?' // query string - + '(\\#[-a-z\\d_]*)?$', 'i'); // fragment locator +export const isValidURL = url => { + const pattern = new RegExp( + '^(https?:\\/\\/)?' + // protocol + '((([a-z\\d]([a-z\\d-]*[a-z\\d])*)\\.)+[a-z]{2,}|' + // domain name + '((\\d{1,3}\\.){3}\\d{1,3}))' + // OR ip (v4) address + '(\\:\\d+)?(\\/[-a-z\\d%_.~+]*)*' + // port and path + '(\\?[;&a-z\\d%_.~+=-]*)?' + // query string + '(\\#[-a-z\\d_]*)?$', + 'i' + ); // fragment locator return !!pattern.test(url); }; diff --git a/app/views/AddChannelTeamView.js b/app/views/AddChannelTeamView.js index 76439b412d..b93f5fb784 100644 --- a/app/views/AddChannelTeamView.js +++ b/app/views/AddChannelTeamView.js @@ -21,9 +21,7 @@ const setHeader = (navigation, isMasterDetail) => { navigation.setOptions(options); }; -const AddChannelTeamView = ({ - navigation, route, isMasterDetail -}) => { +const AddChannelTeamView = ({ navigation, route, isMasterDetail }) => { const { teamId, teamChannels } = route.params; const { theme } = useTheme(); @@ -38,9 +36,15 @@ const AddChannelTeamView = ({ <List.Separator /> <List.Item title='Create_New' - onPress={() => (isMasterDetail - ? navigation.navigate('SelectedUsersViewCreateChannel', { nextAction: () => navigation.navigate('CreateChannelView', { teamId }) }) - : navigation.navigate('SelectedUsersView', { nextAction: () => navigation.navigate('ChatsStackNavigator', { screen: 'CreateChannelView', params: { teamId } }) })) + onPress={() => + isMasterDetail + ? navigation.navigate('SelectedUsersViewCreateChannel', { + nextAction: () => navigation.navigate('CreateChannelView', { teamId }) + }) + : navigation.navigate('SelectedUsersView', { + nextAction: () => + navigation.navigate('ChatsStackNavigator', { screen: 'CreateChannelView', params: { teamId } }) + }) } testID='add-channel-team-view-create-channel' left={() => <List.Icon name='team' />} diff --git a/app/views/AddExistingChannelView.js b/app/views/AddExistingChannelView.js index 9174fe78e2..ed9a95ac4f 100644 --- a/app/views/AddExistingChannelView.js +++ b/app/views/AddExistingChannelView.js @@ -1,8 +1,6 @@ import React from 'react'; import PropTypes from 'prop-types'; -import { - FlatList, View -} from 'react-native'; +import { FlatList, View } from 'react-native'; import { connect } from 'react-redux'; import { Q } from '@nozbe/watermelondb'; @@ -59,16 +57,17 @@ class AddExistingChannelView extends React.Component { options.headerLeft = () => <HeaderButton.CloseModal navigation={navigation} />; } - options.headerRight = () => selected.length > 0 && ( - <HeaderButton.Container> - <HeaderButton.Item title={I18n.t('Next')} onPress={this.submit} testID='add-existing-channel-view-submit' /> - </HeaderButton.Container> - ); + options.headerRight = () => + selected.length > 0 && ( + <HeaderButton.Container> + <HeaderButton.Item title={I18n.t('Next')} onPress={this.submit} testID='add-existing-channel-view-submit' /> + </HeaderButton.Container> + ); navigation.setOptions(options); - } + }; - query = async(stringToSearch = '') => { + query = async (stringToSearch = '') => { try { const { addTeamChannelPermission } = this.props; const db = database.active; @@ -77,23 +76,25 @@ class AddExistingChannelView extends React.Component { .query( Q.where('team_id', ''), Q.where('t', Q.oneOf(['c', 'p'])), - Q.where('name', Q.like(`%${ stringToSearch }%`)), + Q.where('name', Q.like(`%${stringToSearch}%`)), Q.experimentalTake(QUERY_SIZE), Q.experimentalSortBy('room_updated_at', Q.desc) ) .fetch(); - const asyncFilter = async(channelsArray) => { - const results = await Promise.all(channelsArray.map(async(channel) => { - if (channel.prid) { - return false; - } - const permissions = await RocketChat.hasPermission([addTeamChannelPermission], channel.rid); - if (!permissions[0]) { - return false; - } - return true; - })); + const asyncFilter = async channelsArray => { + const results = await Promise.all( + channelsArray.map(async channel => { + if (channel.prid) { + return false; + } + const permissions = await RocketChat.hasPermission([addTeamChannelPermission], channel.rid); + if (!permissions[0]) { + return false; + } + return true; + }) + ); return channelsArray.filter((_v, index) => results[index]); }; @@ -102,18 +103,18 @@ class AddExistingChannelView extends React.Component { } catch (e) { log(e); } - } + }; - onSearchChangeText = debounce((text) => { + onSearchChangeText = debounce(text => { this.query(text); - }, 300) + }, 300); dismiss = () => { const { navigation } = this.props; return navigation.pop(); - } + }; - submit = async() => { + submit = async () => { const { selected } = this.state; const { isMasterDetail } = this.props; @@ -130,7 +131,7 @@ class AddExistingChannelView extends React.Component { showErrorAlert(I18n.t(e.data.error), I18n.t('Add_Existing_Channel'), () => {}); this.setState({ loading: false }); } - } + }; renderHeader = () => { const { theme } = this.props; @@ -139,14 +140,14 @@ class AddExistingChannelView extends React.Component { <SearchBox onChangeText={text => this.onSearchChangeText(text)} testID='add-existing-channel-view-search' /> </View> ); - } + }; - isChecked = (rid) => { + isChecked = rid => { const { selected } = this.state; return selected.includes(rid); - } + }; - toggleChannel = (rid) => { + toggleChannel = rid => { const { selected } = this.state; animateNextTransition(); @@ -158,7 +159,7 @@ class AddExistingChannelView extends React.Component { const filterSelected = selected.filter(el => el !== rid); this.setState({ selected: filterSelected }, () => this.setHeader()); } - } + }; renderItem = ({ item }) => { const isChecked = this.isChecked(item.rid); @@ -169,13 +170,12 @@ class AddExistingChannelView extends React.Component { title={RocketChat.getRoomTitle(item)} translateTitle={false} onPress={() => this.toggleChannel(item.rid)} - testID={`add-existing-channel-view-item-${ item.name }`} + testID={`add-existing-channel-view-item-${item.name}`} left={() => <List.Icon name={icon} />} right={() => (isChecked ? <List.Icon name='check' /> : null)} /> - ); - } + }; renderList = () => { const { search, channels } = this.state; @@ -192,7 +192,7 @@ class AddExistingChannelView extends React.Component { keyboardShouldPersistTaps='always' /> ); - } + }; render() { const { loading } = this.state; diff --git a/app/views/AdminPanelView/index.js b/app/views/AdminPanelView/index.js index bb790df432..b0101cf279 100644 --- a/app/views/AdminPanelView/index.js +++ b/app/views/AdminPanelView/index.js @@ -14,12 +14,12 @@ class AdminPanelView extends React.Component { static navigationOptions = ({ navigation, isMasterDetail }) => ({ headerLeft: isMasterDetail ? undefined : () => <HeaderButton.Drawer navigation={navigation} />, title: I18n.t('Admin_Panel') - }) + }); static propTypes = { baseUrl: PropTypes.string, token: PropTypes.string - } + }; render() { const { baseUrl, token } = this.props; @@ -32,8 +32,8 @@ class AdminPanelView extends React.Component { <WebView // https://github.com/react-native-community/react-native-webview/issues/1311 onMessage={() => {}} - source={{ uri: `${ baseUrl }/admin/info?layout=embedded` }} - injectedJavaScript={`Meteor.loginWithToken('${ token }', function() { })`} + source={{ uri: `${baseUrl}/admin/info?layout=embedded` }} + injectedJavaScript={`Meteor.loginWithToken('${token}', function() { })`} /> </SafeAreaView> ); diff --git a/app/views/AttachmentView.js b/app/views/AttachmentView.js index b213390d2e..c0a5fc2886 100644 --- a/app/views/AttachmentView.js +++ b/app/views/AttachmentView.js @@ -44,7 +44,7 @@ class AttachmentView extends React.Component { token: PropTypes.string }), Allow_Save_Media_to_Gallery: PropTypes.bool - } + }; constructor(props) { super(props); @@ -69,9 +69,7 @@ class AttachmentView extends React.Component { } setHeader = () => { - const { - route, navigation, theme, Allow_Save_Media_to_Gallery - } = this.props; + const { route, navigation, theme, Allow_Save_Media_to_Gallery } = this.props; const attachment = route.params?.attachment; let { title } = attachment; try { @@ -81,27 +79,34 @@ class AttachmentView extends React.Component { } const options = { title, - headerLeft: () => <HeaderButton.CloseModal testID='close-attachment-view' navigation={navigation} buttonStyle={{ color: themes[theme].previewTintColor }} />, - headerRight: () => ( - Allow_Save_Media_to_Gallery - ? <HeaderButton.Download testID='save-image' onPress={this.handleSave} buttonStyle={{ color: themes[theme].previewTintColor }} /> - : null + headerLeft: () => ( + <HeaderButton.CloseModal + testID='close-attachment-view' + navigation={navigation} + buttonStyle={{ color: themes[theme].previewTintColor }} + /> ), + headerRight: () => + Allow_Save_Media_to_Gallery ? ( + <HeaderButton.Download + testID='save-image' + onPress={this.handleSave} + buttonStyle={{ color: themes[theme].previewTintColor }} + /> + ) : null, headerBackground: () => <View style={{ flex: 1, backgroundColor: themes[theme].previewBackground }} />, headerTintColor: themes[theme].previewTintColor, headerTitleStyle: { color: themes[theme].previewTintColor, marginHorizontal: 10 } }; navigation.setOptions(options); - } + }; - getVideoRef = ref => this.videoRef = ref; + getVideoRef = ref => (this.videoRef = ref); - handleSave = async() => { + handleSave = async () => { const { attachment } = this.state; const { user, baseUrl } = this.props; - const { - image_url, image_type, video_url, video_type - } = attachment; + const { image_url, image_type, video_url, video_type } = attachment; const url = image_url || video_url; const mediaAttachment = formatAttachmentUrl(url, user.id, user.token, baseUrl); @@ -118,9 +123,9 @@ class AttachmentView extends React.Component { this.setState({ loading: true }); try { - const extension = image_url ? `.${ mime.extension(image_type) || 'jpg' }` : `.${ mime.extension(video_type) || 'mp4' }`; - const documentDir = `${ RNFetchBlob.fs.dirs.DocumentDir }/`; - const path = `${ documentDir + SHA256(url) + extension }`; + const extension = image_url ? `.${mime.extension(image_type) || 'jpg'}` : `.${mime.extension(video_type) || 'mp4'}`; + const documentDir = `${RNFetchBlob.fs.dirs.DocumentDir}/`; + const path = `${documentDir + SHA256(url) + extension}`; const file = await RNFetchBlob.config({ path }).fetch('GET', mediaAttachment); await CameraRoll.save(path, { album: 'Rocket.Chat' }); await file.flush(); @@ -131,10 +136,8 @@ class AttachmentView extends React.Component { this.setState({ loading: false }); }; - renderImage = (uri) => { - const { - theme, width, height, insets - } = this.props; + renderImage = uri => { + const { theme, width, height, insets } = this.props; const headerHeight = getHeaderHeight(width > height); return ( <ImageViewer @@ -145,7 +148,7 @@ class AttachmentView extends React.Component { height={height - insets.top - insets.bottom - headerHeight} /> ); - } + }; renderVideo = uri => ( <Video diff --git a/app/views/AuthLoadingView.js b/app/views/AuthLoadingView.js index 318cd9aeb8..e97c10d943 100644 --- a/app/views/AuthLoadingView.js +++ b/app/views/AuthLoadingView.js @@ -1,7 +1,5 @@ import React from 'react'; -import { - ActivityIndicator, StyleSheet, Text, View -} from 'react-native'; +import { ActivityIndicator, StyleSheet, Text, View } from 'react-native'; import PropTypes from 'prop-types'; import { connect } from 'react-redux'; @@ -31,7 +29,7 @@ const AuthLoadingView = React.memo(({ theme, text }) => ( {text && ( <> <ActivityIndicator color={themes[theme].auxiliaryText} size='large' /> - <Text style={[styles.text, { color: themes[theme].bodyText }]}>{`${ text }\n${ I18n.t('Please_wait') }`}</Text> + <Text style={[styles.text, { color: themes[theme].bodyText }]}>{`${text}\n${I18n.t('Please_wait')}`}</Text> </> )} </View> diff --git a/app/views/AuthenticationWebView.js b/app/views/AuthenticationWebView.js index 99978b7d79..bba518d752 100644 --- a/app/views/AuthenticationWebView.js +++ b/app/views/AuthenticationWebView.js @@ -48,7 +48,7 @@ class AuthenticationWebView extends React.PureComponent { Accounts_Iframe_api_url: PropTypes.bool, Accounts_Iframe_api_method: PropTypes.bool, theme: PropTypes.string - } + }; constructor(props) { super(props); @@ -56,8 +56,8 @@ class AuthenticationWebView extends React.PureComponent { logging: false, loading: false }; - this.oauthRedirectRegex = new RegExp(`(?=.*(${ props.server }))(?=.*(credentialToken))(?=.*(credentialSecret))`, 'g'); - this.iframeRedirectRegex = new RegExp(`(?=.*(${ props.server }))(?=.*(event|loginToken|token))`, 'g'); + this.oauthRedirectRegex = new RegExp(`(?=.*(${props.server}))(?=.*(credentialToken))(?=.*(credentialSecret))`, 'g'); + this.iframeRedirectRegex = new RegExp(`(?=.*(${props.server}))(?=.*(event|loginToken|token))`, 'g'); } componentWillUnmount() { @@ -69,9 +69,9 @@ class AuthenticationWebView extends React.PureComponent { dismiss = () => { const { navigation } = this.props; navigation.pop(); - } + }; - login = (params) => { + login = params => { const { logging } = this.state; if (logging) { return; @@ -86,21 +86,25 @@ class AuthenticationWebView extends React.PureComponent { } this.setState({ logging: false }); this.dismiss(); - } + }; // Force 3s delay so the server has time to evaluate the token debouncedLogin = debounce(params => this.login(params), 3000); - tryLogin = debounce(async() => { - const { Accounts_Iframe_api_url, Accounts_Iframe_api_method } = this.props; - const data = await fetch(Accounts_Iframe_api_url, { method: Accounts_Iframe_api_method }).then(response => response.json()); - const resume = data?.login || data?.loginToken; - if (resume) { - this.login({ resume }); - } - }, 3000, true) + tryLogin = debounce( + async () => { + const { Accounts_Iframe_api_url, Accounts_Iframe_api_method } = this.props; + const data = await fetch(Accounts_Iframe_api_url, { method: Accounts_Iframe_api_method }).then(response => response.json()); + const resume = data?.login || data?.loginToken; + if (resume) { + this.login({ resume }); + } + }, + 3000, + true + ); - onNavigationStateChange = (webViewState) => { + onNavigationStateChange = webViewState => { const url = decodeURIComponent(webViewState.url); const { route } = this.props; const { authType } = route.params; @@ -141,11 +145,11 @@ class AuthenticationWebView extends React.PureComponent { this.debouncedLogin({ resume: credentials.token || credentials.loginToken }); break; default: - // Do nothing + // Do nothing } } } - } + }; render() { const { loading } = this.state; @@ -170,7 +174,7 @@ class AuthenticationWebView extends React.PureComponent { this.setState({ loading: false }); }} /> - { loading ? <ActivityIndicator size='large' theme={theme} absolute /> : null } + {loading ? <ActivityIndicator size='large' theme={theme} absolute /> : null} </> ); } diff --git a/app/views/AutoTranslateView/index.js b/app/views/AutoTranslateView/index.js index 7bea93b785..0c3e9505ae 100644 --- a/app/views/AutoTranslateView/index.js +++ b/app/views/AutoTranslateView/index.js @@ -20,12 +20,12 @@ const styles = StyleSheet.create({ class AutoTranslateView extends React.Component { static navigationOptions = () => ({ title: I18n.t('Auto_Translate') - }) + }); static propTypes = { route: PropTypes.object, theme: PropTypes.string - } + }; constructor(props) { super(props); @@ -35,18 +35,17 @@ class AutoTranslateView extends React.Component { if (room && room.observe) { this.roomObservable = room.observe(); - this.subscription = this.roomObservable - .subscribe((changes) => { - if (this.mounted) { - const { selectedLanguage, enableAutoTranslate } = this.state; - if (selectedLanguage !== changes.autoTranslateLanguage) { - this.setState({ selectedLanguage: changes.autoTranslateLanguage }); - } - if (enableAutoTranslate !== changes.autoTranslate) { - this.setState({ enableAutoTranslate: changes.autoTranslate }); - } + this.subscription = this.roomObservable.subscribe(changes => { + if (this.mounted) { + const { selectedLanguage, enableAutoTranslate } = this.state; + if (selectedLanguage !== changes.autoTranslateLanguage) { + this.setState({ selectedLanguage: changes.autoTranslateLanguage }); + } + if (enableAutoTranslate !== changes.autoTranslate) { + this.setState({ enableAutoTranslate: changes.autoTranslate }); } - }); + } + }); } this.state = { languages: [], @@ -71,7 +70,7 @@ class AutoTranslateView extends React.Component { } } - toggleAutoTranslate = async() => { + toggleAutoTranslate = async () => { logEvent(events.AT_TOGGLE_TRANSLATE); const { enableAutoTranslate } = this.state; try { @@ -86,9 +85,9 @@ class AutoTranslateView extends React.Component { logEvent(events.AT_TOGGLE_TRANSLATE_F); console.log(error); } - } + }; - saveAutoTranslateLanguage = async(language) => { + saveAutoTranslateLanguage = async language => { logEvent(events.AT_SET_LANG); try { await RocketChat.saveAutoTranslate({ @@ -101,23 +100,17 @@ class AutoTranslateView extends React.Component { logEvent(events.AT_SET_LANG_F); console.log(error); } - } + }; renderIcon = () => { const { theme } = this.props; return <List.Icon name='check' style={{ color: themes[theme].tintColor }} />; - } + }; renderSwitch = () => { const { enableAutoTranslate } = this.state; - return ( - <Switch - value={enableAutoTranslate} - trackColor={SWITCH_TRACK_COLOR} - onValueChange={this.toggleAutoTranslate} - /> - ); - } + return <Switch value={enableAutoTranslate} trackColor={SWITCH_TRACK_COLOR} onValueChange={this.toggleAutoTranslate} />; + }; renderItem = ({ item }) => { const { selectedLanguage } = this.state; @@ -128,12 +121,12 @@ class AutoTranslateView extends React.Component { <List.Item title={name || language} onPress={() => this.saveAutoTranslateLanguage(language)} - testID={`auto-translate-view-${ language }`} + testID={`auto-translate-view-${language}`} right={isSelected ? this.renderIcon : null} translateTitle={false} /> ); - } + }; render() { const { languages } = this.state; @@ -143,11 +136,7 @@ class AutoTranslateView extends React.Component { <List.Container testID='auto-translate-view-list'> <List.Section> <List.Separator /> - <List.Item - title='Enable_Auto_Translate' - testID='auto-translate-view-switch' - right={() => this.renderSwitch()} - /> + <List.Item title='Enable_Auto_Translate' testID='auto-translate-view-switch' right={() => this.renderSwitch()} /> <List.Separator /> </List.Section> <FlatList diff --git a/app/views/ChangePasscodeView.js b/app/views/ChangePasscodeView.js index 398253520f..ef29abe18c 100644 --- a/app/views/ChangePasscodeView.js +++ b/app/views/ChangePasscodeView.js @@ -39,11 +39,11 @@ const ChangePasscodeView = React.memo(({ theme }) => { } }, [data]); - const showChangePasscode = (args) => { + const showChangePasscode = args => { setData(args); }; - const onSubmit = (passcode) => { + const onSubmit = passcode => { const { submit } = data; if (submit) { submit(passcode); @@ -73,20 +73,13 @@ const ChangePasscodeView = React.memo(({ theme }) => { }, []); return ( - <Modal - useNativeDriver - isVisible={visible} - hideModalContentWhileAnimating - style={styles.modal} - > + <Modal useNativeDriver isVisible={visible} hideModalContentWhileAnimating style={styles.modal}> <PasscodeChoose theme={theme} type={TYPE.choose} finishProcess={onSubmit} force={data?.force} /> - {!data?.force - ? ( - <Touchable onPress={onCancel} style={styles.close}> - <CustomIcon name='close' color={themes[theme].passcodePrimary} size={30} /> - </Touchable> - ) - : null} + {!data?.force ? ( + <Touchable onPress={onCancel} style={styles.close}> + <CustomIcon name='close' color={themes[theme].passcodePrimary} size={30} /> + </Touchable> + ) : null} </Modal> ); }); diff --git a/app/views/CreateChannelView.js b/app/views/CreateChannelView.js index 44357af418..af17961fb0 100644 --- a/app/views/CreateChannelView.js +++ b/app/views/CreateChannelView.js @@ -1,9 +1,7 @@ import React from 'react'; import { connect } from 'react-redux'; import PropTypes from 'prop-types'; -import { - FlatList, ScrollView, StyleSheet, Switch, Text, View -} from 'react-native'; +import { FlatList, ScrollView, StyleSheet, Switch, Text, View } from 'react-native'; import { dequal } from 'dequal'; import * as List from '../containers/List'; @@ -104,12 +102,8 @@ class CreateChannelView extends React.Component { } shouldComponentUpdate(nextProps, nextState) { - const { - channelName, type, readOnly, broadcast, encrypted - } = this.state; - const { - users, isFetching, encryptionEnabled, theme - } = this.props; + const { channelName, type, readOnly, broadcast, encrypted } = this.state; + const { users, isFetching, encryptionEnabled, theme } = this.props; if (nextProps.theme !== theme) { return true; } @@ -147,31 +141,28 @@ class CreateChannelView extends React.Component { navigation.setOptions({ title: isTeam ? I18n.t('Create_Team') : I18n.t('Create_Channel') }); - } + }; - toggleRightButton = (channelName) => { + toggleRightButton = channelName => { const { navigation } = this.props; navigation.setOptions({ - headerRight: () => channelName.trim().length > 0 && ( - <HeaderButton.Container> - <HeaderButton.Item title={I18n.t('Create')} onPress={this.submit} testID='create-channel-submit' /> - </HeaderButton.Container> - ) + headerRight: () => + channelName.trim().length > 0 && ( + <HeaderButton.Container> + <HeaderButton.Item title={I18n.t('Create')} onPress={this.submit} testID='create-channel-submit' /> + </HeaderButton.Container> + ) }); - } + }; - onChangeText = (channelName) => { + onChangeText = channelName => { this.toggleRightButton(channelName); this.setState({ channelName }); - } + }; submit = () => { - const { - channelName, type, readOnly, broadcast, encrypted, isTeam - } = this.state; - const { - users: usersProps, isFetching, create - } = this.props; + const { channelName, type, readOnly, broadcast, encrypted, isTeam } = this.state; + const { users: usersProps, isFetching, create } = this.props; if (!channelName.trim() || isFetching) { return; @@ -182,21 +173,26 @@ class CreateChannelView extends React.Component { // create channel or team create({ - name: channelName, users, type, readOnly, broadcast, encrypted, isTeam, teamId: this.teamId + name: channelName, + users, + type, + readOnly, + broadcast, + encrypted, + isTeam, + teamId: this.teamId }); Review.pushPositiveEvent(); - } + }; - removeUser = (user) => { + removeUser = user => { logEvent(events.CR_REMOVE_USER); const { removeUser } = this.props; removeUser(user); - } + }; - renderSwitch = ({ - id, value, label, onValueChange, disabled = false - }) => { + renderSwitch = ({ id, value, label, onValueChange, disabled = false }) => { const { theme } = this.props; return ( <View style={[styles.switchContainer, { backgroundColor: themes[theme].backgroundColor }]}> @@ -204,13 +200,13 @@ class CreateChannelView extends React.Component { <Switch value={value} onValueChange={onValueChange} - testID={`create-channel-${ id }`} + testID={`create-channel-${id}`} trackColor={SWITCH_TRACK_COLOR} disabled={disabled} /> </View> ); - } + }; renderType() { const { type, isTeam } = this.state; @@ -219,7 +215,7 @@ class CreateChannelView extends React.Component { id: 'type', value: type, label: isTeam ? 'Private_Team' : 'Private_Channel', - onValueChange: (value) => { + onValueChange: value => { logEvent(events.CR_TOGGLE_TYPE); // If we set the channel as public, encrypted status should be false this.setState(({ encrypted }) => ({ type: value, encrypted: value && encrypted })); @@ -234,7 +230,7 @@ class CreateChannelView extends React.Component { id: 'readonly', value: readOnly, label: isTeam ? 'Read_Only_Team' : 'Read_Only_Channel', - onValueChange: (value) => { + onValueChange: value => { logEvent(events.CR_TOGGLE_READ_ONLY); this.setState({ readOnly: value }); }, @@ -254,7 +250,7 @@ class CreateChannelView extends React.Component { id: 'encrypted', value: encrypted, label: 'Encrypted', - onValueChange: (value) => { + onValueChange: value => { logEvent(events.CR_TOGGLE_ENCRYPTED); this.setState({ encrypted: value }); }, @@ -269,7 +265,7 @@ class CreateChannelView extends React.Component { id: 'broadcast', value: broadcast, label: isTeam ? 'Broadcast_Team' : 'Broadcast_Channel', - onValueChange: (value) => { + onValueChange: value => { logEvent(events.CR_TOGGLE_BROADCAST); this.setState({ broadcast: value, @@ -287,14 +283,14 @@ class CreateChannelView extends React.Component { name={item.fname} username={item.name} onPress={() => this.removeUser(item)} - testID={`create-channel-view-item-${ item.name }`} + testID={`create-channel-view-item-${item.name}`} icon='check' baseUrl={baseUrl} user={user} theme={theme} /> ); - } + }; renderInvitedList = () => { const { users, theme } = this.props; @@ -318,21 +314,18 @@ class CreateChannelView extends React.Component { keyboardShouldPersistTaps='always' /> ); - } + }; render() { const { channelName, isTeam } = this.state; - const { - users, isFetching, theme - } = this.props; + const { users, isFetching, theme } = this.props; const userCount = users.length; return ( <KeyboardView style={{ backgroundColor: themes[theme].auxiliaryBackground }} contentContainerStyle={[sharedStyles.container, styles.container]} - keyboardVerticalOffset={128} - > + keyboardVerticalOffset={128}> <StatusBar /> <SafeAreaView testID='create-channel-view'> <ScrollView {...scrollPersistTaps}> @@ -362,7 +355,9 @@ class CreateChannelView extends React.Component { </View> <View style={styles.invitedHeader}> <Text style={[styles.invitedTitle, { color: themes[theme].titleText }]}>{I18n.t('Invite')}</Text> - <Text style={[styles.invitedCount, { color: themes[theme].auxiliaryText }]}>{userCount === 1 ? I18n.t('1_user') : I18n.t('N_users', { n: userCount })}</Text> + <Text style={[styles.invitedCount, { color: themes[theme].auxiliaryText }]}> + {userCount === 1 ? I18n.t('1_user') : I18n.t('N_users', { n: userCount })} + </Text> </View> {this.renderInvitedList()} <Loading visible={isFetching} /> diff --git a/app/views/CreateDiscussionView/SelectChannel.js b/app/views/CreateDiscussionView/SelectChannel.js index 043d961139..5dfecfc370 100644 --- a/app/views/CreateDiscussionView/SelectChannel.js +++ b/app/views/CreateDiscussionView/SelectChannel.js @@ -10,12 +10,10 @@ import { MultiSelect } from '../../containers/UIKit/MultiSelect'; import { themes } from '../../constants/colors'; import styles from './styles'; -const SelectChannel = ({ - server, token, userId, onChannelSelect, initial, blockUnauthenticatedAccess, serverVersion, theme -}) => { +const SelectChannel = ({ server, token, userId, onChannelSelect, initial, blockUnauthenticatedAccess, serverVersion, theme }) => { const [channels, setChannels] = useState([]); - const getChannels = debounce(async(keyword = '') => { + const getChannels = debounce(async (keyword = '') => { try { const res = await RocketChat.localSearch({ text: keyword }); setChannels(res); @@ -24,16 +22,17 @@ const SelectChannel = ({ } }, 300); - const getAvatar = item => avatarURL({ - text: RocketChat.getRoomAvatar(item), - type: item.t, - user: { id: userId, token }, - server, - avatarETag: item.avatarETag, - rid: item.rid, - blockUnauthenticatedAccess, - serverVersion - }); + const getAvatar = item => + avatarURL({ + text: RocketChat.getRoomAvatar(item), + type: item.t, + user: { id: userId, token }, + server, + avatarETag: item.avatarETag, + rid: item.rid, + blockUnauthenticatedAccess, + serverVersion + }); return ( <> @@ -51,7 +50,7 @@ const SelectChannel = ({ imageUrl: getAvatar(channel) }))} onClose={() => setChannels([])} - placeholder={{ text: `${ I18n.t('Select_a_Channel') }...` }} + placeholder={{ text: `${I18n.t('Select_a_Channel')}...` }} /> </> ); diff --git a/app/views/CreateDiscussionView/SelectUsers.js b/app/views/CreateDiscussionView/SelectUsers.js index ff613a000c..323fc0fd75 100644 --- a/app/views/CreateDiscussionView/SelectUsers.js +++ b/app/views/CreateDiscussionView/SelectUsers.js @@ -13,19 +13,17 @@ import { MultiSelect } from '../../containers/UIKit/MultiSelect'; import { themes } from '../../constants/colors'; import styles from './styles'; -const SelectUsers = ({ - server, token, userId, selected, onUserSelect, blockUnauthenticatedAccess, serverVersion, theme -}) => { +const SelectUsers = ({ server, token, userId, selected, onUserSelect, blockUnauthenticatedAccess, serverVersion, theme }) => { const [users, setUsers] = useState([]); - const getUsers = debounce(async(keyword = '') => { + const getUsers = debounce(async (keyword = '') => { try { const db = database.active; const usersCollection = db.get('users'); const res = await RocketChat.search({ text: keyword, filterRooms: false }); let items = [...users.filter(u => selected.includes(u.name)), ...res.filter(r => !users.find(u => u.name === r.name))]; const records = await usersCollection.query(Q.where('username', Q.oneOf(items.map(u => u.name)))).fetch(); - items = items.map((item) => { + items = items.map(item => { const index = records.findIndex(r => r.username === item.name); if (index > -1) { const record = records[index]; @@ -46,15 +44,16 @@ const SelectUsers = ({ } }, 300); - const getAvatar = item => avatarURL({ - text: RocketChat.getRoomAvatar(item), - type: 'd', - user: { id: userId, token }, - server, - avatarETag: item.avatarETag, - blockUnauthenticatedAccess, - serverVersion - }); + const getAvatar = item => + avatarURL({ + text: RocketChat.getRoomAvatar(item), + type: 'd', + user: { id: userId, token }, + server, + avatarETag: item.avatarETag, + blockUnauthenticatedAccess, + serverVersion + }); return ( <> @@ -70,7 +69,7 @@ const SelectUsers = ({ imageUrl: getAvatar(user) }))} onClose={() => setUsers(users.filter(u => selected.includes(u.name)))} - placeholder={{ text: `${ I18n.t('Select_Users') }...` }} + placeholder={{ text: `${I18n.t('Select_Users')}...` }} context={BLOCK_CONTEXT.FORM} multiselect /> diff --git a/app/views/CreateDiscussionView/index.js b/app/views/CreateDiscussionView/index.js index 33717b7456..0765d82616 100644 --- a/app/views/CreateDiscussionView/index.js +++ b/app/views/CreateDiscussionView/index.js @@ -41,7 +41,7 @@ class CreateChannelView extends React.Component { blockUnauthenticatedAccess: PropTypes.bool, serverVersion: PropTypes.string, encryptionEnabled: PropTypes.bool - } + }; constructor(props) { super(props); @@ -61,9 +61,7 @@ class CreateChannelView extends React.Component { componentDidUpdate(prevProps, prevState) { const { channel, name } = this.state; - const { - loading, failure, error, result, isMasterDetail - } = this.props; + const { loading, failure, error, result, isMasterDetail } = this.props; if (channel?.rid !== prevState.channel?.rid || name !== prevState.name) { this.setHeader(); @@ -82,7 +80,10 @@ class CreateChannelView extends React.Component { Navigation.navigate('RoomsListView'); } const item = { - rid, name: RocketChat.getRoomTitle(result), t, prid + rid, + name: RocketChat.getRoomTitle(result), + t, + prid }; goRoom({ item, isMasterDetail }); } @@ -95,26 +96,34 @@ class CreateChannelView extends React.Component { const showCloseModal = route.params?.showCloseModal; navigation.setOptions({ title: I18n.t('Create_Discussion'), - headerRight: - this.valid() - ? () => ( + headerRight: this.valid() + ? () => ( <HeaderButton.Container> <HeaderButton.Item title={I18n.t('Create')} onPress={this.submit} testID='create-discussion-submit' /> </HeaderButton.Container> - ) - : null, + ) + : null, headerLeft: showCloseModal ? () => <HeaderButton.CloseModal navigation={navigation} /> : undefined }); - } + }; submit = () => { const { - name: t_name, channel: { prid, rid }, message: { id: pmid }, reply, users, encrypted + name: t_name, + channel: { prid, rid }, + message: { id: pmid }, + reply, + users, + encrypted } = this.state; const { create } = this.props; const params = { - prid: prid || rid, pmid, t_name, reply, users + prid: prid || rid, + pmid, + t_name, + reply, + users }; if (this.isEncryptionEnabled) { params.encrypted = encrypted ?? false; @@ -124,27 +133,20 @@ class CreateChannelView extends React.Component { }; valid = () => { - const { - channel, name - } = this.state; + const { channel, name } = this.state; - return ( - channel - && channel.rid - && channel.rid.trim().length - && name.trim().length - ); + return channel && channel.rid && channel.rid.trim().length && name.trim().length; }; selectChannel = ({ value }) => { logEvent(events.CD_SELECT_CHANNEL); this.setState({ channel: value, encrypted: value?.encrypted }); - } + }; selectUsers = ({ value }) => { logEvent(events.CD_SELECT_USERS); this.setState({ users: value }); - } + }; get isEncryptionEnabled() { const { channel } = this.state; @@ -152,24 +154,19 @@ class CreateChannelView extends React.Component { return encryptionEnabled && E2E_ROOM_TYPES[channel?.t]; } - onEncryptedChange = (value) => { + onEncryptedChange = value => { logEvent(events.CD_TOGGLE_ENCRY); this.setState({ encrypted: value }); - } + }; render() { - const { - name, users, encrypted - } = this.state; - const { - server, user, loading, blockUnauthenticatedAccess, theme, serverVersion - } = this.props; + const { name, users, encrypted } = this.state; + const { server, user, loading, blockUnauthenticatedAccess, theme, serverVersion } = this.props; return ( <KeyboardView style={{ backgroundColor: themes[theme].auxiliaryBackground }} contentContainerStyle={styles.container} - keyboardVerticalOffset={128} - > + keyboardVerticalOffset={128}> <StatusBar /> <SafeAreaView testID='create-discussion-view' style={styles.container}> <ScrollView {...scrollPersistTaps}> @@ -203,17 +200,12 @@ class CreateChannelView extends React.Component { serverVersion={serverVersion} theme={theme} /> - {this.isEncryptionEnabled - ? ( - <> - <Text style={[styles.label, { color: themes[theme].titleText }]}>{I18n.t('Encrypted')}</Text> - <Switch - value={encrypted} - onValueChange={this.onEncryptedChange} - trackColor={SWITCH_TRACK_COLOR} - /> - </> - ) : null} + {this.isEncryptionEnabled ? ( + <> + <Text style={[styles.label, { color: themes[theme].titleText }]}>{I18n.t('Encrypted')}</Text> + <Switch value={encrypted} onValueChange={this.onEncryptedChange} trackColor={SWITCH_TRACK_COLOR} /> + </> + ) : null} <Loading visible={loading} /> </ScrollView> </SafeAreaView> diff --git a/app/views/DefaultBrowserView.js b/app/views/DefaultBrowserView.js index 529361f304..245e16c826 100644 --- a/app/views/DefaultBrowserView.js +++ b/app/views/DefaultBrowserView.js @@ -42,11 +42,11 @@ const BROWSERS = [ class DefaultBrowserView extends React.Component { static navigationOptions = () => ({ title: I18n.t('Default_browser') - }) + }); static propTypes = { theme: PropTypes.string - } + }; constructor(props) { super(props); @@ -66,9 +66,9 @@ class DefaultBrowserView extends React.Component { } init = () => { - BROWSERS.forEach((browser) => { + BROWSERS.forEach(browser => { const { value } = browser; - Linking.canOpenURL(value).then((installed) => { + Linking.canOpenURL(value).then(installed => { if (installed) { if (this.mounted) { this.setState(({ supported }) => ({ supported: [...supported, browser] })); @@ -79,17 +79,17 @@ class DefaultBrowserView extends React.Component { } }); }); - } + }; - isSelected = (value) => { + isSelected = value => { const { browser } = this.state; if (!browser && value === 'systemDefault:') { return true; } return browser === value; - } + }; - changeDefaultBrowser = async(newBrowser) => { + changeDefaultBrowser = async newBrowser => { logEvent(events.DB_CHANGE_DEFAULT_BROWSER, { browser: newBrowser }); try { const browser = newBrowser !== 'systemDefault:' ? newBrowser : null; @@ -98,12 +98,12 @@ class DefaultBrowserView extends React.Component { } catch { logEvent(events.DB_CHANGE_DEFAULT_BROWSER_F); } - } + }; renderIcon = () => { const { theme } = this.props; return <List.Icon name='check' color={themes[theme].tintColor} />; - } + }; renderItem = ({ item }) => { const { title, value } = item; @@ -111,19 +111,19 @@ class DefaultBrowserView extends React.Component { <List.Item title={I18n.t(title, { defaultValue: title })} onPress={() => this.changeDefaultBrowser(value)} - testID={`default-browser-view-${ title }`} + testID={`default-browser-view-${title}`} right={this.isSelected(value) ? this.renderIcon : null} translateTitle={false} /> ); - } + }; renderHeader = () => ( <> <List.Header title='Choose_where_you_want_links_be_opened' /> <List.Separator /> </> - ) + ); render() { const { supported } = this.state; diff --git a/app/views/DirectoryView/Options.js b/app/views/DirectoryView/Options.js index e673966aa0..7d6b1e2df3 100644 --- a/app/views/DirectoryView/Options.js +++ b/app/views/DirectoryView/Options.js @@ -1,7 +1,5 @@ import React, { PureComponent } from 'react'; -import { - Animated, Easing, Switch, Text, TouchableWithoutFeedback, View -} from 'react-native'; +import { Animated, Easing, Switch, Text, TouchableWithoutFeedback, View } from 'react-native'; import PropTypes from 'prop-types'; import Touch from '../../utils/touch'; @@ -27,7 +25,7 @@ export default class DirectoryOptions extends PureComponent { changeType: PropTypes.func, toggleWorkspace: PropTypes.func, theme: PropTypes.string - } + }; constructor(props) { super(props); @@ -35,27 +33,21 @@ export default class DirectoryOptions extends PureComponent { } componentDidMount() { - Animated.timing( - this.animatedValue, - { - toValue: 1, - ...ANIMATION_PROPS - } - ).start(); + Animated.timing(this.animatedValue, { + toValue: 1, + ...ANIMATION_PROPS + }).start(); } close = () => { const { close } = this.props; - Animated.timing( - this.animatedValue, - { - toValue: 0, - ...ANIMATION_PROPS - } - ).start(() => close()); - } + Animated.timing(this.animatedValue, { + toValue: 0, + ...ANIMATION_PROPS + }).start(() => close()); + }; - renderItem = (itemType) => { + renderItem = itemType => { const { changeType, type: propType, theme } = this.props; let text = 'Users'; let icon = 'user'; @@ -70,11 +62,7 @@ export default class DirectoryOptions extends PureComponent { } return ( - <Touch - onPress={() => changeType(itemType)} - style={styles.dropdownItemButton} - theme={theme} - > + <Touch onPress={() => changeType(itemType)} style={styles.dropdownItemButton} theme={theme}> <View style={styles.dropdownItemContainer}> <CustomIcon style={[styles.dropdownItemIcon, { color: themes[theme].bodyText }]} size={22} name={icon} /> <Text style={[styles.dropdownItemText, { color: themes[theme].bodyText }]}>{I18n.t(text)}</Text> @@ -82,16 +70,14 @@ export default class DirectoryOptions extends PureComponent { </View> </Touch> ); - } + }; render() { const translateY = this.animatedValue.interpolate({ inputRange: [0, 1], outputRange: [-326, 0] }); - const { - globalUsers, toggleWorkspace, isFederationEnabled, theme - } = this.props; + const { globalUsers, toggleWorkspace, isFederationEnabled, theme } = this.props; const backdropOpacity = this.animatedValue.interpolate({ inputRange: [0, 1], outputRange: [0, themes[theme].backdropOpacity] @@ -101,30 +87,42 @@ export default class DirectoryOptions extends PureComponent { <TouchableWithoutFeedback onPress={this.close}> <Animated.View style={[styles.backdrop, { backgroundColor: themes[theme].backdropColor, opacity: backdropOpacity }]} /> </TouchableWithoutFeedback> - <Animated.View style={[styles.dropdownContainer, { transform: [{ translateY }], backgroundColor: themes[theme].backgroundColor }]}> + <Animated.View + style={[styles.dropdownContainer, { transform: [{ translateY }], backgroundColor: themes[theme].backgroundColor }]}> <Touch onPress={this.close} theme={theme}> - <View style={[styles.dropdownContainerHeader, styles.dropdownItemContainer, { borderColor: themes[theme].separatorColor }]}> + <View + style={[ + styles.dropdownContainerHeader, + styles.dropdownItemContainer, + { borderColor: themes[theme].separatorColor } + ]}> <Text style={[styles.dropdownToggleText, { color: themes[theme].auxiliaryText }]}>{I18n.t('Search_by')}</Text> - <CustomIcon style={[styles.dropdownItemIcon, styles.inverted, { color: themes[theme].auxiliaryTintColor }]} size={22} name='chevron-down' /> + <CustomIcon + style={[styles.dropdownItemIcon, styles.inverted, { color: themes[theme].auxiliaryTintColor }]} + size={22} + name='chevron-down' + /> </View> </Touch> {this.renderItem('channels')} {this.renderItem('users')} {this.renderItem('teams')} - {isFederationEnabled - ? ( - <> - <View style={[styles.dropdownSeparator, { backgroundColor: themes[theme].separatorColor }]} /> - <View style={[styles.dropdownItemContainer, styles.globalUsersContainer]}> - <View style={styles.globalUsersTextContainer}> - <Text style={[styles.dropdownItemText, { color: themes[theme].infoText }]}>{I18n.t('Search_global_users')}</Text> - <Text style={[styles.dropdownItemDescription, { color: themes[theme].infoText }]}>{I18n.t('Search_global_users_description')}</Text> - </View> - <Switch value={globalUsers} onValueChange={toggleWorkspace} trackColor={SWITCH_TRACK_COLOR} /> + {isFederationEnabled ? ( + <> + <View style={[styles.dropdownSeparator, { backgroundColor: themes[theme].separatorColor }]} /> + <View style={[styles.dropdownItemContainer, styles.globalUsersContainer]}> + <View style={styles.globalUsersTextContainer}> + <Text style={[styles.dropdownItemText, { color: themes[theme].infoText }]}> + {I18n.t('Search_global_users')} + </Text> + <Text style={[styles.dropdownItemDescription, { color: themes[theme].infoText }]}> + {I18n.t('Search_global_users_description')} + </Text> </View> - </> - ) - : null} + <Switch value={globalUsers} onValueChange={toggleWorkspace} trackColor={SWITCH_TRACK_COLOR} /> + </View> + </> + ) : null} </Animated.View> </> ); diff --git a/app/views/DirectoryView/index.js b/app/views/DirectoryView/index.js index 41f7f44692..e05a806fce 100644 --- a/app/views/DirectoryView/index.js +++ b/app/views/DirectoryView/index.js @@ -1,8 +1,6 @@ import React from 'react'; import PropTypes from 'prop-types'; -import { - FlatList, Text, View -} from 'react-native'; +import { FlatList, Text, View } from 'react-native'; import { connect } from 'react-redux'; import * as List from '../../containers/List'; @@ -35,7 +33,7 @@ class DirectoryView extends React.Component { options.headerLeft = () => <HeaderButton.CloseModal navigation={navigation} testID='directory-view-close' />; } return options; - } + }; static propTypes = { navigation: PropTypes.object, @@ -67,18 +65,21 @@ class DirectoryView extends React.Component { this.load({}); } - onSearchChangeText = (text) => { + onSearchChangeText = text => { this.setState({ text }, this.search); - } + }; // eslint-disable-next-line react/sort-comp - load = debounce(async({ newSearch = false }) => { + load = debounce(async ({ newSearch = false }) => { if (newSearch) { this.setState({ data: [], total: -1, loading: false }); } const { - loading, text, total, data: { length } + loading, + text, + total, + data: { length } } = this.state; if (loading || length === total) { return; @@ -108,13 +109,13 @@ class DirectoryView extends React.Component { log(e); this.setState({ loading: false }); } - }, 200) + }, 200); search = () => { this.load({ newSearch: true }); - } + }; - changeType = (type) => { + changeType = type => { this.setState({ type, data: [] }, () => this.search()); if (type === 'users') { @@ -124,17 +125,20 @@ class DirectoryView extends React.Component { } else if (type === 'teams') { logEvent(events.DIRECTORY_SEARCH_TEAMS); } - } + }; toggleWorkspace = () => { - this.setState(({ globalUsers }) => ({ globalUsers: !globalUsers, data: [] }), () => this.search()); - } + this.setState( + ({ globalUsers }) => ({ globalUsers: !globalUsers, data: [] }), + () => this.search() + ); + }; toggleDropdown = () => { this.setState(({ showOptionsDropdown }) => ({ showOptionsDropdown: !showOptionsDropdown })); - } + }; - goRoom = (item) => { + goRoom = item => { const { navigation, isMasterDetail } = this.props; if (isMasterDetail) { navigation.navigate('DrawerNavigator'); @@ -142,9 +146,9 @@ class DirectoryView extends React.Component { navigation.navigate('RoomsListView'); } goRoom({ item, isMasterDetail }); - } + }; - onPressItem = async(item) => { + onPressItem = async item => { const { type } = this.state; if (type === 'users') { const result = await RocketChat.createDirectMessage(item.username); @@ -154,14 +158,23 @@ class DirectoryView extends React.Component { } else if (['p', 'c'].includes(item.t) && !item.teamMain) { const { room } = await RocketChat.getRoomInfo(item._id); this.goRoom({ - rid: item._id, name: item.name, joinCodeRequired: room.joinCodeRequired, t: item.t, search: true + rid: item._id, + name: item.name, + joinCodeRequired: room.joinCodeRequired, + t: item.t, + search: true }); } else { this.goRoom({ - rid: item._id, name: item.name, t: item.t, search: true, teamMain: item.teamMain, teamId: item.teamId + rid: item._id, + name: item.name, + t: item.t, + search: true, + teamMain: item.teamMain, + teamId: item.teamId }); } - } + }; renderHeader = () => { const { type } = this.state; @@ -181,26 +194,26 @@ class DirectoryView extends React.Component { return ( <> - <SearchBox - onChangeText={this.onSearchChangeText} - onSubmitEditing={this.search} - testID='directory-view-search' - /> - <Touch - onPress={this.toggleDropdown} - style={styles.dropdownItemButton} - testID='directory-view-dropdown' - theme={theme} - > - <View style={[sharedStyles.separatorVertical, styles.toggleDropdownContainer, { borderColor: themes[theme].separatorColor }]}> + <SearchBox onChangeText={this.onSearchChangeText} onSubmitEditing={this.search} testID='directory-view-search' /> + <Touch onPress={this.toggleDropdown} style={styles.dropdownItemButton} testID='directory-view-dropdown' theme={theme}> + <View + style={[ + sharedStyles.separatorVertical, + styles.toggleDropdownContainer, + { borderColor: themes[theme].separatorColor } + ]}> <CustomIcon style={[styles.toggleDropdownIcon, { color: themes[theme].tintColor }]} size={20} name={icon} /> <Text style={[styles.toggleDropdownText, { color: themes[theme].tintColor }]}>{I18n.t(text)}</Text> - <CustomIcon name='chevron-down' size={20} style={[styles.toggleDropdownArrow, { color: themes[theme].auxiliaryTintColor }]} /> + <CustomIcon + name='chevron-down' + size={20} + style={[styles.toggleDropdownArrow, { color: themes[theme].auxiliaryTintColor }]} + /> </View> </Touch> </> ); - } + }; renderItem = ({ item, index }) => { const { data, type } = this.state; @@ -218,7 +231,7 @@ class DirectoryView extends React.Component { title: item.name, onPress: () => this.onPressItem(item), baseUrl, - testID: `directory-view-item-${ item.name }`.toLowerCase(), + testID: `directory-view-item-${item.name}`.toLowerCase(), style, user, theme, @@ -258,18 +271,13 @@ class DirectoryView extends React.Component { {...commonProps} /> ); - } + }; render = () => { - const { - data, loading, showOptionsDropdown, type, globalUsers - } = this.state; + const { data, loading, showOptionsDropdown, type, globalUsers } = this.state; const { isFederationEnabled, theme } = this.props; return ( - <SafeAreaView - style={{ backgroundColor: themes[theme].backgroundColor }} - testID='directory-view' - > + <SafeAreaView style={{ backgroundColor: themes[theme].backgroundColor }} testID='directory-view'> <StatusBar /> <FlatList data={data} @@ -284,22 +292,20 @@ class DirectoryView extends React.Component { ListFooterComponent={loading ? <ActivityIndicator theme={theme} /> : null} onEndReached={() => this.load({})} /> - {showOptionsDropdown - ? ( - <Options - theme={theme} - type={type} - globalUsers={globalUsers} - close={this.toggleDropdown} - changeType={this.changeType} - toggleWorkspace={this.toggleWorkspace} - isFederationEnabled={isFederationEnabled} - /> - ) - : null} + {showOptionsDropdown ? ( + <Options + theme={theme} + type={type} + globalUsers={globalUsers} + close={this.toggleDropdown} + changeType={this.changeType} + toggleWorkspace={this.toggleWorkspace} + isFederationEnabled={isFederationEnabled} + /> + ) : null} </SafeAreaView> ); - } + }; } const mapStateToProps = state => ({ diff --git a/app/views/E2EEncryptionSecurityView.js b/app/views/E2EEncryptionSecurityView.js index e29f382887..67a42453b7 100644 --- a/app/views/E2EEncryptionSecurityView.js +++ b/app/views/E2EEncryptionSecurityView.js @@ -42,13 +42,13 @@ const styles = StyleSheet.create({ }); class E2EEncryptionSecurityView extends React.Component { - state = { newPassword: '' } + state = { newPassword: '' }; newPasswordInputRef = React.createRef(); - onChangePasswordText = debounce(text => this.setState({ newPassword: text }), 300) + onChangePasswordText = debounce(text => this.setState({ newPassword: text }), 300); - setNewPasswordRef = ref => this.newPasswordInputRef = ref; + setNewPasswordRef = ref => (this.newPasswordInputRef = ref); changePassword = () => { const { newPassword } = this.state; @@ -59,7 +59,7 @@ class E2EEncryptionSecurityView extends React.Component { title: I18n.t('Are_you_sure_question_mark'), message: I18n.t('E2E_encryption_change_password_message'), confirmationText: I18n.t('E2E_encryption_change_password_confirmation'), - onPress: async() => { + onPress: async () => { logEvent(events.E2E_SEC_CHANGE_PASSWORD); try { const { server } = this.props; @@ -73,14 +73,14 @@ class E2EEncryptionSecurityView extends React.Component { } } }); - } + }; resetOwnKey = () => { showConfirmationAlert({ title: I18n.t('Are_you_sure_question_mark'), message: I18n.t('E2E_encryption_reset_message'), confirmationText: I18n.t('E2E_encryption_reset_confirmation'), - onPress: async() => { + onPress: async () => { logEvent(events.E2E_SEC_RESET_OWN_KEY); try { const res = await RocketChat.e2eResetOwnKey(); @@ -98,7 +98,7 @@ class E2EEncryptionSecurityView extends React.Component { } } }); - } + }; renderChangePassword = () => { const { newPassword } = this.state; @@ -109,8 +109,12 @@ class E2EEncryptionSecurityView extends React.Component { return ( <> <List.Section> - <Text style={[styles.title, { color: themes[theme].titleColor }]}>{I18n.t('E2E_encryption_change_password_title')}</Text> - <Text style={[styles.description, { color: themes[theme].bodyText }]}>{I18n.t('E2E_encryption_change_password_description')}</Text> + <Text style={[styles.title, { color: themes[theme].titleColor }]}> + {I18n.t('E2E_encryption_change_password_title')} + </Text> + <Text style={[styles.description, { color: themes[theme].bodyText }]}> + {I18n.t('E2E_encryption_change_password_description')} + </Text> <TextInput inputRef={this.setNewPasswordRef} placeholder={I18n.t('New_Password')} @@ -134,7 +138,7 @@ class E2EEncryptionSecurityView extends React.Component { <List.Separator /> </> ); - } + }; render() { const { theme } = this.props; @@ -147,7 +151,9 @@ class E2EEncryptionSecurityView extends React.Component { <List.Section> <Text style={[styles.title, { color: themes[theme].titleColor }]}>{I18n.t('E2E_encryption_reset_title')}</Text> - <Text style={[styles.description, { color: themes[theme].bodyText }]}>{I18n.t('E2E_encryption_reset_description')}</Text> + <Text style={[styles.description, { color: themes[theme].bodyText }]}> + {I18n.t('E2E_encryption_reset_description')} + </Text> <Button onPress={this.resetOwnKey} title={I18n.t('E2E_encryption_reset_button')} diff --git a/app/views/E2EEnterYourPasswordView.js b/app/views/E2EEnterYourPasswordView.js index f581e44872..ebf5a890d8 100644 --- a/app/views/E2EEnterYourPasswordView.js +++ b/app/views/E2EEnterYourPasswordView.js @@ -31,12 +31,12 @@ class E2EEnterYourPasswordView extends React.Component { static navigationOptions = ({ navigation }) => ({ headerLeft: () => <HeaderButton.CloseModal navigation={navigation} testID='e2e-enter-your-password-view-close' />, title: I18n.t('Enter_Your_E2E_Password') - }) + }); static propTypes = { encryptionDecodeKey: PropTypes.func, theme: PropTypes.string - } + }; constructor(props) { super(props); @@ -50,7 +50,7 @@ class E2EEnterYourPasswordView extends React.Component { const { password } = this.state; const { encryptionDecodeKey } = this.props; encryptionDecodeKey(password); - } + }; render() { const { password } = this.state; @@ -60,13 +60,19 @@ class E2EEnterYourPasswordView extends React.Component { <KeyboardView style={{ backgroundColor: themes[theme].backgroundColor }} contentContainerStyle={sharedStyles.container} - keyboardVerticalOffset={128} - > + keyboardVerticalOffset={128}> <StatusBar /> - <ScrollView {...scrollPersistTaps} style={sharedStyles.container} contentContainerStyle={[sharedStyles.containerScrollView, styles.scrollView]}> - <SafeAreaView style={[styles.container, { backgroundColor: themes[theme].backgroundColor }]} testID='e2e-enter-your-password-view'> + <ScrollView + {...scrollPersistTaps} + style={sharedStyles.container} + contentContainerStyle={[sharedStyles.containerScrollView, styles.scrollView]}> + <SafeAreaView + style={[styles.container, { backgroundColor: themes[theme].backgroundColor }]} + testID='e2e-enter-your-password-view'> <TextInput - inputRef={(e) => { this.passwordInput = e; }} + inputRef={e => { + this.passwordInput = e; + }} placeholder={I18n.t('Password')} returnKeyType='send' secureTextEntry diff --git a/app/views/E2EHowItWorksView.js b/app/views/E2EHowItWorksView.js index f72b9c6dd1..0ac1c756be 100644 --- a/app/views/E2EHowItWorksView.js +++ b/app/views/E2EHowItWorksView.js @@ -28,11 +28,11 @@ class E2EHowItWorksView extends React.Component { title: I18n.t('How_It_Works'), headerLeft: showCloseModal ? () => <HeaderButton.CloseModal navigation={navigation} /> : undefined }; - } + }; static propTypes = { theme: PropTypes.string - } + }; render() { const { theme } = this.props; @@ -40,30 +40,11 @@ class E2EHowItWorksView extends React.Component { const infoStyle = [styles.info, { color: themes[theme].bodyText }]; return ( - <SafeAreaView - style={[styles.container, { backgroundColor: themes[theme].backgroundColor }]} - testID='e2e-how-it-works-view' - > - <Markdown - msg={I18n.t('E2E_How_It_Works_info1')} - style={infoStyle} - theme={theme} - /> - <Markdown - msg={I18n.t('E2E_How_It_Works_info2')} - style={infoStyle} - theme={theme} - /> - <Markdown - msg={I18n.t('E2E_How_It_Works_info3')} - style={infoStyle} - theme={theme} - /> - <Markdown - msg={I18n.t('E2E_How_It_Works_info4')} - style={infoStyle} - theme={theme} - /> + <SafeAreaView style={[styles.container, { backgroundColor: themes[theme].backgroundColor }]} testID='e2e-how-it-works-view'> + <Markdown msg={I18n.t('E2E_How_It_Works_info1')} style={infoStyle} theme={theme} /> + <Markdown msg={I18n.t('E2E_How_It_Works_info2')} style={infoStyle} theme={theme} /> + <Markdown msg={I18n.t('E2E_How_It_Works_info3')} style={infoStyle} theme={theme} /> + <Markdown msg={I18n.t('E2E_How_It_Works_info4')} style={infoStyle} theme={theme} /> </SafeAreaView> ); } diff --git a/app/views/E2ESaveYourPasswordView.js b/app/views/E2ESaveYourPasswordView.js index 850bd19f09..167d21dc24 100644 --- a/app/views/E2ESaveYourPasswordView.js +++ b/app/views/E2ESaveYourPasswordView.js @@ -1,13 +1,7 @@ import React from 'react'; import PropTypes from 'prop-types'; import { connect } from 'react-redux'; -import { - Clipboard, - ScrollView, - StyleSheet, - Text, - View -} from 'react-native'; +import { Clipboard, ScrollView, StyleSheet, Text, View } from 'react-native'; import { encryptionSetBanner as encryptionSetBannerAction } from '../actions/encryption'; import { E2E_RANDOM_PASSWORD_KEY } from '../lib/encryption/constants'; @@ -63,14 +57,14 @@ class E2ESaveYourPasswordView extends React.Component { static navigationOptions = ({ navigation }) => ({ headerLeft: () => <HeaderButton.CloseModal navigation={navigation} testID='e2e-save-your-password-view-close' />, title: I18n.t('Save_Your_E2E_Password') - }) + }); static propTypes = { server: PropTypes.string, navigation: PropTypes.object, encryptionSetBanner: PropTypes.func, theme: PropTypes.string - } + }; constructor(props) { super(props); @@ -83,11 +77,11 @@ class E2ESaveYourPasswordView extends React.Component { this.mounted = true; } - init = async() => { + init = async () => { const { server } = this.props; try { // Set stored password on local state - const password = await UserPreferences.getStringAsync(`${ server }-${ E2E_RANDOM_PASSWORD_KEY }`); + const password = await UserPreferences.getStringAsync(`${server}-${E2E_RANDOM_PASSWORD_KEY}`); if (this.mounted) { this.setState({ password }); } else { @@ -96,30 +90,30 @@ class E2ESaveYourPasswordView extends React.Component { } catch { // Do nothing } - } + }; - onSaved = async() => { + onSaved = async () => { logEvent(events.E2E_SAVE_PW_SAVED); const { navigation, server, encryptionSetBanner } = this.props; // Remove stored password - await UserPreferences.removeItem(`${ server }-${ E2E_RANDOM_PASSWORD_KEY }`); + await UserPreferences.removeItem(`${server}-${E2E_RANDOM_PASSWORD_KEY}`); // Hide encryption banner encryptionSetBanner(); navigation.pop(); - } + }; onCopy = () => { logEvent(events.E2E_SAVE_PW_COPY); const { password } = this.state; Clipboard.setString(password); EventEmitter.emit(LISTENER, { message: I18n.t('Copied_to_clipboard') }); - } + }; onHowItWorks = () => { logEvent(events.E2E_SAVE_PW_HOW_IT_WORKS); const { navigation } = this.props; navigation.navigate('E2EHowItWorksView'); - } + }; render() { const { password } = this.state; @@ -128,9 +122,14 @@ class E2ESaveYourPasswordView extends React.Component { return ( <SafeAreaView style={{ backgroundColor: themes[theme].backgroundColor }} testID='e2e-save-password-view'> <StatusBar /> - <ScrollView {...scrollPersistTaps} style={sharedStyles.container} contentContainerStyle={sharedStyles.containerScrollView}> + <ScrollView + {...scrollPersistTaps} + style={sharedStyles.container} + contentContainerStyle={sharedStyles.containerScrollView}> <View style={[styles.container, { backgroundColor: themes[theme].backgroundColor }]}> - <Text style={[styles.warning, { color: themes[theme].dangerColor }]}>{I18n.t('Save_Your_Encryption_Password_warning')}</Text> + <Text style={[styles.warning, { color: themes[theme].dangerColor }]}> + {I18n.t('Save_Your_Encryption_Password_warning')} + </Text> <View style={styles.content}> <Text style={[styles.passwordText, { color: themes[theme].bodyText }]}>{I18n.t('Your_password_is')}</Text> <Text style={[styles.password, { color: themes[theme].bodyText }]}>{password}</Text> diff --git a/app/views/ForgotPasswordView.js b/app/views/ForgotPasswordView.js index 8f38256f8a..bd92b56bce 100644 --- a/app/views/ForgotPasswordView.js +++ b/app/views/ForgotPasswordView.js @@ -17,18 +17,18 @@ import sharedStyles from './Styles'; class ForgotPasswordView extends React.Component { static navigationOptions = ({ route }) => ({ title: route.params?.title ?? 'Rocket.Chat' - }) + }); static propTypes = { navigation: PropTypes.object, theme: PropTypes.string - } + }; state = { email: '', invalidEmail: true, isFetching: false - } + }; shouldComponentUpdate(nextProps, nextState) { const { email, invalidEmail, isFetching } = this.state; @@ -48,15 +48,15 @@ class ForgotPasswordView extends React.Component { return false; } - validate = (email) => { + validate = email => { if (!isValidEmail(email)) { this.setState({ invalidEmail: true }); return; } this.setState({ email, invalidEmail: false }); - } + }; - resetPassword = async() => { + resetPassword = async () => { logEvent(events.FP_FORGOT_PASSWORD); const { email, invalidEmail } = this.state; if (invalidEmail || !email) { @@ -76,7 +76,7 @@ class ForgotPasswordView extends React.Component { showErrorAlert(msg, I18n.t('Alert')); } this.setState({ isFetching: false }); - } + }; render() { const { invalidEmail, isFetching } = this.state; @@ -85,7 +85,9 @@ class ForgotPasswordView extends React.Component { return ( <FormContainer theme={theme} testID='forgot-password-view'> <FormContainerInner> - <Text style={[sharedStyles.loginTitle, sharedStyles.textBold, { color: themes[theme].titleText }]}>{I18n.t('Forgot_password')}</Text> + <Text style={[sharedStyles.loginTitle, sharedStyles.textBold, { color: themes[theme].titleText }]}> + {I18n.t('Forgot_password')} + </Text> <TextInput autoFocus placeholder={I18n.t('Email')} diff --git a/app/views/ForwardLivechatView.js b/app/views/ForwardLivechatView.js index 00b47c146d..4f61272d42 100644 --- a/app/views/ForwardLivechatView.js +++ b/app/views/ForwardLivechatView.js @@ -18,9 +18,7 @@ const styles = StyleSheet.create({ } }); -const ForwardLivechatView = ({ - forwardRoom, navigation, route, theme -}) => { +const ForwardLivechatView = ({ forwardRoom, navigation, route, theme }) => { const [departments, setDepartments] = useState([]); const [departmentId, setDepartment] = useState(); const [users, setUsers] = useState([]); @@ -29,7 +27,7 @@ const ForwardLivechatView = ({ const rid = route.params?.rid; - const getDepartments = async() => { + const getDepartments = async () => { try { const result = await RocketChat.getDepartments(); if (result.success) { @@ -40,11 +38,14 @@ const ForwardLivechatView = ({ } }; - const getUsers = async(term = '') => { + const getUsers = async (term = '') => { try { const { servedBy: { _id: agentId } = {} } = room; const _id = agentId && { $ne: agentId }; - const result = await RocketChat.usersAutoComplete({ conditions: { _id, status: { $ne: 'offline' }, statusLivechat: 'available' }, term }); + const result = await RocketChat.usersAutoComplete({ + conditions: { _id, status: { $ne: 'offline' }, statusLivechat: 'available' }, + term + }); if (result.success) { const parsedUsers = result.items.map(user => ({ label: user.username, value: user._id })); setUsers(parsedUsers); @@ -56,7 +57,7 @@ const ForwardLivechatView = ({ return []; }; - const getRoom = async() => { + const getRoom = async () => { try { const result = await RocketChat.getRoomInfo(rid); if (result.success) { @@ -122,17 +123,9 @@ const ForwardLivechatView = ({ return ( <View style={[styles.container, { backgroundColor: themes[theme].auxiliaryBackground }]}> - <Input - onPress={onPressDepartment} - placeholder={I18n.t('Select_a_Department')} - theme={theme} - /> + <Input onPress={onPressDepartment} placeholder={I18n.t('Select_a_Department')} theme={theme} /> <OrSeparator theme={theme} /> - <Input - onPress={onPressUser} - placeholder={I18n.t('Select_a_User')} - theme={theme} - /> + <Input onPress={onPressUser} placeholder={I18n.t('Select_a_User')} theme={theme} /> </View> ); }; diff --git a/app/views/InviteUsersEditView/index.js b/app/views/InviteUsersEditView/index.js index de632a8293..105a8809de 100644 --- a/app/views/InviteUsersEditView/index.js +++ b/app/views/InviteUsersEditView/index.js @@ -19,42 +19,56 @@ import { events, logEvent } from '../../utils/log'; import styles from './styles'; const OPTIONS = { - days: [{ - label: '1', value: 1 - }, - { - label: '7', value: 7 - }, - { - label: '15', value: 15 - }, - { - label: '30', value: 30 - }], - maxUses: [{ - label: '1', value: 1 - }, - { - label: '5', value: 5 - }, - { - label: '10', value: 10 - }, - { - label: '25', value: 25 - }, - { - label: '50', value: 50 - }, - { - label: '100', value: 100 - }] + days: [ + { + label: '1', + value: 1 + }, + { + label: '7', + value: 7 + }, + { + label: '15', + value: 15 + }, + { + label: '30', + value: 30 + } + ], + maxUses: [ + { + label: '1', + value: 1 + }, + { + label: '5', + value: 5 + }, + { + label: '10', + value: 10 + }, + { + label: '25', + value: 25 + }, + { + label: '50', + value: 50 + }, + { + label: '100', + value: 100 + } + ] }; class InviteUsersView extends React.Component { static navigationOptions = () => ({ title: I18n.t('Invite_users') - }) + }); static propTypes = { navigation: PropTypes.object, @@ -62,7 +76,7 @@ class InviteUsersView extends React.Component { theme: PropTypes.string, createInviteLink: PropTypes.func, inviteLinksSetParams: PropTypes.func - } + }; constructor(props) { super(props); @@ -76,21 +90,24 @@ class InviteUsersView extends React.Component { [key]: value }; inviteLinksSetParams(params); - } + }; createInviteLink = () => { logEvent(events.IU_EDIT_CREATE_LINK); const { createInviteLink, navigation } = this.props; createInviteLink(this.rid); navigation.pop(); - } + }; renderPicker = (key, first) => { const { props } = this; const { theme } = props; - const firstEl = [{ - label: I18n.t(first), value: 0 - }]; + const firstEl = [ + { + label: I18n.t(first), + value: 0 + } + ]; return ( <RNPickerSelect style={{ viewContainer: styles.viewContainer }} @@ -102,7 +119,7 @@ class InviteUsersView extends React.Component { items={firstEl.concat(OPTIONS[key])} /> ); - } + }; render() { const { theme } = this.props; @@ -112,24 +129,13 @@ class InviteUsersView extends React.Component { <StatusBar /> <List.Section> <List.Separator /> - <List.Item - title='Expiration_Days' - right={() => this.renderPicker('days', 'Never')} - /> + <List.Item title='Expiration_Days' right={() => this.renderPicker('days', 'Never')} /> <List.Separator /> - <List.Item - title='Max_number_of_uses' - right={() => this.renderPicker('maxUses', 'No_limit')} - /> + <List.Item title='Max_number_of_uses' right={() => this.renderPicker('maxUses', 'No_limit')} /> <List.Separator /> </List.Section> <View style={styles.innerContainer}> - <Button - title={I18n.t('Generate_New_Link')} - type='primary' - onPress={this.createInviteLink} - theme={theme} - /> + <Button title={I18n.t('Generate_New_Link')} type='primary' onPress={this.createInviteLink} theme={theme} /> </View> </List.Container> </SafeAreaView> diff --git a/app/views/InviteUsersView/index.js b/app/views/InviteUsersView/index.js index f7973fcd46..2fe18f39ae 100644 --- a/app/views/InviteUsersView/index.js +++ b/app/views/InviteUsersView/index.js @@ -23,7 +23,7 @@ import styles from './styles'; class InviteUsersView extends React.Component { static navigationOptions = () => ({ title: I18n.t('Invite_users') - }) + }); static propTypes = { navigation: PropTypes.object, @@ -33,7 +33,7 @@ class InviteUsersView extends React.Component { invite: PropTypes.object, createInviteLink: PropTypes.func, clearInviteLink: PropTypes.func - } + }; constructor(props) { super(props); @@ -57,13 +57,13 @@ class InviteUsersView extends React.Component { return; } Share.share({ message: invite.url }); - } + }; edit = () => { logEvent(events.IU_GO_IU_EDIT); const { navigation } = this.props; navigation.navigate('InviteUsersEditView', { rid: this.rid }); - } + }; linkExpirationText = () => { const { timeDateFormat, invite } = this.props; @@ -77,7 +77,10 @@ class InviteUsersView extends React.Component { if (invite.maxUses) { const usesLeft = invite.maxUses - invite.uses; - return I18n.t('Your_invite_link_will_expire_on__date__or_after__usesLeft__uses', { date: moment(expiration).format(timeDateFormat), usesLeft }); + return I18n.t('Your_invite_link_will_expire_on__date__or_after__usesLeft__uses', { + date: moment(expiration).format(timeDateFormat), + usesLeft + }); } return I18n.t('Your_invite_link_will_expire_on__date__', { date: moment(expiration).format(timeDateFormat) }); @@ -89,48 +92,30 @@ class InviteUsersView extends React.Component { } return I18n.t('Your_invite_link_will_never_expire'); - } + }; renderExpiration = () => { const { theme } = this.props; const expirationMessage = this.linkExpirationText(); return <Markdown msg={expirationMessage} username='' baseUrl='' theme={theme} />; - } + }; render() { - const { - theme, invite - } = this.props; + const { theme, invite } = this.props; return ( <SafeAreaView style={{ backgroundColor: themes[theme].backgroundColor }}> <ScrollView {...scrollPersistTaps} style={{ backgroundColor: themes[theme].auxiliaryBackground }} contentContainerStyle={styles.contentContainer} - showsVerticalScrollIndicator={false} - > + showsVerticalScrollIndicator={false}> <StatusBar /> <View style={styles.innerContainer}> - <RCTextInput - label={I18n.t('Invite_Link')} - theme={theme} - value={invite && invite.url} - editable={false} - /> + <RCTextInput label={I18n.t('Invite_Link')} theme={theme} value={invite && invite.url} editable={false} /> {this.renderExpiration()} <View style={[styles.divider, { backgroundColor: themes[theme].separatorColor }]} /> - <Button - title={I18n.t('Share_Link')} - type='primary' - onPress={this.share} - theme={theme} - /> - <Button - title={I18n.t('Edit_Invite')} - type='secondary' - onPress={this.edit} - theme={theme} - /> + <Button title={I18n.t('Share_Link')} type='primary' onPress={this.share} theme={theme} /> + <Button title={I18n.t('Edit_Invite')} type='secondary' onPress={this.edit} theme={theme} /> </View> </ScrollView> </SafeAreaView> diff --git a/app/views/JitsiMeetView.js b/app/views/JitsiMeetView.js index a66a5156c6..e80cdae850 100644 --- a/app/views/JitsiMeetView.js +++ b/app/views/JitsiMeetView.js @@ -13,7 +13,7 @@ import { isAndroid, isIOS } from '../utils/deviceInfo'; import { withTheme } from '../theme'; const formatUrl = (url, baseUrl, uriSize, avatarAuthURLFragment) => - `${ baseUrl }/avatar/${ url }?format=png&width=${ uriSize }&height=${ uriSize }${ avatarAuthURLFragment }`; + `${baseUrl}/avatar/${url}?format=png&width=${uriSize}&height=${uriSize}${avatarAuthURLFragment}`; class JitsiMeetView extends React.Component { static propTypes = { navigation: PropTypes.object, @@ -26,7 +26,7 @@ class JitsiMeetView extends React.Component { name: PropTypes.string, token: PropTypes.string }) - } + }; constructor(props) { super(props); @@ -35,10 +35,8 @@ class JitsiMeetView extends React.Component { this.jitsiTimeout = null; const { user, baseUrl } = props; - const { - name: displayName, id: userId, token, username - } = user; - const avatarAuthURLFragment = `&rc_token=${ token }&rc_uid=${ userId }`; + const { name: displayName, id: userId, token, username } = user; + const avatarAuthURLFragment = `&rc_token=${token}&rc_uid=${userId}`; const avatar = formatUrl(username, baseUrl, 100, avatarAuthURLFragment); this.state = { userInfo: { @@ -77,7 +75,7 @@ class JitsiMeetView extends React.Component { onConferenceWillJoin = () => { this.setState({ loading: false }); - } + }; // Jitsi Update Timeout needs to be called every 10 seconds to make sure // call is not ended and is available to web users. @@ -92,13 +90,13 @@ class JitsiMeetView extends React.Component { this.jitsiTimeout = BackgroundTimer.setInterval(() => { RocketChat.updateJitsiTimeout(this.rid).catch(e => console.log(e)); }, 10000); - } + }; onConferenceTerminated = () => { logEvent(events.JM_CONFERENCE_TERMINATE); const { navigation } = this.props; navigation.pop(); - } + }; render() { const { userInfo, loading } = this.state; diff --git a/app/views/LanguageView/index.js b/app/views/LanguageView/index.js index 7505af6377..29f65bf550 100644 --- a/app/views/LanguageView/index.js +++ b/app/views/LanguageView/index.js @@ -21,14 +21,14 @@ import SafeAreaView from '../../containers/SafeAreaView'; class LanguageView extends React.Component { static navigationOptions = () => ({ title: I18n.t('Change_Language') - }) + }); static propTypes = { user: PropTypes.object, setUser: PropTypes.func, appStart: PropTypes.func, theme: PropTypes.string - } + }; constructor(props) { super(props); @@ -52,12 +52,12 @@ class LanguageView extends React.Component { return false; } - formIsChanged = (language) => { + formIsChanged = language => { const { user } = this.props; return user.language !== language; - } + }; - submit = async(language) => { + submit = async language => { if (!this.formIsChanged(language)) { return; } @@ -76,9 +76,9 @@ class LanguageView extends React.Component { } else { await appStart({ root: ROOT_INSIDE }); } - } + }; - changeLanguage = async(language) => { + changeLanguage = async language => { logEvent(events.LANG_SET_LANGUAGE); const { user, setUser } = this.props; @@ -95,10 +95,10 @@ class LanguageView extends React.Component { const serversDB = database.servers; const usersCollection = serversDB.get('users'); - await serversDB.action(async() => { + await serversDB.action(async () => { try { const userRecord = await usersCollection.find(user.id); - await userRecord.update((record) => { + await userRecord.update(record => { record.language = params.language; }); } catch (e) { @@ -110,12 +110,12 @@ class LanguageView extends React.Component { showErrorAlert(I18n.t('There_was_an_error_while_action', { action: I18n.t('saving_preferences') })); log(e); } - } + }; renderIcon = () => { const { theme } = this.props; return <List.Icon name='check' color={themes[theme].tintColor} />; - } + }; renderItem = ({ item }) => { const { value, label } = item; @@ -126,12 +126,12 @@ class LanguageView extends React.Component { <List.Item title={label} onPress={() => this.submit(value)} - testID={`language-view-${ value }`} + testID={`language-view-${value}`} right={isSelected ? this.renderIcon : null} translateTitle={false} /> ); - } + }; render() { return ( diff --git a/app/views/LegalView.js b/app/views/LegalView.js index e8d61fda0c..b9db90572e 100644 --- a/app/views/LegalView.js +++ b/app/views/LegalView.js @@ -13,15 +13,15 @@ class LegalView extends React.Component { static propTypes = { server: PropTypes.string, theme: PropTypes.string - } + }; onPressItem = ({ route }) => { const { server, theme } = this.props; if (!server) { return; } - openLink(`${ server }/${ route }`, theme); - } + openLink(`${server}/${route}`, theme); + }; render() { return ( diff --git a/app/views/LivechatEditView.js b/app/views/LivechatEditView.js index 5874337ad7..8a61086474 100644 --- a/app/views/LivechatEditView.js +++ b/app/views/LivechatEditView.js @@ -39,15 +39,14 @@ const styles = StyleSheet.create({ } }); -const Title = ({ title, theme }) => (title ? <Text style={[styles.title, { color: themes[theme].titleText }]}>{title}</Text> : null); +const Title = ({ title, theme }) => + title ? <Text style={[styles.title, { color: themes[theme].titleText }]}>{title}</Text> : null; Title.propTypes = { title: PropTypes.string, theme: PropTypes.string }; -const LivechatEditView = ({ - user, navigation, route, theme, editOmnichannelContact, editLivechatRoomCustomfields -}) => { +const LivechatEditView = ({ user, navigation, route, theme, editOmnichannelContact, editLivechatRoomCustomfields }) => { const [customFields, setCustomFields] = useState({}); const [availableUserTags, setAvailableUserTags] = useState([]); const [permissions, setPermissions] = useState([]); @@ -58,7 +57,7 @@ const LivechatEditView = ({ const livechat = route.params?.room ?? {}; const visitor = route.params?.roomUser ?? {}; - const getCustomFields = async() => { + const getCustomFields = async () => { const result = await RocketChat.getCustomFields(); if (result.success && result.customFields?.length) { const visitorCustomFields = result.customFields @@ -84,16 +83,16 @@ const LivechatEditView = ({ setTags(uniqueArray); }, [availableUserTags]); - const getTagsList = async(agentDepartments) => { + const getTagsList = async agentDepartments => { const tags = await RocketChat.getTagsList(); const isAdmin = ['admin', 'livechat-manager'].find(role => user.roles.includes(role)); const availableTags = tags - .filter(({ departments }) => isAdmin || (departments.length === 0 || departments.some(i => agentDepartments.indexOf(i) > -1))) + .filter(({ departments }) => isAdmin || departments.length === 0 || departments.some(i => agentDepartments.indexOf(i) > -1)) .map(({ name }) => name); setAvailableUserTags(availableTags); }; - const getAgentDepartments = async() => { + const getAgentDepartments = async () => { const result = await RocketChat.getAgentDepartments(visitor?._id); if (result.success) { const agentDepartments = result.departments.map(dept => dept.departmentId); @@ -101,7 +100,7 @@ const LivechatEditView = ({ } }; - const submit = async() => { + const submit = async () => { const userData = { _id: visitor?._id }; const { rid, sms } = livechat; @@ -150,9 +149,11 @@ const LivechatEditView = ({ } }; - const onChangeText = (key, text) => { params[key] = text; }; + const onChangeText = (key, text) => { + params[key] = text; + }; - const getPermissions = async() => { + const getPermissions = async () => { const permissionsArray = await RocketChat.hasPermission([editOmnichannelContact, editLivechatRoomCustomfields], livechat.rid); setPermissions(permissionsArray); }; @@ -167,34 +168,38 @@ const LivechatEditView = ({ <KeyboardView style={{ backgroundColor: themes[theme].auxiliaryBackground }} contentContainerStyle={sharedStyles.container} - keyboardVerticalOffset={128} - > + keyboardVerticalOffset={128}> <ScrollView {...scrollPersistTaps} style={styles.container}> <SafeAreaView> - <Title - title={visitor?.username} - theme={theme} - /> + <Title title={visitor?.username} theme={theme} /> <TextInput label={I18n.t('Name')} defaultValue={visitor?.name} onChangeText={text => onChangeText('name', text)} - onSubmitEditing={() => { inputs.name.focus(); }} + onSubmitEditing={() => { + inputs.name.focus(); + }} theme={theme} editable={!!permissions[0]} /> <TextInput label={I18n.t('Email')} - inputRef={(e) => { inputs.name = e; }} + inputRef={e => { + inputs.name = e; + }} defaultValue={visitor?.visitorEmails && visitor?.visitorEmails[0]?.address} onChangeText={text => onChangeText('email', text)} - onSubmitEditing={() => { inputs.phone.focus(); }} + onSubmitEditing={() => { + inputs.phone.focus(); + }} theme={theme} editable={!!permissions[0]} /> <TextInput label={I18n.t('Phone')} - inputRef={(e) => { inputs.phone = e; }} + inputRef={e => { + inputs.phone = e; + }} defaultValue={visitor?.phone && visitor?.phone[0]?.phoneNumber} onChangeText={text => onChangeText('phone', text)} onSubmitEditing={() => { @@ -213,7 +218,9 @@ const LivechatEditView = ({ <TextInput label={key} defaultValue={value} - inputRef={(e) => { inputs[key] = e; }} + inputRef={e => { + inputs[key] = e; + }} onChangeText={text => onChangeText(key, text)} onSubmitEditing={() => { if (array.length - 1 > index) { @@ -225,13 +232,12 @@ const LivechatEditView = ({ editable={!!permissions[0]} /> ))} - <Title - title={I18n.t('Conversation')} - theme={theme} - /> + <Title title={I18n.t('Conversation')} theme={theme} /> <TextInput label={I18n.t('Topic')} - inputRef={(e) => { inputs.topic = e; }} + inputRef={e => { + inputs.topic = e; + }} defaultValue={livechat?.topic} onChangeText={text => onChangeText('topic', text)} onSubmitEditing={() => inputs.tags.focus()} @@ -239,14 +245,7 @@ const LivechatEditView = ({ editable={!!permissions[1]} /> - <Text - style={[ - styles.label, - { color: themes[theme].titleText } - ]} - > - { I18n.t('Tags') } - </Text> + <Text style={[styles.label, { color: themes[theme].titleText }]}>{I18n.t('Tags')}</Text> <MultiSelect options={tagParam.map(tag => ({ text: { text: tag }, value: tag }))} onChange={({ value }) => { @@ -265,7 +264,9 @@ const LivechatEditView = ({ <TextInput label={key} defaultValue={value} - inputRef={(e) => { inputs[key] = e; }} + inputRef={e => { + inputs[key] = e; + }} onChangeText={text => onChangeText(key, text)} onSubmitEditing={() => { if (array.length - 1 > index) { @@ -278,11 +279,7 @@ const LivechatEditView = ({ /> ))} - <Button - title={I18n.t('Save')} - onPress={submit} - theme={theme} - /> + <Button title={I18n.t('Save')} onPress={submit} theme={theme} /> </SafeAreaView> </ScrollView> </KeyboardView> diff --git a/app/views/LoginView.js b/app/views/LoginView.js index f1a57bced8..c240ab8f4b 100644 --- a/app/views/LoginView.js +++ b/app/views/LoginView.js @@ -1,8 +1,6 @@ import React from 'react'; import PropTypes from 'prop-types'; -import { - Alert, Keyboard, StyleSheet, Text, View -} from 'react-native'; +import { Alert, Keyboard, StyleSheet, Text, View } from 'react-native'; import { connect } from 'react-redux'; import { dequal } from 'dequal'; @@ -52,7 +50,7 @@ class LoginView extends React.Component { static navigationOptions = ({ route, navigation }) => ({ title: route.params?.title ?? 'Rocket.Chat', headerRight: () => <HeaderButton.Legal testID='login-view-more' navigation={navigation} /> - }) + }); static propTypes = { navigation: PropTypes.object, @@ -70,7 +68,7 @@ class LoginView extends React.Component { theme: PropTypes.string, loginRequest: PropTypes.func, inviteLinkToken: PropTypes.string - } + }; constructor(props) { super(props); @@ -95,22 +93,22 @@ class LoginView extends React.Component { login = () => { const { navigation, Site_Name } = this.props; navigation.navigate('LoginView', { title: Site_Name }); - } + }; register = () => { const { navigation, Site_Name } = this.props; navigation.navigate('RegisterView', { title: Site_Name }); - } + }; forgotPassword = () => { const { navigation, Site_Name } = this.props; navigation.navigate('ForgotPasswordView', { title: Site_Name }); - } + }; valid = () => { const { user, password } = this.state; return user.trim() && password.trim(); - } + }; submit = () => { if (!this.valid()) { @@ -121,12 +119,18 @@ class LoginView extends React.Component { const { loginRequest } = this.props; Keyboard.dismiss(); loginRequest({ user, password }); - } + }; renderUserForm = () => { const { user } = this.state; const { - Accounts_EmailOrUsernamePlaceholder, Accounts_PasswordPlaceholder, Accounts_PasswordReset, Accounts_RegistrationForm_LinkReplacementText, isFetching, theme, Accounts_ShowFormLogin + Accounts_EmailOrUsernamePlaceholder, + Accounts_PasswordPlaceholder, + Accounts_PasswordReset, + Accounts_RegistrationForm_LinkReplacementText, + isFetching, + theme, + Accounts_ShowFormLogin } = this.props; if (!Accounts_ShowFormLogin) { @@ -143,7 +147,9 @@ class LoginView extends React.Component { keyboardType='email-address' returnKeyType='next' onChangeText={value => this.setState({ user: value })} - onSubmitEditing={() => { this.passwordInput.focus(); }} + onSubmitEditing={() => { + this.passwordInput.focus(); + }} testID='login-view-email' textContentType='username' autoCompleteType='username' @@ -153,7 +159,9 @@ class LoginView extends React.Component { <TextInput label={I18n.t('Password')} containerStyle={styles.inputContainer} - inputRef={(e) => { this.passwordInput = e; }} + inputRef={e => { + this.passwordInput = e; + }} placeholder={Accounts_PasswordPlaceholder || I18n.t('Password')} returnKeyType='send' secureTextEntry @@ -187,18 +195,24 @@ class LoginView extends React.Component { )} {this.showRegistrationButton ? ( <View style={styles.bottomContainer}> - <Text style={[styles.bottomContainerText, { color: themes[theme].auxiliaryText }]}>{I18n.t('Dont_Have_An_Account')}</Text> + <Text style={[styles.bottomContainerText, { color: themes[theme].auxiliaryText }]}> + {I18n.t('Dont_Have_An_Account')} + </Text> <Text style={[styles.bottomContainerTextBold, { color: themes[theme].actionTintColor }]} onPress={this.register} - testID='login-view-register' - >{I18n.t('Create_account')} + testID='login-view-register'> + {I18n.t('Create_account')} </Text> </View> - ) : (<Text style={[styles.registerDisabled, { color: themes[theme].auxiliaryText }]}>{Accounts_RegistrationForm_LinkReplacementText}</Text>)} + ) : ( + <Text style={[styles.registerDisabled, { color: themes[theme].auxiliaryText }]}> + {Accounts_RegistrationForm_LinkReplacementText} + </Text> + )} </> ); - } + }; render() { const { Accounts_ShowFormLogin, theme, navigation } = this.props; diff --git a/app/views/MarkdownTableView.js b/app/views/MarkdownTableView.js index 3c552bcf11..a95118d301 100644 --- a/app/views/MarkdownTableView.js +++ b/app/views/MarkdownTableView.js @@ -10,12 +10,12 @@ import { withTheme } from '../theme'; class MarkdownTableView extends React.Component { static navigationOptions = () => ({ title: I18n.t('Table') - }) + }); static propTypes = { route: PropTypes.object, theme: PropTypes.string - } + }; render() { const { route, theme } = this.props; @@ -32,9 +32,7 @@ class MarkdownTableView extends React.Component { return ( <ScrollView style={{ backgroundColor: themes[theme].backgroundColor }}> - <ScrollView horizontal> - {renderRows()} - </ScrollView> + <ScrollView horizontal>{renderRows()}</ScrollView> </ScrollView> ); } diff --git a/app/views/MessagesView/index.js b/app/views/MessagesView/index.js index 97a4ee1e86..f0d0d89d6b 100644 --- a/app/views/MessagesView/index.js +++ b/app/views/MessagesView/index.js @@ -29,7 +29,7 @@ class MessagesView extends React.Component { showActionSheet: PropTypes.func, useRealName: PropTypes.bool, isMasterDetail: PropTypes.bool - } + }; constructor(props) { super(props); @@ -49,9 +49,7 @@ class MessagesView extends React.Component { } shouldComponentUpdate(nextProps, nextState) { - const { - loading, messages, fileLoading - } = this.state; + const { loading, messages, fileLoading } = this.state; const { theme } = this.props; if (nextProps.theme !== theme) { return true; @@ -73,17 +71,17 @@ class MessagesView extends React.Component { navigation.setOptions({ title: I18n.t(route.params?.name) }); - } + }; - navToRoomInfo = (navParam) => { + navToRoomInfo = navParam => { const { navigation, user } = this.props; if (navParam.rid === user.id) { return; } navigation.navigate('RoomInfoView', navParam); - } + }; - jumpToMessage = async({ item }) => { + jumpToMessage = async ({ item }) => { const { navigation, isMasterDetail } = this.props; let params = { rid: this.rid, @@ -107,12 +105,10 @@ class MessagesView extends React.Component { } else { navigation.navigate('RoomView', params); } - } + }; - defineMessagesViewContent = (name) => { - const { - user, baseUrl, theme, useRealName - } = this.props; + defineMessagesViewContent = name => { + const { user, baseUrl, theme, useRealName } = this.props; const renderItemCommonProps = item => ({ item, baseUrl, @@ -134,7 +130,7 @@ class MessagesView extends React.Component { // Files Messages Screen Files: { name: I18n.t('Files'), - fetchFunc: async() => { + fetchFunc: async () => { const { messages } = this.state; const result = await RocketChat.getFiles(this.rid, this.t, messages.length); return { ...result, messages: result.files }; @@ -148,11 +144,13 @@ class MessagesView extends React.Component { ...item, u: item.user, ts: item.ts || item.uploadedAt, - attachments: [{ - title: item.name, - description: item.description, - ...getFileUrlFromMessage(item) - }] + attachments: [ + { + title: item.name, + description: item.description, + ...getFileUrlFromMessage(item) + } + ] }} theme={theme} /> @@ -163,46 +161,29 @@ class MessagesView extends React.Component { name: I18n.t('Mentions'), fetchFunc: () => { const { messages } = this.state; - return RocketChat.getMessages( - this.rid, - this.t, - { 'mentions._id': { $in: [user.id] } }, - messages.length - ); + return RocketChat.getMessages(this.rid, this.t, { 'mentions._id': { $in: [user.id] } }, messages.length); }, noDataMsg: I18n.t('No_mentioned_messages'), testID: 'mentioned-messages-view', - renderItem: item => ( - <Message - {...renderItemCommonProps(item)} - msg={item.msg} - theme={theme} - /> - ) + renderItem: item => <Message {...renderItemCommonProps(item)} msg={item.msg} theme={theme} /> }, // Starred Messages Screen Starred: { name: I18n.t('Starred'), fetchFunc: () => { const { messages } = this.state; - return RocketChat.getMessages( - this.rid, - this.t, - { 'starred._id': { $in: [user.id] } }, - messages.length - ); + return RocketChat.getMessages(this.rid, this.t, { 'starred._id': { $in: [user.id] } }, messages.length); }, noDataMsg: I18n.t('No_starred_messages'), testID: 'starred-messages-view', renderItem: item => ( - <Message - {...renderItemCommonProps(item)} - msg={item.msg} - onLongPress={() => this.onLongPress(item)} - theme={theme} - /> + <Message {...renderItemCommonProps(item)} msg={item.msg} onLongPress={() => this.onLongPress(item)} theme={theme} /> ), - action: message => ({ title: I18n.t('Unstar'), icon: message.starred ? 'star-filled' : 'star', onPress: this.handleActionPress }), + action: message => ({ + title: I18n.t('Unstar'), + icon: message.starred ? 'star-filled' : 'star', + onPress: this.handleActionPress + }), handleActionPress: message => RocketChat.toggleStarMessage(message._id, message.starred) }, // Pinned Messages Screen @@ -215,23 +196,16 @@ class MessagesView extends React.Component { noDataMsg: I18n.t('No_pinned_messages'), testID: 'pinned-messages-view', renderItem: item => ( - <Message - {...renderItemCommonProps(item)} - msg={item.msg} - onLongPress={() => this.onLongPress(item)} - theme={theme} - /> + <Message {...renderItemCommonProps(item)} msg={item.msg} onLongPress={() => this.onLongPress(item)} theme={theme} /> ), action: () => ({ title: I18n.t('Unpin'), icon: 'pin', onPress: this.handleActionPress }), handleActionPress: message => RocketChat.togglePinMessage(message._id, message.pinned) } }[name]; - } + }; - load = async() => { - const { - messages, total, loading - } = this.state; + load = async () => { + const { messages, total, loading } = this.state; if (messages.length === total || loading) { return; } @@ -251,33 +225,33 @@ class MessagesView extends React.Component { this.setState({ loading: false }); console.warn('MessagesView -> catch -> error', error); } - } + }; - getCustomEmoji = (name) => { + getCustomEmoji = name => { const { customEmojis } = this.props; const emoji = customEmojis[name]; if (emoji) { return emoji; } return null; - } + }; - showAttachment = (attachment) => { + showAttachment = attachment => { const { navigation } = this.props; navigation.navigate('AttachmentView', { attachment }); - } + }; - onLongPress = (message) => { + onLongPress = message => { this.setState({ message }, this.showActionSheet); - } + }; showActionSheet = () => { const { message } = this.state; const { showActionSheet } = this.props; showActionSheet({ options: [this.content.action(message)], hasCancel: true }); - } + }; - handleActionPress = async() => { + handleActionPress = async () => { const { message } = this.state; try { @@ -291,28 +265,22 @@ class MessagesView extends React.Component { } catch { // Do nothing } - } + }; - setFileLoading = (fileLoading) => { + setFileLoading = fileLoading => { this.setState({ fileLoading }); - } + }; renderEmpty = () => { const { theme } = this.props; return ( - <View - style={[ - styles.listEmptyContainer, - { backgroundColor: themes[theme].backgroundColor } - ]} - testID={this.content.testID} - > + <View style={[styles.listEmptyContainer, { backgroundColor: themes[theme].backgroundColor }]} testID={this.content.testID}> <Text style={[styles.noDataFound, { color: themes[theme].titleText }]}>{this.content.noDataMsg}</Text> </View> ); - } + }; - renderItem = ({ item }) => this.content.renderItem(item) + renderItem = ({ item }) => this.content.renderItem(item); render() { const { messages, loading } = this.state; @@ -323,10 +291,7 @@ class MessagesView extends React.Component { } return ( - <SafeAreaView - style={{ backgroundColor: themes[theme].backgroundColor }} - testID={this.content.testID} - > + <SafeAreaView style={{ backgroundColor: themes[theme].backgroundColor }} testID={this.content.testID}> <StatusBar /> <FlatList data={messages} diff --git a/app/views/ModalBlockView.js b/app/views/ModalBlockView.js index 33e330ab7c..c87bf33171 100644 --- a/app/views/ModalBlockView.js +++ b/app/views/ModalBlockView.js @@ -30,7 +30,7 @@ const styles = StyleSheet.create({ } }); -Object.fromEntries = Object.fromEntries || (arr => arr.reduce((acc, [k, v]) => ((acc[k] = v, acc)), {})); +Object.fromEntries = Object.fromEntries || (arr => arr.reduce((acc, [k, v]) => ((acc[k] = v), acc), {})); const groupStateByBlockIdMap = (obj, [key, { blockId, value }]) => { obj[blockId] = obj[blockId] || {}; obj[blockId][key] = value; @@ -47,7 +47,10 @@ const filterInputFields = ({ element, elements = [] }) => { }; const mapElementToState = ({ element, blockId, elements = [] }) => { if (elements.length) { - return elements.map(e => ({ element: e, blockId })).filter(filterInputFields).map(mapElementToState); + return elements + .map(e => ({ element: e, blockId })) + .filter(filterInputFields) + .map(mapElementToState); } return [element.actionId, { value: element.initialValue, blockId }]; }; @@ -61,7 +64,7 @@ class ModalBlockView extends React.Component { return { title: textParser([title]) }; - } + }; static propTypes = { navigation: PropTypes.object, @@ -72,7 +75,7 @@ class ModalBlockView extends React.Component { id: PropTypes.string, token: PropTypes.string }) - } + }; constructor(props) { super(props); @@ -114,28 +117,32 @@ class ModalBlockView extends React.Component { const { title, close, submit } = view; navigation.setOptions({ title: textParser([title]), - headerLeft: close ? () => ( - <HeaderButton.Container> - <HeaderButton.Item - title={textParser([close.text])} - style={styles.submit} - onPress={this.cancel} - testID='close-modal-uikit' - /> - </HeaderButton.Container> - ) : null, - headerRight: submit ? () => ( - <HeaderButton.Container> - <HeaderButton.Item - title={textParser([submit.text])} - style={styles.submit} - onPress={this.submit} - testID='submit-modal-uikit' - /> - </HeaderButton.Container> - ) : null + headerLeft: close + ? () => ( + <HeaderButton.Container> + <HeaderButton.Item + title={textParser([close.text])} + style={styles.submit} + onPress={this.cancel} + testID='close-modal-uikit' + /> + </HeaderButton.Container> + ) + : null, + headerRight: submit + ? () => ( + <HeaderButton.Container> + <HeaderButton.Item + title={textParser([submit.text])} + style={styles.submit} + onPress={this.submit} + testID='submit-modal-uikit' + /> + </HeaderButton.Container> + ) + : null }); - } + }; handleUpdate = ({ type, ...data }) => { if ([MODAL_ACTIONS.ERRORS].includes(type)) { @@ -147,7 +154,7 @@ class ModalBlockView extends React.Component { } }; - cancel = async({ closeModal }) => { + cancel = async ({ closeModal }) => { const { data } = this.state; const { appId, viewId, view } = data; @@ -172,9 +179,9 @@ class ModalBlockView extends React.Component { } catch (e) { // do nothing } - } + }; - submit = async() => { + submit = async () => { const { data } = this.state; if (this.submitting) { return; @@ -203,7 +210,7 @@ class ModalBlockView extends React.Component { this.setState({ loading: false }); }; - action = async({ actionId, value, blockId }) => { + action = async ({ actionId, value, blockId }) => { const { data } = this.state; const { mid, appId, viewId } = data; await RocketChat.triggerBlockAction({ @@ -218,7 +225,7 @@ class ModalBlockView extends React.Component { mid }); this.changeState({ actionId, value, blockId }); - } + }; changeState = ({ actionId, value, blockId = 'default' }) => { this.values[actionId] = { @@ -236,28 +243,22 @@ class ModalBlockView extends React.Component { return ( <KeyboardAwareScrollView - style={[ - styles.container, - { backgroundColor: themes[theme].auxiliaryBackground } - ]} - keyboardShouldPersistTaps='always' - > + style={[styles.container, { backgroundColor: themes[theme].auxiliaryBackground }]} + keyboardShouldPersistTaps='always'> <View style={styles.content}> - { - React.createElement( - modalBlockWithContext({ - action: this.action, - state: this.changeState, - ...data - }), - { - blocks, - errors, - language, - values - } - ) - } + {React.createElement( + modalBlockWithContext({ + action: this.action, + state: this.changeState, + ...data + }), + { + blocks, + errors, + language, + values + } + )} </View> {loading ? <ActivityIndicator absolute size='large' theme={theme} /> : null} </KeyboardAwareScrollView> diff --git a/app/views/NewMessageView.js b/app/views/NewMessageView.js index 455330a444..4b210e7cb0 100644 --- a/app/views/NewMessageView.js +++ b/app/views/NewMessageView.js @@ -1,8 +1,6 @@ import React from 'react'; import PropTypes from 'prop-types'; -import { - FlatList, StyleSheet, Text, View -} from 'react-native'; +import { FlatList, StyleSheet, Text, View } from 'react-native'; import { connect } from 'react-redux'; import { Q } from '@nozbe/watermelondb'; @@ -52,7 +50,7 @@ class NewMessageView extends React.Component { static navigationOptions = ({ navigation }) => ({ headerLeft: () => <HeaderButton.CloseModal navigation={navigation} testID='new-message-view-close' />, title: I18n.t('New_Message') - }) + }); static propTypes = { navigation: PropTypes.object, @@ -78,23 +76,19 @@ class NewMessageView extends React.Component { } // eslint-disable-next-line react/sort-comp - init = async() => { + init = async () => { try { const db = database.active; const chats = await db.collections .get('subscriptions') - .query( - Q.where('t', 'd'), - Q.experimentalTake(QUERY_SIZE), - Q.experimentalSortBy('room_updated_at', Q.desc) - ) + .query(Q.where('t', 'd'), Q.experimentalTake(QUERY_SIZE), Q.experimentalSortBy('room_updated_at', Q.desc)) .fetch(); this.setState({ chats }); } catch (e) { log(e); } - } + }; onSearchChangeText(text) { this.search(text); @@ -103,26 +97,28 @@ class NewMessageView extends React.Component { dismiss = () => { const { navigation } = this.props; return navigation.pop(); - } + }; - search = async(text) => { + search = async text => { const result = await RocketChat.search({ text, filterRooms: false }); this.setState({ search: result }); - } + }; createChannel = () => { logEvent(events.NEW_MSG_CREATE_CHANNEL); const { navigation } = this.props; navigation.navigate('SelectedUsersViewCreateChannel', { nextAction: () => navigation.navigate('CreateChannelView') }); - } + }; createTeam = () => { logEvent(events.NEW_MSG_CREATE_TEAM); const { navigation } = this.props; - navigation.navigate('SelectedUsersViewCreateChannel', { nextAction: () => navigation.navigate('CreateChannelView', { isTeam: true }) }); - } + navigation.navigate('SelectedUsersViewCreateChannel', { + nextAction: () => navigation.navigate('CreateChannelView', { isTeam: true }) + }); + }; createGroupChat = () => { logEvent(events.NEW_MSG_CREATE_GROUP_CHAT); @@ -132,40 +128,38 @@ class NewMessageView extends React.Component { buttonText: I18n.t('Create'), maxUsers }); - } + }; - goRoom = (item) => { + goRoom = item => { logEvent(events.NEW_MSG_CHAT_WITH_USER); const { isMasterDetail, navigation } = this.props; if (isMasterDetail) { navigation.pop(); } goRoom({ item, isMasterDetail }); - } + }; - renderButton = ({ - onPress, testID, title, icon, first - }) => { + renderButton = ({ onPress, testID, title, icon, first }) => { const { theme } = this.props; return ( - <Touch - onPress={onPress} - style={{ backgroundColor: themes[theme].backgroundColor }} - testID={testID} - theme={theme} - > - <View style={[first ? sharedStyles.separatorVertical : sharedStyles.separatorBottom, styles.button, { borderColor: themes[theme].separatorColor }]}> + <Touch onPress={onPress} style={{ backgroundColor: themes[theme].backgroundColor }} testID={testID} theme={theme}> + <View + style={[ + first ? sharedStyles.separatorVertical : sharedStyles.separatorBottom, + styles.button, + { borderColor: themes[theme].separatorColor } + ]}> <CustomIcon style={[styles.buttonIcon, { color: themes[theme].tintColor }]} size={24} name={icon} /> <Text style={[styles.buttonText, { color: themes[theme].tintColor }]}>{title}</Text> </View> </Touch> ); - } + }; createDiscussion = () => { logEvent(events.NEW_MSG_CREATE_DISCUSSION); Navigation.navigate('CreateDiscussionView'); - } + }; renderHeader = () => { const { maxUsers, theme, serverVersion } = this.props; @@ -182,17 +176,20 @@ class NewMessageView extends React.Component { })} {compareServerVersion(serverVersion, '3.13.0', methods.greaterThanOrEqualTo) ? this.renderButton({ - onPress: this.createTeam, - title: I18n.t('Create_Team'), - icon: 'teams', - testID: 'new-message-view-create-team' - }) : null} - {maxUsers > 2 ? this.renderButton({ - onPress: this.createGroupChat, - title: I18n.t('Create_Direct_Messages'), - icon: 'message', - testID: 'new-message-view-create-direct-message' - }) : null} + onPress: this.createTeam, + title: I18n.t('Create_Team'), + icon: 'teams', + testID: 'new-message-view-create-team' + }) + : null} + {maxUsers > 2 + ? this.renderButton({ + onPress: this.createGroupChat, + title: I18n.t('Create_Direct_Messages'), + icon: 'message', + testID: 'new-message-view-create-direct-message' + }) + : null} {this.renderButton({ onPress: this.createDiscussion, title: I18n.t('Create_Discussion'), @@ -202,8 +199,7 @@ class NewMessageView extends React.Component { </View> </View> ); - } - + }; renderItem = ({ item, index }) => { const { search, chats } = this.state; @@ -225,13 +221,13 @@ class NewMessageView extends React.Component { username={item.search ? item.username : item.name} onPress={() => this.goRoom(item)} baseUrl={baseUrl} - testID={`new-message-view-item-${ item.name }`} + testID={`new-message-view-item-${item.name}`} style={style} user={user} theme={theme} /> ); - } + }; renderList = () => { const { search, chats } = this.state; @@ -248,7 +244,7 @@ class NewMessageView extends React.Component { keyboardShouldPersistTaps='always' /> ); - } + }; render() { return ( diff --git a/app/views/NewServerView/ServerInput/Item.js b/app/views/NewServerView/ServerInput/Item.js index 417a2b3f59..59ae77f07c 100644 --- a/app/views/NewServerView/ServerInput/Item.js +++ b/app/views/NewServerView/ServerInput/Item.js @@ -1,7 +1,5 @@ import React from 'react'; -import { - StyleSheet, Text, View -} from 'react-native'; +import { StyleSheet, Text, View } from 'react-native'; import PropTypes from 'prop-types'; import { BorderlessButton } from 'react-native-gesture-handler'; @@ -29,15 +27,17 @@ const styles = StyleSheet.create({ } }); -const Item = ({ - item, theme, onPress, onDelete -}) => ( - <Touch style={styles.container} onPress={() => onPress(item.url)} theme={theme} testID={`server-history-${ item.url }`}> +const Item = ({ item, theme, onPress, onDelete }) => ( + <Touch style={styles.container} onPress={() => onPress(item.url)} theme={theme} testID={`server-history-${item.url}`}> <View style={styles.content}> - <Text numberOfLines={1} style={[styles.server, { color: themes[theme].bodyText }]}>{item.url}</Text> - <Text numberOfLines={1} style={[styles.username, { color: themes[theme].auxiliaryText }]}>{item.username}</Text> + <Text numberOfLines={1} style={[styles.server, { color: themes[theme].bodyText }]}> + {item.url} + </Text> + <Text numberOfLines={1} style={[styles.username, { color: themes[theme].auxiliaryText }]}> + {item.username} + </Text> </View> - <BorderlessButton onPress={() => onDelete(item)} testID={`server-history-delete-${ item.url }`}> + <BorderlessButton onPress={() => onDelete(item)} testID={`server-history-delete-${item.url}`}> <CustomIcon name='delete' size={24} color={themes[theme].auxiliaryText} /> </BorderlessButton> </Touch> diff --git a/app/views/NewServerView/ServerInput/index.js b/app/views/NewServerView/ServerInput/index.js index 08bf300542..16d8159d17 100644 --- a/app/views/NewServerView/ServerInput/index.js +++ b/app/views/NewServerView/ServerInput/index.js @@ -30,15 +30,7 @@ const styles = StyleSheet.create({ } }); -const ServerInput = ({ - text, - theme, - serversHistory, - onChangeText, - onSubmit, - onDelete, - onPressServerHistory -}) => { +const ServerInput = ({ text, theme, serversHistory, onChangeText, onSubmit, onDelete, onPressServerHistory }) => { const [focused, setFocused] = useState(false); return ( <View style={styles.container}> @@ -58,19 +50,22 @@ const ServerInput = ({ onFocus={() => setFocused(true)} onBlur={() => setFocused(false)} /> - { - focused && serversHistory?.length - ? ( - <View style={[styles.serverHistory, { backgroundColor: themes[theme].backgroundColor, borderColor: themes[theme].separatorColor }]}> - <FlatList - data={serversHistory} - renderItem={({ item }) => <Item item={item} theme={theme} onPress={() => onPressServerHistory(item)} onDelete={onDelete} />} - ItemSeparatorComponent={List.Separator} - keyExtractor={item => item.id} - /> - </View> - ) : null - } + {focused && serversHistory?.length ? ( + <View + style={[ + styles.serverHistory, + { backgroundColor: themes[theme].backgroundColor, borderColor: themes[theme].separatorColor } + ]}> + <FlatList + data={serversHistory} + renderItem={({ item }) => ( + <Item item={item} theme={theme} onPress={() => onPressServerHistory(item)} onDelete={onDelete} /> + )} + ItemSeparatorComponent={List.Separator} + keyExtractor={item => item.id} + /> + </View> + ) : null} </View> ); }; diff --git a/app/views/NewServerView/index.js b/app/views/NewServerView/index.js index 72fbc63a7c..e7bffce676 100644 --- a/app/views/NewServerView/index.js +++ b/app/views/NewServerView/index.js @@ -1,8 +1,6 @@ import React from 'react'; import PropTypes from 'prop-types'; -import { - BackHandler, Keyboard, StyleSheet, Text, View -} from 'react-native'; +import { BackHandler, Keyboard, StyleSheet, Text, View } from 'react-native'; import { connect } from 'react-redux'; import { Base64 } from 'js-base64'; import parse from 'url-parse'; @@ -63,7 +61,7 @@ const styles = StyleSheet.create({ class NewServerView extends React.Component { static navigationOptions = () => ({ title: I18n.t('Workspaces') - }) + }); static propTypes = { navigation: PropTypes.object, @@ -74,7 +72,7 @@ class NewServerView extends React.Component { adding: PropTypes.bool, previousServer: PropTypes.string, inviteLinksClear: PropTypes.func - } + }; constructor(props) { super(props); @@ -113,7 +111,7 @@ class NewServerView extends React.Component { headerLeft: () => <HeaderButton.CloseModal navigation={navigation} onPress={this.close} testID='new-server-view-close' /> }); } - } + }; handleBackPress = () => { const { navigation, previousServer } = this.props; @@ -122,43 +120,36 @@ class NewServerView extends React.Component { return true; } return false; - } + }; - onChangeText = (text) => { + onChangeText = text => { this.setState({ text }); this.queryServerHistory(text); - } + }; - queryServerHistory = async(text) => { + queryServerHistory = async text => { const db = database.servers; try { const serversHistoryCollection = db.get('servers_history'); - let whereClause = [ - Q.where('username', Q.notEq(null)), - Q.experimentalSortBy('updated_at', Q.desc), - Q.experimentalTake(3) - ]; + let whereClause = [Q.where('username', Q.notEq(null)), Q.experimentalSortBy('updated_at', Q.desc), Q.experimentalTake(3)]; const likeString = sanitizeLikeString(text); if (text) { - whereClause = [ - ...whereClause, - Q.where('url', Q.like(`%${ likeString }%`)) - ]; + whereClause = [...whereClause, Q.where('url', Q.like(`%${likeString}%`))]; } const serversHistory = await serversHistoryCollection.query(...whereClause).fetch(); this.setState({ serversHistory }); } catch { // Do nothing } - } + }; close = () => { const { selectServer, previousServer, inviteLinksClear } = this.props; inviteLinksClear(); selectServer(previousServer); - } + }; - handleNewServerEvent = (event) => { + handleNewServerEvent = event => { let { server } = event; if (!server) { return; @@ -167,13 +158,15 @@ class NewServerView extends React.Component { this.setState({ text: server }); server = this.completeUrl(server); connectServer(server); - } + }; - onPressServerHistory = (serverHistory) => { - this.setState({ text: serverHistory?.url }, () => this.submit({ fromServerHistory: true, username: serverHistory?.username })); - } + onPressServerHistory = serverHistory => { + this.setState({ text: serverHistory?.url }, () => + this.submit({ fromServerHistory: true, username: serverHistory?.username }) + ); + }; - submit = async({ fromServerHistory = false, username }) => { + submit = async ({ fromServerHistory = false, username }) => { logEvent(events.NS_CONNECT_TO_WORKSPACE); const { text, certificate } = this.state; const { connectServer } = this.props; @@ -185,7 +178,7 @@ class NewServerView extends React.Component { const server = this.completeUrl(text); // Save info - SSL Pinning - await UserPreferences.setStringAsync(`${ RocketChat.CERTIFICATE_KEY }-${ server }`, certificate); + await UserPreferences.setStringAsync(`${RocketChat.CERTIFICATE_KEY}-${server}`, certificate); // Save info - HTTP Basic Authentication await this.basicAuth(server, text); @@ -196,38 +189,38 @@ class NewServerView extends React.Component { connectServer(server); } } - } + }; connectOpen = () => { logEvent(events.NS_JOIN_OPEN_WORKSPACE); this.setState({ connectingOpen: true }); const { connectServer } = this.props; connectServer('https://open.rocket.chat'); - } + }; - basicAuth = async(server, text) => { + basicAuth = async (server, text) => { try { const parsedUrl = parse(text, true); if (parsedUrl.auth.length) { const credentials = Base64.encode(parsedUrl.auth); - await UserPreferences.setStringAsync(`${ BASIC_AUTH_KEY }-${ server }`, credentials); + await UserPreferences.setStringAsync(`${BASIC_AUTH_KEY}-${server}`, credentials); setBasicAuth(credentials); } } catch { // do nothing } - } + }; - chooseCertificate = async() => { + chooseCertificate = async () => { try { const certificate = await SSLPinning.pickCertificate(); this.setState({ certificate }); } catch { // Do nothing } - } + }; - completeUrl = (url) => { + completeUrl = url => { const parsedUrl = parse(url, true); if (parsedUrl.auth.length) { url = parsedUrl.origin; @@ -235,28 +228,27 @@ class NewServerView extends React.Component { url = url && url.replace(/\s/g, ''); - if (/^(\w|[0-9-_]){3,}$/.test(url) - && /^(htt(ps?)?)|(loca((l)?|(lh)?|(lho)?|(lhos)?|(lhost:?\d*)?)$)/.test(url) === false) { - url = `${ url }.rocket.chat`; + if (/^(\w|[0-9-_]){3,}$/.test(url) && /^(htt(ps?)?)|(loca((l)?|(lh)?|(lho)?|(lhos)?|(lhost:?\d*)?)$)/.test(url) === false) { + url = `${url}.rocket.chat`; } if (/^(https?:\/\/)?(((\w|[0-9-_])+(\.(\w|[0-9-_])+)+)|localhost)(:\d+)?$/.test(url)) { if (/^localhost(:\d+)?/.test(url)) { - url = `http://${ url }`; + url = `http://${url}`; } else if (/^https?:\/\//.test(url) === false) { - url = `https://${ url }`; + url = `https://${url}`; } } return url.replace(/\/+$/, '').replace(/\\/g, '/'); - } + }; uriToPath = uri => uri.replace('file://', ''); - saveCertificate = (certificate) => { + saveCertificate = certificate => { animateNextTransition(); this.setState({ certificate }); - } + }; handleRemove = () => { showConfirmationAlert({ @@ -264,62 +256,45 @@ class NewServerView extends React.Component { confirmationText: I18n.t('Remove'), onPress: this.setState({ certificate: null }) // We not need delete file from DocumentPicker because it is a temp file }); - } + }; - deleteServerHistory = async(item) => { + deleteServerHistory = async item => { const { serversHistory } = this.state; const db = database.servers; try { - await db.action(async() => { + await db.action(async () => { await item.destroyPermanently(); }); this.setState({ serversHistory: serversHistory.filter(server => server.id !== item.id) }); } catch { // Nothing } - } + }; renderCertificatePicker = () => { const { certificate } = this.state; const { theme } = this.props; return ( <View style={styles.certificatePicker}> - <Text - style={[ - styles.chooseCertificateTitle, - { color: themes[theme].auxiliaryText } - ]} - > + <Text style={[styles.chooseCertificateTitle, { color: themes[theme].auxiliaryText }]}> {certificate ? I18n.t('Your_certificate') : I18n.t('Do_you_have_a_certificate')} </Text> <TouchableOpacity onPress={certificate ? this.handleRemove : this.chooseCertificate} - testID='new-server-choose-certificate' - > - <Text - style={[ - styles.chooseCertificate, - { color: themes[theme].tintColor } - ]} - > + testID='new-server-choose-certificate'> + <Text style={[styles.chooseCertificate, { color: themes[theme].tintColor }]}> {certificate ?? I18n.t('Apply_Your_Certificate')} </Text> </TouchableOpacity> </View> ); - } + }; render() { const { connecting, theme } = this.props; - const { - text, connectingOpen, serversHistory - } = this.state; + const { text, connectingOpen, serversHistory } = this.state; return ( - <FormContainer - theme={theme} - testID='new-server-view' - keyboardShouldPersistTaps='never' - > + <FormContainer theme={theme} testID='new-server-view' keyboardShouldPersistTaps='never'> <FormContainerInner> <Text style={[styles.title, { color: themes[theme].titleText }]}>{I18n.t('Join_your_workspace')}</Text> <ServerInput @@ -342,7 +317,9 @@ class NewServerView extends React.Component { testID='new-server-view-button' /> <OrSeparator theme={theme} /> - <Text style={[styles.description, { color: themes[theme].auxiliaryText }]}>{I18n.t('Onboarding_join_open_description')}</Text> + <Text style={[styles.description, { color: themes[theme].auxiliaryText }]}> + {I18n.t('Onboarding_join_open_description')} + </Text> <Button title={I18n.t('Join_our_open_workspace')} type='secondary' diff --git a/app/views/NotificationPreferencesView/index.js b/app/views/NotificationPreferencesView/index.js index a9356f3e19..f0d7437a6c 100644 --- a/app/views/NotificationPreferencesView/index.js +++ b/app/views/NotificationPreferencesView/index.js @@ -25,7 +25,7 @@ const styles = StyleSheet.create({ class NotificationPreferencesView extends React.Component { static navigationOptions = () => ({ title: I18n.t('Notification_Preferences') - }) + }); static propTypes = { navigation: PropTypes.object, @@ -43,14 +43,13 @@ class NotificationPreferencesView extends React.Component { }; if (room && room.observe) { this.roomObservable = room.observe(); - this.subscription = this.roomObservable - .subscribe((changes) => { - if (this.mounted) { - this.setState({ room: changes }); - } else { - this.state.room = changes; - } - }); + this.subscription = this.roomObservable.subscribe(changes => { + if (this.mounted) { + this.setState({ room: changes }); + } else { + this.state.room = changes; + } + }); } } @@ -64,16 +63,18 @@ class NotificationPreferencesView extends React.Component { } } - saveNotificationSettings = async(key, value, params) => { - logEvent(events[`NP_${ key.toUpperCase() }`]); + saveNotificationSettings = async (key, value, params) => { + logEvent(events[`NP_${key.toUpperCase()}`]); const { room } = this.state; const db = database.active; try { - await db.action(async() => { - await room.update(protectedFunction((r) => { - r[key] = value; - })); + await db.action(async () => { + await room.update( + protectedFunction(r => { + r[key] = value; + }) + ); }); try { @@ -85,16 +86,18 @@ class NotificationPreferencesView extends React.Component { // do nothing } - await db.action(async() => { - await room.update(protectedFunction((r) => { - r[key] = room[key]; - })); + await db.action(async () => { + await room.update( + protectedFunction(r => { + r[key] = room[key]; + }) + ); }); } catch (e) { - logEvent(events[`NP_${ key.toUpperCase() }_F`]); + logEvent(events[`NP_${key.toUpperCase()}_F`]); log(e); } - } + }; onValueChangeSwitch = (key, value) => this.saveNotificationSettings(key, value, { [key]: value ? '1' : '0' }); @@ -109,16 +112,20 @@ class NotificationPreferencesView extends React.Component { value: room[key], onChangeValue: value => this.onValueChangePicker(key, value) }); - } + }; - renderPickerOption = (key) => { + renderPickerOption = key => { const { room } = this.state; const { theme } = this.props; const text = room[key] ? OPTIONS[key].find(option => option.value === room[key]) : OPTIONS[key][0]; - return <Text style={[styles.pickerText, { color: themes[theme].actionTintColor }]}>{I18n.t(text?.label, { defaultValue: text?.label, second: text?.second })}</Text>; - } + return ( + <Text style={[styles.pickerText, { color: themes[theme].actionTintColor }]}> + {I18n.t(text?.label, { defaultValue: text?.label, second: text?.second })} + </Text> + ); + }; - renderSwitch = (key) => { + renderSwitch = key => { const { room } = this.state; return ( <Switch @@ -128,7 +135,7 @@ class NotificationPreferencesView extends React.Component { onValueChange={value => this.onValueChangeSwitch(key, !value)} /> ); - } + }; render() { const { room } = this.state; diff --git a/app/views/NotificationPreferencesView/options.js b/app/views/NotificationPreferencesView/options.js index 7c572718fe..660ff6df09 100644 --- a/app/views/NotificationPreferencesView/options.js +++ b/app/views/NotificationPreferencesView/options.js @@ -1,68 +1,139 @@ export const OPTIONS = { - desktopNotifications: [{ - label: 'Default', value: 'default' - }, { - label: 'All_Messages', value: 'all' - }, { - label: 'Mentions', value: 'mentions' - }, { - label: 'Nothing', value: 'nothing' - }], - audioNotifications: [{ - label: 'Default', value: 'default' - }, { - label: 'All_Messages', value: 'all' - }, { - label: 'Mentions', value: 'mentions' - }, { - label: 'Nothing', value: 'nothing' - }], - mobilePushNotifications: [{ - label: 'Default', value: 'default' - }, { - label: 'All_Messages', value: 'all' - }, { - label: 'Mentions', value: 'mentions' - }, { - label: 'Nothing', value: 'nothing' - }], - emailNotifications: [{ - label: 'Default', value: 'default' - }, { - label: 'All_Messages', value: 'all' - }, { - label: 'Mentions', value: 'mentions' - }, { - label: 'Nothing', value: 'nothing' - }], - desktopNotificationDuration: [{ - label: 'Default', value: 0 - }, { - label: 'Seconds', second: 1, value: 1 - }, { - label: 'Seconds', second: 2, value: 2 - }, { - label: 'Seconds', second: 3, value: 3 - }, { - label: 'Seconds', second: 4, value: 4 - }, { - label: 'Seconds', second: 5, value: 5 - }], - audioNotificationValue: [{ - label: 'None', value: 'none None' - }, { - label: 'Default', value: '0 Default' - }, { - label: 'Beep', value: 'beep Beep' - }, { - label: 'Ding', value: 'ding Ding' - }, { - label: 'Chelle', value: 'chelle Chelle' - }, { - label: 'Droplet', value: 'droplet Droplet' - }, { - label: 'Highbell', value: 'highbell Highbell' - }, { - label: 'Seasons', value: 'seasons Seasons' - }] + desktopNotifications: [ + { + label: 'Default', + value: 'default' + }, + { + label: 'All_Messages', + value: 'all' + }, + { + label: 'Mentions', + value: 'mentions' + }, + { + label: 'Nothing', + value: 'nothing' + } + ], + audioNotifications: [ + { + label: 'Default', + value: 'default' + }, + { + label: 'All_Messages', + value: 'all' + }, + { + label: 'Mentions', + value: 'mentions' + }, + { + label: 'Nothing', + value: 'nothing' + } + ], + mobilePushNotifications: [ + { + label: 'Default', + value: 'default' + }, + { + label: 'All_Messages', + value: 'all' + }, + { + label: 'Mentions', + value: 'mentions' + }, + { + label: 'Nothing', + value: 'nothing' + } + ], + emailNotifications: [ + { + label: 'Default', + value: 'default' + }, + { + label: 'All_Messages', + value: 'all' + }, + { + label: 'Mentions', + value: 'mentions' + }, + { + label: 'Nothing', + value: 'nothing' + } + ], + desktopNotificationDuration: [ + { + label: 'Default', + value: 0 + }, + { + label: 'Seconds', + second: 1, + value: 1 + }, + { + label: 'Seconds', + second: 2, + value: 2 + }, + { + label: 'Seconds', + second: 3, + value: 3 + }, + { + label: 'Seconds', + second: 4, + value: 4 + }, + { + label: 'Seconds', + second: 5, + value: 5 + } + ], + audioNotificationValue: [ + { + label: 'None', + value: 'none None' + }, + { + label: 'Default', + value: '0 Default' + }, + { + label: 'Beep', + value: 'beep Beep' + }, + { + label: 'Ding', + value: 'ding Ding' + }, + { + label: 'Chelle', + value: 'chelle Chelle' + }, + { + label: 'Droplet', + value: 'droplet Droplet' + }, + { + label: 'Highbell', + value: 'highbell Highbell' + }, + { + label: 'Seasons', + value: 'seasons Seasons' + } + ] }; diff --git a/app/views/OnboardingView/index.js b/app/views/OnboardingView/index.js index 5ae774d020..251fac49bf 100644 --- a/app/views/OnboardingView/index.js +++ b/app/views/OnboardingView/index.js @@ -1,7 +1,5 @@ import React from 'react'; -import { - Image, Linking, Text, View -} from 'react-native'; +import { Image, Linking, Text, View } from 'react-native'; import PropTypes from 'prop-types'; import Orientation from 'react-native-orientation-locker'; @@ -22,7 +20,7 @@ class OnboardingView extends React.Component { static propTypes = { navigation: PropTypes.object, theme: PropTypes.string - } + }; constructor(props) { super(props); @@ -43,16 +41,16 @@ class OnboardingView extends React.Component { logEvent(events.ONBOARD_JOIN_A_WORKSPACE); const { navigation } = this.props; navigation.navigate('NewServerView'); - } + }; - createWorkspace = async() => { + createWorkspace = async () => { logEvent(events.ONBOARD_CREATE_NEW_WORKSPACE); try { await Linking.openURL('https://cloud.rocket.chat/trial'); } catch { logEvent(events.ONBOARD_CREATE_NEW_WORKSPACE_F); } - } + }; render() { const { theme } = this.props; diff --git a/app/views/PickerView.js b/app/views/PickerView.js index 3fe263011b..ed62fe65ec 100644 --- a/app/views/PickerView.js +++ b/app/views/PickerView.js @@ -1,8 +1,6 @@ import React from 'react'; import PropTypes from 'prop-types'; -import { - FlatList, StyleSheet, Text, View -} from 'react-native'; +import { FlatList, StyleSheet, Text, View } from 'react-native'; import I18n from '../i18n'; import { withTheme } from '../theme'; @@ -26,12 +24,7 @@ const styles = StyleSheet.create({ } }); -const Item = React.memo(({ - item, - selected, - onItemPress, - theme -}) => ( +const Item = React.memo(({ item, selected, onItemPress, theme }) => ( <List.Item title={I18n.t(item.label, { defaultValue: item.label, second: item?.second })} right={selected && (() => <List.Icon name='check' color={themes[theme].tintColor} />)} @@ -49,13 +42,13 @@ Item.propTypes = { class PickerView extends React.PureComponent { static navigationOptions = ({ route }) => ({ title: route.params?.title ?? I18n.t('Select_an_option') - }) + }); static propTypes = { navigation: PropTypes.object, route: PropTypes.object, theme: PropTypes.string - } + }; constructor(props) { super(props); @@ -66,7 +59,7 @@ class PickerView extends React.PureComponent { this.onSearch = props.route.params?.onChangeText; } - onChangeValue = (value) => { + onChangeValue = value => { const { navigation, route } = this.props; const goBack = route.params?.goBack ?? true; const onChange = route.params?.onChangeValue ?? (() => {}); @@ -74,14 +67,18 @@ class PickerView extends React.PureComponent { if (goBack) { navigation.goBack(); } - } + }; - onChangeText = debounce(async(text) => { - if (this.onSearch) { - const data = await this.onSearch(text); - this.setState({ data }); - } - }, 300, true) + onChangeText = debounce( + async text => { + if (this.onSearch) { + const data = await this.onSearch(text); + this.setState({ data }); + } + }, + 300, + true + ); renderSearch() { if (!this.onSearch) { @@ -116,7 +113,9 @@ class PickerView extends React.PureComponent { ItemSeparatorComponent={List.Separator} ListHeaderComponent={List.Separator} ListFooterComponent={List.Separator} - ListEmptyComponent={() => <Text style={[styles.noResult, { color: themes[theme].titleText }]}>{I18n.t('No_results_found')}</Text>} + ListEmptyComponent={() => ( + <Text style={[styles.noResult, { color: themes[theme].titleText }]}>{I18n.t('No_results_found')}</Text> + )} contentContainerStyle={[List.styles.contentContainerStyleFlatList]} /> </SafeAreaView> diff --git a/app/views/ProfileView/index.js b/app/views/ProfileView/index.js index e726ae6931..630d8c7aa1 100644 --- a/app/views/ProfileView/index.js +++ b/app/views/ProfileView/index.js @@ -44,7 +44,7 @@ class ProfileView extends React.Component { <HeaderButton.Preferences onPress={() => navigation.navigate('UserPreferencesView')} testID='preferences-view-open' /> ); return options; - } + }; static propTypes = { baseUrl: PropTypes.string, @@ -57,7 +57,7 @@ class ProfileView extends React.Component { Accounts_CustomFields: PropTypes.string, setUser: PropTypes.func, theme: PropTypes.string - } + }; state = { saving: false, @@ -70,7 +70,7 @@ class ProfileView extends React.Component { avatar: {}, avatarSuggestions: {}, customFields: {} - } + }; async componentDidMount() { this.init(); @@ -96,7 +96,7 @@ class ProfileView extends React.Component { } } - setAvatar = (avatar) => { + setAvatar = avatar => { const { Accounts_AllowUserAvatarChange } = this.props; if (!Accounts_AllowUserAvatarChange) { @@ -104,13 +104,11 @@ class ProfileView extends React.Component { } this.setState({ avatar }); - } + }; - init = (user) => { + init = user => { const { user: userProps } = this.props; - const { - name, username, emails, customFields - } = user || userProps; + const { name, username, emails, customFields } = user || userProps; this.setState({ name, @@ -122,41 +120,41 @@ class ProfileView extends React.Component { avatar: {}, customFields: customFields || {} }); - } + }; formIsChanged = () => { - const { - name, username, email, newPassword, avatar, customFields - } = this.state; + const { name, username, email, newPassword, avatar, customFields } = this.state; const { user } = this.props; let customFieldsChanged = false; const customFieldsKeys = Object.keys(customFields); if (customFieldsKeys.length) { - customFieldsKeys.forEach((key) => { + customFieldsKeys.forEach(key => { if (!user.customFields || user.customFields[key] !== customFields[key]) { customFieldsChanged = true; } }); } - return !(user.name === name - && user.username === username - && !newPassword - && (user.emails && user.emails[0].address === email) - && !avatar.data - && !customFieldsChanged + return !( + user.name === name && + user.username === username && + !newPassword && + user.emails && + user.emails[0].address === email && + !avatar.data && + !customFieldsChanged ); - } + }; handleError = (e, func, action) => { if (e.data && e.data.error.includes('[error-too-many-requests]')) { return showErrorAlert(e.data.error); } showErrorAlert(I18n.t('There_was_an_error_while_action', { action: I18n.t(action) })); - } + }; - submit = async() => { + submit = async () => { Keyboard.dismiss(); if (!this.formIsChanged()) { @@ -165,9 +163,7 @@ class ProfileView extends React.Component { this.setState({ saving: true }); - const { - name, username, email, newPassword, currentPassword, avatar, customFields - } = this.state; + const { name, username, email, newPassword, currentPassword, avatar, customFields } = this.state; const { user, setUser } = this.props; const params = {}; @@ -206,7 +202,7 @@ class ProfileView extends React.Component { { text: I18n.t('Cancel'), onPress: () => {}, style: 'cancel' }, { text: I18n.t('Save'), - onPress: (p) => { + onPress: p => { this.setState({ currentPassword: p }); this.submit(); } @@ -250,9 +246,9 @@ class ProfileView extends React.Component { this.setState({ saving: false, currentPassword: null }); this.handleError(e, 'saveUserProfile', 'saving_profile'); } - } + }; - resetAvatar = async() => { + resetAvatar = async () => { const { Accounts_AllowUserAvatarChange } = this.props; if (!Accounts_AllowUserAvatarChange) { @@ -267,9 +263,9 @@ class ProfileView extends React.Component { } catch (e) { this.handleError(e, 'resetAvatar', 'changing_avatar'); } - } + }; - pickImage = async() => { + pickImage = async () => { const { Accounts_AllowUserAvatarChange } = this.props; if (!Accounts_AllowUserAvatarChange) { @@ -288,21 +284,19 @@ class ProfileView extends React.Component { try { logEvent(events.PROFILE_PICK_AVATAR); const response = await ImagePicker.openPicker(options); - this.setAvatar({ url: response.path, data: `data:image/jpeg;base64,${ response.data }`, service: 'upload' }); + this.setAvatar({ url: response.path, data: `data:image/jpeg;base64,${response.data}`, service: 'upload' }); } catch (error) { logEvent(events.PROFILE_PICK_AVATAR_F); console.warn(error); } - } + }; - pickImageWithURL = (avatarUrl) => { + pickImageWithURL = avatarUrl => { logEvent(events.PROFILE_PICK_AVATAR_WITH_URL); this.setAvatar({ url: avatarUrl, data: avatarUrl, service: 'url' }); - } + }; - renderAvatarButton = ({ - key, child, onPress, disabled = false - }) => { + renderAvatarButton = ({ key, child, onPress, disabled = false }) => { const { theme } = this.props; return ( <Touch @@ -311,25 +305,20 @@ class ProfileView extends React.Component { onPress={onPress} style={[styles.avatarButton, { opacity: disabled ? 0.5 : 1 }, { backgroundColor: themes[theme].borderColor }]} enabled={!disabled} - theme={theme} - > + theme={theme}> {child} </Touch> ); - } + }; renderAvatarButtons = () => { const { avatarUrl, avatarSuggestions } = this.state; - const { - user, - theme, - Accounts_AllowUserAvatarChange - } = this.props; + const { user, theme, Accounts_AllowUserAvatarChange } = this.props; return ( <View style={styles.avatarButtons}> {this.renderAvatarButton({ - child: <Avatar text={`@${ user.username }`} size={50} />, + child: <Avatar text={`@${user.username}`} size={50} />, onPress: () => this.resetAvatar(), disabled: !Accounts_AllowUserAvatarChange, key: 'profile-view-reset-avatar' @@ -346,20 +335,24 @@ class ProfileView extends React.Component { disabled: !avatarUrl, key: 'profile-view-avatar-url-button' })} - {Object.keys(avatarSuggestions).map((service) => { + {Object.keys(avatarSuggestions).map(service => { const { url, blob, contentType } = avatarSuggestions[service]; return this.renderAvatarButton({ disabled: !Accounts_AllowUserAvatarChange, - key: `profile-view-avatar-${ service }`, + key: `profile-view-avatar-${service}`, child: <Avatar avatar={url} size={50} />, - onPress: () => this.setAvatar({ - url, data: blob, service, contentType - }) + onPress: () => + this.setAvatar({ + url, + data: blob, + service, + contentType + }) }); })} </View> ); - } + }; renderCustomFields = () => { const { customFields } = this.state; @@ -377,15 +370,16 @@ class ProfileView extends React.Component { <RNPickerSelect key={key} items={options} - onValueChange={(value) => { + onValueChange={value => { const newValue = {}; newValue[key] = value; this.setState({ customFields: { ...customFields, ...newValue } }); }} - value={customFields[key]} - > + value={customFields[key]}> <RCTextInput - inputRef={(e) => { this[key] = e; }} + inputRef={e => { + this[key] = e; + }} label={key} placeholder={key} value={customFields[key]} @@ -398,12 +392,14 @@ class ProfileView extends React.Component { return ( <RCTextInput - inputRef={(e) => { this[key] = e; }} + inputRef={e => { + this[key] = e; + }} key={key} label={key} placeholder={key} value={customFields[key]} - onChangeText={(value) => { + onChangeText={value => { const newValue = {}; newValue[key] = value; this.setState({ customFields: { ...customFields, ...newValue } }); @@ -421,14 +417,14 @@ class ProfileView extends React.Component { } catch (error) { return null; } - } + }; logoutOtherLocations = () => { logEvent(events.PL_OTHER_LOCATIONS); showConfirmationAlert({ message: I18n.t('You_will_be_logged_out_from_other_locations'), confirmationText: I18n.t('Logout'), - onPress: async() => { + onPress: async () => { try { await RocketChat.logoutOtherLocations(); EventEmitter.emit(LISTENER, { message: I18n.t('Logged_out_of_other_clients_successfully') }); @@ -438,12 +434,10 @@ class ProfileView extends React.Component { } } }); - } + }; render() { - const { - name, username, email, newPassword, avatarUrl, customFields, avatar, saving - } = this.state; + const { name, username, email, newPassword, avatarUrl, customFields, avatar, saving } = this.state; const { user, theme, @@ -459,71 +453,67 @@ class ProfileView extends React.Component { <KeyboardView style={{ backgroundColor: themes[theme].auxiliaryBackground }} contentContainerStyle={sharedStyles.container} - keyboardVerticalOffset={128} - > + keyboardVerticalOffset={128}> <StatusBar /> <SafeAreaView testID='profile-view'> - <ScrollView - contentContainerStyle={sharedStyles.containerScrollView} - testID='profile-view-list' - {...scrollPersistTaps} - > + <ScrollView contentContainerStyle={sharedStyles.containerScrollView} testID='profile-view-list' {...scrollPersistTaps}> <View style={styles.avatarContainer} testID='profile-view-avatar'> - <Avatar - text={user.username} - avatar={avatar?.url} - isStatic={avatar?.url} - size={100} - /> + <Avatar text={user.username} avatar={avatar?.url} isStatic={avatar?.url} size={100} /> </View> <RCTextInput editable={Accounts_AllowRealNameChange} - inputStyle={[ - !Accounts_AllowRealNameChange && styles.disabled - ]} - inputRef={(e) => { this.name = e; }} + inputStyle={[!Accounts_AllowRealNameChange && styles.disabled]} + inputRef={e => { + this.name = e; + }} label={I18n.t('Name')} placeholder={I18n.t('Name')} value={name} onChangeText={value => this.setState({ name: value })} - onSubmitEditing={() => { this.username.focus(); }} + onSubmitEditing={() => { + this.username.focus(); + }} testID='profile-view-name' theme={theme} /> <RCTextInput editable={Accounts_AllowUsernameChange} - inputStyle={[ - !Accounts_AllowUsernameChange && styles.disabled - ]} - inputRef={(e) => { this.username = e; }} + inputStyle={[!Accounts_AllowUsernameChange && styles.disabled]} + inputRef={e => { + this.username = e; + }} label={I18n.t('Username')} placeholder={I18n.t('Username')} value={username} onChangeText={value => this.setState({ username: value })} - onSubmitEditing={() => { this.email.focus(); }} + onSubmitEditing={() => { + this.email.focus(); + }} testID='profile-view-username' theme={theme} /> <RCTextInput editable={Accounts_AllowEmailChange} - inputStyle={[ - !Accounts_AllowEmailChange && styles.disabled - ]} - inputRef={(e) => { this.email = e; }} + inputStyle={[!Accounts_AllowEmailChange && styles.disabled]} + inputRef={e => { + this.email = e; + }} label={I18n.t('Email')} placeholder={I18n.t('Email')} value={email} onChangeText={value => this.setState({ email: value })} - onSubmitEditing={() => { this.newPassword.focus(); }} + onSubmitEditing={() => { + this.newPassword.focus(); + }} testID='profile-view-email' theme={theme} /> <RCTextInput editable={Accounts_AllowPasswordChange} - inputStyle={[ - !Accounts_AllowPasswordChange && styles.disabled - ]} - inputRef={(e) => { this.newPassword = e; }} + inputStyle={[!Accounts_AllowPasswordChange && styles.disabled]} + inputRef={e => { + this.newPassword = e; + }} label={I18n.t('New_Password')} placeholder={I18n.t('New_Password')} value={newPassword} @@ -541,10 +531,10 @@ class ProfileView extends React.Component { {this.renderCustomFields()} <RCTextInput editable={Accounts_AllowUserAvatarChange} - inputStyle={[ - !Accounts_AllowUserAvatarChange && styles.disabled - ]} - inputRef={(e) => { this.avatarUrl = e; }} + inputStyle={[!Accounts_AllowUserAvatarChange && styles.disabled]} + inputRef={e => { + this.avatarUrl = e; + }} label={I18n.t('Avatar_Url')} placeholder={I18n.t('Avatar_Url')} value={avatarUrl} diff --git a/app/views/ReadReceiptView/index.js b/app/views/ReadReceiptView/index.js index dc3352f9de..d407b34201 100644 --- a/app/views/ReadReceiptView/index.js +++ b/app/views/ReadReceiptView/index.js @@ -26,13 +26,13 @@ class ReadReceiptView extends React.Component { options.headerLeft = () => <HeaderButton.CloseModal navigation={navigation} testID='read-receipt-view-close' />; } return options; - } + }; static propTypes = { route: PropTypes.object, Message_TimeAndDateFormat: PropTypes.string, theme: PropTypes.string - } + }; constructor(props) { super(props); @@ -62,7 +62,7 @@ class ReadReceiptView extends React.Component { return false; } - load = async() => { + load = async () => { const { loading } = this.state; if (loading) { return; @@ -82,16 +82,18 @@ class ReadReceiptView extends React.Component { this.setState({ loading: false }); console.log('err_fetch_read_receipts', error); } - } + }; renderEmpty = () => { const { theme } = this.props; return ( - <View style={[styles.listEmptyContainer, { backgroundColor: themes[theme].chatComponentBackground }]} testID='read-receipt-view'> + <View + style={[styles.listEmptyContainer, { backgroundColor: themes[theme].chatComponentBackground }]} + testID='read-receipt-view'> <Text style={{ color: themes[theme].titleText }}>{I18n.t('No_Read_Receipts')}</Text> </View> ); - } + }; renderItem = ({ item }) => { const { theme, Message_TimeAndDateFormat } = this.props; @@ -101,26 +103,17 @@ class ReadReceiptView extends React.Component { } return ( <View style={[styles.itemContainer, { backgroundColor: themes[theme].backgroundColor }]}> - <Avatar - text={item.user.username} - size={40} - /> + <Avatar text={item.user.username} size={40} /> <View style={styles.infoContainer}> <View style={styles.item}> - <Text style={[styles.name, { color: themes[theme].titleText }]}> - {item?.user?.name} - </Text> - <Text style={{ color: themes[theme].auxiliaryText }}> - {time} - </Text> + <Text style={[styles.name, { color: themes[theme].titleText }]}>{item?.user?.name}</Text> + <Text style={{ color: themes[theme].auxiliaryText }}>{time}</Text> </View> - <Text style={{ color: themes[theme].auxiliaryText }}> - {`@${ item.user.username }`} - </Text> + <Text style={{ color: themes[theme].auxiliaryText }}>{`@${item.user.username}`}</Text> </View> </View> ); - } + }; render() { const { receipts, loading } = this.state; @@ -133,23 +126,23 @@ class ReadReceiptView extends React.Component { return ( <SafeAreaView testID='read-receipt-view'> <StatusBar /> - {loading - ? <ActivityIndicator theme={theme} /> - : ( - <FlatList - data={receipts} - renderItem={this.renderItem} - ItemSeparatorComponent={List.Separator} - style={[ - styles.list, - { - backgroundColor: themes[theme].chatComponentBackground, - borderColor: themes[theme].separatorColor - } - ]} - keyExtractor={item => item._id} - /> - )} + {loading ? ( + <ActivityIndicator theme={theme} /> + ) : ( + <FlatList + data={receipts} + renderItem={this.renderItem} + ItemSeparatorComponent={List.Separator} + style={[ + styles.list, + { + backgroundColor: themes[theme].chatComponentBackground, + borderColor: themes[theme].separatorColor + } + ]} + keyExtractor={item => item._id} + /> + )} </SafeAreaView> ); } diff --git a/app/views/RegisterView.js b/app/views/RegisterView.js index 0d5b036834..5086bc9eee 100644 --- a/app/views/RegisterView.js +++ b/app/views/RegisterView.js @@ -1,8 +1,6 @@ import React from 'react'; import PropTypes from 'prop-types'; -import { - Keyboard, StyleSheet, Text, View -} from 'react-native'; +import { Keyboard, StyleSheet, Text, View } from 'react-native'; import { connect } from 'react-redux'; import RNPickerSelect from 'react-native-picker-select'; @@ -67,7 +65,7 @@ class RegisterView extends React.Component { Site_Name: PropTypes.string, loginRequest: PropTypes.func, showLoginButton: PropTypes.bool - } + }; constructor(props) { super(props); @@ -80,7 +78,7 @@ class RegisterView extends React.Component { log(e); } } - Object.keys(this.parsedCustomFields).forEach((key) => { + Object.keys(this.parsedCustomFields).forEach(key => { if (this.parsedCustomFields[key].defaultValue) { customFields[key] = this.parsedCustomFields[key].defaultValue; } @@ -98,22 +96,20 @@ class RegisterView extends React.Component { login = () => { const { navigation, Site_Name } = this.props; navigation.navigate('LoginView', { title: Site_Name }); - } + }; valid = () => { - const { - name, email, password, username, customFields - } = this.state; + const { name, email, password, username, customFields } = this.state; let requiredCheck = true; - Object.keys(this.parsedCustomFields).forEach((key) => { + Object.keys(this.parsedCustomFields).forEach(key => { if (this.parsedCustomFields[key].required) { requiredCheck = requiredCheck && customFields[key] && Boolean(customFields[key].trim()); } }); return name.trim() && email.trim() && password.trim() && username.trim() && isValidEmail(email) && requiredCheck; - } + }; - submit = async() => { + submit = async () => { logEvent(events.REGISTER_DEFAULT_SIGN_UP); if (!this.valid()) { return; @@ -121,19 +117,16 @@ class RegisterView extends React.Component { this.setState({ saving: true }); Keyboard.dismiss(); - const { - name, email, password, username, customFields - } = this.state; - const { - loginRequest, - Accounts_EmailVerification, - navigation, - Accounts_ManuallyApproveNewUsers - } = this.props; + const { name, email, password, username, customFields } = this.state; + const { loginRequest, Accounts_EmailVerification, navigation, Accounts_ManuallyApproveNewUsers } = this.props; try { await RocketChat.register({ - name, email, pass: password, username, ...customFields + name, + email, + pass: password, + username, + ...customFields }); if (Accounts_EmailVerification) { @@ -155,15 +148,15 @@ class RegisterView extends React.Component { } } this.setState({ saving: false }); - } + }; - openContract = (route) => { + openContract = route => { const { server, theme } = this.props; if (!server) { return; } - openLink(`${ server }/${ route }`, theme); - } + openLink(`${server}/${route}`, theme); + }; renderCustomFields = () => { const { customFields } = this.state; @@ -179,15 +172,16 @@ class RegisterView extends React.Component { <RNPickerSelect key={key} items={options} - onValueChange={(value) => { + onValueChange={value => { const newValue = {}; newValue[key] = value; this.setState({ customFields: { ...customFields, ...newValue } }); }} - value={customFields[key]} - > + value={customFields[key]}> <TextInput - inputRef={(e) => { this[key] = e; }} + inputRef={e => { + this[key] = e; + }} placeholder={key} value={customFields[key]} testID='register-view-custom-picker' @@ -199,12 +193,14 @@ class RegisterView extends React.Component { return ( <TextInput - inputRef={(e) => { this[key] = e; }} + inputRef={e => { + this[key] = e; + }} key={key} label={key} placeholder={key} value={customFields[key]} - onChangeText={(value) => { + onChangeText={value => { const newValue = {}; newValue[key] = value; this.setState({ customFields: { ...customFields, ...newValue } }); @@ -223,7 +219,7 @@ class RegisterView extends React.Component { } catch (error) { return null; } - } + }; render() { const { saving } = this.state; @@ -239,37 +235,49 @@ class RegisterView extends React.Component { placeholder={I18n.t('Name')} returnKeyType='next' onChangeText={name => this.setState({ name })} - onSubmitEditing={() => { this.usernameInput.focus(); }} + onSubmitEditing={() => { + this.usernameInput.focus(); + }} testID='register-view-name' theme={theme} /> <TextInput label={I18n.t('Username')} containerStyle={styles.inputContainer} - inputRef={(e) => { this.usernameInput = e; }} + inputRef={e => { + this.usernameInput = e; + }} placeholder={I18n.t('Username')} returnKeyType='next' onChangeText={username => this.setState({ username })} - onSubmitEditing={() => { this.emailInput.focus(); }} + onSubmitEditing={() => { + this.emailInput.focus(); + }} testID='register-view-username' theme={theme} /> <TextInput label={I18n.t('Email')} containerStyle={styles.inputContainer} - inputRef={(e) => { this.emailInput = e; }} + inputRef={e => { + this.emailInput = e; + }} placeholder={I18n.t('Email')} returnKeyType='next' keyboardType='email-address' onChangeText={email => this.setState({ email })} - onSubmitEditing={() => { this.passwordInput.focus(); }} + onSubmitEditing={() => { + this.passwordInput.focus(); + }} testID='register-view-email' theme={theme} /> <TextInput label={I18n.t('Password')} containerStyle={styles.inputContainer} - inputRef={(e) => { this.passwordInput = e; }} + inputRef={e => { + this.passwordInput = e; + }} placeholder={I18n.t('Password')} returnKeyType='send' secureTextEntry @@ -294,31 +302,32 @@ class RegisterView extends React.Component { <View style={styles.bottomContainer}> <Text style={[styles.bottomContainerText, { color: themes[theme].auxiliaryText }]}> - {`${ I18n.t('Onboarding_agree_terms') }\n`} + {`${I18n.t('Onboarding_agree_terms')}\n`} <Text style={[styles.bottomContainerTextBold, { color: themes[theme].actionTintColor }]} - onPress={() => this.openContract('terms-of-service')} - >{I18n.t('Terms_of_Service')} - </Text> {I18n.t('and')} + onPress={() => this.openContract('terms-of-service')}> + {I18n.t('Terms_of_Service')} + </Text>{' '} + {I18n.t('and')} <Text style={[styles.bottomContainerTextBold, { color: themes[theme].actionTintColor }]} - onPress={() => this.openContract('privacy-policy')} - > {I18n.t('Privacy_Policy')} + onPress={() => this.openContract('privacy-policy')}> + {' '} + {I18n.t('Privacy_Policy')} </Text> </Text> </View> - {showLoginButton - ? ( - <View style={styles.bottomContainer}> - <Text style={[styles.bottomContainerText, { color: themes[theme].auxiliaryText }]}>{I18n.t('Do_you_have_an_account')}</Text> - <Text - style={[styles.bottomContainerTextBold, { color: themes[theme].actionTintColor }]} - onPress={this.login} - >{I18n.t('Login')} - </Text> - </View> - ) : null} + {showLoginButton ? ( + <View style={styles.bottomContainer}> + <Text style={[styles.bottomContainerText, { color: themes[theme].auxiliaryText }]}> + {I18n.t('Do_you_have_an_account')} + </Text> + <Text style={[styles.bottomContainerTextBold, { color: themes[theme].actionTintColor }]} onPress={this.login}> + {I18n.t('Login')} + </Text> + </View> + ) : null} </FormContainerInner> </FormContainer> ); diff --git a/app/views/RoomActionsView/index.js b/app/views/RoomActionsView/index.js index d7f1f74b9f..8bb0175c4f 100644 --- a/app/views/RoomActionsView/index.js +++ b/app/views/RoomActionsView/index.js @@ -1,8 +1,6 @@ import React from 'react'; import PropTypes from 'prop-types'; -import { - Share, Switch, Text, View -} from 'react-native'; +import { Share, Switch, Text, View } from 'react-native'; import { connect } from 'react-redux'; import isEmpty from 'lodash/isEmpty'; import { Q } from '@nozbe/watermelondb'; @@ -10,9 +8,7 @@ import { Q } from '@nozbe/watermelondb'; import { compareServerVersion, methods } from '../../lib/utils'; import Touch from '../../utils/touch'; import { setLoading as setLoadingAction } from '../../actions/selectedUsers'; -import { - closeRoom as closeRoomAction, leaveRoom as leaveRoomAction -} from '../../actions/room'; +import { closeRoom as closeRoomAction, leaveRoom as leaveRoomAction } from '../../actions/room'; import sharedStyles from '../Styles'; import Avatar from '../../containers/Avatar'; import Status from '../../containers/Status'; @@ -43,7 +39,7 @@ class RoomActionsView extends React.Component { options.headerLeft = () => <HeaderButton.CloseModal navigation={navigation} testID='room-actions-view-close' />; } return options; - } + }; static propTypes = { navigation: PropTypes.object, @@ -69,7 +65,7 @@ class RoomActionsView extends React.Component { createTeamPermission: PropTypes.array, addTeamChannelPermission: PropTypes.array, convertTeamPermission: PropTypes.array - } + }; constructor(props) { super(props); @@ -97,14 +93,13 @@ class RoomActionsView extends React.Component { }; if (room && room.observe && room.rid) { this.roomObservable = room.observe(); - this.subscription = this.roomObservable - .subscribe((changes) => { - if (this.mounted) { - this.setState({ room: changes }); - } else { - this.state.room = changes; - } - }); + this.subscription = this.roomObservable.subscribe(changes => { + if (this.mounted) { + this.setState({ room: changes }); + } else { + this.state.room = changes; + } + }); } } @@ -147,7 +142,15 @@ class RoomActionsView extends React.Component { const canConvertTeam = await this.canConvertTeam(); this.setState({ - canAutoTranslate, canAddUser, canInviteUser, canEdit, canToggleEncryption, canViewMembers, canCreateTeam, canAddChannelToTeam, canConvertTeam + canAutoTranslate, + canAddUser, + canInviteUser, + canEdit, + canToggleEncryption, + canViewMembers, + canCreateTeam, + canAddChannelToTeam, + canConvertTeam }); // livechat permissions @@ -170,26 +173,29 @@ class RoomActionsView extends React.Component { return room.t === 'l' && room.status === 'queued'; } - onPressTouchable = (item) => { + onPressTouchable = item => { const { route, event, params } = item; if (route) { - logEvent(events[`RA_GO_${ route.replace('View', '').toUpperCase() }${ params.name ? params.name.toUpperCase() : '' }`]); + logEvent(events[`RA_GO_${route.replace('View', '').toUpperCase()}${params.name ? params.name.toUpperCase() : ''}`]); const { navigation } = this.props; navigation.navigate(route, params); } if (event) { return event(); } - } + }; - canAddUser = async() => { + canAddUser = async () => { const { room, joined } = this.state; const { addUserToJoinedRoomPermission, addUserToAnyCRoomPermission, addUserToAnyPRoomPermission } = this.props; const { rid, t } = room; let canAddUser = false; const userInRoom = joined; - const permissions = await RocketChat.hasPermission([addUserToJoinedRoomPermission, addUserToAnyCRoomPermission, addUserToAnyPRoomPermission], rid); + const permissions = await RocketChat.hasPermission( + [addUserToJoinedRoomPermission, addUserToAnyCRoomPermission, addUserToAnyPRoomPermission], + rid + ); if (userInRoom && permissions[0]) { canAddUser = true; @@ -201,9 +207,9 @@ class RoomActionsView extends React.Component { canAddUser = true; } return canAddUser; - } + }; - canInviteUser = async() => { + canInviteUser = async () => { const { room } = this.state; const { createInviteLinksPermission } = this.props; const { rid } = room; @@ -211,9 +217,9 @@ class RoomActionsView extends React.Component { const canInviteUser = permissions[0]; return canInviteUser; - } + }; - canEdit = async() => { + canEdit = async () => { const { room } = this.state; const { editRoomPermission } = this.props; const { rid } = room; @@ -221,9 +227,9 @@ class RoomActionsView extends React.Component { const canEdit = permissions[0]; return canEdit; - } + }; - canCreateTeam = async() => { + canCreateTeam = async () => { const { room } = this.state; const { createTeamPermission } = this.props; const { rid } = room; @@ -231,9 +237,9 @@ class RoomActionsView extends React.Component { const canCreateTeam = permissions[0]; return canCreateTeam; - } + }; - canAddChannelToTeam = async() => { + canAddChannelToTeam = async () => { const { room } = this.state; const { addTeamChannelPermission } = this.props; const { rid } = room; @@ -241,9 +247,9 @@ class RoomActionsView extends React.Component { const canAddChannelToTeam = permissions[0]; return canAddChannelToTeam; - } + }; - canConvertTeam = async() => { + canConvertTeam = async () => { const { room } = this.state; const { convertTeamPermission } = this.props; const { rid } = room; @@ -251,9 +257,9 @@ class RoomActionsView extends React.Component { const canConvertTeam = permissions[0]; return canConvertTeam; - } + }; - canToggleEncryption = async() => { + canToggleEncryption = async () => { const { room } = this.state; const { toggleRoomE2EEncryptionPermission } = this.props; const { rid } = room; @@ -261,9 +267,9 @@ class RoomActionsView extends React.Component { const canToggleEncryption = permissions[0]; return canToggleEncryption; - } + }; - canViewMembers = async() => { + canViewMembers = async () => { const { room } = this.state; const { viewBroadcastMemberListPermission } = this.props; const { rid, t, broadcast } = room; @@ -278,24 +284,24 @@ class RoomActionsView extends React.Component { // We save the state to read in render const result = t === 'c' || t === 'p'; return result; - } + }; - canForwardGuest = async() => { + canForwardGuest = async () => { const { room } = this.state; const { transferLivechatGuestPermission } = this.props; const { rid } = room; const permissions = await RocketChat.hasPermission([transferLivechatGuestPermission], rid); return permissions[0]; - } + }; - canReturnQueue = async() => { + canReturnQueue = async () => { try { const { returnQueue } = await RocketChat.getRoutingConfig(); return returnQueue; } catch { // do nothing } - } + }; renderEncryptedSwitch = () => { const { room, canToggleEncryption, canEdit } = this.state; @@ -308,28 +314,27 @@ class RoomActionsView extends React.Component { hasPermission = canToggleEncryption; } return ( - <Switch - value={encrypted} - trackColor={SWITCH_TRACK_COLOR} - onValueChange={this.toggleEncrypted} - disabled={!hasPermission} - /> + <Switch value={encrypted} trackColor={SWITCH_TRACK_COLOR} onValueChange={this.toggleEncrypted} disabled={!hasPermission} /> ); - } + }; closeLivechat = () => { - const { room: { rid } } = this.state; + const { + room: { rid } + } = this.state; const { closeRoom } = this.props; closeRoom(rid); - } + }; returnLivechat = () => { - const { room: { rid } } = this.state; + const { + room: { rid } + } = this.state; showConfirmationAlert({ message: I18n.t('Would_you_like_to_return_the_inquiry'), confirmationText: I18n.t('Yes'), - onPress: async() => { + onPress: async () => { try { await RocketChat.returnLivechat(rid); } catch (e) { @@ -337,9 +342,9 @@ class RoomActionsView extends React.Component { } } }); - } + }; - updateRoomMember = async() => { + updateRoomMember = async () => { const { room } = this.state; try { @@ -354,9 +359,9 @@ class RoomActionsView extends React.Component { log(e); this.setState({ member: {} }); } - } + }; - addUser = async() => { + addUser = async () => { const { room } = this.state; const { setLoadingInvite, navigation } = this.props; const { rid } = room; @@ -369,9 +374,9 @@ class RoomActionsView extends React.Component { } finally { setLoadingInvite(false); } - } + }; - toggleBlockUser = async() => { + toggleBlockUser = async () => { logEvent(events.RA_TOGGLE_BLOCK_USER); const { room } = this.state; const { rid, blocker } = room; @@ -382,9 +387,9 @@ class RoomActionsView extends React.Component { logEvent(events.RA_TOGGLE_BLOCK_USER_F); log(e); } - } + }; - toggleEncrypted = async() => { + toggleEncrypted = async () => { logEvent(events.RA_TOGGLE_ENCRYPTED); const { room } = this.state; const { rid } = room; @@ -394,10 +399,12 @@ class RoomActionsView extends React.Component { const encrypted = !room.encrypted; try { // Instantly feedback to the user - await db.action(async() => { - await room.update(protectedFunction((r) => { - r.encrypted = encrypted; - })); + await db.action(async () => { + await room.update( + protectedFunction(r => { + r.encrypted = encrypted; + }) + ); }); try { @@ -412,16 +419,18 @@ class RoomActionsView extends React.Component { } // If something goes wrong we go back to the previous value - await db.action(async() => { - await room.update(protectedFunction((r) => { - r.encrypted = room.encrypted; - })); + await db.action(async () => { + await room.update( + protectedFunction(r => { + r.encrypted = room.encrypted; + }) + ); }); } catch (e) { logEvent(events.RA_TOGGLE_ENCRYPTED_F); log(e); } - } + }; handleShare = () => { logEvent(events.RA_SHARE); @@ -444,9 +453,9 @@ class RoomActionsView extends React.Component { confirmationText: I18n.t('Yes_action_it', { action: I18n.t('leave') }), onPress: () => leaveRoom('channel', room) }); - } + }; - convertTeamToChannel = async() => { + convertTeamToChannel = async () => { const { room } = this.state; const { navigation } = this.props; @@ -471,9 +480,9 @@ class RoomActionsView extends React.Component { } catch (e) { this.convertTeamToChannelConfirmation(); } - } + }; - handleConvertTeamToChannel = async(selected) => { + handleConvertTeamToChannel = async selected => { logEvent(events.RA_CONVERT_TEAM_TO_CHANNEL); try { const { room } = this.state; @@ -488,7 +497,7 @@ class RoomActionsView extends React.Component { logEvent(events.RA_CONVERT_TEAM_TO_CHANNEL_F); log(e); } - } + }; convertTeamToChannelConfirmation = (selected = []) => { showConfirmationAlert({ @@ -497,9 +506,9 @@ class RoomActionsView extends React.Component { confirmationText: I18n.t('Convert'), onPress: () => this.handleConvertTeamToChannel(selected) }); - } + }; - leaveTeam = async() => { + leaveTeam = async () => { const { room } = this.state; const { navigation, leaveRoom } = this.props; @@ -534,9 +543,9 @@ class RoomActionsView extends React.Component { onPress: () => leaveRoom('team', room) }); } - } + }; - handleConvertToTeam = async() => { + handleConvertToTeam = async () => { logEvent(events.RA_CONVERT_TO_TEAM); try { const { room } = this.state; @@ -550,7 +559,7 @@ class RoomActionsView extends React.Component { logEvent(events.RA_CONVERT_TO_TEAM_F); log(e); } - } + }; convertToTeam = () => { showConfirmationAlert({ @@ -559,9 +568,9 @@ class RoomActionsView extends React.Component { confirmationText: I18n.t('Convert'), onPress: () => this.handleConvertToTeam() }); - } + }; - handleMoveToTeam = async(selected) => { + handleMoveToTeam = async selected => { logEvent(events.RA_MOVE_TO_TEAM); try { const { room } = this.state; @@ -575,16 +584,14 @@ class RoomActionsView extends React.Component { log(e); showErrorAlert(I18n.t('There_was_an_error_while_action', { action: I18n.t('moving_channel_to_team') })); } - } + }; - moveToTeam = async() => { + moveToTeam = async () => { try { const { navigation } = this.props; const db = database.active; const subCollection = db.get('subscriptions'); - const teamRooms = await subCollection.query( - Q.where('team_main', true) - ); + const teamRooms = await subCollection.query(Q.where('team_main', true)); if (teamRooms.length) { const data = teamRooms.map(team => ({ @@ -602,12 +609,13 @@ class RoomActionsView extends React.Component { isRadio: true, isSearch: true, onSearch: onChangeText => this.searchTeam(onChangeText), - nextAction: selected => showConfirmationAlert({ - title: I18n.t('Confirmation'), - message: I18n.t('Move_to_Team_Warning'), - confirmationText: I18n.t('Yes_action_it', { action: I18n.t('move') }), - onPress: () => this.handleMoveToTeam(selected) - }) + nextAction: selected => + showConfirmationAlert({ + title: I18n.t('Confirmation'), + message: I18n.t('Move_to_Team_Warning'), + confirmationText: I18n.t('Yes_action_it', { action: I18n.t('move') }), + onPress: () => this.handleMoveToTeam(selected) + }) }); } }); @@ -615,9 +623,9 @@ class RoomActionsView extends React.Component { } catch (e) { log(e); } - } + }; - searchTeam = async(onChangeText) => { + searchTeam = async onChangeText => { logEvent(events.RA_SEARCH_TEAM); try { const { addTeamChannelPermission, createTeamPermission } = this.props; @@ -627,19 +635,21 @@ class RoomActionsView extends React.Component { .get('subscriptions') .query( Q.where('team_main', true), - Q.where('name', Q.like(`%${ onChangeText }%`)), + Q.where('name', Q.like(`%${onChangeText}%`)), Q.experimentalTake(QUERY_SIZE), Q.experimentalSortBy('room_updated_at', Q.desc) ); - const asyncFilter = async(teamArray) => { - const results = await Promise.all(teamArray.map(async(team) => { - const permissions = await RocketChat.hasPermission([addTeamChannelPermission, createTeamPermission], team.rid); - if (!permissions[0]) { - return false; - } - return true; - })); + const asyncFilter = async teamArray => { + const results = await Promise.all( + teamArray.map(async team => { + const permissions = await RocketChat.hasPermission([addTeamChannelPermission, createTeamPermission], team.rid); + if (!permissions[0]) { + return false; + } + return true; + }) + ); return teamArray.filter((_v, index) => results[index]); }; @@ -648,13 +658,11 @@ class RoomActionsView extends React.Component { } catch (e) { log(e); } - } + }; renderRoomInfo = () => { const { room, member } = this.state; - const { - rid, name, t, topic - } = room; + const { rid, name, t, topic } = room; const { theme, fontScale } = this.props; const avatar = RocketChat.getRoomAvatar(room); @@ -664,54 +672,61 @@ class RoomActionsView extends React.Component { <List.Section> <List.Separator /> <Touch - onPress={() => this.onPressTouchable({ - route: 'RoomInfoView', - // forward room only if room isn't joined - params: { - rid, t, room, member - } - })} + onPress={() => + this.onPressTouchable({ + route: 'RoomInfoView', + // forward room only if room isn't joined + params: { + rid, + t, + room, + member + } + }) + } style={{ backgroundColor: themes[theme].backgroundColor }} accessibilityLabel={I18n.t('Room_Info')} accessibilityTraits='button' enabled={!isGroupChat} testID='room-actions-info' - theme={theme} - > + theme={theme}> <View style={[styles.roomInfoContainer, { height: 72 * fontScale }]}> - <Avatar - text={avatar} - style={styles.avatar} - size={50 * fontScale} - type={t} - rid={rid} - > - {t === 'd' && member._id - ? ( - <View style={[sharedStyles.status, { backgroundColor: themes[theme].backgroundColor }]}> - <Status size={16} id={member._id} /> - </View> - ) : null - } + <Avatar text={avatar} style={styles.avatar} size={50 * fontScale} type={t} rid={rid}> + {t === 'd' && member._id ? ( + <View style={[sharedStyles.status, { backgroundColor: themes[theme].backgroundColor }]}> + <Status size={16} id={member._id} /> + </View> + ) : null} </Avatar> <View style={styles.roomTitleContainer}> - {room.t === 'd' - ? <Text style={[styles.roomTitle, { color: themes[theme].titleText }]} numberOfLines={1}>{room.fname}</Text> - : ( - <View style={styles.roomTitleRow}> - <RoomTypeIcon type={room.prid ? 'discussion' : room.t} teamMain={room.teamMain} status={room.visitor?.status} /> - <Text style={[styles.roomTitle, { color: themes[theme].titleText }]} numberOfLines={1}>{RocketChat.getRoomTitle(room)}</Text> - </View> - ) - } + {room.t === 'd' ? ( + <Text style={[styles.roomTitle, { color: themes[theme].titleText }]} numberOfLines={1}> + {room.fname} + </Text> + ) : ( + <View style={styles.roomTitleRow}> + <RoomTypeIcon type={room.prid ? 'discussion' : room.t} teamMain={room.teamMain} status={room.visitor?.status} /> + <Text style={[styles.roomTitle, { color: themes[theme].titleText }]} numberOfLines={1}> + {RocketChat.getRoomTitle(room)} + </Text> + </View> + )} <Markdown preview - msg={t === 'd' ? `@${ name }` : topic} + msg={t === 'd' ? `@${name}` : topic} style={[styles.roomDescription, { color: themes[theme].auxiliaryText }]} numberOfLines={1} theme={theme} /> - {room.t === 'd' && <Markdown msg={member.statusText} style={[styles.roomDescription, { color: themes[theme].auxiliaryText }]} preview theme={theme} numberOfLines={1} />} + {room.t === 'd' && ( + <Markdown + msg={member.statusText} + style={[styles.roomDescription, { color: themes[theme].auxiliaryText }]} + preview + theme={theme} + numberOfLines={1} + /> + )} </View> {isGroupChat ? null : <List.Icon name='chevron-right' style={styles.actionIndicator} />} </View> @@ -719,7 +734,7 @@ class RoomActionsView extends React.Component { <List.Separator /> </List.Section> ); - } + }; renderJitsi = () => { const { room } = this.state; @@ -753,7 +768,7 @@ class RoomActionsView extends React.Component { <List.Separator /> </List.Section> ); - } + }; renderE2EEncryption = () => { const { room } = this.state; @@ -776,7 +791,7 @@ class RoomActionsView extends React.Component { ); } return null; - } + }; renderLastSection = () => { const { room, joined } = this.state; @@ -792,10 +807,12 @@ class RoomActionsView extends React.Component { <List.Section> <List.Separator /> <List.Item - title={`${ blocker ? 'Unblock' : 'Block' }_user`} - onPress={() => this.onPressTouchable({ - event: this.toggleBlockUser - })} + title={`${blocker ? 'Unblock' : 'Block'}_user`} + onPress={() => + this.onPressTouchable({ + event: this.toggleBlockUser + }) + } testID='room-actions-block-user' left={() => <List.Icon name='ignore' color={themes[theme].dangerColor} />} showActionIndicator @@ -812,9 +829,11 @@ class RoomActionsView extends React.Component { <List.Separator /> <List.Item title='Leave' - onPress={() => this.onPressTouchable({ - event: room.teamMain ? this.leaveTeam : this.leaveChannel - })} + onPress={() => + this.onPressTouchable({ + event: room.teamMain ? this.leaveTeam : this.leaveChannel + }) + } testID='room-actions-leave-channel' left={() => <List.Icon name='logout' color={themes[theme].dangerColor} />} showActionIndicator @@ -826,7 +845,7 @@ class RoomActionsView extends React.Component { } return null; - } + }; teamChannelActions = (t, room) => { const { canEdit, canCreateTeam, canAddChannelToTeam } = this.state; @@ -835,42 +854,42 @@ class RoomActionsView extends React.Component { return ( <> - {['c', 'p'].includes(t) && canConvertToTeam - ? ( - <> - <List.Item - title='Convert_to_Team' - onPress={() => this.onPressTouchable({ + {['c', 'p'].includes(t) && canConvertToTeam ? ( + <> + <List.Item + title='Convert_to_Team' + onPress={() => + this.onPressTouchable({ event: this.convertToTeam - })} - testID='room-actions-convert-to-team' - left={() => <List.Icon name='teams' />} - showActionIndicator - /> - <List.Separator /> - </> - ) - : null} - - {['c', 'p'].includes(t) && canMoveToTeam - ? ( - <> - <List.Item - title='Move_to_Team' - onPress={() => this.onPressTouchable({ + }) + } + testID='room-actions-convert-to-team' + left={() => <List.Icon name='teams' />} + showActionIndicator + /> + <List.Separator /> + </> + ) : null} + + {['c', 'p'].includes(t) && canMoveToTeam ? ( + <> + <List.Item + title='Move_to_Team' + onPress={() => + this.onPressTouchable({ event: this.moveToTeam - })} - testID='room-actions-move-to-team' - left={() => <List.Icon name='channel-move-to-team' />} - showActionIndicator - /> - <List.Separator /> - </> - ) - : null} + }) + } + testID='room-actions-move-to-team' + left={() => <List.Icon name='channel-move-to-team' />} + showActionIndicator + /> + <List.Separator /> + </> + ) : null} </> ); - } + }; teamToChannelActions = (t, room) => { const { canEdit, canConvertTeam } = this.state; @@ -878,33 +897,39 @@ class RoomActionsView extends React.Component { return ( <> - {['c', 'p'].includes(t) && canConvertTeamToChannel - ? ( - <> - <List.Item - title='Convert_to_Channel' - onPress={() => this.onPressTouchable({ + {['c', 'p'].includes(t) && canConvertTeamToChannel ? ( + <> + <List.Item + title='Convert_to_Channel' + onPress={() => + this.onPressTouchable({ event: this.convertTeamToChannel - })} - testID='room-actions-convert-channel-to-team' - left={() => <List.Icon name='channel-public' />} - showActionIndicator - /> - <List.Separator /> - </> - ) - : null} + }) + } + testID='room-actions-convert-channel-to-team' + left={() => <List.Icon name='channel-public' />} + showActionIndicator + /> + <List.Separator /> + </> + ) : null} </> ); - } + }; render() { const { - room, membersCount, canViewMembers, canAddUser, canInviteUser, joined, canAutoTranslate, canForwardGuest, canReturnQueue + room, + membersCount, + canViewMembers, + canAddUser, + canInviteUser, + joined, + canAutoTranslate, + canForwardGuest, + canReturnQueue } = this.state; - const { - rid, t - } = room; + const { rid, t } = room; const isGroupChat = RocketChat.isGroupChat(room); return ( @@ -917,257 +942,254 @@ class RoomActionsView extends React.Component { <List.Section> <List.Separator /> - {(['c', 'p'].includes(t) && canViewMembers) || isGroupChat - ? ( - <> - <List.Item - title='Members' - subtitle={membersCount > 0 ? `${ membersCount } ${ I18n.t('members') }` : null} - onPress={() => this.onPressTouchable({ route: 'RoomMembersView', params: { rid, room } })} - testID='room-actions-members' - left={() => <List.Icon name='team' />} - showActionIndicator - translateSubtitle={false} - /> - <List.Separator /> - </> - ) - : null} - - {['c', 'p'].includes(t) && canAddUser - ? ( - <> - <List.Item - title='Add_users' - onPress={() => this.onPressTouchable({ + {(['c', 'p'].includes(t) && canViewMembers) || isGroupChat ? ( + <> + <List.Item + title='Members' + subtitle={membersCount > 0 ? `${membersCount} ${I18n.t('members')}` : null} + onPress={() => this.onPressTouchable({ route: 'RoomMembersView', params: { rid, room } })} + testID='room-actions-members' + left={() => <List.Icon name='team' />} + showActionIndicator + translateSubtitle={false} + /> + <List.Separator /> + </> + ) : null} + + {['c', 'p'].includes(t) && canAddUser ? ( + <> + <List.Item + title='Add_users' + onPress={() => + this.onPressTouchable({ route: 'SelectedUsersView', params: { rid, title: I18n.t('Add_users'), nextAction: this.addUser } - })} - testID='room-actions-add-user' - left={() => <List.Icon name='add' />} - showActionIndicator - /> - <List.Separator /> - </> - ) - : null} - - {['c', 'p'].includes(t) && canInviteUser - ? ( - <> - <List.Item - title='Invite_users' - onPress={() => this.onPressTouchable({ + }) + } + testID='room-actions-add-user' + left={() => <List.Icon name='add' />} + showActionIndicator + /> + <List.Separator /> + </> + ) : null} + + {['c', 'p'].includes(t) && canInviteUser ? ( + <> + <List.Item + title='Invite_users' + onPress={() => + this.onPressTouchable({ route: 'InviteUsersView', params: { rid } - })} - testID='room-actions-invite-user' - left={() => <List.Icon name='user-add' />} - showActionIndicator - /> - <List.Separator /> - </> - ) - : null} - - {['c', 'p', 'd'].includes(t) - ? ( - <> - <List.Item - title='Files' - onPress={() => this.onPressTouchable({ + }) + } + testID='room-actions-invite-user' + left={() => <List.Icon name='user-add' />} + showActionIndicator + /> + <List.Separator /> + </> + ) : null} + + {['c', 'p', 'd'].includes(t) ? ( + <> + <List.Item + title='Files' + onPress={() => + this.onPressTouchable({ route: 'MessagesView', params: { rid, t, name: 'Files' } - })} - testID='room-actions-files' - left={() => <List.Icon name='attach' />} - showActionIndicator - /> - <List.Separator /> - </> - ) - : null} - - {['c', 'p', 'd'].includes(t) - ? ( - <> - <List.Item - title='Mentions' - onPress={() => this.onPressTouchable({ + }) + } + testID='room-actions-files' + left={() => <List.Icon name='attach' />} + showActionIndicator + /> + <List.Separator /> + </> + ) : null} + + {['c', 'p', 'd'].includes(t) ? ( + <> + <List.Item + title='Mentions' + onPress={() => + this.onPressTouchable({ route: 'MessagesView', params: { rid, t, name: 'Mentions' } - })} - testID='room-actions-mentioned' - left={() => <List.Icon name='mention' />} - showActionIndicator - /> - <List.Separator /> - </> - ) - : null} - - {['c', 'p', 'd'].includes(t) - ? ( - <> - <List.Item - title='Starred' - onPress={() => this.onPressTouchable({ + }) + } + testID='room-actions-mentioned' + left={() => <List.Icon name='mention' />} + showActionIndicator + /> + <List.Separator /> + </> + ) : null} + + {['c', 'p', 'd'].includes(t) ? ( + <> + <List.Item + title='Starred' + onPress={() => + this.onPressTouchable({ route: 'MessagesView', params: { rid, t, name: 'Starred' } - })} - testID='room-actions-starred' - left={() => <List.Icon name='star' />} - showActionIndicator - /> - <List.Separator /> - </> - ) - : null} - - {['c', 'p', 'd'].includes(t) - ? ( - <> - <List.Item - title='Share' - onPress={() => this.onPressTouchable({ + }) + } + testID='room-actions-starred' + left={() => <List.Icon name='star' />} + showActionIndicator + /> + <List.Separator /> + </> + ) : null} + + {['c', 'p', 'd'].includes(t) ? ( + <> + <List.Item + title='Share' + onPress={() => + this.onPressTouchable({ event: this.handleShare - })} - testID='room-actions-share' - left={() => <List.Icon name='share' />} - showActionIndicator - /> - <List.Separator /> - </> - ) - : null} - - {['c', 'p', 'd'].includes(t) - ? ( - <> - <List.Item - title='Pinned' - onPress={() => this.onPressTouchable({ + }) + } + testID='room-actions-share' + left={() => <List.Icon name='share' />} + showActionIndicator + /> + <List.Separator /> + </> + ) : null} + + {['c', 'p', 'd'].includes(t) ? ( + <> + <List.Item + title='Pinned' + onPress={() => + this.onPressTouchable({ route: 'MessagesView', params: { rid, t, name: 'Pinned' } - })} - testID='room-actions-pinned' - left={() => <List.Icon name='pin' />} - showActionIndicator - /> - <List.Separator /> - </> - ) - : null} - - {['c', 'p', 'd'].includes(t) && canAutoTranslate - ? ( - <> - <List.Item - title='Auto_Translate' - onPress={() => this.onPressTouchable({ + }) + } + testID='room-actions-pinned' + left={() => <List.Icon name='pin' />} + showActionIndicator + /> + <List.Separator /> + </> + ) : null} + + {['c', 'p', 'd'].includes(t) && canAutoTranslate ? ( + <> + <List.Item + title='Auto_Translate' + onPress={() => + this.onPressTouchable({ route: 'AutoTranslateView', params: { rid, room } - })} - testID='room-actions-auto-translate' - left={() => <List.Icon name='language' />} - showActionIndicator - /> - <List.Separator /> - </> - ) - : null} - - {['c', 'p', 'd'].includes(t) && joined - ? ( - <> - <List.Item - title='Notifications' - onPress={() => this.onPressTouchable({ + }) + } + testID='room-actions-auto-translate' + left={() => <List.Icon name='language' />} + showActionIndicator + /> + <List.Separator /> + </> + ) : null} + + {['c', 'p', 'd'].includes(t) && joined ? ( + <> + <List.Item + title='Notifications' + onPress={() => + this.onPressTouchable({ route: 'NotificationPrefView', params: { rid, room } - })} - testID='room-actions-notifications' - left={() => <List.Icon name='notification' />} - showActionIndicator - /> - <List.Separator /> - </> - ) - : null} - - - { this.teamChannelActions(t, room) } + }) + } + testID='room-actions-notifications' + left={() => <List.Icon name='notification' />} + showActionIndicator + /> + <List.Separator /> + </> + ) : null} + + {this.teamChannelActions(t, room)} {this.teamToChannelActions(t, room)} - {['l'].includes(t) && !this.isOmnichannelPreview - ? ( - <> - <List.Item - title='Close' - onPress={() => this.onPressTouchable({ + {['l'].includes(t) && !this.isOmnichannelPreview ? ( + <> + <List.Item + title='Close' + onPress={() => + this.onPressTouchable({ event: this.closeLivechat - })} - left={() => <List.Icon name='close' />} - showActionIndicator - /> - <List.Separator /> - </> - ) - : null} - - {['l'].includes(t) && !this.isOmnichannelPreview && canForwardGuest - ? ( - <> - <List.Item - title='Forward' - onPress={() => this.onPressTouchable({ + }) + } + left={() => <List.Icon name='close' />} + showActionIndicator + /> + <List.Separator /> + </> + ) : null} + + {['l'].includes(t) && !this.isOmnichannelPreview && canForwardGuest ? ( + <> + <List.Item + title='Forward' + onPress={() => + this.onPressTouchable({ route: 'ForwardLivechatView', params: { rid } - })} - left={() => <List.Icon name='user-forward' />} - showActionIndicator - /> - <List.Separator /> - </> - ) - : null} - - {['l'].includes(t) && !this.isOmnichannelPreview && canReturnQueue - ? ( - <> - <List.Item - title='Return' - onPress={() => this.onPressTouchable({ + }) + } + left={() => <List.Icon name='user-forward' />} + showActionIndicator + /> + <List.Separator /> + </> + ) : null} + + {['l'].includes(t) && !this.isOmnichannelPreview && canReturnQueue ? ( + <> + <List.Item + title='Return' + onPress={() => + this.onPressTouchable({ event: this.returnLivechat - })} - left={() => <List.Icon name='undo' />} - showActionIndicator - /> - <List.Separator /> - </> - ) - : null} - - {['l'].includes(t) && !this.isOmnichannelPreview - ? ( - <> - <List.Item - title='Navigation_history' - onPress={() => this.onPressTouchable({ + }) + } + left={() => <List.Icon name='undo' />} + showActionIndicator + /> + <List.Separator /> + </> + ) : null} + + {['l'].includes(t) && !this.isOmnichannelPreview ? ( + <> + <List.Item + title='Navigation_history' + onPress={() => + this.onPressTouchable({ route: 'VisitorNavigationView', params: { rid } - })} - left={() => <List.Icon name='history' />} - showActionIndicator - /> - <List.Separator /> - </> - ) - : null} + }) + } + left={() => <List.Icon name='history' />} + showActionIndicator + /> + <List.Separator /> + </> + ) : null} </List.Section> {this.renderLastSection()} diff --git a/app/views/RoomActionsView/styles.js b/app/views/RoomActionsView/styles.js index 1e8f0b1fdf..a3bfcb2b53 100644 --- a/app/views/RoomActionsView/styles.js +++ b/app/views/RoomActionsView/styles.js @@ -29,8 +29,6 @@ export default StyleSheet.create({ alignItems: 'center' }, actionIndicator: { - ...I18nManager.isRTL - ? { transform: [{ rotate: '180deg' }] } - : {} + ...(I18nManager.isRTL ? { transform: [{ rotate: '180deg' }] } : {}) } }); diff --git a/app/views/RoomInfoEditView/SwitchContainer.js b/app/views/RoomInfoEditView/SwitchContainer.js index e26f8881ce..c57f092e44 100644 --- a/app/views/RoomInfoEditView/SwitchContainer.js +++ b/app/views/RoomInfoEditView/SwitchContainer.js @@ -5,36 +5,57 @@ import PropTypes from 'prop-types'; import { SWITCH_TRACK_COLOR, themes } from '../../constants/colors'; import styles from './styles'; -const SwitchContainer = React.memo(({ - children, value, disabled, onValueChange, leftLabelPrimary, leftLabelSecondary, rightLabelPrimary, rightLabelSecondary, theme, testID, labelContainerStyle, leftLabelStyle -}) => ( - <> - <View key='switch-container' style={[styles.switchContainer, children && styles.switchMargin]}> - {leftLabelPrimary && ( - <View style={[styles.switchLabelContainer, labelContainerStyle]}> - <Text style={[styles.switchLabelPrimary, { color: themes[theme].titleText }, leftLabelStyle]}>{leftLabelPrimary}</Text> - <Text style={[styles.switchLabelSecondary, { color: themes[theme].titleText }, leftLabelStyle]}>{leftLabelSecondary}</Text> - </View> - )} - <Switch - style={styles.switch} - onValueChange={onValueChange} - value={value} - disabled={disabled} - trackColor={SWITCH_TRACK_COLOR} - testID={testID} - /> - {rightLabelPrimary && ( - <View style={[styles.switchLabelContainer, labelContainerStyle]}> - <Text style={[styles.switchLabelPrimary, { color: themes[theme].titleText }, leftLabelStyle]}>{rightLabelPrimary}</Text> - <Text style={[styles.switchLabelSecondary, { color: themes[theme].titleText }, leftLabelStyle]}>{rightLabelSecondary}</Text> - </View> - )} - </View> - {children} - <View key='switch-divider' style={[styles.divider, { borderColor: themes[theme].separatorColor }]} /> - </> -)); +const SwitchContainer = React.memo( + ({ + children, + value, + disabled, + onValueChange, + leftLabelPrimary, + leftLabelSecondary, + rightLabelPrimary, + rightLabelSecondary, + theme, + testID, + labelContainerStyle, + leftLabelStyle + }) => ( + <> + <View key='switch-container' style={[styles.switchContainer, children && styles.switchMargin]}> + {leftLabelPrimary && ( + <View style={[styles.switchLabelContainer, labelContainerStyle]}> + <Text style={[styles.switchLabelPrimary, { color: themes[theme].titleText }, leftLabelStyle]}> + {leftLabelPrimary} + </Text> + <Text style={[styles.switchLabelSecondary, { color: themes[theme].titleText }, leftLabelStyle]}> + {leftLabelSecondary} + </Text> + </View> + )} + <Switch + style={styles.switch} + onValueChange={onValueChange} + value={value} + disabled={disabled} + trackColor={SWITCH_TRACK_COLOR} + testID={testID} + /> + {rightLabelPrimary && ( + <View style={[styles.switchLabelContainer, labelContainerStyle]}> + <Text style={[styles.switchLabelPrimary, { color: themes[theme].titleText }, leftLabelStyle]}> + {rightLabelPrimary} + </Text> + <Text style={[styles.switchLabelSecondary, { color: themes[theme].titleText }, leftLabelStyle]}> + {rightLabelSecondary} + </Text> + </View> + )} + </View> + {children} + <View key='switch-divider' style={[styles.divider, { borderColor: themes[theme].separatorColor }]} /> + </> + ) +); SwitchContainer.propTypes = { value: PropTypes.bool, diff --git a/app/views/RoomInfoEditView/index.js b/app/views/RoomInfoEditView/index.js index 2ca8cd0db7..177573c8fb 100644 --- a/app/views/RoomInfoEditView/index.js +++ b/app/views/RoomInfoEditView/index.js @@ -1,8 +1,6 @@ import React from 'react'; import PropTypes from 'prop-types'; -import { - Alert, Keyboard, ScrollView, Text, TouchableOpacity, View -} from 'react-native'; +import { Alert, Keyboard, ScrollView, Text, TouchableOpacity, View } from 'react-native'; import { connect } from 'react-redux'; import { BLOCK_CONTEXT } from '@rocket.chat/ui-kit'; import ImagePicker from 'react-native-image-crop-picker'; @@ -47,7 +45,7 @@ const PERMISSION_DELETE_TEAM = 'delete-team'; class RoomInfoEditView extends React.Component { static navigationOptions = () => ({ title: I18n.t('Room_Info_Edit') - }) + }); static propTypes = { navigation: PropTypes.object, @@ -97,7 +95,7 @@ class RoomInfoEditView extends React.Component { } // eslint-disable-next-line react/sort-comp - loadRoom = async() => { + loadRoom = async () => { const { route, setReadOnlyPermission, @@ -117,20 +115,23 @@ class RoomInfoEditView extends React.Component { const sub = await db.get('subscriptions').find(rid); const observable = sub.observe(); - this.querySubscription = observable.subscribe((data) => { + this.querySubscription = observable.subscribe(data => { this.room = data; this.init(this.room); }); - const result = await RocketChat.hasPermission([ - setReadOnlyPermission, - setReactWhenReadOnlyPermission, - archiveRoomPermission, - unarchiveRoomPermission, - deleteCPermission, - deletePPermission, - ...this.room.teamMain ? [deleteTeamPermission] : [] - ], rid); + const result = await RocketChat.hasPermission( + [ + setReadOnlyPermission, + setReactWhenReadOnlyPermission, + archiveRoomPermission, + unarchiveRoomPermission, + deleteCPermission, + deletePPermission, + ...(this.room.teamMain ? [deleteTeamPermission] : []) + ], + rid + ); this.setState({ permissions: { @@ -140,18 +141,16 @@ class RoomInfoEditView extends React.Component { [PERMISSION_UNARCHIVE]: result[3], [PERMISSION_DELETE_C]: result[4], [PERMISSION_DELETE_P]: result[5], - ...this.room.teamMain && { [PERMISSION_DELETE_TEAM]: result[6] } + ...(this.room.teamMain && { [PERMISSION_DELETE_TEAM]: result[6] }) } }); } catch (e) { log(e); } - } + }; - init = (room) => { - const { - description, topic, announcement, t, ro, reactWhenReadOnly, joinCodeRequired, sysMes, encrypted - } = room; + init = room => { + const { description, topic, announcement, t, ro, reactWhenReadOnly, joinCodeRequired, sysMes, encrypted } = room; // fake password just to user knows about it this.randomValue = random(15); this.setState({ @@ -170,45 +169,69 @@ class RoomInfoEditView extends React.Component { enableSysMes: sysMes && sysMes.length > 0, encrypted }); - } + }; clearErrors = () => { this.setState({ nameError: {} }); - } + }; reset = () => { logEvent(events.RI_EDIT_RESET); this.clearErrors(); this.init(this.room); - } + }; formIsChanged = () => { const { - room, name, description, topic, announcement, t, ro, reactWhenReadOnly, joinCode, systemMessages, enableSysMes, encrypted, avatar + room, + name, + description, + topic, + announcement, + t, + ro, + reactWhenReadOnly, + joinCode, + systemMessages, + enableSysMes, + encrypted, + avatar } = this.state; const { joinCodeRequired } = room; - return !(room.name === name - && room.description === description - && room.topic === topic - && room.announcement === announcement - && (joinCodeRequired ? this.randomValue : '') === joinCode - && room.t === 'p' === t - && room.ro === ro - && room.reactWhenReadOnly === reactWhenReadOnly - && dequal(room.sysMes, systemMessages) - && enableSysMes === (room.sysMes && room.sysMes.length > 0) - && room.encrypted === encrypted - && isEmpty(avatar) + return !( + room.name === name && + room.description === description && + room.topic === topic && + room.announcement === announcement && + (joinCodeRequired ? this.randomValue : '') === joinCode && + (room.t === 'p') === t && + room.ro === ro && + room.reactWhenReadOnly === reactWhenReadOnly && + dequal(room.sysMes, systemMessages) && + enableSysMes === (room.sysMes && room.sysMes.length > 0) && + room.encrypted === encrypted && + isEmpty(avatar) ); - } + }; - submit = async() => { + submit = async () => { logEvent(events.RI_EDIT_SAVE); Keyboard.dismiss(); const { - room, name, description, topic, announcement, t, ro, reactWhenReadOnly, joinCode, systemMessages, encrypted, avatar + room, + name, + description, + topic, + announcement, + t, + ro, + reactWhenReadOnly, + joinCode, + systemMessages, + encrypted, + avatar } = this.state; this.setState({ saving: true }); @@ -290,31 +313,26 @@ class RoomInfoEditView extends React.Component { EventEmitter.emit(LISTENER, { message: I18n.t('Settings_succesfully_changed') }); } }, 100); - } + }; - deleteTeam = async() => { + deleteTeam = async () => { const { room } = this.state; - const { - navigation, deleteCPermission, deletePPermission, deleteRoom - } = this.props; + const { navigation, deleteCPermission, deletePPermission, deleteRoom } = this.props; try { const db = database.active; const subCollection = db.get('subscriptions'); - const teamChannels = await subCollection.query( - Q.where('team_id', room.teamId), - Q.where('team_main', Q.notEq(true)) - ); + const teamChannels = await subCollection.query(Q.where('team_id', room.teamId), Q.where('team_main', Q.notEq(true))); const teamChannelOwner = []; for (let i = 0; i < teamChannels.length; i += 1) { const permissionType = teamChannels[i].t === 'c' ? deleteCPermission : deletePPermission; // eslint-disable-next-line no-await-in-loop - const permissions = await RocketChat.hasPermission([ - permissionType - ], teamChannels[i].rid); + const permissions = await RocketChat.hasPermission([permissionType], teamChannels[i].rid); - if (permissions[0]) { teamChannelOwner.push(teamChannels[i]); } + if (permissions[0]) { + teamChannelOwner.push(teamChannels[i]); + } } if (teamChannelOwner.length) { @@ -322,7 +340,7 @@ class RoomInfoEditView extends React.Component { title: 'Delete_Team', data: teamChannelOwner, infoText: 'Select_channels_to_delete', - nextAction: (selected) => { + nextAction: selected => { showConfirmationAlert({ message: I18n.t('You_are_deleting_the_team', { team: RocketChat.getRoomTitle(room) }), confirmationText: I18n.t('Yes_action_it', { action: I18n.t('delete') }), @@ -340,13 +358,11 @@ class RoomInfoEditView extends React.Component { } catch (e) { log(e); showErrorAlert( - e.data.error - ? I18n.t(e.data.error) - : I18n.t('There_was_an_error_while_action', { action: I18n.t('deleting_team') }), + e.data.error ? I18n.t(e.data.error) : I18n.t('There_was_an_error_while_action', { action: I18n.t('deleting_team') }), I18n.t('Cannot_delete') ); } - } + }; delete = () => { const { room } = this.state; @@ -368,13 +384,13 @@ class RoomInfoEditView extends React.Component { ], { cancelable: false } ); - } + }; toggleArchive = () => { const { room } = this.state; const { rid, archived, t } = room; - const action = I18n.t(`${ archived ? 'un' : '' }archive`); + const action = I18n.t(`${archived ? 'un' : ''}archive`); Alert.alert( I18n.t('Are_you_sure_question_mark'), I18n.t('Do_you_really_want_to_key_this_room_question_mark', { key: action }), @@ -386,7 +402,7 @@ class RoomInfoEditView extends React.Component { { text: I18n.t('Yes_action_it', { action }), style: 'destructive', - onPress: async() => { + onPress: async () => { try { logEvent(events.RI_EDIT_TOGGLE_ARCHIVE); await RocketChat.toggleArchiveRoom(rid, t, !archived); @@ -399,7 +415,7 @@ class RoomInfoEditView extends React.Component { ], { cancelable: false } ); - } + }; hasDeletePermission = () => { const { room, permissions } = this.state; @@ -413,7 +429,7 @@ class RoomInfoEditView extends React.Component { } return permissions[PERMISSION_DELETE_C]; - } + }; renderSystemMessages = () => { const { systemMessages, enableSysMes } = this.state; @@ -425,7 +441,10 @@ class RoomInfoEditView extends React.Component { return ( <MultiSelect - options={MessageTypeValues.map(m => ({ value: m.value, text: { text: I18n.t('Hide_type_messages', { type: I18n.t(m.text) }) } }))} + options={MessageTypeValues.map(m => ({ + value: m.value, + text: { text: I18n.t('Hide_type_messages', { type: I18n.t(m.text) }) } + }))} onChange={({ value }) => this.setState({ systemMessages: value })} placeholder={{ text: I18n.t('Hide_System_Messages') }} value={systemMessages} @@ -434,9 +453,9 @@ class RoomInfoEditView extends React.Component { theme={theme} /> ); - } + }; - changeAvatar = async() => { + changeAvatar = async () => { const options = { cropping: true, compressImageQuality: 0.8, @@ -448,44 +467,59 @@ class RoomInfoEditView extends React.Component { try { const response = await ImagePicker.openPicker(options); - this.setState({ avatar: { url: response.path, data: `data:image/jpeg;base64,${ response.data }`, service: 'upload' } }); + this.setState({ avatar: { url: response.path, data: `data:image/jpeg;base64,${response.data}`, service: 'upload' } }); } catch (e) { console.log(e); } - } + }; resetAvatar = () => { this.setState({ avatar: { data: null } }); - } + }; - toggleRoomType = (value) => { + toggleRoomType = value => { logEvent(events.RI_EDIT_TOGGLE_ROOM_TYPE); this.setState(({ encrypted }) => ({ t: value, encrypted: value && encrypted })); - } + }; - toggleReadOnly = (value) => { + toggleReadOnly = value => { logEvent(events.RI_EDIT_TOGGLE_READ_ONLY); this.setState({ ro: value }); - } + }; - toggleReactions = (value) => { + toggleReactions = value => { logEvent(events.RI_EDIT_TOGGLE_REACTIONS); this.setState({ reactWhenReadOnly: value }); - } + }; - toggleHideSystemMessages = (value) => { + toggleHideSystemMessages = value => { logEvent(events.RI_EDIT_TOGGLE_SYSTEM_MSG); this.setState(({ systemMessages }) => ({ enableSysMes: value, systemMessages: value ? systemMessages : [] })); - } + }; - toggleEncrypted = (value) => { + toggleEncrypted = value => { logEvent(events.RI_EDIT_TOGGLE_ENCRYPTED); this.setState({ encrypted: value }); - } + }; render() { const { - name, nameError, description, topic, announcement, t, ro, reactWhenReadOnly, room, joinCode, saving, permissions, archived, enableSysMes, encrypted, avatar + name, + nameError, + description, + topic, + announcement, + t, + ro, + reactWhenReadOnly, + room, + joinCode, + saving, + permissions, + archived, + enableSysMes, + encrypted, + avatar } = this.state; const { serverVersion, encryptionEnabled, theme } = this.props; const { dangerColor } = themes[theme]; @@ -494,80 +528,90 @@ class RoomInfoEditView extends React.Component { <KeyboardView style={{ backgroundColor: themes[theme].backgroundColor }} contentContainerStyle={sharedStyles.container} - keyboardVerticalOffset={128} - > + keyboardVerticalOffset={128}> <StatusBar /> - <SafeAreaView - testID='room-info-edit-view' - style={{ backgroundColor: themes[theme].backgroundColor }} - > + <SafeAreaView testID='room-info-edit-view' style={{ backgroundColor: themes[theme].backgroundColor }}> <ScrollView contentContainerStyle={sharedStyles.containerScrollView} testID='room-info-edit-view-list' - {...scrollPersistTaps} - > + {...scrollPersistTaps}> <TouchableOpacity style={styles.avatarContainer} onPress={this.changeAvatar} - disabled={compareServerVersion(serverVersion, '3.6.0', methods.lowerThan)} - > + disabled={compareServerVersion(serverVersion, '3.6.0', methods.lowerThan)}> <Avatar type={room.t} text={room.name} avatar={avatar?.url} isStatic={avatar?.url} rid={isEmpty(avatar) && room.rid} - size={100} - > - {compareServerVersion(serverVersion, '3.6.0', methods.lowerThan) - ? null - : ( - <TouchableOpacity style={[styles.resetButton, { backgroundColor: themes[theme].dangerColor }]} onPress={this.resetAvatar}> - <CustomIcon name='delete' color={themes[theme].backgroundColor} size={24} /> - </TouchableOpacity> - ) - } + size={100}> + {compareServerVersion(serverVersion, '3.6.0', methods.lowerThan) ? null : ( + <TouchableOpacity + style={[styles.resetButton, { backgroundColor: themes[theme].dangerColor }]} + onPress={this.resetAvatar}> + <CustomIcon name='delete' color={themes[theme].backgroundColor} size={24} /> + </TouchableOpacity> + )} </Avatar> </TouchableOpacity> <RCTextInput - inputRef={(e) => { this.name = e; }} + inputRef={e => { + this.name = e; + }} label={I18n.t('Name')} value={name} onChangeText={value => this.setState({ name: value })} - onSubmitEditing={() => { this.description.focus(); }} + onSubmitEditing={() => { + this.description.focus(); + }} error={nameError} theme={theme} testID='room-info-edit-view-name' /> <RCTextInput - inputRef={(e) => { this.description = e; }} + inputRef={e => { + this.description = e; + }} label={I18n.t('Description')} value={description} onChangeText={value => this.setState({ description: value })} - onSubmitEditing={() => { this.topic.focus(); }} + onSubmitEditing={() => { + this.topic.focus(); + }} theme={theme} testID='room-info-edit-view-description' /> <RCTextInput - inputRef={(e) => { this.topic = e; }} + inputRef={e => { + this.topic = e; + }} label={I18n.t('Topic')} value={topic} onChangeText={value => this.setState({ topic: value })} - onSubmitEditing={() => { this.announcement.focus(); }} + onSubmitEditing={() => { + this.announcement.focus(); + }} theme={theme} testID='room-info-edit-view-topic' /> <RCTextInput - inputRef={(e) => { this.announcement = e; }} + inputRef={e => { + this.announcement = e; + }} label={I18n.t('Announcement')} value={announcement} onChangeText={value => this.setState({ announcement: value })} - onSubmitEditing={() => { this.joinCode.focus(); }} + onSubmitEditing={() => { + this.joinCode.focus(); + }} theme={theme} testID='room-info-edit-view-announcement' /> <RCTextInput - inputRef={(e) => { this.joinCode = e; }} + inputRef={e => { + this.joinCode = e; + }} label={I18n.t('Password')} value={joinCode} onChangeText={value => this.setState({ joinCode: value })} @@ -579,9 +623,15 @@ class RoomInfoEditView extends React.Component { <SwitchContainer value={t} leftLabelPrimary={I18n.t('Public')} - leftLabelSecondary={room.teamMain ? I18n.t('Everyone_can_access_this_team') : I18n.t('Everyone_can_access_this_channel')} + leftLabelSecondary={ + room.teamMain ? I18n.t('Everyone_can_access_this_team') : I18n.t('Everyone_can_access_this_channel') + } rightLabelPrimary={I18n.t('Private')} - rightLabelSecondary={room.teamMain ? I18n.t('Just_invited_people_can_access_this_team') : I18n.t('Just_invited_people_can_access_this_channel')} + rightLabelSecondary={ + room.teamMain + ? I18n.t('Just_invited_people_can_access_this_team') + : I18n.t('Just_invited_people_can_access_this_channel') + } onValueChange={this.toggleRoomType} theme={theme} testID='room-info-edit-view-t' @@ -589,7 +639,11 @@ class RoomInfoEditView extends React.Component { <SwitchContainer value={ro} leftLabelPrimary={I18n.t('Collaborative')} - leftLabelSecondary={room.teamMain ? I18n.t('All_users_in_the_team_can_write_new_messages') : I18n.t('All_users_in_the_channel_can_write_new_messages')} + leftLabelSecondary={ + room.teamMain + ? I18n.t('All_users_in_the_team_can_write_new_messages') + : I18n.t('All_users_in_the_channel_can_write_new_messages') + } rightLabelPrimary={I18n.t('Read_Only')} rightLabelSecondary={I18n.t('Only_authorized_users_can_write_new_messages')} onValueChange={this.toggleReadOnly} @@ -597,40 +651,39 @@ class RoomInfoEditView extends React.Component { theme={theme} testID='room-info-edit-view-ro' /> - {ro && !room.broadcast - ? ( - <SwitchContainer - value={reactWhenReadOnly} - leftLabelPrimary={I18n.t('No_Reactions')} - leftLabelSecondary={I18n.t('Reactions_are_disabled')} - rightLabelPrimary={I18n.t('Allow_Reactions')} - rightLabelSecondary={I18n.t('Reactions_are_enabled')} - onValueChange={this.toggleReactions} - disabled={!permissions[PERMISSION_SET_REACT_WHEN_READONLY]} - theme={theme} - testID='room-info-edit-view-react-when-ro' - /> - ) - : null - } + {ro && !room.broadcast ? ( + <SwitchContainer + value={reactWhenReadOnly} + leftLabelPrimary={I18n.t('No_Reactions')} + leftLabelSecondary={I18n.t('Reactions_are_disabled')} + rightLabelPrimary={I18n.t('Allow_Reactions')} + rightLabelSecondary={I18n.t('Reactions_are_enabled')} + onValueChange={this.toggleReactions} + disabled={!permissions[PERMISSION_SET_REACT_WHEN_READONLY]} + theme={theme} + testID='room-info-edit-view-react-when-ro' + /> + ) : null} {room.broadcast ? [ - <Text style={styles.broadcast}>{I18n.t('Broadcast_Channel')}</Text>, - <View style={[styles.divider, { borderColor: themes[theme].separatorColor }]} /> - ] - : null - } + <Text style={styles.broadcast}>{I18n.t('Broadcast_Channel')}</Text>, + <View style={[styles.divider, { borderColor: themes[theme].separatorColor }]} /> + ] + : null} {!compareServerVersion(serverVersion, '3.0.0', methods.lowerThan) ? ( <SwitchContainer value={enableSysMes} leftLabelPrimary={I18n.t('Hide_System_Messages')} - leftLabelSecondary={enableSysMes ? I18n.t('Overwrites_the_server_configuration_and_use_room_config') : I18n.t('Uses_server_configuration')} + leftLabelSecondary={ + enableSysMes + ? I18n.t('Overwrites_the_server_configuration_and_use_room_config') + : I18n.t('Uses_server_configuration') + } theme={theme} testID='room-info-edit-switch-system-messages' onValueChange={this.toggleHideSystemMessages} labelContainerStyle={styles.hideSystemMessages} - leftLabelStyle={styles.systemMessagesLabel} - > + leftLabelStyle={styles.systemMessagesLabel}> {this.renderSystemMessages()} </SwitchContainer> ) : null} @@ -655,9 +708,10 @@ class RoomInfoEditView extends React.Component { ]} onPress={this.submit} disabled={!this.formIsChanged()} - testID='room-info-edit-view-submit' - > - <Text style={[styles.button, { color: themes[theme].buttonText }]} accessibilityTraits='button'>{I18n.t('SAVE')}</Text> + testID='room-info-edit-view-submit'> + <Text style={[styles.button, { color: themes[theme].buttonText }]} accessibilityTraits='button'> + {I18n.t('SAVE')} + </Text> </TouchableOpacity> <View style={{ flexDirection: 'row' }}> <TouchableOpacity @@ -669,16 +723,10 @@ class RoomInfoEditView extends React.Component { ]} onPress={this.reset} disabled={!this.formIsChanged()} - testID='room-info-edit-view-reset' - > + testID='room-info-edit-view-reset'> <Text - style={[ - styles.button, - styles.button_inverted, - { color: themes[theme].bodyText } - ]} - accessibilityTraits='button' - > + style={[styles.button, styles.button_inverted, { color: themes[theme].bodyText }]} + accessibilityTraits='button'> {I18n.t('RESET')} </Text> </TouchableOpacity> @@ -686,21 +734,16 @@ class RoomInfoEditView extends React.Component { style={[ styles.buttonInverted, styles.buttonContainer_inverted, - archived ? !permissions[PERMISSION_UNARCHIVE] && sharedStyles.opacity5 : !permissions[PERMISSION_ARCHIVE] && sharedStyles.opacity5, + archived + ? !permissions[PERMISSION_UNARCHIVE] && sharedStyles.opacity5 + : !permissions[PERMISSION_ARCHIVE] && sharedStyles.opacity5, { flex: 1, marginLeft: 10, borderColor: dangerColor } ]} onPress={this.toggleArchive} disabled={archived ? !permissions[PERMISSION_UNARCHIVE] : !permissions[PERMISSION_ARCHIVE]} - testID={archived ? 'room-info-edit-view-unarchive' : 'room-info-edit-view-archive'} - > - <Text - style={[ - styles.button, - styles.button_inverted, - { color: dangerColor } - ]} - > - { archived ? I18n.t('UNARCHIVE') : I18n.t('ARCHIVE') } + testID={archived ? 'room-info-edit-view-unarchive' : 'room-info-edit-view-archive'}> + <Text style={[styles.button, styles.button_inverted, { color: dangerColor }]}> + {archived ? I18n.t('UNARCHIVE') : I18n.t('ARCHIVE')} </Text> </TouchableOpacity> </View> @@ -715,16 +758,8 @@ class RoomInfoEditView extends React.Component { ]} onPress={room.teamMain ? this.deleteTeam : this.delete} disabled={!this.hasDeletePermission()} - testID='room-info-edit-view-delete' - > - <Text - style={[ - styles.button, - styles.button_inverted, - { color: dangerColor } - ]} - accessibilityTraits='button' - > + testID='room-info-edit-view-delete'> + <Text style={[styles.button, styles.button_inverted, { color: dangerColor }]} accessibilityTraits='button'> {I18n.t('DELETE')} </Text> </TouchableOpacity> diff --git a/app/views/RoomInfoView/Channel.js b/app/views/RoomInfoView/Channel.js index bb65128b8c..ea4a584c70 100644 --- a/app/views/RoomInfoView/Channel.js +++ b/app/views/RoomInfoView/Channel.js @@ -10,19 +10,19 @@ const Channel = ({ room, theme }) => { <> <Item label={I18n.t('Description')} - content={description || `__${ I18n.t('No_label_provided', { label: 'description' }) }__`} + content={description || `__${I18n.t('No_label_provided', { label: 'description' })}__`} theme={theme} testID='room-info-view-description' /> <Item label={I18n.t('Topic')} - content={topic || `__${ I18n.t('No_label_provided', { label: 'topic' }) }__`} + content={topic || `__${I18n.t('No_label_provided', { label: 'topic' })}__`} theme={theme} testID='room-info-view-topic' /> <Item label={I18n.t('Announcement')} - content={announcement || `__${ I18n.t('No_label_provided', { label: 'announcement' }) }__`} + content={announcement || `__${I18n.t('No_label_provided', { label: 'announcement' })}__`} theme={theme} testID='room-info-view-announcement' /> diff --git a/app/views/RoomInfoView/CustomFields.js b/app/views/RoomInfoView/CustomFields.js index b58c7af18e..777cfdf800 100644 --- a/app/views/RoomInfoView/CustomFields.js +++ b/app/views/RoomInfoView/CustomFields.js @@ -5,20 +5,12 @@ import Item from './Item'; const CustomFields = ({ customFields, theme }) => { if (customFields) { - return ( - Object.keys(customFields).map((title) => { - if (!customFields[title]) { - return; - } - return ( - <Item - label={title} - content={customFields[title]} - theme={theme} - /> - ); - }) - ); + return Object.keys(customFields).map(title => { + if (!customFields[title]) { + return; + } + return <Item label={title} content={customFields[title]} theme={theme} />; + }); } return null; diff --git a/app/views/RoomInfoView/Direct.js b/app/views/RoomInfoView/Direct.js index 14b2a83a4c..7bc962d699 100644 --- a/app/views/RoomInfoView/Direct.js +++ b/app/views/RoomInfoView/Direct.js @@ -8,18 +8,21 @@ import Timezone from './Timezone'; import CustomFields from './CustomFields'; import styles from './styles'; -const Roles = ({ roles, theme }) => (roles && roles.length ? ( - <View style={styles.item}> - <Text style={[styles.itemLabel, { color: themes[theme].titleText }]}>{I18n.t('Roles')}</Text> - <View style={styles.rolesContainer}> - {roles.map(role => (role ? ( - <View style={[styles.roleBadge, { backgroundColor: themes[theme].auxiliaryBackground }]} key={role}> - <Text style={styles.role}>{role}</Text> - </View> - ) : null))} +const Roles = ({ roles, theme }) => + roles && roles.length ? ( + <View style={styles.item}> + <Text style={[styles.itemLabel, { color: themes[theme].titleText }]}>{I18n.t('Roles')}</Text> + <View style={styles.rolesContainer}> + {roles.map(role => + role ? ( + <View style={[styles.roleBadge, { backgroundColor: themes[theme].auxiliaryBackground }]} key={role}> + <Text style={styles.role}>{role}</Text> + </View> + ) : null + )} + </View> </View> - </View> -) : null); + ) : null; Roles.propTypes = { roles: PropTypes.array, theme: PropTypes.string diff --git a/app/views/RoomInfoView/Item.js b/app/views/RoomInfoView/Item.js index e820c50909..2b8d19f9de 100644 --- a/app/views/RoomInfoView/Item.js +++ b/app/views/RoomInfoView/Item.js @@ -6,20 +6,15 @@ import Markdown from '../../containers/markdown'; import { themes } from '../../constants/colors'; import styles from './styles'; -const Item = ({ - label, content, theme, testID -}) => ( +const Item = ({ label, content, theme, testID }) => content ? ( <View style={styles.item} testID={testID}> - <Text accessibilityLabel={label} style={[styles.itemLabel, { color: themes[theme].titleText }]}>{label}</Text> - <Markdown - style={[styles.itemContent, { color: themes[theme].auxiliaryText }]} - msg={content} - theme={theme} - /> + <Text accessibilityLabel={label} style={[styles.itemLabel, { color: themes[theme].titleText }]}> + {label} + </Text> + <Markdown style={[styles.itemContent, { color: themes[theme].auxiliaryText }]} msg={content} theme={theme} /> </View> - ) : null -); + ) : null; Item.propTypes = { label: PropTypes.string, content: PropTypes.string, diff --git a/app/views/RoomInfoView/Livechat.js b/app/views/RoomInfoView/Livechat.js index e6dca73cc9..8635bdddd3 100644 --- a/app/views/RoomInfoView/Livechat.js +++ b/app/views/RoomInfoView/Livechat.js @@ -28,8 +28,7 @@ Title.propTypes = { const Livechat = ({ room, roomUser, theme }) => { const [department, setDepartment] = useState({}); - - const getDepartment = async(id) => { + const getDepartment = async id => { if (id) { const result = await RocketChat.getDepartmentInfo(id); if (result.success) { @@ -44,90 +43,37 @@ const Livechat = ({ room, roomUser, theme }) => { } }; - useEffect(() => { getRoom(); }, [room]); + useEffect(() => { + getRoom(); + }, [room]); return ( <> - <Title - title={I18n.t('User')} - theme={theme} - /> - <Timezone - utcOffset={roomUser.utc} - theme={theme} - /> - <Item - label={I18n.t('Username')} - content={roomUser.username} - theme={theme} - /> + <Title title={I18n.t('User')} theme={theme} /> + <Timezone utcOffset={roomUser.utc} theme={theme} /> + <Item label={I18n.t('Username')} content={roomUser.username} theme={theme} /> <Item label={I18n.t('Email')} - content={roomUser.visitorEmails?.map(email => email.address).reduce((ret, item) => `${ ret }${ item }\n`)} + content={roomUser.visitorEmails?.map(email => email.address).reduce((ret, item) => `${ret}${item}\n`)} theme={theme} /> <Item label={I18n.t('Phone')} - content={roomUser.phone?.map(phone => phone.phoneNumber).reduce((ret, item) => `${ ret }${ item }\n`)} - theme={theme} - /> - <Item - label={I18n.t('IP')} - content={roomUser.ip} - theme={theme} - /> - <Item - label={I18n.t('OS')} - content={roomUser.os} - theme={theme} - /> - <Item - label={I18n.t('Browser')} - content={roomUser.browser} - theme={theme} - /> - <CustomFields - customFields={roomUser.livechatData} - theme={theme} - /> - <Title - title={I18n.t('Conversation')} - theme={theme} - /> - <Item - label={I18n.t('Agent')} - content={room.servedBy?.username} - theme={theme} - /> - <Item - label={I18n.t('Facebook')} - content={room.facebook?.page.name} - theme={theme} - /> - <Item - label={I18n.t('SMS')} - content={room.sms && 'SMS Enabled'} - theme={theme} - /> - <Item - label={I18n.t('Topic')} - content={room.topic} - theme={theme} - /> - <Item - label={I18n.t('Tags')} - content={room.tags?.join(', ')} - theme={theme} - /> - <Item - label={I18n.t('Department')} - content={department.name} - theme={theme} - /> - <CustomFields - customFields={room.livechatData} - theme={theme} - /> + content={roomUser.phone?.map(phone => phone.phoneNumber).reduce((ret, item) => `${ret}${item}\n`)} + theme={theme} + /> + <Item label={I18n.t('IP')} content={roomUser.ip} theme={theme} /> + <Item label={I18n.t('OS')} content={roomUser.os} theme={theme} /> + <Item label={I18n.t('Browser')} content={roomUser.browser} theme={theme} /> + <CustomFields customFields={roomUser.livechatData} theme={theme} /> + <Title title={I18n.t('Conversation')} theme={theme} /> + <Item label={I18n.t('Agent')} content={room.servedBy?.username} theme={theme} /> + <Item label={I18n.t('Facebook')} content={room.facebook?.page.name} theme={theme} /> + <Item label={I18n.t('SMS')} content={room.sms && 'SMS Enabled'} theme={theme} /> + <Item label={I18n.t('Topic')} content={room.topic} theme={theme} /> + <Item label={I18n.t('Tags')} content={room.tags?.join(', ')} theme={theme} /> + <Item label={I18n.t('Department')} content={department.name} theme={theme} /> + <CustomFields customFields={room.livechatData} theme={theme} /> </> ); }; diff --git a/app/views/RoomInfoView/Timezone.js b/app/views/RoomInfoView/Timezone.js index f074339672..e40c4c23b3 100644 --- a/app/views/RoomInfoView/Timezone.js +++ b/app/views/RoomInfoView/Timezone.js @@ -6,13 +6,14 @@ import moment from 'moment'; import I18n from '../../i18n'; import Item from './Item'; -const Timezone = ({ utcOffset, Message_TimeFormat, theme }) => (utcOffset ? ( - <Item - label={I18n.t('Timezone')} - content={`${ moment().utcOffset(utcOffset).format(Message_TimeFormat) } (UTC ${ utcOffset })`} - theme={theme} - /> -) : null); +const Timezone = ({ utcOffset, Message_TimeFormat, theme }) => + utcOffset ? ( + <Item + label={I18n.t('Timezone')} + content={`${moment().utcOffset(utcOffset).format(Message_TimeFormat)} (UTC ${utcOffset})`} + theme={theme} + /> + ) : null; Timezone.propTypes = { utcOffset: PropTypes.number, Message_TimeFormat: PropTypes.string, diff --git a/app/views/RoomInfoView/index.js b/app/views/RoomInfoView/index.js index fe147f4146..a270836138 100644 --- a/app/views/RoomInfoView/index.js +++ b/app/views/RoomInfoView/index.js @@ -29,21 +29,41 @@ import Channel from './Channel'; import Direct from './Direct'; import styles from './styles'; -const getRoomTitle = (room, type, name, username, statusText, theme) => (type === 'd' - ? ( +const getRoomTitle = (room, type, name, username, statusText, theme) => + type === 'd' ? ( <> - <Text testID='room-info-view-name' style={[styles.roomTitle, { color: themes[theme].titleText }]}>{ name }</Text> - {username && <Text testID='room-info-view-username' style={[styles.roomUsername, { color: themes[theme].auxiliaryText }]}>{`@${ username }`}</Text>} - {!!statusText && <View testID='room-info-view-custom-status'><Markdown msg={statusText} style={[styles.roomUsername, { color: themes[theme].auxiliaryText }]} preview theme={theme} /></View>} + <Text testID='room-info-view-name' style={[styles.roomTitle, { color: themes[theme].titleText }]}> + {name} + </Text> + {username && ( + <Text + testID='room-info-view-username' + style={[styles.roomUsername, { color: themes[theme].auxiliaryText }]}>{`@${username}`}</Text> + )} + {!!statusText && ( + <View testID='room-info-view-custom-status'> + <Markdown + msg={statusText} + style={[styles.roomUsername, { color: themes[theme].auxiliaryText }]} + preview + theme={theme} + /> + </View> + )} </> - ) - : ( + ) : ( <View style={styles.roomTitleRow}> - <RoomTypeIcon type={room.prid ? 'discussion' : room.t} teamMain={room.teamMain} key='room-info-type' status={room.visitor?.status} /> - <Text testID='room-info-view-name' style={[styles.roomTitle, { color: themes[theme].titleText }]} key='room-info-name'>{RocketChat.getRoomTitle(room)}</Text> + <RoomTypeIcon + type={room.prid ? 'discussion' : room.t} + teamMain={room.teamMain} + key='room-info-type' + status={room.visitor?.status} + /> + <Text testID='room-info-view-name' style={[styles.roomTitle, { color: themes[theme].titleText }]} key='room-info-name'> + {RocketChat.getRoomTitle(room)} + </Text> </View> - ) -); + ); class RoomInfoView extends React.Component { static propTypes = { @@ -57,7 +77,7 @@ class RoomInfoView extends React.Component { editOmnichannelContact: PropTypes.array, editLivechatRoomCustomfields: PropTypes.array, roles: PropTypes.array - } + }; constructor(props) { super(props); @@ -108,21 +128,21 @@ class RoomInfoView extends React.Component { title: t === 'd' ? I18n.t('User_Info') : I18n.t('Room_Info'), headerRight: showEdit ? () => ( - <HeaderButton.Container> - <HeaderButton.Item - iconName='edit' - onPress={() => { - const isLivechat = t === 'l'; - logEvent(events[`RI_GO_${ isLivechat ? 'LIVECHAT' : 'RI' }_EDIT`]); - navigation.navigate(isLivechat ? 'LivechatEditView' : 'RoomInfoEditView', { rid, room, roomUser }); - }} - testID='room-info-view-edit-button' - /> - </HeaderButton.Container> - ) + <HeaderButton.Container> + <HeaderButton.Item + iconName='edit' + onPress={() => { + const isLivechat = t === 'l'; + logEvent(events[`RI_GO_${isLivechat ? 'LIVECHAT' : 'RI'}_EDIT`]); + navigation.navigate(isLivechat ? 'LivechatEditView' : 'RoomInfoEditView', { rid, room, roomUser }); + }} + testID='room-info-view-edit-button' + /> + </HeaderButton.Container> + ) : null }); - } + }; get isDirect() { const { room } = this.state; @@ -134,12 +154,12 @@ class RoomInfoView extends React.Component { return room.t === 'l'; } - getRoleDescription = (id) => { + getRoleDescription = id => { const { roles } = this.props; return roles[id]; }; - loadVisitor = async() => { + loadVisitor = async () => { const { room } = this.state; try { const result = await RocketChat.getVisitorInfo(room?.visitor?._id); @@ -148,17 +168,17 @@ class RoomInfoView extends React.Component { if (visitor.userAgent) { const ua = new UAParser(); ua.setUA(visitor.userAgent); - visitor.os = `${ ua.getOS().name } ${ ua.getOS().version }`; - visitor.browser = `${ ua.getBrowser().name } ${ ua.getBrowser().version }`; + visitor.os = `${ua.getOS().name} ${ua.getOS().version}`; + visitor.browser = `${ua.getBrowser().name} ${ua.getBrowser().version}`; } this.setState({ roomUser: visitor }, () => this.setHeader()); } } catch (error) { // Do nothing } - } + }; - loadUser = async() => { + loadUser = async () => { const { room, roomUser } = this.state; if (isEmpty(roomUser)) { @@ -169,10 +189,12 @@ class RoomInfoView extends React.Component { const { user } = result; const { roles } = user; if (roles && roles.length) { - user.parsedRoles = await Promise.all(roles.map(async(role) => { - const description = await this.getRoleDescription(role); - return description; - })); + user.parsedRoles = await Promise.all( + roles.map(async role => { + const description = await this.getRoleDescription(role); + return description; + }) + ); } this.setState({ roomUser: user }); @@ -181,20 +203,17 @@ class RoomInfoView extends React.Component { // do nothing } } - } + }; - loadRoom = async() => { + loadRoom = async () => { const { room: roomState } = this.state; - const { - route, editRoomPermission, editOmnichannelContact, editLivechatRoomCustomfields - } = this.props; + const { route, editRoomPermission, editOmnichannelContact, editLivechatRoomCustomfields } = this.props; let room = route.params?.room; if (room && room.observe) { this.roomObservable = room.observe(); - this.subscription = this.roomObservable - .subscribe((changes) => { - this.setState({ room: changes }, () => this.setHeader()); - }); + this.subscription = this.roomObservable.subscribe(changes => { + this.setState({ room: changes }, () => this.setHeader()); + }); } else { try { const result = await RocketChat.getRoomInfo(this.rid); @@ -213,30 +232,35 @@ class RoomInfoView extends React.Component { if (permissions.some(Boolean)) { this.setState({ showEdit: true }, () => this.setHeader()); } - } + }; - createDirect = () => new Promise(async(resolve, reject) => { - const { route } = this.props; + createDirect = () => + new Promise(async (resolve, reject) => { + const { route } = this.props; - // We don't need to create a direct - const member = route.params?.member; - if (!isEmpty(member)) { - return resolve(); - } + // We don't need to create a direct + const member = route.params?.member; + if (!isEmpty(member)) { + return resolve(); + } - // TODO: Check if some direct with the user already exists on database - try { - const { roomUser: { username } } = this.state; - const result = await RocketChat.createDirectMessage(username); - if (result.success) { - const { room: { rid } } = result; - return this.setState(({ room }) => ({ room: { ...room, rid } }), resolve); + // TODO: Check if some direct with the user already exists on database + try { + const { + roomUser: { username } + } = this.state; + const result = await RocketChat.createDirectMessage(username); + if (result.success) { + const { + room: { rid } + } = result; + return this.setState(({ room }) => ({ room: { ...room, rid } }), resolve); + } + } catch { + // do nothing } - } catch { - // do nothing - } - reject(); - }) + reject(); + }); goRoom = () => { logEvent(events.RI_GO_ROOM_USER); @@ -268,63 +292,50 @@ class RoomInfoView extends React.Component { navigate('RoomView', params); } } - } + }; videoCall = () => { const { room } = this.state; RocketChat.callJitsi(room); - } + }; renderAvatar = (room, roomUser) => { const { theme } = this.props; return ( - <Avatar - text={room.name || roomUser.username} - style={styles.avatar} - type={this.t} - size={100} - rid={room?.rid} - > - {this.t === 'd' && roomUser._id - ? ( - <View style={[sharedStyles.status, { backgroundColor: themes[theme].auxiliaryBackground }]}> - <Status size={20} id={roomUser._id} /> - </View> - ) - : null} + <Avatar text={room.name || roomUser.username} style={styles.avatar} type={this.t} size={100} rid={room?.rid}> + {this.t === 'd' && roomUser._id ? ( + <View style={[sharedStyles.status, { backgroundColor: themes[theme].auxiliaryBackground }]}> + <Status size={20} id={roomUser._id} /> + </View> + ) : null} </Avatar> ); - } + }; renderButton = (onPress, iconName, text) => { const { theme } = this.props; - const onActionPress = async() => { + const onActionPress = async () => { try { if (this.isDirect) { await this.createDirect(); } onPress(); } catch { - EventEmitter.emit(LISTENER, { message: I18n.t('error-action-not-allowed', { action: I18n.t('Create_Direct_Messages') }) }); + EventEmitter.emit(LISTENER, { + message: I18n.t('error-action-not-allowed', { action: I18n.t('Create_Direct_Messages') }) + }); } }; return ( - <BorderlessButton - onPress={onActionPress} - style={styles.roomButton} - > - <CustomIcon - name={iconName} - size={30} - color={themes[theme].actionTintColor} - /> + <BorderlessButton onPress={onActionPress} style={styles.roomButton}> + <CustomIcon name={iconName} size={30} color={themes[theme].actionTintColor} /> <Text style={[styles.roomButtonText, { color: themes[theme].actionTintColor }]}>{text}</Text> </BorderlessButton> ); - } + }; renderButtons = () => { const { jitsiEnabled } = this.props; @@ -334,7 +345,7 @@ class RoomInfoView extends React.Component { {jitsiEnabled && this.isDirect ? this.renderButton(this.videoCall, 'camera', I18n.t('Video_call')) : null} </View> ); - } + }; renderContent = () => { const { room, roomUser } = this.state; @@ -346,7 +357,7 @@ class RoomInfoView extends React.Component { return <Livechat room={room} roomUser={roomUser} theme={theme} />; } return <Channel room={room} theme={theme} />; - } + }; render() { const { room, roomUser } = this.state; @@ -354,13 +365,12 @@ class RoomInfoView extends React.Component { return ( <ScrollView style={[styles.scroll, { backgroundColor: themes[theme].backgroundColor }]}> <StatusBar /> - <SafeAreaView - style={{ backgroundColor: themes[theme].backgroundColor }} - testID='room-info-view' - > + <SafeAreaView style={{ backgroundColor: themes[theme].backgroundColor }} testID='room-info-view'> <View style={[styles.avatarContainer, { backgroundColor: themes[theme].auxiliaryBackground }]}> {this.renderAvatar(room, roomUser)} - <View style={styles.roomTitleContainer}>{ getRoomTitle(room, this.t, roomUser?.name, roomUser?.username, roomUser?.statusText, theme) }</View> + <View style={styles.roomTitleContainer}> + {getRoomTitle(room, this.t, roomUser?.name, roomUser?.username, roomUser?.statusText, theme)} + </View> {this.renderButtons()} </View> {this.renderContent()} diff --git a/app/views/RoomMembersView/index.js b/app/views/RoomMembersView/index.js index eccb3ac1c6..f98b277390 100644 --- a/app/views/RoomMembersView/index.js +++ b/app/views/RoomMembersView/index.js @@ -64,7 +64,7 @@ class RoomMembersView extends React.Component { editTeamMemberPermission: PropTypes.array, viewAllTeamChannelsPermission: PropTypes.array, viewAllTeamsPermission: PropTypes.array - } + }; constructor(props) { super(props); @@ -84,14 +84,13 @@ class RoomMembersView extends React.Component { }; if (room && room.observe) { this.roomObservable = room.observe(); - this.subscription = this.roomObservable - .subscribe((changes) => { - if (this.mounted) { - this.setState({ room: changes }); - } else { - this.state.room = changes; - } - }); + this.subscription = this.roomObservable.subscribe(changes => { + if (this.mounted) { + this.setState({ room: changes }); + } else { + this.state.room = changes; + } + }); } this.setHeader(); } @@ -102,12 +101,27 @@ class RoomMembersView extends React.Component { const { room } = this.state; const { - muteUserPermission, setLeaderPermission, setOwnerPermission, setModeratorPermission, removeUserPermission, editTeamMemberPermission, viewAllTeamChannelsPermission, viewAllTeamsPermission + muteUserPermission, + setLeaderPermission, + setOwnerPermission, + setModeratorPermission, + removeUserPermission, + editTeamMemberPermission, + viewAllTeamChannelsPermission, + viewAllTeamsPermission } = this.props; - const result = await RocketChat.hasPermission([ - muteUserPermission, setLeaderPermission, setOwnerPermission, setModeratorPermission, removeUserPermission, ...room.teamMain ? [editTeamMemberPermission, viewAllTeamChannelsPermission, viewAllTeamsPermission] : [] - ], room.rid); + const result = await RocketChat.hasPermission( + [ + muteUserPermission, + setLeaderPermission, + setOwnerPermission, + setModeratorPermission, + removeUserPermission, + ...(room.teamMain ? [editTeamMemberPermission, viewAllTeamChannelsPermission, viewAllTeamsPermission] : []) + ], + room.rid + ); this.permissions = { [PERMISSION_MUTE_USER]: result[0], @@ -115,11 +129,13 @@ class RoomMembersView extends React.Component { [PERMISSION_SET_OWNER]: result[2], [PERMISSION_SET_MODERATOR]: result[3], [PERMISSION_REMOVE_USER]: result[4], - ...room.teamMain ? { - [PERMISSION_EDIT_TEAM_MEMBER]: result[5], - [PERMISSION_VIEW_ALL_TEAM_CHANNELS]: result[6], - [PERMISION_VIEW_ALL_TEAMS]: result[7] - } : {} + ...(room.teamMain + ? { + [PERMISSION_EDIT_TEAM_MEMBER]: result[5], + [PERMISSION_VIEW_ALL_TEAM_CHANNELS]: result[6], + [PERMISION_VIEW_ALL_TEAMS]: result[7] + } + : {}) }; const hasSinglePermission = Object.values(this.permissions).some(p => !!p); @@ -146,20 +162,22 @@ class RoomMembersView extends React.Component { </HeaderButton.Container> ) }); - } + }; - onSearchChangeText = protectedFunction((text) => { + onSearchChangeText = protectedFunction(text => { const { members } = this.state; let membersFiltered = []; text = text.trim(); if (members && members.length > 0 && text) { - membersFiltered = members.filter(m => m.username.toLowerCase().match(text.toLowerCase()) || m.name.toLowerCase().match(text.toLowerCase())); + membersFiltered = members.filter( + m => m.username.toLowerCase().match(text.toLowerCase()) || m.name.toLowerCase().match(text.toLowerCase()) + ); } this.setState({ filtering: !!text, membersFiltered }); - }) + }); - navToDirectMessage = async(item) => { + navToDirectMessage = async item => { try { const db = database.active; const subsCollection = db.get('subscriptions'); @@ -176,9 +194,9 @@ class RoomMembersView extends React.Component { } catch (e) { log(e); } - } + }; - handleRemoveFromTeam = async(selectedUser) => { + handleRemoveFromTeam = async selectedUser => { try { const { navigation } = this.props; const { room } = this.state; @@ -213,9 +231,9 @@ class RoomMembersView extends React.Component { onPress: () => this.removeFromTeam(selectedUser) }); } - } + }; - removeFromTeam = async(selectedUser, selected) => { + removeFromTeam = async (selectedUser, selected) => { try { const { members, membersFiltered, room } = this.state; const { navigation } = this.props; @@ -225,7 +243,7 @@ class RoomMembersView extends React.Component { teamId: room.teamId, teamName: room.name, userId, - ...selected && { rooms: selected } + ...(selected && { rooms: selected }) }); if (result.success) { const message = I18n.t('User_has_been_removed_from_s', { s: RocketChat.getRoomTitle(room) }); @@ -241,23 +259,23 @@ class RoomMembersView extends React.Component { } catch (e) { log(e); showErrorAlert( - e.data.error - ? I18n.t(e.data.error) - : I18n.t('There_was_an_error_while_action', { action: I18n.t('removing_team') }), + e.data.error ? I18n.t(e.data.error) : I18n.t('There_was_an_error_while_action', { action: I18n.t('removing_team') }), I18n.t('Cannot_remove') ); } - } + }; - onPressUser = (selectedUser) => { + onPressUser = selectedUser => { const { room } = this.state; const { showActionSheet, user, theme } = this.props; - const options = [{ - icon: 'message', - title: I18n.t('Direct_message'), - onPress: () => this.navToDirectMessage(selectedUser) - }]; + const options = [ + { + icon: 'message', + title: I18n.t('Direct_message'), + onPress: () => this.navToDirectMessage(selectedUser) + } + ]; // Ignore if (selectedUser._id !== user.id) { @@ -280,7 +298,7 @@ class RoomMembersView extends React.Component { title: I18n.t(userIsMuted ? 'Unmute' : 'Mute'), onPress: () => { showConfirmationAlert({ - message: I18n.t(`The_user_${ userIsMuted ? 'will' : 'wont' }_be_able_to_type_in_roomName`, { + message: I18n.t(`The_user_${userIsMuted ? 'will' : 'wont'}_be_able_to_type_in_roomName`, { roomName: RocketChat.getRoomTitle(room) }), confirmationText: I18n.t(userIsMuted ? 'Unmute' : 'Mute'), @@ -299,7 +317,14 @@ class RoomMembersView extends React.Component { icon: 'shield-check', title: I18n.t('Owner'), onPress: () => this.handleOwner(selectedUser, !isOwner), - right: () => <CustomIcon testID={isOwner ? 'action-sheet-set-owner-checked' : 'action-sheet-set-owner-unchecked'} name={isOwner ? 'checkbox-checked' : 'checkbox-unchecked'} size={20} color={isOwner ? themes[theme].tintActive : themes[theme].auxiliaryTintColor} />, + right: () => ( + <CustomIcon + testID={isOwner ? 'action-sheet-set-owner-checked' : 'action-sheet-set-owner-unchecked'} + name={isOwner ? 'checkbox-checked' : 'checkbox-unchecked'} + size={20} + color={isOwner ? themes[theme].tintActive : themes[theme].auxiliaryTintColor} + /> + ), testID: 'action-sheet-set-owner' }); } @@ -312,7 +337,14 @@ class RoomMembersView extends React.Component { icon: 'shield-alt', title: I18n.t('Leader'), onPress: () => this.handleLeader(selectedUser, !isLeader), - right: () => <CustomIcon testID={isLeader ? 'action-sheet-set-leader-checked' : 'action-sheet-set-leader-unchecked'} name={isLeader ? 'checkbox-checked' : 'checkbox-unchecked'} size={20} color={isLeader ? themes[theme].tintActive : themes[theme].auxiliaryTintColor} />, + right: () => ( + <CustomIcon + testID={isLeader ? 'action-sheet-set-leader-checked' : 'action-sheet-set-leader-unchecked'} + name={isLeader ? 'checkbox-checked' : 'checkbox-unchecked'} + size={20} + color={isLeader ? themes[theme].tintActive : themes[theme].auxiliaryTintColor} + /> + ), testID: 'action-sheet-set-leader' }); } @@ -325,7 +357,14 @@ class RoomMembersView extends React.Component { icon: 'shield', title: I18n.t('Moderator'), onPress: () => this.handleModerator(selectedUser, !isModerator), - right: () => <CustomIcon testID={isModerator ? 'action-sheet-set-moderator-checked' : 'action-sheet-set-moderator-unchecked'} name={isModerator ? 'checkbox-checked' : 'checkbox-unchecked'} size={20} color={isModerator ? themes[theme].tintActive : themes[theme].auxiliaryTintColor} />, + right: () => ( + <CustomIcon + testID={isModerator ? 'action-sheet-set-moderator-checked' : 'action-sheet-set-moderator-unchecked'} + name={isModerator ? 'checkbox-checked' : 'checkbox-unchecked'} + size={20} + color={isModerator ? themes[theme].tintActive : themes[theme].auxiliaryTintColor} + /> + ), testID: 'action-sheet-set-moderator' }); } @@ -362,7 +401,7 @@ class RoomMembersView extends React.Component { options, hasCancel: true }); - } + }; toggleStatus = () => { try { @@ -373,9 +412,9 @@ class RoomMembersView extends React.Component { } catch (e) { log(e); } - } + }; - fetchRoomMembersRoles = async() => { + fetchRoomMembersRoles = async () => { try { const { room } = this.state; const result = await RocketChat.getRoomRoles(room.rid, room.t); @@ -385,12 +424,10 @@ class RoomMembersView extends React.Component { } catch (e) { log(e); } - } + }; - fetchMembers = async() => { - const { - rid, members, isLoading, allUsers, end - } = this.state; + fetchMembers = async () => { + const { rid, members, isLoading, allUsers, end } = this.state; if (isLoading || end) { return; } @@ -409,9 +446,9 @@ class RoomMembersView extends React.Component { log(e); this.setState({ isLoading: false }); } - } + }; - goRoom = (item) => { + goRoom = item => { const { navigation, isMasterDetail } = this.props; if (isMasterDetail) { navigation.navigate('DrawerNavigator'); @@ -419,30 +456,37 @@ class RoomMembersView extends React.Component { navigation.popToTop(); } goRoom({ item, isMasterDetail }); - } + }; - getUserDisplayName = (user) => { + getUserDisplayName = user => { const { useRealName } = this.props; return (useRealName ? user.name : user.username) || user.username; - } + }; - handleMute = async(user) => { + handleMute = async user => { const { rid } = this.state; try { await RocketChat.toggleMuteUserInRoom(rid, user?.username, !user?.muted); - EventEmitter.emit(LISTENER, { message: I18n.t('User_has_been_key', { key: user?.muted ? I18n.t('unmuted') : I18n.t('muted') }) }); + EventEmitter.emit(LISTENER, { + message: I18n.t('User_has_been_key', { key: user?.muted ? I18n.t('unmuted') : I18n.t('muted') }) + }); } catch (e) { log(e); } - } + }; - handleOwner = async(selectedUser, isOwner) => { + handleOwner = async (selectedUser, isOwner) => { try { const { room } = this.state; await RocketChat.toggleRoomOwner({ - roomId: room.rid, t: room.t, userId: selectedUser._id, isOwner + roomId: room.rid, + t: room.t, + userId: selectedUser._id, + isOwner }); - const message = isOwner ? 'User__username__is_now_a_owner_of__room_name_' : 'User__username__removed_from__room_name__owners'; + const message = isOwner + ? 'User__username__is_now_a_owner_of__room_name_' + : 'User__username__removed_from__room_name__owners'; EventEmitter.emit(LISTENER, { message: I18n.t(message, { username: this.getUserDisplayName(selectedUser), @@ -453,15 +497,20 @@ class RoomMembersView extends React.Component { log(e); } this.fetchRoomMembersRoles(); - } + }; - handleLeader = async(selectedUser, isLeader) => { + handleLeader = async (selectedUser, isLeader) => { try { const { room } = this.state; await RocketChat.toggleRoomLeader({ - roomId: room.rid, t: room.t, userId: selectedUser._id, isLeader + roomId: room.rid, + t: room.t, + userId: selectedUser._id, + isLeader }); - const message = isLeader ? 'User__username__is_now_a_leader_of__room_name_' : 'User__username__removed_from__room_name__leaders'; + const message = isLeader + ? 'User__username__is_now_a_leader_of__room_name_' + : 'User__username__removed_from__room_name__leaders'; EventEmitter.emit(LISTENER, { message: I18n.t(message, { username: this.getUserDisplayName(selectedUser), @@ -472,15 +521,20 @@ class RoomMembersView extends React.Component { log(e); } this.fetchRoomMembersRoles(); - } + }; - handleModerator = async(selectedUser, isModerator) => { + handleModerator = async (selectedUser, isModerator) => { try { const { room } = this.state; await RocketChat.toggleRoomModerator({ - roomId: room.rid, t: room.t, userId: selectedUser._id, isModerator + roomId: room.rid, + t: room.t, + userId: selectedUser._id, + isModerator }); - const message = isModerator ? 'User__username__is_now_a_moderator_of__room_name_' : 'User__username__removed_from__room_name__moderators'; + const message = isModerator + ? 'User__username__is_now_a_moderator_of__room_name_' + : 'User__username__removed_from__room_name__moderators'; EventEmitter.emit(LISTENER, { message: I18n.t(message, { username: this.getUserDisplayName(selectedUser), @@ -491,22 +545,24 @@ class RoomMembersView extends React.Component { log(e); } this.fetchRoomMembersRoles(); - } + }; - handleIgnore = async(selectedUser, ignore) => { + handleIgnore = async (selectedUser, ignore) => { try { const { room } = this.state; await RocketChat.ignoreUser({ - rid: room.rid, userId: selectedUser._id, ignore + rid: room.rid, + userId: selectedUser._id, + ignore }); const message = I18n.t(ignore ? 'User_has_been_ignored' : 'User_has_been_unignored'); EventEmitter.emit(LISTENER, { message }); } catch (e) { log(e); } - } + }; - handleRemoveUserFromRoom = async(selectedUser) => { + handleRemoveUserFromRoom = async selectedUser => { try { const { room, members, membersFiltered } = this.state; const userId = selectedUser._id; @@ -520,11 +576,9 @@ class RoomMembersView extends React.Component { } catch (e) { log(e); } - } + }; - renderSearchBar = () => ( - <SearchBox onChangeText={text => this.onSearchChangeText(text)} testID='room-members-view-search' /> - ) + renderSearchBar = () => <SearchBox onChangeText={text => this.onSearchChangeText(text)} testID='room-members-view-search' />; renderItem = ({ item }) => { const { baseUrl, user, theme } = this.props; @@ -535,17 +589,15 @@ class RoomMembersView extends React.Component { username={item.username} onPress={() => this.onPressUser(item)} baseUrl={baseUrl} - testID={`room-members-view-item-${ item.username }`} + testID={`room-members-view-item-${item.username}`} user={user} theme={theme} /> ); - } + }; render() { - const { - filtering, members, membersFiltered, isLoading - } = this.state; + const { filtering, members, membersFiltered, isLoading } = this.state; const { theme } = this.props; return ( <SafeAreaView testID='room-members-view'> diff --git a/app/views/RoomView/Banner.js b/app/views/RoomView/Banner.js index 5172e13119..860f80b73c 100644 --- a/app/views/RoomView/Banner.js +++ b/app/views/RoomView/Banner.js @@ -9,60 +9,47 @@ import { CustomIcon } from '../../lib/Icons'; import { themes } from '../../constants/colors'; import styles from './styles'; -const Banner = React.memo(({ - text, title, theme, bannerClosed, closeBanner -}) => { - const [showModal, openModal] = useState(false); +const Banner = React.memo( + ({ text, title, theme, bannerClosed, closeBanner }) => { + const [showModal, openModal] = useState(false); - const toggleModal = () => openModal(prevState => !prevState); + const toggleModal = () => openModal(prevState => !prevState); - if (text && !bannerClosed) { - return ( - <> - <BorderlessButton - style={[styles.bannerContainer, { backgroundColor: themes[theme].bannerBackground }]} - testID='room-view-banner' - onPress={toggleModal} - > - <Markdown - msg={text} - theme={theme} - numberOfLines={1} - style={[styles.bannerText]} - preview - /> - <BorderlessButton onPress={closeBanner}> - <CustomIcon - color={themes[theme].auxiliaryText} - name='close' - size={20} - /> + if (text && !bannerClosed) { + return ( + <> + <BorderlessButton + style={[styles.bannerContainer, { backgroundColor: themes[theme].bannerBackground }]} + testID='room-view-banner' + onPress={toggleModal}> + <Markdown msg={text} theme={theme} numberOfLines={1} style={[styles.bannerText]} preview /> + <BorderlessButton onPress={closeBanner}> + <CustomIcon color={themes[theme].auxiliaryText} name='close' size={20} /> + </BorderlessButton> </BorderlessButton> - </BorderlessButton> - <Modal - onBackdropPress={toggleModal} - onBackButtonPress={toggleModal} - useNativeDriver - isVisible={showModal} - animationIn='fadeIn' - animationOut='fadeOut' - > - <View style={[styles.modalView, { backgroundColor: themes[theme].bannerBackground }]}> - <Text style={[styles.bannerModalTitle, { color: themes[theme].auxiliaryText }]}>{title}</Text> - <ScrollView style={styles.modalScrollView}> - <Markdown - msg={text} - theme={theme} - /> - </ScrollView> - </View> - </Modal> - </> - ); - } + <Modal + onBackdropPress={toggleModal} + onBackButtonPress={toggleModal} + useNativeDriver + isVisible={showModal} + animationIn='fadeIn' + animationOut='fadeOut'> + <View style={[styles.modalView, { backgroundColor: themes[theme].bannerBackground }]}> + <Text style={[styles.bannerModalTitle, { color: themes[theme].auxiliaryText }]}>{title}</Text> + <ScrollView style={styles.modalScrollView}> + <Markdown msg={text} theme={theme} /> + </ScrollView> + </View> + </Modal> + </> + ); + } - return null; -}, (prevProps, nextProps) => prevProps.text === nextProps.text && prevProps.theme === nextProps.theme && prevProps.bannerClosed === nextProps.bannerClosed); + return null; + }, + (prevProps, nextProps) => + prevProps.text === nextProps.text && prevProps.theme === nextProps.theme && prevProps.bannerClosed === nextProps.bannerClosed +); Banner.propTypes = { text: PropTypes.string, diff --git a/app/views/RoomView/EmptyRoom.js b/app/views/RoomView/EmptyRoom.js index 2559405282..1a9a248f2d 100644 --- a/app/views/RoomView/EmptyRoom.js +++ b/app/views/RoomView/EmptyRoom.js @@ -10,16 +10,9 @@ const styles = StyleSheet.create({ } }); -const EmptyRoom = React.memo(({ - length, mounted, theme, rid -}) => { +const EmptyRoom = React.memo(({ length, mounted, theme, rid }) => { if ((length === 0 && mounted) || !rid) { - return ( - <ImageBackground - source={{ uri: `message_empty_${ theme }` }} - style={styles.image} - /> - ); + return <ImageBackground source={{ uri: `message_empty_${theme}` }} style={styles.image} />; } return null; }); diff --git a/app/views/RoomView/JoinCode.js b/app/views/RoomView/JoinCode.js index 8ef7c42992..ceccc1ae7a 100644 --- a/app/views/RoomView/JoinCode.js +++ b/app/views/RoomView/JoinCode.js @@ -1,15 +1,6 @@ -import React, { - forwardRef, - useImperativeHandle, - useState -} from 'react'; +import React, { forwardRef, useImperativeHandle, useState } from 'react'; import PropTypes from 'prop-types'; -import { - InteractionManager, - StyleSheet, - Text, - View -} from 'react-native'; +import { InteractionManager, StyleSheet, Text, View } from 'react-native'; import Modal from 'react-native-modal'; import { connect } from 'react-redux'; @@ -50,81 +41,76 @@ const styles = StyleSheet.create({ } }); -const JoinCode = React.memo(forwardRef(({ - rid, - t, - onJoin, - isMasterDetail, - theme -}, ref) => { - const [visible, setVisible] = useState(false); - const [error, setError] = useState(false); - const [code, setCode] = useState(''); +const JoinCode = React.memo( + forwardRef(({ rid, t, onJoin, isMasterDetail, theme }, ref) => { + const [visible, setVisible] = useState(false); + const [error, setError] = useState(false); + const [code, setCode] = useState(''); - const show = () => setVisible(true); + const show = () => setVisible(true); - const hide = () => setVisible(false); + const hide = () => setVisible(false); - const joinRoom = async() => { - try { - await RocketChat.joinRoom(rid, code, t); - onJoin(); - hide(); - } catch (e) { - setError(true); - } - }; + const joinRoom = async () => { + try { + await RocketChat.joinRoom(rid, code, t); + onJoin(); + hide(); + } catch (e) { + setError(true); + } + }; - useImperativeHandle(ref, () => ({ show })); + useImperativeHandle(ref, () => ({ show })); - return ( - <Modal - transparent - avoidKeyboard - useNativeDriver - isVisible={visible} - hideModalContentWhileAnimating - > - <View style={styles.container} testID='join-code'> - <View style={[styles.content, isMasterDetail && [sharedStyles.modalFormSheet, styles.tablet], { backgroundColor: themes[theme].backgroundColor }]}> - <Text style={[styles.title, { color: themes[theme].titleText }]}>{I18n.t('Insert_Join_Code')}</Text> - <TextInput - value={code} - theme={theme} - inputRef={e => InteractionManager.runAfterInteractions(() => e?.getNativeRef()?.focus())} - returnKeyType='send' - autoCapitalize='none' - onChangeText={setCode} - onSubmitEditing={joinRoom} - placeholder={I18n.t('Join_Code')} - secureTextEntry - error={error && { error: 'error-code-invalid', reason: I18n.t('Code_or_password_invalid') }} - testID='join-code-input' - /> - <View style={styles.buttonContainer}> - <Button - title={I18n.t('Cancel')} - type='secondary' - style={styles.button} - backgroundColor={themes[theme].chatComponentBackground} + return ( + <Modal transparent avoidKeyboard useNativeDriver isVisible={visible} hideModalContentWhileAnimating> + <View style={styles.container} testID='join-code'> + <View + style={[ + styles.content, + isMasterDetail && [sharedStyles.modalFormSheet, styles.tablet], + { backgroundColor: themes[theme].backgroundColor } + ]}> + <Text style={[styles.title, { color: themes[theme].titleText }]}>{I18n.t('Insert_Join_Code')}</Text> + <TextInput + value={code} theme={theme} - testID='join-code-cancel' - onPress={hide} - /> - <Button - title={I18n.t('Join')} - type='primary' - style={styles.button} - theme={theme} - testID='join-code-submit' - onPress={joinRoom} + inputRef={e => InteractionManager.runAfterInteractions(() => e?.getNativeRef()?.focus())} + returnKeyType='send' + autoCapitalize='none' + onChangeText={setCode} + onSubmitEditing={joinRoom} + placeholder={I18n.t('Join_Code')} + secureTextEntry + error={error && { error: 'error-code-invalid', reason: I18n.t('Code_or_password_invalid') }} + testID='join-code-input' /> + <View style={styles.buttonContainer}> + <Button + title={I18n.t('Cancel')} + type='secondary' + style={styles.button} + backgroundColor={themes[theme].chatComponentBackground} + theme={theme} + testID='join-code-cancel' + onPress={hide} + /> + <Button + title={I18n.t('Join')} + type='primary' + style={styles.button} + theme={theme} + testID='join-code-submit' + onPress={joinRoom} + /> + </View> </View> </View> - </View> - </Modal> - ); -})); + </Modal> + ); + }) +); JoinCode.propTypes = { rid: PropTypes.string, t: PropTypes.string, diff --git a/app/views/RoomView/LeftButtons.js b/app/views/RoomView/LeftButtons.js index 089c284d69..aa41b2f36c 100644 --- a/app/views/RoomView/LeftButtons.js +++ b/app/views/RoomView/LeftButtons.js @@ -13,39 +13,31 @@ const styles = StyleSheet.create({ } }); -const LeftButtons = React.memo(({ - tmid, unreadsCount, navigation, baseUrl, userId, token, title, t, theme, goRoomActionsView, isMasterDetail -}) => { - if (!isMasterDetail || tmid) { - const onPress = useCallback(() => navigation.goBack()); - const label = unreadsCount > 99 ? '+99' : unreadsCount || ' '; - const labelLength = label.length ? label.length : 1; - const marginLeft = -2 * labelLength; - const fontSize = labelLength > 1 ? 14 : 17; - return ( - <HeaderBackButton - label={label} - onPress={onPress} - tintColor={themes[theme].headerTintColor} - labelStyle={{ fontSize, marginLeft }} - /> - ); - } - const onPress = useCallback(() => goRoomActionsView(), []); +const LeftButtons = React.memo( + ({ tmid, unreadsCount, navigation, baseUrl, userId, token, title, t, theme, goRoomActionsView, isMasterDetail }) => { + if (!isMasterDetail || tmid) { + const onPress = useCallback(() => navigation.goBack()); + const label = unreadsCount > 99 ? '+99' : unreadsCount || ' '; + const labelLength = label.length ? label.length : 1; + const marginLeft = -2 * labelLength; + const fontSize = labelLength > 1 ? 14 : 17; + return ( + <HeaderBackButton + label={label} + onPress={onPress} + tintColor={themes[theme].headerTintColor} + labelStyle={{ fontSize, marginLeft }} + /> + ); + } + const onPress = useCallback(() => goRoomActionsView(), []); - if (baseUrl && userId && token) { - return ( - <Avatar - text={title} - size={30} - type={t} - style={styles.avatar} - onPress={onPress} - /> - ); + if (baseUrl && userId && token) { + return <Avatar text={title} size={30} type={t} style={styles.avatar} onPress={onPress} />; + } + return null; } - return null; -}); +); LeftButtons.propTypes = { tmid: PropTypes.string, diff --git a/app/views/RoomView/List/NavBottomFAB.js b/app/views/RoomView/List/NavBottomFAB.js index a7e5dd54e3..e3456c122e 100644 --- a/app/views/RoomView/List/NavBottomFAB.js +++ b/app/views/RoomView/List/NavBottomFAB.js @@ -1,9 +1,7 @@ import React, { useCallback, useState } from 'react'; import { StyleSheet, View } from 'react-native'; import PropTypes from 'prop-types'; -import Animated, { - call, cond, greaterOrEq, useCode -} from 'react-native-reanimated'; +import Animated, { call, cond, greaterOrEq, useCode } from 'react-native-reanimated'; import { themes } from '../../../constants/colors'; import { CustomIcon } from '../../../lib/Icons'; @@ -38,10 +36,15 @@ const NavBottomFAB = ({ y, onPress, isThread }) => { const handleOnPress = useCallback(() => onPress()); const toggle = v => setShow(v); - useCode(() => cond(greaterOrEq(y, SCROLL_LIMIT), - call([y], () => toggle(true)), - call([y], () => toggle(false))), - [y]); + useCode( + () => + cond( + greaterOrEq(y, SCROLL_LIMIT), + call([y], () => toggle(true)), + call([y], () => toggle(false)) + ), + [y] + ); if (!show) { return null; @@ -53,11 +56,7 @@ const NavBottomFAB = ({ y, onPress, isThread }) => { } return ( <Animated.View style={[styles.container, { bottom }]} testID='nav-jump-to-bottom'> - <Touch - onPress={handleOnPress} - theme={theme} - style={[styles.button, { backgroundColor: themes[theme].backgroundColor }]} - > + <Touch onPress={handleOnPress} theme={theme} style={[styles.button, { backgroundColor: themes[theme].backgroundColor }]}> <View style={[styles.content, { borderColor: themes[theme].borderColor }]}> <CustomIcon name='chevron-down' color={themes[theme].auxiliaryTintColor} size={36} /> </View> diff --git a/app/views/RoomView/List/index.js b/app/views/RoomView/List/index.js index 6cdf40252c..c32490ba65 100644 --- a/app/views/RoomView/List/index.js +++ b/app/views/RoomView/List/index.js @@ -19,16 +19,17 @@ import NavBottomFAB from './NavBottomFAB'; const QUERY_SIZE = 50; -const onScroll = ({ y }) => event( - [ - { - nativeEvent: { - contentOffset: { y } +const onScroll = ({ y }) => + event( + [ + { + nativeEvent: { + contentOffset: { y } + } } - } - ], - { useNativeDriver: true } -); + ], + { useNativeDriver: true } + ); class ListContainer extends React.Component { static propTypes = { @@ -47,8 +48,8 @@ class ListContainer extends React.Component { constructor(props) { super(props); - console.time(`${ this.constructor.name } init`); - console.time(`${ this.constructor.name } mount`); + console.time(`${this.constructor.name} init`); + console.time(`${this.constructor.name} mount`); this.count = 0; this.mounted = false; this.animated = false; @@ -67,19 +68,17 @@ class ListContainer extends React.Component { this.viewabilityConfig = { itemVisiblePercentThreshold: 10 }; - console.timeEnd(`${ this.constructor.name } init`); + console.timeEnd(`${this.constructor.name} init`); } componentDidMount() { this.mounted = true; - console.timeEnd(`${ this.constructor.name } mount`); + console.timeEnd(`${this.constructor.name} mount`); } shouldComponentUpdate(nextProps, nextState) { const { refreshing, highlightedMessage } = this.state; - const { - hideSystemMessages, theme, tunread, ignored, loading - } = this.props; + const { hideSystemMessages, theme, tunread, ignored, loading } = this.props; if (theme !== nextProps.theme) { return true; } @@ -120,7 +119,7 @@ class ListContainer extends React.Component { this.unsubscribeFocus(); } this.clearHighlightedMessageTimeout(); - console.countReset(`${ this.constructor.name }.render calls`); + console.countReset(`${this.constructor.name}.render calls`); } clearHighlightedMessageTimeout = () => { @@ -128,9 +127,9 @@ class ListContainer extends React.Component { clearTimeout(this.highlightedMessageTimeout); this.highlightedMessageTimeout = false; } - } + }; - query = async() => { + query = async () => { this.count += QUERY_SIZE; const { rid, tmid, showMessageInMainThread } = this.props; const db = database.active; @@ -143,20 +142,13 @@ class ListContainer extends React.Component { if (tmid) { try { - this.thread = await db.collections - .get('threads') - .find(tmid); + this.thread = await db.collections.get('threads').find(tmid); } catch (e) { console.log(e); } this.messagesObservable = db.collections .get('thread_messages') - .query( - Q.where('rid', tmid), - Q.experimentalSortBy('ts', Q.desc), - Q.experimentalSkip(0), - Q.experimentalTake(this.count) - ) + .query(Q.where('rid', tmid), Q.experimentalSortBy('ts', Q.desc), Q.experimentalSkip(0), Q.experimentalTake(this.count)) .observe(); } else if (rid) { const whereClause = [ @@ -166,12 +158,7 @@ class ListContainer extends React.Component { Q.experimentalTake(this.count) ]; if (!showMessageInMainThread) { - whereClause.push( - Q.or( - Q.where('tmid', null), - Q.where('tshow', Q.eq(true)) - ) - ); + whereClause.push(Q.or(Q.where('tmid', null), Q.where('tshow', Q.eq(true)))); } this.messagesObservable = db.collections .get('messages') @@ -181,30 +168,29 @@ class ListContainer extends React.Component { if (rid) { this.unsubscribeMessages(); - this.messagesSubscription = this.messagesObservable - .subscribe((messages) => { - if (tmid && this.thread) { - messages = [...messages, this.thread]; - } - messages = messages.filter(m => !m.t || !hideSystemMessages?.includes(m.t)); + this.messagesSubscription = this.messagesObservable.subscribe(messages => { + if (tmid && this.thread) { + messages = [...messages, this.thread]; + } + messages = messages.filter(m => !m.t || !hideSystemMessages?.includes(m.t)); - if (this.mounted) { - this.setState({ messages }, () => this.update()); - } else { - this.state.messages = messages; - } - // TODO: move it away from here - this.readThreads(); - }); + if (this.mounted) { + this.setState({ messages }, () => this.update()); + } else { + this.state.messages = messages; + } + // TODO: move it away from here + this.readThreads(); + }); } - } + }; reload = () => { this.count = 0; this.query(); - } + }; - readThreads = debounce(async() => { + readThreads = debounce(async () => { const { tmid } = this.props; if (tmid) { @@ -214,28 +200,29 @@ class ListContainer extends React.Component { // Do nothing } } - }, 300) + }, 300); - onEndReached = () => this.query() + onEndReached = () => this.query(); - onRefresh = () => this.setState({ refreshing: true }, async() => { - const { messages } = this.state; - const { rid, tmid } = this.props; + onRefresh = () => + this.setState({ refreshing: true }, async () => { + const { messages } = this.state; + const { rid, tmid } = this.props; - if (messages.length) { - try { - if (tmid) { - await RocketChat.loadThreadMessages({ tmid, rid }); - } else { - await RocketChat.loadMissedMessages({ rid, lastOpen: moment().subtract(7, 'days').toDate() }); + if (messages.length) { + try { + if (tmid) { + await RocketChat.loadThreadMessages({ tmid, rid }); + } else { + await RocketChat.loadMissedMessages({ rid, lastOpen: moment().subtract(7, 'days').toDate() }); + } + } catch (e) { + log(e); } - } catch (e) { - log(e); } - } - this.setState({ refreshing: false }); - }) + this.setState({ refreshing: false }); + }); update = () => { if (this.animated) { @@ -248,7 +235,7 @@ class ListContainer extends React.Component { if (this.messagesSubscription && this.messagesSubscription.unsubscribe) { this.messagesSubscription.unsubscribe(); } - } + }; getLastMessage = () => { const { messages } = this.state; @@ -256,52 +243,53 @@ class ListContainer extends React.Component { return messages[0]; } return null; - } + }; - handleScrollToIndexFailed = (params) => { + handleScrollToIndexFailed = params => { const { listRef } = this.props; listRef.current.getNode().scrollToIndex({ index: params.highestMeasuredFrameIndex, animated: false }); - } + }; - jumpToMessage = messageId => new Promise(async(resolve) => { - this.jumping = true; - const { messages } = this.state; - const { listRef } = this.props; - const index = messages.findIndex(item => item.id === messageId); - if (index > -1) { - listRef.current.getNode().scrollToIndex({ index, viewPosition: 0.5, viewOffset: 100 }); - await new Promise(res => setTimeout(res, 300)); - if (!this.viewableItems.map(vi => vi.key).includes(messageId)) { + jumpToMessage = messageId => + new Promise(async resolve => { + this.jumping = true; + const { messages } = this.state; + const { listRef } = this.props; + const index = messages.findIndex(item => item.id === messageId); + if (index > -1) { + listRef.current.getNode().scrollToIndex({ index, viewPosition: 0.5, viewOffset: 100 }); + await new Promise(res => setTimeout(res, 300)); + if (!this.viewableItems.map(vi => vi.key).includes(messageId)) { + if (!this.jumping) { + return resolve(); + } + await setTimeout(() => resolve(this.jumpToMessage(messageId)), 300); + return; + } + this.setState({ highlightedMessage: messageId }); + this.clearHighlightedMessageTimeout(); + this.highlightedMessageTimeout = setTimeout(() => { + this.setState({ highlightedMessage: null }); + }, 10000); + await setTimeout(() => resolve(), 300); + } else { + listRef.current.getNode().scrollToIndex({ index: messages.length - 1, animated: false }); if (!this.jumping) { return resolve(); } await setTimeout(() => resolve(this.jumpToMessage(messageId)), 300); - return; } - this.setState({ highlightedMessage: messageId }); - this.clearHighlightedMessageTimeout(); - this.highlightedMessageTimeout = setTimeout(() => { - this.setState({ highlightedMessage: null }); - }, 10000); - await setTimeout(() => resolve(), 300); - } else { - listRef.current.getNode().scrollToIndex({ index: messages.length - 1, animated: false }); - if (!this.jumping) { - return resolve(); - } - await setTimeout(() => resolve(this.jumpToMessage(messageId)), 300); - } - }); + }); // this.jumping is checked in between operations to make sure we're not stuck cancelJumpToMessage = () => { this.jumping = false; - } + }; jumpToBottom = () => { const { listRef } = this.props; listRef.current.getNode().scrollToOffset({ offset: -100 }); - } + }; renderFooter = () => { const { rid, theme, loading } = this.props; @@ -309,20 +297,20 @@ class ListContainer extends React.Component { return <ActivityIndicator theme={theme} />; } return null; - } + }; renderItem = ({ item, index }) => { const { messages, highlightedMessage } = this.state; const { renderRow } = this.props; return renderRow(item, messages[index + 1], highlightedMessage); - } + }; onViewableItemsChanged = ({ viewableItems }) => { this.viewableItems = viewableItems; - } + }; render() { - console.count(`${ this.constructor.name }.render calls`); + console.count(`${this.constructor.name}.render calls`); const { rid, tmid, listRef } = this.props; const { messages, refreshing } = this.state; const { theme } = this.props; @@ -340,13 +328,9 @@ class ListContainer extends React.Component { onScrollToIndexFailed={this.handleScrollToIndexFailed} onViewableItemsChanged={this.onViewableItemsChanged} viewabilityConfig={this.viewabilityConfig} - refreshControl={( - <RefreshControl - refreshing={refreshing} - onRefresh={this.onRefresh} - tintColor={themes[theme].auxiliaryText} - /> - )} + refreshControl={ + <RefreshControl refreshing={refreshing} onRefresh={this.onRefresh} tintColor={themes[theme].auxiliaryText} /> + } /> <NavBottomFAB y={this.y} onPress={this.jumpToBottom} isThread={!!tmid} /> </> diff --git a/app/views/RoomView/LoadMore/LoadMore.stories.js b/app/views/RoomView/LoadMore/LoadMore.stories.js index a9d5c46053..eb719646bd 100644 --- a/app/views/RoomView/LoadMore/LoadMore.stories.js +++ b/app/views/RoomView/LoadMore/LoadMore.stories.js @@ -5,11 +5,13 @@ import { storiesOf } from '@storybook/react-native'; import { longText } from '../../../../storybook/utils'; import { ThemeContext } from '../../../theme'; -import { - Message, MessageDecorator, StoryProvider -} from '../../../../storybook/stories/Message'; +import { Message, MessageDecorator, StoryProvider } from '../../../../storybook/stories/Message'; import { themes } from '../../../constants/colors'; -import { MESSAGE_TYPE_LOAD_MORE, MESSAGE_TYPE_LOAD_NEXT_CHUNK, MESSAGE_TYPE_LOAD_PREVIOUS_CHUNK } from '../../../constants/messageTypeLoad'; +import { + MESSAGE_TYPE_LOAD_MORE, + MESSAGE_TYPE_LOAD_NEXT_CHUNK, + MESSAGE_TYPE_LOAD_PREVIOUS_CHUNK +} from '../../../constants/messageTypeLoad'; import LoadMore from './index'; const stories = storiesOf('LoadMore', module); @@ -27,9 +29,7 @@ stories.add('basic', () => ( )); const ThemeStory = ({ theme }) => ( - <ThemeContext.Provider - value={{ theme }} - > + <ThemeContext.Provider value={{ theme }}> <ScrollView style={{ backgroundColor: themes[theme].backgroundColor }}> <LoadMore load={load} type={MESSAGE_TYPE_LOAD_PREVIOUS_CHUNK} /> <Message msg='Hey!' theme={theme} /> @@ -59,4 +59,3 @@ stories .addDecorator(StoryProvider) .addDecorator(MessageDecorator) .add('black theme', () => <ThemeStory theme='black' />); - diff --git a/app/views/RoomView/LoadMore/index.js b/app/views/RoomView/LoadMore/index.js index 487476f903..3c87461d56 100644 --- a/app/views/RoomView/LoadMore/index.js +++ b/app/views/RoomView/LoadMore/index.js @@ -25,7 +25,7 @@ const LoadMore = ({ load, type, runOnRender }) => { const { theme } = useTheme(); const [loading, setLoading] = useState(false); - const handleLoad = useCallback(async() => { + const handleLoad = useCallback(async () => { try { if (loading) { return; @@ -52,17 +52,12 @@ const LoadMore = ({ load, type, runOnRender }) => { } return ( - <Touch - onPress={handleLoad} - style={styles.button} - theme={theme} - enabled={!loading} - > - { - loading - ? <ActivityIndicator color={themes[theme].auxiliaryText} /> - : <Text style={[styles.text, { color: themes[theme].titleText }]}>{I18n.t(text)}</Text> - } + <Touch onPress={handleLoad} style={styles.button} theme={theme} enabled={!loading}> + {loading ? ( + <ActivityIndicator color={themes[theme].auxiliaryText} /> + ) : ( + <Text style={[styles.text, { color: themes[theme].titleText }]}>{I18n.t(text)}</Text> + )} </Touch> ); }; diff --git a/app/views/RoomView/ReactionPicker.js b/app/views/RoomView/ReactionPicker.js index 052ad26762..892b2e43a4 100644 --- a/app/views/RoomView/ReactionPicker.js +++ b/app/views/RoomView/ReactionPicker.js @@ -37,51 +37,45 @@ class ReactionPicker extends React.Component { // to set reactions, we need shortname type const { onEmojiSelected, message } = this.props; onEmojiSelected(shortname || emoji, message.id); - } + }; render() { - const { - width, height, show, baseUrl, reactionClose, isMasterDetail, theme - } = this.props; + const { width, height, show, baseUrl, reactionClose, isMasterDetail, theme } = this.props; let widthStyle = width - margin; - let heightStyle = Math.min(width, height) - (margin * 2); + let heightStyle = Math.min(width, height) - margin * 2; if (isMasterDetail) { widthStyle = maxSize; heightStyle = maxSize; } - return show - ? ( - <Modal - isVisible={show} - style={{ alignItems: 'center' }} - onBackdropPress={reactionClose} - onBackButtonPress={reactionClose} - animationIn='fadeIn' - animationOut='fadeOut' - backdropOpacity={themes[theme].backdropOpacity} - > - <View - style={[ - styles.reactionPickerContainer, - { - width: widthStyle, - height: heightStyle - } - ]} - testID='reaction-picker' - > - <EmojiPicker - // tabEmojiStyle={tabEmojiStyle} - onEmojiSelected={this.onEmojiSelected} - baseUrl={baseUrl} - /> - </View> - </Modal> - ) - : null; + return show ? ( + <Modal + isVisible={show} + style={{ alignItems: 'center' }} + onBackdropPress={reactionClose} + onBackButtonPress={reactionClose} + animationIn='fadeIn' + animationOut='fadeOut' + backdropOpacity={themes[theme].backdropOpacity}> + <View + style={[ + styles.reactionPickerContainer, + { + width: widthStyle, + height: heightStyle + } + ]} + testID='reaction-picker'> + <EmojiPicker + // tabEmojiStyle={tabEmojiStyle} + onEmojiSelected={this.onEmojiSelected} + baseUrl={baseUrl} + /> + </View> + </Modal> + ) : null; } } diff --git a/app/views/RoomView/RightButtons.js b/app/views/RoomView/RightButtons.js index 07ccc3888d..70e18bd68a 100644 --- a/app/views/RoomView/RightButtons.js +++ b/app/views/RoomView/RightButtons.js @@ -41,7 +41,7 @@ class RightButtonsContainer extends Component { const threadRecord = await db.get('messages').find(tmid); this.observeThread(threadRecord); } catch (e) { - console.log('Can\'t find message to observe.'); + console.log("Can't find message to observe."); } } if (rid) { @@ -50,15 +50,13 @@ class RightButtonsContainer extends Component { const subRecord = await subCollection.find(rid); this.observeSubscription(subRecord); } catch (e) { - console.log('Can\'t find subscription to observe.'); + console.log("Can't find subscription to observe."); } } } shouldComponentUpdate(nextProps, nextState) { - const { - isFollowingThread, tunread, tunreadUser, tunreadGroup - } = this.state; + const { isFollowingThread, tunread, tunreadUser, tunreadGroup } = this.state; const { teamId } = this.props; if (nextProps.teamId !== teamId) { return true; @@ -87,40 +85,36 @@ class RightButtonsContainer extends Component { } } - observeThread = (threadRecord) => { + observeThread = threadRecord => { const threadObservable = threadRecord.observe(); - this.threadSubscription = threadObservable - .subscribe(thread => this.updateThread(thread)); - } + this.threadSubscription = threadObservable.subscribe(thread => this.updateThread(thread)); + }; - updateThread = (thread) => { + updateThread = thread => { const { userId } = this.props; this.setState({ isFollowingThread: thread.replies && !!thread.replies.find(t => t === userId) }); - } + }; - observeSubscription = (subRecord) => { + observeSubscription = subRecord => { const subObservable = subRecord.observe(); - this.subSubscription = subObservable - .subscribe((sub) => { - this.updateSubscription(sub); - }); - } + this.subSubscription = subObservable.subscribe(sub => { + this.updateSubscription(sub); + }); + }; - updateSubscription = (sub) => { + updateSubscription = sub => { this.setState({ tunread: sub?.tunread, tunreadUser: sub?.tunreadUser, tunreadGroup: sub?.tunreadGroup }); - } + }; goTeamChannels = () => { logEvent(events.ROOM_GO_TEAM_CHANNELS); - const { - navigation, isMasterDetail, teamId - } = this.props; + const { navigation, isMasterDetail, teamId } = this.props; if (isMasterDetail) { navigation.navigate('ModalStackNavigator', { screen: 'TeamChannelsView', @@ -129,31 +123,27 @@ class RightButtonsContainer extends Component { } else { navigation.navigate('TeamChannelsView', { teamId }); } - } + }; goThreadsView = () => { logEvent(events.ROOM_GO_THREADS); - const { - rid, t, navigation, isMasterDetail - } = this.props; + const { rid, t, navigation, isMasterDetail } = this.props; if (isMasterDetail) { navigation.navigate('ModalStackNavigator', { screen: 'ThreadMessagesView', params: { rid, t } }); } else { navigation.navigate('ThreadMessagesView', { rid, t }); } - } + }; goSearchView = () => { logEvent(events.ROOM_GO_SEARCH); - const { - rid, t, navigation, isMasterDetail - } = this.props; + const { rid, t, navigation, isMasterDetail } = this.props; if (isMasterDetail) { navigation.navigate('ModalStackNavigator', { screen: 'SearchMessagesView', params: { rid, showCloseModal: true } }); } else { navigation.navigate('SearchMessagesView', { rid, t }); } - } + }; toggleFollowThread = () => { logEvent(events.ROOM_TOGGLE_FOLLOW_THREADS); @@ -162,15 +152,11 @@ class RightButtonsContainer extends Component { if (toggleFollowThread) { toggleFollowThread(isFollowingThread); } - } + }; render() { - const { - isFollowingThread, tunread, tunreadUser, tunreadGroup - } = this.state; - const { - t, tmid, threadsEnabled, teamId, joined - } = this.props; + const { isFollowingThread, tunread, tunreadUser, tunreadGroup } = this.state; + const { t, tmid, threadsEnabled, teamId, joined } = this.props; if (t === 'l') { return null; } @@ -188,31 +174,17 @@ class RightButtonsContainer extends Component { return ( <HeaderButton.Container> {isTeamRoom({ teamId, joined }) ? ( - <HeaderButton.Item - iconName='channel-public' - onPress={this.goTeamChannels} - testID='room-view-header-team-channels' - /> + <HeaderButton.Item iconName='channel-public' onPress={this.goTeamChannels} testID='room-view-header-team-channels' /> ) : null} {threadsEnabled ? ( <HeaderButton.Item iconName='threads' onPress={this.goThreadsView} testID='room-view-header-threads' - badge={() => ( - <HeaderButton.Badge - tunread={tunread} - tunreadUser={tunreadUser} - tunreadGroup={tunreadGroup} - /> - )} + badge={() => <HeaderButton.Badge tunread={tunread} tunreadUser={tunreadUser} tunreadGroup={tunreadGroup} />} /> ) : null} - <HeaderButton.Item - iconName='search' - onPress={this.goSearchView} - testID='room-view-search' - /> + <HeaderButton.Item iconName='search' onPress={this.goSearchView} testID='room-view-search' /> </HeaderButton.Container> ); } diff --git a/app/views/RoomView/UploadProgress.js b/app/views/RoomView/UploadProgress.js index f9887a01e7..9fc5595bf2 100644 --- a/app/views/RoomView/UploadProgress.js +++ b/app/views/RoomView/UploadProgress.js @@ -1,7 +1,5 @@ import React, { Component } from 'react'; -import { - ScrollView, StyleSheet, Text, TouchableOpacity, View -} from 'react-native'; +import { ScrollView, StyleSheet, Text, TouchableOpacity, View } from 'react-native'; import PropTypes from 'prop-types'; import { Q } from '@nozbe/watermelondb'; @@ -64,7 +62,7 @@ class UploadProgress extends Component { token: PropTypes.string.isRequired }), baseUrl: PropTypes.string.isRequired - } + }; constructor(props) { super(props); @@ -88,37 +86,33 @@ class UploadProgress extends Component { init = () => { const { rid } = this.props; - if (!rid) { return; } + if (!rid) { + return; + } const db = database.active; - this.uploadsObservable = db.collections - .get('uploads') - .query( - Q.where('rid', rid) - ) - .observeWithColumns(['progress', 'error']); - - this.uploadsSubscription = this.uploadsObservable - .subscribe((uploads) => { - if (this.mounted) { - this.setState({ uploads }); - } else { - this.state.uploads = uploads; - } - if (!this.ranInitialUploadCheck) { - this.uploadCheck(); - } - }); - } + this.uploadsObservable = db.collections.get('uploads').query(Q.where('rid', rid)).observeWithColumns(['progress', 'error']); + + this.uploadsSubscription = this.uploadsObservable.subscribe(uploads => { + if (this.mounted) { + this.setState({ uploads }); + } else { + this.state.uploads = uploads; + } + if (!this.ranInitialUploadCheck) { + this.uploadCheck(); + } + }); + }; uploadCheck = () => { this.ranInitialUploadCheck = true; const { uploads } = this.state; - uploads.forEach(async(u) => { + uploads.forEach(async u => { if (!RocketChat.isUploadActive(u.path)) { try { const db = database.active; - await db.action(async() => { + await db.action(async () => { await u.update(() => { u.error = true; }); @@ -128,33 +122,33 @@ class UploadProgress extends Component { } } }); - } + }; - deleteUpload = async(item) => { + deleteUpload = async item => { try { const db = database.active; - await db.action(async() => { + await db.action(async () => { await item.destroyPermanently(); }); } catch (e) { log(e); } - } + }; - cancelUpload = async(item) => { + cancelUpload = async item => { try { await RocketChat.cancelUpload(item); } catch (e) { log(e); } - } + }; - tryAgain = async(item) => { + tryAgain = async item => { const { rid, baseUrl: server, user } = this.props; try { const db = database.active; - await db.action(async() => { + await db.action(async () => { await item.update(() => { item.error = false; }); @@ -163,30 +157,35 @@ class UploadProgress extends Component { } catch (e) { log(e); } - } + }; - renderItemContent = (item) => { + renderItemContent = item => { const { width, theme } = this.props; if (!item.error) { - return ( - [ - <View key='row' style={styles.row}> - <CustomIcon name='attach' size={20} color={themes[theme].auxiliaryText} /> - <Text style={[styles.descriptionContainer, styles.descriptionText, { color: themes[theme].auxiliaryText }]} numberOfLines={1}> - {I18n.t('Uploading')} {item.name} - </Text> - <CustomIcon name='close' size={20} color={themes[theme].auxiliaryText} onPress={() => this.cancelUpload(item)} /> - </View>, - <View key='progress' style={[styles.progress, { width: (width * item.progress) / 100, backgroundColor: themes[theme].tintColor }]} /> - ] - ); + return [ + <View key='row' style={styles.row}> + <CustomIcon name='attach' size={20} color={themes[theme].auxiliaryText} /> + <Text + style={[styles.descriptionContainer, styles.descriptionText, { color: themes[theme].auxiliaryText }]} + numberOfLines={1}> + {I18n.t('Uploading')} {item.name} + </Text> + <CustomIcon name='close' size={20} color={themes[theme].auxiliaryText} onPress={() => this.cancelUpload(item)} /> + </View>, + <View + key='progress' + style={[styles.progress, { width: (width * item.progress) / 100, backgroundColor: themes[theme].tintColor }]} + /> + ]; } return ( <View style={styles.row}> <CustomIcon name='warning' size={20} color={themes[theme].dangerColor} /> <View style={styles.descriptionContainer}> - <Text style={[styles.descriptionText, { color: themes[theme].auxiliaryText }]} numberOfLines={1}>{I18n.t('Error_uploading')} {item.name}</Text> + <Text style={[styles.descriptionText, { color: themes[theme].auxiliaryText }]} numberOfLines={1}> + {I18n.t('Error_uploading')} {item.name} + </Text> <TouchableOpacity onPress={() => this.tryAgain(item)}> <Text style={[styles.tryAgainButtonText, { color: themes[theme].tintColor }]}>{I18n.t('Try_again')}</Text> </TouchableOpacity> @@ -194,7 +193,7 @@ class UploadProgress extends Component { <CustomIcon name='close' size={20} color={themes[theme].auxiliaryText} onPress={() => this.deleteUpload(item)} /> </View> ); - } + }; // TODO: transform into stateless and update based on its own observable changes renderItem = (item, index) => { @@ -210,20 +209,15 @@ class UploadProgress extends Component { backgroundColor: themes[theme].chatComponentBackground, borderColor: themes[theme].borderColor } - ]} - > + ]}> {this.renderItemContent(item)} </View> ); - } + }; render() { const { uploads } = this.state; - return ( - <ScrollView style={styles.container}> - {uploads.map((item, i) => this.renderItem(item, i))} - </ScrollView> - ); + return <ScrollView style={styles.container}>{uploads.map((item, i) => this.renderItem(item, i))}</ScrollView>; } } diff --git a/app/views/RoomView/index.js b/app/views/RoomView/index.js index 53951d75d2..7cb4179a7e 100644 --- a/app/views/RoomView/index.js +++ b/app/views/RoomView/index.js @@ -10,9 +10,7 @@ import { dequal } from 'dequal'; import { withSafeAreaInsets } from 'react-native-safe-area-context'; import Touch from '../../utils/touch'; -import { - replyBroadcast as replyBroadcastAction -} from '../../actions/messages'; +import { replyBroadcast as replyBroadcastAction } from '../../actions/messages'; import database from '../../lib/database'; import RocketChat from '../../lib/rocketchat'; import Message from '../../containers/message'; @@ -29,9 +27,7 @@ import { MESSAGE_TYPE_ANY_LOAD, MESSAGE_TYPE_LOAD_MORE } from '../../constants/m import debounce from '../../utils/debounce'; import ReactionsModal from '../../containers/ReactionsModal'; import { LISTENER } from '../../containers/Toast'; -import { - getBadgeColor, isBlocked, isTeamRoom, makeThreadName -} from '../../utils/room'; +import { getBadgeColor, isBlocked, isTeamRoom, makeThreadName } from '../../utils/room'; import { isReadOnly } from '../../utils/isReadOnly'; import { isIOS, isTablet } from '../../utils/deviceInfo'; import { showErrorAlert } from '../../utils/info'; @@ -83,7 +79,28 @@ const stateAttrsUpdate = [ 'member', 'showingBlockingLoader' ]; -const roomAttrsUpdate = ['f', 'ro', 'blocked', 'blocker', 'archived', 'tunread', 'muted', 'ignored', 'jitsiTimeout', 'announcement', 'sysMes', 'topic', 'name', 'fname', 'roles', 'bannerClosed', 'visitor', 'joinCodeRequired', 'teamMain', 'teamId']; +const roomAttrsUpdate = [ + 'f', + 'ro', + 'blocked', + 'blocker', + 'archived', + 'tunread', + 'muted', + 'ignored', + 'jitsiTimeout', + 'announcement', + 'sysMes', + 'topic', + 'name', + 'fname', + 'roles', + 'bannerClosed', + 'visitor', + 'joinCodeRequired', + 'teamMain', + 'teamId' +]; class RoomView extends React.Component { static propTypes = { @@ -114,8 +131,8 @@ class RoomView extends React.Component { constructor(props) { super(props); - console.time(`${ this.constructor.name } init`); - console.time(`${ this.constructor.name } mount`); + console.time(`${this.constructor.name} init`); + console.time(`${this.constructor.name} mount`); this.rid = props.route.params?.rid; this.t = props.route.params?.t; this.tmid = props.route.params?.tmid; @@ -124,7 +141,11 @@ class RoomView extends React.Component { const fname = props.route.params?.fname; const prid = props.route.params?.prid; const room = props.route.params?.room ?? { - rid: this.rid, t: this.t, name, fname, prid + rid: this.rid, + t: this.t, + name, + fname, + prid }; this.jumpToMessageId = props.route.params?.jumpToMessageId; const roomUserId = props.route.params?.roomUserId ?? RocketChat.getUidDirectMessage(room); @@ -167,7 +188,7 @@ class RoomView extends React.Component { if (this.rid && !this.tmid) { this.sub = new RoomClass(this.rid); } - console.timeEnd(`${ this.constructor.name } init`); + console.timeEnd(`${this.constructor.name} init`); } componentDidMount() { @@ -195,15 +216,13 @@ class RoomView extends React.Component { EventEmitter.addEventListener(KEY_COMMAND, this.handleCommands); } EventEmitter.addEventListener('ROOM_REMOVED', this.handleRoomRemoved); - console.timeEnd(`${ this.constructor.name } mount`); + console.timeEnd(`${this.constructor.name} mount`); } shouldComponentUpdate(nextProps, nextState) { const { state } = this; const { roomUpdate, member } = state; - const { - appState, theme, insets, route - } = this.props; + const { appState, theme, insets, route } = this.props; if (theme !== nextProps.theme) { return true; } @@ -252,10 +271,16 @@ class RoomView extends React.Component { this.setHeader(); } } - if ((roomUpdate.teamMain !== prevState.roomUpdate.teamMain) || (roomUpdate.teamId !== prevState.roomUpdate.teamId)) { + if (roomUpdate.teamMain !== prevState.roomUpdate.teamMain || roomUpdate.teamId !== prevState.roomUpdate.teamId) { this.setHeader(); } - if (((roomUpdate.fname !== prevState.roomUpdate.fname) || (roomUpdate.name !== prevState.roomUpdate.name) || (roomUpdate.teamMain !== prevState.roomUpdate.teamMain) || (roomUpdate.teamId !== prevState.roomUpdate.teamId)) && !this.tmid) { + if ( + (roomUpdate.fname !== prevState.roomUpdate.fname || + roomUpdate.name !== prevState.roomUpdate.name || + roomUpdate.teamMain !== prevState.roomUpdate.teamMain || + roomUpdate.teamId !== prevState.roomUpdate.teamId) && + !this.tmid + ) { this.setHeader(); } if (insets.left !== prevProps.insets.left || insets.right !== prevProps.insets.right) { @@ -283,8 +308,8 @@ class RoomView extends React.Component { } if (obj) { try { - await db.action(async() => { - await obj.update((r) => { + await db.action(async () => { + await obj.update(r => { r.draftMessage = text; }); }); @@ -311,7 +336,7 @@ class RoomView extends React.Component { EventEmitter.removeListener(KEY_COMMAND, this.handleCommands); } EventEmitter.removeListener('ROOM_REMOVED', this.handleRoomRemoved); - console.countReset(`${ this.constructor.name }.render calls`); + console.countReset(`${this.constructor.name}.render calls`); } get isOmnichannel() { @@ -320,12 +345,8 @@ class RoomView extends React.Component { } setHeader = () => { - const { - room, unreadsCount, roomUserId, joined - } = this.state; - const { - navigation, isMasterDetail, theme, baseUrl, user, insets, route - } = this.props; + const { room, unreadsCount, roomUserId, joined } = this.state; + const { navigation, isMasterDetail, theme, baseUrl, user, insets, route } = this.props; const { rid, tmid } = this; const prid = room?.prid; const isGroupChat = RocketChat.isGroupChat(room); @@ -392,7 +413,7 @@ class RoomView extends React.Component { visitor={visitor} isGroupChat={isGroupChat} onPress={this.goRoomActionsView} - testID={`room-view-title-${ title }`} + testID={`room-view-title-${title}`} /> ), headerRight: () => ( @@ -408,9 +429,9 @@ class RoomView extends React.Component { /> ) }); - } + }; - goRoomActionsView = (screen) => { + goRoomActionsView = screen => { logEvent(events.ROOM_GO_RA); const { room, member } = this.state; const { navigation, isMasterDetail } = this.props; @@ -418,24 +439,31 @@ class RoomView extends React.Component { navigation.navigate('ModalStackNavigator', { screen: screen ?? 'RoomActionsView', params: { - rid: this.rid, t: this.t, room, member, showCloseModal: !!screen + rid: this.rid, + t: this.t, + room, + member, + showCloseModal: !!screen } }); } else { navigation.navigate('RoomActionsView', { - rid: this.rid, t: this.t, room, member + rid: this.rid, + t: this.t, + room, + member }); } - } + }; - setReadOnly = async() => { + setReadOnly = async () => { const { room } = this.state; const { user } = this.props; const readOnly = await isReadOnly(room, user); this.setState({ readOnly }); - } + }; - init = async() => { + init = async () => { try { this.setState({ loading: true }); const { room, joined } = this.state; @@ -469,9 +497,9 @@ class RoomView extends React.Component { }, 300); } } - } + }; - getRoomMember = async() => { + getRoomMember = async () => { const { room } = this.state; const { t } = room; @@ -490,9 +518,9 @@ class RoomView extends React.Component { } return {}; - } + }; - findAndObserveRoom = async(rid) => { + findAndObserveRoom = async rid => { try { const db = database.active; const subCollection = await db.get('subscriptions'); @@ -519,37 +547,36 @@ class RoomView extends React.Component { } } } - } + }; - unsubscribe = async() => { + unsubscribe = async () => { if (this.sub && this.sub.unsubscribe) { await this.sub.unsubscribe(); } delete this.sub; - } + }; - observeRoom = (room) => { + observeRoom = room => { const observable = room.observe(); - this.subSubscription = observable - .subscribe((changes) => { - const roomUpdate = roomAttrsUpdate.reduce((ret, attr) => { - ret[attr] = changes[attr]; - return ret; - }, {}); - if (this.mounted) { - this.internalSetState({ room: changes, roomUpdate }); - } else { - this.state.room = changes; - this.state.roomUpdate = roomUpdate; - } - }); - } + this.subSubscription = observable.subscribe(changes => { + const roomUpdate = roomAttrsUpdate.reduce((ret, attr) => { + ret[attr] = changes[attr]; + return ret; + }, {}); + if (this.mounted) { + this.internalSetState({ room: changes, roomUpdate }); + } else { + this.state.room = changes; + this.state.roomUpdate = roomUpdate; + } + }); + }; - errorActionsShow = (message) => { + errorActionsShow = message => { this.messageErrorActions?.showMessageErrorActions(message); - } + }; - onEditInit = (message) => { + onEditInit = message => { const newMessage = { id: message.id, subscription: { @@ -558,49 +585,51 @@ class RoomView extends React.Component { msg: message?.attachments?.[0]?.description || message.msg }; this.setState({ selectedMessage: newMessage, editing: true }); - } + }; onEditCancel = () => { this.setState({ selectedMessage: {}, editing: false }); - } + }; - onEditRequest = async(message) => { + onEditRequest = async message => { this.setState({ selectedMessage: {}, editing: false }); try { await RocketChat.editMessage(message); } catch (e) { log(e); } - } + }; onReplyInit = (message, mention) => { this.setState({ - selectedMessage: message, replying: true, replyWithMention: mention + selectedMessage: message, + replying: true, + replyWithMention: mention }); - } + }; onReplyCancel = () => { this.setState({ selectedMessage: {}, replying: false, replyWithMention: false }); - } + }; - onReactionInit = (message) => { + onReactionInit = message => { this.setState({ selectedMessage: message, reacting: true }); - } + }; onReactionClose = () => { this.setState({ selectedMessage: {}, reacting: false }); - } + }; - onMessageLongPress = (message) => { + onMessageLongPress = message => { this.messageActions?.showMessageActions(message); - } + }; - showAttachment = (attachment) => { + showAttachment = attachment => { const { navigation } = this.props; navigation.navigate('AttachmentView', { attachment }); - } + }; - onReactionPress = async(shortname, messageId) => { + onReactionPress = async (shortname, messageId) => { try { await RocketChat.setReaction(shortname, messageId); this.onReactionClose(); @@ -610,14 +639,14 @@ class RoomView extends React.Component { } }; - onReactionLongPress = (message) => { + onReactionLongPress = message => { this.setState({ selectedMessage: message, reactionsModalVisible: true }); Haptics.impactAsync(Haptics.ImpactFeedbackStyle.Light); - } + }; onCloseReactionsModal = () => { this.setState({ selectedMessage: {}, reactionsModalVisible: false }); - } + }; onEncryptedPress = () => { logEvent(events.ROOM_ENCRYPTED_PRESS); @@ -629,28 +658,31 @@ class RoomView extends React.Component { return navigation.navigate('ModalStackNavigator', screen); } navigation.navigate('E2ESaveYourPasswordStackNavigator', screen); - } + }; - onDiscussionPress = debounce((item) => { - const { navigation } = this.props; - navigation.push('RoomView', { - rid: item.drid, prid: item.rid, name: item.msg, t: 'p' - }); - }, 1000, true) + onDiscussionPress = debounce( + item => { + const { navigation } = this.props; + navigation.push('RoomView', { + rid: item.drid, + prid: item.rid, + name: item.msg, + t: 'p' + }); + }, + 1000, + true + ); // eslint-disable-next-line react/sort-comp - updateUnreadCount = async() => { + updateUnreadCount = async () => { const db = database.active; const observable = await db.collections .get('subscriptions') - .query( - Q.where('archived', false), - Q.where('open', true), - Q.where('rid', Q.notEq(this.rid)) - ) + .query(Q.where('archived', false), Q.where('open', true), Q.where('rid', Q.notEq(this.rid))) .observeWithColumns(['unread']); - this.queryUnreads = observable.subscribe((data) => { + this.queryUnreads = observable.subscribe(data => { const { unreadsCount } = this.state; const newUnreadsCount = data.filter(s => s.unread > 0).reduce((a, b) => a + (b.unread || 0), 0); if (unreadsCount !== newUnreadsCount) { @@ -659,9 +691,9 @@ class RoomView extends React.Component { }); }; - onThreadPress = debounce(item => this.navToThread(item), 1000, true) + onThreadPress = debounce(item => this.navToThread(item), 1000, true); - shouldNavigateToRoom = (message) => { + shouldNavigateToRoom = message => { if (message.tmid && message.tmid === this.tmid) { return false; } @@ -669,9 +701,9 @@ class RoomView extends React.Component { return false; } return true; - } + }; - jumpToMessageByUrl = async(messageUrl) => { + jumpToMessageByUrl = async messageUrl => { if (!messageUrl) { return; } @@ -685,9 +717,9 @@ class RoomView extends React.Component { this.setState({ showingBlockingLoader: false }); log(e); } - } + }; - jumpToMessage = async(messageId) => { + jumpToMessage = async messageId => { try { this.setState({ showingBlockingLoader: true }); const message = await RoomServices.getMessageInfo(messageId); @@ -710,10 +742,7 @@ class RoomView extends React.Component { if (message.fromServer && !message.tmid) { await RocketChat.loadSurroundingMessages({ messageId, rid: this.rid }); } - await Promise.race([ - this.list.current.jumpToMessage(message.id), - new Promise(res => setTimeout(res, 5000)) - ]); + await Promise.race([this.list.current.jumpToMessage(message.id), new Promise(res => setTimeout(res, 5000))]); this.list.current.cancelJumpToMessage(); } } catch (e) { @@ -721,32 +750,33 @@ class RoomView extends React.Component { } finally { this.setState({ showingBlockingLoader: false }); } - } + }; - replyBroadcast = (message) => { + replyBroadcast = message => { const { replyBroadcast } = this.props; replyBroadcast(message); - } + }; handleConnected = () => { this.init(); EventEmitter.removeListener('connected', this.handleConnected); - } + }; handleRoomRemoved = ({ rid }) => { const { room } = this.state; if (rid === this.rid) { Navigation.navigate('RoomsListView'); - !this.isOmnichannel && showErrorAlert(I18n.t('You_were_removed_from_channel', { channel: RocketChat.getRoomTitle(room) }), I18n.t('Oops')); + !this.isOmnichannel && + showErrorAlert(I18n.t('You_were_removed_from_channel', { channel: RocketChat.getRoomTitle(room) }), I18n.t('Oops')); } - } + }; internalSetState = (...args) => { if (!this.mounted) { return; } this.setState(...args); - } + }; sendMessage = (message, tmid, tshow) => { logEvent(events.ROOM_SEND_MESSAGE); @@ -760,14 +790,14 @@ class RoomView extends React.Component { }); }; - getCustomEmoji = (name) => { + getCustomEmoji = name => { const { customEmojis } = this.props; const emoji = customEmojis[name]; if (emoji) { return emoji; } return null; - } + }; setLastOpen = lastOpen => this.setState({ lastOpen }); @@ -775,9 +805,9 @@ class RoomView extends React.Component { this.internalSetState({ joined: true }); - } + }; - joinRoom = async() => { + joinRoom = async () => { logEvent(events.ROOM_JOIN); try { const { room } = this.state; @@ -797,28 +827,28 @@ class RoomView extends React.Component { } catch (e) { log(e); } - } + }; - getThreadName = (tmid, messageId) => getThreadName(this.rid, tmid, messageId) + getThreadName = (tmid, messageId) => getThreadName(this.rid, tmid, messageId); - toggleFollowThread = async(isFollowingThread, tmid) => { + toggleFollowThread = async (isFollowingThread, tmid) => { try { await RocketChat.toggleFollowMessage(tmid ?? this.tmid, !isFollowingThread); EventEmitter.emit(LISTENER, { message: isFollowingThread ? I18n.t('Unfollowed_thread') : I18n.t('Following_thread') }); } catch (e) { log(e); } - } + }; - getBadgeColor = (messageId) => { + getBadgeColor = messageId => { const { room } = this.state; const { theme } = this.props; return getBadgeColor({ subscription: room, theme, messageId }); - } + }; - navToRoomInfo = (navParam) => { + navToRoomInfo = navParam => { const { navigation, user, isMasterDetail } = this.props; - logEvent(events[`ROOM_GO_${ navParam.t === 'd' ? 'USER' : 'ROOM' }_INFO`]); + logEvent(events[`ROOM_GO_${navParam.t === 'd' ? 'USER' : 'ROOM'}_INFO`]); if (navParam.rid === user.id) { return; } @@ -828,9 +858,9 @@ class RoomView extends React.Component { } else { navigation.navigate('RoomInfoView', navParam); } - } + }; - navToThread = async(item) => { + navToThread = async item => { const { roomUserId } = this.state; const { navigation } = this.props; @@ -843,24 +873,36 @@ class RoomView extends React.Component { name = I18n.t('Encrypted_message'); } return navigation.push('RoomView', { - rid: this.rid, tmid: item.tmid, name, t: 'thread', roomUserId, jumpToMessageId: item.id + rid: this.rid, + tmid: item.tmid, + name, + t: 'thread', + roomUserId, + jumpToMessageId: item.id }); } if (item.tlm) { return navigation.push('RoomView', { - rid: this.rid, tmid: item.id, name: makeThreadName(item), t: 'thread', roomUserId + rid: this.rid, + tmid: item.id, + name: makeThreadName(item), + t: 'thread', + roomUserId }); } - } + }; - navToRoom = async(message) => { + navToRoom = async message => { const { navigation, isMasterDetail } = this.props; const roomInfo = await getRoomInfo(message.rid); return goRoom({ - item: roomInfo, isMasterDetail, navigationMethod: navigation.push, jumpToMessageId: message.id + item: roomInfo, + isMasterDetail, + navigationMethod: navigation.push, + jumpToMessageId: message.id }); - } + }; callJitsi = () => { const { room } = this.state; @@ -890,29 +932,28 @@ class RoomView extends React.Component { } } } - } + }; - blockAction = ({ - actionId, appId, value, blockId, rid, mid - }) => RocketChat.triggerBlockAction({ - blockId, - actionId, - value, - mid, - rid, - appId, - container: { - type: CONTAINER_TYPES.MESSAGE, - id: mid - } - }); + blockAction = ({ actionId, appId, value, blockId, rid, mid }) => + RocketChat.triggerBlockAction({ + blockId, + actionId, + value, + mid, + rid, + appId, + container: { + type: CONTAINER_TYPES.MESSAGE, + id: mid + } + }); - closeBanner = async() => { + closeBanner = async () => { const { room } = this.state; try { const db = database.active; - await db.action(async() => { - await room.update((r) => { + await db.action(async () => { + await room.update(r => { r.bannerClosed = true; }); }); @@ -921,20 +962,23 @@ class RoomView extends React.Component { } }; - isIgnored = (message) => { + isIgnored = message => { const { room } = this.state; return room?.ignored?.includes?.(message?.u?._id) ?? false; - } + }; - onLoadMoreMessages = loaderItem => RoomServices.getMoreMessages({ - rid: this.rid, tmid: this.tmid, t: this.t, loaderItem - }) + onLoadMoreMessages = loaderItem => + RoomServices.getMoreMessages({ + rid: this.rid, + tmid: this.tmid, + t: this.t, + loaderItem + }); renderItem = (item, previousItem, highlightedMessage) => { const { room, lastOpen, canAutoTranslate } = this.state; - const { - user, Message_GroupingPeriod, Message_TimeFormat, useRealName, baseUrl, Message_Read_Receipt_Enabled, theme - } = this.props; + const { user, Message_GroupingPeriod, Message_TimeFormat, useRealName, baseUrl, Message_Read_Receipt_Enabled, theme } = + this.props; let dateSeparator = null; let showUnreadSeparator = false; @@ -942,9 +986,7 @@ class RoomView extends React.Component { dateSeparator = item.ts; showUnreadSeparator = moment(item.ts).isAfter(lastOpen); } else { - showUnreadSeparator = lastOpen - && moment(item.ts).isSameOrAfter(lastOpen) - && moment(previousItem.ts).isBefore(lastOpen); + showUnreadSeparator = lastOpen && moment(item.ts).isSameOrAfter(lastOpen) && moment(previousItem.ts).isBefore(lastOpen); if (!moment(item.ts).isSame(previousItem.ts, 'day')) { dateSeparator = item.ts; } @@ -952,7 +994,13 @@ class RoomView extends React.Component { let content = null; if (MESSAGE_TYPE_ANY_LOAD.includes(item.t)) { - content = <LoadMore load={() => this.onLoadMoreMessages(item)} type={item.t} runOnRender={item.t === MESSAGE_TYPE_LOAD_MORE && !previousItem} />; + content = ( + <LoadMore + load={() => this.onLoadMoreMessages(item)} + type={item.t} + runOnRender={item.t === MESSAGE_TYPE_LOAD_MORE && !previousItem} + /> + ); } else { content = ( <Message @@ -1000,22 +1048,16 @@ class RoomView extends React.Component { return ( <> {content} - <Separator - ts={dateSeparator} - unread={showUnreadSeparator} - theme={theme} - /> + <Separator ts={dateSeparator} unread={showUnreadSeparator} theme={theme} /> </> ); } return content; - } + }; renderFooter = () => { - const { - joined, room, selectedMessage, editing, replying, replyWithMention, readOnly - } = this.state; + const { joined, room, selectedMessage, editing, replying, replyWithMention, readOnly } = this.state; const { navigation, theme } = this.props; if (!this.rid) { @@ -1024,13 +1066,18 @@ class RoomView extends React.Component { if (!joined && !this.tmid) { return ( <View style={styles.joinRoomContainer} key='room-view-join' testID='room-view-join'> - <Text accessibilityLabel={I18n.t('You_are_in_preview_mode')} style={[styles.previewMode, { color: themes[theme].titleText }]}>{I18n.t('You_are_in_preview_mode')}</Text> + <Text + accessibilityLabel={I18n.t('You_are_in_preview_mode')} + style={[styles.previewMode, { color: themes[theme].titleText }]}> + {I18n.t('You_are_in_preview_mode')} + </Text> <Touch onPress={this.joinRoom} style={[styles.joinRoomButton, { backgroundColor: themes[theme].actionTintColor }]} - theme={theme} - > - <Text style={[styles.joinRoomText, { color: themes[theme].buttonText }]} testID='room-view-join-button'>{I18n.t(this.isOmnichannel ? 'Take_it' : 'Join')}</Text> + theme={theme}> + <Text style={[styles.joinRoomText, { color: themes[theme].buttonText }]} testID='room-view-join-button'> + {I18n.t(this.isOmnichannel ? 'Take_it' : 'Join')} + </Text> </Touch> </View> ); @@ -1038,7 +1085,11 @@ class RoomView extends React.Component { if (readOnly) { return ( <View style={styles.readOnly}> - <Text style={[styles.previewMode, { color: themes[theme].titleText }]} accessibilityLabel={I18n.t('This_room_is_read_only')}>{I18n.t('This_room_is_read_only')}</Text> + <Text + style={[styles.previewMode, { color: themes[theme].titleText }]} + accessibilityLabel={I18n.t('This_room_is_read_only')}> + {I18n.t('This_room_is_read_only')} + </Text> </View> ); } @@ -1077,7 +1128,7 @@ class RoomView extends React.Component { return ( <> <MessageActions - ref={ref => this.messageActions = ref} + ref={ref => (this.messageActions = ref)} tmid={this.tmid} room={room} user={user} @@ -1087,31 +1138,19 @@ class RoomView extends React.Component { onReactionPress={this.onReactionPress} isReadOnly={readOnly} /> - <MessageErrorActions - ref={ref => this.messageErrorActions = ref} - tmid={this.tmid} - /> + <MessageErrorActions ref={ref => (this.messageErrorActions = ref)} tmid={this.tmid} /> </> ); - } + }; render() { - console.count(`${ this.constructor.name }.render calls`); - const { - room, reactionsModalVisible, selectedMessage, loading, reacting, showingBlockingLoader - } = this.state; - const { - user, baseUrl, theme, navigation, Hide_System_Messages, width, height - } = this.props; - const { - rid, t, sysMes, bannerClosed, announcement - } = room; + console.count(`${this.constructor.name}.render calls`); + const { room, reactionsModalVisible, selectedMessage, loading, reacting, showingBlockingLoader } = this.state; + const { user, baseUrl, theme, navigation, Hide_System_Messages, width, height } = this.props; + const { rid, t, sysMes, bannerClosed, announcement } = room; return ( - <SafeAreaView - style={{ backgroundColor: themes[theme].backgroundColor }} - testID='room-view' - > + <SafeAreaView style={{ backgroundColor: themes[theme].backgroundColor }} testID='room-view'> <StatusBar /> <Banner rid={rid} @@ -1156,13 +1195,7 @@ class RoomView extends React.Component { onClose={this.onCloseReactionsModal} getCustomEmoji={this.getCustomEmoji} /> - <JoinCode - ref={this.joinCode} - onJoin={this.onJoin} - rid={rid} - t={t} - theme={theme} - /> + <JoinCode ref={this.joinCode} onJoin={this.onJoin} rid={rid} t={t} theme={theme} /> <Loading visible={showingBlockingLoader} /> </SafeAreaView> ); diff --git a/app/views/RoomView/services/getMessageInfo.js b/app/views/RoomView/services/getMessageInfo.js index f7f008c468..e922f4e106 100644 --- a/app/views/RoomView/services/getMessageInfo.js +++ b/app/views/RoomView/services/getMessageInfo.js @@ -2,7 +2,7 @@ import { getMessageById } from '../../../lib/database/services/Message'; import { getThreadMessageById } from '../../../lib/database/services/ThreadMessage'; import getSingleMessage from '../../../lib/methods/getSingleMessage'; -const getMessageInfo = async(messageId) => { +const getMessageInfo = async messageId => { let result; result = await getMessageById(messageId); if (result) { diff --git a/app/views/RoomView/services/getMessages.js b/app/views/RoomView/services/getMessages.js index 7e9c03de0c..516f688450 100644 --- a/app/views/RoomView/services/getMessages.js +++ b/app/views/RoomView/services/getMessages.js @@ -1,6 +1,6 @@ import RocketChat from '../../../lib/rocketchat'; -const getMessages = (room) => { +const getMessages = room => { if (room.lastOpen) { return RocketChat.loadMissedMessages(room); } else { diff --git a/app/views/RoomView/services/getMoreMessages.js b/app/views/RoomView/services/getMoreMessages.js index 6d16f69c2d..eaa1d3d904 100644 --- a/app/views/RoomView/services/getMoreMessages.js +++ b/app/views/RoomView/services/getMoreMessages.js @@ -1,18 +1,26 @@ -import { MESSAGE_TYPE_LOAD_MORE, MESSAGE_TYPE_LOAD_NEXT_CHUNK, MESSAGE_TYPE_LOAD_PREVIOUS_CHUNK } from '../../../constants/messageTypeLoad'; +import { + MESSAGE_TYPE_LOAD_MORE, + MESSAGE_TYPE_LOAD_NEXT_CHUNK, + MESSAGE_TYPE_LOAD_PREVIOUS_CHUNK +} from '../../../constants/messageTypeLoad'; import RocketChat from '../../../lib/rocketchat'; -const getMoreMessages = ({ - rid, t, tmid, loaderItem -}) => { +const getMoreMessages = ({ rid, t, tmid, loaderItem }) => { if ([MESSAGE_TYPE_LOAD_MORE, MESSAGE_TYPE_LOAD_PREVIOUS_CHUNK].includes(loaderItem.t)) { return RocketChat.loadMessagesForRoom({ - rid, t, latest: loaderItem.ts, loaderItem + rid, + t, + latest: loaderItem.ts, + loaderItem }); } if (loaderItem.t === MESSAGE_TYPE_LOAD_NEXT_CHUNK) { return RocketChat.loadNextMessages({ - rid, tmid, ts: loaderItem.ts, loaderItem + rid, + tmid, + ts: loaderItem.ts, + loaderItem }); } }; diff --git a/app/views/RoomsListView/Header/Header.js b/app/views/RoomsListView/Header/Header.js index d6a67dc9e0..65aa367927 100644 --- a/app/views/RoomsListView/Header/Header.js +++ b/app/views/RoomsListView/Header/Header.js @@ -1,7 +1,5 @@ import React from 'react'; -import { - StyleSheet, Text, TouchableOpacity, View -} from 'react-native'; +import { StyleSheet, Text, TouchableOpacity, View } from 'react-native'; import PropTypes from 'prop-types'; import TextInput from '../../../presentation/TextInput'; @@ -33,60 +31,79 @@ const styles = StyleSheet.create({ } }); -const Header = React.memo(({ - connecting, connected, isFetching, serverName, server, showServerDropdown, showSearchHeader, theme, onSearchChangeText, onPress -}) => { - const titleColorStyle = { color: themes[theme].headerTitleColor }; - const isLight = theme === 'light'; - const { isLandscape } = useOrientation(); - const scale = isIOS && isLandscape && !isTablet ? 0.8 : 1; - const titleFontSize = 16 * scale; - const subTitleFontSize = 14 * scale; +const Header = React.memo( + ({ + connecting, + connected, + isFetching, + serverName, + server, + showServerDropdown, + showSearchHeader, + theme, + onSearchChangeText, + onPress + }) => { + const titleColorStyle = { color: themes[theme].headerTitleColor }; + const isLight = theme === 'light'; + const { isLandscape } = useOrientation(); + const scale = isIOS && isLandscape && !isTablet ? 0.8 : 1; + const titleFontSize = 16 * scale; + const subTitleFontSize = 14 * scale; - if (showSearchHeader) { + if (showSearchHeader) { + return ( + <View style={styles.container}> + <TextInput + autoFocus + style={[styles.title, isLight && titleColorStyle, { fontSize: titleFontSize }]} + placeholder='Search' + onChangeText={onSearchChangeText} + theme={theme} + testID='rooms-list-view-search-input' + /> + </View> + ); + } + let subtitle; + if (connecting) { + subtitle = I18n.t('Connecting'); + } else if (isFetching) { + subtitle = I18n.t('Updating'); + } else if (!connected) { + subtitle = I18n.t('Waiting_for_network'); + } else { + subtitle = server?.replace(/(^\w+:|^)\/\//, ''); + } return ( <View style={styles.container}> - <TextInput - autoFocus - style={[styles.title, isLight && titleColorStyle, { fontSize: titleFontSize }]} - placeholder='Search' - onChangeText={onSearchChangeText} - theme={theme} - testID='rooms-list-view-search-input' - /> + <TouchableOpacity onPress={onPress} testID='rooms-list-header-server-dropdown-button'> + <View style={styles.button}> + <Text + style={[styles.title, isFetching && styles.serverSmall, titleColorStyle, { fontSize: titleFontSize }]} + numberOfLines={1}> + {serverName} + </Text> + <CustomIcon + name='chevron-down' + color={themes[theme].headerTintColor} + style={[showServerDropdown && styles.upsideDown]} + size={18} + /> + </View> + {subtitle ? ( + <Text + testID='rooms-list-header-server-subtitle' + style={[styles.subtitle, { color: themes[theme].auxiliaryText, fontSize: subTitleFontSize }]} + numberOfLines={1}> + {subtitle} + </Text> + ) : null} + </TouchableOpacity> </View> ); } - let subtitle; - if (connecting) { - subtitle = I18n.t('Connecting'); - } else if (isFetching) { - subtitle = I18n.t('Updating'); - } else if (!connected) { - subtitle = I18n.t('Waiting_for_network'); - } else { - subtitle = server?.replace(/(^\w+:|^)\/\//, ''); - } - return ( - <View style={styles.container}> - <TouchableOpacity - onPress={onPress} - testID='rooms-list-header-server-dropdown-button' - > - <View style={styles.button}> - <Text style={[styles.title, isFetching && styles.serverSmall, titleColorStyle, { fontSize: titleFontSize }]} numberOfLines={1}>{serverName}</Text> - <CustomIcon - name='chevron-down' - color={themes[theme].headerTintColor} - style={[showServerDropdown && styles.upsideDown]} - size={18} - /> - </View> - {subtitle ? <Text testID='rooms-list-header-server-subtitle' style={[styles.subtitle, { color: themes[theme].auxiliaryText, fontSize: subTitleFontSize }]} numberOfLines={1}>{subtitle}</Text> : null} - </TouchableOpacity> - </View> - ); -}); +); Header.propTypes = { showServerDropdown: PropTypes.bool.isRequired, diff --git a/app/views/RoomsListView/Header/index.js b/app/views/RoomsListView/Header/index.js index 25c1705c64..4557b66dcd 100644 --- a/app/views/RoomsListView/Header/index.js +++ b/app/views/RoomsListView/Header/index.js @@ -3,7 +3,10 @@ import PropTypes from 'prop-types'; import { connect } from 'react-redux'; import { - closeServerDropdown, closeSortDropdown, setSearch as setSearchAction, toggleServerDropdown + closeServerDropdown, + closeSortDropdown, + setSearch as setSearchAction, + toggleServerDropdown } from '../../../actions/rooms'; import { withTheme } from '../../../theme'; import EventEmitter from '../../../utils/events'; @@ -27,7 +30,7 @@ class RoomsListHeaderView extends PureComponent { close: PropTypes.func, closeSort: PropTypes.func, setSearch: PropTypes.func - } + }; componentDidMount() { if (isTablet) { @@ -46,18 +49,16 @@ class RoomsListHeaderView extends PureComponent { if (handleCommandOpenServerDropdown(event)) { this.onPress(); } - } + }; - onSearchChangeText = (text) => { + onSearchChangeText = text => { const { setSearch } = this.props; setSearch(text.trim()); - } + }; onPress = () => { logEvent(events.RL_TOGGLE_SERVER_DROPDOWN); - const { - showServerDropdown, showSortDropdown, close, open, closeSort - } = this.props; + const { showServerDropdown, showSortDropdown, close, open, closeSort } = this.props; if (showServerDropdown) { close(); } else if (showSortDropdown) { @@ -68,12 +69,10 @@ class RoomsListHeaderView extends PureComponent { } else { open(); } - } + }; render() { - const { - serverName, showServerDropdown, showSearchHeader, connecting, connected, isFetching, theme, server - } = this.props; + const { serverName, showServerDropdown, showSearchHeader, connecting, connected, isFetching, theme, server } = this.props; return ( <Header diff --git a/app/views/RoomsListView/ListHeader/index.js b/app/views/RoomsListView/ListHeader/index.js index 10272c6cbc..d7d4d23041 100644 --- a/app/views/RoomsListView/ListHeader/index.js +++ b/app/views/RoomsListView/ListHeader/index.js @@ -8,28 +8,17 @@ import { E2E_BANNER_TYPE } from '../../../lib/encryption/constants'; import { themes } from '../../../constants/colors'; import OmnichannelStatus from '../../../ee/omnichannel/containers/OmnichannelStatus'; -const ListHeader = React.memo(({ - searching, - sortBy, - toggleSort, - goEncryption, - goQueue, - queueSize, - inquiryEnabled, - encryptionBanner, - user, - theme -}) => { - const sortTitle = I18n.t('Sorting_by', { key: I18n.t(sortBy === 'alphabetical' ? 'name' : 'activity') }); +const ListHeader = React.memo( + ({ searching, sortBy, toggleSort, goEncryption, goQueue, queueSize, inquiryEnabled, encryptionBanner, user, theme }) => { + const sortTitle = I18n.t('Sorting_by', { key: I18n.t(sortBy === 'alphabetical' ? 'name' : 'activity') }); - if (searching) { - return null; - } + if (searching) { + return null; + } - return ( - <> - {encryptionBanner - ? ( + return ( + <> + {encryptionBanner ? ( <> <List.Item title={ @@ -46,26 +35,26 @@ const ListHeader = React.memo(({ /> <List.Separator /> </> - ) - : null} - <List.Item - title={sortTitle} - left={() => <List.Icon name='sort' />} - color={themes[theme].auxiliaryText} - onPress={toggleSort} - translateTitle={false} - /> - <List.Separator /> - <OmnichannelStatus - searching={searching} - goQueue={goQueue} - inquiryEnabled={inquiryEnabled} - queueSize={queueSize} - user={user} - /> - </> - ); -}); + ) : null} + <List.Item + title={sortTitle} + left={() => <List.Icon name='sort' />} + color={themes[theme].auxiliaryText} + onPress={toggleSort} + translateTitle={false} + /> + <List.Separator /> + <OmnichannelStatus + searching={searching} + goQueue={goQueue} + inquiryEnabled={inquiryEnabled} + queueSize={queueSize} + user={user} + /> + </> + ); + } +); ListHeader.propTypes = { searching: PropTypes.bool, diff --git a/app/views/RoomsListView/ServerDropdown.js b/app/views/RoomsListView/ServerDropdown.js index dc4ab8a292..cec6564f2f 100644 --- a/app/views/RoomsListView/ServerDropdown.js +++ b/app/views/RoomsListView/ServerDropdown.js @@ -1,7 +1,5 @@ import React, { Component } from 'react'; -import { - Animated, Easing, FlatList, Text, TouchableOpacity, TouchableWithoutFeedback, View -} from 'react-native'; +import { Animated, Easing, FlatList, Text, TouchableOpacity, TouchableWithoutFeedback, View } from 'react-native'; import PropTypes from 'prop-types'; import { batch, connect } from 'react-redux'; import { withSafeAreaInsets } from 'react-native-safe-area-context'; @@ -42,7 +40,7 @@ class ServerDropdown extends Component { toggleServerDropdown: PropTypes.func, selectServerRequest: PropTypes.func, initAdd: PropTypes.func - } + }; constructor(props) { super(props); @@ -52,24 +50,18 @@ class ServerDropdown extends Component { async componentDidMount() { const serversDB = database.servers; - const observable = await serversDB.collections - .get('servers') - .query() - .observeWithColumns(['name']); + const observable = await serversDB.collections.get('servers').query().observeWithColumns(['name']); - this.subscription = observable.subscribe((data) => { + this.subscription = observable.subscribe(data => { this.setState({ servers: data }); }); - Animated.timing( - this.animatedValue, - { - toValue: 1, - duration: ANIMATION_DURATION, - easing: Easing.inOut(Easing.quad), - useNativeDriver: true - } - ).start(); + Animated.timing(this.animatedValue, { + toValue: 1, + duration: ANIMATION_DURATION, + easing: Easing.inOut(Easing.quad), + useNativeDriver: true + }).start(); if (isTablet) { EventEmitter.addEventListener(KEY_COMMAND, this.handleCommands); } @@ -97,24 +89,21 @@ class ServerDropdown extends Component { close = () => { const { toggleServerDropdown } = this.props; - Animated.timing( - this.animatedValue, - { - toValue: 0, - duration: ANIMATION_DURATION, - easing: Easing.inOut(Easing.quad), - useNativeDriver: true - } - ).start(() => toggleServerDropdown()); - } - - navToNewServer = (previousServer) => { + Animated.timing(this.animatedValue, { + toValue: 0, + duration: ANIMATION_DURATION, + easing: Easing.inOut(Easing.quad), + useNativeDriver: true + }).start(() => toggleServerDropdown()); + }; + + navToNewServer = previousServer => { const { appStart, initAdd } = this.props; batch(() => { appStart({ root: ROOT_NEW_SERVER }); initAdd(previousServer); }); - } + }; addServer = () => { logEvent(events.RL_ADD_SERVER); @@ -123,16 +112,14 @@ class ServerDropdown extends Component { setTimeout(() => { this.navToNewServer(server); }, ANIMATION_DURATION); - } + }; - select = async(server, version) => { - const { - server: currentServer, selectServerRequest, isMasterDetail - } = this.props; + select = async (server, version) => { + const { server: currentServer, selectServerRequest, isMasterDetail } = this.props; this.close(); if (currentServer !== server) { logEvent(events.RL_CHANGE_SERVER); - const userId = await UserPreferences.getStringAsync(`${ RocketChat.TOKEN_KEY }-${ server }`); + const userId = await UserPreferences.getStringAsync(`${RocketChat.TOKEN_KEY}-${server}`); if (isMasterDetail) { goRoom({ item: {}, isMasterDetail }); } @@ -148,20 +135,21 @@ class ServerDropdown extends Component { selectServerRequest(server, version); } } - } - - remove = server => showConfirmationAlert({ - message: I18n.t('This_will_remove_all_data_from_this_server'), - confirmationText: I18n.t('Delete'), - onPress: async() => { - this.close(); - try { - await RocketChat.removeServer({ server }); - } catch { - // do nothing + }; + + remove = server => + showConfirmationAlert({ + message: I18n.t('This_will_remove_all_data_from_this_server'), + confirmationText: I18n.t('Delete'), + onPress: async () => { + this.close(); + try { + await RocketChat.removeServer({ server }); + } catch { + // do nothing + } } - } - }); + }); handleCommands = ({ event }) => { const { servers } = this.state; @@ -173,7 +161,7 @@ class ServerDropdown extends Component { navigation.navigate('RoomView'); } } - } + }; renderServer = ({ item }) => { const { server, theme } = this.props; @@ -187,13 +175,13 @@ class ServerDropdown extends Component { theme={theme} /> ); - } + }; render() { const { servers } = this.state; const { theme, isMasterDetail, insets } = this.props; const maxRows = 4; - const initialTop = 41 + (Math.min(servers.length, maxRows) * ROW_HEIGHT); + const initialTop = 41 + Math.min(servers.length, maxRows) * ROW_HEIGHT; const statusBarHeight = insets?.top ?? 0; const heightDestination = isMasterDetail ? headerHeight + statusBarHeight : 0; const translateY = this.animatedValue.interpolate({ @@ -207,12 +195,15 @@ class ServerDropdown extends Component { return ( <> <TouchableWithoutFeedback onPress={this.close}> - <Animated.View style={[styles.backdrop, - { - backgroundColor: themes[theme].backdropColor, - opacity: backdropOpacity, - top: heightDestination - }]} + <Animated.View + style={[ + styles.backdrop, + { + backgroundColor: themes[theme].backdropColor, + opacity: backdropOpacity, + top: heightDestination + } + ]} /> </TouchableWithoutFeedback> <Animated.View @@ -224,15 +215,8 @@ class ServerDropdown extends Component { borderColor: themes[theme].separatorColor } ]} - testID='rooms-list-header-server-dropdown' - > - <View - style={[ - styles.dropdownContainerHeader, - styles.serverHeader, - { borderColor: themes[theme].separatorColor } - ]} - > + testID='rooms-list-header-server-dropdown'> + <View style={[styles.dropdownContainerHeader, styles.serverHeader, { borderColor: themes[theme].separatorColor }]}> <Text style={[styles.serverHeaderText, { color: themes[theme].auxiliaryText }]}>{I18n.t('Server')}</Text> <TouchableOpacity onPress={this.addServer} testID='rooms-list-header-server-add'> <Text style={[styles.serverHeaderAdd, { color: themes[theme].tintColor }]}>{I18n.t('Add_Server')}</Text> diff --git a/app/views/RoomsListView/SortDropdown/index.js b/app/views/RoomsListView/SortDropdown/index.js index b81c53f0d3..6a945ff675 100644 --- a/app/views/RoomsListView/SortDropdown/index.js +++ b/app/views/RoomsListView/SortDropdown/index.js @@ -1,7 +1,5 @@ import React, { PureComponent } from 'react'; -import { - Animated, Easing, TouchableWithoutFeedback -} from 'react-native'; +import { Animated, Easing, TouchableWithoutFeedback } from 'react-native'; import PropTypes from 'prop-types'; import { connect } from 'react-redux'; import { withSafeAreaInsets } from 'react-native-safe-area-context'; @@ -30,7 +28,7 @@ class Sort extends PureComponent { theme: PropTypes.string, insets: PropTypes.object, setSortPreference: PropTypes.func - } + }; constructor(props) { super(props); @@ -38,15 +36,12 @@ class Sort extends PureComponent { } componentDidMount() { - Animated.timing( - this.animatedValue, - { - toValue: 1, - duration: ANIMATION_DURATION, - easing: Easing.inOut(Easing.quad), - useNativeDriver: true - } - ).start(); + Animated.timing(this.animatedValue, { + toValue: 1, + duration: ANIMATION_DURATION, + easing: Easing.inOut(Easing.quad), + useNativeDriver: true + }).start(); } componentDidUpdate(prevProps) { @@ -56,7 +51,7 @@ class Sort extends PureComponent { } } - setSortPreference = (param) => { + setSortPreference = param => { const { setSortPreference } = this.props; try { @@ -66,55 +61,52 @@ class Sort extends PureComponent { logEvent(events.RL_SORT_CHANNELS_F); log(e); } - } + }; sortByName = () => { logEvent(events.RL_SORT_CHANNELS_BY_NAME); this.setSortPreference({ sortBy: 'alphabetical' }); this.close(); - } + }; sortByActivity = () => { logEvent(events.RL_SORT_CHANNELS_BY_ACTIVITY); this.setSortPreference({ sortBy: 'activity' }); this.close(); - } + }; toggleGroupByType = () => { logEvent(events.RL_GROUP_CHANNELS_BY_TYPE); const { groupByType } = this.props; this.setSortPreference({ groupByType: !groupByType }); - } + }; toggleGroupByFavorites = () => { logEvent(events.RL_GROUP_CHANNELS_BY_FAVORITE); const { showFavorites } = this.props; this.setSortPreference({ showFavorites: !showFavorites }); - } + }; toggleUnread = () => { logEvent(events.RL_GROUP_CHANNELS_BY_UNREAD); const { showUnread } = this.props; this.setSortPreference({ showUnread: !showUnread }); - } + }; close = () => { const { close } = this.props; - Animated.timing( - this.animatedValue, - { - toValue: 0, - duration: ANIMATION_DURATION, - easing: Easing.inOut(Easing.quad), - useNativeDriver: true - } - ).start(() => close()); - } + Animated.timing(this.animatedValue, { + toValue: 0, + duration: ANIMATION_DURATION, + easing: Easing.inOut(Easing.quad), + useNativeDriver: true + }).start(() => close()); + }; renderCheck = () => { const { theme } = this.props; return <List.Icon name='check' color={themes[theme].tintColor} />; - } + }; render() { const { isMasterDetail, insets } = this.props; @@ -124,9 +116,7 @@ class Sort extends PureComponent { inputRange: [0, 1], outputRange: [-326, heightDestination] }); - const { - sortBy, groupByType, showFavorites, showUnread, theme - } = this.props; + const { sortBy, groupByType, showFavorites, showUnread, theme } = this.props; const backdropOpacity = this.animatedValue.interpolate({ inputRange: [0, 1], outputRange: [0, themes[theme].backdropOpacity] @@ -135,12 +125,15 @@ class Sort extends PureComponent { return ( <> <TouchableWithoutFeedback onPress={this.close}> - <Animated.View style={[styles.backdrop, - { - backgroundColor: themes[theme].backdropColor, - opacity: backdropOpacity, - top: heightDestination - }]} + <Animated.View + style={[ + styles.backdrop, + { + backgroundColor: themes[theme].backdropColor, + opacity: backdropOpacity, + top: heightDestination + } + ]} /> </TouchableWithoutFeedback> <Animated.View @@ -151,8 +144,7 @@ class Sort extends PureComponent { backgroundColor: themes[theme].backgroundColor, borderColor: themes[theme].separatorColor } - ]} - > + ]}> <List.Item title={I18n.t('Sorting_by', { key: I18n.t(sortBy === 'alphabetical' ? 'name' : 'activity') })} left={() => <List.Icon name='sort' />} diff --git a/app/views/RoomsListView/index.js b/app/views/RoomsListView/index.js index 944aafd65b..7682a8930a 100644 --- a/app/views/RoomsListView/index.js +++ b/app/views/RoomsListView/index.js @@ -1,13 +1,6 @@ import React from 'react'; import PropTypes from 'prop-types'; -import { - BackHandler, - FlatList, - Keyboard, - RefreshControl, - Text, - View -} from 'react-native'; +import { BackHandler, FlatList, Keyboard, RefreshControl, Text, View } from 'react-native'; import { connect } from 'react-redux'; import { dequal } from 'dequal'; import Orientation from 'react-native-orientation-locker'; @@ -145,8 +138,8 @@ class RoomsListView extends React.Component { constructor(props) { super(props); - console.time(`${ this.constructor.name } init`); - console.time(`${ this.constructor.name } mount`); + console.time(`${this.constructor.name} init`); + console.time(`${this.constructor.name} mount`); this.animated = false; this.mounted = false; @@ -164,9 +157,7 @@ class RoomsListView extends React.Component { } componentDidMount() { - const { - navigation, closeServerDropdown - } = this.props; + const { navigation, closeServerDropdown } = this.props; this.mounted = true; if (isTablet) { @@ -190,13 +181,11 @@ class RoomsListView extends React.Component { this.backHandler.remove(); } }); - console.timeEnd(`${ this.constructor.name } mount`); + console.timeEnd(`${this.constructor.name} mount`); } UNSAFE_componentWillReceiveProps(nextProps) { - const { - loadingServer, searchText, server, changingServer - } = this.props; + const { loadingServer, searchText, server, changingServer } = this.props; // when the server is changed if (server !== nextProps.server && loadingServer !== nextProps.loadingServer && nextProps.loadingServer) { @@ -240,10 +229,7 @@ class RoomsListView extends React.Component { return false; } - const { - loading, - search - } = this.state; + const { loading, search } = this.state; const { rooms, width, insets } = this.props; if (nextState.loading !== loading) { return true; @@ -269,23 +255,15 @@ class RoomsListView extends React.Component { } componentDidUpdate(prevProps) { - const { - sortBy, - groupByType, - showFavorites, - showUnread, - rooms, - isMasterDetail, - insets - } = this.props; + const { sortBy, groupByType, showFavorites, showUnread, rooms, isMasterDetail, insets } = this.props; const { item } = this.state; if ( !( - prevProps.sortBy === sortBy - && prevProps.groupByType === groupByType - && prevProps.showFavorites === showFavorites - && prevProps.showUnread === showUnread + prevProps.sortBy === sortBy && + prevProps.groupByType === groupByType && + prevProps.showFavorites === showFavorites && + prevProps.showUnread === showUnread ) ) { this.getSubscriptions(); @@ -314,7 +292,7 @@ class RoomsListView extends React.Component { if (isTablet) { EventEmitter.removeListener(KEY_COMMAND, this.handleCommands); } - console.countReset(`${ this.constructor.name }.render calls`); + console.countReset(`${this.constructor.name}.render calls`); } getHeader = () => { @@ -323,54 +301,43 @@ class RoomsListView extends React.Component { const headerTitlePosition = getHeaderTitlePosition({ insets, numIconsRight: searching ? 0 : 3 }); return { headerTitleAlign: 'left', - headerLeft: () => (searching ? ( - <HeaderButton.Container left> - <HeaderButton.Item - iconName='close' - onPress={this.cancelSearch} + headerLeft: () => + searching ? ( + <HeaderButton.Container left> + <HeaderButton.Item iconName='close' onPress={this.cancelSearch} /> + </HeaderButton.Container> + ) : ( + <HeaderButton.Drawer + navigation={navigation} + testID='rooms-list-view-sidebar' + onPress={ + isMasterDetail + ? () => navigation.navigate('ModalStackNavigator', { screen: 'SettingsView' }) + : () => navigation.toggleDrawer() + } /> - </HeaderButton.Container> - ) : ( - <HeaderButton.Drawer - navigation={navigation} - testID='rooms-list-view-sidebar' - onPress={isMasterDetail - ? () => navigation.navigate('ModalStackNavigator', { screen: 'SettingsView' }) - : () => navigation.toggleDrawer()} - /> - )), + ), headerTitle: () => <RoomsListHeaderView />, headerTitleContainerStyle: { left: headerTitlePosition.left, right: headerTitlePosition.right }, - headerRight: () => (searching ? null : ( - <HeaderButton.Container> - <HeaderButton.Item - iconName='create' - onPress={this.goToNewMessage} - testID='rooms-list-view-create-channel' - /> - <HeaderButton.Item - iconName='search' - onPress={this.initSearching} - testID='rooms-list-view-search' - /> - <HeaderButton.Item - iconName='directory' - onPress={this.goDirectory} - testID='rooms-list-view-directory' - /> - </HeaderButton.Container> - )) + headerRight: () => + searching ? null : ( + <HeaderButton.Container> + <HeaderButton.Item iconName='create' onPress={this.goToNewMessage} testID='rooms-list-view-create-channel' /> + <HeaderButton.Item iconName='search' onPress={this.initSearching} testID='rooms-list-view-search' /> + <HeaderButton.Item iconName='directory' onPress={this.goDirectory} testID='rooms-list-view-directory' /> + </HeaderButton.Container> + ) }; - } + }; setHeader = () => { const { navigation } = this.props; const options = this.getHeader(); navigation.setOptions(options); - } + }; internalSetState = (...args) => { if (this.animated) { @@ -387,29 +354,20 @@ class RoomsListView extends React.Component { allData = allData.concat(data); } return allData; - } + }; - getSubscriptions = async() => { + getSubscriptions = async () => { this.unsubscribeQuery(); - const { - sortBy, - showUnread, - showFavorites, - groupByType, - user - } = this.props; + const { sortBy, showUnread, showFavorites, groupByType, user } = this.props; const db = database.active; let observable; - const defaultWhereClause = [ - Q.where('archived', false), - Q.where('open', true) - ]; + const defaultWhereClause = [Q.where('archived', false), Q.where('open', true)]; if (sortBy === 'alphabetical') { - defaultWhereClause.push(Q.experimentalSortBy(`${ this.useRealName ? 'fname' : 'name' }`, Q.asc)); + defaultWhereClause.push(Q.experimentalSortBy(`${this.useRealName ? 'fname' : 'name'}`, Q.asc)); } else { defaultWhereClause.push(Q.experimentalSortBy('room_updated_at', Q.desc)); } @@ -421,20 +379,16 @@ class RoomsListView extends React.Component { .query(...defaultWhereClause) .observeWithColumns(['alert']); - // When we're NOT grouping + // When we're NOT grouping } else { this.count += QUERY_SIZE; observable = await db.collections .get('subscriptions') - .query( - ...defaultWhereClause, - Q.experimentalSkip(0), - Q.experimentalTake(this.count) - ) + .query(...defaultWhereClause, Q.experimentalSkip(0), Q.experimentalTake(this.count)) .observe(); } - this.querySubscription = observable.subscribe((data) => { + this.querySubscription = observable.subscribe(data => { let tempChats = []; let chats = data; @@ -502,13 +456,13 @@ class RoomsListView extends React.Component { this.state.loading = false; } }); - } + }; unsubscribeQuery = () => { if (this.querySubscription && this.querySubscription.unsubscribe) { this.querySubscription.unsubscribe(); } - } + }; initSearching = () => { logEvent(events.RL_SEARCH); @@ -549,7 +503,7 @@ class RoomsListView extends React.Component { }; // eslint-disable-next-line react/sort-comp - search = debounce(async(text) => { + search = debounce(async text => { const result = await RocketChat.search({ text }); // if the search was cancelled before the promise is resolved @@ -564,15 +518,15 @@ class RoomsListView extends React.Component { this.scrollToTop(); }, 300); - getRoomTitle = item => RocketChat.getRoomTitle(item) + getRoomTitle = item => RocketChat.getRoomTitle(item); - getRoomAvatar = item => RocketChat.getRoomAvatar(item) + getRoomAvatar = item => RocketChat.getRoomAvatar(item); - isGroupChat = item => RocketChat.isGroupChat(item) + isGroupChat = item => RocketChat.isGroupChat(item); - isRead = item => RocketChat.isRead(item) + isRead = item => RocketChat.isRead(item); - getUserPresence = uid => RocketChat.getUserPresence(uid) + getUserPresence = uid => RocketChat.getUserPresence(uid); getUidDirectMessage = room => RocketChat.getUidDirectMessage(room); @@ -595,7 +549,7 @@ class RoomsListView extends React.Component { if (this.scroll?.scrollToOffset) { this.scroll.scrollToOffset({ offset: 0 }); } - } + }; toggleSort = () => { logEvent(events.RL_TOGGLE_SORT_DROPDOWN); @@ -607,17 +561,17 @@ class RoomsListView extends React.Component { }, 100); }; - toggleFav = async(rid, favorite) => { + toggleFav = async (rid, favorite) => { logEvent(favorite ? events.RL_UNFAVORITE_CHANNEL : events.RL_FAVORITE_CHANNEL); try { const db = database.active; const result = await RocketChat.toggleFavorite(rid, !favorite); if (result.success) { const subCollection = db.get('subscriptions'); - await db.action(async() => { + await db.action(async () => { try { const subRecord = await subCollection.find(rid); - await subRecord.update((sub) => { + await subRecord.update(sub => { sub.f = !favorite; }); } catch (e) { @@ -631,7 +585,7 @@ class RoomsListView extends React.Component { } }; - toggleRead = async(rid, isRead) => { + toggleRead = async (rid, isRead) => { logEvent(isRead ? events.RL_UNREAD_CHANNEL : events.RL_READ_CHANNEL); try { const db = database.active; @@ -639,10 +593,10 @@ class RoomsListView extends React.Component { if (result.success) { const subCollection = db.get('subscriptions'); - await db.action(async() => { + await db.action(async () => { try { const subRecord = await subCollection.find(rid); - await subRecord.update((sub) => { + await subRecord.update(sub => { sub.alert = isRead; sub.unread = 0; }); @@ -657,14 +611,14 @@ class RoomsListView extends React.Component { } }; - hideChannel = async(rid, type) => { + hideChannel = async (rid, type) => { logEvent(events.RL_HIDE_CHANNEL); try { const db = database.active; const result = await RocketChat.hideRoom(rid, type); if (result.success) { const subCollection = db.get('subscriptions'); - await db.action(async() => { + await db.action(async () => { try { const subRecord = await subCollection.find(rid); await subRecord.destroyPermanently(); @@ -691,16 +645,14 @@ class RoomsListView extends React.Component { goQueue = () => { logEvent(events.RL_GO_QUEUE); - const { - navigation, isMasterDetail, queueSize, inquiryEnabled, user - } = this.props; + const { navigation, isMasterDetail, queueSize, inquiryEnabled, user } = this.props; // if not-available, prompt to change to available if (!isOmnichannelStatusAvailable(user)) { showConfirmationAlert({ message: I18n.t('Omnichannel_enable_alert'), confirmationText: I18n.t('Yes'), - onPress: async() => { + onPress: async () => { try { await changeLivechatStatus(); } catch { @@ -736,9 +688,9 @@ class RoomsListView extends React.Component { this.setState({ item }); } goRoom({ item, isMasterDetail }); - } + }; - goRoomByIndex = (index) => { + goRoomByIndex = index => { const { chats } = this.state; const { isMasterDetail } = this.props; const filteredChats = chats.filter(c => !c.separator); @@ -746,7 +698,7 @@ class RoomsListView extends React.Component { if (room) { this.goRoom({ item: room, isMasterDetail }); } - } + }; findOtherRoom = (index, sign) => { const { chats } = this.state; @@ -760,11 +712,11 @@ class RoomsListView extends React.Component { } else { return otherRoom; } - } + }; // Go to previous or next room based on sign (-1 or 1) // It's used by iPad key commands - goOtherRoom = (sign) => { + goOtherRoom = sign => { const { item } = this.state; if (!item) { return; @@ -783,7 +735,7 @@ class RoomsListView extends React.Component { if (otherRoom) { this.goRoom({ item: otherRoom, isMasterDetail }); } - } + }; goToNewMessage = () => { logEvent(events.RL_GO_NEW_MSG); @@ -794,7 +746,7 @@ class RoomsListView extends React.Component { } else { navigation.navigate('NewMessageStackNavigator'); } - } + }; goEncryption = () => { logEvent(events.RL_GO_E2E_SAVE_PASSWORD); @@ -808,7 +760,7 @@ class RoomsListView extends React.Component { const screen = isSavePassword ? 'E2ESaveYourPasswordStackNavigator' : 'E2EEnterYourPasswordStackNavigator'; navigation.navigate(screen); } - } + }; handleCommands = ({ event }) => { const { navigation, server, isMasterDetail } = this.props; @@ -841,22 +793,20 @@ class RoomsListView extends React.Component { return; } roomsRequest({ allData: true }); - } + }; onEndReached = () => { // Run only when we're not grouping by anything if (!this.isGrouping) { this.getSubscriptions(); } - } + }; - getScrollRef = ref => this.scroll = ref; + getScrollRef = ref => (this.scroll = ref); renderListHeader = () => { const { searching } = this.state; - const { - sortBy, queueSize, inquiryEnabled, encryptionBanner, user - } = this.props; + const { sortBy, queueSize, inquiryEnabled, encryptionBanner, user } = this.props; return ( <ListHeader searching={searching} @@ -880,12 +830,8 @@ class RoomsListView extends React.Component { } const options = this.getHeader(); - return ( - <Header - {...options} - /> - ); - } + return <Header {...options} />; + }; renderItem = ({ item }) => { if (item.separator) { @@ -928,19 +874,17 @@ class RoomsListView extends React.Component { ); }; - renderSectionHeader = (header) => { + renderSectionHeader = header => { const { theme } = this.props; return ( <View style={[styles.groupTitleContainer, { backgroundColor: themes[theme].backgroundColor }]}> <Text style={[styles.groupTitle, { color: themes[theme].controlText }]}>{I18n.t(header)}</Text> </View> ); - } + }; renderScroll = () => { - const { - loading, chats, search, searching - } = this.state; + const { loading, chats, search, searching } = this.state; const { theme, refreshing } = this.props; if (loading) { @@ -960,13 +904,9 @@ class RoomsListView extends React.Component { removeClippedSubviews={isIOS} keyboardShouldPersistTaps='always' initialNumToRender={INITIAL_NUM_TO_RENDER} - refreshControl={( - <RefreshControl - refreshing={refreshing} - onRefresh={this.onRefresh} - tintColor={themes[theme].auxiliaryText} - /> - )} + refreshControl={ + <RefreshControl refreshing={refreshing} onRefresh={this.onRefresh} tintColor={themes[theme].auxiliaryText} /> + } windowSize={9} onEndReached={this.onEndReached} onEndReachedThreshold={0.5} @@ -975,17 +915,9 @@ class RoomsListView extends React.Component { }; render = () => { - console.count(`${ this.constructor.name }.render calls`); - const { - sortBy, - groupByType, - showFavorites, - showUnread, - showServerDropdown, - showSortDropdown, - theme, - navigation - } = this.props; + console.count(`${this.constructor.name}.render calls`); + const { sortBy, groupByType, showFavorites, showUnread, showServerDropdown, showSortDropdown, theme, navigation } = + this.props; return ( <SafeAreaView testID='rooms-list-view' style={{ backgroundColor: themes[theme].backgroundColor }}> diff --git a/app/views/ScreenLockConfigView.js b/app/views/ScreenLockConfigView.js index 0dbca21cc4..8e7de6cae7 100644 --- a/app/views/ScreenLockConfigView.js +++ b/app/views/ScreenLockConfigView.js @@ -26,7 +26,7 @@ class ScreenLockConfigView extends React.Component { server: PropTypes.string, Force_Screen_Lock: PropTypes.string, Force_Screen_Lock_After: PropTypes.string - } + }; constructor(props) { super(props); @@ -68,7 +68,7 @@ class ScreenLockConfigView extends React.Component { } ]; - init = async() => { + init = async () => { const { server } = this.props; const serversDB = database.servers; const serversCollection = serversDB.get('servers'); @@ -87,71 +87,77 @@ class ScreenLockConfigView extends React.Component { this.setState({ biometryLabel }); this.observe(); - } + }; /* * We should observe biometry value * because it can be changed by PasscodeChange * when the user set his first passcode - */ + */ observe = () => { this.observable = this.serverRecord?.observe()?.subscribe(({ biometry }) => { this.setState({ biometry }); }); - } + }; - save = async() => { + save = async () => { logEvent(events.SLC_SAVE_SCREEN_LOCK); const { autoLock, autoLockTime, biometry } = this.state; const serversDB = database.servers; - await serversDB.action(async() => { - await this.serverRecord?.update((record) => { + await serversDB.action(async () => { + await this.serverRecord?.update(record => { record.autoLock = autoLock; record.autoLockTime = autoLockTime === null ? DEFAULT_AUTO_LOCK : autoLockTime; record.biometry = biometry === null ? DEFAULT_BIOMETRY : biometry; }); }); - } + }; - changePasscode = async({ force }) => { + changePasscode = async ({ force }) => { logEvent(events.SLC_CHANGE_PASSCODE); await changePasscode({ force }); - } + }; toggleAutoLock = () => { logEvent(events.SLC_TOGGLE_AUTOLOCK); - this.setState(({ autoLock }) => ({ autoLock: !autoLock, autoLockTime: DEFAULT_AUTO_LOCK }), async() => { - const { autoLock } = this.state; - if (autoLock) { - try { - await checkHasPasscode({ force: false, serverRecord: this.serverRecord }); - } catch { - this.toggleAutoLock(); + this.setState( + ({ autoLock }) => ({ autoLock: !autoLock, autoLockTime: DEFAULT_AUTO_LOCK }), + async () => { + const { autoLock } = this.state; + if (autoLock) { + try { + await checkHasPasscode({ force: false, serverRecord: this.serverRecord }); + } catch { + this.toggleAutoLock(); + } } + this.save(); } - this.save(); - }); - } + ); + }; toggleBiometry = () => { logEvent(events.SLC_TOGGLE_BIOMETRY); - this.setState(({ biometry }) => ({ biometry: !biometry }), () => this.save()); - } + this.setState( + ({ biometry }) => ({ biometry: !biometry }), + () => this.save() + ); + }; - isSelected = (value) => { + isSelected = value => { const { autoLockTime } = this.state; return autoLockTime === value; - } + }; - changeAutoLockTime = (autoLockTime) => { + changeAutoLockTime = autoLockTime => { logEvent(events.SLC_CHANGE_AUTOLOCK_TIME); this.setState({ autoLockTime }, () => this.save()); - } + }; renderIcon = () => { const { theme } = this.props; return <List.Icon name='check' color={themes[theme].tintColor} />; - } + }; renderItem = ({ item }) => { const { title, value, disabled } = item; @@ -167,31 +173,20 @@ class ScreenLockConfigView extends React.Component { <List.Separator /> </> ); - } + }; renderAutoLockSwitch = () => { const { autoLock } = this.state; const { Force_Screen_Lock } = this.props; return ( - <Switch - value={autoLock} - trackColor={SWITCH_TRACK_COLOR} - onValueChange={this.toggleAutoLock} - disabled={Force_Screen_Lock} - /> + <Switch value={autoLock} trackColor={SWITCH_TRACK_COLOR} onValueChange={this.toggleAutoLock} disabled={Force_Screen_Lock} /> ); - } + }; renderBiometrySwitch = () => { const { biometry } = this.state; - return ( - <Switch - value={biometry} - trackColor={SWITCH_TRACK_COLOR} - onValueChange={this.toggleBiometry} - /> - ); - } + return <Switch value={biometry} trackColor={SWITCH_TRACK_COLOR} onValueChange={this.toggleBiometry} />; + }; renderAutoLockItems = () => { const { autoLock, autoLockTime } = this.state; @@ -201,12 +196,14 @@ class ScreenLockConfigView extends React.Component { } let items = this.defaultAutoLockOptions; if (Force_Screen_Lock && Force_Screen_Lock_After > 0) { - items = [{ - title: I18n.t('After_seconds_set_by_admin', { seconds: Force_Screen_Lock_After }), - value: Force_Screen_Lock_After, - disabled: true - }]; - // if Force_Screen_Lock is disabled and autoLockTime is a value that isn't on our defaultOptions we'll show it + items = [ + { + title: I18n.t('After_seconds_set_by_admin', { seconds: Force_Screen_Lock_After }), + value: Force_Screen_Lock_After, + disabled: true + } + ]; + // if Force_Screen_Lock is disabled and autoLockTime is a value that isn't on our defaultOptions we'll show it } else if (Force_Screen_Lock_After === autoLockTime && !items.find(item => item.value === autoLockTime)) { items.push({ title: I18n.t('After_seconds_set_by_admin', { seconds: Force_Screen_Lock_After }), @@ -219,7 +216,7 @@ class ScreenLockConfigView extends React.Component { {items.map(item => this.renderItem({ item }))} </List.Section> ); - } + }; renderBiometry = () => { const { autoLock, biometryLabel } = this.state; @@ -237,7 +234,7 @@ class ScreenLockConfigView extends React.Component { <List.Separator /> </List.Section> ); - } + }; render() { const { autoLock } = this.state; @@ -247,23 +244,13 @@ class ScreenLockConfigView extends React.Component { <List.Container> <List.Section> <List.Separator /> - <List.Item - title='Local_authentication_unlock_option' - right={() => this.renderAutoLockSwitch()} - /> - {autoLock - ? ( - <> - <List.Separator /> - <List.Item - title='Local_authentication_change_passcode' - onPress={this.changePasscode} - showActionIndicator - /> - </> - ) - : null - } + <List.Item title='Local_authentication_unlock_option' right={() => this.renderAutoLockSwitch()} /> + {autoLock ? ( + <> + <List.Separator /> + <List.Item title='Local_authentication_change_passcode' onPress={this.changePasscode} showActionIndicator /> + </> + ) : null} <List.Separator /> <List.Info info='Local_authentication_info' /> </List.Section> diff --git a/app/views/ScreenLockedView.js b/app/views/ScreenLockedView.js index 4de05727cc..644e76ff0c 100644 --- a/app/views/ScreenLockedView.js +++ b/app/views/ScreenLockedView.js @@ -23,7 +23,7 @@ const ScreenLockedView = ({ theme }) => { } }, [data]); - const showScreenLock = (args) => { + const showScreenLock = args => { setData(args); }; @@ -55,8 +55,7 @@ const ScreenLockedView = ({ theme }) => { hideModalContentWhileAnimating style={{ margin: 0 }} animationIn='fadeIn' - animationOut='fadeOut' - > + animationOut='fadeOut'> <PasscodeEnter theme={theme} hasBiometry={data?.hasBiometry} finishProcess={onSubmit} /> </Modal> ); diff --git a/app/views/SearchMessagesView/index.js b/app/views/SearchMessagesView/index.js index 19c8a9164b..f8131ec1da 100644 --- a/app/views/SearchMessagesView/index.js +++ b/app/views/SearchMessagesView/index.js @@ -36,7 +36,7 @@ class SearchMessagesView extends React.Component { options.headerLeft = () => <HeaderButton.CloseModal navigation={navigation} />; } return options; - } + }; static propTypes = { navigation: PropTypes.object, @@ -46,7 +46,7 @@ class SearchMessagesView extends React.Component { customEmojis: PropTypes.object, theme: PropTypes.string, useRealName: PropTypes.bool - } + }; constructor(props) { super(props); @@ -87,7 +87,7 @@ class SearchMessagesView extends React.Component { } // Handle encrypted rooms search messages - searchMessages = async(searchText) => { + searchMessages = async searchText => { // If it's a encrypted, room we'll search only on the local stored messages if (this.encrypted) { const db = database.active; @@ -98,7 +98,7 @@ class SearchMessagesView extends React.Component { // Messages of this room Q.where('rid', this.rid), // Message content is like the search text - Q.where('msg', Q.like(`%${ likeString }%`)) + Q.where('msg', Q.like(`%${likeString}%`)) ) .fetch(); } @@ -107,9 +107,9 @@ class SearchMessagesView extends React.Component { if (result.success) { return result.messages; } - } + }; - search = debounce(async(searchText) => { + search = debounce(async searchText => { this.setState({ searchText, loading: true, messages: [] }); try { @@ -122,31 +122,31 @@ class SearchMessagesView extends React.Component { this.setState({ loading: false }); log(e); } - }, 1000) + }, 1000); - getCustomEmoji = (name) => { + getCustomEmoji = name => { const { customEmojis } = this.props; const emoji = customEmojis[name]; if (emoji) { return emoji; } return null; - } + }; - showAttachment = (attachment) => { + showAttachment = attachment => { const { navigation } = this.props; navigation.navigate('AttachmentView', { attachment }); - } + }; - navToRoomInfo = (navParam) => { + navToRoomInfo = navParam => { const { navigation, user } = this.props; if (navParam.rid === user.id) { return; } navigation.navigate('RoomInfoView', navParam); - } + }; - jumpToMessage = async({ item }) => { + jumpToMessage = async ({ item }) => { const { navigation } = this.props; let params = { rid: this.rid, @@ -166,7 +166,7 @@ class SearchMessagesView extends React.Component { } else { navigation.navigate('RoomView', params); } - } + }; renderEmpty = () => { const { theme } = this.props; @@ -175,12 +175,10 @@ class SearchMessagesView extends React.Component { <Text style={[styles.noDataFound, { color: themes[theme].titleText }]}>{I18n.t('No_results_found')}</Text> </View> ); - } + }; renderItem = ({ item }) => { - const { - user, baseUrl, theme, useRealName - } = this.props; + const { user, baseUrl, theme, useRealName } = this.props; return ( <Message item={item} @@ -198,7 +196,7 @@ class SearchMessagesView extends React.Component { jumpToMessage={() => this.jumpToMessage({ item })} /> ); - } + }; renderList = () => { const { messages, loading, searchText } = this.state; @@ -219,7 +217,7 @@ class SearchMessagesView extends React.Component { {...scrollPersistTaps} /> ); - } + }; render() { const { theme } = this.props; diff --git a/app/views/SecurityPrivacyView.js b/app/views/SecurityPrivacyView.js index 534e6bc322..5a6adcd482 100644 --- a/app/views/SecurityPrivacyView.js +++ b/app/views/SecurityPrivacyView.js @@ -10,7 +10,12 @@ import * as List from '../containers/List'; import I18n from '../i18n'; import { CRASH_REPORT_KEY, ANALYTICS_EVENTS_KEY } from '../lib/rocketchat'; import { - logEvent, events, toggleCrashErrorsReport, toggleAnalyticsEventsReport, getReportCrashErrorsValue, getReportAnalyticsEventsValue + logEvent, + events, + toggleCrashErrorsReport, + toggleAnalyticsEventsReport, + getReportCrashErrorsValue, + getReportAnalyticsEventsValue } from '../utils/log'; import SafeAreaView from '../containers/SafeAreaView'; import { isFDroidBuild } from '../constants/environment'; @@ -27,22 +32,22 @@ const SecurityPrivacyView = ({ navigation }) => { }); }, []); - const toggleCrashReport = (value) => { + const toggleCrashReport = value => { logEvent(events.SE_TOGGLE_CRASH_REPORT); AsyncStorage.setItem(CRASH_REPORT_KEY, JSON.stringify(value)); setCrashReportState(value); toggleCrashErrorsReport(value); }; - const toggleAnalyticsEvents = (value) => { + const toggleAnalyticsEvents = value => { logEvent(events.SE_TOGGLE_ANALYTICS_EVENTS); AsyncStorage.setItem(ANALYTICS_EVENTS_KEY, JSON.stringify(value)); setAnalyticsEventsState(value); toggleAnalyticsEventsReport(value); }; - const navigateToScreen = (screen) => { - logEvent(events[`SP_GO_${ screen.replace('View', '').toUpperCase() }`]); + const navigateToScreen = screen => { + logEvent(events[`SP_GO_${screen.replace('View', '').toUpperCase()}`]); navigation.navigate(screen); }; @@ -52,20 +57,17 @@ const SecurityPrivacyView = ({ navigation }) => { <List.Container testID='security-privacy-view-list'> <List.Section> <List.Separator /> - {e2eEnabled - ? ( - <> - <List.Item - title='E2E_Encryption' - showActionIndicator - onPress={() => navigateToScreen('E2EEncryptionSecurityView')} - testID='security-privacy-view-e2e-encryption' - /> - <List.Separator /> - </> - ) - : null - } + {e2eEnabled ? ( + <> + <List.Item + title='E2E_Encryption' + showActionIndicator + onPress={() => navigateToScreen('E2EEncryptionSecurityView')} + testID='security-privacy-view-e2e-encryption' + /> + <List.Separator /> + </> + ) : null} <List.Item title='Screen_lock' showActionIndicator @@ -83,11 +85,7 @@ const SecurityPrivacyView = ({ navigation }) => { title='Log_analytics_events' testID='security-privacy-view-analytics-events' right={() => ( - <Switch - value={analyticsEventsState} - trackColor={SWITCH_TRACK_COLOR} - onValueChange={toggleAnalyticsEvents} - /> + <Switch value={analyticsEventsState} trackColor={SWITCH_TRACK_COLOR} onValueChange={toggleAnalyticsEvents} /> )} /> <List.Separator /> @@ -95,11 +93,7 @@ const SecurityPrivacyView = ({ navigation }) => { title='Send_crash_report' testID='security-privacy-view-crash-report' right={() => ( - <Switch - value={crashReportState} - trackColor={SWITCH_TRACK_COLOR} - onValueChange={toggleCrashReport} - /> + <Switch value={crashReportState} trackColor={SWITCH_TRACK_COLOR} onValueChange={toggleCrashReport} /> )} /> <List.Separator /> diff --git a/app/views/SelectListView.js b/app/views/SelectListView.js index 902059d197..9d2f533da0 100644 --- a/app/views/SelectListView.js +++ b/app/views/SelectListView.js @@ -1,8 +1,6 @@ import React from 'react'; import PropTypes from 'prop-types'; -import { - FlatList, StyleSheet, Text, View -} from 'react-native'; +import { FlatList, StyleSheet, Text, View } from 'react-native'; import { connect } from 'react-redux'; import { RadioButton } from 'react-native-ui-lib'; @@ -19,7 +17,6 @@ import { ICON_SIZE } from '../containers/List/constants'; import SearchBox from '../containers/SearchBox'; import sharedStyles from './Styles'; - const styles = StyleSheet.create({ buttonText: { fontSize: 16, @@ -74,7 +71,7 @@ class SelectListView extends React.Component { ); navigation.setOptions(options); - } + }; renderInfoText = () => { const { theme } = this.props; @@ -83,18 +80,22 @@ class SelectListView extends React.Component { <Text style={[styles.buttonText, { color: themes[theme].bodyText }]}>{I18n.t(this.infoText)}</Text> </View> ); - } + }; renderSearch = () => { const { theme } = this.props; return ( <View style={{ backgroundColor: themes[theme].auxiliaryBackground }}> - <SearchBox onChangeText={text => this.search(text)} testID='select-list-view-search' onCancelPress={() => this.setState({ isSearching: false })} /> + <SearchBox + onChangeText={text => this.search(text)} + testID='select-list-view-search' + onCancelPress={() => this.setState({ isSearching: false })} + /> </View> ); - } + }; - search = async(text) => { + search = async text => { try { this.setState({ isSearching: true }); const result = await this.onSearch(text); @@ -102,14 +103,14 @@ class SelectListView extends React.Component { } catch (e) { log(e); } - } + }; - isChecked = (rid) => { + isChecked = rid => { const { selected } = this.state; return selected.includes(rid); - } + }; - toggleItem = (rid) => { + toggleItem = rid => { const { selected } = this.state; animateNextTransition(); @@ -123,7 +124,7 @@ class SelectListView extends React.Component { const filterSelected = selected.filter(el => el !== rid); this.setState({ selected: filterSelected }, () => this.setHeader()); } - } + }; renderItem = ({ item }) => { const { theme } = this.props; @@ -134,8 +135,21 @@ class SelectListView extends React.Component { const icon = item.teamMain ? teamIcon : channelIcon; const checked = this.isChecked(item.rid) ? 'check' : null; - const showRadio = () => <RadioButton testID={selected ? `radio-button-selected-${ item.name }` : `radio-button-unselected-${ item.name }`} selected={selected.includes(item.rid)} color={themes[theme].actionTintColor} size={ICON_SIZE} />; - const showCheck = () => <List.Icon testID={checked ? `${ item.name }-checked` : `${ item.name }-unchecked`} name={checked} color={themes[theme].actionTintColor} />; + const showRadio = () => ( + <RadioButton + testID={selected ? `radio-button-selected-${item.name}` : `radio-button-unselected-${item.name}`} + selected={selected.includes(item.rid)} + color={themes[theme].actionTintColor} + size={ICON_SIZE} + /> + ); + const showCheck = () => ( + <List.Icon + testID={checked ? `${item.name}-checked` : `${item.name}-unchecked`} + name={checked} + color={themes[theme].actionTintColor} + /> + ); return ( <> @@ -143,7 +157,7 @@ class SelectListView extends React.Component { <List.Item title={item.name} translateTitle={false} - testID={`select-list-view-item-${ item.name }`} + testID={`select-list-view-item-${item.name}`} onPress={() => (item.alert ? this.showAlert() : this.toggleItem(item.rid))} alert={item.alert} left={() => <List.Icon name={icon} color={themes[theme].controlText} />} @@ -151,7 +165,7 @@ class SelectListView extends React.Component { /> </> ); - } + }; render() { const { data, isSearching, dataFiltered } = this.state; diff --git a/app/views/SelectServerView.js b/app/views/SelectServerView.js index dbc3087943..0b43747af0 100644 --- a/app/views/SelectServerView.js +++ b/app/views/SelectServerView.js @@ -18,12 +18,12 @@ const keyExtractor = item => item.id; class SelectServerView extends React.Component { static navigationOptions = () => ({ title: I18n.t('Select_Server') - }) + }); static propTypes = { server: PropTypes.string, navigation: PropTypes.object - } + }; state = { servers: [] }; @@ -34,27 +34,19 @@ class SelectServerView extends React.Component { this.setState({ servers }); } - select = async(server) => { - const { - server: currentServer, navigation - } = this.props; + select = async server => { + const { server: currentServer, navigation } = this.props; navigation.navigate('ShareListView'); if (currentServer !== server) { await RocketChat.shareExtensionInit(server); } - } + }; renderItem = ({ item }) => { const { server } = this.props; - return ( - <ServerItem - onPress={() => this.select(item.id)} - item={item} - hasCheck={item.id === server} - /> - ); - } + return <ServerItem onPress={() => this.select(item.id)} item={item} hasCheck={item.id === server} />; + }; render() { const { servers } = this.state; diff --git a/app/views/SelectedUsersView.js b/app/views/SelectedUsersView.js index 9e8529725c..b7b2545113 100644 --- a/app/views/SelectedUsersView.js +++ b/app/views/SelectedUsersView.js @@ -18,11 +18,7 @@ import StatusBar from '../containers/StatusBar'; import { themes } from '../constants/colors'; import { withTheme } from '../theme'; import { getUserSelector } from '../selectors/login'; -import { - addUser as addUserAction, - removeUser as removeUserAction, - reset as resetAction -} from '../actions/selectedUsers'; +import { addUser as addUserAction, removeUser as removeUserAction, reset as resetAction } from '../actions/selectedUsers'; import { showErrorAlert } from '../utils/info'; import SafeAreaView from '../containers/SafeAreaView'; import sharedStyles from './Styles'; @@ -84,7 +80,7 @@ class SelectedUsersView extends React.Component { } // showButton can be sent as route params or updated by the component - setHeader = (showButton) => { + setHeader = showButton => { const { navigation, route } = this.props; const title = route.params?.title ?? I18n.t('Select_Users'); const buttonText = route.params?.buttonText ?? I18n.t('Next'); @@ -98,13 +94,12 @@ class SelectedUsersView extends React.Component { <HeaderButton.Item title={buttonText} onPress={nextAction} testID='selected-users-view-submit' /> </HeaderButton.Container> ) - }; navigation.setOptions(options); - } + }; // eslint-disable-next-line react/sort-comp - init = async() => { + init = async () => { try { const db = database.active; const observable = await db.collections @@ -112,40 +107,43 @@ class SelectedUsersView extends React.Component { .query(Q.where('t', 'd')) .observeWithColumns(['room_updated_at']); - this.querySubscription = observable.subscribe((data) => { + this.querySubscription = observable.subscribe(data => { const chats = orderBy(data, ['roomUpdatedAt'], ['desc']); this.setState({ chats }); }); } catch (e) { log(e); } - } + }; onSearchChangeText(text) { this.search(text); } - search = async(text) => { + search = async text => { const result = await RocketChat.search({ text, filterRooms: false }); this.setState({ search: result }); - } + }; isGroupChat = () => { const { maxUsers } = this.state; return maxUsers > 2; - } + }; - isChecked = (username) => { + isChecked = username => { const { users } = this.props; return users.findIndex(el => el.name === username) !== -1; - } + }; - toggleUser = (user) => { + toggleUser = user => { const { maxUsers } = this.state; const { - addUser, removeUser, users, user: { username } + addUser, + removeUser, + users, + user: { username } } = this.props; // Disallow removing self user from the direct message group @@ -163,7 +161,7 @@ class SelectedUsersView extends React.Component { logEvent(events.SELECTED_USERS_REMOVE_USER); removeUser(user); } - } + }; _onPressItem = (id, item = {}) => { if (item.search) { @@ -171,7 +169,7 @@ class SelectedUsersView extends React.Component { } else { this.toggleUser({ _id: item._id, name: item.name, fname: item.fname }); } - } + }; _onPressSelectedItem = item => this.toggleUser(item); @@ -183,9 +181,9 @@ class SelectedUsersView extends React.Component { {this.renderSelected()} </View> ); - } + }; - setFlatListRef = ref => this.flatlist = ref; + setFlatListRef = ref => (this.flatlist = ref); onContentSizeChange = () => this.flatlist.scrollToEnd({ animated: true }); @@ -211,7 +209,7 @@ class SelectedUsersView extends React.Component { horizontal /> ); - } + }; renderSelectedItem = ({ item }) => { const { baseUrl, user, theme } = this.props; @@ -220,14 +218,14 @@ class SelectedUsersView extends React.Component { name={item.fname} username={item.name} onPress={() => this._onPressSelectedItem(item)} - testID={`selected-user-${ item.name }`} + testID={`selected-user-${item.name}`} baseUrl={baseUrl} style={{ paddingRight: 15 }} user={user} theme={theme} /> ); - } + }; renderItem = ({ item, index }) => { const { search, chats } = this.state; @@ -250,7 +248,7 @@ class SelectedUsersView extends React.Component { name={name} username={username} onPress={() => this._onPressItem(item._id, item)} - testID={`select-users-view-item-${ item.name }`} + testID={`select-users-view-item-${item.name}`} icon={this.isChecked(username) ? 'check' : null} baseUrl={baseUrl} style={style} @@ -258,7 +256,7 @@ class SelectedUsersView extends React.Component { theme={theme} /> ); - } + }; renderList = () => { const { search, chats } = this.state; @@ -281,7 +279,7 @@ class SelectedUsersView extends React.Component { keyboardShouldPersistTaps='always' /> ); - } + }; render = () => { const { loading } = this.props; @@ -292,7 +290,7 @@ class SelectedUsersView extends React.Component { <Loading visible={loading} /> </SafeAreaView> ); - } + }; } const mapStateToProps = state => ({ diff --git a/app/views/SetUsernameView.js b/app/views/SetUsernameView.js index 15393472af..158c6d0135 100644 --- a/app/views/SetUsernameView.js +++ b/app/views/SetUsernameView.js @@ -1,8 +1,6 @@ import React from 'react'; import PropTypes from 'prop-types'; -import { - ScrollView, StyleSheet, Text -} from 'react-native'; +import { ScrollView, StyleSheet, Text } from 'react-native'; import { connect } from 'react-redux'; import Orientation from 'react-native-orientation-locker'; @@ -32,7 +30,7 @@ const styles = StyleSheet.create({ class SetUsernameView extends React.Component { static navigationOptions = ({ route }) => ({ title: route.params?.title - }) + }); static propTypes = { navigation: PropTypes.object, @@ -41,7 +39,7 @@ class SetUsernameView extends React.Component { loginRequest: PropTypes.func, token: PropTypes.string, theme: PropTypes.string - } + }; constructor(props) { super(props); @@ -78,7 +76,7 @@ class SetUsernameView extends React.Component { return false; } - submit = async() => { + submit = async () => { const { username } = this.state; const { loginRequest, token } = this.props; @@ -94,36 +92,20 @@ class SetUsernameView extends React.Component { showErrorAlert(e.message, I18n.t('Oops')); } this.setState({ saving: false }); - } + }; render() { const { username, saving } = this.state; const { theme } = this.props; return ( - <KeyboardView - style={{ backgroundColor: themes[theme].auxiliaryBackground }} - contentContainerStyle={sharedStyles.container} - > + <KeyboardView style={{ backgroundColor: themes[theme].auxiliaryBackground }} contentContainerStyle={sharedStyles.container}> <StatusBar /> <ScrollView {...scrollPersistTaps} contentContainerStyle={sharedStyles.containerScrollView}> <SafeAreaView testID='set-username-view'> - <Text - style={[ - sharedStyles.loginTitle, - sharedStyles.textBold, - styles.loginTitle, - { color: themes[theme].titleText } - ]} - > + <Text style={[sharedStyles.loginTitle, sharedStyles.textBold, styles.loginTitle, { color: themes[theme].titleText }]}> {I18n.t('Username')} </Text> - <Text - style={[ - sharedStyles.loginSubtitle, - sharedStyles.textRegular, - { color: themes[theme].titleText } - ]} - > + <Text style={[sharedStyles.loginSubtitle, sharedStyles.textRegular, { color: themes[theme].titleText }]}> {I18n.t('Set_username_subtitle')} </Text> <TextInput diff --git a/app/views/SettingsView/index.js b/app/views/SettingsView/index.js index 0df968e5f9..4c62e19bcf 100644 --- a/app/views/SettingsView/index.js +++ b/app/views/SettingsView/index.js @@ -1,7 +1,5 @@ import React from 'react'; -import { - Clipboard, Linking, Share -} from 'react-native'; +import { Clipboard, Linking, Share } from 'react-native'; import PropTypes from 'prop-types'; import { connect } from 'react-redux'; import FastImage from '@rocket.chat/react-native-fast-image'; @@ -15,15 +13,11 @@ import StatusBar from '../../containers/StatusBar'; import * as List from '../../containers/List'; import I18n from '../../i18n'; import RocketChat from '../../lib/rocketchat'; -import { - getDeviceModel, getReadableVersion, isAndroid -} from '../../utils/deviceInfo'; +import { getDeviceModel, getReadableVersion, isAndroid } from '../../utils/deviceInfo'; import openLink from '../../utils/openLink'; import { showConfirmationAlert, showErrorAlert } from '../../utils/info'; import { events, logEvent } from '../../utils/log'; -import { - APP_STORE_LINK, FDROID_MARKET_LINK, LICENSE_LINK, PLAY_MARKET_LINK -} from '../../constants/links'; +import { APP_STORE_LINK, FDROID_MARKET_LINK, LICENSE_LINK, PLAY_MARKET_LINK } from '../../constants/links'; import { withTheme } from '../../theme'; import SidebarView from '../SidebarView'; import { LISTENER } from '../../containers/Toast'; @@ -37,11 +31,12 @@ import { getUserSelector } from '../../selectors/login'; class SettingsView extends React.Component { static navigationOptions = ({ navigation, isMasterDetail }) => ({ - headerLeft: () => (isMasterDetail ? ( - <HeaderButton.CloseModal navigation={navigation} testID='settings-view-close' /> - ) : ( - <HeaderButton.Drawer navigation={navigation} testID='settings-view-drawer' /> - )), + headerLeft: () => + isMasterDetail ? ( + <HeaderButton.CloseModal navigation={navigation} testID='settings-view-close' /> + ) : ( + <HeaderButton.Drawer navigation={navigation} testID='settings-view-drawer' /> + ), title: I18n.t('Settings') }); @@ -57,9 +52,9 @@ class SettingsView extends React.Component { id: PropTypes.string }), appStart: PropTypes.func - } + }; - checkCookiesAndLogout = async() => { + checkCookiesAndLogout = async () => { const { logout, user } = this.props; const db = database.servers; const usersCollection = db.get('users'); @@ -71,7 +66,7 @@ class SettingsView extends React.Component { message: I18n.t('Clear_cookies_desc'), confirmationText: I18n.t('Clear_cookies_yes'), dismissText: I18n.t('Clear_cookies_no'), - onPress: async() => { + onPress: async () => { await CookieManager.clearAll(true); logout(); }, @@ -85,7 +80,7 @@ class SettingsView extends React.Component { } catch { // Do nothing: user not found } - } + }; handleLogout = () => { logEvent(events.SE_LOG_OUT); @@ -94,16 +89,18 @@ class SettingsView extends React.Component { confirmationText: I18n.t('Logout'), onPress: this.checkCookiesAndLogout }); - } + }; handleClearCache = () => { logEvent(events.SE_CLEAR_LOCAL_SERVER_CACHE); showConfirmationAlert({ message: I18n.t('This_will_clear_all_your_offline_data'), confirmationText: I18n.t('Clear'), - onPress: async() => { + onPress: async () => { const { - server: { server }, appStart, selectServerRequest + server: { server }, + appStart, + selectServerRequest } = this.props; appStart({ root: ROOT_LOADING, text: I18n.t('Clear_cache_loading') }); await RocketChat.clearCache({ server }); @@ -113,29 +110,29 @@ class SettingsView extends React.Component { selectServerRequest(server); } }); - } + }; - navigateToScreen = (screen) => { - logEvent(events[`SE_GO_${ screen.replace('View', '').toUpperCase() }`]); + navigateToScreen = screen => { + logEvent(events[`SE_GO_${screen.replace('View', '').toUpperCase()}`]); const { navigation } = this.props; navigation.navigate(screen); - } + }; - sendEmail = async() => { + sendEmail = async () => { logEvent(events.SE_CONTACT_US); const subject = encodeURI('React Native App Support'); const email = encodeURI('support@rocket.chat'); const description = encodeURI(` - version: ${ getReadableVersion } - device: ${ getDeviceModel } + version: ${getReadableVersion} + device: ${getDeviceModel} `); try { - await Linking.openURL(`mailto:${ email }?subject=${ subject }&body=${ description }`); + await Linking.openURL(`mailto:${email}?subject=${subject}&body=${description}`); } catch (e) { logEvent(events.SE_CONTACT_US_F); showErrorAlert(I18n.t('error-email-send-failed', { message: 'support@rocket.chat' })); } - } + }; shareApp = () => { let message; @@ -148,29 +145,31 @@ class SettingsView extends React.Component { message = APP_STORE_LINK; } Share.share({ message }); - } + }; copyServerVersion = () => { - const { server: { version } } = this.props; + const { + server: { version } + } = this.props; logEvent(events.SE_COPY_SERVER_VERSION, { serverVersion: version }); this.saveToClipboard(version); - } + }; copyAppVersion = () => { logEvent(events.SE_COPY_APP_VERSION, { appVersion: getReadableVersion }); this.saveToClipboard(getReadableVersion); - } + }; - saveToClipboard = async(content) => { + saveToClipboard = async content => { await Clipboard.setString(content); EventEmitter.emit(LISTENER, { message: I18n.t('Copied_to_clipboard') }); - } + }; onPressLicense = () => { logEvent(events.SE_READ_LICENSE); const { theme } = this.props; openLink(LICENSE_LINK, theme); - } + }; render() { const { server, isMasterDetail, theme } = this.props; @@ -200,12 +199,7 @@ class SettingsView extends React.Component { <List.Section> <List.Separator /> - <List.Item - title='Contact_us' - onPress={this.sendEmail} - showActionIndicator - testID='settings-view-contact' - /> + <List.Item title='Contact_us' onPress={this.sendEmail} showActionIndicator testID='settings-view-contact' /> <List.Separator /> <List.Item title='Language' @@ -225,12 +219,7 @@ class SettingsView extends React.Component { </> ) : null} <List.Separator /> - <List.Item - title='Share_this_app' - showActionIndicator - onPress={this.shareApp} - testID='settings-view-share-app' - /> + <List.Item title='Share_this_app' showActionIndicator onPress={this.shareApp} testID='settings-view-share-app' /> <List.Separator /> <List.Item title='Default_browser' @@ -257,12 +246,7 @@ class SettingsView extends React.Component { <List.Section> <List.Separator /> - <List.Item - title='License' - onPress={this.onPressLicense} - showActionIndicator - testID='settings-view-license' - /> + <List.Item title='License' onPress={this.onPressLicense} showActionIndicator testID='settings-view-license' /> <List.Separator /> <List.Item title={I18n.t('Version_no', { version: getReadableVersion })} @@ -274,7 +258,7 @@ class SettingsView extends React.Component { <List.Item title={I18n.t('Server_version', { version: server.version })} onPress={this.copyServerVersion} - subtitle={`${ server.server.split('//')[1] }`} + subtitle={`${server.server.split('//')[1]}`} testID='settings-view-server-version' translateTitle={false} translateSubtitle={false} diff --git a/app/views/ShareListView/Header/Header.ios.js b/app/views/ShareListView/Header/Header.ios.js index 5d4b0a8455..d68bacff2e 100644 --- a/app/views/ShareListView/Header/Header.ios.js +++ b/app/views/ShareListView/Header/Header.ios.js @@ -16,12 +16,10 @@ const styles = StyleSheet.create({ } }); -const Header = React.memo(({ - searching, onChangeSearchText, initSearch, cancelSearch, theme -}) => { +const Header = React.memo(({ searching, onChangeSearchText, initSearch, cancelSearch, theme }) => { const [text, setText] = useState(''); - const onChangeText = (searchText) => { + const onChangeText = searchText => { onChangeSearchText(searchText); setText(searchText); }; @@ -46,18 +44,8 @@ const Header = React.memo(({ borderColor: themes[theme].separatorColor, backgroundColor: themes[theme].headerBackground } - ]} - > - { - !searching - ? ( - <HeaderButton.CancelModal - onPress={ShareExtension.close} - testID='share-extension-close' - /> - ) - : null - } + ]}> + {!searching ? <HeaderButton.CancelModal onPress={ShareExtension.close} testID='share-extension-close' /> : null} <SearchBox value={text} hasCancel={searching} diff --git a/app/views/ShareListView/Header/index.js b/app/views/ShareListView/Header/index.js index eff18acda4..d66c9a8041 100644 --- a/app/views/ShareListView/Header/index.js +++ b/app/views/ShareListView/Header/index.js @@ -3,10 +3,8 @@ import PropTypes from 'prop-types'; import Header from './Header'; -const ShareListHeader = React.memo(({ - searching, initSearch, cancelSearch, search, theme -}) => { - const onSearchChangeText = (text) => { +const ShareListHeader = React.memo(({ searching, initSearch, cancelSearch, search, theme }) => { + const onSearchChangeText = text => { search(text.trim()); }; diff --git a/app/views/ShareListView/index.js b/app/views/ShareListView/index.js index ed7a2c9f95..e0a82a50de 100644 --- a/app/views/ShareListView/index.js +++ b/app/views/ShareListView/index.js @@ -1,8 +1,6 @@ import React from 'react'; import PropTypes from 'prop-types'; -import { - BackHandler, FlatList, Keyboard, PermissionsAndroid, ScrollView, Text, View -} from 'react-native'; +import { BackHandler, FlatList, Keyboard, PermissionsAndroid, ScrollView, Text, View } from 'react-native'; import ShareExtension from 'rn-extensions-share'; import * as FileSystem from 'expo-file-system'; import { connect } from 'react-redux'; @@ -42,7 +40,7 @@ class ShareListView extends React.Component { token: PropTypes.string, userId: PropTypes.string, theme: PropTypes.string - } + }; constructor(props) { super(props); @@ -60,8 +58,12 @@ class ShareListView extends React.Component { }; this.setHeader(); if (isAndroid) { - this.unsubscribeFocus = props.navigation.addListener('focus', () => BackHandler.addEventListener('hardwareBackPress', this.handleBackPress)); - this.unsubscribeBlur = props.navigation.addListener('blur', () => BackHandler.removeEventListener('hardwareBackPress', this.handleBackPress)); + this.unsubscribeFocus = props.navigation.addListener('focus', () => + BackHandler.addEventListener('hardwareBackPress', this.handleBackPress) + ); + this.unsubscribeBlur = props.navigation.addListener('blur', () => + BackHandler.removeEventListener('hardwareBackPress', this.handleBackPress) + ); } } @@ -72,7 +74,11 @@ class ShareListView extends React.Component { if (isAndroid) { await this.askForPermission(data); } - const info = await Promise.all(data.filter(item => item.type === 'media').map(file => FileSystem.getInfoAsync(this.uriToPath(file.value), { size: true }))); + const info = await Promise.all( + data + .filter(item => item.type === 'media') + .map(file => FileSystem.getInfoAsync(this.uriToPath(file.value), { size: true })) + ); const attachments = info.map(file => ({ filename: decodeURIComponent(file.uri.substring(file.uri.lastIndexOf('/') + 1)), description: '', @@ -80,7 +86,7 @@ class ShareListView extends React.Component { mime: mime.lookup(file.uri), path: file.uri })); - const text = data.filter(item => item.type === 'text').reduce((acc, item) => `${ item.value }\n${ acc }`, ''); + const text = data.filter(item => item.type === 'text').reduce((acc, item) => `${item.value}\n${acc}`, ''); this.setState({ text, attachments @@ -154,30 +160,23 @@ class ShareListView extends React.Component { } navigation.setOptions({ - headerLeft: () => (searching - ? ( + headerLeft: () => + searching ? ( <HeaderButton.Container left> <HeaderButton.Item title='cancel' iconName='close' onPress={this.cancelSearch} /> </HeaderButton.Container> - ) - : ( - <HeaderButton.CancelModal - onPress={ShareExtension.close} - testID='share-extension-close' - /> - )), + ) : ( + <HeaderButton.CancelModal onPress={ShareExtension.close} testID='share-extension-close' /> + ), headerTitle: () => <ShareListHeader searching={searching} search={this.search} theme={theme} />, - headerRight: () => ( - searching - ? null - : ( - <HeaderButton.Container> - <HeaderButton.Item iconName='search' onPress={this.initSearch} /> - </HeaderButton.Container> - ) - ) + headerRight: () => + searching ? null : ( + <HeaderButton.Container> + <HeaderButton.Item iconName='search' onPress={this.initSearch} /> + </HeaderButton.Container> + ) }); - } + }; // eslint-disable-next-line react/sort-comp internalSetState = (...args) => { @@ -186,9 +185,9 @@ class ShareListView extends React.Component { animateNextTransition(); } this.setState(...args); - } + }; - query = async(text) => { + query = async text => { const db = database.active; const defaultWhereClause = [ Q.where('archived', false), @@ -199,14 +198,12 @@ class ShareListView extends React.Component { ]; if (text) { const likeString = sanitizeLikeString(text); - defaultWhereClause.push( - Q.or( - Q.where('name', Q.like(`%${ likeString }%`)), - Q.where('fname', Q.like(`%${ likeString }%`)) - ) - ); + defaultWhereClause.push(Q.or(Q.where('name', Q.like(`%${likeString}%`)), Q.where('fname', Q.like(`%${likeString}%`)))); } - const data = await db.get('subscriptions').query(...defaultWhereClause).fetch(); + const data = await db + .get('subscriptions') + .query(...defaultWhereClause) + .fetch(); return data.map(item => ({ rid: item.rid, t: item.t, @@ -219,9 +216,9 @@ class ShareListView extends React.Component { usernames: item.usernames, topic: item.topic })); - } + }; - getSubscriptions = async(server) => { + getSubscriptions = async server => { const serversDB = database.servers; if (server) { @@ -245,7 +242,7 @@ class ShareListView extends React.Component { } }; - askForPermission = async(data) => { + askForPermission = async data => { const mediaIndex = data.findIndex(item => item.type === 'media'); if (mediaIndex !== -1) { const result = await PermissionsAndroid.request(PermissionsAndroid.PERMISSIONS.READ_EXTERNAL_STORAGE, permission); @@ -256,17 +253,17 @@ class ShareListView extends React.Component { } this.setState({ needsPermission: false }); return Promise.resolve(); - } + }; uriToPath = uri => decodeURIComponent(isIOS ? uri.replace(/^file:\/\//, '') : uri); - getRoomTitle = (item) => { + getRoomTitle = item => { const { serverInfo } = this.state; const { useRealName } = serverInfo; return ((item.prid || useRealName) && item.fname) || item.name; - } + }; - shareMessage = (room) => { + shareMessage = room => { const { attachments, text, serverInfo } = this.state; const { navigation } = this.props; @@ -277,25 +274,25 @@ class ShareListView extends React.Component { serverInfo, isShareExtension: true }); - } + }; - search = async(text) => { + search = async text => { const result = await this.query(text); this.internalSetState({ searchResults: result, searchText: text }); - } + }; initSearch = () => { const { chats } = this.state; this.setState({ searching: true, searchResults: chats }, () => this.setHeader()); - } + }; cancelSearch = () => { this.internalSetState({ searching: false, searchResults: [], searchText: '' }, () => this.setHeader()); Keyboard.dismiss(); - } + }; handleBackPress = () => { const { searching } = this.state; @@ -304,9 +301,9 @@ class ShareListView extends React.Component { return true; } return false; - } + }; - renderSectionHeader = (header) => { + renderSectionHeader = header => { const { searching } = this.state; const { theme } = this.props; if (searching) { @@ -316,21 +313,17 @@ class ShareListView extends React.Component { return ( <> <View style={[styles.headerContainer, { backgroundColor: themes[theme].auxiliaryBackground }]}> - <Text style={[styles.headerText, { color: themes[theme].titleText }]}> - {I18n.t(header)} - </Text> + <Text style={[styles.headerText, { color: themes[theme].titleText }]}>{I18n.t(header)}</Text> </View> <List.Separator /> </> ); - } + }; renderItem = ({ item }) => { const { serverInfo } = this.state; const { useRealName } = serverInfo; - const { - userId, token, server, theme - } = this.props; + const { userId, token, server, theme } = this.props; let description; switch (item.t) { case 'c': @@ -358,11 +351,11 @@ class ShareListView extends React.Component { description={description} type={item.prid ? 'discussion' : item.t} onPress={() => this.shareMessage(item)} - testID={`share-extension-item-${ item.name }`} + testID={`share-extension-item-${item.name}`} theme={theme} /> ); - } + }; renderSelectServer = () => { const { serverInfo } = this.state; @@ -370,14 +363,11 @@ class ShareListView extends React.Component { return ( <> {this.renderSectionHeader('Select_Server')} - <ServerItem - onPress={() => navigation.navigate('SelectServerView')} - item={serverInfo} - /> + <ServerItem onPress={() => navigation.navigate('SelectServerView')} item={serverInfo} /> <List.Separator /> </> ); - } + }; renderEmptyComponent = () => { const { theme } = this.props; @@ -386,7 +376,7 @@ class ShareListView extends React.Component { <Text style={[styles.title, { color: themes[theme].titleText }]}>{I18n.t('No_results_found')}</Text> </View> ); - } + }; renderHeader = () => { const { searching, serversCount } = this.state; @@ -405,12 +395,10 @@ class ShareListView extends React.Component { {this.renderSectionHeader('Chats')} </> ); - } + }; render = () => { - const { - chats, loading, searchResults, searching, searchText, needsPermission - } = this.state; + const { chats, loading, searchResults, searching, searchText, needsPermission } = this.state; const { theme } = this.props; if (loading) { @@ -422,8 +410,7 @@ class ShareListView extends React.Component { <SafeAreaView> <ScrollView style={{ backgroundColor: themes[theme].backgroundColor }} - contentContainerStyle={[styles.container, styles.centered, { backgroundColor: themes[theme].backgroundColor }]} - > + contentContainerStyle={[styles.container, styles.centered, { backgroundColor: themes[theme].backgroundColor }]}> <Text style={[styles.permissionTitle, { color: themes[theme].titleText }]}>{permission.title}</Text> <Text style={[styles.permissionMessage, { color: themes[theme].bodyText }]}>{permission.message}</Text> </ScrollView> @@ -449,7 +436,7 @@ class ShareListView extends React.Component { /> </SafeAreaView> ); - } + }; } const mapStateToProps = ({ share }) => ({ diff --git a/app/views/ShareView/Header.js b/app/views/ShareView/Header.js index fc02a1f700..a52fbf4536 100644 --- a/app/views/ShareView/Header.js +++ b/app/views/ShareView/Header.js @@ -76,16 +76,11 @@ const Header = React.memo(({ room, thread, theme }) => { <View style={styles.container}> <View style={styles.inner}> <Text numberOfLines={1} style={styles.text}> - <Text style={[styles.text, { color: textColor }]} numberOfLines={1}>{I18n.t('Sending_to')} </Text> - <CustomIcon - name={icon} - size={16} - color={textColor} - /> - <Text - style={[styles.name, { color: textColor }]} - numberOfLines={1} - > + <Text style={[styles.text, { color: textColor }]} numberOfLines={1}> + {I18n.t('Sending_to')}{' '} + </Text> + <CustomIcon name={icon} size={16} color={textColor} /> + <Text style={[styles.name, { color: textColor }]} numberOfLines={1}> {title} </Text> </Text> diff --git a/app/views/ShareView/Preview.js b/app/views/ShareView/Preview.js index 47e9854a0a..d559640f43 100644 --- a/app/views/ShareView/Preview.js +++ b/app/views/ShareView/Preview.js @@ -35,26 +35,17 @@ const styles = StyleSheet.create({ } }); -const IconPreview = React.memo(({ - iconName, title, description, theme, width, height, danger -}) => ( +const IconPreview = React.memo(({ iconName, title, description, theme, width, height, danger }) => ( <ScrollView style={{ backgroundColor: themes[theme].auxiliaryBackground }} - contentContainerStyle={[styles.fileContainer, { width, height }]} - > - <CustomIcon - name={iconName} - size={56} - color={danger ? themes[theme].dangerColor : themes[theme].tintColor} - /> + contentContainerStyle={[styles.fileContainer, { width, height }]}> + <CustomIcon name={iconName} size={56} color={danger ? themes[theme].dangerColor : themes[theme].tintColor} /> <Text style={[styles.fileName, { color: themes[theme].titleText }]}>{title}</Text> {description ? <Text style={[styles.fileSize, { color: themes[theme].bodyText }]}>{description}</Text> : null} </ScrollView> )); -const Preview = React.memo(({ - item, theme, isShareExtension, length -}) => { +const Preview = React.memo(({ item, theme, isShareExtension, length }) => { const type = item?.mime; const { width, height } = useDimensions(); const { isLandscape } = useOrientation(); diff --git a/app/views/ShareView/Thumbs.js b/app/views/ShareView/Thumbs.js index d5e5bfb00f..758433e3fe 100644 --- a/app/views/ShareView/Thumbs.js +++ b/app/views/ShareView/Thumbs.js @@ -1,8 +1,6 @@ import React from 'react'; import PropTypes from 'prop-types'; -import { - FlatList, Image, StyleSheet, View -} from 'react-native'; +import { FlatList, Image, StyleSheet, View } from 'react-native'; import { RectButton, TouchableNativeFeedback, TouchableOpacity } from 'react-native-gesture-handler'; import { BUTTON_HIT_SLOP } from '../../containers/message/utils'; @@ -70,20 +68,11 @@ const ThumbContent = React.memo(({ item, theme, isShareExtension }) => { if (type?.match(/image/)) { // Disallow preview of images too big in order to prevent memory issues on iOS share extension if (allowPreview(isShareExtension, item?.size)) { - return ( - <Image - source={{ uri: item.path }} - style={[styles.thumb, { borderColor: themes[theme].borderColor }]} - /> - ); + return <Image source={{ uri: item.path }} style={[styles.thumb, { borderColor: themes[theme].borderColor }]} />; } else { return ( <View style={[styles.thumb, { borderColor: themes[theme].borderColor }]}> - <CustomIcon - name='image' - size={30} - color={themes[theme].tintColor} - /> + <CustomIcon name='image' size={30} color={themes[theme].tintColor} /> </View> ); } @@ -93,11 +82,7 @@ const ThumbContent = React.memo(({ item, theme, isShareExtension }) => { if (isIOS) { return ( <View style={[styles.thumb, { borderColor: themes[theme].borderColor }]}> - <CustomIcon - name='camera' - size={30} - color={themes[theme].tintColor} - /> + <CustomIcon name='camera' size={30} color={themes[theme].tintColor} /> </View> ); } else { @@ -105,12 +90,7 @@ const ThumbContent = React.memo(({ item, theme, isShareExtension }) => { return ( <> <Image source={{ uri }} style={styles.thumb} /> - <CustomIcon - name='camera-filled' - size={20} - color={themes[theme].buttonText} - style={styles.videoThumbIcon} - /> + <CustomIcon name='camera-filled' size={20} color={themes[theme].buttonText} style={styles.videoThumbIcon} /> </> ); } @@ -120,46 +100,28 @@ const ThumbContent = React.memo(({ item, theme, isShareExtension }) => { return null; }); -const Thumb = ({ - item, theme, isShareExtension, onPress, onRemove -}) => ( +const Thumb = ({ item, theme, isShareExtension, onPress, onRemove }) => ( <ThumbButton style={styles.item} onPress={() => onPress(item)} activeOpacity={0.7}> <> - <ThumbContent - item={item} - theme={theme} - isShareExtension={isShareExtension} - /> + <ThumbContent item={item} theme={theme} isShareExtension={isShareExtension} /> <RectButton hitSlop={BUTTON_HIT_SLOP} style={[styles.removeButton, { backgroundColor: themes[theme].bodyText, borderColor: themes[theme].auxiliaryBackground }]} activeOpacity={1} rippleColor={themes[theme].bannerBackground} - onPress={() => onRemove(item)} - > + onPress={() => onRemove(item)}> <View style={[styles.removeView, { borderColor: themes[theme].auxiliaryBackground }]}> - <CustomIcon - name='close' - color={themes[theme].backgroundColor} - size={14} - /> + <CustomIcon name='close' color={themes[theme].backgroundColor} size={14} /> </View> </RectButton> {!item?.canUpload ? ( - <CustomIcon - name='warning' - size={20} - color={themes[theme].dangerColor} - style={styles.dangerIcon} - /> + <CustomIcon name='warning' size={20} color={themes[theme].dangerColor} style={styles.dangerIcon} /> ) : null} </> </ThumbButton> ); -const Thumbs = React.memo(({ - attachments, theme, isShareExtension, onPress, onRemove -}) => { +const Thumbs = React.memo(({ attachments, theme, isShareExtension, onPress, onRemove }) => { if (attachments?.length > 1) { return ( <FlatList diff --git a/app/views/ShareView/index.js b/app/views/ShareView/index.js index d97ccc34d8..473b518dff 100644 --- a/app/views/ShareView/index.js +++ b/app/views/ShareView/index.js @@ -47,20 +47,18 @@ class ShareView extends Component { this.getServerInfo(); } - componentDidMount = async() => { + componentDidMount = async () => { const readOnly = await this.getReadOnly(); const { attachments, selected } = await this.getAttachments(); this.setState({ readOnly, attachments, selected }, () => this.setHeader()); - } + }; componentWillUnmount = () => { - console.countReset(`${ this.constructor.name }.render calls`); - } + console.countReset(`${this.constructor.name}.render calls`); + }; setHeader = () => { - const { - room, thread, readOnly, attachments - } = this.state; + const { room, thread, readOnly, attachments } = this.state; const { navigation, theme } = this.props; const options = { @@ -71,7 +69,9 @@ class ShareView extends Component { // if is share extension show default back button if (!this.isShareExtension) { - options.headerLeft = () => <HeaderButton.CloseModal navigation={navigation} buttonStyle={{ color: themes[theme].previewTintColor }} />; + options.headerLeft = () => ( + <HeaderButton.CloseModal navigation={navigation} buttonStyle={{ color: themes[theme].previewTintColor }} /> + ); } if (!attachments.length && !readOnly) { @@ -89,10 +89,10 @@ class ShareView extends Component { options.headerBackground = () => <View style={[styles.container, { backgroundColor: themes[theme].previewBackground }]} />; navigation.setOptions(options); - } + }; // fetch server info - getServerInfo = async() => { + getServerInfo = async () => { const { server } = this.props; const serversDB = database.servers; const serversCollection = serversDB.get('servers'); @@ -101,47 +101,49 @@ class ShareView extends Component { } catch (error) { // Do nothing } - } + }; - getReadOnly = async() => { + getReadOnly = async () => { const { room } = this.state; const { user } = this.props; const readOnly = await isReadOnly(room, user); return readOnly; - } + }; - getAttachments = async() => { + getAttachments = async () => { const { mediaAllowList, maxFileSize } = this.state; - const items = await Promise.all(this.files.map(async(item) => { - // Check server settings - const { success: canUpload, error } = canUploadFile(item, mediaAllowList, maxFileSize); - item.canUpload = canUpload; - item.error = error; - - // get video thumbnails - if (isAndroid && this.files.length > 1 && item.mime?.match?.(/video/)) { - try { - const VideoThumbnails = require('expo-video-thumbnails'); - const { uri } = await VideoThumbnails.getThumbnailAsync(item.path); - item.uri = uri; - } catch { - // Do nothing + const items = await Promise.all( + this.files.map(async item => { + // Check server settings + const { success: canUpload, error } = canUploadFile(item, mediaAllowList, maxFileSize); + item.canUpload = canUpload; + item.error = error; + + // get video thumbnails + if (isAndroid && this.files.length > 1 && item.mime?.match?.(/video/)) { + try { + const VideoThumbnails = require('expo-video-thumbnails'); + const { uri } = await VideoThumbnails.getThumbnailAsync(item.path); + item.uri = uri; + } catch { + // Do nothing + } } - } - // Set a filename, if there isn't any - if (!item.filename) { - item.filename = new Date().toISOString(); - } - return item; - })); + // Set a filename, if there isn't any + if (!item.filename) { + item.filename = new Date().toISOString(); + } + return item; + }) + ); return { attachments: items, selected: items[0] }; - } + }; - send = async() => { + send = async () => { const { loading, selected } = this.state; if (loading) { return; @@ -150,16 +152,14 @@ class ShareView extends Component { // update state await this.selectFile(selected); - const { - attachments, room, text, thread - } = this.state; + const { attachments, room, text, thread } = this.state; const { navigation, server, user } = this.props; // if it's share extension this should show loading if (this.isShareExtension) { this.setState({ loading: true }); - // if it's not share extension this can close + // if it's not share extension this can close } else { navigation.pop(); } @@ -167,34 +167,29 @@ class ShareView extends Component { try { // Send attachment if (attachments.length) { - await Promise.all(attachments.map(({ - filename: name, - mime: type, - description, - size, - path, - canUpload - }) => { - if (canUpload) { - return RocketChat.sendFileMessage( - room.rid, - { - name, - description, - size, - type, - path, - store: 'Uploads' - }, - thread?.id, - server, - { id: user.id, token: user.token } - ); - } - return Promise.resolve(); - })); - - // Send text message + await Promise.all( + attachments.map(({ filename: name, mime: type, description, size, path, canUpload }) => { + if (canUpload) { + return RocketChat.sendFileMessage( + room.rid, + { + name, + description, + size, + type, + path, + store: 'Uploads' + }, + thread?.id, + server, + { id: user.id, token: user.token } + ); + } + return Promise.resolve(); + }) + ); + + // Send text message } else if (text.length) { await RocketChat.sendMessage(room.rid, text, thread?.id, { id: user.id, token: user.token }); } @@ -208,11 +203,11 @@ class ShareView extends Component { } }; - selectFile = (item) => { + selectFile = item => { const { attachments, selected } = this.state; if (attachments.length > 0) { const { text } = this.messagebox.current; - const newAttachments = attachments.map((att) => { + const newAttachments = attachments.map(att => { if (att.path === selected.path) { att.description = text; } @@ -220,9 +215,9 @@ class ShareView extends Component { }); return this.setState({ attachments: newAttachments, selected: item }); } - } + }; - removeFile = (item) => { + removeFile = item => { const { selected, attachments } = this.state; let newSelected; if (item.path === selected.path) { @@ -230,7 +225,7 @@ class ShareView extends Component { // Selects the next one, if available if (attachments[selectedIndex + 1]?.path) { newSelected = attachments[selectedIndex + 1]; - // If it's the last thumb, selects the previous one + // If it's the last thumb, selects the previous one } else { newSelected = attachments[selectedIndex - 1] || {}; } @@ -238,16 +233,14 @@ class ShareView extends Component { this.setState({ attachments: attachments.filter(att => att.path !== item.path), selected: newSelected ?? selected }, () => { this.messagebox?.current?.forceUpdate?.(); }); - } + }; - onChangeText = (text) => { + onChangeText = text => { this.setState({ text }); - } + }; renderContent = () => { - const { - attachments, selected, room, text - } = this.state; + const { attachments, selected, room, text } = this.state; const { theme, navigation } = this.props; if (attachments.length) { @@ -273,8 +266,7 @@ class ShareView extends Component { navigation={navigation} isFocused={navigation.isFocused} iOSScrollBehavior={NativeModules.KeyboardTrackingViewManager?.KeyboardTrackingScrollBehaviorNone} - isActionsEnabled={false} - > + isActionsEnabled={false}> <Thumbs attachments={attachments} theme={theme} @@ -290,11 +282,7 @@ class ShareView extends Component { return ( <TextInput containerStyle={styles.inputContainer} - inputStyle={[ - styles.input, - styles.textInput, - { backgroundColor: themes[theme].focusedBackground } - ]} + inputStyle={[styles.input, styles.textInput, { backgroundColor: themes[theme].focusedBackground }]} placeholder='' onChangeText={this.onChangeText} defaultValue='' @@ -308,7 +296,7 @@ class ShareView extends Component { }; render() { - console.count(`${ this.constructor.name }.render calls`); + console.count(`${this.constructor.name}.render calls`); const { readOnly, room, loading } = this.state; const { theme } = this.props; if (readOnly || isBlocked(room)) { @@ -321,9 +309,7 @@ class ShareView extends Component { ); } return ( - <SafeAreaView - style={{ backgroundColor: themes[theme].backgroundColor }} - > + <SafeAreaView style={{ backgroundColor: themes[theme].backgroundColor }}> <StatusBar barStyle='light-content' backgroundColor={themes[theme].previewBackground} /> {this.renderContent()} <Loading visible={loading} /> diff --git a/app/views/SidebarView/SidebarItem.js b/app/views/SidebarView/SidebarItem.js index 251012aceb..4e0f9c1a18 100644 --- a/app/views/SidebarView/SidebarItem.js +++ b/app/views/SidebarView/SidebarItem.js @@ -7,27 +7,20 @@ import { themes } from '../../constants/colors'; import { withTheme } from '../../theme'; import styles from './styles'; -const Item = React.memo(({ - left, right, text, onPress, testID, current, theme -}) => ( +const Item = React.memo(({ left, right, text, onPress, testID, current, theme }) => ( <Touch key={testID} testID={testID} onPress={onPress} theme={theme} - style={[styles.item, current && { backgroundColor: themes[theme].borderColor }]} - > - <View style={styles.itemHorizontal}> - {left} - </View> + style={[styles.item, current && { backgroundColor: themes[theme].borderColor }]}> + <View style={styles.itemHorizontal}>{left}</View> <View style={styles.itemCenter}> <Text style={[styles.itemText, { color: themes[theme].titleText }]} numberOfLines={1}> {text} </Text> </View> - <View style={styles.itemHorizontal}> - {right} - </View> + <View style={styles.itemHorizontal}>{right}</View> </Touch> )); diff --git a/app/views/SidebarView/index.js b/app/views/SidebarView/index.js index 3853017127..975d8a896f 100644 --- a/app/views/SidebarView/index.js +++ b/app/views/SidebarView/index.js @@ -1,8 +1,6 @@ import React, { Component } from 'react'; import PropTypes from 'prop-types'; -import { - ScrollView, Text, TouchableWithoutFeedback, View -} from 'react-native'; +import { ScrollView, Text, TouchableWithoutFeedback, View } from 'react-native'; import { connect } from 'react-redux'; import { dequal } from 'dequal'; @@ -41,7 +39,7 @@ class Sidebar extends Component { viewRoomAdministrationPermission: PropTypes.object, viewUserAdministrationPermission: PropTypes.object, viewPrivilegedSettingPermission: PropTypes.object - } + }; constructor(props) { super(props); @@ -53,7 +51,17 @@ class Sidebar extends Component { shouldComponentUpdate(nextProps, nextState) { const { showStatus, isAdmin } = this.state; const { - Site_Name, user, baseUrl, state, isMasterDetail, useRealName, theme, viewStatisticsPermission, viewRoomAdministrationPermission, viewUserAdministrationPermission, viewPrivilegedSettingPermission + Site_Name, + user, + baseUrl, + state, + isMasterDetail, + useRealName, + theme, + viewStatisticsPermission, + viewRoomAdministrationPermission, + viewUserAdministrationPermission, + viewPrivilegedSettingPermission } = this.props; // Drawer navigation state if (state?.index !== nextProps.state?.index) { @@ -101,33 +109,38 @@ class Sidebar extends Component { return false; } - getIsAdmin() { const { - user, viewStatisticsPermission, viewRoomAdministrationPermission, viewUserAdministrationPermission, viewPrivilegedSettingPermission + user, + viewStatisticsPermission, + viewRoomAdministrationPermission, + viewUserAdministrationPermission, + viewPrivilegedSettingPermission } = this.props; const { roles } = user; - const allPermissions = [viewStatisticsPermission, viewRoomAdministrationPermission, viewUserAdministrationPermission, viewPrivilegedSettingPermission]; + const allPermissions = [ + viewStatisticsPermission, + viewRoomAdministrationPermission, + viewUserAdministrationPermission, + viewPrivilegedSettingPermission + ]; let isAdmin = false; - if (roles) { + if (roles) { isAdmin = allPermissions.reduce((result, permission) => { if (permission) { - return ( - result || permission.some(r => roles.indexOf(r) !== -1) - ); + return result || permission.some(r => roles.indexOf(r) !== -1); } return result; - }, - false); + }, false); } return isAdmin; } - sidebarNavigate = (route) => { - logEvent(events[`SIDEBAR_GO_${ route.replace('StackNavigator', '').replace('View', '').toUpperCase() }`]); + sidebarNavigate = route => { + logEvent(events[`SIDEBAR_GO_${route.replace('StackNavigator', '').replace('View', '').toUpperCase()}`]); Navigation.navigate(route); - } + }; get currentItemKey() { const { state } = this.props; @@ -140,7 +153,7 @@ class Sidebar extends Component { return; } navigation.closeDrawer(); - } + }; renderAdmin = () => { const { theme, isMasterDetail } = this.props; @@ -160,7 +173,7 @@ class Sidebar extends Component { /> </> ); - } + }; renderNavigation = () => { const { theme } = this.props; @@ -190,7 +203,7 @@ class Sidebar extends Component { {this.renderAdmin()} </> ); - } + }; renderCustomStatus = () => { const { user, theme } = this.props; @@ -203,12 +216,10 @@ class Sidebar extends Component { testID='sidebar-custom-status' /> ); - } + }; render() { - const { - user, Site_Name, baseUrl, useRealName, allowStatusMessage, isMasterDetail, theme - } = this.props; + const { user, Site_Name, baseUrl, useRealName, allowStatusMessage, isMasterDetail, theme } = this.props; if (!user) { return null; @@ -219,29 +230,24 @@ class Sidebar extends Component { style={[ styles.container, { - backgroundColor: isMasterDetail - ? themes[theme].backgroundColor - : themes[theme].focusedBackground + backgroundColor: isMasterDetail ? themes[theme].backgroundColor : themes[theme].focusedBackground } ]} - {...scrollPersistTaps} - > + {...scrollPersistTaps}> <TouchableWithoutFeedback onPress={this.onPressUser} testID='sidebar-close-drawer'> <View style={styles.header} theme={theme}> - <Avatar - text={user.username} - style={styles.avatar} - size={30} - /> + <Avatar text={user.username} style={styles.avatar} size={30} /> <View style={styles.headerTextContainer}> <View style={styles.headerUsername}> - <Text numberOfLines={1} style={[styles.username, { color: themes[theme].titleText }]}>{useRealName ? user.name : user.username}</Text> + <Text numberOfLines={1} style={[styles.username, { color: themes[theme].titleText }]}> + {useRealName ? user.name : user.username} + </Text> </View> <Text style={[styles.currentServerText, { color: themes[theme].titleText }]} numberOfLines={1} - accessibilityLabel={`Connected to ${ baseUrl }`} - >{Site_Name} + accessibilityLabel={`Connected to ${baseUrl}`}> + {Site_Name} </Text> </View> </View> @@ -257,9 +263,7 @@ class Sidebar extends Component { <Separator theme={theme} /> </> ) : ( - <> - {this.renderAdmin()} - </> + <>{this.renderAdmin()}</> )} </ScrollView> </SafeAreaView> diff --git a/app/views/StatusView.js b/app/views/StatusView.js index cf5e365742..19c3fae2e8 100644 --- a/app/views/StatusView.js +++ b/app/views/StatusView.js @@ -19,19 +19,24 @@ import * as HeaderButton from '../containers/HeaderButton'; import { setUser as setUserAction } from '../actions/login'; import SafeAreaView from '../containers/SafeAreaView'; -const STATUS = [{ - id: 'online', - name: 'Online' -}, { - id: 'busy', - name: 'Busy' -}, { - id: 'away', - name: 'Away' -}, { - id: 'offline', - name: 'Invisible' -}]; +const STATUS = [ + { + id: 'online', + name: 'Online' + }, + { + id: 'busy', + name: 'Busy' + }, + { + id: 'away', + name: 'Away' + }, + { + id: 'offline', + name: 'Invisible' + } +]; const styles = StyleSheet.create({ inputContainer: { @@ -60,7 +65,7 @@ class StatusView extends React.Component { isMasterDetail: PropTypes.bool, setUser: PropTypes.func, Accounts_AllowInvisibleStatusOption: PropTypes.bool - } + }; constructor(props) { super(props); @@ -77,17 +82,13 @@ class StatusView extends React.Component { headerLeft: isMasterDetail ? undefined : () => <HeaderButton.CancelModal onPress={this.close} />, headerRight: () => ( <HeaderButton.Container> - <HeaderButton.Item - title={I18n.t('Done')} - onPress={this.submit} - testID='status-view-submit' - /> + <HeaderButton.Item title={I18n.t('Done')} onPress={this.submit} testID='status-view-submit' /> </HeaderButton.Container> ) }); - } + }; - submit = async() => { + submit = async () => { logEvent(events.STATUS_DONE); const { statusText } = this.state; const { user } = this.props; @@ -95,14 +96,14 @@ class StatusView extends React.Component { await this.setCustomStatus(statusText); } this.close(); - } + }; close = () => { const { navigation } = this.props; navigation.goBack(); - } + }; - setCustomStatus = async(statusText) => { + setCustomStatus = async statusText => { const { user, setUser } = this.props; this.setState({ loading: true }); @@ -123,7 +124,7 @@ class StatusView extends React.Component { } this.setState({ loading: false }); - } + }; renderHeader = () => { const { statusText } = this.state; @@ -136,14 +137,7 @@ class StatusView extends React.Component { value={statusText} containerStyle={styles.inputContainer} onChangeText={text => this.setState({ statusText: text })} - left={( - <Status - testID={`status-view-current-${ user.status }`} - style={styles.inputLeft} - status={user.status} - size={24} - /> - )} + left={<Status testID={`status-view-current-${user.status}`} style={styles.inputLeft} status={user.status} size={24} />} inputStyle={styles.inputStyle} placeholder={I18n.t('What_are_you_doing_right_now')} testID='status-view-input' @@ -151,7 +145,7 @@ class StatusView extends React.Component { <List.Separator /> </> ); - } + }; renderItem = ({ item }) => { const { statusText } = this.state; @@ -160,8 +154,8 @@ class StatusView extends React.Component { return ( <List.Item title={name} - onPress={async() => { - logEvent(events[`STATUS_${ item.id.toUpperCase() }`]); + onPress={async () => { + logEvent(events[`STATUS_${item.id.toUpperCase()}`]); if (user.status !== item.id) { try { const result = await RocketChat.setUserStatus(item.id, statusText); @@ -175,11 +169,11 @@ class StatusView extends React.Component { } } }} - testID={`status-view-${ id }`} + testID={`status-view-${id}`} left={() => <Status size={24} status={item.id} />} /> ); - } + }; render() { const { loading } = this.state; diff --git a/app/views/TeamChannelsView.js b/app/views/TeamChannelsView.js index bcd9a6af07..872fe1d406 100644 --- a/app/views/TeamChannelsView.js +++ b/app/views/TeamChannelsView.js @@ -37,7 +37,6 @@ const PERMISSION_EDIT_TEAM_CHANNEL = 'edit-team-channel'; const PERMISSION_REMOVE_TEAM_CHANNEL = 'remove-team-channel'; const PERMISSION_ADD_TEAM_CHANNEL = 'add-team-channel'; - const getItemLayout = (data, index) => ({ length: data.length, offset: ROW_HEIGHT * index, @@ -62,7 +61,7 @@ class TeamChannelsView extends React.Component { deletePPermission: PropTypes.array, showActionSheet: PropTypes.func, deleteRoom: PropTypes.func - } + }; constructor(props) { super(props); @@ -85,16 +84,14 @@ class TeamChannelsView extends React.Component { this.load(); } - loadTeam = async() => { + loadTeam = async () => { const { addTeamChannelPermission } = this.props; const { loading, data } = this.state; const db = database.active; try { const subCollection = db.get('subscriptions'); - this.teamChannels = await subCollection.query( - Q.where('team_id', Q.eq(this.teamId)) - ); + this.teamChannels = await subCollection.query(Q.where('team_id', Q.eq(this.teamId))); this.team = this.teamChannels?.find(channel => channel.teamMain); this.setHeader(); @@ -115,12 +112,10 @@ class TeamChannelsView extends React.Component { navigation.pop(); showErrorAlert(I18n.t('Team_not_found')); } - } + }; - load = debounce(async() => { - const { - loadingMore, data, search, isSearching, searchText, end - } = this.state; + load = debounce(async () => { + const { loadingMore, data, search, isSearching, searchText, end } = this.state; const length = isSearching ? search.length : data.length; if (loadingMore || end) { @@ -158,7 +153,7 @@ class TeamChannelsView extends React.Component { log(e); this.setState({ loading: false, loadingMore: false }); } - }, 300) + }, 300); setHeader = () => { const { isSearching, showCreate, data } = this.state; @@ -176,10 +171,7 @@ class TeamChannelsView extends React.Component { headerTitleAlign: 'left', headerLeft: () => ( <HeaderButton.Container left> - <HeaderButton.Item - iconName='close' - onPress={this.onCancelSearchPress} - /> + <HeaderButton.Item iconName='close' onPress={this.onCancelSearchPress} /> </HeaderButton.Container> ), headerTitle: () => <SearchHeader onSearchChangeText={this.onSearchChangeText} />, @@ -215,29 +207,40 @@ class TeamChannelsView extends React.Component { options.headerRight = () => ( <HeaderButton.Container> - { showCreate - ? <HeaderButton.Item iconName='create' testID='team-channels-view-create' onPress={() => navigation.navigate('AddChannelTeamView', { teamId: this.teamId, teamChannels: data })} /> - : null} + {showCreate ? ( + <HeaderButton.Item + iconName='create' + testID='team-channels-view-create' + onPress={() => navigation.navigate('AddChannelTeamView', { teamId: this.teamId, teamChannels: data })} + /> + ) : null} <HeaderButton.Item iconName='search' testID='team-channels-view-search' onPress={this.onSearchPress} /> </HeaderButton.Container> ); navigation.setOptions(options); - } + }; onSearchPress = () => { logEvent(events.TC_SEARCH); this.setState({ isSearching: true }, () => this.setHeader()); - } + }; - onSearchChangeText = debounce((searchText) => { - this.setState({ - searchText, search: [], loading: !!searchText, loadingMore: false, end: false - }, () => { - if (searchText) { - this.load(); + onSearchChangeText = debounce(searchText => { + this.setState( + { + searchText, + search: [], + loading: !!searchText, + loadingMore: false, + end: false + }, + () => { + if (searchText) { + this.load(); + } } - }); - }, 300) + ); + }, 300); onCancelSearchPress = () => { logEvent(events.TC_CANCEL_SEARCH); @@ -246,65 +249,83 @@ class TeamChannelsView extends React.Component { return; } Keyboard.dismiss(); - this.setState({ - searchText: null, isSearching: false, search: [], loadingMore: false, end: false - }, () => { - this.setHeader(); - }); + this.setState( + { + searchText: null, + isSearching: false, + search: [], + loadingMore: false, + end: false + }, + () => { + this.setHeader(); + } + ); }; - goRoomActionsView = (screen) => { + goRoomActionsView = screen => { logEvent(events.TC_GO_ACTIONS); const { team } = this; - const { - navigation, isMasterDetail - } = this.props; + const { navigation, isMasterDetail } = this.props; if (isMasterDetail) { navigation.navigate('ModalStackNavigator', { screen: screen ?? 'RoomActionsView', params: { - rid: team.rid, t: team.t, room: team, showCloseModal: false + rid: team.rid, + t: team.t, + room: team, + showCloseModal: false } }); } else { navigation.navigate('RoomActionsView', { - rid: team.rid, t: team.t, room: team + rid: team.rid, + t: team.t, + room: team }); } - } - - getRoomTitle = item => RocketChat.getRoomTitle(item) - - getRoomAvatar = item => RocketChat.getRoomAvatar(item) + }; - onPressItem = debounce(async(item) => { - logEvent(events.TC_GO_ROOM); - const { navigation, isMasterDetail } = this.props; - try { - const { room } = await RocketChat.getRoomInfo(item._id); - const params = { - rid: item._id, name: RocketChat.getRoomTitle(room), joinCodeRequired: room.joinCodeRequired, t: room.t, teamId: room.teamId - }; - if (isMasterDetail) { - navigation.pop(); - } - goRoom({ item: params, isMasterDetail, navigationMethod: navigation.push }); - } catch (e) { - if (e.data.error === 'not-allowed') { - showErrorAlert(I18n.t('error-not-allowed')); - } else { - showErrorAlert(e.data.error); + getRoomTitle = item => RocketChat.getRoomTitle(item); + + getRoomAvatar = item => RocketChat.getRoomAvatar(item); + + onPressItem = debounce( + async item => { + logEvent(events.TC_GO_ROOM); + const { navigation, isMasterDetail } = this.props; + try { + const { room } = await RocketChat.getRoomInfo(item._id); + const params = { + rid: item._id, + name: RocketChat.getRoomTitle(room), + joinCodeRequired: room.joinCodeRequired, + t: room.t, + teamId: room.teamId + }; + if (isMasterDetail) { + navigation.pop(); + } + goRoom({ item: params, isMasterDetail, navigationMethod: navigation.push }); + } catch (e) { + if (e.data.error === 'not-allowed') { + showErrorAlert(I18n.t('error-not-allowed')); + } else { + showErrorAlert(e.data.error); + } } - } - }, 1000, true); + }, + 1000, + true + ); - toggleAutoJoin = async(item) => { + toggleAutoJoin = async item => { logEvent(events.TC_TOGGLE_AUTOJOIN); try { const { data } = this.state; const result = await RocketChat.updateTeamRoom({ roomId: item._id, isDefault: !item.teamDefault }); if (result.success) { - const newData = data.map((i) => { + const newData = data.map(i => { if (i._id === item._id) { i.teamDefault = !i.teamDefault; } @@ -316,9 +337,9 @@ class TeamChannelsView extends React.Component { logEvent(events.TC_TOGGLE_AUTOJOIN_F); log(e); } - } + }; - remove = (item) => { + remove = item => { Alert.alert( I18n.t('Confirmation'), I18n.t('Remove_Team_Room_Warning'), @@ -335,9 +356,9 @@ class TeamChannelsView extends React.Component { ], { cancelable: false } ); - } + }; - removeRoom = async(item) => { + removeRoom = async item => { logEvent(events.TC_DELETE_ROOM); try { const { data } = this.state; @@ -350,9 +371,9 @@ class TeamChannelsView extends React.Component { logEvent(events.TC_DELETE_ROOM_F); log(e); } - } + }; - delete = (item) => { + delete = item => { logEvent(events.TC_DELETE_ROOM); const { deleteRoom } = this.props; @@ -372,12 +393,17 @@ class TeamChannelsView extends React.Component { ], { cancelable: false } ); - } + }; - showChannelActions = async(item) => { + showChannelActions = async item => { logEvent(events.ROOM_SHOW_BOX_ACTIONS); const { - showActionSheet, editTeamChannelPermission, deleteCPermission, deletePPermission, theme, removeTeamChannelPermission + showActionSheet, + editTeamChannelPermission, + deleteCPermission, + deletePPermission, + theme, + removeTeamChannelPermission } = this.props; const isAutoJoinChecked = item.teamDefault; const autoJoinIcon = isAutoJoinChecked ? 'checkbox-checked' : 'checkbox-unchecked'; @@ -391,7 +417,14 @@ class TeamChannelsView extends React.Component { title: I18n.t('Auto-join'), icon: item.t === 'p' ? 'channel-private' : 'channel-public', onPress: () => this.toggleAutoJoin(item), - right: () => <CustomIcon testID={isAutoJoinChecked ? 'auto-join-checked' : 'auto-join-unchecked'} name={autoJoinIcon} size={20} color={autoJoinIconColor} />, + right: () => ( + <CustomIcon + testID={isAutoJoinChecked ? 'auto-join-checked' : 'auto-join-unchecked'} + name={autoJoinIcon} + size={20} + color={autoJoinIconColor} + /> + ), testID: 'action-sheet-auto-join' }); } @@ -422,15 +455,10 @@ class TeamChannelsView extends React.Component { return; } showActionSheet({ options }); - } + }; renderItem = ({ item }) => { - const { - StoreLastMessage, - useRealName, - theme, - width - } = this.props; + const { StoreLastMessage, useRealName, theme, width } = this.props; return ( <RoomItem item={item} @@ -456,12 +484,10 @@ class TeamChannelsView extends React.Component { return <ActivityIndicator theme={theme} />; } return null; - } + }; renderScroll = () => { - const { - loading, data, search, isSearching, searchText - } = this.state; + const { loading, data, search, isSearching, searchText } = this.state; if (loading) { return <BackgroundContainer loading />; } @@ -489,7 +515,7 @@ class TeamChannelsView extends React.Component { }; render() { - console.count(`${ this.constructor.name }.render calls`); + console.count(`${this.constructor.name}.render calls`); return ( <SafeAreaView testID='team-channels-view'> <StatusBar /> @@ -516,4 +542,7 @@ const mapDispatchToProps = dispatch => ({ deleteRoom: (rid, t) => dispatch(deleteRoomAction(rid, t)) }); -export default connect(mapStateToProps, mapDispatchToProps)(withDimensions(withSafeAreaInsets(withTheme(withActionSheet(TeamChannelsView))))); +export default connect( + mapStateToProps, + mapDispatchToProps +)(withDimensions(withSafeAreaInsets(withTheme(withActionSheet(TeamChannelsView))))); diff --git a/app/views/ThemeView.js b/app/views/ThemeView.js index 1152a920cc..98c0e872d9 100644 --- a/app/views/ThemeView.js +++ b/app/views/ThemeView.js @@ -26,15 +26,18 @@ const THEMES = [ label: 'Light', value: 'light', group: THEME_GROUP - }, { + }, + { label: 'Dark', value: 'dark', group: THEME_GROUP - }, { + }, + { label: 'Black', value: 'black', group: DARK_GROUP - }, { + }, + { label: 'Dark', value: 'dark', group: DARK_GROUP @@ -51,15 +54,15 @@ const darkGroup = THEMES.filter(item => item.group === DARK_GROUP); class ThemeView extends React.Component { static navigationOptions = () => ({ title: I18n.t('Theme') - }) + }); static propTypes = { theme: PropTypes.string, themePreferences: PropTypes.object, setTheme: PropTypes.func - } + }; - isSelected = (item) => { + isSelected = item => { const { themePreferences } = this.props; const { group } = item; const { darkLevel, currentTheme } = themePreferences; @@ -69,9 +72,9 @@ class ThemeView extends React.Component { if (group === DARK_GROUP) { return item.value === darkLevel; } - } + }; - onClick = (item) => { + onClick = item => { const { themePreferences } = this.props; const { darkLevel, currentTheme } = themePreferences; const { value, group } = item; @@ -85,9 +88,9 @@ class ThemeView extends React.Component { changes = { darkLevel: value }; } this.setTheme(changes); - } + }; - setTheme = async(theme) => { + setTheme = async theme => { const { setTheme, themePreferences } = this.props; const newTheme = { ...themePreferences, ...theme }; setTheme(newTheme); @@ -97,7 +100,7 @@ class ThemeView extends React.Component { renderIcon = () => { const { theme } = this.props; return <List.Icon name='check' color={themes[theme].tintColor} />; - } + }; renderItem = ({ item }) => { const { label, value } = item; @@ -106,13 +109,13 @@ class ThemeView extends React.Component { <List.Item title={label} onPress={() => this.onClick(item)} - testID={`theme-view-${ value }`} + testID={`theme-view-${value}`} right={this.isSelected(item) ? this.renderIcon : null} /> <List.Separator /> </> ); - } + }; render() { return ( @@ -121,15 +124,11 @@ class ThemeView extends React.Component { <List.Container> <List.Section title='Theme'> <List.Separator /> - { - themeGroup.map(item => this.renderItem({ item })) - } + {themeGroup.map(item => this.renderItem({ item }))} </List.Section> <List.Section title='Dark_level'> <List.Separator /> - { - darkGroup.map(item => this.renderItem({ item })) - } + {darkGroup.map(item => this.renderItem({ item }))} </List.Section> </List.Container> </SafeAreaView> diff --git a/app/views/ThreadMessagesView/Dropdown/DropdownItem.js b/app/views/ThreadMessagesView/Dropdown/DropdownItem.js index 43af6895fe..c5d69ba7c8 100644 --- a/app/views/ThreadMessagesView/Dropdown/DropdownItem.js +++ b/app/views/ThreadMessagesView/Dropdown/DropdownItem.js @@ -23,9 +23,7 @@ const styles = StyleSheet.create({ } }); -const DropdownItem = React.memo(({ - theme, onPress, iconName, text -}) => ( +const DropdownItem = React.memo(({ theme, onPress, iconName, text }) => ( <Touch theme={theme} onPress={onPress} style={{ backgroundColor: themes[theme].backgroundColor }}> <View style={styles.container}> <Text style={[styles.text, { color: themes[theme].auxiliaryText }]}>{text}</Text> diff --git a/app/views/ThreadMessagesView/Dropdown/DropdownItemFilter.js b/app/views/ThreadMessagesView/Dropdown/DropdownItemFilter.js index b6b5c45fb0..7ff7b691fd 100644 --- a/app/views/ThreadMessagesView/Dropdown/DropdownItemFilter.js +++ b/app/views/ThreadMessagesView/Dropdown/DropdownItemFilter.js @@ -5,11 +5,7 @@ import I18n from '../../../i18n'; import DropdownItem from './DropdownItem'; const DropdownItemFilter = ({ currentFilter, value, onPress }) => ( - <DropdownItem - text={I18n.t(value)} - iconName={currentFilter === value ? 'check' : null} - onPress={() => onPress(value)} - /> + <DropdownItem text={I18n.t(value)} iconName={currentFilter === value ? 'check' : null} onPress={() => onPress(value)} /> ); DropdownItemFilter.propTypes = { diff --git a/app/views/ThreadMessagesView/Dropdown/index.js b/app/views/ThreadMessagesView/Dropdown/index.js index fdf1acba79..ac33cd89b4 100644 --- a/app/views/ThreadMessagesView/Dropdown/index.js +++ b/app/views/ThreadMessagesView/Dropdown/index.js @@ -1,8 +1,6 @@ import React from 'react'; import PropTypes from 'prop-types'; -import { - Animated, Easing, TouchableWithoutFeedback -} from 'react-native'; +import { Animated, Easing, TouchableWithoutFeedback } from 'react-native'; import { withSafeAreaInsets } from 'react-native-safe-area-context'; import styles from '../styles'; @@ -24,7 +22,7 @@ class Dropdown extends React.Component { currentFilter: PropTypes.string, onClose: PropTypes.func, onFilterSelected: PropTypes.func - } + }; constructor(props) { super(props); @@ -32,34 +30,26 @@ class Dropdown extends React.Component { } componentDidMount() { - Animated.timing( - this.animatedValue, - { - toValue: 1, - duration: ANIMATION_DURATION, - easing: Easing.inOut(Easing.quad), - useNativeDriver: true - } - ).start(); + Animated.timing(this.animatedValue, { + toValue: 1, + duration: ANIMATION_DURATION, + easing: Easing.inOut(Easing.quad), + useNativeDriver: true + }).start(); } close = () => { const { onClose } = this.props; - Animated.timing( - this.animatedValue, - { - toValue: 0, - duration: ANIMATION_DURATION, - easing: Easing.inOut(Easing.quad), - useNativeDriver: true - } - ).start(() => onClose()); - } + Animated.timing(this.animatedValue, { + toValue: 0, + duration: ANIMATION_DURATION, + easing: Easing.inOut(Easing.quad), + useNativeDriver: true + }).start(() => onClose()); + }; render() { - const { - isMasterDetail, insets, theme, currentFilter, onFilterSelected - } = this.props; + const { isMasterDetail, insets, theme, currentFilter, onFilterSelected } = this.props; const statusBarHeight = insets?.top ?? 0; const heightDestination = isMasterDetail ? headerHeight + statusBarHeight : 0; const translateY = this.animatedValue.interpolate({ @@ -73,12 +63,15 @@ class Dropdown extends React.Component { return ( <> <TouchableWithoutFeedback onPress={this.close}> - <Animated.View style={[styles.backdrop, - { - backgroundColor: themes[theme].backdropColor, - opacity: backdropOpacity, - top: heightDestination - }]} + <Animated.View + style={[ + styles.backdrop, + { + backgroundColor: themes[theme].backdropColor, + opacity: backdropOpacity, + top: heightDestination + } + ]} /> </TouchableWithoutFeedback> <Animated.View @@ -89,8 +82,7 @@ class Dropdown extends React.Component { backgroundColor: themes[theme].backgroundColor, borderColor: themes[theme].separatorColor } - ]} - > + ]}> <DropdownItemHeader currentFilter={currentFilter} onPress={this.close} /> <List.Separator /> <DropdownItemFilter currentFilter={currentFilter} value={FILTER.ALL} onPress={onFilterSelected} /> diff --git a/app/views/ThreadMessagesView/Item.js b/app/views/ThreadMessagesView/Item.js index f586d32412..1caef2c27c 100644 --- a/app/views/ThreadMessagesView/Item.js +++ b/app/views/ThreadMessagesView/Item.js @@ -56,9 +56,7 @@ const styles = StyleSheet.create({ } }); -const Item = ({ - item, baseUrl, theme, useRealName, user, badgeColor, onPress, toggleFollowThread -}) => { +const Item = ({ item, baseUrl, theme, useRealName, user, badgeColor, onPress, toggleFollowThread }) => { const username = (useRealName && item?.u?.name) || item?.u?.username; let time; if (item?.ts) { @@ -66,7 +64,10 @@ const Item = ({ } return ( - <Touchable onPress={() => onPress(item)} testID={`thread-messages-view-${ item.msg }`} style={{ backgroundColor: themes[theme].backgroundColor }}> + <Touchable + onPress={() => onPress(item)} + testID={`thread-messages-view-${item.msg}`} + style={{ backgroundColor: themes[theme].backgroundColor }}> <View style={styles.container}> <Avatar style={styles.avatar} @@ -80,19 +81,24 @@ const Item = ({ /> <View style={styles.contentContainer}> <View style={styles.titleContainer}> - <Text style={[styles.title, { color: themes[theme].titleText }]} numberOfLines={1}>{username}</Text> + <Text style={[styles.title, { color: themes[theme].titleText }]} numberOfLines={1}> + {username} + </Text> <Text style={[styles.time, { color: themes[theme].auxiliaryText }]}>{time}</Text> </View> <View style={styles.messageContainer}> - <Markdown msg={makeThreadName(item)} baseUrl={baseUrl} username={username} theme={theme} numberOfLines={2} style={[styles.markdown]} preview /> - {badgeColor ? <View style={[styles.badge, { backgroundColor: badgeColor }]} /> : null } + <Markdown + msg={makeThreadName(item)} + baseUrl={baseUrl} + username={username} + theme={theme} + numberOfLines={2} + style={[styles.markdown]} + preview + /> + {badgeColor ? <View style={[styles.badge, { backgroundColor: badgeColor }]} /> : null} </View> - <ThreadDetails - item={item} - user={user} - toggleFollowThread={toggleFollowThread} - style={styles.threadDetails} - /> + <ThreadDetails item={item} user={user} toggleFollowThread={toggleFollowThread} style={styles.threadDetails} /> </View> </View> </Touchable> diff --git a/app/views/ThreadMessagesView/Item.stories.js b/app/views/ThreadMessagesView/Item.stories.js index 8a926b22bd..d829d92d00 100644 --- a/app/views/ThreadMessagesView/Item.stories.js +++ b/app/views/ThreadMessagesView/Item.stories.js @@ -17,7 +17,8 @@ const author = { }; const baseUrl = 'https://open.rocket.chat'; const date = new Date(2020, 10, 10, 10); -const longText = 'Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua.'; +const longText = + 'Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua.'; const defaultItem = { msg: 'Message content', tcount: 1, @@ -104,17 +105,11 @@ stories.add('content', () => ( stories.add('badge', () => ( <> - <BaseItem - badgeColor={themes.light.mentionMeColor} - /> + <BaseItem badgeColor={themes.light.mentionMeColor} /> <List.Separator /> - <BaseItem - badgeColor={themes.light.mentionGroupColor} - /> + <BaseItem badgeColor={themes.light.mentionGroupColor} /> <List.Separator /> - <BaseItem - badgeColor={themes.light.tunreadColor} - /> + <BaseItem badgeColor={themes.light.tunreadColor} /> <BaseItem item={{ msg: longText @@ -125,12 +120,8 @@ stories.add('badge', () => ( )); const ThemeStory = ({ theme }) => ( - <ThemeContext.Provider - value={{ theme }} - > - <BaseItem - badgeColor={themes[theme].mentionMeColor} - /> + <ThemeContext.Provider value={{ theme }}> + <BaseItem badgeColor={themes[theme].mentionMeColor} /> </ThemeContext.Provider> ); diff --git a/app/views/ThreadMessagesView/index.js b/app/views/ThreadMessagesView/index.js index 7c604a43f4..bb5f30996e 100644 --- a/app/views/ThreadMessagesView/index.js +++ b/app/views/ThreadMessagesView/index.js @@ -48,7 +48,7 @@ class ThreadMessagesView extends React.Component { theme: PropTypes.string, isMasterDetail: PropTypes.bool, insets: PropTypes.object - } + }; constructor(props) { super(props); @@ -77,16 +77,14 @@ class ThreadMessagesView extends React.Component { } componentDidUpdate(prevProps) { - const { - insets - } = this.props; + const { insets } = this.props; if (insets.left !== prevProps.insets.left || insets.right !== prevProps.insets.right) { this.setHeader(); } } componentWillUnmount() { - console.countReset(`${ this.constructor.name }.render calls`); + console.countReset(`${this.constructor.name}.render calls`); if (this.subSubscription && this.subSubscription.unsubscribe) { this.subSubscription.unsubscribe(); } @@ -97,9 +95,7 @@ class ThreadMessagesView extends React.Component { getHeader = () => { const { isSearching } = this.state; - const { - navigation, isMasterDetail, insets, theme - } = this.props; + const { navigation, isMasterDetail, insets, theme } = this.props; if (isSearching) { const headerTitlePosition = getHeaderTitlePosition({ insets, numIconsRight: 1 }); @@ -107,10 +103,7 @@ class ThreadMessagesView extends React.Component { headerTitleAlign: 'left', headerLeft: () => ( <HeaderButton.Container left> - <HeaderButton.Item - iconName='close' - onPress={this.onCancelSearchPress} - /> + <HeaderButton.Item iconName='close' onPress={this.onCancelSearchPress} /> </HeaderButton.Container> ), headerTitle: () => <SearchHeader onSearchChangeText={this.onSearchChangeText} />, @@ -124,11 +117,7 @@ class ThreadMessagesView extends React.Component { const options = { headerLeft: () => ( - <HeaderBackButton - labelVisible={false} - onPress={() => navigation.pop()} - tintColor={themes[theme].headerTintColor} - /> + <HeaderBackButton labelVisible={false} onPress={() => navigation.pop()} tintColor={themes[theme].headerTintColor} /> ), headerTitleAlign: 'center', headerTitle: I18n.t('Threads'), @@ -148,33 +137,30 @@ class ThreadMessagesView extends React.Component { </HeaderButton.Container> ); return options; - } + }; setHeader = () => { const { navigation } = this.props; const options = this.getHeader(); navigation.setOptions(options); - } + }; - initSubscription = async() => { + initSubscription = async () => { try { const db = database.active; // subscription query - const subscription = await db.collections - .get('subscriptions') - .find(this.rid); + const subscription = await db.collections.get('subscriptions').find(this.rid); const observable = subscription.observe(); - this.subSubscription = observable - .subscribe((data) => { - this.setState({ subscription: data }); - }); + this.subSubscription = observable.subscribe(data => { + this.setState({ subscription: data }); + }); this.subscribeMessages(subscription); } catch (e) { log(e); } - } + }; subscribeMessages = (subscription, searchText) => { try { @@ -184,34 +170,30 @@ class ThreadMessagesView extends React.Component { this.messagesSubscription.unsubscribe(); } - const whereClause = [ - Q.where('rid', this.rid), - Q.experimentalSortBy('tlm', Q.desc) - ]; + const whereClause = [Q.where('rid', this.rid), Q.experimentalSortBy('tlm', Q.desc)]; if (searchText?.trim()) { - whereClause.push(Q.where('msg', Q.like(`%${ sanitizeLikeString(searchText.trim()) }%`))); + whereClause.push(Q.where('msg', Q.like(`%${sanitizeLikeString(searchText.trim())}%`))); } this.messagesObservable = db.collections .get('threads') .query(...whereClause) .observeWithColumns(['updated_at']); - this.messagesSubscription = this.messagesObservable - .subscribe((messages) => { - const { currentFilter } = this.state; - const displayingThreads = this.getFilteredThreads(messages, subscription, currentFilter); - if (this.mounted) { - this.setState({ messages, displayingThreads }); - } else { - this.state.messages = messages; - this.state.displayingThreads = displayingThreads; - } - }); + this.messagesSubscription = this.messagesObservable.subscribe(messages => { + const { currentFilter } = this.state; + const displayingThreads = this.getFilteredThreads(messages, subscription, currentFilter); + if (this.mounted) { + this.setState({ messages, displayingThreads }); + } else { + this.state.messages = messages; + this.state.displayingThreads = displayingThreads; + } + }); } catch (e) { log(e); } - } + }; init = () => { const { subscription } = this.state; @@ -228,9 +210,9 @@ class ThreadMessagesView extends React.Component { } catch (e) { log(e); } - } + }; - updateThreads = async({ update, remove, lastThreadSync }) => { + updateThreads = async ({ update, remove, lastThreadSync }) => { const { subscription } = this.state; // if there's no subscription, manage data on this.state.messages // note: sync will never be called without subscription @@ -252,16 +234,22 @@ class ThreadMessagesView extends React.Component { // filter threads threadsToCreate = update.filter(i1 => !allThreadsRecords.find(i2 => i1._id === i2.id)); threadsToUpdate = allThreadsRecords.filter(i1 => update.find(i2 => i1.id === i2._id)); - threadsToCreate = threadsToCreate.map(thread => threadsCollection.prepareCreate(protectedFunction((t) => { - t._raw = sanitizedRaw({ id: thread._id }, threadsCollection.schema); - t.subscription.set(subscription); - Object.assign(t, thread); - }))); - threadsToUpdate = threadsToUpdate.map((thread) => { + threadsToCreate = threadsToCreate.map(thread => + threadsCollection.prepareCreate( + protectedFunction(t => { + t._raw = sanitizedRaw({ id: thread._id }, threadsCollection.schema); + t.subscription.set(subscription); + Object.assign(t, thread); + }) + ) + ); + threadsToUpdate = threadsToUpdate.map(thread => { const newThread = update.find(t => t._id === thread.id); - return thread.prepareUpdate(protectedFunction((t) => { - Object.assign(t, newThread); - })); + return thread.prepareUpdate( + protectedFunction(t => { + Object.assign(t, newThread); + }) + ); }); } @@ -270,12 +258,12 @@ class ThreadMessagesView extends React.Component { threadsToDelete = threadsToDelete.map(t => t.prepareDestroyPermanently()); } - await db.action(async() => { + await db.action(async () => { await db.batch( ...threadsToCreate, ...threadsToUpdate, ...threadsToDelete, - subscription.prepareUpdate((s) => { + subscription.prepareUpdate(s => { s.lastThreadSync = lastThreadSync; }) ); @@ -283,13 +271,11 @@ class ThreadMessagesView extends React.Component { } catch (e) { log(e); } - } + }; // eslint-disable-next-line react/sort-comp - load = debounce(async(lastThreadSync) => { - const { - loading, end, messages, searchText - } = this.state; + load = debounce(async lastThreadSync => { + const { loading, end, messages, searchText } = this.state; if (end || loading || !this.mounted) { return; } @@ -298,7 +284,10 @@ class ThreadMessagesView extends React.Component { try { const result = await RocketChat.getThreadsList({ - rid: this.rid, count: API_FETCH_COUNT, offset: messages.length, text: searchText + rid: this.rid, + count: API_FETCH_COUNT, + offset: messages.length, + text: searchText }); if (result.success) { this.updateThreads({ update: result.threads, lastThreadSync }); @@ -311,15 +300,16 @@ class ThreadMessagesView extends React.Component { log(e); this.setState({ loading: false, end: true }); } - }, 300) + }, 300); // eslint-disable-next-line react/sort-comp - sync = async(updatedSince) => { + sync = async updatedSince => { this.setState({ loading: true }); try { const result = await RocketChat.getSyncThreadsList({ - rid: this.rid, updatedSince: updatedSince.toISOString() + rid: this.rid, + updatedSince: updatedSince.toISOString() }); if (result.success && result.threads) { const { update, remove } = result.threads; @@ -332,11 +322,11 @@ class ThreadMessagesView extends React.Component { log(e); this.setState({ loading: false }); } - } + }; onSearchPress = () => { this.setState({ isSearching: true }, () => this.setHeader()); - } + }; onCancelSearchPress = () => { this.setState({ isSearching: false, searchText: '' }, () => { @@ -344,34 +334,37 @@ class ThreadMessagesView extends React.Component { this.setHeader(); this.subscribeMessages(subscription); }); - } + }; - onSearchChangeText = debounce((searchText) => { + onSearchChangeText = debounce(searchText => { const { subscription } = this.state; this.setState({ searchText }, () => this.subscribeMessages(subscription, searchText)); - }, 300) - + }, 300); - onThreadPress = debounce((item) => { - const { subscription } = this.state; - const { navigation, isMasterDetail } = this.props; - if (isMasterDetail) { - navigation.pop(); - } - navigation.push('RoomView', { - rid: item.subscription.id, - tmid: item.id, - name: makeThreadName(item), - t: 'thread', - roomUserId: RocketChat.getUidDirectMessage(subscription) - }); - }, 1000, true) + onThreadPress = debounce( + item => { + const { subscription } = this.state; + const { navigation, isMasterDetail } = this.props; + if (isMasterDetail) { + navigation.pop(); + } + navigation.push('RoomView', { + rid: item.subscription.id, + tmid: item.id, + name: makeThreadName(item), + t: 'thread', + roomUserId: RocketChat.getUidDirectMessage(subscription) + }); + }, + 1000, + true + ); - getBadgeColor = (item) => { + getBadgeColor = item => { const { subscription } = this.state; const { theme } = this.props; return getBadgeColor({ subscription, theme, messageId: item?.id }); - } + }; // helper to query threads getFilteredThreads = (messages, subscription, currentFilter) => { @@ -383,38 +376,36 @@ class ThreadMessagesView extends React.Component { return messages?.filter(item => subscription?.tunread?.includes(item?.id)); } return messages; - } + }; // method to update state with filtered threads filterThreads = () => { const { messages, subscription } = this.state; const displayingThreads = this.getFilteredThreads(messages, subscription); this.setState({ displayingThreads }); - } + }; - showFilterDropdown = () => this.setState({ showFilterDropdown: true }) + showFilterDropdown = () => this.setState({ showFilterDropdown: true }); - closeFilterDropdown = () => this.setState({ showFilterDropdown: false }) + closeFilterDropdown = () => this.setState({ showFilterDropdown: false }); - onFilterSelected = (filter) => { + onFilterSelected = filter => { const { messages, subscription } = this.state; const displayingThreads = this.getFilteredThreads(messages, subscription, filter); this.setState({ currentFilter: filter, displayingThreads }); - } + }; - toggleFollowThread = async(isFollowingThread, tmid) => { + toggleFollowThread = async (isFollowingThread, tmid) => { try { await RocketChat.toggleFollowMessage(tmid, !isFollowingThread); EventEmitter.emit(LISTENER, { message: isFollowingThread ? I18n.t('Unfollowed_thread') : I18n.t('Following_thread') }); } catch (e) { log(e); } - } + }; renderItem = ({ item }) => { - const { - user, navigation, baseUrl, useRealName - } = this.props; + const { user, navigation, baseUrl, useRealName } = this.props; const badgeColor = this.getBadgeColor(item); return ( <Item @@ -430,7 +421,7 @@ class ThreadMessagesView extends React.Component { toggleFollowThread={this.toggleFollowThread} /> ); - } + }; renderHeader = () => { const { messages, currentFilter } = this.state; @@ -444,12 +435,10 @@ class ThreadMessagesView extends React.Component { <List.Separator /> </> ); - } + }; renderContent = () => { - const { - loading, messages, displayingThreads, currentFilter - } = this.state; + const { loading, messages, displayingThreads, currentFilter } = this.state; const { theme } = this.props; if (!messages?.length || !displayingThreads?.length) { let text; @@ -487,25 +476,19 @@ class ThreadMessagesView extends React.Component { scrollIndicatorInsets={{ right: 1 }} // https://github.com/facebook/react-native/issues/26610#issuecomment-539843444 /> ); - } + }; render() { - console.count(`${ this.constructor.name }.render calls`); + console.count(`${this.constructor.name}.render calls`); const { showFilterDropdown, currentFilter } = this.state; return ( <SafeAreaView testID='thread-messages-view'> <StatusBar /> {this.renderContent()} - {showFilterDropdown - ? ( - <Dropdown - currentFilter={currentFilter} - onFilterSelected={this.onFilterSelected} - onClose={this.closeFilterDropdown} - /> - ) - : null} + {showFilterDropdown ? ( + <Dropdown currentFilter={currentFilter} onFilterSelected={this.onFilterSelected} onClose={this.closeFilterDropdown} /> + ) : null} </SafeAreaView> ); } diff --git a/app/views/UserNotificationPreferencesView/index.js b/app/views/UserNotificationPreferencesView/index.js index 98fded9a41..66b64ee5ad 100644 --- a/app/views/UserNotificationPreferencesView/index.js +++ b/app/views/UserNotificationPreferencesView/index.js @@ -25,7 +25,7 @@ const styles = StyleSheet.create({ class UserNotificationPreferencesView extends React.Component { static navigationOptions = () => ({ title: I18n.t('Notification_Preferences') - }) + }); static propTypes = { navigation: PropTypes.object, @@ -51,17 +51,21 @@ class UserNotificationPreferencesView extends React.Component { this.setState({ preferences, loading: true }); } - findDefaultOption = (key) => { + findDefaultOption = key => { const { preferences } = this.state; const option = preferences[key] ? OPTIONS[key].find(item => item.value === preferences[key]) : OPTIONS[key][0]; return option; - } + }; - renderPickerOption = (key) => { + renderPickerOption = key => { const { theme } = this.props; const text = this.findDefaultOption(key); - return <Text style={[styles.pickerText, { color: themes[theme].actionTintColor }]}>{I18n.t(text?.label, { defaultValue: text?.label, second: text?.second })}</Text>; - } + return ( + <Text style={[styles.pickerText, { color: themes[theme].actionTintColor }]}> + {I18n.t(text?.label, { defaultValue: text?.label, second: text?.second })} + </Text> + ); + }; pickerSelection = (title, key) => { const { preferences } = this.state; @@ -70,7 +74,7 @@ class UserNotificationPreferencesView extends React.Component { const defaultOption = this.findDefaultOption(key); if (OPTIONS[key][0]?.value !== 'default') { - values = [{ label: `${ I18n.t('Default') } (${ I18n.t(defaultOption.label) })` }, ...OPTIONS[key]]; + values = [{ label: `${I18n.t('Default')} (${I18n.t(defaultOption.label)})` }, ...OPTIONS[key]]; } navigation.navigate('PickerView', { @@ -79,17 +83,19 @@ class UserNotificationPreferencesView extends React.Component { value: preferences[key], onChangeValue: value => this.onValueChangePicker(key, value ?? defaultOption.value) }); - } + }; onValueChangePicker = (key, value) => this.saveNotificationPreferences({ [key]: value.toString() }); - saveNotificationPreferences = async(params) => { + saveNotificationPreferences = async params => { const { user } = this.props; const { id } = user; const result = await RocketChat.setUserPreferences(id, params); - const { user: { settings } } = result; + const { + user: { settings } + } = result; this.setState({ preferences: settings.preferences }); - } + }; render() { const { theme } = this.props; @@ -98,47 +104,47 @@ class UserNotificationPreferencesView extends React.Component { <SafeAreaView testID='user-notification-preference-view'> <StatusBar /> <List.Container> - {loading - ? ( - <> - <List.Section title='Desktop_Notifications'> - <List.Separator /> - <List.Item - title='Alert' - testID='user-notification-preference-view-alert' - onPress={title => this.pickerSelection(title, 'desktopNotifications')} - right={() => this.renderPickerOption('desktopNotifications')} - /> - <List.Separator /> - <List.Info info='Desktop_Alert_info' /> - </List.Section> - - <List.Section title='Push_Notifications'> - <List.Separator /> - <List.Item - title='Alert' - testID='user-notification-preference-view-push-notification' - onPress={title => this.pickerSelection(title, 'mobileNotifications')} - right={() => this.renderPickerOption('mobileNotifications')} - /> - <List.Separator /> - <List.Info info='Push_Notifications_Alert_Info' /> - </List.Section> - - <List.Section title='Email'> - <List.Separator /> - <List.Item - title='Alert' - testID='user-notification-preference-view-email-alert' - onPress={title => this.pickerSelection(title, 'emailNotificationMode')} - right={() => this.renderPickerOption('emailNotificationMode')} - /> - <List.Separator /> - <List.Info info='You_need_to_verifiy_your_email_address_to_get_notications' /> - </List.Section> - </> - ) : <ActivityIndicator theme={theme} /> - } + {loading ? ( + <> + <List.Section title='Desktop_Notifications'> + <List.Separator /> + <List.Item + title='Alert' + testID='user-notification-preference-view-alert' + onPress={title => this.pickerSelection(title, 'desktopNotifications')} + right={() => this.renderPickerOption('desktopNotifications')} + /> + <List.Separator /> + <List.Info info='Desktop_Alert_info' /> + </List.Section> + + <List.Section title='Push_Notifications'> + <List.Separator /> + <List.Item + title='Alert' + testID='user-notification-preference-view-push-notification' + onPress={title => this.pickerSelection(title, 'mobileNotifications')} + right={() => this.renderPickerOption('mobileNotifications')} + /> + <List.Separator /> + <List.Info info='Push_Notifications_Alert_Info' /> + </List.Section> + + <List.Section title='Email'> + <List.Separator /> + <List.Item + title='Alert' + testID='user-notification-preference-view-email-alert' + onPress={title => this.pickerSelection(title, 'emailNotificationMode')} + right={() => this.renderPickerOption('emailNotificationMode')} + /> + <List.Separator /> + <List.Info info='You_need_to_verifiy_your_email_address_to_get_notications' /> + </List.Section> + </> + ) : ( + <ActivityIndicator theme={theme} /> + )} </List.Container> </SafeAreaView> ); diff --git a/app/views/UserNotificationPreferencesView/options.js b/app/views/UserNotificationPreferencesView/options.js index 7ed02e12ed..e5c2094b70 100644 --- a/app/views/UserNotificationPreferencesView/options.js +++ b/app/views/UserNotificationPreferencesView/options.js @@ -1,19 +1,33 @@ -const commonOptions = [{ - label: 'Default', value: 'default' -}, { - label: 'All_Messages', value: 'all' -}, { - label: 'Mentions', value: 'mentions' -}, { - label: 'Nothing', value: 'nothing' -}]; +const commonOptions = [ + { + label: 'Default', + value: 'default' + }, + { + label: 'All_Messages', + value: 'all' + }, + { + label: 'Mentions', + value: 'mentions' + }, + { + label: 'Nothing', + value: 'nothing' + } +]; export const OPTIONS = { desktopNotifications: commonOptions, mobileNotifications: commonOptions, - emailNotificationMode: [{ - label: 'Email_Notification_Mode_All', value: 'mentions' - }, { - label: 'Email_Notification_Mode_Disabled', value: 'nothing' - }] + emailNotificationMode: [ + { + label: 'Email_Notification_Mode_All', + value: 'mentions' + }, + { + label: 'Email_Notification_Mode_Disabled', + value: 'nothing' + } + ] }; diff --git a/app/views/UserPreferencesView/index.js b/app/views/UserPreferencesView/index.js index 4a3dc24677..573ab58f9b 100644 --- a/app/views/UserPreferencesView/index.js +++ b/app/views/UserPreferencesView/index.js @@ -2,9 +2,7 @@ import React from 'react'; import PropTypes from 'prop-types'; import I18n from '../../i18n'; -import { - events, logEvent -} from '../../utils/log'; +import { events, logEvent } from '../../utils/log'; import SafeAreaView from '../../containers/SafeAreaView'; import StatusBar from '../../containers/StatusBar'; import * as List from '../../containers/List'; @@ -16,13 +14,13 @@ class UserPreferencesView extends React.Component { static propTypes = { navigation: PropTypes.object - } + }; navigateToScreen = (screen, params) => { - logEvent(events[`SE_GO_${ screen.replace('View', '').toUpperCase() }`]); + logEvent(events[`SE_GO_${screen.replace('View', '').toUpperCase()}`]); const { navigation } = this.props; navigation.navigate(screen, params); - } + }; render() { return ( diff --git a/app/views/VisitorNavigationView.js b/app/views/VisitorNavigationView.js index 84eb47be37..8a478d9739 100644 --- a/app/views/VisitorNavigationView.js +++ b/app/views/VisitorNavigationView.js @@ -37,7 +37,7 @@ const VisitorNavigationView = ({ route, theme }) => { let total = 0; const [pages, setPages] = useState([]); - const getPages = async() => { + const getPages = async () => { const rid = route.params?.rid; if (rid) { try { @@ -53,7 +53,9 @@ const VisitorNavigationView = ({ route, theme }) => { } }; - useEffect(() => { getPages(); }, []); + useEffect(() => { + getPages(); + }, []); const onEndReached = debounce(() => { if (pages.length <= total) { @@ -70,7 +72,9 @@ const VisitorNavigationView = ({ route, theme }) => { ListFooterComponent={List.Separator} ListHeaderComponent={List.Separator} contentContainerStyle={List.styles.contentContainerStyleFlatList} - ListEmptyComponent={() => <Text style={[styles.noResult, { color: themes[theme].titleText }]}>{I18n.t('No_results_found')}</Text>} + ListEmptyComponent={() => ( + <Text style={[styles.noResult, { color: themes[theme].titleText }]}>{I18n.t('No_results_found')}</Text> + )} keyExtractor={item => item} onEndReached={onEndReached} onEndReachedThreshold={5} diff --git a/app/views/WithoutServersView.tsx b/app/views/WithoutServersView.tsx index 3a807bfc91..b777198393 100644 --- a/app/views/WithoutServersView.tsx +++ b/app/views/WithoutServersView.tsx @@ -13,36 +13,33 @@ const styles = StyleSheet.create({ flex: 1, justifyContent: 'center', alignItems: 'center', - padding: 15, + padding: 15 }, title: { fontSize: 18, - ...sharedStyles.textBold, + ...sharedStyles.textBold }, content: { fontSize: 14, ...sharedStyles.textRegular, - ...sharedStyles.textAlignCenter, - }, + ...sharedStyles.textAlignCenter + } }); class WithoutServerView extends React.Component<any, any> { static navigationOptions = () => ({ title: 'Rocket.Chat', - headerLeft: () => ( - <HeaderButton.CancelModal - onPress={ShareExtension.close} - testID='share-extension-close' - /> - ), - }) + headerLeft: () => <HeaderButton.CancelModal onPress={ShareExtension.close} testID='share-extension-close' /> + }); render() { const { theme } = this.props; return ( <View style={[styles.container, { backgroundColor: themes[theme].backgroundColor }]}> <Text style={[styles.title, { color: themes[theme].titleText }]}>{I18n.t('Without_Servers')}</Text> - <Text style={[styles.content, { color: themes[theme].titleText }]}>{I18n.t('You_need_to_access_at_least_one_RocketChat_server_to_share_something')}</Text> + <Text style={[styles.content, { color: themes[theme].titleText }]}> + {I18n.t('You_need_to_access_at_least_one_RocketChat_server_to_share_something')} + </Text> </View> ); } diff --git a/app/views/WorkspaceView/ServerAvatar.js b/app/views/WorkspaceView/ServerAvatar.js index b14bc393e3..749c4b10e6 100644 --- a/app/views/WorkspaceView/ServerAvatar.js +++ b/app/views/WorkspaceView/ServerAvatar.js @@ -54,7 +54,7 @@ const ServerAvatar = React.memo(({ theme, url, image }) => ( {image && ( <ImageProgress style={[styles.image, { borderColor: themes[theme].borderColor }]} - source={{ uri: `${ url }/${ image }` }} + source={{ uri: `${url}/${image}` }} resizeMode={FastImage.resizeMode.cover} indicator={Progress.Pie} indicatorProps={{ diff --git a/app/views/WorkspaceView/index.js b/app/views/WorkspaceView/index.js index 93509e8508..b29e076740 100644 --- a/app/views/WorkspaceView/index.js +++ b/app/views/WorkspaceView/index.js @@ -15,7 +15,7 @@ import styles from './styles'; class WorkspaceView extends React.Component { static navigationOptions = () => ({ title: I18n.t('Your_workspace') - }) + }); static propTypes = { navigation: PropTypes.object, @@ -29,28 +29,29 @@ class WorkspaceView extends React.Component { showLoginButton: PropTypes.bool, Accounts_iframe_enabled: PropTypes.bool, inviteLinkToken: PropTypes.string - } + }; get showRegistrationButton() { const { registrationForm, inviteLinkToken, Accounts_iframe_enabled } = this.props; - return !Accounts_iframe_enabled && (registrationForm === 'Public' || (registrationForm === 'Secret URL' && inviteLinkToken?.length)); + return ( + !Accounts_iframe_enabled && + (registrationForm === 'Public' || (registrationForm === 'Secret URL' && inviteLinkToken?.length)) + ); } login = () => { - const { - navigation, server, Site_Name, Accounts_iframe_enabled - } = this.props; + const { navigation, server, Site_Name, Accounts_iframe_enabled } = this.props; if (Accounts_iframe_enabled) { navigation.navigate('AuthenticationWebView', { url: server, authType: 'iframe' }); return; } navigation.navigate('LoginView', { title: Site_Name }); - } + }; register = () => { const { navigation, Site_Name } = this.props; navigation.navigate('RegisterView', { title: Site_Name }); - } + }; renderRegisterDisabled = () => { const { Accounts_iframe_enabled, registrationText, theme } = this.props; @@ -59,12 +60,10 @@ class WorkspaceView extends React.Component { } return <Text style={[styles.registrationText, { color: themes[theme].auxiliaryText }]}>{registrationText}</Text>; - } + }; render() { - const { - theme, Site_Name, Site_Url, Assets_favicon_512, server, showLoginButton - } = this.props; + const { theme, Site_Name, Site_Url, Assets_favicon_512, server, showLoginButton } = this.props; return ( <FormContainer theme={theme} testID='workspace-view'> @@ -74,28 +73,21 @@ class WorkspaceView extends React.Component { <Text style={[styles.serverName, { color: themes[theme].titleText }]}>{Site_Name}</Text> <Text style={[styles.serverUrl, { color: themes[theme].auxiliaryText }]}>{Site_Url}</Text> </View> - {showLoginButton - ? ( - <Button - title={I18n.t('Login')} - type='primary' - onPress={this.login} - theme={theme} - testID='workspace-view-login' - /> - ) : null} - { - this.showRegistrationButton ? ( - <Button - title={I18n.t('Create_account')} - type='secondary' - backgroundColor={themes[theme].chatComponentBackground} - onPress={this.register} - theme={theme} - testID='workspace-view-register' - /> - ) : this.renderRegisterDisabled() - } + {showLoginButton ? ( + <Button title={I18n.t('Login')} type='primary' onPress={this.login} theme={theme} testID='workspace-view-login' /> + ) : null} + {this.showRegistrationButton ? ( + <Button + title={I18n.t('Create_account')} + type='secondary' + backgroundColor={themes[theme].chatComponentBackground} + onPress={this.register} + theme={theme} + testID='workspace-view-register' + /> + ) : ( + this.renderRegisterDisabled() + )} </FormContainerInner> </FormContainer> ); diff --git a/babel.config.js b/babel.config.js index f40cb434cc..708e683ffb 100644 --- a/babel.config.js +++ b/babel.config.js @@ -1,8 +1,6 @@ module.exports = { presets: ['module:metro-react-native-babel-preset'], - plugins: [ - ['@babel/plugin-proposal-decorators', { legacy: true }] - ], + plugins: [['@babel/plugin-proposal-decorators', { legacy: true }]], env: { production: { plugins: ['transform-remove-console'] diff --git a/e2e/.mocharc.json b/e2e/.mocharc.json index 8e23ab48a0..8c4277c784 100644 --- a/e2e/.mocharc.json +++ b/e2e/.mocharc.json @@ -1,6 +1,6 @@ { - "timeout": 300000, - "recursive": true, - "bail": true, - "file":"e2e/tests/init.js" -} \ No newline at end of file + "timeout": 300000, + "recursive": true, + "bail": true, + "file": "e2e/tests/init.js" +} diff --git a/e2e/data.js b/e2e/data.js index 4dc093cc6c..979be71c7a 100644 --- a/e2e/data.js +++ b/e2e/data.js @@ -8,25 +8,25 @@ const data = { alternateServer: 'https://stable.rocket.chat', users: { regular: { - username: `userone${ value }`, + username: `userone${value}`, password: '123', - email: `mobile+regular${ value }@rocket.chat` + email: `mobile+regular${value}@rocket.chat` }, alternate: { - username: `usertwo${ value }`, + username: `usertwo${value}`, password: '123', - email: `mobile+alternate${ value }@rocket.chat`, + email: `mobile+alternate${value}@rocket.chat`, totpSecret: 'NA4GOMZGHBQSK6KEFRVT62DMGJJGSYZJFZIHO3ZOGVXWCYZ6MMZQ' }, profileChanges: { - username: `userthree${ value }`, + username: `userthree${value}`, password: '123', - email: `mobile+profileChanges${ value }@rocket.chat` + email: `mobile+profileChanges${value}@rocket.chat` }, existing: { - username: `existinguser${ value }`, + username: `existinguser${value}`, password: '123', - email: `mobile+existing${ value }@rocket.chat` + email: `mobile+existing${value}@rocket.chat` } }, channels: { @@ -40,36 +40,36 @@ const data = { }, groups: { private: { - name: `detox-private-${ value }` + name: `detox-private-${value}` }, alternate: { - name: `detox-alternate-${ value }` + name: `detox-alternate-${value}` } }, teams: { private: { - name: `detox-team-${ value }` + name: `detox-team-${value}` } }, registeringUser: { - username: `newuser${ value }`, - password: `password${ value }`, - email: `mobile+registering${ value }@rocket.chat` + username: `newuser${value}`, + password: `password${value}`, + email: `mobile+registering${value}@rocket.chat` }, registeringUser2: { - username: `newusertwo${ value }`, - password: `passwordtwo${ value }`, - email: `mobile+registeringtwo${ value }@rocket.chat` + username: `newusertwo${value}`, + password: `passwordtwo${value}`, + email: `mobile+registeringtwo${value}@rocket.chat` }, registeringUser3: { - username: `newuserthree${ value }`, - password: `passwordthree${ value }`, - email: `mobile+registeringthree${ value }@rocket.chat` + username: `newuserthree${value}`, + password: `passwordthree${value}`, + email: `mobile+registeringthree${value}@rocket.chat` }, registeringUser4: { - username: `newuserfour${ value }`, - password: `passwordfour${ value }`, - email: `mobile+registeringfour${ value }@rocket.chat` + username: `newuserfour${value}`, + password: `passwordfour${value}`, + email: `mobile+registeringfour${value}@rocket.chat` }, random: value }; diff --git a/e2e/data/data.cloud.js b/e2e/data/data.cloud.js index df98fdd7a7..2f4c5d8d57 100644 --- a/e2e/data/data.cloud.js +++ b/e2e/data/data.cloud.js @@ -9,25 +9,25 @@ const data = { alternateServer: 'https://stable.rocket.chat', users: { regular: { - username: `userone${ value }`, + username: `userone${value}`, password: '123', - email: `mobile+regular${ value }@rocket.chat` + email: `mobile+regular${value}@rocket.chat` }, alternate: { - username: `usertwo${ value }`, + username: `usertwo${value}`, password: '123', - email: `mobile+alternate${ value }@rocket.chat`, + email: `mobile+alternate${value}@rocket.chat`, totpSecret: 'NA4GOMZGHBQSK6KEFRVT62DMGJJGSYZJFZIHO3ZOGVXWCYZ6MMZQ' }, profileChanges: { - username: `userthree${ value }`, + username: `userthree${value}`, password: '123', - email: `mobile+profileChanges${ value }@rocket.chat` + email: `mobile+profileChanges${value}@rocket.chat` }, existing: { - username: `existinguser${ value }`, + username: `existinguser${value}`, password: '123', - email: `mobile+existing${ value }@rocket.chat` + email: `mobile+existing${value}@rocket.chat` } }, channels: { @@ -41,33 +41,33 @@ const data = { }, groups: { private: { - name: `detox-private-${ value }` + name: `detox-private-${value}` } }, teams: { private: { - name: `detox-team-${ value }` + name: `detox-team-${value}` } }, registeringUser: { - username: `newuser${ value }`, - password: `password${ value }`, - email: `mobile+registering${ value }@rocket.chat` + username: `newuser${value}`, + password: `password${value}`, + email: `mobile+registering${value}@rocket.chat` }, registeringUser2: { - username: `newusertwo${ value }`, - password: `passwordtwo${ value }`, - email: `mobile+registeringtwo${ value }@rocket.chat` + username: `newusertwo${value}`, + password: `passwordtwo${value}`, + email: `mobile+registeringtwo${value}@rocket.chat` }, registeringUser3: { - username: `newuserthree${ value }`, - password: `passwordthree${ value }`, - email: `mobile+registeringthree${ value }@rocket.chat` + username: `newuserthree${value}`, + password: `passwordthree${value}`, + email: `mobile+registeringthree${value}@rocket.chat` }, registeringUser4: { - username: `newuserfour${ value }`, - password: `passwordfour${ value }`, - email: `mobile+registeringfour${ value }@rocket.chat` + username: `newuserfour${value}`, + password: `passwordfour${value}`, + email: `mobile+registeringfour${value}@rocket.chat` }, random: value }; diff --git a/e2e/data/data.docker.js b/e2e/data/data.docker.js index 6c3ce19258..104007ce28 100644 --- a/e2e/data/data.docker.js +++ b/e2e/data/data.docker.js @@ -9,25 +9,25 @@ const data = { alternateServer: 'https://stable.rocket.chat', users: { regular: { - username: `userone${ value }`, + username: `userone${value}`, password: '123', - email: `mobile+regular${ value }@rocket.chat` + email: `mobile+regular${value}@rocket.chat` }, alternate: { - username: `usertwo${ value }`, + username: `usertwo${value}`, password: '123', - email: `mobile+alternate${ value }@rocket.chat`, + email: `mobile+alternate${value}@rocket.chat`, totpSecret: 'NA4GOMZGHBQSK6KEFRVT62DMGJJGSYZJFZIHO3ZOGVXWCYZ6MMZQ' }, profileChanges: { - username: `userthree${ value }`, + username: `userthree${value}`, password: '123', - email: `mobile+profileChanges${ value }@rocket.chat` + email: `mobile+profileChanges${value}@rocket.chat` }, existing: { - username: `existinguser${ value }`, + username: `existinguser${value}`, password: '123', - email: `mobile+existing${ value }@rocket.chat` + email: `mobile+existing${value}@rocket.chat` } }, channels: { @@ -41,36 +41,36 @@ const data = { }, groups: { private: { - name: `detox-private-${ value }` + name: `detox-private-${value}` }, alternate: { - name: `detox-alternate-${ value }` + name: `detox-alternate-${value}` } }, teams: { private: { - name: `detox-team-${ value }` + name: `detox-team-${value}` } }, registeringUser: { - username: `newuser${ value }`, - password: `password${ value }`, - email: `mobile+registering${ value }@rocket.chat` + username: `newuser${value}`, + password: `password${value}`, + email: `mobile+registering${value}@rocket.chat` }, registeringUser2: { - username: `newusertwo${ value }`, - password: `passwordtwo${ value }`, - email: `mobile+registeringtwo${ value }@rocket.chat` + username: `newusertwo${value}`, + password: `passwordtwo${value}`, + email: `mobile+registeringtwo${value}@rocket.chat` }, registeringUser3: { - username: `newuserthree${ value }`, - password: `passwordthree${ value }`, - email: `mobile+registeringthree${ value }@rocket.chat` + username: `newuserthree${value}`, + password: `passwordthree${value}`, + email: `mobile+registeringthree${value}@rocket.chat` }, registeringUser4: { - username: `newuserfour${ value }`, - password: `passwordfour${ value }`, - email: `mobile+registeringfour${ value }@rocket.chat` + username: `newuserfour${value}`, + password: `passwordfour${value}`, + email: `mobile+registeringfour${value}@rocket.chat` }, random: value }; diff --git a/e2e/helpers/app.js b/e2e/helpers/app.js index 45a67df569..b2f0076add 100644 --- a/e2e/helpers/app.js +++ b/e2e/helpers/app.js @@ -1,86 +1,124 @@ const data = require('../data'); async function navigateToWorkspace(server = data.server) { - await waitFor(element(by.id('onboarding-view'))).toBeVisible().withTimeout(10000); + await waitFor(element(by.id('onboarding-view'))) + .toBeVisible() + .withTimeout(10000); await element(by.id('join-workspace')).tap(); - await waitFor(element(by.id('new-server-view'))).toBeVisible().withTimeout(60000); - await element(by.id('new-server-view-input')).typeText(`${ server }\n`); - await waitFor(element(by.id('workspace-view'))).toBeVisible().withTimeout(60000); + await waitFor(element(by.id('new-server-view'))) + .toBeVisible() + .withTimeout(60000); + await element(by.id('new-server-view-input')).typeText(`${server}\n`); + await waitFor(element(by.id('workspace-view'))) + .toBeVisible() + .withTimeout(60000); await expect(element(by.id('workspace-view'))).toBeVisible(); } async function navigateToLogin(server) { - await waitFor(element(by.id('onboarding-view'))).toBeVisible().withTimeout(20000); + await waitFor(element(by.id('onboarding-view'))) + .toBeVisible() + .withTimeout(20000); await navigateToWorkspace(server); await element(by.id('workspace-view-login')).tap(); - await waitFor(element(by.id('login-view'))).toBeVisible().withTimeout(2000); + await waitFor(element(by.id('login-view'))) + .toBeVisible() + .withTimeout(2000); await expect(element(by.id('login-view'))).toBeVisible(); } async function navigateToRegister(server) { - await waitFor(element(by.id('onboarding-view'))).toBeVisible().withTimeout(20000); + await waitFor(element(by.id('onboarding-view'))) + .toBeVisible() + .withTimeout(20000); await navigateToWorkspace(server); await element(by.id('workspace-view-register')).tap(); - await waitFor(element(by.id('register-view'))).toBeVisible().withTimeout(2000); + await waitFor(element(by.id('register-view'))) + .toBeVisible() + .withTimeout(2000); } async function login(username, password) { - await waitFor(element(by.id('login-view'))).toBeVisible().withTimeout(2000); + await waitFor(element(by.id('login-view'))) + .toBeVisible() + .withTimeout(2000); await element(by.id('login-view-email')).replaceText(username); await element(by.id('login-view-password')).replaceText(password); await element(by.id('login-view-submit')).tap(); - await waitFor(element(by.id('rooms-list-view'))).toBeVisible().withTimeout(30000); + await waitFor(element(by.id('rooms-list-view'))) + .toBeVisible() + .withTimeout(30000); } async function logout() { await element(by.id('rooms-list-view-sidebar')).tap(); - await waitFor(element(by.id('sidebar-view'))).toBeVisible().withTimeout(2000); - await waitFor(element(by.id('sidebar-settings'))).toBeVisible().withTimeout(2000); + await waitFor(element(by.id('sidebar-view'))) + .toBeVisible() + .withTimeout(2000); + await waitFor(element(by.id('sidebar-settings'))) + .toBeVisible() + .withTimeout(2000); await element(by.id('sidebar-settings')).tap(); - await waitFor(element(by.id('settings-view'))).toBeVisible().withTimeout(2000); + await waitFor(element(by.id('settings-view'))) + .toBeVisible() + .withTimeout(2000); await element(by.type('UIScrollView')).atIndex(1).scrollTo('bottom'); await element(by.id('settings-logout')).tap(); const logoutAlertMessage = 'You will be logged out of this application.'; - await waitFor(element(by.text(logoutAlertMessage)).atIndex(0)).toExist().withTimeout(10000); + await waitFor(element(by.text(logoutAlertMessage)).atIndex(0)) + .toExist() + .withTimeout(10000); await expect(element(by.text(logoutAlertMessage)).atIndex(0)).toExist(); await element(by.text('Logout')).tap(); - await waitFor(element(by.id('onboarding-view'))).toBeVisible().withTimeout(10000); + await waitFor(element(by.id('onboarding-view'))) + .toBeVisible() + .withTimeout(10000); await expect(element(by.id('onboarding-view'))).toBeVisible(); } async function mockMessage(message, isThread = false) { const input = isThread ? 'messagebox-input-thread' : 'messagebox-input'; await element(by.id(input)).tap(); - await element(by.id(input)).typeText(`${ data.random }${ message }`); + await element(by.id(input)).typeText(`${data.random}${message}`); await element(by.id('messagebox-send-message')).tap(); - await waitFor(element(by.label(`${ data.random }${ message }`))).toExist().withTimeout(60000); - await expect(element(by.label(`${ data.random }${ message }`))).toExist(); - await element(by.label(`${ data.random }${ message }`)).atIndex(0).tap(); + await waitFor(element(by.label(`${data.random}${message}`))) + .toExist() + .withTimeout(60000); + await expect(element(by.label(`${data.random}${message}`))).toExist(); + await element(by.label(`${data.random}${message}`)) + .atIndex(0) + .tap(); } async function starMessage(message) { - const messageLabel = `${ data.random }${ message }`; + const messageLabel = `${data.random}${message}`; await element(by.label(messageLabel)).atIndex(0).longPress(); await expect(element(by.id('action-sheet'))).toExist(); await expect(element(by.id('action-sheet-handle'))).toBeVisible(); await element(by.id('action-sheet-handle')).swipe('up', 'fast', 0.5); await element(by.label('Star')).atIndex(0).tap(); - await waitFor(element(by.id('action-sheet'))).not.toExist().withTimeout(5000); + await waitFor(element(by.id('action-sheet'))) + .not.toExist() + .withTimeout(5000); } async function pinMessage(message) { - const messageLabel = `${ data.random }${ message }`; + const messageLabel = `${data.random}${message}`; await waitFor(element(by.label(messageLabel)).atIndex(0)).toExist(); await element(by.label(messageLabel)).atIndex(0).longPress(); await expect(element(by.id('action-sheet'))).toExist(); await expect(element(by.id('action-sheet-handle'))).toBeVisible(); await element(by.id('action-sheet-handle')).swipe('up', 'fast', 0.5); await element(by.label('Pin')).atIndex(0).tap(); - await waitFor(element(by.id('action-sheet'))).not.toExist().withTimeout(5000); + await waitFor(element(by.id('action-sheet'))) + .not.toExist() + .withTimeout(5000); } async function dismissReviewNag() { - await waitFor(element(by.text('Are you enjoying this app?'))).toExist().withTimeout(60000); + await waitFor(element(by.text('Are you enjoying this app?'))) + .toExist() + .withTimeout(60000); await element(by.label('No').and(by.type('_UIAlertControllerActionView'))).tap(); // Tap `no` on ask for review alert } @@ -95,10 +133,14 @@ function sleep(ms) { async function searchRoom(room) { await element(by.id('rooms-list-view-search')).tap(); await expect(element(by.id('rooms-list-view-search-input'))).toExist(); - await waitFor(element(by.id('rooms-list-view-search-input'))).toExist().withTimeout(5000); + await waitFor(element(by.id('rooms-list-view-search-input'))) + .toExist() + .withTimeout(5000); await element(by.id('rooms-list-view-search-input')).typeText(room); await sleep(300); - await waitFor(element(by.id(`rooms-list-view-item-${ room }`))).toBeVisible().withTimeout(60000); + await waitFor(element(by.id(`rooms-list-view-item-${room}`))) + .toBeVisible() + .withTimeout(60000); } async function tryTapping(theElement, timeout, longtap = false) { @@ -109,7 +151,8 @@ async function tryTapping(theElement, timeout, longtap = false) { await theElement.tap(); } } catch (e) { - if (timeout <= 0) { // TODO: Maths. How closely has the timeout been honoured here? + if (timeout <= 0) { + // TODO: Maths. How closely has the timeout been honoured here? throw e; } await sleep(100); @@ -117,11 +160,15 @@ async function tryTapping(theElement, timeout, longtap = false) { } } -const checkServer = async(server) => { - const label = `Connected to ${ server }`; +const checkServer = async server => { + const label = `Connected to ${server}`; await element(by.id('rooms-list-view-sidebar')).tap(); - await waitFor(element(by.id('sidebar-view'))).toBeVisible().withTimeout(2000); - await waitFor(element(by.label(label))).toBeVisible().withTimeout(10000); + await waitFor(element(by.id('sidebar-view'))) + .toBeVisible() + .withTimeout(2000); + await waitFor(element(by.label(label))) + .toBeVisible() + .withTimeout(10000); await element(by.id('sidebar-close-drawer')).tap(); }; diff --git a/e2e/helpers/data_setup.js b/e2e/helpers/data_setup.js index 5b6b95b37d..4c0f2d4e0d 100644 --- a/e2e/helpers/data_setup.js +++ b/e2e/helpers/data_setup.js @@ -10,14 +10,14 @@ const TEAM_TYPE = { const { server } = data; const rocketchat = axios.create({ - baseURL: `${ server }/api/v1/`, + baseURL: `${server}/api/v1/`, headers: { 'Content-Type': 'application/json;charset=UTF-8' } }); -const login = async(username, password) => { - console.log(`Logging in as user ${ username }`); +const login = async (username, password) => { + console.log(`Logging in as user ${username}`); const response = await rocketchat.post('login', { user: username, password @@ -29,8 +29,8 @@ const login = async(username, password) => { return { authToken, userId }; }; -const createUser = async(username, password, name, email) => { - console.log(`Creating user ${ username }`); +const createUser = async (username, password, name, email) => { + console.log(`Creating user ${username}`); try { await rocketchat.post('users.create', { username, @@ -44,16 +44,17 @@ const createUser = async(username, password, name, email) => { } }; -const createChannelIfNotExists = async(channelname) => { - console.log(`Creating public channel ${ channelname }`); +const createChannelIfNotExists = async channelname => { + console.log(`Creating public channel ${channelname}`); try { const room = await rocketchat.post('channels.create', { name: channelname }); return room; } catch (createError) { - try { // Maybe it exists already? - const room = rocketchat.get(`channels.info?roomName=${ channelname }`); + try { + // Maybe it exists already? + const room = rocketchat.get(`channels.info?roomName=${channelname}`); return room; } catch (infoError) { console.log(JSON.stringify(createError)); @@ -63,16 +64,17 @@ const createChannelIfNotExists = async(channelname) => { } }; -const createTeamIfNotExists = async(teamname) => { - console.log(`Creating private team ${ teamname }`); +const createTeamIfNotExists = async teamname => { + console.log(`Creating private team ${teamname}`); try { await rocketchat.post('teams.create', { name: teamname, type: TEAM_TYPE.PRIVATE }); } catch (createError) { - try { // Maybe it exists already? - await rocketchat.get(`teams.info?teamName=${ teamname }`); + try { + // Maybe it exists already? + await rocketchat.get(`teams.info?teamName=${teamname}`); } catch (infoError) { console.log(JSON.stringify(createError)); console.log(JSON.stringify(infoError)); @@ -81,15 +83,16 @@ const createTeamIfNotExists = async(teamname) => { } }; -const createGroupIfNotExists = async(groupname) => { - console.log(`Creating private group ${ groupname }`); +const createGroupIfNotExists = async groupname => { + console.log(`Creating private group ${groupname}`); try { await rocketchat.post('groups.create', { name: groupname }); } catch (createError) { - try { // Maybe it exists already? - await rocketchat.get(`groups.info?roomName=${ groupname }`); + try { + // Maybe it exists already? + await rocketchat.get(`groups.info?roomName=${groupname}`); } catch (infoError) { console.log(JSON.stringify(createError)); console.log(JSON.stringify(infoError)); @@ -98,16 +101,13 @@ const createGroupIfNotExists = async(groupname) => { } }; -const changeChannelJoinCode = async(roomId, joinCode) => { - console.log(`Changing channel Join Code ${ roomId }`); +const changeChannelJoinCode = async (roomId, joinCode) => { + console.log(`Changing channel Join Code ${roomId}`); try { await rocketchat.post('method.call/saveRoomSettings', { message: JSON.stringify({ method: 'saveRoomSettings', - params: [ - roomId, - { joinCode } - ] + params: [roomId, { joinCode }] }) }); } catch (createError) { @@ -116,8 +116,8 @@ const changeChannelJoinCode = async(roomId, joinCode) => { } }; -const sendMessage = async(user, channel, msg) => { - console.log(`Sending message to ${ channel }`); +const sendMessage = async (user, channel, msg) => { + console.log(`Sending message to ${channel}`); try { await login(user.username, user.password); await rocketchat.post('chat.postMessage', { channel, msg }); @@ -127,7 +127,7 @@ const sendMessage = async(user, channel, msg) => { } }; -const setup = async() => { +const setup = async () => { await login(data.adminUser, data.adminPassword); for (const userKey in data.users) { @@ -140,7 +140,11 @@ const setup = async() => { for (const channelKey in data.channels) { if (Object.prototype.hasOwnProperty.call(data.channels, channelKey)) { const channel = data.channels[channelKey]; - const { data: { channel: { _id } } } = await createChannelIfNotExists(channel.name); + const { + data: { + channel: { _id } + } + } = await createChannelIfNotExists(channel.name); if (channel.joinCode) { await changeChannelJoinCode(_id, channel.joinCode); @@ -165,16 +169,20 @@ const setup = async() => { } }; -const get = (endpoint) => { - console.log(`GET /${ endpoint }`); +const get = endpoint => { + console.log(`GET /${endpoint}`); return rocketchat.get(endpoint); }; const post = (endpoint, body) => { - console.log(`POST /${ endpoint } ${ JSON.stringify(body) }`); + console.log(`POST /${endpoint} ${JSON.stringify(body)}`); return rocketchat.post(endpoint, body); }; module.exports = { - setup, sendMessage, get, post, login + setup, + sendMessage, + get, + post, + login }; diff --git a/e2e/tests/assorted/01-e2eencryption.spec.js b/e2e/tests/assorted/01-e2eencryption.spec.js index 831ca3d672..1a40335b8b 100644 --- a/e2e/tests/assorted/01-e2eencryption.spec.js +++ b/e2e/tests/assorted/01-e2eencryption.spec.js @@ -1,27 +1,33 @@ -const { - navigateToLogin, login, sleep, tapBack, mockMessage, searchRoom, logout -} = require('../../helpers/app'); +const { navigateToLogin, login, sleep, tapBack, mockMessage, searchRoom, logout } = require('../../helpers/app'); const data = require('../../data'); const testuser = data.users.regular; const otheruser = data.users.alternate; -const checkServer = async(server) => { - const label = `Connected to ${ server }`; +const checkServer = async server => { + const label = `Connected to ${server}`; await element(by.id('rooms-list-view-sidebar')).tap(); - await waitFor(element(by.id('sidebar-view'))).toBeVisible().withTimeout(2000); - await waitFor(element(by.label(label))).toBeVisible().withTimeout(60000); + await waitFor(element(by.id('sidebar-view'))) + .toBeVisible() + .withTimeout(2000); + await waitFor(element(by.label(label))) + .toBeVisible() + .withTimeout(60000); await element(by.id('sidebar-close-drawer')).tap(); }; -const checkBanner = async() => { - await waitFor(element(by.id('listheader-encryption').withDescendant(by.label('Save Your Encryption Password')))).toBeVisible().withTimeout(10000); +const checkBanner = async () => { + await waitFor(element(by.id('listheader-encryption').withDescendant(by.label('Save Your Encryption Password')))) + .toBeVisible() + .withTimeout(10000); }; async function navigateToRoom(roomName) { - await searchRoom(`${ roomName }`); - await element(by.id(`rooms-list-view-item-${ roomName }`)).tap(); - await waitFor(element(by.id('room-view'))).toBeVisible().withTimeout(5000); + await searchRoom(`${roomName}`); + await element(by.id(`rooms-list-view-item-${roomName}`)).tap(); + await waitFor(element(by.id('room-view'))) + .toBeVisible() + .withTimeout(5000); } async function waitForToast() { @@ -29,21 +35,31 @@ async function waitForToast() { } async function navigateSecurityPrivacy() { - await waitFor(element(by.id('rooms-list-view'))).toBeVisible().withTimeout(2000); + await waitFor(element(by.id('rooms-list-view'))) + .toBeVisible() + .withTimeout(2000); await element(by.id('rooms-list-view-sidebar')).tap(); - await waitFor(element(by.id('sidebar-view'))).toBeVisible().withTimeout(2000); - await waitFor(element(by.id('sidebar-settings'))).toBeVisible().withTimeout(2000); + await waitFor(element(by.id('sidebar-view'))) + .toBeVisible() + .withTimeout(2000); + await waitFor(element(by.id('sidebar-settings'))) + .toBeVisible() + .withTimeout(2000); await element(by.id('sidebar-settings')).tap(); - await waitFor(element(by.id('settings-view'))).toBeVisible().withTimeout(2000); + await waitFor(element(by.id('settings-view'))) + .toBeVisible() + .withTimeout(2000); await element(by.id('settings-view-security-privacy')).tap(); - await waitFor(element(by.id('security-privacy-view'))).toBeVisible().withTimeout(2000); + await waitFor(element(by.id('security-privacy-view'))) + .toBeVisible() + .withTimeout(2000); } describe('E2E Encryption', () => { - const room = `encrypted${ data.random }`; + const room = `encrypted${data.random}`; const newPassword = 'abc'; - before(async() => { + before(async () => { await device.launchApp({ permissions: { notifications: 'YES' }, delete: true }); await navigateToLogin(); await login(testuser.username, testuser.password); @@ -51,47 +67,67 @@ describe('E2E Encryption', () => { describe('Banner', () => { describe('Render', () => { - it('should have encryption badge', async() => { + it('should have encryption badge', async () => { await checkBanner(); }); }); describe('Usage', () => { - it('should tap encryption badge and open save password modal', async() => { + it('should tap encryption badge and open save password modal', async () => { await element(by.id('listheader-encryption')).tap(); - await waitFor(element(by.id('e2e-save-password-view'))).toBeVisible().withTimeout(2000); + await waitFor(element(by.id('e2e-save-password-view'))) + .toBeVisible() + .withTimeout(2000); }); - it('should tap "How it works" and navigate', async() => { + it('should tap "How it works" and navigate', async () => { await element(by.id('e2e-save-password-view-how-it-works').and(by.label('How It Works'))).tap(); - await waitFor(element(by.id('e2e-how-it-works-view'))).toBeVisible().withTimeout(2000); + await waitFor(element(by.id('e2e-how-it-works-view'))) + .toBeVisible() + .withTimeout(2000); await tapBack(); }); - it('should tap "Save my password" and close modal', async() => { + it('should tap "Save my password" and close modal', async () => { await element(by.id('e2e-save-password-view-saved-password').and(by.label('I Saved My E2E Password'))).tap(); - await waitFor(element(by.id('rooms-list-view'))).toBeVisible().withTimeout(2000); + await waitFor(element(by.id('rooms-list-view'))) + .toBeVisible() + .withTimeout(2000); }); - it('should create encrypted room', async() => { + it('should create encrypted room', async () => { await element(by.id('rooms-list-view-create-channel')).tap(); - await waitFor(element(by.id('new-message-view'))).toBeVisible().withTimeout(2000); + await waitFor(element(by.id('new-message-view'))) + .toBeVisible() + .withTimeout(2000); await element(by.id('new-message-view-create-channel')).tap(); - await waitFor(element(by.id('select-users-view'))).toBeVisible().withTimeout(2000); + await waitFor(element(by.id('select-users-view'))) + .toBeVisible() + .withTimeout(2000); await element(by.id('select-users-view-search')).replaceText(otheruser.username); - await waitFor(element(by.id(`select-users-view-item-${ otheruser.username }`))).toBeVisible().withTimeout(60000); - await element(by.id(`select-users-view-item-${ otheruser.username }`)).tap(); - await waitFor(element(by.id(`selected-user-${ otheruser.username }`))).toBeVisible().withTimeout(5000); + await waitFor(element(by.id(`select-users-view-item-${otheruser.username}`))) + .toBeVisible() + .withTimeout(60000); + await element(by.id(`select-users-view-item-${otheruser.username}`)).tap(); + await waitFor(element(by.id(`selected-user-${otheruser.username}`))) + .toBeVisible() + .withTimeout(5000); await element(by.id('selected-users-view-submit')).tap(); - await waitFor(element(by.id('create-channel-view'))).toExist().withTimeout(5000); + await waitFor(element(by.id('create-channel-view'))) + .toExist() + .withTimeout(5000); await element(by.id('create-channel-name')).replaceText(room); await element(by.id('create-channel-encrypted')).longPress(); await element(by.id('create-channel-submit')).tap(); - await waitFor(element(by.id('room-view'))).toBeVisible().withTimeout(60000); - await waitFor(element(by.id(`room-view-title-${ room }`))).toBeVisible().withTimeout(60000); + await waitFor(element(by.id('room-view'))) + .toBeVisible() + .withTimeout(60000); + await waitFor(element(by.id(`room-view-title-${room}`))) + .toBeVisible() + .withTimeout(60000); }); - it('should send message and be able to read it', async() => { + it('should send message and be able to read it', async () => { await mockMessage('message'); await tapBack(); }); @@ -99,18 +135,28 @@ describe('E2E Encryption', () => { }); describe('Security and Privacy', () => { - it('should navigate to security privacy', async() => { - await waitFor(element(by.id('rooms-list-view'))).toBeVisible().withTimeout(2000); + it('should navigate to security privacy', async () => { + await waitFor(element(by.id('rooms-list-view'))) + .toBeVisible() + .withTimeout(2000); await element(by.id('rooms-list-view-sidebar')).tap(); - await waitFor(element(by.id('sidebar-view'))).toBeVisible().withTimeout(2000); - await waitFor(element(by.id('sidebar-settings'))).toBeVisible().withTimeout(2000); + await waitFor(element(by.id('sidebar-view'))) + .toBeVisible() + .withTimeout(2000); + await waitFor(element(by.id('sidebar-settings'))) + .toBeVisible() + .withTimeout(2000); await element(by.id('sidebar-settings')).tap(); - await waitFor(element(by.id('settings-view'))).toBeVisible().withTimeout(2000); + await waitFor(element(by.id('settings-view'))) + .toBeVisible() + .withTimeout(2000); await element(by.id('settings-view-security-privacy')).tap(); - await waitFor(element(by.id('security-privacy-view'))).toBeVisible().withTimeout(2000); + await waitFor(element(by.id('security-privacy-view'))) + .toBeVisible() + .withTimeout(2000); }); - it('render', async() => { + it('render', async () => { await expect(element(by.id('security-privacy-view-e2e-encryption'))).toExist(); await expect(element(by.id('security-privacy-view-screen-lock'))).toExist(); await expect(element(by.id('security-privacy-view-analytics-events'))).toExist(); @@ -119,14 +165,18 @@ describe('E2E Encryption', () => { }); describe('E2E Encryption Security', () => { - it('should navigate to e2e encryption security', async() => { + it('should navigate to e2e encryption security', async () => { await element(by.id('security-privacy-view-e2e-encryption')).tap(); - await waitFor(element(by.id('e2e-encryption-security-view'))).toBeVisible().withTimeout(2000); + await waitFor(element(by.id('e2e-encryption-security-view'))) + .toBeVisible() + .withTimeout(2000); }); describe('Render', () => { - it('should have items', async() => { - await waitFor(element(by.id('e2e-encryption-security-view'))).toBeVisible().withTimeout(2000); + it('should have items', async () => { + await waitFor(element(by.id('e2e-encryption-security-view'))) + .toBeVisible() + .withTimeout(2000); await expect(element(by.id('e2e-encryption-security-view-password'))).toExist(); await expect(element(by.id('e2e-encryption-security-view-change-password').and(by.label('Save Changes')))).toExist(); await expect(element(by.id('e2e-encryption-security-view-reset-key').and(by.label('Reset E2E Key')))).toExist(); @@ -134,95 +184,145 @@ describe('E2E Encryption', () => { }); describe('Change password', () => { - it('should change password', async() => { + it('should change password', async () => { await element(by.id('e2e-encryption-security-view-password')).typeText(newPassword); await element(by.id('e2e-encryption-security-view-change-password')).tap(); - await waitFor(element(by.text('Are you sure?'))).toExist().withTimeout(2000); - await expect(element(by.text('Make sure you\'ve saved it carefully somewhere else.'))).toExist(); + await waitFor(element(by.text('Are you sure?'))) + .toExist() + .withTimeout(2000); + await expect(element(by.text("Make sure you've saved it carefully somewhere else."))).toExist(); await element(by.label('Yes, change it').and(by.type('_UIAlertControllerActionView'))).tap(); await waitForToast(); }); - it('should navigate to the room and messages should remain decrypted', async() => { - await waitFor(element(by.id('e2e-encryption-security-view'))).toBeVisible().withTimeout(2000); + it('should navigate to the room and messages should remain decrypted', async () => { + await waitFor(element(by.id('e2e-encryption-security-view'))) + .toBeVisible() + .withTimeout(2000); await tapBack(); - await waitFor(element(by.id('security-privacy-view'))).toBeVisible().withTimeout(2000); + await waitFor(element(by.id('security-privacy-view'))) + .toBeVisible() + .withTimeout(2000); await tapBack(); - await waitFor(element(by.id('settings-view'))).toBeVisible().withTimeout(2000); + await waitFor(element(by.id('settings-view'))) + .toBeVisible() + .withTimeout(2000); await element(by.id('settings-view-drawer')).tap(); - await waitFor(element(by.id('sidebar-view'))).toBeVisible().withTimeout(2000); + await waitFor(element(by.id('sidebar-view'))) + .toBeVisible() + .withTimeout(2000); await element(by.id('sidebar-chats')).tap(); - await waitFor(element(by.id('rooms-list-view'))).toBeVisible().withTimeout(2000); + await waitFor(element(by.id('rooms-list-view'))) + .toBeVisible() + .withTimeout(2000); await navigateToRoom(room); - await waitFor(element(by.label(`${ data.random }message`)).atIndex(0)).toExist().withTimeout(2000); + await waitFor(element(by.label(`${data.random}message`)).atIndex(0)) + .toExist() + .withTimeout(2000); }); - it('should logout, login and messages should be encrypted', async() => { + it('should logout, login and messages should be encrypted', async () => { await tapBack(); - await waitFor(element(by.id('rooms-list-view'))).toBeVisible().withTimeout(2000); + await waitFor(element(by.id('rooms-list-view'))) + .toBeVisible() + .withTimeout(2000); await logout(); await navigateToLogin(); await login(testuser.username, testuser.password); await navigateToRoom(room); - await waitFor(element(by.label(`${ data.random }message`)).atIndex(0)).not.toExist().withTimeout(2000); + await waitFor(element(by.label(`${data.random}message`)).atIndex(0)) + .not.toExist() + .withTimeout(2000); await expect(element(by.label('Encrypted message')).atIndex(0)).toExist(); }); - it('should enter new e2e password and messages should be decrypted', async() => { + it('should enter new e2e password and messages should be decrypted', async () => { await tapBack(); - await waitFor(element(by.id('rooms-list-view'))).toBeVisible().withTimeout(2000); - await waitFor(element(by.id('listheader-encryption').withDescendant(by.label('Enter Your E2E Password')))).toBeVisible().withTimeout(2000); + await waitFor(element(by.id('rooms-list-view'))) + .toBeVisible() + .withTimeout(2000); + await waitFor(element(by.id('listheader-encryption').withDescendant(by.label('Enter Your E2E Password')))) + .toBeVisible() + .withTimeout(2000); await element(by.id('listheader-encryption').withDescendant(by.label('Enter Your E2E Password'))).tap(); - await waitFor(element(by.id('e2e-enter-your-password-view'))).toBeVisible().withTimeout(2000); + await waitFor(element(by.id('e2e-enter-your-password-view'))) + .toBeVisible() + .withTimeout(2000); await element(by.id('e2e-enter-your-password-view-password')).typeText(newPassword); await element(by.id('e2e-enter-your-password-view-confirm')).tap(); - await waitFor(element(by.id('listheader-encryption'))).not.toExist().withTimeout(10000); + await waitFor(element(by.id('listheader-encryption'))) + .not.toExist() + .withTimeout(10000); await navigateToRoom(room); - await waitFor(element(by.label(`${ data.random }message`)).atIndex(0)).toExist().withTimeout(2000); + await waitFor(element(by.label(`${data.random}message`)).atIndex(0)) + .toExist() + .withTimeout(2000); }); }); describe('Reset E2E key', () => { - it('should reset e2e key', async() => { + it('should reset e2e key', async () => { await tapBack(); - await waitFor(element(by.id('rooms-list-view'))).toBeVisible().withTimeout(2000); + await waitFor(element(by.id('rooms-list-view'))) + .toBeVisible() + .withTimeout(2000); await navigateSecurityPrivacy(); await element(by.id('security-privacy-view-e2e-encryption')).tap(); - await waitFor(element(by.id('e2e-encryption-security-view'))).toBeVisible().withTimeout(2000); + await waitFor(element(by.id('e2e-encryption-security-view'))) + .toBeVisible() + .withTimeout(2000); await element(by.id('e2e-encryption-security-view-reset-key').and(by.label('Reset E2E Key'))).tap(); - await waitFor(element(by.text('Are you sure?'))).toExist().withTimeout(2000); - await expect(element(by.text('You\'re going to be logged out.'))).toExist(); + await waitFor(element(by.text('Are you sure?'))) + .toExist() + .withTimeout(2000); + await expect(element(by.text("You're going to be logged out."))).toExist(); await element(by.label('Yes, reset it').and(by.type('UILabel'))).tap(); await sleep(2000); - await waitFor(element(by.id('workspace-view'))).toBeVisible().withTimeout(10000); - await waitFor(element(by.text('You\'ve been logged out by the server. Please log in again.'))).toExist().withTimeout(2000); + await waitFor(element(by.id('workspace-view'))) + .toBeVisible() + .withTimeout(10000); + await waitFor(element(by.text("You've been logged out by the server. Please log in again."))) + .toExist() + .withTimeout(2000); await element(by.label('OK').and(by.type('_UIAlertControllerActionView'))).tap(); await element(by.id('workspace-view-login')).tap(); - await waitFor(element(by.id('login-view'))).toBeVisible().withTimeout(2000); + await waitFor(element(by.id('login-view'))) + .toBeVisible() + .withTimeout(2000); await login(testuser.username, testuser.password); - await waitFor(element(by.id('listheader-encryption').withDescendant(by.label('Save Your Encryption Password')))).toBeVisible().withTimeout(2000); + await waitFor(element(by.id('listheader-encryption').withDescendant(by.label('Save Your Encryption Password')))) + .toBeVisible() + .withTimeout(2000); }); }); }); describe('Persist Banner', () => { - it('check save banner', async() => { + it('check save banner', async () => { await checkServer(data.server); await checkBanner(); }); - it('should add server and create new user', async() => { + it('should add server and create new user', async () => { await sleep(5000); await element(by.id('rooms-list-header-server-dropdown-button')).tap(); - await waitFor(element(by.id('rooms-list-header-server-dropdown'))).toBeVisible().withTimeout(5000); + await waitFor(element(by.id('rooms-list-header-server-dropdown'))) + .toBeVisible() + .withTimeout(5000); await element(by.id('rooms-list-header-server-add')).tap(); // TODO: refactor - await waitFor(element(by.id('new-server-view'))).toBeVisible().withTimeout(60000); - await element(by.id('new-server-view-input')).typeText(`${ data.alternateServer }\n`); - await waitFor(element(by.id('workspace-view'))).toBeVisible().withTimeout(60000); + await waitFor(element(by.id('new-server-view'))) + .toBeVisible() + .withTimeout(60000); + await element(by.id('new-server-view-input')).typeText(`${data.alternateServer}\n`); + await waitFor(element(by.id('workspace-view'))) + .toBeVisible() + .withTimeout(60000); await element(by.id('workspace-view-register')).tap(); - await waitFor(element(by.id('register-view'))).toBeVisible().withTimeout(2000); + await waitFor(element(by.id('register-view'))) + .toBeVisible() + .withTimeout(2000); // Register new user await element(by.id('register-view-name')).replaceText(data.registeringUser.username); @@ -230,26 +330,34 @@ describe('E2E Encryption', () => { await element(by.id('register-view-email')).replaceText(data.registeringUser.email); await element(by.id('register-view-password')).typeText(data.registeringUser.password); await element(by.id('register-view-submit')).tap(); - await waitFor(element(by.id('rooms-list-view'))).toBeVisible().withTimeout(60000); + await waitFor(element(by.id('rooms-list-view'))) + .toBeVisible() + .withTimeout(60000); await checkServer(data.alternateServer); }); - it('should change back', async() => { + it('should change back', async () => { await element(by.id('rooms-list-header-server-dropdown-button')).tap(); - await waitFor(element(by.id('rooms-list-header-server-dropdown'))).toBeVisible().withTimeout(5000); - await element(by.id(`rooms-list-header-server-${ data.server }`)).tap(); - await waitFor(element(by.id('rooms-list-view'))).toBeVisible().withTimeout(10000); + await waitFor(element(by.id('rooms-list-header-server-dropdown'))) + .toBeVisible() + .withTimeout(5000); + await element(by.id(`rooms-list-header-server-${data.server}`)).tap(); + await waitFor(element(by.id('rooms-list-view'))) + .toBeVisible() + .withTimeout(10000); await checkServer(data.server); await checkBanner(); }); - it('should reopen the app and have banner', async() => { + it('should reopen the app and have banner', async () => { await device.launchApp({ permissions: { notifications: 'YES' }, newInstance: true }); - await waitFor(element(by.id('rooms-list-view'))).toBeVisible().withTimeout(10000); + await waitFor(element(by.id('rooms-list-view'))) + .toBeVisible() + .withTimeout(10000); await checkBanner(); }); }); diff --git a/e2e/tests/assorted/02-broadcast.spec.js b/e2e/tests/assorted/02-broadcast.spec.js index 12350ee86f..f0f2192b4f 100644 --- a/e2e/tests/assorted/02-broadcast.spec.js +++ b/e2e/tests/assorted/02-broadcast.spec.js @@ -1,55 +1,77 @@ // const OTP = require('otp.js'); // const GA = OTP.googleAuthenticator; -const { - navigateToLogin, login, mockMessage, tapBack, searchRoom -} = require('../../helpers/app'); +const { navigateToLogin, login, mockMessage, tapBack, searchRoom } = require('../../helpers/app'); const data = require('../../data'); const testuser = data.users.regular; const otheruser = data.users.alternate; describe('Broadcast room', () => { - before(async() => { + before(async () => { await device.launchApp({ permissions: { notifications: 'YES' }, delete: true }); await navigateToLogin(); await login(testuser.username, testuser.password); }); - it('should create broadcast room', async() => { + it('should create broadcast room', async () => { await element(by.id('rooms-list-view-create-channel')).tap(); - await waitFor(element(by.id('new-message-view'))).toBeVisible().withTimeout(2000); + await waitFor(element(by.id('new-message-view'))) + .toBeVisible() + .withTimeout(2000); await element(by.id('new-message-view-create-channel')).tap(); - await waitFor(element(by.id('select-users-view'))).toBeVisible().withTimeout(2000); + await waitFor(element(by.id('select-users-view'))) + .toBeVisible() + .withTimeout(2000); await element(by.id('select-users-view-search')).replaceText(otheruser.username); - await waitFor(element(by.id(`select-users-view-item-${ otheruser.username }`))).toBeVisible().withTimeout(60000); - await element(by.id(`select-users-view-item-${ otheruser.username }`)).tap(); - await waitFor(element(by.id(`selected-user-${ otheruser.username }`))).toBeVisible().withTimeout(5000); + await waitFor(element(by.id(`select-users-view-item-${otheruser.username}`))) + .toBeVisible() + .withTimeout(60000); + await element(by.id(`select-users-view-item-${otheruser.username}`)).tap(); + await waitFor(element(by.id(`selected-user-${otheruser.username}`))) + .toBeVisible() + .withTimeout(5000); await element(by.id('selected-users-view-submit')).tap(); - await waitFor(element(by.id('create-channel-view'))).toExist().withTimeout(5000); - await element(by.id('create-channel-name')).replaceText(`broadcast${ data.random }`); + await waitFor(element(by.id('create-channel-view'))) + .toExist() + .withTimeout(5000); + await element(by.id('create-channel-name')).replaceText(`broadcast${data.random}`); await element(by.id('create-channel-broadcast')).longPress(); // https://github.com/facebook/react-native/issues/28032 await element(by.id('create-channel-submit')).tap(); - await waitFor(element(by.id('room-view'))).toBeVisible().withTimeout(60000); - await waitFor(element(by.id(`room-view-title-broadcast${ data.random }`))).toBeVisible().withTimeout(60000); + await waitFor(element(by.id('room-view'))) + .toBeVisible() + .withTimeout(60000); + await waitFor(element(by.id(`room-view-title-broadcast${data.random}`))) + .toBeVisible() + .withTimeout(60000); await element(by.id('room-header')).tap(); - await waitFor(element(by.id('room-actions-view'))).toBeVisible().withTimeout(5000); + await waitFor(element(by.id('room-actions-view'))) + .toBeVisible() + .withTimeout(5000); await element(by.id('room-actions-info')).tap(); - await waitFor(element(by.id('room-info-view'))).toBeVisible().withTimeout(2000); + await waitFor(element(by.id('room-info-view'))) + .toBeVisible() + .withTimeout(2000); await expect(element(by.label('Broadcast Channel').withAncestor(by.id('room-info-view-broadcast')))).toBeVisible(); await tapBack(); - await waitFor(element(by.id('room-actions-view'))).toBeVisible().withTimeout(2000); + await waitFor(element(by.id('room-actions-view'))) + .toBeVisible() + .withTimeout(2000); await tapBack(); - await waitFor(element(by.id('room-view'))).toBeVisible().withTimeout(2000); + await waitFor(element(by.id('room-view'))) + .toBeVisible() + .withTimeout(2000); }); - it('should send message', async() => { - await waitFor(element(by.id('room-view'))).toBeVisible().withTimeout(5000); + it('should send message', async () => { + await waitFor(element(by.id('room-view'))) + .toBeVisible() + .withTimeout(5000); await mockMessage('message'); await tapBack(); }); - it('should login as user without write message authorization and enter room', async() => { + it('should login as user without write message authorization and enter room', async () => { await device.launchApp({ permissions: { notifications: 'YES' }, delete: true }); await navigateToLogin(); await login(otheruser.username, otheruser.password); @@ -60,34 +82,42 @@ describe('Broadcast room', () => { // await element(by.id('two-factor-input')).replaceText(code); // await element(by.id('two-factor-send')).tap(); - await searchRoom(`broadcast${ data.random }`); - await element(by.id(`rooms-list-view-item-broadcast${ data.random }`)).tap(); - await waitFor(element(by.id('room-view'))).toBeVisible().withTimeout(5000); - await waitFor(element(by.id(`room-view-title-broadcast${ data.random }`))).toBeVisible().withTimeout(60000); + await searchRoom(`broadcast${data.random}`); + await element(by.id(`rooms-list-view-item-broadcast${data.random}`)).tap(); + await waitFor(element(by.id('room-view'))) + .toBeVisible() + .withTimeout(5000); + await waitFor(element(by.id(`room-view-title-broadcast${data.random}`))) + .toBeVisible() + .withTimeout(60000); }); - it('should not have messagebox', async() => { + it('should not have messagebox', async () => { await expect(element(by.id('messagebox'))).toBeNotVisible(); }); - it('should be read only', async() => { + it('should be read only', async () => { await expect(element(by.label('This room is read only'))).toExist(); }); - it('should have the message created earlier', async() => { - await waitFor(element(by.label(`${ data.random }message`))).toExist().withTimeout(60000); + it('should have the message created earlier', async () => { + await waitFor(element(by.label(`${data.random}message`))) + .toExist() + .withTimeout(60000); }); - it('should have reply button', async() => { + it('should have reply button', async () => { await expect(element(by.id('message-broadcast-reply'))).toBeVisible(); }); - it('should tap on reply button and navigate to direct room', async() => { + it('should tap on reply button and navigate to direct room', async () => { await element(by.id('message-broadcast-reply')).tap(); - await waitFor(element(by.id(`room-view-title-${ testuser.username }`))).toBeVisible().withTimeout(5000); + await waitFor(element(by.id(`room-view-title-${testuser.username}`))) + .toBeVisible() + .withTimeout(5000); }); - it('should reply broadcasted message', async() => { + it('should reply broadcasted message', async () => { await mockMessage('broadcastreply'); }); }); diff --git a/e2e/tests/assorted/03-profile.spec.js b/e2e/tests/assorted/03-profile.spec.js index b17485a3f9..56e2aa3241 100644 --- a/e2e/tests/assorted/03-profile.spec.js +++ b/e2e/tests/assorted/03-profile.spec.js @@ -14,81 +14,99 @@ async function waitForToast() { } describe('Profile screen', () => { - before(async() => { + before(async () => { await device.launchApp({ permissions: { notifications: 'YES' }, delete: true }); await navigateToLogin(); await login(profileChangeUser.username, profileChangeUser.password); await element(by.id('rooms-list-view-sidebar')).tap(); - await waitFor(element(by.id('sidebar-view'))).toBeVisible().withTimeout(2000); - await waitFor(element(by.id('sidebar-profile'))).toBeVisible().withTimeout(2000); + await waitFor(element(by.id('sidebar-view'))) + .toBeVisible() + .withTimeout(2000); + await waitFor(element(by.id('sidebar-profile'))) + .toBeVisible() + .withTimeout(2000); await element(by.id('sidebar-profile')).tap(); - await waitFor(element(by.id('profile-view'))).toBeVisible().withTimeout(2000); + await waitFor(element(by.id('profile-view'))) + .toBeVisible() + .withTimeout(2000); }); describe('Render', () => { - it('should have profile view', async() => { + it('should have profile view', async () => { await expect(element(by.id('profile-view'))).toBeVisible(); }); - it('should have avatar', async() => { + it('should have avatar', async () => { await expect(element(by.id('profile-view-avatar')).atIndex(0)).toExist(); }); - it('should have name', async() => { + it('should have name', async () => { await expect(element(by.id('profile-view-name'))).toExist(); }); - it('should have username', async() => { + it('should have username', async () => { await expect(element(by.id('profile-view-username'))).toExist(); }); - it('should have email', async() => { + it('should have email', async () => { await expect(element(by.id('profile-view-email'))).toExist(); }); - it('should have new password', async() => { + it('should have new password', async () => { await expect(element(by.id('profile-view-new-password'))).toExist(); }); - it('should have avatar url', async() => { + it('should have avatar url', async () => { await expect(element(by.id('profile-view-avatar-url'))).toExist(); }); - it('should have reset avatar button', async() => { - await waitFor(element(by.id('profile-view-reset-avatar'))).toExist().whileElement(by.id('profile-view-list')).scroll(scrollDown, 'down'); + it('should have reset avatar button', async () => { + await waitFor(element(by.id('profile-view-reset-avatar'))) + .toExist() + .whileElement(by.id('profile-view-list')) + .scroll(scrollDown, 'down'); }); - it('should have upload avatar button', async() => { - await waitFor(element(by.id('profile-view-upload-avatar'))).toExist().whileElement(by.id('profile-view-list')).scroll(scrollDown, 'down'); + it('should have upload avatar button', async () => { + await waitFor(element(by.id('profile-view-upload-avatar'))) + .toExist() + .whileElement(by.id('profile-view-list')) + .scroll(scrollDown, 'down'); }); - it('should have avatar url button', async() => { - await waitFor(element(by.id('profile-view-avatar-url-button'))).toExist().whileElement(by.id('profile-view-list')).scroll(scrollDown, 'down'); + it('should have avatar url button', async () => { + await waitFor(element(by.id('profile-view-avatar-url-button'))) + .toExist() + .whileElement(by.id('profile-view-list')) + .scroll(scrollDown, 'down'); }); - it('should have submit button', async() => { - await waitFor(element(by.id('profile-view-submit'))).toExist().whileElement(by.id('profile-view-list')).scroll(scrollDown, 'down'); + it('should have submit button', async () => { + await waitFor(element(by.id('profile-view-submit'))) + .toExist() + .whileElement(by.id('profile-view-list')) + .scroll(scrollDown, 'down'); }); }); describe('Usage', () => { - it('should change name and username', async() => { - await element(by.id('profile-view-name')).replaceText(`${ profileChangeUser.username }new`); - await element(by.id('profile-view-username')).typeText(`${ profileChangeUser.username }new`); + it('should change name and username', async () => { + await element(by.id('profile-view-name')).replaceText(`${profileChangeUser.username}new`); + await element(by.id('profile-view-username')).typeText(`${profileChangeUser.username}new`); await element(by.type('UIScrollView')).atIndex(1).swipe('up'); await element(by.id('profile-view-submit')).tap(); await waitForToast(); }); - it('should change email and password', async() => { - await element(by.id('profile-view-email')).replaceText(`mobile+profileChangesNew${ data.random }@rocket.chat`); - await element(by.id('profile-view-new-password')).replaceText(`${ profileChangeUser.password }new`); + it('should change email and password', async () => { + await element(by.id('profile-view-email')).replaceText(`mobile+profileChangesNew${data.random}@rocket.chat`); + await element(by.id('profile-view-new-password')).replaceText(`${profileChangeUser.password}new`); await element(by.id('profile-view-submit')).tap(); - await element(by.type('_UIAlertControllerTextField')).typeText(`${ profileChangeUser.password }\n`); + await element(by.type('_UIAlertControllerTextField')).typeText(`${profileChangeUser.password}\n`); await waitForToast(); }); - it('should reset avatar', async() => { + it('should reset avatar', async () => { await element(by.type('UIScrollView')).atIndex(1).swipe('up'); await element(by.id('profile-view-reset-avatar')).tap(); await waitForToast(); diff --git a/e2e/tests/assorted/04-setting.spec.js b/e2e/tests/assorted/04-setting.spec.js index 5e64a4b9f1..a242aa8b64 100644 --- a/e2e/tests/assorted/04-setting.spec.js +++ b/e2e/tests/assorted/04-setting.spec.js @@ -4,68 +4,84 @@ const data = require('../../data'); const testuser = data.users.regular; describe('Settings screen', () => { - before(async() => { + before(async () => { await device.launchApp({ permissions: { notifications: 'YES' }, delete: true }); await navigateToLogin(); await login(testuser.username, testuser.password); - await waitFor(element(by.id('rooms-list-view'))).toBeVisible().withTimeout(10000); + await waitFor(element(by.id('rooms-list-view'))) + .toBeVisible() + .withTimeout(10000); await element(by.id('rooms-list-view-sidebar')).tap(); - await waitFor(element(by.id('sidebar-view'))).toBeVisible().withTimeout(2000); - await waitFor(element(by.id('sidebar-settings'))).toBeVisible().withTimeout(2000); + await waitFor(element(by.id('sidebar-view'))) + .toBeVisible() + .withTimeout(2000); + await waitFor(element(by.id('sidebar-settings'))) + .toBeVisible() + .withTimeout(2000); await element(by.id('sidebar-settings')).tap(); - await waitFor(element(by.id('settings-view'))).toBeVisible().withTimeout(2000); + await waitFor(element(by.id('settings-view'))) + .toBeVisible() + .withTimeout(2000); }); describe('Render', () => { - it('should have settings view', async() => { + it('should have settings view', async () => { await expect(element(by.id('settings-view'))).toBeVisible(); }); - it('should have language', async() => { + it('should have language', async () => { await expect(element(by.id('settings-view-language'))).toExist(); }); - it('should have review app', async() => { + it('should have review app', async () => { await expect(element(by.id('settings-view-review-app'))).toExist(); }); - it('should have share app', async() => { + it('should have share app', async () => { await expect(element(by.id('settings-view-share-app'))).toExist(); }); - it('should have default browser', async() => { + it('should have default browser', async () => { await expect(element(by.id('settings-view-default-browser'))).toExist(); }); - it('should have theme', async() => { + it('should have theme', async () => { await expect(element(by.id('settings-view-theme'))).toExist(); }); - it('should have security and privacy', async() => { + it('should have security and privacy', async () => { await expect(element(by.id('settings-view-security-privacy'))).toExist(); }); - it('should have licence', async() => { + it('should have licence', async () => { await expect(element(by.id('settings-view-license'))).toExist(); }); - it('should have version no', async() => { + it('should have version no', async () => { await expect(element(by.id('settings-view-version'))).toExist(); }); - it('should have server version', async() => { + it('should have server version', async () => { await expect(element(by.id('settings-view-server-version'))).toExist(); }); }); describe('Usage', () => { - it('should tap clear cache and navigate to roomslistview', async() => { - await waitFor(element(by.id('settings-view'))).toBeVisible().withTimeout(2000); + it('should tap clear cache and navigate to roomslistview', async () => { + await waitFor(element(by.id('settings-view'))) + .toBeVisible() + .withTimeout(2000); await element(by.id('settings-view-clear-cache')).tap(); - await waitFor(element(by.text('This will clear all your offline data.'))).toExist().withTimeout(2000); + await waitFor(element(by.text('This will clear all your offline data.'))) + .toExist() + .withTimeout(2000); await element(by.label('Clear').and(by.type('_UIAlertControllerActionView'))).tap(); - await waitFor(element(by.id('rooms-list-view'))).toBeVisible().withTimeout(5000); - await waitFor(element(by.id(`rooms-list-view-item-${ data.groups.private.name }`))).toExist().withTimeout(10000); + await waitFor(element(by.id('rooms-list-view'))) + .toBeVisible() + .withTimeout(5000); + await waitFor(element(by.id(`rooms-list-view-item-${data.groups.private.name}`))) + .toExist() + .withTimeout(10000); }); }); }); diff --git a/e2e/tests/assorted/05-joinpublicroom.spec.js b/e2e/tests/assorted/05-joinpublicroom.spec.js index ed92f297e4..09ca3435ca 100644 --- a/e2e/tests/assorted/05-joinpublicroom.spec.js +++ b/e2e/tests/assorted/05-joinpublicroom.spec.js @@ -1,24 +1,26 @@ const data = require('../../data'); -const { - navigateToLogin, login, mockMessage, tapBack, searchRoom -} = require('../../helpers/app'); +const { navigateToLogin, login, mockMessage, tapBack, searchRoom } = require('../../helpers/app'); const testuser = data.users.regular; const room = data.channels.detoxpublic.name; async function navigateToRoom() { await searchRoom(room); - await element(by.id(`rooms-list-view-item-${ room }`)).tap(); - await waitFor(element(by.id('room-view'))).toBeVisible().withTimeout(5000); + await element(by.id(`rooms-list-view-item-${room}`)).tap(); + await waitFor(element(by.id('room-view'))) + .toBeVisible() + .withTimeout(5000); } async function navigateToRoomActions() { await element(by.id('room-header')).tap(); - await waitFor(element(by.id('room-actions-view'))).toBeVisible().withTimeout(5000); + await waitFor(element(by.id('room-actions-view'))) + .toBeVisible() + .withTimeout(5000); } describe('Join public room', () => { - before(async() => { + before(async () => { await device.launchApp({ permissions: { notifications: 'YES' }, delete: true }); await navigateToLogin(); await login(testuser.username, testuser.password); @@ -26,7 +28,7 @@ describe('Join public room', () => { }); describe('Render', () => { - it('should have room screen', async() => { + it('should have room screen', async () => { await expect(element(by.id('room-view'))).toBeVisible(); }); @@ -36,40 +38,40 @@ describe('Join public room', () => { // Render - Header describe('Header', () => { - it('should have actions button ', async() => { + it('should have actions button ', async () => { await expect(element(by.id('room-header'))).toBeVisible(); }); }); // Render - Join describe('Join', () => { - it('should have join', async() => { + it('should have join', async () => { await expect(element(by.id('room-view-join'))).toBeVisible(); }); - it('should have join text', async() => { + it('should have join text', async () => { await expect(element(by.label('You are in preview mode'))).toBeVisible(); }); - it('should have join button', async() => { + it('should have join button', async () => { await expect(element(by.id('room-view-join-button'))).toBeVisible(); }); - it('should not have messagebox', async() => { + it('should not have messagebox', async () => { await expect(element(by.id('messagebox'))).toBeNotVisible(); }); }); describe('Room Actions', () => { - before(async() => { + before(async () => { await navigateToRoomActions(); }); - it('should have room actions screen', async() => { + it('should have room actions screen', async () => { await expect(element(by.id('room-actions-view'))).toBeVisible(); }); - it('should have info', async() => { + it('should have info', async () => { await expect(element(by.id('room-actions-info'))).toBeVisible(); }); @@ -81,61 +83,67 @@ describe('Join public room', () => { // await expect(element(by.id('room-actions-video'))).toBeVisible(); // }); - it('should have members', async() => { + it('should have members', async () => { await expect(element(by.id('room-actions-members'))).toBeVisible(); }); - it('should have files', async() => { + it('should have files', async () => { await expect(element(by.id('room-actions-files'))).toBeVisible(); }); - it('should have mentions', async() => { + it('should have mentions', async () => { await expect(element(by.id('room-actions-mentioned'))).toBeVisible(); }); - it('should have starred', async() => { + it('should have starred', async () => { await expect(element(by.id('room-actions-starred'))).toBeVisible(); }); - it('should have share', async() => { + it('should have share', async () => { await expect(element(by.id('room-actions-share'))).toBeVisible(); }); - it('should have pinned', async() => { + it('should have pinned', async () => { await expect(element(by.id('room-actions-pinned'))).toBeVisible(); }); - it('should not have notifications', async() => { + it('should not have notifications', async () => { await expect(element(by.id('room-actions-notifications'))).toBeNotVisible(); }); - it('should not have leave channel', async() => { + it('should not have leave channel', async () => { await expect(element(by.id('room-actions-leave-channel'))).toBeNotVisible(); }); - after(async() => { + after(async () => { await tapBack(); - await waitFor(element(by.id('room-view'))).toBeVisible().withTimeout(2000); + await waitFor(element(by.id('room-view'))) + .toBeVisible() + .withTimeout(2000); }); }); }); describe('Usage', () => { - it('should join room', async() => { + it('should join room', async () => { await element(by.id('room-view-join-button')).tap(); await tapBack(); - await element(by.id(`rooms-list-view-item-${ room }`)).tap(); - await waitFor(element(by.id('room-view'))).toBeVisible().withTimeout(5000); - await waitFor(element(by.id('messagebox'))).toBeVisible().withTimeout(60000); + await element(by.id(`rooms-list-view-item-${room}`)).tap(); + await waitFor(element(by.id('room-view'))) + .toBeVisible() + .withTimeout(5000); + await waitFor(element(by.id('messagebox'))) + .toBeVisible() + .withTimeout(60000); await expect(element(by.id('messagebox'))).toBeVisible(); await expect(element(by.id('room-view-join'))).toBeNotVisible(); }); - it('should send message', async() => { + it('should send message', async () => { await mockMessage('message'); }); - it('should have notifications and leave channel', async() => { + it('should have notifications and leave channel', async () => { await navigateToRoomActions(); await expect(element(by.id('room-actions-view'))).toBeVisible(); await expect(element(by.id('room-actions-info'))).toBeVisible(); @@ -152,13 +160,19 @@ describe('Join public room', () => { await expect(element(by.id('room-actions-leave-channel'))).toBeVisible(); }); - it('should leave room', async() => { + it('should leave room', async () => { await element(by.id('room-actions-leave-channel')).tap(); - await waitFor(element(by.text('Yes, leave it!'))).toBeVisible().withTimeout(5000); + await waitFor(element(by.text('Yes, leave it!'))) + .toBeVisible() + .withTimeout(5000); await expect(element(by.text('Yes, leave it!'))).toBeVisible(); await element(by.text('Yes, leave it!')).tap(); - await waitFor(element(by.id('rooms-list-view'))).toBeVisible().withTimeout(10000); - await waitFor(element(by.id(`rooms-list-view-item-${ room }`))).toBeNotVisible().withTimeout(60000); + await waitFor(element(by.id('rooms-list-view'))) + .toBeVisible() + .withTimeout(10000); + await waitFor(element(by.id(`rooms-list-view-item-${room}`))) + .toBeNotVisible() + .withTimeout(60000); }); }); }); diff --git a/e2e/tests/assorted/06-status.spec.js b/e2e/tests/assorted/06-status.spec.js index 494fbec207..710fb4a9d1 100644 --- a/e2e/tests/assorted/06-status.spec.js +++ b/e2e/tests/assorted/06-status.spec.js @@ -8,21 +8,27 @@ async function waitForToast() { } describe('Status screen', () => { - before(async() => { + before(async () => { await device.launchApp({ permissions: { notifications: 'YES' }, delete: true }); await navigateToLogin(); await login(testuser.username, testuser.password); await element(by.id('rooms-list-view-sidebar')).tap(); - await waitFor(element(by.id('sidebar-view'))).toBeVisible().withTimeout(2000); - await waitFor(element(by.id('sidebar-custom-status'))).toBeVisible().withTimeout(2000); + await waitFor(element(by.id('sidebar-view'))) + .toBeVisible() + .withTimeout(2000); + await waitFor(element(by.id('sidebar-custom-status'))) + .toBeVisible() + .withTimeout(2000); await element(by.id('sidebar-custom-status')).tap(); - await waitFor(element(by.id('status-view'))).toBeVisible().withTimeout(2000); + await waitFor(element(by.id('status-view'))) + .toBeVisible() + .withTimeout(2000); }); describe('Render', () => { - it('should have status input', async() => { + it('should have status input', async () => { await expect(element(by.id('status-view-input'))).toBeVisible(); await expect(element(by.id('status-view-online'))).toExist(); await expect(element(by.id('status-view-busy'))).toExist(); @@ -32,16 +38,20 @@ describe('Status screen', () => { }); describe('Usage', () => { - it('should change status', async() => { + it('should change status', async () => { await element(by.id('status-view-busy')).tap(); - await waitFor(element(by.id('status-view-current-busy'))).toExist().withTimeout(2000); + await waitFor(element(by.id('status-view-current-busy'))) + .toExist() + .withTimeout(2000); }); - it('should change status text', async() => { + it('should change status text', async () => { await element(by.id('status-view-input')).typeText('status-text-new'); await element(by.id('status-view-submit')).tap(); await waitForToast(); - await waitFor(element(by.label('status-text-new').withAncestor(by.id('sidebar-custom-status')))).toExist().withTimeout(2000); + await waitFor(element(by.label('status-text-new').withAncestor(by.id('sidebar-custom-status')))) + .toExist() + .withTimeout(2000); }); }); }); diff --git a/e2e/tests/assorted/07-changeserver.spec.js b/e2e/tests/assorted/07-changeserver.spec.js index 4ed0d6b586..057c487fc5 100644 --- a/e2e/tests/assorted/07-changeserver.spec.js +++ b/e2e/tests/assorted/07-changeserver.spec.js @@ -1,38 +1,54 @@ const data = require('../../data'); const { navigateToLogin, login, checkServer } = require('../../helpers/app'); -const reopenAndCheckServer = async(server) => { +const reopenAndCheckServer = async server => { await device.launchApp({ permissions: { notifications: 'YES' } }); - await waitFor(element(by.id('rooms-list-view'))).toBeVisible().withTimeout(6000); + await waitFor(element(by.id('rooms-list-view'))) + .toBeVisible() + .withTimeout(6000); await checkServer(server); }; describe('Change server', () => { - before(async() => { + before(async () => { await device.launchApp({ permissions: { notifications: 'YES' }, delete: true }); await navigateToLogin(); await login(data.users.regular.username, data.users.regular.password); - await waitFor(element(by.id('rooms-list-view'))).toBeVisible().withTimeout(10000); + await waitFor(element(by.id('rooms-list-view'))) + .toBeVisible() + .withTimeout(10000); }); - it('should login to server, add new server, close the app, open the app and show previous logged server', async() => { + it('should login to server, add new server, close the app, open the app and show previous logged server', async () => { await element(by.id('rooms-list-header-server-dropdown-button')).tap(); - await waitFor(element(by.id('rooms-list-header-server-dropdown'))).toBeVisible().withTimeout(5000); + await waitFor(element(by.id('rooms-list-header-server-dropdown'))) + .toBeVisible() + .withTimeout(5000); await element(by.id('rooms-list-header-server-add')).tap(); - await waitFor(element(by.id('new-server-view'))).toBeVisible().withTimeout(6000); - await element(by.id('new-server-view-input')).typeText(`${ data.alternateServer }\n`); - await waitFor(element(by.id('workspace-view'))).toBeVisible().withTimeout(10000); + await waitFor(element(by.id('new-server-view'))) + .toBeVisible() + .withTimeout(6000); + await element(by.id('new-server-view-input')).typeText(`${data.alternateServer}\n`); + await waitFor(element(by.id('workspace-view'))) + .toBeVisible() + .withTimeout(10000); await reopenAndCheckServer(data.server); }); - it('should add server and create new user', async() => { + it('should add server and create new user', async () => { await element(by.id('rooms-list-header-server-dropdown-button')).tap(); - await waitFor(element(by.id('rooms-list-header-server-dropdown'))).toBeVisible().withTimeout(5000); - await element(by.id(`rooms-list-header-server-${ data.alternateServer }`)).tap(); - await waitFor(element(by.id('workspace-view'))).toBeVisible().withTimeout(60000); + await waitFor(element(by.id('rooms-list-header-server-dropdown'))) + .toBeVisible() + .withTimeout(5000); + await element(by.id(`rooms-list-header-server-${data.alternateServer}`)).tap(); + await waitFor(element(by.id('workspace-view'))) + .toBeVisible() + .withTimeout(60000); await element(by.id('workspace-view-register')).tap(); - await waitFor(element(by.id('register-view'))).toBeVisible().withTimeout(2000); + await waitFor(element(by.id('register-view'))) + .toBeVisible() + .withTimeout(2000); // Register new user await element(by.id('register-view-name')).replaceText(data.registeringUser2.username); @@ -40,26 +56,36 @@ describe('Change server', () => { await element(by.id('register-view-email')).replaceText(data.registeringUser2.email); await element(by.id('register-view-password')).replaceText(data.registeringUser2.password); await element(by.id('register-view-submit')).tap(); - await waitFor(element(by.id('rooms-list-view'))).toBeVisible().withTimeout(60000); + await waitFor(element(by.id('rooms-list-view'))) + .toBeVisible() + .withTimeout(60000); - await waitFor(element(by.id(`rooms-list-view-item-${ data.groups.private.name }`))).toBeNotVisible().withTimeout(60000); + await waitFor(element(by.id(`rooms-list-view-item-${data.groups.private.name}`))) + .toBeNotVisible() + .withTimeout(60000); await checkServer(data.alternateServer); }); - it('should reopen the app and show alternate server', async() => { + it('should reopen the app and show alternate server', async () => { await reopenAndCheckServer(data.alternateServer); }); - it('should change back to main server', async() => { + it('should change back to main server', async () => { await element(by.id('rooms-list-header-server-dropdown-button')).tap(); - await waitFor(element(by.id('rooms-list-header-server-dropdown'))).toBeVisible().withTimeout(5000); - await element(by.id(`rooms-list-header-server-${ data.server }`)).tap(); - await waitFor(element(by.id('rooms-list-view'))).toBeVisible().withTimeout(10000); - await waitFor(element(by.id(`rooms-list-view-item-${ data.groups.private.name }`))).toBeVisible().withTimeout(60000); + await waitFor(element(by.id('rooms-list-header-server-dropdown'))) + .toBeVisible() + .withTimeout(5000); + await element(by.id(`rooms-list-header-server-${data.server}`)).tap(); + await waitFor(element(by.id('rooms-list-view'))) + .toBeVisible() + .withTimeout(10000); + await waitFor(element(by.id(`rooms-list-view-item-${data.groups.private.name}`))) + .toBeVisible() + .withTimeout(60000); await checkServer(data.server); }); - it('should reopen the app and show main server', async() => { + it('should reopen the app and show main server', async () => { await reopenAndCheckServer(data.server); }); }); diff --git a/e2e/tests/assorted/08-joinprotectedroom.spec.js b/e2e/tests/assorted/08-joinprotectedroom.spec.js index f10d7bc5f2..0960bf49ab 100644 --- a/e2e/tests/assorted/08-joinprotectedroom.spec.js +++ b/e2e/tests/assorted/08-joinprotectedroom.spec.js @@ -1,7 +1,5 @@ const data = require('../../data'); -const { - navigateToLogin, login, mockMessage, searchRoom -} = require('../../helpers/app'); +const { navigateToLogin, login, mockMessage, searchRoom } = require('../../helpers/app'); const testuser = data.users.regular; const room = data.channels.detoxpublicprotected.name; @@ -9,17 +7,21 @@ const { joinCode } = data.channels.detoxpublicprotected; async function navigateToRoom() { await searchRoom(room); - await element(by.id(`rooms-list-view-item-${ room }`)).tap(); - await waitFor(element(by.id('room-view'))).toBeVisible().withTimeout(5000); + await element(by.id(`rooms-list-view-item-${room}`)).tap(); + await waitFor(element(by.id('room-view'))) + .toBeVisible() + .withTimeout(5000); } async function openJoinCode() { await element(by.id('room-view-join-button')).tap(); - await waitFor(element(by.id('join-code'))).toBeVisible().withTimeout(5000); + await waitFor(element(by.id('join-code'))) + .toBeVisible() + .withTimeout(5000); } describe('Join protected room', () => { - before(async() => { + before(async () => { await device.launchApp({ permissions: { notifications: 'YES' }, delete: true }); await navigateToLogin(); await login(testuser.username, testuser.password); @@ -27,26 +29,32 @@ describe('Join protected room', () => { }); describe('Usage', () => { - it('should tap join and ask for join code', async() => { + it('should tap join and ask for join code', async () => { await openJoinCode(); }); - it('should cancel join room', async() => { + it('should cancel join room', async () => { await element(by.id('join-code-cancel')).tap(); - await waitFor(element(by.id('join-code'))).toBeNotVisible().withTimeout(5000); + await waitFor(element(by.id('join-code'))) + .toBeNotVisible() + .withTimeout(5000); }); - it('should join room', async() => { + it('should join room', async () => { await openJoinCode(); await element(by.id('join-code-input')).replaceText(joinCode); await element(by.id('join-code-submit')).tap(); - await waitFor(element(by.id('join-code'))).toBeNotVisible().withTimeout(5000); - await waitFor(element(by.id('messagebox'))).toBeVisible().withTimeout(60000); + await waitFor(element(by.id('join-code'))) + .toBeNotVisible() + .withTimeout(5000); + await waitFor(element(by.id('messagebox'))) + .toBeVisible() + .withTimeout(60000); await expect(element(by.id('messagebox'))).toBeVisible(); await expect(element(by.id('room-view-join'))).toBeNotVisible(); }); - it('should send message', async() => { + it('should send message', async () => { await mockMessage('message'); }); }); diff --git a/e2e/tests/assorted/09-joinfromdirectory.spec.js b/e2e/tests/assorted/09-joinfromdirectory.spec.js index e04faabf4e..e521e94ecf 100644 --- a/e2e/tests/assorted/09-joinfromdirectory.spec.js +++ b/e2e/tests/assorted/09-joinfromdirectory.spec.js @@ -1,50 +1,60 @@ const data = require('../../data'); -const { - navigateToLogin, login, tapBack, sleep -} = require('../../helpers/app'); +const { navigateToLogin, login, tapBack, sleep } = require('../../helpers/app'); const testuser = data.users.regular; async function navigateToRoom(search) { await element(by.id('directory-view-search')).replaceText(search); - await waitFor(element(by.id(`directory-view-item-${ search }`))).toBeVisible().withTimeout(10000); + await waitFor(element(by.id(`directory-view-item-${search}`))) + .toBeVisible() + .withTimeout(10000); await sleep(300); // app takes some time to animate - await element(by.id(`directory-view-item-${ search }`)).tap(); - await waitFor(element(by.id('room-view'))).toExist().withTimeout(5000); - await waitFor(element(by.id(`room-view-title-${ search }`))).toExist().withTimeout(5000); + await element(by.id(`directory-view-item-${search}`)).tap(); + await waitFor(element(by.id('room-view'))) + .toExist() + .withTimeout(5000); + await waitFor(element(by.id(`room-view-title-${search}`))) + .toExist() + .withTimeout(5000); } describe('Join room from directory', () => { - before(async() => { + before(async () => { await device.launchApp({ permissions: { notifications: 'YES' }, delete: true }); await navigateToLogin(); await login(testuser.username, testuser.password); }); describe('Usage', () => { - it('should tap directory', async() => { + it('should tap directory', async () => { await element(by.id('rooms-list-view-directory')).tap(); - await waitFor(element(by.id('directory-view'))).toExist().withTimeout(2000); + await waitFor(element(by.id('directory-view'))) + .toExist() + .withTimeout(2000); }); - it('should search public channel and navigate', async() => { + it('should search public channel and navigate', async () => { await navigateToRoom(data.channels.detoxpublic.name); }); - it('should search user and navigate', async() => { + it('should search user and navigate', async () => { await tapBack(); await element(by.id('rooms-list-view-directory')).tap(); - await waitFor(element(by.id('directory-view'))).toExist().withTimeout(2000); + await waitFor(element(by.id('directory-view'))) + .toExist() + .withTimeout(2000); await element(by.id('directory-view-dropdown')).tap(); await element(by.label('Users')).tap(); await element(by.label('Search by')).tap(); await navigateToRoom(data.users.alternate.username); }); - it('should search user and navigate', async() => { + it('should search user and navigate', async () => { await tapBack(); await element(by.id('rooms-list-view-directory')).tap(); - await waitFor(element(by.id('directory-view'))).toExist().withTimeout(2000); + await waitFor(element(by.id('directory-view'))) + .toExist() + .withTimeout(2000); await element(by.id('directory-view-dropdown')).tap(); await element(by.label('Teams')).tap(); await element(by.label('Search by')).tap(); diff --git a/e2e/tests/assorted/10-deleteserver.spec.js b/e2e/tests/assorted/10-deleteserver.spec.js index d92d3c442d..78366e6c52 100644 --- a/e2e/tests/assorted/10-deleteserver.spec.js +++ b/e2e/tests/assorted/10-deleteserver.spec.js @@ -1,30 +1,36 @@ const data = require('../../data'); -const { - sleep, navigateToLogin, login, checkServer -} = require('../../helpers/app'); +const { sleep, navigateToLogin, login, checkServer } = require('../../helpers/app'); describe('Delete server', () => { - before(async() => { + before(async () => { await device.launchApp({ permissions: { notifications: 'YES' }, delete: true }); await navigateToLogin(); await login(data.users.regular.username, data.users.regular.password); }); - it('should be logged in main server', async() => { + it('should be logged in main server', async () => { await checkServer(data.server); }); - it('should add server', async() => { + it('should add server', async () => { await sleep(5000); await element(by.id('rooms-list-header-server-dropdown-button')).tap(); - await waitFor(element(by.id('rooms-list-header-server-dropdown'))).toBeVisible().withTimeout(5000); + await waitFor(element(by.id('rooms-list-header-server-dropdown'))) + .toBeVisible() + .withTimeout(5000); await element(by.id('rooms-list-header-server-add')).tap(); - await waitFor(element(by.id('new-server-view'))).toBeVisible().withTimeout(10000); - await element(by.id('new-server-view-input')).typeText(`${ data.alternateServer }\n`); - await waitFor(element(by.id('workspace-view'))).toBeVisible().withTimeout(10000); + await waitFor(element(by.id('new-server-view'))) + .toBeVisible() + .withTimeout(10000); + await element(by.id('new-server-view-input')).typeText(`${data.alternateServer}\n`); + await waitFor(element(by.id('workspace-view'))) + .toBeVisible() + .withTimeout(10000); await element(by.id('workspace-view-register')).tap(); - await waitFor(element(by.id('register-view'))).toBeVisible().withTimeout(2000); + await waitFor(element(by.id('register-view'))) + .toBeVisible() + .withTimeout(2000); // Register new user await element(by.id('register-view-name')).replaceText(data.registeringUser3.username); @@ -32,18 +38,26 @@ describe('Delete server', () => { await element(by.id('register-view-email')).replaceText(data.registeringUser3.email); await element(by.id('register-view-password')).typeText(data.registeringUser3.password); await element(by.id('register-view-submit')).tap(); - await waitFor(element(by.id('rooms-list-view'))).toBeVisible().withTimeout(60000); + await waitFor(element(by.id('rooms-list-view'))) + .toBeVisible() + .withTimeout(60000); await checkServer(data.alternateServer); }); - it('should delete server', async() => { + it('should delete server', async () => { await element(by.id('rooms-list-header-server-dropdown-button')).tap(); - await waitFor(element(by.id('rooms-list-header-server-dropdown'))).toBeVisible().withTimeout(5000); - await element(by.id(`rooms-list-header-server-${ data.server }`)).longPress(1500); + await waitFor(element(by.id('rooms-list-header-server-dropdown'))) + .toBeVisible() + .withTimeout(5000); + await element(by.id(`rooms-list-header-server-${data.server}`)).longPress(1500); await element(by.label('Delete').and(by.type('_UIAlertControllerActionView'))).tap(); await element(by.id('rooms-list-header-server-dropdown-button')).tap(); - await waitFor(element(by.id('rooms-list-header-server-dropdown'))).toBeVisible().withTimeout(5000); - await waitFor(element(by.id(`rooms-list-header-server-${ data.server }`))).toBeNotVisible().withTimeout(10000); + await waitFor(element(by.id('rooms-list-header-server-dropdown'))) + .toBeVisible() + .withTimeout(5000); + await waitFor(element(by.id(`rooms-list-header-server-${data.server}`))) + .toBeNotVisible() + .withTimeout(10000); }); }); diff --git a/e2e/tests/assorted/11-deeplinking.spec.js b/e2e/tests/assorted/11-deeplinking.spec.js index 8a30be0a9e..27255be3c5 100644 --- a/e2e/tests/assorted/11-deeplinking.spec.js +++ b/e2e/tests/assorted/11-deeplinking.spec.js @@ -4,49 +4,61 @@ const { get, login } = require('../../helpers/data_setup'); const DEEPLINK_METHODS = { AUTH: 'auth', ROOM: 'room' }; const getDeepLink = (method, server, params) => { - const deeplink = `rocketchat://${ method }?host=${ server.replace(/^(http:\/\/|https:\/\/)/, '') }&${ params }`; - console.log(`Deeplinking to: ${ deeplink }`); + const deeplink = `rocketchat://${method}?host=${server.replace(/^(http:\/\/|https:\/\/)/, '')}&${params}`; + console.log(`Deeplinking to: ${deeplink}`); return deeplink; }; describe('Deep linking', () => { let userId; let authToken; - before(async() => { + before(async () => { const loginResult = await login(data.users.regular.username, data.users.regular.password); ({ userId, authToken } = loginResult); }); describe('Authentication', () => { - it('should run a deep link to an invalid account and raise error', async() => { + it('should run a deep link to an invalid account and raise error', async () => { await device.launchApp({ permissions: { notifications: 'YES' }, delete: true, url: getDeepLink(DEEPLINK_METHODS.AUTH, data.server, 'userId=123&token=abc'), sourceApp: 'com.apple.mobilesafari' }); - await waitFor(element(by.text('You\'ve been logged out by the server. Please log in again.'))).toExist().withTimeout(10000); // TODO: we need to improve this message + await waitFor(element(by.text("You've been logged out by the server. Please log in again."))) + .toExist() + .withTimeout(10000); // TODO: we need to improve this message }); - const authAndNavigate = async() => { + const authAndNavigate = async () => { await device.launchApp({ permissions: { notifications: 'YES' }, newInstance: true, - url: getDeepLink(DEEPLINK_METHODS.AUTH, data.server, `userId=${ userId }&token=${ authToken }&path=group/${ data.groups.private.name }`), + url: getDeepLink( + DEEPLINK_METHODS.AUTH, + data.server, + `userId=${userId}&token=${authToken}&path=group/${data.groups.private.name}` + ), sourceApp: 'com.apple.mobilesafari' }); - await waitFor(element(by.id(`room-view-title-${ data.groups.private.name }`))).toExist().withTimeout(30000); + await waitFor(element(by.id(`room-view-title-${data.groups.private.name}`))) + .toExist() + .withTimeout(30000); await tapBack(); - await waitFor(element(by.id('rooms-list-view'))).toBeVisible().withTimeout(10000); + await waitFor(element(by.id('rooms-list-view'))) + .toBeVisible() + .withTimeout(10000); await checkServer(data.server); - await waitFor(element(by.id(`rooms-list-view-item-${ data.groups.private.name }`))).toBeVisible().withTimeout(2000); + await waitFor(element(by.id(`rooms-list-view-item-${data.groups.private.name}`))) + .toBeVisible() + .withTimeout(2000); }; - it('should authenticate and navigate', async() => { + it('should authenticate and navigate', async () => { await authAndNavigate(); }); - it('should authenticate while logged in another server', async() => { + it('should authenticate while logged in another server', async () => { await device.launchApp({ permissions: { notifications: 'YES' }, delete: true }); await navigateToRegister(data.alternateServer); await element(by.id('register-view-name')).replaceText(data.registeringUser4.username); @@ -54,61 +66,75 @@ describe('Deep linking', () => { await element(by.id('register-view-email')).replaceText(data.registeringUser4.email); await element(by.id('register-view-password')).typeText(data.registeringUser4.password); await element(by.id('register-view-submit')).tap(); - await waitFor(element(by.id('rooms-list-view'))).toBeVisible().withTimeout(10000); + await waitFor(element(by.id('rooms-list-view'))) + .toBeVisible() + .withTimeout(10000); await authAndNavigate(); }); }); describe('Room', () => { describe('While logged in', () => { - it('should navigate to the room using path', async() => { + it('should navigate to the room using path', async () => { await device.launchApp({ permissions: { notifications: 'YES' }, newInstance: true, - url: getDeepLink(DEEPLINK_METHODS.ROOM, data.server, `path=group/${ data.groups.private.name }`), + url: getDeepLink(DEEPLINK_METHODS.ROOM, data.server, `path=group/${data.groups.private.name}`), sourceApp: 'com.apple.mobilesafari' }); - await waitFor(element(by.id(`room-view-title-${ data.groups.private.name }`))).toExist().withTimeout(10000); + await waitFor(element(by.id(`room-view-title-${data.groups.private.name}`))) + .toExist() + .withTimeout(10000); }); - it('should navigate to the room using rid', async() => { - const roomResult = await get(`groups.info?roomName=${ data.groups.private.name }`); + it('should navigate to the room using rid', async () => { + const roomResult = await get(`groups.info?roomName=${data.groups.private.name}`); await device.launchApp({ permissions: { notifications: 'YES' }, newInstance: true, - url: getDeepLink(DEEPLINK_METHODS.ROOM, data.server, `rid=${ roomResult.data.group._id }`), + url: getDeepLink(DEEPLINK_METHODS.ROOM, data.server, `rid=${roomResult.data.group._id}`), sourceApp: 'com.apple.mobilesafari' }); - await waitFor(element(by.id(`room-view-title-${ data.groups.private.name }`))).toExist().withTimeout(15000); + await waitFor(element(by.id(`room-view-title-${data.groups.private.name}`))) + .toExist() + .withTimeout(15000); await tapBack(); }); }); describe('Others', () => { - it('should change server', async() => { - await waitFor(element(by.id('rooms-list-view'))).toBeVisible().withTimeout(2000); + it('should change server', async () => { + await waitFor(element(by.id('rooms-list-view'))) + .toBeVisible() + .withTimeout(2000); await element(by.id('rooms-list-header-server-dropdown-button')).tap(); - await waitFor(element(by.id('rooms-list-header-server-dropdown'))).toBeVisible().withTimeout(5000); - await element(by.id(`rooms-list-header-server-${ data.alternateServer }`)).tap(); + await waitFor(element(by.id('rooms-list-header-server-dropdown'))) + .toBeVisible() + .withTimeout(5000); + await element(by.id(`rooms-list-header-server-${data.alternateServer}`)).tap(); await checkServer(data.alternateServer); await device.launchApp({ permissions: { notifications: 'YES' }, newInstance: true, - url: getDeepLink(DEEPLINK_METHODS.ROOM, data.server, `path=group/${ data.groups.private.name }`), + url: getDeepLink(DEEPLINK_METHODS.ROOM, data.server, `path=group/${data.groups.private.name}`), sourceApp: 'com.apple.mobilesafari' }); - await waitFor(element(by.id(`room-view-title-${ data.groups.private.name }`))).toExist().withTimeout(10000); + await waitFor(element(by.id(`room-view-title-${data.groups.private.name}`))) + .toExist() + .withTimeout(10000); }); - it('should add a not existing server and fallback to the previous one', async() => { + it('should add a not existing server and fallback to the previous one', async () => { await device.launchApp({ permissions: { notifications: 'YES' }, newInstance: true, url: getDeepLink(DEEPLINK_METHODS.ROOM, 'https://google.com'), sourceApp: 'com.apple.mobilesafari' }); - await waitFor(element(by.id('rooms-list-view'))).toBeVisible().withTimeout(10000); + await waitFor(element(by.id('rooms-list-view'))) + .toBeVisible() + .withTimeout(10000); await checkServer(data.server); }); }); diff --git a/e2e/tests/assorted/12-i18n.spec.js b/e2e/tests/assorted/12-i18n.spec.js index b54489c9f0..37fa347da0 100644 --- a/e2e/tests/assorted/12-i18n.spec.js +++ b/e2e/tests/assorted/12-i18n.spec.js @@ -5,20 +5,30 @@ const data = require('../../data'); const testuser = data.users.regular; const defaultLaunchArgs = { permissions: { notifications: 'YES' } }; -const navToLanguage = async() => { - await waitFor(element(by.id('rooms-list-view'))).toBeVisible().withTimeout(10000); +const navToLanguage = async () => { + await waitFor(element(by.id('rooms-list-view'))) + .toBeVisible() + .withTimeout(10000); await element(by.id('rooms-list-view-sidebar')).tap(); - await waitFor(element(by.id('sidebar-view'))).toBeVisible().withTimeout(2000); - await waitFor(element(by.id('sidebar-settings'))).toBeVisible().withTimeout(2000); + await waitFor(element(by.id('sidebar-view'))) + .toBeVisible() + .withTimeout(2000); + await waitFor(element(by.id('sidebar-settings'))) + .toBeVisible() + .withTimeout(2000); await element(by.id('sidebar-settings')).tap(); - await waitFor(element(by.id('settings-view'))).toBeVisible().withTimeout(2000); + await waitFor(element(by.id('settings-view'))) + .toBeVisible() + .withTimeout(2000); await element(by.id('settings-view-language')).tap(); - await waitFor(element(by.id('language-view'))).toBeVisible().withTimeout(10000); + await waitFor(element(by.id('language-view'))) + .toBeVisible() + .withTimeout(10000); }; describe('i18n', () => { describe('OS language', () => { - it('OS set to \'en\' and proper translate to \'en\'', async() => { + it("OS set to 'en' and proper translate to 'en'", async () => { await device.launchApp({ ...defaultLaunchArgs, languageAndLocale: { @@ -27,12 +37,14 @@ describe('i18n', () => { }, delete: true }); - await waitFor(element(by.id('onboarding-view'))).toBeVisible().withTimeout(20000); + await waitFor(element(by.id('onboarding-view'))) + .toBeVisible() + .withTimeout(20000); await expect(element(by.id('join-workspace').and(by.label('Join a workspace')))).toBeVisible(); await expect(element(by.id('create-workspace-button').and(by.label('Create a new workspace')))).toBeVisible(); }); - it('OS set to unavailable language and fallback to \'en\'', async() => { + it("OS set to unavailable language and fallback to 'en'", async () => { await device.launchApp({ ...defaultLaunchArgs, languageAndLocale: { @@ -40,7 +52,9 @@ describe('i18n', () => { locale: 'es-MX' } }); - await waitFor(element(by.id('onboarding-view'))).toBeVisible().withTimeout(20000); + await waitFor(element(by.id('onboarding-view'))) + .toBeVisible() + .withTimeout(20000); await expect(element(by.id('join-workspace').and(by.label('Join a workspace')))).toBeVisible(); await expect(element(by.id('create-workspace-button').and(by.label('Create a new workspace')))).toBeVisible(); }); @@ -64,42 +78,54 @@ describe('i18n', () => { }); describe('Rocket.Chat language', () => { - before(async() => { + before(async () => { await device.launchApp(defaultLaunchArgs); await navigateToLogin(); await login(testuser.username, testuser.password); }); - it('should select \'en\'', async() => { + it("should select 'en'", async () => { await navToLanguage(); await element(by.id('language-view-en')).tap(); - await waitFor(element(by.id('rooms-list-view'))).toBeVisible().withTimeout(10000); + await waitFor(element(by.id('rooms-list-view'))) + .toBeVisible() + .withTimeout(10000); await element(by.id('rooms-list-view-sidebar')).tap(); - await waitFor(element(by.id('sidebar-view'))).toBeVisible().withTimeout(2000); + await waitFor(element(by.id('sidebar-view'))) + .toBeVisible() + .withTimeout(2000); await expect(element(by.id('sidebar-chats').withDescendant(by.label('Chats')))).toBeVisible(); await expect(element(by.id('sidebar-profile').withDescendant(by.label('Profile')))).toBeVisible(); await expect(element(by.id('sidebar-settings').withDescendant(by.label('Settings')))).toBeVisible(); await element(by.id('sidebar-close-drawer')).tap(); }); - it('should select \'nl\' and fallback to \'en\'', async() => { + it("should select 'nl' and fallback to 'en'", async () => { await navToLanguage(); await element(by.id('language-view-nl')).tap(); - await waitFor(element(by.id('rooms-list-view'))).toBeVisible().withTimeout(10000); + await waitFor(element(by.id('rooms-list-view'))) + .toBeVisible() + .withTimeout(10000); await element(by.id('rooms-list-view-sidebar')).tap(); - await waitFor(element(by.id('sidebar-view'))).toBeVisible().withTimeout(2000); + await waitFor(element(by.id('sidebar-view'))) + .toBeVisible() + .withTimeout(2000); await expect(element(by.id('sidebar-chats').withDescendant(by.label('Chats')))).toBeVisible(); // fallback to en await expect(element(by.id('sidebar-profile').withDescendant(by.label('Profiel')))).toBeVisible(); await expect(element(by.id('sidebar-settings').withDescendant(by.label('Instellingen')))).toBeVisible(); await element(by.id('sidebar-close-drawer')).tap(); }); - it('should set unsupported language and fallback to \'en\'', async() => { + it("should set unsupported language and fallback to 'en'", async () => { await post('users.setPreferences', { data: { language: 'eo' } }); // Set language to Esperanto await device.launchApp(defaultLaunchArgs); - await waitFor(element(by.id('rooms-list-view'))).toBeVisible().withTimeout(10000); + await waitFor(element(by.id('rooms-list-view'))) + .toBeVisible() + .withTimeout(10000); await element(by.id('rooms-list-view-sidebar')).tap(); - await waitFor(element(by.id('sidebar-view'))).toBeVisible().withTimeout(2000); + await waitFor(element(by.id('sidebar-view'))) + .toBeVisible() + .withTimeout(2000); // give the app some time to apply new language await sleep(3000); await expect(element(by.id('sidebar-chats').withDescendant(by.label('Chats')))).toBeVisible(); diff --git a/e2e/tests/init.js b/e2e/tests/init.js index 52d78b68a3..5bb81a8be6 100644 --- a/e2e/tests/init.js +++ b/e2e/tests/init.js @@ -4,21 +4,21 @@ const adapter = require('detox/runners/mocha/adapter'); const config = require('../../package.json').detox; const { setup } = require('../helpers/data_setup'); -before(async() => { +before(async () => { await Promise.all([setup(), detox.init(config, { launchApp: false })]); // await dataSetup() // await detox.init(config, { launchApp: false }); // await device.launchApp({ permissions: { notifications: 'YES' } }); }); -beforeEach(async function() { +beforeEach(async function () { await adapter.beforeEach(this); }); -afterEach(async function() { +afterEach(async function () { await adapter.afterEach(this); }); -after(async() => { +after(async () => { await detox.cleanup(); }); diff --git a/e2e/tests/onboarding/01-onboarding.spec.js b/e2e/tests/onboarding/01-onboarding.spec.js index a8cad89917..d9544153e8 100644 --- a/e2e/tests/onboarding/01-onboarding.spec.js +++ b/e2e/tests/onboarding/01-onboarding.spec.js @@ -1,21 +1,23 @@ const data = require('../../data'); describe('Onboarding', () => { - before(async() => { + before(async () => { await device.launchApp({ permissions: { notifications: 'YES' }, delete: true }); - await waitFor(element(by.id('onboarding-view'))).toBeVisible().withTimeout(20000); + await waitFor(element(by.id('onboarding-view'))) + .toBeVisible() + .withTimeout(20000); }); describe('Render', () => { - it('should have onboarding screen', async() => { + it('should have onboarding screen', async () => { await expect(element(by.id('onboarding-view'))).toBeVisible(); }); - it('should have "Join a workspace"', async() => { + it('should have "Join a workspace"', async () => { await expect(element(by.id('join-workspace'))).toBeVisible(); }); - it('should have "Create a new workspace"', async() => { + it('should have "Create a new workspace"', async () => { await expect(element(by.id('create-workspace-button'))).toBeVisible(); }); }); @@ -25,30 +27,42 @@ describe('Onboarding', () => { // // webviews are not supported by detox: https://github.com/wix/detox/issues/136#issuecomment-306591554 // }); - it('should navigate to join a workspace', async() => { + it('should navigate to join a workspace', async () => { await element(by.id('join-workspace')).tap(); - await waitFor(element(by.id('new-server-view'))).toBeVisible().withTimeout(60000); + await waitFor(element(by.id('new-server-view'))) + .toBeVisible() + .withTimeout(60000); }); - it('should enter an invalid server and get error', async() => { + it('should enter an invalid server and get error', async () => { await element(by.id('new-server-view-input')).typeText('invalidtest\n'); const errorText = 'Oops!'; - await waitFor(element(by.text(errorText))).toBeVisible().withTimeout(60000); + await waitFor(element(by.text(errorText))) + .toBeVisible() + .withTimeout(60000); await element(by.text('OK')).tap(); }); - it('should tap on "Join our open workspace" and navigate', async() => { + it('should tap on "Join our open workspace" and navigate', async () => { await element(by.id('new-server-view-open')).tap(); - await waitFor(element(by.id('workspace-view'))).toBeVisible().withTimeout(60000); + await waitFor(element(by.id('workspace-view'))) + .toBeVisible() + .withTimeout(60000); }); - it('should enter a valid server without login services and navigate to login', async() => { + it('should enter a valid server without login services and navigate to login', async () => { await device.launchApp({ newInstance: true }); - await waitFor(element(by.id('onboarding-view'))).toBeVisible().withTimeout(2000); + await waitFor(element(by.id('onboarding-view'))) + .toBeVisible() + .withTimeout(2000); await element(by.id('join-workspace')).tap(); - await waitFor(element(by.id('new-server-view'))).toBeVisible().withTimeout(60000); - await element(by.id('new-server-view-input')).typeText(`${ data.server }\n`); - await waitFor(element(by.id('workspace-view'))).toBeVisible().withTimeout(60000); + await waitFor(element(by.id('new-server-view'))) + .toBeVisible() + .withTimeout(60000); + await element(by.id('new-server-view-input')).typeText(`${data.server}\n`); + await waitFor(element(by.id('workspace-view'))) + .toBeVisible() + .withTimeout(60000); }); }); }); diff --git a/e2e/tests/onboarding/02-legal.spec.js b/e2e/tests/onboarding/02-legal.spec.js index 4ac96d985d..c457444280 100644 --- a/e2e/tests/onboarding/02-legal.spec.js +++ b/e2e/tests/onboarding/02-legal.spec.js @@ -2,43 +2,51 @@ const { navigateToRegister, navigateToLogin } = require('../../helpers/app'); describe('Legal screen', () => { describe('From Login', () => { - before(async() => { + before(async () => { await device.launchApp({ permissions: { notifications: 'YES' }, delete: true }); await navigateToLogin(); }); - it('should have legal button on login', async() => { - await waitFor(element(by.id('login-view-more'))).toBeVisible().withTimeout(60000); + it('should have legal button on login', async () => { + await waitFor(element(by.id('login-view-more'))) + .toBeVisible() + .withTimeout(60000); }); - it('should navigate to legal from login', async() => { + it('should navigate to legal from login', async () => { await expect(element(by.id('login-view-more'))).toBeVisible(); await element(by.id('login-view-more')).tap(); - await waitFor(element(by.id('legal-view'))).toBeVisible().withTimeout(4000); + await waitFor(element(by.id('legal-view'))) + .toBeVisible() + .withTimeout(4000); }); }); describe('From Register', () => { - before(async() => { + before(async () => { await device.launchApp({ permissions: { notifications: 'YES' }, delete: true }); await navigateToRegister(); }); - it('should have legal button on register', async() => { - await waitFor(element(by.id('register-view-more'))).toBeVisible().withTimeout(60000); + it('should have legal button on register', async () => { + await waitFor(element(by.id('register-view-more'))) + .toBeVisible() + .withTimeout(60000); }); - it('should navigate to legal from register', async() => { + it('should navigate to legal from register', async () => { await expect(element(by.id('register-view-more'))).toBeVisible(); await element(by.id('register-view-more')).tap(); - await waitFor(element(by.id('legal-view'))).toBeVisible().withTimeout(4000); + await waitFor(element(by.id('legal-view'))) + .toBeVisible() + .withTimeout(4000); }); - it('should have terms of service button', async() => { + it('should have terms of service button', async () => { await expect(element(by.id('legal-terms-button'))).toBeVisible(); }); - it('should have privacy policy button', async() => { + it('should have privacy policy button', async () => { await expect(element(by.id('legal-privacy-button'))).toBeVisible(); }); diff --git a/e2e/tests/onboarding/03-forgotpassword.spec.js b/e2e/tests/onboarding/03-forgotpassword.spec.js index d53690d6fb..691576ba9b 100644 --- a/e2e/tests/onboarding/03-forgotpassword.spec.js +++ b/e2e/tests/onboarding/03-forgotpassword.spec.js @@ -2,34 +2,40 @@ const data = require('../../data'); const { navigateToLogin } = require('../../helpers/app'); describe('Forgot password screen', () => { - before(async() => { + before(async () => { await device.launchApp({ permissions: { notifications: 'YES' }, delete: true }); await navigateToLogin(); await element(by.id('login-view-forgot-password')).tap(); - await waitFor(element(by.id('forgot-password-view'))).toExist().withTimeout(2000); + await waitFor(element(by.id('forgot-password-view'))) + .toExist() + .withTimeout(2000); }); describe('Render', () => { - it('should have forgot password screen', async() => { + it('should have forgot password screen', async () => { await expect(element(by.id('forgot-password-view'))).toExist(); }); - it('should have email input', async() => { + it('should have email input', async () => { await expect(element(by.id('forgot-password-view-email'))).toBeVisible(); }); - it('should have submit button', async() => { + it('should have submit button', async () => { await expect(element(by.id('forgot-password-view-submit'))).toBeVisible(); }); }); describe('Usage', () => { - it('should reset password and navigate to login', async() => { + it('should reset password and navigate to login', async () => { await element(by.id('forgot-password-view-email')).replaceText(data.users.existing.email); await element(by.id('forgot-password-view-submit')).tap(); - await waitFor(element(by.text('OK'))).toExist().withTimeout(10000); + await waitFor(element(by.text('OK'))) + .toExist() + .withTimeout(10000); await element(by.text('OK')).tap(); - await waitFor(element(by.id('login-view'))).toBeVisible().withTimeout(60000); + await waitFor(element(by.id('login-view'))) + .toBeVisible() + .withTimeout(60000); }); }); }); diff --git a/e2e/tests/onboarding/04-createuser.spec.js b/e2e/tests/onboarding/04-createuser.spec.js index e88e9eab3e..92e992ad36 100644 --- a/e2e/tests/onboarding/04-createuser.spec.js +++ b/e2e/tests/onboarding/04-createuser.spec.js @@ -2,33 +2,33 @@ const { navigateToRegister } = require('../../helpers/app'); const data = require('../../data'); describe('Create user screen', () => { - before(async() => { + before(async () => { await device.launchApp({ permissions: { notifications: 'YES' }, delete: true }); await navigateToRegister(); }); describe('Render', () => { - it('should have create user screen', async() => { + it('should have create user screen', async () => { await expect(element(by.id('register-view'))).toBeVisible(); }); - it('should have name input', async() => { + it('should have name input', async () => { await expect(element(by.id('register-view-name'))).toBeVisible(); }); - it('should have email input', async() => { + it('should have email input', async () => { await expect(element(by.id('register-view-email'))).toBeVisible(); }); - it('should have password input', async() => { + it('should have password input', async () => { await expect(element(by.id('register-view-password'))).toBeVisible(); }); - it('should have submit button', async() => { + it('should have submit button', async () => { await expect(element(by.id('register-view-submit'))).toBeVisible(); }); - it('should have legal button', async() => { + it('should have legal button', async () => { await expect(element(by.id('register-view-more'))).toBeVisible(); }); }); @@ -44,33 +44,39 @@ describe('Create user screen', () => { // await element(by.id('register-view-submit')).tap(); // }); - it('should submit email already taken and raise error', async() => { + it('should submit email already taken and raise error', async () => { await element(by.id('register-view-name')).replaceText(data.registeringUser.username); await element(by.id('register-view-username')).replaceText(data.registeringUser.username); await element(by.id('register-view-email')).replaceText(data.users.existing.email); await element(by.id('register-view-password')).replaceText(data.registeringUser.password); await element(by.id('register-view-submit')).tap(); - await waitFor(element(by.text('Email already exists. [403]')).atIndex(0)).toExist().withTimeout(10000); + await waitFor(element(by.text('Email already exists. [403]')).atIndex(0)) + .toExist() + .withTimeout(10000); await element(by.text('OK')).tap(); }); - it('should submit username already taken and raise error', async() => { + it('should submit username already taken and raise error', async () => { await element(by.id('register-view-name')).replaceText(data.registeringUser.username); await element(by.id('register-view-username')).replaceText(data.users.existing.username); await element(by.id('register-view-email')).replaceText(data.registeringUser.email); await element(by.id('register-view-password')).replaceText(data.registeringUser.password); await element(by.id('register-view-submit')).tap(); - await waitFor(element(by.text('Username is already in use')).atIndex(0)).toExist().withTimeout(10000); + await waitFor(element(by.text('Username is already in use')).atIndex(0)) + .toExist() + .withTimeout(10000); await element(by.text('OK')).tap(); }); - it('should register', async() => { + it('should register', async () => { await element(by.id('register-view-name')).replaceText(data.registeringUser.username); await element(by.id('register-view-username')).replaceText(data.registeringUser.username); await element(by.id('register-view-email')).replaceText(data.registeringUser.email); await element(by.id('register-view-password')).replaceText(data.registeringUser.password); await element(by.id('register-view-submit')).tap(); - await waitFor(element(by.id('rooms-list-view'))).toBeVisible().withTimeout(60000); + await waitFor(element(by.id('rooms-list-view'))) + .toBeVisible() + .withTimeout(60000); }); }); }); diff --git a/e2e/tests/onboarding/05-login.spec.js b/e2e/tests/onboarding/05-login.spec.js index 91cb917377..627261c173 100644 --- a/e2e/tests/onboarding/05-login.spec.js +++ b/e2e/tests/onboarding/05-login.spec.js @@ -2,66 +2,74 @@ const { navigateToLogin, tapBack } = require('../../helpers/app'); const data = require('../../data'); describe('Login screen', () => { - before(async() => { + before(async () => { await device.launchApp({ permissions: { notifications: 'YES' }, newInstance: true, delete: true }); await navigateToLogin(); }); describe('Render', () => { - it('should have login screen', async() => { + it('should have login screen', async () => { await expect(element(by.id('login-view'))).toBeVisible(); }); - it('should have email input', async() => { + it('should have email input', async () => { await expect(element(by.id('login-view-email'))).toBeVisible(); }); - it('should have password input', async() => { + it('should have password input', async () => { await expect(element(by.id('login-view-password'))).toBeVisible(); }); - it('should have submit button', async() => { + it('should have submit button', async () => { await expect(element(by.id('login-view-submit'))).toBeVisible(); }); - it('should have register button', async() => { + it('should have register button', async () => { await expect(element(by.id('login-view-register'))).toBeVisible(); }); - it('should have forgot password button', async() => { + it('should have forgot password button', async () => { await expect(element(by.id('login-view-forgot-password'))).toBeVisible(); }); - it('should have legal button', async() => { + it('should have legal button', async () => { await expect(element(by.id('login-view-more'))).toBeVisible(); }); }); describe('Usage', () => { - it('should navigate to register', async() => { + it('should navigate to register', async () => { await element(by.id('login-view-register')).tap(); - await waitFor(element(by.id('register-view'))).toBeVisible().withTimeout(2000); + await waitFor(element(by.id('register-view'))) + .toBeVisible() + .withTimeout(2000); await tapBack(); }); - it('should navigate to forgot password', async() => { + it('should navigate to forgot password', async () => { await element(by.id('login-view-forgot-password')).tap(); - await waitFor(element(by.id('forgot-password-view'))).toExist().withTimeout(2000); + await waitFor(element(by.id('forgot-password-view'))) + .toExist() + .withTimeout(2000); await tapBack(); }); - it('should insert wrong password and get error', async() => { + it('should insert wrong password and get error', async () => { await element(by.id('login-view-email')).replaceText(data.users.regular.username); await element(by.id('login-view-password')).replaceText('NotMyActualPassword'); await element(by.id('login-view-submit')).tap(); - await waitFor(element(by.text('Your credentials were rejected! Please try again.'))).toBeVisible().withTimeout(10000); + await waitFor(element(by.text('Your credentials were rejected! Please try again.'))) + .toBeVisible() + .withTimeout(10000); await element(by.text('OK')).tap(); }); - it('should login with success', async() => { + it('should login with success', async () => { await element(by.id('login-view-password')).replaceText(data.users.regular.password); await element(by.id('login-view-submit')).tap(); - await waitFor(element(by.id('rooms-list-view'))).toBeVisible().withTimeout(60000); + await waitFor(element(by.id('rooms-list-view'))) + .toBeVisible() + .withTimeout(60000); }); }); }); diff --git a/e2e/tests/onboarding/06-roomslist.spec.js b/e2e/tests/onboarding/06-roomslist.spec.js index 03e595edfb..6cb2d71f8d 100644 --- a/e2e/tests/onboarding/06-roomslist.spec.js +++ b/e2e/tests/onboarding/06-roomslist.spec.js @@ -1,48 +1,54 @@ -const { - login, navigateToLogin, logout, tapBack, searchRoom -} = require('../../helpers/app'); +const { login, navigateToLogin, logout, tapBack, searchRoom } = require('../../helpers/app'); const data = require('../../data'); describe('Rooms list screen', () => { - before(async() => { + before(async () => { await device.launchApp({ permissions: { notifications: 'YES' }, newInstance: true, delete: true }); await navigateToLogin(); await login(data.users.regular.username, data.users.regular.password); }); describe('Render', () => { - it('should have rooms list screen', async() => { + it('should have rooms list screen', async () => { await expect(element(by.id('rooms-list-view'))).toBeVisible(); }); - it('should have room item', async() => { + it('should have room item', async () => { await expect(element(by.id('rooms-list-view-item-general'))).toExist(); }); // Render - Header describe('Header', () => { - it('should have create channel button', async() => { + it('should have create channel button', async () => { await expect(element(by.id('rooms-list-view-create-channel'))).toBeVisible(); }); - it('should have sidebar button', async() => { + it('should have sidebar button', async () => { await expect(element(by.id('rooms-list-view-sidebar'))).toBeVisible(); }); }); }); describe('Usage', () => { - it('should search room and navigate', async() => { + it('should search room and navigate', async () => { await searchRoom('rocket.cat'); await element(by.id('rooms-list-view-item-rocket.cat')).tap(); - await waitFor(element(by.id('room-view'))).toBeVisible().withTimeout(10000); - await waitFor(element(by.id('room-view-title-rocket.cat'))).toBeVisible().withTimeout(60000); + await waitFor(element(by.id('room-view'))) + .toBeVisible() + .withTimeout(10000); + await waitFor(element(by.id('room-view-title-rocket.cat'))) + .toBeVisible() + .withTimeout(60000); await tapBack(); - await waitFor(element(by.id('rooms-list-view'))).toBeVisible().withTimeout(2000); - await waitFor(element(by.id('rooms-list-view-item-rocket.cat'))).toExist().withTimeout(60000); + await waitFor(element(by.id('rooms-list-view'))) + .toBeVisible() + .withTimeout(2000); + await waitFor(element(by.id('rooms-list-view-item-rocket.cat'))) + .toExist() + .withTimeout(60000); }); - it('should logout', async() => { + it('should logout', async () => { await logout(); }); }); diff --git a/e2e/tests/onboarding/07-server-history.spec.js b/e2e/tests/onboarding/07-server-history.spec.js index b984b9c8b6..edfb12184e 100644 --- a/e2e/tests/onboarding/07-server-history.spec.js +++ b/e2e/tests/onboarding/07-server-history.spec.js @@ -1,43 +1,55 @@ -const { - login, navigateToLogin, logout, tapBack -} = require('../../helpers/app'); +const { login, navigateToLogin, logout, tapBack } = require('../../helpers/app'); const data = require('../../data'); describe('Server history', () => { - before(async() => { + before(async () => { await device.launchApp({ permissions: { notifications: 'YES' }, delete: true }); }); describe('Usage', () => { - it('should login, save server as history and logout', async() => { + it('should login, save server as history and logout', async () => { await navigateToLogin(); await login(data.users.regular.username, data.users.regular.password); await logout(); await element(by.id('join-workspace')).tap(); - await waitFor(element(by.id('new-server-view'))).toBeVisible().withTimeout(60000); + await waitFor(element(by.id('new-server-view'))) + .toBeVisible() + .withTimeout(60000); }); - it('should show servers history', async() => { + it('should show servers history', async () => { await element(by.id('new-server-view-input')).tap(); - await waitFor(element(by.id(`server-history-${ data.server }`))).toBeVisible().withTimeout(2000); + await waitFor(element(by.id(`server-history-${data.server}`))) + .toBeVisible() + .withTimeout(2000); }); - it('should tap on a server history and navigate to login', async() => { - await element(by.id(`server-history-${ data.server }`)).tap(); - await waitFor(element(by.id('login-view'))).toBeVisible().withTimeout(5000); + it('should tap on a server history and navigate to login', async () => { + await element(by.id(`server-history-${data.server}`)).tap(); + await waitFor(element(by.id('login-view'))) + .toBeVisible() + .withTimeout(5000); await expect(element(by.id('login-view-email'))).toHaveText(data.users.regular.username); }); - it('should delete server from history', async() => { + it('should delete server from history', async () => { await tapBack(); - await waitFor(element(by.id('workspace-view'))).toBeVisible().withTimeout(2000); + await waitFor(element(by.id('workspace-view'))) + .toBeVisible() + .withTimeout(2000); await tapBack(); - await waitFor(element(by.id('new-server-view'))).toBeVisible().withTimeout(2000); + await waitFor(element(by.id('new-server-view'))) + .toBeVisible() + .withTimeout(2000); await element(by.id('new-server-view-input')).tap(); - await waitFor(element(by.id(`server-history-${ data.server }`))).toBeVisible().withTimeout(2000); - await element(by.id(`server-history-delete-${ data.server }`)).tap(); + await waitFor(element(by.id(`server-history-${data.server}`))) + .toBeVisible() + .withTimeout(2000); + await element(by.id(`server-history-delete-${data.server}`)).tap(); await element(by.id('new-server-view-input')).tap(); - await waitFor(element(by.id(`server-history-${ data.server }`))).toBeNotVisible().withTimeout(2000); + await waitFor(element(by.id(`server-history-${data.server}`))) + .toBeNotVisible() + .withTimeout(2000); }); }); }); diff --git a/e2e/tests/room/01-createroom.spec.js b/e2e/tests/room/01-createroom.spec.js index bc67b2c3ee..a679c3a90b 100644 --- a/e2e/tests/room/01-createroom.spec.js +++ b/e2e/tests/room/01-createroom.spec.js @@ -1,87 +1,117 @@ const data = require('../../data'); -const { - tapBack, navigateToLogin, login, tryTapping -} = require('../../helpers/app'); +const { tapBack, navigateToLogin, login, tryTapping } = require('../../helpers/app'); describe('Create room screen', () => { - before(async() => { + before(async () => { await device.launchApp({ permissions: { notifications: 'YES' }, delete: true }); await navigateToLogin(); await login(data.users.regular.username, data.users.regular.password); }); describe('New Message', () => { - before(async() => { + before(async () => { await element(by.id('rooms-list-view-create-channel')).tap(); }); describe('Render', () => { - it('should have new message screen', async() => { - await waitFor(element(by.id('new-message-view'))).toBeVisible().withTimeout(2000); + it('should have new message screen', async () => { + await waitFor(element(by.id('new-message-view'))) + .toBeVisible() + .withTimeout(2000); }); - it('should have search input', async() => { - await waitFor(element(by.id('new-message-view-search'))).toBeVisible().withTimeout(2000); + it('should have search input', async () => { + await waitFor(element(by.id('new-message-view-search'))) + .toBeVisible() + .withTimeout(2000); }); }); describe('Usage', () => { - it('should back to rooms list', async() => { - await waitFor(element(by.id('new-message-view-close'))).toBeVisible().withTimeout(5000); + it('should back to rooms list', async () => { + await waitFor(element(by.id('new-message-view-close'))) + .toBeVisible() + .withTimeout(5000); await element(by.id('new-message-view-close')).tap(); - await waitFor(element(by.id('rooms-list-view'))).toBeVisible().withTimeout(5000); + await waitFor(element(by.id('rooms-list-view'))) + .toBeVisible() + .withTimeout(5000); await tryTapping(element(by.id('rooms-list-view-create-channel')), 3000); // await element(by.id('rooms-list-view-create-channel')).tap(); - await waitFor(element(by.id('new-message-view'))).toExist().withTimeout(5000); + await waitFor(element(by.id('new-message-view'))) + .toExist() + .withTimeout(5000); }); - it('should search user and navigate', async() => { + it('should search user and navigate', async () => { await element(by.id('new-message-view-search')).replaceText('rocket.cat'); - await waitFor(element(by.id('new-message-view-item-rocket.cat'))).toExist().withTimeout(60000); + await waitFor(element(by.id('new-message-view-item-rocket.cat'))) + .toExist() + .withTimeout(60000); await element(by.id('new-message-view-item-rocket.cat')).tap(); - await waitFor(element(by.id('room-view'))).toExist().withTimeout(10000); - await waitFor(element(by.id('room-view-title-rocket.cat'))).toExist().withTimeout(60000); + await waitFor(element(by.id('room-view'))) + .toExist() + .withTimeout(10000); + await waitFor(element(by.id('room-view-title-rocket.cat'))) + .toExist() + .withTimeout(60000); await tapBack(); - await waitFor(element(by.id('rooms-list-view'))).toExist().withTimeout(5000); + await waitFor(element(by.id('rooms-list-view'))) + .toExist() + .withTimeout(5000); }); - it('should navigate to select users', async() => { + it('should navigate to select users', async () => { await element(by.id('rooms-list-view-create-channel')).tap(); - await waitFor(element(by.id('new-message-view'))).toExist().withTimeout(5000); + await waitFor(element(by.id('new-message-view'))) + .toExist() + .withTimeout(5000); await element(by.id('new-message-view-create-channel')).tap(); - await waitFor(element(by.id('select-users-view'))).toExist().withTimeout(5000); + await waitFor(element(by.id('select-users-view'))) + .toExist() + .withTimeout(5000); }); }); }); describe('Select Users', () => { - it('should search users', async() => { + it('should search users', async () => { await element(by.id('select-users-view-search')).replaceText('rocket.cat'); - await waitFor(element(by.id('select-users-view-item-rocket.cat'))).toBeVisible().withTimeout(10000); + await waitFor(element(by.id('select-users-view-item-rocket.cat'))) + .toBeVisible() + .withTimeout(10000); }); - it('should select/unselect user', async() => { + it('should select/unselect user', async () => { // Spotlight issues await element(by.id('select-users-view-item-rocket.cat')).tap(); - await waitFor(element(by.id('selected-user-rocket.cat'))).toBeVisible().withTimeout(10000); + await waitFor(element(by.id('selected-user-rocket.cat'))) + .toBeVisible() + .withTimeout(10000); await element(by.id('selected-user-rocket.cat')).tap(); - await waitFor(element(by.id('selected-user-rocket.cat'))).toBeNotVisible().withTimeout(10000); + await waitFor(element(by.id('selected-user-rocket.cat'))) + .toBeNotVisible() + .withTimeout(10000); // Spotlight issues await element(by.id('select-users-view-item-rocket.cat')).tap(); - await waitFor(element(by.id('selected-user-rocket.cat'))).toBeVisible().withTimeout(10000); + await waitFor(element(by.id('selected-user-rocket.cat'))) + .toBeVisible() + .withTimeout(10000); }); - it('should navigate to create channel view', async() => { + it('should navigate to create channel view', async () => { await element(by.id('selected-users-view-submit')).tap(); - await waitFor(element(by.id('create-channel-view'))).toExist().withTimeout(10000); + await waitFor(element(by.id('create-channel-view'))) + .toExist() + .withTimeout(10000); }); }); describe('Create Channel', () => { describe('Render', () => { - it('should render all fields', async() => { + it('should render all fields', async () => { await expect(element(by.id('create-channel-name'))).toBeVisible(); await expect(element(by.id('create-channel-type'))).toBeVisible(); await expect(element(by.id('create-channel-readonly'))).toBeVisible(); @@ -90,73 +120,117 @@ describe('Create room screen', () => { }); describe('Usage', () => { - it('should get invalid room', async() => { + it('should get invalid room', async () => { await element(by.id('create-channel-name')).typeText('general'); await element(by.id('create-channel-submit')).tap(); - await waitFor(element(by.text('A channel with name general exists'))).toExist().withTimeout(60000); + await waitFor(element(by.text('A channel with name general exists'))) + .toExist() + .withTimeout(60000); await expect(element(by.text('A channel with name general exists'))).toExist(); await element(by.text('OK')).tap(); }); - it('should create public room', async() => { - const room = `public${ data.random }`; + it('should create public room', async () => { + const room = `public${data.random}`; await element(by.id('create-channel-name')).replaceText(''); await element(by.id('create-channel-name')).typeText(room); await element(by.id('create-channel-type')).tap(); await element(by.id('create-channel-submit')).tap(); - await waitFor(element(by.id('room-view'))).toExist().withTimeout(6000); + await waitFor(element(by.id('room-view'))) + .toExist() + .withTimeout(6000); await expect(element(by.id('room-view'))).toExist(); - await waitFor(element(by.id(`room-view-title-${ room }`))).toExist().withTimeout(6000); - await expect(element(by.id(`room-view-title-${ room }`))).toExist(); + await waitFor(element(by.id(`room-view-title-${room}`))) + .toExist() + .withTimeout(6000); + await expect(element(by.id(`room-view-title-${room}`))).toExist(); await tapBack(); - await waitFor(element(by.id('rooms-list-view'))).toExist().withTimeout(10000); - await waitFor(element(by.id(`rooms-list-view-item-${ room }`))).toExist().withTimeout(6000); - await expect(element(by.id(`rooms-list-view-item-${ room }`))).toExist(); + await waitFor(element(by.id('rooms-list-view'))) + .toExist() + .withTimeout(10000); + await waitFor(element(by.id(`rooms-list-view-item-${room}`))) + .toExist() + .withTimeout(6000); + await expect(element(by.id(`rooms-list-view-item-${room}`))).toExist(); }); - it('should create private room', async() => { - const room = `private${ data.random }`; - await waitFor(element(by.id('rooms-list-view'))).toExist().withTimeout(5000); + it('should create private room', async () => { + const room = `private${data.random}`; + await waitFor(element(by.id('rooms-list-view'))) + .toExist() + .withTimeout(5000); await element(by.id('rooms-list-view-create-channel')).tap(); - await waitFor(element(by.id('new-message-view'))).toExist().withTimeout(5000); + await waitFor(element(by.id('new-message-view'))) + .toExist() + .withTimeout(5000); await element(by.id('new-message-view-create-channel')).tap(); - await waitFor(element(by.id('select-users-view'))).toExist().withTimeout(5000); + await waitFor(element(by.id('select-users-view'))) + .toExist() + .withTimeout(5000); await element(by.id('select-users-view-item-rocket.cat')).tap(); - await waitFor(element(by.id('selected-user-rocket.cat'))).toExist().withTimeout(5000); + await waitFor(element(by.id('selected-user-rocket.cat'))) + .toExist() + .withTimeout(5000); await element(by.id('selected-users-view-submit')).tap(); - await waitFor(element(by.id('create-channel-view'))).toExist().withTimeout(5000); + await waitFor(element(by.id('create-channel-view'))) + .toExist() + .withTimeout(5000); await element(by.id('create-channel-name')).typeText(room); await element(by.id('create-channel-submit')).tap(); - await waitFor(element(by.id('room-view'))).toExist().withTimeout(60000); + await waitFor(element(by.id('room-view'))) + .toExist() + .withTimeout(60000); await expect(element(by.id('room-view'))).toExist(); - await waitFor(element(by.id(`room-view-title-${ room }`))).toExist().withTimeout(60000); - await expect(element(by.id(`room-view-title-${ room }`))).toExist(); + await waitFor(element(by.id(`room-view-title-${room}`))) + .toExist() + .withTimeout(60000); + await expect(element(by.id(`room-view-title-${room}`))).toExist(); await tapBack(); - await waitFor(element(by.id('rooms-list-view'))).toExist().withTimeout(5000); - await waitFor(element(by.id(`rooms-list-view-item-${ room }`))).toExist().withTimeout(60000); - await expect(element(by.id(`rooms-list-view-item-${ room }`))).toExist(); + await waitFor(element(by.id('rooms-list-view'))) + .toExist() + .withTimeout(5000); + await waitFor(element(by.id(`rooms-list-view-item-${room}`))) + .toExist() + .withTimeout(60000); + await expect(element(by.id(`rooms-list-view-item-${room}`))).toExist(); }); - it('should create empty room', async() => { - const room = `empty${ data.random }`; - await waitFor(element(by.id('rooms-list-view'))).toExist().withTimeout(10000); + it('should create empty room', async () => { + const room = `empty${data.random}`; + await waitFor(element(by.id('rooms-list-view'))) + .toExist() + .withTimeout(10000); // await device.launchApp({ newInstance: true }); await element(by.id('rooms-list-view-create-channel')).tap(); - await waitFor(element(by.id('new-message-view'))).toExist().withTimeout(5000); + await waitFor(element(by.id('new-message-view'))) + .toExist() + .withTimeout(5000); await element(by.id('new-message-view-create-channel')).tap(); - await waitFor(element(by.id('select-users-view'))).toExist().withTimeout(5000); + await waitFor(element(by.id('select-users-view'))) + .toExist() + .withTimeout(5000); await element(by.id('selected-users-view-submit')).tap(); - await waitFor(element(by.id('create-channel-view'))).toExist().withTimeout(10000); + await waitFor(element(by.id('create-channel-view'))) + .toExist() + .withTimeout(10000); await element(by.id('create-channel-name')).typeText(room); await element(by.id('create-channel-submit')).tap(); - await waitFor(element(by.id('room-view'))).toExist().withTimeout(60000); + await waitFor(element(by.id('room-view'))) + .toExist() + .withTimeout(60000); await expect(element(by.id('room-view'))).toExist(); - await waitFor(element(by.id(`room-view-title-${ room }`))).toExist().withTimeout(60000); - await expect(element(by.id(`room-view-title-${ room }`))).toExist(); + await waitFor(element(by.id(`room-view-title-${room}`))) + .toExist() + .withTimeout(60000); + await expect(element(by.id(`room-view-title-${room}`))).toExist(); await tapBack(); - await waitFor(element(by.id('rooms-list-view'))).toExist().withTimeout(2000); - await waitFor(element(by.id(`rooms-list-view-item-${ room }`))).toExist().withTimeout(60000); - await expect(element(by.id(`rooms-list-view-item-${ room }`))).toExist(); + await waitFor(element(by.id('rooms-list-view'))) + .toExist() + .withTimeout(2000); + await waitFor(element(by.id(`rooms-list-view-item-${room}`))) + .toExist() + .withTimeout(60000); + await expect(element(by.id(`rooms-list-view-item-${room}`))).toExist(); }); }); }); diff --git a/e2e/tests/room/02-room.spec.js b/e2e/tests/room/02-room.spec.js index 4e1711e648..9aa62c6d49 100644 --- a/e2e/tests/room/02-room.spec.js +++ b/e2e/tests/room/02-room.spec.js @@ -1,18 +1,29 @@ const data = require('../../data'); const { - navigateToLogin, login, mockMessage, tapBack, sleep, searchRoom, starMessage, pinMessage, dismissReviewNag, tryTapping + navigateToLogin, + login, + mockMessage, + tapBack, + sleep, + searchRoom, + starMessage, + pinMessage, + dismissReviewNag, + tryTapping } = require('../../helpers/app'); async function navigateToRoom(roomName) { - await searchRoom(`${ roomName }`); - await element(by.id(`rooms-list-view-item-${ roomName }`)).tap(); - await waitFor(element(by.id('room-view'))).toBeVisible().withTimeout(5000); + await searchRoom(`${roomName}`); + await element(by.id(`rooms-list-view-item-${roomName}`)).tap(); + await waitFor(element(by.id('room-view'))) + .toBeVisible() + .withTimeout(5000); } describe('Room screen', () => { const mainRoom = data.groups.private.name; - before(async() => { + before(async () => { await device.launchApp({ permissions: { notifications: 'YES' }, delete: true }); await navigateToLogin(); await login(data.users.regular.username, data.users.regular.password); @@ -20,43 +31,45 @@ describe('Room screen', () => { }); describe('Render', () => { - it('should have room screen', async() => { + it('should have room screen', async () => { await expect(element(by.id('room-view'))).toExist(); - await waitFor(element(by.id(`room-view-title-${ mainRoom }`))).toExist().withTimeout(5000); + await waitFor(element(by.id(`room-view-title-${mainRoom}`))) + .toExist() + .withTimeout(5000); }); // Render - Header describe('Header', () => { - it('should have actions button ', async() => { + it('should have actions button ', async () => { await expect(element(by.id('room-header'))).toExist(); }); - it('should have threads button ', async() => { + it('should have threads button ', async () => { await expect(element(by.id('room-view-header-threads'))).toExist(); }); }); // Render - Messagebox describe('Messagebox', () => { - it('should have messagebox', async() => { + it('should have messagebox', async () => { await expect(element(by.id('messagebox'))).toExist(); }); - it('should have open emoji button', async() => { + it('should have open emoji button', async () => { if (device.getPlatform() === 'android') { await expect(element(by.id('messagebox-open-emoji'))).toExist(); } }); - it('should have message input', async() => { + it('should have message input', async () => { await expect(element(by.id('messagebox-input'))).toExist(); }); - it('should have audio button', async() => { + it('should have audio button', async () => { await expect(element(by.id('messagebox-send-audio'))).toExist(); }); - it('should have actions button', async() => { + it('should have actions button', async () => { await expect(element(by.id('messagebox-actions'))).toExist(); }); }); @@ -64,95 +77,116 @@ describe('Room screen', () => { describe('Usage', () => { describe('Messagebox', () => { - it('should send message', async() => { + it('should send message', async () => { await mockMessage('message'); - await expect(element(by.label(`${ data.random }message`)).atIndex(0)).toExist(); + await expect(element(by.label(`${data.random}message`)).atIndex(0)).toExist(); }); - - it('should show/hide emoji keyboard', async() => { + it('should show/hide emoji keyboard', async () => { if (device.getPlatform() === 'android') { await element(by.id('messagebox-open-emoji')).tap(); - await waitFor(element(by.id('messagebox-keyboard-emoji'))).toExist().withTimeout(10000); + await waitFor(element(by.id('messagebox-keyboard-emoji'))) + .toExist() + .withTimeout(10000); await expect(element(by.id('messagebox-close-emoji'))).toExist(); await expect(element(by.id('messagebox-open-emoji'))).toBeNotVisible(); await element(by.id('messagebox-close-emoji')).tap(); - await waitFor(element(by.id('messagebox-keyboard-emoji'))).toBeNotVisible().withTimeout(10000); + await waitFor(element(by.id('messagebox-keyboard-emoji'))) + .toBeNotVisible() + .withTimeout(10000); await expect(element(by.id('messagebox-close-emoji'))).toBeNotVisible(); await expect(element(by.id('messagebox-open-emoji'))).toExist(); } }); - it('should show/hide emoji autocomplete', async() => { + it('should show/hide emoji autocomplete', async () => { await element(by.id('messagebox-input')).tap(); await element(by.id('messagebox-input')).typeText(':joy'); - await waitFor(element(by.id('messagebox-container'))).toExist().withTimeout(10000); + await waitFor(element(by.id('messagebox-container'))) + .toExist() + .withTimeout(10000); await element(by.id('messagebox-input')).clearText(); - await waitFor(element(by.id('messagebox-container'))).toBeNotVisible().withTimeout(10000); + await waitFor(element(by.id('messagebox-container'))) + .toBeNotVisible() + .withTimeout(10000); }); - it('should show and tap on emoji autocomplete', async() => { + it('should show and tap on emoji autocomplete', async () => { await element(by.id('messagebox-input')).tap(); await element(by.id('messagebox-input')).replaceText(':'); await element(by.id('messagebox-input')).typeText('joy'); // workaround for number keyboard - await waitFor(element(by.id('messagebox-container'))).toExist().withTimeout(10000); + await waitFor(element(by.id('messagebox-container'))) + .toExist() + .withTimeout(10000); await element(by.id('mention-item-joy')).tap(); await expect(element(by.id('messagebox-input'))).toHaveText(':joy: '); await element(by.id('messagebox-input')).clearText(); }); - it('should not show emoji autocomplete on semicolon in middle of a string', async() => { + it('should not show emoji autocomplete on semicolon in middle of a string', async () => { await element(by.id('messagebox-input')).tap(); // await element(by.id('messagebox-input')).replaceText(':'); await element(by.id('messagebox-input')).typeText('name:is'); - await waitFor(element(by.id('messagebox-container'))).toNotExist().withTimeout(20000); + await waitFor(element(by.id('messagebox-container'))) + .toNotExist() + .withTimeout(20000); await element(by.id('messagebox-input')).clearText(); }); - it('should show and tap on user autocomplete and send mention', async() => { + it('should show and tap on user autocomplete and send mention', async () => { const { username } = data.users.regular; await element(by.id('messagebox-input')).tap(); - await element(by.id('messagebox-input')).typeText(`@${ username }`); - await waitFor(element(by.id('messagebox-container'))).toExist().withTimeout(4000); - await waitFor(element(by.id(`mention-item-${ username }`))).toBeVisible().withTimeout(4000); - await tryTapping(element(by.id(`mention-item-${ username }`)), 2000, true); - await expect(element(by.id('messagebox-input'))).toHaveText(`@${ username } `); + await element(by.id('messagebox-input')).typeText(`@${username}`); + await waitFor(element(by.id('messagebox-container'))) + .toExist() + .withTimeout(4000); + await waitFor(element(by.id(`mention-item-${username}`))) + .toBeVisible() + .withTimeout(4000); + await tryTapping(element(by.id(`mention-item-${username}`)), 2000, true); + await expect(element(by.id('messagebox-input'))).toHaveText(`@${username} `); await tryTapping(element(by.id('messagebox-input')), 2000); - await element(by.id('messagebox-input')).typeText(`${ data.random }mention`); + await element(by.id('messagebox-input')).typeText(`${data.random}mention`); await element(by.id('messagebox-send-message')).tap(); // await waitFor(element(by.label(`@${ data.user } ${ data.random }mention`)).atIndex(0)).toExist().withTimeout(60000); }); - it('should not show user autocomplete on @ in the middle of a string', async() => { + it('should not show user autocomplete on @ in the middle of a string', async () => { await element(by.id('messagebox-input')).tap(); await element(by.id('messagebox-input')).typeText('email@gmail'); - await waitFor(element(by.id('messagebox-container'))).toNotExist().withTimeout(4000); + await waitFor(element(by.id('messagebox-container'))) + .toNotExist() + .withTimeout(4000); await element(by.id('messagebox-input')).clearText(); }); - it('should show and tap on room autocomplete', async() => { + it('should show and tap on room autocomplete', async () => { await element(by.id('messagebox-input')).tap(); await element(by.id('messagebox-input')).typeText('#general'); // await waitFor(element(by.id('messagebox-container'))).toExist().withTimeout(4000); - await waitFor(element(by.id('mention-item-general'))).toBeVisible().withTimeout(4000); + await waitFor(element(by.id('mention-item-general'))) + .toBeVisible() + .withTimeout(4000); await tryTapping(element(by.id('mention-item-general')), 2000, true); await expect(element(by.id('messagebox-input'))).toHaveText('#general '); await element(by.id('messagebox-input')).clearText(); }); - it('should not show room autocomplete on # in middle of a string', async() => { + it('should not show room autocomplete on # in middle of a string', async () => { await element(by.id('messagebox-input')).tap(); await element(by.id('messagebox-input')).typeText('te#gen'); - await waitFor(element(by.id('messagebox-container'))).toNotExist().withTimeout(4000); + await waitFor(element(by.id('messagebox-container'))) + .toNotExist() + .withTimeout(4000); await element(by.id('messagebox-input')).clearText(); }); - it('should draft message', async() => { + it('should draft message', async () => { await element(by.id('messagebox-input')).tap(); - await element(by.id('messagebox-input')).typeText(`${ data.random }draft`); + await element(by.id('messagebox-input')).typeText(`${data.random}draft`); await tapBack(); await navigateToRoom(mainRoom); - await expect(element(by.id('messagebox-input'))).toHaveText(`${ data.random }draft`); + await expect(element(by.id('messagebox-input'))).toHaveText(`${data.random}draft`); await element(by.id('messagebox-input')).clearText(); await tapBack(); @@ -162,8 +196,10 @@ describe('Room screen', () => { }); describe('Message', () => { - it('should copy permalink', async() => { - await element(by.label(`${ data.random }message`)).atIndex(0).longPress(); + it('should copy permalink', async () => { + await element(by.label(`${data.random}message`)) + .atIndex(0) + .longPress(); await expect(element(by.id('action-sheet'))).toExist(); await expect(element(by.id('action-sheet-handle'))).toBeVisible(); await element(by.id('action-sheet-handle')).swipe('up', 'fast', 0.5); @@ -172,8 +208,10 @@ describe('Room screen', () => { // TODO: test clipboard }); - it('should copy message', async() => { - await element(by.label(`${ data.random }message`)).atIndex(0).longPress(); + it('should copy message', async () => { + await element(by.label(`${data.random}message`)) + .atIndex(0) + .longPress(); await expect(element(by.id('action-sheet'))).toExist(); await expect(element(by.id('action-sheet-handle'))).toBeVisible(); await element(by.id('action-sheet-handle')).swipe('up', 'fast', 0.5); @@ -182,115 +220,167 @@ describe('Room screen', () => { // TODO: test clipboard }); - it('should star message', async() => { + it('should star message', async () => { await starMessage('message'); await sleep(1000); // https://github.com/RocketChat/Rocket.Chat.ReactNative/issues/2324 - await element(by.label(`${ data.random }message`)).atIndex(0).longPress(); + await element(by.label(`${data.random}message`)) + .atIndex(0) + .longPress(); await expect(element(by.id('action-sheet'))).toExist(); await expect(element(by.id('action-sheet-handle'))).toBeVisible(); await element(by.id('action-sheet-handle')).swipe('up', 'slow', 0.5); - await waitFor(element(by.label('Unstar')).atIndex(0)).toExist().withTimeout(6000); + await waitFor(element(by.label('Unstar')).atIndex(0)) + .toExist() + .withTimeout(6000); await element(by.id('action-sheet-handle')).swipe('down', 'fast', 0.8); }); - it('should react to message', async() => { - await element(by.label(`${ data.random }message`)).atIndex(0).longPress(); + it('should react to message', async () => { + await element(by.label(`${data.random}message`)) + .atIndex(0) + .longPress(); await expect(element(by.id('action-sheet'))).toExist(); await expect(element(by.id('action-sheet-handle'))).toBeVisible(); await element(by.id('action-sheet-handle')).swipe('up', 'fast', 0.5); await element(by.id('add-reaction')).tap(); - await waitFor(element(by.id('reaction-picker'))).toBeVisible().withTimeout(2000); + await waitFor(element(by.id('reaction-picker'))) + .toBeVisible() + .withTimeout(2000); await element(by.id('reaction-picker-😃')).tap(); - await waitFor(element(by.id('reaction-picker-grinning'))).toExist().withTimeout(2000); + await waitFor(element(by.id('reaction-picker-grinning'))) + .toExist() + .withTimeout(2000); await element(by.id('reaction-picker-grinning')).tap(); - await waitFor(element(by.id('message-reaction-:grinning:'))).toExist().withTimeout(60000); + await waitFor(element(by.id('message-reaction-:grinning:'))) + .toExist() + .withTimeout(60000); }); - it('should react to message with frequently used emoji', async() => { - await element(by.label(`${ data.random }message`)).atIndex(0).longPress(); + it('should react to message with frequently used emoji', async () => { + await element(by.label(`${data.random}message`)) + .atIndex(0) + .longPress(); await expect(element(by.id('action-sheet'))).toExist(); await expect(element(by.id('action-sheet-handle'))).toBeVisible(); await element(by.id('action-sheet-handle')).swipe('up', 'fast', 0.5); - await waitFor(element(by.id('message-actions-emoji-+1'))).toBeVisible().withTimeout(2000); + await waitFor(element(by.id('message-actions-emoji-+1'))) + .toBeVisible() + .withTimeout(2000); await element(by.id('message-actions-emoji-+1')).tap(); - await waitFor(element(by.id('message-reaction-:+1:'))).toBeVisible().withTimeout(60000); + await waitFor(element(by.id('message-reaction-:+1:'))) + .toBeVisible() + .withTimeout(60000); }); - it('should show reaction picker on add reaction button pressed and have frequently used emoji', async() => { + it('should show reaction picker on add reaction button pressed and have frequently used emoji', async () => { await element(by.id('message-add-reaction')).tap(); - await waitFor(element(by.id('reaction-picker'))).toExist().withTimeout(2000); - await waitFor(element(by.id('reaction-picker-grinning'))).toExist().withTimeout(2000); + await waitFor(element(by.id('reaction-picker'))) + .toExist() + .withTimeout(2000); + await waitFor(element(by.id('reaction-picker-grinning'))) + .toExist() + .withTimeout(2000); await element(by.id('reaction-picker-😃')).tap(); - await waitFor(element(by.id('reaction-picker-grimacing'))).toExist().withTimeout(2000); + await waitFor(element(by.id('reaction-picker-grimacing'))) + .toExist() + .withTimeout(2000); await element(by.id('reaction-picker-grimacing')).tap(); - await waitFor(element(by.id('message-reaction-:grimacing:'))).toExist().withTimeout(60000); + await waitFor(element(by.id('message-reaction-:grimacing:'))) + .toExist() + .withTimeout(60000); }); - it('should ask for review', async() => { + it('should ask for review', async () => { await dismissReviewNag(); // TODO: Create a proper test for this elsewhere. }); - it('should remove reaction', async() => { + it('should remove reaction', async () => { await element(by.id('message-reaction-:grinning:')).tap(); - await waitFor(element(by.id('message-reaction-:grinning:'))).toBeNotVisible().withTimeout(60000); + await waitFor(element(by.id('message-reaction-:grinning:'))) + .toBeNotVisible() + .withTimeout(60000); }); - it('should edit message', async() => { + it('should edit message', async () => { await mockMessage('edit'); - await element(by.label(`${ data.random }edit`)).atIndex(0).longPress(); + await element(by.label(`${data.random}edit`)) + .atIndex(0) + .longPress(); await expect(element(by.id('action-sheet'))).toExist(); await expect(element(by.id('action-sheet-handle'))).toBeVisible(); await element(by.id('action-sheet-handle')).swipe('up', 'fast', 0.5); await element(by.label('Edit')).atIndex(0).tap(); await element(by.id('messagebox-input')).typeText('ed'); await element(by.id('messagebox-send-message')).tap(); - await waitFor(element(by.label(`${ data.random }edited (edited)`)).atIndex(0)).toExist().withTimeout(60000); + await waitFor(element(by.label(`${data.random}edited (edited)`)).atIndex(0)) + .toExist() + .withTimeout(60000); }); - it('should quote message', async() => { + it('should quote message', async () => { await mockMessage('quote'); - await element(by.label(`${ data.random }quote`)).atIndex(0).longPress(); + await element(by.label(`${data.random}quote`)) + .atIndex(0) + .longPress(); await expect(element(by.id('action-sheet'))).toExist(); await expect(element(by.id('action-sheet-handle'))).toBeVisible(); await element(by.id('action-sheet-handle')).swipe('up', 'fast', 0.5); await element(by.label('Quote')).atIndex(0).tap(); - await element(by.id('messagebox-input')).typeText(`${ data.random }quoted`); + await element(by.id('messagebox-input')).typeText(`${data.random}quoted`); await element(by.id('messagebox-send-message')).tap(); // TODO: test if quote was sent }); - it('should pin message', async() => { + it('should pin message', async () => { await mockMessage('pin'); await pinMessage('pin'); - await waitFor(element(by.label(`${ data.random }pin`)).atIndex(0)).toExist().withTimeout(5000); - await waitFor(element(by.label(`${ data.users.regular.username } Message pinned`)).atIndex(0)).toExist().withTimeout(5000); - await element(by.label(`${ data.random }pin`)).atIndex(0).longPress(); - await waitFor(element(by.id('action-sheet'))).toExist().withTimeout(1000); + await waitFor(element(by.label(`${data.random}pin`)).atIndex(0)) + .toExist() + .withTimeout(5000); + await waitFor(element(by.label(`${data.users.regular.username} Message pinned`)).atIndex(0)) + .toExist() + .withTimeout(5000); + await element(by.label(`${data.random}pin`)) + .atIndex(0) + .longPress(); + await waitFor(element(by.id('action-sheet'))) + .toExist() + .withTimeout(1000); await expect(element(by.id('action-sheet-handle'))).toBeVisible(); await element(by.id('action-sheet-handle')).swipe('up', 'fast', 0.5); - await waitFor(element(by.label('Unpin')).atIndex(0)).toExist().withTimeout(2000); + await waitFor(element(by.label('Unpin')).atIndex(0)) + .toExist() + .withTimeout(2000); await element(by.id('action-sheet-handle')).swipe('down', 'fast', 0.8); }); - it('should delete message', async() => { + it('should delete message', async () => { await mockMessage('delete'); - await waitFor(element(by.label(`${ data.random }delete`)).atIndex(0)).toBeVisible(); - await element(by.label(`${ data.random }delete`)).atIndex(0).longPress(); + await waitFor(element(by.label(`${data.random}delete`)).atIndex(0)).toBeVisible(); + await element(by.label(`${data.random}delete`)) + .atIndex(0) + .longPress(); await expect(element(by.id('action-sheet'))).toExist(); await expect(element(by.id('action-sheet-handle'))).toBeVisible(); await element(by.id('action-sheet-handle')).swipe('up', 'fast', 0.5); - await waitFor(element(by.label('Delete'))).toExist().withTimeout(1000); + await waitFor(element(by.label('Delete'))) + .toExist() + .withTimeout(1000); await element(by.label('Delete')).atIndex(0).tap(); const deleteAlertMessage = 'You will not be able to recover this message!'; - await waitFor(element(by.text(deleteAlertMessage)).atIndex(0)).toExist().withTimeout(10000); + await waitFor(element(by.text(deleteAlertMessage)).atIndex(0)) + .toExist() + .withTimeout(10000); await element(by.text('Delete')).tap(); - await waitFor(element(by.label(`${ data.random }delete`)).atIndex(0)).toNotExist().withTimeout(2000); + await waitFor(element(by.label(`${data.random}delete`)).atIndex(0)) + .toNotExist() + .withTimeout(2000); }); }); }); diff --git a/e2e/tests/room/03-roomactions.spec.js b/e2e/tests/room/03-roomactions.spec.js index 1d37bff3db..fb06d07d82 100644 --- a/e2e/tests/room/03-roomactions.spec.js +++ b/e2e/tests/room/03-roomactions.spec.js @@ -1,7 +1,5 @@ const data = require('../../data'); -const { - navigateToLogin, login, tapBack, sleep, searchRoom, mockMessage, starMessage, pinMessage -} = require('../../helpers/app'); +const { navigateToLogin, login, tapBack, sleep, searchRoom, mockMessage, starMessage, pinMessage } = require('../../helpers/app'); const { sendMessage } = require('../../helpers/data_setup'); async function navigateToRoomActions(type) { @@ -12,22 +10,32 @@ async function navigateToRoomActions(type) { room = data.groups.private.name; } await searchRoom(room); - await element(by.id(`rooms-list-view-item-${ room }`)).tap(); - await waitFor(element(by.id('room-view'))).toExist().withTimeout(2000); + await element(by.id(`rooms-list-view-item-${room}`)).tap(); + await waitFor(element(by.id('room-view'))) + .toExist() + .withTimeout(2000); await element(by.id('room-header')).tap(); - await waitFor(element(by.id('room-actions-view'))).toExist().withTimeout(5000); + await waitFor(element(by.id('room-actions-view'))) + .toExist() + .withTimeout(5000); } async function backToActions() { await tapBack(); - await waitFor(element(by.id('room-actions-view'))).toExist().withTimeout(2000); + await waitFor(element(by.id('room-actions-view'))) + .toExist() + .withTimeout(2000); } async function backToRoomsList() { await tapBack(); - await waitFor(element(by.id('room-view'))).toExist().withTimeout(2000); + await waitFor(element(by.id('room-view'))) + .toExist() + .withTimeout(2000); await tapBack(); - await waitFor(element(by.id('rooms-list-view'))).toExist().withTimeout(2000); + await waitFor(element(by.id('rooms-list-view'))) + .toExist() + .withTimeout(2000); } async function waitForToast() { @@ -35,7 +43,7 @@ async function waitForToast() { } describe('Room actions screen', () => { - before(async() => { + before(async () => { await device.launchApp({ permissions: { notifications: 'YES' }, delete: true }); await navigateToLogin(); await login(data.users.regular.username, data.users.regular.password); @@ -43,15 +51,15 @@ describe('Room actions screen', () => { describe('Render', () => { describe('Direct', () => { - before(async() => { + before(async () => { await navigateToRoomActions('d'); }); - it('should have room actions screen', async() => { + it('should have room actions screen', async () => { await expect(element(by.id('room-actions-view'))).toExist(); }); - it('should have info', async() => { + it('should have info', async () => { await expect(element(by.id('room-actions-info'))).toExist(); }); @@ -63,53 +71,53 @@ describe('Room actions screen', () => { // await expect(element(by.id('room-actions-video'))).toExist(); // }); - it('should have files', async() => { + it('should have files', async () => { await expect(element(by.id('room-actions-files'))).toExist(); }); - it('should have mentions', async() => { + it('should have mentions', async () => { await expect(element(by.id('room-actions-mentioned'))).toExist(); }); - it('should have starred', async() => { + it('should have starred', async () => { await expect(element(by.id('room-actions-starred'))).toExist(); }); - it('should have share', async() => { + it('should have share', async () => { await waitFor(element(by.id('room-actions-share'))).toExist(); await expect(element(by.id('room-actions-share'))).toExist(); }); - it('should have pinned', async() => { + it('should have pinned', async () => { await waitFor(element(by.id('room-actions-pinned'))).toExist(); await expect(element(by.id('room-actions-pinned'))).toExist(); }); - it('should have notifications', async() => { + it('should have notifications', async () => { await waitFor(element(by.id('room-actions-notifications'))).toExist(); await expect(element(by.id('room-actions-notifications'))).toExist(); }); - it('should have block user', async() => { + it('should have block user', async () => { await waitFor(element(by.id('room-actions-block-user'))).toExist(); await expect(element(by.id('room-actions-block-user'))).toExist(); }); - after(async() => { + after(async () => { await backToRoomsList(); }); }); describe('Channel/Group', () => { - before(async() => { + before(async () => { await navigateToRoomActions('c'); }); - it('should have room actions screen', async() => { + it('should have room actions screen', async () => { await expect(element(by.id('room-actions-view'))).toExist(); }); - it('should have info', async() => { + it('should have info', async () => { await expect(element(by.id('room-actions-info'))).toExist(); }); @@ -121,42 +129,42 @@ describe('Room actions screen', () => { // await expect(element(by.id('room-actions-video'))).toExist(); // }); - it('should have members', async() => { + it('should have members', async () => { await expect(element(by.id('room-actions-members'))).toExist(); }); - it('should have add user', async() => { + it('should have add user', async () => { await expect(element(by.id('room-actions-add-user'))).toExist(); }); - it('should have files', async() => { + it('should have files', async () => { await expect(element(by.id('room-actions-files'))).toExist(); }); - it('should have mentions', async() => { + it('should have mentions', async () => { await expect(element(by.id('room-actions-mentioned'))).toExist(); }); - it('should have starred', async() => { + it('should have starred', async () => { await expect(element(by.id('room-actions-starred'))).toExist(); }); - it('should have share', async() => { + it('should have share', async () => { await waitFor(element(by.id('room-actions-share'))).toExist(); await expect(element(by.id('room-actions-share'))).toExist(); }); - it('should have pinned', async() => { + it('should have pinned', async () => { await waitFor(element(by.id('room-actions-pinned'))).toExist(); await expect(element(by.id('room-actions-pinned'))).toExist(); }); - it('should have notifications', async() => { + it('should have notifications', async () => { await waitFor(element(by.id('room-actions-notifications'))).toExist(); await expect(element(by.id('room-actions-notifications'))).toExist(); }); - it('should have leave channel', async() => { + it('should have leave channel', async () => { await waitFor(element(by.id('room-actions-leave-channel'))).toExist(); await expect(element(by.id('room-actions-leave-channel'))).toExist(); }); @@ -164,7 +172,7 @@ describe('Room actions screen', () => { }); describe('Usage', () => { - describe('TDB', async() => { + describe('TDB', async () => { // TODO: test into a jitsi call // it('should NOT navigate to voice call', async() => { // await waitFor(element(by.id('room-actions-voice'))).toExist(); @@ -172,14 +180,12 @@ describe('Room actions screen', () => { // await waitFor(element(by.id('room-actions-view'))).toExist().withTimeout(2000); // await expect(element(by.id('room-actions-view'))).toExist(); // }); - // TODO: test into a jitsi call // it('should NOT navigate to video call', async() => { // await element(by.id('room-actions-video')).tap(); // await waitFor(element(by.id('room-actions-view'))).toExist().withTimeout(2000); // await expect(element(by.id('room-actions-view'))).toExist(); // }); - // TODO: test share room link // it('should NOT navigate to share room', async() => { // await waitFor(element(by.id('room-actions-share'))).toExist(); @@ -190,14 +196,16 @@ describe('Room actions screen', () => { }); describe('Common', () => { - it('should show mentioned messages', async() => { + it('should show mentioned messages', async () => { await element(by.id('room-actions-mentioned')).tap(); - await waitFor(element(by.id('mentioned-messages-view'))).toExist().withTimeout(2000); + await waitFor(element(by.id('mentioned-messages-view'))) + .toExist() + .withTimeout(2000); // await waitFor(element(by.text(` ${ data.random }mention`))).toExist().withTimeout(60000); await backToActions(); }); - it('should show starred message and unstar it', async() => { + it('should show starred message and unstar it', async () => { // Go back to room and send a message await tapBack(); await mockMessage('messageToStar'); @@ -207,24 +215,34 @@ describe('Room actions screen', () => { // Back into Room Actions await element(by.id('room-header')).tap(); - await waitFor(element(by.id('room-actions-view'))).toExist().withTimeout(5000); + await waitFor(element(by.id('room-actions-view'))) + .toExist() + .withTimeout(5000); // Go to starred messages await element(by.id('room-actions-starred')).tap(); - await waitFor(element(by.id('starred-messages-view'))).toExist().withTimeout(2000); - await waitFor(element(by.label(`${ data.random }messageToStar`).withAncestor(by.id('starred-messages-view')))).toExist().withTimeout(60000); + await waitFor(element(by.id('starred-messages-view'))) + .toExist() + .withTimeout(2000); + await waitFor(element(by.label(`${data.random}messageToStar`).withAncestor(by.id('starred-messages-view')))) + .toExist() + .withTimeout(60000); // Unstar message - await element(by.label(`${ data.random }messageToStar`)).atIndex(0).longPress(); + await element(by.label(`${data.random}messageToStar`)) + .atIndex(0) + .longPress(); await expect(element(by.id('action-sheet'))).toExist(); await expect(element(by.id('action-sheet-handle'))).toBeVisible(); await element(by.label('Unstar')).atIndex(0).tap(); - await waitFor(element(by.label(`${ data.random }messageToStar`).withAncestor(by.id('starred-messages-view')))).toBeNotVisible().withTimeout(60000); + await waitFor(element(by.label(`${data.random}messageToStar`).withAncestor(by.id('starred-messages-view')))) + .toBeNotVisible() + .withTimeout(60000); await backToActions(); }); - it('should show pinned message and unpin it', async() => { + it('should show pinned message and unpin it', async () => { // Go back to room and send a message await tapBack(); await mockMessage('messageToPin'); @@ -234,19 +252,29 @@ describe('Room actions screen', () => { // Back into Room Actions await element(by.id('room-header')).tap(); - await waitFor(element(by.id('room-actions-view'))).toExist().withTimeout(5000); + await waitFor(element(by.id('room-actions-view'))) + .toExist() + .withTimeout(5000); await element(by.id('room-actions-scrollview')).scrollTo('bottom'); await waitFor(element(by.id('room-actions-pinned'))).toExist(); await element(by.id('room-actions-pinned')).tap(); - await waitFor(element(by.id('pinned-messages-view'))).toExist().withTimeout(2000); - await waitFor(element(by.label(`${ data.random }messageToPin`).withAncestor(by.id('pinned-messages-view')))).toExist().withTimeout(6000); - await element(by.label(`${ data.random }messageToPin`).withAncestor(by.id('pinned-messages-view'))).atIndex(0).longPress(); + await waitFor(element(by.id('pinned-messages-view'))) + .toExist() + .withTimeout(2000); + await waitFor(element(by.label(`${data.random}messageToPin`).withAncestor(by.id('pinned-messages-view')))) + .toExist() + .withTimeout(6000); + await element(by.label(`${data.random}messageToPin`).withAncestor(by.id('pinned-messages-view'))) + .atIndex(0) + .longPress(); await expect(element(by.id('action-sheet'))).toExist(); await expect(element(by.id('action-sheet-handle'))).toBeVisible(); await element(by.label('Unpin')).atIndex(0).tap(); - await waitFor(element(by.label(`${ data.random }messageToPin`).withAncestor(by.id('pinned-messages-view')))).not.toExist().withTimeout(6000); + await waitFor(element(by.label(`${data.random}messageToPin`).withAncestor(by.id('pinned-messages-view')))) + .not.toExist() + .withTimeout(6000); await backToActions(); }); @@ -270,48 +298,62 @@ describe('Room actions screen', () => { }); describe('Notification', () => { - it('should navigate to notification preference view', async() => { + it('should navigate to notification preference view', async () => { await element(by.id('room-actions-scrollview')).scrollTo('bottom'); - await waitFor(element(by.id('room-actions-notifications'))).toExist().withTimeout(2000); + await waitFor(element(by.id('room-actions-notifications'))) + .toExist() + .withTimeout(2000); await element(by.id('room-actions-notifications')).tap(); - await waitFor(element(by.id('notification-preference-view'))).toExist().withTimeout(2000); + await waitFor(element(by.id('notification-preference-view'))) + .toExist() + .withTimeout(2000); }); - it('should have receive notification option', async() => { + it('should have receive notification option', async () => { await expect(element(by.id('notification-preference-view-receive-notification'))).toExist(); }); - it('should have show unread count option', async() => { + it('should have show unread count option', async () => { await expect(element(by.id('notification-preference-view-unread-count'))).toExist(); }); - it('should have notification alert option', async() => { + it('should have notification alert option', async () => { await expect(element(by.id('notification-preference-view-alert'))).toExist(); }); - it('should have push notification option', async() => { - await waitFor(element(by.id('notification-preference-view-push-notification'))).toExist().withTimeout(4000); + it('should have push notification option', async () => { + await waitFor(element(by.id('notification-preference-view-push-notification'))) + .toExist() + .withTimeout(4000); }); - it('should have notification audio option', async() => { - await waitFor(element(by.id('notification-preference-view-audio'))).toExist().withTimeout(4000); + it('should have notification audio option', async () => { + await waitFor(element(by.id('notification-preference-view-audio'))) + .toExist() + .withTimeout(4000); }); - it('should have notification sound option', async() => { + it('should have notification sound option', async () => { // Ugly hack to scroll on detox await element(by.id('room-actions-scrollview')).scrollTo('bottom'); - await waitFor(element(by.id('notification-preference-view-sound'))).toExist().withTimeout(4000); + await waitFor(element(by.id('notification-preference-view-sound'))) + .toExist() + .withTimeout(4000); }); - it('should have notification duration option', async() => { - await waitFor(element(by.id('notification-preference-view-notification-duration'))).toExist().withTimeout(4000); + it('should have notification duration option', async () => { + await waitFor(element(by.id('notification-preference-view-notification-duration'))) + .toExist() + .withTimeout(4000); }); - it('should have email alert option', async() => { - await waitFor(element(by.id('notification-preference-view-email-alert'))).toExist().withTimeout(4000); + it('should have email alert option', async () => { + await waitFor(element(by.id('notification-preference-view-email-alert'))) + .toExist() + .withTimeout(4000); }); - after(async() => { + after(async () => { await backToActions(); }); }); @@ -322,197 +364,279 @@ describe('Room actions screen', () => { const user = data.users.alternate; - it('should tap on leave channel and raise alert', async() => { + it('should tap on leave channel and raise alert', async () => { await element(by.id('room-actions-scrollview')).scrollTo('bottom'); - await waitFor(element(by.id('room-actions-leave-channel'))).toExist().withTimeout(2000); + await waitFor(element(by.id('room-actions-leave-channel'))) + .toExist() + .withTimeout(2000); await element(by.id('room-actions-leave-channel')).tap(); - await waitFor(element(by.text('Yes, leave it!'))).toExist().withTimeout(2000); + await waitFor(element(by.text('Yes, leave it!'))) + .toExist() + .withTimeout(2000); await element(by.text('Yes, leave it!')).tap(); - await waitFor(element(by.text('You are the last owner. Please set new owner before leaving the room.'))).toExist().withTimeout(8000); + await waitFor(element(by.text('You are the last owner. Please set new owner before leaving the room.'))) + .toExist() + .withTimeout(8000); await element(by.text('OK')).tap(); - await waitFor(element(by.id('room-actions-view'))).toExist().withTimeout(2000); + await waitFor(element(by.id('room-actions-view'))) + .toExist() + .withTimeout(2000); }); - it('should add users to the room', async() => { - await waitFor(element(by.id('room-actions-add-user'))).toExist().withTimeout(4000); + it('should add users to the room', async () => { + await waitFor(element(by.id('room-actions-add-user'))) + .toExist() + .withTimeout(4000); await element(by.id('room-actions-add-user')).tap(); // add rocket.cat const rocketCat = 'rocket.cat'; - await waitFor(element(by.id(`select-users-view-item-${ rocketCat }`))).toExist().withTimeout(10000); - await element(by.id(`select-users-view-item-${ rocketCat }`)).tap(); - await waitFor(element(by.id(`selected-user-${ rocketCat }`))).toExist().withTimeout(5000); - - await waitFor(element(by.id('select-users-view-search'))).toExist().withTimeout(4000); + await waitFor(element(by.id(`select-users-view-item-${rocketCat}`))) + .toExist() + .withTimeout(10000); + await element(by.id(`select-users-view-item-${rocketCat}`)).tap(); + await waitFor(element(by.id(`selected-user-${rocketCat}`))) + .toExist() + .withTimeout(5000); + + await waitFor(element(by.id('select-users-view-search'))) + .toExist() + .withTimeout(4000); await element(by.id('select-users-view-search')).tap(); await element(by.id('select-users-view-search')).replaceText(user.username); - await waitFor(element(by.id(`select-users-view-item-${ user.username }`))).toExist().withTimeout(10000); - await element(by.id(`select-users-view-item-${ user.username }`)).tap(); - await waitFor(element(by.id(`selected-user-${ user.username }`))).toExist().withTimeout(5000); + await waitFor(element(by.id(`select-users-view-item-${user.username}`))) + .toExist() + .withTimeout(10000); + await element(by.id(`select-users-view-item-${user.username}`)).tap(); + await waitFor(element(by.id(`selected-user-${user.username}`))) + .toExist() + .withTimeout(5000); await element(by.id('selected-users-view-submit')).tap(); await sleep(300); - await waitFor(element(by.id('room-actions-members'))).toExist().withTimeout(10000); + await waitFor(element(by.id('room-actions-members'))) + .toExist() + .withTimeout(10000); await element(by.id('room-actions-members')).tap(); await element(by.id('room-members-view-toggle-status')).tap(); - await waitFor(element(by.id(`room-members-view-item-${ user.username }`))).toExist().withTimeout(60000); + await waitFor(element(by.id(`room-members-view-item-${user.username}`))) + .toExist() + .withTimeout(60000); await backToActions(); }); describe('Room Members', () => { - before(async() => { + before(async () => { await element(by.id('room-actions-members')).tap(); - await waitFor(element(by.id('room-members-view'))).toExist().withTimeout(2000); + await waitFor(element(by.id('room-members-view'))) + .toExist() + .withTimeout(2000); }); - const openActionSheet = async(username) => { - await waitFor(element(by.id(`room-members-view-item-${ username }`))).toExist().withTimeout(5000); - await element(by.id(`room-members-view-item-${ username }`)).tap(); + const openActionSheet = async username => { + await waitFor(element(by.id(`room-members-view-item-${username}`))) + .toExist() + .withTimeout(5000); + await element(by.id(`room-members-view-item-${username}`)).tap(); await sleep(300); await expect(element(by.id('action-sheet'))).toExist(); await expect(element(by.id('action-sheet-handle'))).toBeVisible(); }; - const closeActionSheet = async() => { + const closeActionSheet = async () => { await element(by.id('action-sheet-handle')).swipe('down', 'fast', 0.6); }; - it('should show all users', async() => { + it('should show all users', async () => { await element(by.id('room-members-view-toggle-status')).tap(); - await waitFor(element(by.id(`room-members-view-item-${ user.username }`))).toExist().withTimeout(60000); + await waitFor(element(by.id(`room-members-view-item-${user.username}`))) + .toExist() + .withTimeout(60000); }); - it('should filter user', async() => { - await waitFor(element(by.id(`room-members-view-item-${ user.username }`))).toExist().withTimeout(60000); + it('should filter user', async () => { + await waitFor(element(by.id(`room-members-view-item-${user.username}`))) + .toExist() + .withTimeout(60000); await element(by.id('room-members-view-search')).replaceText('rocket'); - await waitFor(element(by.id(`room-members-view-item-${ user.username }`))).toBeNotVisible().withTimeout(60000); + await waitFor(element(by.id(`room-members-view-item-${user.username}`))) + .toBeNotVisible() + .withTimeout(60000); await element(by.id('room-members-view-search')).tap(); await element(by.id('room-members-view-search')).clearText(''); - await waitFor(element(by.id(`room-members-view-item-${ user.username }`))).toExist().withTimeout(60000); + await waitFor(element(by.id(`room-members-view-item-${user.username}`))) + .toExist() + .withTimeout(60000); }); - it('should remove user from room', async() => { + it('should remove user from room', async () => { await openActionSheet('rocket.cat'); await element(by.label('Remove from room')).atIndex(0).tap(); - await waitFor(element(by.label('Are you sure?'))).toExist().withTimeout(5000); + await waitFor(element(by.label('Are you sure?'))) + .toExist() + .withTimeout(5000); await element(by.label('Yes, remove user!').and(by.type('_UIAlertControllerActionView'))).tap(); - await waitFor(element(by.id('room-members-view-item-rocket.cat'))).toBeNotVisible().withTimeout(60000); + await waitFor(element(by.id('room-members-view-item-rocket.cat'))) + .toBeNotVisible() + .withTimeout(60000); }); - it('should clear search', async() => { + it('should clear search', async () => { await element(by.id('room-members-view-search')).tap(); await element(by.id('room-members-view-search')).clearText(''); - await waitFor(element(by.id(`room-members-view-item-${ user.username }`))).toExist().withTimeout(60000); + await waitFor(element(by.id(`room-members-view-item-${user.username}`))) + .toExist() + .withTimeout(60000); }); - it('should set/remove as owner', async() => { + it('should set/remove as owner', async () => { await openActionSheet(user.username); await element(by.id('action-sheet-set-owner')).tap(); await waitForToast(); await openActionSheet(user.username); - await waitFor(element(by.id('action-sheet-set-owner-checked'))).toBeVisible().withTimeout(6000); + await waitFor(element(by.id('action-sheet-set-owner-checked'))) + .toBeVisible() + .withTimeout(6000); await element(by.id('action-sheet-set-owner')).tap(); await waitForToast(); await openActionSheet(user.username); - await waitFor(element(by.id('action-sheet-set-owner-unchecked'))).toBeVisible().withTimeout(60000); + await waitFor(element(by.id('action-sheet-set-owner-unchecked'))) + .toBeVisible() + .withTimeout(60000); await closeActionSheet(); }); - it('should set/remove as leader', async() => { + it('should set/remove as leader', async () => { await openActionSheet(user.username); await element(by.id('action-sheet-set-leader')).tap(); await waitForToast(); await openActionSheet(user.username); - await waitFor(element(by.id('action-sheet-set-leader-checked'))).toBeVisible().withTimeout(6000); + await waitFor(element(by.id('action-sheet-set-leader-checked'))) + .toBeVisible() + .withTimeout(6000); await element(by.id('action-sheet-set-leader')).tap(); await waitForToast(); await openActionSheet(user.username); - await waitFor(element(by.id('action-sheet-set-owner-unchecked'))).toBeVisible().withTimeout(60000); + await waitFor(element(by.id('action-sheet-set-owner-unchecked'))) + .toBeVisible() + .withTimeout(60000); await closeActionSheet(); }); - it('should set/remove as moderator', async() => { + it('should set/remove as moderator', async () => { await openActionSheet(user.username); await element(by.id('action-sheet-set-moderator')).tap(); await waitForToast(); await openActionSheet(user.username); - await waitFor(element(by.id('action-sheet-set-moderator-checked'))).toBeVisible().withTimeout(6000); + await waitFor(element(by.id('action-sheet-set-moderator-checked'))) + .toBeVisible() + .withTimeout(6000); await element(by.id('action-sheet-set-moderator')).tap(); await waitForToast(); await openActionSheet(user.username); - await waitFor(element(by.id('action-sheet-set-moderator-unchecked'))).toBeVisible().withTimeout(60000); + await waitFor(element(by.id('action-sheet-set-moderator-unchecked'))) + .toBeVisible() + .withTimeout(60000); await closeActionSheet(); }); - it('should set/remove as mute', async() => { + it('should set/remove as mute', async () => { await openActionSheet(user.username); await element(by.label('Mute')).atIndex(0).tap(); - await waitFor(element(by.label('Are you sure?'))).toExist().withTimeout(5000); + await waitFor(element(by.label('Are you sure?'))) + .toExist() + .withTimeout(5000); await element(by.label('Mute').and(by.type('_UIAlertControllerActionView'))).tap(); await waitForToast(); await openActionSheet(user.username); await element(by.label('Unmute')).atIndex(0).tap(); - await waitFor(element(by.label('Are you sure?'))).toExist().withTimeout(5000); + await waitFor(element(by.label('Are you sure?'))) + .toExist() + .withTimeout(5000); await element(by.label('Unmute').and(by.type('_UIAlertControllerActionView'))).tap(); await waitForToast(); await openActionSheet(user.username); // Tests if Remove as mute worked - await waitFor(element(by.label('Mute'))).toExist().withTimeout(5000); + await waitFor(element(by.label('Mute'))) + .toExist() + .withTimeout(5000); await closeActionSheet(); }); - it('should ignore user', async() => { - const message = `${ data.random }ignoredmessagecontent`; - const channelName = `#${ data.groups.private.name }`; + it('should ignore user', async () => { + const message = `${data.random}ignoredmessagecontent`; + const channelName = `#${data.groups.private.name}`; await sendMessage(user, channelName, message); await openActionSheet(user.username); await element(by.label('Ignore')).atIndex(0).tap(); await waitForToast(); await backToActions(); await tapBack(); - await waitFor(element(by.id('room-view'))).toExist().withTimeout(60000); - await waitFor(element(by.label('Message ignored. Tap to display it.')).atIndex(0)).toExist().withTimeout(60000); + await waitFor(element(by.id('room-view'))) + .toExist() + .withTimeout(60000); + await waitFor(element(by.label('Message ignored. Tap to display it.')).atIndex(0)) + .toExist() + .withTimeout(60000); await element(by.label('Message ignored. Tap to display it.')).atIndex(0).tap(); - await waitFor(element(by.label(message)).atIndex(0)).toExist().withTimeout(60000); + await waitFor(element(by.label(message)).atIndex(0)) + .toExist() + .withTimeout(60000); await element(by.label(message)).atIndex(0).tap(); }); - it('should navigate to direct message', async() => { + it('should navigate to direct message', async () => { await element(by.id('room-header')).tap(); - await waitFor(element(by.id('room-actions-view'))).toExist().withTimeout(5000); + await waitFor(element(by.id('room-actions-view'))) + .toExist() + .withTimeout(5000); await element(by.id('room-actions-members')).tap(); - await waitFor(element(by.id('room-members-view'))).toExist().withTimeout(2000); + await waitFor(element(by.id('room-members-view'))) + .toExist() + .withTimeout(2000); await element(by.id('room-members-view-toggle-status')).tap(); - await waitFor(element(by.id(`room-members-view-item-${ user.username }`))).toExist().withTimeout(60000); + await waitFor(element(by.id(`room-members-view-item-${user.username}`))) + .toExist() + .withTimeout(60000); await openActionSheet(user.username); await element(by.label('Direct message')).atIndex(0).tap(); - await waitFor(element(by.id('room-view'))).toExist().withTimeout(60000); - await waitFor(element(by.id(`room-view-title-${ user.username }`))).toExist().withTimeout(60000); + await waitFor(element(by.id('room-view'))) + .toExist() + .withTimeout(60000); + await waitFor(element(by.id(`room-view-title-${user.username}`))) + .toExist() + .withTimeout(60000); await tapBack(); - await waitFor(element(by.id('rooms-list-view'))).toExist().withTimeout(2000); + await waitFor(element(by.id('rooms-list-view'))) + .toExist() + .withTimeout(2000); }); }); }); describe('Direct', () => { - before(async() => { + before(async () => { await navigateToRoomActions('d'); }); - it('should block/unblock user', async() => { + it('should block/unblock user', async () => { await waitFor(element(by.id('room-actions-block-user'))).toExist(); await element(by.id('room-actions-block-user')).tap(); - await waitFor(element(by.label('Unblock user'))).toExist().withTimeout(60000); + await waitFor(element(by.label('Unblock user'))) + .toExist() + .withTimeout(60000); await element(by.id('room-actions-block-user')).tap(); - await waitFor(element(by.label('Block user'))).toExist().withTimeout(60000); + await waitFor(element(by.label('Block user'))) + .toExist() + .withTimeout(60000); }); }); }); diff --git a/e2e/tests/room/04-discussion.spec.js b/e2e/tests/room/04-discussion.spec.js index afd289203a..e3781262fa 100644 --- a/e2e/tests/room/04-discussion.spec.js +++ b/e2e/tests/room/04-discussion.spec.js @@ -1,132 +1,172 @@ -const { - navigateToLogin, login, mockMessage, tapBack, searchRoom -} = require('../../helpers/app'); +const { navigateToLogin, login, mockMessage, tapBack, searchRoom } = require('../../helpers/app'); const data = require('../../data'); const channel = data.groups.private.name; -const navigateToRoom = async() => { +const navigateToRoom = async () => { await searchRoom(channel); - await element(by.id(`rooms-list-view-item-${ channel }`)).tap(); - await waitFor(element(by.id('room-view'))).toBeVisible().withTimeout(5000); + await element(by.id(`rooms-list-view-item-${channel}`)).tap(); + await waitFor(element(by.id('room-view'))) + .toBeVisible() + .withTimeout(5000); }; describe('Discussion', () => { - before(async() => { + before(async () => { await device.launchApp({ permissions: { notifications: 'YES' }, newInstance: true, delete: true }); await navigateToLogin(); await login(data.users.regular.username, data.users.regular.password); }); - it('should create discussion from NewMessageView', async() => { - const discussionName = `${ data.random } Discussion NewMessageView`; + it('should create discussion from NewMessageView', async () => { + const discussionName = `${data.random} Discussion NewMessageView`; await element(by.id('rooms-list-view-create-channel')).tap(); - await waitFor(element(by.id('new-message-view'))).toExist().withTimeout(2000); + await waitFor(element(by.id('new-message-view'))) + .toExist() + .withTimeout(2000); await element(by.label('Create Discussion')).atIndex(0).tap(); - await waitFor(element(by.id('create-discussion-view'))).toExist().withTimeout(60000); + await waitFor(element(by.id('create-discussion-view'))) + .toExist() + .withTimeout(60000); await expect(element(by.id('create-discussion-view'))).toExist(); await element(by.label('Select a Channel...')).tap(); - await element(by.id('multi-select-search')).replaceText(`${ channel }`); - await waitFor(element(by.id(`multi-select-item-${ channel }`))).toExist().withTimeout(10000); - await element(by.id(`multi-select-item-${ channel }`)).tap(); + await element(by.id('multi-select-search')).replaceText(`${channel}`); + await waitFor(element(by.id(`multi-select-item-${channel}`))) + .toExist() + .withTimeout(10000); + await element(by.id(`multi-select-item-${channel}`)).tap(); await element(by.id('multi-select-discussion-name')).replaceText(discussionName); - await waitFor(element(by.id('create-discussion-submit'))).toExist().withTimeout(10000); + await waitFor(element(by.id('create-discussion-submit'))) + .toExist() + .withTimeout(10000); await element(by.id('create-discussion-submit')).tap(); - await waitFor(element(by.id('room-view'))).toExist().withTimeout(10000); - await waitFor(element(by.id(`room-view-title-${ discussionName }`))).toExist().withTimeout(5000); + await waitFor(element(by.id('room-view'))) + .toExist() + .withTimeout(10000); + await waitFor(element(by.id(`room-view-title-${discussionName}`))) + .toExist() + .withTimeout(5000); await tapBack(); - await waitFor(element(by.id(`rooms-list-view-item-${ discussionName }`))).toExist().withTimeout(5000); + await waitFor(element(by.id(`rooms-list-view-item-${discussionName}`))) + .toExist() + .withTimeout(5000); }); - it('should create discussion from action button', async() => { - const discussionName = `${ data.random } Discussion Action Button`; + it('should create discussion from action button', async () => { + const discussionName = `${data.random} Discussion Action Button`; await navigateToRoom(); await element(by.id('messagebox-actions')).tap(); - await waitFor(element(by.id('action-sheet'))).toExist().withTimeout(2000); + await waitFor(element(by.id('action-sheet'))) + .toExist() + .withTimeout(2000); await element(by.label('Create Discussion')).atIndex(0).tap(); - await waitFor(element(by.id('create-discussion-view'))).toExist().withTimeout(2000); + await waitFor(element(by.id('create-discussion-view'))) + .toExist() + .withTimeout(2000); await element(by.id('multi-select-discussion-name')).replaceText(discussionName); - await waitFor(element(by.id('create-discussion-submit'))).toExist().withTimeout(10000); + await waitFor(element(by.id('create-discussion-submit'))) + .toExist() + .withTimeout(10000); await element(by.id('create-discussion-submit')).tap(); - await waitFor(element(by.id('room-view'))).toExist().withTimeout(10000); - await waitFor(element(by.id(`room-view-title-${ discussionName }`))).toExist().withTimeout(5000); + await waitFor(element(by.id('room-view'))) + .toExist() + .withTimeout(10000); + await waitFor(element(by.id(`room-view-title-${discussionName}`))) + .toExist() + .withTimeout(5000); }); describe('Create Discussion from action sheet', () => { - it('should send a message', async() => { - await waitFor(element(by.id('messagebox'))).toBeVisible().withTimeout(60000); + it('should send a message', async () => { + await waitFor(element(by.id('messagebox'))) + .toBeVisible() + .withTimeout(60000); await mockMessage('message'); }); - it('should create discussion', async() => { - const discussionName = `${ data.random }message`; + it('should create discussion', async () => { + const discussionName = `${data.random}message`; await element(by.label(discussionName)).atIndex(0).longPress(); - await waitFor(element(by.id('action-sheet'))).toExist().withTimeout(2000); + await waitFor(element(by.id('action-sheet'))) + .toExist() + .withTimeout(2000); await element(by.label('Start a Discussion')).atIndex(0).tap(); - await waitFor(element(by.id('create-discussion-view'))).toExist().withTimeout(2000); + await waitFor(element(by.id('create-discussion-view'))) + .toExist() + .withTimeout(2000); await element(by.id('create-discussion-submit')).tap(); - await waitFor(element(by.id('room-view'))).toExist().withTimeout(10000); - await waitFor(element(by.id(`room-view-title-${ discussionName }`))).toExist().withTimeout(5000); + await waitFor(element(by.id('room-view'))) + .toExist() + .withTimeout(10000); + await waitFor(element(by.id(`room-view-title-${discussionName}`))) + .toExist() + .withTimeout(5000); }); }); describe('Check RoomActionsView render', () => { - it('should navigete to RoomActionsView', async() => { - await waitFor(element(by.id('room-header'))).toBeVisible().withTimeout(5000); + it('should navigete to RoomActionsView', async () => { + await waitFor(element(by.id('room-header'))) + .toBeVisible() + .withTimeout(5000); await element(by.id('room-header')).tap(); - await waitFor(element(by.id('room-actions-view'))).toBeVisible().withTimeout(5000); + await waitFor(element(by.id('room-actions-view'))) + .toBeVisible() + .withTimeout(5000); }); - it('should have room actions screen', async() => { + it('should have room actions screen', async () => { await expect(element(by.id('room-actions-view'))).toBeVisible(); }); - it('should have info', async() => { + it('should have info', async () => { await expect(element(by.id('room-actions-info'))).toBeVisible(); }); - it('should have members', async() => { + it('should have members', async () => { await expect(element(by.id('room-actions-members'))).toBeVisible(); }); - it('should have files', async() => { + it('should have files', async () => { await expect(element(by.id('room-actions-files'))).toBeVisible(); }); - it('should have mentions', async() => { + it('should have mentions', async () => { await expect(element(by.id('room-actions-mentioned'))).toBeVisible(); }); - it('should have starred', async() => { + it('should have starred', async () => { await expect(element(by.id('room-actions-starred'))).toBeVisible(); }); - it('should have share', async() => { + it('should have share', async () => { await element(by.id('room-actions-scrollview')).swipe('up'); await expect(element(by.id('room-actions-share'))).toBeVisible(); }); - it('should have pinned', async() => { + it('should have pinned', async () => { await expect(element(by.id('room-actions-pinned'))).toBeVisible(); }); - it('should not have notifications', async() => { + it('should not have notifications', async () => { await expect(element(by.id('room-actions-notifications'))).toBeVisible(); }); - it('should not have leave channel', async() => { + it('should not have leave channel', async () => { await expect(element(by.id('room-actions-leave-channel'))).toBeVisible(); }); - it('should navigate to RoomActionView', async() => { + it('should navigate to RoomActionView', async () => { await element(by.id('room-actions-scrollview')).swipe('down'); await expect(element(by.id('room-actions-info'))).toBeVisible(); await element(by.id('room-actions-info')).tap(); - await waitFor(element(by.id('room-info-view'))).toExist().withTimeout(60000); + await waitFor(element(by.id('room-info-view'))) + .toExist() + .withTimeout(60000); await expect(element(by.id('room-info-view'))).toExist(); }); - it('should have edit button', async() => { + it('should have edit button', async () => { await expect(element(by.id('room-info-view-edit-button'))).toBeVisible(); }); }); diff --git a/e2e/tests/room/05-threads.spec.js b/e2e/tests/room/05-threads.spec.js index e6c73c129d..d678892840 100644 --- a/e2e/tests/room/05-threads.spec.js +++ b/e2e/tests/room/05-threads.spec.js @@ -1,62 +1,64 @@ const data = require('../../data'); -const { - navigateToLogin, login, mockMessage, tapBack, sleep, searchRoom, dismissReviewNag -} = require('../../helpers/app'); +const { navigateToLogin, login, mockMessage, tapBack, sleep, searchRoom, dismissReviewNag } = require('../../helpers/app'); async function navigateToRoom(roomName) { await device.launchApp({ permissions: { notifications: 'YES' }, delete: true }); await navigateToLogin(); await login(data.users.regular.username, data.users.regular.password); - await searchRoom(`${ roomName }`); - await element(by.id(`rooms-list-view-item-${ roomName }`)).tap(); - await waitFor(element(by.id('room-view'))).toBeVisible().withTimeout(5000); + await searchRoom(`${roomName}`); + await element(by.id(`rooms-list-view-item-${roomName}`)).tap(); + await waitFor(element(by.id('room-view'))) + .toBeVisible() + .withTimeout(5000); } describe('Threads', () => { const mainRoom = data.groups.private.name; - before(async() => { + before(async () => { await navigateToRoom(mainRoom); }); describe('Render', () => { - it('should have room screen', async() => { + it('should have room screen', async () => { await expect(element(by.id('room-view'))).toExist(); - await waitFor(element(by.id(`room-view-title-${ mainRoom }`))).toExist().withTimeout(5000); + await waitFor(element(by.id(`room-view-title-${mainRoom}`))) + .toExist() + .withTimeout(5000); }); // Render - Header describe('Header', () => { - it('should have actions button ', async() => { + it('should have actions button ', async () => { await expect(element(by.id('room-header'))).toExist(); }); - it('should have threads button ', async() => { + it('should have threads button ', async () => { await expect(element(by.id('room-view-header-threads'))).toExist(); }); }); // Render - Messagebox describe('Messagebox', () => { - it('should have messagebox', async() => { + it('should have messagebox', async () => { await expect(element(by.id('messagebox'))).toExist(); }); - it('should have open emoji button', async() => { + it('should have open emoji button', async () => { if (device.getPlatform() === 'android') { await expect(element(by.id('messagebox-open-emoji'))).toExist(); } }); - it('should have message input', async() => { + it('should have message input', async () => { await expect(element(by.id('messagebox-input'))).toExist(); }); - it('should have audio button', async() => { + it('should have audio button', async () => { await expect(element(by.id('messagebox-send-audio'))).toExist(); }); - it('should have actions button', async() => { + it('should have actions button', async () => { await expect(element(by.id('messagebox-actions'))).toExist(); }); }); @@ -64,8 +66,8 @@ describe('Threads', () => { describe('Usage', () => { describe('Thread', () => { - const thread = `${ data.random }thread`; - it('should create thread', async() => { + const thread = `${data.random}thread`; + it('should create thread', async () => { await mockMessage('thread'); await element(by.label(thread)).atIndex(0).longPress(); await expect(element(by.id('action-sheet'))).toExist(); @@ -74,102 +76,156 @@ describe('Threads', () => { await element(by.label('Reply in Thread')).atIndex(0).tap(); await element(by.id('messagebox-input')).typeText('replied'); await element(by.id('messagebox-send-message')).tap(); - await waitFor(element(by.id(`message-thread-button-${ thread }`))).toExist().withTimeout(5000); - await expect(element(by.id(`message-thread-button-${ thread }`))).toExist(); + await waitFor(element(by.id(`message-thread-button-${thread}`))) + .toExist() + .withTimeout(5000); + await expect(element(by.id(`message-thread-button-${thread}`))).toExist(); }); - it('should navigate to thread from button', async() => { - await element(by.id(`message-thread-button-${ thread }`)).tap(); - await waitFor(element(by.id('room-view'))).toExist().withTimeout(5000); - await waitFor(element(by.id(`room-view-title-${ thread }`))).toExist().withTimeout(5000); - await expect(element(by.id(`room-view-title-${ thread }`))).toExist(); + it('should navigate to thread from button', async () => { + await element(by.id(`message-thread-button-${thread}`)).tap(); + await waitFor(element(by.id('room-view'))) + .toExist() + .withTimeout(5000); + await waitFor(element(by.id(`room-view-title-${thread}`))) + .toExist() + .withTimeout(5000); + await expect(element(by.id(`room-view-title-${thread}`))).toExist(); await tapBack(); }); - it('should toggle follow thread', async() => { - await element(by.id(`message-thread-button-${ thread }`)).tap(); - await waitFor(element(by.id('room-view'))).toExist().withTimeout(5000); - await waitFor(element(by.id(`room-view-title-${ thread }`))).toExist().withTimeout(5000); - await expect(element(by.id(`room-view-title-${ thread }`))).toExist(); + it('should toggle follow thread', async () => { + await element(by.id(`message-thread-button-${thread}`)).tap(); + await waitFor(element(by.id('room-view'))) + .toExist() + .withTimeout(5000); + await waitFor(element(by.id(`room-view-title-${thread}`))) + .toExist() + .withTimeout(5000); + await expect(element(by.id(`room-view-title-${thread}`))).toExist(); await element(by.id('room-view-header-unfollow')).tap(); - await waitFor(element(by.id('room-view-header-follow'))).toExist().withTimeout(60000); + await waitFor(element(by.id('room-view-header-follow'))) + .toExist() + .withTimeout(60000); await expect(element(by.id('room-view-header-follow'))).toExist(); await element(by.id('room-view-header-follow')).tap(); - await waitFor(element(by.id('room-view-header-unfollow'))).toExist().withTimeout(60000); + await waitFor(element(by.id('room-view-header-unfollow'))) + .toExist() + .withTimeout(60000); await expect(element(by.id('room-view-header-unfollow'))).toExist(); }); - it('should send message in thread only', async() => { + it('should send message in thread only', async () => { const messageText = 'threadonly'; await mockMessage(messageText, true); await tapBack(); - await waitFor(element(by.id('room-header').and(by.label(`${ mainRoom }`)))).toBeVisible().withTimeout(2000); - await waitFor(element(by.id('room-header').and(by.label(`${ data.random }thread`)))).toBeNotVisible().withTimeout(2000); + await waitFor(element(by.id('room-header').and(by.label(`${mainRoom}`)))) + .toBeVisible() + .withTimeout(2000); + await waitFor(element(by.id('room-header').and(by.label(`${data.random}thread`)))) + .toBeNotVisible() + .withTimeout(2000); await sleep(500); // TODO: Find a better way to wait for the animation to finish and the messagebox-input to be available and usable :( - await waitFor(element(by.label(`${ data.random }${ messageText }`)).atIndex(0)).toNotExist().withTimeout(2000); + await waitFor(element(by.label(`${data.random}${messageText}`)).atIndex(0)) + .toNotExist() + .withTimeout(2000); }); - it('should mark send to channel and show on main channel', async() => { + it('should mark send to channel and show on main channel', async () => { const messageText = 'sendToChannel'; - await element(by.id(`message-thread-button-${ thread }`)).tap(); - await waitFor(element(by.id('messagebox-input-thread'))).toExist().withTimeout(5000); + await element(by.id(`message-thread-button-${thread}`)).tap(); + await waitFor(element(by.id('messagebox-input-thread'))) + .toExist() + .withTimeout(5000); await element(by.id('messagebox-input-thread')).typeText(messageText); await element(by.id('messagebox-send-to-channel')).tap(); await element(by.id('messagebox-send-message')).tap(); await tapBack(); - await waitFor(element(by.id('room-header').and(by.label(`${ mainRoom }`)))).toBeVisible().withTimeout(2000); - await waitFor(element(by.id('room-header').and(by.label(`${ data.random }thread`)))).toBeNotVisible().withTimeout(2000); + await waitFor(element(by.id('room-header').and(by.label(`${mainRoom}`)))) + .toBeVisible() + .withTimeout(2000); + await waitFor(element(by.id('room-header').and(by.label(`${data.random}thread`)))) + .toBeNotVisible() + .withTimeout(2000); await sleep(500); // TODO: Find a better way to wait for the animation to finish and the messagebox-input to be available and usable :( - await waitFor(element(by.label(messageText)).atIndex(0)).toExist().withTimeout(2000); + await waitFor(element(by.label(messageText)).atIndex(0)) + .toExist() + .withTimeout(2000); }); - it('should navigate to thread from thread name', async() => { + it('should navigate to thread from thread name', async () => { const messageText = 'navthreadname'; await mockMessage('dummymessagebetweenthethread'); await dismissReviewNag(); // TODO: Create a proper test for this elsewhere. - await element(by.id(`message-thread-button-${ thread }`)).tap(); - await waitFor(element(by.id('messagebox-input-thread'))).toExist().withTimeout(5000); + await element(by.id(`message-thread-button-${thread}`)).tap(); + await waitFor(element(by.id('messagebox-input-thread'))) + .toExist() + .withTimeout(5000); await element(by.id('messagebox-input-thread')).typeText(messageText); await element(by.id('messagebox-send-to-channel')).tap(); await element(by.id('messagebox-send-message')).tap(); await tapBack(); - await waitFor(element(by.id('room-header').and(by.label(`${ mainRoom }`)))).toBeVisible().withTimeout(2000); - await waitFor(element(by.id('room-header').and(by.label(`${ data.random }thread`)))).toBeNotVisible().withTimeout(2000); - await waitFor(element(by.id(`message-thread-replied-on-${ thread }`))).toBeVisible().withTimeout(2000); - await element(by.id(`message-thread-replied-on-${ thread }`)).tap(); - await waitFor(element(by.id(`room-view-title-${ thread }`))).toExist().withTimeout(5000); - await expect(element(by.id(`room-view-title-${ thread }`))).toExist(); + await waitFor(element(by.id('room-header').and(by.label(`${mainRoom}`)))) + .toBeVisible() + .withTimeout(2000); + await waitFor(element(by.id('room-header').and(by.label(`${data.random}thread`)))) + .toBeNotVisible() + .withTimeout(2000); + await waitFor(element(by.id(`message-thread-replied-on-${thread}`))) + .toBeVisible() + .withTimeout(2000); + await element(by.id(`message-thread-replied-on-${thread}`)).tap(); + await waitFor(element(by.id(`room-view-title-${thread}`))) + .toExist() + .withTimeout(5000); + await expect(element(by.id(`room-view-title-${thread}`))).toExist(); await sleep(2000); await tapBack(); }); - it('should navigate to thread from threads view', async() => { - await waitFor(element(by.id('room-view-header-threads'))).toExist().withTimeout(1000); + it('should navigate to thread from threads view', async () => { + await waitFor(element(by.id('room-view-header-threads'))) + .toExist() + .withTimeout(1000); await element(by.id('room-view-header-threads')).tap(); - await waitFor(element(by.id('thread-messages-view'))).toExist().withTimeout(5000); - await element(by.id(`thread-messages-view-${ thread }`)).atIndex(0).tap(); - await waitFor(element(by.id(`room-view-title-${ thread }`))).toExist().withTimeout(5000); - await expect(element(by.id(`room-view-title-${ thread }`))).toExist(); + await waitFor(element(by.id('thread-messages-view'))) + .toExist() + .withTimeout(5000); + await element(by.id(`thread-messages-view-${thread}`)) + .atIndex(0) + .tap(); + await waitFor(element(by.id(`room-view-title-${thread}`))) + .toExist() + .withTimeout(5000); + await expect(element(by.id(`room-view-title-${thread}`))).toExist(); await tapBack(); - await waitFor(element(by.id('thread-messages-view'))).toExist().withTimeout(5000); + await waitFor(element(by.id('thread-messages-view'))) + .toExist() + .withTimeout(5000); await expect(element(by.id('thread-messages-view'))).toExist(); await tapBack(); }); - it('should draft thread message', async() => { - await element(by.id(`message-thread-button-${ thread }`)).tap(); - await waitFor(element(by.id(`room-view-title-${ thread }`))).toExist().withTimeout(5000); - await element(by.id('messagebox-input-thread')).typeText(`${ thread }draft`); + it('should draft thread message', async () => { + await element(by.id(`message-thread-button-${thread}`)).tap(); + await waitFor(element(by.id(`room-view-title-${thread}`))) + .toExist() + .withTimeout(5000); + await element(by.id('messagebox-input-thread')).typeText(`${thread}draft`); await tapBack(); - await element(by.id(`message-thread-button-${ thread }`)).tap(); - await waitFor(element(by.id(`room-view-title-${ thread }`))).toExist().withTimeout(5000); - await expect(element(by.id('messagebox-input-thread'))).toHaveText(`${ thread }draft`); + await element(by.id(`message-thread-button-${thread}`)).tap(); + await waitFor(element(by.id(`room-view-title-${thread}`))) + .toExist() + .withTimeout(5000); + await expect(element(by.id('messagebox-input-thread'))).toHaveText(`${thread}draft`); await element(by.id('messagebox-input-thread')).clearText(); await tapBack(); - await element(by.id(`message-thread-button-${ thread }`)).tap(); - await waitFor(element(by.id(`room-view-title-${ thread }`))).toExist().withTimeout(5000); + await element(by.id(`message-thread-button-${thread}`)).tap(); + await waitFor(element(by.id(`room-view-title-${thread}`))) + .toExist() + .withTimeout(5000); await expect(element(by.id('messagebox-input-thread'))).toHaveText(''); }); }); diff --git a/e2e/tests/room/06-createdmgroup.spec.js b/e2e/tests/room/06-createdmgroup.spec.js index bd2be06abc..380cb74695 100644 --- a/e2e/tests/room/06-createdmgroup.spec.js +++ b/e2e/tests/room/06-createdmgroup.spec.js @@ -1,49 +1,55 @@ const data = require('../../data'); -const { - navigateToLogin, login -} = require('../../helpers/app'); - - +const { navigateToLogin, login } = require('../../helpers/app'); describe('Group DM', () => { - before(async() => { + before(async () => { await device.launchApp({ permissions: { notifications: 'YES' }, delete: true }); await navigateToLogin(); await login(data.users.regular.username, data.users.regular.password); }); describe('Create Group DM', () => { - before(async() => { + before(async () => { await element(by.id('rooms-list-view-create-channel')).tap(); }); describe('Render', () => { - it('should have new message screen', async() => { - await waitFor(element(by.id('new-message-view'))).toBeVisible().withTimeout(2000); + it('should have new message screen', async () => { + await waitFor(element(by.id('new-message-view'))) + .toBeVisible() + .withTimeout(2000); }); - it('should have search input', async() => { - await waitFor(element(by.id('new-message-view-search'))).toBeVisible().withTimeout(2000); + it('should have search input', async () => { + await waitFor(element(by.id('new-message-view-search'))) + .toBeVisible() + .withTimeout(2000); }); }); describe('Usage', () => { - it('should navigate to create DM', async() => { + it('should navigate to create DM', async () => { await element(by.label('Create Direct Messages')).tap(); }); - it('should add users', async() => { + it('should add users', async () => { await element(by.id('select-users-view-search')).replaceText('rocket.cat'); - await waitFor(element(by.id('select-users-view-item-rocket.cat'))).toBeVisible().withTimeout(10000); + await waitFor(element(by.id('select-users-view-item-rocket.cat'))) + .toBeVisible() + .withTimeout(10000); await element(by.id('select-users-view-item-rocket.cat')).tap(); await element(by.id('select-users-view-search')).replaceText(data.users.existing.username); - await waitFor(element(by.id(`select-users-view-item-${ data.users.existing.username }`))).toBeVisible().withTimeout(10000); - await element(by.id(`select-users-view-item-${ data.users.existing.username }`)).tap(); + await waitFor(element(by.id(`select-users-view-item-${data.users.existing.username}`))) + .toBeVisible() + .withTimeout(10000); + await element(by.id(`select-users-view-item-${data.users.existing.username}`)).tap(); await element(by.id('selected-users-view-submit')).tap(); }); - it('check Group DM exist', async() => { - await waitFor(element(by.id(`room-view-title-${ data.users.existing.username }, rocket.cat`))).toExist().withTimeout(10000); + it('check Group DM exist', async () => { + await waitFor(element(by.id(`room-view-title-${data.users.existing.username}, rocket.cat`))) + .toExist() + .withTimeout(10000); }); }); }); diff --git a/e2e/tests/room/07-markasunread.spec.js b/e2e/tests/room/07-markasunread.spec.js index 82920ba846..28b70fbad2 100644 --- a/e2e/tests/room/07-markasunread.spec.js +++ b/e2e/tests/room/07-markasunread.spec.js @@ -1,19 +1,19 @@ const data = require('../../data'); -const { - navigateToLogin, login, searchRoom, sleep -} = require('../../helpers/app'); +const { navigateToLogin, login, searchRoom, sleep } = require('../../helpers/app'); const { sendMessage } = require('../../helpers/data_setup'); async function navigateToRoom(user) { - await searchRoom(`${ user }`); - await element(by.id(`rooms-list-view-item-${ user }`)).tap(); - await waitFor(element(by.id('room-view'))).toBeVisible().withTimeout(5000); + await searchRoom(`${user}`); + await element(by.id(`rooms-list-view-item-${user}`)).tap(); + await waitFor(element(by.id('room-view'))) + .toBeVisible() + .withTimeout(5000); } describe('Mark as unread', () => { const user = data.users.alternate.username; - before(async() => { + before(async () => { await device.launchApp({ permissions: { notifications: 'YES' }, delete: true }); await navigateToLogin(); await login(data.users.regular.username, data.users.regular.password); @@ -22,18 +22,24 @@ describe('Mark as unread', () => { describe('Usage', () => { describe('Mark message as unread', () => { - it('should mark message as unread', async() => { - const message = `${ data.random }message-mark-as-unread`; - const channelName = `@${ data.users.regular.username }`; + it('should mark message as unread', async () => { + const message = `${data.random}message-mark-as-unread`; + const channelName = `@${data.users.regular.username}`; await sendMessage(data.users.alternate, channelName, message); - await waitFor(element(by.label(message)).atIndex(0)).toExist().withTimeout(30000); + await waitFor(element(by.label(message)).atIndex(0)) + .toExist() + .withTimeout(30000); await sleep(300); await element(by.label(message)).atIndex(0).longPress(); - await waitFor(element(by.id('action-sheet-handle'))).toBeVisible().withTimeout(3000); + await waitFor(element(by.id('action-sheet-handle'))) + .toBeVisible() + .withTimeout(3000); await element(by.id('action-sheet-handle')).swipe('up', 'fast', 0.5); await element(by.label('Mark Unread')).atIndex(0).tap(); - await waitFor(element(by.id('rooms-list-view'))).toExist().withTimeout(5000); - await expect(element(by.id(`rooms-list-view-item-${ data.users.alternate.username }`))).toExist(); + await waitFor(element(by.id('rooms-list-view'))) + .toExist() + .withTimeout(5000); + await expect(element(by.id(`rooms-list-view-item-${data.users.alternate.username}`))).toExist(); }); }); }); diff --git a/e2e/tests/room/08-roominfo.spec.js b/e2e/tests/room/08-roominfo.spec.js index 8786c37618..c3f20a1bef 100644 --- a/e2e/tests/room/08-roominfo.spec.js +++ b/e2e/tests/room/08-roominfo.spec.js @@ -1,7 +1,5 @@ const data = require('../../data'); -const { - navigateToLogin, login, tapBack, sleep, searchRoom -} = require('../../helpers/app'); +const { navigateToLogin, login, tapBack, sleep, searchRoom } = require('../../helpers/app'); const privateRoomName = data.groups.private.name; @@ -13,12 +11,18 @@ async function navigateToRoomInfo(type) { room = privateRoomName; } await searchRoom(room); - await element(by.id(`rooms-list-view-item-${ room }`)).tap(); - await waitFor(element(by.id('room-view'))).toExist().withTimeout(2000); + await element(by.id(`rooms-list-view-item-${room}`)).tap(); + await waitFor(element(by.id('room-view'))) + .toExist() + .withTimeout(2000); await element(by.id('room-header')).tap(); - await waitFor(element(by.id('room-actions-view'))).toExist().withTimeout(5000); + await waitFor(element(by.id('room-actions-view'))) + .toExist() + .withTimeout(5000); await element(by.id('room-actions-info')).tap(); - await waitFor(element(by.id('room-info-view'))).toExist().withTimeout(2000); + await waitFor(element(by.id('room-info-view'))) + .toExist() + .withTimeout(2000); } async function waitForToast() { @@ -30,23 +34,23 @@ async function waitForToast() { } describe('Room info screen', () => { - before(async() => { + before(async () => { await device.launchApp({ permissions: { notifications: 'YES' }, delete: true }); await navigateToLogin(); await login(data.users.regular.username, data.users.regular.password); }); describe('Direct', () => { - before(async() => { + before(async () => { await navigateToRoomInfo('d'); }); - it('should navigate to room info', async() => { + it('should navigate to room info', async () => { await expect(element(by.id('room-info-view'))).toExist(); await expect(element(by.id('room-info-view-name'))).toExist(); }); - after(async() => { + after(async () => { await tapBack(); await tapBack(); await tapBack(); @@ -54,94 +58,98 @@ describe('Room info screen', () => { }); describe('Channel/Group', () => { - before(async() => { + before(async () => { await navigateToRoomInfo('c'); }); describe('Render', () => { - it('should have room info view', async() => { + it('should have room info view', async () => { await expect(element(by.id('room-info-view'))).toExist(); }); - it('should have name', async() => { + it('should have name', async () => { await expect(element(by.id('room-info-view-name'))).toExist(); }); - it('should have description', async() => { + it('should have description', async () => { await expect(element(by.label('Description'))).toExist(); }); - it('should have topic', async() => { + it('should have topic', async () => { await expect(element(by.label('Topic'))).toExist(); }); - it('should have announcement', async() => { + it('should have announcement', async () => { await expect(element(by.label('Announcement'))).toExist(); }); - it('should have edit button', async() => { + it('should have edit button', async () => { await expect(element(by.id('room-info-view-edit-button'))).toExist(); }); }); describe('Render Edit', () => { - before(async() => { - await waitFor(element(by.id('room-info-view-edit-button'))).toExist().withTimeout(10000); + before(async () => { + await waitFor(element(by.id('room-info-view-edit-button'))) + .toExist() + .withTimeout(10000); await element(by.id('room-info-view-edit-button')).tap(); - await waitFor(element(by.id('room-info-edit-view'))).toExist().withTimeout(2000); + await waitFor(element(by.id('room-info-edit-view'))) + .toExist() + .withTimeout(2000); }); - it('should have room info edit view', async() => { + it('should have room info edit view', async () => { await expect(element(by.id('room-info-edit-view'))).toExist(); }); - it('should have name input', async() => { + it('should have name input', async () => { await expect(element(by.id('room-info-edit-view-name'))).toExist(); }); - it('should have description input', async() => { + it('should have description input', async () => { await expect(element(by.id('room-info-edit-view-description'))).toExist(); }); - it('should have topic input', async() => { + it('should have topic input', async () => { await expect(element(by.id('room-info-edit-view-topic'))).toExist(); }); - it('should have announcement input', async() => { + it('should have announcement input', async () => { await expect(element(by.id('room-info-edit-view-announcement'))).toExist(); }); - it('should have password input', async() => { + it('should have password input', async () => { await expect(element(by.id('room-info-edit-view-password'))).toExist(); }); - it('should have type switch', async() => { + it('should have type switch', async () => { // Ugly hack to scroll on detox await element(by.id('room-info-edit-view-list')).swipe('up', 'fast', 0.8); await expect(element(by.id('room-info-edit-view-t'))).toExist(); }); - it('should have ready only switch', async() => { + it('should have ready only switch', async () => { await expect(element(by.id('room-info-edit-view-ro'))).toExist(); }); - it('should have submit button', async() => { + it('should have submit button', async () => { await expect(element(by.id('room-info-edit-view-submit'))).toExist(); }); - it('should have reset button', async() => { + it('should have reset button', async () => { await expect(element(by.id('room-info-edit-view-reset'))).toExist(); }); - it('should have archive button', async() => { + it('should have archive button', async () => { await expect(element(by.id('room-info-edit-view-archive'))).toExist(); }); - it('should have delete button', async() => { + it('should have delete button', async () => { await expect(element(by.id('room-info-edit-view-delete'))).toExist(); }); - after(async() => { + after(async () => { // Ugly hack to scroll on detox await element(by.id('room-info-edit-view-list')).swipe('down', 'fast', 0.8); }); @@ -160,25 +168,29 @@ describe('Room info screen', () => { // await element(by.type('UIScrollView')).atIndex(1).swipe('down'); // }); - it('should change room name', async() => { - await element(by.id('room-info-edit-view-name')).replaceText(`${ privateRoomName }new`); + it('should change room name', async () => { + await element(by.id('room-info-edit-view-name')).replaceText(`${privateRoomName}new`); await element(by.id('room-info-edit-view-list')).swipe('up', 'fast', 0.5); await element(by.id('room-info-edit-view-submit')).tap(); await waitForToast(); await tapBack(); - await waitFor(element(by.id('room-info-view'))).toExist().withTimeout(2000); - await expect(element(by.id('room-info-view-name'))).toHaveLabel(`${ privateRoomName }new`); + await waitFor(element(by.id('room-info-view'))) + .toExist() + .withTimeout(2000); + await expect(element(by.id('room-info-view-name'))).toHaveLabel(`${privateRoomName}new`); // change name to original await element(by.id('room-info-view-edit-button')).tap(); - await waitFor(element(by.id('room-info-edit-view'))).toExist().withTimeout(2000); - await element(by.id('room-info-edit-view-name')).replaceText(`${ privateRoomName }`); + await waitFor(element(by.id('room-info-edit-view'))) + .toExist() + .withTimeout(2000); + await element(by.id('room-info-edit-view-name')).replaceText(`${privateRoomName}`); await element(by.id('room-info-edit-view-list')).swipe('up', 'fast', 0.5); await element(by.id('room-info-edit-view-submit')).tap(); await waitForToast(); await element(by.id('room-info-edit-view-list')).swipe('down', 'fast', 0.8); }); - it('should reset form', async() => { + it('should reset form', async () => { await element(by.id('room-info-edit-view-name')).replaceText('abc'); await element(by.id('room-info-edit-view-description')).replaceText('abc'); await element(by.id('room-info-edit-view-topic')).replaceText('abc'); @@ -201,53 +213,71 @@ describe('Room info screen', () => { await element(by.id('room-info-edit-view-list')).swipe('down', 'fast', 0.8); }); - it('should change room description', async() => { + it('should change room description', async () => { await element(by.id('room-info-edit-view-description')).replaceText('new description'); await element(by.id('room-info-edit-view-list')).swipe('up', 'fast', 0.5); await element(by.id('room-info-edit-view-submit')).tap(); await waitForToast(); await tapBack(); - await waitFor(element(by.id('room-info-view'))).toExist().withTimeout(2000); + await waitFor(element(by.id('room-info-view'))) + .toExist() + .withTimeout(2000); await expect(element(by.label('new description').withAncestor(by.id('room-info-view-description')))).toExist(); }); - it('should change room topic', async() => { - await waitFor(element(by.id('room-info-view-edit-button'))).toExist().withTimeout(10000); + it('should change room topic', async () => { + await waitFor(element(by.id('room-info-view-edit-button'))) + .toExist() + .withTimeout(10000); await element(by.id('room-info-view-edit-button')).tap(); - await waitFor(element(by.id('room-info-edit-view'))).toExist().withTimeout(2000); + await waitFor(element(by.id('room-info-edit-view'))) + .toExist() + .withTimeout(2000); await element(by.id('room-info-edit-view-topic')).replaceText('new topic'); await element(by.id('room-info-edit-view-list')).swipe('up', 'fast', 0.5); await element(by.id('room-info-edit-view-submit')).tap(); await waitForToast(); await tapBack(); - await waitFor(element(by.id('room-info-view'))).toExist().withTimeout(2000); + await waitFor(element(by.id('room-info-view'))) + .toExist() + .withTimeout(2000); await expect(element(by.label('new topic').withAncestor(by.id('room-info-view-topic')))).toExist(); }); - it('should change room announcement', async() => { - await waitFor(element(by.id('room-info-view-edit-button'))).toExist().withTimeout(10000); + it('should change room announcement', async () => { + await waitFor(element(by.id('room-info-view-edit-button'))) + .toExist() + .withTimeout(10000); await element(by.id('room-info-view-edit-button')).tap(); - await waitFor(element(by.id('room-info-edit-view'))).toExist().withTimeout(2000); + await waitFor(element(by.id('room-info-edit-view'))) + .toExist() + .withTimeout(2000); await element(by.id('room-info-edit-view-announcement')).replaceText('new announcement'); await element(by.id('room-info-edit-view-list')).swipe('up', 'fast', 0.5); await element(by.id('room-info-edit-view-submit')).tap(); await waitForToast(); await tapBack(); - await waitFor(element(by.id('room-info-view'))).toExist().withTimeout(2000); + await waitFor(element(by.id('room-info-view'))) + .toExist() + .withTimeout(2000); await expect(element(by.label('new announcement').withAncestor(by.id('room-info-view-announcement')))).toExist(); }); - it('should change room password', async() => { - await waitFor(element(by.id('room-info-view-edit-button'))).toExist().withTimeout(10000); + it('should change room password', async () => { + await waitFor(element(by.id('room-info-view-edit-button'))) + .toExist() + .withTimeout(10000); await element(by.id('room-info-view-edit-button')).tap(); - await waitFor(element(by.id('room-info-edit-view'))).toExist().withTimeout(2000); + await waitFor(element(by.id('room-info-edit-view'))) + .toExist() + .withTimeout(2000); await element(by.id('room-info-edit-view-list')).swipe('up', 'fast', 0.5); await element(by.id('room-info-edit-view-password')).replaceText('password'); await element(by.id('room-info-edit-view-submit')).tap(); await waitForToast(); }); - it('should change room type', async() => { + it('should change room type', async () => { await element(by.id('room-info-edit-view-list')).swipe('up', 'fast', 0.5); await element(by.id('room-info-edit-view-t')).tap(); await element(by.id('room-info-edit-view-submit')).tap(); @@ -269,12 +299,16 @@ describe('Room info screen', () => { // // TODO: test if it's possible to react // }); - it('should archive room', async() => { + it('should archive room', async () => { await element(by.id('room-info-edit-view-list')).swipe('up', 'fast', 0.5); await element(by.id('room-info-edit-view-archive')).tap(); - await waitFor(element(by.text('Yes, archive it!'))).toExist().withTimeout(5000); + await waitFor(element(by.text('Yes, archive it!'))) + .toExist() + .withTimeout(5000); await element(by.text('Yes, archive it!')).tap(); - await waitFor(element(by.id('room-info-edit-view-unarchive'))).toExist().withTimeout(60000); + await waitFor(element(by.id('room-info-edit-view-unarchive'))) + .toExist() + .withTimeout(60000); await expect(element(by.id('room-info-edit-view-archive'))).toBeNotVisible(); // TODO: needs permission to unarchive // await element(by.id('room-info-edit-view-archive')).tap(); @@ -285,13 +319,19 @@ describe('Room info screen', () => { // await expect(element(by.text('ARCHIVE'))).toExist(); }); - it('should delete room', async() => { + it('should delete room', async () => { await element(by.id('room-info-edit-view-list')).swipe('up', 'fast', 0.5); await element(by.id('room-info-edit-view-delete')).tap(); - await waitFor(element(by.text('Yes, delete it!'))).toExist().withTimeout(5000); + await waitFor(element(by.text('Yes, delete it!'))) + .toExist() + .withTimeout(5000); await element(by.text('Yes, delete it!')).tap(); - await waitFor(element(by.id('rooms-list-view'))).toExist().withTimeout(10000); - await waitFor(element(by.id(`rooms-list-view-item-${ privateRoomName }`))).toBeNotVisible().withTimeout(60000); + await waitFor(element(by.id('rooms-list-view'))) + .toExist() + .withTimeout(10000); + await waitFor(element(by.id(`rooms-list-view-item-${privateRoomName}`))) + .toBeNotVisible() + .withTimeout(60000); }); }); }); diff --git a/e2e/tests/room/09-jumptomessage.spec.js b/e2e/tests/room/09-jumptomessage.spec.js index afaeeef5b7..5bb7915193 100644 --- a/e2e/tests/room/09-jumptomessage.spec.js +++ b/e2e/tests/room/09-jumptomessage.spec.js @@ -1,61 +1,91 @@ const data = require('../../data'); -const { - navigateToLogin, tapBack, login, searchRoom -} = require('../../helpers/app'); +const { navigateToLogin, tapBack, login, searchRoom } = require('../../helpers/app'); async function navigateToRoom(roomName) { - await searchRoom(`${ roomName }`); - await element(by.id(`rooms-list-view-item-${ roomName }`)).tap(); - await waitFor(element(by.id('room-view'))).toBeVisible().withTimeout(5000); + await searchRoom(`${roomName}`); + await element(by.id(`rooms-list-view-item-${roomName}`)).tap(); + await waitFor(element(by.id('room-view'))) + .toBeVisible() + .withTimeout(5000); } async function clearCache() { - await waitFor(element(by.id('room-view'))).toBeVisible().withTimeout(5000); + await waitFor(element(by.id('room-view'))) + .toBeVisible() + .withTimeout(5000); await tapBack(); - await waitFor(element(by.id('rooms-list-view'))).toBeVisible().withTimeout(10000); + await waitFor(element(by.id('rooms-list-view'))) + .toBeVisible() + .withTimeout(10000); await element(by.id('rooms-list-view-sidebar')).tap(); - await waitFor(element(by.id('sidebar-view'))).toBeVisible().withTimeout(2000); + await waitFor(element(by.id('sidebar-view'))) + .toBeVisible() + .withTimeout(2000); await element(by.id('sidebar-settings')).tap(); - await waitFor(element(by.id('settings-view'))).toBeVisible().withTimeout(2000); + await waitFor(element(by.id('settings-view'))) + .toBeVisible() + .withTimeout(2000); await element(by.id('settings-view-clear-cache')).tap(); - await waitFor(element(by.text('This will clear all your offline data.'))).toExist().withTimeout(2000); + await waitFor(element(by.text('This will clear all your offline data.'))) + .toExist() + .withTimeout(2000); await element(by.label('Clear').and(by.type('_UIAlertControllerActionView'))).tap(); - await waitFor(element(by.id('rooms-list-view'))).toBeVisible().withTimeout(5000); - await waitFor(element(by.id('rooms-list-view-item-jumping'))).toExist().withTimeout(10000); + await waitFor(element(by.id('rooms-list-view'))) + .toBeVisible() + .withTimeout(5000); + await waitFor(element(by.id('rooms-list-view-item-jumping'))) + .toExist() + .withTimeout(10000); } async function waitForLoading() { - await waitFor(element(by.id('loading'))).toBeVisible().withTimeout(5000); - await waitFor(element(by.id('loading'))).toBeNotVisible().withTimeout(10000); + await waitFor(element(by.id('loading'))) + .toBeVisible() + .withTimeout(5000); + await waitFor(element(by.id('loading'))) + .toBeNotVisible() + .withTimeout(10000); } describe('Room', () => { - before(async() => { + before(async () => { await device.launchApp({ permissions: { notifications: 'YES' }, delete: true }); await navigateToLogin(); await login(data.adminUser, data.adminPassword); }); - it('should jump to an old message and load its surroundings', async() => { + it('should jump to an old message and load its surroundings', async () => { await navigateToRoom('jumping'); - await waitFor(element(by.label('Quote first message'))).toExist().withTimeout(5000); + await waitFor(element(by.label('Quote first message'))) + .toExist() + .withTimeout(5000); await element(by.label('1')).atIndex(0).tap(); await waitForLoading(); - await waitFor(element(by.label('1')).atIndex(0)).toExist().withTimeout(10000); + await waitFor(element(by.label('1')).atIndex(0)) + .toExist() + .withTimeout(10000); await expect(element(by.label('2'))).toExist(); }); - it('should tap FAB and scroll to bottom', async() => { - await waitFor(element(by.id('nav-jump-to-bottom'))).toExist().withTimeout(5000); + it('should tap FAB and scroll to bottom', async () => { + await waitFor(element(by.id('nav-jump-to-bottom'))) + .toExist() + .withTimeout(5000); await element(by.id('nav-jump-to-bottom')).tap(); - await waitFor(element(by.label('Quote first message'))).toExist().withTimeout(5000); + await waitFor(element(by.label('Quote first message'))) + .toExist() + .withTimeout(5000); await clearCache(); }); - it('should load messages on scroll', async() => { + it('should load messages on scroll', async () => { await navigateToRoom('jumping'); - await waitFor(element(by.id('room-view-messages'))).toExist().withTimeout(5000); - await waitFor(element(by.label('300'))).toExist().withTimeout(5000); + await waitFor(element(by.id('room-view-messages'))) + .toExist() + .withTimeout(5000); + await waitFor(element(by.label('300'))) + .toExist() + .withTimeout(5000); let found = false; while (!found) { await element(by.id('room-view-messages')).atIndex(0).scroll(500, 'up'); @@ -69,12 +99,16 @@ describe('Room', () => { await clearCache(); }); - it('should search for old message and load its surroundings', async() => { + it('should search for old message and load its surroundings', async () => { await navigateToRoom('jumping'); await element(by.id('room-view-search')).tap(); - await waitFor(element(by.id('search-messages-view'))).toExist().withTimeout(5000); + await waitFor(element(by.id('search-messages-view'))) + .toExist() + .withTimeout(5000); await element(by.id('search-message-view-input')).typeText('30\n'); - await waitFor(element(by.label('30')).atIndex(0)).toExist().withTimeout(5000); + await waitFor(element(by.label('30')).atIndex(0)) + .toExist() + .withTimeout(5000); await element(by.label('30')).atIndex(0).tap(); await waitForLoading(); await expect(element(by.label('30'))).toExist(); @@ -82,28 +116,52 @@ describe('Room', () => { await expect(element(by.label('32'))).toExist(); }); - it('should load newer and older messages', async() => { + it('should load newer and older messages', async () => { await element(by.id('room-view-messages')).atIndex(0).swipe('down', 'fast', 0.8); - await waitFor(element(by.label('5'))).toExist().withTimeout(10000); - await waitFor(element(by.label('Load Older'))).toExist().withTimeout(5000); + await waitFor(element(by.label('5'))) + .toExist() + .withTimeout(10000); + await waitFor(element(by.label('Load Older'))) + .toExist() + .withTimeout(5000); await element(by.label('Load Older')).atIndex(0).tap(); - await waitFor(element(by.label('4'))).toExist().withTimeout(5000); + await waitFor(element(by.label('4'))) + .toExist() + .withTimeout(5000); await element(by.id('room-view-messages')).atIndex(0).swipe('down', 'fast', 0.5); - await waitFor(element(by.label('1'))).toExist().withTimeout(5000); + await waitFor(element(by.label('1'))) + .toExist() + .withTimeout(5000); await element(by.id('room-view-messages')).atIndex(0).swipe('up', 'fast', 0.5); - await waitFor(element(by.label('25'))).toExist().withTimeout(5000); + await waitFor(element(by.label('25'))) + .toExist() + .withTimeout(5000); await element(by.id('room-view-messages')).atIndex(0).swipe('up', 'fast', 0.5); - await waitFor(element(by.label('50'))).toExist().withTimeout(5000); + await waitFor(element(by.label('50'))) + .toExist() + .withTimeout(5000); await element(by.id('room-view-messages')).atIndex(0).swipe('up', 'slow', 0.5); - await waitFor(element(by.label('Load Newer'))).toExist().withTimeout(5000); + await waitFor(element(by.label('Load Newer'))) + .toExist() + .withTimeout(5000); await element(by.label('Load Newer')).atIndex(0).tap(); - await waitFor(element(by.label('104'))).toExist().withTimeout(5000); - await waitFor(element(by.label('Load Newer'))).toExist().withTimeout(5000); + await waitFor(element(by.label('104'))) + .toExist() + .withTimeout(5000); + await waitFor(element(by.label('Load Newer'))) + .toExist() + .withTimeout(5000); await element(by.label('Load Newer')).atIndex(0).tap(); - await waitFor(element(by.label('154'))).toExist().withTimeout(5000); - await waitFor(element(by.label('Load Newer'))).toExist().withTimeout(5000); + await waitFor(element(by.label('154'))) + .toExist() + .withTimeout(5000); + await waitFor(element(by.label('Load Newer'))) + .toExist() + .withTimeout(5000); await element(by.label('Load Newer')).atIndex(0).tap(); - await waitFor(element(by.label('Load Newer'))).toNotExist().withTimeout(5000); + await waitFor(element(by.label('Load Newer'))) + .toNotExist() + .withTimeout(5000); await expect(element(by.label('Load More'))).toNotExist(); await expect(element(by.label('201'))).toExist(); await expect(element(by.label('202'))).toExist(); @@ -111,41 +169,55 @@ describe('Room', () => { }); }); -const expectThreadMessages = async(message) => { - await waitFor(element(by.id('room-view-title-jumping-thread'))).toExist().withTimeout(5000); +const expectThreadMessages = async message => { + await waitFor(element(by.id('room-view-title-jumping-thread'))) + .toExist() + .withTimeout(5000); await expect(element(by.label(message))).toExist(); }; describe('Threads', () => { - it('should navigate to a thread from another room', async() => { + it('should navigate to a thread from another room', async () => { await navigateToRoom('jumping'); - await waitFor(element(by.label('Go to jumping-thread\'s thread')).atIndex(0)).toExist().withTimeout(5000); - await element(by.label('Go to jumping-thread\'s thread')).atIndex(0).tap(); + await waitFor(element(by.label("Go to jumping-thread's thread")).atIndex(0)) + .toExist() + .withTimeout(5000); + await element(by.label("Go to jumping-thread's thread")).atIndex(0).tap(); await waitForLoading(); - await expectThreadMessages('Go to jumping-thread\'s thread'); + await expectThreadMessages("Go to jumping-thread's thread"); await tapBack(); }); - it('should tap on thread message from main room', async() => { - await waitFor(element(by.label('thread message sent to main room')).atIndex(0)).toExist().withTimeout(5000); + it('should tap on thread message from main room', async () => { + await waitFor(element(by.label('thread message sent to main room')).atIndex(0)) + .toExist() + .withTimeout(5000); await element(by.label('thread message sent to main room')).atIndex(0).tap(); await expectThreadMessages('thread message sent to main room'); await tapBack(); }); - it('should tap on quote', async() => { - await waitFor(element(by.label('quoted'))).toExist().withTimeout(5000); + it('should tap on quote', async () => { + await waitFor(element(by.label('quoted'))) + .toExist() + .withTimeout(5000); await element(by.label('quoted')).atIndex(0).tap(); await expectThreadMessages('quoted'); await tapBack(); }); - it('should jump from search message', async() => { - await waitFor(element(by.id('room-view-title-jumping-thread'))).toExist().withTimeout(5000); + it('should jump from search message', async () => { + await waitFor(element(by.id('room-view-title-jumping-thread'))) + .toExist() + .withTimeout(5000); await element(by.id('room-view-search')).atIndex(0).tap(); - await waitFor(element(by.id('search-messages-view'))).toExist().withTimeout(5000); + await waitFor(element(by.id('search-messages-view'))) + .toExist() + .withTimeout(5000); await element(by.id('search-message-view-input')).typeText('to be searched\n'); - await waitFor(element(by.label('to be searched'))).toExist().withTimeout(5000); + await waitFor(element(by.label('to be searched'))) + .toExist() + .withTimeout(5000); await element(by.label('to be searched')).atIndex(1).tap(); await expectThreadMessages('to be searched'); }); diff --git a/e2e/tests/team/01-createteam.spec.js b/e2e/tests/team/01-createteam.spec.js index 97616c6b64..ad8e3ea037 100644 --- a/e2e/tests/team/01-createteam.spec.js +++ b/e2e/tests/team/01-createteam.spec.js @@ -1,74 +1,96 @@ const data = require('../../data'); const { navigateToLogin, login } = require('../../helpers/app'); -const teamName = `team-${ data.random }`; +const teamName = `team-${data.random}`; describe('Create team screen', () => { - before(async() => { + before(async () => { await device.launchApp({ permissions: { notifications: 'YES' }, delete: true }); await navigateToLogin(); await login(data.users.regular.username, data.users.regular.password); }); describe('New Message', () => { - before(async() => { + before(async () => { await element(by.id('rooms-list-view-create-channel')).tap(); }); - it('should have team button', async() => { - await waitFor(element(by.id('new-message-view-create-team'))).toBeVisible().withTimeout(2000); + it('should have team button', async () => { + await waitFor(element(by.id('new-message-view-create-team'))) + .toBeVisible() + .withTimeout(2000); }); - it('should navigate to select users', async() => { + it('should navigate to select users', async () => { await element(by.id('new-message-view-create-team')).tap(); - await waitFor(element(by.id('select-users-view'))).toExist().withTimeout(5000); + await waitFor(element(by.id('select-users-view'))) + .toExist() + .withTimeout(5000); }); }); describe('Select Users', () => { - it('should nav to create team', async() => { + it('should nav to create team', async () => { await element(by.id('selected-users-view-submit')).tap(); - await waitFor(element(by.id('create-channel-view'))).toExist().withTimeout(10000); + await waitFor(element(by.id('create-channel-view'))) + .toExist() + .withTimeout(10000); }); }); describe('Create Team', () => { describe('Usage', () => { - it('should get invalid team name', async() => { - await element(by.id('create-channel-name')).typeText(`${ data.teams.private.name }`); + it('should get invalid team name', async () => { + await element(by.id('create-channel-name')).typeText(`${data.teams.private.name}`); await element(by.id('create-channel-submit')).tap(); - await waitFor(element(by.text('OK'))).toBeVisible().withTimeout(5000); + await waitFor(element(by.text('OK'))) + .toBeVisible() + .withTimeout(5000); await element(by.text('OK')).tap(); }); - it('should create private team', async() => { + it('should create private team', async () => { await element(by.id('create-channel-name')).replaceText(''); await element(by.id('create-channel-name')).typeText(teamName); await element(by.id('create-channel-submit')).tap(); - await waitFor(element(by.id('room-view'))).toExist().withTimeout(20000); + await waitFor(element(by.id('room-view'))) + .toExist() + .withTimeout(20000); await expect(element(by.id('room-view'))).toExist(); - await waitFor(element(by.id(`room-view-title-${ teamName }`))).toExist().withTimeout(6000); - await expect(element(by.id(`room-view-title-${ teamName }`))).toExist(); + await waitFor(element(by.id(`room-view-title-${teamName}`))) + .toExist() + .withTimeout(6000); + await expect(element(by.id(`room-view-title-${teamName}`))).toExist(); }); }); }); describe('Delete Team', () => { - it('should navigate to room info edit view', async() => { + it('should navigate to room info edit view', async () => { await element(by.id('room-header')).tap(); - await waitFor(element(by.id('room-actions-view'))).toExist().withTimeout(5000); + await waitFor(element(by.id('room-actions-view'))) + .toExist() + .withTimeout(5000); await element(by.id('room-actions-info')).tap(); - await waitFor(element(by.id('room-info-view'))).toExist().withTimeout(2000); + await waitFor(element(by.id('room-info-view'))) + .toExist() + .withTimeout(2000); }); - it('should delete team', async() => { + it('should delete team', async () => { await element(by.id('room-info-view-edit-button')).tap(); await element(by.id('room-info-edit-view-list')).swipe('up', 'fast', 0.5); await element(by.id('room-info-edit-view-delete')).tap(); - await waitFor(element(by.text('Yes, delete it!'))).toExist().withTimeout(5000); + await waitFor(element(by.text('Yes, delete it!'))) + .toExist() + .withTimeout(5000); await element(by.text('Yes, delete it!')).tap(); - await waitFor(element(by.id('rooms-list-view'))).toExist().withTimeout(10000); - await waitFor(element(by.id(`rooms-list-view-item-${ teamName }`))).toBeNotVisible().withTimeout(60000); + await waitFor(element(by.id('rooms-list-view'))) + .toExist() + .withTimeout(10000); + await waitFor(element(by.id(`rooms-list-view-item-${teamName}`))) + .toBeNotVisible() + .withTimeout(60000); }); }); }); diff --git a/e2e/tests/team/02-team.spec.js b/e2e/tests/team/02-team.spec.js index c8451cc45c..7779cb9afb 100644 --- a/e2e/tests/team/02-team.spec.js +++ b/e2e/tests/team/02-team.spec.js @@ -1,31 +1,39 @@ const data = require('../../data'); -const { - navigateToLogin, login, tapBack, sleep, searchRoom -} = require('../../helpers/app'); +const { navigateToLogin, login, tapBack, sleep, searchRoom } = require('../../helpers/app'); async function navigateToRoom(roomName) { - await searchRoom(`${ roomName }`); - await element(by.id(`rooms-list-view-item-${ roomName }`)).tap(); - await waitFor(element(by.id('room-view'))).toBeVisible().withTimeout(5000); + await searchRoom(`${roomName}`); + await element(by.id(`rooms-list-view-item-${roomName}`)).tap(); + await waitFor(element(by.id('room-view'))) + .toBeVisible() + .withTimeout(5000); } async function openActionSheet(username) { - await waitFor(element(by.id(`room-members-view-item-${ username }`))).toExist().withTimeout(5000); - await element(by.id(`room-members-view-item-${ username }`)).tap(); + await waitFor(element(by.id(`room-members-view-item-${username}`))) + .toExist() + .withTimeout(5000); + await element(by.id(`room-members-view-item-${username}`)).tap(); await sleep(300); await expect(element(by.id('action-sheet'))).toExist(); await expect(element(by.id('action-sheet-handle'))).toBeVisible(); } async function navigateToRoomActions() { - await waitFor(element(by.id('room-view'))).toExist().withTimeout(2000); + await waitFor(element(by.id('room-view'))) + .toExist() + .withTimeout(2000); await element(by.id('room-header')).tap(); - await waitFor(element(by.id('room-actions-view'))).toExist().withTimeout(5000); + await waitFor(element(by.id('room-actions-view'))) + .toExist() + .withTimeout(5000); } async function backToActions() { await tapBack(); - await waitFor(element(by.id('room-actions-view'))).toExist().withTimeout(2000); + await waitFor(element(by.id('room-actions-view'))) + .toExist() + .withTimeout(2000); } async function closeActionSheet() { await element(by.id('action-sheet-handle')).swipe('down', 'fast', 0.6); @@ -38,10 +46,10 @@ async function waitForToast() { describe('Team', () => { const team = data.teams.private.name; const user = data.users.alternate; - const room = `private${ data.random }-channel-team`; + const room = `private${data.random}-channel-team`; const existingRoom = data.groups.alternate.name; - before(async() => { + before(async () => { await device.launchApp({ permissions: { notifications: 'YES' }, delete: true }); await navigateToLogin(); await login(data.users.regular.username, data.users.regular.password); @@ -50,240 +58,369 @@ describe('Team', () => { describe('Team Room', () => { describe('Team Header', () => { - it('should have actions button ', async() => { + it('should have actions button ', async () => { await expect(element(by.id('room-header'))).toExist(); }); - it('should have team channels button ', async() => { + it('should have team channels button ', async () => { await expect(element(by.id('room-view-header-team-channels'))).toExist(); }); - it('should have threads button ', async() => { + it('should have threads button ', async () => { await expect(element(by.id('room-view-header-threads'))).toExist(); }); - - it('should have threads button ', async() => { + it('should have threads button ', async () => { await expect(element(by.id('room-view-search'))).toExist(); }); }); describe('Team Header Usage', () => { - it('should navigate to team channels view', async() => { + it('should navigate to team channels view', async () => { await element(by.id('room-view-header-team-channels')).tap(); - await waitFor(element(by.id('team-channels-view'))).toExist().withTimeout(5000); + await waitFor(element(by.id('team-channels-view'))) + .toExist() + .withTimeout(5000); }); }); describe('Team Channels Header', () => { - it('should have actions button ', async() => { + it('should have actions button ', async () => { await expect(element(by.id('room-header'))).toExist(); }); - it('should have team channels button ', async() => { + it('should have team channels button ', async () => { await expect(element(by.id('team-channels-view-create'))).toExist(); }); - it('should have threads button ', async() => { + it('should have threads button ', async () => { await expect(element(by.id('team-channels-view-search'))).toExist(); }); }); describe('Team Channels Header Usage', () => { - it('should navigate to add team channels view', async() => { + it('should navigate to add team channels view', async () => { await element(by.id('team-channels-view-create')).tap(); - await waitFor(element(by.id('add-channel-team-view'))).toExist().withTimeout(5000); + await waitFor(element(by.id('add-channel-team-view'))) + .toExist() + .withTimeout(5000); }); - it('should have create new button', async() => { - await waitFor(element(by.id('add-channel-team-view-create-channel'))).toExist().withTimeout(5000); + it('should have create new button', async () => { + await waitFor(element(by.id('add-channel-team-view-create-channel'))) + .toExist() + .withTimeout(5000); }); - it('should add existing button', async() => { - await waitFor(element(by.id('add-channel-team-view-add-existing'))).toExist().withTimeout(5000); + it('should add existing button', async () => { + await waitFor(element(by.id('add-channel-team-view-add-existing'))) + .toExist() + .withTimeout(5000); }); }); describe('Channels', () => { - it('should create new channel for team', async() => { + it('should create new channel for team', async () => { await element(by.id('add-channel-team-view-create-channel')).tap(); await element(by.id('select-users-view-search')).replaceText('rocket.cat'); await element(by.id('select-users-view-item-rocket.cat')).tap(); - await waitFor(element(by.id('selected-user-rocket.cat'))).toBeVisible().withTimeout(10000); + await waitFor(element(by.id('selected-user-rocket.cat'))) + .toBeVisible() + .withTimeout(10000); await element(by.id('selected-users-view-submit')).tap(); - await waitFor(element(by.id('create-channel-view'))).toExist().withTimeout(10000); + await waitFor(element(by.id('create-channel-view'))) + .toExist() + .withTimeout(10000); await element(by.id('create-channel-name')).replaceText(''); await element(by.id('create-channel-name')).typeText(room); await element(by.id('create-channel-submit')).tap(); - await waitFor(element(by.id('room-view'))).toExist().withTimeout(20000); + await waitFor(element(by.id('room-view'))) + .toExist() + .withTimeout(20000); await expect(element(by.id('room-view'))).toExist(); await expect(element(by.id('room-view-header-team-channels'))).toExist(); await element(by.id('room-view-header-team-channels')).tap(); - await waitFor(element(by.id('team-channels-view'))).toExist().withTimeout(5000); - await waitFor(element(by.id(`rooms-list-view-item-${ room }`))).toExist().withTimeout(6000); - await expect(element(by.id(`rooms-list-view-item-${ room }`))).toExist(); - await element(by.id(`rooms-list-view-item-${ room }`)).tap(); - await waitFor(element(by.id(`room-view-title-${ room }`))).toExist().withTimeout(60000); - await expect(element(by.id(`room-view-title-${ room }`))).toExist(); + await waitFor(element(by.id('team-channels-view'))) + .toExist() + .withTimeout(5000); + await waitFor(element(by.id(`rooms-list-view-item-${room}`))) + .toExist() + .withTimeout(6000); + await expect(element(by.id(`rooms-list-view-item-${room}`))).toExist(); + await element(by.id(`rooms-list-view-item-${room}`)).tap(); + await waitFor(element(by.id(`room-view-title-${room}`))) + .toExist() + .withTimeout(60000); + await expect(element(by.id(`room-view-title-${room}`))).toExist(); await expect(element(by.id('room-view-header-team-channels'))).toExist(); await expect(element(by.id('room-view-header-threads'))).toExist(); await expect(element(by.id('room-view-search'))).toExist(); await tapBack(); }); - it('should add existing channel to team', async() => { + it('should add existing channel to team', async () => { await element(by.id('team-channels-view-create')).tap(); - await waitFor(element(by.id('add-channel-team-view'))).toExist().withTimeout(5000); + await waitFor(element(by.id('add-channel-team-view'))) + .toExist() + .withTimeout(5000); await element(by.id('add-channel-team-view-add-existing')).tap(); - await waitFor(element(by.id('add-existing-channel-view'))).toExist().withTimeout(60000); - await expect(element(by.id(`add-existing-channel-view-item-${ existingRoom }`))).toExist(); - await element(by.id(`add-existing-channel-view-item-${ existingRoom }`)).tap(); - await waitFor(element(by.id('add-existing-channel-view-submit'))).toExist().withTimeout(6000); + await waitFor(element(by.id('add-existing-channel-view'))) + .toExist() + .withTimeout(60000); + await expect(element(by.id(`add-existing-channel-view-item-${existingRoom}`))).toExist(); + await element(by.id(`add-existing-channel-view-item-${existingRoom}`)).tap(); + await waitFor(element(by.id('add-existing-channel-view-submit'))) + .toExist() + .withTimeout(6000); await element(by.id('add-existing-channel-view-submit')).tap(); - await waitFor(element(by.id('room-view'))).toExist().withTimeout(20000); + await waitFor(element(by.id('room-view'))) + .toExist() + .withTimeout(20000); await expect(element(by.id('room-view'))).toExist(); await expect(element(by.id('room-view-header-team-channels'))).toExist(); await element(by.id('room-view-header-team-channels')).tap(); - await waitFor(element(by.id(`rooms-list-view-item-${ existingRoom }`))).toExist().withTimeout(10000); + await waitFor(element(by.id(`rooms-list-view-item-${existingRoom}`))) + .toExist() + .withTimeout(10000); }); - it('should activate/deactivate auto-join to channel', async() => { - await element(by.id(`rooms-list-view-item-${ existingRoom }`)).atIndex(0).longPress(); - - await waitFor(element(by.id('action-sheet-auto-join'))).toBeVisible().withTimeout(5000); - await waitFor(element(by.id('auto-join-unchecked'))).toBeVisible().withTimeout(5000); - await waitFor(element(by.id('action-sheet-remove-from-team'))).toBeVisible().withTimeout(5000); - await waitFor(element(by.id('action-sheet-delete'))).toBeVisible().withTimeout(5000); + it('should activate/deactivate auto-join to channel', async () => { + await element(by.id(`rooms-list-view-item-${existingRoom}`)) + .atIndex(0) + .longPress(); + + await waitFor(element(by.id('action-sheet-auto-join'))) + .toBeVisible() + .withTimeout(5000); + await waitFor(element(by.id('auto-join-unchecked'))) + .toBeVisible() + .withTimeout(5000); + await waitFor(element(by.id('action-sheet-remove-from-team'))) + .toBeVisible() + .withTimeout(5000); + await waitFor(element(by.id('action-sheet-delete'))) + .toBeVisible() + .withTimeout(5000); await element(by.id('auto-join-unchecked')).tap(); - await waitFor(element(by.id('auto-join-tag'))).toBeVisible().withTimeout(5000); - await element(by.id(`rooms-list-view-item-${ existingRoom }`)).atIndex(0).longPress(); - - await waitFor(element(by.id('auto-join-checked'))).toBeVisible().withTimeout(5000); + await waitFor(element(by.id('auto-join-tag'))) + .toBeVisible() + .withTimeout(5000); + await element(by.id(`rooms-list-view-item-${existingRoom}`)) + .atIndex(0) + .longPress(); + + await waitFor(element(by.id('auto-join-checked'))) + .toBeVisible() + .withTimeout(5000); await element(by.id('auto-join-checked')).tap(); - await waitFor(element(by.id('auto-join-tag'))).toBeNotVisible().withTimeout(5000); - await waitFor(element(by.id(`rooms-list-view-item-${ existingRoom }`))).toExist().withTimeout(6000); + await waitFor(element(by.id('auto-join-tag'))) + .toBeNotVisible() + .withTimeout(5000); + await waitFor(element(by.id(`rooms-list-view-item-${existingRoom}`))) + .toExist() + .withTimeout(6000); }); }); describe('Team actions', () => { - before(async() => { + before(async () => { await tapBack(); await navigateToRoomActions(); }); - it('should add users to the team', async() => { - await waitFor(element(by.id('room-actions-add-user'))).toExist().withTimeout(10000); + it('should add users to the team', async () => { + await waitFor(element(by.id('room-actions-add-user'))) + .toExist() + .withTimeout(10000); await element(by.id('room-actions-add-user')).tap(); const rocketCat = 'rocket.cat'; await element(by.id('select-users-view-search')).replaceText('rocket.cat'); - await waitFor(element(by.id(`select-users-view-item-${ rocketCat }`))).toExist().withTimeout(10000); - await element(by.id(`select-users-view-item-${ rocketCat }`)).tap(); - await waitFor(element(by.id(`selected-user-${ rocketCat }`))).toExist().withTimeout(5000); - - await waitFor(element(by.id('select-users-view-search'))).toExist().withTimeout(4000); + await waitFor(element(by.id(`select-users-view-item-${rocketCat}`))) + .toExist() + .withTimeout(10000); + await element(by.id(`select-users-view-item-${rocketCat}`)).tap(); + await waitFor(element(by.id(`selected-user-${rocketCat}`))) + .toExist() + .withTimeout(5000); + + await waitFor(element(by.id('select-users-view-search'))) + .toExist() + .withTimeout(4000); await element(by.id('select-users-view-search')).tap(); await element(by.id('select-users-view-search')).replaceText(user.username); - await waitFor(element(by.id(`select-users-view-item-${ user.username }`))).toExist().withTimeout(10000); - await element(by.id(`select-users-view-item-${ user.username }`)).tap(); - await waitFor(element(by.id(`selected-user-${ user.username }`))).toExist().withTimeout(5000); + await waitFor(element(by.id(`select-users-view-item-${user.username}`))) + .toExist() + .withTimeout(10000); + await element(by.id(`select-users-view-item-${user.username}`)).tap(); + await waitFor(element(by.id(`selected-user-${user.username}`))) + .toExist() + .withTimeout(5000); await element(by.id('selected-users-view-submit')).tap(); await sleep(300); - await waitFor(element(by.id('room-actions-members'))).toExist().withTimeout(10000); + await waitFor(element(by.id('room-actions-members'))) + .toExist() + .withTimeout(10000); await element(by.id('room-actions-members')).tap(); await element(by.id('room-members-view-toggle-status')).tap(); - await waitFor(element(by.id(`room-members-view-item-${ user.username }`))).toExist().withTimeout(60000); + await waitFor(element(by.id(`room-members-view-item-${user.username}`))) + .toExist() + .withTimeout(60000); await backToActions(); }); - it('should try to leave to leave team and raise alert', async() => { + it('should try to leave to leave team and raise alert', async () => { await element(by.id('room-actions-scrollview')).scrollTo('bottom'); - await waitFor(element(by.id('room-actions-leave-channel'))).toExist().withTimeout(2000); + await waitFor(element(by.id('room-actions-leave-channel'))) + .toExist() + .withTimeout(2000); await element(by.id('room-actions-leave-channel')).tap(); - await waitFor(element(by.id('select-list-view'))).toExist().withTimeout(2000); - await waitFor(element(by.id(`select-list-view-item-${ room }`))).toExist().withTimeout(2000); - await waitFor(element(by.id(`select-list-view-item-${ existingRoom }`))).toExist().withTimeout(2000); - await element(by.id(`select-list-view-item-${ room }`)).tap(); - - await waitFor(element(by.label('You are the last owner of this channel. Once you leave the team, the channel will be kept inside the team but you will be managing it from outside.'))).toExist().withTimeout(2000); + await waitFor(element(by.id('select-list-view'))) + .toExist() + .withTimeout(2000); + await waitFor(element(by.id(`select-list-view-item-${room}`))) + .toExist() + .withTimeout(2000); + await waitFor(element(by.id(`select-list-view-item-${existingRoom}`))) + .toExist() + .withTimeout(2000); + await element(by.id(`select-list-view-item-${room}`)).tap(); + + await waitFor( + element( + by.label( + 'You are the last owner of this channel. Once you leave the team, the channel will be kept inside the team but you will be managing it from outside.' + ) + ) + ) + .toExist() + .withTimeout(2000); await element(by.text('OK')).tap(); - await waitFor(element(by.id('select-list-view-submit'))).toExist().withTimeout(2000); + await waitFor(element(by.id('select-list-view-submit'))) + .toExist() + .withTimeout(2000); await element(by.id('select-list-view-submit')).tap(); - await waitFor(element(by.text('Last owner cannot be removed'))).toExist().withTimeout(8000); + await waitFor(element(by.text('Last owner cannot be removed'))) + .toExist() + .withTimeout(8000); await element(by.text('OK')).tap(); await tapBack(); - await waitFor(element(by.id('room-actions-view'))).toExist().withTimeout(2000); + await waitFor(element(by.id('room-actions-view'))) + .toExist() + .withTimeout(2000); }); describe('Room Members', () => { - before(async() => { + before(async () => { await element(by.id('room-actions-members')).tap(); - await waitFor(element(by.id('room-members-view'))).toExist().withTimeout(2000); + await waitFor(element(by.id('room-members-view'))) + .toExist() + .withTimeout(2000); }); - it('should show all users', async() => { + it('should show all users', async () => { await element(by.id('room-members-view-toggle-status')).tap(); - await waitFor(element(by.id(`room-members-view-item-${ user.username }`))).toExist().withTimeout(60000); + await waitFor(element(by.id(`room-members-view-item-${user.username}`))) + .toExist() + .withTimeout(60000); }); - it('should filter user', async() => { - await waitFor(element(by.id(`room-members-view-item-${ user.username }`))).toExist().withTimeout(60000); + it('should filter user', async () => { + await waitFor(element(by.id(`room-members-view-item-${user.username}`))) + .toExist() + .withTimeout(60000); await element(by.id('room-members-view-search')).replaceText('rocket'); - await waitFor(element(by.id(`room-members-view-item-${ user.username }`))).toBeNotVisible().withTimeout(60000); + await waitFor(element(by.id(`room-members-view-item-${user.username}`))) + .toBeNotVisible() + .withTimeout(60000); await element(by.id('room-members-view-search')).tap(); await element(by.id('room-members-view-search')).clearText(''); - await waitFor(element(by.id(`room-members-view-item-${ user.username }`))).toExist().withTimeout(60000); + await waitFor(element(by.id(`room-members-view-item-${user.username}`))) + .toExist() + .withTimeout(60000); }); - it('should remove member from team', async() => { + it('should remove member from team', async () => { await openActionSheet('rocket.cat'); await element(by.id('action-sheet-remove-from-team')).tap(); - await waitFor(element(by.id('select-list-view'))).toExist().withTimeout(5000); - await waitFor(element(by.id(`select-list-view-item-${ room }`))).toExist().withTimeout(5000); - await element(by.id(`select-list-view-item-${ room }`)).tap(); - await waitFor(element(by.id(`${ room }-checked`))).toExist().withTimeout(5000); - await element(by.id(`select-list-view-item-${ room }`)).tap(); - await waitFor(element(by.id(`${ room }-unchecked`))).toExist().withTimeout(5000); + await waitFor(element(by.id('select-list-view'))) + .toExist() + .withTimeout(5000); + await waitFor(element(by.id(`select-list-view-item-${room}`))) + .toExist() + .withTimeout(5000); + await element(by.id(`select-list-view-item-${room}`)).tap(); + await waitFor(element(by.id(`${room}-checked`))) + .toExist() + .withTimeout(5000); + await element(by.id(`select-list-view-item-${room}`)).tap(); + await waitFor(element(by.id(`${room}-unchecked`))) + .toExist() + .withTimeout(5000); await element(by.id('select-list-view-submit')).tap(); - await waitFor(element(by.id('room-members-view-item-rocket.cat'))).toBeNotVisible().withTimeout(60000); + await waitFor(element(by.id('room-members-view-item-rocket.cat'))) + .toBeNotVisible() + .withTimeout(60000); }); - it('should set member as owner', async() => { + it('should set member as owner', async () => { await openActionSheet(user.username); await element(by.id('action-sheet-set-owner')).tap(); await waitForToast(); await openActionSheet(user.username); - await waitFor(element(by.id('action-sheet-set-owner-checked'))).toBeVisible().withTimeout(6000); + await waitFor(element(by.id('action-sheet-set-owner-checked'))) + .toBeVisible() + .withTimeout(6000); await closeActionSheet(); }); - it('should leave team', async() => { + it('should leave team', async () => { await tapBack(); await element(by.id('room-actions-scrollview')).scrollTo('bottom'); - await waitFor(element(by.id('room-actions-leave-channel'))).toExist().withTimeout(2000); + await waitFor(element(by.id('room-actions-leave-channel'))) + .toExist() + .withTimeout(2000); await element(by.id('room-actions-leave-channel')).tap(); - await waitFor(element(by.id('select-list-view'))).toExist().withTimeout(2000); - await waitFor(element(by.id(`select-list-view-item-${ room }`))).toExist().withTimeout(2000); - await waitFor(element(by.id(`select-list-view-item-${ existingRoom }`))).toExist().withTimeout(2000); - await element(by.id(`select-list-view-item-${ room }`)).tap(); - - await waitFor(element(by.label('You are the last owner of this channel. Once you leave the team, the channel will be kept inside the team but you will be managing it from outside.'))).toExist().withTimeout(2000); + await waitFor(element(by.id('select-list-view'))) + .toExist() + .withTimeout(2000); + await waitFor(element(by.id(`select-list-view-item-${room}`))) + .toExist() + .withTimeout(2000); + await waitFor(element(by.id(`select-list-view-item-${existingRoom}`))) + .toExist() + .withTimeout(2000); + await element(by.id(`select-list-view-item-${room}`)).tap(); + + await waitFor( + element( + by.label( + 'You are the last owner of this channel. Once you leave the team, the channel will be kept inside the team but you will be managing it from outside.' + ) + ) + ) + .toExist() + .withTimeout(2000); await element(by.text('OK')).tap(); - await waitFor(element(by.id('select-list-view-submit'))).toExist().withTimeout(2000); + await waitFor(element(by.id('select-list-view-submit'))) + .toExist() + .withTimeout(2000); await element(by.id('select-list-view-submit')).tap(); - await waitFor(element(by.id(`rooms-list-view-item-${ team }`))).toBeNotVisible().withTimeout(60000); + await waitFor(element(by.id(`rooms-list-view-item-${team}`))) + .toBeNotVisible() + .withTimeout(60000); }); }); }); diff --git a/e2e/tests/team/03-moveconvert.spec.js b/e2e/tests/team/03-moveconvert.spec.js index 754aafc09a..5cf68bd132 100644 --- a/e2e/tests/team/03-moveconvert.spec.js +++ b/e2e/tests/team/03-moveconvert.spec.js @@ -1,115 +1,179 @@ const data = require('../../data'); -const { - navigateToLogin, login, tapBack, searchRoom, sleep -} = require('../../helpers/app'); +const { navigateToLogin, login, tapBack, searchRoom, sleep } = require('../../helpers/app'); -const toBeConverted = `to-be-converted-${ data.random }`; -const toBeMoved = `to-be-moved-${ data.random }`; +const toBeConverted = `to-be-converted-${data.random}`; +const toBeMoved = `to-be-moved-${data.random}`; -const createChannel = async(room) => { +const createChannel = async room => { await element(by.id('rooms-list-view-create-channel')).tap(); - await waitFor(element(by.id('new-message-view'))).toExist().withTimeout(5000); + await waitFor(element(by.id('new-message-view'))) + .toExist() + .withTimeout(5000); await element(by.id('new-message-view-create-channel')).tap(); - await waitFor(element(by.id('select-users-view'))).toExist().withTimeout(5000); + await waitFor(element(by.id('select-users-view'))) + .toExist() + .withTimeout(5000); await element(by.id('selected-users-view-submit')).tap(); - await waitFor(element(by.id('create-channel-view'))).toExist().withTimeout(10000); + await waitFor(element(by.id('create-channel-view'))) + .toExist() + .withTimeout(10000); await element(by.id('create-channel-name')).typeText(room); await element(by.id('create-channel-submit')).tap(); - await waitFor(element(by.id('room-view'))).toExist().withTimeout(60000); - await waitFor(element(by.id(`room-view-title-${ room }`))).toExist().withTimeout(60000); + await waitFor(element(by.id('room-view'))) + .toExist() + .withTimeout(60000); + await waitFor(element(by.id(`room-view-title-${room}`))) + .toExist() + .withTimeout(60000); await tapBack(); - await waitFor(element(by.id('rooms-list-view'))).toExist().withTimeout(2000); - await waitFor(element(by.id(`rooms-list-view-item-${ room }`))).toExist().withTimeout(60000); + await waitFor(element(by.id('rooms-list-view'))) + .toExist() + .withTimeout(2000); + await waitFor(element(by.id(`rooms-list-view-item-${room}`))) + .toExist() + .withTimeout(60000); }; async function navigateToRoom(room) { - await searchRoom(`${ room }`); - await element(by.id(`rooms-list-view-item-${ room }`)).tap(); - await waitFor(element(by.id('room-view'))).toBeVisible().withTimeout(5000); + await searchRoom(`${room}`); + await element(by.id(`rooms-list-view-item-${room}`)).tap(); + await waitFor(element(by.id('room-view'))) + .toBeVisible() + .withTimeout(5000); } async function navigateToRoomActions(room) { await navigateToRoom(room); await element(by.id('room-header')).tap(); - await waitFor(element(by.id('room-actions-view'))).toExist().withTimeout(5000); + await waitFor(element(by.id('room-actions-view'))) + .toExist() + .withTimeout(5000); } describe('Move/Convert Team', () => { - before(async() => { + before(async () => { await device.launchApp({ permissions: { notifications: 'YES' }, delete: true }); await navigateToLogin(); await login(data.users.regular.username, data.users.regular.password); }); describe('Convert', () => { - before(async() => { + before(async () => { await createChannel(toBeConverted); }); - it('should convert channel to a team', async() => { + it('should convert channel to a team', async () => { await navigateToRoomActions(toBeConverted); await element(by.id('room-actions-scrollview')).scrollTo('bottom'); - await waitFor(element(by.id('room-actions-convert-to-team'))).toExist().withTimeout(2000); + await waitFor(element(by.id('room-actions-convert-to-team'))) + .toExist() + .withTimeout(2000); await element(by.id('room-actions-convert-to-team')).tap(); - await waitFor(element(by.label('You are converting this Channel to a Team. All Members will be kept.'))).toExist().withTimeout(2000); + await waitFor(element(by.label('You are converting this Channel to a Team. All Members will be kept.'))) + .toExist() + .withTimeout(2000); await element(by.text('Convert')).tap(); - await waitFor(element(by.id('room-view'))).toExist().withTimeout(20000); - await waitFor(element(by.id(`room-view-title-${ toBeConverted }`))).toExist().withTimeout(6000); + await waitFor(element(by.id('room-view'))) + .toExist() + .withTimeout(20000); + await waitFor(element(by.id(`room-view-title-${toBeConverted}`))) + .toExist() + .withTimeout(6000); }); - after(async() => { + after(async () => { await tapBack(); - await waitFor(element(by.id('rooms-list-view'))).toExist().withTimeout(2000); + await waitFor(element(by.id('rooms-list-view'))) + .toExist() + .withTimeout(2000); }); }); describe('Move', () => { - before(async() => { + before(async () => { await createChannel(toBeMoved); }); - it('should move channel to a team', async() => { + it('should move channel to a team', async () => { await navigateToRoomActions(toBeMoved); await element(by.id('room-actions-scrollview')).scrollTo('bottom'); - await waitFor(element(by.id('room-actions-move-to-team'))).toExist().withTimeout(2000); + await waitFor(element(by.id('room-actions-move-to-team'))) + .toExist() + .withTimeout(2000); await element(by.id('room-actions-move-to-team')).tap(); - await waitFor(element(by.id('select-list-view'))).toExist().withTimeout(2000); + await waitFor(element(by.id('select-list-view'))) + .toExist() + .withTimeout(2000); await element(by.id('select-list-view-submit')).tap(); await sleep(2000); - await waitFor(element(by.id('select-list-view'))).toExist().withTimeout(2000); - await waitFor(element(by.id(`select-list-view-item-${ toBeConverted }`))).toExist().withTimeout(2000); - await element(by.id(`select-list-view-item-${ toBeConverted }`)).tap(); + await waitFor(element(by.id('select-list-view'))) + .toExist() + .withTimeout(2000); + await waitFor(element(by.id(`select-list-view-item-${toBeConverted}`))) + .toExist() + .withTimeout(2000); + await element(by.id(`select-list-view-item-${toBeConverted}`)).tap(); await element(by.id('select-list-view-submit')).atIndex(0).tap(); - await waitFor(element(by.label('After reading the previous intructions about this behavior, do you still want to move this channel to the selected team?'))).toExist().withTimeout(2000); + await waitFor( + element( + by.label( + 'After reading the previous intructions about this behavior, do you still want to move this channel to the selected team?' + ) + ) + ) + .toExist() + .withTimeout(2000); await element(by.text('Yes, move it!')).tap(); - await waitFor(element(by.id('room-view-header-team-channels'))).toExist().withTimeout(10000); + await waitFor(element(by.id('room-view-header-team-channels'))) + .toExist() + .withTimeout(10000); }); - after(async() => { + after(async () => { await tapBack(); - await waitFor(element(by.id('rooms-list-view'))).toExist().withTimeout(2000); + await waitFor(element(by.id('rooms-list-view'))) + .toExist() + .withTimeout(2000); }); }); describe('Convert Team to Channel and Delete toBeMoved channel within the Converted', () => { - it('should convert a team to a channel', async() => { + it('should convert a team to a channel', async () => { await navigateToRoomActions(toBeConverted); await element(by.id('room-actions-scrollview')).scrollTo('bottom'); - await waitFor(element(by.id('room-actions-convert-channel-to-team'))).toExist().withTimeout(2000); + await waitFor(element(by.id('room-actions-convert-channel-to-team'))) + .toExist() + .withTimeout(2000); await element(by.id('room-actions-convert-channel-to-team')).tap(); await sleep(2000); - await waitFor(element(by.id('select-list-view'))).toExist().withTimeout(2000); - await waitFor(element(by.id(`select-list-view-item-${ toBeMoved }`))).toExist().withTimeout(2000); - await element(by.id(`select-list-view-item-${ toBeMoved }`)).tap(); - await waitFor(element(by.id('select-list-view-submit'))).toExist().withTimeout(2000); + await waitFor(element(by.id('select-list-view'))) + .toExist() + .withTimeout(2000); + await waitFor(element(by.id(`select-list-view-item-${toBeMoved}`))) + .toExist() + .withTimeout(2000); + await element(by.id(`select-list-view-item-${toBeMoved}`)).tap(); + await waitFor(element(by.id('select-list-view-submit'))) + .toExist() + .withTimeout(2000); await element(by.id('select-list-view-submit')).tap(); - await waitFor(element(by.label('You are converting this Team to a Channel'))).toExist().withTimeout(2000); + await waitFor(element(by.label('You are converting this Team to a Channel'))) + .toExist() + .withTimeout(2000); await element(by.text('Convert')).tap(); - await waitFor(element(by.id('room-view'))).toExist().withTimeout(20000); - await waitFor(element(by.id(`room-view-title-${ toBeConverted }`))).toExist().withTimeout(6000); + await waitFor(element(by.id('room-view'))) + .toExist() + .withTimeout(20000); + await waitFor(element(by.id(`room-view-title-${toBeConverted}`))) + .toExist() + .withTimeout(6000); await tapBack(); - await waitFor(element(by.id('rooms-list-view'))).toExist().withTimeout(2000); - await waitFor(element(by.id(`rooms-list-view-item-${ toBeMoved }`))).toBeNotVisible().withTimeout(60000); + await waitFor(element(by.id('rooms-list-view'))) + .toExist() + .withTimeout(2000); + await waitFor(element(by.id(`rooms-list-view-item-${toBeMoved}`))) + .toBeNotVisible() + .withTimeout(60000); }); }); }); diff --git a/jsconfig.json b/jsconfig.json index 49b83ca08b..7924c1d2d2 100644 --- a/jsconfig.json +++ b/jsconfig.json @@ -1,10 +1,8 @@ { - "compilerOptions": { - "jsx": "react", - "allowSyntheticDefaultImports": true, - "experimentalDecorators": true - }, - "exclude": [ - "node_modules" - ] + "compilerOptions": { + "jsx": "react", + "allowSyntheticDefaultImports": true, + "experimentalDecorators": true + }, + "exclude": ["node_modules"] } diff --git a/metro.config.js b/metro.config.js index 6adff212d0..a4fb715eb4 100644 --- a/metro.config.js +++ b/metro.config.js @@ -20,8 +20,6 @@ module.exports = { }, maxWorkers: 2, resolver: { - blocklistRE: blocklist([ - /ios\/Pods\/JitsiMeetSDK\/Frameworks\/JitsiMeet.framework\/assets\/node_modules\/react-native\/.*/ - ]) + blocklistRE: blocklist([/ios\/Pods\/JitsiMeetSDK\/Frameworks\/JitsiMeet.framework\/assets\/node_modules\/react-native\/.*/]) } }; diff --git a/package.json b/package.json index 637df0cdf9..2be5e19821 100644 --- a/package.json +++ b/package.json @@ -1,242 +1,242 @@ { - "name": "rocket-chat-reactnative", - "version": "4.19.0", - "private": true, - "scripts": { - "start": "react-native start", - "test": "jest", - "test-update": "jest --updateSnapshot", - "lint": "eslint .", - "prettier": "prettier --write .", - "prettier-lint": "yarn lint --fix && prettier --write .", - "ci": "npm run precommit && codecov", - "ios": "npx react-native run-ios", - "android": "npx react-native run-android --variant=experimentalPlayDebug", - "android-whitelabel": "npx react-native run-android --main-activity chat.rocket.reactnative.MainActivity --variant=experimentalPlayDebug --appId", - "log-android": "react-native log-android", - "snyk-protect": "snyk protect", - "precommit": "lint-staged", - "generate-source-maps-ios": "react-native bundle --platform ios --dev false --entry-file index.js --bundle-output ios-release.bundle --sourcemap-output ios-release.bundle.map", - "postinstall": "patch-package && jetify", - "prepare": "husky install" - }, - "lint-staged": { - "*.{js,ts,tsx}": [ - "eslint", - "jest --bail --findRelatedTests" - ] - }, - "dependencies": { - "@bugsnag/react-native": "^7.10.5", - "@codler/react-native-keyboard-aware-scroll-view": "^1.0.1", - "@nozbe/watermelondb": "0.19.0", - "@react-native-community/art": "^1.2.0", - "@react-native-community/async-storage": "1.12.1", - "@react-native-community/blur": "^3.6.0", - "@react-native-community/cameraroll": "4.0.4", - "@react-native-community/datetimepicker": "3.5.2", - "@react-native-community/hooks": "2.6.0", - "@react-native-community/masked-view": "0.1.11", - "@react-native-community/netinfo": "6.0.0", - "@react-native-community/picker": "^1.8.1", - "@react-native-community/slider": "3.0.3", - "@react-native-cookies/cookies": "6.0.8", - "@react-native-firebase/analytics": "^7.3.1", - "@react-native-firebase/app": "^8.2.0", - "@react-native-firebase/crashlytics": "^8.1.2", - "@react-navigation/drawer": "5.12.5", - "@react-navigation/native": "5.9.4", - "@react-navigation/stack": "5.14.5", - "@rocket.chat/react-native-fast-image": "^8.2.0", - "@rocket.chat/sdk": "RocketChat/Rocket.Chat.js.SDK#mobile", - "@rocket.chat/ui-kit": "0.13.0", - "bytebuffer": "^5.0.1", - "color2k": "1.2.4", - "commonmark": "git+https://github.com/RocketChat/commonmark.js.git", - "commonmark-react-renderer": "git+https://github.com/RocketChat/commonmark-react-renderer.git", - "dequal": "^2.0.2", - "ejson": "2.2.1", - "eslint-config-airbnb": "^18.1.0", - "expo-apple-authentication": "^2.2.1", - "expo-av": "8.2.1", - "expo-file-system": "9.0.1", - "expo-haptics": "8.2.1", - "expo-keep-awake": "8.2.1", - "expo-local-authentication": "9.2.0", - "expo-video-thumbnails": "5.1.0", - "expo-web-browser": "8.3.1", - "hoist-non-react-statics": "3.3.2", - "i18n-js": "3.8.0", - "js-base64": "3.6.1", - "js-sha256": "^0.9.0", - "lint-staged": "^11.1.0", - "lodash": "4.17.21", - "moment": "2.29.1", - "pretty-bytes": "5.6.0", - "prop-types": "15.7.2", - "react": "17.0.1", - "react-native": "RocketChat/react-native#0.64.2", - "react-native-animatable": "^1.3.3", - "react-native-appearance": "0.3.4", - "react-native-background-timer": "2.4.1", - "react-native-bootsplash": "3.2.4", - "react-native-config-reader": "^4.1.1", - "react-native-console-time-polyfill": "1.2.3", - "react-native-device-info": "8.1.3", - "react-native-document-picker": "5.2.0", - "react-native-easy-grid": "^0.2.2", - "react-native-easy-toast": "^1.2.0", - "react-native-gesture-handler": "^1.10.3", - "react-native-image-crop-picker": "RocketChat/react-native-image-crop-picker", - "react-native-image-progress": "^1.1.1", - "react-native-jitsi-meet": "RocketChat/react-native-jitsi-meet", - "react-native-keycommands": "2.0.3", - "react-native-localize": "2.1.1", - "react-native-mime-types": "2.3.0", - "react-native-mmkv-storage": "0.3.5", - "react-native-modal": "11.10.0", - "react-native-navigation-bar-color": "2.0.1", - "react-native-notifications": "2.1.7", - "react-native-notifier": "1.6.1", - "react-native-orientation-locker": "1.1.8", - "react-native-picker-select": "^8.0.4", - "react-native-platform-touchable": "1.1.1", - "react-native-popover-view": "4.0.1", - "react-native-progress": "4.1.2", - "react-native-prompt-android": "^1.1.0", - "react-native-reanimated": "1.9.0", - "react-native-restart": "0.0.22", - "react-native-safe-area-context": "3.2.0", - "react-native-screens": "2.9.0", - "react-native-scroll-bottom-sheet": "0.6.2", - "react-native-scrollable-tab-view": "^1.0.0", - "react-native-simple-crypto": "RocketChat/react-native-simple-crypto#0.5.0", - "react-native-slowlog": "^1.0.2", - "react-native-ui-lib": "RocketChat/react-native-ui-lib#minor-improvements", - "react-native-unimodules": "0.10.1", - "react-native-vector-icons": "8.1.0", - "react-native-webview": "10.3.2", - "react-redux": "7.2.4", - "reactotron-react-native": "5.0.0", - "redux": "4.1.0", - "redux-immutable-state-invariant": "2.1.0", - "redux-saga": "1.1.3", - "remove-markdown": "^0.3.0", - "reselect": "4.0.0", - "rn-extensions-share": "RocketChat/rn-extensions-share", - "rn-fetch-blob": "0.12.0", - "rn-root-view": "1.0.3", - "semver": "7.3.5", - "ua-parser-js": "0.7.28", - "url-parse": "1.5.1", - "use-deep-compare-effect": "1.6.1", - "xregexp": "5.0.2" - }, - "devDependencies": { - "@babel/core": "^7.12.9", - "@babel/eslint-parser": "^7.14.7", - "@babel/eslint-plugin": "^7.13.0", - "@babel/plugin-proposal-decorators": "^7.8.3", - "@babel/runtime": "^7.12.5", - "@bugsnag/source-maps": "^2.2.0", - "@rocket.chat/eslint-config": "^0.4.0", - "@storybook/addon-storyshots": "5.3.21", - "@storybook/react-native": "5.3.25", - "@types/jest": "^26.0.24", - "@types/lodash": "^4.14.171", - "@types/react": "^17.0.14", - "@types/react-native": "^0.62.7", - "@types/react-native-config-reader": "^4.1.0", - "@types/react-native-platform-touchable": "^1.1.2", - "@types/react-native-scrollable-tab-view": "^0.10.2", - "@types/react-redux": "^7.1.18", - "@types/react-test-renderer": "^17.0.1", - "@typescript-eslint/eslint-plugin": "^4.28.3", - "@typescript-eslint/parser": "^4.28.5", - "axios": "0.21.1", - "babel-jest": "^27.0.6", - "babel-plugin-transform-remove-console": "^6.9.4", - "codecov": "3.8.2", - "detox": "18.17.0", - "eslint": "^7.31.0", - "eslint-config-prettier": "^8.3.0", - "eslint-plugin-import": "2.22.0", - "eslint-plugin-jsx-a11y": "6.3.1", - "eslint-plugin-react": "7.20.3", - "eslint-plugin-react-native": "3.8.1", - "husky": "^6.0.0", - "identity-obj-proxy": "^3.0.0", - "jest": "^27.0.6", - "jest-cli": "^27.0.6", - "metro-react-native-babel-preset": "^0.64.0", - "mocha": "9.0.1", - "otp.js": "1.2.0", - "patch-package": "6.4.7", - "prettier": "^2.3.2", - "react-dom": "17.0.1", - "react-test-renderer": "17.0.1", - "reactotron-redux": "3.1.3", - "reactotron-redux-saga": "4.2.3", - "typescript": "^4.3.5" - }, - "jest": { - "testPathIgnorePatterns": [ - "e2e", - "node_modules" - ], - "transformIgnorePatterns": [ - "node_modules/(?!(jest-)?@?react-native|@react-native-community|@react-navigation)" - ], - "preset": "react-native", - "coverageDirectory": "./coverage/", - "collectCoverage": true, - "moduleNameMapper": { - ".+\\.(css|styl|less|sass|scss)$": "identity-obj-proxy", - ".+\\.(jpg|jpeg|png|gif|eot|otf|webp|svg|ttf|woff|woff2|mp4|webm|wav|mp3|m4a|aac|oga)$": "<rootDir>/__mocks__/fileMock.js" - }, - "transform": { - "^.+\\.js$": "<rootDir>/node_modules/react-native/jest/preprocessor.js" - } - }, - "snyk": true, - "engines": { - "node": ">=8.x", - "npm": ">=4.x" - }, - "detox": { - "runner-config": "e2e/.mocharc.json", - "specs": "e2e/tests", - "configurations": { - "ios.sim.debug": { - "binaryPath": "ios/build/Build/Products/Debug-iphonesimulator/Rocket.Chat Experimental.app", - "build": "xcodebuild -workspace ios/RocketChatRN.xcworkspace -scheme RocketChatRN -configuration Debug -sdk iphonesimulator -derivedDataPath ios/build", - "type": "ios.simulator", - "device": { - "type": "iPhone 11 Pro" - } - }, - "ios.sim.release": { - "binaryPath": "ios/build/Build/Products/Release-iphonesimulator/Rocket.Chat Experimental.app", - "build": "xcodebuild -workspace ios/RocketChatRN.xcworkspace -scheme RocketChatRN -configuration Release -sdk iphonesimulator -derivedDataPath ios/build", - "type": "ios.simulator", - "device": { - "type": "iPhone 11 Pro" - }, - "artifacts": { - "plugins": { - "screenshot": { - "enabled": true, - "shouldTakeAutomaticSnapshots": true, - "keepOnlyFailedTestsArtifacts": true, - "takeWhen": { - "testStart": true, - "testDone": true, - "appNotReady": true - } - } - } - } - } - } - } + "name": "rocket-chat-reactnative", + "version": "4.19.0", + "private": true, + "scripts": { + "start": "react-native start", + "test": "jest", + "test-update": "jest --updateSnapshot", + "lint": "eslint .", + "prettier": "prettier --write .", + "prettier-lint": "yarn lint --fix && prettier --write .", + "ci": "npm run precommit && codecov", + "ios": "npx react-native run-ios", + "android": "npx react-native run-android --variant=experimentalPlayDebug", + "android-whitelabel": "npx react-native run-android --main-activity chat.rocket.reactnative.MainActivity --variant=experimentalPlayDebug --appId", + "log-android": "react-native log-android", + "snyk-protect": "snyk protect", + "precommit": "lint-staged", + "generate-source-maps-ios": "react-native bundle --platform ios --dev false --entry-file index.js --bundle-output ios-release.bundle --sourcemap-output ios-release.bundle.map", + "postinstall": "patch-package && jetify", + "prepare": "husky install" + }, + "lint-staged": { + "*.{js,ts,tsx}": [ + "eslint", + "jest --bail --findRelatedTests" + ] + }, + "dependencies": { + "@bugsnag/react-native": "^7.10.5", + "@codler/react-native-keyboard-aware-scroll-view": "^1.0.1", + "@nozbe/watermelondb": "0.19.0", + "@react-native-community/art": "^1.2.0", + "@react-native-community/async-storage": "1.12.1", + "@react-native-community/blur": "^3.6.0", + "@react-native-community/cameraroll": "4.0.4", + "@react-native-community/datetimepicker": "3.5.2", + "@react-native-community/hooks": "2.6.0", + "@react-native-community/masked-view": "0.1.11", + "@react-native-community/netinfo": "6.0.0", + "@react-native-community/picker": "^1.8.1", + "@react-native-community/slider": "3.0.3", + "@react-native-cookies/cookies": "6.0.8", + "@react-native-firebase/analytics": "^7.3.1", + "@react-native-firebase/app": "^8.2.0", + "@react-native-firebase/crashlytics": "^8.1.2", + "@react-navigation/drawer": "5.12.5", + "@react-navigation/native": "5.9.4", + "@react-navigation/stack": "5.14.5", + "@rocket.chat/react-native-fast-image": "^8.2.0", + "@rocket.chat/sdk": "RocketChat/Rocket.Chat.js.SDK#mobile", + "@rocket.chat/ui-kit": "0.13.0", + "bytebuffer": "^5.0.1", + "color2k": "1.2.4", + "commonmark": "git+https://github.com/RocketChat/commonmark.js.git", + "commonmark-react-renderer": "git+https://github.com/RocketChat/commonmark-react-renderer.git", + "dequal": "^2.0.2", + "ejson": "2.2.1", + "eslint-config-airbnb": "^18.1.0", + "expo-apple-authentication": "^2.2.1", + "expo-av": "8.2.1", + "expo-file-system": "9.0.1", + "expo-haptics": "8.2.1", + "expo-keep-awake": "8.2.1", + "expo-local-authentication": "9.2.0", + "expo-video-thumbnails": "5.1.0", + "expo-web-browser": "8.3.1", + "hoist-non-react-statics": "3.3.2", + "i18n-js": "3.8.0", + "js-base64": "3.6.1", + "js-sha256": "^0.9.0", + "lint-staged": "^11.1.0", + "lodash": "4.17.21", + "moment": "2.29.1", + "pretty-bytes": "5.6.0", + "prop-types": "15.7.2", + "react": "17.0.1", + "react-native": "RocketChat/react-native#0.64.2", + "react-native-animatable": "^1.3.3", + "react-native-appearance": "0.3.4", + "react-native-background-timer": "2.4.1", + "react-native-bootsplash": "3.2.4", + "react-native-config-reader": "^4.1.1", + "react-native-console-time-polyfill": "1.2.3", + "react-native-device-info": "8.1.3", + "react-native-document-picker": "5.2.0", + "react-native-easy-grid": "^0.2.2", + "react-native-easy-toast": "^1.2.0", + "react-native-gesture-handler": "^1.10.3", + "react-native-image-crop-picker": "RocketChat/react-native-image-crop-picker", + "react-native-image-progress": "^1.1.1", + "react-native-jitsi-meet": "RocketChat/react-native-jitsi-meet", + "react-native-keycommands": "2.0.3", + "react-native-localize": "2.1.1", + "react-native-mime-types": "2.3.0", + "react-native-mmkv-storage": "0.3.5", + "react-native-modal": "11.10.0", + "react-native-navigation-bar-color": "2.0.1", + "react-native-notifications": "2.1.7", + "react-native-notifier": "1.6.1", + "react-native-orientation-locker": "1.1.8", + "react-native-picker-select": "^8.0.4", + "react-native-platform-touchable": "1.1.1", + "react-native-popover-view": "4.0.1", + "react-native-progress": "4.1.2", + "react-native-prompt-android": "^1.1.0", + "react-native-reanimated": "1.9.0", + "react-native-restart": "0.0.22", + "react-native-safe-area-context": "3.2.0", + "react-native-screens": "2.9.0", + "react-native-scroll-bottom-sheet": "0.6.2", + "react-native-scrollable-tab-view": "^1.0.0", + "react-native-simple-crypto": "RocketChat/react-native-simple-crypto#0.5.0", + "react-native-slowlog": "^1.0.2", + "react-native-ui-lib": "RocketChat/react-native-ui-lib#minor-improvements", + "react-native-unimodules": "0.10.1", + "react-native-vector-icons": "8.1.0", + "react-native-webview": "10.3.2", + "react-redux": "7.2.4", + "reactotron-react-native": "5.0.0", + "redux": "4.1.0", + "redux-immutable-state-invariant": "2.1.0", + "redux-saga": "1.1.3", + "remove-markdown": "^0.3.0", + "reselect": "4.0.0", + "rn-extensions-share": "RocketChat/rn-extensions-share", + "rn-fetch-blob": "0.12.0", + "rn-root-view": "1.0.3", + "semver": "7.3.5", + "ua-parser-js": "0.7.28", + "url-parse": "1.5.1", + "use-deep-compare-effect": "1.6.1", + "xregexp": "5.0.2" + }, + "devDependencies": { + "@babel/core": "^7.12.9", + "@babel/eslint-parser": "^7.14.7", + "@babel/eslint-plugin": "^7.13.0", + "@babel/plugin-proposal-decorators": "^7.8.3", + "@babel/runtime": "^7.12.5", + "@bugsnag/source-maps": "^2.2.0", + "@rocket.chat/eslint-config": "^0.4.0", + "@storybook/addon-storyshots": "5.3.21", + "@storybook/react-native": "5.3.25", + "@types/jest": "^26.0.24", + "@types/lodash": "^4.14.171", + "@types/react": "^17.0.14", + "@types/react-native": "^0.62.7", + "@types/react-native-config-reader": "^4.1.0", + "@types/react-native-platform-touchable": "^1.1.2", + "@types/react-native-scrollable-tab-view": "^0.10.2", + "@types/react-redux": "^7.1.18", + "@types/react-test-renderer": "^17.0.1", + "@typescript-eslint/eslint-plugin": "^4.28.3", + "@typescript-eslint/parser": "^4.28.5", + "axios": "0.21.1", + "babel-jest": "^27.0.6", + "babel-plugin-transform-remove-console": "^6.9.4", + "codecov": "3.8.2", + "detox": "18.17.0", + "eslint": "^7.31.0", + "eslint-config-prettier": "^8.3.0", + "eslint-plugin-import": "2.22.0", + "eslint-plugin-jsx-a11y": "6.3.1", + "eslint-plugin-react": "7.20.3", + "eslint-plugin-react-native": "3.8.1", + "husky": "^6.0.0", + "identity-obj-proxy": "^3.0.0", + "jest": "^27.0.6", + "jest-cli": "^27.0.6", + "metro-react-native-babel-preset": "^0.64.0", + "mocha": "9.0.1", + "otp.js": "1.2.0", + "patch-package": "6.4.7", + "prettier": "^2.3.2", + "react-dom": "17.0.1", + "react-test-renderer": "17.0.1", + "reactotron-redux": "3.1.3", + "reactotron-redux-saga": "4.2.3", + "typescript": "^4.3.5" + }, + "jest": { + "testPathIgnorePatterns": [ + "e2e", + "node_modules" + ], + "transformIgnorePatterns": [ + "node_modules/(?!(jest-)?@?react-native|@react-native-community|@react-navigation)" + ], + "preset": "react-native", + "coverageDirectory": "./coverage/", + "collectCoverage": true, + "moduleNameMapper": { + ".+\\.(css|styl|less|sass|scss)$": "identity-obj-proxy", + ".+\\.(jpg|jpeg|png|gif|eot|otf|webp|svg|ttf|woff|woff2|mp4|webm|wav|mp3|m4a|aac|oga)$": "<rootDir>/__mocks__/fileMock.js" + }, + "transform": { + "^.+\\.js$": "<rootDir>/node_modules/react-native/jest/preprocessor.js" + } + }, + "snyk": true, + "engines": { + "node": ">=8.x", + "npm": ">=4.x" + }, + "detox": { + "runner-config": "e2e/.mocharc.json", + "specs": "e2e/tests", + "configurations": { + "ios.sim.debug": { + "binaryPath": "ios/build/Build/Products/Debug-iphonesimulator/Rocket.Chat Experimental.app", + "build": "xcodebuild -workspace ios/RocketChatRN.xcworkspace -scheme RocketChatRN -configuration Debug -sdk iphonesimulator -derivedDataPath ios/build", + "type": "ios.simulator", + "device": { + "type": "iPhone 11 Pro" + } + }, + "ios.sim.release": { + "binaryPath": "ios/build/Build/Products/Release-iphonesimulator/Rocket.Chat Experimental.app", + "build": "xcodebuild -workspace ios/RocketChatRN.xcworkspace -scheme RocketChatRN -configuration Release -sdk iphonesimulator -derivedDataPath ios/build", + "type": "ios.simulator", + "device": { + "type": "iPhone 11 Pro" + }, + "artifacts": { + "plugins": { + "screenshot": { + "enabled": true, + "shouldTakeAutomaticSnapshots": true, + "keepOnlyFailedTestsArtifacts": true, + "takeWhen": { + "testStart": true, + "testDone": true, + "appNotReady": true + } + } + } + } + } + } + } } diff --git a/storybook/stories/Avatar.js b/storybook/stories/Avatar.js index 9943f832e3..c444b5cd0f 100644 --- a/storybook/stories/Avatar.js +++ b/storybook/stories/Avatar.js @@ -19,22 +19,9 @@ const _theme = 'light'; const stories = storiesOf('Avatar', module); -stories.add('Avatar by text', () => ( - <Avatar - text='Avatar' - server={server} - size={56} - /> -)); +stories.add('Avatar by text', () => <Avatar text='Avatar' server={server} size={56} />); -stories.add('Avatar by roomId', () => ( - <Avatar - type='p' - rid='devWBbYr7inwupPqK' - server={server} - size={56} - /> -)); +stories.add('Avatar by roomId', () => <Avatar type='p' rid='devWBbYr7inwupPqK' server={server} size={56} />); stories.add('Avatar by url', () => ( <Avatar @@ -44,68 +31,23 @@ stories.add('Avatar by url', () => ( /> )); -stories.add('Avatar by path', () => ( - <Avatar - avatar='/avatar/diego.mello' - server={server} - size={56} - /> -)); +stories.add('Avatar by path', () => <Avatar avatar='/avatar/diego.mello' server={server} size={56} />); stories.add('With ETag', () => ( - <Avatar - type='d' - text='djorkaeff.alexandre' - avatarETag='5ag8KffJcZj9m5rCv' - server={server} - size={56} - /> + <Avatar type='d' text='djorkaeff.alexandre' avatarETag='5ag8KffJcZj9m5rCv' server={server} size={56} /> )); -stories.add('Without ETag', () => ( - <Avatar - type='d' - text='djorkaeff.alexandre' - server={server} - size={56} - /> -)); +stories.add('Without ETag', () => <Avatar type='d' text='djorkaeff.alexandre' server={server} size={56} />); stories.add('Emoji', () => ( - <Avatar - emoji='troll' - getCustomEmoji={() => ({ name: 'troll', extension: 'jpg' })} - server={server} - size={56} - /> + <Avatar emoji='troll' getCustomEmoji={() => ({ name: 'troll', extension: 'jpg' })} server={server} size={56} /> )); -stories.add('Direct', () => ( - <Avatar - text='diego.mello' - server={server} - type='d' - size={56} - /> -)); +stories.add('Direct', () => <Avatar text='diego.mello' server={server} type='d' size={56} />); -stories.add('Channel', () => ( - <Avatar - text='general' - server={server} - type='c' - size={56} - /> -)); +stories.add('Channel', () => <Avatar text='general' server={server} type='c' size={56} />); -stories.add('Touchable', () => ( - <Avatar - text='Avatar' - server={server} - onPress={() => console.log('Pressed!')} - size={56} - /> -)); +stories.add('Touchable', () => <Avatar text='Avatar' server={server} onPress={() => console.log('Pressed!')} size={56} />); stories.add('Static', () => ( <Avatar @@ -116,51 +58,16 @@ stories.add('Static', () => ( /> )); -stories.add('Avatar by roomId', () => ( - <Avatar - type='p' - rid='devWBbYr7inwupPqK' - server={server} - size={56} - /> -)); +stories.add('Avatar by roomId', () => <Avatar type='p' rid='devWBbYr7inwupPqK' server={server} size={56} />); -stories.add('Custom borderRadius', () => ( - <Avatar - text='Avatar' - server={server} - borderRadius={28} - size={56} - /> -)); +stories.add('Custom borderRadius', () => <Avatar text='Avatar' server={server} borderRadius={28} size={56} />); stories.add('Children', () => ( - <Avatar - text='Avatar' - server={server} - size={56} - > - <Status - size={24} - style={[sharedStyles.status, styles.status]} - theme={_theme} - /> + <Avatar text='Avatar' server={server} size={56}> + <Status size={24} style={[sharedStyles.status, styles.status]} theme={_theme} /> </Avatar> )); -stories.add('Wrong server', () => ( - <Avatar - text='Avatar' - server='https://google.com' - size={56} - /> -)); +stories.add('Wrong server', () => <Avatar text='Avatar' server='https://google.com' size={56} />); -stories.add('Custom style', () => ( - <Avatar - text='Avatar' - server={server} - size={56} - style={styles.custom} - /> -)); +stories.add('Custom style', () => <Avatar text='Avatar' server={server} size={56} style={styles.custom} />); diff --git a/storybook/stories/HeaderButtons.js b/storybook/stories/HeaderButtons.js index a0d8cd97f6..12b9c34b4f 100644 --- a/storybook/stories/HeaderButtons.js +++ b/storybook/stories/HeaderButtons.js @@ -10,11 +10,7 @@ import { ThemeContext } from '../../app/theme'; const stories = storiesOf('Header Buttons', module); const HeaderExample = ({ left, right }) => ( - <Header - headerLeft={left} - headerTitle={() => <View style={{ flex: 1 }} />} - headerRight={right} - /> + <Header headerLeft={left} headerTitle={() => <View style={{ flex: 1 }} />} headerRight={right} /> ); stories.add('title', () => ( @@ -94,9 +90,7 @@ stories.add('badge', () => ( )); const ThemeStory = ({ theme }) => ( - <ThemeContext.Provider - value={{ theme }} - > + <ThemeContext.Provider value={{ theme }}> <HeaderExample left={() => ( <HeaderButton.Container left> @@ -123,40 +117,12 @@ stories.add('themes', () => ( stories.add('common', () => ( <> - <HeaderExample - left={() => ( - <HeaderButton.Drawer /> - )} - /> - <HeaderExample - left={() => ( - <HeaderButton.CloseModal /> - )} - /> - <HeaderExample - left={() => ( - <HeaderButton.CancelModal /> - )} - /> - <HeaderExample - right={() => ( - <HeaderButton.More /> - )} - /> - <HeaderExample - right={() => ( - <HeaderButton.Download /> - )} - /> - <HeaderExample - right={() => ( - <HeaderButton.Preferences /> - )} - /> - <HeaderExample - right={() => ( - <HeaderButton.Legal /> - )} - /> + <HeaderExample left={() => <HeaderButton.Drawer />} /> + <HeaderExample left={() => <HeaderButton.CloseModal />} /> + <HeaderExample left={() => <HeaderButton.CancelModal />} /> + <HeaderExample right={() => <HeaderButton.More />} /> + <HeaderExample right={() => <HeaderButton.Download />} /> + <HeaderExample right={() => <HeaderButton.Preferences />} /> + <HeaderExample right={() => <HeaderButton.Legal />} /> </> )); diff --git a/storybook/stories/List.js b/storybook/stories/List.js index b445a1972a..5b7ac26120 100644 --- a/storybook/stories/List.js +++ b/storybook/stories/List.js @@ -42,12 +42,11 @@ stories.add('pressable', () => ( <List.Separator /> <List.Item title='Press me' onPress={() => alert('Hi there!')} translateTitle={false} /> <List.Separator /> - <List.Item title={'I\'m disabled'} onPress={() => alert('Hi there!')} disabled translateTitle={false} /> + <List.Item title={"I'm disabled"} onPress={() => alert('Hi there!')} disabled translateTitle={false} /> <List.Separator /> </List.Container> )); - stories.add('header', () => ( <List.Container> <List.Header title='Chats' /> @@ -177,9 +176,7 @@ const ListFull = () => ( ); const ThemeStory = ({ theme }) => ( - <ThemeContext.Provider - value={{ theme }} - > + <ThemeContext.Provider value={{ theme }}> <ListFull /> </ThemeContext.Provider> ); @@ -189,9 +186,7 @@ stories.add('with dark theme', () => <ThemeStory theme='dark' />); stories.add('with black theme', () => <ThemeStory theme='black' />); const FontStory = ({ fontScale }) => ( - <DimensionsContext.Provider - value={{ fontScale }} - > + <DimensionsContext.Provider value={{ fontScale }}> <ListFull /> </DimensionsContext.Provider> ); diff --git a/storybook/stories/Markdown.js b/storybook/stories/Markdown.js index bffd5a2aa9..4f4cb2955c 100644 --- a/storybook/stories/Markdown.js +++ b/storybook/stories/Markdown.js @@ -6,7 +6,6 @@ import { storiesOf } from '@storybook/react-native'; import Markdown from '../../app/containers/markdown'; import { themes } from '../../app/constants/colors'; - const theme = 'light'; const styles = StyleSheet.create({ @@ -22,7 +21,8 @@ const styles = StyleSheet.create({ }); const baseUrl = 'https://open.rocket.chat'; -const longText = 'Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua.'; +const longText = + 'Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua.'; const lineBreakText = `a b c @@ -33,7 +33,7 @@ d e`; const sequentialEmptySpacesText = 'a b c'; -const getCustomEmoji = (content) => { +const getCustomEmoji = content => { const customEmoji = { marioparty: { name: content, extension: 'gif' }, react_rocket: { name: content, extension: 'png' }, @@ -47,55 +47,24 @@ const stories = storiesOf('Markdown', module); stories.add('Text', () => ( <View style={styles.container}> <Markdown msg='This is Rocket.Chat' theme={theme} /> - <Markdown - msg={longText} - theme={theme} - /> - <Markdown - msg={lineBreakText} - theme={theme} - /> - <Markdown - msg={sequentialEmptySpacesText} - theme={theme} - /> - <Markdown - msg='Strong emphasis, aka bold, with **asterisks** or __underscores__' - theme={theme} - /> + <Markdown msg={longText} theme={theme} /> + <Markdown msg={lineBreakText} theme={theme} /> + <Markdown msg={sequentialEmptySpacesText} theme={theme} /> + <Markdown msg='Strong emphasis, aka bold, with **asterisks** or __underscores__' theme={theme} /> </View> )); stories.add('Edited', () => ( <View style={styles.container}> - <Markdown - msg='This is edited' - theme={theme} - isEdited - /> + <Markdown msg='This is edited' theme={theme} isEdited /> </View> )); stories.add('Preview', () => ( <View style={styles.container}> - <Markdown - msg={longText} - theme={theme} - numberOfLines={1} - preview - /> - <Markdown - msg={lineBreakText} - theme={theme} - numberOfLines={1} - preview - /> - <Markdown - msg={sequentialEmptySpacesText} - theme={theme} - numberOfLines={1} - preview - /> + <Markdown msg={longText} theme={theme} numberOfLines={1} preview /> + <Markdown msg={lineBreakText} theme={theme} numberOfLines={1} preview /> + <Markdown msg={sequentialEmptySpacesText} theme={theme} numberOfLines={1} preview /> <Markdown msg='@rocket.cat @name1 @all @here @unknown #general #unknown' theme={theme} @@ -110,13 +79,7 @@ stories.add('Preview', () => ( channels={[{ _id: '123', name: 'test-channel' }]} username='rocket.cat' /> - <Markdown - msg='Testing: 😃 :+1: :marioparty:' - getCustomEmoji={getCustomEmoji} - theme={theme} - numberOfLines={1} - preview - /> + <Markdown msg='Testing: 😃 :+1: :marioparty:' getCustomEmoji={getCustomEmoji} theme={theme} numberOfLines={1} preview /> </View> )); @@ -150,11 +113,7 @@ stories.add('Mentions', () => ( stories.add('Hashtag', () => ( <View style={styles.container}> - <Markdown - msg='#test-channel #unknown' - theme={theme} - channels={[{ _id: '123', name: 'test-channel' }]} - /> + <Markdown msg='#test-channel #unknown' theme={theme} channels={[{ _id: '123', name: 'test-channel' }]} /> </View> )); @@ -168,12 +127,7 @@ stories.add('Emoji', () => ( getCustomEmoji={getCustomEmoji} baseUrl={baseUrl} /> - <Markdown - msg='😃 :+1: :marioparty:' - theme={theme} - getCustomEmoji={getCustomEmoji} - baseUrl={baseUrl} - /> + <Markdown msg='😃 :+1: :marioparty:' theme={theme} getCustomEmoji={getCustomEmoji} baseUrl={baseUrl} /> </View> )); @@ -194,7 +148,6 @@ stories.add('Links', () => ( </View> )); - stories.add('Image', () => ( <View style={styles.container}> <Markdown msg='![alt text](https://play.google.com/intl/en_us/badges/images/badge_new.png)' theme={theme} /> @@ -203,39 +156,18 @@ stories.add('Image', () => ( stories.add('Headers', () => ( <View style={styles.container}> - <Markdown - msg='# Header 1' - theme={theme} - /> - <Markdown - msg='## Header 2' - theme={theme} - /> - <Markdown - msg='### Header 3' - theme={theme} - /> - <Markdown - msg='#### Header 4' - theme={theme} - /> - <Markdown - msg='##### Header 5' - theme={theme} - /> - <Markdown - msg='###### Header 6' - theme={theme} - /> + <Markdown msg='# Header 1' theme={theme} /> + <Markdown msg='## Header 2' theme={theme} /> + <Markdown msg='### Header 3' theme={theme} /> + <Markdown msg='#### Header 4' theme={theme} /> + <Markdown msg='##### Header 5' theme={theme} /> + <Markdown msg='###### Header 6' theme={theme} /> </View> )); stories.add('Code', () => ( <View style={styles.container}> - <Markdown - msg='This is `inline code`' - theme={theme} - /> + <Markdown msg='This is `inline code`' theme={theme} /> <Markdown msg='Inline `code` has `back-ticks around` it. ``` @@ -248,14 +180,8 @@ Code block stories.add('Lists', () => ( <View style={styles.container}> - <Markdown - msg={'* Open Source\n* Rocket.Chat\n - nodejs\n - ReactNative'} - theme={theme} - /> - <Markdown - msg={'1. Open Source\n2. Rocket.Chat'} - theme={theme} - /> + <Markdown msg={'* Open Source\n* Rocket.Chat\n - nodejs\n - ReactNative'} theme={theme} /> + <Markdown msg={'1. Open Source\n2. Rocket.Chat'} theme={theme} /> </View> )); diff --git a/storybook/stories/Message.js b/storybook/stories/Message.js index 97c97e77ae..30db507b05 100644 --- a/storybook/stories/Message.js +++ b/storybook/stories/Message.js @@ -14,8 +14,7 @@ import { store } from './index'; const _theme = 'light'; -const styles = StyleSheet.create({ -}); +const styles = StyleSheet.create({}); const user = { id: 'y8bd77ptZswPj3EW8', @@ -28,9 +27,10 @@ const author = { }; const baseUrl = 'https://open.rocket.chat'; const date = new Date(2017, 10, 10, 10); -const longText = 'Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua.'; +const longText = + 'Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua.'; -const getCustomEmoji = (content) => { +const getCustomEmoji = content => { const customEmoji = { marioparty: { name: content, extension: 'gif' }, react_rocket: { name: content, extension: 'png' }, @@ -53,8 +53,7 @@ export const MessageDecorator = story => ( onDiscussionPress: () => {}, onReactionLongPress: () => {}, threadBadgeColor: themes.light.tunreadColor - }} - > + }}> {story()} </MessageContext.Provider> ); @@ -105,9 +104,7 @@ stories.add('Grouped messages', () => ( </> )); -stories.add('Without header', () => ( - <Message msg='Message' isHeader={false} /> -)); +stories.add('Without header', () => <Message msg='Message' isHeader={false} />); stories.add('With alias', () => ( <> @@ -123,54 +120,34 @@ stories.add('With alias', () => ( </> )); -stories.add('Edited', () => ( - <Message msg='Message' edited /> -)); +stories.add('Edited', () => <Message msg='Message' edited />); stories.add('Encrypted', () => ( <> - <Message - msg='Message' - type='e2e' - /> - <Message - msg='Message Encrypted without Header' - isHeader={false} - type='e2e' - /> + <Message msg='Message' type='e2e' /> + <Message msg='Message Encrypted without Header' isHeader={false} type='e2e' /> <Message msg='Message Encrypted with Reactions' - reactions={[{ - emoji: ':joy:', - usernames: [user.username] - }, { - emoji: ':marioparty:', - usernames: [user.username] - }, { - emoji: ':thinking:', - usernames: [user.username] - }]} + reactions={[ + { + emoji: ':joy:', + usernames: [user.username] + }, + { + emoji: ':marioparty:', + usernames: [user.username] + }, + { + emoji: ':thinking:', + usernames: [user.username] + } + ]} onReactionPress={() => {}} type='e2e' /> - <Message - msg='Thread reply encrypted' - tmid='1' - tmsg='Thread with emoji :) :joy:' - isThreadReply - type='e2e' - /> - <Message - msg='Temp message encrypted' - status={messagesStatus.TEMP} - isTemp - type='e2e' - /> - <Message - msg='Message Edited encrypted' - edited - type='e2e' - /> + <Message msg='Thread reply encrypted' tmid='1' tmsg='Thread with emoji :) :joy:' isThreadReply type='e2e' /> + <Message msg='Temp message encrypted' status={messagesStatus.TEMP} isTemp type='e2e' /> + <Message msg='Message Edited encrypted' edited type='e2e' /> <Message hasError msg='This message has error and is encrypted' @@ -178,19 +155,8 @@ stories.add('Encrypted', () => ( onErrorPress={() => alert('Error pressed')} type='e2e' /> - <Message - msg='Read Receipt encrypted with Header' - isReadReceiptEnabled - read - type='e2e' - /> - <Message - msg='Read Receipt encrypted without Header' - isReadReceiptEnabled - read - isHeader={false} - type='e2e' - /> + <Message msg='Read Receipt encrypted with Header' isReadReceiptEnabled read type='e2e' /> + <Message msg='Read Receipt encrypted without Header' isReadReceiptEnabled read isHeader={false} type='e2e' /> </> )); @@ -211,10 +177,7 @@ stories.add('Lists', () => ( )); stories.add('Static avatar', () => ( - <Message - msg='Message' - avatar='https://pbs.twimg.com/profile_images/1016397063649660929/14EIApTi_400x400.jpg' - /> + <Message msg='Message' avatar='https://pbs.twimg.com/profile_images/1016397063649660929/14EIApTi_400x400.jpg' /> )); stories.add('Full name', () => ( @@ -233,33 +196,47 @@ stories.add('Mentions', () => ( <> <Message msg='@rocket.cat @diego.mello @all @here #general' - mentions={[{ - username: 'rocket.cat' - }, { - username: 'diego.mello' - }, { - username: 'all' - }, { - username: 'here' - }]} - channels={[{ - name: 'general' - }]} + mentions={[ + { + username: 'rocket.cat' + }, + { + username: 'diego.mello' + }, + { + username: 'all' + }, + { + username: 'here' + } + ]} + channels={[ + { + name: 'general' + } + ]} /> <Message msg='@rocket.cat Lorem ipsum dolor @diego.mello sit amet, @all consectetur adipiscing @here elit, sed do eiusmod tempor #general incididunt ut labore et dolore magna aliqua.' - mentions={[{ - username: 'rocket.cat' - }, { - username: 'diego.mello' - }, { - username: 'all' - }, { - username: 'here' - }]} - channels={[{ - name: 'general' - }]} + mentions={[ + { + username: 'rocket.cat' + }, + { + username: 'diego.mello' + }, + { + username: 'all' + }, + { + username: 'here' + } + ]} + channels={[ + { + name: 'general' + } + ]} /> </> )); @@ -275,56 +252,68 @@ stories.add('Emojis', () => ( </> )); -stories.add('Time format', () => ( - <Message msg='Testing' timeFormat='DD MMMM YYYY' /> -)); +stories.add('Time format', () => <Message msg='Testing' timeFormat='DD MMMM YYYY' />); stories.add('Reactions', () => ( <> <Message msg='Reactions' - reactions={[{ - emoji: ':joy:', - usernames: [user.username] - }, { - emoji: ':marioparty:', - usernames: new Array(99) - }, { - emoji: ':thinking:', - usernames: new Array(999) - }, { - emoji: ':thinking:', - usernames: new Array(9999) - }]} + reactions={[ + { + emoji: ':joy:', + usernames: [user.username] + }, + { + emoji: ':marioparty:', + usernames: new Array(99) + }, + { + emoji: ':thinking:', + usernames: new Array(999) + }, + { + emoji: ':thinking:', + usernames: new Array(9999) + } + ]} onReactionPress={() => {}} /> <Message msg='Multiple Reactions' - reactions={[{ - emoji: ':marioparty:', - usernames: [user.username] - }, { - emoji: ':react_rocket:', - usernames: [user.username] - }, { - emoji: ':nyan_rocket:', - usernames: [user.username] - }, { - emoji: ':heart:', - usernames: [user.username] - }, { - emoji: ':dog:', - usernames: [user.username] - }, { - emoji: ':grinning:', - usernames: [user.username] - }, { - emoji: ':grimacing:', - usernames: [user.username] - }, { - emoji: ':grin:', - usernames: [user.username] - }]} + reactions={[ + { + emoji: ':marioparty:', + usernames: [user.username] + }, + { + emoji: ':react_rocket:', + usernames: [user.username] + }, + { + emoji: ':nyan_rocket:', + usernames: [user.username] + }, + { + emoji: ':heart:', + usernames: [user.username] + }, + { + emoji: ':dog:', + usernames: [user.username] + }, + { + emoji: ':grinning:', + usernames: [user.username] + }, + { + emoji: ':grimacing:', + usernames: [user.username] + }, + { + emoji: ':grin:', + usernames: [user.username] + } + ]} onReactionPress={() => {}} /> </> @@ -365,18 +354,22 @@ stories.add('Date and Unread separators', () => ( stories.add('With image', () => ( <> <Message - attachments={[{ - title: 'This is a title', - description: 'This is a description', - image_url: '/dummypath' - }]} + attachments={[ + { + title: 'This is a title', + description: 'This is a description', + image_url: '/dummypath' + } + ]} /> <Message - attachments={[{ - title: 'This is a title', - description: 'This is a description :nyan_rocket:', - image_url: '/dummypath' - }]} + attachments={[ + { + title: 'This is a title', + description: 'This is a description :nyan_rocket:', + image_url: '/dummypath' + } + ]} /> </> )); @@ -384,17 +377,21 @@ stories.add('With image', () => ( stories.add('With video', () => ( <> <Message - attachments={[{ - title: 'This is a title', - description: 'This is a description :nyan_rocket:', - video_url: '/dummypath' - }]} + attachments={[ + { + title: 'This is a title', + description: 'This is a description :nyan_rocket:', + video_url: '/dummypath' + } + ]} /> <Message - attachments={[{ - title: 'This is a title', - video_url: '/dummypath' - }]} + attachments={[ + { + title: 'This is a title', + video_url: '/dummypath' + } + ]} /> </> )); @@ -402,33 +399,41 @@ stories.add('With video', () => ( stories.add('With audio', () => ( <> <Message - attachments={[{ - title: 'This is a title', - description: 'This is a description :nyan_rocket:', - audio_url: '/dummypath' - }]} + attachments={[ + { + title: 'This is a title', + description: 'This is a description :nyan_rocket:', + audio_url: '/dummypath' + } + ]} /> <Message msg='First message' isHeader={false} /> <Message - attachments={[{ - title: 'This is a title', - description: 'This is a description', - audio_url: '/dummypath' - }]} + attachments={[ + { + title: 'This is a title', + description: 'This is a description', + audio_url: '/dummypath' + } + ]} isHeader={false} /> <Message - attachments={[{ - title: 'This is a title', - audio_url: '/dummypath' - }]} + attachments={[ + { + title: 'This is a title', + audio_url: '/dummypath' + } + ]} isHeader={false} /> <Message - attachments={[{ - title: 'This is a title', - audio_url: '/dummypath' - }]} + attachments={[ + { + title: 'This is a title', + audio_url: '/dummypath' + } + ]} isHeader={false} /> </> @@ -437,16 +442,20 @@ stories.add('With audio', () => ( stories.add('With file', () => ( <> <Message - attachments={[{ - text: 'File.pdf', - description: 'This is a description :nyan_rocket:' - }]} + attachments={[ + { + text: 'File.pdf', + description: 'This is a description :nyan_rocket:' + } + ]} /> <Message - attachments={[{ - text: 'File.pdf', - description: 'This is a description :nyan_rocket:' - }]} + attachments={[ + { + text: 'File.pdf', + description: 'This is a description :nyan_rocket:' + } + ]} isHeader={false} /> </> @@ -456,97 +465,56 @@ stories.add('Message with reply', () => ( <> <Message msg="I'm fine!" - attachments={[{ - author_name: 'I\'m a very long long title and I\'ll break', - ts: date, - timeFormat: 'LT', - text: 'How are you?' - }]} + attachments={[ + { + author_name: "I'm a very long long title and I'll break", + ts: date, + timeFormat: 'LT', + text: 'How are you?' + } + ]} /> <Message msg="I'm fine!" - attachments={[{ - author_name: 'rocket.cat', - ts: date, - timeFormat: 'LT', - text: 'How are you? :nyan_rocket:' - }]} + attachments={[ + { + author_name: 'rocket.cat', + ts: date, + timeFormat: 'LT', + text: 'How are you? :nyan_rocket:' + } + ]} /> </> )); stories.add('Message with read receipt', () => ( <> - <Message - msg="I'm fine!" - isReadReceiptEnabled - unread - /> - <Message - msg="I'm fine!" - isReadReceiptEnabled - unread - isHeader={false} - /> - <Message - msg="I'm fine!" - isReadReceiptEnabled - read - /> - <Message - msg="I'm fine!" - isReadReceiptEnabled - read - isHeader={false} - /> + <Message msg="I'm fine!" isReadReceiptEnabled unread /> + <Message msg="I'm fine!" isReadReceiptEnabled unread isHeader={false} /> + <Message msg="I'm fine!" isReadReceiptEnabled read /> + <Message msg="I'm fine!" isReadReceiptEnabled read isHeader={false} /> </> )); stories.add('Message with thread', () => ( <> - <Message - msg='How are you?' - tcount={1} - tlm={date} - /> - <Message - msg="I'm fine!" - tmid='1' - tmsg='How are you?' - isThreadReply - /> - <Message - msg="I'm fine!" - tmid='1' - tmsg='Thread with emoji :) :joy:' - isThreadReply - /> - <Message - msg="I'm fine!" - tmid='1' - tmsg={longText} - isThreadReply - /> - <Message - msg={longText} - tmid='1' - tmsg='How are you?' - isThreadReply - /> - <Message - msg={longText} - tmid='1' - tmsg={longText} - isThreadReply - /> + <Message msg='How are you?' tcount={1} tlm={date} /> + <Message msg="I'm fine!" tmid='1' tmsg='How are you?' isThreadReply /> + <Message msg="I'm fine!" tmid='1' tmsg='Thread with emoji :) :joy:' isThreadReply /> + <Message msg="I'm fine!" tmid='1' tmsg={longText} isThreadReply /> + <Message msg={longText} tmid='1' tmsg='How are you?' isThreadReply /> + <Message msg={longText} tmid='1' tmsg={longText} isThreadReply /> <Message tmid='1' tmsg='Thread with attachment' - attachments={[{ - title: 'This is a title', - description: 'This is a description :nyan_rocket:', - audio_url: '/file-upload/c4wcNhrbXJLBvAJtN/1535569819516.aac' - }]} + attachments={[ + { + title: 'This is a title', + description: 'This is a description :nyan_rocket:', + audio_url: '/file-upload/c4wcNhrbXJLBvAJtN/1535569819516.aac' + } + ]} isThreadReply /> </> @@ -554,27 +522,17 @@ stories.add('Message with thread', () => ( stories.add('Sequential thread messages following thread button', () => ( <> + <Message msg='How are you?' tcount={1} tlm={date} /> + <Message msg="I'm fine!" tmid='1' isThreadSequential /> + <Message msg={longText} tmid='1' isThreadSequential /> <Message - msg='How are you?' - tcount={1} - tlm={date} - /> - <Message - msg="I'm fine!" - tmid='1' - isThreadSequential - /> - <Message - msg={longText} - tmid='1' - isThreadSequential - /> - <Message - attachments={[{ - title: 'This is a title', - description: 'This is a description', - audio_url: '/file-upload/c4wcNhrbXJLBvAJtN/1535569819516.aac' - }]} + attachments={[ + { + title: 'This is a title', + description: 'This is a description', + audio_url: '/file-upload/c4wcNhrbXJLBvAJtN/1535569819516.aac' + } + ]} tmid='1' isThreadSequential /> @@ -583,28 +541,17 @@ stories.add('Sequential thread messages following thread button', () => ( stories.add('Sequential thread messages following thread reply', () => ( <> + <Message msg="I'm fine!" tmid='1' tmsg='How are you?' isThreadReply /> + <Message msg='Cool!' tmid='1' isThreadSequential /> + <Message msg={longText} tmid='1' isThreadSequential /> <Message - msg="I'm fine!" - tmid='1' - tmsg='How are you?' - isThreadReply - /> - <Message - msg='Cool!' - tmid='1' - isThreadSequential - /> - <Message - msg={longText} - tmid='1' - isThreadSequential - /> - <Message - attachments={[{ - title: 'This is a title', - description: 'This is a description', - audio_url: '/file-upload/c4wcNhrbXJLBvAJtN/1535569819516.aac' - }]} + attachments={[ + { + title: 'This is a title', + description: 'This is a description', + audio_url: '/file-upload/c4wcNhrbXJLBvAJtN/1535569819516.aac' + } + ]} tmid='1' isThreadSequential /> @@ -613,65 +560,52 @@ stories.add('Sequential thread messages following thread reply', () => ( stories.add('Discussion', () => ( <> - <Message - type='discussion-created' - drid='aisduhasidhs' - dcount={null} - dlm={null} - msg='This is a discussion' - /> - <Message - type='discussion-created' - drid='aisduhasidhs' - dcount={1} - dlm={date} - msg='This is a discussion' - /> - <Message - type='discussion-created' - drid='aisduhasidhs' - dcount={10} - dlm={date} - msg={longText} - /> - <Message - type='discussion-created' - drid='aisduhasidhs' - dcount={1000} - dlm={date} - msg='This is a discussion' - /> + <Message type='discussion-created' drid='aisduhasidhs' dcount={null} dlm={null} msg='This is a discussion' /> + <Message type='discussion-created' drid='aisduhasidhs' dcount={1} dlm={date} msg='This is a discussion' /> + <Message type='discussion-created' drid='aisduhasidhs' dcount={10} dlm={date} msg={longText} /> + <Message type='discussion-created' drid='aisduhasidhs' dcount={1000} dlm={date} msg='This is a discussion' /> </> )); stories.add('URL', () => ( <> <Message - urls={[{ - url: 'https://rocket.chat', - image: 'https://rocket.chat/images/blog/post.jpg', - title: 'Rocket.Chat - Free, Open Source, Enterprise Team Chat', - description: 'Rocket.Chat is the leading open source team chat software solution. Free, unlimited and completely customizable with on-premises and SaaS cloud hosting.' - }, { - url: 'https://google.com', - title: 'Google', - description: 'Search the world\'s information, including webpages, images, videos and more. Google has many special features to help you find exactly what you\'re looking for.' - }]} - /> - <Message - urls={[{ - url: 'https://google.com', - title: 'Google', - description: 'Search the world\'s information, including webpages, images, videos and more. Google has many special features to help you find exactly what you\'re looking for.' - }]} + urls={[ + { + url: 'https://rocket.chat', + image: 'https://rocket.chat/images/blog/post.jpg', + title: 'Rocket.Chat - Free, Open Source, Enterprise Team Chat', + description: + 'Rocket.Chat is the leading open source team chat software solution. Free, unlimited and completely customizable with on-premises and SaaS cloud hosting.' + }, + { + url: 'https://google.com', + title: 'Google', + description: + "Search the world's information, including webpages, images, videos and more. Google has many special features to help you find exactly what you're looking for." + } + ]} + /> + <Message + urls={[ + { + url: 'https://google.com', + title: 'Google', + description: + "Search the world's information, including webpages, images, videos and more. Google has many special features to help you find exactly what you're looking for." + } + ]} msg='Message :nyan_rocket:' /> <Message - urls={[{ - url: 'https://google.com', - title: 'Google', - description: 'Search the world\'s information, including webpages, images, videos and more. Google has many special features to help you find exactly what you\'re looking for.' - }]} + urls={[ + { + url: 'https://google.com', + title: 'Google', + description: + "Search the world's information, including webpages, images, videos and more. Google has many special features to help you find exactly what you're looking for." + } + ]} isHeader={false} /> </> @@ -681,28 +615,36 @@ stories.add('Custom fields', () => ( <> <Message msg='Message' - attachments={[{ - author_name: 'rocket.cat', - ts: date, - timeFormat: 'LT', - text: 'Custom fields', - fields: [{ - title: 'Field 1', - value: 'Value 1' - }, { - title: 'Field 2', - value: 'Value 2' - }, { - title: 'Field 3', - value: 'Value 3' - }, { - title: 'Field 4', - value: 'Value 4' - }, { - title: 'Field 5', - value: 'Value 5' - }] - }]} + attachments={[ + { + author_name: 'rocket.cat', + ts: date, + timeFormat: 'LT', + text: 'Custom fields', + fields: [ + { + title: 'Field 1', + value: 'Value 1' + }, + { + title: 'Field 2', + value: 'Value 2' + }, + { + title: 'Field 3', + value: 'Value 3' + }, + { + title: 'Field 4', + value: 'Value 4' + }, + { + title: 'Field 5', + value: 'Value 5' + } + ] + } + ]} /> </> )); @@ -710,99 +652,119 @@ stories.add('Custom fields', () => ( stories.add('Two short custom fields with markdown', () => ( <Message msg='Message' - attachments={[{ - author_name: 'rocket.cat', - ts: date, - timeFormat: 'LT', - text: 'Custom fields', - fields: [{ - title: 'Field 1', - value: 'Value 1', - short: true - }, { - title: 'Field 2', - value: '[Value 2](https://google.com/)', - short: true - }] - }, { - author_name: 'rocket.cat', - ts: date, - timeFormat: 'LT', - text: 'Custom fields 2', - fields: [{ - title: 'Field 1', - value: 'Value 1', - short: true - }, { - title: 'Field 2', - value: '**Value 2**', - short: true - }] - }]} + attachments={[ + { + author_name: 'rocket.cat', + ts: date, + timeFormat: 'LT', + text: 'Custom fields', + fields: [ + { + title: 'Field 1', + value: 'Value 1', + short: true + }, + { + title: 'Field 2', + value: '[Value 2](https://google.com/)', + short: true + } + ] + }, + { + author_name: 'rocket.cat', + ts: date, + timeFormat: 'LT', + text: 'Custom fields 2', + fields: [ + { + title: 'Field 1', + value: 'Value 1', + short: true + }, + { + title: 'Field 2', + value: '**Value 2**', + short: true + } + ] + } + ]} /> )); stories.add('Colored attachments', () => ( <Message - attachments={[{ - color: 'red', - fields: [{ - title: 'Field 1', - value: 'Value 1', - short: true - }, { - title: 'Field 2', - value: 'Value 2', - short: true - }] - }, { - color: 'green', - fields: [{ - title: 'Field 1', - value: 'Value 1', - short: true - }, { - title: 'Field 2', - value: 'Value 2', - short: true - }] - }, { - color: 'blue', - fields: [{ - title: 'Field 1', - value: 'Value 1', - short: true - }, { - title: 'Field 2', - value: 'Value 2', - short: true - }] - }]} + attachments={[ + { + color: 'red', + fields: [ + { + title: 'Field 1', + value: 'Value 1', + short: true + }, + { + title: 'Field 2', + value: 'Value 2', + short: true + } + ] + }, + { + color: 'green', + fields: [ + { + title: 'Field 1', + value: 'Value 1', + short: true + }, + { + title: 'Field 2', + value: 'Value 2', + short: true + } + ] + }, + { + color: 'blue', + fields: [ + { + title: 'Field 1', + value: 'Value 1', + short: true + }, + { + title: 'Field 2', + value: 'Value 2', + short: true + } + ] + } + ]} /> )); -stories.add('Broadcast', () => ( - <Message msg='Broadcasted message' broadcast replyBroadcast={() => alert('broadcast!')} /> -)); +stories.add('Broadcast', () => <Message msg='Broadcasted message' broadcast replyBroadcast={() => alert('broadcast!')} />); -stories.add('Archived', () => ( - <Message msg='This message is inside an archived room' archived /> -)); +stories.add('Archived', () => <Message msg='This message is inside an archived room' archived />); stories.add('Error', () => ( <> <Message hasError msg='This message has error' status={messagesStatus.ERROR} onErrorPress={() => alert('Error pressed')} /> - <Message hasError msg='This message has error too' status={messagesStatus.ERROR} onErrorPress={() => alert('Error pressed')} isHeader={false} /> + <Message + hasError + msg='This message has error too' + status={messagesStatus.ERROR} + onErrorPress={() => alert('Error pressed')} + isHeader={false} + /> </> )); -stories.add('Temp', () => ( - <Message msg='Temp message' status={messagesStatus.TEMP} isTemp /> -)); +stories.add('Temp', () => <Message msg='Temp message' status={messagesStatus.TEMP} isTemp />); -stories.add('Editing', () => ( - <Message msg='Message being edited' editing /> -)); +stories.add('Editing', () => <Message msg='Message being edited' editing />); stories.add('System messages', () => ( <> @@ -812,30 +774,22 @@ stories.add('System messages', () => ( msg='New name' type='message_pinned' isInfo - attachments={[{ - author_name: 'rocket.cat', - ts: date, - timeFormat: 'LT', - text: 'First message' - }]} + attachments={[ + { + author_name: 'rocket.cat', + ts: date, + timeFormat: 'LT', + text: 'First message' + } + ]} /> <Message type='ul' isInfo /> <Message msg='rocket.cat' type='ru' isInfo /> <Message msg='rocket.cat' type='au' isInfo /> <Message msg='rocket.cat' type='user-muted' isInfo /> <Message msg='rocket.cat' type='user-unmuted' isInfo /> - <Message - msg='rocket.cat' - role='admin' - type='subscription-role-added' - isInfo - /> - <Message - msg='rocket.cat' - role='admin' - type='subscription-role-removed' - isInfo - /> + <Message msg='rocket.cat' role='admin' type='subscription-role-added' isInfo /> + <Message msg='rocket.cat' role='admin' type='subscription-role-removed' isInfo /> <Message msg='New name' type='r' isInfo /> <Message msg='new description' type='room_changed_description' isInfo /> <Message msg='new announcement' type='room_changed_announcement' isInfo /> @@ -846,39 +800,38 @@ stories.add('System messages', () => ( </> )); -stories.add('Ignored', () => ( - <Message isIgnored /> -)); +stories.add('Ignored', () => <Message isIgnored />); -stories.add('Custom style', () => ( - <Message msg='Message' style={[styles.normalize, { backgroundColor: '#ddd' }]} /> -)); +stories.add('Custom style', () => <Message msg='Message' style={[styles.normalize, { backgroundColor: '#ddd' }]} />); stories.add('Show a button as attachment', () => ( <Message - attachments={[{ - text: 'Test Button', - actions: [ - { - type: 'button', - text: 'Text button', - msg: 'Response message', - msg_in_chat_window: true - } - ] - }]} + attachments={[ + { + text: 'Test Button', + actions: [ + { + type: 'button', + text: 'Text button', + msg: 'Response message', + msg_in_chat_window: true + } + ] + } + ]} /> )); stories.add('Thumbnail from server', () => ( <Message msg='this is a thumbnail' - attachments={[{ - text: 'Image text', - thumb_url: 'https://images-na.ssl-images-amazon.com/images/I/71jKxPAMFbL._AC_SL1500_.jpg', - title: 'Title', - title_link: 'https://github.com/RocketChat/Rocket.Chat.ReactNative/pull/2975' - }]} + attachments={[ + { + text: 'Image text', + thumb_url: 'https://images-na.ssl-images-amazon.com/images/I/71jKxPAMFbL._AC_SL1500_.jpg', + title: 'Title', + title_link: 'https://github.com/RocketChat/Rocket.Chat.ReactNative/pull/2975' + } + ]} /> )); - diff --git a/storybook/stories/RoomItem.js b/storybook/stories/RoomItem.js index e63466d95c..5baeb9f95f 100644 --- a/storybook/stories/RoomItem.js +++ b/storybook/stories/RoomItem.js @@ -39,21 +39,14 @@ const stories = storiesOf('Room Item', module) .addDecorator(story => <Provider store={store}>{story()}</Provider>) .addDecorator(story => <ScrollView style={{ backgroundColor: themes[_theme].backgroundColor }}>{story()}</ScrollView>); +stories.add('Basic', () => <RoomItem />); -stories.add('Basic', () => ( - <RoomItem /> -)); - -stories.add('Touch', () => ( - <RoomItem onPress={() => alert('on press')} onLongPress={() => alert('on long press')} /> -)); +stories.add('Touch', () => <RoomItem onPress={() => alert('on press')} onLongPress={() => alert('on long press')} />); stories.add('User', () => ( <> <RoomItem name='diego.mello' avatar='diego.mello' /> - <RoomItem - name={longText} - /> + <RoomItem name={longText} /> </> )); @@ -107,9 +100,7 @@ stories.add('Tag', () => ( stories.add('Last Message', () => ( <> - <RoomItem - showLastMessage - /> + <RoomItem showLastMessage /> <RoomItem showLastMessage lastMessage={{ @@ -129,27 +120,9 @@ stories.add('Last Message', () => ( }} username='diego.mello' /> - <RoomItem - showLastMessage - lastMessage={lastMessage} - /> - <RoomItem - showLastMessage - alert - unread={1} - lastMessage={lastMessage} - /> - <RoomItem - showLastMessage - alert - unread={1000} - lastMessage={lastMessage} - /> - <RoomItem - showLastMessage - alert - tunread={[1]} - lastMessage={lastMessage} - /> + <RoomItem showLastMessage lastMessage={lastMessage} /> + <RoomItem showLastMessage alert unread={1} lastMessage={lastMessage} /> + <RoomItem showLastMessage alert unread={1000} lastMessage={lastMessage} /> + <RoomItem showLastMessage alert tunread={[1]} lastMessage={lastMessage} /> </> )); diff --git a/storybook/stories/ServerItem.js b/storybook/stories/ServerItem.js index d1c53ee01c..84e0668fee 100644 --- a/storybook/stories/ServerItem.js +++ b/storybook/stories/ServerItem.js @@ -19,19 +19,11 @@ const item = { iconURL: 'https://open.rocket.chat/images/logo/android-chrome-512x512.png' }; -const ServerItem = props => ( - <ServerItemComponent - item={item} - hasCheck={false} - {...props} - /> -); +const ServerItem = props => <ServerItemComponent item={item} hasCheck={false} {...props} />; stories.add('content', () => ( <> - <ServerItem - hasCheck - /> + <ServerItem hasCheck /> <ServerItem item={{ ...item, @@ -57,10 +49,7 @@ stories.add('touchable', () => ( const ThemeStory = ({ theme }) => ( <ThemeContext.Provider value={theme}> - <ServerItem - theme={theme} - hasCheck - /> + <ServerItem theme={theme} hasCheck /> </ThemeContext.Provider> ); diff --git a/storybook/stories/UiKitMessage.js b/storybook/stories/UiKitMessage.js index 6c99577946..a9a9aba942 100644 --- a/storybook/stories/UiKitMessage.js +++ b/storybook/stories/UiKitMessage.js @@ -39,407 +39,454 @@ const messageDecorator = story => ( onDiscussionPress: () => {}, onReactionLongPress: () => {}, threadBadgeColor: themes.light.tunreadColor - }} - > + }}> {story()} </MessageContext.Provider> ); const stories = storiesOf('UiKitMessage', module) .addDecorator(story => <SafeAreaView style={styles.container}>{story()}</SafeAreaView>) - .addDecorator(story => <ScrollView style={[styles.container, styles.padding]} keyboardShouldPersistTaps='always'>{story()}</ScrollView>) + .addDecorator(story => ( + <ScrollView style={[styles.container, styles.padding]} keyboardShouldPersistTaps='always'> + {story()} + </ScrollView> + )) .addDecorator(messageDecorator); -const Section = () => UiKitMessage([{ - type: 'section', - text: { - type: 'mrkdwn', - text: 'Section' - } -}]); +const Section = () => + UiKitMessage([ + { + type: 'section', + text: { + type: 'mrkdwn', + text: 'Section' + } + } + ]); stories.add('Section', () => <Section />); -const SectionMarkdownList = () => UiKitMessage([{ - type: 'section', - text: { - type: 'mrkdwn', - text: '*List*:\n1. Item' - } -}]); +const SectionMarkdownList = () => + UiKitMessage([ + { + type: 'section', + text: { + type: 'mrkdwn', + text: '*List*:\n1. Item' + } + } + ]); stories.add('Section + Markdown List', () => <SectionMarkdownList />); -const SectionOverflow = () => UiKitMessage([ - { - type: 'section', - text: { - type: 'mrkdwn', - text: 'Section + Overflow' - }, - accessory: { - type: 'overflow', - options: [ - { - text: { - type: 'plain_text', - text: 'Option 1', - emoji: true - }, - value: 'value-0' - }, - { - text: { - type: 'plain_text', - text: 'Option 2', - emoji: true +const SectionOverflow = () => + UiKitMessage([ + { + type: 'section', + text: { + type: 'mrkdwn', + text: 'Section + Overflow' + }, + accessory: { + type: 'overflow', + options: [ + { + text: { + type: 'plain_text', + text: 'Option 1', + emoji: true + }, + value: 'value-0' }, - value: 'value-1' - }, - { - text: { - type: 'plain_text', - text: 'Option 3', - emoji: true + { + text: { + type: 'plain_text', + text: 'Option 2', + emoji: true + }, + value: 'value-1' }, - value: 'value-2' - }, - { - text: { - type: 'plain_text', - text: 'Option 4', - emoji: true + { + text: { + type: 'plain_text', + text: 'Option 3', + emoji: true + }, + value: 'value-2' }, - value: 'value-3' - } - ] + { + text: { + type: 'plain_text', + text: 'Option 4', + emoji: true + }, + value: 'value-3' + } + ] + } } - } -]); + ]); stories.add('Section + Overflow', () => <SectionOverflow />); -const SectionImage = () => UiKitMessage([{ - type: 'section', - text: { - type: 'mrkdwn', - text: 'Section + Image' - }, - accessory: { - type: 'image', - imageUrl: 'https://raw.githubusercontent.com/RocketChat/Rocket.Chat.Artwork/master/Logos/icon-circle-256.png', - altText: 'plants' - } -}]); -stories.add('Section + image', () => <SectionImage />); - -const SectionButton = () => UiKitMessage([{ - type: 'section', - text: { - type: 'mrkdwn', - text: 'Section + button' - }, - accessory: { - type: 'button', - text: { - type: 'plain_text', - text: 'button' +const SectionImage = () => + UiKitMessage([ + { + type: 'section', + text: { + type: 'mrkdwn', + text: 'Section + Image' + }, + accessory: { + type: 'image', + imageUrl: 'https://raw.githubusercontent.com/RocketChat/Rocket.Chat.Artwork/master/Logos/icon-circle-256.png', + altText: 'plants' + } } - } -}]); -stories.add('Section + button', () => <SectionButton />); + ]); +stories.add('Section + image', () => <SectionImage />); -const SectionSelect = () => UiKitMessage([{ - type: 'section', - text: { - type: 'mrkdwn', - text: 'Section + select' - }, - accessory: { - type: 'static_select', - options: [ - { - value: 1, +const SectionButton = () => + UiKitMessage([ + { + type: 'section', + text: { + type: 'mrkdwn', + text: 'Section + button' + }, + accessory: { + type: 'button', text: { type: 'plain_text', text: 'button' } - }, { - value: 2, - text: { - type: 'plain_text', - text: 'second button' - } - }] - } -}]); -stories.add('Section + Select', () => <SectionSelect />); - -const SectionDatePicker = () => UiKitMessage([{ - type: 'section', - text: { - type: 'mrkdwn', - text: 'Section + DatePicker' - }, - accessory: { - type: 'datepicker', - initial_date: '1990-04-28', - placeholder: { - type: 'plain_text', - text: 'Select a date', - emoji: true + } } - } -}]); -stories.add('Section + DatePicker', () => <SectionDatePicker />); - -const SectionMultiSelect = () => UiKitMessage([{ - type: 'section', - text: { - type: 'mrkdwn', - text: 'Section + select' - }, - accessory: { - type: 'multi_static_select', - options: [{ - text: { - type: 'plain_text', - text: 'button' - }, - value: 1 - }, { - text: { - type: 'plain_text', - text: 'opt 1' - }, - value: 2 - }, { - text: { - type: 'plain_text', - text: 'opt 2' - }, - value: 3 - }, { - text: { - type: 'plain_text', - text: 'opt 3' - }, - value: 4 - }] - } -}]); -stories.add('Section + Multi Select', () => <SectionMultiSelect />); - -const Image = () => UiKitMessage([{ - type: 'image', - title: { - type: 'plain_text', - text: 'Example Image', - emoji: true - }, - imageUrl: 'https://raw.githubusercontent.com/RocketChat/Rocket.Chat.Artwork/master/Logos/icon-circle-256.png', - altText: 'Example Image' -}]); -stories.add('Image', () => <Image />); - -const Context = () => UiKitMessage([{ - type: 'context', - elements: [{ - type: 'image', - title: { - type: 'plain_text', - text: 'Example Image', - emoji: true - }, - imageUrl: 'https://raw.githubusercontent.com/RocketChat/Rocket.Chat.Artwork/master/Logos/icon-circle-256.png', - altText: 'Example Image' - }, - { - type: 'mrkdwn', - text: 'context' - } - ] -}]); -stories.add('Context', () => <Context />); + ]); +stories.add('Section + button', () => <SectionButton />); -const ActionButton = () => UiKitMessage([{ - type: 'actions', - elements: [ - { - type: 'button', - text: { - type: 'plain_text', - emoji: true, - text: 'Approve' - }, - style: 'primary', - value: 'click_me_123' - }, - { - type: 'button', - text: { - type: 'plain_text', - emoji: true, - text: 'Deny' - }, - style: 'danger', - value: 'click_me_123' - }, - { - type: 'button', - text: { - type: 'plain_text', - emoji: true, - text: 'Deny' - }, - style: 'danger', - value: 'click_me_123' - }, +const SectionSelect = () => + UiKitMessage([ { - type: 'button', + type: 'section', text: { - type: 'plain_text', - emoji: true, - text: 'Deny' + type: 'mrkdwn', + text: 'Section + select' }, - style: 'danger', - value: 'click_me_123' - }, - { - type: 'button', - text: { - type: 'plain_text', - emoji: true, - text: 'Deny' - }, - style: 'danger', - value: 'click_me_123' - }, + accessory: { + type: 'static_select', + options: [ + { + value: 1, + text: { + type: 'plain_text', + text: 'button' + } + }, + { + value: 2, + text: { + type: 'plain_text', + text: 'second button' + } + } + ] + } + } + ]); +stories.add('Section + Select', () => <SectionSelect />); + +const SectionDatePicker = () => + UiKitMessage([ { - type: 'button', + type: 'section', text: { - type: 'plain_text', - emoji: true, - text: 'Deny' + type: 'mrkdwn', + text: 'Section + DatePicker' }, - style: 'danger', - value: 'click_me_123' - }, + accessory: { + type: 'datepicker', + initial_date: '1990-04-28', + placeholder: { + type: 'plain_text', + text: 'Select a date', + emoji: true + } + } + } + ]); +stories.add('Section + DatePicker', () => <SectionDatePicker />); + +const SectionMultiSelect = () => + UiKitMessage([ { - type: 'button', + type: 'section', text: { - type: 'plain_text', - emoji: true, - text: 'Deny' + type: 'mrkdwn', + text: 'Section + select' }, - style: 'danger', - value: 'click_me_123' + accessory: { + type: 'multi_static_select', + options: [ + { + text: { + type: 'plain_text', + text: 'button' + }, + value: 1 + }, + { + text: { + type: 'plain_text', + text: 'opt 1' + }, + value: 2 + }, + { + text: { + type: 'plain_text', + text: 'opt 2' + }, + value: 3 + }, + { + text: { + type: 'plain_text', + text: 'opt 3' + }, + value: 4 + } + ] + } } - ] -}]); -stories.add('Action - Buttons', () => <ActionButton />); + ]); +stories.add('Section + Multi Select', () => <SectionMultiSelect />); -const Fields = () => UiKitMessage([ - { - type: 'section', - fields: [ - { - type: 'plain_text', - text: '*this is plain_text text*', - emoji: true - }, - { - type: 'plain_text', - text: '*this is plain_text text*', - emoji: true - }, - { - type: 'plain_text', - text: '*this is plain_text text*', - emoji: true - }, - { +const Image = () => + UiKitMessage([ + { + type: 'image', + title: { type: 'plain_text', - text: '*this is plain_text text*', + text: 'Example Image', emoji: true }, - { - type: 'plain_text', - text: '*this is plain_text text*', - emoji: true - } - ] - }]); -stories.add('Fields', () => <Fields />); + imageUrl: 'https://raw.githubusercontent.com/RocketChat/Rocket.Chat.Artwork/master/Logos/icon-circle-256.png', + altText: 'Example Image' + } + ]); +stories.add('Image', () => <Image />); -const ActionSelect = () => UiKitMessage([{ - type: 'actions', - elements: [ - { - type: 'conversations_select', - placeholder: { - type: 'plain_text', - text: 'Select a conversation', - emoji: true - } - }, - { - type: 'channels_select', - placeholder: { - type: 'plain_text', - text: 'Select a channel', - emoji: true - } - }, +const Context = () => + UiKitMessage([ { - type: 'users_select', - placeholder: { - type: 'plain_text', - text: 'Select a user', - emoji: true - } - }, + type: 'context', + elements: [ + { + type: 'image', + title: { + type: 'plain_text', + text: 'Example Image', + emoji: true + }, + imageUrl: 'https://raw.githubusercontent.com/RocketChat/Rocket.Chat.Artwork/master/Logos/icon-circle-256.png', + altText: 'Example Image' + }, + { + type: 'mrkdwn', + text: 'context' + } + ] + } + ]); +stories.add('Context', () => <Context />); + +const ActionButton = () => + UiKitMessage([ { - type: 'static_select', - placeholder: { - type: 'plain_text', - text: 'Select an item', - emoji: true - }, - options: [ + type: 'actions', + elements: [ { + type: 'button', text: { type: 'plain_text', - text: 'Excellent item 1', - emoji: true + emoji: true, + text: 'Approve' }, - value: 'value-0' + style: 'primary', + value: 'click_me_123' }, { + type: 'button', text: { type: 'plain_text', - text: 'Fantastic item 2', - emoji: true + emoji: true, + text: 'Deny' }, - value: 'value-1' + style: 'danger', + value: 'click_me_123' }, { + type: 'button', text: { type: 'plain_text', - text: 'Nifty item 3', - emoji: true + emoji: true, + text: 'Deny' }, - value: 'value-2' + style: 'danger', + value: 'click_me_123' }, { + type: 'button', text: { type: 'plain_text', - text: 'Pretty good item 4', + emoji: true, + text: 'Deny' + }, + style: 'danger', + value: 'click_me_123' + }, + { + type: 'button', + text: { + type: 'plain_text', + emoji: true, + text: 'Deny' + }, + style: 'danger', + value: 'click_me_123' + }, + { + type: 'button', + text: { + type: 'plain_text', + emoji: true, + text: 'Deny' + }, + style: 'danger', + value: 'click_me_123' + }, + { + type: 'button', + text: { + type: 'plain_text', + emoji: true, + text: 'Deny' + }, + style: 'danger', + value: 'click_me_123' + } + ] + } + ]); +stories.add('Action - Buttons', () => <ActionButton />); + +const Fields = () => + UiKitMessage([ + { + type: 'section', + fields: [ + { + type: 'plain_text', + text: '*this is plain_text text*', + emoji: true + }, + { + type: 'plain_text', + text: '*this is plain_text text*', + emoji: true + }, + { + type: 'plain_text', + text: '*this is plain_text text*', + emoji: true + }, + { + type: 'plain_text', + text: '*this is plain_text text*', + emoji: true + }, + { + type: 'plain_text', + text: '*this is plain_text text*', + emoji: true + } + ] + } + ]); +stories.add('Fields', () => <Fields />); + +const ActionSelect = () => + UiKitMessage([ + { + type: 'actions', + elements: [ + { + type: 'conversations_select', + placeholder: { + type: 'plain_text', + text: 'Select a conversation', + emoji: true + } + }, + { + type: 'channels_select', + placeholder: { + type: 'plain_text', + text: 'Select a channel', + emoji: true + } + }, + { + type: 'users_select', + placeholder: { + type: 'plain_text', + text: 'Select a user', + emoji: true + } + }, + { + type: 'static_select', + placeholder: { + type: 'plain_text', + text: 'Select an item', emoji: true }, - value: 'value-3' + options: [ + { + text: { + type: 'plain_text', + text: 'Excellent item 1', + emoji: true + }, + value: 'value-0' + }, + { + text: { + type: 'plain_text', + text: 'Fantastic item 2', + emoji: true + }, + value: 'value-1' + }, + { + text: { + type: 'plain_text', + text: 'Nifty item 3', + emoji: true + }, + value: 'value-2' + }, + { + text: { + type: 'plain_text', + text: 'Pretty good item 4', + emoji: true + }, + value: 'value-3' + } + ] } ] } - ] -}]); + ]); stories.add('Action - Select', () => <ActionSelect />); // stories.add('Section', () => UiKitMessage([{ diff --git a/storybook/stories/UiKitModal.js b/storybook/stories/UiKitModal.js index 9be40049b9..6b3c22f403 100644 --- a/storybook/stories/UiKitModal.js +++ b/storybook/stories/UiKitModal.js @@ -40,494 +40,523 @@ const messageDecorator = story => ( onDiscussionPress: () => {}, onReactionLongPress: () => {}, threadBadgeColor: themes.light.tunreadColor - }} - > + }}> {story()} </MessageContext.Provider> ); const stories = storiesOf('UiKitModal', module) .addDecorator(story => <SafeAreaView style={styles.container}>{story()}</SafeAreaView>) - .addDecorator(story => <ScrollView style={[styles.container, styles.padding]} keyboardShouldPersistTaps='always'>{story()}</ScrollView>) + .addDecorator(story => ( + <ScrollView style={[styles.container, styles.padding]} keyboardShouldPersistTaps='always'> + {story()} + </ScrollView> + )) .addDecorator(messageDecorator); -const ModalSectionSelects = () => UiKitModal([ - { - type: 'section', - text: { - type: 'mrkdwn', - text: '*Rocket.Chat is free, unlimited and open source* 🚀\nIf you have any doubt ask to @rocketcat' +const ModalSectionSelects = () => + UiKitModal([ + { + type: 'section', + text: { + type: 'mrkdwn', + text: '*Rocket.Chat is free, unlimited and open source* 🚀\nIf you have any doubt ask to @rocketcat' + } + }, + { + type: 'divider' + }, + { + type: 'section', + fields: [ + { + type: 'mrkdwn', + text: '*Text 1*\nDescription, Mussum Ipsum, cacilds vidis litro' + }, + { + type: 'mrkdwn', + text: '*Text 2*\nDescription, Mussum Ipsum, cacilds vidis litro' + } + ] + }, + { + type: 'section', + fields: [ + { + type: 'mrkdwn', + text: '*Text 3*\nDescription, Mussum Ipsum, cacilds vidis litro' + }, + { + type: 'mrkdwn', + text: '*Text 4*\nDescription, Mussum Ipsum, cacilds vidis litro' + } + ] } - }, - { - type: 'divider' - }, - { - type: 'section', - fields: [ - { + ]); +stories.add('Modal - Section and Selects', () => <ModalSectionSelects />); + +const ModalSectionAccessories = () => + UiKitModal([ + { + type: 'section', + text: { type: 'mrkdwn', - text: '*Text 1*\nDescription, Mussum Ipsum, cacilds vidis litro' + text: '*Bruno Quadros*,\nPlease review your details for your *travel expense*.\nExpense no. *DA921*.' }, - { + accessory: { + type: 'image', + imageUrl: 'https://raw.githubusercontent.com/RocketChat/Rocket.Chat.Artwork/master/Logos/icon-circle-256.png' + } + }, + { + type: 'divider' + }, + { + type: 'section', + text: { type: 'mrkdwn', - text: '*Text 2*\nDescription, Mussum Ipsum, cacilds vidis litro' + text: '*Date:*\n11/02/2020' } - ] - }, - { - type: 'section', - fields: [ - { + }, + { + type: 'section', + text: { type: 'mrkdwn', - text: '*Text 3*\nDescription, Mussum Ipsum, cacilds vidis litro' - }, - { + text: '*Category:*\nTravel' + } + }, + { + type: 'section', + text: { type: 'mrkdwn', - text: '*Text 4*\nDescription, Mussum Ipsum, cacilds vidis litro' + text: '*Cost:*\n$150.00 USD' } - ] - } -]); -stories.add('Modal - Section and Selects', () => <ModalSectionSelects />); - -const ModalSectionAccessories = () => UiKitModal([ - { - type: 'section', - text: { - type: 'mrkdwn', - text: '*Bruno Quadros*,\nPlease review your details for your *travel expense*.\nExpense no. *DA921*.' }, - accessory: { - type: 'image', - imageUrl: 'https://raw.githubusercontent.com/RocketChat/Rocket.Chat.Artwork/master/Logos/icon-circle-256.png' - } - }, - { - type: 'divider' - }, - { - type: 'section', - text: { - type: 'mrkdwn', - text: '*Date:*\n11/02/2020' - } - }, - { - type: 'section', - text: { - type: 'mrkdwn', - text: '*Category:*\nTravel' - } - }, - { - type: 'section', - text: { - type: 'mrkdwn', - text: '*Cost:*\n$150.00 USD' - } - }, - { - type: 'section', - text: { - type: 'mrkdwn', - text: '*Notes:*\nWebSummit Conference' + { + type: 'section', + text: { + type: 'mrkdwn', + text: '*Notes:*\nWebSummit Conference' + } } - } -]); + ]); stories.add('Modal - Section Accessories', () => <ModalSectionAccessories />); -const ModalFormInput = () => UiKitModal([ - { - type: 'input', - element: { - type: 'plain_text_input' - }, - label: { - type: 'plain_text', - text: 'Outgoing Title', - emoji: true - }, - hint: { - type: 'plain_text', - text: 'Pick something unique!', - emoji: true - } - }, - { - type: 'input', - element: { - type: 'datepicker', - initial_date: '1990-04-28', - placeholder: { +const ModalFormInput = () => + UiKitModal([ + { + type: 'input', + element: { + type: 'plain_text_input' + }, + label: { + type: 'plain_text', + text: 'Outgoing Title', + emoji: true + }, + hint: { type: 'plain_text', - text: 'Select a date', + text: 'Pick something unique!', emoji: true } }, - label: { - type: 'plain_text', - text: 'Set a date', - emoji: true - } - }, - { - type: 'input', - element: { - type: 'multi_static_select', - options: [{ - text: { - type: 'plain_text', - text: 'John' - }, - value: 1 - }, { - text: { + { + type: 'input', + element: { + type: 'datepicker', + initial_date: '1990-04-28', + placeholder: { type: 'plain_text', - text: 'Dog' - }, - value: 2 - }] + text: 'Select a date', + emoji: true + } + }, + label: { + type: 'plain_text', + text: 'Set a date', + emoji: true + } }, - label: { - type: 'plain_text', - text: 'Share with...', - emoji: true + { + type: 'input', + element: { + type: 'multi_static_select', + options: [ + { + text: { + type: 'plain_text', + text: 'John' + }, + value: 1 + }, + { + text: { + type: 'plain_text', + text: 'Dog' + }, + value: 2 + } + ] + }, + label: { + type: 'plain_text', + text: 'Share with...', + emoji: true + } } - } -]); + ]); stories.add('Modal - Form Input', () => <ModalFormInput />); -const ModalFormTextArea = () => UiKitModal([ - { - type: 'context', - elements: [{ - type: 'mrkdwn', - text: 'Task: ZOL-994' - }] - }, - { - type: 'section', - text: { - type: 'mrkdwn', - text: 'Update Spec final assets' +const ModalFormTextArea = () => + UiKitModal([ + { + type: 'context', + elements: [ + { + type: 'mrkdwn', + text: 'Task: ZOL-994' + } + ] }, - accessory: { - type: 'button', + { + type: 'section', text: { - type: 'plain_text', - text: 'Change' + type: 'mrkdwn', + text: 'Update Spec final assets' + }, + accessory: { + type: 'button', + text: { + type: 'plain_text', + text: 'Change' + } } - } - }, - { - type: 'divider' - }, - { - type: 'input', - element: { - type: 'plain_text_input', - multiline: true - }, - placeholder: { - type: 'plain_text', - text: 'Write Something', - emoji: true }, - label: { - type: 'plain_text', - text: 'Notes', - emoji: true + { + type: 'divider' }, - hint: { - type: 'plain_text', - text: 'Please take the time to compose something short', - emoji: true - }, - description: { - type: 'plain_text', - text: 'Describe your update', - emoji: true + { + type: 'input', + element: { + type: 'plain_text_input', + multiline: true + }, + placeholder: { + type: 'plain_text', + text: 'Write Something', + emoji: true + }, + label: { + type: 'plain_text', + text: 'Notes', + emoji: true + }, + hint: { + type: 'plain_text', + text: 'Please take the time to compose something short', + emoji: true + }, + description: { + type: 'plain_text', + text: 'Describe your update', + emoji: true + } } - } -]); + ]); stories.add('Modal - Form TextArea', () => <ModalFormTextArea />); -const ModalImages = () => UiKitModal([ - { - type: 'image', - title: { - type: 'plain_text', - text: 'Example Image', - emoji: true - }, - imageUrl: 'https://raw.githubusercontent.com/RocketChat/Rocket.Chat.Artwork/master/Logos/icon-circle-256.png', - alt_text: 'Example Image' - }, - { - type: 'section', - text: { - type: 'mrkdwn', - text: 'How could be the life in Mars?' - } - }, - { - type: 'context', - elements: [ - { - type: 'image', - imageUrl: 'https://raw.githubusercontent.com/RocketChat/Rocket.Chat.Artwork/master/Logos/icon-circle-256.png' +const ModalImages = () => + UiKitModal([ + { + type: 'image', + title: { + type: 'plain_text', + text: 'Example Image', + emoji: true }, - { + imageUrl: 'https://raw.githubusercontent.com/RocketChat/Rocket.Chat.Artwork/master/Logos/icon-circle-256.png', + alt_text: 'Example Image' + }, + { + type: 'section', + text: { type: 'mrkdwn', - text: 'November 25, 2019' + text: 'How could be the life in Mars?' } - ] - }, - { - type: 'section', - text: { - type: 'mrkdwn', - text: '*Next stop, Mars!*\nMussum Ipsum, cacilds vidis litro abertis. Admodum accumsan disputationi eu sit. Vide electram sadipscing et per. Diuretics paradis num copo é motivis de denguis. Mais vale um bebadis conhecidiss, que um alcoolatra anonimis. Aenean aliquam molestie leo, vitae iaculis nisl.' - } - } -]); -stories.add('Modal - Images', () => <ModalImages />); - -const ModalActions = () => UiKitModal([{ - type: 'input', - element: { - type: 'plain_text_input' - }, - label: { - type: 'plain_text', - text: 'Title', - emoji: true - } -}, -{ - type: 'section', - text: { - type: 'mrkdwn', - text: 'Details' - } -}, -{ - type: 'section', - accessory: { - type: 'static_select', - options: [ - { - value: 1, - text: { - type: 'plain_text', - text: 'TypeL Task' - } - }, { - value: 2, - text: { - type: 'plain_text', - text: 'second button' - } - }] - } -}, -{ - type: 'section', - accessory: { - type: 'static_select', - options: [ - { - value: 1, - text: { - type: 'plain_text', - text: 'Project: Space (winter)' - } - }, { - value: 2, - text: { - type: 'plain_text', - text: 'second button' - } - }] - } -}, -{ - type: 'section', - accessory: { - type: 'static_select', - options: [ - { - value: 1, - text: { - type: 'plain_text', - text: 'Priority (optional)' - } - }, { - value: 2, - text: { - type: 'plain_text', - text: 'second button' - } - }] - } -}, -{ - type: 'section', - accessory: { - type: 'static_select', - options: [ - { - value: 1, - text: { - type: 'plain_text', - text: 'Assinee (optional)' - } - }, { - value: 2, - text: { - type: 'plain_text', - text: 'second button' - } - }] - } -}, -{ - type: 'input', - element: { - type: 'plain_text_input', - multiline: true - }, - placeholder: { - type: 'plain_text', - text: 'Write Something', - emoji: true - }, - label: { - type: 'plain_text', - text: 'Description', - emoji: true - } -}]); -stories.add('Modal - Actions', () => <ModalActions />); - -const ModalContextsDividers = () => UiKitModal([ - { - type: 'context', - elements: [{ - type: 'mrkdwn', - text: 'Due today' - }] - }, - { - type: 'divider' - }, - { - type: 'section', - text: { - type: 'mrkdwn', - text: 'Finish interface componests (3 hours)' }, - accessory: { - blockId: 'overflow-1', - type: 'overflow', - options: [ + { + type: 'context', + elements: [ { - text: { - type: 'plain_text', - text: 'Details', - emoji: true - }, - value: 'value-0' + type: 'image', + imageUrl: 'https://raw.githubusercontent.com/RocketChat/Rocket.Chat.Artwork/master/Logos/icon-circle-256.png' }, { - text: { - type: 'plain_text', - text: 'Remove', - emoji: true - }, - value: 'value-1' + type: 'mrkdwn', + text: 'November 25, 2019' } ] + }, + { + type: 'section', + text: { + type: 'mrkdwn', + text: '*Next stop, Mars!*\nMussum Ipsum, cacilds vidis litro abertis. Admodum accumsan disputationi eu sit. Vide electram sadipscing et per. Diuretics paradis num copo é motivis de denguis. Mais vale um bebadis conhecidiss, que um alcoolatra anonimis. Aenean aliquam molestie leo, vitae iaculis nisl.' + } } - }, - { - type: 'section', - text: { - type: 'mrkdwn', - text: 'English Class (1 hour)' + ]); +stories.add('Modal - Images', () => <ModalImages />); + +const ModalActions = () => + UiKitModal([ + { + type: 'input', + element: { + type: 'plain_text_input' + }, + label: { + type: 'plain_text', + text: 'Title', + emoji: true + } }, - accessory: { - blockId: 'overflow-2', - type: 'overflow', - options: [ - { - text: { - type: 'plain_text', - text: 'Details', - emoji: true + { + type: 'section', + text: { + type: 'mrkdwn', + text: 'Details' + } + }, + { + type: 'section', + accessory: { + type: 'static_select', + options: [ + { + value: 1, + text: { + type: 'plain_text', + text: 'TypeL Task' + } }, - value: 'value-0' - }, - { - text: { - type: 'plain_text', - text: 'Remove', - emoji: true + { + value: 2, + text: { + type: 'plain_text', + text: 'second button' + } + } + ] + } + }, + { + type: 'section', + accessory: { + type: 'static_select', + options: [ + { + value: 1, + text: { + type: 'plain_text', + text: 'Project: Space (winter)' + } }, - value: 'value-1' - } - ] - } - }, - { - type: 'section', - text: { - type: 'mrkdwn', - text: 'Send an email to John (15min)' + { + value: 2, + text: { + type: 'plain_text', + text: 'second button' + } + } + ] + } }, - accessory: { - blockId: 'overflow-3', - type: 'overflow', - options: [ - { - text: { - type: 'plain_text', - text: 'Details', - emoji: true + { + type: 'section', + accessory: { + type: 'static_select', + options: [ + { + value: 1, + text: { + type: 'plain_text', + text: 'Priority (optional)' + } }, - value: 'value-0' - }, - { - text: { - type: 'plain_text', - text: 'Remove', - emoji: true + { + value: 2, + text: { + type: 'plain_text', + text: 'second button' + } + } + ] + } + }, + { + type: 'section', + accessory: { + type: 'static_select', + options: [ + { + value: 1, + text: { + type: 'plain_text', + text: 'Assinee (optional)' + } }, - value: 'value-1' + { + value: 2, + text: { + type: 'plain_text', + text: 'second button' + } + } + ] + } + }, + { + type: 'input', + element: { + type: 'plain_text_input', + multiline: true + }, + placeholder: { + type: 'plain_text', + text: 'Write Something', + emoji: true + }, + label: { + type: 'plain_text', + text: 'Description', + emoji: true + } + } + ]); +stories.add('Modal - Actions', () => <ModalActions />); + +const ModalContextsDividers = () => + UiKitModal([ + { + type: 'context', + elements: [ + { + type: 'mrkdwn', + text: 'Due today' } ] + }, + { + type: 'divider' + }, + { + type: 'section', + text: { + type: 'mrkdwn', + text: 'Finish interface componests (3 hours)' + }, + accessory: { + blockId: 'overflow-1', + type: 'overflow', + options: [ + { + text: { + type: 'plain_text', + text: 'Details', + emoji: true + }, + value: 'value-0' + }, + { + text: { + type: 'plain_text', + text: 'Remove', + emoji: true + }, + value: 'value-1' + } + ] + } + }, + { + type: 'section', + text: { + type: 'mrkdwn', + text: 'English Class (1 hour)' + }, + accessory: { + blockId: 'overflow-2', + type: 'overflow', + options: [ + { + text: { + type: 'plain_text', + text: 'Details', + emoji: true + }, + value: 'value-0' + }, + { + text: { + type: 'plain_text', + text: 'Remove', + emoji: true + }, + value: 'value-1' + } + ] + } + }, + { + type: 'section', + text: { + type: 'mrkdwn', + text: 'Send an email to John (15min)' + }, + accessory: { + blockId: 'overflow-3', + type: 'overflow', + options: [ + { + text: { + type: 'plain_text', + text: 'Details', + emoji: true + }, + value: 'value-0' + }, + { + text: { + type: 'plain_text', + text: 'Remove', + emoji: true + }, + value: 'value-1' + } + ] + } } - } -]); + ]); stories.add('Modal - Contexts and Dividers', () => <ModalContextsDividers />); const ModalInputWithError = () => ( <KitContext.Provider value={{ ...defaultContext, errors: { 'input-test': 'error test' } }}> <UiKitComponent render={UiKitModal} - blocks={[{ - type: 'input', - element: { - type: 'plain_text_input', - actionId: 'input-test' - }, - label: { - type: 'plain_text', - text: 'Label', - emoji: true + blocks={[ + { + type: 'input', + element: { + type: 'plain_text_input', + actionId: 'input-test' + }, + label: { + type: 'plain_text', + text: 'Label', + emoji: true + } } - }]} + ]} /> </KitContext.Provider> ); @@ -537,19 +566,21 @@ const ModalMultilneWithError = () => ( <KitContext.Provider value={{ ...defaultContext, errors: { 'input-test': 'error test' } }}> <UiKitComponent render={UiKitModal} - blocks={[{ - type: 'input', - element: { - type: 'plain_text_input', - multiline: true, - actionId: 'input-test' - }, - label: { - type: 'plain_text', - text: 'Label', - emoji: true + blocks={[ + { + type: 'input', + element: { + type: 'plain_text_input', + multiline: true, + actionId: 'input-test' + }, + label: { + type: 'plain_text', + text: 'Label', + emoji: true + } } - }]} + ]} /> </KitContext.Provider> ); @@ -559,24 +590,26 @@ const ModalDatePickerWithError = () => ( <KitContext.Provider value={{ ...defaultContext, errors: { 'input-test': 'error test' } }}> <UiKitComponent render={UiKitModal} - blocks={[{ - type: 'input', - element: { - type: 'datepicker', - initial_date: '1990-04-28', - actionId: 'input-test', - placeholder: { + blocks={[ + { + type: 'input', + element: { + type: 'datepicker', + initial_date: '1990-04-28', + actionId: 'input-test', + placeholder: { + type: 'plain_text', + text: 'Select a date', + emoji: true + } + }, + label: { type: 'plain_text', - text: 'Select a date', + text: 'Label', emoji: true } - }, - label: { - type: 'plain_text', - text: 'Label', - emoji: true } - }]} + ]} /> </KitContext.Provider> ); diff --git a/storybook/stories/UnreadBadge.js b/storybook/stories/UnreadBadge.js index f71c391a8b..b19fa62926 100644 --- a/storybook/stories/UnreadBadge.js +++ b/storybook/stories/UnreadBadge.js @@ -11,9 +11,11 @@ const stories = storiesOf('Unread Badge', module); const StoryTester = ({ children }) => ( <View style={{ - flex: 1, flexDirection: 'row', alignItems: 'center', justifyContent: 'space-evenly' - }} - > + flex: 1, + flexDirection: 'row', + alignItems: 'center', + justifyContent: 'space-evenly' + }}> {children} </View> ); @@ -57,9 +59,7 @@ stories.add('different mention types', () => ( )); const ThemeStory = ({ theme }) => ( - <ThemeContext.Provider - value={{ theme }} - > + <ThemeContext.Provider value={{ theme }}> <StoryTester> <UnreadBadge unread={1} /> <UnreadBadge unread={1} userMentions={1} /> diff --git a/storybook/utils.js b/storybook/utils.js index 83260dd02a..f3492f9f5b 100644 --- a/storybook/utils.js +++ b/storybook/utils.js @@ -1 +1,2 @@ -export const longText = 'Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industrys standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book. It has survived not only five centuries'; +export const longText = + 'Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industrys standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book. It has survived not only five centuries'; diff --git a/tsconfig.json b/tsconfig.json index 2f3fbd9081..fa75ec317c 100644 --- a/tsconfig.json +++ b/tsconfig.json @@ -1,72 +1,72 @@ { - "compilerOptions": { - /* Visit https://aka.ms/tsconfig.json to read more about this file */ + "compilerOptions": { + /* Visit https://aka.ms/tsconfig.json to read more about this file */ - /* Basic Options */ - // "incremental": true, /* Enable incremental compilation */ - "target": "esnext", /* Specify ECMAScript target version: 'ES3' (default), 'ES5', 'ES2015', 'ES2016', 'ES2017', 'ES2018', 'ES2019', 'ES2020', 'ES2021', or 'ESNEXT'. */ - "module": "commonjs", /* Specify module code generation: 'none', 'commonjs', 'amd', 'system', 'umd', 'es2015', 'es2020', or 'ESNext'. */ - // "lib": [], /* Specify library files to be included in the compilation. */ - "allowJs": true, /* Allow javascript files to be compiled. */ - // "checkJs": true, /* Report errors in .js files. */ - "jsx": "react-native", /* Specify JSX code generation: 'preserve', 'react-native', 'react', 'react-jsx' or 'react-jsxdev'. */ - // "declaration": true, /* Generates corresponding '.d.ts' file. */ - // "declarationMap": true, /* Generates a sourcemap for each corresponding '.d.ts' file. */ - // "sourceMap": true, /* Generates corresponding '.map' file. */ - // "outFile": "./", /* Concatenate and emit output to single file. */ - // "outDir": "./", /* Redirect output structure to the directory. */ - // "rootDir": "./", /* Specify the root directory of input files. Use to control the output directory structure with --outDir. */ - // "composite": true, /* Enable project compilation */ - // "tsBuildInfoFile": "./", /* Specify file to store incremental compilation information */ - // "removeComments": true, /* Do not emit comments to output. */ - "noEmit": true, /* Do not emit outputs. */ - // "importHelpers": true, /* Import emit helpers from 'tslib'. */ - // "downlevelIteration": true, /* Provide full support for iterables in 'for-of', spread, and destructuring when targeting 'ES5' or 'ES3'. */ - // "isolatedModules": true, /* Transpile each file as a separate module (similar to 'ts.transpileModule'). */ + /* Basic Options */ + // "incremental": true, /* Enable incremental compilation */ + "target": "esnext" /* Specify ECMAScript target version: 'ES3' (default), 'ES5', 'ES2015', 'ES2016', 'ES2017', 'ES2018', 'ES2019', 'ES2020', 'ES2021', or 'ESNEXT'. */, + "module": "commonjs" /* Specify module code generation: 'none', 'commonjs', 'amd', 'system', 'umd', 'es2015', 'es2020', or 'ESNext'. */, + // "lib": [], /* Specify library files to be included in the compilation. */ + "allowJs": true /* Allow javascript files to be compiled. */, + // "checkJs": true, /* Report errors in .js files. */ + "jsx": "react-native" /* Specify JSX code generation: 'preserve', 'react-native', 'react', 'react-jsx' or 'react-jsxdev'. */, + // "declaration": true, /* Generates corresponding '.d.ts' file. */ + // "declarationMap": true, /* Generates a sourcemap for each corresponding '.d.ts' file. */ + // "sourceMap": true, /* Generates corresponding '.map' file. */ + // "outFile": "./", /* Concatenate and emit output to single file. */ + // "outDir": "./", /* Redirect output structure to the directory. */ + // "rootDir": "./", /* Specify the root directory of input files. Use to control the output directory structure with --outDir. */ + // "composite": true, /* Enable project compilation */ + // "tsBuildInfoFile": "./", /* Specify file to store incremental compilation information */ + // "removeComments": true, /* Do not emit comments to output. */ + "noEmit": true /* Do not emit outputs. */, + // "importHelpers": true, /* Import emit helpers from 'tslib'. */ + // "downlevelIteration": true, /* Provide full support for iterables in 'for-of', spread, and destructuring when targeting 'ES5' or 'ES3'. */ + // "isolatedModules": true, /* Transpile each file as a separate module (similar to 'ts.transpileModule'). */ - /* Strict Type-Checking Options */ - "strict": true, /* Enable all strict type-checking options. */ - // "noImplicitAny": true, /* Raise error on expressions and declarations with an implied 'any' type. */ - // "strictNullChecks": true, /* Enable strict null checks. */ - // "strictFunctionTypes": true, /* Enable strict checking of function types. */ - // "strictBindCallApply": true, /* Enable strict 'bind', 'call', and 'apply' methods on functions. */ - // "strictPropertyInitialization": true, /* Enable strict checking of property initialization in classes. */ - // "noImplicitThis": true, /* Raise error on 'this' expressions with an implied 'any' type. */ - // "alwaysStrict": true, /* Parse in strict mode and emit "use strict" for each source file. */ + /* Strict Type-Checking Options */ + "strict": true /* Enable all strict type-checking options. */, + // "noImplicitAny": true, /* Raise error on expressions and declarations with an implied 'any' type. */ + // "strictNullChecks": true, /* Enable strict null checks. */ + // "strictFunctionTypes": true, /* Enable strict checking of function types. */ + // "strictBindCallApply": true, /* Enable strict 'bind', 'call', and 'apply' methods on functions. */ + // "strictPropertyInitialization": true, /* Enable strict checking of property initialization in classes. */ + // "noImplicitThis": true, /* Raise error on 'this' expressions with an implied 'any' type. */ + // "alwaysStrict": true, /* Parse in strict mode and emit "use strict" for each source file. */ - /* Additional Checks */ - // "noUnusedLocals": true, /* Report errors on unused locals. */ - // "noUnusedParameters": true, /* Report errors on unused parameters. */ - // "noImplicitReturns": true, /* Report error when not all code paths in function return a value. */ - // "noFallthroughCasesInSwitch": true, /* Report errors for fallthrough cases in switch statement. */ - // "noUncheckedIndexedAccess": true, /* Include 'undefined' in index signature results */ - // "noImplicitOverride": true, /* Ensure overriding members in derived classes are marked with an 'override' modifier. */ - // "noPropertyAccessFromIndexSignature": true, /* Require undeclared properties from index signatures to use element accesses. */ + /* Additional Checks */ + // "noUnusedLocals": true, /* Report errors on unused locals. */ + // "noUnusedParameters": true, /* Report errors on unused parameters. */ + // "noImplicitReturns": true, /* Report error when not all code paths in function return a value. */ + // "noFallthroughCasesInSwitch": true, /* Report errors for fallthrough cases in switch statement. */ + // "noUncheckedIndexedAccess": true, /* Include 'undefined' in index signature results */ + // "noImplicitOverride": true, /* Ensure overriding members in derived classes are marked with an 'override' modifier. */ + // "noPropertyAccessFromIndexSignature": true, /* Require undeclared properties from index signatures to use element accesses. */ - /* Module Resolution Options */ - "moduleResolution": "node", /* Specify module resolution strategy: 'node' (Node.js) or 'classic' (TypeScript pre-1.6). */ - "baseUrl": "app", /* Base directory to resolve non-absolute module names. */ - // "paths": {}, /* A series of entries which re-map imports to lookup locations relative to the 'baseUrl'. */ - // "rootDirs": [], /* List of root folders whose combined content represents the structure of the project at runtime. */ - // "typeRoots": [], /* List of folders to include type definitions from. */ - // "types": [], /* Type declaration files to be included in compilation. */ - "allowSyntheticDefaultImports": true, /* Allow default imports from modules with no default export. This does not affect code emit, just typechecking. */ - "esModuleInterop": true, /* Enables emit interoperability between CommonJS and ES Modules via creation of namespace objects for all imports. Implies 'allowSyntheticDefaultImports'. */ - // "preserveSymlinks": true, /* Do not resolve the real path of symlinks. */ - // "allowUmdGlobalAccess": true, /* Allow accessing UMD globals from modules. */ + /* Module Resolution Options */ + "moduleResolution": "node" /* Specify module resolution strategy: 'node' (Node.js) or 'classic' (TypeScript pre-1.6). */, + "baseUrl": "app" /* Base directory to resolve non-absolute module names. */, + // "paths": {}, /* A series of entries which re-map imports to lookup locations relative to the 'baseUrl'. */ + // "rootDirs": [], /* List of root folders whose combined content represents the structure of the project at runtime. */ + // "typeRoots": [], /* List of folders to include type definitions from. */ + // "types": [], /* Type declaration files to be included in compilation. */ + "allowSyntheticDefaultImports": true /* Allow default imports from modules with no default export. This does not affect code emit, just typechecking. */, + "esModuleInterop": true /* Enables emit interoperability between CommonJS and ES Modules via creation of namespace objects for all imports. Implies 'allowSyntheticDefaultImports'. */, + // "preserveSymlinks": true, /* Do not resolve the real path of symlinks. */ + // "allowUmdGlobalAccess": true, /* Allow accessing UMD globals from modules. */ - /* Source Map Options */ - // "sourceRoot": "", /* Specify the location where debugger should locate TypeScript files instead of source locations. */ - // "mapRoot": "", /* Specify the location where debugger should locate map files instead of generated locations. */ - // "inlineSourceMap": true, /* Emit a single file with source maps instead of having a separate file. */ - // "inlineSources": true, /* Emit the source alongside the sourcemaps within a single file; requires '--inlineSourceMap' or '--sourceMap' to be set. */ + /* Source Map Options */ + // "sourceRoot": "", /* Specify the location where debugger should locate TypeScript files instead of source locations. */ + // "mapRoot": "", /* Specify the location where debugger should locate map files instead of generated locations. */ + // "inlineSourceMap": true, /* Emit a single file with source maps instead of having a separate file. */ + // "inlineSources": true, /* Emit the source alongside the sourcemaps within a single file; requires '--inlineSourceMap' or '--sourceMap' to be set. */ - /* Experimental Options */ - // "experimentalDecorators": true, /* Enables experimental support for ES7 decorators. */ - // "emitDecoratorMetadata": true, /* Enables experimental support for emitting type metadata for decorators. */ + /* Experimental Options */ + // "experimentalDecorators": true, /* Enables experimental support for ES7 decorators. */ + // "emitDecoratorMetadata": true, /* Enables experimental support for emitting type metadata for decorators. */ - /* Advanced Options */ - "skipLibCheck": true, /* Skip type checking of declaration files. */ - "forceConsistentCasingInFileNames": true /* Disallow inconsistently-cased references to the same file. */ - } + /* Advanced Options */ + "skipLibCheck": true /* Skip type checking of declaration files. */, + "forceConsistentCasingInFileNames": true /* Disallow inconsistently-cased references to the same file. */ + } } From e1a319ebad340156a7169a89a25060207eecdd97 Mon Sep 17 00:00:00 2001 From: AlexAlexandre <alexalexandrejr@gmail.com> Date: Mon, 6 Sep 2021 17:42:16 -0300 Subject: [PATCH 71/90] [improve] - setting prettier to run at lint-staged --- package.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package.json b/package.json index 2be5e19821..b51dfec9b3 100644 --- a/package.json +++ b/package.json @@ -22,7 +22,7 @@ }, "lint-staged": { "*.{js,ts,tsx}": [ - "eslint", + "prettier-lint", "jest --bail --findRelatedTests" ] }, From a7fadf75656ae4efe60fb65e4143a4783d1db6db Mon Sep 17 00:00:00 2001 From: AlexAlexandre <alexalexandrejr@gmail.com> Date: Mon, 6 Sep 2021 19:29:02 -0300 Subject: [PATCH 72/90] [improve] - updating CONTRIBUTING.MD file --- CONTRIBUTING.md | 18 ++++++++++++++++++ package.json | 1 + 2 files changed, 19 insertions(+) diff --git a/CONTRIBUTING.md b/CONTRIBUTING.md index 6775dbd8cb..009e804038 100644 --- a/CONTRIBUTING.md +++ b/CONTRIBUTING.md @@ -54,6 +54,24 @@ To check for lint issues on your code, run this on your terminal: yarn lint ``` +## Code formatting + +We use [Prettier](https://prettier.io) to format the code style in our project. We have a pre-commit hook enforcing commits to follow our style guides. + +To check your code formatting, run this on your terminal: + +```sh +yarn prettier-check +``` + +To fix your code formatting issues, run this on your terminal: + +```sh +yarn prettier +``` + +[Check this link](https://prettier.io/docs/en/editors.html) to see how to integrate Prettier with your preferred code editor, and run Prettier when save your file for example. + ## Tests It's always important to ensure everything is working properly and that's why tests are great. We have unit and e2e tests on this project. diff --git a/package.json b/package.json index b51dfec9b3..cbfb654ae3 100644 --- a/package.json +++ b/package.json @@ -8,6 +8,7 @@ "test-update": "jest --updateSnapshot", "lint": "eslint .", "prettier": "prettier --write .", + "prettier-check": "prettier --check .", "prettier-lint": "yarn lint --fix && prettier --write .", "ci": "npm run precommit && codecov", "ios": "npx react-native run-ios", From a9112dc164979ff3840fb56286fed03dc417dbd0 Mon Sep 17 00:00:00 2001 From: AlexAlexandre <alexalexandrejr@gmail.com> Date: Wed, 8 Sep 2021 11:06:58 -0300 Subject: [PATCH 73/90] [improve] - update snapshot --- __tests__/__snapshots__/Storyshots.test.js.snap | 1 - 1 file changed, 1 deletion(-) diff --git a/__tests__/__snapshots__/Storyshots.test.js.snap b/__tests__/__snapshots__/Storyshots.test.js.snap index 29d57b7ad1..1aef913526 100644 --- a/__tests__/__snapshots__/Storyshots.test.js.snap +++ b/__tests__/__snapshots__/Storyshots.test.js.snap @@ -43951,7 +43951,6 @@ exports[`Storyshots Message Thumbnail from server 1`] = ` "flex": 1, "height": 200, "marginBottom": 1, - "width": null, }, ] } From f1a9cb8e656193be052b4e85ca43a9fd047969bf Mon Sep 17 00:00:00 2001 From: Diego Mello <diegolmello@gmail.com> Date: Wed, 8 Sep 2021 17:38:08 -0300 Subject: [PATCH 74/90] Commit yarn.lock --- yarn.lock | 578 ++++++++++++++++++++++++++++++++++++++++++++++-------- 1 file changed, 495 insertions(+), 83 deletions(-) diff --git a/yarn.lock b/yarn.lock index b5a0989713..c0a5af6c92 100644 --- a/yarn.lock +++ b/yarn.lock @@ -2,6 +2,13 @@ # yarn lockfile v1 +"@babel/code-frame@7.12.11": + version "7.12.11" + resolved "https://registry.yarnpkg.com/@babel/code-frame/-/code-frame-7.12.11.tgz#f4ad435aa263db935b8f10f2c552d23fb716a63f" + integrity sha512-Zt1yodBx1UcyiePMSkWnU4hPqhwq7hGi2nFL1LeA3EUl+q2LQx16MISgJ0+z7dnmgvP9QtIleuETGOiOH1RcIw== + dependencies: + "@babel/highlight" "^7.10.4" + "@babel/code-frame@7.5.5": version "7.5.5" resolved "https://registry.yarnpkg.com/@babel/code-frame/-/code-frame-7.5.5.tgz#bc0782f6d69f7b7d49531219699b988f669a8f9d" @@ -126,10 +133,10 @@ semver "^5.4.1" source-map "^0.5.0" -"@babel/eslint-parser@^7.13.4": - version "7.14.7" - resolved "https://registry.yarnpkg.com/@babel/eslint-parser/-/eslint-parser-7.14.7.tgz#91be59a4f7dd60d02a3ef772d156976465596bda" - integrity sha512-6WPwZqO5priAGIwV6msJcdc9TsEPzYeYdS/Xuoap+/ihkgN6dzHp2bcAAwyWZ5bLzk0vvjDmKvRwkqNaiJ8BiQ== +"@babel/eslint-parser@^7.14.7": + version "7.15.4" + resolved "https://registry.yarnpkg.com/@babel/eslint-parser/-/eslint-parser-7.15.4.tgz#46385943726291fb3e8db99522c8099b15684387" + integrity sha512-hPMIAmGNbmQzXJIo2P43Zj9UhRmGev5f9nqdBFOWNGDGh6XKmjby79woBvg6y0Jur6yRfQBneDbUQ8ZVc1krFw== dependencies: eslint-scope "^5.1.1" eslint-visitor-keys "^2.1.0" @@ -2180,19 +2187,18 @@ resolved "https://registry.yarnpkg.com/@emotion/weak-memoize/-/weak-memoize-0.2.5.tgz#8eed982e2ee6f7f4e44c253e12962980791efd46" integrity sha512-6U71C2Wp7r5XtFtQzYrW5iKFT67OixrSxjI4MptCHzdSVlgabczzqLe0ZSgnub/5Kp4hSbpDB1tMytZY9pwxxA== -"@eslint/eslintrc@^0.2.1": - version "0.2.2" - resolved "https://registry.yarnpkg.com/@eslint/eslintrc/-/eslintrc-0.2.2.tgz#d01fc791e2fc33e88a29d6f3dc7e93d0cd784b76" - integrity sha512-EfB5OHNYp1F4px/LI/FEnGylop7nOqkQ1LRzCM0KccA2U8tvV8w01KBv37LbO7nW4H+YhKyo2LcJhRwjjV17QQ== +"@eslint/eslintrc@^0.4.3": + version "0.4.3" + resolved "https://registry.yarnpkg.com/@eslint/eslintrc/-/eslintrc-0.4.3.tgz#9e42981ef035beb3dd49add17acb96e8ff6f394c" + integrity sha512-J6KFFz5QCYUJq3pf0mjEcCJVERbzv71PUIDczuh9JkwGEzced6CO5ADLHB1rbf/+oPBtoPfMYNOpGDzCANlbXw== dependencies: ajv "^6.12.4" debug "^4.1.1" espree "^7.3.0" - globals "^12.1.0" + globals "^13.9.0" ignore "^4.0.6" import-fresh "^3.2.1" js-yaml "^3.13.1" - lodash "^4.17.19" minimatch "^3.0.4" strip-json-comments "^3.1.1" @@ -2208,6 +2214,20 @@ dependencies: "@hapi/hoek" "^9.0.0" +"@humanwhocodes/config-array@^0.5.0": + version "0.5.0" + resolved "https://registry.yarnpkg.com/@humanwhocodes/config-array/-/config-array-0.5.0.tgz#1407967d4c6eecd7388f83acf1eaf4d0c6e58ef9" + integrity sha512-FagtKFz74XrTl7y6HCzQpwDfXP0yhxe9lHLD1UZxjvZIcbyRz8zTFF/yYNfSfzU414eDwZ1SrO0Qvtyf+wFMQg== + dependencies: + "@humanwhocodes/object-schema" "^1.2.0" + debug "^4.1.1" + minimatch "^3.0.4" + +"@humanwhocodes/object-schema@^1.2.0": + version "1.2.0" + resolved "https://registry.yarnpkg.com/@humanwhocodes/object-schema/-/object-schema-1.2.0.tgz#87de7af9c231826fdd68ac7258f77c429e0e5fcf" + integrity sha512-wdppn25U8z/2yiaT6YGquE6X8sSv7hNMWSXYSSU1jGv/yd6XqjXgTDJ8KP4NgjTXfJ3GbRjeeb8RTV7a/VpM+w== + "@hypnosphi/create-react-context@^0.3.1": version "0.3.1" resolved "https://registry.yarnpkg.com/@hypnosphi/create-react-context/-/create-react-context-0.3.1.tgz#f8bfebdc7665f5d426cba3753e0e9c7d3154d7c6" @@ -2794,11 +2814,32 @@ call-me-maybe "^1.0.1" glob-to-regexp "^0.3.0" +"@nodelib/fs.scandir@2.1.5": + version "2.1.5" + resolved "https://registry.yarnpkg.com/@nodelib/fs.scandir/-/fs.scandir-2.1.5.tgz#7619c2eb21b25483f6d167548b4cfd5a7488c3d5" + integrity sha512-vq24Bq3ym5HEQm2NKCr3yXDwjc7vTsEThRDnkp2DK9p1uqLR+DHurm/NOTo0KG7HYHU7eppKZj3MyqYuMBf62g== + dependencies: + "@nodelib/fs.stat" "2.0.5" + run-parallel "^1.1.9" + +"@nodelib/fs.stat@2.0.5", "@nodelib/fs.stat@^2.0.2": + version "2.0.5" + resolved "https://registry.yarnpkg.com/@nodelib/fs.stat/-/fs.stat-2.0.5.tgz#5bd262af94e9d25bd1e71b05deed44876a222e8b" + integrity sha512-RkhPPp2zrqDAQA/2jNhnztcPAlv64XdhIp7a7454A5ovI7Bukxgt7MX7udwAu3zg1DcpPU0rz3VV1SeaqvY4+A== + "@nodelib/fs.stat@^1.1.2": version "1.1.3" resolved "https://registry.yarnpkg.com/@nodelib/fs.stat/-/fs.stat-1.1.3.tgz#2b5a3ab3f918cca48a8c754c08168e3f03eba61b" integrity sha512-shAmDyaQC4H92APFoIaVDHCx5bStIocgvbwQyxPRrbUY20V1EYTbSDchWbuwlMG3V17cprZhA6+78JfB+3DTPw== +"@nodelib/fs.walk@^1.2.3": + version "1.2.8" + resolved "https://registry.yarnpkg.com/@nodelib/fs.walk/-/fs.walk-1.2.8.tgz#e95737e8bb6746ddedf69c556953494f196fe69a" + integrity sha512-oGB+UxlgWcgQkgwo8GcEGwemoTFt3FIO9ababBmaGwXIoBKZ+GTy0pP185beGg7Llih/NSHSV2XAs1lnznocSg== + dependencies: + "@nodelib/fs.scandir" "2.1.5" + fastq "^1.6.0" + "@nozbe/sqlite@3.31.1": version "3.31.1" resolved "https://registry.yarnpkg.com/@nozbe/sqlite/-/sqlite-3.31.1.tgz#ffd394ad7c188c6b73f89fd6e1ccb849a1b96dba" @@ -3155,6 +3196,13 @@ resolved "https://registry.yarnpkg.com/@redux-saga/types/-/types-1.1.0.tgz#0e81ce56b4883b4b2a3001ebe1ab298b84237204" integrity sha512-afmTuJrylUU/0OtqzaRkbyYFFNgCF73Bvel/sw90pvGrWIZ+vyoIJqA6eMSoA6+nb443kTmulmBtC9NerXboNg== +"@rocket.chat/eslint-config@^0.4.0": + version "0.4.0" + resolved "https://registry.yarnpkg.com/@rocket.chat/eslint-config/-/eslint-config-0.4.0.tgz#d648decd02ae739eac17a32e1630332a75318ea1" + integrity sha512-uVxoH3/TtusmXp73JtmDKlKK3EQTk+F/tnvVxfSAeyDCAS1/8HeZS+r81md3EOtRvmu1dselXg8+R1eO55QZfg== + dependencies: + eslint-plugin-import "^2.17.2" + "@rocket.chat/react-native-fast-image@^8.2.0": version "8.2.0" resolved "https://registry.yarnpkg.com/@rocket.chat/react-native-fast-image/-/react-native-fast-image-8.2.0.tgz#4f48858f95f40afcb10b39cee9b1239c150d6c51" @@ -3703,16 +3751,34 @@ dependencies: jest-diff "^24.3.0" +"@types/jest@^26.0.24": + version "26.0.24" + resolved "https://registry.yarnpkg.com/@types/jest/-/jest-26.0.24.tgz#943d11976b16739185913a1936e0de0c4a7d595a" + integrity sha512-E/X5Vib8BWqZNRlDxj9vYXhsDwPYbPINqKF9BsnSoon4RQ0D9moEuLD8txgyypFLH7J4+Lho9Nr/c8H0Fi+17w== + dependencies: + jest-diff "^26.0.0" + pretty-format "^26.0.0" + "@types/json-schema@^7.0.5": version "7.0.7" resolved "https://registry.yarnpkg.com/@types/json-schema/-/json-schema-7.0.7.tgz#98a993516c859eb0d5c4c8f098317a9ea68db9ad" integrity sha512-cxWFQVseBm6O9Gbw1IWb8r6OS4OhSt3hPZLkFApLjM8TEXROBuQGLAH2i2gZpcXdLBIrpXuTDhH7Vbm1iXmNGA== +"@types/json-schema@^7.0.7": + version "7.0.9" + resolved "https://registry.yarnpkg.com/@types/json-schema/-/json-schema-7.0.9.tgz#97edc9037ea0c38585320b28964dde3b39e4660d" + integrity sha512-qcUXuemtEu+E5wZSJHNxUXeCZhAfXKQ41D+duX+VYPde7xyEVZci+/oXKJL13tnRs9lR2pr4fod59GT6/X1/yQ== + "@types/json5@^0.0.29": version "0.0.29" resolved "https://registry.yarnpkg.com/@types/json5/-/json5-0.0.29.tgz#ee28707ae94e11d2b827bcbe5270bcea7f3e71ee" integrity sha1-7ihweulOEdK4J7y+UnC86n8+ce4= +"@types/lodash@^4.14.171": + version "4.14.172" + resolved "https://registry.yarnpkg.com/@types/lodash/-/lodash-4.14.172.tgz#aad774c28e7bfd7a67de25408e03ee5a8c3d028a" + integrity sha512-/BHF5HAx3em7/KkzVKm3LrsD6HZAXuXO1AJZQ3cRRBZj4oHZDviWPYu0aEplAqDFNHZPW6d3G7KN+ONcCCC7pw== + "@types/minimatch@*": version "3.0.3" resolved "https://registry.yarnpkg.com/@types/minimatch/-/minimatch-3.0.3.tgz#3dca0e3f33b200fc7d1139c0cd96c1268cadfd9d" @@ -3756,6 +3822,34 @@ "@types/history" "*" "@types/react" "*" +"@types/react-native-config-reader@^4.1.0": + version "4.1.0" + resolved "https://registry.yarnpkg.com/@types/react-native-config-reader/-/react-native-config-reader-4.1.0.tgz#33066cd0452b86b605b41bed47b38470dd85d428" + integrity sha512-meRB7e21CUmeS+so51CthLRQxZBymHZoDpq3UaDQHP9ucYbdeA7E0WFoI9vQE1h6kX3Mau3wyU2wQTZiD2674Q== + +"@types/react-native-platform-touchable@^1.1.2": + version "1.1.2" + resolved "https://registry.yarnpkg.com/@types/react-native-platform-touchable/-/react-native-platform-touchable-1.1.2.tgz#c0060f679ffe2ff96960cfde8b60c0fe87168ebf" + integrity sha512-nRA5GuDdG1e2I3f5Ukwdlbw1d0H2GbBU+j0H16/cNelVYPz3zLoxcCHhkNdZ9Wr8LVgVcvqK7vKXG+mzepvpMw== + dependencies: + "@types/react" "*" + "@types/react-native" "*" + +"@types/react-native-scrollable-tab-view@^0.10.2": + version "0.10.2" + resolved "https://registry.yarnpkg.com/@types/react-native-scrollable-tab-view/-/react-native-scrollable-tab-view-0.10.2.tgz#a6006efcad320b9dffd23b080cfe153cebcbc1a6" + integrity sha512-N6IObGTHFKIi2/lFqMLcUICjzqA8phbNWUC6apAdfBnJSrGWkHjTctPt28qpYaQA6KqtCsmhZ19RpzszDje0pg== + dependencies: + "@types/react" "*" + "@types/react-native" "*" + +"@types/react-native@*": + version "0.65.0" + resolved "https://registry.yarnpkg.com/@types/react-native/-/react-native-0.65.0.tgz#bef9ca619f421abafae891ac0629e27cbfe63b42" + integrity sha512-GgM6d47SQM9a6iOWKsdseFtTsKZGvmbr0FEaJMdCVy2SJmgtUq5JVpr3+aqHdrJQrg93e08VxPAWmz0qUtIPOg== + dependencies: + "@types/react" "*" + "@types/react-native@^0.62.7": version "0.62.10" resolved "https://registry.yarnpkg.com/@types/react-native/-/react-native-0.62.10.tgz#82c481df21db4e7460755dc3fc7091e333a1d2bd" @@ -3773,6 +3867,16 @@ hoist-non-react-statics "^3.3.0" redux "^4.0.0" +"@types/react-redux@^7.1.18": + version "7.1.18" + resolved "https://registry.yarnpkg.com/@types/react-redux/-/react-redux-7.1.18.tgz#2bf8fd56ebaae679a90ebffe48ff73717c438e04" + integrity sha512-9iwAsPyJ9DLTRH+OFeIrm9cAbIj1i2ANL3sKQFATqnPWRbg+jEFXyZOKHiQK/N86pNRXbb4HRxAxo0SIX1XwzQ== + dependencies: + "@types/hoist-non-react-statics" "^3.3.0" + "@types/react" "*" + hoist-non-react-statics "^3.3.0" + redux "^4.0.0" + "@types/react-syntax-highlighter@11.0.4": version "11.0.4" resolved "https://registry.yarnpkg.com/@types/react-syntax-highlighter/-/react-syntax-highlighter-11.0.4.tgz#d86d17697db62f98046874f62fdb3e53a0bbc4cd" @@ -3780,6 +3884,13 @@ dependencies: "@types/react" "*" +"@types/react-test-renderer@^17.0.1": + version "17.0.1" + resolved "https://registry.yarnpkg.com/@types/react-test-renderer/-/react-test-renderer-17.0.1.tgz#3120f7d1c157fba9df0118dae20cb0297ee0e06b" + integrity sha512-3Fi2O6Zzq/f3QR9dRnlnHso9bMl7weKCviFmfF6B4LS1Uat6Hkm15k0ZAQuDz+UBq6B3+g+NM6IT2nr5QgPzCw== + dependencies: + "@types/react" "*" + "@types/react-textarea-autosize@^4.3.3": version "4.3.5" resolved "https://registry.yarnpkg.com/@types/react-textarea-autosize/-/react-textarea-autosize-4.3.5.tgz#6c4d2753fa1864c98c0b2b517f67bb1f6e4c46de" @@ -3804,6 +3915,15 @@ "@types/scheduler" "*" csstype "^3.0.2" +"@types/react@^17.0.14": + version "17.0.20" + resolved "https://registry.yarnpkg.com/@types/react/-/react-17.0.20.tgz#a4284b184d47975c71658cd69e759b6bd37c3b8c" + integrity sha512-wWZrPlihslrPpcKyCSlmIlruakxr57/buQN1RjlIeaaTWDLtJkTtRW429MoQJergvVKc4IWBpRhWw7YNh/7GVA== + dependencies: + "@types/prop-types" "*" + "@types/scheduler" "*" + csstype "^3.0.2" + "@types/scheduler@*": version "0.16.1" resolved "https://registry.yarnpkg.com/@types/scheduler/-/scheduler-0.16.1.tgz#18845205e86ff0038517aab7a18a62a6b9f71275" @@ -3888,6 +4008,75 @@ dependencies: "@types/yargs-parser" "*" +"@typescript-eslint/eslint-plugin@^4.28.3": + version "4.31.0" + resolved "https://registry.yarnpkg.com/@typescript-eslint/eslint-plugin/-/eslint-plugin-4.31.0.tgz#9c3fa6f44bad789a962426ad951b54695bd3af6b" + integrity sha512-iPKZTZNavAlOhfF4gymiSuUkgLne/nh5Oz2/mdiUmuZVD42m9PapnCnzjxuDsnpnbH3wT5s2D8bw6S39TC6GNw== + dependencies: + "@typescript-eslint/experimental-utils" "4.31.0" + "@typescript-eslint/scope-manager" "4.31.0" + debug "^4.3.1" + functional-red-black-tree "^1.0.1" + regexpp "^3.1.0" + semver "^7.3.5" + tsutils "^3.21.0" + +"@typescript-eslint/experimental-utils@4.31.0": + version "4.31.0" + resolved "https://registry.yarnpkg.com/@typescript-eslint/experimental-utils/-/experimental-utils-4.31.0.tgz#0ef1d5d86c334f983a00f310e43c1ce4c14e054d" + integrity sha512-Hld+EQiKLMppgKKkdUsLeVIeEOrwKc2G983NmznY/r5/ZtZCDvIOXnXtwqJIgYz/ymsy7n7RGvMyrzf1WaSQrw== + dependencies: + "@types/json-schema" "^7.0.7" + "@typescript-eslint/scope-manager" "4.31.0" + "@typescript-eslint/types" "4.31.0" + "@typescript-eslint/typescript-estree" "4.31.0" + eslint-scope "^5.1.1" + eslint-utils "^3.0.0" + +"@typescript-eslint/parser@^4.28.5": + version "4.31.0" + resolved "https://registry.yarnpkg.com/@typescript-eslint/parser/-/parser-4.31.0.tgz#87b7cd16b24b9170c77595d8b1363f8047121e05" + integrity sha512-oWbzvPh5amMuTmKaf1wp0ySxPt2ZXHnFQBN2Szu1O//7LmOvgaKTCIDNLK2NvzpmVd5A2M/1j/rujBqO37hj3w== + dependencies: + "@typescript-eslint/scope-manager" "4.31.0" + "@typescript-eslint/types" "4.31.0" + "@typescript-eslint/typescript-estree" "4.31.0" + debug "^4.3.1" + +"@typescript-eslint/scope-manager@4.31.0": + version "4.31.0" + resolved "https://registry.yarnpkg.com/@typescript-eslint/scope-manager/-/scope-manager-4.31.0.tgz#9be33aed4e9901db753803ba233b70d79a87fc3e" + integrity sha512-LJ+xtl34W76JMRLjbaQorhR0hfRAlp3Lscdiz9NeI/8i+q0hdBZ7BsiYieLoYWqy+AnRigaD3hUwPFugSzdocg== + dependencies: + "@typescript-eslint/types" "4.31.0" + "@typescript-eslint/visitor-keys" "4.31.0" + +"@typescript-eslint/types@4.31.0": + version "4.31.0" + resolved "https://registry.yarnpkg.com/@typescript-eslint/types/-/types-4.31.0.tgz#9a7c86fcc1620189567dc4e46cad7efa07ee8dce" + integrity sha512-9XR5q9mk7DCXgXLS7REIVs+BaAswfdHhx91XqlJklmqWpTALGjygWVIb/UnLh4NWhfwhR5wNe1yTyCInxVhLqQ== + +"@typescript-eslint/typescript-estree@4.31.0": + version "4.31.0" + resolved "https://registry.yarnpkg.com/@typescript-eslint/typescript-estree/-/typescript-estree-4.31.0.tgz#4da4cb6274a7ef3b21d53f9e7147cc76f278a078" + integrity sha512-QHl2014t3ptg+xpmOSSPn5hm4mY8D4s97ftzyk9BZ8RxYQ3j73XcwuijnJ9cMa6DO4aLXeo8XS3z1omT9LA/Eg== + dependencies: + "@typescript-eslint/types" "4.31.0" + "@typescript-eslint/visitor-keys" "4.31.0" + debug "^4.3.1" + globby "^11.0.3" + is-glob "^4.0.1" + semver "^7.3.5" + tsutils "^3.21.0" + +"@typescript-eslint/visitor-keys@4.31.0": + version "4.31.0" + resolved "https://registry.yarnpkg.com/@typescript-eslint/visitor-keys/-/visitor-keys-4.31.0.tgz#4e87b7761cb4e0e627dc2047021aa693fc76ea2b" + integrity sha512-HUcRp2a9I+P21+O21yu3ezv3GEPGjyGiXoEUQwZXjR8UxRApGeLyWH4ZIIUSalE28aG4YsV6GjtaAVB3QKOu0w== + dependencies: + "@typescript-eslint/types" "4.31.0" + eslint-visitor-keys "^2.0.0" + "@ungap/promise-all-settled@1.1.2": version "1.1.2" resolved "https://registry.yarnpkg.com/@ungap/promise-all-settled/-/promise-all-settled-1.1.2.tgz#aa58042711d6e3275dd37dc597e5d31e8c290a44" @@ -4215,6 +4404,16 @@ ajv@^6.12.4: json-schema-traverse "^0.4.1" uri-js "^4.2.2" +ajv@^8.0.1: + version "8.6.2" + resolved "https://registry.yarnpkg.com/ajv/-/ajv-8.6.2.tgz#2fb45e0e5fcbc0813326c1c3da535d1881bb0571" + integrity sha512-9807RlWAgT564wT+DjeyU5OFMPjmzxVobvDFmNAhY+5zD6A2ly3jDp6sgnfyDtlIQ+7H97oc/DGCzzfu9rjw9w== + dependencies: + fast-deep-equal "^3.1.1" + json-schema-traverse "^1.0.0" + require-from-string "^2.0.2" + uri-js "^4.2.2" + anser@^1.4.9: version "1.4.10" resolved "https://registry.yarnpkg.com/anser/-/anser-1.4.10.tgz#befa3eddf282684bd03b63dcda3927aef8c2e35b" @@ -4450,6 +4649,17 @@ array-includes@^3.0.3, array-includes@^3.1.1: es-abstract "^1.17.0" is-string "^1.0.5" +array-includes@^3.1.3: + version "3.1.3" + resolved "https://registry.yarnpkg.com/array-includes/-/array-includes-3.1.3.tgz#c7f619b382ad2afaf5326cddfdc0afc61af7690a" + integrity sha512-gcem1KlBU7c9rB+Rq8/3PPKsK2kjqeEBa3bD5kkQo4nYlOHQCJqIJFqBXDEfwaRuYTT4E+FxA9xez7Gf/e3Q7A== + dependencies: + call-bind "^1.0.2" + define-properties "^1.1.3" + es-abstract "^1.18.0-next.2" + get-intrinsic "^1.1.1" + is-string "^1.0.5" + array-map@~0.0.0: version "0.0.0" resolved "https://registry.yarnpkg.com/array-map/-/array-map-0.0.0.tgz#88a2bab73d1cf7bcd5c1b118a003f66f665fa662" @@ -4467,6 +4677,11 @@ array-union@^1.0.1: dependencies: array-uniq "^1.0.1" +array-union@^2.1.0: + version "2.1.0" + resolved "https://registry.yarnpkg.com/array-union/-/array-union-2.1.0.tgz#b798420adbeb1de828d84acd8a2e23d3efe85e8d" + integrity sha512-HGyxoOTYUyCM6stUe6EJgnd4EoewAI7zMdfqO+kGjnlZmBDz/cR5pf8r/cR4Wq60sL/p0IkcjUEEPwS3GFrIyw== + array-uniq@^1.0.1: version "1.0.3" resolved "https://registry.yarnpkg.com/array-uniq/-/array-uniq-1.0.3.tgz#af6ac877a25cc7f74e058894753858dfdb24fdb6" @@ -4485,7 +4700,7 @@ array.prototype.flat@^1.2.1: define-properties "^1.1.3" es-abstract "^1.17.0-next.1" -array.prototype.flat@^1.2.3: +array.prototype.flat@^1.2.3, array.prototype.flat@^1.2.4: version "1.2.4" resolved "https://registry.yarnpkg.com/array.prototype.flat/-/array.prototype.flat-1.2.4.tgz#6ef638b43312bd401b4c6199fdec7e2dc9e9a123" integrity sha512-4470Xi3GAPAjZqFcljX2xzckv1qeKPizoNkiS0+O4IoPR2ZNpcjE0pkhdihlDouK+x6QOast26B4Q/O9DJnwSg== @@ -6796,6 +7011,11 @@ diff-sequences@^25.2.6: resolved "https://registry.yarnpkg.com/diff-sequences/-/diff-sequences-25.2.6.tgz#5f467c00edd35352b7bca46d7927d60e687a76dd" integrity sha512-Hq8o7+6GaZeoFjtpgvRBUknSXNeJiCx7V9Fr94ZMljNiCr9n9L8H8aJqgWOQiDDGdyn29fRNcDdRVJ5fdyihfg== +diff-sequences@^26.6.2: + version "26.6.2" + resolved "https://registry.yarnpkg.com/diff-sequences/-/diff-sequences-26.6.2.tgz#48ba99157de1923412eed41db6b6d4aa9ca7c0b1" + integrity sha512-Mv/TDa3nZ9sbc5soK+OoA74BsS3mL37yixCvUAQkiuA4Wz6YtwP/K47n2rv2ovzHZvoiQeA5FTQOschKkEwB0Q== + diff-sequences@^27.0.6: version "27.0.6" resolved "https://registry.yarnpkg.com/diff-sequences/-/diff-sequences-27.0.6.tgz#3305cb2e55a033924054695cc66019fd7f8e5723" @@ -6823,6 +7043,13 @@ dir-glob@2.0.0: arrify "^1.0.1" path-type "^3.0.0" +dir-glob@^3.0.1: + version "3.0.1" + resolved "https://registry.yarnpkg.com/dir-glob/-/dir-glob-3.0.1.tgz#56dbf73d992a4a93ba1584f4534063fd2e41717f" + integrity sha512-WkrWp9GR4KXfKGYzOLmTuGVi1UWFfws377n9cc55/tb6DuqyF6pcQ5AbiHEshaDpY9v6oaSr2XCDidGmMwdzIA== + dependencies: + path-type "^4.0.0" + doctrine@1.5.0: version "1.5.0" resolved "https://registry.yarnpkg.com/doctrine/-/doctrine-1.5.0.tgz#379dce730f6166f76cefa4e6707a159b02c5a6fa" @@ -7268,6 +7495,11 @@ eslint-config-airbnb@^18.1.0: object.assign "^4.1.0" object.entries "^1.1.1" +eslint-config-prettier@^8.3.0: + version "8.3.0" + resolved "https://registry.yarnpkg.com/eslint-config-prettier/-/eslint-config-prettier-8.3.0.tgz#f7471b20b6fe8a9a9254cc684454202886a2dd7a" + integrity sha512-BgZuLUSeKzvlL/VUjx/Yb787VQ26RU3gGjA3iiFvdsp/2bMfVIWUVP7tjxtjS0e+HP409cPlPvNkQloz8C91ew== + eslint-import-resolver-node@^0.3.3: version "0.3.4" resolved "https://registry.yarnpkg.com/eslint-import-resolver-node/-/eslint-import-resolver-node-0.3.4.tgz#85ffa81942c25012d8231096ddf679c03042c717" @@ -7276,6 +7508,14 @@ eslint-import-resolver-node@^0.3.3: debug "^2.6.9" resolve "^1.13.1" +eslint-import-resolver-node@^0.3.6: + version "0.3.6" + resolved "https://registry.yarnpkg.com/eslint-import-resolver-node/-/eslint-import-resolver-node-0.3.6.tgz#4048b958395da89668252001dbd9eca6b83bacbd" + integrity sha512-0En0w03NRVMn9Uiyn8YRPDKvWjxCWkslUEhGNTdGx15RvPJYQ+lbOlqrlNI2vEAs4pDYK4f/HN2TbDmk5TP0iw== + dependencies: + debug "^3.2.7" + resolve "^1.20.0" + eslint-module-utils@^2.6.0: version "2.6.1" resolved "https://registry.yarnpkg.com/eslint-module-utils/-/eslint-module-utils-2.6.1.tgz#b51be1e473dd0de1c5ea638e22429c2490ea8233" @@ -7284,6 +7524,14 @@ eslint-module-utils@^2.6.0: debug "^3.2.7" pkg-dir "^2.0.0" +eslint-module-utils@^2.6.2: + version "2.6.2" + resolved "https://registry.yarnpkg.com/eslint-module-utils/-/eslint-module-utils-2.6.2.tgz#94e5540dd15fe1522e8ffa3ec8db3b7fa7e7a534" + integrity sha512-QG8pcgThYOuqxupd06oYTZoNOGaUdTY1PqK+oS6ElF6vs4pBdk/aYxFVQQXzcrAqp9m7cl7lb2ubazX+g16k2Q== + dependencies: + debug "^3.2.7" + pkg-dir "^2.0.0" + eslint-plugin-import@2.22.0: version "2.22.0" resolved "https://registry.yarnpkg.com/eslint-plugin-import/-/eslint-plugin-import-2.22.0.tgz#92f7736fe1fde3e2de77623c838dd992ff5ffb7e" @@ -7303,6 +7551,27 @@ eslint-plugin-import@2.22.0: resolve "^1.17.0" tsconfig-paths "^3.9.0" +eslint-plugin-import@^2.17.2: + version "2.24.2" + resolved "https://registry.yarnpkg.com/eslint-plugin-import/-/eslint-plugin-import-2.24.2.tgz#2c8cd2e341f3885918ee27d18479910ade7bb4da" + integrity sha512-hNVtyhiEtZmpsabL4neEj+6M5DCLgpYyG9nzJY8lZQeQXEn5UPW1DpUdsMHMXsq98dbNm7nt1w9ZMSVpfJdi8Q== + dependencies: + array-includes "^3.1.3" + array.prototype.flat "^1.2.4" + debug "^2.6.9" + doctrine "^2.1.0" + eslint-import-resolver-node "^0.3.6" + eslint-module-utils "^2.6.2" + find-up "^2.0.0" + has "^1.0.3" + is-core-module "^2.6.0" + minimatch "^3.0.4" + object.values "^1.1.4" + pkg-up "^2.0.0" + read-pkg-up "^3.0.0" + resolve "^1.20.0" + tsconfig-paths "^3.11.0" + eslint-plugin-jsx-a11y@6.3.1: version "6.3.1" resolved "https://registry.yarnpkg.com/eslint-plugin-jsx-a11y/-/eslint-plugin-jsx-a11y-6.3.1.tgz#99ef7e97f567cc6a5b8dd5ab95a94a67058a2660" @@ -7377,6 +7646,13 @@ eslint-utils@^2.1.0: dependencies: eslint-visitor-keys "^1.1.0" +eslint-utils@^3.0.0: + version "3.0.0" + resolved "https://registry.yarnpkg.com/eslint-utils/-/eslint-utils-3.0.0.tgz#8aebaface7345bb33559db0a1f13a1d2d48c3672" + integrity sha512-uuQC43IGctw68pJA1RgbQS8/NP7rch6Cwd4j3ZBtgo4/8Flj4eGE7ZYSZRN3iq5pVUv6GPdW5Z1RFleo84uLDA== + dependencies: + eslint-visitor-keys "^2.0.0" + eslint-visitor-keys@^1.1.0: version "1.1.0" resolved "https://registry.yarnpkg.com/eslint-visitor-keys/-/eslint-visitor-keys-1.1.0.tgz#e2a82cea84ff246ad6fb57f9bde5b46621459ec2" @@ -7392,29 +7668,32 @@ eslint-visitor-keys@^2.0.0, eslint-visitor-keys@^2.1.0: resolved "https://registry.yarnpkg.com/eslint-visitor-keys/-/eslint-visitor-keys-2.1.0.tgz#f65328259305927392c938ed44eb0a5c9b2bd303" integrity sha512-0rSmRBzXgDzIsD6mGdJgevzgezI534Cer5L/vyMX0kHzT/jiB43jRhd9YUlMGYLQy2zprNmoT8qasCGtY+QaKw== -eslint@7.14.0: - version "7.14.0" - resolved "https://registry.yarnpkg.com/eslint/-/eslint-7.14.0.tgz#2d2cac1d28174c510a97b377f122a5507958e344" - integrity sha512-5YubdnPXrlrYAFCKybPuHIAH++PINe1pmKNc5wQRB9HSbqIK1ywAnntE3Wwua4giKu0bjligf1gLF6qxMGOYRA== +eslint@^7.31.0: + version "7.32.0" + resolved "https://registry.yarnpkg.com/eslint/-/eslint-7.32.0.tgz#c6d328a14be3fb08c8d1d21e12c02fdb7a2a812d" + integrity sha512-VHZ8gX+EDfz+97jGcgyGCyRia/dPOd6Xh9yPv8Bl1+SoaIwD+a/vlrOmGRUyOYu7MwUhc7CxqeaDZU13S4+EpA== dependencies: - "@babel/code-frame" "^7.0.0" - "@eslint/eslintrc" "^0.2.1" + "@babel/code-frame" "7.12.11" + "@eslint/eslintrc" "^0.4.3" + "@humanwhocodes/config-array" "^0.5.0" ajv "^6.10.0" chalk "^4.0.0" cross-spawn "^7.0.2" debug "^4.0.1" doctrine "^3.0.0" enquirer "^2.3.5" + escape-string-regexp "^4.0.0" eslint-scope "^5.1.1" eslint-utils "^2.1.0" eslint-visitor-keys "^2.0.0" - espree "^7.3.0" - esquery "^1.2.0" + espree "^7.3.1" + esquery "^1.4.0" esutils "^2.0.2" - file-entry-cache "^5.0.1" + fast-deep-equal "^3.1.3" + file-entry-cache "^6.0.1" functional-red-black-tree "^1.0.1" - glob-parent "^5.0.0" - globals "^12.1.0" + glob-parent "^5.1.2" + globals "^13.6.0" ignore "^4.0.6" import-fresh "^3.0.0" imurmurhash "^0.1.4" @@ -7422,7 +7701,7 @@ eslint@7.14.0: js-yaml "^3.13.1" json-stable-stringify-without-jsonify "^1.0.1" levn "^0.4.1" - lodash "^4.17.19" + lodash.merge "^4.6.2" minimatch "^3.0.4" natural-compare "^1.4.0" optionator "^0.9.1" @@ -7431,11 +7710,11 @@ eslint@7.14.0: semver "^7.2.1" strip-ansi "^6.0.0" strip-json-comments "^3.1.0" - table "^5.2.3" + table "^6.0.9" text-table "^0.2.0" v8-compile-cache "^2.0.3" -espree@^7.3.0: +espree@^7.3.0, espree@^7.3.1: version "7.3.1" resolved "https://registry.yarnpkg.com/espree/-/espree-7.3.1.tgz#f2df330b752c6f55019f8bd89b7660039c1bbbb6" integrity sha512-v3JCNCE64umkFpmkFGqzVKsOT0tN1Zr+ueqLZfpV1Ob8e+CEgPWa+OxCoGH3tnhimMKIaBm4m/vaRpJ/krRz2g== @@ -7449,7 +7728,7 @@ esprima@^4.0.0, esprima@^4.0.1, esprima@~4.0.0: resolved "https://registry.yarnpkg.com/esprima/-/esprima-4.0.1.tgz#13b04cdb3e6c5d19df91ab6987a8695619b0aa71" integrity sha512-eGuFFw7Upda+g4p+QHvnW0RyTX/SVeJBDM/gCtMARO0cLuT2HcEKnTPvhjV6aGeqrCB/sbNop0Kszm0jsaWU4A== -esquery@^1.2.0: +esquery@^1.4.0: version "1.4.0" resolved "https://registry.yarnpkg.com/esquery/-/esquery-1.4.0.tgz#2148ffc38b82e8c7057dfed48425b3e61f0f24a5" integrity sha512-cCDispWt5vHHtwMY2YrAQ4ibFkAL8RbH5YGBnZBc90MolvvfkkQcJro/aZiAQUlQ3qgrYS6D6v8Gc5G5CQsc9w== @@ -7790,6 +8069,11 @@ fast-deep-equal@^3.1.1: resolved "https://registry.yarnpkg.com/fast-deep-equal/-/fast-deep-equal-3.1.1.tgz#545145077c501491e33b15ec408c294376e94ae4" integrity sha512-8UEa58QDLauDNfpbrX55Q9jrGHThw2ZMdOky5Gl1CDtVeJDPVrG4Jxx1N8jw2gkWaff5UUuX1KJd+9zGe2B+ZA== +fast-deep-equal@^3.1.3: + version "3.1.3" + resolved "https://registry.yarnpkg.com/fast-deep-equal/-/fast-deep-equal-3.1.3.tgz#3a7d56b559d6cbc3eb512325244e619a65c6c525" + integrity sha512-f3qQ9oQy9j2AhBe/H9VC91wLmKBCCU/gDOnKNAYG5hswO7BLKj09Hc5HYNz9cGI++xlpDCIgDaitVs03ATR84Q== + fast-glob@^2.0.2: version "2.2.7" resolved "https://registry.yarnpkg.com/fast-glob/-/fast-glob-2.2.7.tgz#6953857c3afa475fff92ee6015d52da70a4cd39d" @@ -7802,6 +8086,17 @@ fast-glob@^2.0.2: merge2 "^1.2.3" micromatch "^3.1.10" +fast-glob@^3.1.1: + version "3.2.7" + resolved "https://registry.yarnpkg.com/fast-glob/-/fast-glob-3.2.7.tgz#fd6cb7a2d7e9aa7a7846111e85a196d6b2f766a1" + integrity sha512-rYGMRwip6lUMvYD3BTScMwT1HtAs2d71SMv66Vrxs0IekGZEjhM0pcMfjQPnknBt2zeCwQMEupiN02ZP4DiT1Q== + dependencies: + "@nodelib/fs.stat" "^2.0.2" + "@nodelib/fs.walk" "^1.2.3" + glob-parent "^5.1.2" + merge2 "^1.3.0" + micromatch "^4.0.4" + fast-json-stable-stringify@^2.0.0: version "2.1.0" resolved "https://registry.yarnpkg.com/fast-json-stable-stringify/-/fast-json-stable-stringify-2.1.0.tgz#874bf69c6f404c2b5d99c481341399fd55892633" @@ -7812,6 +8107,13 @@ fast-levenshtein@^2.0.6, fast-levenshtein@~2.0.6: resolved "https://registry.yarnpkg.com/fast-levenshtein/-/fast-levenshtein-2.0.6.tgz#3d8a5c66883a16a30ca8643e851f19baa7797917" integrity sha1-PYpcZog6FqMMqGQ+hR8Zuqd5eRc= +fastq@^1.6.0: + version "1.12.0" + resolved "https://registry.yarnpkg.com/fastq/-/fastq-1.12.0.tgz#ed7b6ab5d62393fb2cc591c853652a5c318bf794" + integrity sha512-VNX0QkHK3RsXVKr9KrlUv/FoTa0NdbYoHHl7uXHv2rzyHSlxjdNAKug2twd9luJxpcyNeAgf5iPPMutJO67Dfg== + dependencies: + reusify "^1.0.4" + fault@^1.0.2: version "1.0.4" resolved "https://registry.yarnpkg.com/fault/-/fault-1.0.4.tgz#eafcfc0a6d214fc94601e170df29954a4f842f13" @@ -7911,12 +8213,12 @@ figures@^3.0.0: dependencies: escape-string-regexp "^1.0.5" -file-entry-cache@^5.0.1: - version "5.0.1" - resolved "https://registry.yarnpkg.com/file-entry-cache/-/file-entry-cache-5.0.1.tgz#ca0f6efa6dd3d561333fb14515065c2fafdf439c" - integrity sha512-bCg29ictuBaKUwwArK4ouCaqDgLZcysCFLmM/Yn/FDoqndh/9vNuQfXRDvTuXKLxfD/JtZQGKFT8MGcJBK644g== +file-entry-cache@^6.0.1: + version "6.0.1" + resolved "https://registry.yarnpkg.com/file-entry-cache/-/file-entry-cache-6.0.1.tgz#211b2dd9659cb0394b073e7323ac3c933d522027" + integrity sha512-7Gps/XWymbLk2QLYK4NzpMOrYjMhdIxXuIvy2QBsLE6ljuodKvdkWs/cpyJJ3CVIVpH0Oi1Hvg1ovbMzLdFBBg== dependencies: - flat-cache "^2.0.1" + flat-cache "^3.0.4" file-loader@^4.2.0: version "4.3.0" @@ -8060,24 +8362,23 @@ find-yarn-workspace-root@^2.0.0: dependencies: micromatch "^4.0.2" -flat-cache@^2.0.1: - version "2.0.1" - resolved "https://registry.yarnpkg.com/flat-cache/-/flat-cache-2.0.1.tgz#5d296d6f04bda44a4630a301413bdbc2ec085ec0" - integrity sha512-LoQe6yDuUMDzQAEH8sgmh4Md6oZnc/7PjtwjNFSzveXqSHt6ka9fPBuso7IGf9Rz4uqnSnWiFH2B/zj24a5ReA== +flat-cache@^3.0.4: + version "3.0.4" + resolved "https://registry.yarnpkg.com/flat-cache/-/flat-cache-3.0.4.tgz#61b0338302b2fe9f957dcc32fc2a87f1c3048b11" + integrity sha512-dm9s5Pw7Jc0GvMYbshN6zchCA9RgQlzzEZX3vylR9IqFfS8XciblUXOKfW6SiuJ0e13eDYZoZV5wdrev7P3Nwg== dependencies: - flatted "^2.0.0" - rimraf "2.6.3" - write "1.0.3" + flatted "^3.1.0" + rimraf "^3.0.2" flat@^5.0.2: version "5.0.2" resolved "https://registry.yarnpkg.com/flat/-/flat-5.0.2.tgz#8ca6fe332069ffa9d324c327198c598259ceb241" integrity sha512-b6suED+5/3rTpUBdG1gupIl8MPFCAMA0QXwmljLhvCUKcUvdE4gWky9zpuGCcXHOsz4J9wPGNWq6OKpmIzz3hQ== -flatted@^2.0.0: - version "2.0.2" - resolved "https://registry.yarnpkg.com/flatted/-/flatted-2.0.2.tgz#4575b21e2bcee7434aa9be662f4b7b5f9c2b5138" - integrity sha512-r5wGx7YeOwNWNlCA0wQ86zKyDLMQr+/RB8xy74M4hTphfmjlijTSSXGuH8rnvKZnfT9i+75zmd8jcKdMR4O6jA== +flatted@^3.1.0: + version "3.2.2" + resolved "https://registry.yarnpkg.com/flatted/-/flatted-3.2.2.tgz#64bfed5cb68fe3ca78b3eb214ad97b63bedce561" + integrity sha512-JaTY/wtrcSyvXJl4IMFHPKyFur1sE9AUqc0QnhOaJ0CxHtAoIV8pYDzeEfAaNEtGkOfq4gr3LBFmdXW5mOQFnA== flow-parser@0.*: version "0.156.0" @@ -8420,20 +8721,20 @@ glob-parent@^3.1.0: is-glob "^3.1.0" path-dirname "^1.0.0" -glob-parent@^5.0.0, glob-parent@~5.1.0: - version "5.1.1" - resolved "https://registry.yarnpkg.com/glob-parent/-/glob-parent-5.1.1.tgz#b6c1ef417c4e5663ea498f1c45afac6916bbc229" - integrity sha512-FnI+VGOpnlGHWZxthPGR+QhR78fuiK0sNLkHQv+bL9fQi57lNNdquIbna/WrfROrolq8GK5Ek6BiMwqL/voRYQ== - dependencies: - is-glob "^4.0.1" - -glob-parent@~5.1.2: +glob-parent@^5.1.2, glob-parent@~5.1.2: version "5.1.2" resolved "https://registry.yarnpkg.com/glob-parent/-/glob-parent-5.1.2.tgz#869832c58034fe68a4093c17dc15e8340d8401c4" integrity sha512-AOIgSQCepiJYwP3ARnGx+5VnTu2HBYdzbGP45eLw1vr3zB3vZLeyed1sC9hnbcOc9/SrMyM5RPQrkGz4aS9Zow== dependencies: is-glob "^4.0.1" +glob-parent@~5.1.0: + version "5.1.1" + resolved "https://registry.yarnpkg.com/glob-parent/-/glob-parent-5.1.1.tgz#b6c1ef417c4e5663ea498f1c45afac6916bbc229" + integrity sha512-FnI+VGOpnlGHWZxthPGR+QhR78fuiK0sNLkHQv+bL9fQi57lNNdquIbna/WrfROrolq8GK5Ek6BiMwqL/voRYQ== + dependencies: + is-glob "^4.0.1" + glob-to-regexp@^0.3.0: version "0.3.0" resolved "https://registry.yarnpkg.com/glob-to-regexp/-/glob-to-regexp-0.3.0.tgz#8c5a1494d2066c570cc3bfe4496175acc4d502ab" @@ -8523,12 +8824,12 @@ globals@^11.1.0: resolved "https://registry.yarnpkg.com/globals/-/globals-11.12.0.tgz#ab8795338868a0babd8525758018c2a7eb95c42e" integrity sha512-WOBp/EEGUiIsJSp7wcv/y6MO+lV9UoncWqxuFfm8eBwzWNgyfBd6Gz+IeKQ9jCmyhoH99g15M3T+QaVHFjizVA== -globals@^12.1.0: - version "12.4.0" - resolved "https://registry.yarnpkg.com/globals/-/globals-12.4.0.tgz#a18813576a41b00a24a97e7f815918c2e19925f8" - integrity sha512-BWICuzzDvDoH54NHKCseDanAhE3CeDorgDL5MT6LMXXj2WCnd9UC2szdk4AWLfjdgNBCXLUanXYcpBBKOSWGwg== +globals@^13.6.0, globals@^13.9.0: + version "13.11.0" + resolved "https://registry.yarnpkg.com/globals/-/globals-13.11.0.tgz#40ef678da117fe7bd2e28f1fab24951bd0255be7" + integrity sha512-08/xrJ7wQjK9kkkRoI3OFUBbLx4f+6x3SGwcPvQ0QH6goFDrOU2oyAWrmh3dJezu65buo+HBMzAMQy6rovVC3g== dependencies: - type-fest "^0.8.1" + type-fest "^0.20.2" globalthis@^1.0.0: version "1.0.1" @@ -8550,6 +8851,18 @@ globby@8.0.2: pify "^3.0.0" slash "^1.0.0" +globby@^11.0.3: + version "11.0.4" + resolved "https://registry.yarnpkg.com/globby/-/globby-11.0.4.tgz#2cbaff77c2f2a62e71e9b2813a67b97a3a3001a5" + integrity sha512-9O4MVG9ioZJ08ffbcyVYyLOJLk5JQ688pJ4eMGLpdWLHq/Wr1D9BlriLQyL0E+jbkuePVZXYFj47QM/v093wHg== + dependencies: + array-union "^2.1.0" + dir-glob "^3.0.1" + fast-glob "^3.1.1" + ignore "^5.1.4" + merge2 "^1.3.0" + slash "^3.0.0" + good-listener@^1.2.2: version "1.2.2" resolved "https://registry.yarnpkg.com/good-listener/-/good-listener-1.2.2.tgz#d53b30cdf9313dffb7dc9a0d477096aa6d145c50" @@ -8924,6 +9237,11 @@ ignore@^4.0.6: resolved "https://registry.yarnpkg.com/ignore/-/ignore-4.0.6.tgz#750e3db5862087b4737ebac8207ffd1ef27b25fc" integrity sha512-cyFDKrqc/YdcWFniJhzI42+AzS+gNwmUzOSFcRCQYwySuBBBy/KjuxWLZ/FHEH6Moq1NizMOBWyTcv8O4OZIMg== +ignore@^5.1.4: + version "5.1.8" + resolved "https://registry.yarnpkg.com/ignore/-/ignore-5.1.8.tgz#f150a8b50a34289b33e22f5889abd4d8016f0e57" + integrity sha512-BMpfD7PpiETpBl/A6S498BaIJ6Y/ABT93ETbby2fP00v4EbvPBXWEoaR1UBPKs3iR53pJY7EtZk5KACI57i1Uw== + image-q@^1.1.1: version "1.1.1" resolved "https://registry.yarnpkg.com/image-q/-/image-q-1.1.1.tgz#fc84099664460b90ca862d9300b6bfbbbfbf8056" @@ -9225,6 +9543,13 @@ is-core-module@^2.2.0: dependencies: has "^1.0.3" +is-core-module@^2.6.0: + version "2.6.0" + resolved "https://registry.yarnpkg.com/is-core-module/-/is-core-module-2.6.0.tgz#d7553b2526fe59b92ba3e40c8df757ec8a709e19" + integrity sha512-wShG8vs60jKfPWpF2KZRaAtvt3a20OAn7+IJ6hLPECpSABLcKtFKTTI4ZtH5QcBruBHlq+WsdHWyz0BCZW7svQ== + dependencies: + has "^1.0.3" + is-data-descriptor@^0.1.4: version "0.1.4" resolved "https://registry.yarnpkg.com/is-data-descriptor/-/is-data-descriptor-0.1.4.tgz#0b5ee648388e2c860282e793f1856fec3f301b56" @@ -9718,6 +10043,16 @@ jest-diff@^25.2.1: jest-get-type "^25.2.6" pretty-format "^25.5.0" +jest-diff@^26.0.0: + version "26.6.2" + resolved "https://registry.yarnpkg.com/jest-diff/-/jest-diff-26.6.2.tgz#1aa7468b52c3a68d7d5c5fdcdfcd5e49bd164394" + integrity sha512-6m+9Z3Gv9wN0WFVasqjCL/06+EFCMTqDEUl/b87HYK2rAPTyfz4ZIuSlPhY51PIQRWx5TaxeF1qmXKe9gfN3sA== + dependencies: + chalk "^4.0.0" + diff-sequences "^26.6.2" + jest-get-type "^26.3.0" + pretty-format "^26.6.2" + jest-diff@^27.0.6: version "27.0.6" resolved "https://registry.yarnpkg.com/jest-diff/-/jest-diff-27.0.6.tgz#4a7a19ee6f04ad70e0e3388f35829394a44c7b5e" @@ -10434,6 +10769,11 @@ json-schema-traverse@^0.4.1: resolved "https://registry.yarnpkg.com/json-schema-traverse/-/json-schema-traverse-0.4.1.tgz#69f6a87d9513ab8bb8fe63bdb0979c448e684660" integrity sha512-xbbCH5dCYU5T8LcEhhuh7HJ88HXuW3qsI3Y0zOZFKfZEHcpWiHU/Jxzk629Brsab/mMiHQti9wMP+845RPe3Vg== +json-schema-traverse@^1.0.0: + version "1.0.0" + resolved "https://registry.yarnpkg.com/json-schema-traverse/-/json-schema-traverse-1.0.0.tgz#ae7bcb3656ab77a73ba5c49bf654f38e6b6860e2" + integrity sha512-NM8/P9n3XjXhIZn1lLhkFaACTOURQXjWhV4BA/RnOv8xvgqtqpAX9IO4mRQxSx1Rlo4tqzeqb0sOlruaOy3dug== + json-stable-stringify-without-jsonify@^1.0.1: version "1.0.1" resolved "https://registry.yarnpkg.com/json-stable-stringify-without-jsonify/-/json-stable-stringify-without-jsonify-1.0.1.tgz#9db7b59496ad3f3cfef30a75142d2d930ad72651" @@ -10743,6 +11083,11 @@ lodash.camelcase@^4.3.0: resolved "https://registry.yarnpkg.com/lodash.camelcase/-/lodash.camelcase-4.3.0.tgz#b28aa6288a2b9fc651035c7711f65ab6190331a6" integrity sha1-soqmKIorn8ZRA1x3EfZathkDMaY= +lodash.clonedeep@^4.5.0: + version "4.5.0" + resolved "https://registry.yarnpkg.com/lodash.clonedeep/-/lodash.clonedeep-4.5.0.tgz#e23f3f9c4f8fbdde872529c1071857a086e5ccef" + integrity sha1-4j8/nE+Pvd6HJSnBBxhXoIblzO8= + lodash.debounce@^4.0.8: version "4.0.8" resolved "https://registry.yarnpkg.com/lodash.debounce/-/lodash.debounce-4.0.8.tgz#82d79bff30a67c4005ffd5e2515300ad9ca4d7af" @@ -10778,6 +11123,11 @@ lodash.memoize@^4.1.2: resolved "https://registry.yarnpkg.com/lodash.memoize/-/lodash.memoize-4.1.2.tgz#bcc6c49a42a2840ed997f323eada5ecd182e0bfe" integrity sha1-vMbEmkKihA7Zl/Mj6tpezRguC/4= +lodash.merge@^4.6.2: + version "4.6.2" + resolved "https://registry.yarnpkg.com/lodash.merge/-/lodash.merge-4.6.2.tgz#558aa53b43b661e1925a0afdfa36a9a1085fe57a" + integrity sha512-0KpjqXRVvrYyCsX1swR/XTK0va6VQkQM6MNo7PqW77ByjAhoARA8EfrP1N4+KlKj8YS0ZUCtRT/YUuhyYDujIQ== + lodash.omit@^4.5.0: version "4.5.0" resolved "https://registry.yarnpkg.com/lodash.omit/-/lodash.omit-4.5.0.tgz#6eb19ae5a1ee1dd9df0b969e66ce0b7fa30b5e60" @@ -10808,7 +11158,12 @@ lodash.throttle@^4.1.1: resolved "https://registry.yarnpkg.com/lodash.throttle/-/lodash.throttle-4.1.1.tgz#c23e91b710242ac70c37f1e1cda9274cc39bf2f4" integrity sha1-wj6RtxAkKscMN/HhzaknTMOb8vQ= -lodash@4.17.21, lodash@^4.17.11, lodash@^4.17.12, lodash@^4.17.19, lodash@^4.17.20, lodash@^4.17.5, lodash@^4.7.0: +lodash.truncate@^4.4.2: + version "4.4.2" + resolved "https://registry.yarnpkg.com/lodash.truncate/-/lodash.truncate-4.4.2.tgz#5a350da0b1113b837ecfffd5812cbe58d6eae193" + integrity sha1-WjUNoLERO4N+z//VgSy+WNbq4ZM= + +lodash@4.17.21, lodash@^4.17.11, lodash@^4.17.12, lodash@^4.17.20, lodash@^4.17.5, lodash@^4.7.0: version "4.17.21" resolved "https://registry.yarnpkg.com/lodash/-/lodash-4.17.21.tgz#679591c564c3bffaae8454cf0b3df370c3d6911c" integrity sha512-v2kDEe57lecTulaDIuNTPy3Ry4gLGJ6Z1O3vE1krgXZNrsQ+LFTGHVxVjcXPs17LhbZVGedAJv8XZ1tvj5FvSg== @@ -11043,6 +11398,11 @@ merge2@^1.2.3: resolved "https://registry.yarnpkg.com/merge2/-/merge2-1.3.0.tgz#5b366ee83b2f1582c48f87e47cf1a9352103ca81" integrity sha512-2j4DAdlBOkiSZIsaXk4mTE3sRS02yBHAtfy127xRV3bQUFqXkjHCHLW6Scv7DwNRbIWNHH8zpnz9zMaKXIdvYw== +merge2@^1.3.0: + version "1.4.1" + resolved "https://registry.yarnpkg.com/merge2/-/merge2-1.4.1.tgz#4368892f885e907455a6fd7dc55c0c9d404990ae" + integrity sha512-8q7VEgMJW4J8tcfVPy8g09NcQwZdbwFEqhe/WZkoIzjn/3TGDwtOCYtXGxA3O8tPzpczCCDgv+P2P5y00ZJOOg== + methods@~1.1.2: version "1.1.2" resolved "https://registry.yarnpkg.com/methods/-/methods-1.1.2.tgz#5529a4d67654134edcc5266656835b0f851afcee" @@ -11992,7 +12352,7 @@ object.values@^1.1.0: function-bind "^1.1.1" has "^1.0.3" -object.values@^1.1.1: +object.values@^1.1.1, object.values@^1.1.4: version "1.1.4" resolved "https://registry.yarnpkg.com/object.values/-/object.values-1.1.4.tgz#0d273762833e816b693a637d30073e7051535b30" integrity sha512-TnGo7j4XSnKQoK3MfvkzqKCi0nVe/D9I9IjwTNYdb/fxYHpjrluHVOgw0AF6jrRFGMPHdfuidR09tIDiIvnaSg== @@ -12709,6 +13069,11 @@ prepend-http@^2.0.0: resolved "https://registry.yarnpkg.com/prepend-http/-/prepend-http-2.0.0.tgz#e92434bfa5ea8c19f41cdfd401d741a3c819d897" integrity sha1-6SQ0v6XqjBn0HN/UAddBo8gZ2Jc= +prettier@^2.3.2: + version "2.3.2" + resolved "https://registry.yarnpkg.com/prettier/-/prettier-2.3.2.tgz#ef280a05ec253712e486233db5c6f23441e7342d" + integrity sha512-lnJzDfJ66zkMy58OL5/NY5zp70S7Nz6KqcKkXYzn2tMVrNxvbqaBpg7H3qHaLxCJ5lNMsGuM8+ohS7cZrthdLQ== + pretty-bytes@5.6.0: version "5.6.0" resolved "https://registry.yarnpkg.com/pretty-bytes/-/pretty-bytes-5.6.0.tgz#356256f643804773c82f64723fe78c92c62beaeb" @@ -12742,7 +13107,7 @@ pretty-format@^25.2.1, pretty-format@^25.5.0: ansi-styles "^4.0.0" react-is "^16.12.0" -pretty-format@^26.5.2, pretty-format@^26.6.2: +pretty-format@^26.0.0, pretty-format@^26.5.2, pretty-format@^26.6.2: version "26.6.2" resolved "https://registry.yarnpkg.com/pretty-format/-/pretty-format-26.6.2.tgz#e35c2705f14cb7fe2fe94fa078345b444120fc93" integrity sha512-7AeGuCYNGmycyQbCqd/3PWH4eOoX/OiCa0uphp57NVTeAGdJGaAliecxwBDHYQCIvrW7aDBZCYeNTP/WX69mkg== @@ -13024,6 +13389,11 @@ querystringify@^2.1.1: resolved "https://registry.yarnpkg.com/querystringify/-/querystringify-2.1.1.tgz#60e5a5fd64a7f8bfa4d2ab2ed6fdf4c85bad154e" integrity sha512-w7fLxIRCRT7U8Qu53jQnJyPkYZIaR4n5151KMfcJlO/A9397Wxb1amJvROTK6TOnp7PfoAmg/qXiNHI+08jRfA== +queue-microtask@^1.2.2: + version "1.2.3" + resolved "https://registry.yarnpkg.com/queue-microtask/-/queue-microtask-1.2.3.tgz#4929228bbc724dfac43e0efb058caf7b6cfb6243" + integrity sha512-NuaNSa6flKT5JaSYQzJok04JzTL1CA6aGhv5rfLW3PgqA+M2ChpZQnAC8h8i4ZFkBS8X5RqkDBHA7r4hej3K9A== + rambdax@2.15.0: version "2.15.0" resolved "https://registry.yarnpkg.com/rambdax/-/rambdax-2.15.0.tgz#34fb481cea1a88e64a25e3a25e34a258fa18ca12" @@ -13735,6 +14105,14 @@ read-pkg-up@^2.0.0: find-up "^2.0.0" read-pkg "^2.0.0" +read-pkg-up@^3.0.0: + version "3.0.0" + resolved "https://registry.yarnpkg.com/read-pkg-up/-/read-pkg-up-3.0.0.tgz#3ed496685dba0f8fe118d0691dc51f4a1ff96f07" + integrity sha1-PtSWaF26D4/hGNBpHcUfSh/5bwc= + dependencies: + find-up "^2.0.0" + read-pkg "^3.0.0" + read-pkg-up@^4.0.0: version "4.0.0" resolved "https://registry.yarnpkg.com/read-pkg-up/-/read-pkg-up-4.0.0.tgz#1b221c6088ba7799601c808f91161c66e58f8978" @@ -14031,6 +14409,11 @@ require-directory@^2.1.1: resolved "https://registry.yarnpkg.com/require-directory/-/require-directory-2.1.1.tgz#8c64ad5fd30dab1c976e2344ffe7f792a6a6df42" integrity sha1-jGStX9MNqxyXbiNE/+f3kqam30I= +require-from-string@^2.0.2: + version "2.0.2" + resolved "https://registry.yarnpkg.com/require-from-string/-/require-from-string-2.0.2.tgz#89a7fdd938261267318eafe14f9c32e598c36909" + integrity sha512-Xf0nWe6RseziFMu+Ap9biiUbmplq6S9/p+7w7YXP/JBHhrUDDUhwa+vANyubuqfZWTveU//DYVGsDG7RKL/vEw== + require-main-filename@^2.0.0: version "2.0.0" resolved "https://registry.yarnpkg.com/require-main-filename/-/require-main-filename-2.0.0.tgz#d0b329ecc7cc0f61649f62215be69af54aa8989b" @@ -14124,12 +14507,10 @@ retry@^0.12.0: resolved "https://registry.yarnpkg.com/retry/-/retry-0.12.0.tgz#1b42a6266a21f07421d1b0b54b7dc167b01c013b" integrity sha1-G0KmJmoh8HQh0bC1S33BZ7AcATs= -rimraf@2.6.3, rimraf@~2.6.2: - version "2.6.3" - resolved "https://registry.yarnpkg.com/rimraf/-/rimraf-2.6.3.tgz#b2d104fe0d8fb27cf9e0a1cda8262dd3833c6cab" - integrity sha512-mwqeW5XsA2qAejG46gYdENaxXjx9onRNCfn7L0duuP4hCuTIi/QO7PDK07KJfp1d+izWPrzEJDcSqBa0OZQriA== - dependencies: - glob "^7.1.3" +reusify@^1.0.4: + version "1.0.4" + resolved "https://registry.yarnpkg.com/reusify/-/reusify-1.0.4.tgz#90da382b1e126efc02146e90845a88db12925d76" + integrity sha512-U9nH88a3fc/ekCF1l0/UP1IosiuIjyTh7hBvXVMHYgVcfGvt897Xguj2UOLDeI5BG2m7/uwyaLVT6fbtCwTyzw== rimraf@^2.2.8, rimraf@^2.5.4, rimraf@^2.6.3, rimraf@^2.7.1: version "2.7.1" @@ -14138,7 +14519,7 @@ rimraf@^2.2.8, rimraf@^2.5.4, rimraf@^2.6.3, rimraf@^2.7.1: dependencies: glob "^7.1.3" -rimraf@^3.0.0: +rimraf@^3.0.0, rimraf@^3.0.2: version "3.0.2" resolved "https://registry.yarnpkg.com/rimraf/-/rimraf-3.0.2.tgz#f1a5402ba6220ad52cc1282bac1ae3aa49fd061a" integrity sha512-JZkJMZkAGFFPP2YqXZXPbMlMBgsxzE8ILs4lMIX/2o0L9UBw9O/Y3o6wFw/i9YLapcUJWwqbi3kdxIPdC62TIA== @@ -14157,6 +14538,13 @@ rimraf@~2.4.0: dependencies: glob "^6.0.1" +rimraf@~2.6.2: + version "2.6.3" + resolved "https://registry.yarnpkg.com/rimraf/-/rimraf-2.6.3.tgz#b2d104fe0d8fb27cf9e0a1cda8262dd3833c6cab" + integrity sha512-mwqeW5XsA2qAejG46gYdENaxXjx9onRNCfn7L0duuP4hCuTIi/QO7PDK07KJfp1d+izWPrzEJDcSqBa0OZQriA== + dependencies: + glob "^7.1.3" + ripemd160@^2.0.0, ripemd160@^2.0.1: version "2.0.2" resolved "https://registry.yarnpkg.com/ripemd160/-/ripemd160-2.0.2.tgz#a1c1a6f624751577ba5d07914cbc92850585890c" @@ -14197,6 +14585,13 @@ run-async@^2.2.0, run-async@^2.4.0: resolved "https://registry.yarnpkg.com/run-async/-/run-async-2.4.1.tgz#8440eccf99ea3e70bd409d49aab88e10c189a455" integrity sha512-tvVnVv01b8c1RrA6Ep7JkStj85Guv/YrMcwqYQnwjsAS2cTmmPGBBjAjpCW7RrSodNSoE2/qg9O4bceNvUuDgQ== +run-parallel@^1.1.9: + version "1.2.0" + resolved "https://registry.yarnpkg.com/run-parallel/-/run-parallel-1.2.0.tgz#66d1368da7bdf921eb9d95bd1a9229e7f21a43ee" + integrity sha512-5l4VyZR86LZ/lDxZTR6jqL8AFE2S0IFLMP26AbjsLVADxHdhB/c0GUsH+y39UfCi3dzz8OlQuPmnaJOMoDHQBA== + dependencies: + queue-microtask "^1.2.2" + run-queue@^1.0.0, run-queue@^1.0.3: version "1.0.3" resolved "https://registry.yarnpkg.com/run-queue/-/run-queue-1.0.3.tgz#e848396f057d223f24386924618e25694161ec47" @@ -14351,7 +14746,7 @@ semver@7.0.0: resolved "https://registry.yarnpkg.com/semver/-/semver-7.0.0.tgz#5f3ca35761e47e05b206c6daff2cf814f0316b8e" integrity sha512-+GB6zVA9LWh6zovYQLALHwv5rb2PHGlJi3lfiqIHxR0uuwCgefcOJc59v9fv1w8GbStwxuuqqAjI9NMAOOgq1A== -semver@7.3.5, semver@^7.0.0, semver@^7.2.1, semver@^7.3.2: +semver@7.3.5, semver@^7.0.0, semver@^7.2.1, semver@^7.3.2, semver@^7.3.5: version "7.3.5" resolved "https://registry.yarnpkg.com/semver/-/semver-7.3.5.tgz#0b621c879348d8998e4b0e4be94b3f12e6018ef7" integrity sha512-PoeGJYh8HK4BTO/a9Tf6ZG3veo/A7ZVsYrSA6J8ny9nb3B1VrpkuN+z9OE5wfE5p6H4LchYZsegiQgbJD94ZFQ== @@ -14619,7 +15014,7 @@ slash@^3.0.0: resolved "https://registry.yarnpkg.com/slash/-/slash-3.0.0.tgz#6539be870c165adbd5240220dbe361f1bc4d4634" integrity sha512-g9Q1haeby36OSStwb4ntCGGGaKsaVSjQ68fBxoQcutl5fS1vuY18H3wSt3jFyFtrkx+Kz0V1G85A4MyAdDMi2Q== -slice-ansi@^2.0.0, slice-ansi@^2.1.0: +slice-ansi@^2.0.0: version "2.1.0" resolved "https://registry.yarnpkg.com/slice-ansi/-/slice-ansi-2.1.0.tgz#cacd7693461a637a5788d92a7dd4fba068e81636" integrity sha512-Qu+VC3EwYLldKa1fCxuuvULvSJOKEgk9pi8dZeCVK7TqBfUNTH4sFkk4joj8afVSfAYgJoSOetjx9QWOJ5mYoQ== @@ -15258,15 +15653,17 @@ table-layout@^1.0.1: typical "^5.2.0" wordwrapjs "^4.0.0" -table@^5.2.3: - version "5.4.6" - resolved "https://registry.yarnpkg.com/table/-/table-5.4.6.tgz#1292d19500ce3f86053b05f0e8e7e4a3bb21079e" - integrity sha512-wmEc8m4fjnob4gt5riFRtTu/6+4rSe12TpAELNSqHMfF3IqnA+CH37USM6/YR3qRZv7e56kAEAtd6nKZaxe0Ug== +table@^6.0.9: + version "6.7.1" + resolved "https://registry.yarnpkg.com/table/-/table-6.7.1.tgz#ee05592b7143831a8c94f3cee6aae4c1ccef33e2" + integrity sha512-ZGum47Yi6KOOFDE8m223td53ath2enHcYLgOCjGr5ngu8bdIARQk6mN/wRMv4yMRcHnCSnHbCEha4sobQx5yWg== dependencies: - ajv "^6.10.2" - lodash "^4.17.14" - slice-ansi "^2.1.0" - string-width "^3.0.0" + ajv "^8.0.1" + lodash.clonedeep "^4.5.0" + lodash.truncate "^4.4.2" + slice-ansi "^4.0.0" + string-width "^4.2.0" + strip-ansi "^6.0.0" tail@^2.0.0: version "2.2.1" @@ -15595,6 +15992,16 @@ ts-pnp@^1.1.2: resolved "https://registry.yarnpkg.com/ts-pnp/-/ts-pnp-1.2.0.tgz#a500ad084b0798f1c3071af391e65912c86bca92" integrity sha512-csd+vJOb/gkzvcCHgTGSChYpy5f1/XKNsmvBGO4JXS+z1v2HobugDz4s1IeFXM3wZB44uczs+eazB5Q/ccdhQw== +tsconfig-paths@^3.11.0: + version "3.11.0" + resolved "https://registry.yarnpkg.com/tsconfig-paths/-/tsconfig-paths-3.11.0.tgz#954c1fe973da6339c78e06b03ce2e48810b65f36" + integrity sha512-7ecdYDnIdmv639mmDwslG6KQg1Z9STTz1j7Gcz0xa+nshh/gKDAHcPxRbWOsA3SPp0tXP2leTcY9Kw+NAkfZzA== + dependencies: + "@types/json5" "^0.0.29" + json5 "^1.0.1" + minimist "^1.2.0" + strip-bom "^3.0.0" + tsconfig-paths@^3.9.0: version "3.9.0" resolved "https://registry.yarnpkg.com/tsconfig-paths/-/tsconfig-paths-3.9.0.tgz#098547a6c4448807e8fcb8eae081064ee9a3c90b" @@ -15610,7 +16017,7 @@ tslib@^1.10.0, tslib@^1.9.0: resolved "https://registry.yarnpkg.com/tslib/-/tslib-1.13.0.tgz#c881e13cc7015894ed914862d276436fa9a47043" integrity sha512-i/6DQjL8Xf3be4K/E6Wgpekn5Qasl1usyw++dAA35Ue5orEn65VIxOA+YvNNl9HV3qv70T7CNwjODHZrLwvd1Q== -tslib@^1.9.3: +tslib@^1.8.1, tslib@^1.9.3: version "1.14.1" resolved "https://registry.yarnpkg.com/tslib/-/tslib-1.14.1.tgz#cf2d38bdc34a134bcaf1091c41f6619e2f672d00" integrity sha512-Xni35NKzjgMrwevysHTCArtLDpPvye8zV/0E4EyYn43P7/7qvQwPh9BGkHewbMulVntbigmcT7rdX3BNo9wRJg== @@ -15620,6 +16027,13 @@ tslib@^2.0.1, tslib@^2.0.3: resolved "https://registry.yarnpkg.com/tslib/-/tslib-2.3.0.tgz#803b8cdab3e12ba581a4ca41c8839bbb0dacb09e" integrity sha512-N82ooyxVNm6h1riLCoyS9e3fuJ3AMG2zIZs2Gd1ATcSFjSA23Q0fzjjZeh0jbJvWVDZ0cJT8yaNNaaXHzueNjg== +tsutils@^3.21.0: + version "3.21.0" + resolved "https://registry.yarnpkg.com/tsutils/-/tsutils-3.21.0.tgz#b48717d394cea6c1e096983eed58e9d61715b623" + integrity sha512-mHKK3iUXL+3UF6xL5k0PEhKRUBKPBCv/+RkEOpjRWxxx27KKRBmmA60A9pgOUvMi8GKhRMPEmjBRPzs2W7O1OA== + dependencies: + tslib "^1.8.1" + tty-browserify@0.0.0: version "0.0.0" resolved "https://registry.yarnpkg.com/tty-browserify/-/tty-browserify-0.0.0.tgz#a157ba402da24e9bf957f9aa69d524eed42901a6" @@ -15718,6 +16132,11 @@ typescript-tuple@^2.2.1: dependencies: typescript-compare "^0.0.2" +typescript@^4.3.5: + version "4.4.2" + resolved "https://registry.yarnpkg.com/typescript/-/typescript-4.4.2.tgz#6d618640d430e3569a1dfb44f7d7e600ced3ee86" + integrity sha512-gzP+t5W4hdy4c+68bfcv0t400HVJMMd2+H9B7gae1nQlBzCqvrXX+6GL/b3GAgyTH966pzrZ70/fRjwAtZksSQ== + typical@^2.6.0: version "2.6.1" resolved "https://registry.yarnpkg.com/typical/-/typical-2.6.1.tgz#5c080e5d661cbbe38259d2e70a3c7253e873881d" @@ -16459,13 +16878,6 @@ write-file-atomic@^3.0.0: signal-exit "^3.0.2" typedarray-to-buffer "^3.1.5" -write@1.0.3: - version "1.0.3" - resolved "https://registry.yarnpkg.com/write/-/write-1.0.3.tgz#0800e14523b923a387e415123c865616aae0f5c3" - integrity sha512-/lg70HAjtkUgWPVZhZcm+T4hkL8Zbtp1nFNOn3lRrxnlv50SRBv7cR7RqR+GMsd3hUXy9hWBo4CHTbFTcOYwig== - dependencies: - mkdirp "^0.5.1" - ws@^1.1.0, ws@^1.1.5: version "1.1.5" resolved "https://registry.yarnpkg.com/ws/-/ws-1.1.5.tgz#cbd9e6e75e09fc5d2c90015f21f0c40875e0dd51" From 1f8604567a453e9daa2c6c87cb93ff3c8de34588 Mon Sep 17 00:00:00 2001 From: Diego Mello <diegolmello@gmail.com> Date: Wed, 8 Sep 2021 17:38:30 -0300 Subject: [PATCH 75/90] Few fixes --- app/containers/BackgroundContainer/index.tsx | 3 +-- app/containers/EmojiPicker/index.tsx | 1 - app/containers/Passcode/Base/Locked.tsx | 4 +--- 3 files changed, 2 insertions(+), 6 deletions(-) diff --git a/app/containers/BackgroundContainer/index.tsx b/app/containers/BackgroundContainer/index.tsx index 1b6a341dc7..fbe5d3077a 100644 --- a/app/containers/BackgroundContainer/index.tsx +++ b/app/containers/BackgroundContainer/index.tsx @@ -36,8 +36,7 @@ const BackgroundContainer = ({ theme, text, loading }: IBackgroundContainer) => <View style={styles.container}> <ImageBackground source={{ uri: `message_empty_${theme}` }} style={styles.image} /> {text ? <Text style={[styles.text, { color: themes[theme].auxiliaryTintColor }]}>{text}</Text> : null} - {/* @ts-ignore*/} - {loading ? <ActivityIndicator style={[styles.text, { color: themes[theme].auxiliaryTintColor }]} /> : null} + {loading ? <ActivityIndicator style={styles.text} color={themes[theme].auxiliaryTintColor} /> : null} </View> ); diff --git a/app/containers/EmojiPicker/index.tsx b/app/containers/EmojiPicker/index.tsx index 2e9a78bebb..d9ef132949 100644 --- a/app/containers/EmojiPicker/index.tsx +++ b/app/containers/EmojiPicker/index.tsx @@ -104,7 +104,6 @@ class EmojiPicker extends Component<IEmojiPickerProps, IEmojiPickerState> { } }; - // eslint-disable-next-line react/sort-comp _addFrequentlyUsed = protectedFunction(async (emoji: IEmoji) => { const db = database.active; const freqEmojiCollection = db.get('frequently_used_emojis'); diff --git a/app/containers/Passcode/Base/Locked.tsx b/app/containers/Passcode/Base/Locked.tsx index 0b1562dd11..7cefeed68f 100644 --- a/app/containers/Passcode/Base/Locked.tsx +++ b/app/containers/Passcode/Base/Locked.tsx @@ -62,9 +62,7 @@ const Locked = React.memo(({ theme, setStatus }: IPasscodeLocked) => { }, []); return ( - // TODO - verify if this 'r' it's correct - // @ts-ignore - <Grid style={[styles.grid, { backgroundColor: themes[theme].passcodeBackground }]} r> + <Grid style={[styles.grid, { backgroundColor: themes[theme].passcodeBackground }]}> <LockIcon theme={theme} /> <Title text={I18n.t('Passcode_app_locked_title')} theme={theme} /> <Timer theme={theme} time={lockedUntil} setStatus={setStatus} /> From 5ee7cdab86a3f4f19e46a68a3e2acd09a7019819 Mon Sep 17 00:00:00 2001 From: Diego Mello <diegolmello@gmail.com> Date: Wed, 8 Sep 2021 17:41:58 -0300 Subject: [PATCH 76/90] Remove the need for @ts-ignore on Passcode --- app/containers/Passcode/Base/index.tsx | 10 +++++----- app/containers/Passcode/PasscodeChoose.tsx | 2 -- app/containers/Passcode/PasscodeEnter.tsx | 1 - 3 files changed, 5 insertions(+), 8 deletions(-) diff --git a/app/containers/Passcode/Base/index.tsx b/app/containers/Passcode/Base/index.tsx index 97d34517c5..7ab56395f4 100644 --- a/app/containers/Passcode/Base/index.tsx +++ b/app/containers/Passcode/Base/index.tsx @@ -17,13 +17,13 @@ import Subtitle from './Subtitle'; interface IPasscodeBase { theme: string; type: string; - previousPasscode: string; + previousPasscode?: string; title: string; - subtitle: string; - showBiometry: string; + subtitle?: string; + showBiometry?: string; onEndProcess: Function; - onError: Function; - onBiometryPress(): void; + onError?: Function; + onBiometryPress?(): void; } const Base = forwardRef( diff --git a/app/containers/Passcode/PasscodeChoose.tsx b/app/containers/Passcode/PasscodeChoose.tsx index 2ba707a097..c28104280b 100644 --- a/app/containers/Passcode/PasscodeChoose.tsx +++ b/app/containers/Passcode/PasscodeChoose.tsx @@ -41,7 +41,6 @@ const PasscodeChoose = ({ theme, finishProcess, force = false }: IPasscodeChoose if (status === TYPE.CONFIRM) { return ( - // @ts-ignore <Base ref={confirmRef} theme={theme} @@ -55,7 +54,6 @@ const PasscodeChoose = ({ theme, finishProcess, force = false }: IPasscodeChoose } return ( - // @ts-ignore <Base ref={chooseRef} theme={theme} diff --git a/app/containers/Passcode/PasscodeEnter.tsx b/app/containers/Passcode/PasscodeEnter.tsx index b3b84f997d..cc284b24ae 100644 --- a/app/containers/Passcode/PasscodeEnter.tsx +++ b/app/containers/Passcode/PasscodeEnter.tsx @@ -89,7 +89,6 @@ const PasscodeEnter = ({ theme, hasBiometry, finishProcess }: IPasscodePasscodeE } return ( - // @ts-ignore <Base ref={ref} theme={theme} From fe08b6ecb2357b3812b39a429ae6bfd727ec36e6 Mon Sep 17 00:00:00 2001 From: Diego Mello <diegolmello@gmail.com> Date: Wed, 8 Sep 2021 17:52:24 -0300 Subject: [PATCH 77/90] Minor fix --- app/containers/ReactionsModal.tsx | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/app/containers/ReactionsModal.tsx b/app/containers/ReactionsModal.tsx index d3f5bc8d57..9cd2ff0ef2 100644 --- a/app/containers/ReactionsModal.tsx +++ b/app/containers/ReactionsModal.tsx @@ -71,7 +71,7 @@ interface IItem { } interface IModalContent { - message: { + message?: { reactions: any; }; onClose: Function; @@ -147,7 +147,6 @@ const ReactionsModal = React.memo( backdropOpacity={0.8} onSwipeComplete={onClose} swipeDirection={['up', 'left', 'right', 'down']}> - {/* @ts-ignore*/} <ModalContent onClose={onClose} theme={theme} {...props} /> </Modal> ), From 507bf76afe03040504e9bf5ea18b275224f4cfd4 Mon Sep 17 00:00:00 2001 From: Diego Mello <diegolmello@gmail.com> Date: Wed, 8 Sep 2021 18:03:36 -0300 Subject: [PATCH 78/90] Update pods --- ios/Podfile.lock | 210 ++++++++-------- ios/Pods/Manifest.lock | 210 ++++++++-------- .../Firebase/Firebase.debug.xcconfig | 2 +- .../Firebase/Firebase.release.xcconfig | 2 +- .../FirebaseAnalytics.debug.xcconfig | 2 +- .../FirebaseAnalytics.release.xcconfig | 2 +- .../FirebaseCore/FirebaseCore.debug.xcconfig | 4 +- .../FirebaseCore.release.xcconfig | 4 +- .../FirebaseCoreDiagnostics.debug.xcconfig | 2 +- .../FirebaseCoreDiagnostics.release.xcconfig | 2 +- .../FirebaseCrashlytics.debug.xcconfig | 5 +- .../FirebaseCrashlytics.release.xcconfig | 5 +- .../FirebaseInstallations.debug.xcconfig | 4 +- .../FirebaseInstallations.release.xcconfig | 4 +- .../GoogleDataTransport.debug.xcconfig | 4 +- .../GoogleDataTransport.release.xcconfig | 4 +- ...ults-Rocket.Chat-acknowledgements.markdown | 222 ++++++++++++++++- ...efaults-Rocket.Chat-acknowledgements.plist | 228 +++++++++++++++++- ...lts-RocketChatRN-acknowledgements.markdown | 222 ++++++++++++++++- ...faults-RocketChatRN-acknowledgements.plist | 228 +++++++++++++++++- .../RNFBAnalytics.debug.xcconfig | 2 +- .../RNFBAnalytics.release.xcconfig | 2 +- .../RNFBApp/RNFBApp.debug.xcconfig | 2 +- .../RNFBApp/RNFBApp.release.xcconfig | 2 +- .../RNFBCrashlytics.debug.xcconfig | 2 +- .../RNFBCrashlytics.release.xcconfig | 2 +- 26 files changed, 1106 insertions(+), 272 deletions(-) diff --git a/ios/Podfile.lock b/ios/Podfile.lock index 433a5d0836..68582e2884 100644 --- a/ios/Podfile.lock +++ b/ios/Podfile.lock @@ -1,10 +1,10 @@ PODS: - boost-for-react-native (1.63.0) - - BugsnagReactNative (7.11.0): + - BugsnagReactNative (7.10.5): - React-Core - CocoaAsyncSocket (7.6.5) - DoubleConversion (1.1.6) - - EXAppleAuthentication (2.2.2): + - EXAppleAuthentication (2.2.1): - UMCore - EXAV (8.2.1): - UMCore @@ -43,42 +43,43 @@ PODS: - React-Core (= 0.64.2) - React-jsi (= 0.64.2) - ReactCommon/turbomodule/core (= 0.64.2) - - Firebase/Analytics (6.34.0): + - Firebase/Analytics (6.27.1): - Firebase/Core - - Firebase/Core (6.34.0): + - Firebase/Core (6.27.1): - Firebase/CoreOnly - - FirebaseAnalytics (= 6.9.0) - - Firebase/CoreOnly (6.34.0): - - FirebaseCore (= 6.10.4) - - Firebase/Crashlytics (6.34.0): + - FirebaseAnalytics (= 6.6.2) + - Firebase/CoreOnly (6.27.1): + - FirebaseCore (= 6.8.1) + - Firebase/Crashlytics (6.27.1): - Firebase/CoreOnly - - FirebaseCrashlytics (~> 4.6.2) - - FirebaseAnalytics (6.9.0): - - FirebaseCore (~> 6.10) - - FirebaseInstallations (~> 1.7) - - GoogleAppMeasurement (= 6.9.0) - - GoogleUtilities/AppDelegateSwizzler (~> 6.7) - - GoogleUtilities/MethodSwizzler (~> 6.7) - - GoogleUtilities/Network (~> 6.7) - - "GoogleUtilities/NSData+zlib (~> 6.7)" - - nanopb (~> 1.30906.0) - - FirebaseCore (6.10.4): - - FirebaseCoreDiagnostics (~> 1.6) - - GoogleUtilities/Environment (~> 6.7) - - GoogleUtilities/Logger (~> 6.7) - - FirebaseCoreDiagnostics (1.7.0): - - GoogleDataTransport (~> 7.4) - - GoogleUtilities/Environment (~> 6.7) - - GoogleUtilities/Logger (~> 6.7) - - nanopb (~> 1.30906.0) - - FirebaseCrashlytics (4.6.2): - - FirebaseCore (~> 6.10) - - FirebaseInstallations (~> 1.6) - - GoogleDataTransport (~> 7.2) - - nanopb (~> 1.30906.0) + - FirebaseCrashlytics (~> 4.2.0) + - FirebaseAnalytics (6.6.2): + - FirebaseCore (~> 6.8) + - FirebaseInstallations (~> 1.4) + - GoogleAppMeasurement (= 6.6.2) + - GoogleUtilities/AppDelegateSwizzler (~> 6.0) + - GoogleUtilities/MethodSwizzler (~> 6.0) + - GoogleUtilities/Network (~> 6.0) + - "GoogleUtilities/NSData+zlib (~> 6.0)" + - nanopb (~> 1.30905.0) + - FirebaseCore (6.8.1): + - FirebaseCoreDiagnostics (~> 1.3) + - GoogleUtilities/Environment (~> 6.5) + - GoogleUtilities/Logger (~> 6.5) + - FirebaseCoreDiagnostics (1.4.0): + - GoogleDataTransportCCTSupport (~> 3.1) + - GoogleUtilities/Environment (~> 6.5) + - GoogleUtilities/Logger (~> 6.5) + - nanopb (~> 1.30905.0) + - FirebaseCrashlytics (4.2.0): + - FirebaseCore (~> 6.8) + - FirebaseInstallations (~> 1.1) + - GoogleDataTransport (~> 6.1) + - GoogleDataTransportCCTSupport (~> 3.1) + - nanopb (~> 1.30905.0) - PromisesObjC (~> 1.2) - - FirebaseInstallations (1.7.0): - - FirebaseCore (~> 6.10) + - FirebaseInstallations (1.5.0): + - FirebaseCore (~> 6.8) - GoogleUtilities/Environment (~> 6.7) - GoogleUtilities/UserDefaults (~> 6.7) - PromisesObjC (~> 1.2) @@ -129,57 +130,59 @@ PODS: - FlipperKit/Core - FlipperKit/FlipperKitNetworkPlugin - glog (0.3.5) - - GoogleAppMeasurement (6.9.0): - - GoogleUtilities/AppDelegateSwizzler (~> 6.7) - - GoogleUtilities/MethodSwizzler (~> 6.7) - - GoogleUtilities/Network (~> 6.7) - - "GoogleUtilities/NSData+zlib (~> 6.7)" - - nanopb (~> 1.30906.0) - - GoogleDataTransport (7.5.1): - - nanopb (~> 1.30906.0) - - GoogleUtilities/AppDelegateSwizzler (6.7.2): + - GoogleAppMeasurement (6.6.2): + - GoogleUtilities/AppDelegateSwizzler (~> 6.0) + - GoogleUtilities/MethodSwizzler (~> 6.0) + - GoogleUtilities/Network (~> 6.0) + - "GoogleUtilities/NSData+zlib (~> 6.0)" + - nanopb (~> 1.30905.0) + - GoogleDataTransport (6.2.1) + - GoogleDataTransportCCTSupport (3.2.0): + - GoogleDataTransport (~> 6.1) + - nanopb (~> 1.30905.0) + - GoogleUtilities/AppDelegateSwizzler (6.7.1): - GoogleUtilities/Environment - GoogleUtilities/Logger - GoogleUtilities/Network - - GoogleUtilities/Environment (6.7.2): + - GoogleUtilities/Environment (6.7.1): - PromisesObjC (~> 1.2) - - GoogleUtilities/Logger (6.7.2): + - GoogleUtilities/Logger (6.7.1): - GoogleUtilities/Environment - - GoogleUtilities/MethodSwizzler (6.7.2): + - GoogleUtilities/MethodSwizzler (6.7.1): - GoogleUtilities/Logger - - GoogleUtilities/Network (6.7.2): + - GoogleUtilities/Network (6.7.1): - GoogleUtilities/Logger - "GoogleUtilities/NSData+zlib" - GoogleUtilities/Reachability - - "GoogleUtilities/NSData+zlib (6.7.2)" - - GoogleUtilities/Reachability (6.7.2): + - "GoogleUtilities/NSData+zlib (6.7.1)" + - GoogleUtilities/Reachability (6.7.1): - GoogleUtilities/Logger - - GoogleUtilities/UserDefaults (6.7.2): + - GoogleUtilities/UserDefaults (6.7.1): - GoogleUtilities/Logger - hermes-engine (0.7.2) - JitsiMeetSDK (3.6.0) - KeyCommands (2.0.3): - React - libevent (2.1.12) - - libwebp (1.2.0): - - libwebp/demux (= 1.2.0) - - libwebp/mux (= 1.2.0) - - libwebp/webp (= 1.2.0) - - libwebp/demux (1.2.0): + - libwebp (1.1.0): + - libwebp/demux (= 1.1.0) + - libwebp/mux (= 1.1.0) + - libwebp/webp (= 1.1.0) + - libwebp/demux (1.1.0): - libwebp/webp - - libwebp/mux (1.2.0): + - libwebp/mux (1.1.0): - libwebp/demux - - libwebp/webp (1.2.0) + - libwebp/webp (1.1.0) - MMKV (1.2.1): - MMKVCore (~> 1.2.1) - - MMKVCore (1.2.10) - - nanopb (1.30906.0): - - nanopb/decode (= 1.30906.0) - - nanopb/encode (= 1.30906.0) - - nanopb/decode (1.30906.0) - - nanopb/encode (1.30906.0) + - MMKVCore (1.2.1) + - nanopb (1.30905.0): + - nanopb/decode (= 1.30905.0) + - nanopb/encode (= 1.30905.0) + - nanopb/decode (1.30905.0) + - nanopb/encode (1.30905.0) - OpenSSL-Universal (1.1.180) - - PromisesObjC (1.2.12) + - PromisesObjC (1.2.9) - RCT-Folly (2020.01.13.00): - boost-for-react-native - DoubleConversion @@ -513,25 +516,26 @@ PODS: - React - SDWebImage (~> 5.0) - SDWebImageWebPCoder (~> 0.4.1) - - RNFBAnalytics (7.6.10): - - Firebase/Analytics (~> 6.34.0) - - React-Core + - RNFBAnalytics (7.3.1): + - Firebase/Analytics (~> 6.27.0) + - React - RNFBApp - - RNFBApp (8.4.7): - - Firebase/CoreOnly (~> 6.34.0) - - React-Core - - RNFBCrashlytics (8.5.2): - - Firebase/Crashlytics (~> 6.34.0) - - React-Core + - RNFBApp (8.2.0): + - Firebase/CoreOnly (~> 6.27.0) + - React + - RNFBCrashlytics (8.1.2): + - Firebase/Core (~> 6.27.0) + - Firebase/Crashlytics (~> 6.27.0) + - React - RNFBApp - RNGestureHandler (1.10.3): - React-Core - - RNImageCropPicker (0.32.2): + - RNImageCropPicker (0.31.1): - React-Core - React-RCTImage - - RNImageCropPicker/QBImagePickerController (= 0.32.2) + - RNImageCropPicker/QBImagePickerController (= 0.31.1) - TOCropViewController - - RNImageCropPicker/QBImagePickerController (0.32.2): + - RNImageCropPicker/QBImagePickerController (0.31.1): - React-Core - React-RCTImage - TOCropViewController @@ -545,13 +549,13 @@ PODS: - React - RNVectorIcons (8.1.0): - React-Core - - SDWebImage (5.11.1): - - SDWebImage/Core (= 5.11.1) - - SDWebImage/Core (5.11.1) + - SDWebImage (5.8.4): + - SDWebImage/Core (= 5.8.4) + - SDWebImage/Core (5.8.4) - SDWebImageWebPCoder (0.4.1): - libwebp (~> 1.0) - SDWebImage/Core (~> 5.5) - - TOCropViewController (2.6.0) + - TOCropViewController (2.5.3) - UMAppLoader (1.2.0) - UMBarCodeScannerInterface (5.2.1) - UMCameraInterface (5.2.1) @@ -711,6 +715,7 @@ SPEC REPOS: - FlipperKit - GoogleAppMeasurement - GoogleDataTransport + - GoogleDataTransportCCTSupport - GoogleUtilities - hermes-engine - libevent @@ -920,10 +925,10 @@ CHECKOUT OPTIONS: SPEC CHECKSUMS: boost-for-react-native: 39c7adb57c4e60d6c5479dd8623128eb5b3f0f2c - BugsnagReactNative: a96bc039e0e4ec317a8b331714393d836ca60557 + BugsnagReactNative: a97b3132c1854fd7bf92350fabd505e3ebdd7829 CocoaAsyncSocket: 065fd1e645c7abab64f7a6a2007a48038fdc6a99 DoubleConversion: cf9b38bf0b2d048436d9a82ad2abe1404f11e7de - EXAppleAuthentication: 97d5db59f3fb7aefc6cb06e351ba0828c8982232 + EXAppleAuthentication: 5b3da71bada29e2423d8ea27e5538ef0d75aba62 EXAV: 86344030966e0da7e00556fbb97269d9ad16071d EXConstants: f907b3b6ce16e20d1750f22af1e095e924574bcb EXFileSystem: 76875135b61708b9afa7e6a89b72a60ba0fdfa20 @@ -935,13 +940,13 @@ SPEC CHECKSUMS: EXVideoThumbnails: cd257fc6e07884a704a5674d362a6410933acb68 EXWebBrowser: d37a5ffdea1b65947352bc001dd9f732463725d4 FBLazyVector: e686045572151edef46010a6f819ade377dfeb4b - FBReactNativeSpec: 110d69378fce79af38271c39894b59fec7890221 - Firebase: c23a36d9e4cdf7877dfcba8dd0c58add66358999 - FirebaseAnalytics: 3bb096873ee0d7fa4b6c70f5e9166b6da413cc7f - FirebaseCore: d3a978a3cfa3240bf7e4ba7d137fdf5b22b628ec - FirebaseCoreDiagnostics: 770ac5958e1372ce67959ae4b4f31d8e127c3ac1 - FirebaseCrashlytics: 1a747c9cc084a24dc6d9511c991db1cd078154eb - FirebaseInstallations: 466c7b4d1f58fe16707693091da253726a731ed2 + FBReactNativeSpec: b427d2f482828b9533661dbcf9edf846cb60dc7b + Firebase: 919186c8e119dd9372a45fd1dd17a8a942bc1892 + FirebaseAnalytics: 5fa308e1b13f838d0f6dc74719ac2a72e8c5afc4 + FirebaseCore: 8cd4f8ea22075e0ee582849b1cf79d8816506085 + FirebaseCoreDiagnostics: 4505e4d4009b1d93f605088ee7d7764d5f0d1c84 + FirebaseCrashlytics: 7d0fa02ea8842cc4b2ab07b0735edafde1ad77d6 + FirebaseInstallations: 3c520c951305cbf9ca54eb891ff9e6d1fd384881 Flipper: d3da1aa199aad94455ae725e9f3aa43f3ec17021 Flipper-DoubleConversion: 38631e41ef4f9b12861c67d17cb5518d06badc41 Flipper-Folly: 755929a4f851b2fb2c347d533a23f191b008554c @@ -950,19 +955,20 @@ SPEC CHECKSUMS: Flipper-RSocket: 127954abe8b162fcaf68d2134d34dc2bd7076154 FlipperKit: 8a20b5c5fcf9436cac58551dc049867247f64b00 glog: 73c2498ac6884b13ede40eda8228cb1eee9d9d62 - GoogleAppMeasurement: a6a3a066369828db64eda428cb2856dc1cdc7c4e - GoogleDataTransport: f56af7caa4ed338dc8e138a5d7c5973e66440833 - GoogleUtilities: 7f2f5a07f888cdb145101d6042bc4422f57e70b3 + GoogleAppMeasurement: 8cd1f289d60e629cf16ab03363b9e89c776b9651 + GoogleDataTransport: 9a8a16f79feffc7f42096743de2a7c4815e84020 + GoogleDataTransportCCTSupport: 489c1265d2c85b68187a83a911913d190012158d + GoogleUtilities: e121a3867449ce16b0e35ddf1797ea7a389ffdf2 hermes-engine: 7d97ba46a1e29bacf3e3c61ecb2804a5ddd02d4f JitsiMeetSDK: 476329f72a866f714d2802bafe1729de6d644ccf KeyCommands: f66c535f698ed14b3d3a4e58859d79a827ea907e libevent: 4049cae6c81cdb3654a443be001fb9bdceff7913 - libwebp: e90b9c01d99205d03b6bb8f2c8c415e5a4ef66f0 + libwebp: 946cb3063cea9236285f7e9a8505d806d30e07f3 MMKV: 67253edee25a34edf332f91d73fa94a9e038b971 - MMKVCore: b00e7a09ec77a1b916aef336eedd3b99ec249978 - nanopb: 59317e09cf1f1a0af72f12af412d54edf52603fc + MMKVCore: fe398984acac1fa33f92795d1b5fd0a334c944af + nanopb: c43f40fadfe79e8b8db116583945847910cbabc9 OpenSSL-Universal: 1aa4f6a6ee7256b83db99ec1ccdaa80d10f9af9b - PromisesObjC: 3113f7f76903778cf4a0586bd1ab89329a0b7b97 + PromisesObjC: b48e0338dbbac2207e611750777895f7a5811b75 RCT-Folly: ec7a233ccc97cc556cf7237f0db1ff65b986f27c RCTRequired: 6d3e854f0e7260a648badd0d44fc364bc9da9728 RCTTypeSafety: c1f31d19349c6b53085766359caac425926fafaa @@ -1014,19 +1020,19 @@ SPEC CHECKSUMS: RNDateTimePicker: 7658208086d86d09e1627b5c34ba0cf237c60140 RNDeviceInfo: 8d3a29207835f972bce883723882980143270d55 RNFastImage: f40d202ea2367239f71bc7cf11315f4bebab85b4 - RNFBAnalytics: 6414e9fe1f36c3074f39cd6265b3def777dbfbdb - RNFBApp: 804b98033f45c3a3e35b56de8c894f85ef5e4388 - RNFBCrashlytics: 501d01e5dd0cd6affedba60762b9b8d7d579cea8 + RNFBAnalytics: dae6d7b280ba61c96e1bbdd34aca3154388f025e + RNFBApp: 6fd8a7e757135d4168bf033a8812c241af7363a0 + RNFBCrashlytics: 88de72c2476b5868a892d9523b89b86c527c540e RNGestureHandler: a479ebd5ed4221a810967000735517df0d2db211 - RNImageCropPicker: f0557a908758c4a3f83978894ec7227651529b45 + RNImageCropPicker: 38865ab4af1b0b2146ad66061196bc0184946855 RNLocalize: 82a569022724d35461e2dc5b5d015a13c3ca995b RNReanimated: b5ccb50650ba06f6e749c7c329a1bc3ae0c88b43 RNRootView: 895a4813dedeaca82db2fa868ca1c333d790e494 RNScreens: c526239bbe0e957b988dacc8d75ac94ec9cb19da RNVectorIcons: 31cebfcf94e8cf8686eb5303ae0357da64d7a5a4 - SDWebImage: a7f831e1a65eb5e285e3fb046a23fcfbf08e696d + SDWebImage: cf6922231e95550934da2ada0f20f2becf2ceba9 SDWebImageWebPCoder: 36f8f47bd9879a8aea6044765c1351120fd8e3a8 - TOCropViewController: 3105367e808b7d3d886a74ff59bf4804e7d3ab38 + TOCropViewController: 20a14b6a7a098308bf369e7c8d700dc983a974e6 UMAppLoader: 61049c8d55590b74e9ae1d5429bf68d96b4a2528 UMBarCodeScannerInterface: e5e4c87797d3d01214e25cd1618866caf5d4f17f UMCameraInterface: 415ac060034edecacdbbaa739c223e3f276e0056 diff --git a/ios/Pods/Manifest.lock b/ios/Pods/Manifest.lock index 433a5d0836..68582e2884 100644 --- a/ios/Pods/Manifest.lock +++ b/ios/Pods/Manifest.lock @@ -1,10 +1,10 @@ PODS: - boost-for-react-native (1.63.0) - - BugsnagReactNative (7.11.0): + - BugsnagReactNative (7.10.5): - React-Core - CocoaAsyncSocket (7.6.5) - DoubleConversion (1.1.6) - - EXAppleAuthentication (2.2.2): + - EXAppleAuthentication (2.2.1): - UMCore - EXAV (8.2.1): - UMCore @@ -43,42 +43,43 @@ PODS: - React-Core (= 0.64.2) - React-jsi (= 0.64.2) - ReactCommon/turbomodule/core (= 0.64.2) - - Firebase/Analytics (6.34.0): + - Firebase/Analytics (6.27.1): - Firebase/Core - - Firebase/Core (6.34.0): + - Firebase/Core (6.27.1): - Firebase/CoreOnly - - FirebaseAnalytics (= 6.9.0) - - Firebase/CoreOnly (6.34.0): - - FirebaseCore (= 6.10.4) - - Firebase/Crashlytics (6.34.0): + - FirebaseAnalytics (= 6.6.2) + - Firebase/CoreOnly (6.27.1): + - FirebaseCore (= 6.8.1) + - Firebase/Crashlytics (6.27.1): - Firebase/CoreOnly - - FirebaseCrashlytics (~> 4.6.2) - - FirebaseAnalytics (6.9.0): - - FirebaseCore (~> 6.10) - - FirebaseInstallations (~> 1.7) - - GoogleAppMeasurement (= 6.9.0) - - GoogleUtilities/AppDelegateSwizzler (~> 6.7) - - GoogleUtilities/MethodSwizzler (~> 6.7) - - GoogleUtilities/Network (~> 6.7) - - "GoogleUtilities/NSData+zlib (~> 6.7)" - - nanopb (~> 1.30906.0) - - FirebaseCore (6.10.4): - - FirebaseCoreDiagnostics (~> 1.6) - - GoogleUtilities/Environment (~> 6.7) - - GoogleUtilities/Logger (~> 6.7) - - FirebaseCoreDiagnostics (1.7.0): - - GoogleDataTransport (~> 7.4) - - GoogleUtilities/Environment (~> 6.7) - - GoogleUtilities/Logger (~> 6.7) - - nanopb (~> 1.30906.0) - - FirebaseCrashlytics (4.6.2): - - FirebaseCore (~> 6.10) - - FirebaseInstallations (~> 1.6) - - GoogleDataTransport (~> 7.2) - - nanopb (~> 1.30906.0) + - FirebaseCrashlytics (~> 4.2.0) + - FirebaseAnalytics (6.6.2): + - FirebaseCore (~> 6.8) + - FirebaseInstallations (~> 1.4) + - GoogleAppMeasurement (= 6.6.2) + - GoogleUtilities/AppDelegateSwizzler (~> 6.0) + - GoogleUtilities/MethodSwizzler (~> 6.0) + - GoogleUtilities/Network (~> 6.0) + - "GoogleUtilities/NSData+zlib (~> 6.0)" + - nanopb (~> 1.30905.0) + - FirebaseCore (6.8.1): + - FirebaseCoreDiagnostics (~> 1.3) + - GoogleUtilities/Environment (~> 6.5) + - GoogleUtilities/Logger (~> 6.5) + - FirebaseCoreDiagnostics (1.4.0): + - GoogleDataTransportCCTSupport (~> 3.1) + - GoogleUtilities/Environment (~> 6.5) + - GoogleUtilities/Logger (~> 6.5) + - nanopb (~> 1.30905.0) + - FirebaseCrashlytics (4.2.0): + - FirebaseCore (~> 6.8) + - FirebaseInstallations (~> 1.1) + - GoogleDataTransport (~> 6.1) + - GoogleDataTransportCCTSupport (~> 3.1) + - nanopb (~> 1.30905.0) - PromisesObjC (~> 1.2) - - FirebaseInstallations (1.7.0): - - FirebaseCore (~> 6.10) + - FirebaseInstallations (1.5.0): + - FirebaseCore (~> 6.8) - GoogleUtilities/Environment (~> 6.7) - GoogleUtilities/UserDefaults (~> 6.7) - PromisesObjC (~> 1.2) @@ -129,57 +130,59 @@ PODS: - FlipperKit/Core - FlipperKit/FlipperKitNetworkPlugin - glog (0.3.5) - - GoogleAppMeasurement (6.9.0): - - GoogleUtilities/AppDelegateSwizzler (~> 6.7) - - GoogleUtilities/MethodSwizzler (~> 6.7) - - GoogleUtilities/Network (~> 6.7) - - "GoogleUtilities/NSData+zlib (~> 6.7)" - - nanopb (~> 1.30906.0) - - GoogleDataTransport (7.5.1): - - nanopb (~> 1.30906.0) - - GoogleUtilities/AppDelegateSwizzler (6.7.2): + - GoogleAppMeasurement (6.6.2): + - GoogleUtilities/AppDelegateSwizzler (~> 6.0) + - GoogleUtilities/MethodSwizzler (~> 6.0) + - GoogleUtilities/Network (~> 6.0) + - "GoogleUtilities/NSData+zlib (~> 6.0)" + - nanopb (~> 1.30905.0) + - GoogleDataTransport (6.2.1) + - GoogleDataTransportCCTSupport (3.2.0): + - GoogleDataTransport (~> 6.1) + - nanopb (~> 1.30905.0) + - GoogleUtilities/AppDelegateSwizzler (6.7.1): - GoogleUtilities/Environment - GoogleUtilities/Logger - GoogleUtilities/Network - - GoogleUtilities/Environment (6.7.2): + - GoogleUtilities/Environment (6.7.1): - PromisesObjC (~> 1.2) - - GoogleUtilities/Logger (6.7.2): + - GoogleUtilities/Logger (6.7.1): - GoogleUtilities/Environment - - GoogleUtilities/MethodSwizzler (6.7.2): + - GoogleUtilities/MethodSwizzler (6.7.1): - GoogleUtilities/Logger - - GoogleUtilities/Network (6.7.2): + - GoogleUtilities/Network (6.7.1): - GoogleUtilities/Logger - "GoogleUtilities/NSData+zlib" - GoogleUtilities/Reachability - - "GoogleUtilities/NSData+zlib (6.7.2)" - - GoogleUtilities/Reachability (6.7.2): + - "GoogleUtilities/NSData+zlib (6.7.1)" + - GoogleUtilities/Reachability (6.7.1): - GoogleUtilities/Logger - - GoogleUtilities/UserDefaults (6.7.2): + - GoogleUtilities/UserDefaults (6.7.1): - GoogleUtilities/Logger - hermes-engine (0.7.2) - JitsiMeetSDK (3.6.0) - KeyCommands (2.0.3): - React - libevent (2.1.12) - - libwebp (1.2.0): - - libwebp/demux (= 1.2.0) - - libwebp/mux (= 1.2.0) - - libwebp/webp (= 1.2.0) - - libwebp/demux (1.2.0): + - libwebp (1.1.0): + - libwebp/demux (= 1.1.0) + - libwebp/mux (= 1.1.0) + - libwebp/webp (= 1.1.0) + - libwebp/demux (1.1.0): - libwebp/webp - - libwebp/mux (1.2.0): + - libwebp/mux (1.1.0): - libwebp/demux - - libwebp/webp (1.2.0) + - libwebp/webp (1.1.0) - MMKV (1.2.1): - MMKVCore (~> 1.2.1) - - MMKVCore (1.2.10) - - nanopb (1.30906.0): - - nanopb/decode (= 1.30906.0) - - nanopb/encode (= 1.30906.0) - - nanopb/decode (1.30906.0) - - nanopb/encode (1.30906.0) + - MMKVCore (1.2.1) + - nanopb (1.30905.0): + - nanopb/decode (= 1.30905.0) + - nanopb/encode (= 1.30905.0) + - nanopb/decode (1.30905.0) + - nanopb/encode (1.30905.0) - OpenSSL-Universal (1.1.180) - - PromisesObjC (1.2.12) + - PromisesObjC (1.2.9) - RCT-Folly (2020.01.13.00): - boost-for-react-native - DoubleConversion @@ -513,25 +516,26 @@ PODS: - React - SDWebImage (~> 5.0) - SDWebImageWebPCoder (~> 0.4.1) - - RNFBAnalytics (7.6.10): - - Firebase/Analytics (~> 6.34.0) - - React-Core + - RNFBAnalytics (7.3.1): + - Firebase/Analytics (~> 6.27.0) + - React - RNFBApp - - RNFBApp (8.4.7): - - Firebase/CoreOnly (~> 6.34.0) - - React-Core - - RNFBCrashlytics (8.5.2): - - Firebase/Crashlytics (~> 6.34.0) - - React-Core + - RNFBApp (8.2.0): + - Firebase/CoreOnly (~> 6.27.0) + - React + - RNFBCrashlytics (8.1.2): + - Firebase/Core (~> 6.27.0) + - Firebase/Crashlytics (~> 6.27.0) + - React - RNFBApp - RNGestureHandler (1.10.3): - React-Core - - RNImageCropPicker (0.32.2): + - RNImageCropPicker (0.31.1): - React-Core - React-RCTImage - - RNImageCropPicker/QBImagePickerController (= 0.32.2) + - RNImageCropPicker/QBImagePickerController (= 0.31.1) - TOCropViewController - - RNImageCropPicker/QBImagePickerController (0.32.2): + - RNImageCropPicker/QBImagePickerController (0.31.1): - React-Core - React-RCTImage - TOCropViewController @@ -545,13 +549,13 @@ PODS: - React - RNVectorIcons (8.1.0): - React-Core - - SDWebImage (5.11.1): - - SDWebImage/Core (= 5.11.1) - - SDWebImage/Core (5.11.1) + - SDWebImage (5.8.4): + - SDWebImage/Core (= 5.8.4) + - SDWebImage/Core (5.8.4) - SDWebImageWebPCoder (0.4.1): - libwebp (~> 1.0) - SDWebImage/Core (~> 5.5) - - TOCropViewController (2.6.0) + - TOCropViewController (2.5.3) - UMAppLoader (1.2.0) - UMBarCodeScannerInterface (5.2.1) - UMCameraInterface (5.2.1) @@ -711,6 +715,7 @@ SPEC REPOS: - FlipperKit - GoogleAppMeasurement - GoogleDataTransport + - GoogleDataTransportCCTSupport - GoogleUtilities - hermes-engine - libevent @@ -920,10 +925,10 @@ CHECKOUT OPTIONS: SPEC CHECKSUMS: boost-for-react-native: 39c7adb57c4e60d6c5479dd8623128eb5b3f0f2c - BugsnagReactNative: a96bc039e0e4ec317a8b331714393d836ca60557 + BugsnagReactNative: a97b3132c1854fd7bf92350fabd505e3ebdd7829 CocoaAsyncSocket: 065fd1e645c7abab64f7a6a2007a48038fdc6a99 DoubleConversion: cf9b38bf0b2d048436d9a82ad2abe1404f11e7de - EXAppleAuthentication: 97d5db59f3fb7aefc6cb06e351ba0828c8982232 + EXAppleAuthentication: 5b3da71bada29e2423d8ea27e5538ef0d75aba62 EXAV: 86344030966e0da7e00556fbb97269d9ad16071d EXConstants: f907b3b6ce16e20d1750f22af1e095e924574bcb EXFileSystem: 76875135b61708b9afa7e6a89b72a60ba0fdfa20 @@ -935,13 +940,13 @@ SPEC CHECKSUMS: EXVideoThumbnails: cd257fc6e07884a704a5674d362a6410933acb68 EXWebBrowser: d37a5ffdea1b65947352bc001dd9f732463725d4 FBLazyVector: e686045572151edef46010a6f819ade377dfeb4b - FBReactNativeSpec: 110d69378fce79af38271c39894b59fec7890221 - Firebase: c23a36d9e4cdf7877dfcba8dd0c58add66358999 - FirebaseAnalytics: 3bb096873ee0d7fa4b6c70f5e9166b6da413cc7f - FirebaseCore: d3a978a3cfa3240bf7e4ba7d137fdf5b22b628ec - FirebaseCoreDiagnostics: 770ac5958e1372ce67959ae4b4f31d8e127c3ac1 - FirebaseCrashlytics: 1a747c9cc084a24dc6d9511c991db1cd078154eb - FirebaseInstallations: 466c7b4d1f58fe16707693091da253726a731ed2 + FBReactNativeSpec: b427d2f482828b9533661dbcf9edf846cb60dc7b + Firebase: 919186c8e119dd9372a45fd1dd17a8a942bc1892 + FirebaseAnalytics: 5fa308e1b13f838d0f6dc74719ac2a72e8c5afc4 + FirebaseCore: 8cd4f8ea22075e0ee582849b1cf79d8816506085 + FirebaseCoreDiagnostics: 4505e4d4009b1d93f605088ee7d7764d5f0d1c84 + FirebaseCrashlytics: 7d0fa02ea8842cc4b2ab07b0735edafde1ad77d6 + FirebaseInstallations: 3c520c951305cbf9ca54eb891ff9e6d1fd384881 Flipper: d3da1aa199aad94455ae725e9f3aa43f3ec17021 Flipper-DoubleConversion: 38631e41ef4f9b12861c67d17cb5518d06badc41 Flipper-Folly: 755929a4f851b2fb2c347d533a23f191b008554c @@ -950,19 +955,20 @@ SPEC CHECKSUMS: Flipper-RSocket: 127954abe8b162fcaf68d2134d34dc2bd7076154 FlipperKit: 8a20b5c5fcf9436cac58551dc049867247f64b00 glog: 73c2498ac6884b13ede40eda8228cb1eee9d9d62 - GoogleAppMeasurement: a6a3a066369828db64eda428cb2856dc1cdc7c4e - GoogleDataTransport: f56af7caa4ed338dc8e138a5d7c5973e66440833 - GoogleUtilities: 7f2f5a07f888cdb145101d6042bc4422f57e70b3 + GoogleAppMeasurement: 8cd1f289d60e629cf16ab03363b9e89c776b9651 + GoogleDataTransport: 9a8a16f79feffc7f42096743de2a7c4815e84020 + GoogleDataTransportCCTSupport: 489c1265d2c85b68187a83a911913d190012158d + GoogleUtilities: e121a3867449ce16b0e35ddf1797ea7a389ffdf2 hermes-engine: 7d97ba46a1e29bacf3e3c61ecb2804a5ddd02d4f JitsiMeetSDK: 476329f72a866f714d2802bafe1729de6d644ccf KeyCommands: f66c535f698ed14b3d3a4e58859d79a827ea907e libevent: 4049cae6c81cdb3654a443be001fb9bdceff7913 - libwebp: e90b9c01d99205d03b6bb8f2c8c415e5a4ef66f0 + libwebp: 946cb3063cea9236285f7e9a8505d806d30e07f3 MMKV: 67253edee25a34edf332f91d73fa94a9e038b971 - MMKVCore: b00e7a09ec77a1b916aef336eedd3b99ec249978 - nanopb: 59317e09cf1f1a0af72f12af412d54edf52603fc + MMKVCore: fe398984acac1fa33f92795d1b5fd0a334c944af + nanopb: c43f40fadfe79e8b8db116583945847910cbabc9 OpenSSL-Universal: 1aa4f6a6ee7256b83db99ec1ccdaa80d10f9af9b - PromisesObjC: 3113f7f76903778cf4a0586bd1ab89329a0b7b97 + PromisesObjC: b48e0338dbbac2207e611750777895f7a5811b75 RCT-Folly: ec7a233ccc97cc556cf7237f0db1ff65b986f27c RCTRequired: 6d3e854f0e7260a648badd0d44fc364bc9da9728 RCTTypeSafety: c1f31d19349c6b53085766359caac425926fafaa @@ -1014,19 +1020,19 @@ SPEC CHECKSUMS: RNDateTimePicker: 7658208086d86d09e1627b5c34ba0cf237c60140 RNDeviceInfo: 8d3a29207835f972bce883723882980143270d55 RNFastImage: f40d202ea2367239f71bc7cf11315f4bebab85b4 - RNFBAnalytics: 6414e9fe1f36c3074f39cd6265b3def777dbfbdb - RNFBApp: 804b98033f45c3a3e35b56de8c894f85ef5e4388 - RNFBCrashlytics: 501d01e5dd0cd6affedba60762b9b8d7d579cea8 + RNFBAnalytics: dae6d7b280ba61c96e1bbdd34aca3154388f025e + RNFBApp: 6fd8a7e757135d4168bf033a8812c241af7363a0 + RNFBCrashlytics: 88de72c2476b5868a892d9523b89b86c527c540e RNGestureHandler: a479ebd5ed4221a810967000735517df0d2db211 - RNImageCropPicker: f0557a908758c4a3f83978894ec7227651529b45 + RNImageCropPicker: 38865ab4af1b0b2146ad66061196bc0184946855 RNLocalize: 82a569022724d35461e2dc5b5d015a13c3ca995b RNReanimated: b5ccb50650ba06f6e749c7c329a1bc3ae0c88b43 RNRootView: 895a4813dedeaca82db2fa868ca1c333d790e494 RNScreens: c526239bbe0e957b988dacc8d75ac94ec9cb19da RNVectorIcons: 31cebfcf94e8cf8686eb5303ae0357da64d7a5a4 - SDWebImage: a7f831e1a65eb5e285e3fb046a23fcfbf08e696d + SDWebImage: cf6922231e95550934da2ada0f20f2becf2ceba9 SDWebImageWebPCoder: 36f8f47bd9879a8aea6044765c1351120fd8e3a8 - TOCropViewController: 3105367e808b7d3d886a74ff59bf4804e7d3ab38 + TOCropViewController: 20a14b6a7a098308bf369e7c8d700dc983a974e6 UMAppLoader: 61049c8d55590b74e9ae1d5429bf68d96b4a2528 UMBarCodeScannerInterface: e5e4c87797d3d01214e25cd1618866caf5d4f17f UMCameraInterface: 415ac060034edecacdbbaa739c223e3f276e0056 diff --git a/ios/Pods/Target Support Files/Firebase/Firebase.debug.xcconfig b/ios/Pods/Target Support Files/Firebase/Firebase.debug.xcconfig index 6b9343ecd3..68562cfa71 100644 --- a/ios/Pods/Target Support Files/Firebase/Firebase.debug.xcconfig +++ b/ios/Pods/Target Support Files/Firebase/Firebase.debug.xcconfig @@ -3,7 +3,7 @@ CLANG_WARN_QUOTED_INCLUDE_IN_FRAMEWORK_HEADER = NO CONFIGURATION_BUILD_DIR = ${PODS_CONFIGURATION_BUILD_DIR}/Firebase FRAMEWORK_SEARCH_PATHS = $(inherited) "${PODS_ROOT}/FirebaseAnalytics/Frameworks" "${PODS_ROOT}/GoogleAppMeasurement/Frameworks" GCC_PREPROCESSOR_DEFINITIONS = $(inherited) COCOAPODS=1 -HEADER_SEARCH_PATHS = $(inherited) "${PODS_ROOT}/Headers/Private" "${PODS_ROOT}/Headers/Private/Firebase" "${PODS_ROOT}/Headers/Public" "${PODS_ROOT}/Headers/Public/Firebase" "${PODS_ROOT}/Headers/Public/FirebaseCore" "${PODS_ROOT}/Headers/Public/FirebaseCoreDiagnostics" "${PODS_ROOT}/Headers/Public/FirebaseCrashlytics" "${PODS_ROOT}/Headers/Public/FirebaseInstallations" "${PODS_ROOT}/Headers/Public/GoogleDataTransport" "${PODS_ROOT}/Headers/Public/GoogleUtilities" "${PODS_ROOT}/Headers/Public/PromisesObjC" "${PODS_ROOT}/Headers/Public/nanopb" +HEADER_SEARCH_PATHS = $(inherited) "${PODS_ROOT}/Headers/Private" "${PODS_ROOT}/Headers/Private/Firebase" "${PODS_ROOT}/Headers/Public" "${PODS_ROOT}/Headers/Public/Firebase" "${PODS_ROOT}/Headers/Public/FirebaseCore" "${PODS_ROOT}/Headers/Public/FirebaseCoreDiagnostics" "${PODS_ROOT}/Headers/Public/FirebaseCrashlytics" "${PODS_ROOT}/Headers/Public/FirebaseInstallations" "${PODS_ROOT}/Headers/Public/GoogleDataTransport" "${PODS_ROOT}/Headers/Public/GoogleDataTransportCCTSupport" "${PODS_ROOT}/Headers/Public/GoogleUtilities" "${PODS_ROOT}/Headers/Public/PromisesObjC" "${PODS_ROOT}/Headers/Public/nanopb" PODS_BUILD_DIR = ${BUILD_DIR} PODS_CONFIGURATION_BUILD_DIR = ${PODS_BUILD_DIR}/$(CONFIGURATION)$(EFFECTIVE_PLATFORM_NAME) PODS_ROOT = ${SRCROOT} diff --git a/ios/Pods/Target Support Files/Firebase/Firebase.release.xcconfig b/ios/Pods/Target Support Files/Firebase/Firebase.release.xcconfig index 6b9343ecd3..68562cfa71 100644 --- a/ios/Pods/Target Support Files/Firebase/Firebase.release.xcconfig +++ b/ios/Pods/Target Support Files/Firebase/Firebase.release.xcconfig @@ -3,7 +3,7 @@ CLANG_WARN_QUOTED_INCLUDE_IN_FRAMEWORK_HEADER = NO CONFIGURATION_BUILD_DIR = ${PODS_CONFIGURATION_BUILD_DIR}/Firebase FRAMEWORK_SEARCH_PATHS = $(inherited) "${PODS_ROOT}/FirebaseAnalytics/Frameworks" "${PODS_ROOT}/GoogleAppMeasurement/Frameworks" GCC_PREPROCESSOR_DEFINITIONS = $(inherited) COCOAPODS=1 -HEADER_SEARCH_PATHS = $(inherited) "${PODS_ROOT}/Headers/Private" "${PODS_ROOT}/Headers/Private/Firebase" "${PODS_ROOT}/Headers/Public" "${PODS_ROOT}/Headers/Public/Firebase" "${PODS_ROOT}/Headers/Public/FirebaseCore" "${PODS_ROOT}/Headers/Public/FirebaseCoreDiagnostics" "${PODS_ROOT}/Headers/Public/FirebaseCrashlytics" "${PODS_ROOT}/Headers/Public/FirebaseInstallations" "${PODS_ROOT}/Headers/Public/GoogleDataTransport" "${PODS_ROOT}/Headers/Public/GoogleUtilities" "${PODS_ROOT}/Headers/Public/PromisesObjC" "${PODS_ROOT}/Headers/Public/nanopb" +HEADER_SEARCH_PATHS = $(inherited) "${PODS_ROOT}/Headers/Private" "${PODS_ROOT}/Headers/Private/Firebase" "${PODS_ROOT}/Headers/Public" "${PODS_ROOT}/Headers/Public/Firebase" "${PODS_ROOT}/Headers/Public/FirebaseCore" "${PODS_ROOT}/Headers/Public/FirebaseCoreDiagnostics" "${PODS_ROOT}/Headers/Public/FirebaseCrashlytics" "${PODS_ROOT}/Headers/Public/FirebaseInstallations" "${PODS_ROOT}/Headers/Public/GoogleDataTransport" "${PODS_ROOT}/Headers/Public/GoogleDataTransportCCTSupport" "${PODS_ROOT}/Headers/Public/GoogleUtilities" "${PODS_ROOT}/Headers/Public/PromisesObjC" "${PODS_ROOT}/Headers/Public/nanopb" PODS_BUILD_DIR = ${BUILD_DIR} PODS_CONFIGURATION_BUILD_DIR = ${PODS_BUILD_DIR}/$(CONFIGURATION)$(EFFECTIVE_PLATFORM_NAME) PODS_ROOT = ${SRCROOT} diff --git a/ios/Pods/Target Support Files/FirebaseAnalytics/FirebaseAnalytics.debug.xcconfig b/ios/Pods/Target Support Files/FirebaseAnalytics/FirebaseAnalytics.debug.xcconfig index 66f4a2cf7c..48ef4752f7 100644 --- a/ios/Pods/Target Support Files/FirebaseAnalytics/FirebaseAnalytics.debug.xcconfig +++ b/ios/Pods/Target Support Files/FirebaseAnalytics/FirebaseAnalytics.debug.xcconfig @@ -3,7 +3,7 @@ CLANG_WARN_QUOTED_INCLUDE_IN_FRAMEWORK_HEADER = NO CONFIGURATION_BUILD_DIR = ${PODS_CONFIGURATION_BUILD_DIR}/FirebaseAnalytics FRAMEWORK_SEARCH_PATHS = $(inherited) "${PODS_ROOT}/FirebaseAnalytics/Frameworks" "${PODS_ROOT}/GoogleAppMeasurement/Frameworks" GCC_PREPROCESSOR_DEFINITIONS = $(inherited) COCOAPODS=1 -HEADER_SEARCH_PATHS = $(inherited) "${PODS_ROOT}/Headers/Public" "${PODS_ROOT}/Headers/Public/FirebaseCore" "${PODS_ROOT}/Headers/Public/FirebaseCoreDiagnostics" "${PODS_ROOT}/Headers/Public/FirebaseInstallations" "${PODS_ROOT}/Headers/Public/GoogleDataTransport" "${PODS_ROOT}/Headers/Public/GoogleUtilities" "${PODS_ROOT}/Headers/Public/PromisesObjC" "${PODS_ROOT}/Headers/Public/nanopb" +HEADER_SEARCH_PATHS = $(inherited) "${PODS_ROOT}/Headers/Public" "${PODS_ROOT}/Headers/Public/FirebaseCore" "${PODS_ROOT}/Headers/Public/FirebaseCoreDiagnostics" "${PODS_ROOT}/Headers/Public/FirebaseInstallations" "${PODS_ROOT}/Headers/Public/GoogleDataTransport" "${PODS_ROOT}/Headers/Public/GoogleDataTransportCCTSupport" "${PODS_ROOT}/Headers/Public/GoogleUtilities" "${PODS_ROOT}/Headers/Public/PromisesObjC" "${PODS_ROOT}/Headers/Public/nanopb" PODS_BUILD_DIR = ${BUILD_DIR} PODS_CONFIGURATION_BUILD_DIR = ${PODS_BUILD_DIR}/$(CONFIGURATION)$(EFFECTIVE_PLATFORM_NAME) PODS_ROOT = ${SRCROOT} diff --git a/ios/Pods/Target Support Files/FirebaseAnalytics/FirebaseAnalytics.release.xcconfig b/ios/Pods/Target Support Files/FirebaseAnalytics/FirebaseAnalytics.release.xcconfig index 66f4a2cf7c..48ef4752f7 100644 --- a/ios/Pods/Target Support Files/FirebaseAnalytics/FirebaseAnalytics.release.xcconfig +++ b/ios/Pods/Target Support Files/FirebaseAnalytics/FirebaseAnalytics.release.xcconfig @@ -3,7 +3,7 @@ CLANG_WARN_QUOTED_INCLUDE_IN_FRAMEWORK_HEADER = NO CONFIGURATION_BUILD_DIR = ${PODS_CONFIGURATION_BUILD_DIR}/FirebaseAnalytics FRAMEWORK_SEARCH_PATHS = $(inherited) "${PODS_ROOT}/FirebaseAnalytics/Frameworks" "${PODS_ROOT}/GoogleAppMeasurement/Frameworks" GCC_PREPROCESSOR_DEFINITIONS = $(inherited) COCOAPODS=1 -HEADER_SEARCH_PATHS = $(inherited) "${PODS_ROOT}/Headers/Public" "${PODS_ROOT}/Headers/Public/FirebaseCore" "${PODS_ROOT}/Headers/Public/FirebaseCoreDiagnostics" "${PODS_ROOT}/Headers/Public/FirebaseInstallations" "${PODS_ROOT}/Headers/Public/GoogleDataTransport" "${PODS_ROOT}/Headers/Public/GoogleUtilities" "${PODS_ROOT}/Headers/Public/PromisesObjC" "${PODS_ROOT}/Headers/Public/nanopb" +HEADER_SEARCH_PATHS = $(inherited) "${PODS_ROOT}/Headers/Public" "${PODS_ROOT}/Headers/Public/FirebaseCore" "${PODS_ROOT}/Headers/Public/FirebaseCoreDiagnostics" "${PODS_ROOT}/Headers/Public/FirebaseInstallations" "${PODS_ROOT}/Headers/Public/GoogleDataTransport" "${PODS_ROOT}/Headers/Public/GoogleDataTransportCCTSupport" "${PODS_ROOT}/Headers/Public/GoogleUtilities" "${PODS_ROOT}/Headers/Public/PromisesObjC" "${PODS_ROOT}/Headers/Public/nanopb" PODS_BUILD_DIR = ${BUILD_DIR} PODS_CONFIGURATION_BUILD_DIR = ${PODS_BUILD_DIR}/$(CONFIGURATION)$(EFFECTIVE_PLATFORM_NAME) PODS_ROOT = ${SRCROOT} diff --git a/ios/Pods/Target Support Files/FirebaseCore/FirebaseCore.debug.xcconfig b/ios/Pods/Target Support Files/FirebaseCore/FirebaseCore.debug.xcconfig index 20b7997e4a..2c7c3275f5 100644 --- a/ios/Pods/Target Support Files/FirebaseCore/FirebaseCore.debug.xcconfig +++ b/ios/Pods/Target Support Files/FirebaseCore/FirebaseCore.debug.xcconfig @@ -2,8 +2,8 @@ APPLICATION_EXTENSION_API_ONLY = YES CLANG_WARN_QUOTED_INCLUDE_IN_FRAMEWORK_HEADER = NO CONFIGURATION_BUILD_DIR = ${PODS_CONFIGURATION_BUILD_DIR}/FirebaseCore GCC_C_LANGUAGE_STANDARD = c99 -GCC_PREPROCESSOR_DEFINITIONS = $(inherited) COCOAPODS=1 FIRCore_VERSION=6.10.4 Firebase_VERSION=6.34.0 -HEADER_SEARCH_PATHS = $(inherited) "${PODS_ROOT}/Headers/Private" "${PODS_ROOT}/Headers/Private/FirebaseCore" "${PODS_ROOT}/Headers/Public" "${PODS_ROOT}/Headers/Public/FirebaseCore" "${PODS_ROOT}/Headers/Public/FirebaseCoreDiagnostics" "${PODS_ROOT}/Headers/Public/GoogleDataTransport" "${PODS_ROOT}/Headers/Public/GoogleUtilities" "${PODS_ROOT}/Headers/Public/PromisesObjC" "${PODS_ROOT}/Headers/Public/nanopb" "${PODS_TARGET_SRCROOT}" +GCC_PREPROCESSOR_DEFINITIONS = $(inherited) COCOAPODS=1 FIRCore_VERSION=6.8.1 Firebase_VERSION=6.27.1 +HEADER_SEARCH_PATHS = $(inherited) "${PODS_ROOT}/Headers/Private" "${PODS_ROOT}/Headers/Private/FirebaseCore" "${PODS_ROOT}/Headers/Public" "${PODS_ROOT}/Headers/Public/FirebaseCore" "${PODS_ROOT}/Headers/Public/FirebaseCoreDiagnostics" "${PODS_ROOT}/Headers/Public/GoogleDataTransport" "${PODS_ROOT}/Headers/Public/GoogleDataTransportCCTSupport" "${PODS_ROOT}/Headers/Public/GoogleUtilities" "${PODS_ROOT}/Headers/Public/PromisesObjC" "${PODS_ROOT}/Headers/Public/nanopb" "${PODS_TARGET_SRCROOT}" OTHER_CFLAGS = $(inherited) -fno-autolink PODS_BUILD_DIR = ${BUILD_DIR} PODS_CONFIGURATION_BUILD_DIR = ${PODS_BUILD_DIR}/$(CONFIGURATION)$(EFFECTIVE_PLATFORM_NAME) diff --git a/ios/Pods/Target Support Files/FirebaseCore/FirebaseCore.release.xcconfig b/ios/Pods/Target Support Files/FirebaseCore/FirebaseCore.release.xcconfig index 20b7997e4a..2c7c3275f5 100644 --- a/ios/Pods/Target Support Files/FirebaseCore/FirebaseCore.release.xcconfig +++ b/ios/Pods/Target Support Files/FirebaseCore/FirebaseCore.release.xcconfig @@ -2,8 +2,8 @@ APPLICATION_EXTENSION_API_ONLY = YES CLANG_WARN_QUOTED_INCLUDE_IN_FRAMEWORK_HEADER = NO CONFIGURATION_BUILD_DIR = ${PODS_CONFIGURATION_BUILD_DIR}/FirebaseCore GCC_C_LANGUAGE_STANDARD = c99 -GCC_PREPROCESSOR_DEFINITIONS = $(inherited) COCOAPODS=1 FIRCore_VERSION=6.10.4 Firebase_VERSION=6.34.0 -HEADER_SEARCH_PATHS = $(inherited) "${PODS_ROOT}/Headers/Private" "${PODS_ROOT}/Headers/Private/FirebaseCore" "${PODS_ROOT}/Headers/Public" "${PODS_ROOT}/Headers/Public/FirebaseCore" "${PODS_ROOT}/Headers/Public/FirebaseCoreDiagnostics" "${PODS_ROOT}/Headers/Public/GoogleDataTransport" "${PODS_ROOT}/Headers/Public/GoogleUtilities" "${PODS_ROOT}/Headers/Public/PromisesObjC" "${PODS_ROOT}/Headers/Public/nanopb" "${PODS_TARGET_SRCROOT}" +GCC_PREPROCESSOR_DEFINITIONS = $(inherited) COCOAPODS=1 FIRCore_VERSION=6.8.1 Firebase_VERSION=6.27.1 +HEADER_SEARCH_PATHS = $(inherited) "${PODS_ROOT}/Headers/Private" "${PODS_ROOT}/Headers/Private/FirebaseCore" "${PODS_ROOT}/Headers/Public" "${PODS_ROOT}/Headers/Public/FirebaseCore" "${PODS_ROOT}/Headers/Public/FirebaseCoreDiagnostics" "${PODS_ROOT}/Headers/Public/GoogleDataTransport" "${PODS_ROOT}/Headers/Public/GoogleDataTransportCCTSupport" "${PODS_ROOT}/Headers/Public/GoogleUtilities" "${PODS_ROOT}/Headers/Public/PromisesObjC" "${PODS_ROOT}/Headers/Public/nanopb" "${PODS_TARGET_SRCROOT}" OTHER_CFLAGS = $(inherited) -fno-autolink PODS_BUILD_DIR = ${BUILD_DIR} PODS_CONFIGURATION_BUILD_DIR = ${PODS_BUILD_DIR}/$(CONFIGURATION)$(EFFECTIVE_PLATFORM_NAME) diff --git a/ios/Pods/Target Support Files/FirebaseCoreDiagnostics/FirebaseCoreDiagnostics.debug.xcconfig b/ios/Pods/Target Support Files/FirebaseCoreDiagnostics/FirebaseCoreDiagnostics.debug.xcconfig index ab79b8706c..6014c9e99b 100644 --- a/ios/Pods/Target Support Files/FirebaseCoreDiagnostics/FirebaseCoreDiagnostics.debug.xcconfig +++ b/ios/Pods/Target Support Files/FirebaseCoreDiagnostics/FirebaseCoreDiagnostics.debug.xcconfig @@ -5,7 +5,7 @@ CONFIGURATION_BUILD_DIR = ${PODS_CONFIGURATION_BUILD_DIR}/FirebaseCoreDiagnostic GCC_C_LANGUAGE_STANDARD = c99 GCC_PREPROCESSOR_DEFINITIONS = $(inherited) COCOAPODS=1 PB_FIELD_32BIT=1 PB_NO_PACKED_STRUCTS=1 PB_ENABLE_MALLOC=1 GCC_TREAT_WARNINGS_AS_ERRORS = YES -HEADER_SEARCH_PATHS = $(inherited) "${PODS_ROOT}/Headers/Private" "${PODS_ROOT}/Headers/Private/FirebaseCoreDiagnostics" "${PODS_ROOT}/Headers/Public" "${PODS_ROOT}/Headers/Public/FirebaseCoreDiagnostics" "${PODS_ROOT}/Headers/Public/GoogleDataTransport" "${PODS_ROOT}/Headers/Public/GoogleUtilities" "${PODS_ROOT}/Headers/Public/PromisesObjC" "${PODS_ROOT}/Headers/Public/nanopb" "${PODS_TARGET_SRCROOT}" +HEADER_SEARCH_PATHS = $(inherited) "${PODS_ROOT}/Headers/Private" "${PODS_ROOT}/Headers/Private/FirebaseCoreDiagnostics" "${PODS_ROOT}/Headers/Public" "${PODS_ROOT}/Headers/Public/FirebaseCoreDiagnostics" "${PODS_ROOT}/Headers/Public/GoogleDataTransport" "${PODS_ROOT}/Headers/Public/GoogleDataTransportCCTSupport" "${PODS_ROOT}/Headers/Public/GoogleUtilities" "${PODS_ROOT}/Headers/Public/PromisesObjC" "${PODS_ROOT}/Headers/Public/nanopb" "${PODS_TARGET_SRCROOT}" "${PODS_TARGET_SRCROOT}/Firebase/CoreDiagnostics/" PODS_BUILD_DIR = ${BUILD_DIR} PODS_CONFIGURATION_BUILD_DIR = ${PODS_BUILD_DIR}/$(CONFIGURATION)$(EFFECTIVE_PLATFORM_NAME) PODS_ROOT = ${SRCROOT} diff --git a/ios/Pods/Target Support Files/FirebaseCoreDiagnostics/FirebaseCoreDiagnostics.release.xcconfig b/ios/Pods/Target Support Files/FirebaseCoreDiagnostics/FirebaseCoreDiagnostics.release.xcconfig index ab79b8706c..6014c9e99b 100644 --- a/ios/Pods/Target Support Files/FirebaseCoreDiagnostics/FirebaseCoreDiagnostics.release.xcconfig +++ b/ios/Pods/Target Support Files/FirebaseCoreDiagnostics/FirebaseCoreDiagnostics.release.xcconfig @@ -5,7 +5,7 @@ CONFIGURATION_BUILD_DIR = ${PODS_CONFIGURATION_BUILD_DIR}/FirebaseCoreDiagnostic GCC_C_LANGUAGE_STANDARD = c99 GCC_PREPROCESSOR_DEFINITIONS = $(inherited) COCOAPODS=1 PB_FIELD_32BIT=1 PB_NO_PACKED_STRUCTS=1 PB_ENABLE_MALLOC=1 GCC_TREAT_WARNINGS_AS_ERRORS = YES -HEADER_SEARCH_PATHS = $(inherited) "${PODS_ROOT}/Headers/Private" "${PODS_ROOT}/Headers/Private/FirebaseCoreDiagnostics" "${PODS_ROOT}/Headers/Public" "${PODS_ROOT}/Headers/Public/FirebaseCoreDiagnostics" "${PODS_ROOT}/Headers/Public/GoogleDataTransport" "${PODS_ROOT}/Headers/Public/GoogleUtilities" "${PODS_ROOT}/Headers/Public/PromisesObjC" "${PODS_ROOT}/Headers/Public/nanopb" "${PODS_TARGET_SRCROOT}" +HEADER_SEARCH_PATHS = $(inherited) "${PODS_ROOT}/Headers/Private" "${PODS_ROOT}/Headers/Private/FirebaseCoreDiagnostics" "${PODS_ROOT}/Headers/Public" "${PODS_ROOT}/Headers/Public/FirebaseCoreDiagnostics" "${PODS_ROOT}/Headers/Public/GoogleDataTransport" "${PODS_ROOT}/Headers/Public/GoogleDataTransportCCTSupport" "${PODS_ROOT}/Headers/Public/GoogleUtilities" "${PODS_ROOT}/Headers/Public/PromisesObjC" "${PODS_ROOT}/Headers/Public/nanopb" "${PODS_TARGET_SRCROOT}" "${PODS_TARGET_SRCROOT}/Firebase/CoreDiagnostics/" PODS_BUILD_DIR = ${BUILD_DIR} PODS_CONFIGURATION_BUILD_DIR = ${PODS_BUILD_DIR}/$(CONFIGURATION)$(EFFECTIVE_PLATFORM_NAME) PODS_ROOT = ${SRCROOT} diff --git a/ios/Pods/Target Support Files/FirebaseCrashlytics/FirebaseCrashlytics.debug.xcconfig b/ios/Pods/Target Support Files/FirebaseCrashlytics/FirebaseCrashlytics.debug.xcconfig index 21c3efc2d0..da75023e62 100644 --- a/ios/Pods/Target Support Files/FirebaseCrashlytics/FirebaseCrashlytics.debug.xcconfig +++ b/ios/Pods/Target Support Files/FirebaseCrashlytics/FirebaseCrashlytics.debug.xcconfig @@ -2,8 +2,9 @@ APPLICATION_EXTENSION_API_ONLY = YES CLANG_WARN_QUOTED_INCLUDE_IN_FRAMEWORK_HEADER = NO CONFIGURATION_BUILD_DIR = ${PODS_CONFIGURATION_BUILD_DIR}/FirebaseCrashlytics GCC_C_LANGUAGE_STANDARD = c99 -GCC_PREPROCESSOR_DEFINITIONS = $(inherited) COCOAPODS=1 DISPLAY_VERSION=4.6.2 CLS_SDK_NAME="Crashlytics iOS SDK" PB_FIELD_32BIT=1 PB_NO_PACKED_STRUCTS=1 PB_ENABLE_MALLOC=1 -HEADER_SEARCH_PATHS = $(inherited) "${PODS_ROOT}/Headers/Private" "${PODS_ROOT}/Headers/Private/FirebaseCrashlytics" "${PODS_ROOT}/Headers/Public" "${PODS_ROOT}/Headers/Public/FirebaseCore" "${PODS_ROOT}/Headers/Public/FirebaseCoreDiagnostics" "${PODS_ROOT}/Headers/Public/FirebaseCrashlytics" "${PODS_ROOT}/Headers/Public/FirebaseInstallations" "${PODS_ROOT}/Headers/Public/GoogleDataTransport" "${PODS_ROOT}/Headers/Public/GoogleUtilities" "${PODS_ROOT}/Headers/Public/PromisesObjC" "${PODS_ROOT}/Headers/Public/nanopb" "${PODS_TARGET_SRCROOT}" +GCC_PREPROCESSOR_DEFINITIONS = $(inherited) COCOAPODS=1 DISPLAY_VERSION=4.2.0 CLS_SDK_NAME="Crashlytics iOS SDK" PB_FIELD_32BIT=1 PB_NO_PACKED_STRUCTS=1 PB_ENABLE_MALLOC=1 +HEADER_SEARCH_PATHS = $(inherited) "${PODS_ROOT}/Headers/Private" "${PODS_ROOT}/Headers/Private/FirebaseCrashlytics" "${PODS_ROOT}/Headers/Public" "${PODS_ROOT}/Headers/Public/FirebaseCore" "${PODS_ROOT}/Headers/Public/FirebaseCoreDiagnostics" "${PODS_ROOT}/Headers/Public/FirebaseCrashlytics" "${PODS_ROOT}/Headers/Public/FirebaseInstallations" "${PODS_ROOT}/Headers/Public/GoogleDataTransport" "${PODS_ROOT}/Headers/Public/GoogleDataTransportCCTSupport" "${PODS_ROOT}/Headers/Public/GoogleUtilities" "${PODS_ROOT}/Headers/Public/PromisesObjC" "${PODS_ROOT}/Headers/Public/nanopb" "${PODS_TARGET_SRCROOT}" +OTHER_LD_FLAGS = $(inherited) -sectcreate __TEXT __info_plist PODS_BUILD_DIR = ${BUILD_DIR} PODS_CONFIGURATION_BUILD_DIR = ${PODS_BUILD_DIR}/$(CONFIGURATION)$(EFFECTIVE_PLATFORM_NAME) PODS_ROOT = ${SRCROOT} diff --git a/ios/Pods/Target Support Files/FirebaseCrashlytics/FirebaseCrashlytics.release.xcconfig b/ios/Pods/Target Support Files/FirebaseCrashlytics/FirebaseCrashlytics.release.xcconfig index 21c3efc2d0..da75023e62 100644 --- a/ios/Pods/Target Support Files/FirebaseCrashlytics/FirebaseCrashlytics.release.xcconfig +++ b/ios/Pods/Target Support Files/FirebaseCrashlytics/FirebaseCrashlytics.release.xcconfig @@ -2,8 +2,9 @@ APPLICATION_EXTENSION_API_ONLY = YES CLANG_WARN_QUOTED_INCLUDE_IN_FRAMEWORK_HEADER = NO CONFIGURATION_BUILD_DIR = ${PODS_CONFIGURATION_BUILD_DIR}/FirebaseCrashlytics GCC_C_LANGUAGE_STANDARD = c99 -GCC_PREPROCESSOR_DEFINITIONS = $(inherited) COCOAPODS=1 DISPLAY_VERSION=4.6.2 CLS_SDK_NAME="Crashlytics iOS SDK" PB_FIELD_32BIT=1 PB_NO_PACKED_STRUCTS=1 PB_ENABLE_MALLOC=1 -HEADER_SEARCH_PATHS = $(inherited) "${PODS_ROOT}/Headers/Private" "${PODS_ROOT}/Headers/Private/FirebaseCrashlytics" "${PODS_ROOT}/Headers/Public" "${PODS_ROOT}/Headers/Public/FirebaseCore" "${PODS_ROOT}/Headers/Public/FirebaseCoreDiagnostics" "${PODS_ROOT}/Headers/Public/FirebaseCrashlytics" "${PODS_ROOT}/Headers/Public/FirebaseInstallations" "${PODS_ROOT}/Headers/Public/GoogleDataTransport" "${PODS_ROOT}/Headers/Public/GoogleUtilities" "${PODS_ROOT}/Headers/Public/PromisesObjC" "${PODS_ROOT}/Headers/Public/nanopb" "${PODS_TARGET_SRCROOT}" +GCC_PREPROCESSOR_DEFINITIONS = $(inherited) COCOAPODS=1 DISPLAY_VERSION=4.2.0 CLS_SDK_NAME="Crashlytics iOS SDK" PB_FIELD_32BIT=1 PB_NO_PACKED_STRUCTS=1 PB_ENABLE_MALLOC=1 +HEADER_SEARCH_PATHS = $(inherited) "${PODS_ROOT}/Headers/Private" "${PODS_ROOT}/Headers/Private/FirebaseCrashlytics" "${PODS_ROOT}/Headers/Public" "${PODS_ROOT}/Headers/Public/FirebaseCore" "${PODS_ROOT}/Headers/Public/FirebaseCoreDiagnostics" "${PODS_ROOT}/Headers/Public/FirebaseCrashlytics" "${PODS_ROOT}/Headers/Public/FirebaseInstallations" "${PODS_ROOT}/Headers/Public/GoogleDataTransport" "${PODS_ROOT}/Headers/Public/GoogleDataTransportCCTSupport" "${PODS_ROOT}/Headers/Public/GoogleUtilities" "${PODS_ROOT}/Headers/Public/PromisesObjC" "${PODS_ROOT}/Headers/Public/nanopb" "${PODS_TARGET_SRCROOT}" +OTHER_LD_FLAGS = $(inherited) -sectcreate __TEXT __info_plist PODS_BUILD_DIR = ${BUILD_DIR} PODS_CONFIGURATION_BUILD_DIR = ${PODS_BUILD_DIR}/$(CONFIGURATION)$(EFFECTIVE_PLATFORM_NAME) PODS_ROOT = ${SRCROOT} diff --git a/ios/Pods/Target Support Files/FirebaseInstallations/FirebaseInstallations.debug.xcconfig b/ios/Pods/Target Support Files/FirebaseInstallations/FirebaseInstallations.debug.xcconfig index 7f8b46ccfd..b6caa5bfbc 100644 --- a/ios/Pods/Target Support Files/FirebaseInstallations/FirebaseInstallations.debug.xcconfig +++ b/ios/Pods/Target Support Files/FirebaseInstallations/FirebaseInstallations.debug.xcconfig @@ -2,8 +2,8 @@ APPLICATION_EXTENSION_API_ONLY = YES CLANG_WARN_QUOTED_INCLUDE_IN_FRAMEWORK_HEADER = NO CONFIGURATION_BUILD_DIR = ${PODS_CONFIGURATION_BUILD_DIR}/FirebaseInstallations GCC_C_LANGUAGE_STANDARD = c99 -GCC_PREPROCESSOR_DEFINITIONS = $(inherited) COCOAPODS=1 FIRInstallations_LIB_VERSION=1.7.0 -HEADER_SEARCH_PATHS = $(inherited) "${PODS_ROOT}/Headers/Private" "${PODS_ROOT}/Headers/Private/FirebaseInstallations" "${PODS_ROOT}/Headers/Public" "${PODS_ROOT}/Headers/Public/FirebaseCore" "${PODS_ROOT}/Headers/Public/FirebaseCoreDiagnostics" "${PODS_ROOT}/Headers/Public/FirebaseInstallations" "${PODS_ROOT}/Headers/Public/GoogleDataTransport" "${PODS_ROOT}/Headers/Public/GoogleUtilities" "${PODS_ROOT}/Headers/Public/PromisesObjC" "${PODS_ROOT}/Headers/Public/nanopb" "${PODS_TARGET_SRCROOT}" +GCC_PREPROCESSOR_DEFINITIONS = $(inherited) COCOAPODS=1 FIRInstallations_LIB_VERSION=1.5.0 +HEADER_SEARCH_PATHS = $(inherited) "${PODS_ROOT}/Headers/Private" "${PODS_ROOT}/Headers/Private/FirebaseInstallations" "${PODS_ROOT}/Headers/Public" "${PODS_ROOT}/Headers/Public/FirebaseCore" "${PODS_ROOT}/Headers/Public/FirebaseCoreDiagnostics" "${PODS_ROOT}/Headers/Public/FirebaseInstallations" "${PODS_ROOT}/Headers/Public/GoogleDataTransport" "${PODS_ROOT}/Headers/Public/GoogleDataTransportCCTSupport" "${PODS_ROOT}/Headers/Public/GoogleUtilities" "${PODS_ROOT}/Headers/Public/PromisesObjC" "${PODS_ROOT}/Headers/Public/nanopb" "${PODS_TARGET_SRCROOT}" PODS_BUILD_DIR = ${BUILD_DIR} PODS_CONFIGURATION_BUILD_DIR = ${PODS_BUILD_DIR}/$(CONFIGURATION)$(EFFECTIVE_PLATFORM_NAME) PODS_ROOT = ${SRCROOT} diff --git a/ios/Pods/Target Support Files/FirebaseInstallations/FirebaseInstallations.release.xcconfig b/ios/Pods/Target Support Files/FirebaseInstallations/FirebaseInstallations.release.xcconfig index 7f8b46ccfd..b6caa5bfbc 100644 --- a/ios/Pods/Target Support Files/FirebaseInstallations/FirebaseInstallations.release.xcconfig +++ b/ios/Pods/Target Support Files/FirebaseInstallations/FirebaseInstallations.release.xcconfig @@ -2,8 +2,8 @@ APPLICATION_EXTENSION_API_ONLY = YES CLANG_WARN_QUOTED_INCLUDE_IN_FRAMEWORK_HEADER = NO CONFIGURATION_BUILD_DIR = ${PODS_CONFIGURATION_BUILD_DIR}/FirebaseInstallations GCC_C_LANGUAGE_STANDARD = c99 -GCC_PREPROCESSOR_DEFINITIONS = $(inherited) COCOAPODS=1 FIRInstallations_LIB_VERSION=1.7.0 -HEADER_SEARCH_PATHS = $(inherited) "${PODS_ROOT}/Headers/Private" "${PODS_ROOT}/Headers/Private/FirebaseInstallations" "${PODS_ROOT}/Headers/Public" "${PODS_ROOT}/Headers/Public/FirebaseCore" "${PODS_ROOT}/Headers/Public/FirebaseCoreDiagnostics" "${PODS_ROOT}/Headers/Public/FirebaseInstallations" "${PODS_ROOT}/Headers/Public/GoogleDataTransport" "${PODS_ROOT}/Headers/Public/GoogleUtilities" "${PODS_ROOT}/Headers/Public/PromisesObjC" "${PODS_ROOT}/Headers/Public/nanopb" "${PODS_TARGET_SRCROOT}" +GCC_PREPROCESSOR_DEFINITIONS = $(inherited) COCOAPODS=1 FIRInstallations_LIB_VERSION=1.5.0 +HEADER_SEARCH_PATHS = $(inherited) "${PODS_ROOT}/Headers/Private" "${PODS_ROOT}/Headers/Private/FirebaseInstallations" "${PODS_ROOT}/Headers/Public" "${PODS_ROOT}/Headers/Public/FirebaseCore" "${PODS_ROOT}/Headers/Public/FirebaseCoreDiagnostics" "${PODS_ROOT}/Headers/Public/FirebaseInstallations" "${PODS_ROOT}/Headers/Public/GoogleDataTransport" "${PODS_ROOT}/Headers/Public/GoogleDataTransportCCTSupport" "${PODS_ROOT}/Headers/Public/GoogleUtilities" "${PODS_ROOT}/Headers/Public/PromisesObjC" "${PODS_ROOT}/Headers/Public/nanopb" "${PODS_TARGET_SRCROOT}" PODS_BUILD_DIR = ${BUILD_DIR} PODS_CONFIGURATION_BUILD_DIR = ${PODS_BUILD_DIR}/$(CONFIGURATION)$(EFFECTIVE_PLATFORM_NAME) PODS_ROOT = ${SRCROOT} diff --git a/ios/Pods/Target Support Files/GoogleDataTransport/GoogleDataTransport.debug.xcconfig b/ios/Pods/Target Support Files/GoogleDataTransport/GoogleDataTransport.debug.xcconfig index c424df3bfb..227a05ae06 100644 --- a/ios/Pods/Target Support Files/GoogleDataTransport/GoogleDataTransport.debug.xcconfig +++ b/ios/Pods/Target Support Files/GoogleDataTransport/GoogleDataTransport.debug.xcconfig @@ -3,9 +3,9 @@ CLANG_UNDEFINED_BEHAVIOR_SANITIZER_NULLABILITY = YES CLANG_WARN_QUOTED_INCLUDE_IN_FRAMEWORK_HEADER = NO CONFIGURATION_BUILD_DIR = ${PODS_CONFIGURATION_BUILD_DIR}/GoogleDataTransport GCC_C_LANGUAGE_STANDARD = c99 -GCC_PREPROCESSOR_DEFINITIONS = $(inherited) COCOAPODS=1 PB_FIELD_32BIT=1 PB_NO_PACKED_STRUCTS=1 PB_ENABLE_MALLOC=1 GDTCOR_VERSION=7.5.1 +GCC_PREPROCESSOR_DEFINITIONS = $(inherited) COCOAPODS=1 GDTCOR_VERSION=6.2.1 GCC_TREAT_WARNINGS_AS_ERRORS = YES -HEADER_SEARCH_PATHS = $(inherited) "${PODS_ROOT}/Headers/Private" "${PODS_ROOT}/Headers/Private/GoogleDataTransport" "${PODS_ROOT}/Headers/Public" "${PODS_ROOT}/Headers/Public/GoogleDataTransport" "${PODS_ROOT}/Headers/Public/nanopb" "${PODS_TARGET_SRCROOT}/" +HEADER_SEARCH_PATHS = $(inherited) "${PODS_ROOT}/Headers/Private" "${PODS_ROOT}/Headers/Private/GoogleDataTransport" "${PODS_ROOT}/Headers/Public" "${PODS_ROOT}/Headers/Public/GoogleDataTransport" "${PODS_TARGET_SRCROOT}/GoogleDataTransport/" PODS_BUILD_DIR = ${BUILD_DIR} PODS_CONFIGURATION_BUILD_DIR = ${PODS_BUILD_DIR}/$(CONFIGURATION)$(EFFECTIVE_PLATFORM_NAME) PODS_ROOT = ${SRCROOT} diff --git a/ios/Pods/Target Support Files/GoogleDataTransport/GoogleDataTransport.release.xcconfig b/ios/Pods/Target Support Files/GoogleDataTransport/GoogleDataTransport.release.xcconfig index c424df3bfb..227a05ae06 100644 --- a/ios/Pods/Target Support Files/GoogleDataTransport/GoogleDataTransport.release.xcconfig +++ b/ios/Pods/Target Support Files/GoogleDataTransport/GoogleDataTransport.release.xcconfig @@ -3,9 +3,9 @@ CLANG_UNDEFINED_BEHAVIOR_SANITIZER_NULLABILITY = YES CLANG_WARN_QUOTED_INCLUDE_IN_FRAMEWORK_HEADER = NO CONFIGURATION_BUILD_DIR = ${PODS_CONFIGURATION_BUILD_DIR}/GoogleDataTransport GCC_C_LANGUAGE_STANDARD = c99 -GCC_PREPROCESSOR_DEFINITIONS = $(inherited) COCOAPODS=1 PB_FIELD_32BIT=1 PB_NO_PACKED_STRUCTS=1 PB_ENABLE_MALLOC=1 GDTCOR_VERSION=7.5.1 +GCC_PREPROCESSOR_DEFINITIONS = $(inherited) COCOAPODS=1 GDTCOR_VERSION=6.2.1 GCC_TREAT_WARNINGS_AS_ERRORS = YES -HEADER_SEARCH_PATHS = $(inherited) "${PODS_ROOT}/Headers/Private" "${PODS_ROOT}/Headers/Private/GoogleDataTransport" "${PODS_ROOT}/Headers/Public" "${PODS_ROOT}/Headers/Public/GoogleDataTransport" "${PODS_ROOT}/Headers/Public/nanopb" "${PODS_TARGET_SRCROOT}/" +HEADER_SEARCH_PATHS = $(inherited) "${PODS_ROOT}/Headers/Private" "${PODS_ROOT}/Headers/Private/GoogleDataTransport" "${PODS_ROOT}/Headers/Public" "${PODS_ROOT}/Headers/Public/GoogleDataTransport" "${PODS_TARGET_SRCROOT}/GoogleDataTransport/" PODS_BUILD_DIR = ${BUILD_DIR} PODS_CONFIGURATION_BUILD_DIR = ${PODS_BUILD_DIR}/$(CONFIGURATION)$(EFFECTIVE_PLATFORM_NAME) PODS_ROOT = ${SRCROOT} diff --git a/ios/Pods/Target Support Files/Pods-defaults-Rocket.Chat/Pods-defaults-Rocket.Chat-acknowledgements.markdown b/ios/Pods/Target Support Files/Pods-defaults-Rocket.Chat/Pods-defaults-Rocket.Chat-acknowledgements.markdown index 208bf69857..e6fbf305d0 100644 --- a/ios/Pods/Target Support Files/Pods-defaults-Rocket.Chat/Pods-defaults-Rocket.Chat-acknowledgements.markdown +++ b/ios/Pods/Target Support Files/Pods-defaults-Rocket.Chat/Pods-defaults-Rocket.Chat-acknowledgements.markdown @@ -255,7 +255,7 @@ OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. same "printed page" as the copyright notice for easier identification within third-party archives. - Copyright 2020 Firebase, Inc. + 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. @@ -465,7 +465,7 @@ Copyright 2020 Google same "printed page" as the copyright notice for easier identification within third-party archives. - Copyright 2020 Firebase, Inc. + 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. @@ -671,7 +671,7 @@ Copyright 2020 Google same "printed page" as the copyright notice for easier identification within third-party archives. - Copyright 2020 Firebase, Inc. + 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. @@ -1111,7 +1111,7 @@ WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. same "printed page" as the copyright notice for easier identification within third-party archives. - Copyright 2020 Firebase, Inc. + 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. @@ -1900,7 +1900,213 @@ Copyright 2020 Google same "printed page" as the copyright notice for easier identification within third-party archives. - Copyright 2020 Firebase, Inc. + 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. + + +## GoogleDataTransportCCTSupport + + + 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. @@ -2556,10 +2762,6 @@ freely, subject to the following restrictions: 3. This notice may not be removed or altered from any source distribution. -Open Source Software Licensed Under the BSD 3-Clause License: ----------------------------------------------------------------------------------------- -1. pybind11 v2.5.0 -Copyright (c) 2016 Wenzel Jakob <wenzel.jakob@epfl.ch>, All rights reserved. Terms of the BSD 3-Clause License: -------------------------------------------------------------------- @@ -3623,7 +3825,7 @@ SOFTWARE. ## SDWebImage -Copyright (c) 2009-2020 Olivier Poitrey rs@dailymotion.com +Copyright (c) 2009-2018 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 diff --git a/ios/Pods/Target Support Files/Pods-defaults-Rocket.Chat/Pods-defaults-Rocket.Chat-acknowledgements.plist b/ios/Pods/Target Support Files/Pods-defaults-Rocket.Chat/Pods-defaults-Rocket.Chat-acknowledgements.plist index 8aadeed0ec..66ae992be2 100644 --- a/ios/Pods/Target Support Files/Pods-defaults-Rocket.Chat/Pods-defaults-Rocket.Chat-acknowledgements.plist +++ b/ios/Pods/Target Support Files/Pods-defaults-Rocket.Chat/Pods-defaults-Rocket.Chat-acknowledgements.plist @@ -284,7 +284,7 @@ OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. same "printed page" as the copyright notice for easier identification within third-party archives. - Copyright 2020 Firebase, Inc. + 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. @@ -506,7 +506,7 @@ OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. same "printed page" as the copyright notice for easier identification within third-party archives. - Copyright 2020 Firebase, Inc. + 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. @@ -718,7 +718,7 @@ OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. same "printed page" as the copyright notice for easier identification within third-party archives. - Copyright 2020 Firebase, Inc. + 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. @@ -1170,7 +1170,7 @@ WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. same "printed page" as the copyright notice for easier identification within third-party archives. - Copyright 2020 Firebase, Inc. + 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. @@ -2013,7 +2013,7 @@ SOFTWARE. same "printed page" as the copyright notice for easier identification within third-party archives. - Copyright 2020 Firebase, Inc. + 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. @@ -2227,6 +2227,218 @@ SOFTWARE. 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. +</string> + <key>License</key> + <string>Apache</string> + <key>Title</key> + <string>GoogleDataTransportCCTSupport</string> + <key>Type</key> + <string>PSGroupSpecifier</string> + </dict> + <dict> + <key>FooterText</key> + <string> + 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 @@ -2693,10 +2905,6 @@ freely, subject to the following restrictions: 3. This notice may not be removed or altered from any source distribution. -Open Source Software Licensed Under the BSD 3-Clause License: ----------------------------------------------------------------------------------------- -1. pybind11 v2.5.0 -Copyright (c) 2016 Wenzel Jakob <wenzel.jakob@epfl.ch>, All rights reserved. Terms of the BSD 3-Clause License: -------------------------------------------------------------------- @@ -3898,7 +4106,7 @@ SOFTWARE.</string> </dict> <dict> <key>FooterText</key> - <string>Copyright (c) 2009-2020 Olivier Poitrey rs@dailymotion.com + <string>Copyright (c) 2009-2018 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 diff --git a/ios/Pods/Target Support Files/Pods-defaults-RocketChatRN/Pods-defaults-RocketChatRN-acknowledgements.markdown b/ios/Pods/Target Support Files/Pods-defaults-RocketChatRN/Pods-defaults-RocketChatRN-acknowledgements.markdown index 208bf69857..e6fbf305d0 100644 --- a/ios/Pods/Target Support Files/Pods-defaults-RocketChatRN/Pods-defaults-RocketChatRN-acknowledgements.markdown +++ b/ios/Pods/Target Support Files/Pods-defaults-RocketChatRN/Pods-defaults-RocketChatRN-acknowledgements.markdown @@ -255,7 +255,7 @@ OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. same "printed page" as the copyright notice for easier identification within third-party archives. - Copyright 2020 Firebase, Inc. + 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. @@ -465,7 +465,7 @@ Copyright 2020 Google same "printed page" as the copyright notice for easier identification within third-party archives. - Copyright 2020 Firebase, Inc. + 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. @@ -671,7 +671,7 @@ Copyright 2020 Google same "printed page" as the copyright notice for easier identification within third-party archives. - Copyright 2020 Firebase, Inc. + 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. @@ -1111,7 +1111,7 @@ WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. same "printed page" as the copyright notice for easier identification within third-party archives. - Copyright 2020 Firebase, Inc. + 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. @@ -1900,7 +1900,213 @@ Copyright 2020 Google same "printed page" as the copyright notice for easier identification within third-party archives. - Copyright 2020 Firebase, Inc. + 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. + + +## GoogleDataTransportCCTSupport + + + 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. @@ -2556,10 +2762,6 @@ freely, subject to the following restrictions: 3. This notice may not be removed or altered from any source distribution. -Open Source Software Licensed Under the BSD 3-Clause License: ----------------------------------------------------------------------------------------- -1. pybind11 v2.5.0 -Copyright (c) 2016 Wenzel Jakob <wenzel.jakob@epfl.ch>, All rights reserved. Terms of the BSD 3-Clause License: -------------------------------------------------------------------- @@ -3623,7 +3825,7 @@ SOFTWARE. ## SDWebImage -Copyright (c) 2009-2020 Olivier Poitrey rs@dailymotion.com +Copyright (c) 2009-2018 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 diff --git a/ios/Pods/Target Support Files/Pods-defaults-RocketChatRN/Pods-defaults-RocketChatRN-acknowledgements.plist b/ios/Pods/Target Support Files/Pods-defaults-RocketChatRN/Pods-defaults-RocketChatRN-acknowledgements.plist index 8aadeed0ec..66ae992be2 100644 --- a/ios/Pods/Target Support Files/Pods-defaults-RocketChatRN/Pods-defaults-RocketChatRN-acknowledgements.plist +++ b/ios/Pods/Target Support Files/Pods-defaults-RocketChatRN/Pods-defaults-RocketChatRN-acknowledgements.plist @@ -284,7 +284,7 @@ OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. same "printed page" as the copyright notice for easier identification within third-party archives. - Copyright 2020 Firebase, Inc. + 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. @@ -506,7 +506,7 @@ OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. same "printed page" as the copyright notice for easier identification within third-party archives. - Copyright 2020 Firebase, Inc. + 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. @@ -718,7 +718,7 @@ OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. same "printed page" as the copyright notice for easier identification within third-party archives. - Copyright 2020 Firebase, Inc. + 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. @@ -1170,7 +1170,7 @@ WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. same "printed page" as the copyright notice for easier identification within third-party archives. - Copyright 2020 Firebase, Inc. + 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. @@ -2013,7 +2013,7 @@ SOFTWARE. same "printed page" as the copyright notice for easier identification within third-party archives. - Copyright 2020 Firebase, Inc. + 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. @@ -2227,6 +2227,218 @@ SOFTWARE. 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. +</string> + <key>License</key> + <string>Apache</string> + <key>Title</key> + <string>GoogleDataTransportCCTSupport</string> + <key>Type</key> + <string>PSGroupSpecifier</string> + </dict> + <dict> + <key>FooterText</key> + <string> + 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 @@ -2693,10 +2905,6 @@ freely, subject to the following restrictions: 3. This notice may not be removed or altered from any source distribution. -Open Source Software Licensed Under the BSD 3-Clause License: ----------------------------------------------------------------------------------------- -1. pybind11 v2.5.0 -Copyright (c) 2016 Wenzel Jakob <wenzel.jakob@epfl.ch>, All rights reserved. Terms of the BSD 3-Clause License: -------------------------------------------------------------------- @@ -3898,7 +4106,7 @@ SOFTWARE.</string> </dict> <dict> <key>FooterText</key> - <string>Copyright (c) 2009-2020 Olivier Poitrey rs@dailymotion.com + <string>Copyright (c) 2009-2018 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 diff --git a/ios/Pods/Target Support Files/RNFBAnalytics/RNFBAnalytics.debug.xcconfig b/ios/Pods/Target Support Files/RNFBAnalytics/RNFBAnalytics.debug.xcconfig index 9bcecbae5c..4537165321 100644 --- a/ios/Pods/Target Support Files/RNFBAnalytics/RNFBAnalytics.debug.xcconfig +++ b/ios/Pods/Target Support Files/RNFBAnalytics/RNFBAnalytics.debug.xcconfig @@ -3,7 +3,7 @@ CLANG_WARN_QUOTED_INCLUDE_IN_FRAMEWORK_HEADER = NO CONFIGURATION_BUILD_DIR = ${PODS_CONFIGURATION_BUILD_DIR}/RNFBAnalytics FRAMEWORK_SEARCH_PATHS = $(inherited) "${PODS_ROOT}/FirebaseAnalytics/Frameworks" "${PODS_ROOT}/GoogleAppMeasurement/Frameworks" "${PODS_ROOT}/hermes-engine/destroot/Library/Frameworks/iphoneos" GCC_PREPROCESSOR_DEFINITIONS = $(inherited) COCOAPODS=1 -HEADER_SEARCH_PATHS = $(inherited) "${PODS_ROOT}/Headers/Private" "${PODS_ROOT}/Headers/Private/RNFBAnalytics" "${PODS_ROOT}/Headers/Public" "${PODS_ROOT}/Headers/Public/DoubleConversion" "${PODS_ROOT}/Headers/Public/Firebase" "${PODS_ROOT}/Headers/Public/FirebaseCore" "${PODS_ROOT}/Headers/Public/FirebaseCoreDiagnostics" "${PODS_ROOT}/Headers/Public/FirebaseCrashlytics" "${PODS_ROOT}/Headers/Public/FirebaseInstallations" "${PODS_ROOT}/Headers/Public/GoogleDataTransport" "${PODS_ROOT}/Headers/Public/GoogleUtilities" "${PODS_ROOT}/Headers/Public/PromisesObjC" "${PODS_ROOT}/Headers/Public/RCT-Folly" "${PODS_ROOT}/Headers/Public/RNFBAnalytics" "${PODS_ROOT}/Headers/Public/RNFBApp" "${PODS_ROOT}/Headers/Public/React-Core" "${PODS_ROOT}/Headers/Public/React-callinvoker" "${PODS_ROOT}/Headers/Public/React-cxxreact" "${PODS_ROOT}/Headers/Public/React-jsi" "${PODS_ROOT}/Headers/Public/React-jsiexecutor" "${PODS_ROOT}/Headers/Public/React-jsinspector" "${PODS_ROOT}/Headers/Public/React-perflogger" "${PODS_ROOT}/Headers/Public/React-runtimeexecutor" "${PODS_ROOT}/Headers/Public/Yoga" "${PODS_ROOT}/Headers/Public/glog" "${PODS_ROOT}/Headers/Public/hermes-engine" "${PODS_ROOT}/Headers/Public/libevent" "${PODS_ROOT}/Headers/Public/nanopb" +HEADER_SEARCH_PATHS = $(inherited) "${PODS_ROOT}/Headers/Private" "${PODS_ROOT}/Headers/Private/RNFBAnalytics" "${PODS_ROOT}/Headers/Public" "${PODS_ROOT}/Headers/Public/DoubleConversion" "${PODS_ROOT}/Headers/Public/FBLazyVector" "${PODS_ROOT}/Headers/Public/FBReactNativeSpec" "${PODS_ROOT}/Headers/Public/Firebase" "${PODS_ROOT}/Headers/Public/FirebaseCore" "${PODS_ROOT}/Headers/Public/FirebaseCoreDiagnostics" "${PODS_ROOT}/Headers/Public/FirebaseCrashlytics" "${PODS_ROOT}/Headers/Public/FirebaseInstallations" "${PODS_ROOT}/Headers/Public/GoogleDataTransport" "${PODS_ROOT}/Headers/Public/GoogleDataTransportCCTSupport" "${PODS_ROOT}/Headers/Public/GoogleUtilities" "${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/RNFBAnalytics" "${PODS_ROOT}/Headers/Public/RNFBApp" "${PODS_ROOT}/Headers/Public/React-Core" "${PODS_ROOT}/Headers/Public/React-RCTBlob" "${PODS_ROOT}/Headers/Public/React-RCTText" "${PODS_ROOT}/Headers/Public/React-callinvoker" "${PODS_ROOT}/Headers/Public/React-cxxreact" "${PODS_ROOT}/Headers/Public/React-jsi" "${PODS_ROOT}/Headers/Public/React-jsiexecutor" "${PODS_ROOT}/Headers/Public/React-jsinspector" "${PODS_ROOT}/Headers/Public/React-perflogger" "${PODS_ROOT}/Headers/Public/React-runtimeexecutor" "${PODS_ROOT}/Headers/Public/ReactCommon" "${PODS_ROOT}/Headers/Public/Yoga" "${PODS_ROOT}/Headers/Public/glog" "${PODS_ROOT}/Headers/Public/hermes-engine" "${PODS_ROOT}/Headers/Public/libevent" "${PODS_ROOT}/Headers/Public/nanopb" OTHER_CFLAGS = $(inherited) -fmodule-map-file="${PODS_ROOT}/Headers/Public/React/React-Core.modulemap" -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/Pods/Target Support Files/RNFBAnalytics/RNFBAnalytics.release.xcconfig b/ios/Pods/Target Support Files/RNFBAnalytics/RNFBAnalytics.release.xcconfig index 9bcecbae5c..4537165321 100644 --- a/ios/Pods/Target Support Files/RNFBAnalytics/RNFBAnalytics.release.xcconfig +++ b/ios/Pods/Target Support Files/RNFBAnalytics/RNFBAnalytics.release.xcconfig @@ -3,7 +3,7 @@ CLANG_WARN_QUOTED_INCLUDE_IN_FRAMEWORK_HEADER = NO CONFIGURATION_BUILD_DIR = ${PODS_CONFIGURATION_BUILD_DIR}/RNFBAnalytics FRAMEWORK_SEARCH_PATHS = $(inherited) "${PODS_ROOT}/FirebaseAnalytics/Frameworks" "${PODS_ROOT}/GoogleAppMeasurement/Frameworks" "${PODS_ROOT}/hermes-engine/destroot/Library/Frameworks/iphoneos" GCC_PREPROCESSOR_DEFINITIONS = $(inherited) COCOAPODS=1 -HEADER_SEARCH_PATHS = $(inherited) "${PODS_ROOT}/Headers/Private" "${PODS_ROOT}/Headers/Private/RNFBAnalytics" "${PODS_ROOT}/Headers/Public" "${PODS_ROOT}/Headers/Public/DoubleConversion" "${PODS_ROOT}/Headers/Public/Firebase" "${PODS_ROOT}/Headers/Public/FirebaseCore" "${PODS_ROOT}/Headers/Public/FirebaseCoreDiagnostics" "${PODS_ROOT}/Headers/Public/FirebaseCrashlytics" "${PODS_ROOT}/Headers/Public/FirebaseInstallations" "${PODS_ROOT}/Headers/Public/GoogleDataTransport" "${PODS_ROOT}/Headers/Public/GoogleUtilities" "${PODS_ROOT}/Headers/Public/PromisesObjC" "${PODS_ROOT}/Headers/Public/RCT-Folly" "${PODS_ROOT}/Headers/Public/RNFBAnalytics" "${PODS_ROOT}/Headers/Public/RNFBApp" "${PODS_ROOT}/Headers/Public/React-Core" "${PODS_ROOT}/Headers/Public/React-callinvoker" "${PODS_ROOT}/Headers/Public/React-cxxreact" "${PODS_ROOT}/Headers/Public/React-jsi" "${PODS_ROOT}/Headers/Public/React-jsiexecutor" "${PODS_ROOT}/Headers/Public/React-jsinspector" "${PODS_ROOT}/Headers/Public/React-perflogger" "${PODS_ROOT}/Headers/Public/React-runtimeexecutor" "${PODS_ROOT}/Headers/Public/Yoga" "${PODS_ROOT}/Headers/Public/glog" "${PODS_ROOT}/Headers/Public/hermes-engine" "${PODS_ROOT}/Headers/Public/libevent" "${PODS_ROOT}/Headers/Public/nanopb" +HEADER_SEARCH_PATHS = $(inherited) "${PODS_ROOT}/Headers/Private" "${PODS_ROOT}/Headers/Private/RNFBAnalytics" "${PODS_ROOT}/Headers/Public" "${PODS_ROOT}/Headers/Public/DoubleConversion" "${PODS_ROOT}/Headers/Public/FBLazyVector" "${PODS_ROOT}/Headers/Public/FBReactNativeSpec" "${PODS_ROOT}/Headers/Public/Firebase" "${PODS_ROOT}/Headers/Public/FirebaseCore" "${PODS_ROOT}/Headers/Public/FirebaseCoreDiagnostics" "${PODS_ROOT}/Headers/Public/FirebaseCrashlytics" "${PODS_ROOT}/Headers/Public/FirebaseInstallations" "${PODS_ROOT}/Headers/Public/GoogleDataTransport" "${PODS_ROOT}/Headers/Public/GoogleDataTransportCCTSupport" "${PODS_ROOT}/Headers/Public/GoogleUtilities" "${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/RNFBAnalytics" "${PODS_ROOT}/Headers/Public/RNFBApp" "${PODS_ROOT}/Headers/Public/React-Core" "${PODS_ROOT}/Headers/Public/React-RCTBlob" "${PODS_ROOT}/Headers/Public/React-RCTText" "${PODS_ROOT}/Headers/Public/React-callinvoker" "${PODS_ROOT}/Headers/Public/React-cxxreact" "${PODS_ROOT}/Headers/Public/React-jsi" "${PODS_ROOT}/Headers/Public/React-jsiexecutor" "${PODS_ROOT}/Headers/Public/React-jsinspector" "${PODS_ROOT}/Headers/Public/React-perflogger" "${PODS_ROOT}/Headers/Public/React-runtimeexecutor" "${PODS_ROOT}/Headers/Public/ReactCommon" "${PODS_ROOT}/Headers/Public/Yoga" "${PODS_ROOT}/Headers/Public/glog" "${PODS_ROOT}/Headers/Public/hermes-engine" "${PODS_ROOT}/Headers/Public/libevent" "${PODS_ROOT}/Headers/Public/nanopb" OTHER_CFLAGS = $(inherited) -fmodule-map-file="${PODS_ROOT}/Headers/Public/React/React-Core.modulemap" -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/Pods/Target Support Files/RNFBApp/RNFBApp.debug.xcconfig b/ios/Pods/Target Support Files/RNFBApp/RNFBApp.debug.xcconfig index fd343e99b9..0062c39bf0 100644 --- a/ios/Pods/Target Support Files/RNFBApp/RNFBApp.debug.xcconfig +++ b/ios/Pods/Target Support Files/RNFBApp/RNFBApp.debug.xcconfig @@ -3,7 +3,7 @@ CLANG_WARN_QUOTED_INCLUDE_IN_FRAMEWORK_HEADER = NO CONFIGURATION_BUILD_DIR = ${PODS_CONFIGURATION_BUILD_DIR}/RNFBApp FRAMEWORK_SEARCH_PATHS = $(inherited) "${PODS_ROOT}/FirebaseAnalytics/Frameworks" "${PODS_ROOT}/GoogleAppMeasurement/Frameworks" "${PODS_ROOT}/hermes-engine/destroot/Library/Frameworks/iphoneos" GCC_PREPROCESSOR_DEFINITIONS = $(inherited) COCOAPODS=1 -HEADER_SEARCH_PATHS = $(inherited) "${PODS_ROOT}/Headers/Private" "${PODS_ROOT}/Headers/Private/RNFBApp" "${PODS_ROOT}/Headers/Public" "${PODS_ROOT}/Headers/Public/DoubleConversion" "${PODS_ROOT}/Headers/Public/Firebase" "${PODS_ROOT}/Headers/Public/FirebaseCore" "${PODS_ROOT}/Headers/Public/FirebaseCoreDiagnostics" "${PODS_ROOT}/Headers/Public/FirebaseCrashlytics" "${PODS_ROOT}/Headers/Public/FirebaseInstallations" "${PODS_ROOT}/Headers/Public/GoogleDataTransport" "${PODS_ROOT}/Headers/Public/GoogleUtilities" "${PODS_ROOT}/Headers/Public/PromisesObjC" "${PODS_ROOT}/Headers/Public/RCT-Folly" "${PODS_ROOT}/Headers/Public/RNFBApp" "${PODS_ROOT}/Headers/Public/React-Core" "${PODS_ROOT}/Headers/Public/React-callinvoker" "${PODS_ROOT}/Headers/Public/React-cxxreact" "${PODS_ROOT}/Headers/Public/React-jsi" "${PODS_ROOT}/Headers/Public/React-jsiexecutor" "${PODS_ROOT}/Headers/Public/React-jsinspector" "${PODS_ROOT}/Headers/Public/React-perflogger" "${PODS_ROOT}/Headers/Public/React-runtimeexecutor" "${PODS_ROOT}/Headers/Public/Yoga" "${PODS_ROOT}/Headers/Public/glog" "${PODS_ROOT}/Headers/Public/hermes-engine" "${PODS_ROOT}/Headers/Public/libevent" "${PODS_ROOT}/Headers/Public/nanopb" +HEADER_SEARCH_PATHS = $(inherited) "${PODS_ROOT}/Headers/Private" "${PODS_ROOT}/Headers/Private/RNFBApp" "${PODS_ROOT}/Headers/Public" "${PODS_ROOT}/Headers/Public/DoubleConversion" "${PODS_ROOT}/Headers/Public/FBLazyVector" "${PODS_ROOT}/Headers/Public/FBReactNativeSpec" "${PODS_ROOT}/Headers/Public/Firebase" "${PODS_ROOT}/Headers/Public/FirebaseCore" "${PODS_ROOT}/Headers/Public/FirebaseCoreDiagnostics" "${PODS_ROOT}/Headers/Public/FirebaseCrashlytics" "${PODS_ROOT}/Headers/Public/FirebaseInstallations" "${PODS_ROOT}/Headers/Public/GoogleDataTransport" "${PODS_ROOT}/Headers/Public/GoogleDataTransportCCTSupport" "${PODS_ROOT}/Headers/Public/GoogleUtilities" "${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/RNFBApp" "${PODS_ROOT}/Headers/Public/React-Core" "${PODS_ROOT}/Headers/Public/React-RCTBlob" "${PODS_ROOT}/Headers/Public/React-RCTText" "${PODS_ROOT}/Headers/Public/React-callinvoker" "${PODS_ROOT}/Headers/Public/React-cxxreact" "${PODS_ROOT}/Headers/Public/React-jsi" "${PODS_ROOT}/Headers/Public/React-jsiexecutor" "${PODS_ROOT}/Headers/Public/React-jsinspector" "${PODS_ROOT}/Headers/Public/React-perflogger" "${PODS_ROOT}/Headers/Public/React-runtimeexecutor" "${PODS_ROOT}/Headers/Public/ReactCommon" "${PODS_ROOT}/Headers/Public/Yoga" "${PODS_ROOT}/Headers/Public/glog" "${PODS_ROOT}/Headers/Public/hermes-engine" "${PODS_ROOT}/Headers/Public/libevent" "${PODS_ROOT}/Headers/Public/nanopb" OTHER_CFLAGS = $(inherited) -fmodule-map-file="${PODS_ROOT}/Headers/Public/React/React-Core.modulemap" -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/Pods/Target Support Files/RNFBApp/RNFBApp.release.xcconfig b/ios/Pods/Target Support Files/RNFBApp/RNFBApp.release.xcconfig index fd343e99b9..0062c39bf0 100644 --- a/ios/Pods/Target Support Files/RNFBApp/RNFBApp.release.xcconfig +++ b/ios/Pods/Target Support Files/RNFBApp/RNFBApp.release.xcconfig @@ -3,7 +3,7 @@ CLANG_WARN_QUOTED_INCLUDE_IN_FRAMEWORK_HEADER = NO CONFIGURATION_BUILD_DIR = ${PODS_CONFIGURATION_BUILD_DIR}/RNFBApp FRAMEWORK_SEARCH_PATHS = $(inherited) "${PODS_ROOT}/FirebaseAnalytics/Frameworks" "${PODS_ROOT}/GoogleAppMeasurement/Frameworks" "${PODS_ROOT}/hermes-engine/destroot/Library/Frameworks/iphoneos" GCC_PREPROCESSOR_DEFINITIONS = $(inherited) COCOAPODS=1 -HEADER_SEARCH_PATHS = $(inherited) "${PODS_ROOT}/Headers/Private" "${PODS_ROOT}/Headers/Private/RNFBApp" "${PODS_ROOT}/Headers/Public" "${PODS_ROOT}/Headers/Public/DoubleConversion" "${PODS_ROOT}/Headers/Public/Firebase" "${PODS_ROOT}/Headers/Public/FirebaseCore" "${PODS_ROOT}/Headers/Public/FirebaseCoreDiagnostics" "${PODS_ROOT}/Headers/Public/FirebaseCrashlytics" "${PODS_ROOT}/Headers/Public/FirebaseInstallations" "${PODS_ROOT}/Headers/Public/GoogleDataTransport" "${PODS_ROOT}/Headers/Public/GoogleUtilities" "${PODS_ROOT}/Headers/Public/PromisesObjC" "${PODS_ROOT}/Headers/Public/RCT-Folly" "${PODS_ROOT}/Headers/Public/RNFBApp" "${PODS_ROOT}/Headers/Public/React-Core" "${PODS_ROOT}/Headers/Public/React-callinvoker" "${PODS_ROOT}/Headers/Public/React-cxxreact" "${PODS_ROOT}/Headers/Public/React-jsi" "${PODS_ROOT}/Headers/Public/React-jsiexecutor" "${PODS_ROOT}/Headers/Public/React-jsinspector" "${PODS_ROOT}/Headers/Public/React-perflogger" "${PODS_ROOT}/Headers/Public/React-runtimeexecutor" "${PODS_ROOT}/Headers/Public/Yoga" "${PODS_ROOT}/Headers/Public/glog" "${PODS_ROOT}/Headers/Public/hermes-engine" "${PODS_ROOT}/Headers/Public/libevent" "${PODS_ROOT}/Headers/Public/nanopb" +HEADER_SEARCH_PATHS = $(inherited) "${PODS_ROOT}/Headers/Private" "${PODS_ROOT}/Headers/Private/RNFBApp" "${PODS_ROOT}/Headers/Public" "${PODS_ROOT}/Headers/Public/DoubleConversion" "${PODS_ROOT}/Headers/Public/FBLazyVector" "${PODS_ROOT}/Headers/Public/FBReactNativeSpec" "${PODS_ROOT}/Headers/Public/Firebase" "${PODS_ROOT}/Headers/Public/FirebaseCore" "${PODS_ROOT}/Headers/Public/FirebaseCoreDiagnostics" "${PODS_ROOT}/Headers/Public/FirebaseCrashlytics" "${PODS_ROOT}/Headers/Public/FirebaseInstallations" "${PODS_ROOT}/Headers/Public/GoogleDataTransport" "${PODS_ROOT}/Headers/Public/GoogleDataTransportCCTSupport" "${PODS_ROOT}/Headers/Public/GoogleUtilities" "${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/RNFBApp" "${PODS_ROOT}/Headers/Public/React-Core" "${PODS_ROOT}/Headers/Public/React-RCTBlob" "${PODS_ROOT}/Headers/Public/React-RCTText" "${PODS_ROOT}/Headers/Public/React-callinvoker" "${PODS_ROOT}/Headers/Public/React-cxxreact" "${PODS_ROOT}/Headers/Public/React-jsi" "${PODS_ROOT}/Headers/Public/React-jsiexecutor" "${PODS_ROOT}/Headers/Public/React-jsinspector" "${PODS_ROOT}/Headers/Public/React-perflogger" "${PODS_ROOT}/Headers/Public/React-runtimeexecutor" "${PODS_ROOT}/Headers/Public/ReactCommon" "${PODS_ROOT}/Headers/Public/Yoga" "${PODS_ROOT}/Headers/Public/glog" "${PODS_ROOT}/Headers/Public/hermes-engine" "${PODS_ROOT}/Headers/Public/libevent" "${PODS_ROOT}/Headers/Public/nanopb" OTHER_CFLAGS = $(inherited) -fmodule-map-file="${PODS_ROOT}/Headers/Public/React/React-Core.modulemap" -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/Pods/Target Support Files/RNFBCrashlytics/RNFBCrashlytics.debug.xcconfig b/ios/Pods/Target Support Files/RNFBCrashlytics/RNFBCrashlytics.debug.xcconfig index d542a2c7ff..eacb3b5a5e 100644 --- a/ios/Pods/Target Support Files/RNFBCrashlytics/RNFBCrashlytics.debug.xcconfig +++ b/ios/Pods/Target Support Files/RNFBCrashlytics/RNFBCrashlytics.debug.xcconfig @@ -3,7 +3,7 @@ CLANG_WARN_QUOTED_INCLUDE_IN_FRAMEWORK_HEADER = NO CONFIGURATION_BUILD_DIR = ${PODS_CONFIGURATION_BUILD_DIR}/RNFBCrashlytics FRAMEWORK_SEARCH_PATHS = $(inherited) "${PODS_ROOT}/FirebaseAnalytics/Frameworks" "${PODS_ROOT}/GoogleAppMeasurement/Frameworks" "${PODS_ROOT}/hermes-engine/destroot/Library/Frameworks/iphoneos" GCC_PREPROCESSOR_DEFINITIONS = $(inherited) COCOAPODS=1 -HEADER_SEARCH_PATHS = $(inherited) "${PODS_ROOT}/Headers/Private" "${PODS_ROOT}/Headers/Private/RNFBCrashlytics" "${PODS_ROOT}/Headers/Public" "${PODS_ROOT}/Headers/Public/DoubleConversion" "${PODS_ROOT}/Headers/Public/Firebase" "${PODS_ROOT}/Headers/Public/FirebaseCore" "${PODS_ROOT}/Headers/Public/FirebaseCoreDiagnostics" "${PODS_ROOT}/Headers/Public/FirebaseCrashlytics" "${PODS_ROOT}/Headers/Public/FirebaseInstallations" "${PODS_ROOT}/Headers/Public/GoogleDataTransport" "${PODS_ROOT}/Headers/Public/GoogleUtilities" "${PODS_ROOT}/Headers/Public/PromisesObjC" "${PODS_ROOT}/Headers/Public/RCT-Folly" "${PODS_ROOT}/Headers/Public/RNFBApp" "${PODS_ROOT}/Headers/Public/RNFBCrashlytics" "${PODS_ROOT}/Headers/Public/React-Core" "${PODS_ROOT}/Headers/Public/React-callinvoker" "${PODS_ROOT}/Headers/Public/React-cxxreact" "${PODS_ROOT}/Headers/Public/React-jsi" "${PODS_ROOT}/Headers/Public/React-jsiexecutor" "${PODS_ROOT}/Headers/Public/React-jsinspector" "${PODS_ROOT}/Headers/Public/React-perflogger" "${PODS_ROOT}/Headers/Public/React-runtimeexecutor" "${PODS_ROOT}/Headers/Public/Yoga" "${PODS_ROOT}/Headers/Public/glog" "${PODS_ROOT}/Headers/Public/hermes-engine" "${PODS_ROOT}/Headers/Public/libevent" "${PODS_ROOT}/Headers/Public/nanopb" +HEADER_SEARCH_PATHS = $(inherited) "${PODS_ROOT}/Headers/Private" "${PODS_ROOT}/Headers/Private/RNFBCrashlytics" "${PODS_ROOT}/Headers/Public" "${PODS_ROOT}/Headers/Public/DoubleConversion" "${PODS_ROOT}/Headers/Public/FBLazyVector" "${PODS_ROOT}/Headers/Public/FBReactNativeSpec" "${PODS_ROOT}/Headers/Public/Firebase" "${PODS_ROOT}/Headers/Public/FirebaseCore" "${PODS_ROOT}/Headers/Public/FirebaseCoreDiagnostics" "${PODS_ROOT}/Headers/Public/FirebaseCrashlytics" "${PODS_ROOT}/Headers/Public/FirebaseInstallations" "${PODS_ROOT}/Headers/Public/GoogleDataTransport" "${PODS_ROOT}/Headers/Public/GoogleDataTransportCCTSupport" "${PODS_ROOT}/Headers/Public/GoogleUtilities" "${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/RNFBApp" "${PODS_ROOT}/Headers/Public/RNFBCrashlytics" "${PODS_ROOT}/Headers/Public/React-Core" "${PODS_ROOT}/Headers/Public/React-RCTBlob" "${PODS_ROOT}/Headers/Public/React-RCTText" "${PODS_ROOT}/Headers/Public/React-callinvoker" "${PODS_ROOT}/Headers/Public/React-cxxreact" "${PODS_ROOT}/Headers/Public/React-jsi" "${PODS_ROOT}/Headers/Public/React-jsiexecutor" "${PODS_ROOT}/Headers/Public/React-jsinspector" "${PODS_ROOT}/Headers/Public/React-perflogger" "${PODS_ROOT}/Headers/Public/React-runtimeexecutor" "${PODS_ROOT}/Headers/Public/ReactCommon" "${PODS_ROOT}/Headers/Public/Yoga" "${PODS_ROOT}/Headers/Public/glog" "${PODS_ROOT}/Headers/Public/hermes-engine" "${PODS_ROOT}/Headers/Public/libevent" "${PODS_ROOT}/Headers/Public/nanopb" OTHER_CFLAGS = $(inherited) -fmodule-map-file="${PODS_ROOT}/Headers/Public/React/React-Core.modulemap" -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/Pods/Target Support Files/RNFBCrashlytics/RNFBCrashlytics.release.xcconfig b/ios/Pods/Target Support Files/RNFBCrashlytics/RNFBCrashlytics.release.xcconfig index d542a2c7ff..eacb3b5a5e 100644 --- a/ios/Pods/Target Support Files/RNFBCrashlytics/RNFBCrashlytics.release.xcconfig +++ b/ios/Pods/Target Support Files/RNFBCrashlytics/RNFBCrashlytics.release.xcconfig @@ -3,7 +3,7 @@ CLANG_WARN_QUOTED_INCLUDE_IN_FRAMEWORK_HEADER = NO CONFIGURATION_BUILD_DIR = ${PODS_CONFIGURATION_BUILD_DIR}/RNFBCrashlytics FRAMEWORK_SEARCH_PATHS = $(inherited) "${PODS_ROOT}/FirebaseAnalytics/Frameworks" "${PODS_ROOT}/GoogleAppMeasurement/Frameworks" "${PODS_ROOT}/hermes-engine/destroot/Library/Frameworks/iphoneos" GCC_PREPROCESSOR_DEFINITIONS = $(inherited) COCOAPODS=1 -HEADER_SEARCH_PATHS = $(inherited) "${PODS_ROOT}/Headers/Private" "${PODS_ROOT}/Headers/Private/RNFBCrashlytics" "${PODS_ROOT}/Headers/Public" "${PODS_ROOT}/Headers/Public/DoubleConversion" "${PODS_ROOT}/Headers/Public/Firebase" "${PODS_ROOT}/Headers/Public/FirebaseCore" "${PODS_ROOT}/Headers/Public/FirebaseCoreDiagnostics" "${PODS_ROOT}/Headers/Public/FirebaseCrashlytics" "${PODS_ROOT}/Headers/Public/FirebaseInstallations" "${PODS_ROOT}/Headers/Public/GoogleDataTransport" "${PODS_ROOT}/Headers/Public/GoogleUtilities" "${PODS_ROOT}/Headers/Public/PromisesObjC" "${PODS_ROOT}/Headers/Public/RCT-Folly" "${PODS_ROOT}/Headers/Public/RNFBApp" "${PODS_ROOT}/Headers/Public/RNFBCrashlytics" "${PODS_ROOT}/Headers/Public/React-Core" "${PODS_ROOT}/Headers/Public/React-callinvoker" "${PODS_ROOT}/Headers/Public/React-cxxreact" "${PODS_ROOT}/Headers/Public/React-jsi" "${PODS_ROOT}/Headers/Public/React-jsiexecutor" "${PODS_ROOT}/Headers/Public/React-jsinspector" "${PODS_ROOT}/Headers/Public/React-perflogger" "${PODS_ROOT}/Headers/Public/React-runtimeexecutor" "${PODS_ROOT}/Headers/Public/Yoga" "${PODS_ROOT}/Headers/Public/glog" "${PODS_ROOT}/Headers/Public/hermes-engine" "${PODS_ROOT}/Headers/Public/libevent" "${PODS_ROOT}/Headers/Public/nanopb" +HEADER_SEARCH_PATHS = $(inherited) "${PODS_ROOT}/Headers/Private" "${PODS_ROOT}/Headers/Private/RNFBCrashlytics" "${PODS_ROOT}/Headers/Public" "${PODS_ROOT}/Headers/Public/DoubleConversion" "${PODS_ROOT}/Headers/Public/FBLazyVector" "${PODS_ROOT}/Headers/Public/FBReactNativeSpec" "${PODS_ROOT}/Headers/Public/Firebase" "${PODS_ROOT}/Headers/Public/FirebaseCore" "${PODS_ROOT}/Headers/Public/FirebaseCoreDiagnostics" "${PODS_ROOT}/Headers/Public/FirebaseCrashlytics" "${PODS_ROOT}/Headers/Public/FirebaseInstallations" "${PODS_ROOT}/Headers/Public/GoogleDataTransport" "${PODS_ROOT}/Headers/Public/GoogleDataTransportCCTSupport" "${PODS_ROOT}/Headers/Public/GoogleUtilities" "${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/RNFBApp" "${PODS_ROOT}/Headers/Public/RNFBCrashlytics" "${PODS_ROOT}/Headers/Public/React-Core" "${PODS_ROOT}/Headers/Public/React-RCTBlob" "${PODS_ROOT}/Headers/Public/React-RCTText" "${PODS_ROOT}/Headers/Public/React-callinvoker" "${PODS_ROOT}/Headers/Public/React-cxxreact" "${PODS_ROOT}/Headers/Public/React-jsi" "${PODS_ROOT}/Headers/Public/React-jsiexecutor" "${PODS_ROOT}/Headers/Public/React-jsinspector" "${PODS_ROOT}/Headers/Public/React-perflogger" "${PODS_ROOT}/Headers/Public/React-runtimeexecutor" "${PODS_ROOT}/Headers/Public/ReactCommon" "${PODS_ROOT}/Headers/Public/Yoga" "${PODS_ROOT}/Headers/Public/glog" "${PODS_ROOT}/Headers/Public/hermes-engine" "${PODS_ROOT}/Headers/Public/libevent" "${PODS_ROOT}/Headers/Public/nanopb" OTHER_CFLAGS = $(inherited) -fmodule-map-file="${PODS_ROOT}/Headers/Public/React/React-Core.modulemap" -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) From 5e5a8863f69c73250b972764678e44c61818f254 Mon Sep 17 00:00:00 2001 From: Diego Mello <diegolmello@gmail.com> Date: Thu, 9 Sep 2021 09:16:14 -0300 Subject: [PATCH 79/90] Update jest snapshot --- .../__snapshots__/Storyshots.test.js.snap | 93 ++++++++----------- 1 file changed, 39 insertions(+), 54 deletions(-) diff --git a/__tests__/__snapshots__/Storyshots.test.js.snap b/__tests__/__snapshots__/Storyshots.test.js.snap index 1aef913526..f9426a6b1d 100644 --- a/__tests__/__snapshots__/Storyshots.test.js.snap +++ b/__tests__/__snapshots__/Storyshots.test.js.snap @@ -899,27 +899,22 @@ exports[`Storyshots BackgroundContainer black theme - loading 1`] = ` </View> <ActivityIndicator animating={true} - color="#999999" + color="#f9f9f9" hidesWhenStopped={true} size="small" style={ - Array [ - Object { - "backgroundColor": "transparent", - "fontFamily": "System", - "fontSize": 16, - "fontWeight": "400", - "left": 0, - "paddingHorizontal": 24, - "position": "absolute", - "right": 0, - "textAlign": "center", - "top": 60, - }, - Object { - "color": "#f9f9f9", - }, - ] + Object { + "backgroundColor": "transparent", + "fontFamily": "System", + "fontSize": 16, + "fontWeight": "400", + "left": 0, + "paddingHorizontal": 24, + "position": "absolute", + "right": 0, + "textAlign": "center", + "top": 60, + } } /> </View> @@ -1037,27 +1032,22 @@ exports[`Storyshots BackgroundContainer dark theme - loading 1`] = ` </View> <ActivityIndicator animating={true} - color="#999999" + color="#f9f9f9" hidesWhenStopped={true} size="small" style={ - Array [ - Object { - "backgroundColor": "transparent", - "fontFamily": "System", - "fontSize": 16, - "fontWeight": "400", - "left": 0, - "paddingHorizontal": 24, - "position": "absolute", - "right": 0, - "textAlign": "center", - "top": 60, - }, - Object { - "color": "#f9f9f9", - }, - ] + Object { + "backgroundColor": "transparent", + "fontFamily": "System", + "fontSize": 16, + "fontWeight": "400", + "left": 0, + "paddingHorizontal": 24, + "position": "absolute", + "right": 0, + "textAlign": "center", + "top": 60, + } } /> </View> @@ -1175,27 +1165,22 @@ exports[`Storyshots BackgroundContainer loading 1`] = ` </View> <ActivityIndicator animating={true} - color="#999999" + color="#6C727A" hidesWhenStopped={true} size="small" style={ - Array [ - Object { - "backgroundColor": "transparent", - "fontFamily": "System", - "fontSize": 16, - "fontWeight": "400", - "left": 0, - "paddingHorizontal": 24, - "position": "absolute", - "right": 0, - "textAlign": "center", - "top": 60, - }, - Object { - "color": "#6C727A", - }, - ] + Object { + "backgroundColor": "transparent", + "fontFamily": "System", + "fontSize": 16, + "fontWeight": "400", + "left": 0, + "paddingHorizontal": 24, + "position": "absolute", + "right": 0, + "textAlign": "center", + "top": 60, + } } /> </View> From ad14f0f16d45f7f133b93933856414ea6ade1976 Mon Sep 17 00:00:00 2001 From: Diego Mello <diegolmello@gmail.com> Date: Thu, 9 Sep 2021 13:24:13 -0300 Subject: [PATCH 80/90] Add tsc to lint script and fix issues --- app/containers/ActionSheet/Provider.tsx | 4 ++-- app/containers/EmojiPicker/index.tsx | 2 +- app/containers/MessageBox/index.tsx | 7 +++---- app/containers/Passcode/Base/index.tsx | 2 +- app/containers/SearchBox.tsx | 5 ++--- app/containers/TextInput.tsx | 1 + app/containers/UIKit/Image.tsx | 2 +- app/containers/UIKit/MultiSelect/Chips.tsx | 4 ++-- app/containers/UIKit/MultiSelect/index.tsx | 16 ++++++++-------- app/containers/UIKit/Select.tsx | 2 +- app/containers/message/Image.tsx | 4 ++-- app/containers/message/Message.tsx | 2 ++ app/externalModules.d.ts | 1 + app/presentation/TextInput.tsx | 4 ++-- package.json | 6 ++---- 15 files changed, 31 insertions(+), 31 deletions(-) diff --git a/app/containers/ActionSheet/Provider.tsx b/app/containers/ActionSheet/Provider.tsx index 2bd2ac31d3..8b75577d59 100644 --- a/app/containers/ActionSheet/Provider.tsx +++ b/app/containers/ActionSheet/Provider.tsx @@ -22,7 +22,7 @@ export const withActionSheet = (Component: React.FC) => <Consumer>{(contexts: any) => <Component {...props} {...contexts} ref={ref} />}</Consumer> )); -export const ActionSheetProvider = React.memo(({ children }: { children: JSX.Element }) => { +export const ActionSheetProvider = React.memo(({ children }: { children: JSX.Element | JSX.Element[] }) => { const ref: ForwardedRef<any> = useRef(); const { theme }: any = useTheme(); @@ -38,7 +38,7 @@ export const ActionSheetProvider = React.memo(({ children }: { children: JSX.Ele return ( <Provider value={getContext()}> <ActionSheet ref={ref} theme={theme}> - {children} + <>{children}</> </ActionSheet> </Provider> ); diff --git a/app/containers/EmojiPicker/index.tsx b/app/containers/EmojiPicker/index.tsx index d9ef132949..64f5dbfe3a 100644 --- a/app/containers/EmojiPicker/index.tsx +++ b/app/containers/EmojiPicker/index.tsx @@ -163,7 +163,7 @@ class EmojiPicker extends Component<IEmojiPickerProps, IEmojiPickerState> { return ( <EmojiCategory emojis={emojis} - onEmojiSelected={emoji => this.onEmojiSelected(emoji)} + onEmojiSelected={(emoji: IEmoji) => this.onEmojiSelected(emoji)} style={styles.categoryContainer} width={width!} baseUrl={baseUrl} diff --git a/app/containers/MessageBox/index.tsx b/app/containers/MessageBox/index.tsx index 80f2f4a357..58d7fd4365 100644 --- a/app/containers/MessageBox/index.tsx +++ b/app/containers/MessageBox/index.tsx @@ -687,7 +687,7 @@ class MessageBox extends Component<IMessageBoxProps, IMessageBoxState> { if (this.canUploadFile(file)) { this.openShareView([file]); } - } catch (e) { + } catch (e: any) { if (!DocumentPicker.isCancel(e)) { logEvent(events.ROOM_BOX_ACTION_FILE_F); log(e); @@ -809,9 +809,9 @@ class MessageBox extends Component<IMessageBoxProps, IMessageBoxState> { // Edit if (editing) { const { message: editingMessage, editRequest } = this.props; - // @ts-ignore const { id, + // @ts-ignore subscription: { id: rid } } = editingMessage; editRequest({ id, msg: message, rid }); @@ -981,10 +981,9 @@ class MessageBox extends Component<IMessageBoxProps, IMessageBoxState> { /> <TextInput ref={component => (this.component = component)} - // @ts-ignore style={[styles.textBoxInput, { color: themes[theme].bodyText }]} - returnKeyType='default' // @ts-ignore + returnKeyType='default' keyboardType='twitter' blurOnSubmit={false} placeholder={I18n.t('New_Message')} diff --git a/app/containers/Passcode/Base/index.tsx b/app/containers/Passcode/Base/index.tsx index 7ab56395f4..dd1d90e8dc 100644 --- a/app/containers/Passcode/Base/index.tsx +++ b/app/containers/Passcode/Base/index.tsx @@ -57,7 +57,7 @@ const Base = forwardRef( break; case TYPE.CONFIRM: if (currentPasscode !== previousPasscode) { - onError(); + onError?.(); } else { onEndProcess(currentPasscode); } diff --git a/app/containers/SearchBox.tsx b/app/containers/SearchBox.tsx index c9126ba44c..4a08c91ce0 100644 --- a/app/containers/SearchBox.tsx +++ b/app/containers/SearchBox.tsx @@ -45,8 +45,8 @@ const styles = StyleSheet.create({ }); interface ISearchBox { - onChangeText: Function; - onSubmitEditing: Function; + onChangeText: () => void; + onSubmitEditing: () => void; hasCancel: boolean; onCancelPress: Function; theme: string; @@ -79,7 +79,6 @@ const SearchBox = ({ <CustomIcon name='search' size={14} color={themes[theme].auxiliaryText} /> <TextInput ref={inputRef} - /* @ts-ignore*/ autoCapitalize='none' autoCorrect={false} blurOnSubmit diff --git a/app/containers/TextInput.tsx b/app/containers/TextInput.tsx index 13b7f5176d..ae11dcc17a 100644 --- a/app/containers/TextInput.tsx +++ b/app/containers/TextInput.tsx @@ -183,6 +183,7 @@ export default class RCTextInput extends React.PureComponent<IRCTextInputProps, testID={testID} accessibilityLabel={placeholder} placeholder={placeholder} + /* @ts-ignore*/ contentDescription={placeholder} theme={theme} {...inputProps} diff --git a/app/containers/UIKit/Image.tsx b/app/containers/UIKit/Image.tsx index 688c5a4bc2..7b8dbf0ff5 100644 --- a/app/containers/UIKit/Image.tsx +++ b/app/containers/UIKit/Image.tsx @@ -48,7 +48,7 @@ export const Thumb = ({ element, size = 88 }: IThumb) => ( export const Media = ({ element, theme }: IMedia) => { const showAttachment = (attachment: any) => Navigation.navigate('AttachmentView', { attachment }); const { imageUrl } = element; - + // @ts-ignore return <ImageContainer file={{ image_url: imageUrl }} imageUrl={imageUrl} showAttachment={showAttachment} theme={theme} />; }; diff --git a/app/containers/UIKit/MultiSelect/Chips.tsx b/app/containers/UIKit/MultiSelect/Chips.tsx index e62b7e7cd2..7c11b8aebd 100644 --- a/app/containers/UIKit/MultiSelect/Chips.tsx +++ b/app/containers/UIKit/MultiSelect/Chips.tsx @@ -15,14 +15,14 @@ interface IChip { text: string; }; onSelect: Function; - style: object; + style?: object; theme: string; } interface IChips { items: []; onSelect: Function; - style: object; + style?: object; theme: string; } diff --git a/app/containers/UIKit/MultiSelect/index.tsx b/app/containers/UIKit/MultiSelect/index.tsx index 9ca9b1d82b..cd8d21a38f 100644 --- a/app/containers/UIKit/MultiSelect/index.tsx +++ b/app/containers/UIKit/MultiSelect/index.tsx @@ -156,9 +156,8 @@ export const MultiSelect = React.memo( button = ( // @ts-ignore <Input onPress={onShow} theme={theme} loading={loading} disabled={disabled} inputStyle={inputStyle}> - {/* @ts-ignore*/} {items.length ? ( - <Chips items={items} onSelect={item => (disabled ? {} : onSelect(item))} theme={theme} /> + <Chips items={items} onSelect={(item: any) => (disabled ? {} : onSelect(item))} theme={theme} /> ) : ( <Text style={[styles.pickerText, { color: themes[theme].auxiliaryText }]}>{placeholder.text}</Text> )} @@ -171,13 +170,14 @@ export const MultiSelect = React.memo( <Modal animationType='fade' transparent visible={open} onRequestClose={onHide} onShow={onShow}> <TouchableWithoutFeedback onPress={onHide}> <View style={styles.container}> - {/* @ts-ignore*/} <View - style={{ - ...StyleSheet.absoluteFill, - opacity: themes[theme].backdropOpacity, - backgroundColor: themes[theme].backdropColor - }} + style={[ + StyleSheet.absoluteFill, + { + opacity: themes[theme].backdropOpacity, + backgroundColor: themes[theme].backdropColor + } + ]} /> {/* @ts-ignore*/} <KeyboardAvoidingView style={styles.keyboardView} behavior={behavior}> diff --git a/app/containers/UIKit/Select.tsx b/app/containers/UIKit/Select.tsx index 8a40330605..64951ea404 100644 --- a/app/containers/UIKit/Select.tsx +++ b/app/containers/UIKit/Select.tsx @@ -79,8 +79,8 @@ export const Select = ({ options = [], placeholder, onChange, loading, disabled, inputAndroidContainer: pickerStyle }} Icon={Icon} - // @ts-ignore textInputProps={{ + // @ts-ignore style: { ...styles.pickerText, color: selected ? themes[theme].titleText : themes[theme].auxiliaryText } }} /> diff --git a/app/containers/message/Image.tsx b/app/containers/message/Image.tsx index 1c72d99560..a4d29c5afa 100644 --- a/app/containers/message/Image.tsx +++ b/app/containers/message/Image.tsx @@ -28,7 +28,7 @@ interface IMessageImage { imageUrl?: string; showAttachment: Function; theme: string; - getCustomEmoji?: Function; + getCustomEmoji: Function; } const ImageProgress = createImageProgress(FastImage); @@ -66,7 +66,7 @@ const ImageContainer = React.memo( <Button theme={theme} onPress={onPress}> <View> <MessageImage img={img} theme={theme} /> - {/* @ts-ignore*/} + {/* @ts-ignore */} <Markdown msg={file.description} baseUrl={baseUrl} diff --git a/app/containers/message/Message.tsx b/app/containers/message/Message.tsx index 95b5491f75..0f24fd879a 100644 --- a/app/containers/message/Message.tsx +++ b/app/containers/message/Message.tsx @@ -69,6 +69,7 @@ const Message = React.memo((props: IMessage) => { <View style={[styles.container, props.style]}> {thread} <View style={styles.flex}> + {/* @ts-ignore */} <MessageAvatar small {...props} /> <View style={[styles.messageContent, props.isHeader && styles.messageContentWithHeader]}> <Content {...props} /> @@ -81,6 +82,7 @@ const Message = React.memo((props: IMessage) => { return ( <View style={[styles.container, props.style]}> <View style={styles.flex}> + {/* @ts-ignore */} <MessageAvatar {...props} /> <View style={[styles.messageContent, props.isHeader && styles.messageContentWithHeader]}> <MessageInner {...props} /> diff --git a/app/externalModules.d.ts b/app/externalModules.d.ts index d681098360..ed8c948ed4 100644 --- a/app/externalModules.d.ts +++ b/app/externalModules.d.ts @@ -7,3 +7,4 @@ declare module 'react-native-platform-touchable'; declare module 'react-native-ui-lib/keyboard'; declare module '@rocket.chat/ui-kit'; declare module 'react-native-config-reader'; +declare module 'react-native-keycommands'; diff --git a/app/presentation/TextInput.tsx b/app/presentation/TextInput.tsx index c68584ed4d..b3f18676c3 100644 --- a/app/presentation/TextInput.tsx +++ b/app/presentation/TextInput.tsx @@ -1,5 +1,5 @@ import React from 'react'; -import { I18nManager, StyleSheet, TextInput } from 'react-native'; +import { I18nManager, StyleSheet, TextInput, TextInputProps } from 'react-native'; import { themes } from '../constants/colors'; @@ -9,7 +9,7 @@ const styles = StyleSheet.create({ } }); -interface IThemedTextInput { +interface IThemedTextInput extends TextInputProps { style: object; theme: string; } diff --git a/package.json b/package.json index f89bcb5f46..73919c7fe6 100644 --- a/package.json +++ b/package.json @@ -6,10 +6,8 @@ "start": "react-native start", "test": "jest", "test-update": "jest --updateSnapshot", - "lint": "eslint .", - "prettier": "prettier --write .", - "prettier-check": "prettier --check .", - "prettier-lint": "yarn lint --fix && prettier --write .", + "lint": "eslint . && tsc", + "prettier-lint": "prettier --write . && yarn lint", "ci": "npm run precommit && codecov", "ios": "npx react-native run-ios", "android": "npx react-native run-android --variant=experimentalPlayDebug", From abbd112279ca5437b8712119a4591fb9ed7801d8 Mon Sep 17 00:00:00 2001 From: Diego Mello <diegolmello@gmail.com> Date: Thu, 9 Sep 2021 16:37:59 -0300 Subject: [PATCH 81/90] Add files to exclude --- tsconfig.json | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/tsconfig.json b/tsconfig.json index fa75ec317c..db7d37b56d 100644 --- a/tsconfig.json +++ b/tsconfig.json @@ -62,11 +62,12 @@ // "inlineSources": true, /* Emit the source alongside the sourcemaps within a single file; requires '--inlineSourceMap' or '--sourceMap' to be set. */ /* Experimental Options */ - // "experimentalDecorators": true, /* Enables experimental support for ES7 decorators. */ + "experimentalDecorators": true /* Enables experimental support for ES7 decorators. */, // "emitDecoratorMetadata": true, /* Enables experimental support for emitting type metadata for decorators. */ /* Advanced Options */ "skipLibCheck": true /* Skip type checking of declaration files. */, "forceConsistentCasingInFileNames": true /* Disallow inconsistently-cased references to the same file. */ - } + }, + "exclude": ["node_modules", "e2e/docker", "__mocks__"] } From d824d86b3cf06e65ff761554a664e4cd0dc3e262 Mon Sep 17 00:00:00 2001 From: Diego Mello <diegolmello@gmail.com> Date: Thu, 9 Sep 2021 16:43:27 -0300 Subject: [PATCH 82/90] Fix sdk --- app/externalModules.d.ts | 1 + package.json | 2 +- yarn.lock | 4 ++-- 3 files changed, 4 insertions(+), 3 deletions(-) diff --git a/app/externalModules.d.ts b/app/externalModules.d.ts index ed8c948ed4..3f7d7a6d8e 100644 --- a/app/externalModules.d.ts +++ b/app/externalModules.d.ts @@ -6,5 +6,6 @@ declare module 'react-native-image-progress'; declare module 'react-native-platform-touchable'; declare module 'react-native-ui-lib/keyboard'; declare module '@rocket.chat/ui-kit'; +declare module '@rocket.chat/sdk'; declare module 'react-native-config-reader'; declare module 'react-native-keycommands'; diff --git a/package.json b/package.json index 73919c7fe6..4bb8108153 100644 --- a/package.json +++ b/package.json @@ -47,7 +47,7 @@ "@react-navigation/native": "5.9.4", "@react-navigation/stack": "5.14.5", "@rocket.chat/react-native-fast-image": "^8.2.0", - "@rocket.chat/sdk": "RocketChat/Rocket.Chat.js.SDK#mobile", + "@rocket.chat/sdk": "RocketChat/Rocket.Chat.js.SDK#mobile-ts-temp-fix", "@rocket.chat/ui-kit": "0.13.0", "bytebuffer": "^5.0.1", "color2k": "1.2.4", diff --git a/yarn.lock b/yarn.lock index c0a5af6c92..6a0cf7f7bd 100644 --- a/yarn.lock +++ b/yarn.lock @@ -3208,9 +3208,9 @@ resolved "https://registry.yarnpkg.com/@rocket.chat/react-native-fast-image/-/react-native-fast-image-8.2.0.tgz#4f48858f95f40afcb10b39cee9b1239c150d6c51" integrity sha512-NF5KlFt642ZucP/KHnYGBNYLD6O7bcrZMKfRQlH5Y3/1xpnPX1g4wuygtiV7XArMU1FopQT+qmCUPPj8IMDTcw== -"@rocket.chat/sdk@RocketChat/Rocket.Chat.js.SDK#mobile": +"@rocket.chat/sdk@RocketChat/Rocket.Chat.js.SDK#mobile-ts-temp-fix": version "1.0.0-mobile" - resolved "https://codeload.github.com/RocketChat/Rocket.Chat.js.SDK/tar.gz/0241e2fc0c29827c51655f2d46d96e7a7720d2b6" + resolved "https://codeload.github.com/RocketChat/Rocket.Chat.js.SDK/tar.gz/a0cfe2079a461332e4c314ad4d096f408c007b0c" dependencies: js-sha256 "^0.9.0" lru-cache "^4.1.1" From 01e1634cb8948feca16fbfe520a428cf81107bf0 Mon Sep 17 00:00:00 2001 From: Diego Mello <diegolmello@gmail.com> Date: Thu, 9 Sep 2021 18:06:33 -0300 Subject: [PATCH 83/90] Minor fixes --- app/containers/message/Attachments.tsx | 1 - app/containers/message/Reply.tsx | 2 ++ 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/app/containers/message/Attachments.tsx b/app/containers/message/Attachments.tsx index 88b8e1ddd3..8ca9318367 100644 --- a/app/containers/message/Attachments.tsx +++ b/app/containers/message/Attachments.tsx @@ -52,7 +52,6 @@ const Attachments = React.memo( return <AttachedActions attachment={file} theme={theme} />; } - // eslint-disable-next-line react/no-array-index-key return ( <Reply key={index} diff --git a/app/containers/message/Reply.tsx b/app/containers/message/Reply.tsx index f907a336f9..5f4ca76577 100644 --- a/app/containers/message/Reply.tsx +++ b/app/containers/message/Reply.tsx @@ -68,6 +68,8 @@ const styles = StyleSheet.create({ marginBottom: 4 }, image: { + // @ts-ignore + width: null, height: 200, flex: 1, borderTopLeftRadius: 4, From e56216a2a352d5e6dd0e1683c8cbf86280517057 Mon Sep 17 00:00:00 2001 From: Diego Mello <diegolmello@gmail.com> Date: Fri, 10 Sep 2021 16:44:56 -0300 Subject: [PATCH 84/90] Try large resource on CircleCI for Android --- .circleci/config.yml | 2 ++ 1 file changed, 2 insertions(+) diff --git a/.circleci/config.yml b/.circleci/config.yml index 7277eef8ca..0a6a1dda9d 100644 --- a/.circleci/config.yml +++ b/.circleci/config.yml @@ -376,6 +376,7 @@ jobs: environment: <<: *android-env <<: *bash-env + resource_class: large steps: - android-build @@ -386,6 +387,7 @@ jobs: environment: <<: *android-env <<: *bash-env + resource_class: large steps: - android-build From d21610a58983db2c56fdaaad511b2c2449eb4b4e Mon Sep 17 00:00:00 2001 From: Diego Mello <diegolmello@gmail.com> Date: Fri, 10 Sep 2021 16:49:06 -0300 Subject: [PATCH 85/90] Update jest snapshot --- __tests__/__snapshots__/Storyshots.test.js.snap | 1 + 1 file changed, 1 insertion(+) diff --git a/__tests__/__snapshots__/Storyshots.test.js.snap b/__tests__/__snapshots__/Storyshots.test.js.snap index f9426a6b1d..56448a0360 100644 --- a/__tests__/__snapshots__/Storyshots.test.js.snap +++ b/__tests__/__snapshots__/Storyshots.test.js.snap @@ -43936,6 +43936,7 @@ exports[`Storyshots Message Thumbnail from server 1`] = ` "flex": 1, "height": 200, "marginBottom": 1, + "width": null, }, ] } From be4b3e81c80641bd091caa43681324b245f02dc9 Mon Sep 17 00:00:00 2001 From: Diego Mello <diegolmello@gmail.com> Date: Fri, 10 Sep 2021 16:50:00 -0300 Subject: [PATCH 86/90] Try large resource on unit tests --- .circleci/config.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.circleci/config.yml b/.circleci/config.yml index 0a6a1dda9d..9b681e2b6e 100644 --- a/.circleci/config.yml +++ b/.circleci/config.yml @@ -340,7 +340,7 @@ jobs: <<: *defaults docker: - image: circleci/node:15 - + resource_class: large environment: CODECOV_TOKEN: caa771ab-3d45-4756-8e2a-e1f25996fef6 From cb6eefaad4338559d0bc11a3e68c3daf75152db2 Mon Sep 17 00:00:00 2001 From: Diego Mello <diegolmello@gmail.com> Date: Fri, 10 Sep 2021 17:05:33 -0300 Subject: [PATCH 87/90] Tweak contributing.md --- CONTRIBUTING.md | 6 ------ 1 file changed, 6 deletions(-) diff --git a/CONTRIBUTING.md b/CONTRIBUTING.md index 009e804038..dc78c1d9ff 100644 --- a/CONTRIBUTING.md +++ b/CONTRIBUTING.md @@ -58,12 +58,6 @@ yarn lint We use [Prettier](https://prettier.io) to format the code style in our project. We have a pre-commit hook enforcing commits to follow our style guides. -To check your code formatting, run this on your terminal: - -```sh -yarn prettier-check -``` - To fix your code formatting issues, run this on your terminal: ```sh From 840957ae7f9c9c25ae16a687a61d36df6c81aaea Mon Sep 17 00:00:00 2001 From: Diego Mello <diegolmello@gmail.com> Date: Mon, 13 Sep 2021 13:20:42 -0300 Subject: [PATCH 88/90] Fix wrong useCallback usage on ActionSheet --- app/containers/ActionSheet/ActionSheet.tsx | 30 +++++++++------------- 1 file changed, 12 insertions(+), 18 deletions(-) diff --git a/app/containers/ActionSheet/ActionSheet.tsx b/app/containers/ActionSheet/ActionSheet.tsx index 507a620a37..95bfed3869 100644 --- a/app/containers/ActionSheet/ActionSheet.tsx +++ b/app/containers/ActionSheet/ActionSheet.tsx @@ -115,27 +115,21 @@ const ActionSheet = React.memo( hideActionSheet: hide })); - const renderHandle = useCallback( - () => ( - <> - <Handle theme={theme} /> - {isValidElement(data?.customHeader) ? data.customHeader : null} - </> - ), - [theme, data] + const renderHandle = () => ( + <> + <Handle theme={theme} /> + {isValidElement(data?.customHeader) ? data.customHeader : null} + </> ); - const renderFooter = useCallback( - () => - data?.hasCancel ? ( - <Button onPress={hide} style={[styles.button, { backgroundColor: themes[theme].auxiliaryBackground }]} theme={theme}> - <Text style={[styles.text, { color: themes[theme].bodyText }]}>{I18n.t('Cancel')}</Text> - </Button> - ) : null, - [theme, data, hide] - ); + const renderFooter = () => + data?.hasCancel ? ( + <Button onPress={hide} style={[styles.button, { backgroundColor: themes[theme].auxiliaryBackground }]} theme={theme}> + <Text style={[styles.text, { color: themes[theme].bodyText }]}>{I18n.t('Cancel')}</Text> + </Button> + ) : null; - const renderItem = useCallback(({ item }) => <Item item={item} hide={hide} theme={theme} />, []); + const renderItem = ({ item }: any) => <Item item={item} hide={hide} theme={theme} />; const animatedPosition = React.useRef(new Value(0)); const opacity = interpolate(animatedPosition.current, { From ada858306fcfc95eea37131275dcbc6fe53b890a Mon Sep 17 00:00:00 2001 From: Diego Mello <diegolmello@gmail.com> Date: Mon, 13 Sep 2021 13:31:03 -0300 Subject: [PATCH 89/90] Fix theme --- app/containers/ActionSheet/ActionSheet.tsx | 2 +- app/index.tsx | 2 +- app/share.tsx | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/app/containers/ActionSheet/ActionSheet.tsx b/app/containers/ActionSheet/ActionSheet.tsx index 95bfed3869..f926f01e76 100644 --- a/app/containers/ActionSheet/ActionSheet.tsx +++ b/app/containers/ActionSheet/ActionSheet.tsx @@ -1,4 +1,4 @@ -import React, { forwardRef, isValidElement, useCallback, useEffect, useImperativeHandle, useRef, useState } from 'react'; +import React, { forwardRef, isValidElement, useEffect, useImperativeHandle, useRef, useState } from 'react'; import { Keyboard, Text } from 'react-native'; import { useSafeAreaInsets } from 'react-native-safe-area-context'; import { State, TapGestureHandler } from 'react-native-gesture-handler'; diff --git a/app/index.tsx b/app/index.tsx index 86449e71d8..31128db265 100644 --- a/app/index.tsx +++ b/app/index.tsx @@ -125,7 +125,7 @@ export default class Root extends React.Component<{}, IState> { } init = async () => { - UserPreferences.getMapAsync(THEME_PREFERENCES_KEY).then(() => this.setTheme()); + UserPreferences.getMapAsync(THEME_PREFERENCES_KEY).then((theme: any) => this.setTheme(theme)); store.dispatch(appInitLocalSettings()); // Open app from push notification diff --git a/app/share.tsx b/app/share.tsx index e210e3c9af..ceb85477dc 100644 --- a/app/share.tsx +++ b/app/share.tsx @@ -118,7 +118,7 @@ class Root extends React.Component<{}, IState> { } init = async () => { - UserPreferences.getMapAsync(THEME_PREFERENCES_KEY).then(() => this.setTheme()); + UserPreferences.getMapAsync(THEME_PREFERENCES_KEY).then((theme: any) => this.setTheme(theme)); const currentServer = await UserPreferences.getStringAsync(RocketChat.CURRENT_SERVER); From 8d56490ae57f52e938184b50e852dce6a000f92e Mon Sep 17 00:00:00 2001 From: Diego Mello <diegolmello@gmail.com> Date: Mon, 13 Sep 2021 15:01:21 -0300 Subject: [PATCH 90/90] Use RocketChat/Rocket.Chat.js.SDK#mobile --- package.json | 2 +- yarn.lock | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/package.json b/package.json index 4bb8108153..73919c7fe6 100644 --- a/package.json +++ b/package.json @@ -47,7 +47,7 @@ "@react-navigation/native": "5.9.4", "@react-navigation/stack": "5.14.5", "@rocket.chat/react-native-fast-image": "^8.2.0", - "@rocket.chat/sdk": "RocketChat/Rocket.Chat.js.SDK#mobile-ts-temp-fix", + "@rocket.chat/sdk": "RocketChat/Rocket.Chat.js.SDK#mobile", "@rocket.chat/ui-kit": "0.13.0", "bytebuffer": "^5.0.1", "color2k": "1.2.4", diff --git a/yarn.lock b/yarn.lock index 6a0cf7f7bd..b0d99a98b6 100644 --- a/yarn.lock +++ b/yarn.lock @@ -3208,9 +3208,9 @@ resolved "https://registry.yarnpkg.com/@rocket.chat/react-native-fast-image/-/react-native-fast-image-8.2.0.tgz#4f48858f95f40afcb10b39cee9b1239c150d6c51" integrity sha512-NF5KlFt642ZucP/KHnYGBNYLD6O7bcrZMKfRQlH5Y3/1xpnPX1g4wuygtiV7XArMU1FopQT+qmCUPPj8IMDTcw== -"@rocket.chat/sdk@RocketChat/Rocket.Chat.js.SDK#mobile-ts-temp-fix": +"@rocket.chat/sdk@RocketChat/Rocket.Chat.js.SDK#mobile": version "1.0.0-mobile" - resolved "https://codeload.github.com/RocketChat/Rocket.Chat.js.SDK/tar.gz/a0cfe2079a461332e4c314ad4d096f408c007b0c" + resolved "https://codeload.github.com/RocketChat/Rocket.Chat.js.SDK/tar.gz/e0e42466073d1444d74cf8ec6581f4122b4387cc" dependencies: js-sha256 "^0.9.0" lru-cache "^4.1.1"